From c68f5eca9c9bf50ecd25ab189468240e1278ff87 Mon Sep 17 00:00:00 2001 From: Sha Date: Mon, 12 Feb 2018 14:51:16 +0530 Subject: [PATCH] Initial commit --- .DS_Store | Bin 0 -> 10244 bytes .gitattributes | 2 + LICENSE | 674 ++++++++++++++++++++++++++++ README.md | 1 + README.rst | 307 +++++++++++++ chatbot/.DS_Store | Bin 0 -> 6148 bytes chatbot/DefaultSubs.py | 185 ++++++++ chatbot/__init__.py | 788 +++++++++++++++++++++++++++++++++ chatbot/default.template | 320 +++++++++++++ chatbot/learn.py | 12 + chatbot/spellcheck/__init__.py | 46 ++ chatbot/spellcheck/words.txt | 1 + examples/Example.py | 24 + examples/Example.template | 5 + examples/Example1.py | 26 ++ images/ChatBot AI.png | Bin 0 -> 72431 bytes images/ChatBot AI.svg | 2 + images/ChatBot AI.xml | 1 + images/clothing.gif | Bin 0 -> 129389 bytes images/demo.gif | Bin 0 -> 575476 bytes images/reminder.gif | Bin 0 -> 119016 bytes requirement.txt | 3 + setup.cfg | 2 + setup.py | 23 + test/__init__.py | 0 test/spell-testset1.txt | 141 ++++++ test/spell-testset2.txt | 363 +++++++++++++++ test/spellcheck.py | 60 +++ 28 files changed, 2986 insertions(+) create mode 100755 .DS_Store create mode 100644 .gitattributes create mode 100755 LICENSE create mode 100755 README.md create mode 100755 README.rst create mode 100755 chatbot/.DS_Store create mode 100755 chatbot/DefaultSubs.py create mode 100755 chatbot/__init__.py create mode 100755 chatbot/default.template create mode 100755 chatbot/learn.py create mode 100755 chatbot/spellcheck/__init__.py create mode 100755 chatbot/spellcheck/words.txt create mode 100755 examples/Example.py create mode 100755 examples/Example.template create mode 100755 examples/Example1.py create mode 100755 images/ChatBot AI.png create mode 100755 images/ChatBot AI.svg create mode 100755 images/ChatBot AI.xml create mode 100755 images/clothing.gif create mode 100755 images/demo.gif create mode 100755 images/reminder.gif create mode 100755 requirement.txt create mode 100755 setup.cfg create mode 100755 setup.py create mode 100755 test/__init__.py create mode 100755 test/spell-testset1.txt create mode 100755 test/spell-testset2.txt create mode 100755 test/spellcheck.py diff --git a/.DS_Store b/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..bbd225b02d6cd788e96242a141da4d2ea7ab6033 GIT binary patch literal 10244 zcmeHMTWl0n82kIOIp6ta&Sd}q+tXSTKo|fdx|vlgC|KZPdMR#^V&pnz`y$d*zz zzbH=o0FDWJHsaY?VL6oQ6uSrXpy+KeP{64?%-qRFJUc6_fCCCRp!a0-b|}c7PPj04 z2aE{ohdu*71H}xmy?YtNVH~31=I`I_7?rS>sg3SUzwwJ=Mc%OqCmA!DHwI%#({S9z z#w%E|sC4m?GD%j-D+1*KwW2&weplbPJ<;bz-L%slO^vE+`wUHwMN>nD=8pI4R+p(~ zbn9TMC+g~{qs+PAwoP&n@n~$&&?iRK6&<$aMh#0(@%ls^BSVIz*%R${+R~hn{EA1_ zmAxrFL(tx+r4Jg85i?A~o#K^xjy&EQb;s#plKPM=$%LAoZmbJ8&eVmco3?JJ==P>< zGc%GbNj10Z9gIz#I&<#5k3K$s;o_xlzq`tL0rWmiutKDB;rGR?nNFrxuvT(smbI_) zSPQmQwJW3QGS={eN!PF~XHZW$WJlFXhq&pE+m_d{p}1|P6P7coR>h-cJZ%zzZKm00 zoYb9RSD$oQ?1*Eh+z#$IY!H^^jjC$e(GTeaFfw{4!5kIkH!4B|pjXoVv6!pi~D}%j&z* zh(^`!w>5^6#=-8zP&;0B(phiik{8)M}`w326_EfDTERg2&+rcoNRS%kU<= z10TS7_yj(K&*2NW3|HW5_y&G}pWzqy6%iFI#{e$H<+v7Wa6N{x7VEJAn{X>`$2M%o zPVB<{IEX`d1dpPI3A8YYCvX-Y#WVOcK7-HVi};#oPDxg7og$qL@pXz7ywW5$?Y2_&>E#CtJFdT z50Jd{Nv;>QY;JXRaMk*-qNpIm%+a->jS`7jEtz9UWpk*GNmX6MlOZlaO;#6+QW77N zty(HdcPJ#feX_blBySHzm+L z1Nb05jHmDsd&3u2OPtS9ZbDONuWP%S#Jx*DhrHlKqnO0l`Pfm&z7 z1X#qCO=*pLb>z>}u!ZwOE#b8^P@UI%<^k`S3zieEl3Jm|2}l#?ES8|#qI&D;o-FDq z8>#2=dMfjNxP(p;A`Zu4tbk88Uik=V9)dok1^#Tr^8HJBAB#9gHckur{jn;6OW6uK~n@Ynhpm zrRv(IUERkLQzxhIo4Nma>I_}EWkjV&=fblT%MnrVa^;--h|hq}fX{%>fX~2<7+546 z!tDIN>-zuyZ&Zz6?la&s@E>LXOFR2I+o=QD6NSRQlu$;P?qhVbi}}q8%OMmn7naYD z<0-+8zhM9QKiL2O E4h`@!DF6Tf literal 0 HcmV?d00001 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/LICENSE b/LICENSE new file mode 100755 index 0000000..92cb0f9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ +GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) 2018 {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + py-Chatbot Copyright (C) 2018 Sha + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100755 index 0000000..96dae02 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# py-Chatbot diff --git a/README.rst b/README.rst new file mode 100755 index 0000000..fdbc29a --- /dev/null +++ b/README.rst @@ -0,0 +1,307 @@ +Chatbot +======= + +Python chatbot AI that helps in creating a python based chatbot with +minimal coding. This provides both bots AI and chat handler and also +allows easy integration of REST API's and python function calls which +makes it unique and more powerful in functionality. This AI provides +numerous features like learn, memory, conditional switch, topic-based +conversation handling, etc. + +Installation +------------ + +Install from PyPI: + +.. code:: sh + + pip install chatbotAI + +install from github: + +.. code:: sh + + git clone https://github.com/ahmadfaizalbh/Chatbot.git + cd Chatbot + python setup.py install + +Sample Code (with wikipedia search API integration) +--------------------------------------------------- + +.. code:: python + + from chatbot import Chat,reflections,multiFunctionCall + import wikipedia + + def whoIs(query,sessionID="general"): + try: + return wikipedia.summary(query) + except: + for newquery in wikipedia.search(query): + try: + return wikipedia.summary(newquery) + except: + pass + return "I don't know about "+query + + call = multiFunctionCall({"whoIs":whoIs}) + firstQuestion="Hi, how are you?" + Chat("examples/Example.template", reflections,call=call).converse(firstQuestion) + +For Detail on how to build Facebook messenger bot checkout `Facebook +Integration.ipynb `__ + +For Jupyter notebook Chatbot checkout `Infobot built using +NLTK-Chatbot `__ + +Sample Apps +^^^^^^^^^^^ + +1. A sample facebook messenger bot built using + `messengerbot `__, + `Django `__ and + `NLTK-Chatbot <#chatbot>`__ is available here `Facebook messenger + bot `__ +2. A sample microsoft bot built using `Microsoft Bot Connector Rest API + - + v3.0 `__, + `Django `__ and + `NLTK-Chatbot <#chatbot>`__ is available here `Micosoft + Chatbot `__ + +List of feature supported in bot template +----------------------------------------- + +1. `Memory <#memory>`__ +2. `Get matched group <#get-matched-group>`__ +3. `Recursion <#recursion>`__ +4. `Condition <#condition>`__ +5. `Change Topic <#change-topic>`__ +6. `Interact with python function <#interact-with-python-function>`__ +7. `REST API integration <#rest-api-integration>`__ +8. `Topic based group <#topic-based-group>`__ +9. `Learn <#learn>`__ +10. `To upper case <#to-upper-case>`__ +11. `To lower case <#to-lower-case>`__ +12. `Capitalize <#capitalize>`__ +13. `Previous <#previous>`__ + +-------------- + +Memory +------ + +Set Memory +^^^^^^^^^^ + +.. code:: sh + + { variable : value } + +In think mode + +.. code:: sh + + {! variable : value } + +Get Memory +^^^^^^^^^^ + +.. code:: sh + + { variable } + +Get matched group +----------------- + +Get Nth matched group of client pattern +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: sh + + %N + +Example to get first matched + +.. code:: sh + + %1 + +Get Nth matched group of bots pattern +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: sh + + %!N + +Example to get first matched + +.. code:: sh + + %!1 + +Recursion +--------- + +Get response as if client said this new statement + +.. code:: sh + + {% chat statement %} + +It will do a pattern match for statement + +Condition +--------- + +:: + + {% if condition %} + do this first + {% elif condition %} + do this next + {% else %} + do otherwise + {% endif %} + +Change Topic +------------ + +.. code:: sh + + {% topic TopicName %} + +Interact with python function +----------------------------- + +.. code:: sh + + {% call functionName: value %} + +REST API integration +-------------------- + +In API.json file +^^^^^^^^^^^^^^^^ + +.. code:: sh + + { + "APIName":{ + "auth" : { + "url":"https://your_rest_api_url/login.json", + "method":"POST", + "data":{ + "user":"Your_Username", + "password":"Your_Password" + } + }, + "MethodName" : { + "url":"https://your_rest_api_url/GET_method_Example.json", + "method":"GET", + "params":{ + "key1":"value1", + "key2":"value2", + ... + }, + "value_getter":[order in which data has to be picked from json response] + }, + "MethodName1" : { + "url":"https://your_rest_api_url/GET_method_Example.json", + "method":"POST", + "data":{ + "key1":"value1", + "key2":"value2", + ... + }, + "value_getter":[order in which data has to be picked from json response] + }, + "MethodName2" : { + ... + }, + ... + }, + "APIName2":{ + ... + }, + ... + } + +*If authentication is required only then ``auth`` method is needed.The +``data`` and ``params`` defined in pi.json file acts as defult values +and all key value pair defined in template file overrides the default +value.\ ``value_getter`` consistes of list of keys in order using which +info from json will be collected.* + +In Template file +^^^^^^^^^^^^^^^^ + +.. code:: sh + + [ APIName:MethodName,Key1:value1 (,Key*:value*) ] + +you can have any number of key value pair and all key value pair will +override data or params depending on ``method``, if ``method`` is +``POST`` then it overrides data and if method is ``GET`` then it +overrides ``params``. + +Topic based group +----------------- + +.. code:: sh + + {% group topicName %} + {% block %} + {% client %}client says {% endclient %} + {% response %}response text{% endresponse %} + {% endblock %} + ... + {% endgroup %} + +Learn +----- + +.. code:: sh + + {% learn %} + {% group topicName %} + {% block %} + {% client %}client says {% endclient %} + {% response %}response text{% endresponse %} + {% endblock %} + ... + {% endgroup %} + ... + {% endlearn %} + +To upper case +------------- + +.. code:: sh + + {% up string %} + +To lower case +------------- + +.. code:: sh + + {% low string %} + +Capitalize +---------- + +.. code:: sh + + {% cap string %} + +Previous +-------- + +.. code:: sh + + {% block %} + {% client %}client's statement pattern{% endclient %} + {% prev %}previous bot's statement pattern{% endprev %} + {% response %}response string{% endresponse %} + {% endblock %} diff --git a/chatbot/.DS_Store b/chatbot/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..591142c48f9528a80c003c130c9da6693042433e GIT binary patch literal 6148 zcmeHKyG{c!5S)b+ks_g#lrE`|_ya3CkZ8#V0LMd$bV`sQ1>JRgHq1Uixg4|wpX$YOhc2Fw9W>56#MFg6`mAK5`<6vgIP;RV-xPVqFV{yw4HnQ>NFW0(JW z*=_FHZqu?tU+;o`@@~c!aD)aAc*HHX=(z5Z*y7pN-s8&E9@i$wkP4&%sX!`_3j9k2 zxM!@$o1A9k~(8Q@kr%GHg z#OchJsH=g!qthX_GUthvC2lBUt21A$98w)KrUI$JP=Q15&UODkr~h#OACj_{3Zw#m zN&%TP%Vxn(ioJF8ak|$Q`VIZlSZn1BgF^s2x)mSq)D>;Bt_JpwMrYpW#5@S7E@`R2 HZz%8qr0*&$ literal 0 HcmV?d00001 diff --git a/chatbot/DefaultSubs.py b/chatbot/DefaultSubs.py new file mode 100755 index 0000000..b1ccab8 --- /dev/null +++ b/chatbot/DefaultSubs.py @@ -0,0 +1,185 @@ +"""This file contains the default (English) substitutions for the +PyAIML kernel. These substitutions may be overridden by using the +Kernel.loadSubs(filename) method. The filename specified should refer +to a Windows-style INI file with the following format: + + # lines that start with '#' are comments + + # The 'gender' section contains the substitutions performed by the + # AIML tag, which swaps masculine and feminine pronouns. + [gender] + he = she + she = he + # and so on... + + # The 'person' section contains the substitutions performed by the + # AIML tag, which swaps 1st and 2nd person pronouns. + [person] + I = you + you = I + # and so on... + + # The 'person2' section contains the substitutions performed by + # the AIML tag, which swaps 1st and 3nd person pronouns. + [person2] + I = he + he = I + # and so on... + + # the 'normal' section contains subtitutions run on every input + # string passed into Kernel.respond(). It's mainly used to + # correct common misspellings, and to convert contractions + # ("WHAT'S") into a format that will match an AIML pattern ("WHAT + # IS"). + [normal] + what's = what is +""" + +defaultGender = { + # masculine -> feminine + "he": "she", + "him": "her", + "his": "her", + "himself": "herself", + + # feminine -> masculine + "she": "he", + "her": "him", + "hers": "his", + "herself": "himself", +} + +defaultPerson = { + # 1st->3rd (masculine) + "I": "he", + "me": "him", + "my": "his", + "mine": "his", + "myself": "himself", + + # 3rd->1st (masculine) + "he":"I", + "him":"me", + "his":"my", + "himself":"myself", + + # 3rd->1st (feminine) + "she":"I", + "her":"me", + "hers":"mine", + "herself":"myself", +} + +defaultPerson2 = { + # 1st -> 2nd + "I": "you", + "me": "you", + "my": "your", + "mine": "yours", + "myself": "yourself", + + # 2nd -> 1st + "you": "me", + "your": "my", + "yours": "mine", + "yourself": "myself", +} + + +# TODO: this list is far from complete +defaultNormal = { + "wanna": "want to", + "gonna": "going to", + + "yep": "yes", + "yea": "yes", + "ok": "yes", + "affirmative": "yes", + "roger": "yes", + "uh-huh": "yes", + "righto": "yes", + "yuppers": "yes", + "yup": "yes", + "ja": "yes", + "surely": "yes", + "amen": "yes", + "totally": "yes", + "sure": "yes", + "yessir": "yes", + "okey-dokey": "yes", + + "uh-uh": "no", + "nix": "no", + "nixie": "no", + "nixy": "no", + "nixey": "no", + "nope": "no", + "nay": "no", + "nah": "no", + "negative": "no", + "veto": "no", + + "I'm": "I am", + "I'd": "I would", + "I'll": "I will", + "I've": "I have", + "you'd": "you would", + "you're": "you are", + "you've": "you have", + "you'll": "you will", + "he's": "he is", + "he'd": "he would", + "he'll": "he will", + "she's": "she is", + "she'd": "she would", + "she'll": "she will", + "we're": "we are", + "we'd": "we would", + "we'll": "we will", + "we've": "we have", + "they're": "they are", + "they'd": "they would", + "they'll": "they will", + "they've": "they have", + + "y'all": "you all", + + "can't": "can not", + "cannot": "can not", + "couldn't": "could not", + "wouldn't": "would not", + "shouldn't": "should not", + + "isn't": "is not", + "ain't": "is not", + "don't": "do not", + "aren't": "are not", + "won't": "will not", + "weren't": "were not", + "wasn't": "was not", + "didn't": "did not", + "hasn't": "has not", + "hadn't": "had not", + "haven't": "have not", + + "where's": "where is", + "where'd": "where did", + "where'll": "where will", + "who's": "who is", + "who'd": "who did", + "who'll": "who will", + "what's": "what is", + "whats": "what is", + "what'd": "what did", + "what'll": "what will", + "when's": "when is", + "when'd": "when did", + "when'll": "when will", + "why's": "why is", + "why'd": "why did", + "why'll": "why will", + + "it's": "it is", + "it'd": "it would", + "it'll": "it will", +} diff --git a/chatbot/__init__.py b/chatbot/__init__.py new file mode 100755 index 0000000..e71a0c6 --- /dev/null +++ b/chatbot/__init__.py @@ -0,0 +1,788 @@ +import re,random,requests,json +from os import path +from .DefaultSubs import * +try: + from urllib import quote +except ImportError as e: + from urllib.parse import quote + + +reflections = { + "i am" : "you are", + "i was" : "you were", + "i" : "you", + "i'm" : "you are", + "i'd" : "you would", + "i've" : "you have", + "i'll" : "you will", + "my" : "your", + "you are" : "I am", + "you were" : "I was", + "you've" : "I have", + "you'll" : "I will", + "your" : "my", + "yours" : "mine", + "you" : "me", + "me" : "you" +} + + +class multiFunctionCall: + + def __init__(self,func={}): + self.__func__ = func + + def defaultfunc(self,string,sessionID ="general"): + return string + + def call(self,string,sessionID): + s = string.split(":") + if len(s)<=1: + return string + name = s[0].strip() + s = ":".join(s[1:]) + func = self.defaultfunc + try:func = self.__func__[name] + except:s = string + return re.sub(r'\\([\[\]{}%:])',r"\1",func(re.sub(r'([\[\]{}%:])',r"\\\1",s),sessionID =sessionID)) + +class dummyMatch: + def __init__(self,string): + self.string = string + + def group(self,index): + if index==0:return self.string + raise IndexError("no such group") + + def groupdict(self,*arg,**karg): + return {} + +class Topic: + def __init__(self,topics): + self.topic={"general":''} + self.topics = topics + + def __setitem__(self,key,value): + value = value.strip() + if value[0]==".": + index=1 + current_topic = self.topic[key].split(".") + while value[index]==".": + index+=1 + current_topic.pop() + current_topic.append(value[index:]) + value = ".".join(current_topic) + self.topic[key]=value + + def __getitem__(self,key): + topic = self.topic[key] + if topic in self.topics(): + return topic + return '' + +class Chat(object): + def __init__(self, pairs=(), reflections=reflections, call=multiFunctionCall(), api={}, normalizer=defaultNormal,default_template=path.join(path.dirname(path.abspath(__file__)),"default.template")): + """ + Initialize the chatbot. Pairs is a list of patterns and responses. Each + pattern is a regular expression matching the user's statement or question, + e.g. r'I like (.*)'. For each such pattern a list of possible responses + is given, e.g. ['Why do you like %1', 'Did you ever dislike %1']. Material + which is matched by parenthesized sections of the patterns (e.g. .*) is mapped to + the numbered positions in the responses, e.g. %1. + + :type pairs: list of tuple + :param pairs: The patterns and responses + :type reflections: dict + :param reflections: A mapping between first and second person expressions + :rtype: None + """ + self.__init__handler() + defaultpairs = self.__processTemplateFile(default_template) + try: + if type(pairs) in (str,unicode):pairs = self.__processTemplateFile(pairs) + except NameError as e: + if type(pairs) == str:pairs = self.__processTemplateFile(pairs) + self._pairs = {'':{"pairs":[],"defaults":[]}} + if type(pairs)==dict: + if not '' in pairs: + raise KeyError("Default topic missing") + else: + pairs = {'':{"pairs":pairs,"defaults":[]}} + self._normalizer = dict(normalizer) + for key in normalizer: + self._normalizer[key.lower()] = normalizer[key] + self._normalizer_regex = self._compile_reflections(normalizer) + self.__processLearn(defaultpairs) + self.__processLearn(pairs) + self._reflections = reflections + self._regex = self._compile_reflections(reflections) + self._memory = {"general":{}} + self.conversation = {"general":[]} + self.sessionID = "general" + self.attr = {"general":{"match":None,"pmatch":None,"_quote":False,"substitute":True}} + self.call = call + self.topic = Topic(self._pairs.keys) + try:self._api = api if type(api)==dict else json.load(api) + except:raise SyntaxError("Invalid value for api") + + def __init__handler(self): + """ + initialize handlers and operator functionality + """ + self.__action_handlers = {"chat":self.__chat_handler, + "low":self.__low_handler, + "up":self.__up_handler, + "cap":self.__cap_handler, + "call":self.__call_handler, + "topic":self.__topic_handler, + "map":self.__map_handler, + "eval":self.__eval_handler, + } + self.__confitional_operator = { + "!=":lambda a,b:a!=b, + ">=":lambda a,b:a>=b, + "<=":lambda a,b:a<=b, + "==":lambda a,b:a==b, + "<":lambda a,b:a":lambda a,b:a>b + } + self.__logical_operator ={ + '&':lambda a,b:a and b, + '|':lambda a,b:a or b, + '^':lambda a,b:a ^ b + } + + + def __normalize(self,text): + """ + Substitute words in the string, according to the specified Normal, + e.g. "I'm" -> "I am" + + :type str: str + :param str: The string to be mapped + :rtype: str + """ + return self._normalizer_regex.sub(lambda mo: + self._normalizer[mo.string[mo.start():mo.end()]], + text.lower()) + + def __errorMessage(self,expected,found): + return "Expected '%s' tag found '%s'" % (expected,found) + + def __responseTags(self,text,pos,index): + next_index=index+1 + if pos[next_index][2]!="endresponse": + raise SyntaxError(self.__errorMessage("endresponse",pos[next_index][2])) + return text[pos[index][1]:pos[next_index][0]].strip(" \t\n") + + def __blockTags(self,text,pos,length,index): + withinblock = {"learn":{},"response":[],"client":[],"prev":[]} + while pos[index][2]!="endblock": + if pos[index][2]=="learn": + withinblock["learn"]={} + index = self.__GroupTags(text,pos,withinblock["learn"],(lambda i:pos[i][2]!="endlearn"),length,index+1) + elif pos[index][2]=="response": + withinblock["response"].append(self.__responseTags(text,pos,index)) + index+=1 + elif pos[index][2]=="client": + index+=1 + if pos[index][2]!="endclient": + raise SyntaxError(self.__errorMessage("endclient",pos[index][2])) + withinblock["client"].append(text[pos[index-1][1]:pos[index][0]].strip(" \t\n")) + elif pos[index][2]=="prev": + index+=1 + if pos[index][2]!="endprev": + raise SyntaxError(self.__errorMessage("endprev",pos[index][2])) + withinblock["prev"].append(text[pos[index-1][1]:pos[index][0]].strip(" \t\n")) + else: + raise NameError("Invalid Tag '%s'" % pos[index][2]) + index+=1 + return index+1,(withinblock["client"][0], + withinblock["prev"][0] if withinblock["prev"] else None, + withinblock["response"], + withinblock["learn"] ) + + def __GroupTags(self,text,pos,groups,condition,length,index=0,name=""): + pairs=[] + defaults=[] + while condition(index): + if pos[index][2]=="block": + p,within = self.__blockTags(text,pos,length,index+1) + pairs.append(within) + index=p + elif pos[index][2]=="response": + defaults.append(self.__responseTags(text,pos,index)) + index+=2 + elif pos[index][2]=="group": + index = self.__GroupTags(text,pos,groups,(lambda i:pos[i][2]!="endgroup"),length,index+1, name=name+"."+pos[index][3].strip()) + else: + raise SyntaxError(self.__errorMessage('group, block, or response',pos[index][2])) + if name in groups: + groups[name]["pairs"].extend(pairs) + groups[name]["defaults"].extend(defaults) + else: + groups[name]={"pairs":pairs,"defaults":defaults} + return index+1 + + def __processTemplateFile(self,fileName): + with open(fileName) as template: + text = template.read() + pos = [(m.start(0),m.end(0),text[m.start(1):m.end(1)],text[m.start(4):m.end(4)]) \ + for m in re.finditer( + r'{%[\s\t]+((end)?(block|learn|response|client|prev|group))[\s\t]+([^%]*|%(?=[^}]))%}', + text) + ] + length = len(pos) + groups = {} + self.__GroupTags(text,pos,groups,(lambda i:i3:client,previous,responses,learn = pair[:4] + elif length==3: + if type(pair[1]) in (tuple,list):client,responses,learn = pair + else:client,previous,responses = pair + elif length==2 and type(pair[1]) in (tuple,list):client,responses = pair + else:raise ValueError("Response not specified") + if type(learn) != dict: + raise TypeError("Invalid Type for learn expected dict got '%s'" % type(l).__name__) + self._pairs[topic]["pairs"].insert(0,(self.__build_pattern(client), + self.__build_pattern(previous), + tuple((i,self._condition(i)) for i in responses), + learn)) + + def _startNewSession(self,sessionID): + self._memory[sessionID]={} + self.conversation[sessionID]=[] + self.attr[sessionID]={"match":None,"pmatch":None,"_quote":False,"substitute":True} + self.topic[sessionID] = '' + + def _restructure(self,group,index=None): + if index==None: + toremove={} + allElem = list(group) + for i in group: + toremove[i]=set() + for j in group[i]: + toremove[i].update(set(group[i]).intersection(group[j])) + for i in group: + for j in toremove[i]: + group[i].remove(j) + try: allElem.remove(j) + except: pass + index = list(group) + toremove = [j for i in list(allElem) for j in group[i]] + for i in toremove: + try: allElem.remove(i) + except: pass + else: + allElem = list(index) + while index: + i = index.pop() + if type(group[i])==list: + group[i] = self._restructure(dict(group),group[i]) + for j in list(group[i]): + try: index.remove(j) + except: pass + return {i:group[i] for i in allElem} + + def _subAction(self,group,start_end_pair,action): + return {i:{ + "action":action[i], + "start":start_end_pair[i][0], + "end":start_end_pair[i][1], + "child":self._subAction(group[i],start_end_pair,action) + } for i in group} + + def _getWithin(self,group,index): + + + def init_group(i): + group[index[i]]["within"]=[] + orderedGroup.append(group[index[i]]) + return i+1 + + def append_group(pos,i): + pos,within = self._getWithin(group,index[pos:]) + group[index[i-1]]["within"]+=within + return pos + + i = 0 + orderedGroup = [] + while i=len(index): + raise SyntaxError("If not closed in Conditional statement") + if group[index[i]]["action"]=="elif": i = init_group(i) + elif group[index[i]]["action"]=="else": + pos = i = init_group(i) + startIF = False + while group[index[pos]]["action"]!="endif": pos = append_group(pos,i)+i + i = init_group(pos) + elif group[index[i]]["action"]=="endif": + i = init_group(i) + startIF = False + else: + pos = append_group(i,i) + for j in range(i,pos): del group[index[j]] + i += pos + elif group[index[i]]["action"] in self.__action_handlers .keys(): + orderedGroup.append(group[index[i]]) + i += 1 + else:return i,orderedGroup + return i,orderedGroup + + def _setwithin(self,group): + old =group + for i in group: + if group[i]["child"]: + group[i]["child"] = self._setwithin(group[i]["child"]) + index = list(group) + index.sort(key =lambda x: group[x]["start"]) + pos,orderedGroup = self._getWithin(group,index) + if posstart_end_pair[j][1]: + group[i].append(j) + group = self._restructure(group) + group = self._subAction(group,start_end_pair,action) + return self._setwithin(group) + + def _condition(self,response): + pos = [(m.start(0),m.end(0)) for m in re.finditer(r'{%?|%?}|\[|\]', response)] + newPos = [(start,end) for start,end in pos if (not start) or response[start-1]!="\\" ] + i=0 + start_end_pair = [] + actions = [] + while newPos: + for i in range(1,len(newPos)): + if response[newPos[i][1]-1] in "}]": + break + if response[newPos[i-1][0]] in "{[": + endTag = newPos.pop(i) + biginTag = newPos.pop(i-1) + bN = biginTag[1]-biginTag[0] + eN = endTag[1]-endTag[0] + if bN != eN or not ((response[biginTag[0]] == "{" and response[endTag[1]-1] == "}") or (response[biginTag[0]] == "[" and response[endTag[1]-1] == "]")): + raise SyntaxError("invalid syntax '%s'" % response) + start_end_pair.append((biginTag[1],endTag[0])) + if bN == 2: + statement = re.findall( r'^[\s\t]*(if|endif|elif|else|chat|low|up|cap|call|topic)[\s\t]+', + response[biginTag[1]:endTag[0]]) + if statement: + actions.append(statement[0]) + else: + raise SyntaxError("invalid statement '%s'" % response[biginTag[1]:endTag[0]] ) + else: + if response[biginTag[0]] == "{": + actions.append("map") + else: + actions.append("eval") + else: + raise SyntaxError("invalid syntax in \"%s\"" % response) + try: + group = self._inherit(start_end_pair,actions) + except SyntaxError: + raise SyntaxError("invalid statement in \"%s\"" % response) + return group + + def _compile_reflections(self,normal): + sorted_refl = sorted(normal.keys(), key=len, reverse=True) + return re.compile(r"\b({0})\b".format("|".join(map(re.escape, + sorted_refl))), re.IGNORECASE) + + def _substitute(self, str): + """ + Substitute words in the string, according to the specified reflections, + e.g. "I'm" -> "you are" + + :type str: str + :param str: The string to be mapped + :rtype: str + """ + if not self.attr.get("substitute",True):return str + return self._regex.sub(lambda mo: + self._reflections[mo.string[mo.start():mo.end()]], + str.lower()) + + def _checkIF(self,con,sessionID = "general"): + pos = [(m.start(0),m.end(0),m.group(0)) for m in re.finditer(r'([\<\>!=]=|[\<\>]|&|\|)', con)] + if not pos:return con.strip() + res = prevres = True + prevO = None + pcsymbol = "&" + A = con[0:pos[0][0]].strip() + for j in range(len(pos)): + s,e,o = pos[j] + try:B = con[e:pos[j+1][0]].strip() + except:B = con[e:].strip() + try:a,b = float(A),float(b) + except:a,b = A,B + try:res = self.__confitional_operator[o](a,b) and res + except: + try:prevres,res = self.__logical_operator[pcsymbol](prevres,res),True + except:SyntaxError("invalid conditional operator \"%s\"" % pcsymbol) + pcsymbol = o + A = B + return self.__logical_operator[pcsymbol](prevres,res) + + def __if_handler(self,i,condition,response,sessionID): + start = self.__get_start_pos(condition[i]["start"],response,"if") + end = condition[i]["end"] + check = True + matchedIndex = None + _quote = self.attr[sessionID]["_quote"] + self.attr[sessionID]["_quote"] = False + substitute = self.attr.get("substitute",True) + self.attr["substitute"] = False + while check: + con = self._checkAndEvaluateCondition(response,condition[i]["child"],start,end,sessionID =sessionID) + i+=1 + if self._checkIF(con,sessionID =sessionID): + matchedIndex = i-1 + while condition[i]["action"] != "endif": + i+=1 + check = False + elif condition[i]["action"] == "else": + matchedIndex = i + while condition[i]["action"] != "endif": + i+=1 + check = False + elif condition[i]["action"] == "elif": + start = self.__get_start_pos(condition[i]["start"],response,"elif") + end = condition[i]["end"] + elif condition[i]["action"] == "endif": + check = False + self.attr[sessionID]["_quote"] = _quote + self.attr["substitute"] = substitute + return ((self._checkAndEvaluateCondition( + response, + condition[matchedIndex]["within"], + condition[matchedIndex]["end"]+2, + condition[matchedIndex+1]["start"]-2, + sessionID =sessionID + ) if matchedIndex!=None else ""),i) + + def __handler(self,condition,response,action,sessionID): + return self._checkAndEvaluateCondition( + response, + condition["child"], + self.__get_start_pos(condition["start"],response,action), + condition["end"], + sessionID =sessionID + ) + + def __chat_handler(self,i,condition,response,sessionID): + substitute = self.attr.get("substitute",True) + self.attr["substitute"] = False + response = self.respond(self.__handler(condition[i],response,"chat",sessionID),sessionID =sessionID) + self.attr["substitute"] = substitute + return response + + def __low_handler(self,i,condition,response,sessionID): + return self.__handler(condition[i],response,"low",sessionID).lower() + + def __up_handler(self,i,condition,response,sessionID): + return self.__handler(condition[i],response,"up",sessionID).upper() + + def __cap_handler(self,i,condition,response,sessionID): + return self.__handler(condition[i],response,"cap",sessionID).capitalize() + + def __call_handler(self,i,condition,response,sessionID): + return self.call.call(self.__handler(condition[i],response,"call",sessionID),sessionID =sessionID) + + def __topic_handler(self,i,condition,response,sessionID): + self.topic[sessionID] = self.__handler(condition[i],response,"topic",sessionID).strip() + return "" + + def __get_start_pos(self,start,response,exp): + return start+re.compile(r"([\s\t]*"+exp+"[\s\t]+)").search(response[start:]).end(1) + + def __map_handler(self,i,condition,response,sessionID): + start = condition[i]["start"] + end = condition[i]["end"] + think = False + if response[start] == "!": + think = True + start +=1 + content = self._checkAndEvaluateCondition( + response, + condition[i]["child"], + start, + end, + sessionID =sessionID + ).strip().split(":") + name = content[0] + thisIndex=0 + for thisIndex in range(1,len(content)): + if name[-1]=="\\": + name += ":"+content[thisIndex] + else: + thisIndex-=1 + break + thisIndex+=1 + name = name.strip().lower() + if thisIndex<(len(content)): + value = content[thisIndex] + for thisIndex in range(thisIndex+1,len(content)): + if value[-1]=="\\": + value += ":"+content[thisIndex] + else: + break + self._memory[sessionID][name] = self._substitute(value.strip()) + return self._memory[sessionID][name] if not think and name in self._memory[sessionID] else "" + + def __eval_handler(self,i,condition,restopnse,sessionID): + start = condition[i]["start"] + end = condition[i]["end"] + think = False + if response[start] == "!": + think = True + start +=1 + _quote = self.attr[sessionID]["_quote"] + self.attr[sessionID]["_quote"] = True + content = self._checkAndEvaluateCondition( + response, + condition[i]["child"], + start, + end, + sessionID =sessionID + ).strip() + self.attr[sessionID]["_quote"] = _quote + vals = content.split(",") + names = vals[0].split(":") + apiName = names[0] + methodName = ":".join(names[1:]) + data={} + key=None + for i in vals[1:]: + pair = vals[i].split(":") + if len(pair)>=2: + key = pair[0] + data[key]=":".join(pair[1:]) + elif key!=None: + data[key]+=","+pair[0] + else:raise SyntaxError("invalid syntax '%s'" % response[start:end] ) + result = self.__api_handler(apiName,methodName,data) + return "" if think else result + + def __api_request(self,url,method,**karg): + try:return requests.__dict__[method.lower().strip()](url,**karg) + except requests.exceptions.MissingSchema as e: + return self.__api_request("http://"+url,method,**karg) + except requests.exceptions.ConnectionError as e: + raise RuntimeError("Couldn't connect to server (unreachable). Check your network") + except KeyError as e: + raise RuntimeError("Invalid method name '%s' in api.json" % method) + + def __api_handler(self,apiName,methodName,data={}): + if apiName not in self._api or methodName not in self._api[apiName]: + raise RuntimeError("Invalid method name '%s' for api '%s' ",(methodName,apiName)) + api_params = dict(self._api[apiName][methodName]) + if "auth" in self._api[apiName]: + try:api_params["cookies"] = self.__api_request(**self._api[apiName]["auth"]).cookies + except:raise ValueError("In api.json 'auth' of '%s' is wrongly configured." % apiName) + param = "params" if self._api[apiName][methodName]["method"].upper().strip() == "GET" else "data" + try:api_params[param].update(data) + except:api_params[param] = data + api_type = "normal" + if "type" in api_params: + api_type = api_params["type"] + del api_params["type"] + api_data_getter = [] + if "value_getter" in api_params: + api_data_getter = api_params["value_getter"] + del api_params["value_getter"] + response = self.__api_request(**api_params) + responseText = response.json() if api_type.upper().strip()=="JSON" else response.content + for key in api_data_getter: + responseText = responseText[key] + return responseText + + def _quote(self,string,sessionID): + if self.attr[sessionID]["_quote"]: + try:return urllib2.quote(string) + except:return urllib2.quote(string.encode("UTF-8")) + return string + + def __substituteFromClientStatement(self,match,prevResponse,extraSymbol="",sessionID = "general"): + """ + Substitute from Client statement into respose + """ + prev = 0 + startPadding = 1+len(extraSymbol) + finalResponse = "" + for m in re.finditer(r'%'+extraSymbol+'[0-9]+', prevResponse): + start = m.start(0) + end = m.end(0) + num = int(prevResponse[start+startPadding:end]) + finalResponse += prevResponse[prev:start] + try:finalResponse += self._quote(self._substitute(match.group(num)),sessionID) + except IndexError as e:pass + prev = end + namedGroup = match.groupdict() + if namedGroup: + prevResponse = finalResponse + prevResponse[prev:] + finalResponse = "" + prev = 0 + for m in re.finditer(r'%'+extraSymbol+'([a-zA-Z_][a-zA-Z_0-9]*)([^a-zA-Z_0-9]|$)', prevResponse): + start = m.start(1) + end = m.end(1) + finalResponse += prevResponse[prev:start] + try: + value = namedGroup[prevResponse[start+startPadding:end]] + if value:finalResponse += self._quote(self._substitute(value),sessionID) + except KeyError as e:pass + prev = end + return finalResponse + prevResponse[prev:] + + def _checkAndEvaluateCondition(self, response,condition=[],startIndex=0,endIndex=None,sessionID = "general"): + endIndex = endIndex if endIndex != None else len(response) + if not condition: + finalResponse = self.__substituteFromClientStatement(self.attr[sessionID]["match"],response[startIndex:endIndex],sessionID = sessionID) + parentMatch=self.attr[sessionID]["pmatch"] + return self.__substituteFromClientStatement(parentMatch,finalResponse,extraSymbol = '!',sessionID = sessionID) if parentMatch!=None else finalResponse + i=0 + finalResponse = "" + while i < len(condition): + pos = condition[i]["start"]-(1 if condition[i]["action"] in ["map","eval"] else 2) + finalResponse += self._checkAndEvaluateCondition(response[startIndex:pos],sessionID =sessionID) + _quote = self.attr[sessionID]["_quote"] + try: + self.attr[sessionID]["_quote"] = False + tempResponse = self.__action_handlers[condition[i]["action"]](i,condition,response,sessionID) + self.attr[sessionID]["_quote"] = _quote + finalResponse += self._quote(tempResponse,sessionID) + except KeyError as e: + if condition[i]["action"] == "if": + self.attr[sessionID]["_quote"] = _quote + response_txt,i = self.__if_handler(i,condition,response,sessionID) + finalResponse += response_txt + startIndex = condition[i]["end"]+(1 if condition[i]["action"] in ["map","eval"] else 2) + i+=1 + self.attr[sessionID]["_quote"] = _quote + finalResponse += self._checkAndEvaluateCondition(response[startIndex:endIndex],sessionID = sessionID) + return finalResponse + + def _wildcards(self, response, match, parentMatch,sessionID = "general"): + self.attr[sessionID]["match"]=match + self.attr[sessionID]["pmatch"]=parentMatch + response,condition = response + return re.sub(r'\\([\[\]{}%:])',r"\1",self._checkAndEvaluateCondition(response,condition,sessionID = sessionID )) + + def __response_on_topic(self, text, previousText, current_topic, sessionID = "general"): + for (pattern, parent, response,learn) in self._pairs[current_topic]["pairs"]:# check each pattern + match = pattern.match(text) + parentMatch = parent.match(previousText) if parent!=None else True + # did the pattern match? + if parentMatch and match: + parentMatch = None if parentMatch==True else parentMatch + resp = random.choice(response) # pick a random response + resp = self._wildcards(resp, match, parentMatch,sessionID = sessionID) # process wildcards + # fix munged punctuation at the end + if resp[-2:] == '?.': resp = resp[:-2] + '.' + if resp[-2:] == '??': resp = resp[:-2] + '?' + if learn: + learn = { + self._wildcards((topic,self._condition(topic)), match, parentMatch,sessionID = sessionID): \ + tuple(self.__substituteInLearn(pair, match, parentMatch,sessionID = sessionID) for pair in learn[topic]) \ + for topic in learn} + self.__processLearn(learn) + return resp + raise ValueError("No match found") + + def respond(self, text, sessionID = "general"): + """ + Generate a response to the user input. + + :type text: str + :param text: The string to be mapped + :rtype: str + """ + text = self.__normalize(text) + previousText = self.__normalize(self.conversation[sessionID][-2]) + current_topic = self.topic[sessionID] + current_topic_order = current_topic.split(".") + topic_hierarchy=[] + while current_topic_order: + try:return self.__response_on_topic(text, previousText, current_topic, sessionID) + except ValueError as e:pass + current_topic_order.pop() + current_topic = ".".join(current_topic_order) + topic_hierarchy.append(current_topic) + for topic in topic_hierarchy: + if self._pairs[topic]["defaults"]: + resp = self._wildcards(random.choice(self._pairs[topic]["defaults"]), + dummyMatch(match), None, sessionID = sessionID) + if resp[-2:] == '?.': resp = resp[:-2] + '.' + if resp[-2:] == '??': resp = resp[:-2] + '?' + return resp + + def __substituteInLearn(self,pair, match, parentMatch,sessionID = "general"): + return tuple((self.__substituteInLearn(i, match, parentMatch,sessionID = sessionID) if type(i) in (tuple,list) else \ + (i if type(i) == dict else (self._wildcards((i,self._condition(i)), match, parentMatch,sessionID = sessionID) if i else i))) for i in pair) + + def save_template(self,filename): + with open(filename,"w") as template: + self.__genrate_and_wrie_template(template,self._pairs) + + def __genrate_and_wrie_template(self,template,pairs): + for topic in self._pairs: + template.write("{% group "+topic+" %}") + for (pattern, parent, response,learn) in pairs[topic]: + template.write("{% block %}") + template.write("{% client %}"+pattern.pattern+"{% endclient %}") + if parent!=None: + template.write("{% prev %}"+parent.pattern+"{% endprev %}") + for res in response: + template.write("{% response %}"+res[0]+"{% response %}") + if learn: + template.write("{% learn %}") + self.__genrate_and_wrie_template(template,learn) + template.write("{% endlearn %}") + template.write("{% endblock %}") + template.write("{% endgroup %}") + + # Hold a conversation with a chatbot + def converse(self,firstQuestion=None ,quit="quit",sessionID = "general"): + if firstQuestion!= None: + self.conversation[sessionID].append(firstQuestion) + print (firstQuestion) + try:input_reader = raw_input + except NameError:input_reader = input + input_sentence = "" + while input_sentence != quit: + input_sentence = quit + try: input_sentence = input_reader(">") + except EOFError:print (input_sentence) + if input_sentence: + self.conversation[sessionID].append(input_sentence) + while input_sentence[-1] in "!.": input_sentence = input_sentence[:-1] + self.conversation[sessionID].append(self.respond(input_sentence,sessionID=sessionID)) + print (self.conversation[sessionID][-1]) + + +def demo(): + firstQuestion="Hi, how are you?" + Chat().converse(firstQuestion) + diff --git a/chatbot/default.template b/chatbot/default.template new file mode 100755 index 0000000..0c7f472 --- /dev/null +++ b/chatbot/default.template @@ -0,0 +1,320 @@ + +{% block %} + {% client %}Please (.*){% endclient %} + {% response %}{% chat %1 %}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}What is your name{% endclient %} + {% response %}My name is ChatBot{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Call me (.*){% endclient %} + {% response %}I will remember that {name:%1}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}what is my name{% endclient %} + {% response %}{%if {name} %}Your name is {name}{% else %} I do not know your name, Can you please tell me your name?{% endif %}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(I am |my name is )?(.*){% endclient %} + {% prev %}(.*)Can you please tell me your name{% endprev %} + {% response %}Thank you {name:%2}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Do you remember my name{% endclient %} + {% response %}{% if {name} %}Yes I do {name}{% else %}No,{% chat what is my name %}{% endif %}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I need (.*){% endclient %} + {% response %}Why do you need %1?{% endresponse %} + {% response %}Would it really help you to get %1?{% endresponse %} + {% response %}Are you sure you need %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Why do not you (.*){% endclient %} + {% response %}Do you really think I do not %1?{% endresponse %} + {% response %}Perhaps eventually I will %1.{% endresponse %} + {% response %}Do you really want me to %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Why do not you (.*){% endclient %} + {% response %}Do you really think I do not %1?{% endresponse %} + {% response %}Perhaps eventually I will %1.{% endresponse %} + {% response %}Do you really want me to %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(I (am|feel) )?(feeling )?(absolutely )?(.*){% endclient %} + {% prev %}.*how are you{% endprev %} + {% response %}{% if {%low %5 %} == fine | {%low %5 %} == good | {%low %5 %} == happy %} Nice to know that you are %5 {% else %} why you feel %5 {% endif %}{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Why can not I (.*){% endclient %} + {% response %}Do you think you should be able to %1?{% endresponse %} + {% response %}If you could %1, what would you do?{% endresponse %} + {% response %}I do not know -- why can not you %1?{% endresponse %} + {% response %}Have you really tried?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I can not (.*){% endclient %} + {% response %}How do you know you can not %1?{% endresponse %} + {% response %}Perhaps you could %1 if you tried.{% endresponse %} + {% response %}What would it take for you to %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I am (.*){% endclient %} + {% response %}Did you come to me because you are %1?{% endresponse %} + {% response %}How long have you been %1?{% endresponse %} + {% response %}How do you feel about being %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I am (.*){% endclient %} + {% response %}How does being %1 make you feel?{% endresponse %} + {% response %}Do you enjoy being %1?{% endresponse %} + {% response %}Why do you tell me you are %1?{% endresponse %} + {% response %}Why do you think you are %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Are you (.*){% endclient %} + {% response %}Why does it matter whether I am %1?{% endresponse %} + {% response %}Would you prefer it if I were not %1?{% endresponse %} + {% response %}Perhaps you believe I am %1.{% endresponse %} + {% response %}I may be %1 -- what do you think?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}What (.*){% endclient %} + {% response %}Why do you ask?{% endresponse %} + {% response %}How would an answer to that help you?{% endresponse %} + {% response %}What do you think?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}How (.*){% endclient %} + {% response %}How do you suppose?{% endresponse %} + {% response %}Perhaps you can answer your own question.{% endresponse %} + {% response %}What is it you are really asking?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Because (.*){% endclient %} + {% response %}Is that the real reason?{% endresponse %} + {% response %}What other reasons come to mind?{% endresponse %} + {% response %}Does that reason apply to anything else?{% endresponse %} + {% response %}If %1, what else must be true?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) sorry (.*){% endclient %} + {% response %}There are many times when no apology is needed.{% endresponse %} + {% response %}What feelings do you have when you apologize?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Hello(.*){% endclient %} + {% response %}Hello... I am glad you could drop by today.{% endresponse %} + {% response %}Hi there... how are you today?{% endresponse %} + {% response %}Hello, how are you feeling today?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I think (.*){% endclient %} + {% response %}Do you doubt %1?{% endresponse %} + {% response %}Do you really think so?{% endresponse %} + {% response %}But you are not sure %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) friend (.*){% endclient %} + {% response %}Tell me more about your friends.{% endresponse %} + {% response %}When you think of a friend, what comes to mind?{% endresponse %} + {% response %}Why do not you tell me about a childhood friend?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Yes{% endclient %} + {% response %}You seem quite sure.{% endresponse %} + {% response %}OK, but can you elaborate a bit?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) computer(.*){% endclient %} + {% response %}Are you really talking about me?{% endresponse %} + {% response %}Does it seem strange to talk to a computer?{% endresponse %} + {% response %}How do computers make you feel?{% endresponse %} + {% response %}Do you feel threatened by computers?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Is it (.*){% endclient %} + {% response %}Do you think it is %1?{% endresponse %} + {% response %}Perhaps it is %1 -- what do you think?{% endresponse %} + {% response %}If it were %1, what would you do?{% endresponse %} + {% response %}It could well be that %1.{% endresponse %} +{% endblock %} + +{% block %} + {% client %}It is (.*){% endclient %} + {% response %}You seem very certain.{% endresponse %} + {% response %}If I told you that it probably is not %1, what would you feel?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Can you (.*){% endclient %} + {% response %}What makes you think I can not %1?{% endresponse %} + {% response %}If I could %1, then what?{% endresponse %} + {% response %}Why do you ask if I can %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Can I (.*){% endclient %} + {% response %}Perhaps you do not want to %1.{% endresponse %} + {% response %}Do you want to be able to %1?{% endresponse %} + {% response %}If you could %1, would you?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}You are (.*){% endclient %} + {% response %}Why do you think I am %1?{% endresponse %} + {% response %}Does it please you to think that I am %1?{% endresponse %} + {% response %}Perhaps you would like me to be %1.{% endresponse %} + {% response %}Perhaps you are really talking about yourself?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}you are (.*){% endclient %} + {% response %}Why do you say I am %1?{% endresponse %} + {% response %}Why do you think I am %1?{% endresponse %} + {% response %}Are we talking about you, or me?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I do not (.*){% endclient %} + {% response %}do not you really %1?{% endresponse %} + {% response %}Why do not you %1?{% endresponse %} + {% response %}Do you want to %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I feel (.*){% endclient %} + {% response %}Good, tell me more about these feelings.{% endresponse %} + {% response %}Do you often feel %1?{% endresponse %} + {% response %}When do you usually feel %1?{% endresponse %} + {% response %}When you feel %1, what do you do?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I have (.*){% endclient %} + {% response %}Why do you tell me that you have %1?{% endresponse %} + {% response %}Have you really %1?{% endresponse %} + {% response %}Now that you have %1, what will you do next?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I would (.*){% endclient %} + {% response %}Could you explain why you would %1?{% endresponse %} + {% response %}Why would you %1?{% endresponse %} + {% response %}Who else knows that you would %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Is there (.*){% endclient %} + {% response %}Do you think there is %1?{% endresponse %} + {% response %}it is likely that there is %1.{% endresponse %} + {% response %}Would you like there to be %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}My (.*){% endclient %} + {% response %}I see, your %1.{% endresponse %} + {% response %}Why do you say that your %1?{% endresponse %} + {% response %}When your %1, how do you feel?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}You (.*){% endclient %} + {% response %}We should be discussing you, not me.{% endresponse %} + {% response %}Why do you say that about me?{% endresponse %} + {% response %}Why do you care whether I %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}Why (.*){% endclient %} + {% response %}Why do not you tell me the reason why %1?{% endresponse %} + {% response %}Why do you think %1?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}I want (.*){% endclient %} + {% response %}What would it mean to you if you got %1?{% endresponse %} + {% response %}Why do you want %1?{% endresponse %} + {% response %}What would you do if you got %1?{% endresponse %} + {% response %}If you got %1, then what would you do?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) mother(.*){% endclient %} + {% response %}Tell me more about your mother.{% endresponse %} + {% response %}What was your relationship with your mother like?{% endresponse %} + {% response %}How do you feel about your mother?{% endresponse %} + {% response %}How does this relate to your feelings today?{% endresponse %} + {% response %}Good family relations are important.{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) father(.*){% endclient %} + {% response %}Tell me more about your father.{% endresponse %} + {% response %}How did your father make you feel?{% endresponse %} + {% response %}How do you feel about your father?{% endresponse %} + {% response %}Does your relationship with your father relate to your feelings today?{% endresponse %} + {% response %}Do you have trouble showing affection with your family?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*) child(.*){% endclient %} + {% response %}Did you have close friends as a child?{% endresponse %} + {% response %}What is your favorite childhood memory?{% endresponse %} + {% response %}Do you remember any dreams or nightmares from childhood?{% endresponse %} + {% response %}Did the other children sometimes tease you?{% endresponse %} + {% response %}How do you think your childhood experiences relate to your feelings today?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}(.*)\?{% endclient %} + {% response %}Why do you ask that?{% endresponse %} + {% response %}Please consider whether you can answer your own question.{% endresponse %} + {% response %}Perhaps the answer lies within yourself?{% endresponse %} + {% response %}Why do not you tell me?{% endresponse %} +{% endblock %} + +{% block %} + {% client %}quit{% endclient %} + {% response %}Thank you for talking with me.{% endresponse %} + {% response %}Good-bye.{% endresponse %} + {% response %}Thank you. Have a good day!{% endresponse %} +{% endblock %} + +{% response %}Please tell me more.{% endresponse %} +{% response %}Let's change focus a bit... Tell me about your family.{% endresponse %} +{% response %}Can you elaborate on that?{% endresponse %} +{% response %}Why do you say that %0?{% endresponse %} +{% response %}I see.{% endresponse %} +{% response %}Very interesting.{% endresponse %} +{% response %}%0.{% endresponse %} +{% response %}I see. And what does that tell you?{% endresponse %} +{% response %}How does that make you feel?{% endresponse %} +{% response %}How do you feel when you say that?{% endresponse %} + diff --git a/chatbot/learn.py b/chatbot/learn.py new file mode 100755 index 0000000..9b90fee --- /dev/null +++ b/chatbot/learn.py @@ -0,0 +1,12 @@ +import re + +class Learn: + + def __init__(self,statements=[],falseStatements=[]): + sentenceToWords = [s.split() for s in statements] + if len(sentenceToWords): + stripper = re.compile("(^[^a-z0-9]+|[^a-z0-9]+$)") + commonWords = set(stripper.sub("",word) for word in sentenceToWords[0]) + for words in sentenceToWords[1:]: + commonWords = commonWords.intersection(stripper.sub("",word) for word in words) + diff --git a/chatbot/spellcheck/__init__.py b/chatbot/spellcheck/__init__.py new file mode 100755 index 0000000..886b535 --- /dev/null +++ b/chatbot/spellcheck/__init__.py @@ -0,0 +1,46 @@ +"""Spelling Corrector in Python 3; see http://norvig.com/spell-correct.html + +Copyright (c) 2007-2016 Peter Norvig +MIT license: www.opensource.org/licenses/mit-license.php +""" + +################ Spelling Corrector + +import re +from os import path +from collections import Counter + +def words(text): return re.findall(r'\w+', text.lower()) + +WORDS = Counter(words(open(path.join(path.dirname(path.abspath(__file__)),'words.txt')).read())) + +def P(word, N=sum(WORDS.values())): + "Probability of `word`." + return WORDS[word] / N + +def correction(word): + "Most probable spelling correction for word." + return max(candidates(word), key=P) + +def candidates(word): + "Generate possible spelling corrections for word." + return (known([word]) or known(edits1(word)) or known(edits2(word)) or [word]) + +def known(words): + "The subset of `words` that appear in the dictionary of WORDS." + return set(w for w in words if w in WORDS) + +def edits1(word): + "All edits that are one edit away from `word`." + letters = 'abcdefghijklmnopqrstuvwxyz' + splits = [(word[:i], word[i:]) for i in range(len(word) + 1)] + deletes = [L + R[1:] for L, R in splits if R] + transposes = [L + R[1] + R[0] + R[2:] for L, R in splits if len(R)>1] + replaces = [L + c + R[1:] for L, R in splits if R for c in letters] + inserts = [L + c + R for L, R in splits for c in letters] + return set(deletes + transposes + replaces + inserts) + +def edits2(word): + "All edits that are two edits away from `word`." + return (e2 for e1 in edits1(word) for e2 in edits1(e1)) + diff --git a/chatbot/spellcheck/words.txt b/chatbot/spellcheck/words.txt new file mode 100755 index 0000000..9f08c38 --- /dev/null +++ b/chatbot/spellcheck/words.txt @@ -0,0 +1 @@ +The Project Gutenberg EBook of The Adventures of Sherlock Holmes by Sir Arthur Conan Doyle (#15 in our series by Sir Arthur Conan Doyle) Copyright laws are changing all over the world. Be sure to check the copyright laws for your country before downloading or redistributing this or any other Project Gutenberg eBook. This header should be the first thing seen when viewing this Project Gutenberg file. Please do not remove it. Do not change or edit the header without written permission. Please read the "legal small print," and other information about the eBook and Project Gutenberg at the bottom of this file. Included is important information about your specific rights and restrictions in how the file may be used. You can also find out about how to make a donation to Project Gutenberg, and how to get involved. **Welcome To The World of Free Plain Vanilla Electronic Texts** **eBooks Readable By Both Humans and By Computers, Since 1971** *****These eBooks Were Prepared By Thousands of Volunteers!***** Title: The Adventures of Sherlock Holmes Author: Sir Arthur Conan Doyle Release Date: March, 1999 [EBook #1661] [Most recently updated: November 29, 2002] Edition: 12 Language: English Character set encoding: ASCII *** START OF THE PROJECT GUTENBERG EBOOK, THE ADVENTURES OF SHERLOCK HOLMES *** (Additional editing by Jose Menendez) THE ADVENTURES OF SHERLOCK HOLMES BY SIR ARTHUR CONAN DOYLE CONTENTS I. A Scandal in Bohemia II. The Red-Headed League III. A Case of Identity IV. The Boscombe Valley Mystery V. The Five Orange Pips VI. The Man with the Twisted Lip VII. The Adventure of the Blue Carbuncle VIII. The Adventure of the Speckled Band IX. The Adventure of the Engineer's Thumb X. The Adventure of the Noble Bachelor XI. The Adventure of the Beryl Coronet XII. The Adventure of the Copper Beeches ADVENTURE I. A SCANDAL IN BOHEMIA I. To Sherlock Holmes she is always the woman. I have seldom heard him mention her under any other name. In his eyes she eclipses and predominates the whole of her sex. It was not that he felt any emotion akin to love for Irene Adler. All emotions, and that one particularly, were abhorrent to his cold, precise but admirably balanced mind. He was, I take it, the most perfect reasoning and observing machine that the world has seen, but as a lover he would have placed himself in a false position. He never spoke of the softer passions, save with a gibe and a sneer. They were admirable things for the observer--excellent for drawing the veil from men's motives and actions. But for the trained reasoner to admit such intrusions into his own delicate and finely adjusted temperament was to introduce a distracting factor which might throw a doubt upon all his mental results. Grit in a sensitive instrument, or a crack in one of his own high-power lenses, would not be more disturbing than a strong emotion in a nature such as his. And yet there was but one woman to him, and that woman was the late Irene Adler, of dubious and questionable memory. I had seen little of Holmes lately. My marriage had drifted us away from each other. My own complete happiness, and the home-centred interests which rise up around the man who first finds himself master of his own establishment, were sufficient to absorb all my attention, while Holmes, who loathed every form of society with his whole Bohemian soul, remained in our lodgings in Baker Street, buried among his old books, and alternating from week to week between cocaine and ambition, the drowsiness of the drug, and the fierce energy of his own keen nature. He was still, as ever, deeply attracted by the study of crime, and occupied his immense faculties and extraordinary powers of observation in following out those clues, and clearing up those mysteries which had been abandoned as hopeless by the official police. From time to time I heard some vague account of his doings: of his summons to Odessa in the case of the Trepoff murder, of his clearing up of the singular tragedy of the Atkinson brothers at Trincomalee, and finally of the mission which he had accomplished so delicately and successfully for the reigning family of Holland. Beyond these signs of his activity, however, which I merely shared with all the readers of the daily press, I knew little of my former friend and companion. One night--it was on the twentieth of March, 1888--I was returning from a journey to a patient (for I had now returned to civil practice), when my way led me through Baker Street. As I passed the well-remembered door, which must always be associated in my mind with my wooing, and with the dark incidents of the Study in Scarlet, I was seized with a keen desire to see Holmes again, and to know how he was employing his extraordinary powers. His rooms were brilliantly lit, and, even as I looked up, I saw his tall, spare figure pass twice in a dark silhouette against the blind. He was pacing the room swiftly, eagerly, with his head sunk upon his chest and his hands clasped behind him. To me, who knew his every mood and habit, his attitude and manner told their own story. He was at work again. He had risen out of his drug-created dreams and was hot upon the scent of some new problem. I rang the bell and was shown up to the chamber which had formerly been in part my own. His manner was not effusive. It seldom was; but he was glad, I think, to see me. With hardly a word spoken, but with a kindly eye, he waved me to an armchair, threw across his case of cigars, and indicated a spirit case and a gasogene in the corner. Then he stood before the fire and looked me over in his singular introspective fashion. "Wedlock suits you," he remarked. "I think, Watson, that you have put on seven and a half pounds since I saw you." "Seven!" I answered. "Indeed, I should have thought a little more. Just a trifle more, I fancy, Watson. And in practice again, I observe. You did not tell me that you intended to go into harness." "Then, how do you know?" "I see it, I deduce it. How do I know that you have been getting yourself very wet lately, and that you have a most clumsy and careless servant girl?" "My dear Holmes," said I, "this is too much. You would certainly have been burned, had you lived a few centuries ago. It is true that I had a country walk on Thursday and came home in a dreadful mess, but as I have changed my clothes I can't imagine how you deduce it. As to Mary Jane, she is incorrigible, and my wife has given her notice, but there, again, I fail to see how you work it out." He chuckled to himself and rubbed his long, nervous hands together. "It is simplicity itself," said he; "my eyes tell me that on the inside of your left shoe, just where the firelight strikes it, the leather is scored by six almost parallel cuts. Obviously they have been caused by someone who has very carelessly scraped round the edges of the sole in order to remove crusted mud from it. Hence, you see, my double deduction that you had been out in vile weather, and that you had a particularly malignant boot-slitting specimen of the London slavey. As to your practice, if a gentleman walks into my rooms smelling of iodoform, with a black mark of nitrate of silver upon his right forefinger, and a bulge on the right side of his top-hat to show where he has secreted his stethoscope, I must be dull, indeed, if I do not pronounce him to be an active member of the medical profession." I could not help laughing at the ease with which he explained his process of deduction. "When I hear you give your reasons," I remarked, "the thing always appears to me to be so ridiculously simple that I could easily do it myself, though at each successive instance of your reasoning I am baffled until you explain your process. And yet I believe that my eyes are as good as yours." "Quite so," he answered, lighting a cigarette, and throwing himself down into an armchair. "You see, but you do not observe. The distinction is clear. For example, you have frequently seen the steps which lead up from the hall to this room." "Frequently." "How often?" "Well, some hundreds of times." "Then how many are there?" "How many? I don't know." "Quite so! You have not observed. And yet you have seen. That is just my point. Now, I know that there are seventeen steps, because I have both seen and observed. By the way, since you are interested in these little problems, and since you are good enough to chronicle one or two of my trifling experiences, you may be interested in this." He threw over a sheet of thick, pink-tinted notepaper which had been lying open upon the table. "It came by the last post," said he. "Read it aloud." The note was undated, and without either signature or address. "There will call upon you to-night, at a quarter to eight o'clock," it said, "a gentleman who desires to consult you upon a matter of the very deepest moment. Your recent services to one of the royal houses of Europe have shown that you are one who may safely be trusted with matters which are of an importance which can hardly be exaggerated. This account of you we have from all quarters received. Be in your chamber then at that hour, and do not take it amiss if your visitor wear a mask." "This is indeed a mystery," I remarked. "What do you imagine that it means?" "I have no data yet. It is a capital mistake to theorise before one has data. Insensibly one begins to twist facts to suit theories, instead of theories to suit facts. But the note itself. What do you deduce from it?" I carefully examined the writing, and the paper upon which it was written. "The man who wrote it was presumably well to do," I remarked, endeavouring to imitate my companion's processes. "Such paper could not be bought under half a crown a packet. It is peculiarly strong and stiff." "Peculiar--that is the very word," said Holmes. "It is not an English paper at all. Hold it up to the light." I did so, and saw a large "E" with a small "g," a "P," and a large "G" with a small "t" woven into the texture of the paper. "What do you make of that?" asked Holmes. "The name of the maker, no doubt; or his monogram, rather." "Not at all. The 'G' with the small 't' stands for 'Gesellschaft,' which is the German for 'Company.' It is a customary contraction like our 'Co.' 'P,' of course, stands for 'Papier.' Now for the 'Eg.' Let us glance at our Continental Gazetteer." He took down a heavy brown volume from his shelves. "Eglow, Eglonitz--here we are, Egria. It is in a German-speaking country--in Bohemia, not far from Carlsbad. 'Remarkable as being the scene of the death of Wallenstein, and for its numerous glass-factories and paper-mills.' Ha, ha, my boy, what do you make of that?" His eyes sparkled, and he sent up a great blue triumphant cloud from his cigarette. "The paper was made in Bohemia," I said. "Precisely. And the man who wrote the note is a German. Do you note the peculiar construction of the sentence--'This account of you we have from all quarters received.' A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs. It only remains, therefore, to discover what is wanted by this German who writes upon Bohemian paper and prefers wearing a mask to showing his face. And here he comes, if I am not mistaken, to resolve all our doubts." As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled. "A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There's money in this case, Watson, if there is nothing else." "I think that I had better go, Holmes." "Not a bit, Doctor. Stay where you are. I am lost without my Boswell. And this promises to be interesting. It would be a pity to miss it." "But your client--" "Never mind him. I may want your help, and so may he. Here he comes. Sit down in that armchair, Doctor, and give us your best attention." A slow and heavy step, which had been heard upon the stairs and in the passage, paused immediately outside the door. Then there was a loud and authoritative tap. "Come in!" said Holmes. A man entered who could hardly have been less than six feet six inches in height, with the chest and limbs of a Hercules. His dress was rich with a richness which would, in England, be looked upon as akin to bad taste. Heavy bands of astrakhan were slashed across the sleeves and fronts of his double-breasted coat, while the deep blue cloak which was thrown over his shoulders was lined with flame-coloured silk and secured at the neck with a brooch which consisted of a single flaming beryl. Boots which extended halfway up his calves, and which were trimmed at the tops with rich brown fur, completed the impression of barbaric opulence which was suggested by his whole appearance. He carried a broad-brimmed hat in his hand, while he wore across the upper part of his face, extending down past the cheekbones, a black vizard mask, which he had apparently adjusted that very moment, for his hand was still raised to it as he entered. From the lower part of the face he appeared to be a man of strong character, with a thick, hanging lip, and a long, straight chin suggestive of resolution pushed to the length of obstinacy. "You had my note?" he asked with a deep harsh voice and a strongly marked German accent. "I told you that I would call." He looked from one to the other of us, as if uncertain which to address. "Pray take a seat," said Holmes. "This is my friend and colleague, Dr. Watson, who is occasionally good enough to help me in my cases. Whom have I the honour to address?" "You may address me as the Count Von Kramm, a Bohemian nobleman. I understand that this gentleman, your friend, is a man of honour and discretion, whom I may trust with a matter of the most extreme importance. If not, I should much prefer to communicate with you alone." I rose to go, but Holmes caught me by the wrist and pushed me back into my chair. "It is both, or none," said he. "You may say before this gentleman anything which you may say to me." The Count shrugged his broad shoulders. "Then I must begin," said he, "by binding you both to absolute secrecy for two years; at the end of that time the matter will be of no importance. At present it is not too much to say that it is of such weight it may have an influence upon European history." "I promise," said Holmes. "And I." "You will excuse this mask," continued our strange visitor. "The august person who employs me wishes his agent to be unknown to you, and I may confess at once that the title by which I have just called myself is not exactly my own." "I was aware of it," said Holmes dryly. "The circumstances are of great delicacy, and every precaution has to be taken to quench what might grow to be an immense scandal and seriously compromise one of the reigning families of Europe. To speak plainly, the matter implicates the great House of Ormstein, hereditary kings of Bohemia." "I was also aware of that," murmured Holmes, settling himself down in his armchair and closing his eyes. Our visitor glanced with some apparent surprise at the languid, lounging figure of the man who had been no doubt depicted to him as the most incisive reasoner and most energetic agent in Europe. Holmes slowly reopened his eyes and looked impatiently at his gigantic client. "If your Majesty would condescend to state your case," he remarked, "I should be better able to advise you." The man sprang from his chair and paced up and down the room in uncontrollable agitation. Then, with a gesture of desperation, he tore the mask from his face and hurled it upon the ground. "You are right," he cried; "I am the King. Why should I attempt to conceal it?" "Why, indeed?" murmured Holmes. "Your Majesty had not spoken before I was aware that I was addressing Wilhelm Gottsreich Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and hereditary King of Bohemia." "But you can understand," said our strange visitor, sitting down once more and passing his hand over his high white forehead, "you can understand that I am not accustomed to doing such business in my own person. Yet the matter was so delicate that I could not confide it to an agent without putting myself in his power. I have come incognito from Prague for the purpose of consulting you." "Then, pray consult," said Holmes, shutting his eyes once more. "The facts are briefly these: Some five years ago, during a lengthy visit to Warsaw, I made the acquaintance of the well-known adventuress, Irene Adler. The name is no doubt familiar to you." "Kindly look her up in my index, Doctor," murmured Holmes without opening his eyes. For many years he had adopted a system of docketing all paragraphs concerning men and things, so that it was difficult to name a subject or a person on which he could not at once furnish information. In this case I found her biography sandwiched in between that of a Hebrew rabbi and that of a staff-commander who had written a monograph upon the deep-sea fishes. "Let me see!" said Holmes. "Hum! Born in New Jersey in the year 1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera of Warsaw--yes! Retired from operatic stage--ha! Living in London--quite so! Your Majesty, as I understand, became entangled with this young person, wrote her some compromising letters, and is now desirous of getting those letters back." "Precisely so. But how--" "Was there a secret marriage?" "None." "No legal papers or certificates?" "None." "Then I fail to follow your Majesty. If this young person should produce her letters for blackmailing or other purposes, how is she to prove their authenticity?" "There is the writing." "Pooh, pooh! Forgery." "My private note-paper." "Stolen." "My own seal." "Imitated." "My photograph." "Bought." "We were both in the photograph." "Oh, dear! That is very bad! Your Majesty has indeed committed an indiscretion." "I was mad--insane." "You have compromised yourself seriously." "I was only Crown Prince then. I was young. I am but thirty now." "It must be recovered." "We have tried and failed." "Your Majesty must pay. It must be bought." "She will not sell." "Stolen, then." "Five attempts have been made. Twice burglars in my pay ransacked her house. Once we diverted her luggage when she travelled. Twice she has been waylaid. There has been no result." "No sign of it?" "Absolutely none." Holmes laughed. "It is quite a pretty little problem," said he. "But a very serious one to me," returned the King reproachfully. "Very, indeed. And what does she propose to do with the photograph?" "To ruin me." "But how?" "I am about to be married." "So I have heard." "To Clotilde Lothman von Saxe-Meningen, second daughter of the King of Scandinavia. You may know the strict principles of her family. She is herself the very soul of delicacy. A shadow of a doubt as to my conduct would bring the matter to an end." "And Irene Adler?" "Threatens to send them the photograph. And she will do it. I know that she will do it. You do not know her, but she has a soul of steel. She has the face of the most beautiful of women, and the mind of the most resolute of men. Rather than I should marry another woman, there are no lengths to which she would not go--none." "You are sure that she has not sent it yet?" "I am sure." "And why?" "Because she has said that she would send it on the day when the betrothal was publicly proclaimed. That will be next Monday." "Oh, then we have three days yet," said Holmes with a yawn. "That is very fortunate, as I have one or two matters of importance to look into just at present. Your Majesty will, of course, stay in London for the present?" "Certainly. You will find me at the Langham under the name of the Count Von Kramm." "Then I shall drop you a line to let you know how we progress." "Pray do so. I shall be all anxiety." "Then, as to money?" "You have carte blanche." "Absolutely?" "I tell you that I would give one of the provinces of my kingdom to have that photograph." "And for present expenses?" The King took a heavy chamois leather bag from under his cloak and laid it on the table. "There are three hundred pounds in gold and seven hundred in notes," he said. Holmes scribbled a receipt upon a sheet of his note-book and handed it to him. "And Mademoiselle's address?" he asked. "Is Briony Lodge, Serpentine Avenue, St. John's Wood." Holmes took a note of it. "One other question," said he. "Was the photograph a cabinet?" "It was." "Then, good-night, your Majesty, and I trust that we shall soon have some good news for you. And good-night, Watson," he added, as the wheels of the royal brougham rolled down the street. "If you will be good enough to call to-morrow afternoon at three o'clock I should like to chat this little matter over with you." II. At three o'clock precisely I was at Baker Street, but Holmes had not yet returned. The landlady informed me that he had left the house shortly after eight o'clock in the morning. I sat down beside the fire, however, with the intention of awaiting him, however long he might be. I was already deeply interested in his inquiry, for, though it was surrounded by none of the grim and strange features which were associated with the two crimes which I have already recorded, still, the nature of the case and the exalted station of his client gave it a character of its own. Indeed, apart from the nature of the investigation which my friend had on hand, there was something in his masterly grasp of a situation, and his keen, incisive reasoning, which made it a pleasure to me to study his system of work, and to follow the quick, subtle methods by which he disentangled the most inextricable mysteries. So accustomed was I to his invariable success that the very possibility of his failing had ceased to enter into my head. It was close upon four before the door opened, and a drunken-looking groom, ill-kempt and side-whiskered, with an inflamed face and disreputable clothes, walked into the room. Accustomed as I was to my friend's amazing powers in the use of disguises, I had to look three times before I was certain that it was indeed he. With a nod he vanished into the bedroom, whence he emerged in five minutes tweed-suited and respectable, as of old. Putting his hands into his pockets, he stretched out his legs in front of the fire and laughed heartily for some minutes. "Well, really!" he cried, and then he choked and laughed again until he was obliged to lie back, limp and helpless, in the chair. "What is it?" "It's quite too funny. I am sure you could never guess how I employed my morning, or what I ended by doing." "I can't imagine. I suppose that you have been watching the habits, and perhaps the house, of Miss Irene Adler." "Quite so; but the sequel was rather unusual. I will tell you, however. I left the house a little after eight o'clock this morning in the character of a groom out of work. There is a wonderful sympathy and freemasonry among horsey men. Be one of them, and you will know all that there is to know. I soon found Briony Lodge. It is a bijou villa, with a garden at the back, but built out in front right up to the road, two stories. Chubb lock to the door. Large sitting-room on the right side, well furnished, with long windows almost to the floor, and those preposterous English window fasteners which a child could open. Behind there was nothing remarkable, save that the passage window could be reached from the top of the coach-house. I walked round it and examined it closely from every point of view, but without noting anything else of interest. "I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half-and-half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to." "And what of Irene Adler?" I asked. "Oh, she has turned all the men's heads down in that part. She is the daintiest thing under a bonnet on this planet. So say the Serpentine-mews, to a man. She lives quietly, sings at concerts, drives out at five every day, and returns at seven sharp for dinner. Seldom goes out at other times, except when she sings. Has only one male visitor, but a good deal of him. He is dark, handsome, and dashing, never calls less than once a day, and often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See the advantages of a cabman as a confidant. They had driven him home a dozen times from Serpentine-mews, and knew all about him. When I had listened to all they had to tell, I began to walk up and down near Briony Lodge once more, and to think over my plan of campaign. "This Godfrey Norton was evidently an important factor in the matter. He was a lawyer. That sounded ominous. What was the relation between them, and what the object of his repeated visits? Was she his client, his friend, or his mistress? If the former, she had probably transferred the photograph to his keeping. If the latter, it was less likely. On the issue of this question depended whether I should continue my work at Briony Lodge, or turn my attention to the gentleman's chambers in the Temple. It was a delicate point, and it widened the field of my inquiry. I fear that I bore you with these details, but I have to let you see my little difficulties, if you are to understand the situation." "I am following you closely," I answered. "I was still balancing the matter in my mind when a hansom cab drove up to Briony Lodge, and a gentleman sprang out. He was a remarkably handsome man, dark, aquiline, and moustached--evidently the man of whom I had heard. He appeared to be in a great hurry, shouted to the cabman to wait, and brushed past the maid who opened the door with the air of a man who was thoroughly at home. "He was in the house about half an hour, and I could catch glimpses of him in the windows of the sitting-room, pacing up and down, talking excitedly, and waving his arms. Of her I could see nothing. Presently he emerged, looking even more flurried than before. As he stepped up to the cab, he pulled a gold watch from his pocket and looked at it earnestly, 'Drive like the devil,' he shouted, 'first to Gross & Hankey's in Regent Street, and then to the Church of St. Monica in the Edgeware Road. Half a guinea if you do it in twenty minutes!' "Away they went, and I was just wondering whether I should not do well to follow them when up the lane came a neat little landau, the coachman with his coat only half-buttoned, and his tie under his ear, while all the tags of his harness were sticking out of the buckles. It hadn't pulled up before she shot out of the hall door and into it. I only caught a glimpse of her at the moment, but she was a lovely woman, with a face that a man might die for. " 'The Church of St. Monica, John,' she cried, 'and half a sovereign if you reach it in twenty minutes.' "This was quite too good to lose, Watson. I was just balancing whether I should run for it, or whether I should perch behind her landau when a cab came through the street. The driver looked twice at such a shabby fare, but I jumped in before he could object. 'The Church of St. Monica,' said I, 'and half a sovereign if you reach it in twenty minutes.' It was twenty-five minutes to twelve, and of course it was clear enough what was in the wind. "My cabby drove fast. I don't think I ever drove faster, but the others were there before us. The cab and the landau with their steaming horses were in front of the door when I arrived. I paid the man and hurried into the church. There was not a soul there save the two whom I had followed and a surpliced clergyman, who seemed to be expostulating with them. They were all three standing in a knot in front of the altar. I lounged up the side aisle like any other idler who has dropped into a church. Suddenly, to my surprise, the three at the altar faced round to me, and Godfrey Norton came running as hard as he could towards me. " 'Thank God,' he cried. 'You'll do. Come! Come!' " 'What then?' I asked. " 'Come, man, come, only three minutes, or it won't be legal.' "I was half-dragged up to the altar, and before I knew where I was I found myself mumbling responses which were whispered in my ear, and vouching for things of which I knew nothing, and generally assisting in the secure tying up of Irene Adler, spinster, to Godfrey Norton, bachelor. It was all done in an instant, and there was the gentleman thanking me on the one side and the lady on the other, while the clergyman beamed on me in front. It was the most preposterous position in which I ever found myself in my life, and it was the thought of it that started me laughing just now. It seems that there had been some informality about their license, that the clergyman absolutely refused to marry them without a witness of some sort, and that my lucky appearance saved the bridegroom from having to sally out into the streets in search of a best man. The bride gave me a sovereign, and I mean to wear it on my watch chain in memory of the occasion." "This is a very unexpected turn of affairs," said I; "and what then?" "Well, I found my plans very seriously menaced. It looked as if the pair might take an immediate departure, and so necessitate very prompt and energetic measures on my part. At the church door, however, they separated, he driving back to the Temple, and she to her own house. 'I shall drive out in the park at five as usual,' she said as she left him. I heard no more. They drove away in different directions, and I went off to make my own arrangements." "Which are?" "Some cold beef and a glass of beer," he answered, ringing the bell. "I have been too busy to think of food, and I am likely to be busier still this evening. By the way, Doctor, I shall want your co-operation." "I shall be delighted." "You don't mind breaking the law?" "Not in the least." "Nor running a chance of arrest?" "Not in a good cause." "Oh, the cause is excellent!" "Then I am your man." "I was sure that I might rely on you." "But what is it you wish?" "When Mrs. Turner has brought in the tray I will make it clear to you. Now," he said as he turned hungrily on the simple fare that our landlady had provided, "I must discuss it while I eat, for I have not much time. It is nearly five now. In two hours we must be on the scene of action. Miss Irene, or Madame, rather, returns from her drive at seven. We must be at Briony Lodge to meet her." "And what then?" "You must leave that to me. I have already arranged what is to occur. There is only one point on which I must insist. You must not interfere, come what may. You understand?" "I am to be neutral?" "To do nothing whatever. There will probably be some small unpleasantness. Do not join in it. It will end in my being conveyed into the house. Four or five minutes afterwards the sitting-room window will open. You are to station yourself close to that open window." "Yes." "You are to watch me, for I will be visible to you." "Yes." "And when I raise my hand--so--you will throw into the room what I give you to throw, and will, at the same time, raise the cry of fire. You quite follow me?" "Entirely." "It is nothing very formidable," he said, taking a long cigar-shaped roll from his pocket. "It is an ordinary plumber's smoke-rocket, fitted with a cap at either end to make it self-lighting. Your task is confined to that. When you raise your cry of fire, it will be taken up by quite a number of people. You may then walk to the end of the street, and I will rejoin you in ten minutes. I hope that I have made myself clear?" "I am to remain neutral, to get near the window, to watch you, and at the signal to throw in this object, then to raise the cry of fire, and to wait you at the corner of the street." "Precisely." "Then you may entirely rely on me." "That is excellent. I think, perhaps, it is almost time that I prepare for the new role I have to play." He disappeared into his bedroom and returned in a few minutes in the character of an amiable and simple-minded Nonconformist clergyman. His broad black hat, his baggy trousers, his white tie, his sympathetic smile, and general look of peering and benevolent curiosity were such as Mr. John Hare alone could have equalled. It was not merely that Holmes changed his costume. His expression, his manner, his very soul seemed to vary with every fresh part that he assumed. The stage lost a fine actor, even as science lost an acute reasoner, when he became a specialist in crime. It was a quarter past six when we left Baker Street, and it still wanted ten minutes to the hour when we found ourselves in Serpentine Avenue. It was already dusk, and the lamps were just being lighted as we paced up and down in front of Briony Lodge, waiting for the coming of its occupant. The house was just such as I had pictured it from Sherlock Holmes' succinct description, but the locality appeared to be less private than I expected. On the contrary, for a small street in a quiet neighbourhood, it was remarkably animated. There was a group of shabbily dressed men smoking and laughing in a corner, a scissors-grinder with his wheel, two guardsmen who were flirting with a nurse-girl, and several well-dressed young men who were lounging up and down with cigars in their mouths. "You see," remarked Holmes, as we paced to and fro in front of the house, "this marriage rather simplifies matters. The photograph becomes a double-edged weapon now. The chances are that she would be as averse to its being seen by Mr. Godfrey Norton, as our client is to its coming to the eyes of his princess. Now the question is, Where are we to find the photograph?" "Where, indeed?" "It is most unlikely that she carries it about with her. It is cabinet size. Too large for easy concealment about a woman's dress. She knows that the King is capable of having her waylaid and searched. Two attempts of the sort have already been made. We may take it, then, that she does not carry it about with her." "Where, then?" "Her banker or her lawyer. There is that double possibility. But I am inclined to think neither. Women are naturally secretive, and they like to do their own secreting. Why should she hand it over to anyone else? She could trust her own guardianship, but she could not tell what indirect or political influence might be brought to bear upon a business man. Besides, remember that she had resolved to use it within a few days. It must be where she can lay her hands upon it. It must be in her own house." "But it has twice been burgled." "Pshaw! They did not know how to look." "But how will you look?" "I will not look." "What then?" "I will get her to show me." "But she will refuse." "She will not be able to. But I hear the rumble of wheels. It is her carriage. Now carry out my orders to the letter." As he spoke the gleam of the sidelights of a carriage came round the curve of the avenue. It was a smart little landau which rattled up to the door of Briony Lodge. As it pulled up, one of the loafing men at the corner dashed forward to open the door in the hope of earning a copper, but was elbowed away by another loafer, who had rushed up with the same intention. A fierce quarrel broke out, which was increased by the two guardsmen, who took sides with one of the loungers, and by the scissors-grinder, who was equally hot upon the other side. A blow was struck, and in an instant the lady, who had stepped from her carriage, was the centre of a little knot of flushed and struggling men, who struck savagely at each other with their fists and sticks. Holmes dashed into the crowd to protect the lady; but, just as he reached her, he gave a cry and dropped to the ground, with the blood running freely down his face. At his fall the guardsmen took to their heels in one direction and the loungers in the other, while a number of better dressed people, who had watched the scuffle without taking part in it, crowded in to help the lady and to attend to the injured man. Irene Adler, as I will still call her, had hurried up the steps; but she stood at the top with her superb figure outlined against the lights of the hall, looking back into the street. "Is the poor gentleman much hurt?" she asked. "He is dead," cried several voices. "No, no, there's life in him!" shouted another. "But he'll be gone before you can get him to hospital." "He's a brave fellow," said a woman. "They would have had the lady's purse and watch if it hadn't been for him. They were a gang, and a rough one, too. Ah, he's breathing now." "He can't lie in the street. May we bring him in, marm?" "Surely. Bring him into the sitting-room. There is a comfortable sofa. This way, please!" Slowly and solemnly he was borne into Briony Lodge and laid out in the principal room, while I still observed the proceedings from my post by the window. The lamps had been lit, but the blinds had not been drawn, so that I could see Holmes as he lay upon the couch. I do not know whether he was seized with compunction at that moment for the part he was playing, but I know that I never felt more heartily ashamed of myself in my life than when I saw the beautiful creature against whom I was conspiring, or the grace and kindliness with which she waited upon the injured man. And yet it would be the blackest treachery to Holmes to draw back now from the part which he had intrusted to me. I hardened my heart, and took the smoke-rocket from under my ulster. After all, I thought, we are not injuring her. We are but preventing her from injuring another. Holmes had sat up upon the couch, and I saw him motion like a man who is in need of air. A maid rushed across and threw open the window. At the same instant I saw him raise his hand and at the signal I tossed my rocket into the room with a cry of "Fire!" The word was no sooner out of my mouth than the whole crowd of spectators, well dressed and ill--gentlemen, ostlers, and servant maids--joined in a general shriek of "Fire!" Thick clouds of smoke curled through the room and out at the open window. I caught a glimpse of rushing figures, and a moment later the voice of Holmes from within assuring them that it was a false alarm. Slipping through the shouting crowd I made my way to the corner of the street, and in ten minutes was rejoiced to find my friend's arm in mine, and to get away from the scene of uproar. He walked swiftly and in silence for some few minutes until we had turned down one of the quiet streets which lead towards the Edgeware Road. "You did it very nicely, Doctor," he remarked. "Nothing could have been better. It is all right." "You have the photograph?" "I know where it is." "And how did you find out?" "She showed me, as I told you she would." "I am still in the dark." "I do not wish to make a mystery," said he, laughing. "The matter was perfectly simple. You, of course, saw that everyone in the street was an accomplice. They were all engaged for the evening." "I guessed as much." "Then, when the row broke out, I had a little moist red paint in the palm of my hand. I rushed forward, fell down, clapped my hand to my face, and became a piteous spectacle. It is an old trick." "That also I could fathom." "Then they carried me in. She was bound to have me in. What else could she do? And into her sitting-room, which was the very room which I suspected. It lay between that and her bedroom, and I was determined to see which. They laid me on a couch, I motioned for air, they were compelled to open the window, and you had your chance." "How did that help you?" "It was all-important. When a woman thinks that her house is on fire, her instinct is at once to rush to the thing which she values most. It is a perfectly overpowering impulse, and I have more than once taken advantage of it. In the case of the Darlington Substitution Scandal it was of use to me, and also in the Arnsworth Castle business. A married woman grabs at her baby; an unmarried one reaches for her jewel-box. Now it was clear to me that our lady of to-day had nothing in the house more precious to her than what we are in quest of. She would rush to secure it. The alarm of fire was admirably done. The smoke and shouting were enough to shake nerves of steel. She responded beautifully. The photograph is in a recess behind a sliding panel just above the right bell-pull. She was there in an instant, and I caught a glimpse of it as she half drew it out. When I cried out that it was a false alarm, she replaced it, glanced at the rocket, rushed from the room, and I have not seen her since. I rose, and, making my excuses, escaped from the house. I hesitated whether to attempt to secure the photograph at once; but the coachman had come in, and as he was watching me narrowly, it seemed safer to wait. A little over-precipitance may ruin all." "And now?" I asked. "Our quest is practically finished. I shall call with the King to-morrow, and with you, if you care to come with us. We will be shown into the sitting-room to wait for the lady, but it is probable that when she comes she may find neither us nor the photograph. It might be a satisfaction to his Majesty to regain it with his own hands." "And when will you call?" "At eight in the morning. She will not be up, so that we shall have a clear field. Besides, we must be prompt, for this marriage may mean a complete change in her life and habits. I must wire to the King without delay." We had reached Baker Street and had stopped at the door. He was searching his pockets for the key when someone passing said: "Good-night, Mister Sherlock Holmes." There were several people on the pavement at the time, but the greeting appeared to come from a slim youth in an ulster who had hurried by. "I've heard that voice before," said Holmes, staring down the dimly lit street. "Now, I wonder who the deuce that could have been." III. I slept at Baker Street that night, and we were engaged upon our toast and coffee in the morning when the King of Bohemia rushed into the room. "You have really got it!" he cried, grasping Sherlock Holmes by either shoulder and looking eagerly into his face. "Not yet." "But you have hopes?" "I have hopes." "Then, come. I am all impatience to be gone." "We must have a cab." "No, my brougham is waiting." "Then that will simplify matters." We descended and started off once more for Briony Lodge. "Irene Adler is married," remarked Holmes. "Married! When?" "Yesterday." "But to whom?" "To an English lawyer named Norton." "But she could not love him." "I am in hopes that she does." "And why in hopes?" "Because it would spare your Majesty all fear of future annoyance. If the lady loves her husband, she does not love your Majesty. If she does not love your Majesty, there is no reason why she should interfere with your Majesty's plan." "It is true. And yet--! Well! I wish she had been of my own station! What a queen she would have made!" He relapsed into a moody silence, which was not broken until we drew up in Serpentine Avenue. The door of Briony Lodge was open, and an elderly woman stood upon the steps. She watched us with a sardonic eye as we stepped from the brougham. "Mr. Sherlock Holmes, I believe?" said she. "I am Mr. Holmes," answered my companion, looking at her with a questioning and rather startled gaze. "Indeed! My mistress told me that you were likely to call. She left this morning with her husband by the 5:15 train from Charing Cross for the Continent." "What!" Sherlock Holmes staggered back, white with chagrin and surprise. "Do you mean that she has left England?" "Never to return." "And the papers?" asked the King hoarsely. "All is lost." "We shall see." He pushed past the servant and rushed into the drawing-room, followed by the King and myself. The furniture was scattered about in every direction, with dismantled shelves and open drawers, as if the lady had hurriedly ransacked them before her flight. Holmes rushed at the bell-pull, tore back a small sliding shutter, and, plunging in his hand, pulled out a photograph and a letter. The photograph was of Irene Adler herself in evening dress, the letter was superscribed to "Sherlock Holmes, Esq. To be left till called for." My friend tore it open, and we all three read it together. It was dated at midnight of the preceding night and ran in this way: "MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You took me in completely. Until after the alarm of fire, I had not a suspicion. But then, when I found how I had betrayed myself, I began to think. I had been warned against you months ago. I had been told that, if the King employed an agent, it would certainly be you. And your address had been given me. Yet, with all this, you made me reveal what you wanted to know. Even after I became suspicious, I found it hard to think evil of such a dear, kind old clergyman. But, you know, I have been trained as an actress myself. Male costume is nothing new to me. I often take advantage of the freedom which it gives. I sent John, the coachman, to watch you, ran upstairs, got into my walking clothes, as I call them, and came down just as you departed. "Well, I followed you to your door, and so made sure that I was really an object of interest to the celebrated Mr. Sherlock Holmes. Then I, rather imprudently, wished you good-night, and started for the Temple to see my husband. "We both thought the best resource was flight, when pursued by so formidable an antagonist; so you will find the nest empty when you call to-morrow. As to the photograph, your client may rest in peace. I love and am loved by a better man than he. The King may do what he will without hindrance from one whom he has cruelly wronged. I keep it only to safeguard myself, and to preserve a weapon which will always secure me from any steps which he might take in the future. I leave a photograph which he might care to possess; and I remain, dear Mr. Sherlock Holmes, "Very truly yours, "IRENE NORTON, nee ADLER." "What a woman--oh, what a woman!" cried the King of Bohemia, when we had all three read this epistle. "Did I not tell you how quick and resolute she was? Would she not have made an admirable queen? Is it not a pity that she was not on my level?" "From what I have seen of the lady, she seems, indeed, to be on a very different level to your Majesty," said Holmes coldly. "I am sorry that I have not been able to bring your Majesty's business to a more successful conclusion." "On the contrary, my dear sir," cried the King; "nothing could be more successful. I know that her word is inviolate. The photograph is now as safe as if it were in the fire." "I am glad to hear your Majesty say so." "I am immensely indebted to you. Pray tell me in what way I can reward you. This ring--" He slipped an emerald snake ring from his finger and held it out upon the palm of his hand. "Your Majesty has something which I should value even more highly," said Holmes. "You have but to name it." "This photograph!" The King stared at him in amazement. "Irene's photograph!" he cried. "Certainly, if you wish it." "I thank your Majesty. Then there is no more to be done in the matter. I have the honour to wish you a very good morning." He bowed, and, turning away without observing the hand which the King had stretched out to him, he set off in my company for his chambers. And that was how a great scandal threatened to affect the kingdom of Bohemia, and how the best plans of Mr. Sherlock Holmes were beaten by a woman's wit. He used to make merry over the cleverness of women, but I have not heard him do it of late. And when he speaks of Irene Adler, or when he refers to her photograph, it is always under the honourable title of the woman. ADVENTURE II. THE RED-HEADED LEAGUE I had called upon my friend, Mr. Sherlock Holmes, one day in the autumn of last year and found him in deep conversation with a very stout, florid-faced, elderly gentleman with fiery red hair. With an apology for my intrusion, I was about to withdraw when Holmes pulled me abruptly into the room and closed the door behind me. "You could not possibly have come at a better time, my dear Watson," he said cordially. "I was afraid that you were engaged." "So I am. Very much so." "Then I can wait in the next room." "Not at all. This gentleman, Mr. Wilson, has been my partner and helper in many of my most successful cases, and I have no doubt that he will be of the utmost use to me in yours also." The stout gentleman half rose from his chair and gave a bob of greeting, with a quick little questioning glance from his small fat-encircled eyes. "Try the settee," said Holmes, relapsing into his armchair and putting his fingertips together, as was his custom when in judicial moods. "I know, my dear Watson, that you share my love of all that is bizarre and outside the conventions and humdrum routine of everyday life. You have shown your relish for it by the enthusiasm which has prompted you to chronicle, and, if you will excuse my saying so, somewhat to embellish so many of my own little adventures." "Your cases have indeed been of the greatest interest to me," I observed. "You will remember that I remarked the other day, just before we went into the very simple problem presented by Miss Mary Sutherland, that for strange effects and extraordinary combinations we must go to life itself, which is always far more daring than any effort of the imagination." "A proposition which I took the liberty of doubting." "You did, Doctor, but none the less you must come round to my view, for otherwise I shall keep on piling fact upon fact on you until your reason breaks down under them and acknowledges me to be right. Now, Mr. Jabez Wilson here has been good enough to call upon me this morning, and to begin a narrative which promises to be one of the most singular which I have listened to for some time. You have heard me remark that the strangest and most unique things are very often connected not with the larger but with the smaller crimes, and occasionally, indeed, where there is room for doubt whether any positive crime has been committed. As far as I have heard, it is impossible for me to say whether the present case is an instance of crime or not, but the course of events is certainly among the most singular that I have ever listened to. Perhaps, Mr. Wilson, you would have the great kindness to recommence your narrative. I ask you not merely because my friend Dr. Watson has not heard the opening part but also because the peculiar nature of the story makes me anxious to have every possible detail from your lips. As a rule, when I have heard some slight indication of the course of events, I am able to guide myself by the thousands of other similar cases which occur to my memory. In the present instance I am forced to admit that the facts are, to the best of my belief, unique." The portly client puffed out his chest with an appearance of some little pride and pulled a dirty and wrinkled newspaper from the inside pocket of his greatcoat. As he glanced down the advertisement column, with his head thrust forward and the paper flattened out upon his knee, I took a good look at the man and endeavoured, after the fashion of my companion, to read the indications which might be presented by his dress or appearance. I did not gain very much, however, by my inspection. Our visitor bore every mark of being an average commonplace British tradesman, obese, pompous, and slow. He wore rather baggy grey shepherd's check trousers, a not over-clean black frock-coat, unbuttoned in the front, and a drab waistcoat with a heavy brassy Albert chain, and a square pierced bit of metal dangling down as an ornament. A frayed top-hat and a faded brown overcoat with a wrinkled velvet collar lay upon a chair beside him. Altogether, look as I would, there was nothing remarkable about the man save his blazing red head, and the expression of extreme chagrin and discontent upon his features. Sherlock Holmes' quick eye took in my occupation, and he shook his head with a smile as he noticed my questioning glances. "Beyond the obvious facts that he has at some time done manual labour, that he takes snuff, that he is a Freemason, that he has been in China, and that he has done a considerable amount of writing lately, I can deduce nothing else." Mr. Jabez Wilson started up in his chair, with his forefinger upon the paper, but his eyes upon my companion. "How, in the name of good-fortune, did you know all that, Mr. Holmes?" he asked. "How did you know, for example, that I did manual labour. It's as true as gospel, for I began as a ship's carpenter." "Your hands, my dear sir. Your right hand is quite a size larger than your left. You have worked with it, and the muscles are more developed." "Well, the snuff, then, and the Freemasonry?" "I won't insult your intelligence by telling you how I read that, especially as, rather against the strict rules of your order, you use an arc-and-compass breastpin." "Ah, of course, I forgot that. But the writing?" "What else can be indicated by that right cuff so very shiny for five inches, and the left one with the smooth patch near the elbow where you rest it upon the desk?" "Well, but China?" "The fish that you have tattooed immediately above your right wrist could only have been done in China. I have made a small study of tattoo marks and have even contributed to the literature of the subject. That trick of staining the fishes' scales of a delicate pink is quite peculiar to China. When, in addition, I see a Chinese coin hanging from your watch-chain, the matter becomes even more simple." Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I thought at first that you had done something clever, but I see that there was nothing in it after all." "I begin to think, Watson," said Holmes, "that I make a mistake in explaining. 'Omne ignotum pro magnifico,' you know, and my poor little reputation, such as it is, will suffer shipwreck if I am so candid. Can you not find the advertisement, Mr. Wilson?" "Yes, I have got it now," he answered with his thick red finger planted halfway down the column. "Here it is. This is what began it all. You just read it for yourself, sir." I took the paper from him and read as follows: "TO THE RED-HEADED LEAGUE: On account of the bequest of the late Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now another vacancy open which entitles a member of the League to a salary of $4 a week for purely nominal services. All red-headed men who are sound in body and mind and above the age of twenty-one years, are eligible. Apply in person on Monday, at eleven o'clock, to Duncan Ross, at the offices of the League, 7 Pope's Court, Fleet Street." "What on earth does this mean?" I ejaculated after I had twice read over the extraordinary announcement. Holmes chuckled and wriggled in his chair, as was his habit when in high spirits. "It is a little off the beaten track, isn't it?" said he. "And now, Mr. Wilson, off you go at scratch and tell us all about yourself, your household, and the effect which this advertisement had upon your fortunes. You will first make a note, Doctor, of the paper and the date." "It is The Morning Chronicle of April 27, 1890. Just two months ago." "Very good. Now, Mr. Wilson?" "Well, it is just as I have been telling you, Mr. Sherlock Holmes," said Jabez Wilson, mopping his forehead; "I have a small pawnbroker's business at Coburg Square, near the City. It's not a very large affair, and of late years it has not done more than just give me a living. I used to be able to keep two assistants, but now I only keep one; and I would have a job to pay him but that he is willing to come for half wages so as to learn the business." "What is the name of this obliging youth?" asked Sherlock Holmes. "His name is Vincent Spaulding, and he's not such a youth, either. It's hard to say his age. I should not wish a smarter assistant, Mr. Holmes; and I know very well that he could better himself and earn twice what I am able to give him. But, after all, if he is satisfied, why should I put ideas in his head?" "Why, indeed? You seem most fortunate in having an employe who comes under the full market price. It is not a common experience among employers in this age. I don't know that your assistant is not as remarkable as your advertisement." "Oh, he has his faults, too," said Mr. Wilson. "Never was such a fellow for photography. Snapping away with a camera when he ought to be improving his mind, and then diving down into the cellar like a rabbit into its hole to develop his pictures. That is his main fault, but on the whole he's a good worker. There's no vice in him." "He is still with you, I presume?" "Yes, sir. He and a girl of fourteen, who does a bit of simple cooking and keeps the place clean--that's all I have in the house, for I am a widower and never had any family. We live very quietly, sir, the three of us; and we keep a roof over our heads and pay our debts, if we do nothing more. "The first thing that put us out was that advertisement. Spaulding, he came down into the office just this day eight weeks, with this very paper in his hand, and he says: " 'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' " 'Why that?' I asks. " 'Why,' says he, 'here's another vacancy on the League of the Red-headed Men. It's worth quite a little fortune to any man who gets it, and I understand that there are more vacancies than there are men, so that the trustees are at their wits' end what to do with the money. If my hair would only change colour, here's a nice little crib all ready for me to step into.' " 'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a very stay-at-home man, and as my business came to me instead of my having to go to it, I was often weeks on end without putting my foot over the door-mat. In that way I didn't know much of what was going on outside, and I was always glad of a bit of news. " 'Have you never heard of the League of the Red-headed Men?' he asked with his eyes open. " 'Never.' " 'Why, I wonder at that, for you are eligible yourself for one of the vacancies.' " 'And what are they worth?' I asked. " 'Oh, merely a couple of hundred a year, but the work is slight, and it need not interfere very much with one's other occupations.' "Well, you can easily think that that made me prick up my ears, for the business has not been over good for some years, and an extra couple of hundred would have been very handy. " 'Tell me all about it,' said I. " 'Well,' said he, showing me the advertisement, 'you can see for yourself that the League has a vacancy, and there is the address where you should apply for particulars. As far as I can make out, the League was founded by an American millionaire, Ezekiah Hopkins, who was very peculiar in his ways. He was himself red-headed, and he had a great sympathy for all red-headed men; so, when he died, it was found that he had left his enormous fortune in the hands of trustees, with instructions to apply the interest to the providing of easy berths to men whose hair is of that colour. From all I hear it is splendid pay and very little to do.' " 'But,' said I, 'there would be millions of red-headed men who would apply.' " 'Not so many as you might think,' he answered. 'You see it is really confined to Londoners, and to grown men. This American had started from London when he was young, and he wanted to do the old town a good turn. Then, again, I have heard it is no use your applying if your hair is light red, or dark red, or anything but real bright, blazing, fiery red. Now, if you cared to apply, Mr. Wilson, you would just walk in; but perhaps it would hardly be worth your while to put yourself out of the way for the sake of a few hundred pounds.' "Now, it is a fact, gentlemen, as you may see for yourselves, that my hair is of a very full and rich tint, so that it seemed to me that if there was to be any competition in the matter I stood as good a chance as any man that I had ever met. Vincent Spaulding seemed to know so much about it that I thought he might prove useful, so I just ordered him to put up the shutters for the day and to come right away with me. He was very willing to have a holiday, so we shut the business up and started off for the address that was given us in the advertisement. "I never hope to see such a sight as that again, Mr. Holmes. From north, south, east, and west every man who had a shade of red in his hair had tramped into the city to answer the advertisement. Fleet Street was choked with red-headed folk, and Pope's Court looked like a coster's orange barrow. I should not have thought there were so many in the whole country as were brought together by that single advertisement. Every shade of colour they were--straw, lemon, orange, brick, Irish-setter, liver, clay; but, as Spaulding said, there were not many who had the real vivid flame-coloured tint. When I saw how many were waiting, I would have given it up in despair; but Spaulding would not hear of it. How he did it I could not imagine, but he pushed and pulled and butted until he got me through the crowd, and right up to the steps which led to the office. There was a double stream upon the stair, some going up in hope, and some coming back dejected; but we wedged in as well as we could and soon found ourselves in the office." "Your experience has been a most entertaining one," remarked Holmes as his client paused and refreshed his memory with a huge pinch of snuff. "Pray continue your very interesting statement." "There was nothing in the office but a couple of wooden chairs and a deal table, behind which sat a small man with a head that was even redder than mine. He said a few words to each candidate as he came up, and then he always managed to find some fault in them which would disqualify them. Getting a vacancy did not seem to be such a very easy matter, after all. However, when our turn came the little man was much more favourable to me than to any of the others, and he closed the door as we entered, so that he might have a private word with us. " 'This is Mr. Jabez Wilson,' said my assistant, 'and he is willing to fill a vacancy in the League.' " 'And he is admirably suited for it,' the other answered. 'He has every requirement. I cannot recall when I have seen anything so fine.' He took a step backward, cocked his head on one side, and gazed at my hair until I felt quite bashful. Then suddenly he plunged forward, wrung my hand, and congratulated me warmly on my success. " 'It would be injustice to hesitate,' said he. 'You will, however, I am sure, excuse me for taking an obvious precaution.' With that he seized my hair in both his hands, and tugged until I yelled with the pain. 'There is water in your eyes,' said he as he released me. 'I perceive that all is as it should be. But we have to be careful, for we have twice been deceived by wigs and once by paint. I could tell you tales of cobbler's wax which would disgust you with human nature.' He stepped over to the window and shouted through it at the top of his voice that the vacancy was filled. A groan of disappointment came up from below, and the folk all trooped away in different directions until there was not a red-head to be seen except my own and that of the manager. " 'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of the pensioners upon the fund left by our noble benefactor. Are you a married man, Mr. Wilson? Have you a family?' "I answered that I had not. "His face fell immediately. " 'Dear me!' he said gravely, 'that is very serious indeed! I am sorry to hear you say that. The fund was, of course, for the propagation and spread of the red-heads as well as for their maintenance. It is exceedingly unfortunate that you should be a bachelor.' "My face lengthened at this, Mr. Holmes, for I thought that I was not to have the vacancy after all; but after thinking it over for a few minutes he said that it would be all right. " 'In the case of another,' said he, 'the objection might be fatal, but we must stretch a point in favour of a man with such a head of hair as yours. When shall you be able to enter upon your new duties?' " 'Well, it is a little awkward, for I have a business already,' said I. " 'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. 'I should be able to look after that for you.' " 'What would be the hours?' I asked. " 'Ten to two.' "Now a pawnbroker's business is mostly done of an evening, Mr. Holmes, especially Thursday and Friday evening, which is just before pay-day; so it would suit me very well to earn a little in the mornings. Besides, I knew that my assistant was a good man, and that he would see to anything that turned up. " 'That would suit me very well,' said I. 'And the pay?' " 'Is $4 a week.' " 'And the work?' " 'Is purely nominal.' " 'What do you call purely nominal?' " 'Well, you have to be in the office, or at least in the building, the whole time. If you leave, you forfeit your whole position forever. The will is very clear upon that point. You don't comply with the conditions if you budge from the office during that time.' " 'It's only four hours a day, and I should not think of leaving,' said I. " 'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness nor business nor anything else. There you must stay, or you lose your billet.' " 'And the work?' " 'Is to copy out the Encyclopaedia Britannica. There is the first volume of it in that press. You must find your own ink, pens, and blotting-paper, but we provide this table and chair. Will you be ready to-morrow?' " 'Certainly,' I answered. " 'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you once more on the important position which you have been fortunate enough to gain.' He bowed me out of the room and I went home with my assistant, hardly knowing what to say or do, I was so pleased at my own good fortune. "Well, I thought over the matter all day, and by evening I was in low spirits again; for I had quite persuaded myself that the whole affair must be some great hoax or fraud, though what its object might be I could not imagine. It seemed altogether past belief that anyone could make such a will, or that they would pay such a sum for doing anything so simple as copying out the Encyclopaedia Britannica. Vincent Spaulding did what he could to cheer me up, but by bedtime I had reasoned myself out of the whole thing. However, in the morning I determined to have a look at it anyhow, so I bought a penny bottle of ink, and with a quill-pen, and seven sheets of foolscap paper, I started off for Pope's Court. "Well, to my surprise and delight, everything was as right as possible. The table was set out ready for me, and Mr. Duncan Ross was there to see that I got fairly to work. He started me off upon the letter A, and then he left me; but he would drop in from time to time to see that all was right with me. At two o'clock he bade me good-day, complimented me upon the amount that I had written, and locked the door of the office after me. "This went on day after day, Mr. Holmes, and on Saturday the manager came in and planked down four golden sovereigns for my week's work. It was the same next week, and the same the week after. Every morning I was there at ten, and every afternoon I left at two. By degrees Mr. Duncan Ross took to coming in only once of a morning, and then, after a time, he did not come in at all. Still, of course, I never dared to leave the room for an instant, for I was not sure when he might come, and the billet was such a good one, and suited me so well, that I would not risk the loss of it. "Eight weeks passed away like this, and I had written about Abbots and Archery and Armour and Architecture and Attica, and hoped with diligence that I might get on to the B's before very long. It cost me something in foolscap, and I had pretty nearly filled a shelf with my writings. And then suddenly the whole business came to an end." "To an end?" "Yes, sir. And no later than this morning. I went to my work as usual at ten o'clock, but the door was shut and locked, with a little square of cardboard hammered on to the middle of the panel with a tack. Here it is, and you can read for yourself." He held up a piece of white cardboard about the size of a sheet of note-paper. It read in this fashion: THE RED-HEADED LEAGUE IS DISSOLVED. October 9, 1890. Sherlock Holmes and I surveyed this curt announcement and the rueful face behind it, until the comical side of the affair so completely overtopped every other consideration that we both burst out into a roar of laughter. "I cannot see that there is anything very funny," cried our client, flushing up to the roots of his flaming head. "If you can do nothing better than laugh at me, I can go elsewhere." "No, no," cried Holmes, shoving him back into the chair from which he had half risen. "I really wouldn't miss your case for the world. It is most refreshingly unusual. But there is, if you will excuse my saying so, something just a little funny about it. Pray what steps did you take when you found the card upon the door?" "I was staggered, sir. I did not know what to do. Then I called at the offices round, but none of them seemed to know anything about it. Finally, I went to the landlord, who is an accountant living on the ground floor, and I asked him if he could tell me what had become of the Red-headed League. He said that he had never heard of any such body. Then I asked him who Mr. Duncan Ross was. He answered that the name was new to him. " 'Well,' said I, 'the gentleman at No. 4.' " 'What, the red-headed man?' " 'Yes.' " 'Oh,' said he, 'his name was William Morris. He was a solicitor and was using my room as a temporary convenience until his new premises were ready. He moved out yesterday.' " 'Where could I find him?' " 'Oh, at his new offices. He did tell me the address. Yes, 17 King Edward Street, near St. Paul's.' "I started off, Mr. Holmes, but when I got to that address it was a manufactory of artificial knee-caps, and no one in it had ever heard of either Mr. William Morris or Mr. Duncan Ross." "And what did you do then?" asked Holmes. "I went home to Saxe-Coburg Square, and I took the advice of my assistant. But he could not help me in any way. He could only say that if I waited I should hear by post. But that was not quite good enough, Mr. Holmes. I did not wish to lose such a place without a struggle, so, as I had heard that you were good enough to give advice to poor folk who were in need of it, I came right away to you." "And you did very wisely," said Holmes. "Your case is an exceedingly remarkable one, and I shall be happy to look into it. From what you have told me I think that it is possible that graver issues hang from it than might at first sight appear." "Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four pound a week." "As far as you are personally concerned," remarked Holmes, "I do not see that you have any grievance against this extraordinary league. On the contrary, you are, as I understand, richer by some $30, to say nothing of the minute knowledge which you have gained on every subject which comes under the letter A. You have lost nothing by them." "No, sir. But I want to find out about them, and who they are, and what their object was in playing this prank--if it was a prank--upon me. It was a pretty expensive joke for them, for it cost them two and thirty pounds." "We shall endeavour to clear up these points for you. And, first, one or two questions, Mr. Wilson. This assistant of yours who first called your attention to the advertisement--how long had he been with you?" "About a month then." "How did he come?" "In answer to an advertisement." "Was he the only applicant?" "No, I had a dozen." "Why did you pick him?" "Because he was handy and would come cheap." "At half wages, in fact." "Yes." "What is he like, this Vincent Spaulding?" "Small, stout-built, very quick in his ways, no hair on his face, though he's not short of thirty. Has a white splash of acid upon his forehead." Holmes sat up in his chair in considerable excitement. "I thought as much," said he. "Have you ever observed that his ears are pierced for earrings?" "Yes, sir. He told me that a gipsy had done it for him when he was a lad." "Hum!" said Holmes, sinking back in deep thought. "He is still with you?" "Oh, yes, sir; I have only just left him." "And has your business been attended to in your absence?" "Nothing to complain of, sir. There's never very much to do of a morning." "That will do, Mr. Wilson. I shall be happy to give you an opinion upon the subject in the course of a day or two. To-day is Saturday, and I hope that by Monday we may come to a conclusion." "Well, Watson," said Holmes when our visitor had left us, "what do you make of it all?" "I make nothing of it," I answered frankly. "It is a most mysterious business." "As a rule," said Holmes, "the more bizarre a thing is the less mysterious it proves to be. It is your commonplace, featureless crimes which are really puzzling, just as a commonplace face is the most difficult to identify. But I must be prompt over this matter." "What are you going to do, then?" I asked. "To smoke," he answered. "It is quite a three pipe problem, and I beg that you won't speak to me for fifty minutes." He curled himself up in his chair, with his thin knees drawn up to his hawk-like nose, and there he sat with his eyes closed and his black clay pipe thrusting out like the bill of some strange bird. I had come to the conclusion that he had dropped asleep, and indeed was nodding myself, when he suddenly sprang out of his chair with the gesture of a man who has made up his mind and put his pipe down upon the mantelpiece. "Sarasate plays at the St. James's Hall this afternoon," he remarked. "What do you think, Watson? Could your patients spare you for a few hours?" "I have nothing to do to-day. My practice is never very absorbing." "Then put on your hat and come. I am going through the City first, and we can have some lunch on the way. I observe that there is a good deal of German music on the programme, which is rather more to my taste than Italian or French. It is introspective, and I want to introspect. Come along!" We travelled by the Underground as far as Aldersgate; and a short walk took us to Saxe-Coburg Square, the scene of the singular story which we had listened to in the morning. It was a poky, little, shabby-genteel place, where four lines of dingy two-storied brick houses looked out into a small railed-in enclosure, where a lawn of weedy grass and a few clumps of faded laurel bushes made a hard fight against a smoke-laden and uncongenial atmosphere. Three gilt balls and a brown board with "JABEZ WILSON" in white letters, upon a corner house, announced the place where our red-headed client carried on his business. Sherlock Holmes stopped in front of it with his head on one side and looked it all over, with his eyes shining brightly between puckered lids. Then he walked slowly up the street, and then down again to the corner, still looking keenly at the houses. Finally he returned to the pawnbroker's, and, having thumped vigorously upon the pavement with his stick two or three times, he went up to the door and knocked. It was instantly opened by a bright-looking, clean-shaven young fellow, who asked him to step in. "Thank you," said Holmes, "I only wished to ask you how you would go from here to the Strand." "Third right, fourth left," answered the assistant promptly, closing the door. "Smart fellow, that," observed Holmes as we walked away. "He is, in my judgment, the fourth smartest man in London, and for daring I am not sure that he has not a claim to be third. I have known something of him before." "Evidently," said I, "Mr. Wilson's assistant counts for a good deal in this mystery of the Red-headed League. I am sure that you inquired your way merely in order that you might see him." "Not him." "What then?" "The knees of his trousers." "And what did you see?" "What I expected to see." "Why did you beat the pavement?" "My dear doctor, this is a time for observation, not for talk. We are spies in an enemy's country. We know something of Saxe-Coburg Square. Let us now explore the parts which lie behind it." The road in which we found ourselves as we turned round the corner from the retired Saxe-Coburg Square presented as great a contrast to it as the front of a picture does to the back. It was one of the main arteries which conveyed the traffic of the City to the north and west. The roadway was blocked with the immense stream of commerce flowing in a double tide inward and outward, while the footpaths were black with the hurrying swarm of pedestrians. It was difficult to realise as we looked at the line of fine shops and stately business premises that they really abutted on the other side upon the faded and stagnant square which we had just quitted. "Let me see," said Holmes, standing at the corner and glancing along the line, "I should like just to remember the order of the houses here. It is a hobby of mine to have an exact knowledge of London. There is Mortimer's, the tobacconist, the little newspaper shop, the Coburg branch of the City and Suburban Bank, the Vegetarian Restaurant, and McFarlane's carriage-building depot. That carries us right on to the other block. And now, Doctor, we've done our work, so it's time we had some play. A sandwich and a cup of coffee, and then off to violin-land, where all is sweetness and delicacy and harmony, and there are no red-headed clients to vex us with their conundrums." My friend was an enthusiastic musician, being himself not only a very capable performer but a composer of no ordinary merit. All the afternoon he sat in the stalls wrapped in the most perfect happiness, gently waving his long, thin fingers in time to the music, while his gently smiling face and his languid, dreamy eyes were as unlike those of Holmes the sleuth-hound, Holmes the relentless, keen-witted, ready-handed criminal agent, as it was possible to conceive. In his singular character the dual nature alternately asserted itself, and his extreme exactness and astuteness represented, as I have often thought, the reaction against the poetic and contemplative mood which occasionally predominated in him. The swing of his nature took him from extreme languor to devouring energy; and, as I knew well, he was never so truly formidable as when, for days on end, he had been lounging in his armchair amid his improvisations and his black-letter editions. Then it was that the lust of the chase would suddenly come upon him, and that his brilliant reasoning power would rise to the level of intuition, until those who were unacquainted with his methods would look askance at him as on a man whose knowledge was not that of other mortals. When I saw him that afternoon so enwrapped in the music at St. James's Hall I felt that an evil time might be coming upon those whom he had set himself to hunt down. "You want to go home, no doubt, Doctor," he remarked as we emerged. "Yes, it would be as well." "And I have some business to do which will take some hours. This business at Coburg Square is serious." "Why serious?" "A considerable crime is in contemplation. I have every reason to believe that we shall be in time to stop it. But to-day being Saturday rather complicates matters. I shall want your help to-night." "At what time?" "Ten will be early enough." "I shall be at Baker Street at ten." "Very well. And, I say, Doctor, there may be some little danger, so kindly put your army revolver in your pocket." He waved his hand, turned on his heel, and disappeared in an instant among the crowd. I trust that I am not more dense than my neighbours, but I was always oppressed with a sense of my own stupidity in my dealings with Sherlock Holmes. Here I had heard what he had heard, I had seen what he had seen, and yet from his words it was evident that he saw clearly not only what had happened but what was about to happen, while to me the whole business was still confused and grotesque. As I drove home to my house in Kensington I thought over it all, from the extraordinary story of the red-headed copier of the Encyclopaedia down to the visit to Saxe-Coburg Square, and the ominous words with which he had parted from me. What was this nocturnal expedition, and why should I go armed? Where were we going, and what were we to do? I had the hint from Holmes that this smooth-faced pawnbroker's assistant was a formidable man--a man who might play a deep game. I tried to puzzle it out, but gave it up in despair and set the matter aside until night should bring an explanation. It was a quarter-past nine when I started from home and made my way across the Park, and so through Oxford Street to Baker Street. Two hansoms were standing at the door, and as I entered the passage I heard the sound of voices from above. On entering his room, I found Holmes in animated conversation with two men, one of whom I recognised as Peter Jones, the official police agent, while the other was a long, thin, sad-faced man, with a very shiny hat and oppressively respectable frock-coat. "Ha! Our party is complete," said Holmes, buttoning up his pea-jacket and taking his heavy hunting crop from the rack. "Watson, I think you know Mr. Jones, of Scotland Yard? Let me introduce you to Mr. Merryweather, who is to be our companion in to-night's adventure." "We're hunting in couples again, Doctor, you see," said Jones in his consequential way. "Our friend here is a wonderful man for starting a chase. All he wants is an old dog to help him to do the running down." "I hope a wild goose may not prove to be the end of our chase," observed Mr. Merryweather gloomily. "You may place considerable confidence in Mr. Holmes, sir," said the police agent loftily. "He has his own little methods, which are, if he won't mind my saying so, just a little too theoretical and fantastic, but he has the makings of a detective in him. It is not too much to say that once or twice, as in that business of the Sholto murder and the Agra treasure, he has been more nearly correct than the official force." "Oh, if you say so, Mr. Jones, it is all right," said the stranger with deference. "Still, I confess that I miss my rubber. It is the first Saturday night for seven-and-twenty years that I have not had my rubber." "I think you will find," said Sherlock Holmes, "that you will play for a higher stake to-night than you have ever done yet, and that the play will be more exciting. For you, Mr. Merryweather, the stake will be some $30,000; and for you, Jones, it will be the man upon whom you wish to lay your hands." "John Clay, the murderer, thief, smasher, and forger. He's a young man, Mr. Merryweather, but he is at the head of his profession, and I would rather have my bracelets on him than on any criminal in London. He's a remarkable man, is young John Clay. His grandfather was a royal duke, and he himself has been to Eton and Oxford. His brain is as cunning as his fingers, and though we meet signs of him at every turn, we never know where to find the man himself. He'll crack a crib in Scotland one week, and be raising money to build an orphanage in Cornwall the next. I've been on his track for years and have never set eyes on him yet." "I hope that I may have the pleasure of introducing you to-night. I've had one or two little turns also with Mr. John Clay, and I agree with you that he is at the head of his profession. It is past ten, however, and quite time that we started. If you two will take the first hansom, Watson and I will follow in the second." Sherlock Holmes was not very communicative during the long drive and lay back in the cab humming the tunes which he had heard in the afternoon. We rattled through an endless labyrinth of gas-lit streets until we emerged into Farrington Street. "We are close there now," my friend remarked. "This fellow Merryweather is a bank director, and personally interested in the matter. I thought it as well to have Jones with us also. He is not a bad fellow, though an absolute imbecile in his profession. He has one positive virtue. He is as brave as a bulldog and as tenacious as a lobster if he gets his claws upon anyone. Here we are, and they are waiting for us." We had reached the same crowded thoroughfare in which we had found ourselves in the morning. Our cabs were dismissed, and, following the guidance of Mr. Merryweather, we passed down a narrow passage and through a side door, which he opened for us. Within there was a small corridor, which ended in a very massive iron gate. This also was opened, and led down a flight of winding stone steps, which terminated at another formidable gate. Mr. Merryweather stopped to light a lantern, and then conducted us down a dark, earth-smelling passage, and so, after opening a third door, into a huge vault or cellar, which was piled all round with crates and massive boxes. "You are not very vulnerable from above," Holmes remarked as he held up the lantern and gazed about him. "Nor from below," said Mr. Merryweather, striking his stick upon the flags which lined the floor. "Why, dear me, it sounds quite hollow!" he remarked, looking up in surprise. "I must really ask you to be a little more quiet!" said Holmes severely. "You have already imperilled the whole success of our expedition. Might I beg that you would have the goodness to sit down upon one of those boxes, and not to interfere?" The solemn Mr. Merryweather perched himself upon a crate, with a very injured expression upon his face, while Holmes fell upon his knees upon the floor and, with the lantern and a magnifying lens, began to examine minutely the cracks between the stones. A few seconds sufficed to satisfy him, for he sprang to his feet again and put his glass in his pocket. "We have at least an hour before us," he remarked, "for they can hardly take any steps until the good pawnbroker is safely in bed. Then they will not lose a minute, for the sooner they do their work the longer time they will have for their escape. We are at present, Doctor--as no doubt you have divined--in the cellar of the City branch of one of the principal London banks. Mr. Merryweather is the chairman of directors, and he will explain to you that there are reasons why the more daring criminals of London should take a considerable interest in this cellar at present." "It is our French gold," whispered the director. "We have had several warnings that an attempt might be made upon it." "Your French gold?" "Yes. We had occasion some months ago to strengthen our resources and borrowed for that purpose 30,000 napoleons from the Bank of France. It has become known that we have never had occasion to unpack the money, and that it is still lying in our cellar. The crate upon which I sit contains 2,000 napoleons packed between layers of lead foil. Our reserve of bullion is much larger at present than is usually kept in a single branch office, and the directors have had misgivings upon the subject." "Which were very well justified," observed Holmes. "And now it is time that we arranged our little plans. I expect that within an hour matters will come to a head. In the meantime Mr. Merryweather, we must put the screen over that dark lantern." "And sit in the dark?" "I am afraid so. I had brought a pack of cards in my pocket, and I thought that, as we were a partie carree, you might have your rubber after all. But I see that the enemy's preparations have gone so far that we cannot risk the presence of a light. And, first of all, we must choose our positions. These are daring men, and though we shall take them at a disadvantage, they may do us some harm unless we are careful. I shall stand behind this crate, and do you conceal yourselves behind those. Then, when I flash a light upon them, close in swiftly. If they fire, Watson, have no compunction about shooting them down." I placed my revolver, cocked, upon the top of the wooden case behind which I crouched. Holmes shot the slide across the front of his lantern and left us in pitch darkness--such an absolute darkness as I have never before experienced. The smell of hot metal remained to assure us that the light was still there, ready to flash out at a moment's notice. To me, with my nerves worked up to a pitch of expectancy, there was something depressing and subduing in the sudden gloom, and in the cold dank air of the vault. "They have but one retreat," whispered Holmes. "That is back through the house into Saxe-Coburg Square. I hope that you have done what I asked you, Jones?" "I have an inspector and two officers waiting at the front door." "Then we have stopped all the holes. And now we must be silent and wait." What a time it seemed! From comparing notes afterwards it was but an hour and a quarter, yet it appeared to me that the night must have almost gone, and the dawn be breaking above us. My limbs were weary and stiff, for I feared to change my position; yet my nerves were worked up to the highest pitch of tension, and my hearing was so acute that I could not only hear the gentle breathing of my companions, but I could distinguish the deeper, heavier in-breath of the bulky Jones from the thin, sighing note of the bank director. From my position I could look over the case in the direction of the floor. Suddenly my eyes caught the glint of a light. At first it was but a lurid spark upon the stone pavement. Then it lengthened out until it became a yellow line, and then, without any warning or sound, a gash seemed to open and a hand appeared, a white, almost womanly hand, which felt about in the centre of the little area of light. For a minute or more the hand, with its writhing fingers, protruded out of the floor. Then it was withdrawn as suddenly as it appeared, and all was dark again save the single lurid spark which marked a chink between the stones. Its disappearance, however, was but momentary. With a rending, tearing sound, one of the broad, white stones turned over upon its side and left a square, gaping hole, through which streamed the light of a lantern. Over the edge there peeped a clean-cut, boyish face, which looked keenly about it, and then, with a hand on either side of the aperture, drew itself shoulder-high and waist-high, until one knee rested upon the edge. In another instant he stood at the side of the hole and was hauling after him a companion, lithe and small like himself, with a pale face and a shock of very red hair. "It's all clear," he whispered. "Have you the chisel and the bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" Sherlock Holmes had sprung out and seized the intruder by the collar. The other dived down the hole, and I heard the sound of rending cloth as Jones clutched at his skirts. The light flashed upon the barrel of a revolver, but Holmes' hunting crop came down on the man's wrist, and the pistol clinked upon the stone floor. "It's no use, John Clay," said Holmes blandly. "You have no chance at all." "So I see," the other answered with the utmost coolness. "I fancy that my pal is all right, though I see you have got his coat-tails." "There are three men waiting for him at the door," said Holmes. "Oh, indeed! You seem to have done the thing very completely. I must compliment you." "And I you," Holmes answered. "Your red-headed idea was very new and effective." "You'll see your pal again presently," said Jones. "He's quicker at climbing down holes than I am. Just hold out while I fix the derbies." "I beg that you will not touch me with your filthy hands," remarked our prisoner as the handcuffs clattered upon his wrists. "You may not be aware that I have royal blood in my veins. Have the goodness, also, when you address me always to say 'sir' and 'please.' " "All right," said Jones with a stare and a snigger. "Well, would you please, sir, march upstairs, where we can get a cab to carry your Highness to the police-station?" "That is better," said John Clay serenely. He made a sweeping bow to the three of us and walked quietly off in the custody of the detective. "Really, Mr. Holmes," said Mr. Merryweather as we followed them from the cellar, "I do not know how the bank can thank you or repay you. There is no doubt that you have detected and defeated in the most complete manner one of the most determined attempts at bank robbery that have ever come within my experience." "I have had one or two little scores of my own to settle with Mr. John Clay," said Holmes. "I have been at some small expense over this matter, which I shall expect the bank to refund, but beyond that I am amply repaid by having had an experience which is in many ways unique, and by hearing the very remarkable narrative of the Red-headed League." "You see, Watson," he explained in the early hours of the morning as we sat over a glass of whisky and soda in Baker Street, "it was perfectly obvious from the first that the only possible object of this rather fantastic business of the advertisement of the League, and the copying of the Encyclopaedia, must be to get this not over-bright pawnbroker out of the way for a number of hours every day. It was a curious way of managing it, but, really, it would be difficult to suggest a better. The method was no doubt suggested to Clay's ingenious mind by the colour of his accomplice's hair. The $4 a week was a lure which must draw him, and what was it to them, who were playing for thousands? They put in the advertisement, one rogue has the temporary office, the other rogue incites the man to apply for it, and together they manage to secure his absence every morning in the week. From the time that I heard of the assistant having come for half wages, it was obvious to me that he had some strong motive for securing the situation." "But how could you guess what the motive was?" "Had there been women in the house, I should have suspected a mere vulgar intrigue. That, however, was out of the question. The man's business was a small one, and there was nothing in his house which could account for such elaborate preparations, and such an expenditure as they were at. It must, then, be something out of the house. What could it be? I thought of the assistant's fondness for photography, and his trick of vanishing into the cellar. The cellar! There was the end of this tangled clue. Then I made inquiries as to this mysterious assistant and found that I had to deal with one of the coolest and most daring criminals in London. He was doing something in the cellar--something which took many hours a day for months on end. What could it be, once more? I could think of nothing save that he was running a tunnel to some other building. "So far I had got when we went to visit the scene of action. I surprised you by beating upon the pavement with my stick. I was ascertaining whether the cellar stretched out in front or behind. It was not in front. Then I rang the bell, and, as I hoped, the assistant answered it. We have had some skirmishes, but we had never set eyes upon each other before. I hardly looked at his face. His knees were what I wished to see. You must yourself have remarked how worn, wrinkled, and stained they were. They spoke of those hours of burrowing. The only remaining point was what they were burrowing for. I walked round the corner, saw the City and Suburban Bank abutted on our friend's premises, and felt that I had solved my problem. When you drove home after the concert I called upon Scotland Yard and upon the chairman of the bank directors, with the result that you have seen." "And how could you tell that they would make their attempt to-night?" I asked. "Well, when they closed their League offices that was a sign that they cared no longer about Mr. Jabez Wilson's presence--in other words, that they had completed their tunnel. But it was essential that they should use it soon, as it might be discovered, or the bullion might be removed. Saturday would suit them better than any other day, as it would give them two days for their escape. For all these reasons I expected them to come to-night." "You reasoned it out beautifully," I exclaimed in unfeigned admiration. "It is so long a chain, and yet every link rings true." "It saved me from ennui," he answered, yawning. "Alas! I already feel it closing in upon me. My life is spent in one long effort to escape from the commonplaces of existence. These little problems help me to do so." "And you are a benefactor of the race," said I. He shrugged his shoulders. "Well, perhaps, after all, it is of some little use," he remarked. " 'L'homme c'est rien--l'oeuvre c'est tout,' as Gustave Flaubert wrote to George Sand." ADVENTURE III. A CASE OF IDENTITY "My dear fellow," said Sherlock Holmes as we sat on either side of the fire in his lodgings at Baker Street, "life is infinitely stranger than anything which the mind of man could invent. We would not dare to conceive the things which are really mere commonplaces of existence. If we could fly out of that window hand in hand, hover over this great city, gently remove the roofs, and peep in at the queer things which are going on, the strange coincidences, the plannings, the cross-purposes, the wonderful chains of events, working through generations, and leading to the most outre results, it would make all fiction with its conventionalities and foreseen conclusions most stale and unprofitable." "And yet I am not convinced of it," I answered. "The cases which come to light in the papers are, as a rule, bald enough, and vulgar enough. We have in our police reports realism pushed to its extreme limits, and yet the result is, it must be confessed, neither fascinating nor artistic." "A certain selection and discretion must be used in producing a realistic effect," remarked Holmes. "This is wanting in the police report, where more stress is laid, perhaps, upon the platitudes of the magistrate than upon the details, which to an observer contain the vital essence of the whole matter. Depend upon it, there is nothing so unnatural as the commonplace." I smiled and shook my head. "I can quite understand your thinking so." I said. "Of course, in your position of unofficial adviser and helper to everybody who is absolutely puzzled, throughout three continents, you are brought in contact with all that is strange and bizarre. But here"--I picked up the morning paper from the ground--"let us put it to a practical test. Here is the first heading upon which I come. 'A husband's cruelty to his wife.' There is half a column of print, but I know without reading it that it is all perfectly familiar to me. There is, of course, the other woman, the drink, the push, the blow, the bruise, the sympathetic sister or landlady. The crudest of writers could invent nothing more crude." "Indeed, your example is an unfortunate one for your argument," said Holmes, taking the paper and glancing his eye down it. "This is the Dundas separation case, and, as it happens, I was engaged in clearing up some small points in connection with it. The husband was a teetotaler, there was no other woman, and the conduct complained of was that he had drifted into the habit of winding up every meal by taking out his false teeth and hurling them at his wife, which, you will allow, is not an action likely to occur to the imagination of the average story-teller. Take a pinch of snuff, Doctor, and acknowledge that I have scored over you in your example." He held out his snuffbox of old gold, with a great amethyst in the centre of the lid. Its splendour was in such contrast to his homely ways and simple life that I could not help commenting upon it. "Ah," said he, "I forgot that I had not seen you for some weeks. It is a little souvenir from the King of Bohemia in return for my assistance in the case of the Irene Adler papers." "And the ring?" I asked, glancing at a remarkable brilliant which sparkled upon his finger. "It was from the reigning family of Holland, though the matter in which I served them was of such delicacy that I cannot confide it even to you, who have been good enough to chronicle one or two of my little problems." "And have you any on hand just now?" I asked with interest. "Some ten or twelve, but none which present any feature of interest. They are important, you understand, without being interesting. Indeed, I have found that it is usually in unimportant matters that there is a field for the observation, and for the quick analysis of cause and effect which gives the charm to an investigation. The larger crimes are apt to be the simpler, for the bigger the crime the more obvious, as a rule, is the motive. In these cases, save for one rather intricate matter which has been referred to me from Marseilles, there is nothing which presents any features of interest. It is possible, however, that I may have something better before very many minutes are over, for this is one of my clients, or I am much mistaken." He had risen from his chair and was standing between the parted blinds gazing down into the dull neutral-tinted London street. Looking over his shoulder, I saw that on the pavement opposite there stood a large woman with a heavy fur boa round her neck, and a large curling red feather in a broad-brimmed hat which was tilted in a coquettish Duchess of Devonshire fashion over her ear. From under this great panoply she peeped up in a nervous, hesitating fashion at our windows, while her body oscillated backward and forward, and her fingers fidgeted with her glove buttons. Suddenly, with a plunge, as of the swimmer who leaves the bank, she hurried across the road, and we heard the sharp clang of the bell. "I have seen those symptoms before," said Holmes, throwing his cigarette into the fire. "Oscillation upon the pavement always means an affaire de coeur. She would like advice, but is not sure that the matter is not too delicate for communication. And yet even here we may discriminate. When a woman has been seriously wronged by a man she no longer oscillates, and the usual symptom is a broken bell wire. Here we may take it that there is a love matter, but that the maiden is not so much angry as perplexed, or grieved. But here she comes in person to resolve our doubts." As he spoke there was a tap at the door, and the boy in buttons entered to announce Miss Mary Sutherland, while the lady herself loomed behind his small black figure like a full-sailed merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed her with the easy courtesy for which he was remarkable, and, having closed the door and bowed her into an armchair, he looked her over in the minute and yet abstracted fashion which was peculiar to him. "Do you not find," he said, "that with your short sight it is a little trying to do so much typewriting?" "I did at first," she answered, "but now I know where the letters are without looking." Then, suddenly realising the full purport of his words, she gave a violent start and looked up, with fear and astonishment upon her broad, good-humoured face. "You've heard about me, Mr. Holmes," she cried, "else how could you know all that?" "Never mind," said Holmes, laughing; "it is my business to know things. Perhaps I have trained myself to see what others overlook. If not, why should you come to consult me?" "I came to you, sir, because I heard of you from Mrs. Etherege, whose husband you found so easy when the police and everyone had given him up for dead. Oh, Mr. Holmes, I wish you would do as much for me. I'm not rich, but still I have a hundred a year in my own right, besides the little that I make by the machine, and I would give it all to know what has become of Mr. Hosmer Angel." "Why did you come away to consult me in such a hurry?" asked Sherlock Holmes, with his finger-tips together and his eyes to the ceiling. Again a startled look came over the somewhat vacuous face of Miss Mary Sutherland. "Yes, I did bang out of the house," she said, "for it made me angry to see the easy way in which Mr. Windibank--that is, my father--took it all. He would not go to the police, and he would not go to you, and so at last, as he would do nothing and kept on saying that there was no harm done, it made me mad, and I just on with my things and came right away to you." "Your father," said Holmes, "your stepfather, surely, since the name is different." "Yes, my stepfather. I call him father, though it sounds funny, too, for he is only five years and two months older than myself." "And your mother is alive?" "Oh, yes, mother is alive and well. I wasn't best pleased, Mr. Holmes, when she married again so soon after father's death, and a man who was nearly fifteen years younger than herself. Father was a plumber in the Tottenham Court Road, and he left a tidy business behind him, which mother carried on with Mr. Hardy, the foreman; but when Mr. Windibank came he made her sell the business, for he was very superior, being a traveller in wines. They got $4700 for the goodwill and interest, which wasn't near as much as father could have got if he had been alive." I had expected to see Sherlock Holmes impatient under this rambling and inconsequential narrative, but, on the contrary, he had listened with the greatest concentration of attention. "Your own little income," he asked, "does it come out of the business?" "Oh, no, sir. It is quite separate and was left me by my uncle Ned in Auckland. It is in New Zealand stock, paying 4 1/4 per cent. Two thousand five hundred pounds was the amount, but I can only touch the interest." "You interest me extremely," said Holmes. "And since you draw so large a sum as a hundred a year, with what you earn into the bargain, you no doubt travel a little and indulge yourself in every way. I believe that a single lady can get on very nicely upon an income of about $60." "I could do with much less than that, Mr. Holmes, but you understand that as long as I live at home I don't wish to be a burden to them, and so they have the use of the money just while I am staying with them. Of course, that is only just for the time. Mr. Windibank draws my interest every quarter and pays it over to mother, and I find that I can do pretty well with what I earn at typewriting. It brings me twopence a sheet, and I can often do from fifteen to twenty sheets in a day." "You have made your position very clear to me," said Holmes. "This is my friend, Dr. Watson, before whom you can speak as freely as before myself. Kindly tell us now all about your connection with Mr. Hosmer Angel." A flush stole over Miss Sutherland's face, and she picked nervously at the fringe of her jacket. "I met him first at the gasfitters' ball," she said. "They used to send father tickets when he was alive, and then afterwards they remembered us, and sent them to mother. Mr. Windibank did not wish us to go. He never did wish us to go anywhere. He would get quite mad if I wanted so much as to join a Sunday-school treat. But this time I was set on going, and I would go; for what right had he to prevent? He said the folk were not fit for us to know, when all father's friends were to be there. And he said that I had nothing fit to wear, when I had my purple plush that I had never so much as taken out of the drawer. At last, when nothing else would do, he went off to France upon the business of the firm, but we went, mother and I, with Mr. Hardy, who used to be our foreman, and it was there I met Mr. Hosmer Angel." "I suppose," said Holmes, "that when Mr. Windibank came back from France he was very annoyed at your having gone to the ball." "Oh, well, he was very good about it. He laughed, I remember, and shrugged his shoulders, and said there was no use denying anything to a woman, for she would have her way." "I see. Then at the gasfitters' ball you met, as I understand, a gentleman called Mr. Hosmer Angel." "Yes, sir. I met him that night, and he called next day to ask if we had got home all safe, and after that we met him--that is to say, Mr. Holmes, I met him twice for walks, but after that father came back again, and Mr. Hosmer Angel could not come to the house any more." "No?" "Well, you know father didn't like anything of the sort. He wouldn't have any visitors if he could help it, and he used to say that a woman should be happy in her own family circle. But then, as I used to say to mother, a woman wants her own circle to begin with, and I had not got mine yet." "But how about Mr. Hosmer Angel? Did he make no attempt to see you?" "Well, father was going off to France again in a week, and Hosmer wrote and said that it would be safer and better not to see each other until he had gone. We could write in the meantime, and he used to write every day. I took the letters in in the morning, so there was no need for father to know." "Were you engaged to the gentleman at this time?" "Oh, yes, Mr. Holmes. We were engaged after the first walk that we took. Hosmer--Mr. Angel--was a cashier in an office in Leadenhall Street--and--" "What office?" "That's the worst of it, Mr. Holmes, I don't know." "Where did he live, then?" "He slept on the premises." "And you don't know his address?" "No--except that it was Leadenhall Street." "Where did you address your letters, then?" "To the Leadenhall Street Post Office, to be left till called for. He said that if they were sent to the office he would be chaffed by all the other clerks about having letters from a lady, so I offered to typewrite them, like he did his, but he wouldn't have that, for he said that when I wrote them they seemed to come from me, but when they were typewritten he always felt that the machine had come between us. That will just show you how fond he was of me, Mr. Holmes, and the little things that he would think of." "It was most suggestive," said Holmes. "It has long been an axiom of mine that the little things are infinitely the most important. Can you remember any other little things about Mr. Hosmer Angel?" "He was a very shy man, Mr. Holmes. He would rather walk with me in the evening than in the daylight, for he said that he hated to be conspicuous. Very retiring and gentlemanly he was. Even his voice was gentle. He'd had the quinsy and swollen glands when he was young, he told me, and it had left him with a weak throat, and a hesitating, whispering fashion of speech. He was always well dressed, very neat and plain, but his eyes were weak, just as mine are, and he wore tinted glasses against the glare." "Well, and what happened when Mr. Windibank, your stepfather, returned to France?" "Mr. Hosmer Angel came to the house again and proposed that we should marry before father came back. He was in dreadful earnest and made me swear, with my hands on the Testament, that whatever happened I would always be true to him. Mother said he was quite right to make me swear, and that it was a sign of his passion. Mother was all in his favour from the first and was even fonder of him than I was. Then, when they talked of marrying within the week, I began to ask about father; but they both said never to mind about father, but just to tell him afterwards, and mother said she would make it all right with him. I didn't quite like that, Mr. Holmes. It seemed funny that I should ask his leave, as he was only a few years older than me; but I didn't want to do anything on the sly, so I wrote to father at Bordeaux, where the company has its French offices, but the letter came back to me on the very morning of the wedding." "It missed him, then?" "Yes, sir; for he had started to England just before it arrived." "Ha! that was unfortunate. Your wedding was arranged, then, for the Friday. Was it to be in church?" "Yes, sir, but very quietly. It was to be at St. Saviour's, near King's Cross, and we were to have breakfast afterwards at the St. Pancras Hotel. Hosmer came for us in a hansom, but as there were two of us he put us both into it and stepped himself into a four-wheeler, which happened to be the only other cab in the street. We got to the church first, and when the four-wheeler drove up we waited for him to step out, but he never did, and when the cabman got down from the box and looked there was no one there! The cabman said that he could not imagine what had become of him, for he had seen him get in with his own eyes. That was last Friday, Mr. Holmes, and I have never seen or heard anything since then to throw any light upon what became of him." "It seems to me that you have been very shamefully treated," said Holmes. "Oh, no, sir! He was too good and kind to leave me so. Why, all the morning he was saying to me that, whatever happened, I was to be true; and that even if something quite unforeseen occurred to separate us, I was always to remember that I was pledged to him, and that he would claim his pledge sooner or later. It seemed strange talk for a wedding-morning, but what has happened since gives a meaning to it." "Most certainly it does. Your own opinion is, then, that some unforeseen catastrophe has occurred to him?" "Yes, sir. I believe that he foresaw some danger, or else he would not have talked so. And then I think that what he foresaw happened." "But you have no notion as to what it could have been?" "None." "One more question. How did your mother take the matter?" "She was angry, and said that I was never to speak of the matter again." "And your father? Did you tell him?" "Yes; and he seemed to think, with me, that something had happened, and that I should hear of Hosmer again. As he said, what interest could anyone have in bringing me to the doors of the church, and then leaving me? Now, if he had borrowed my money, or if he had married me and got my money settled on him, there might be some reason, but Hosmer was very independent about money and never would look at a shilling of mine. And yet, what could have happened? And why could he not write? Oh, it drives me half-mad to think of it, and I can't sleep a wink at night." She pulled a little handkerchief out of her muff and began to sob heavily into it. "I shall glance into the case for you," said Holmes, rising, "and I have no doubt that we shall reach some definite result. Let the weight of the matter rest upon me now, and do not let your mind dwell upon it further. Above all, try to let Mr. Hosmer Angel vanish from your memory, as he has done from your life." "Then you don't think I'll see him again?" "I fear not." "Then what has happened to him?" "You will leave that question in my hands. I should like an accurate description of him and any letters of his which you can spare." "I advertised for him in last Saturday's Chronicle," said she. "Here is the slip and here are four letters from him." "Thank you. And your address?" "No. 31 Lyon Place, Camberwell." "Mr. Angel's address you never had, I understand. Where is your father's place of business?" "He travels for Westhouse & Marbank, the great claret importers of Fenchurch Street." "Thank you. You have made your statement very clearly. You will leave the papers here, and remember the advice which I have given you. Let the whole incident be a sealed book, and do not allow it to affect your life." "You are very kind, Mr. Holmes, but I cannot do that. I shall be true to Hosmer. He shall find me ready when he comes back." For all the preposterous hat and the vacuous face, there was something noble in the simple faith of our visitor which compelled our respect. She laid her little bundle of papers upon the table and went her way, with a promise to come again whenever she might be summoned. Sherlock Holmes sat silent for a few minutes with his fingertips still pressed together, his legs stretched out in front of him, and his gaze directed upward to the ceiling. Then he took down from the rack the old and oily clay pipe, which was to him as a counsellor, and, having lit it, he leaned back in his chair, with the thick blue cloud-wreaths spinning up from him, and a look of infinite languor in his face. "Quite an interesting study, that maiden," he observed. "I found her more interesting than her little problem, which, by the way, is rather a trite one. You will find parallel cases, if you consult my index, in Andover in '77, and there was something of the sort at The Hague last year. Old as is the idea, however, there were one or two details which were new to me. But the maiden herself was most instructive." "You appeared to read a good deal upon her which was quite invisible to me," I remarked. "Not invisible but unnoticed, Watson. You did not know where to look, and so you missed all that was important. I can never bring you to realise the importance of sleeves, the suggestiveness of thumb-nails, or the great issues that may hang from a boot-lace. Now, what did you gather from that woman's appearance? Describe it." "Well, she had a slate-coloured, broad-brimmed straw hat, with a feather of a brickish red. Her jacket was black, with black beads sewn upon it, and a fringe of little black jet ornaments. Her dress was brown, rather darker than coffee colour, with a little purple plush at the neck and sleeves. Her gloves were greyish and were worn through at the right forefinger. Her boots I didn't observe. She had small round, hanging gold earrings, and a general air of being fairly well-to-do in a vulgar, comfortable, easy-going way." Sherlock Holmes clapped his hands softly together and chuckled. " 'Pon my word, Watson, you are coming along wonderfully. You have really done very well indeed. It is true that you have missed everything of importance, but you have hit upon the method, and you have a quick eye for colour. Never trust to general impressions, my boy, but concentrate yourself upon details. My first glance is always at a woman's sleeve. In a man it is perhaps better first to take the knee of the trouser. As you observe, this woman had plush upon her sleeves, which is a most useful material for showing traces. The double line a little above the wrist, where the typewritist presses against the table, was beautifully defined. The sewing-machine, of the hand type, leaves a similar mark, but only on the left arm, and on the side of it farthest from the thumb, instead of being right across the broadest part, as this was. I then glanced at her face, and, observing the dint of a pince-nez at either side of her nose, I ventured a remark upon short sight and typewriting, which seemed to surprise her." "It surprised me." "But, surely, it was obvious. I was then much surprised and interested on glancing down to observe that, though the boots which she was wearing were not unlike each other, they were really odd ones; the one having a slightly decorated toe-cap, and the other a plain one. One was buttoned only in the two lower buttons out of five, and the other at the first, third, and fifth. Now, when you see that a young lady, otherwise neatly dressed, has come away from home with odd boots, half-buttoned, it is no great deduction to say that she came away in a hurry." "And what else?" I asked, keenly interested, as I always was, by my friend's incisive reasoning. "I noted, in passing, that she had written a note before leaving home but after being fully dressed. You observed that her right glove was torn at the forefinger, but you did not apparently see that both glove and finger were stained with violet ink. She had written in a hurry and dipped her pen too deep. It must have been this morning, or the mark would not remain clear upon the finger. All this is amusing, though rather elementary, but I must go back to business, Watson. Would you mind reading me the advertised description of Mr. Hosmer Angel?" I held the little printed slip to the light. "Missing," it said, "on the morning of the fourteenth, a gentleman named Hosmer Angel. About five ft. seven in. in height; strongly built, sallow complexion, black hair, a little bald in the centre, bushy, black side-whiskers and moustache; tinted glasses, slight infirmity of speech. Was dressed, when last seen, in black frock-coat faced with silk, black waistcoat, gold Albert chain, and grey Harris tweed trousers, with brown gaiters over elastic-sided boots. Known to have been employed in an office in Leadenhall Street. Anybody bringing--" "That will do," said Holmes. "As to the letters," he continued, glancing over them, "they are very commonplace. Absolutely no clue in them to Mr. Angel, save that he quotes Balzac once. There is one remarkable point, however, which will no doubt strike you." "They are typewritten," I remarked. "Not only that, but the signature is typewritten. Look at the neat little 'Hosmer Angel' at the bottom. There is a date, you see, but no superscription except Leadenhall Street, which is rather vague. The point about the signature is very suggestive--in fact, we may call it conclusive." "Of what?" "My dear fellow, is it possible you do not see how strongly it bears upon the case?" "I cannot say that I do unless it were that he wished to be able to deny his signature if an action for breach of promise were instituted." "No, that was not the point. However, I shall write two letters, which should settle the matter. One is to a firm in the City, the other is to the young lady's stepfather, Mr. Windibank, asking him whether he could meet us here at six o'clock to-morrow evening. It is just as well that we should do business with the male relatives. And now, Doctor, we can do nothing until the answers to those letters come, so we may put our little problem upon the shelf for the interim." I had had so many reasons to believe in my friend's subtle powers of reasoning and extraordinary energy in action that I felt that he must have some solid grounds for the assured and easy demeanour with which he treated the singular mystery which he had been called upon to fathom. Once only had I known him to fail, in the case of the King of Bohemia and of the Irene Adler photograph; but when I looked back to the weird business of the Sign of Four, and the extraordinary circumstances connected with the Study in Scarlet, I felt that it would be a strange tangle indeed which he could not unravel. I left him then, still puffing at his black clay pipe, with the conviction that when I came again on the next evening I would find that he held in his hands all the clues which would lead up to the identity of the disappearing bridegroom of Miss Mary Sutherland. A professional case of great gravity was engaging my own attention at the time, and the whole of next day I was busy at the bedside of the sufferer. It was not until close upon six o'clock that I found myself free and was able to spring into a hansom and drive to Baker Street, half afraid that I might be too late to assist at the denouement of the little mystery. I found Sherlock Holmes alone, however, half asleep, with his long, thin form curled up in the recesses of his armchair. A formidable array of bottles and test-tubes, with the pungent cleanly smell of hydrochloric acid, told me that he had spent his day in the chemical work which was so dear to him. "Well, have you solved it?" I asked as I entered. "Yes. It was the bisulphate of baryta." "No, no, the mystery!" I cried. "Oh, that! I thought of the salt that I have been working upon. There was never any mystery in the matter, though, as I said yesterday, some of the details are of interest. The only drawback is that there is no law, I fear, that can touch the scoundrel." "Who was he, then, and what was his object in deserting Miss Sutherland?" The question was hardly out of my mouth, and Holmes had not yet opened his lips to reply, when we heard a heavy footfall in the passage and a tap at the door. "This is the girl's stepfather, Mr. James Windibank," said Holmes. "He has written to me to say that he would be here at six. Come in!" The man who entered was a sturdy, middle-sized fellow, some thirty years of age, clean-shaven, and sallow-skinned, with a bland, insinuating manner, and a pair of wonderfully sharp and penetrating grey eyes. He shot a questioning glance at each of us, placed his shiny top-hat upon the sideboard, and with a slight bow sidled down into the nearest chair. "Good-evening, Mr. James Windibank," said Holmes. "I think that this typewritten letter is from you, in which you made an appointment with me for six o'clock?" "Yes, sir. I am afraid that I am a little late, but I am not quite my own master, you know. I am sorry that Miss Sutherland has troubled you about this little matter, for I think it is far better not to wash linen of the sort in public. It was quite against my wishes that she came, but she is a very excitable, impulsive girl, as you may have noticed, and she is not easily controlled when she has made up her mind on a point. Of course, I did not mind you so much, as you are not connected with the official police, but it is not pleasant to have a family misfortune like this noised abroad. Besides, it is a useless expense, for how could you possibly find this Hosmer Angel?" "On the contrary," said Holmes quietly; "I have every reason to believe that I will succeed in discovering Mr. Hosmer Angel." Mr. Windibank gave a violent start and dropped his gloves. "I am delighted to hear it," he said. "It is a curious thing," remarked Holmes, "that a typewriter has really quite as much individuality as a man's handwriting. Unless they are quite new, no two of them write exactly alike. Some letters get more worn than others, and some wear only on one side. Now, you remark in this note of yours, Mr. Windibank, that in every case there is some little slurring over of the 'e,' and a slight defect in the tail of the 'r.' There are fourteen other characteristics, but those are the more obvious." "We do all our correspondence with this machine at the office, and no doubt it is a little worn," our visitor answered, glancing keenly at Holmes with his bright little eyes. "And now I will show you what is really a very interesting study, Mr. Windibank," Holmes continued. "I think of writing another little monograph some of these days on the typewriter and its relation to crime. It is a subject to which I have devoted some little attention. I have here four letters which purport to come from the missing man. They are all typewritten. In each case, not only are the 'e's' slurred and the 'r's' tailless, but you will observe, if you care to use my magnifying lens, that the fourteen other characteristics to which I have alluded are there as well." Mr. Windibank sprang out of his chair and picked up his hat. "I cannot waste time over this sort of fantastic talk, Mr. Holmes," he said. "If you can catch the man, catch him, and let me know when you have done it." "Certainly," said Holmes, stepping over and turning the key in the door. "I let you know, then, that I have caught him!" "What! where?" shouted Mr. Windibank, turning white to his lips and glancing about him like a rat in a trap. "Oh, it won't do--really it won't," said Holmes suavely. "There is no possible getting out of it, Mr. Windibank. It is quite too transparent, and it was a very bad compliment when you said that it was impossible for me to solve so simple a question. That's right! Sit down and let us talk it over." Our visitor collapsed into a chair, with a ghastly face and a glitter of moisture on his brow. "It--it's not actionable," he stammered. "I am very much afraid that it is not. But between ourselves, Windibank, it was as cruel and selfish and heartless a trick in a petty way as ever came before me. Now, let me just run over the course of events, and you will contradict me if I go wrong." The man sat huddled up in his chair, with his head sunk upon his breast, like one who is utterly crushed. Holmes stuck his feet up on the corner of the mantelpiece and, leaning back with his hands in his pockets, began talking, rather to himself, as it seemed, than to us. "The man married a woman very much older than himself for her money," said he, "and he enjoyed the use of the money of the daughter as long as she lived with them. It was a considerable sum, for people in their position, and the loss of it would have made a serious difference. It was worth an effort to preserve it. The daughter was of a good, amiable disposition, but affectionate and warm-hearted in her ways, so that it was evident that with her fair personal advantages, and her little income, she would not be allowed to remain single long. Now her marriage would mean, of course, the loss of a hundred a year, so what does her stepfather do to prevent it? He takes the obvious course of keeping her at home and forbidding her to seek the company of people of her own age. But soon he found that that would not answer forever. She became restive, insisted upon her rights, and finally announced her positive intention of going to a certain ball. What does her clever stepfather do then? He conceives an idea more creditable to his head than to his heart. With the connivance and assistance of his wife he disguised himself, covered those keen eyes with tinted glasses, masked the face with a moustache and a pair of bushy whiskers, sunk that clear voice into an insinuating whisper, and doubly secure on account of the girl's short sight, he appears as Mr. Hosmer Angel, and keeps off other lovers by making love himself." "It was only a joke at first," groaned our visitor. "We never thought that she would have been so carried away." "Very likely not. However that may be, the young lady was very decidedly carried away, and, having quite made up her mind that her stepfather was in France, the suspicion of treachery never for an instant entered her mind. She was flattered by the gentleman's attentions, and the effect was increased by the loudly expressed admiration of her mother. Then Mr. Angel began to call, for it was obvious that the matter should be pushed as far as it would go if a real effect were to be produced. There were meetings, and an engagement, which would finally secure the girl's affections from turning towards anyone else. But the deception could not be kept up forever. These pretended journeys to France were rather cumbrous. The thing to do was clearly to bring the business to an end in such a dramatic manner that it would leave a permanent impression upon the young lady's mind and prevent her from looking upon any other suitor for some time to come. Hence those vows of fidelity exacted upon a Testament, and hence also the allusions to a possibility of something happening on the very morning of the wedding. James Windibank wished Miss Sutherland to be so bound to Hosmer Angel, and so uncertain as to his fate, that for ten years to come, at any rate, she would not listen to another man. As far as the church door he brought her, and then, as he could go no farther, he conveniently vanished away by the old trick of stepping in at one door of a four-wheeler and out at the other. I think that was the chain of events, Mr. Windibank!" Our visitor had recovered something of his assurance while Holmes had been talking, and he rose from his chair now with a cold sneer upon his pale face. "It may be so, or it may not, Mr. Holmes," said he, "but if you are so very sharp you ought to be sharp enough to know that it is you who are breaking the law now, and not me. I have done nothing actionable from the first, but as long as you keep that door locked you lay yourself open to an action for assault and illegal constraint." "The law cannot, as you say, touch you," said Holmes, unlocking and throwing open the door, "yet there never was a man who deserved punishment more. If the young lady has a brother or a friend, he ought to lay a whip across your shoulders. By Jove!" he continued, flushing up at the sight of the bitter sneer upon the man's face, "it is not part of my duties to my client, but here's a hunting crop handy, and I think I shall just treat myself to--" He took two swift steps to the whip, but before he could grasp it there was a wild clatter of steps upon the stairs, the heavy hall door banged, and from the window we could see Mr. James Windibank running at the top of his speed down the road. "There's a cold-blooded scoundrel!" said Holmes, laughing, as he threw himself down into his chair once more. "That fellow will rise from crime to crime until he does something very bad, and ends on a gallows. The case has, in some respects, been not entirely devoid of interest." "I cannot now entirely see all the steps of your reasoning," I remarked. "Well, of course it was obvious from the first that this Mr. Hosmer Angel must have some strong object for his curious conduct, and it was equally clear that the only man who really profited by the incident, as far as we could see, was the stepfather. Then the fact that the two men were never together, but that the one always appeared when the other was away, was suggestive. So were the tinted spectacles and the curious voice, which both hinted at a disguise, as did the bushy whiskers. My suspicions were all confirmed by his peculiar action in typewriting his signature, which, of course, inferred that his handwriting was so familiar to her that she would recognise even the smallest sample of it. You see all these isolated facts, together with many minor ones, all pointed in the same direction." "And how did you verify them?" "Having once spotted my man, it was easy to get corroboration. I knew the firm for which this man worked. Having taken the printed description. I eliminated everything from it which could be the result of a disguise--the whiskers, the glasses, the voice, and I sent it to the firm, with a request that they would inform me whether it answered to the description of any of their travellers. I had already noticed the peculiarities of the typewriter, and I wrote to the man himself at his business address asking him if he would come here. As I expected, his reply was typewritten and revealed the same trivial but characteristic defects. The same post brought me a letter from Westhouse & Marbank, of Fenchurch Street, to say that the description tallied in every respect with that of their employe, James Windibank. Voila tout!" "And Miss Sutherland?" "If I tell her she will not believe me. You may remember the old Persian saying, 'There is danger for him who taketh the tiger cub, and danger also for whoso snatches a delusion from a woman.' There is as much sense in Hafiz as in Horace, and as much knowledge of the world." ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY We were seated at breakfast one morning, my wife and I, when the maid brought in a telegram. It was from Sherlock Holmes and ran in this way: "Have you a couple of days to spare? Have just been wired for from the west of England in connection with Boscombe Valley tragedy. Shall be glad if you will come with me. Air and scenery perfect. Leave Paddington by the 11:15." "What do you say, dear?" said my wife, looking across at me. "Will you go?" "I really don't know what to say. I have a fairly long list at present." "Oh, Anstruther would do your work for you. You have been looking a little pale lately. I think that the change would do you good, and you are always so interested in Mr. Sherlock Holmes' cases." "I should be ungrateful if I were not, seeing what I gained through one of them," I answered. "But if I am to go, I must pack at once, for I have only half an hour." My experience of camp life in Afghanistan had at least had the effect of making me a prompt and ready traveller. My wants were few and simple, so that in less than the time stated I was in a cab with my valise, rattling away to Paddington Station. Sherlock Holmes was pacing up and down the platform, his tall, gaunt figure made even gaunter and taller by his long grey travelling-cloak and close-fitting cloth cap. "It is really very good of you to come, Watson," said he. "It makes a considerable difference to me, having someone with me on whom I can thoroughly rely. Local aid is always either worthless or else biassed. If you will keep the two corner seats I shall get the tickets." We had the carriage to ourselves save for an immense litter of papers which Holmes had brought with him. Among these he rummaged and read, with intervals of note-taking and of meditation, until we were past Reading. Then he suddenly rolled them all into a gigantic ball and tossed them up onto the rack. "Have you heard anything of the case?" he asked. "Not a word. I have not seen a paper for some days." "The London press has not had very full accounts. I have just been looking through all the recent papers in order to master the particulars. It seems, from what I gather, to be one of those simple cases which are so extremely difficult." "That sounds a little paradoxical." "But it is profoundly true. Singularity is almost invariably a clue. The more featureless and commonplace a crime is, the more difficult it is to bring it home. In this case, however, they have established a very serious case against the son of the murdered man." "It is a murder, then?" "Well, it is conjectured to be so. I shall take nothing for granted until I have the opportunity of looking personally into it. I will explain the state of things to you, as far as I have been able to understand it, in a very few words. "Boscombe Valley is a country district not very far from Ross, in Herefordshire. The largest landed proprietor in that part is a Mr. John Turner, who made his money in Australia and returned some years ago to the old country. One of the farms which he held, that of Hatherley, was let to Mr. Charles McCarthy, who was also an ex-Australian. The men had known each other in the colonies, so that it was not unnatural that when they came to settle down they should do so as near each other as possible. Turner was apparently the richer man, so McCarthy became his tenant but still remained, it seems, upon terms of perfect equality, as they were frequently together. McCarthy had one son, a lad of eighteen, and Turner had an only daughter of the same age, but neither of them had wives living. They appear to have avoided the society of the neighbouring English families and to have led retired lives, though both the McCarthys were fond of sport and were frequently seen at the race-meetings of the neighbourhood. McCarthy kept two servants--a man and a girl. Turner had a considerable household, some half-dozen at the least. That is as much as I have been able to gather about the families. Now for the facts. "On June 3rd, that is, on Monday last, McCarthy left his house at Hatherley about three in the afternoon and walked down to the Boscombe Pool, which is a small lake formed by the spreading out of the stream which runs down the Boscombe Valley. He had been out with his serving-man in the morning at Ross, and he had told the man that he must hurry, as he had an appointment of importance to keep at three. From that appointment he never came back alive. "From Hatherley Farmhouse to the Boscombe Pool is a quarter of a mile, and two people saw him as he passed over this ground. One was an old woman, whose name is not mentioned, and the other was William Crowder, a game-keeper in the employ of Mr. Turner. Both these witnesses depose that Mr. McCarthy was walking alone. The game-keeper adds that within a few minutes of his seeing Mr. McCarthy pass he had seen his son, Mr. James McCarthy, going the same way with a gun under his arm. To the best of his belief, the father was actually in sight at the time, and the son was following him. He thought no more of the matter until he heard in the evening of the tragedy that had occurred. "The two McCarthys were seen after the time when William Crowder, the game-keeper, lost sight of them. The Boscombe Pool is thickly wooded round, with just a fringe of grass and of reeds round the edge. A girl of fourteen, Patience Moran, who is the daughter of the lodge-keeper of the Boscombe Valley estate, was in one of the woods picking flowers. She states that while she was there she saw, at the border of the wood and close by the lake, Mr. McCarthy and his son, and that they appeared to be having a violent quarrel. She heard Mr. McCarthy the elder using very strong language to his son, and she saw the latter raise up his hand as if to strike his father. She was so frightened by their violence that she ran away and told her mother when she reached home that she had left the two McCarthys quarrelling near Boscombe Pool, and that she was afraid that they were going to fight. She had hardly said the words when young Mr. McCarthy came running up to the lodge to say that he had found his father dead in the wood, and to ask for the help of the lodge-keeper. He was much excited, without either his gun or his hat, and his right hand and sleeve were observed to be stained with fresh blood. On following him they found the dead body stretched out upon the grass beside the pool. The head had been beaten in by repeated blows of some heavy and blunt weapon. The injuries were such as might very well have been inflicted by the butt-end of his son's gun, which was found lying on the grass within a few paces of the body. Under these circumstances the young man was instantly arrested, and a verdict of 'wilful murder' having been returned at the inquest on Tuesday, he was on Wednesday brought before the magistrates at Ross, who have referred the case to the next Assizes. Those are the main facts of the case as they came out before the coroner and the police-court." "I could hardly imagine a more damning case," I remarked. "If ever circumstantial evidence pointed to a criminal it does so here." "Circumstantial evidence is a very tricky thing," answered Holmes thoughtfully. "It may seem to point very straight to one thing, but if you shift your own point of view a little, you may find it pointing in an equally uncompromising manner to something entirely different. It must be confessed, however, that the case looks exceedingly grave against the young man, and it is very possible that he is indeed the culprit. There are several people in the neighbourhood, however, and among them Miss Turner, the daughter of the neighbouring landowner, who believe in his innocence, and who have retained Lestrade, whom you may recollect in connection with the Study in Scarlet, to work out the case in his interest. Lestrade, being rather puzzled, has referred the case to me, and hence it is that two middle-aged gentlemen are flying westward at fifty miles an hour instead of quietly digesting their breakfasts at home." "I am afraid," said I, "that the facts are so obvious that you will find little credit to be gained out of this case." "There is nothing more deceptive than an obvious fact," he answered, laughing. "Besides, we may chance to hit upon some other obvious facts which may have been by no means obvious to Mr. Lestrade. You know me too well to think that I am boasting when I say that I shall either confirm or destroy his theory by means which he is quite incapable of employing, or even of understanding. To take the first example to hand, I very clearly perceive that in your bedroom the window is upon the right-hand side, and yet I question whether Mr. Lestrade would have noted even so self-evident a thing as that." "How on earth--" "My dear fellow, I know you well. I know the military neatness which characterises you. You shave every morning, and in this season you shave by the sunlight; but since your shaving is less and less complete as we get farther back on the left side, until it becomes positively slovenly as we get round the angle of the jaw, it is surely very clear that that side is less illuminated than the other. I could not imagine a man of your habits looking at himself in an equal light and being satisfied with such a result. I only quote this as a trivial example of observation and inference. Therein lies my metier, and it is just possible that it may be of some service in the investigation which lies before us. There are one or two minor points which were brought out in the inquest, and which are worth considering." "What are they?" "It appears that his arrest did not take place at once, but after the return to Hatherley Farm. On the inspector of constabulary informing him that he was a prisoner, he remarked that he was not surprised to hear it, and that it was no more than his deserts. This observation of his had the natural effect of removing any traces of doubt which might have remained in the minds of the coroner's jury." "It was a confession," I ejaculated. "No, for it was followed by a protestation of innocence." "Coming on the top of such a damning series of events, it was at least a most suspicious remark." "On the contrary," said Holmes, "it is the brightest rift which I can at present see in the clouds. However innocent he might be, he could not be such an absolute imbecile as not to see that the circumstances were very black against him. Had he appeared surprised at his own arrest, or feigned indignation at it, I should have looked upon it as highly suspicious, because such surprise or anger would not be natural under the circumstances, and yet might appear to be the best policy to a scheming man. His frank acceptance of the situation marks him as either an innocent man, or else as a man of considerable self-restraint and firmness. As to his remark about his deserts, it was also not unnatural if you consider that he stood beside the dead body of his father, and that there is no doubt that he had that very day so far forgotten his filial duty as to bandy words with him, and even, according to the little girl whose evidence is so important, to raise his hand as if to strike him. The self-reproach and contrition which are displayed in his remark appear to me to be the signs of a healthy mind rather than of a guilty one." I shook my head. "Many men have been hanged on far slighter evidence," I remarked. "So they have. And many men have been wrongfully hanged." "What is the young man's own account of the matter?" "It is, I am afraid, not very encouraging to his supporters, though there are one or two points in it which are suggestive. You will find it here, and may read it for yourself." He picked out from his bundle a copy of the local Herefordshire paper, and having turned down the sheet he pointed out the paragraph in which the unfortunate young man had given his own statement of what had occurred. I settled myself down in the corner of the carriage and read it very carefully. It ran in this way: "Mr. James McCarthy, the only son of the deceased, was then called and gave evidence as follows: 'I had been away from home for three days at Bristol, and had only just returned upon the morning of last Monday, the 3rd. My father was absent from home at the time of my arrival, and I was informed by the maid that he had driven over to Ross with John Cobb, the groom. Shortly after my return I heard the wheels of his trap in the yard, and, looking out of my window, I saw him get out and walk rapidly out of the yard, though I was not aware in which direction he was going. I then took my gun and strolled out in the direction of the Boscombe Pool, with the intention of visiting the rabbit warren which is upon the other side. On my way I saw William Crowder, the game-keeper, as he had stated in his evidence; but he is mistaken in thinking that I was following my father. I had no idea that he was in front of me. When about a hundred yards from the pool I heard a cry of "Cooee!" which was a usual signal between my father and myself. I then hurried forward, and found him standing by the pool. He appeared to be much surprised at seeing me and asked me rather roughly what I was doing there. A conversation ensued which led to high words and almost to blows, for my father was a man of a very violent temper. Seeing that his passion was becoming ungovernable, I left him and returned towards Hatherley Farm. I had not gone more than 150 yards, however, when I heard a hideous outcry behind me, which caused me to run back again. I found my father expiring upon the ground, with his head terribly injured. I dropped my gun and held him in my arms, but he almost instantly expired. I knelt beside him for some minutes, and then made my way to Mr. Turner's lodge-keeper, his house being the nearest, to ask for assistance. I saw no one near my father when I returned, and I have no idea how he came by his injuries. He was not a popular man, being somewhat cold and forbidding in his manners, but he had, as far as I know, no active enemies. I know nothing further of the matter.' "The Coroner: Did your father make any statement to you before he died? "Witness: He mumbled a few words, but I could only catch some allusion to a rat. "The Coroner: What did you understand by that? "Witness: It conveyed no meaning to me. I thought that he was delirious. "The Coroner: What was the point upon which you and your father had this final quarrel? "Witness: I should prefer not to answer. "The Coroner: I am afraid that I must press it. "Witness: It is really impossible for me to tell you. I can assure you that it has nothing to do with the sad tragedy which followed. "The Coroner: That is for the court to decide. I need not point out to you that your refusal to answer will prejudice your case considerably in any future proceedings which may arise. "Witness: I must still refuse. "The Coroner: I understand that the cry of 'Cooee' was a common signal between you and your father? "Witness: It was. "The Coroner: How was it, then, that he uttered it before he saw you, and before he even knew that you had returned from Bristol? "Witness (with considerable confusion): I do not know. "A Juryman: Did you see nothing which aroused your suspicions when you returned on hearing the cry and found your father fatally injured? "Witness: Nothing definite. "The Coroner: What do you mean? "Witness: I was so disturbed and excited as I rushed out into the open, that I could think of nothing except of my father. Yet I have a vague impression that as I ran forward something lay upon the ground to the left of me. It seemed to me to be something grey in colour, a coat of some sort, or a plaid perhaps. When I rose from my father I looked round for it, but it was gone. " 'Do you mean that it disappeared before you went for help?' " 'Yes, it was gone.' " 'You cannot say what it was?' " 'No, I had a feeling something was there.' " 'How far from the body?' " 'A dozen yards or so.' " 'And how far from the edge of the wood?' " 'About the same.' " 'Then if it was removed it was while you were within a dozen yards of it?' " 'Yes, but with my back towards it.' "This concluded the examination of the witness." "I see," said I as I glanced down the column, "that the coroner in his concluding remarks was rather severe upon young McCarthy. He calls attention, and with reason, to the discrepancy about his father having signalled to him before seeing him, also to his refusal to give details of his conversation with his father, and his singular account of his father's dying words. They are all, as he remarks, very much against the son." Holmes laughed softly to himself and stretched himself out upon the cushioned seat. "Both you and the coroner have been at some pains," said he, "to single out the very strongest points in the young man's favour. Don't you see that you alternately give him credit for having too much imagination and too little? Too little, if he could not invent a cause of quarrel which would give him the sympathy of the jury; too much, if he evolved from his own inner consciousness anything so outre as a dying reference to a rat, and the incident of the vanishing cloth. No, sir, I shall approach this case from the point of view that what this young man says is true, and we shall see whither that hypothesis will lead us. And now here is my pocket Petrarch, and not another word shall I say of this case until we are on the scene of action. We lunch at Swindon, and I see that we shall be there in twenty minutes." It was nearly four o'clock when we at last, after passing through the beautiful Stroud Valley, and over the broad gleaming Severn, found ourselves at the pretty little country-town of Ross. A lean, ferret-like man, furtive and sly-looking, was waiting for us upon the platform. In spite of the light brown dustcoat and leather-leggings which he wore in deference to his rustic surroundings, I had no difficulty in recognising Lestrade, of Scotland Yard. With him we drove to the Hereford Arms where a room had already been engaged for us. "I have ordered a carriage," said Lestrade as we sat over a cup of tea. "I knew your energetic nature, and that you would not be happy until you had been on the scene of the crime." "It was very nice and complimentary of you," Holmes answered. "It is entirely a question of barometric pressure." Lestrade looked startled. "I do not quite follow," he said. "How is the glass? Twenty-nine, I see. No wind, and not a cloud in the sky. I have a caseful of cigarettes here which need smoking, and the sofa is very much superior to the usual country hotel abomination. I do not think that it is probable that I shall use the carriage to-night." Lestrade laughed indulgently. "You have, no doubt, already formed your conclusions from the newspapers," he said. "The case is as plain as a pikestaff, and the more one goes into it the plainer it becomes. Still, of course, one can't refuse a lady, and such a very positive one, too. She has heard of you, and would have your opinion, though I repeatedly told her that there was nothing which you could do which I had not already done. Why, bless my soul! here is her carriage at the door." He had hardly spoken before there rushed into the room one of the most lovely young women that I have ever seen in my life. Her violet eyes shining, her lips parted, a pink flush upon her cheeks, all thought of her natural reserve lost in her overpowering excitement and concern. "Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the other of us, and finally, with a woman's quick intuition, fastening upon my companion, "I am so glad that you have come. I have driven down to tell you so. I know that James didn't do it. I know it, and I want you to start upon your work knowing it, too. Never let yourself doubt upon that point. We have known each other since we were little children, and I know his faults as no one else does; but he is too tender-hearted to hurt a fly. Such a charge is absurd to anyone who really knows him." "I hope we may clear him, Miss Turner," said Sherlock Holmes. "You may rely upon my doing all that I can." "But you have read the evidence. You have formed some conclusion? Do you not see some loophole, some flaw? Do you not yourself think that he is innocent?" "I think that it is very probable." "There, now!" she cried, throwing back her head and looking defiantly at Lestrade. "You hear! He gives me hopes." Lestrade shrugged his shoulders. "I am afraid that my colleague has been a little quick in forming his conclusions," he said. "But he is right. Oh! I know that he is right. James never did it. And about his quarrel with his father, I am sure that the reason why he would not speak about it to the coroner was because I was concerned in it." "In what way?" asked Holmes. "It is no time for me to hide anything. James and his father had many disagreements about me. Mr. McCarthy was very anxious that there should be a marriage between us. James and I have always loved each other as brother and sister; but of course he is young and has seen very little of life yet, and--and--well, he naturally did not wish to do anything like that yet. So there were quarrels, and this, I am sure, was one of them." "And your father?" asked Holmes. "Was he in favour of such a union?" "No, he was averse to it also. No one but Mr. McCarthy was in favour of it." A quick blush passed over her fresh young face as Holmes shot one of his keen, questioning glances at her. "Thank you for this information," said he. "May I see your father if I call to-morrow?" "I am afraid the doctor won't allow it." "The doctor?" "Yes, have you not heard? Poor father has never been strong for years back, but this has broken him down completely. He has taken to his bed, and Dr. Willows says that he is a wreck and that his nervous system is shattered. Mr. McCarthy was the only man alive who had known dad in the old days in Victoria." "Ha! In Victoria! That is important." "Yes, at the mines." "Quite so; at the gold-mines, where, as I understand, Mr. Turner made his money." "Yes, certainly." "Thank you, Miss Turner. You have been of material assistance to me." "You will tell me if you have any news to-morrow. No doubt you will go to the prison to see James. Oh, if you do, Mr. Holmes, do tell him that I know him to be innocent." "I will, Miss Turner." "I must go home now, for dad is very ill, and he misses me so if I leave him. Good-bye, and God help you in your undertaking." She hurried from the room as impulsively as she had entered, and we heard the wheels of her carriage rattle off down the street. "I am ashamed of you, Holmes," said Lestrade with dignity after a few minutes' silence. "Why should you raise up hopes which you are bound to disappoint? I am not over-tender of heart, but I call it cruel." "I think that I see my way to clearing James McCarthy," said Holmes. "Have you an order to see him in prison?" "Yes, but only for you and me." "Then I shall reconsider my resolution about going out. We have still time to take a train to Hereford and see him to-night?" "Ample." "Then let us do so. Watson, I fear that you will find it very slow, but I shall only be away a couple of hours." I walked down to the station with them, and then wandered through the streets of the little town, finally returning to the hotel, where I lay upon the sofa and tried to interest myself in a yellow-backed novel. The puny plot of the story was so thin, however, when compared to the deep mystery through which we were groping, and I found my attention wander so continually from the action to the fact, that I at last flung it across the room and gave myself up entirely to a consideration of the events of the day. Supposing that this unhappy young man's story were absolutely true, then what hellish thing, what absolutely unforeseen and extraordinary calamity could have occurred between the time when he parted from his father, and the moment when, drawn back by his screams, he rushed into the glade? It was something terrible and deadly. What could it be? Might not the nature of the injuries reveal something to my medical instincts? I rang the bell and called for the weekly county paper, which contained a verbatim account of the inquest. In the surgeon's deposition it was stated that the posterior third of the left parietal bone and the left half of the occipital bone had been shattered by a heavy blow from a blunt weapon. I marked the spot upon my own head. Clearly such a blow must have been struck from behind. That was to some extent in favour of the accused, as when seen quarrelling he was face to face with his father. Still, it did not go for very much, for the older man might have turned his back before the blow fell. Still, it might be worth while to call Holmes' attention to it. Then there was the peculiar dying reference to a rat. What could that mean? It could not be delirium. A man dying from a sudden blow does not commonly become delirious. No, it was more likely to be an attempt to explain how he met his fate. But what could it indicate? I cudgelled my brains to find some possible explanation. And then the incident of the grey cloth seen by young McCarthy. If that were true the murderer must have dropped some part of his dress, presumably his overcoat, in his flight, and must have had the hardihood to return and to carry it away at the instant when the son was kneeling with his back turned not a dozen paces off. What a tissue of mysteries and improbabilities the whole thing was! I did not wonder at Lestrade's opinion, and yet I had so much faith in Sherlock Holmes' insight that I could not lose hope as long as every fresh fact seemed to strengthen his conviction of young McCarthy's innocence. It was late before Sherlock Holmes returned. He came back alone, for Lestrade was staying in lodgings in the town. "The glass still keeps very high," he remarked as he sat down. "It is of importance that it should not rain before we are able to go over the ground. On the other hand, a man should be at his very best and keenest for such nice work as that, and I did not wish to do it when fagged by a long journey. I have seen young McCarthy." "And what did you learn from him?" "Nothing." "Could he throw no light?" "None at all. I was inclined to think at one time that he knew who had done it and was screening him or her, but I am convinced now that he is as puzzled as everyone else. He is not a very quick-witted youth, though comely to look at and, I should think, sound at heart." "I cannot admire his taste," I remarked, "if it is indeed a fact that he was averse to a marriage with so charming a young lady as this Miss Turner." "Ah, thereby hangs a rather painful tale. This fellow is madly, insanely, in love with her, but some two years ago, when he was only a lad, and before he really knew her, for she had been away five years at a boarding-school, what does the idiot do but get into the clutches of a barmaid in Bristol and marry her at a registry office? No one knows a word of the matter, but you can imagine how maddening it must be to him to be upbraided for not doing what he would give his very eyes to do, but what he knows to be absolutely impossible. It was sheer frenzy of this sort which made him throw his hands up into the air when his father, at their last interview, was goading him on to propose to Miss Turner. On the other hand, he had no means of supporting himself, and his father, who was by all accounts a very hard man, would have thrown him over utterly had he known the truth. It was with his barmaid wife that he had spent the last three days in Bristol, and his father did not know where he was. Mark that point. It is of importance. Good has come out of evil, however, for the barmaid, finding from the papers that he is in serious trouble and likely to be hanged, has thrown him over utterly and has written to him to say that she has a husband already in the Bermuda Dockyard, so that there is really no tie between them. I think that that bit of news has consoled young McCarthy for all that he has suffered." "But if he is innocent, who has done it?" "Ah! who? I would call your attention very particularly to two points. One is that the murdered man had an appointment with someone at the pool, and that the someone could not have been his son, for his son was away, and he did not know when he would return. The second is that the murdered man was heard to cry 'Cooee!' before he knew that his son had returned. Those are the crucial points upon which the case depends. And now let us talk about George Meredith, if you please, and we shall leave all minor matters until to-morrow." There was no rain, as Holmes had foretold, and the morning broke bright and cloudless. At nine o'clock Lestrade called for us with the carriage, and we set off for Hatherley Farm and the Boscombe Pool. "There is serious news this morning," Lestrade observed. "It is said that Mr. Turner, of the Hall, is so ill that his life is despaired of." "An elderly man, I presume?" said Holmes. "About sixty; but his constitution has been shattered by his life abroad, and he has been in failing health for some time. This business has had a very bad effect upon him. He was an old friend of McCarthy's, and, I may add, a great benefactor to him, for I have learned that he gave him Hatherley Farm rent free." "Indeed! That is interesting," said Holmes. "Oh, yes! In a hundred other ways he has helped him. Everybody about here speaks of his kindness to him." "Really! Does it not strike you as a little singular that this McCarthy, who appears to have had little of his own, and to have been under such obligations to Turner, should still talk of marrying his son to Turner's daughter, who is, presumably, heiress to the estate, and that in such a very cocksure manner, as if it were merely a case of a proposal and all else would follow? It is the more strange, since we know that Turner himself was averse to the idea. The daughter told us as much. Do you not deduce something from that?" "We have got to the deductions and the inferences," said Lestrade, winking at me. "I find it hard enough to tackle facts, Holmes, without flying away after theories and fancies." "You are right," said Holmes demurely; "you do find it very hard to tackle the facts." "Anyhow, I have grasped one fact which you seem to find it difficult to get hold of," replied Lestrade with some warmth. "And that is--" "That McCarthy senior met his death from McCarthy junior and that all theories to the contrary are the merest moonshine." "Well, moonshine is a brighter thing than fog," said Holmes, laughing. "But I am very much mistaken if this is not Hatherley Farm upon the left." "Yes, that is it." It was a widespread, comfortable-looking building, two-storied, slate-roofed, with great yellow blotches of lichen upon the grey walls. The drawn blinds and the smokeless chimneys, however, gave it a stricken look, as though the weight of this horror still lay heavy upon it. We called at the door, when the maid, at Holmes' request, showed us the boots which her master wore at the time of his death, and also a pair of the son's, though not the pair which he had then had. Having measured these very carefully from seven or eight different points, Holmes desired to be led to the court-yard, from which we all followed the winding track which led to Boscombe Pool. Sherlock Holmes was transformed when he was hot upon such a scent as this. Men who had only known the quiet thinker and logician of Baker Street would have failed to recognise him. His face flushed and darkened. His brows were drawn into two hard black lines, while his eyes shone out from beneath them with a steely glitter. His face was bent downward, his shoulders bowed, his lips compressed, and the veins stood out like whipcord in his long, sinewy neck. His nostrils seemed to dilate with a purely animal lust for the chase, and his mind was so absolutely concentrated upon the matter before him that a question or remark fell unheeded upon his ears, or, at the most, only provoked a quick, impatient snarl in reply. Swiftly and silently he made his way along the track which ran through the meadows, and so by way of the woods to the Boscombe Pool. It was damp, marshy ground, as is all that district, and there were marks of many feet, both upon the path and amid the short grass which bounded it on either side. Sometimes Holmes would hurry on, sometimes stop dead, and once he made quite a little detour into the meadow. Lestrade and I walked behind him, the detective indifferent and contemptuous, while I watched my friend with the interest which sprang from the conviction that every one of his actions was directed towards a definite end. The Boscombe Pool, which is a little reed-girt sheet of water some fifty yards across, is situated at the boundary between the Hatherley Farm and the private park of the wealthy Mr. Turner. Above the woods which lined it upon the farther side we could see the red, jutting pinnacles which marked the site of the rich landowner's dwelling. On the Hatherley side of the pool the woods grew very thick, and there was a narrow belt of sodden grass twenty paces across between the edge of the trees and the reeds which lined the lake. Lestrade showed us the exact spot at which the body had been found, and, indeed, so moist was the ground, that I could plainly see the traces which had been left by the fall of the stricken man. To Holmes, as I could see by his eager face and peering eyes, very many other things were to be read upon the trampled grass. He ran round, like a dog who is picking up a scent, and then turned upon my companion. "What did you go into the pool for?" he asked. "I fished about with a rake. I thought there might be some weapon or other trace. But how on earth--" "Oh, tut, tut! I have no time! That left foot of yours with its inward twist is all over the place. A mole could trace it, and there it vanishes among the reeds. Oh, how simple it would all have been had I been here before they came like a herd of buffalo and wallowed all over it. Here is where the party with the lodge-keeper came, and they have covered all tracks for six or eight feet round the body. But here are three separate tracks of the same feet." He drew out a lens and lay down upon his waterproof to have a better view, talking all the time rather to himself than to us. "These are young McCarthy's feet. Twice he was walking, and once he ran swiftly, so that the soles are deeply marked and the heels hardly visible. That bears out his story. He ran when he saw his father on the ground. Then here are the father's feet as he paced up and down. What is this, then? It is the butt-end of the gun as the son stood listening. And this? Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite unusual boots! They come, they go, they come again--of course that was for the cloak. Now where did they come from?" He ran up and down, sometimes losing, sometimes finding the track until we were well within the edge of the wood and under the shadow of a great beech, the largest tree in the neighbourhood. Holmes traced his way to the farther side of this and lay down once more upon his face with a little cry of satisfaction. For a long time he remained there, turning over the leaves and dried sticks, gathering up what seemed to me to be dust into an envelope and examining with his lens not only the ground but even the bark of the tree as far as he could reach. A jagged stone was lying among the moss, and this also he carefully examined and retained. Then he followed a pathway through the wood until he came to the highroad, where all traces were lost. "It has been a case of considerable interest," he remarked, returning to his natural manner. "I fancy that this grey house on the right must be the lodge. I think that I will go in and have a word with Moran, and perhaps write a little note. Having done that, we may drive back to our luncheon. You may walk to the cab, and I shall be with you presently." It was about ten minutes before we regained our cab and drove back into Ross, Holmes still carrying with him the stone which he had picked up in the wood. "This may interest you, Lestrade," he remarked, holding it out. "The murder was done with it." "I see no marks." "There are none." "How do you know, then?" "The grass was growing under it. It had only lain there a few days. There was no sign of a place whence it had been taken. It corresponds with the injuries. There is no sign of any other weapon." "And the murderer?" "Is a tall man, left-handed, limps with the right leg, wears thick-soled shooting-boots and a grey cloak, smokes Indian cigars, uses a cigar-holder, and carries a blunt pen-knife in his pocket. There are several other indications, but these may be enough to aid us in our search." Lestrade laughed. "I am afraid that I am still a sceptic," he said. "Theories are all very well, but we have to deal with a hard-headed British jury." "Nous verrons," answered Holmes calmly. "You work your own method, and I shall work mine. I shall be busy this afternoon, and shall probably return to London by the evening train." "And leave your case unfinished?" "No, finished." "But the mystery?" "It is solved." "Who was the criminal, then?" "The gentleman I describe." "But who is he?" "Surely it would not be difficult to find out. This is not such a populous neighbourhood." Lestrade shrugged his shoulders. "I am a practical man," he said, "and I really cannot undertake to go about the country looking for a left-handed gentleman with a game leg. I should become the laughing-stock of Scotland Yard." "All right," said Holmes quietly. "I have given you the chance. Here are your lodgings. Good-bye. I shall drop you a line before I leave." Having left Lestrade at his rooms, we drove to our hotel, where we found lunch upon the table. Holmes was silent and buried in thought with a pained expression upon his face, as one who finds himself in a perplexing position. "Look here, Watson," he said when the cloth was cleared "just sit down in this chair and let me preach to you for a little. I don't know quite what to do, and I should value your advice. Light a cigar and let me expound." "Pray do so." "Well, now, in considering this case there are two points about young McCarthy's narrative which struck us both instantly, although they impressed me in his favour and you against him. One was the fact that his father should, according to his account, cry 'Cooee!' before seeing him. The other was his singular dying reference to a rat. He mumbled several words, you understand, but that was all that caught the son's ear. Now from this double point our research must commence, and we will begin it by presuming that what the lad says is absolutely true." "What of this 'Cooee!' then?" "Well, obviously it could not have been meant for the son. The son, as far as he knew, was in Bristol. It was mere chance that he was within earshot. The 'Cooee!' was meant to attract the attention of whoever it was that he had the appointment with. But 'Cooee' is a distinctly Australian cry, and one which is used between Australians. There is a strong presumption that the person whom McCarthy expected to meet him at Boscombe Pool was someone who had been in Australia." "What of the rat, then?" Sherlock Holmes took a folded paper from his pocket and flattened it out on the table. "This is a map of the Colony of Victoria," he said. "I wired to Bristol for it last night." He put his hand over part of the map. "What do you read?" "ARAT," I read. "And now?" He raised his hand. "BALLARAT." "Quite so. That was the word the man uttered, and of which his son only caught the last two syllables. He was trying to utter the name of his murderer. So and so, of Ballarat." "It is wonderful!" I exclaimed. "It is obvious. And now, you see, I had narrowed the field down considerably. The possession of a grey garment was a third point which, granting the son's statement to be correct, was a certainty. We have come now out of mere vagueness to the definite conception of an Australian from Ballarat with a grey cloak." "Certainly." "And one who was at home in the district, for the pool can only be approached by the farm or by the estate, where strangers could hardly wander." "Quite so." "Then comes our expedition of to-day. By an examination of the ground I gained the trifling details which I gave to that imbecile Lestrade, as to the personality of the criminal." "But how did you gain them?" "You know my method. It is founded upon the observation of trifles." "His height I know that you might roughly judge from the length of his stride. His boots, too, might be told from their traces." "Yes, they were peculiar boots." "But his lameness?" "The impression of his right foot was always less distinct than his left. He put less weight upon it. Why? Because he limped--he was lame." "But his left-handedness." "You were yourself struck by the nature of the injury as recorded by the surgeon at the inquest. The blow was struck from immediately behind, and yet was upon the left side. Now, how can that be unless it were by a left-handed man? He had stood behind that tree during the interview between the father and son. He had even smoked there. I found the ash of a cigar, which my special knowledge of tobacco ashes enables me to pronounce as an Indian cigar. I have, as you know, devoted some attention to this, and written a little monograph on the ashes of 140 different varieties of pipe, cigar, and cigarette tobacco. Having found the ash, I then looked round and discovered the stump among the moss where he had tossed it. It was an Indian cigar, of the variety which are rolled in Rotterdam." "And the cigar-holder?" "I could see that the end had not been in his mouth. Therefore he used a holder. The tip had been cut off, not bitten off, but the cut was not a clean one, so I deduced a blunt pen-knife." "Holmes," I said, "you have drawn a net round this man from which he cannot escape, and you have saved an innocent human life as truly as if you had cut the cord which was hanging him. I see the direction in which all this points. The culprit is--" "Mr. John Turner," cried the hotel waiter, opening the door of our sitting-room, and ushering in a visitor. The man who entered was a strange and impressive figure. His slow, limping step and bowed shoulders gave the appearance of decrepitude, and yet his hard, deep-lined, craggy features, and his enormous limbs showed that he was possessed of unusual strength of body and of character. His tangled beard, grizzled hair, and outstanding, drooping eyebrows combined to give an air of dignity and power to his appearance, but his face was of an ashen white, while his lips and the corners of his nostrils were tinged with a shade of blue. It was clear to me at a glance that he was in the grip of some deadly and chronic disease. "Pray sit down on the sofa," said Holmes gently. "You had my note?" "Yes, the lodge-keeper brought it up. You said that you wished to see me here to avoid scandal." "I thought people would talk if I went to the Hall." "And why did you wish to see me?" He looked across at my companion with despair in his weary eyes, as though his question was already answered. "Yes," said Holmes, answering the look rather than the words. "It is so. I know all about McCarthy." The old man sank his face in his hands. "God help me!" he cried. "But I would not have let the young man come to harm. I give you my word that I would have spoken out if it went against him at the Assizes." "I am glad to hear you say so," said Holmes gravely. "I would have spoken now had it not been for my dear girl. It would break her heart--it will break her heart when she hears that I am arrested." "It may not come to that," said Holmes. "What?" "I am no official agent. I understand that it was your daughter who required my presence here, and I am acting in her interests. Young McCarthy must be got off, however." "I am a dying man," said old Turner. "I have had diabetes for years. My doctor says it is a question whether I shall live a month. Yet I would rather die under my own roof than in a gaol." Holmes rose and sat down at the table with his pen in his hand and a bundle of paper before him. "Just tell us the truth," he said. "I shall jot down the facts. You will sign it, and Watson here can witness it. Then I could produce your confession at the last extremity to save young McCarthy. I promise you that I shall not use it unless it is absolutely needed." "It's as well," said the old man; "it's a question whether I shall live to the Assizes, so it matters little to me, but I should wish to spare Alice the shock. And now I will make the thing clear to you; it has been a long time in the acting, but will not take me long to tell. "You didn't know this dead man, McCarthy. He was a devil incarnate. I tell you that. God keep you out of the clutches of such a man as he. His grip has been upon me these twenty years, and he has blasted my life. I'll tell you first how I came to be in his power. "It was in the early '60's at the diggings. I was a young chap then, hot-blooded and reckless, ready to turn my hand at anything; I got among bad companions, took to drink, had no luck with my claim, took to the bush, and in a word became what you would call over here a highway robber. There were six of us, and we had a wild, free life of it, sticking up a station from time to time, or stopping the wagons on the road to the diggings. Black Jack of Ballarat was the name I went under, and our party is still remembered in the colony as the Ballarat Gang. "One day a gold convoy came down from Ballarat to Melbourne, and we lay in wait for it and attacked it. There were six troopers and six of us, so it was a close thing, but we emptied four of their saddles at the first volley. Three of our boys were killed, however, before we got the swag. I put my pistol to the head of the wagon-driver, who was this very man McCarthy. I wish to the Lord that I had shot him then, but I spared him, though I saw his wicked little eyes fixed on my face, as though to remember every feature. We got away with the gold, became wealthy men, and made our way over to England without being suspected. There I parted from my old pals and determined to settle down to a quiet and respectable life. I bought this estate, which chanced to be in the market, and I set myself to do a little good with my money, to make up for the way in which I had earned it. I married, too, and though my wife died young she left me my dear little Alice. Even when she was just a baby her wee hand seemed to lead me down the right path as nothing else had ever done. In a word, I turned over a new leaf and did my best to make up for the past. All was going well when McCarthy laid his grip upon me. "I had gone up to town about an investment, and I met him in Regent Street with hardly a coat to his back or a boot to his foot. " 'Here we are, Jack,' says he, touching me on the arm; 'we'll be as good as a family to you. There's two of us, me and my son, and you can have the keeping of us. If you don't--it's a fine, law-abiding country is England, and there's always a policeman within hail.' "Well, down they came to the west country, there was no shaking them off, and there they have lived rent free on my best land ever since. There was no rest for me, no peace, no forgetfulness; turn where I would, there was his cunning, grinning face at my elbow. It grew worse as Alice grew up, for he soon saw I was more afraid of her knowing my past than of the police. Whatever he wanted he must have, and whatever it was I gave him without question, land, money, houses, until at last he asked a thing which I could not give. He asked for Alice. "His son, you see, had grown up, and so had my girl, and as I was known to be in weak health, it seemed a fine stroke to him that his lad should step into the whole property. But there I was firm. I would not have his cursed stock mixed with mine; not that I had any dislike to the lad, but his blood was in him, and that was enough. I stood firm. McCarthy threatened. I braved him to do his worst. We were to meet at the pool midway between our houses to talk it over. "When I went down there I found him talking with his son, so I smoked a cigar and waited behind a tree until he should be alone. But as I listened to his talk all that was black and bitter in me seemed to come uppermost. He was urging his son to marry my daughter with as little regard for what she might think as if she were a slut from off the streets. It drove me mad to think that I and all that I held most dear should be in the power of such a man as this. Could I not snap the bond? I was already a dying and a desperate man. Though clear of mind and fairly strong of limb, I knew that my own fate was sealed. But my memory and my girl! Both could be saved if I could but silence that foul tongue. I did it, Mr. Holmes. I would do it again. Deeply as I have sinned, I have led a life of martyrdom to atone for it. But that my girl should be entangled in the same meshes which held me was more than I could suffer. I struck him down with no more compunction than if he had been some foul and venomous beast. His cry brought back his son; but I had gained the cover of the wood, though I was forced to go back to fetch the cloak which I had dropped in my flight. That is the true story, gentlemen, of all that occurred." "Well, it is not for me to judge you," said Holmes as the old man signed the statement which had been drawn out. "I pray that we may never be exposed to such a temptation." "I pray not, sir. And what do you intend to do?" "In view of your health, nothing. You are yourself aware that you will soon have to answer for your deed at a higher court than the Assizes. I will keep your confession, and if McCarthy is condemned I shall be forced to use it. If not, it shall never be seen by mortal eye; and your secret, whether you be alive or dead, shall be safe with us." "Farewell, then," said the old man solemnly. "Your own deathbeds, when they come, will be the easier for the thought of the peace which you have given to mine." Tottering and shaking in all his giant frame, he stumbled slowly from the room. "God help us!" said Holmes after a long silence. "Why does fate play such tricks with poor, helpless worms? I never hear of such a case as this that I do not think of Baxter's words, and say, 'There, but for the grace of God, goes Sherlock Holmes.' " James McCarthy was acquitted at the Assizes on the strength of a number of objections which had been drawn out by Holmes and submitted to the defending counsel. Old Turner lived for seven months after our interview, but he is now dead; and there is every prospect that the son and daughter may come to live happily together in ignorance of the black cloud which rests upon their past. ADVENTURE V. THE FIVE ORANGE PIPS When I glance over my notes and records of the Sherlock Holmes cases between the years '82 and '90, I am faced by so many which present strange and interesting features that it is no easy matter to know which to choose and which to leave. Some, however, have already gained publicity through the papers, and others have not offered a field for those peculiar qualities which my friend possessed in so high a degree, and which it is the object of these papers to illustrate. Some, too, have baffled his analytical skill, and would be, as narratives, beginnings without an ending, while others have been but partially cleared up, and have their explanations founded rather upon conjecture and surmise than on that absolute logical proof which was so dear to him. There is, however, one of these last which was so remarkable in its details and so startling in its results that I am tempted to give some account of it in spite of the fact that there are points in connection with it which never have been, and probably never will be, entirely cleared up. The year '87 furnished us with a long series of cases of greater or less interest, of which I retain the records. Among my headings under this one twelve months I find an account of the adventure of the Paradol Chamber, of the Amateur Mendicant Society, who held a luxurious club in the lower vault of a furniture warehouse, of the facts connected with the loss of the British barque Sophy Anderson, of the singular adventures of the Grice Patersons in the island of Uffa, and finally of the Camberwell poisoning case. In the latter, as may be remembered, Sherlock Holmes was able, by winding up the dead man's watch, to prove that it had been wound up two hours before, and that therefore the deceased had gone to bed within that time--a deduction which was of the greatest importance in clearing up the case. All these I may sketch out at some future date, but none of them present such singular features as the strange train of circumstances which I have now taken up my pen to describe. It was in the latter days of September, and the equinoctial gales had set in with exceptional violence. All day the wind had screamed and the rain had beaten against the windows, so that even here in the heart of great, hand-made London we were forced to raise our minds for the instant from the routine of life and to recognise the presence of those great elemental forces which shriek at mankind through the bars of his civilisation, like untamed beasts in a cage. As evening drew in, the storm grew higher and louder, and the wind cried and sobbed like a child in the chimney. Sherlock Holmes sat moodily at one side of the fireplace cross-indexing his records of crime, while I at the other was deep in one of Clark Russell's fine sea-stories until the howl of the gale from without seemed to blend with the text, and the splash of the rain to lengthen out into the long swash of the sea waves. My wife was on a visit to her mother's, and for a few days I was a dweller once more in my old quarters at Baker Street. "Why," said I, glancing up at my companion, "that was surely the bell. Who could come to-night? Some friend of yours, perhaps?" "Except yourself I have none," he answered. "I do not encourage visitors." "A client, then?" "If so, it is a serious case. Nothing less would bring a man out on such a day and at such an hour. But I take it that it is more likely to be some crony of the landlady's." Sherlock Holmes was wrong in his conjecture, however, for there came a step in the passage and a tapping at the door. He stretched out his long arm to turn the lamp away from himself and towards the vacant chair upon which a newcomer must sit. "Come in!" said he. The man who entered was young, some two-and-twenty at the outside, well-groomed and trimly clad, with something of refinement and delicacy in his bearing. The streaming umbrella which he held in his hand, and his long shining waterproof told of the fierce weather through which he had come. He looked about him anxiously in the glare of the lamp, and I could see that his face was pale and his eyes heavy, like those of a man who is weighed down with some great anxiety. "I owe you an apology," he said, raising his golden pince-nez to his eyes. "I trust that I am not intruding. I fear that I have brought some traces of the storm and rain into your snug chamber." "Give me your coat and umbrella," said Holmes. "They may rest here on the hook and will be dry presently. You have come up from the south-west, I see." "Yes, from Horsham." "That clay and chalk mixture which I see upon your toe caps is quite distinctive." "I have come for advice." "That is easily got." "And help." "That is not always so easy." "I have heard of you, Mr. Holmes. I heard from Major Prendergast how you saved him in the Tankerville Club scandal." "Ah, of course. He was wrongfully accused of cheating at cards." "He said that you could solve anything." "He said too much." "That you are never beaten." "I have been beaten four times--three times by men, and once by a woman." "But what is that compared with the number of your successes?" "It is true that I have been generally successful." "Then you may be so with me." "I beg that you will draw your chair up to the fire and favour me with some details as to your case." "It is no ordinary one." "None of those which come to me are. I am the last court of appeal." "And yet I question, sir, whether, in all your experience, you have ever listened to a more mysterious and inexplicable chain of events than those which have happened in my own family." "You fill me with interest," said Holmes. "Pray give us the essential facts from the commencement, and I can afterwards question you as to those details which seem to me to be most important." The young man pulled his chair up and pushed his wet feet out towards the blaze. "My name," said he, "is John Openshaw, but my own affairs have, as far as I can understand, little to do with this awful business. It is a hereditary matter; so in order to give you an idea of the facts, I must go back to the commencement of the affair. "You must know that my grandfather had two sons--my uncle Elias and my father Joseph. My father had a small factory at Coventry, which he enlarged at the time of the invention of bicycling. He was a patentee of the Openshaw unbreakable tire, and his business met with such success that he was able to sell it and to retire upon a handsome competence. "My uncle Elias emigrated to America when he was a young man and became a planter in Florida, where he was reported to have done very well. At the time of the war he fought in Jackson's army, and afterwards under Hood, where he rose to be a colonel. When Lee laid down his arms my uncle returned to his plantation, where he remained for three or four years. About 1869 or 1870 he came back to Europe and took a small estate in Sussex, near Horsham. He had made a very considerable fortune in the States, and his reason for leaving them was his aversion to the negroes, and his dislike of the Republican policy in extending the franchise to them. He was a singular man, fierce and quick-tempered, very foul-mouthed when he was angry, and of a most retiring disposition. During all the years that he lived at Horsham, I doubt if ever he set foot in the town. He had a garden and two or three fields round his house, and there he would take his exercise, though very often for weeks on end he would never leave his room. He drank a great deal of brandy and smoked very heavily, but he would see no society and did not want any friends, not even his own brother. "He didn't mind me; in fact, he took a fancy to me, for at the time when he saw me first I was a youngster of twelve or so. This would be in the year 1878, after he had been eight or nine years in England. He begged my father to let me live with him and he was very kind to me in his way. When he was sober he used to be fond of playing backgammon and draughts with me, and he would make me his representative both with the servants and with the tradespeople, so that by the time that I was sixteen I was quite master of the house. I kept all the keys and could go where I liked and do what I liked, so long as I did not disturb him in his privacy. There was one singular exception, however, for he had a single room, a lumber-room up among the attics, which was invariably locked, and which he would never permit either me or anyone else to enter. With a boy's curiosity I have peeped through the keyhole, but I was never able to see more than such a collection of old trunks and bundles as would be expected in such a room. "One day--it was in March, 1883--a letter with a foreign stamp lay upon the table in front of the colonel's plate. It was not a common thing for him to receive letters, for his bills were all paid in ready money, and he had no friends of any sort. 'From India!' said he as he took it up, 'Pondicherry postmark! What can this be?' Opening it hurriedly, out there jumped five little dried orange pips, which pattered down upon his plate. I began to laugh at this, but the laugh was struck from my lips at the sight of his face. His lip had fallen, his eyes were protruding, his skin the colour of putty, and he glared at the envelope which he still held in his trembling hand, 'K. K. K.!' he shrieked, and then, 'My God, my God, my sins have overtaken me!' " 'What is it, uncle?' I cried. " 'Death,' said he, and rising from the table he retired to his room, leaving me palpitating with horror. I took up the envelope and saw scrawled in red ink upon the inner flap, just above the gum, the letter K three times repeated. There was nothing else save the five dried pips. What could be the reason of his overpowering terror? I left the breakfast-table, and as I ascended the stair I met him coming down with an old rusty key, which must have belonged to the attic, in one hand, and a small brass box, like a cashbox, in the other. " 'They may do what they like, but I'll checkmate them still,' said he with an oath. 'Tell Mary that I shall want a fire in my room to-day, and send down to Fordham, the Horsham lawyer.' "I did as he ordered, and when the lawyer arrived I was asked to step up to the room. The fire was burning brightly, and in the grate there was a mass of black, fluffy ashes, as of burned paper, while the brass box stood open and empty beside it. As I glanced at the box I noticed, with a start, that upon the lid was printed the treble K which I had read in the morning upon the envelope. " 'I wish you, John,' said my uncle, 'to witness my will. I leave my estate, with all its advantages and all its disadvantages, to my brother, your father, whence it will, no doubt, descend to you. If you can enjoy it in peace, well and good! If you find you cannot, take my advice, my boy, and leave it to your deadliest enemy. I am sorry to give you such a two-edged thing, but I can't say what turn things are going to take. Kindly sign the paper where Mr. Fordham shows you.' "I signed the paper as directed, and the lawyer took it away with him. The singular incident made, as you may think, the deepest impression upon me, and I pondered over it and turned it every way in my mind without being able to make anything of it. Yet I could not shake off the vague feeling of dread which it left behind, though the sensation grew less keen as the weeks passed and nothing happened to disturb the usual routine of our lives. I could see a change in my uncle, however. He drank more than ever, and he was less inclined for any sort of society. Most of his time he would spend in his room, with the door locked upon the inside, but sometimes he would emerge in a sort of drunken frenzy and would burst out of the house and tear about the garden with a revolver in his hand, screaming out that he was afraid of no man, and that he was not to be cooped up, like a sheep in a pen, by man or devil. When these hot fits were over, however, he would rush tumultuously in at the door and lock and bar it behind him, like a man who can brazen it out no longer against the terror which lies at the roots of his soul. At such times I have seen his face, even on a cold day, glisten with moisture, as though it were new raised from a basin. "Well, to come to an end of the matter, Mr. Holmes, and not to abuse your patience, there came a night when he made one of those drunken sallies from which he never came back. We found him, when we went to search for him, face downward in a little green-scummed pool, which lay at the foot of the garden. There was no sign of any violence, and the water was but two feet deep, so that the jury, having regard to his known eccentricity, brought in a verdict of 'suicide.' But I, who knew how he winced from the very thought of death, had much ado to persuade myself that he had gone out of his way to meet it. The matter passed, however, and my father entered into possession of the estate, and of some $14,000, which lay to his credit at the bank." "One moment," Holmes interposed, "your statement is, I foresee, one of the most remarkable to which I have ever listened. Let me have the date of the reception by your uncle of the letter, and the date of his supposed suicide." "The letter arrived on March 10, 1883. His death was seven weeks later, upon the night of May 2nd." "Thank you. Pray proceed." "When my father took over the Horsham property, he, at my request, made a careful examination of the attic, which had been always locked up. We found the brass box there, although its contents had been destroyed. On the inside of the cover was a paper label, with the initials of K. K. K. repeated upon it, and 'Letters, memoranda, receipts, and a register' written beneath. These, we presume, indicated the nature of the papers which had been destroyed by Colonel Openshaw. For the rest, there was nothing of much importance in the attic save a great many scattered papers and note-books bearing upon my uncle's life in America. Some of them were of the war time and showed that he had done his duty well and had borne the repute of a brave soldier. Others were of a date during the reconstruction of the Southern states, and were mostly concerned with politics, for he had evidently taken a strong part in opposing the carpet-bag politicians who had been sent down from the North. "Well, it was the beginning of '84 when my father came to live at Horsham, and all went as well as possible with us until the January of '85. On the fourth day after the new year I heard my father give a sharp cry of surprise as we sat together at the breakfast-table. There he was, sitting with a newly opened envelope in one hand and five dried orange pips in the outstretched palm of the other one. He had always laughed at what he called my cock-and-bull story about the colonel, but he looked very scared and puzzled now that the same thing had come upon himself. " 'Why, what on earth does this mean, John?' he stammered. "My heart had turned to lead. 'It is K. K. K.,' said I. "He looked inside the envelope. 'So it is,' he cried. 'Here are the very letters. But what is this written above them?' " 'Put the papers on the sundial,' I read, peeping over his shoulder. " 'What papers? What sundial?' he asked. " 'The sundial in the garden. There is no other,' said I; 'but the papers must be those that are destroyed.' " 'Pooh!' said he, gripping hard at his courage. 'We are in a civilised land here, and we can't have tomfoolery of this kind. Where does the thing come from?' " 'From Dundee,' I answered, glancing at the postmark. " 'Some preposterous practical joke,' said he. 'What have I to do with sundials and papers? I shall take no notice of such nonsense.' " 'I should certainly speak to the police,' I said. " 'And be laughed at for my pains. Nothing of the sort.' " 'Then let me do so?' " 'No, I forbid you. I won't have a fuss made about such nonsense.' "It was in vain to argue with him, for he was a very obstinate man. I went about, however, with a heart which was full of forebodings. "On the third day after the coming of the letter my father went from home to visit an old friend of his, Major Freebody, who is in command of one of the forts upon Portsdown Hill. I was glad that he should go, for it seemed to me that he was farther from danger when he was away from home. In that, however, I was in error. Upon the second day of his absence I received a telegram from the major, imploring me to come at once. My father had fallen over one of the deep chalk-pits which abound in the neighbourhood, and was lying senseless, with a shattered skull. I hurried to him, but he passed away without having ever recovered his consciousness. He had, as it appears, been returning from Fareham in the twilight, and as the country was unknown to him, and the chalk-pit unfenced, the jury had no hesitation in bringing in a verdict of 'death from accidental causes.' Carefully as I examined every fact connected with his death, I was unable to find anything which could suggest the idea of murder. There were no signs of violence, no footmarks, no robbery, no record of strangers having been seen upon the roads. And yet I need not tell you that my mind was far from at ease, and that I was well-nigh certain that some foul plot had been woven round him. "In this sinister way I came into my inheritance. You will ask me why I did not dispose of it? I answer, because I was well convinced that our troubles were in some way dependent upon an incident in my uncle's life, and that the danger would be as pressing in one house as in another. "It was in January, '85, that my poor father met his end, and two years and eight months have elapsed since then. During that time I have lived happily at Horsham, and I had begun to hope that this curse had passed away from the family, and that it had ended with the last generation. I had begun to take comfort too soon, however; yesterday morning the blow fell in the very shape in which it had come upon my father." The young man took from his waistcoat a crumpled envelope, and turning to the table he shook out upon it five little dried orange pips. "This is the envelope," he continued. "The postmark is London--eastern division. Within are the very words which were upon my father's last message: 'K. K. K.'; and then 'Put the papers on the sundial.' " "What have you done?" asked Holmes. "Nothing." "Nothing?" "To tell the truth"--he sank his face into his thin, white hands--"I have felt helpless. I have felt like one of those poor rabbits when the snake is writhing towards it. I seem to be in the grasp of some resistless, inexorable evil, which no foresight and no precautions can guard against." "Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are lost. Nothing but energy can save you. This is no time for despair." "I have seen the police." "Ah!" "But they listened to my story with a smile. I am convinced that the inspector has formed the opinion that the letters are all practical jokes, and that the deaths of my relations were really accidents, as the jury stated, and were not to be connected with the warnings." Holmes shook his clenched hands in the air. "Incredible imbecility!" he cried. "They have, however, allowed me a policeman, who may remain in the house with me." "Has he come with you to-night?" "No. His orders were to stay in the house." Again Holmes raved in the air. "Why did you come to me," he cried, "and, above all, why did you not come at once?" "I did not know. It was only to-day that I spoke to Major Prendergast about my troubles and was advised by him to come to you." "It is really two days since you had the letter. We should have acted before this. You have no further evidence, I suppose, than that which you have placed before us--no suggestive detail which might help us?" "There is one thing," said John Openshaw. He rummaged in his coat pocket, and, drawing out a piece of discoloured, blue-tinted paper, he laid it out upon the table. "I have some remembrance," said he, "that on the day when my uncle burned the papers I observed that the small, unburned margins which lay amid the ashes were of this particular colour. I found this single sheet upon the floor of his room, and I am inclined to think that it may be one of the papers which has, perhaps, fluttered out from among the others, and in that way has escaped destruction. Beyond the mention of pips, I do not see that it helps us much. I think myself that it is a page from some private diary. The writing is undoubtedly my uncle's." Holmes moved the lamp, and we both bent over the sheet of paper, which showed by its ragged edge that it had indeed been torn from a book. It was headed, "March, 1869," and beneath were the following enigmatical notices: "4th. Hudson came. Same old platform. "7th. Set the pips on McCauley, Paramore, and John Swain, of St. Augustine. "9th. McCauley cleared. "10th. John Swain cleared. "12th. Visited Paramore. All well." "Thank you!" said Holmes, folding up the paper and returning it to our visitor. "And now you must on no account lose another instant. We cannot spare time even to discuss what you have told me. You must get home instantly and act." "What shall I do?" "There is but one thing to do. It must be done at once. You must put this piece of paper which you have shown us into the brass box which you have described. You must also put in a note to say that all the other papers were burned by your uncle, and that this is the only one which remains. You must assert that in such words as will carry conviction with them. Having done this, you must at once put the box out upon the sundial, as directed. Do you understand?" "Entirely." "Do not think of revenge, or anything of the sort, at present. I think that we may gain that by means of the law; but we have our web to weave, while theirs is already woven. The first consideration is to remove the pressing danger which threatens you. The second is to clear up the mystery and to punish the guilty parties." "I thank you," said the young man, rising and pulling on his overcoat. "You have given me fresh life and hope. I shall certainly do as you advise." "Do not lose an instant. And, above all, take care of yourself in the meanwhile, for I do not think that there can be a doubt that you are threatened by a very real and imminent danger. How do you go back?" "By train from Waterloo." "It is not yet nine. The streets will be crowded, so I trust that you may be in safety. And yet you cannot guard yourself too closely." "I am armed." "That is well. To-morrow I shall set to work upon your case." "I shall see you at Horsham, then?" "No, your secret lies in London. It is there that I shall seek it." "Then I shall call upon you in a day, or in two days, with news as to the box and the papers. I shall take your advice in every particular." He shook hands with us and took his leave. Outside the wind still screamed and the rain splashed and pattered against the windows. This strange, wild story seemed to have come to us from amid the mad elements--blown in upon us like a sheet of sea-weed in a gale--and now to have been reabsorbed by them once more. Sherlock Holmes sat for some time in silence, with his head sunk forward and his eyes bent upon the red glow of the fire. Then he lit his pipe, and leaning back in his chair he watched the blue smoke-rings as they chased each other up to the ceiling. "I think, Watson," he remarked at last, "that of all our cases we have had none more fantastic than this." "Save, perhaps, the Sign of Four." "Well, yes. Save, perhaps, that. And yet this John Openshaw seems to me to be walking amid even greater perils than did the Sholtos." "But have you," I asked, "formed any definite conception as to what these perils are?" "There can be no question as to their nature," he answered. "Then what are they? Who is this K. K. K., and why does he pursue this unhappy family?" Sherlock Holmes closed his eyes and placed his elbows upon the arms of his chair, with his finger-tips together. "The ideal reasoner," he remarked, "would, when he had once been shown a single fact in all its bearings, deduce from it not only all the chain of events which led up to it but also all the results which would follow from it. As Cuvier could correctly describe a whole animal by the contemplation of a single bone, so the observer who has thoroughly understood one link in a series of incidents should be able to accurately state all the other ones, both before and after. We have not yet grasped the results which the reason alone can attain to. Problems may be solved in the study which have baffled all those who have sought a solution by the aid of their senses. To carry the art, however, to its highest pitch, it is necessary that the reasoner should be able to utilise all the facts which have come to his knowledge; and this in itself implies, as you will readily see, a possession of all knowledge, which, even in these days of free education and encyclopaedias, is a somewhat rare accomplishment. It is not so impossible, however, that a man should possess all knowledge which is likely to be useful to him in his work, and this I have endeavoured in my case to do. If I remember rightly, you on one occasion, in the early days of our friendship, defined my limits in a very precise fashion." "Yes," I answered, laughing. "It was a singular document. Philosophy, astronomy, and politics were marked at zero, I remember. Botany variable, geology profound as regards the mud-stains from any region within fifty miles of town, chemistry eccentric, anatomy unsystematic, sensational literature and crime records unique, violin-player, boxer, swordsman, lawyer, and self-poisoner by cocaine and tobacco. Those, I think, were the main points of my analysis." Holmes grinned at the last item. "Well," he said, "I say now, as I said then, that a man should keep his little brain-attic stocked with all the furniture that he is likely to use, and the rest he can put away in the lumber-room of his library, where he can get it if he wants it. Now, for such a case as the one which has been submitted to us to-night, we need certainly to muster all our resources. Kindly hand me down the letter K of the American Encyclopaedia which stands upon the shelf beside you. Thank you. Now let us consider the situation and see what may be deduced from it. In the first place, we may start with a strong presumption that Colonel Openshaw had some very strong reason for leaving America. Men at his time of life do not change all their habits and exchange willingly the charming climate of Florida for the lonely life of an English provincial town. His extreme love of solitude in England suggests the idea that he was in fear of someone or something, so we may assume as a working hypothesis that it was fear of someone or something which drove him from America. As to what it was he feared, we can only deduce that by considering the formidable letters which were received by himself and his successors. Did you remark the postmarks of those letters?" "The first was from Pondicherry, the second from Dundee, and the third from London." "From East London. What do you deduce from that?" "They are all seaports. That the writer was on board of a ship." "Excellent. We have already a clue. There can be no doubt that the probability--the strong probability--is that the writer was on board of a ship. And now let us consider another point. In the case of Pondicherry, seven weeks elapsed between the threat and its fulfilment, in Dundee it was only some three or four days. Does that suggest anything?" "A greater distance to travel." "But the letter had also a greater distance to come." "Then I do not see the point." "There is at least a presumption that the vessel in which the man or men are is a sailing-ship. It looks as if they always send their singular warning or token before them when starting upon their mission. You see how quickly the deed followed the sign when it came from Dundee. If they had come from Pondicherry in a steamer they would have arrived almost as soon as their letter. But, as a matter of fact, seven weeks elapsed. I think that those seven weeks represented the difference between the mail-boat which brought the letter and the sailing vessel which brought the writer." "It is possible." "More than that. It is probable. And now you see the deadly urgency of this new case, and why I urged young Openshaw to caution. The blow has always fallen at the end of the time which it would take the senders to travel the distance. But this one comes from London, and therefore we cannot count upon delay." "Good God!" I cried. "What can it mean, this relentless persecution?" "The papers which Openshaw carried are obviously of vital importance to the person or persons in the sailing-ship. I think that it is quite clear that there must be more than one of them. A single man could not have carried out two deaths in such a way as to deceive a coroner's jury. There must have been several in it, and they must have been men of resource and determination. Their papers they mean to have, be the holder of them who it may. In this way you see K. K. K. ceases to be the initials of an individual and becomes the badge of a society." "But of what society?" "Have you never--" said Sherlock Holmes, bending forward and sinking his voice--"have you never heard of the Ku Klux Klan?" "I never have." Holmes turned over the leaves of the book upon his knee. "Here it is," said he presently: " 'Ku Klux Klan. A name derived from the fanciful resemblance to the sound produced by cocking a rifle. This terrible secret society was formed by some ex-Confederate soldiers in the Southern states after the Civil War, and it rapidly formed local branches in different parts of the country, notably in Tennessee, Louisiana, the Carolinas, Georgia, and Florida. Its power was used for political purposes, principally for the terrorising of the negro voters and the murdering and driving from the country of those who were opposed to its views. Its outrages were usually preceded by a warning sent to the marked man in some fantastic but generally recognised shape--a sprig of oak-leaves in some parts, melon seeds or orange pips in others. On receiving this the victim might either openly abjure his former ways, or might fly from the country. If he braved the matter out, death would unfailingly come upon him, and usually in some strange and unforeseen manner. So perfect was the organisation of the society, and so systematic its methods, that there is hardly a case upon record where any man succeeded in braving it with impunity, or in which any of its outrages were traced home to the perpetrators. For some years the organisation flourished in spite of the efforts of the United States government and of the better classes of the community in the South. Eventually, in the year 1869, the movement rather suddenly collapsed, although there have been sporadic outbreaks of the same sort since that date.' "You will observe," said Holmes, laying down the volume, "that the sudden breaking up of the society was coincident with the disappearance of Openshaw from America with their papers. It may well have been cause and effect. It is no wonder that he and his family have some of the more implacable spirits upon their track. You can understand that this register and diary may implicate some of the first men in the South, and that there may be many who will not sleep easy at night until it is recovered." "Then the page we have seen--" "Is such as we might expect. It ran, if I remember right, 'sent the pips to A, B, and C'--that is, sent the society's warning to them. Then there are successive entries that A and B cleared, or left the country, and finally that C was visited, with, I fear, a sinister result for C. Well, I think, Doctor, that we may let some light into this dark place, and I believe that the only chance young Openshaw has in the meantime is to do what I have told him. There is nothing more to be said or to be done to-night, so hand me over my violin and let us try to forget for half an hour the miserable weather and the still more miserable ways of our fellow men." It had cleared in the morning, and the sun was shining with a subdued brightness through the dim veil which hangs over the great city. Sherlock Holmes was already at breakfast when I came down. "You will excuse me for not waiting for you," said he; "I have, I foresee, a very busy day before me in looking into this case of young Openshaw's." "What steps will you take?" I asked. "It will very much depend upon the results of my first inquiries. I may have to go down to Horsham, after all." "You will not go there first?" "No, I shall commence with the City. Just ring the bell and the maid will bring up your coffee." As I waited, I lifted the unopened newspaper from the table and glanced my eye over it. It rested upon a heading which sent a chill to my heart. "Holmes," I cried, "you are too late." "Ah!" said he, laying down his cup, "I feared as much. How was it done?" He spoke calmly, but I could see that he was deeply moved. "My eye caught the name of Openshaw, and the heading 'Tragedy Near Waterloo Bridge.' Here is the account: " 'Between nine and ten last night Police-Constable Cook, of the H Division, on duty near Waterloo Bridge, heard a cry for help and a splash in the water. The night, however, was extremely dark and stormy, so that, in spite of the help of several passers-by, it was quite impossible to effect a rescue. The alarm, however, was given, and, by the aid of the water-police, the body was eventually recovered. It proved to be that of a young gentleman whose name, as it appears from an envelope which was found in his pocket, was John Openshaw, and whose residence is near Horsham. It is conjectured that he may have been hurrying down to catch the last train from Waterloo Station, and that in his haste and the extreme darkness he missed his path and walked over the edge of one of the small landing-places for river steamboats. The body exhibited no traces of violence, and there can be no doubt that the deceased had been the victim of an unfortunate accident, which should have the effect of calling the attention of the authorities to the condition of the riverside landing-stages.' " We sat in silence for some minutes, Holmes more depressed and shaken than I had ever seen him. "That hurts my pride, Watson," he said at last. "It is a petty feeling, no doubt, but it hurts my pride. It becomes a personal matter with me now, and, if God sends me health, I shall set my hand upon this gang. That he should come to me for help, and that I should send him away to his death--!" He sprang from his chair and paced about the room in uncontrollable agitation, with a flush upon his sallow cheeks and a nervous clasping and unclasping of his long thin hands. "They must be cunning devils," he exclaimed at last. "How could they have decoyed him down there? The Embankment is not on the direct line to the station. The bridge, no doubt, was too crowded, even on such a night, for their purpose. Well, Watson, we shall see who will win in the long run. I am going out now!" "To the police?" "No; I shall be my own police. When I have spun the web they may take the flies, but not before." All day I was engaged in my professional work, and it was late in the evening before I returned to Baker Street. Sherlock Holmes had not come back yet. It was nearly ten o'clock before he entered, looking pale and worn. He walked up to the sideboard, and tearing a piece from the loaf he devoured it voraciously, washing it down with a long draught of water. "You are hungry," I remarked. "Starving. It had escaped my memory. I have had nothing since breakfast." "Nothing?" "Not a bite. I had no time to think of it." "And how have you succeeded?" "Well." "You have a clue?" "I have them in the hollow of my hand. Young Openshaw shall not long remain unavenged. Why, Watson, let us put their own devilish trade-mark upon them. It is well thought of!" "What do you mean?" He took an orange from the cupboard, and tearing it to pieces he squeezed out the pips upon the table. Of these he took five and thrust them into an envelope. On the inside of the flap he wrote "S. H. for J. O." Then he sealed it and addressed it to "Captain James Calhoun, Barque Lone Star, Savannah, Georgia." "That will await him when he enters port," said he, chuckling. "It may give him a sleepless night. He will find it as sure a precursor of his fate as Openshaw did before him." "And who is this Captain Calhoun?" "The leader of the gang. I shall have the others, but he first." "How did you trace it, then?" He took a large sheet of paper from his pocket, all covered with dates and names. "I have spent the whole day," said he, "over Lloyd's registers and files of the old papers, following the future career of every vessel which touched at Pondicherry in January and February in '83. There were thirty-six ships of fair tonnage which were reported there during those months. Of these, one, the Lone Star, instantly attracted my attention, since, although it was reported as having cleared from London, the name is that which is given to one of the states of the Union." "Texas, I think." "I was not and am not sure which; but I knew that the ship must have an American origin." "What then?" "I searched the Dundee records, and when I found that the barque Lone Star was there in January, '85, my suspicion became a certainty. I then inquired as to the vessels which lay at present in the port of London." "Yes?" "The Lone Star had arrived here last week. I went down to the Albert Dock and found that she had been taken down the river by the early tide this morning, homeward bound to Savannah. I wired to Gravesend and learned that she had passed some time ago, and as the wind is easterly I have no doubt that she is now past the Goodwins and not very far from the Isle of Wight." "What will you do, then?" "Oh, I have my hand upon him. He and the two mates, are as I learn, the only native-born Americans in the ship. The others are Finns and Germans. I know, also, that they were all three away from the ship last night. I had it from the stevedore who has been loading their cargo. By the time that their sailing-ship reaches Savannah the mail-boat will have carried this letter, and the cable will have informed the police of Savannah that these three gentlemen are badly wanted here upon a charge of murder." There is ever a flaw, however, in the best laid of human plans, and the murderers of John Openshaw were never to receive the orange pips which would show them that another, as cunning and as resolute as themselves, was upon their track. Very long and very severe were the equinoctial gales that year. We waited long for news of the Lone Star of Savannah, but none ever reached us. We did at last hear that somewhere far out in the Atlantic a shattered stern-post of a boat was seen swinging in the trough of a wave, with the letters "L. S." carved upon it, and that is all which we shall ever know of the fate of the Lone Star. ADVENTURE VI. THE MAN WITH THE TWISTED LIP Isa Whitney, brother of the late Elias Whitney, D.D., Principal of the Theological College of St. George's, was much addicted to opium. The habit grew upon him, as I understand, from some foolish freak when he was at college; for having read De Quincey's description of his dreams and sensations, he had drenched his tobacco with laudanum in an attempt to produce the same effects. He found, as so many more have done, that the practice is easier to attain than to get rid of, and for many years he continued to be a slave to the drug, an object of mingled horror and pity to his friends and relatives. I can see him now, with yellow, pasty face, drooping lids, and pin-point pupils, all huddled in a chair, the wreck and ruin of a noble man. One night--it was in June, '89--there came a ring to my bell, about the hour when a man gives his first yawn and glances at the clock. I sat up in my chair, and my wife laid her needle-work down in her lap and made a little face of disappointment. "A patient!" said she. "You'll have to go out." I groaned, for I was newly come back from a weary day. We heard the door open, a few hurried words, and then quick steps upon the linoleum. Our own door flew open, and a lady, clad in some dark-coloured stuff, with a black veil, entered the room. "You will excuse my calling so late," she began, and then, suddenly losing her self-control, she ran forward, threw her arms about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in such trouble!" she cried; "I do so want a little help." "Why," said my wife, pulling up her veil, "it is Kate Whitney. How you startled me, Kate! I had not an idea who you were when you came in." "I didn't know what to do, so I came straight to you." That was always the way. Folk who were in grief came to my wife like birds to a light-house. "It was very sweet of you to come. Now, you must have some wine and water, and sit here comfortably and tell us all about it. Or should you rather that I sent James off to bed?" "Oh, no, no! I want the doctor's advice and help, too. It's about Isa. He has not been home for two days. I am so frightened about him!" It was not the first time that she had spoken to us of her husband's trouble, to me as a doctor, to my wife as an old friend and school companion. We soothed and comforted her by such words as we could find. Did she know where her husband was? Was it possible that we could bring him back to her? It seems that it was. She had the surest information that of late he had, when the fit was on him, made use of an opium den in the farthest east of the City. Hitherto his orgies had always been confined to one day, and he had come back, twitching and shattered, in the evening. But now the spell had been upon him eight-and-forty hours, and he lay there, doubtless among the dregs of the docks, breathing in the poison or sleeping off the effects. There he was to be found, she was sure of it, at the Bar of Gold, in Upper Swandam Lane. But what was she to do? How could she, a young and timid woman, make her way into such a place and pluck her husband out from among the ruffians who surrounded him? There was the case, and of course there was but one way out of it. Might I not escort her to this place? And then, as a second thought, why should she come at all? I was Isa Whitney's medical adviser, and as such I had influence over him. I could manage it better if I were alone. I promised her on my word that I would send him home in a cab within two hours if he were indeed at the address which she had given me. And so in ten minutes I had left my armchair and cheery sitting-room behind me, and was speeding eastward in a hansom on a strange errand, as it seemed to me at the time, though the future only could show how strange it was to be. But there was no great difficulty in the first stage of my adventure. Upper Swandam Lane is a vile alley lurking behind the high wharves which line the north side of the river to the east of London Bridge. Between a slop-shop and a gin-shop, approached by a steep flight of steps leading down to a black gap like the mouth of a cave, I found the den of which I was in search. Ordering my cab to wait, I passed down the steps, worn hollow in the centre by the ceaseless tread of drunken feet; and by the light of a flickering oil-lamp above the door I found the latch and made my way into a long, low room, thick and heavy with the brown opium smoke, and terraced with wooden berths, like the forecastle of an emigrant ship. Through the gloom one could dimly catch a glimpse of bodies lying in strange fantastic poses, bowed shoulders, bent knees, heads thrown back, and chins pointing upward, with here and there a dark, lack-lustre eye turned upon the newcomer. Out of the black shadows there glimmered little red circles of light, now bright, now faint, as the burning poison waxed or waned in the bowls of the metal pipes. The most lay silent, but some muttered to themselves, and others talked together in a strange, low, monotonous voice, their conversation coming in gushes, and then suddenly tailing off into silence, each mumbling out his own thoughts and paying little heed to the words of his neighbour. At the farther end was a small brazier of burning charcoal, beside which on a three-legged wooden stool there sat a tall, thin old man, with his jaw resting upon his two fists, and his elbows upon his knees, staring into the fire. As I entered, a sallow Malay attendant had hurried up with a pipe for me and a supply of the drug, beckoning me to an empty berth. "Thank you. I have not come to stay," said I. "There is a friend of mine here, Mr. Isa Whitney, and I wish to speak with him." There was a movement and an exclamation from my right, and peering through the gloom, I saw Whitney, pale, haggard, and unkempt, staring out at me. "My God! It's Watson," said he. He was in a pitiable state of reaction, with every nerve in a twitter. "I say, Watson, what o'clock is it?" "Nearly eleven." "Of what day?" "Of Friday, June 19th." "Good heavens! I thought it was Wednesday. It is Wednesday. What d'you want to frighten a chap for?" He sank his face onto his arms and began to sob in a high treble key. "I tell you that it is Friday, man. Your wife has been waiting this two days for you. You should be ashamed of yourself!" "So I am. But you've got mixed, Watson, for I have only been here a few hours, three pipes, four pipes--I forget how many. But I'll go home with you. I wouldn't frighten Kate--poor little Kate. Give me your hand! Have you a cab?" "Yes, I have one waiting." "Then I shall go in it. But I must owe something. Find what I owe, Watson. I am all off colour. I can do nothing for myself." I walked down the narrow passage between the double row of sleepers, holding my breath to keep out the vile, stupefying fumes of the drug, and looking about for the manager. As I passed the tall man who sat by the brazier I felt a sudden pluck at my skirt, and a low voice whispered, "Walk past me, and then look back at me." The words fell quite distinctly upon my ear. I glanced down. They could only have come from the old man at my side, and yet he sat now as absorbed as ever, very thin, very wrinkled, bent with age, an opium pipe dangling down from between his knees, as though it had dropped in sheer lassitude from his fingers. I took two steps forward and looked back. It took all my self-control to prevent me from breaking out into a cry of astonishment. He had turned his back so that none could see him but I. His form had filled out, his wrinkles were gone, the dull eyes had regained their fire, and there, sitting by the fire and grinning at my surprise, was none other than Sherlock Holmes. He made a slight motion to me to approach him, and instantly, as he turned his face half round to the company once more, subsided into a doddering, loose-lipped senility. "Holmes!" I whispered, "what on earth are you doing in this den?" "As low as you can," he answered; "I have excellent ears. If you would have the great kindness to get rid of that sottish friend of yours I should be exceedingly glad to have a little talk with you." "I have a cab outside." "Then pray send him home in it. You may safely trust him, for he appears to be too limp to get into any mischief. I should recommend you also to send a note by the cabman to your wife to say that you have thrown in your lot with me. If you will wait outside, I shall be with you in five minutes." It was difficult to refuse any of Sherlock Holmes' requests, for they were always so exceedingly definite, and put forward with such a quiet air of mastery. I felt, however, that when Whitney was once confined in the cab my mission was practically accomplished; and for the rest, I could not wish anything better than to be associated with my friend in one of those singular adventures which were the normal condition of his existence. In a few minutes I had written my note, paid Whitney's bill, led him out to the cab, and seen him driven through the darkness. In a very short time a decrepit figure had emerged from the opium den, and I was walking down the street with Sherlock Holmes. For two streets he shuffled along with a bent back and an uncertain foot. Then, glancing quickly round, he straightened himself out and burst into a hearty fit of laughter. "I suppose, Watson," said he, "that you imagine that I have added opium-smoking to cocaine injections, and all the other little weaknesses on which you have favoured me with your medical views." "I was certainly surprised to find you there." "But not more so than I to find you." "I came to find a friend." "And I to find an enemy." "An enemy?" "Yes; one of my natural enemies, or, shall I say, my natural prey. Briefly, Watson, I am in the midst of a very remarkable inquiry, and I have hoped to find a clue in the incoherent ramblings of these sots, as I have done before now. Had I been recognised in that den my life would not have been worth an hour's purchase; for I have used it before now for my own purposes, and the rascally Lascar who runs it has sworn to have vengeance upon me. There is a trap-door at the back of that building, near the corner of Paul's Wharf, which could tell some strange tales of what has passed through it upon the moonless nights." "What! You do not mean bodies?" "Ay, bodies, Watson. We should be rich men if we had $1000 for every poor devil who has been done to death in that den. It is the vilest murder-trap on the whole riverside, and I fear that Neville St. Clair has entered it never to leave it more. But our trap should be here." He put his two forefingers between his teeth and whistled shrilly--a signal which was answered by a similar whistle from the distance, followed shortly by the rattle of wheels and the clink of horses' hoofs. "Now, Watson," said Holmes, as a tall dog-cart dashed up through the gloom, throwing out two golden tunnels of yellow light from its side lanterns. "You'll come with me, won't you?" "If I can be of use." "Oh, a trusty comrade is always of use; and a chronicler still more so. My room at The Cedars is a double-bedded one." "The Cedars?" "Yes; that is Mr. St. Clair's house. I am staying there while I conduct the inquiry." "Where is it, then?" "Near Lee, in Kent. We have a seven-mile drive before us." "But I am all in the dark." "Of course you are. You'll know all about it presently. Jump up here. All right, John; we shall not need you. Here's half a crown. Look out for me to-morrow, about eleven. Give her her head. So long, then!" He flicked the horse with his whip, and we dashed away through the endless succession of sombre and deserted streets, which widened gradually, until we were flying across a broad balustraded bridge, with the murky river flowing sluggishly beneath us. Beyond lay another dull wilderness of bricks and mortar, its silence broken only by the heavy, regular footfall of the policeman, or the songs and shouts of some belated party of revellers. A dull wrack was drifting slowly across the sky, and a star or two twinkled dimly here and there through the rifts of the clouds. Holmes drove in silence, with his head sunk upon his breast, and the air of a man who is lost in thought, while I sat beside him, curious to learn what this new quest might be which seemed to tax his powers so sorely, and yet afraid to break in upon the current of his thoughts. We had driven several miles, and were beginning to get to the fringe of the belt of suburban villas, when he shook himself, shrugged his shoulders, and lit up his pipe with the air of a man who has satisfied himself that he is acting for the best. "You have a grand gift of silence, Watson," said he. "It makes you quite invaluable as a companion. 'Pon my word, it is a great thing for me to have someone to talk to, for my own thoughts are not over-pleasant. I was wondering what I should say to this dear little woman to-night when she meets me at the door." "You forget that I know nothing about it." "I shall just have time to tell you the facts of the case before we get to Lee. It seems absurdly simple, and yet, somehow I can get nothing to go upon. There's plenty of thread, no doubt, but I can't get the end of it into my hand. Now, I'll state the case clearly and concisely to you, Watson, and maybe you can see a spark where all is dark to me." "Proceed, then." "Some years ago--to be definite, in May, 1884--there came to Lee a gentleman, Neville St. Clair by name, who appeared to have plenty of money. He took a large villa, laid out the grounds very nicely, and lived generally in good style. By degrees he made friends in the neighbourhood, and in 1887 he married the daughter of a local brewer, by whom he now has two children. He had no occupation, but was interested in several companies and went into town as a rule in the morning, returning by the 5:14 from Cannon Street every night. Mr. St. Clair is now thirty-seven years of age, is a man of temperate habits, a good husband, a very affectionate father, and a man who is popular with all who know him. I may add that his whole debts at the present moment, as far as we have been able to ascertain, amount to $88 10s., while he has $220 standing to his credit in the Capital and Counties Bank. There is no reason, therefore, to think that money troubles have been weighing upon his mind. "Last Monday Mr. Neville St. Clair went into town rather earlier than usual, remarking before he started that he had two important commissions to perform, and that he would bring his little boy home a box of bricks. Now, by the merest chance, his wife received a telegram upon this same Monday, very shortly after his departure, to the effect that a small parcel of considerable value which she had been expecting was waiting for her at the offices of the Aberdeen Shipping Company. Now, if you are well up in your London, you will know that the office of the company is in Fresno Street, which branches out of Upper Swandam Lane, where you found me to-night. Mrs. St. Clair had her lunch, started for the City, did some shopping, proceeded to the company's office, got her packet, and found herself at exactly 4:35 walking through Swandam Lane on her way back to the station. Have you followed me so far?" "It is very clear." "If you remember, Monday was an exceedingly hot day, and Mrs. St. Clair walked slowly, glancing about in the hope of seeing a cab, as she did not like the neighbourhood in which she found herself. While she was walking in this way down Swandam Lane, she suddenly heard an ejaculation or cry, and was struck cold to see her husband looking down at her and, as it seemed to her, beckoning to her from a second-floor window. The window was open, and she distinctly saw his face, which she describes as being terribly agitated. He waved his hands frantically to her, and then vanished from the window so suddenly that it seemed to her that he had been plucked back by some irresistible force from behind. One singular point which struck her quick feminine eye was that although he wore some dark coat, such as he had started to town in, he had on neither collar nor necktie. "Convinced that something was amiss with him, she rushed down the steps--for the house was none other than the opium den in which you found me to-night--and running through the front room she attempted to ascend the stairs which led to the first floor. At the foot of the stairs, however, she met this Lascar scoundrel of whom I have spoken, who thrust her back and, aided by a Dane, who acts as assistant there, pushed her out into the street. Filled with the most maddening doubts and fears, she rushed down the lane and, by rare good-fortune, met in Fresno Street a number of constables with an inspector, all on their way to their beat. The inspector and two men accompanied her back, and in spite of the continued resistance of the proprietor, they made their way to the room in which Mr. St. Clair had last been seen. There was no sign of him there. In fact, in the whole of that floor there was no one to be found save a crippled wretch of hideous aspect, who, it seems, made his home there. Both he and the Lascar stoutly swore that no one else had been in the front room during the afternoon. So determined was their denial that the inspector was staggered, and had almost come to believe that Mrs. St. Clair had been deluded when, with a cry, she sprang at a small deal box which lay upon the table and tore the lid from it. Out there fell a cascade of children's bricks. It was the toy which he had promised to bring home. "This discovery, and the evident confusion which the cripple showed, made the inspector realise that the matter was serious. The rooms were carefully examined, and results all pointed to an abominable crime. The front room was plainly furnished as a sitting-room and led into a small bedroom, which looked out upon the back of one of the wharves. Between the wharf and the bedroom window is a narrow strip, which is dry at low tide but is covered at high tide with at least four and a half feet of water. The bedroom window was a broad one and opened from below. On examination traces of blood were to be seen upon the windowsill, and several scattered drops were visible upon the wooden floor of the bedroom. Thrust away behind a curtain in the front room were all the clothes of Mr. Neville St. Clair, with the exception of his coat. His boots, his socks, his hat, and his watch--all were there. There were no signs of violence upon any of these garments, and there were no other traces of Mr. Neville St. Clair. Out of the window he must apparently have gone for no other exit could be discovered, and the ominous bloodstains upon the sill gave little promise that he could save himself by swimming, for the tide was at its very highest at the moment of the tragedy. "And now as to the villains who seemed to be immediately implicated in the matter. The Lascar was known to be a man of the vilest antecedents, but as, by Mrs. St. Clair's story, he was known to have been at the foot of the stair within a very few seconds of her husband's appearance at the window, he could hardly have been more than an accessory to the crime. His defence was one of absolute ignorance, and he protested that he had no knowledge as to the doings of Hugh Boone, his lodger, and that he could not account in any way for the presence of the missing gentleman's clothes. "So much for the Lascar manager. Now for the sinister cripple who lives upon the second floor of the opium den, and who was certainly the last human being whose eyes rested upon Neville St. Clair. His name is Hugh Boone, and his hideous face is one which is familiar to every man who goes much to the City. He is a professional beggar, though in order to avoid the police regulations he pretends to a small trade in wax vestas. Some little distance down Threadneedle Street, upon the left-hand side, there is, as you may have remarked, a small angle in the wall. Here it is that this creature takes his daily seat, cross-legged with his tiny stock of matches on his lap, and as he is a piteous spectacle a small rain of charity descends into the greasy leather cap which lies upon the pavement beside him. I have watched the fellow more than once before ever I thought of making his professional acquaintance, and I have been surprised at the harvest which he has reaped in a short time. His appearance, you see, is so remarkable that no one can pass him without observing him. A shock of orange hair, a pale face disfigured by a horrible scar, which, by its contraction, has turned up the outer edge of his upper lip, a bulldog chin, and a pair of very penetrating dark eyes, which present a singular contrast to the colour of his hair, all mark him out from amid the common crowd of mendicants and so, too, does his wit, for he is ever ready with a reply to any piece of chaff which may be thrown at him by the passers-by. This is the man whom we now learn to have been the lodger at the opium den, and to have been the last man to see the gentleman of whom we are in quest." "But a cripple!" said I. "What could he have done single-handed against a man in the prime of life?" "He is a cripple in the sense that he walks with a limp; but in other respects he appears to be a powerful and well-nurtured man. Surely your medical experience would tell you, Watson, that weakness in one limb is often compensated for by exceptional strength in the others." "Pray continue your narrative." "Mrs. St. Clair had fainted at the sight of the blood upon the window, and she was escorted home in a cab by the police, as her presence could be of no help to them in their investigations. Inspector Barton, who had charge of the case, made a very careful examination of the premises, but without finding anything which threw any light upon the matter. One mistake had been made in not arresting Boone instantly, as he was allowed some few minutes during which he might have communicated with his friend the Lascar, but this fault was soon remedied, and he was seized and searched, without anything being found which could incriminate him. There were, it is true, some blood-stains upon his right shirt-sleeve, but he pointed to his ring-finger, which had been cut near the nail, and explained that the bleeding came from there, adding that he had been to the window not long before, and that the stains which had been observed there came doubtless from the same source. He denied strenuously having ever seen Mr. Neville St. Clair and swore that the presence of the clothes in his room was as much a mystery to him as to the police. As to Mrs. St. Clair's assertion that she had actually seen her husband at the window, he declared that she must have been either mad or dreaming. He was removed, loudly protesting, to the police-station, while the inspector remained upon the premises in the hope that the ebbing tide might afford some fresh clue. "And it did, though they hardly found upon the mud-bank what they had feared to find. It was Neville St. Clair's coat, and not Neville St. Clair, which lay uncovered as the tide receded. And what do you think they found in the pockets?" "I cannot imagine." "No, I don't think you would guess. Every pocket stuffed with pennies and half-pennies--421 pennies and 270 half-pennies. It was no wonder that it had not been swept away by the tide. But a human body is a different matter. There is a fierce eddy between the wharf and the house. It seemed likely enough that the weighted coat had remained when the stripped body had been sucked away into the river." "But I understand that all the other clothes were found in the room. Would the body be dressed in a coat alone?" "No, sir, but the facts might be met speciously enough. Suppose that this man Boone had thrust Neville St. Clair through the window, there is no human eye which could have seen the deed. What would he do then? It would of course instantly strike him that he must get rid of the tell-tale garments. He would seize the coat, then, and be in the act of throwing it out, when it would occur to him that it would swim and not sink. He has little time, for he has heard the scuffle downstairs when the wife tried to force her way up, and perhaps he has already heard from his Lascar confederate that the police are hurrying up the street. There is not an instant to be lost. He rushes to some secret hoard, where he has accumulated the fruits of his beggary, and he stuffs all the coins upon which he can lay his hands into the pockets to make sure of the coat's sinking. He throws it out, and would have done the same with the other garments had not he heard the rush of steps below, and only just had time to close the window when the police appeared." "It certainly sounds feasible." "Well, we will take it as a working hypothesis for want of a better. Boone, as I have told you, was arrested and taken to the station, but it could not be shown that there had ever before been anything against him. He had for years been known as a professional beggar, but his life appeared to have been a very quiet and innocent one. There the matter stands at present, and the questions which have to be solved--what Neville St. Clair was doing in the opium den, what happened to him when there, where is he now, and what Hugh Boone had to do with his disappearance--are all as far from a solution as ever. I confess that I cannot recall any case within my experience which looked at the first glance so simple and yet which presented such difficulties." While Sherlock Holmes had been detailing this singular series of events, we had been whirling through the outskirts of the great town until the last straggling houses had been left behind, and we rattled along with a country hedge upon either side of us. Just as he finished, however, we drove through two scattered villages, where a few lights still glimmered in the windows. "We are on the outskirts of Lee," said my companion. "We have touched on three English counties in our short drive, starting in Middlesex, passing over an angle of Surrey, and ending in Kent. See that light among the trees? That is The Cedars, and beside that lamp sits a woman whose anxious ears have already, I have little doubt, caught the clink of our horse's feet." "But why are you not conducting the case from Baker Street?" I asked. "Because there are many inquiries which must be made out here. Mrs. St. Clair has most kindly put two rooms at my disposal, and you may rest assured that she will have nothing but a welcome for my friend and colleague. I hate to meet her, Watson, when I have no news of her husband. Here we are. Whoa, there, whoa!" We had pulled up in front of a large villa which stood within its own grounds. A stable-boy had run out to the horse's head, and springing down, I followed Holmes up the small, winding gravel-drive which led to the house. As we approached, the door flew open, and a little blonde woman stood in the opening, clad in some sort of light mousseline de soie, with a touch of fluffy pink chiffon at her neck and wrists. She stood with her figure outlined against the flood of light, one hand upon the door, one half-raised in her eagerness, her body slightly bent, her head and face protruded, with eager eyes and parted lips, a standing question. "Well?" she cried, "well?" And then, seeing that there were two of us, she gave a cry of hope which sank into a groan as she saw that my companion shook his head and shrugged his shoulders. "No good news?" "None." "No bad?" "No." "Thank God for that. But come in. You must be weary, for you have had a long day." "This is my friend, Dr. Watson. He has been of most vital use to me in several of my cases, and a lucky chance has made it possible for me to bring him out and associate him with this investigation." "I am delighted to see you," said she, pressing my hand warmly. "You will, I am sure, forgive anything that may be wanting in our arrangements, when you consider the blow which has come so suddenly upon us." "My dear madam," said I, "I am an old campaigner, and if I were not I can very well see that no apology is needed. If I can be of any assistance, either to you or to my friend here, I shall be indeed happy." "Now, Mr. Sherlock Holmes," said the lady as we entered a well-lit dining-room, upon the table of which a cold supper had been laid out, "I should very much like to ask you one or two plain questions, to which I beg that you will give a plain answer." "Certainly, madam." "Do not trouble about my feelings. I am not hysterical, nor given to fainting. I simply wish to hear your real, real opinion." "Upon what point?" "In your heart of hearts, do you think that Neville is alive?" Sherlock Holmes seemed to be embarrassed by the question. "Frankly, now!" she repeated, standing upon the rug and looking keenly down at him as he leaned back in a basket-chair. "Frankly, then, madam, I do not." "You think that he is dead?" "I do." "Murdered?" "I don't say that. Perhaps." "And on what day did he meet his death?" "On Monday." "Then perhaps, Mr. Holmes, you will be good enough to explain how it is that I have received a letter from him to-day." Sherlock Holmes sprang out of his chair as if he had been galvanised. "What!" he roared. "Yes, to-day." She stood smiling, holding up a little slip of paper in the air. "May I see it?" "Certainly." He snatched it from her in his eagerness, and smoothing it out upon the table he drew over the lamp and examined it intently. I had left my chair and was gazing at it over his shoulder. The envelope was a very coarse one and was stamped with the Gravesend postmark and with the date of that very day, or rather of the day before, for it was considerably after midnight. "Coarse writing," murmured Holmes. "Surely this is not your husband's writing, madam." "No, but the enclosure is." "I perceive also that whoever addressed the envelope had to go and inquire as to the address." "How can you tell that?" "The name, you see, is in perfectly black ink, which has dried itself. The rest is of the greyish colour, which shows that blotting-paper has been used. If it had been written straight off, and then blotted, none would be of a deep black shade. This man has written the name, and there has then been a pause before he wrote the address, which can only mean that he was not familiar with it. It is, of course, a trifle, but there is nothing so important as trifles. Let us now see the letter. Ha! there has been an enclosure here!" "Yes, there was a ring. His signet-ring." "And you are sure that this is your husband's hand?" "One of his hands." "One?" "His hand when he wrote hurriedly. It is very unlike his usual writing, and yet I know it well." " 'Dearest do not be frightened. All will come well. There is a huge error which it may take some little time to rectify. Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf of a book, octavo size, no water-mark. Hum! Posted to-day in Gravesend by a man with a dirty thumb. Ha! And the flap has been gummed, if I am not very much in error, by a person who had been chewing tobacco. And you have no doubt that it is your husband's hand, madam?" "None. Neville wrote those words." "And they were posted to-day at Gravesend. Well, Mrs. St. Clair, the clouds lighten, though I should not venture to say that the danger is over." "But he must be alive, Mr. Holmes." "Unless this is a clever forgery to put us on the wrong scent. The ring, after all, proves nothing. It may have been taken from him." "No, no; it is, it is his very own writing!" "Very well. It may, however, have been written on Monday and only posted to-day." "That is possible." "If so, much may have happened between." "Oh, you must not discourage me, Mr. Holmes. I know that all is well with him. There is so keen a sympathy between us that I should know if evil came upon him. On the very day that I saw him last he cut himself in the bedroom, and yet I in the dining-room rushed upstairs instantly with the utmost certainty that something had happened. Do you think that I would respond to such a trifle and yet be ignorant of his death?" "I have seen too much not to know that the impression of a woman may be more valuable than the conclusion of an analytical reasoner. And in this letter you certainly have a very strong piece of evidence to corroborate your view. But if your husband is alive and able to write letters, why should he remain away from you?" "I cannot imagine. It is unthinkable." "And on Monday he made no remarks before leaving you?" "No." "And you were surprised to see him in Swandam Lane?" "Very much so." "Was the window open?" "Yes." "Then he might have called to you?" "He might." "He only, as I understand, gave an inarticulate cry?" "Yes." "A call for help, you thought?" "Yes. He waved his hands." "But it might have been a cry of surprise. Astonishment at the unexpected sight of you might cause him to throw up his hands?" "It is possible." "And you thought he was pulled back?" "He disappeared so suddenly." "He might have leaped back. You did not see anyone else in the room?" "No, but this horrible man confessed to having been there, and the Lascar was at the foot of the stairs." "Quite so. Your husband, as far as you could see, had his ordinary clothes on?" "But without his collar or tie. I distinctly saw his bare throat." "Had he ever spoken of Swandam Lane?" "Never." "Had he ever showed any signs of having taken opium?" "Never." "Thank you, Mrs. St. Clair. Those are the principal points about which I wished to be absolutely clear. We shall now have a little supper and then retire, for we may have a very busy day to-morrow." A large and comfortable double-bedded room had been placed at our disposal, and I was quickly between the sheets, for I was weary after my night of adventure. Sherlock Holmes was a man, however, who, when he had an unsolved problem upon his mind, would go for days, and even for a week, without rest, turning it over, rearranging his facts, looking at it from every point of view until he had either fathomed it or convinced himself that his data were insufficient. It was soon evident to me that he was now preparing for an all-night sitting. He took off his coat and waistcoat, put on a large blue dressing-gown, and then wandered about the room collecting pillows from his bed and cushions from the sofa and armchairs. With these he constructed a sort of Eastern divan, upon which he perched himself cross-legged, with an ounce of shag tobacco and a box of matches laid out in front of him. In the dim light of the lamp I saw him sitting there, an old briar pipe between his lips, his eyes fixed vacantly upon the corner of the ceiling, the blue smoke curling up from him, silent, motionless, with the light shining upon his strong-set aquiline features. So he sat as I dropped off to sleep, and so he sat when a sudden ejaculation caused me to wake up, and I found the summer sun shining into the apartment. The pipe was still between his lips, the smoke still curled upward, and the room was full of a dense tobacco haze, but nothing remained of the heap of shag which I had seen upon the previous night. "Awake, Watson?" he asked. "Yes." "Game for a morning drive?" "Certainly." "Then dress. No one is stirring yet, but I know where the stable-boy sleeps, and we shall soon have the trap out." He chuckled to himself as he spoke, his eyes twinkled, and he seemed a different man to the sombre thinker of the previous night. As I dressed I glanced at my watch. It was no wonder that no one was stirring. It was twenty-five minutes past four. I had hardly finished when Holmes returned with the news that the boy was putting in the horse. "I want to test a little theory of mine," said he, pulling on his boots. "I think, Watson, that you are now standing in the presence of one of the most absolute fools in Europe. I deserve to be kicked from here to Charing Cross. But I think I have the key of the affair now." "And where is it?" I asked, smiling. "In the bathroom," he answered. "Oh, yes, I am not joking," he continued, seeing my look of incredulity. "I have just been there, and I have taken it out, and I have got it in this Gladstone bag. Come on, my boy, and we shall see whether it will not fit the lock." We made our way downstairs as quietly as possible, and out into the bright morning sunshine. In the road stood our horse and trap, with the half-clad stable-boy waiting at the head. We both sprang in, and away we dashed down the London Road. A few country carts were stirring, bearing in vegetables to the metropolis, but the lines of villas on either side were as silent and lifeless as some city in a dream. "It has been in some points a singular case," said Holmes, flicking the horse on into a gallop. "I confess that I have been as blind as a mole, but it is better to learn wisdom late than never to learn it at all." In town the earliest risers were just beginning to look sleepily from their windows as we drove through the streets of the Surrey side. Passing down the Waterloo Bridge Road we crossed over the river, and dashing up Wellington Street wheeled sharply to the right and found ourselves in Bow Street. Sherlock Holmes was well known to the force, and the two constables at the door saluted him. One of them held the horse's head while the other led us in. "Who is on duty?" asked Holmes. "Inspector Bradstreet, sir." "Ah, Bradstreet, how are you?" A tall, stout official had come down the stone-flagged passage, in a peaked cap and frogged jacket. "I wish to have a quiet word with you, Bradstreet." "Certainly, Mr. Holmes. Step into my room here." It was a small, office-like room, with a huge ledger upon the table, and a telephone projecting from the wall. The inspector sat down at his desk. "What can I do for you, Mr. Holmes?" "I called about that beggarman, Boone--the one who was charged with being concerned in the disappearance of Mr. Neville St. Clair, of Lee." "Yes. He was brought up and remanded for further inquiries." "So I heard. You have him here?" "In the cells." "Is he quiet?" "Oh, he gives no trouble. But he is a dirty scoundrel." "Dirty?" "Yes, it is all we can do to make him wash his hands, and his face is as black as a tinker's. Well, when once his case has been settled, he will have a regular prison bath; and I think, if you saw him, you would agree with me that he needed it." "I should like to see him very much." "Would you? That is easily done. Come this way. You can leave your bag." "No, I think that I'll take it." "Very good. Come this way, if you please." He led us down a passage, opened a barred door, passed down a winding stair, and brought us to a whitewashed corridor with a line of doors on each side. "The third on the right is his," said the inspector. "Here it is!" He quietly shot back a panel in the upper part of the door and glanced through. "He is asleep," said he. "You can see him very well." We both put our eyes to the grating. The prisoner lay with his face towards us, in a very deep sleep, breathing slowly and heavily. He was a middle-sized man, coarsely clad as became his calling, with a coloured shirt protruding through the rent in his tattered coat. He was, as the inspector had said, extremely dirty, but the grime which covered his face could not conceal its repulsive ugliness. A broad wheal from an old scar ran right across it from eye to chin, and by its contraction had turned up one side of the upper lip, so that three teeth were exposed in a perpetual snarl. A shock of very bright red hair grew low over his eyes and forehead. "He's a beauty, isn't he?" said the inspector. "He certainly needs a wash," remarked Holmes. "I had an idea that he might, and I took the liberty of bringing the tools with me." He opened the Gladstone bag as he spoke, and took out, to my astonishment, a very large bath-sponge. "He! he! You are a funny one," chuckled the inspector. "Now, if you will have the great goodness to open that door very quietly, we will soon make him cut a much more respectable figure." "Well, I don't know why not," said the inspector. "He doesn't look a credit to the Bow Street cells, does he?" He slipped his key into the lock, and we all very quietly entered the cell. The sleeper half turned, and then settled down once more into a deep slumber. Holmes stooped to the water-jug, moistened his sponge, and then rubbed it twice vigorously across and down the prisoner's face. "Let me introduce you," he shouted, "to Mr. Neville St. Clair, of Lee, in the county of Kent." Never in my life have I seen such a sight. The man's face peeled off under the sponge like the bark from a tree. Gone was the coarse brown tint! Gone, too, was the horrid scar which had seamed it across, and the twisted lip which had given the repulsive sneer to the face! A twitch brought away the tangled red hair, and there, sitting up in his bed, was a pale, sad-faced, refined-looking man, black-haired and smooth-skinned, rubbing his eyes and staring about him with sleepy bewilderment. Then suddenly realising the exposure, he broke into a scream and threw himself down with his face to the pillow. "Great heavens!" cried the inspector, "it is, indeed, the missing man. I know him from the photograph." The prisoner turned with the reckless air of a man who abandons himself to his destiny. "Be it so," said he. "And pray what am I charged with?" "With making away with Mr. Neville St.-- Oh, come, you can't be charged with that unless they make a case of attempted suicide of it," said the inspector with a grin. "Well, I have been twenty-seven years in the force, but this really takes the cake." "If I am Mr. Neville St. Clair, then it is obvious that no crime has been committed, and that, therefore, I am illegally detained." "No crime, but a very great error has been committed," said Holmes. "You would have done better to have trusted you wife." "It was not the wife; it was the children," groaned the prisoner. "God help me, I would not have them ashamed of their father. My God! What an exposure! What can I do?" Sherlock Holmes sat down beside him on the couch and patted him kindly on the shoulder. "If you leave it to a court of law to clear the matter up," said he, "of course you can hardly avoid publicity. On the other hand, if you convince the police authorities that there is no possible case against you, I do not know that there is any reason that the details should find their way into the papers. Inspector Bradstreet would, I am sure, make notes upon anything which you might tell us and submit it to the proper authorities. The case would then never go into court at all." "God bless you!" cried the prisoner passionately. "I would have endured imprisonment, ay, even execution, rather than have left my miserable secret as a family blot to my children. "You are the first who have ever heard my story. My father was a schoolmaster in Chesterfield, where I received an excellent education. I travelled in my youth, took to the stage, and finally became a reporter on an evening paper in London. One day my editor wished to have a series of articles upon begging in the metropolis, and I volunteered to supply them. There was the point from which all my adventures started. It was only by trying begging as an amateur that I could get the facts upon which to base my articles. When an actor I had, of course, learned all the secrets of making up, and had been famous in the green-room for my skill. I took advantage now of my attainments. I painted my face, and to make myself as pitiable as possible I made a good scar and fixed one side of my lip in a twist by the aid of a small slip of flesh-coloured plaster. Then with a red head of hair, and an appropriate dress, I took my station in the business part of the city, ostensibly as a match-seller but really as a beggar. For seven hours I plied my trade, and when I returned home in the evening I found to my surprise that I had received no less than 26s. 4d. "I wrote my articles and thought little more of the matter until, some time later, I backed a bill for a friend and had a writ served upon me for $25. I was at my wit's end where to get the money, but a sudden idea came to me. I begged a fortnight's grace from the creditor, asked for a holiday from my employers, and spent the time in begging in the City under my disguise. In ten days I had the money and had paid the debt. "Well, you can imagine how hard it was to settle down to arduous work at $2 a week when I knew that I could earn as much in a day by smearing my face with a little paint, laying my cap on the ground, and sitting still. It was a long fight between my pride and the money, but the dollars won at last, and I threw up reporting and sat day after day in the corner which I had first chosen, inspiring pity by my ghastly face and filling my pockets with coppers. Only one man knew my secret. He was the keeper of a low den in which I used to lodge in Swandam Lane, where I could every morning emerge as a squalid beggar and in the evenings transform myself into a well-dressed man about town. This fellow, a Lascar, was well paid by me for his rooms, so that I knew that my secret was safe in his possession. "Well, very soon I found that I was saving considerable sums of money. I do not mean that any beggar in the streets of London could earn $700 a year--which is less than my average takings--but I had exceptional advantages in my power of making up, and also in a facility of repartee, which improved by practice and made me quite a recognised character in the City. All day a stream of pennies, varied by silver, poured in upon me, and it was a very bad day in which I failed to take $2. "As I grew richer I grew more ambitious, took a house in the country, and eventually married, without anyone having a suspicion as to my real occupation. My dear wife knew that I had business in the City. She little knew what. "Last Monday I had finished for the day and was dressing in my room above the opium den when I looked out of my window and saw, to my horror and astonishment, that my wife was standing in the street, with her eyes fixed full upon me. I gave a cry of surprise, threw up my arms to cover my face, and, rushing to my confidant, the Lascar, entreated him to prevent anyone from coming up to me. I heard her voice downstairs, but I knew that she could not ascend. Swiftly I threw off my clothes, pulled on those of a beggar, and put on my pigments and wig. Even a wife's eyes could not pierce so complete a disguise. But then it occurred to me that there might be a search in the room, and that the clothes might betray me. I threw open the window, reopening by my violence a small cut which I had inflicted upon myself in the bedroom that morning. Then I seized my coat, which was weighted by the coppers which I had just transferred to it from the leather bag in which I carried my takings. I hurled it out of the window, and it disappeared into the Thames. The other clothes would have followed, but at that moment there was a rush of constables up the stair, and a few minutes after I found, rather, I confess, to my relief, that instead of being identified as Mr. Neville St. Clair, I was arrested as his murderer. "I do not know that there is anything else for me to explain. I was determined to preserve my disguise as long as possible, and hence my preference for a dirty face. Knowing that my wife would be terribly anxious, I slipped off my ring and confided it to the Lascar at a moment when no constable was watching me, together with a hurried scrawl, telling her that she had no cause to fear." "That note only reached her yesterday," said Holmes. "Good God! What a week she must have spent!" "The police have watched this Lascar," said Inspector Bradstreet, "and I can quite understand that he might find it difficult to post a letter unobserved. Probably he handed it to some sailor customer of his, who forgot all about it for some days." "That was it," said Holmes, nodding approvingly; "I have no doubt of it. But have you never been prosecuted for begging?" "Many times; but what was a fine to me?" "It must stop here, however," said Bradstreet. "If the police are to hush this thing up, there must be no more of Hugh Boone." "I have sworn it by the most solemn oaths which a man can take." "In that case I think that it is probable that no further steps may be taken. But if you are found again, then all must come out. I am sure, Mr. Holmes, that we are very much indebted to you for having cleared the matter up. I wish I knew how you reach your results." "I reached this one," said my friend, "by sitting upon five pillows and consuming an ounce of shag. I think, Watson, that if we drive to Baker Street we shall just be in time for breakfast." VII. THE ADVENTURE OF THE BLUE CARBUNCLE I had called upon my friend Sherlock Holmes upon the second morning after Christmas, with the intention of wishing him the compliments of the season. He was lounging upon the sofa in a purple dressing-gown, a pipe-rack within his reach upon the right, and a pile of crumpled morning papers, evidently newly studied, near at hand. Beside the couch was a wooden chair, and on the angle of the back hung a very seedy and disreputable hard-felt hat, much the worse for wear, and cracked in several places. A lens and a forceps lying upon the seat of the chair suggested that the hat had been suspended in this manner for the purpose of examination. "You are engaged," said I; "perhaps I interrupt you." "Not at all. I am glad to have a friend with whom I can discuss my results. The matter is a perfectly trivial one"--he jerked his thumb in the direction of the old hat--"but there are points in connection with it which are not entirely devoid of interest and even of instruction." I seated myself in his armchair and warmed my hands before his crackling fire, for a sharp frost had set in, and the windows were thick with the ice crystals. "I suppose," I remarked, "that, homely as it looks, this thing has some deadly story linked on to it--that it is the clue which will guide you in the solution of some mystery and the punishment of some crime." "No, no. No crime," said Sherlock Holmes, laughing. "Only one of those whimsical little incidents which will happen when you have four million human beings all jostling each other within the space of a few square miles. Amid the action and reaction of so dense a swarm of humanity, every possible combination of events may be expected to take place, and many a little problem will be presented which may be striking and bizarre without being criminal. We have already had experience of such." "So much so," I remarked, "that of the last six cases which I have added to my notes, three have been entirely free of any legal crime." "Precisely. You allude to my attempt to recover the Irene Adler papers, to the singular case of Miss Mary Sutherland, and to the adventure of the man with the twisted lip. Well, I have no doubt that this small matter will fall into the same innocent category. You know Peterson, the commissionaire?" "Yes." "It is to him that this trophy belongs." "It is his hat." "No, no, he found it. Its owner is unknown. I beg that you will look upon it not as a battered billycock but as an intellectual problem. And, first, as to how it came here. It arrived upon Christmas morning, in company with a good fat goose, which is, I have no doubt, roasting at this moment in front of Peterson's fire. The facts are these: about four o'clock on Christmas morning, Peterson, who, as you know, is a very honest fellow, was returning from some small jollification and was making his way homeward down Tottenham Court Road. In front of him he saw, in the gaslight, a tallish man, walking with a slight stagger, and carrying a white goose slung over his shoulder. As he reached the corner of Goodge Street, a row broke out between this stranger and a little knot of roughs. One of the latter knocked off the man's hat, on which he raised his stick to defend himself and, swinging it over his head, smashed the shop window behind him. Peterson had rushed forward to protect the stranger from his assailants; but the man, shocked at having broken the window, and seeing an official-looking person in uniform rushing towards him, dropped his goose, took to his heels, and vanished amid the labyrinth of small streets which lie at the back of Tottenham Court Road. The roughs had also fled at the appearance of Peterson, so that he was left in possession of the field of battle, and also of the spoils of victory in the shape of this battered hat and a most unimpeachable Christmas goose." "Which surely he restored to their owner?" "My dear fellow, there lies the problem. It is true that 'For Mrs. Henry Baker' was printed upon a small card which was tied to the bird's left leg, and it is also true that the initials 'H. B.' are legible upon the lining of this hat, but as there are some thousands of Bakers, and some hundreds of Henry Bakers in this city of ours, it is not easy to restore lost property to any one of them." "What, then, did Peterson do?" "He brought round both hat and goose to me on Christmas morning, knowing that even the smallest problems are of interest to me. The goose we retained until this morning, when there were signs that, in spite of the slight frost, it would be well that it should be eaten without unnecessary delay. Its finder has carried it off, therefore, to fulfil the ultimate destiny of a goose, while I continue to retain the hat of the unknown gentleman who lost his Christmas dinner." "Did he not advertise?" "No." "Then, what clue could you have as to his identity?" "Only as much as we can deduce." "From his hat?" "Precisely." "But you are joking. What can you gather from this old battered felt?" "Here is my lens. You know my methods. What can you gather yourself as to the individuality of the man who has worn this article?" I took the tattered object in my hands and turned it over rather ruefully. It was a very ordinary black hat of the usual round shape, hard and much the worse for wear. The lining had been of red silk, but was a good deal discoloured. There was no maker's name; but, as Holmes had remarked, the initials "H. B." were scrawled upon one side. It was pierced in the brim for a hat-securer, but the elastic was missing. For the rest, it was cracked, exceedingly dusty, and spotted in several places, although there seemed to have been some attempt to hide the discoloured patches by smearing them with ink. "I can see nothing," said I, handing it back to my friend. "On the contrary, Watson, you can see everything. You fail, however, to reason from what you see. You are too timid in drawing your inferences." "Then, pray tell me what it is that you can infer from this hat?" He picked it up and gazed at it in the peculiar introspective fashion which was characteristic of him. "It is perhaps less suggestive than it might have been," he remarked, "and yet there are a few inferences which are very distinct, and a few others which represent at least a strong balance of probability. That the man was highly intellectual is of course obvious upon the face of it, and also that he was fairly well-to-do within the last three years, although he has now fallen upon evil days. He had foresight, but has less now than formerly, pointing to a moral retrogression, which, when taken with the decline of his fortunes, seems to indicate some evil influence, probably drink, at work upon him. This may account also for the obvious fact that his wife has ceased to love him." "My dear Holmes!" "He has, however, retained some degree of self-respect," he continued, disregarding my remonstrance. "He is a man who leads a sedentary life, goes out little, is out of training entirely, is middle-aged, has grizzled hair which he has had cut within the last few days, and which he anoints with lime-cream. These are the more patent facts which are to be deduced from his hat. Also, by the way, that it is extremely improbable that he has gas laid on in his house." "You are certainly joking, Holmes." "Not in the least. Is it possible that even now, when I give you these results, you are unable to see how they are attained?" "I have no doubt that I am very stupid, but I must confess that I am unable to follow you. For example, how did you deduce that this man was intellectual?" For answer Holmes clapped the hat upon his head. It came right over the forehead and settled upon the bridge of his nose. "It is a question of cubic capacity," said he; "a man with so large a brain must have something in it." "The decline of his fortunes, then?" "This hat is three years old. These flat brims curled at the edge came in then. It is a hat of the very best quality. Look at the band of ribbed silk and the excellent lining. If this man could afford to buy so expensive a hat three years ago, and has had no hat since, then he has assuredly gone down in the world." "Well, that is clear enough, certainly. But how about the foresight and the moral retrogression?" Sherlock Holmes laughed. "Here is the foresight," said he putting his finger upon the little disc and loop of the hat-securer. "They are never sold upon hats. If this man ordered one, it is a sign of a certain amount of foresight, since he went out of his way to take this precaution against the wind. But since we see that he has broken the elastic and has not troubled to replace it, it is obvious that he has less foresight now than formerly, which is a distinct proof of a weakening nature. On the other hand, he has endeavoured to conceal some of these stains upon the felt by daubing them with ink, which is a sign that he has not entirely lost his self-respect." "Your reasoning is certainly plausible." "The further points, that he is middle-aged, that his hair is grizzled, that it has been recently cut, and that he uses lime-cream, are all to be gathered from a close examination of the lower part of the lining. The lens discloses a large number of hair-ends, clean cut by the scissors of the barber. They all appear to be adhesive, and there is a distinct odour of lime-cream. This dust, you will observe, is not the gritty, grey dust of the street but the fluffy brown dust of the house, showing that it has been hung up indoors most of the time, while the marks of moisture upon the inside are proof positive that the wearer perspired very freely, and could therefore, hardly be in the best of training." "But his wife--you said that she had ceased to love him." "This hat has not been brushed for weeks. When I see you, my dear Watson, with a week's accumulation of dust upon your hat, and when your wife allows you to go out in such a state, I shall fear that you also have been unfortunate enough to lose your wife's affection." "But he might be a bachelor." "Nay, he was bringing home the goose as a peace-offering to his wife. Remember the card upon the bird's leg." "You have an answer to everything. But how on earth do you deduce that the gas is not laid on in his house?" "One tallow stain, or even two, might come by chance; but when I see no less than five, I think that there can be little doubt that the individual must be brought into frequent contact with burning tallow--walks upstairs at night probably with his hat in one hand and a guttering candle in the other. Anyhow, he never got tallow-stains from a gas-jet. Are you satisfied?" "Well, it is very ingenious," said I, laughing; "but since, as you said just now, there has been no crime committed, and no harm done save the loss of a goose, all this seems to be rather a waste of energy." Sherlock Holmes had opened his mouth to reply, when the door flew open, and Peterson, the commissionaire, rushed into the apartment with flushed cheeks and the face of a man who is dazed with astonishment. "The goose, Mr. Holmes! The goose, sir!" he gasped. "Eh? What of it, then? Has it returned to life and flapped off through the kitchen window?" Holmes twisted himself round upon the sofa to get a fairer view of the man's excited face. "See here, sir! See what my wife found in its crop!" He held out his hand and displayed upon the centre of the palm a brilliantly scintillating blue stone, rather smaller than a bean in size, but of such purity and radiance that it twinkled like an electric point in the dark hollow of his hand. Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said he, "this is treasure trove indeed. I suppose you know what you have got?" "A diamond, sir? A precious stone. It cuts into glass as though it were putty." "It's more than a precious stone. It is the precious stone." "Not the Countess of Morcar's blue carbuncle!" I ejaculated. "Precisely so. I ought to know its size and shape, seeing that I have read the advertisement about it in The Times every day lately. It is absolutely unique, and its value can only be conjectured, but the reward offered of $1000 is certainly not within a twentieth part of the market price." "A thousand pounds! Great Lord of mercy!" The commissionaire plumped down into a chair and stared from one to the other of us. "That is the reward, and I have reason to know that there are sentimental considerations in the background which would induce the Countess to part with half her fortune if she could but recover the gem." "It was lost, if I remember aright, at the Hotel Cosmopolitan," I remarked. "Precisely so, on December 22nd, just five days ago. John Horner, a plumber, was accused of having abstracted it from the lady's jewel-case. The evidence against him was so strong that the case has been referred to the Assizes. I have some account of the matter here, I believe." He rummaged amid his newspapers, glancing over the dates, until at last he smoothed one out, doubled it over, and read the following paragraph: "Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was brought up upon the charge of having upon the 22nd inst., abstracted from the jewel-case of the Countess of Morcar the valuable gem known as the blue carbuncle. James Ryder, upper-attendant at the hotel, gave his evidence to the effect that he had shown Horner up to the dressing-room of the Countess of Morcar upon the day of the robbery in order that he might solder the second bar of the grate, which was loose. He had remained with Horner some little time, but had finally been called away. On returning, he found that Horner had disappeared, that the bureau had been forced open, and that the small morocco casket in which, as it afterwards transpired, the Countess was accustomed to keep her jewel, was lying empty upon the dressing-table. Ryder instantly gave the alarm, and Horner was arrested the same evening; but the stone could not be found either upon his person or in his rooms. Catherine Cusack, maid to the Countess, deposed to having heard Ryder's cry of dismay on discovering the robbery, and to having rushed into the room, where she found matters as described by the last witness. Inspector Bradstreet, B division, gave evidence as to the arrest of Horner, who struggled frantically, and protested his innocence in the strongest terms. Evidence of a previous conviction for robbery having been given against the prisoner, the magistrate refused to deal summarily with the offence, but referred it to the Assizes. Horner, who had shown signs of intense emotion during the proceedings, fainted away at the conclusion and was carried out of court." "Hum! So much for the police-court," said Holmes thoughtfully, tossing aside the paper. "The question for us now to solve is the sequence of events leading from a rifled jewel-case at one end to the crop of a goose in Tottenham Court Road at the other. You see, Watson, our little deductions have suddenly assumed a much more important and less innocent aspect. Here is the stone; the stone came from the goose, and the goose came from Mr. Henry Baker, the gentleman with the bad hat and all the other characteristics with which I have bored you. So now we must set ourselves very seriously to finding this gentleman and ascertaining what part he has played in this little mystery. To do this, we must try the simplest means first, and these lie undoubtedly in an advertisement in all the evening papers. If this fail, I shall have recourse to other methods." "What will you say?" "Give me a pencil and that slip of paper. Now, then: 'Found at the corner of Goodge Street, a goose and a black felt hat. Mr. Henry Baker can have the same by applying at 6:30 this evening at 221B, Baker Street.' That is clear and concise." "Very. But will he see it?" "Well, he is sure to keep an eye on the papers, since, to a poor man, the loss was a heavy one. He was clearly so scared by his mischance in breaking the window and by the approach of Peterson that he thought of nothing but flight, but since then he must have bitterly regretted the impulse which caused him to drop his bird. Then, again, the introduction of his name will cause him to see it, for everyone who knows him will direct his attention to it. Here you are, Peterson, run down to the advertising agency and have this put in the evening papers." "In which, sir?" "Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, Standard, Echo, and any others that occur to you." "Very well, sir. And this stone?" "Ah, yes, I shall keep the stone. Thank you. And, I say, Peterson, just buy a goose on your way back and leave it here with me, for we must have one to give to this gentleman in place of the one which your family is now devouring." When the commissionaire had gone, Holmes took up the stone and held it against the light. "It's a bonny thing," said he. "Just see how it glints and sparkles. Of course it is a nucleus and focus of crime. Every good stone is. They are the devil's pet baits. In the larger and older jewels every facet may stand for a bloody deed. This stone is not yet twenty years old. It was found in the banks of the Amoy River in southern China and is remarkable in having every characteristic of the carbuncle, save that it is blue in shade instead of ruby red. In spite of its youth, it has already a sinister history. There have been two murders, a vitriol-throwing, a suicide, and several robberies brought about for the sake of this forty-grain weight of crystallised charcoal. Who would think that so pretty a toy would be a purveyor to the gallows and the prison? I'll lock it up in my strong box now and drop a line to the Countess to say that we have it." "Do you think that this man Horner is innocent?" "I cannot tell." "Well, then, do you imagine that this other one, Henry Baker, had anything to do with the matter?" "It is, I think, much more likely that Henry Baker is an absolutely innocent man, who had no idea that the bird which he was carrying was of considerably more value than if it were made of solid gold. That, however, I shall determine by a very simple test if we have an answer to our advertisement." "And you can do nothing until then?" "Nothing." "In that case I shall continue my professional round. But I shall come back in the evening at the hour you have mentioned, for I should like to see the solution of so tangled a business." "Very glad to see you. I dine at seven. There is a woodcock, I believe. By the way, in view of recent occurrences, perhaps I ought to ask Mrs. Hudson to examine its crop." I had been delayed at a case, and it was a little after half-past six when I found myself in Baker Street once more. As I approached the house I saw a tall man in a Scotch bonnet with a coat which was buttoned up to his chin waiting outside in the bright semicircle which was thrown from the fanlight. Just as I arrived the door was opened, and we were shown up together to Holmes' room. "Mr. Henry Baker, I believe," said he, rising from his armchair and greeting his visitor with the easy air of geniality which he could so readily assume. "Pray take this chair by the fire, Mr. Baker. It is a cold night, and I observe that your circulation is more adapted for summer than for winter. Ah, Watson, you have just come at the right time. Is that your hat, Mr. Baker?" "Yes, sir, that is undoubtedly my hat." He was a large man with rounded shoulders, a massive head, and a broad, intelligent face, sloping down to a pointed beard of grizzled brown. A touch of red in nose and cheeks, with a slight tremor of his extended hand, recalled Holmes' surmise as to his habits. His rusty black frock-coat was buttoned right up in front, with the collar turned up, and his lank wrists protruded from his sleeves without a sign of cuff or shirt. He spoke in a slow staccato fashion, choosing his words with care, and gave the impression generally of a man of learning and letters who had had ill-usage at the hands of fortune. "We have retained these things for some days," said Holmes, "because we expected to see an advertisement from you giving your address. I am at a loss to know now why you did not advertise." Our visitor gave a rather shamefaced laugh. "Shillings have not been so plentiful with me as they once were," he remarked. "I had no doubt that the gang of roughs who assaulted me had carried off both my hat and the bird. I did not care to spend more money in a hopeless attempt at recovering them." "Very naturally. By the way, about the bird, we were compelled to eat it." "To eat it!" Our visitor half rose from his chair in his excitement. "Yes, it would have been of no use to anyone had we not done so. But I presume that this other goose upon the sideboard, which is about the same weight and perfectly fresh, will answer your purpose equally well?" "Oh, certainly, certainly," answered Mr. Baker with a sigh of relief. "Of course, we still have the feathers, legs, crop, and so on of your own bird, so if you wish--" The man burst into a hearty laugh. "They might be useful to me as relics of my adventure," said he, "but beyond that I can hardly see what use the disjecta membra of my late acquaintance are going to be to me. No, sir, I think that, with your permission, I will confine my attentions to the excellent bird which I perceive upon the sideboard." Sherlock Holmes glanced sharply across at me with a slight shrug of his shoulders. "There is your hat, then, and there your bird," said he. "By the way, would it bore you to tell me where you got the other one from? I am somewhat of a fowl fancier, and I have seldom seen a better grown goose." "Certainly, sir," said Baker, who had risen and tucked his newly gained property under his arm. "There are a few of us who frequent the Alpha Inn, near the Museum--we are to be found in the Museum itself during the day, you understand. This year our good host, Windigate by name, instituted a goose club, by which, on consideration of some few pence every week, we were each to receive a bird at Christmas. My pence were duly paid, and the rest is familiar to you. I am much indebted to you, sir, for a Scotch bonnet is fitted neither to my years nor my gravity." With a comical pomposity of manner he bowed solemnly to both of us and strode off upon his way. "So much for Mr. Henry Baker," said Holmes when he had closed the door behind him. "It is quite certain that he knows nothing whatever about the matter. Are you hungry, Watson?" "Not particularly." "Then I suggest that we turn our dinner into a supper and follow up this clue while it is still hot." "By all means." It was a bitter night, so we drew on our ulsters and wrapped cravats about our throats. Outside, the stars were shining coldly in a cloudless sky, and the breath of the passers-by blew out into smoke like so many pistol shots. Our footfalls rang out crisply and loudly as we swung through the doctors' quarter, Wimpole Street, Harley Street, and so through Wigmore Street into Oxford Street. In a quarter of an hour we were in Bloomsbury at the Alpha Inn, which is a small public-house at the corner of one of the streets which runs down into Holborn. Holmes pushed open the door of the private bar and ordered two glasses of beer from the ruddy-faced, white-aproned landlord. "Your beer should be excellent if it is as good as your geese," said he. "My geese!" The man seemed surprised. "Yes. I was speaking only half an hour ago to Mr. Henry Baker, who was a member of your goose club." "Ah! yes, I see. But you see, sir, them's not our geese." "Indeed! Whose, then?" "Well, I got the two dozen from a salesman in Covent Garden." "Indeed? I know some of them. Which was it?" "Breckinridge is his name." "Ah! I don't know him. Well, here's your good health landlord, and prosperity to your house. Good-night." "Now for Mr. Breckinridge," he continued, buttoning up his coat as we came out into the frosty air. "Remember, Watson that though we have so homely a thing as a goose at one end of this chain, we have at the other a man who will certainly get seven years' penal servitude unless we can establish his innocence. It is possible that our inquiry may but confirm his guilt; but, in any case, we have a line of investigation which has been missed by the police, and which a singular chance has placed in our hands. Let us follow it out to the bitter end. Faces to the south, then, and quick march!" We passed across Holborn, down Endell Street, and so through a zigzag of slums to Covent Garden Market. One of the largest stalls bore the name of Breckinridge upon it, and the proprietor a horsey-looking man, with a sharp face and trim side-whiskers was helping a boy to put up the shutters. "Good-evening. It's a cold night," said Holmes. The salesman nodded and shot a questioning glance at my companion. "Sold out of geese, I see," continued Holmes, pointing at the bare slabs of marble. "Let you have five hundred to-morrow morning." "That's no good." "Well, there are some on the stall with the gas-flare." "Ah, but I was recommended to you." "Who by?" "The landlord of the Alpha." "Oh, yes; I sent him a couple of dozen." "Fine birds they were, too. Now where did you get them from?" To my surprise the question provoked a burst of anger from the salesman. "Now, then, mister," said he, with his head cocked and his arms akimbo, "what are you driving at? Let's have it straight, now." "It is straight enough. I should like to know who sold you the geese which you supplied to the Alpha." "Well then, I shan't tell you. So now!" "Oh, it is a matter of no importance; but I don't know why you should be so warm over such a trifle." "Warm! You'd be as warm, maybe, if you were as pestered as I am. When I pay good money for a good article there should be an end of the business; but it's 'Where are the geese?' and 'Who did you sell the geese to?' and 'What will you take for the geese?' One would think they were the only geese in the world, to hear the fuss that is made over them." "Well, I have no connection with any other people who have been making inquiries," said Holmes carelessly. "If you won't tell us the bet is off, that is all. But I'm always ready to back my opinion on a matter of fowls, and I have a fiver on it that the bird I ate is country bred." "Well, then, you've lost your fiver, for it's town bred," snapped the salesman. "It's nothing of the kind." "I say it is." "I don't believe it." "D'you think you know more about fowls than I, who have handled them ever since I was a nipper? I tell you, all those birds that went to the Alpha were town bred." "You'll never persuade me to believe that." "Will you bet, then?" "It's merely taking your money, for I know that I am right. But I'll have a sovereign on with you, just to teach you not to be obstinate." The salesman chuckled grimly. "Bring me the books, Bill," said he. The small boy brought round a small thin volume and a great greasy-backed one, laying them out together beneath the hanging lamp. "Now then, Mr. Cocksure," said the salesman, "I thought that I was out of geese, but before I finish you'll find that there is still one left in my shop. You see this little book?" "Well?" "That's the list of the folk from whom I buy. D'you see? Well, then, here on this page are the country folk, and the numbers after their names are where their accounts are in the big ledger. Now, then! You see this other page in red ink? Well, that is a list of my town suppliers. Now, look at that third name. Just read it out to me." "Mrs. Oakshott, 117, Brixton Road--249," read Holmes. "Quite so. Now turn that up in the ledger." Holmes turned to the page indicated. "Here you are, 'Mrs. Oakshott, 117, Brixton Road, egg and poultry supplier.' " "Now, then, what's the last entry?" " 'December 22nd. Twenty-four geese at 7s. 6d.' " "Quite so. There you are. And underneath?" " 'Sold to Mr. Windigate of the Alpha, at 12s.' " "What have you to say now?" Sherlock Holmes looked deeply chagrined. He drew a sovereign from his pocket and threw it down upon the slab, turning away with the air of a man whose disgust is too deep for words. A few yards off he stopped under a lamp-post and laughed in the hearty, noiseless fashion which was peculiar to him. "When you see a man with whiskers of that cut and the 'Pink 'un' protruding out of his pocket, you can always draw him by a bet," said he. "I daresay that if I had put $100 down in front of him, that man would not have given me such complete information as was drawn from him by the idea that he was doing me on a wager. Well, Watson, we are, I fancy, nearing the end of our quest, and the only point which remains to be determined is whether we should go on to this Mrs. Oakshott to-night, or whether we should reserve it for to-morrow. It is clear from what that surly fellow said that there are others besides ourselves who are anxious about the matter, and I should--" His remarks were suddenly cut short by a loud hubbub which broke out from the stall which we had just left. Turning round we saw a little rat-faced fellow standing in the centre of the circle of yellow light which was thrown by the swinging lamp, while Breckinridge, the salesman, framed in the door of his stall, was shaking his fists fiercely at the cringing figure. "I've had enough of you and your geese," he shouted. "I wish you were all at the devil together. If you come pestering me any more with your silly talk I'll set the dog at you. You bring Mrs. Oakshott here and I'll answer her, but what have you to do with it? Did I buy the geese off you?" "No; but one of them was mine all the same," whined the little man. "Well, then, ask Mrs. Oakshott for it." "She told me to ask you." "Well, you can ask the King of Proosia, for all I care. I've had enough of it. Get out of this!" He rushed fiercely forward, and the inquirer flitted away into the darkness. "Ha! this may save us a visit to Brixton Road," whispered Holmes. "Come with me, and we will see what is to be made of this fellow." Striding through the scattered knots of people who lounged round the flaring stalls, my companion speedily overtook the little man and touched him upon the shoulder. He sprang round, and I could see in the gas-light that every vestige of colour had been driven from his face. "Who are you, then? What do you want?" he asked in a quavering voice. "You will excuse me," said Holmes blandly, "but I could not help overhearing the questions which you put to the salesman just now. I think that I could be of assistance to you." "You? Who are you? How could you know anything of the matter?" "My name is Sherlock Holmes. It is my business to know what other people don't know." "But you can know nothing of this?" "Excuse me, I know everything of it. You are endeavouring to trace some geese which were sold by Mrs. Oakshott, of Brixton Road, to a salesman named Breckinridge, by him in turn to Mr. Windigate, of the Alpha, and by him to his club, of which Mr. Henry Baker is a member." "Oh, sir, you are the very man whom I have longed to meet," cried the little fellow with outstretched hands and quivering fingers. "I can hardly explain to you how interested I am in this matter." Sherlock Holmes hailed a four-wheeler which was passing. "In that case we had better discuss it in a cosy room rather than in this wind-swept market-place," said he. "But pray tell me, before we go farther, who it is that I have the pleasure of assisting." The man hesitated for an instant. "My name is John Robinson," he answered with a sidelong glance. "No, no; the real name," said Holmes sweetly. "It is always awkward doing business with an alias." A flush sprang to the white cheeks of the stranger. "Well then," said he, "my real name is James Ryder." "Precisely so. Head attendant at the Hotel Cosmopolitan. Pray step into the cab, and I shall soon be able to tell you everything which you would wish to know." The little man stood glancing from one to the other of us with half-frightened, half-hopeful eyes, as one who is not sure whether he is on the verge of a windfall or of a catastrophe. Then he stepped into the cab, and in half an hour we were back in the sitting-room at Baker Street. Nothing had been said during our drive, but the high, thin breathing of our new companion, and the claspings and unclaspings of his hands, spoke of the nervous tension within him. "Here we are!" said Holmes cheerily as we filed into the room. "The fire looks very seasonable in this weather. You look cold, Mr. Ryder. Pray take the basket-chair. I will just put on my slippers before we settle this little matter of yours. Now, then! You want to know what became of those geese?" "Yes, sir." "Or rather, I fancy, of that goose. It was one bird, I imagine in which you were interested--white, with a black bar across the tail." Ryder quivered with emotion. "Oh, sir," he cried, "can you tell me where it went to?" "It came here." "Here?" "Yes, and a most remarkable bird it proved. I don't wonder that you should take an interest in it. It laid an egg after it was dead--the bonniest, brightest little blue egg that ever was seen. I have it here in my museum." Our visitor staggered to his feet and clutched the mantelpiece with his right hand. Holmes unlocked his strong-box and held up the blue carbuncle, which shone out like a star, with a cold, brilliant, many-pointed radiance. Ryder stood glaring with a drawn face, uncertain whether to claim or to disown it. "The game's up, Ryder," said Holmes quietly. "Hold up, man, or you'll be into the fire! Give him an arm back into his chair, Watson. He's not got blood enough to go in for felony with impunity. Give him a dash of brandy. So! Now he looks a little more human. What a shrimp it is, to be sure!" For a moment he had staggered and nearly fallen, but the brandy brought a tinge of colour into his cheeks, and he sat staring with frightened eyes at his accuser. "I have almost every link in my hands, and all the proofs which I could possibly need, so there is little which you need tell me. Still, that little may as well be cleared up to make the case complete. You had heard, Ryder, of this blue stone of the Countess of Morcar's?" "It was Catherine Cusack who told me of it," said he in a crackling voice. "I see--her ladyship's waiting-maid. Well, the temptation of sudden wealth so easily acquired was too much for you, as it has been for better men before you; but you were not very scrupulous in the means you used. It seems to me, Ryder, that there is the making of a very pretty villain in you. You knew that this man Horner, the plumber, had been concerned in some such matter before, and that suspicion would rest the more readily upon him. What did you do, then? You made some small job in my lady's room--you and your confederate Cusack--and you managed that he should be the man sent for. Then, when he had left, you rifled the jewel-case, raised the alarm, and had this unfortunate man arrested. You then--" Ryder threw himself down suddenly upon the rug and clutched at my companion's knees. "For God's sake, have mercy!" he shrieked. "Think of my father! Of my mother! It would break their hearts. I never went wrong before! I never will again. I swear it. I'll swear it on a Bible. Oh, don't bring it into court! For Christ's sake, don't!" "Get back into your chair!" said Holmes sternly. "It is very well to cringe and crawl now, but you thought little enough of this poor Horner in the dock for a crime of which he knew nothing." "I will fly, Mr. Holmes. I will leave the country, sir. Then the charge against him will break down." "Hum! We will talk about that. And now let us hear a true account of the next act. How came the stone into the goose, and how came the goose into the open market? Tell us the truth, for there lies your only hope of safety." Ryder passed his tongue over his parched lips. "I will tell you it just as it happened, sir," said he. "When Horner had been arrested, it seemed to me that it would be best for me to get away with the stone at once, for I did not know at what moment the police might not take it into their heads to search me and my room. There was no place about the hotel where it would be safe. I went out, as if on some commission, and I made for my sister's house. She had married a man named Oakshott, and lived in Brixton Road, where she fattened fowls for the market. All the way there every man I met seemed to me to be a policeman or a detective; and, for all that it was a cold night, the sweat was pouring down my face before I came to the Brixton Road. My sister asked me what was the matter, and why I was so pale; but I told her that I had been upset by the jewel robbery at the hotel. Then I went into the back yard and smoked a pipe and wondered what it would be best to do. "I had a friend once called Maudsley, who went to the bad, and has just been serving his time in Pentonville. One day he had met me, and fell into talk about the ways of thieves, and how they could get rid of what they stole. I knew that he would be true to me, for I knew one or two things about him; so I made up my mind to go right on to Kilburn, where he lived, and take him into my confidence. He would show me how to turn the stone into money. But how to get to him in safety? I thought of the agonies I had gone through in coming from the hotel. I might at any moment be seized and searched, and there would be the stone in my waistcoat pocket. I was leaning against the wall at the time and looking at the geese which were waddling about round my feet, and suddenly an idea came into my head which showed me how I could beat the best detective that ever lived. "My sister had told me some weeks before that I might have the pick of her geese for a Christmas present, and I knew that she was always as good as her word. I would take my goose now, and in it I would carry my stone to Kilburn. There was a little shed in the yard, and behind this I drove one of the birds--a fine big one, white, with a barred tail. I caught it, and prying its bill open, I thrust the stone down its throat as far as my finger could reach. The bird gave a gulp, and I felt the stone pass along its gullet and down into its crop. But the creature flapped and struggled, and out came my sister to know what was the matter. As I turned to speak to her the brute broke loose and fluttered off among the others. " 'Whatever were you doing with that bird, Jem?' says she. " 'Well,' said I, 'you said you'd give me one for Christmas, and I was feeling which was the fattest.' " 'Oh,' says she, 'we've set yours aside for you--Jem's bird, we call it. It's the big white one over yonder. There's twenty-six of them, which makes one for you, and one for us, and two dozen for the market.' " 'Thank you, Maggie,' says I; 'but if it is all the same to you, I'd rather have that one I was handling just now.' " 'The other is a good three pound heavier,' said she, 'and we fattened it expressly for you.' " 'Never mind. I'll have the other, and I'll take it now,' said I. " 'Oh, just as you like,' said she, a little huffed. 'Which is it you want, then?' " 'That white one with the barred tail, right in the middle of the flock.' " 'Oh, very well. Kill it and take it with you.' "Well, I did what she said, Mr. Holmes, and I carried the bird all the way to Kilburn. I told my pal what I had done, for he was a man that it was easy to tell a thing like that to. He laughed until he choked, and we got a knife and opened the goose. My heart turned to water, for there was no sign of the stone, and I knew that some terrible mistake had occurred. I left the bird, rushed back to my sister's, and hurried into the back yard. There was not a bird to be seen there. " 'Where are they all, Maggie?' I cried. " 'Gone to the dealer's, Jem.' " 'Which dealer's?' " 'Breckinridge, of Covent Garden.' " 'But was there another with a barred tail?' I asked, 'the same as the one I chose?' " 'Yes, Jem; there were two barred-tailed ones, and I could never tell them apart.' "Well, then, of course I saw it all, and I ran off as hard as my feet would carry me to this man Breckinridge; but he had sold the lot at once, and not one word would he tell me as to where they had gone. You heard him yourselves to-night. Well, he has always answered me like that. My sister thinks that I am going mad. Sometimes I think that I am myself. And now--and now I am myself a branded thief, without ever having touched the wealth for which I sold my character. God help me! God help me!" He burst into convulsive sobbing, with his face buried in his hands. There was a long silence, broken only by his heavy breathing and by the measured tapping of Sherlock Holmes' finger-tips upon the edge of the table. Then my friend rose and threw open the door. "Get out!" said he. "What, sir! Oh, Heaven bless you!" "No more words. Get out!" And no more words were needed. There was a rush, a clatter upon the stairs, the bang of a door, and the crisp rattle of running footfalls from the street. "After all, Watson," said Holmes, reaching up his hand for his clay pipe, "I am not retained by the police to supply their deficiencies. If Horner were in danger it would be another thing; but this fellow will not appear against him, and the case must collapse. I suppose that I am commuting a felony, but it is just possible that I am saving a soul. This fellow will not go wrong again; he is too terribly frightened. Send him to gaol now, and you make him a gaol-bird for life. Besides, it is the season of forgiveness. Chance has put in our way a most singular and whimsical problem, and its solution is its own reward. If you will have the goodness to touch the bell, Doctor, we will begin another investigation, in which, also a bird will be the chief feature." VIII. THE ADVENTURE OF THE SPECKLED BAND On glancing over my notes of the seventy odd cases in which I have during the last eight years studied the methods of my friend Sherlock Holmes, I find many tragic, some comic, a large number merely strange, but none commonplace; for, working as he did rather for the love of his art than for the acquirement of wealth, he refused to associate himself with any investigation which did not tend towards the unusual, and even the fantastic. Of all these varied cases, however, I cannot recall any which presented more singular features than that which was associated with the well-known Surrey family of the Roylotts of Stoke Moran. The events in question occurred in the early days of my association with Holmes, when we were sharing rooms as bachelors in Baker Street. It is possible that I might have placed them upon record before, but a promise of secrecy was made at the time, from which I have only been freed during the last month by the untimely death of the lady to whom the pledge was given. It is perhaps as well that the facts should now come to light, for I have reasons to know that there are widespread rumours as to the death of Dr. Grimesby Roylott which tend to make the matter even more terrible than the truth. It was early in April in the year '83 that I woke one morning to find Sherlock Holmes standing, fully dressed, by the side of my bed. He was a late riser, as a rule, and as the clock on the mantelpiece showed me that it was only a quarter-past seven, I blinked up at him in some surprise, and perhaps just a little resentment, for I was myself regular in my habits. "Very sorry to knock you up, Watson," said he, "but it's the common lot this morning. Mrs. Hudson has been knocked up, she retorted upon me, and I on you." "What is it, then--a fire?" "No; a client. It seems that a young lady has arrived in a considerable state of excitement, who insists upon seeing me. She is waiting now in the sitting-room. Now, when young ladies wander about the metropolis at this hour of the morning, and knock sleepy people up out of their beds, I presume that it is something very pressing which they have to communicate. Should it prove to be an interesting case, you would, I am sure, wish to follow it from the outset. I thought, at any rate, that I should call you and give you the chance." "My dear fellow, I would not miss it for anything." I had no keener pleasure than in following Holmes in his professional investigations, and in admiring the rapid deductions, as swift as intuitions, and yet always founded on a logical basis with which he unravelled the problems which were submitted to him. I rapidly threw on my clothes and was ready in a few minutes to accompany my friend down to the sitting-room. A lady dressed in black and heavily veiled, who had been sitting in the window, rose as we entered. "Good-morning, madam," said Holmes cheerily. "My name is Sherlock Holmes. This is my intimate friend and associate, Dr. Watson, before whom you can speak as freely as before myself. Ha! I am glad to see that Mrs. Hudson has had the good sense to light the fire. Pray draw up to it, and I shall order you a cup of hot coffee, for I observe that you are shivering." "It is not cold which makes me shiver," said the woman in a low voice, changing her seat as requested. "What, then?" "It is fear, Mr. Holmes. It is terror." She raised her veil as she spoke, and we could see that she was indeed in a pitiable state of agitation, her face all drawn and grey, with restless frightened eyes, like those of some hunted animal. Her features and figure were those of a woman of thirty, but her hair was shot with premature grey, and her expression was weary and haggard. Sherlock Holmes ran her over with one of his quick, all-comprehensive glances. "You must not fear," said he soothingly, bending forward and patting her forearm. "We shall soon set matters right, I have no doubt. You have come in by train this morning, I see." "You know me, then?" "No, but I observe the second half of a return ticket in the palm of your left glove. You must have started early, and yet you had a good drive in a dog-cart, along heavy roads, before you reached the station." The lady gave a violent start and stared in bewilderment at my companion. "There is no mystery, my dear madam," said he, smiling. "The left arm of your jacket is spattered with mud in no less than seven places. The marks are perfectly fresh. There is no vehicle save a dog-cart which throws up mud in that way, and then only when you sit on the left-hand side of the driver." "Whatever your reasons may be, you are perfectly correct," said she. "I started from home before six, reached Leatherhead at twenty past, and came in by the first train to Waterloo. Sir, I can stand this strain no longer; I shall go mad if it continues. I have no one to turn to--none, save only one, who cares for me, and he, poor fellow, can be of little aid. I have heard of you, Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you helped in the hour of her sore need. It was from her that I had your address. Oh, sir, do you not think that you could help me, too, and at least throw a little light through the dense darkness which surrounds me? At present it is out of my power to reward you for your services, but in a month or six weeks I shall be married, with the control of my own income, and then at least you shall not find me ungrateful." Holmes turned to his desk and, unlocking it, drew out a small case-book, which he consulted. "Farintosh," said he. "Ah yes, I recall the case; it was concerned with an opal tiara. I think it was before your time, Watson. I can only say, madam, that I shall be happy to devote the same care to your case as I did to that of your friend. As to reward, my profession is its own reward; but you are at liberty to defray whatever expenses I may be put to, at the time which suits you best. And now I beg that you will lay before us everything that may help us in forming an opinion upon the matter." "Alas!" replied our visitor, "the very horror of my situation lies in the fact that my fears are so vague, and my suspicions depend so entirely upon small points, which might seem trivial to another, that even he to whom of all others I have a right to look for help and advice looks upon all that I tell him about it as the fancies of a nervous woman. He does not say so, but I can read it from his soothing answers and averted eyes. But I have heard, Mr. Holmes, that you can see deeply into the manifold wickedness of the human heart. You may advise me how to walk amid the dangers which encompass me." "I am all attention, madam." "My name is Helen Stoner, and I am living with my stepfather, who is the last survivor of one of the oldest Saxon families in England, the Roylotts of Stoke Moran, on the western border of Surrey." Holmes nodded his head. "The name is familiar to me," said he. "The family was at one time among the richest in England, and the estates extended over the borders into Berkshire in the north, and Hampshire in the west. In the last century, however, four successive heirs were of a dissolute and wasteful disposition, and the family ruin was eventually completed by a gambler in the days of the Regency. Nothing was left save a few acres of ground, and the two-hundred-year-old house, which is itself crushed under a heavy mortgage. The last squire dragged out his existence there, living the horrible life of an aristocratic pauper; but his only son, my stepfather, seeing that he must adapt himself to the new conditions, obtained an advance from a relative, which enabled him to take a medical degree and went out to Calcutta, where, by his professional skill and his force of character, he established a large practice. In a fit of anger, however, caused by some robberies which had been perpetrated in the house, he beat his native butler to death and narrowly escaped a capital sentence. As it was, he suffered a long term of imprisonment and afterwards returned to England a morose and disappointed man. "When Dr. Roylott was in India he married my mother, Mrs. Stoner, the young widow of Major-General Stoner, of the Bengal Artillery. My sister Julia and I were twins, and we were only two years old at the time of my mother's re-marriage. She had a considerable sum of money--not less than $1000 a year--and this she bequeathed to Dr. Roylott entirely while we resided with him, with a provision that a certain annual sum should be allowed to each of us in the event of our marriage. Shortly after our return to England my mother died--she was killed eight years ago in a railway accident near Crewe. Dr. Roylott then abandoned his attempts to establish himself in practice in London and took us to live with him in the old ancestral house at Stoke Moran. The money which my mother had left was enough for all our wants, and there seemed to be no obstacle to our happiness. "But a terrible change came over our stepfather about this time. Instead of making friends and exchanging visits with our neighbours, who had at first been overjoyed to see a Roylott of Stoke Moran back in the old family seat, he shut himself up in his house and seldom came out save to indulge in ferocious quarrels with whoever might cross his path. Violence of temper approaching to mania has been hereditary in the men of the family, and in my stepfather's case it had, I believe, been intensified by his long residence in the tropics. A series of disgraceful brawls took place, two of which ended in the police-court, until at last he became the terror of the village, and the folks would fly at his approach, for he is a man of immense strength, and absolutely uncontrollable in his anger. "Last week he hurled the local blacksmith over a parapet into a stream, and it was only by paying over all the money which I could gather together that I was able to avert another public exposure. He had no friends at all save the wandering gipsies, and he would give these vagabonds leave to encamp upon the few acres of bramble-covered land which represent the family estate, and would accept in return the hospitality of their tents, wandering away with them sometimes for weeks on end. He has a passion also for Indian animals, which are sent over to him by a correspondent, and he has at this moment a cheetah and a baboon, which wander freely over his grounds and are feared by the villagers almost as much as their master. "You can imagine from what I say that my poor sister Julia and I had no great pleasure in our lives. No servant would stay with us, and for a long time we did all the work of the house. She was but thirty at the time of her death, and yet her hair had already begun to whiten, even as mine has." "Your sister is dead, then?" "She died just two years ago, and it is of her death that I wish to speak to you. You can understand that, living the life which I have described, we were little likely to see anyone of our own age and position. We had, however, an aunt, my mother's maiden sister, Miss Honoria Westphail, who lives near Harrow, and we were occasionally allowed to pay short visits at this lady's house. Julia went there at Christmas two years ago, and met there a half-pay major of marines, to whom she became engaged. My stepfather learned of the engagement when my sister returned and offered no objection to the marriage; but within a fortnight of the day which had been fixed for the wedding, the terrible event occurred which has deprived me of my only companion." Sherlock Holmes had been leaning back in his chair with his eyes closed and his head sunk in a cushion, but he half opened his lids now and glanced across at his visitor. "Pray be precise as to details," said he. "It is easy for me to be so, for every event of that dreadful time is seared into my memory. The manor-house is, as I have already said, very old, and only one wing is now inhabited. The bedrooms in this wing are on the ground floor, the sitting-rooms being in the central block of the buildings. Of these bedrooms the first is Dr. Roylott's, the second my sister's, and the third my own. There is no communication between them, but they all open out into the same corridor. Do I make myself plain?" "Perfectly so." "The windows of the three rooms open out upon the lawn. That fatal night Dr. Roylott had gone to his room early, though we knew that he had not retired to rest, for my sister was troubled by the smell of the strong Indian cigars which it was his custom to smoke. She left her room, therefore, and came into mine, where she sat for some time, chatting about her approaching wedding. At eleven o'clock she rose to leave me, but she paused at the door and looked back. " 'Tell me, Helen,' said she, 'have you ever heard anyone whistle in the dead of the night?' " 'Never,' said I. " 'I suppose that you could not possibly whistle, yourself, in your sleep?' " 'Certainly not. But why?' " 'Because during the last few nights I have always, about three in the morning, heard a low, clear whistle. I am a light sleeper, and it has awakened me. I cannot tell where it came from--perhaps from the next room, perhaps from the lawn. I thought that I would just ask you whether you had heard it.' " 'No, I have not. It must be those wretched gipsies in the plantation.' " 'Very likely. And yet if it were on the lawn, I wonder that you did not hear it also.' " 'Ah, but I sleep more heavily than you.' " 'Well, it is of no great consequence, at any rate.' She smiled back at me, closed my door, and a few moments later I heard her key turn in the lock." "Indeed," said Holmes. "Was it your custom always to lock yourselves in at night?" "Always." "And why?" "I think that I mentioned to you that the doctor kept a cheetah and a baboon. We had no feeling of security unless our doors were locked." "Quite so. Pray proceed with your statement." "I could not sleep that night. A vague feeling of impending misfortune impressed me. My sister and I, you will recollect, were twins, and you know how subtle are the links which bind two souls which are so closely allied. It was a wild night. The wind was howling outside, and the rain was beating and splashing against the windows. Suddenly, amid all the hubbub of the gale, there burst forth the wild scream of a terrified woman. I knew that it was my sister's voice. I sprang from my bed, wrapped a shawl round me, and rushed into the corridor. As I opened my door I seemed to hear a low whistle, such as my sister described, and a few moments later a clanging sound, as if a mass of metal had fallen. As I ran down the passage, my sister's door was unlocked, and revolved slowly upon its hinges. I stared at it horror-stricken, not knowing what was about to issue from it. By the light of the corridor-lamp I saw my sister appear at the opening, her face blanched with terror, her hands groping for help, her whole figure swaying to and fro like that of a drunkard. I ran to her and threw my arms round her, but at that moment her knees seemed to give way and she fell to the ground. She writhed as one who is in terrible pain, and her limbs were dreadfully convulsed. At first I thought that she had not recognised me, but as I bent over her she suddenly shrieked out in a voice which I shall never forget, 'Oh, my God! Helen! It was the band! The speckled band!' There was something else which she would fain have said, and she stabbed with her finger into the air in the direction of the doctor's room, but a fresh convulsion seized her and choked her words. I rushed out, calling loudly for my stepfather, and I met him hastening from his room in his dressing-gown. When he reached my sister's side she was unconscious, and though he poured brandy down her throat and sent for medical aid from the village, all efforts were in vain, for she slowly sank and died without having recovered her consciousness. Such was the dreadful end of my beloved sister." "One moment," said Holmes, "are you sure about this whistle and metallic sound? Could you swear to it?" "That was what the county coroner asked me at the inquiry. It is my strong impression that I heard it, and yet, among the crash of the gale and the creaking of an old house, I may possibly have been deceived." "Was your sister dressed?" "No, she was in her night-dress. In her right hand was found the charred stump of a match, and in her left a match-box." "Showing that she had struck a light and looked about her when the alarm took place. That is important. And what conclusions did the coroner come to?" "He investigated the case with great care, for Dr. Roylott's conduct had long been notorious in the county, but he was unable to find any satisfactory cause of death. My evidence showed that the door had been fastened upon the inner side, and the windows were blocked by old-fashioned shutters with broad iron bars, which were secured every night. The walls were carefully sounded, and were shown to be quite solid all round, and the flooring was also thoroughly examined, with the same result. The chimney is wide, but is barred up by four large staples. It is certain, therefore, that my sister was quite alone when she met her end. Besides, there were no marks of any violence upon her." "How about poison?" "The doctors examined her for it, but without success." "What do you think that this unfortunate lady died of, then?" "It is my belief that she died of pure fear and nervous shock, though what it was that frightened her I cannot imagine." "Were there gipsies in the plantation at the time?" "Yes, there are nearly always some there." "Ah, and what did you gather from this allusion to a band--a speckled band?" "Sometimes I have thought that it was merely the wild talk of delirium, sometimes that it may have referred to some band of people, perhaps to these very gipsies in the plantation. I do not know whether the spotted handkerchiefs which so many of them wear over their heads might have suggested the strange adjective which she used." Holmes shook his head like a man who is far from being satisfied. "These are very deep waters," said he; "pray go on with your narrative." "Two years have passed since then, and my life has been until lately lonelier than ever. A month ago, however, a dear friend, whom I have known for many years, has done me the honour to ask my hand in marriage. His name is Armitage--Percy Armitage--the second son of Mr. Armitage, of Crane Water, near Reading. My stepfather has offered no opposition to the match, and we are to be married in the course of the spring. Two days ago some repairs were started in the west wing of the building, and my bedroom wall has been pierced, so that I have had to move into the chamber in which my sister died, and to sleep in the very bed in which she slept. Imagine, then, my thrill of terror when last night, as I lay awake, thinking over her terrible fate, I suddenly heard in the silence of the night the low whistle which had been the herald of her own death. I sprang up and lit the lamp, but nothing was to be seen in the room. I was too shaken to go to bed again, however, so I dressed, and as soon as it was daylight I slipped down, got a dog-cart at the Crown Inn, which is opposite, and drove to Leatherhead, from whence I have come on this morning with the one object of seeing you and asking your advice." "You have done wisely," said my friend. "But have you told me all?" "Yes, all." "Miss Roylott, you have not. You are screening your stepfather." "Why, what do you mean?" For answer Holmes pushed back the frill of black lace which fringed the hand that lay upon our visitor's knee. Five little livid spots, the marks of four fingers and a thumb, were printed upon the white wrist. "You have been cruelly used," said Holmes. The lady coloured deeply and covered over her injured wrist. "He is a hard man," she said, "and perhaps he hardly knows his own strength." There was a long silence, during which Holmes leaned his chin upon his hands and stared into the crackling fire. "This is a very deep business," he said at last. "There are a thousand details which I should desire to know before I decide upon our course of action. Yet we have not a moment to lose. If we were to come to Stoke Moran to-day, would it be possible for us to see over these rooms without the knowledge of your stepfather?" "As it happens, he spoke of coming into town to-day upon some most important business. It is probable that he will be away all day, and that there would be nothing to disturb you. We have a housekeeper now, but she is old and foolish, and I could easily get her out of the way." "Excellent. You are not averse to this trip, Watson?" "By no means." "Then we shall both come. What are you going to do yourself?" "I have one or two things which I would wish to do now that I am in town. But I shall return by the twelve o'clock train, so as to be there in time for your coming." "And you may expect us early in the afternoon. I have myself some small business matters to attend to. Will you not wait and breakfast?" "No, I must go. My heart is lightened already since I have confided my trouble to you. I shall look forward to seeing you again this afternoon." She dropped her thick black veil over her face and glided from the room. "And what do you think of it all, Watson?" asked Sherlock Holmes, leaning back in his chair. "It seems to me to be a most dark and sinister business." "Dark enough and sinister enough." "Yet if the lady is correct in saying that the flooring and walls are sound, and that the door, window, and chimney are impassable, then her sister must have been undoubtedly alone when she met her mysterious end." "What becomes, then, of these nocturnal whistles, and what of the very peculiar words of the dying woman?" "I cannot think." "When you combine the ideas of whistles at night, the presence of a band of gipsies who are on intimate terms with this old doctor, the fact that we have every reason to believe that the doctor has an interest in preventing his stepdaughter's marriage, the dying allusion to a band, and, finally, the fact that Miss Helen Stoner heard a metallic clang, which might have been caused by one of those metal bars that secured the shutters falling back into its place, I think that there is good ground to think that the mystery may be cleared along those lines." "But what, then, did the gipsies do?" "I cannot imagine." "I see many objections to any such theory." "And so do I. It is precisely for that reason that we are going to Stoke Moran this day. I want to see whether the objections are fatal, or if they may be explained away. But what in the name of the devil!" The ejaculation had been drawn from my companion by the fact that our door had been suddenly dashed open, and that a huge man had framed himself in the aperture. His costume was a peculiar mixture of the professional and of the agricultural, having a black top-hat, a long frock-coat, and a pair of high gaiters, with a hunting-crop swinging in his hand. So tall was he that his hat actually brushed the cross bar of the doorway, and his breadth seemed to span it across from side to side. A large face, seared with a thousand wrinkles, burned yellow with the sun, and marked with every evil passion, was turned from one to the other of us, while his deep-set, bile-shot eyes, and his high, thin, fleshless nose, gave him somewhat the resemblance to a fierce old bird of prey. "Which of you is Holmes?" asked this apparition. "My name, sir; but you have the advantage of me," said my companion quietly. "I am Dr. Grimesby Roylott, of Stoke Moran." "Indeed, Doctor," said Holmes blandly. "Pray take a seat." "I will do nothing of the kind. My stepdaughter has been here. I have traced her. What has she been saying to you?" "It is a little cold for the time of the year," said Holmes. "What has she been saying to you?" screamed the old man furiously. "But I have heard that the crocuses promise well," continued my companion imperturbably. "Ha! You put me off, do you?" said our new visitor, taking a step forward and shaking his hunting-crop. "I know you, you scoundrel! I have heard of you before. You are Holmes, the meddler." My friend smiled. "Holmes, the busybody!" His smile broadened. "Holmes, the Scotland Yard Jack-in-office!" Holmes chuckled heartily. "Your conversation is most entertaining," said he. "When you go out close the door, for there is a decided draught." "I will go when I have said my say. Don't you dare to meddle with my affairs. I know that Miss Stoner has been here. I traced her! I am a dangerous man to fall foul of! See here." He stepped swiftly forward, seized the poker, and bent it into a curve with his huge brown hands. "See that you keep yourself out of my grip," he snarled, and hurling the twisted poker into the fireplace he strode out of the room. "He seems a very amiable person," said Holmes, laughing. "I am not quite so bulky, but if he had remained I might have shown him that my grip was not much more feeble than his own." As he spoke he picked up the steel poker and, with a sudden effort, straightened it out again. "Fancy his having the insolence to confound me with the official detective force! This incident gives zest to our investigation, however, and I only trust that our little friend will not suffer from her imprudence in allowing this brute to trace her. And now, Watson, we shall order breakfast, and afterwards I shall walk down to Doctors' Commons, where I hope to get some data which may help us in this matter." It was nearly one o'clock when Sherlock Holmes returned from his excursion. He held in his hand a sheet of blue paper, scrawled over with notes and figures. "I have seen the will of the deceased wife," said he. "To determine its exact meaning I have been obliged to work out the present prices of the investments with which it is concerned. The total income, which at the time of the wife's death was little short of $1100, is now, through the fall in agricultural prices, not more than $750. Each daughter can claim an income of $250, in case of marriage. It is evident, therefore, that if both girls had married, this beauty would have had a mere pittance, while even one of them would cripple him to a very serious extent. My morning's work has not been wasted, since it has proved that he has the very strongest motives for standing in the way of anything of the sort. And now, Watson, this is too serious for dawdling, especially as the old man is aware that we are interesting ourselves in his affairs; so if you are ready, we shall call a cab and drive to Waterloo. I should be very much obliged if you would slip your revolver into your pocket. An Eley's No. 2 is an excellent argument with gentlemen who can twist steel pokers into knots. That and a tooth-brush are, I think, all that we need." At Waterloo we were fortunate in catching a train for Leatherhead, where we hired a trap at the station inn and drove for four or five miles through the lovely Surrey lanes. It was a perfect day, with a bright sun and a few fleecy clouds in the heavens. The trees and wayside hedges were just throwing out their first green shoots, and the air was full of the pleasant smell of the moist earth. To me at least there was a strange contrast between the sweet promise of the spring and this sinister quest upon which we were engaged. My companion sat in the front of the trap, his arms folded, his hat pulled down over his eyes, and his chin sunk upon his breast, buried in the deepest thought. Suddenly, however, he started, tapped me on the shoulder, and pointed over the meadows. "Look there!" said he. A heavily timbered park stretched up in a gentle slope, thickening into a grove at the highest point. From amid the branches there jutted out the grey gables and high roof-tree of a very old mansion. "Stoke Moran?" said he. "Yes, sir, that be the house of Dr. Grimesby Roylott," remarked the driver. "There is some building going on there," said Holmes; "that is where we are going." "There's the village," said the driver, pointing to a cluster of roofs some distance to the left; "but if you want to get to the house, you'll find it shorter to get over this stile, and so by the foot-path over the fields. There it is, where the lady is walking." "And the lady, I fancy, is Miss Stoner," observed Holmes, shading his eyes. "Yes, I think we had better do as you suggest." We got off, paid our fare, and the trap rattled back on its way to Leatherhead. "I thought it as well," said Holmes as we climbed the stile, "that this fellow should think we had come here as architects, or on some definite business. It may stop his gossip. Good-afternoon, Miss Stoner. You see that we have been as good as our word." Our client of the morning had hurried forward to meet us with a face which spoke her joy. "I have been waiting so eagerly for you," she cried, shaking hands with us warmly. "All has turned out splendidly. Dr. Roylott has gone to town, and it is unlikely that he will be back before evening." "We have had the pleasure of making the doctor's acquaintance," said Holmes, and in a few words he sketched out what had occurred. Miss Stoner turned white to the lips as she listened. "Good heavens!" she cried, "he has followed me, then." "So it appears." "He is so cunning that I never know when I am safe from him. What will he say when he returns?" "He must guard himself, for he may find that there is someone more cunning than himself upon his track. You must lock yourself up from him to-night. If he is violent, we shall take you away to your aunt's at Harrow. Now, we must make the best use of our time, so kindly take us at once to the rooms which we are to examine." The building was of grey, lichen-blotched stone, with a high central portion and two curving wings, like the claws of a crab, thrown out on each side. In one of these wings the windows were broken and blocked with wooden boards, while the roof was partly caved in, a picture of ruin. The central portion was in little better repair, but the right-hand block was comparatively modern, and the blinds in the windows, with the blue smoke curling up from the chimneys, showed that this was where the family resided. Some scaffolding had been erected against the end wall, and the stone-work had been broken into, but there were no signs of any workmen at the moment of our visit. Holmes walked slowly up and down the ill-trimmed lawn and examined with deep attention the outsides of the windows. "This, I take it, belongs to the room in which you used to sleep, the centre one to your sister's, and the one next to the main building to Dr. Roylott's chamber?" "Exactly so. But I am now sleeping in the middle one." "Pending the alterations, as I understand. By the way, there does not seem to be any very pressing need for repairs at that end wall." "There were none. I believe that it was an excuse to move me from my room." "Ah! that is suggestive. Now, on the other side of this narrow wing runs the corridor from which these three rooms open. There are windows in it, of course?" "Yes, but very small ones. Too narrow for anyone to pass through." "As you both locked your doors at night, your rooms were unapproachable from that side. Now, would you have the kindness to go into your room and bar your shutters?" Miss Stoner did so, and Holmes, after a careful examination through the open window, endeavoured in every way to force the shutter open, but without success. There was no slit through which a knife could be passed to raise the bar. Then with his lens he tested the hinges, but they were of solid iron, built firmly into the massive masonry. "Hum!" said he, scratching his chin in some perplexity, "my theory certainly presents some difficulties. No one could pass these shutters if they were bolted. Well, we shall see if the inside throws any light upon the matter." A small side door led into the whitewashed corridor from which the three bedrooms opened. Holmes refused to examine the third chamber, so we passed at once to the second, that in which Miss Stoner was now sleeping, and in which her sister had met with her fate. It was a homely little room, with a low ceiling and a gaping fireplace, after the fashion of old country-houses. A brown chest of drawers stood in one corner, a narrow white-counterpaned bed in another, and a dressing-table on the left-hand side of the window. These articles, with two small wicker-work chairs, made up all the furniture in the room save for a square of Wilton carpet in the centre. The boards round and the panelling of the walls were of brown, worm-eaten oak, so old and discoloured that it may have dated from the original building of the house. Holmes drew one of the chairs into a corner and sat silent, while his eyes travelled round and round and up and down, taking in every detail of the apartment. "Where does that bell communicate with?" he asked at last pointing to a thick bell-rope which hung down beside the bed, the tassel actually lying upon the pillow. "It goes to the housekeeper's room." "It looks newer than the other things?" "Yes, it was only put there a couple of years ago." "Your sister asked for it, I suppose?" "No, I never heard of her using it. We used always to get what we wanted for ourselves." "Indeed, it seemed unnecessary to put so nice a bell-pull there. You will excuse me for a few minutes while I satisfy myself as to this floor." He threw himself down upon his face with his lens in his hand and crawled swiftly backward and forward, examining minutely the cracks between the boards. Then he did the same with the wood-work with which the chamber was panelled. Finally he walked over to the bed and spent some time in staring at it and in running his eye up and down the wall. Finally he took the bell-rope in his hand and gave it a brisk tug. "Why, it's a dummy," said he. "Won't it ring?" "No, it is not even attached to a wire. This is very interesting. You can see now that it is fastened to a hook just above where the little opening for the ventilator is." "How very absurd! I never noticed that before." "Very strange!" muttered Holmes, pulling at the rope. "There are one or two very singular points about this room. For example, what a fool a builder must be to open a ventilator into another room, when, with the same trouble, he might have communicated with the outside air!" "That is also quite modern," said the lady. "Done about the same time as the bell-rope?" remarked Holmes. "Yes, there were several little changes carried out about that time." "They seem to have been of a most interesting character--dummy bell-ropes, and ventilators which do not ventilate. With your permission, Miss Stoner, we shall now carry our researches into the inner apartment." Dr. Grimesby Roylott's chamber was larger than that of his step-daughter, but was as plainly furnished. A camp-bed, a small wooden shelf full of books, mostly of a technical character, an armchair beside the bed, a plain wooden chair against the wall, a round table, and a large iron safe were the principal things which met the eye. Holmes walked slowly round and examined each and all of them with the keenest interest. "What's in here?" he asked, tapping the safe. "My stepfather's business papers." "Oh! you have seen inside, then?" "Only once, some years ago. I remember that it was full of papers." "There isn't a cat in it, for example?" "No. What a strange idea!" "Well, look at this!" He took up a small saucer of milk which stood on the top of it. "No; we don't keep a cat. But there is a cheetah and a baboon." "Ah, yes, of course! Well, a cheetah is just a big cat, and yet a saucer of milk does not go very far in satisfying its wants, I daresay. There is one point which I should wish to determine." He squatted down in front of the wooden chair and examined the seat of it with the greatest attention. "Thank you. That is quite settled," said he, rising and putting his lens in his pocket. "Hullo! Here is something interesting!" The object which had caught his eye was a small dog lash hung on one corner of the bed. The lash, however, was curled upon itself and tied so as to make a loop of whipcord. "What do you make of that, Watson?" "It's a common enough lash. But I don't know why it should be tied." "That is not quite so common, is it? Ah, me! it's a wicked world, and when a clever man turns his brains to crime it is the worst of all. I think that I have seen enough now, Miss Stoner, and with your permission we shall walk out upon the lawn." I had never seen my friend's face so grim or his brow so dark as it was when we turned from the scene of this investigation. We had walked several times up and down the lawn, neither Miss Stoner nor myself liking to break in upon his thoughts before he roused himself from his reverie. "It is very essential, Miss Stoner," said he, "that you should absolutely follow my advice in every respect." "I shall most certainly do so." "The matter is too serious for any hesitation. Your life may depend upon your compliance." "I assure you that I am in your hands." "In the first place, both my friend and I must spend the night in your room." Both Miss Stoner and I gazed at him in astonishment. "Yes, it must be so. Let me explain. I believe that that is the village inn over there?" "Yes, that is the Crown." "Very good. Your windows would be visible from there?" "Certainly." "You must confine yourself to your room, on pretence of a headache, when your stepfather comes back. Then when you hear him retire for the night, you must open the shutters of your window, undo the hasp, put your lamp there as a signal to us, and then withdraw quietly with everything which you are likely to want into the room which you used to occupy. I have no doubt that, in spite of the repairs, you could manage there for one night." "Oh, yes, easily." "The rest you will leave in our hands." "But what will you do?" "We shall spend the night in your room, and we shall investigate the cause of this noise which has disturbed you." "I believe, Mr. Holmes, that you have already made up your mind," said Miss Stoner, laying her hand upon my companion's sleeve. "Perhaps I have." "Then, for pity's sake, tell me what was the cause of my sister's death." "I should prefer to have clearer proofs before I speak." "You can at least tell me whether my own thought is correct, and if she died from some sudden fright." "No, I do not think so. I think that there was probably some more tangible cause. And now, Miss Stoner, we must leave you for if Dr. Roylott returned and saw us our journey would be in vain. Good-bye, and be brave, for if you will do what I have told you, you may rest assured that we shall soon drive away the dangers that threaten you." Sherlock Holmes and I had no difficulty in engaging a bedroom and sitting-room at the Crown Inn. They were on the upper floor, and from our window we could command a view of the avenue gate, and of the inhabited wing of Stoke Moran Manor House. At dusk we saw Dr. Grimesby Roylott drive past, his huge form looming up beside the little figure of the lad who drove him. The boy had some slight difficulty in undoing the heavy iron gates, and we heard the hoarse roar of the doctor's voice and saw the fury with which he shook his clinched fists at him. The trap drove on, and a few minutes later we saw a sudden light spring up among the trees as the lamp was lit in one of the sitting-rooms. "Do you know, Watson," said Holmes as we sat together in the gathering darkness, "I have really some scruples as to taking you to-night. There is a distinct element of danger." "Can I be of assistance?" "Your presence might be invaluable." "Then I shall certainly come." "It is very kind of you." "You speak of danger. You have evidently seen more in these rooms than was visible to me." "No, but I fancy that I may have deduced a little more. I imagine that you saw all that I did." "I saw nothing remarkable save the bell-rope, and what purpose that could answer I confess is more than I can imagine." "You saw the ventilator, too?" "Yes, but I do not think that it is such a very unusual thing to have a small opening between two rooms. It was so small that a rat could hardly pass through." "I knew that we should find a ventilator before ever we came to Stoke Moran." "My dear Holmes!" "Oh, yes, I did. You remember in her statement she said that her sister could smell Dr. Roylott's cigar. Now, of course that suggested at once that there must be a communication between the two rooms. It could only be a small one, or it would have been remarked upon at the coroner's inquiry. I deduced a ventilator." "But what harm can there be in that?" "Well, there is at least a curious coincidence of dates. A ventilator is made, a cord is hung, and a lady who sleeps in the bed dies. Does not that strike you?" "I cannot as yet see any connection." "Did you observe anything very peculiar about that bed?" "No." "It was clamped to the floor. Did you ever see a bed fastened like that before?" "I cannot say that I have." "The lady could not move her bed. It must always be in the same relative position to the ventilator and to the rope--or so we may call it, since it was clearly never meant for a bell-pull." "Holmes," I cried, "I seem to see dimly what you are hinting at. We are only just in time to prevent some subtle and horrible crime." "Subtle enough and horrible enough. When a doctor does go wrong he is the first of criminals. He has nerve and he has knowledge. Palmer and Pritchard were among the heads of their profession. This man strikes even deeper, but I think, Watson, that we shall be able to strike deeper still. But we shall have horrors enough before the night is over; for goodness' sake let us have a quiet pipe and turn our minds for a few hours to something more cheerful." About nine o'clock the light among the trees was extinguished, and all was dark in the direction of the Manor House. Two hours passed slowly away, and then, suddenly, just at the stroke of eleven, a single bright light shone out right in front of us. "That is our signal," said Holmes, springing to his feet; "it comes from the middle window." As we passed out he exchanged a few words with the landlord, explaining that we were going on a late visit to an acquaintance, and that it was possible that we might spend the night there. A moment later we were out on the dark road, a chill wind blowing in our faces, and one yellow light twinkling in front of us through the gloom to guide us on our sombre errand. There was little difficulty in entering the grounds, for unrepaired breaches gaped in the old park wall. Making our way among the trees, we reached the lawn, crossed it, and were about to enter through the window when out from a clump of laurel bushes there darted what seemed to be a hideous and distorted child, who threw itself upon the grass with writhing limbs and then ran swiftly across the lawn into the darkness. "My God!" I whispered; "did you see it?" Holmes was for the moment as startled as I. His hand closed like a vice upon my wrist in his agitation. Then he broke into a low laugh and put his lips to my ear. "It is a nice household," he murmured. "That is the baboon." I had forgotten the strange pets which the doctor affected. There was a cheetah, too; perhaps we might find it upon our shoulders at any moment. I confess that I felt easier in my mind when, after following Holmes' example and slipping off my shoes, I found myself inside the bedroom. My companion noiselessly closed the shutters, moved the lamp onto the table, and cast his eyes round the room. All was as we had seen it in the daytime. Then creeping up to me and making a trumpet of his hand, he whispered into my ear again so gently that it was all that I could do to distinguish the words: "The least sound would be fatal to our plans." I nodded to show that I had heard. "We must sit without light. He would see it through the ventilator." I nodded again. "Do not go asleep; your very life may depend upon it. Have your pistol ready in case we should need it. I will sit on the side of the bed, and you in that chair." I took out my revolver and laid it on the corner of the table. Holmes had brought up a long thin cane, and this he placed upon the bed beside him. By it he laid the box of matches and the stump of a candle. Then he turned down the lamp, and we were left in darkness. How shall I ever forget that dreadful vigil? I could not hear a sound, not even the drawing of a breath, and yet I knew that my companion sat open-eyed, within a few feet of me, in the same state of nervous tension in which I was myself. The shutters cut off the least ray of light, and we waited in absolute darkness. From outside came the occasional cry of a night-bird, and once at our very window a long drawn catlike whine, which told us that the cheetah was indeed at liberty. Far away we could hear the deep tones of the parish clock, which boomed out every quarter of an hour. How long they seemed, those quarters! Twelve struck, and one and two and three, and still we sat waiting silently for whatever might befall. Suddenly there was the momentary gleam of a light up in the direction of the ventilator, which vanished immediately, but was succeeded by a strong smell of burning oil and heated metal. Someone in the next room had lit a dark-lantern. I heard a gentle sound of movement, and then all was silent once more, though the smell grew stronger. For half an hour I sat with straining ears. Then suddenly another sound became audible--a very gentle, soothing sound, like that of a small jet of steam escaping continually from a kettle. The instant that we heard it, Holmes sprang from the bed, struck a match, and lashed furiously with his cane at the bell-pull. "You see it, Watson?" he yelled. "You see it?" But I saw nothing. At the moment when Holmes struck the light I heard a low, clear whistle, but the sudden glare flashing into my weary eyes made it impossible for me to tell what it was at which my friend lashed so savagely. I could, however, see that his face was deadly pale and filled with horror and loathing. He had ceased to strike and was gazing up at the ventilator when suddenly there broke from the silence of the night the most horrible cry to which I have ever listened. It swelled up louder and louder, a hoarse yell of pain and fear and anger all mingled in the one dreadful shriek. They say that away down in the village, and even in the distant parsonage, that cry raised the sleepers from their beds. It struck cold to our hearts, and I stood gazing at Holmes, and he at me, until the last echoes of it had died away into the silence from which it rose. "What can it mean?" I gasped. "It means that it is all over," Holmes answered. "And perhaps, after all, it is for the best. Take your pistol, and we will enter Dr. Roylott's room." With a grave face he lit the lamp and led the way down the corridor. Twice he struck at the chamber door without any reply from within. Then he turned the handle and entered, I at his heels, with the cocked pistol in my hand. It was a singular sight which met our eyes. On the table stood a dark-lantern with the shutter half open, throwing a brilliant beam of light upon the iron safe, the door of which was ajar. Beside this table, on the wooden chair, sat Dr. Grimesby Roylott clad in a long grey dressing-gown, his bare ankles protruding beneath, and his feet thrust into red heelless Turkish slippers. Across his lap lay the short stock with the long lash which we had noticed during the day. His chin was cocked upward and his eyes were fixed in a dreadful, rigid stare at the corner of the ceiling. Round his brow he had a peculiar yellow band, with brownish speckles, which seemed to be bound tightly round his head. As we entered he made neither sound nor motion. "The band! the speckled band!" whispered Holmes. I took a step forward. In an instant his strange headgear began to move, and there reared itself from among his hair the squat diamond-shaped head and puffed neck of a loathsome serpent. "It is a swamp adder!" cried Holmes; "the deadliest snake in India. He has died within ten seconds of being bitten. Violence does, in truth, recoil upon the violent, and the schemer falls into the pit which he digs for another. Let us thrust this creature back into its den, and we can then remove Miss Stoner to some place of shelter and let the county police know what has happened." As he spoke he drew the dog-whip swiftly from the dead man's lap, and throwing the noose round the reptile's neck he drew it from its horrid perch and, carrying it at arm's length, threw it into the iron safe, which he closed upon it. Such are the true facts of the death of Dr. Grimesby Roylott, of Stoke Moran. It is not necessary that I should prolong a narrative which has already run to too great a length by telling how we broke the sad news to the terrified girl, how we conveyed her by the morning train to the care of her good aunt at Harrow, of how the slow process of official inquiry came to the conclusion that the doctor met his fate while indiscreetly playing with a dangerous pet. The little which I had yet to learn of the case was told me by Sherlock Holmes as we travelled back next day. "I had," said he, "come to an entirely erroneous conclusion which shows, my dear Watson, how dangerous it always is to reason from insufficient data. The presence of the gipsies, and the use of the word 'band,' which was used by the poor girl, no doubt, to explain the appearance which she had caught a hurried glimpse of by the light of her match, were sufficient to put me upon an entirely wrong scent. I can only claim the merit that I instantly reconsidered my position when, however, it became clear to me that whatever danger threatened an occupant of the room could not come either from the window or the door. My attention was speedily drawn, as I have already remarked to you, to this ventilator, and to the bell-rope which hung down to the bed. The discovery that this was a dummy, and that the bed was clamped to the floor, instantly gave rise to the suspicion that the rope was there as a bridge for something passing through the hole and coming to the bed. The idea of a snake instantly occurred to me, and when I coupled it with my knowledge that the doctor was furnished with a supply of creatures from India, I felt that I was probably on the right track. The idea of using a form of poison which could not possibly be discovered by any chemical test was just such a one as would occur to a clever and ruthless man who had had an Eastern training. The rapidity with which such a poison would take effect would also, from his point of view, be an advantage. It would be a sharp-eyed coroner, indeed, who could distinguish the two little dark punctures which would show where the poison fangs had done their work. Then I thought of the whistle. Of course he must recall the snake before the morning light revealed it to the victim. He had trained it, probably by the use of the milk which we saw, to return to him when summoned. He would put it through this ventilator at the hour that he thought best, with the certainty that it would crawl down the rope and land on the bed. It might or might not bite the occupant, perhaps she might escape every night for a week, but sooner or later she must fall a victim. "I had come to these conclusions before ever I had entered his room. An inspection of his chair showed me that he had been in the habit of standing on it, which of course would be necessary in order that he should reach the ventilator. The sight of the safe, the saucer of milk, and the loop of whipcord were enough to finally dispel any doubts which may have remained. The metallic clang heard by Miss Stoner was obviously caused by her stepfather hastily closing the door of his safe upon its terrible occupant. Having once made up my mind, you know the steps which I took in order to put the matter to the proof. I heard the creature hiss as I have no doubt that you did also, and I instantly lit the light and attacked it." "With the result of driving it through the ventilator." "And also with the result of causing it to turn upon its master at the other side. Some of the blows of my cane came home and roused its snakish temper, so that it flew upon the first person it saw. In this way I am no doubt indirectly responsible for Dr. Grimesby Roylott's death, and I cannot say that it is likely to weigh very heavily upon my conscience." IX. THE ADVENTURE OF THE ENGINEER'S THUMB Of all the problems which have been submitted to my friend, Mr. Sherlock Holmes, for solution during the years of our intimacy, there were only two which I was the means of introducing to his notice--that of Mr. Hatherley's thumb, and that of Colonel Warburton's madness. Of these the latter may have afforded a finer field for an acute and original observer, but the other was so strange in its inception and so dramatic in its details that it may be the more worthy of being placed upon record, even if it gave my friend fewer openings for those deductive methods of reasoning by which he achieved such remarkable results. The story has, I believe, been told more than once in the newspapers, but, like all such narratives, its effect is much less striking when set forth en bloc in a single half-column of print than when the facts slowly evolve before your own eyes, and the mystery clears gradually away as each new discovery furnishes a step which leads on to the complete truth. At the time the circumstances made a deep impression upon me, and the lapse of two years has hardly served to weaken the effect. It was in the summer of '89, not long after my marriage, that the events occurred which I am now about to summarise. I had returned to civil practice and had finally abandoned Holmes in his Baker Street rooms, although I continually visited him and occasionally even persuaded him to forgo his Bohemian habits so far as to come and visit us. My practice had steadily increased, and as I happened to live at no very great distance from Paddington Station, I got a few patients from among the officials. One of these, whom I had cured of a painful and lingering disease, was never weary of advertising my virtues and of endeavouring to send me on every sufferer over whom he might have any influence. One morning, at a little before seven o'clock, I was awakened by the maid tapping at the door to announce that two men had come from Paddington and were waiting in the consulting-room. I dressed hurriedly, for I knew by experience that railway cases were seldom trivial, and hastened downstairs. As I descended, my old ally, the guard, came out of the room and closed the door tightly behind him. "I've got him here," he whispered, jerking his thumb over his shoulder; "he's all right." "What is it, then?" I asked, for his manner suggested that it was some strange creature which he had caged up in my room. "It's a new patient," he whispered. "I thought I'd bring him round myself; then he couldn't slip away. There he is, all safe and sound. I must go now, Doctor; I have my dooties, just the same as you." And off he went, this trusty tout, without even giving me time to thank him. I entered my consulting-room and found a gentleman seated by the table. He was quietly dressed in a suit of heather tweed with a soft cloth cap which he had laid down upon my books. Round one of his hands he had a handkerchief wrapped, which was mottled all over with bloodstains. He was young, not more than five-and-twenty, I should say, with a strong, masculine face; but he was exceedingly pale and gave me the impression of a man who was suffering from some strong agitation, which it took all his strength of mind to control. "I am sorry to knock you up so early, Doctor," said he, "but I have had a very serious accident during the night. I came in by train this morning, and on inquiring at Paddington as to where I might find a doctor, a worthy fellow very kindly escorted me here. I gave the maid a card, but I see that she has left it upon the side-table." I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic engineer, 16A, Victoria Street (3rd floor)." That was the name, style, and abode of my morning visitor. "I regret that I have kept you waiting," said I, sitting down in my library-chair. "You are fresh from a night journey, I understand, which is in itself a monotonous occupation." "Oh, my night could not be called monotonous," said he, and laughed. He laughed very heartily, with a high, ringing note, leaning back in his chair and shaking his sides. All my medical instincts rose up against that laugh. "Stop it!" I cried; "pull yourself together!" and I poured out some water from a caraffe. It was useless, however. He was off in one of those hysterical outbursts which come upon a strong nature when some great crisis is over and gone. Presently he came to himself once more, very weary and pale-looking. "I have been making a fool of myself," he gasped. "Not at all. Drink this." I dashed some brandy into the water, and the colour began to come back to his bloodless cheeks. "That's better!" said he. "And now, Doctor, perhaps you would kindly attend to my thumb, or rather to the place where my thumb used to be." He unwound the handkerchief and held out his hand. It gave even my hardened nerves a shudder to look at it. There were four protruding fingers and a horrid red, spongy surface where the thumb should have been. It had been hacked or torn right out from the roots. "Good heavens!" I cried, "this is a terrible injury. It must have bled considerably." "Yes, it did. I fainted when it was done, and I think that I must have been senseless for a long time. When I came to I found that it was still bleeding, so I tied one end of my handkerchief very tightly round the wrist and braced it up with a twig." "Excellent! You should have been a surgeon." "It is a question of hydraulics, you see, and came within my own province." "This has been done," said I, examining the wound, "by a very heavy and sharp instrument." "A thing like a cleaver," said he. "An accident, I presume?" "By no means." "What! a murderous attack?" "Very murderous indeed." "You horrify me." I sponged the wound, cleaned it, dressed it, and finally covered it over with cotton wadding and carbolised bandages. He lay back without wincing, though he bit his lip from time to time. "How is that?" I asked when I had finished. "Capital! Between your brandy and your bandage, I feel a new man. I was very weak, but I have had a good deal to go through." "Perhaps you had better not speak of the matter. It is evidently trying to your nerves." "Oh, no, not now. I shall have to tell my tale to the police; but, between ourselves, if it were not for the convincing evidence of this wound of mine, I should be surprised if they believed my statement, for it is a very extraordinary one, and I have not much in the way of proof with which to back it up; and, even if they believe me, the clues which I can give them are so vague that it is a question whether justice will be done." "Ha!" cried I, "if it is anything in the nature of a problem which you desire to see solved, I should strongly recommend you to come to my friend, Mr. Sherlock Holmes, before you go to the official police." "Oh, I have heard of that fellow," answered my visitor, "and I should be very glad if he would take the matter up, though of course I must use the official police as well. Would you give me an introduction to him?" "I'll do better. I'll take you round to him myself." "I should be immensely obliged to you." "We'll call a cab and go together. We shall just be in time to have a little breakfast with him. Do you feel equal to it?" "Yes; I shall not feel easy until I have told my story." "Then my servant will call a cab, and I shall be with you in an instant." I rushed upstairs, explained the matter shortly to my wife, and in five minutes was inside a hansom, driving with my new acquaintance to Baker Street. Sherlock Holmes was, as I expected, lounging about his sitting-room in his dressing-gown, reading the agony column of The Times and smoking his before-breakfast pipe, which was composed of all the plugs and dottles left from his smokes of the day before, all carefully dried and collected on the corner of the mantelpiece. He received us in his quietly genial fashion, ordered fresh rashers and eggs, and joined us in a hearty meal. When it was concluded he settled our new acquaintance upon the sofa, placed a pillow beneath his head, and laid a glass of brandy and water within his reach. "It is easy to see that your experience has been no common one, Mr. Hatherley," said he. "Pray, lie down there and make yourself absolutely at home. Tell us what you can, but stop when you are tired and keep up your strength with a little stimulant." "Thank you," said my patient. "but I have felt another man since the doctor bandaged me, and I think that your breakfast has completed the cure. I shall take up as little of your valuable time as possible, so I shall start at once upon my peculiar experiences." Holmes sat in his big armchair with the weary, heavy-lidded expression which veiled his keen and eager nature, while I sat opposite to him, and we listened in silence to the strange story which our visitor detailed to us. "You must know," said he, "that I am an orphan and a bachelor, residing alone in lodgings in London. By profession I am a hydraulic engineer, and I have had considerable experience of my work during the seven years that I was apprenticed to Venner & Matheson, the well-known firm, of Greenwich. Two years ago, having served my time, and having also come into a fair sum of money through my poor father's death, I determined to start in business for myself and took professional chambers in Victoria Street. "I suppose that everyone finds his first independent start in business a dreary experience. To me it has been exceptionally so. During two years I have had three consultations and one small job, and that is absolutely all that my profession has brought me. My gross takings amount to $27 10s. Every day, from nine in the morning until four in the afternoon, I waited in my little den, until at last my heart began to sink, and I came to believe that I should never have any practice at all. "Yesterday, however, just as I was thinking of leaving the office, my clerk entered to say there was a gentleman waiting who wished to see me upon business. He brought up a card, too, with the name of 'Colonel Lysander Stark' engraved upon it. Close at his heels came the colonel himself, a man rather over the middle size, but of an exceeding thinness. I do not think that I have ever seen so thin a man. His whole face sharpened away into nose and chin, and the skin of his cheeks was drawn quite tense over his outstanding bones. Yet this emaciation seemed to be his natural habit, and due to no disease, for his eye was bright, his step brisk, and his bearing assured. He was plainly but neatly dressed, and his age, I should judge, would be nearer forty than thirty. " 'Mr. Hatherley?' said he, with something of a German accent. 'You have been recommended to me, Mr. Hatherley, as being a man who is not only proficient in his profession but is also discreet and capable of preserving a secret.' "I bowed, feeling as flattered as any young man would at such an address. 'May I ask who it was who gave me so good a character?' " 'Well, perhaps it is better that I should not tell you that just at this moment. I have it from the same source that you are both an orphan and a bachelor and are residing alone in London.' " 'That is quite correct,' I answered; 'but you will excuse me if I say that I cannot see how all this bears upon my professional qualifications. I understand that it was on a professional matter that you wished to speak to me?' " 'Undoubtedly so. But you will find that all I say is really to the point. I have a professional commission for you, but absolute secrecy is quite essential--absolute secrecy, you understand, and of course we may expect that more from a man who is alone than from one who lives in the bosom of his family.' " 'If I promise to keep a secret,' said I, 'you may absolutely depend upon my doing so.' "He looked very hard at me as I spoke, and it seemed to me that I had never seen so suspicious and questioning an eye. " 'Do you promise, then?' said he at last. " 'Yes, I promise.' " 'Absolute and complete silence before, during, and after? No reference to the matter at all, either in word or writing?' " 'I have already given you my word.' " 'Very good.' He suddenly sprang up, and darting like lightning across the room he flung open the door. The passage outside was empty. " 'That's all right,' said he, coming back. 'I know that clerks are sometimes curious as to their master's affairs. Now we can talk in safety.' He drew up his chair very close to mine and began to stare at me again with the same questioning and thoughtful look. "A feeling of repulsion, and of something akin to fear had begun to rise within me at the strange antics of this fleshless man. Even my dread of losing a client could not restrain me from showing my impatience. " 'I beg that you will state your business, sir,' said I; 'my time is of value.' Heaven forgive me for that last sentence, but the words came to my lips. " 'How would fifty guineas for a night's work suit you?' he asked. " 'Most admirably.' " 'I say a night's work, but an hour's would be nearer the mark. I simply want your opinion about a hydraulic stamping machine which has got out of gear. If you show us what is wrong we shall soon set it right ourselves. What do you think of such a commission as that?' " 'The work appears to be light and the pay munificent.' " 'Precisely so. We shall want you to come to-night by the last train.' " 'Where to?' " 'To Eyford, in Berkshire. It is a little place near the borders of Oxfordshire, and within seven miles of Reading. There is a train from Paddington which would bring you there at about 11:15.' " 'Very good.' " 'I shall come down in a carriage to meet you.' " 'There is a drive, then?' " 'Yes, our little place is quite out in the country. It is a good seven miles from Eyford Station.' " 'Then we can hardly get there before midnight. I suppose there would be no chance of a train back. I should be compelled to stop the night.' " 'Yes, we could easily give you a shake-down.' " 'That is very awkward. Could I not come at some more convenient hour?' " 'We have judged it best that you should come late. It is to recompense you for any inconvenience that we are paying to you, a young and unknown man, a fee which would buy an opinion from the very heads of your profession. Still, of course, if you would like to draw out of the business, there is plenty of time to do so.' "I thought of the fifty guineas, and of how very useful they would be to me. 'Not at all,' said I, 'I shall be very happy to accommodate myself to your wishes. I should like, however, to understand a little more clearly what it is that you wish me to do.' " 'Quite so. It is very natural that the pledge of secrecy which we have exacted from you should have aroused your curiosity. I have no wish to commit you to anything without your having it all laid before you. I suppose that we are absolutely safe from eavesdroppers?' " 'Entirely.' " 'Then the matter stands thus. You are probably aware that fuller's-earth is a valuable product, and that it is only found in one or two places in England?' " 'I have heard so.' " 'Some little time ago I bought a small place--a very small place--within ten miles of Reading. I was fortunate enough to discover that there was a deposit of fuller's-earth in one of my fields. On examining it, however, I found that this deposit was a comparatively small one, and that it formed a link between two very much larger ones upon the right and left--both of them, however, in the grounds of my neighbours. These good people were absolutely ignorant that their land contained that which was quite as valuable as a gold-mine. Naturally, it was to my interest to buy their land before they discovered its true value, but unfortunately I had no capital by which I could do this. I took a few of my friends into the secret, however, and they suggested that we should quietly and secretly work our own little deposit and that in this way we should earn the money which would enable us to buy the neighbouring fields. This we have now been doing for some time, and in order to help us in our operations we erected a hydraulic press. This press, as I have already explained, has got out of order, and we wish your advice upon the subject. We guard our secret very jealously, however, and if it once became known that we had hydraulic engineers coming to our little house, it would soon rouse inquiry, and then, if the facts came out, it would be good-bye to any chance of getting these fields and carrying out our plans. That is why I have made you promise me that you will not tell a human being that you are going to Eyford to-night. I hope that I make it all plain?' " 'I quite follow you,' said I. 'The only point which I could not quite understand was what use you could make of a hydraulic press in excavating fuller's-earth, which, as I understand, is dug out like gravel from a pit.' " 'Ah!' said he carelessly, 'we have our own process. We compress the earth into bricks, so as to remove them without revealing what they are. But that is a mere detail. I have taken you fully into my confidence now, Mr. Hatherley, and I have shown you how I trust you.' He rose as he spoke. 'I shall expect you, then, at Eyford at 11:15.' " 'I shall certainly be there.' " 'And not a word to a soul.' He looked at me with a last long, questioning gaze, and then, pressing my hand in a cold, dank grasp, he hurried from the room. "Well, when I came to think it all over in cool blood I was very much astonished, as you may both think, at this sudden commission which had been intrusted to me. On the one hand, of course, I was glad, for the fee was at least tenfold what I should have asked had I set a price upon my own services, and it was possible that this order might lead to other ones. On the other hand, the face and manner of my patron had made an unpleasant impression upon me, and I could not think that his explanation of the fuller's-earth was sufficient to explain the necessity for my coming at midnight, and his extreme anxiety lest I should tell anyone of my errand. However, I threw all fears to the winds, ate a hearty supper, drove to Paddington, and started off, having obeyed to the letter the injunction as to holding my tongue. "At Reading I had to change not only my carriage but my station. However, I was in time for the last train to Eyford, and I reached the little dim-lit station after eleven o'clock. I was the only passenger who got out there, and there was no one upon the platform save a single sleepy porter with a lantern. As I passed out through the wicket gate, however, I found my acquaintance of the morning waiting in the shadow upon the other side. Without a word he grasped my arm and hurried me into a carriage, the door of which was standing open. He drew up the windows on either side, tapped on the wood-work, and away we went as fast as the horse could go." "One horse?" interjected Holmes. "Yes, only one." "Did you observe the colour?" "Yes, I saw it by the side-lights when I was stepping into the carriage. It was a chestnut." "Tired-looking or fresh?" "Oh, fresh and glossy." "Thank you. I am sorry to have interrupted you. Pray continue your most interesting statement." "Away we went then, and we drove for at least an hour. Colonel Lysander Stark had said that it was only seven miles, but I should think, from the rate that we seemed to go, and from the time that we took, that it must have been nearer twelve. He sat at my side in silence all the time, and I was aware, more than once when I glanced in his direction, that he was looking at me with great intensity. The country roads seem to be not very good in that part of the world, for we lurched and jolted terribly. I tried to look out of the windows to see something of where we were, but they were made of frosted glass, and I could make out nothing save the occasional bright blur of a passing light. Now and then I hazarded some remark to break the monotony of the journey, but the colonel answered only in monosyllables, and the conversation soon flagged. At last, however, the bumping of the road was exchanged for the crisp smoothness of a gravel-drive, and the carriage came to a stand. Colonel Lysander Stark sprang out, and, as I followed after him, pulled me swiftly into a porch which gaped in front of us. We stepped, as it were, right out of the carriage and into the hall, so that I failed to catch the most fleeting glance of the front of the house. The instant that I had crossed the threshold the door slammed heavily behind us, and I heard faintly the rattle of the wheels as the carriage drove away. "It was pitch dark inside the house, and the colonel fumbled about looking for matches and muttering under his breath. Suddenly a door opened at the other end of the passage, and a long, golden bar of light shot out in our direction. It grew broader, and a woman appeared with a lamp in her hand, which she held above her head, pushing her face forward and peering at us. I could see that she was pretty, and from the gloss with which the light shone upon her dark dress I knew that it was a rich material. She spoke a few words in a foreign tongue in a tone as though asking a question, and when my companion answered in a gruff monosyllable she gave such a start that the lamp nearly fell from her hand. Colonel Stark went up to her, whispered something in her ear, and then, pushing her back into the room from whence she had come, he walked towards me again with the lamp in his hand. " 'Perhaps you will have the kindness to wait in this room for a few minutes,' said he, throwing open another door. It was a quiet, little, plainly furnished room, with a round table in the centre, on which several German books were scattered. Colonel Stark laid down the lamp on the top of a harmonium beside the door. 'I shall not keep you waiting an instant,' said he, and vanished into the darkness. "I glanced at the books upon the table, and in spite of my ignorance of German I could see that two of them were treatises on science, the others being volumes of poetry. Then I walked across to the window, hoping that I might catch some glimpse of the country-side, but an oak shutter, heavily barred, was folded across it. It was a wonderfully silent house. There was an old clock ticking loudly somewhere in the passage, but otherwise everything was deadly still. A vague feeling of uneasiness began to steal over me. Who were these German people, and what were they doing living in this strange, out-of-the-way place? And where was the place? I was ten miles or so from Eyford, that was all I knew, but whether north, south, east, or west I had no idea. For that matter, Reading, and possibly other large towns, were within that radius, so the place might not be so secluded, after all. Yet it was quite certain, from the absolute stillness, that we were in the country. I paced up and down the room, humming a tune under my breath to keep up my spirits and feeling that I was thoroughly earning my fifty-guinea fee. "Suddenly, without any preliminary sound in the midst of the utter stillness, the door of my room swung slowly open. The woman was standing in the aperture, the darkness of the hall behind her, the yellow light from my lamp beating upon her eager and beautiful face. I could see at a glance that she was sick with fear, and the sight sent a chill to my own heart. She held up one shaking finger to warn me to be silent, and she shot a few whispered words of broken English at me, her eyes glancing back, like those of a frightened horse, into the gloom behind her. " 'I would go,' said she, trying hard, as it seemed to me, to speak calmly; 'I would go. I should not stay here. There is no good for you to do.' " 'But, madam,' said I, 'I have not yet done what I came for. I cannot possibly leave until I have seen the machine.' " 'It is not worth your while to wait,' she went on. 'You can pass through the door; no one hinders.' And then, seeing that I smiled and shook my head, she suddenly threw aside her constraint and made a step forward, with her hands wrung together. 'For the love of Heaven!' she whispered, 'get away from here before it is too late!' "But I am somewhat headstrong by nature, and the more ready to engage in an affair when there is some obstacle in the way. I thought of my fifty-guinea fee, of my wearisome journey, and of the unpleasant night which seemed to be before me. Was it all to go for nothing? Why should I slink away without having carried out my commission, and without the payment which was my due? This woman might, for all I knew, be a monomaniac. With a stout bearing, therefore, though her manner had shaken me more than I cared to confess, I still shook my head and declared my intention of remaining where I was. She was about to renew her entreaties when a door slammed overhead, and the sound of several footsteps was heard upon the stairs. She listened for an instant, threw up her hands with a despairing gesture, and vanished as suddenly and as noiselessly as she had come. "The newcomers were Colonel Lysander Stark and a short thick man with a chinchilla beard growing out of the creases of his double chin, who was introduced to me as Mr. Ferguson. " 'This is my secretary and manager,' said the colonel. 'By the way, I was under the impression that I left this door shut just now. I fear that you have felt the draught.' " 'On the contrary,' said I, 'I opened the door myself because I felt the room to be a little close.' "He shot one of his suspicious looks at me. 'Perhaps we had better proceed to business, then,' said he. 'Mr. Ferguson and I will take you up to see the machine.' " 'I had better put my hat on, I suppose.' " 'Oh, no, it is in the house.' " 'What, you dig fuller's-earth in the house?' " 'No, no. This is only where we compress it. But never mind that. All we wish you to do is to examine the machine and to let us know what is wrong with it.' "We went upstairs together, the colonel first with the lamp, the fat manager and I behind him. It was a labyrinth of an old house, with corridors, passages, narrow winding staircases, and little low doors, the thresholds of which were hollowed out by the generations who had crossed them. There were no carpets and no signs of any furniture above the ground floor, while the plaster was peeling off the walls, and the damp was breaking through in green, unhealthy blotches. I tried to put on as unconcerned an air as possible, but I had not forgotten the warnings of the lady, even though I disregarded them, and I kept a keen eye upon my two companions. Ferguson appeared to be a morose and silent man, but I could see from the little that he said that he was at least a fellow-countryman. "Colonel Lysander Stark stopped at last before a low door, which he unlocked. Within was a small, square room, in which the three of us could hardly get at one time. Ferguson remained outside, and the colonel ushered me in. " 'We are now,' said he, 'actually within the hydraulic press, and it would be a particularly unpleasant thing for us if anyone were to turn it on. The ceiling of this small chamber is really the end of the descending piston, and it comes down with the force of many tons upon this metal floor. There are small lateral columns of water outside which receive the force, and which transmit and multiply it in the manner which is familiar to you. The machine goes readily enough, but there is some stiffness in the working of it, and it has lost a little of its force. Perhaps you will have the goodness to look it over and to show us how we can set it right.' "I took the lamp from him, and I examined the machine very thoroughly. It was indeed a gigantic one, and capable of exercising enormous pressure. When I passed outside, however, and pressed down the levers which controlled it, I knew at once by the whishing sound that there was a slight leakage, which allowed a regurgitation of water through one of the side cylinders. An examination showed that one of the india-rubber bands which was round the head of a driving-rod had shrunk so as not quite to fill the socket along which it worked. This was clearly the cause of the loss of power, and I pointed it out to my companions, who followed my remarks very carefully and asked several practical questions as to how they should proceed to set it right. When I had made it clear to them, I returned to the main chamber of the machine and took a good look at it to satisfy my own curiosity. It was obvious at a glance that the story of the fuller's-earth was the merest fabrication, for it would be absurd to suppose that so powerful an engine could be designed for so inadequate a purpose. The walls were of wood, but the floor consisted of a large iron trough, and when I came to examine it I could see a crust of metallic deposit all over it. I had stooped and was scraping at this to see exactly what it was when I heard a muttered exclamation in German and saw the cadaverous face of the colonel looking down at me. " 'What are you doing there?' he asked. "I felt angry at having been tricked by so elaborate a story as that which he had told me. 'I was admiring your fuller's-earth,' said I; 'I think that I should be better able to advise you as to your machine if I knew what the exact purpose was for which it was used.' "The instant that I uttered the words I regretted the rashness of my speech. His face set hard, and a baleful light sprang up in his grey eyes. " 'Very well,' said he, 'you shall know all about the machine.' He took a step backward, slammed the little door, and turned the key in the lock. I rushed towards it and pulled at the handle, but it was quite secure, and did not give in the least to my kicks and shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' "And then suddenly in the silence I heard a sound which sent my heart into my mouth. It was the clank of the levers and the swish of the leaking cylinder. He had set the engine at work. The lamp still stood upon the floor where I had placed it when examining the trough. By its light I saw that the black ceiling was coming down upon me, slowly, jerkily, but, as none knew better than myself, with a force which must within a minute grind me to a shapeless pulp. I threw myself, screaming, against the door, and dragged with my nails at the lock. I implored the colonel to let me out, but the remorseless clanking of the levers drowned my cries. The ceiling was only a foot or two above my head, and with my hand upraised I could feel its hard, rough surface. Then it flashed through my mind that the pain of my death would depend very much upon the position in which I met it. If I lay on my face the weight would come upon my spine, and I shuddered to think of that dreadful snap. Easier the other way, perhaps; and yet, had I the nerve to lie and look up at that deadly black shadow wavering down upon me? Already I was unable to stand erect, when my eye caught something which brought a gush of hope back to my heart. "I have said that though the floor and ceiling were of iron, the walls were of wood. As I gave a last hurried glance around, I saw a thin line of yellow light between two of the boards, which broadened and broadened as a small panel was pushed backward. For an instant I could hardly believe that here was indeed a door which led away from death. The next instant I threw myself through, and lay half-fainting upon the other side. The panel had closed again behind me, but the crash of the lamp, and a few moments afterwards the clang of the two slabs of metal, told me how narrow had been my escape. "I was recalled to myself by a frantic plucking at my wrist, and I found myself lying upon the stone floor of a narrow corridor, while a woman bent over me and tugged at me with her left hand, while she held a candle in her right. It was the same good friend whose warning I had so foolishly rejected. " 'Come! come!' she cried breathlessly. 'They will be here in a moment. They will see that you are not there. Oh, do not waste the so-precious time, but come!' "This time, at least, I did not scorn her advice. I staggered to my feet and ran with her along the corridor and down a winding stair. The latter led to another broad passage, and just as we reached it we heard the sound of running feet and the shouting of two voices, one answering the other from the floor on which we were and from the one beneath. My guide stopped and looked about her like one who is at her wit's end. Then she threw open a door which led into a bedroom, through the window of which the moon was shining brightly. " 'It is your only chance,' said she. 'It is high, but it may be that you can jump it.' "As she spoke a light sprang into view at the further end of the passage, and I saw the lean figure of Colonel Lysander Stark rushing forward with a lantern in one hand and a weapon like a butcher's cleaver in the other. I rushed across the bedroom, flung open the window, and looked out. How quiet and sweet and wholesome the garden looked in the moonlight, and it could not be more than thirty feet down. I clambered out upon the sill, but I hesitated to jump until I should have heard what passed between my saviour and the ruffian who pursued me. If she were ill-used, then at any risks I was determined to go back to her assistance. The thought had hardly flashed through my mind before he was at the door, pushing his way past her; but she threw her arms round him and tried to hold him back. " 'Fritz! Fritz!' she cried in English, 'remember your promise after the last time. You said it should not be again. He will be silent! Oh, he will be silent!' " 'You are mad, Elise!' he shouted, struggling to break away from her. 'You will be the ruin of us. He has seen too much. Let me pass, I say!' He dashed her to one side, and, rushing to the window, cut at me with his heavy weapon. I had let myself go, and was hanging by the hands to the sill, when his blow fell. I was conscious of a dull pain, my grip loosened, and I fell into the garden below. "I was shaken but not hurt by the fall; so I picked myself up and rushed off among the bushes as hard as I could run, for I understood that I was far from being out of danger yet. Suddenly, however, as I ran, a deadly dizziness and sickness came over me. I glanced down at my hand, which was throbbing painfully, and then, for the first time, saw that my thumb had been cut off and that the blood was pouring from my wound. I endeavoured to tie my handkerchief round it, but there came a sudden buzzing in my ears, and next moment I fell in a dead faint among the rose-bushes. "How long I remained unconscious I cannot tell. It must have been a very long time, for the moon had sunk, and a bright morning was breaking when I came to myself. My clothes were all sodden with dew, and my coat-sleeve was drenched with blood from my wounded thumb. The smarting of it recalled in an instant all the particulars of my night's adventure, and I sprang to my feet with the feeling that I might hardly yet be safe from my pursuers. But to my astonishment, when I came to look round me, neither house nor garden were to be seen. I had been lying in an angle of the hedge close by the highroad, and just a little lower down was a long building, which proved, upon my approaching it, to be the very station at which I had arrived upon the previous night. Were it not for the ugly wound upon my hand, all that had passed during those dreadful hours might have been an evil dream. "Half dazed, I went into the station and asked about the morning train. There would be one to Reading in less than an hour. The same porter was on duty, I found, as had been there when I arrived. I inquired of him whether he had ever heard of Colonel Lysander Stark. The name was strange to him. Had he observed a carriage the night before waiting for me? No, he had not. Was there a police-station anywhere near? There was one about three miles off. "It was too far for me to go, weak and ill as I was. I determined to wait until I got back to town before telling my story to the police. It was a little past six when I arrived, so I went first to have my wound dressed, and then the doctor was kind enough to bring me along here. I put the case into your hands and shall do exactly what you advise." We both sat in silence for some little time after listening to this extraordinary narrative. Then Sherlock Holmes pulled down from the shelf one of the ponderous commonplace books in which he placed his cuttings. "Here is an advertisement which will interest you," said he. "It appeared in all the papers about a year ago. Listen to this: 'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged twenty-six, a hydraulic engineer. Left his lodgings at ten o'clock at night, and has not been heard of since. Was dressed in,' etc., etc. Ha! That represents the last time that the colonel needed to have his machine overhauled, I fancy." "Good heavens!" cried my patient. "Then that explains what the girl said." "Undoubtedly. It is quite clear that the colonel was a cool and desperate man, who was absolutely determined that nothing should stand in the way of his little game, like those out-and-out pirates who will leave no survivor from a captured ship. Well, every moment now is precious, so if you feel equal to it we shall go down to Scotland Yard at once as a preliminary to starting for Eyford." Some three hours or so afterwards we were all in the train together, bound from Reading to the little Berkshire village. There were Sherlock Holmes, the hydraulic engineer, Inspector Bradstreet, of Scotland Yard, a plain-clothes man, and myself. Bradstreet had spread an ordnance map of the county out upon the seat and was busy with his compasses drawing a circle with Eyford for its centre. "There you are," said he. "That circle is drawn at a radius of ten miles from the village. The place we want must be somewhere near that line. You said ten miles, I think, sir." "It was an hour's good drive." "And you think that they brought you back all that way when you were unconscious?" "They must have done so. I have a confused memory, too, of having been lifted and conveyed somewhere." "What I cannot understand," said I, "is why they should have spared you when they found you lying fainting in the garden. Perhaps the villain was softened by the woman's entreaties." "I hardly think that likely. I never saw a more inexorable face in my life." "Oh, we shall soon clear up all that," said Bradstreet. "Well, I have drawn my circle, and I only wish I knew at what point upon it the folk that we are in search of are to be found." "I think I could lay my finger on it," said Holmes quietly. "Really, now!" cried the inspector, "you have formed your opinion! Come, now, we shall see who agrees with you. I say it is south, for the country is more deserted there." "And I say east," said my patient. "I am for west," remarked the plain-clothes man. "There are several quiet little villages up there." "And I am for north," said I, "because there are no hills there, and our friend says that he did not notice the carriage go up any." "Come," cried the inspector, laughing; "it's a very pretty diversity of opinion. We have boxed the compass among us. Who do you give your casting vote to?" "You are all wrong." "But we can't all be." "Oh, yes, you can. This is my point." He placed his finger in the centre of the circle. "This is where we shall find them." "But the twelve-mile drive?" gasped Hatherley. "Six out and six back. Nothing simpler. You say yourself that the horse was fresh and glossy when you got in. How could it be that if it had gone twelve miles over heavy roads?" "Indeed, it is a likely ruse enough," observed Bradstreet thoughtfully. "Of course there can be no doubt as to the nature of this gang." "None at all," said Holmes. "They are coiners on a large scale, and have used the machine to form the amalgam which has taken the place of silver." "We have known for some time that a clever gang was at work," said the inspector. "They have been turning out half-crowns by the thousand. We even traced them as far as Reading, but could get no farther, for they had covered their traces in a way that showed that they were very old hands. But now, thanks to this lucky chance, I think that we have got them right enough." But the inspector was mistaken, for those criminals were not destined to fall into the hands of justice. As we rolled into Eyford Station we saw a gigantic column of smoke which streamed up from behind a small clump of trees in the neighbourhood and hung like an immense ostrich feather over the landscape. "A house on fire?" asked Bradstreet as the train steamed off again on its way. "Yes, sir!" said the station-master. "When did it break out?" "I hear that it was during the night, sir, but it has got worse, and the whole place is in a blaze." "Whose house is it?" "Dr. Becher's." "Tell me," broke in the engineer, "is Dr. Becher a German, very thin, with a long, sharp nose?" The station-master laughed heartily. "No, sir, Dr. Becher is an Englishman, and there isn't a man in the parish who has a better-lined waistcoat. But he has a gentleman staying with him, a patient, as I understand, who is a foreigner, and he looks as if a little good Berkshire beef would do him no harm." The station-master had not finished his speech before we were all hastening in the direction of the fire. The road topped a low hill, and there was a great widespread whitewashed building in front of us, spouting fire at every chink and window, while in the garden in front three fire-engines were vainly striving to keep the flames under. "That's it!" cried Hatherley, in intense excitement. "There is the gravel-drive, and there are the rose-bushes where I lay. That second window is the one that I jumped from." "Well, at least," said Holmes, "you have had your revenge upon them. There can be no question that it was your oil-lamp which, when it was crushed in the press, set fire to the wooden walls, though no doubt they were too excited in the chase after you to observe it at the time. Now keep your eyes open in this crowd for your friends of last night, though I very much fear that they are a good hundred miles off by now." And Holmes' fears came to be realised, for from that day to this no word has ever been heard either of the beautiful woman, the sinister German, or the morose Englishman. Early that morning a peasant had met a cart containing several people and some very bulky boxes driving rapidly in the direction of Reading, but there all traces of the fugitives disappeared, and even Holmes' ingenuity failed ever to discover the least clue as to their whereabouts. The firemen had been much perturbed at the strange arrangements which they had found within, and still more so by discovering a newly severed human thumb upon a window-sill of the second floor. About sunset, however, their efforts were at last successful, and they subdued the flames, but not before the roof had fallen in, and the whole place been reduced to such absolute ruin that, save some twisted cylinders and iron piping, not a trace remained of the machinery which had cost our unfortunate acquaintance so dearly. Large masses of nickel and of tin were discovered stored in an out-house, but no coins were to be found, which may have explained the presence of those bulky boxes which have been already referred to. How our hydraulic engineer had been conveyed from the garden to the spot where he recovered his senses might have remained forever a mystery were it not for the soft mould, which told us a very plain tale. He had evidently been carried down by two persons, one of whom had remarkably small feet and the other unusually large ones. On the whole, it was most probable that the silent Englishman, being less bold or less murderous than his companion, had assisted the woman to bear the unconscious man out of the way of danger. "Well," said our engineer ruefully as we took our seats to return once more to London, "it has been a pretty business for me! I have lost my thumb and I have lost a fifty-guinea fee, and what have I gained?" "Experience," said Holmes, laughing. "Indirectly it may be of value, you know; you have only to put it into words to gain the reputation of being excellent company for the remainder of your existence." X. THE ADVENTURE OF THE NOBLE BACHELOR The Lord St. Simon marriage, and its curious termination, have long ceased to be a subject of interest in those exalted circles in which the unfortunate bridegroom moves. Fresh scandals have eclipsed it, and their more piquant details have drawn the gossips away from this four-year-old drama. As I have reason to believe, however, that the full facts have never been revealed to the general public, and as my friend Sherlock Holmes had a considerable share in clearing the matter up, I feel that no memoir of him would be complete without some little sketch of this remarkable episode. It was a few weeks before my own marriage, during the days when I was still sharing rooms with Holmes in Baker Street, that he came home from an afternoon stroll to find a letter on the table waiting for him. I had remained indoors all day, for the weather had taken a sudden turn to rain, with high autumnal winds, and the Jezail bullet which I had brought back in one of my limbs as a relic of my Afghan campaign throbbed with dull persistence. With my body in one easy-chair and my legs upon another, I had surrounded myself with a cloud of newspapers until at last, saturated with the news of the day, I tossed them all aside and lay listless, watching the huge crest and monogram upon the envelope upon the table and wondering lazily who my friend's noble correspondent could be. "Here is a very fashionable epistle," I remarked as he entered. "Your morning letters, if I remember right, were from a fish-monger and a tide-waiter." "Yes, my correspondence has certainly the charm of variety," he answered, smiling, "and the humbler are usually the more interesting. This looks like one of those unwelcome social summonses which call upon a man either to be bored or to lie." He broke the seal and glanced over the contents. "Oh, come, it may prove to be something of interest, after all." "Not social, then?" "No, distinctly professional." "And from a noble client?" "One of the highest in England." "My dear fellow, I congratulate you." "I assure you, Watson, without affectation, that the status of my client is a matter of less moment to me than the interest of his case. It is just possible, however, that that also may not be wanting in this new investigation. You have been reading the papers diligently of late, have you not?" "It looks like it," said I ruefully, pointing to a huge bundle in the corner. "I have had nothing else to do." "It is fortunate, for you will perhaps be able to post me up. I read nothing except the criminal news and the agony column. The latter is always instructive. But if you have followed recent events so closely you must have read about Lord St. Simon and his wedding?" "Oh, yes, with the deepest interest." "That is well. The letter which I hold in my hand is from Lord St. Simon. I will read it to you, and in return you must turn over these papers and let me have whatever bears upon the matter. This is what he says: " 'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I may place implicit reliance upon your judgment and discretion. I have determined, therefore, to call upon you and to consult you in reference to the very painful event which has occurred in connection with my wedding. Mr. Lestrade, of Scotland Yard, is acting already in the matter, but he assures me that he sees no objection to your co-operation, and that he even thinks that it might be of some assistance. I will call at four o'clock in the afternoon, and, should you have any other engagement at that time, I hope that you will postpone it, as this matter is of paramount importance. Yours faithfully, " 'ST. SIMON.' "It is dated from Grosvenor Mansions, written with a quill pen, and the noble lord has had the misfortune to get a smear of ink upon the outer side of his right little finger," remarked Holmes as he folded up the epistle. "He says four o'clock. It is three now. He will be here in an hour." "Then I have just time, with your assistance, to get clear upon the subject. Turn over those papers and arrange the extracts in their order of time, while I take a glance as to who our client is." He picked a red-covered volume from a line of books of reference beside the mantelpiece. "Here he is," said he, sitting down and flattening it out upon his knee. " 'Lord Robert Walsingham de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: Azure, three caltrops in chief over a fess sable. Born in 1846.' He's forty-one years of age, which is mature for marriage. Was Under-Secretary for the colonies in a late administration. The Duke, his father, was at one time Secretary for Foreign Affairs. They inherit Plantagenet blood by direct descent, and Tudor on the distaff side. Ha! Well, there is nothing very instructive in all this. I think that I must turn to you Watson, for something more solid." "I have very little difficulty in finding what I want," said I, "for the facts are quite recent, and the matter struck me as remarkable. I feared to refer them to you, however, as I knew that you had an inquiry on hand and that you disliked the intrusion of other matters." "Oh, you mean the little problem of the Grosvenor Square furniture van. That is quite cleared up now--though, indeed, it was obvious from the first. Pray give me the results of your newspaper selections." "Here is the first notice which I can find. It is in the personal column of the Morning Post, and dates, as you see, some weeks back: 'A marriage has been arranged,' it says, 'and will, if rumour is correct, very shortly take place, between Lord Robert St. Simon, second son of the Duke of Balmoral, and Miss Hatty Doran, the only daughter of Aloysius Doran. Esq., of San Francisco, Cal., U.S.A.' That is all." "Terse and to the point," remarked Holmes, stretching his long, thin legs towards the fire. "There was a paragraph amplifying this in one of the society papers of the same week. Ah, here it is: 'There will soon be a call for protection in the marriage market, for the present free-trade principle appears to tell heavily against our home product. One by one the management of the noble houses of Great Britain is passing into the hands of our fair cousins from across the Atlantic. An important addition has been made during the last week to the list of the prizes which have been borne away by these charming invaders. Lord St. Simon, who has shown himself for over twenty years proof against the little god's arrows, has now definitely announced his approaching marriage with Miss Hatty Doran, the fascinating daughter of a California millionaire. Miss Doran, whose graceful figure and striking face attracted much attention at the Westbury House festivities, is an only child, and it is currently reported that her dowry will run to considerably over the six figures, with expectancies for the future. As it is an open secret that the Duke of Balmoral has been compelled to sell his pictures within the last few years, and as Lord St. Simon has no property of his own save the small estate of Birchmoor, it is obvious that the Californian heiress is not the only gainer by an alliance which will enable her to make the easy and common transition from a Republican lady to a British peeress.' " "Anything else?" asked Holmes, yawning. "Oh, yes; plenty. Then there is another note in the Morning Post to say that the marriage would be an absolutely quiet one, that it would be at St. George's, Hanover Square, that only half a dozen intimate friends would be invited, and that the party would return to the furnished house at Lancaster Gate which has been taken by Mr. Aloysius Doran. Two days later--that is, on Wednesday last--there is a curt announcement that the wedding had taken place, and that the honeymoon would be passed at Lord Backwater's place, near Petersfield. Those are all the notices which appeared before the disappearance of the bride." "Before the what?" asked Holmes with a start. "The vanishing of the lady." "When did she vanish, then?" "At the wedding breakfast." "Indeed. This is more interesting than it promised to be; quite dramatic, in fact." "Yes; it struck me as being a little out of the common." "They often vanish before the ceremony, and occasionally during the honeymoon; but I cannot call to mind anything quite so prompt as this. Pray let me have the details." "I warn you that they are very incomplete." "Perhaps we may make them less so." "Such as they are, they are set forth in a single article of a morning paper of yesterday, which I will read to you. It is headed, 'Singular Occurrence at a Fashionable Wedding': " 'The family of Lord Robert St. Simon has been thrown into the greatest consternation by the strange and painful episodes which have taken place in connection with his wedding. The ceremony, as shortly announced in the papers of yesterday, occurred on the previous morning; but it is only now that it has been possible to confirm the strange rumours which have been so persistently floating about. In spite of the attempts of the friends to hush the matter up, so much public attention has now been drawn to it that no good purpose can be served by affecting to disregard what is a common subject for conversation. " 'The ceremony, which was performed at St. George's, Hanover Square, was a very quiet one, no one being present save the father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, Lord Backwater, Lord Eustace and Lady Clara St. Simon (the younger brother and sister of the bridegroom), and Lady Alicia Whittington. The whole party proceeded afterwards to the house of Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been prepared. It appears that some little trouble was caused by a woman, whose name has not been ascertained, who endeavoured to force her way into the house after the bridal party, alleging that she had some claim upon Lord St. Simon. It was only after a painful and prolonged scene that she was ejected by the butler and the footman. The bride, who had fortunately entered the house before this unpleasant interruption, had sat down to breakfast with the rest, when she complained of a sudden indisposition and retired to her room. Her prolonged absence having caused some comment, her father followed her, but learned from her maid that she had only come up to her chamber for an instant, caught up an ulster and bonnet, and hurried down to the passage. One of the footmen declared that he had seen a lady leave the house thus apparelled, but had refused to credit that it was his mistress, believing her to be with the company. On ascertaining that his daughter had disappeared, Mr. Aloysius Doran, in conjunction with the bridegroom, instantly put themselves in communication with the police, and very energetic inquiries are being made, which will probably result in a speedy clearing up of this very singular business. Up to a late hour last night, however, nothing had transpired as to the whereabouts of the missing lady. There are rumours of foul play in the matter, and it is said that the police have caused the arrest of the woman who had caused the original disturbance, in the belief that, from jealousy or some other motive, she may have been concerned in the strange disappearance of the bride.' " "And is that all?" "Only one little item in another of the morning papers, but it is a suggestive one." "And it is--" "That Miss Flora Millar, the lady who had caused the disturbance, has actually been arrested. It appears that she was formerly a danseuse at the Allegro, and that she has known the bridegroom for some years. There are no further particulars, and the whole case is in your hands now--so far as it has been set forth in the public press." "And an exceedingly interesting case it appears to be. I would not have missed it for worlds. But there is a ring at the bell, Watson, and as the clock makes it a few minutes after four, I have no doubt that this will prove to be our noble client. Do not dream of going, Watson, for I very much prefer having a witness, if only as a check to my own memory." "Lord Robert St. Simon," announced our page-boy, throwing open the door. A gentleman entered, with a pleasant, cultured face, high-nosed and pale, with something perhaps of petulance about the mouth, and with the steady, well-opened eye of a man whose pleasant lot it had ever been to command and to be obeyed. His manner was brisk, and yet his general appearance gave an undue impression of age, for he had a slight forward stoop and a little bend of the knees as he walked. His hair, too, as he swept off his very curly-brimmed hat, was grizzled round the edges and thin upon the top. As to his dress, it was careful to the verge of foppishness, with high collar, black frock-coat, white waistcoat, yellow gloves, patent-leather shoes, and light-coloured gaiters. He advanced slowly into the room, turning his head from left to right, and swinging in his right hand the cord which held his golden eyeglasses. "Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray take the basket-chair. This is my friend and colleague, Dr. Watson. Draw up a little to the fire, and we will talk this matter over." "A most painful matter to me, as you can most readily imagine, Mr. Holmes. I have been cut to the quick. I understand that you have already managed several delicate cases of this sort, sir, though I presume that they were hardly from the same class of society." "No, I am descending." "I beg pardon." "My last client of the sort was a king." "Oh, really! I had no idea. And which king?" "The King of Scandinavia." "What! Had he lost his wife?" "You can understand," said Holmes suavely, "that I extend to the affairs of my other clients the same secrecy which I promise to you in yours." "Of course! Very right! very right! I'm sure I beg pardon. As to my own case, I am ready to give you any information which may assist you in forming an opinion." "Thank you. I have already learned all that is in the public prints, nothing more. I presume that I may take it as correct--this article, for example, as to the disappearance of the bride." Lord St. Simon glanced over it. "Yes, it is correct, as far as it goes." "But it needs a great deal of supplementing before anyone could offer an opinion. I think that I may arrive at my facts most directly by questioning you." "Pray do so." "When did you first meet Miss Hatty Doran?" "In San Francisco, a year ago." "You were travelling in the States?" "Yes." "Did you become engaged then?" "No." "But you were on a friendly footing?" "I was amused by her society, and she could see that I was amused." "Her father is very rich?" "He is said to be the richest man on the Pacific slope." "And how did he make his money?" "In mining. He had nothing a few years ago. Then he struck gold, invested it, and came up by leaps and bounds." "Now, what is your own impression as to the young lady's--your wife's character?" The nobleman swung his glasses a little faster and stared down into the fire. "You see, Mr. Holmes," said he, "my wife was twenty before her father became a rich man. During that time she ran free in a mining camp and wandered through woods or mountains, so that her education has come from Nature rather than from the schoolmaster. She is what we call in England a tomboy, with a strong nature, wild and free, unfettered by any sort of traditions. She is impetuous--volcanic, I was about to say. She is swift in making up her mind and fearless in carrying out her resolutions. On the other hand, I would not have given her the name which I have the honour to bear"--he gave a little stately cough--"had I not thought her to be at bottom a noble woman. I believe that she is capable of heroic self-sacrifice and that anything dishonourable would be repugnant to her." "Have you her photograph?" "I brought this with me." He opened a locket and showed us the full face of a very lovely woman. It was not a photograph but an ivory miniature, and the artist had brought out the full effect of the lustrous black hair, the large dark eyes, and the exquisite mouth. Holmes gazed long and earnestly at it. Then he closed the locket and handed it back to Lord St. Simon. "The young lady came to London, then, and you renewed your acquaintance?" "Yes, her father brought her over for this last London season. I met her several times, became engaged to her, and have now married her." "She brought, I understand, a considerable dowry?" "A fair dowry. Not more than is usual in my family." "And this, of course, remains to you, since the marriage is a fait accompli?" "I really have made no inquiries on the subject." "Very naturally not. Did you see Miss Doran on the day before the wedding?" "Yes." "Was she in good spirits?" "Never better. She kept talking of what we should do in our future lives." "Indeed! That is very interesting. And on the morning of the wedding?" "She was as bright as possible--at least until after the ceremony." "And did you observe any change in her then?" "Well, to tell the truth, I saw then the first signs that I had ever seen that her temper was just a little sharp. The incident however, was too trivial to relate and can have no possible bearing upon the case." "Pray let us have it, for all that." "Oh, it is childish. She dropped her bouquet as we went towards the vestry. She was passing the front pew at the time, and it fell over into the pew. There was a moment's delay, but the gentleman in the pew handed it up to her again, and it did not appear to be the worse for the fall. Yet when I spoke to her of the matter, she answered me abruptly; and in the carriage, on our way home, she seemed absurdly agitated over this trifling cause." "Indeed! You say that there was a gentleman in the pew. Some of the general public were present, then?" "Oh, yes. It is impossible to exclude them when the church is open." "This gentleman was not one of your wife's friends?" "No, no; I call him a gentleman by courtesy, but he was quite a common-looking person. I hardly noticed his appearance. But really I think that we are wandering rather far from the point." "Lady St. Simon, then, returned from the wedding in a less cheerful frame of mind than she had gone to it. What did she do on re-entering her father's house?" "I saw her in conversation with her maid." "And who is her maid?" "Alice is her name. She is an American and came from California with her." "A confidential servant?" "A little too much so. It seemed to me that her mistress allowed her to take great liberties. Still, of course, in America they look upon these things in a different way." "How long did she speak to this Alice?" "Oh, a few minutes. I had something else to think of." "You did not overhear what they said?" "Lady St. Simon said something about 'jumping a claim.' She was accustomed to use slang of the kind. I have no idea what she meant." "American slang is very expressive sometimes. And what did your wife do when she finished speaking to her maid?" "She walked into the breakfast-room." "On your arm?" "No, alone. She was very independent in little matters like that. Then, after we had sat down for ten minutes or so, she rose hurriedly, muttered some words of apology, and left the room. She never came back." "But this maid, Alice, as I understand, deposes that she went to her room, covered her bride's dress with a long ulster, put on a bonnet, and went out." "Quite so. And she was afterwards seen walking into Hyde Park in company with Flora Millar, a woman who is now in custody, and who had already made a disturbance at Mr. Doran's house that morning." "Ah, yes. I should like a few particulars as to this young lady, and your relations to her." Lord St. Simon shrugged his shoulders and raised his eyebrows. "We have been on a friendly footing for some years--I may say on a very friendly footing. She used to be at the Allegro. I have not treated her ungenerously, and she had no just cause of complaint against me, but you know what women are, Mr. Holmes. Flora was a dear little thing, but exceedingly hot-headed and devotedly attached to me. She wrote me dreadful letters when she heard that I was about to be married, and, to tell the truth, the reason why I had the marriage celebrated so quietly was that I feared lest there might be a scandal in the church. She came to Mr. Doran's door just after we returned, and she endeavoured to push her way in, uttering very abusive expressions towards my wife, and even threatening her, but I had foreseen the possibility of something of the sort, and I had two police fellows there in private clothes, who soon pushed her out again. She was quiet when she saw that there was no good in making a row." "Did your wife hear all this?" "No, thank goodness, she did not." "And she was seen walking with this very woman afterwards?" "Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as so serious. It is thought that Flora decoyed my wife out and laid some terrible trap for her." "Well, it is a possible supposition." "You think so, too?" "I did not say a probable one. But you do not yourself look upon this as likely?" "I do not think Flora would hurt a fly." "Still, jealousy is a strange transformer of characters. Pray what is your own theory as to what took place?" "Well, really, I came to seek a theory, not to propound one. I have given you all the facts. Since you ask me, however, I may say that it has occurred to me as possible that the excitement of this affair, the consciousness that she had made so immense a social stride, had the effect of causing some little nervous disturbance in my wife." "In short, that she had become suddenly deranged?" "Well, really, when I consider that she has turned her back--I will not say upon me, but upon so much that many have aspired to without success--I can hardly explain it in any other fashion." "Well, certainly that is also a conceivable hypothesis," said Holmes, smiling. "And now, Lord St. Simon, I think that I have nearly all my data. May I ask whether you were seated at the breakfast-table so that you could see out of the window?" "We could see the other side of the road and the Park." "Quite so. Then I do not think that I need to detain you longer. I shall communicate with you." "Should you be fortunate enough to solve this problem," said our client, rising. "I have solved it." "Eh? What was that?" "I say that I have solved it." "Where, then, is my wife?" "That is a detail which I shall speedily supply." Lord St. Simon shook his head. "I am afraid that it will take wiser heads than yours or mine," he remarked, and bowing in a stately, old-fashioned manner he departed. "It is very good of Lord St. Simon to honour my head by putting it on a level with his own," said Sherlock Holmes, laughing. "I think that I shall have a whisky and soda and a cigar after all this cross-questioning. I had formed my conclusions as to the case before our client came into the room." "My dear Holmes!" "I have notes of several similar cases, though none, as I remarked before, which were quite as prompt. My whole examination served to turn my conjecture into a certainty. Circumstantial evidence is occasionally very convincing, as when you find a trout in the milk, to quote Thoreau's example." "But I have heard all that you have heard." "Without, however, the knowledge of pre-existing cases which serves me so well. There was a parallel instance in Aberdeen some years back, and something on very much the same lines at Munich the year after the Franco-Prussian War. It is one of these cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! You will find an extra tumbler upon the sideboard, and there are cigars in the box." The official detective was attired in a pea-jacket and cravat, which gave him a decidedly nautical appearance, and he carried a black canvas bag in his hand. With a short greeting he seated himself and lit the cigar which had been offered to him. "What's up, then?" asked Holmes with a twinkle in his eye. "You look dissatisfied." "And I feel dissatisfied. It is this infernal St. Simon marriage case. I can make neither head nor tail of the business." "Really! You surprise me." "Who ever heard of such a mixed affair? Every clue seems to slip through my fingers. I have been at work upon it all day." "And very wet it seems to have made you," said Holmes laying his hand upon the arm of the pea-jacket. "Yes, I have been dragging the Serpentine." "In heaven's name, what for?" "In search of the body of Lady St. Simon." Sherlock Holmes leaned back in his chair and laughed heartily. "Have you dragged the basin of Trafalgar Square fountain?" he asked. "Why? What do you mean?" "Because you have just as good a chance of finding this lady in the one as in the other." Lestrade shot an angry glance at my companion. "I suppose you know all about it," he snarled. "Well, I have only just heard the facts, but my mind is made up." "Oh, indeed! Then you think that the Serpentine plays no part in the matter?" "I think it very unlikely." "Then perhaps you will kindly explain how it is that we found this in it?" He opened his bag as he spoke, and tumbled onto the floor a wedding-dress of watered silk, a pair of white satin shoes and a bride's wreath and veil, all discoloured and soaked in water. "There," said he, putting a new wedding-ring upon the top of the pile. "There is a little nut for you to crack, Master Holmes." "Oh, indeed!" said my friend, blowing blue rings into the air. "You dragged them from the Serpentine?" "No. They were found floating near the margin by a park-keeper. They have been identified as her clothes, and it seemed to me that if the clothes were there the body would not be far off." "By the same brilliant reasoning, every man's body is to be found in the neighbourhood of his wardrobe. And pray what did you hope to arrive at through this?" "At some evidence implicating Flora Millar in the disappearance." "I am afraid that you will find it difficult." "Are you, indeed, now?" cried Lestrade with some bitterness. "I am afraid, Holmes, that you are not very practical with your deductions and your inferences. You have made two blunders in as many minutes. This dress does implicate Miss Flora Millar." "And how?" "In the dress is a pocket. In the pocket is a card-case. In the card-case is a note. And here is the very note." He slapped it down upon the table in front of him. "Listen to this: 'You will see me when all is ready. Come at once. F. H. M.' Now my theory all along has been that Lady St. Simon was decoyed away by Flora Millar, and that she, with confederates, no doubt, was responsible for her disappearance. Here, signed with her initials, is the very note which was no doubt quietly slipped into her hand at the door and which lured her within their reach." "Very good, Lestrade," said Holmes, laughing. "You really are very fine indeed. Let me see it." He took up the paper in a listless way, but his attention instantly became riveted, and he gave a little cry of satisfaction. "This is indeed important," said he. "Ha! you find it so?" "Extremely so. I congratulate you warmly." Lestrade rose in his triumph and bent his head to look. "Why," he shrieked, "you're looking at the wrong side!" "On the contrary, this is the right side." "The right side? You're mad! Here is the note written in pencil over here." "And over here is what appears to be the fragment of a hotel bill, which interests me deeply." "There's nothing in it. I looked at it before," said Lestrade. " 'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. 6d., glass sherry, 8d.' I see nothing in that." "Very likely not. It is most important, all the same. As to the note, it is important also, or at least the initials are, so I congratulate you again." "I've wasted time enough," said Lestrade, rising. "I believe in hard work and not in sitting by the fire spinning fine theories. Good-day, Mr. Holmes, and we shall see which gets to the bottom of the matter first." He gathered up the garments, thrust them into the bag, and made for the door. "Just one hint to you, Lestrade," drawled Holmes before his rival vanished; "I will tell you the true solution of the matter. Lady St. Simon is a myth. There is not, and there never has been, any such person." Lestrade looked sadly at my companion. Then he turned to me, tapped his forehead three times, shook his head solemnly, and hurried away. He had hardly shut the door behind him when Holmes rose to put on his overcoat. "There is something in what the fellow says about outdoor work," he remarked, "so I think, Watson, that I must leave you to your papers for a little." It was after five o'clock when Sherlock Holmes left me, but I had no time to be lonely, for within an hour there arrived a confectioner's man with a very large flat box. This he unpacked with the help of a youth whom he had brought with him, and presently, to my very great astonishment, a quite epicurean little cold supper began to be laid out upon our humble lodging-house mahogany. There were a couple of brace of cold woodcock, a pheasant, a pate de foie gras pie with a group of ancient and cobwebby bottles. Having laid out all these luxuries, my two visitors vanished away, like the genii of the Arabian Nights, with no explanation save that the things had been paid for and were ordered to this address. Just before nine o'clock Sherlock Holmes stepped briskly into the room. His features were gravely set, but there was a light in his eye which made me think that he had not been disappointed in his conclusions. "They have laid the supper, then," he said, rubbing his hands. "You seem to expect company. They have laid for five." "Yes, I fancy we may have some company dropping in," said he. "I am surprised that Lord St. Simon has not already arrived. Ha! I fancy that I hear his step now upon the stairs." It was indeed our visitor of the afternoon who came bustling in, dangling his glasses more vigorously than ever, and with a very perturbed expression upon his aristocratic features. "My messenger reached you, then?" asked Holmes. "Yes, and I confess that the contents startled me beyond measure. Have you good authority for what you say?" "The best possible." Lord St. Simon sank into a chair and passed his hand over his forehead. "What will the Duke say," he murmured, "when he hears that one of the family has been subjected to such humiliation?" "It is the purest accident. I cannot allow that there is any humiliation." "Ah, you look on these things from another standpoint." "I fail to see that anyone is to blame. I can hardly see how the lady could have acted otherwise, though her abrupt method of doing it was undoubtedly to be regretted. Having no mother, she had no one to advise her at such a crisis." "It was a slight, sir, a public slight," said Lord St. Simon, tapping his fingers upon the table. "You must make allowance for this poor girl, placed in so unprecedented a position." "I will make no allowance. I am very angry indeed, and I have been shamefully used." "I think that I heard a ring," said Holmes. "Yes, there are steps on the landing. If I cannot persuade you to take a lenient view of the matter, Lord St. Simon, I have brought an advocate here who may be more successful." He opened the door and ushered in a lady and gentleman. "Lord St. Simon," said he "allow me to introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I think, you have already met." At the sight of these newcomers our client had sprung from his seat and stood very erect, with his eyes cast down and his hand thrust into the breast of his frock-coat, a picture of offended dignity. The lady had taken a quick step forward and had held out her hand to him, but he still refused to raise his eyes. It was as well for his resolution, perhaps, for her pleading face was one which it was hard to resist. "You're angry, Robert," said she. "Well, I guess you have every cause to be." "Pray make no apology to me," said Lord St. Simon bitterly. "Oh, yes, I know that I have treated you real bad and that I should have spoken to you before I went; but I was kind of rattled, and from the time when I saw Frank here again I just didn't know what I was doing or saying. I only wonder I didn't fall down and do a faint right there before the altar." "Perhaps, Mrs. Moulton, you would like my friend and me to leave the room while you explain this matter?" "If I may give an opinion," remarked the strange gentleman, "we've had just a little too much secrecy over this business already. For my part, I should like all Europe and America to hear the rights of it." He was a small, wiry, sunburnt man, clean-shaven, with a sharp face and alert manner. "Then I'll tell our story right away," said the lady. "Frank here and I met in '84, in McQuire's camp, near the Rockies, where Pa was working a claim. We were engaged to each other, Frank and I; but then one day father struck a rich pocket and made a pile, while poor Frank here had a claim that petered out and came to nothing. The richer Pa grew the poorer was Frank; so at last Pa wouldn't hear of our engagement lasting any longer, and he took me away to 'Frisco. Frank wouldn't throw up his hand, though; so he followed me there, and he saw me without Pa knowing anything about it. It would only have made him mad to know, so we just fixed it all up for ourselves. Frank said that he would go and make his pile, too, and never come back to claim me until he had as much as Pa. So then I promised to wait for him to the end of time and pledged myself not to marry anyone else while he lived. 'Why shouldn't we be married right away, then,' said he, 'and then I will feel sure of you; and I won't claim to be your husband until I come back?' Well, we talked it over, and he had fixed it all up so nicely, with a clergyman all ready in waiting, that we just did it right there; and then Frank went off to seek his fortune, and I went back to Pa. "The next I heard of Frank was that he was in Montana, and then he went prospecting in Arizona, and then I heard of him from New Mexico. After that came a long newspaper story about how a miners' camp had been attacked by Apache Indians, and there was my Frank's name among the killed. I fainted dead away, and I was very sick for months after. Pa thought I had a decline and took me to half the doctors in 'Frisco. Not a word of news came for a year and more, so that I never doubted that Frank was really dead. Then Lord St. Simon came to 'Frisco, and we came to London, and a marriage was arranged, and Pa was very pleased, but I felt all the time that no man on this earth would ever take the place in my heart that had been given to my poor Frank. "Still, if I had married Lord St. Simon, of course I'd have done my duty by him. We can't command our love, but we can our actions. I went to the altar with him with the intention to make him just as good a wife as it was in me to be. But you may imagine what I felt when, just as I came to the altar rails, I glanced back and saw Frank standing and looking at me out of the first pew. I thought it was his ghost at first; but when I looked again there he was still, with a kind of question in his eyes, as if to ask me whether I were glad or sorry to see him. I wonder I didn't drop. I know that everything was turning round, and the words of the clergyman were just like the buzz of a bee in my ear. I didn't know what to do. Should I stop the service and make a scene in the church? I glanced at him again, and he seemed to know what I was thinking, for he raised his finger to his lips to tell me to be still. Then I saw him scribble on a piece of paper, and I knew that he was writing me a note. As I passed his pew on the way out I dropped my bouquet over to him, and he slipped the note into my hand when he returned me the flowers. It was only a line asking me to join him when he made the sign to me to do so. Of course I never doubted for a moment that my first duty was now to him, and I determined to do just whatever he might direct. "When I got back I told my maid, who had known him in California, and had always been his friend. I ordered her to say nothing, but to get a few things packed and my ulster ready. I know I ought to have spoken to Lord St. Simon, but it was dreadful hard before his mother and all those great people. I just made up my mind to run away and explain afterwards. I hadn't been at the table ten minutes before I saw Frank out of the window at the other side of the road. He beckoned to me and then began walking into the Park. I slipped out, put on my things, and followed him. Some woman came talking something or other about Lord St. Simon to me--seemed to me from the little I heard as if he had a little secret of his own before marriage also--but I managed to get away from her and soon overtook Frank. We got into a cab together, and away we drove to some lodgings he had taken in Gordon Square, and that was my true wedding after all those years of waiting. Frank had been a prisoner among the Apaches, had escaped, came on to 'Frisco, found that I had given him up for dead and had gone to England, followed me there, and had come upon me at last on the very morning of my second wedding." "I saw it in a paper," explained the American. "It gave the name and the church but not where the lady lived." "Then we had a talk as to what we should do, and Frank was all for openness, but I was so ashamed of it all that I felt as if I should like to vanish away and never see any of them again--just sending a line to Pa, perhaps, to show him that I was alive. It was awful to me to think of all those lords and ladies sitting round that breakfast-table and waiting for me to come back. So Frank took my wedding-clothes and things and made a bundle of them, so that I should not be traced, and dropped them away somewhere where no one could find them. It is likely that we should have gone on to Paris to-morrow, only that this good gentleman, Mr. Holmes, came round to us this evening, though how he found us is more than I can think, and he showed us very clearly and kindly that I was wrong and that Frank was right, and that we should be putting ourselves in the wrong if we were so secret. Then he offered to give us a chance of talking to Lord St. Simon alone, and so we came right away round to his rooms at once. Now, Robert, you have heard it all, and I am very sorry if I have given you pain, and I hope that you do not think very meanly of me." Lord St. Simon had by no means relaxed his rigid attitude, but had listened with a frowning brow and a compressed lip to this long narrative. "Excuse me," he said, "but it is not my custom to discuss my most intimate personal affairs in this public manner." "Then you won't forgive me? You won't shake hands before I go?" "Oh, certainly, if it would give you any pleasure." He put out his hand and coldly grasped that which she extended to him. "I had hoped," suggested Holmes, "that you would have joined us in a friendly supper." "I think that there you ask a little too much," responded his Lordship. "I may be forced to acquiesce in these recent developments, but I can hardly be expected to make merry over them. I think that with your permission I will now wish you all a very good-night." He included us all in a sweeping bow and stalked out of the room. "Then I trust that you at least will honour me with your company," said Sherlock Holmes. "It is always a joy to meet an American, Mr. Moulton, for I am one of those who believe that the folly of a monarch and the blundering of a minister in far-gone years will not prevent our children from being some day citizens of the same world-wide country under a flag which shall be a quartering of the Union Jack with the Stars and Stripes." "The case has been an interesting one," remarked Holmes when our visitors had left us, "because it serves to show very clearly how simple the explanation may be of an affair which at first sight seems to be almost inexplicable. Nothing could be more natural than the sequence of events as narrated by this lady, and nothing stranger than the result when viewed, for instance, by Mr. Lestrade of Scotland Yard." "You were not yourself at fault at all, then?" "From the first, two facts were very obvious to me, the one that the lady had been quite willing to undergo the wedding ceremony, the other that she had repented of it within a few minutes of returning home. Obviously something had occurred during the morning, then, to cause her to change her mind. What could that something be? She could not have spoken to anyone when she was out, for she had been in the company of the bridegroom. Had she seen someone, then? If she had, it must be someone from America because she had spent so short a time in this country that she could hardly have allowed anyone to acquire so deep an influence over her that the mere sight of him would induce her to change her plans so completely. You see we have already arrived, by a process of exclusion, at the idea that she might have seen an American. Then who could this American be, and why should he possess so much influence over her? It might be a lover; it might be a husband. Her young womanhood had, I knew, been spent in rough scenes and under strange conditions. So far I had got before I ever heard Lord St. Simon's narrative. When he told us of a man in a pew, of the change in the bride's manner, of so transparent a device for obtaining a note as the dropping of a bouquet, of her resort to her confidential maid, and of her very significant allusion to claim-jumping--which in miners' parlance means taking possession of that which another person has a prior claim to--the whole situation became absolutely clear. She had gone off with a man, and the man was either a lover or was a previous husband--the chances being in favour of the latter." "And how in the world did you find them?" "It might have been difficult, but friend Lestrade held information in his hands the value of which he did not himself know. The initials were, of course, of the highest importance, but more valuable still was it to know that within a week he had settled his bill at one of the most select London hotels." "How did you deduce the select?" "By the select prices. Eight shillings for a bed and eightpence for a glass of sherry pointed to one of the most expensive hotels. There are not many in London which charge at that rate. In the second one which I visited in Northumberland Avenue, I learned by an inspection of the book that Francis H. Moulton, an American gentleman, had left only the day before, and on looking over the entries against him, I came upon the very items which I had seen in the duplicate bill. His letters were to be forwarded to 226 Gordon Square; so thither I travelled, and being fortunate enough to find the loving couple at home, I ventured to give them some paternal advice and to point out to them that it would be better in every way that they should make their position a little clearer both to the general public and to Lord St. Simon in particular. I invited them to meet him here, and, as you see, I made him keep the appointment." "But with no very good result," I remarked. "His conduct was certainly not very gracious." "Ah, Watson," said Holmes, smiling, "perhaps you would not be very gracious either, if, after all the trouble of wooing and wedding, you found yourself deprived in an instant of wife and of fortune. I think that we may judge Lord St. Simon very mercifully and thank our stars that we are never likely to find ourselves in the same position. Draw your chair up and hand me my violin, for the only problem we have still to solve is how to while away these bleak autumnal evenings." XI. THE ADVENTURE OF THE BERYL CORONET "Holmes," said I as I stood one morning in our bow-window looking down the street, "here is a madman coming along. It seems rather sad that his relatives should allow him to come out alone." My friend rose lazily from his armchair and stood with his hands in the pockets of his dressing-gown, looking over my shoulder. It was a bright, crisp February morning, and the snow of the day before still lay deep upon the ground, shimmering brightly in the wintry sun. Down the centre of Baker Street it had been ploughed into a brown crumbly band by the traffic, but at either side and on the heaped-up edges of the foot-paths it still lay as white as when it fell. The grey pavement had been cleaned and scraped, but was still dangerously slippery, so that there were fewer passengers than usual. Indeed, from the direction of the Metropolitan Station no one was coming save the single gentleman whose eccentric conduct had drawn my attention. He was a man of about fifty, tall, portly, and imposing, with a massive, strongly marked face and a commanding figure. He was dressed in a sombre yet rich style, in black frock-coat, shining hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet his actions were in absurd contrast to the dignity of his dress and features, for he was running hard, with occasional little springs, such as a weary man gives who is little accustomed to set any tax upon his legs. As he ran he jerked his hands up and down, waggled his head, and writhed his face into the most extraordinary contortions. "What on earth can be the matter with him?" I asked. "He is looking up at the numbers of the houses." "I believe that he is coming here," said Holmes, rubbing his hands. "Here?" "Yes; I rather think he is coming to consult me professionally. I think that I recognise the symptoms. Ha! did I not tell you?" As he spoke, the man, puffing and blowing, rushed at our door and pulled at our bell until the whole house resounded with the clanging. A few moments later he was in our room, still puffing, still gesticulating, but with so fixed a look of grief and despair in his eyes that our smiles were turned in an instant to horror and pity. For a while he could not get his words out, but swayed his body and plucked at his hair like one who has been driven to the extreme limits of his reason. Then, suddenly springing to his feet, he beat his head against the wall with such force that we both rushed upon him and tore him away to the centre of the room. Sherlock Holmes pushed him down into the easy-chair and, sitting beside him, patted his hand and chatted with him in the easy, soothing tones which he knew so well how to employ. "You have come to me to tell your story, have you not?" said he. "You are fatigued with your haste. Pray wait until you have recovered yourself, and then I shall be most happy to look into any little problem which you may submit to me." The man sat for a minute or more with a heaving chest, fighting against his emotion. Then he passed his handkerchief over his brow, set his lips tight, and turned his face towards us. "No doubt you think me mad?" said he. "I see that you have had some great trouble," responded Holmes. "God knows I have!--a trouble which is enough to unseat my reason, so sudden and so terrible is it. Public disgrace I might have faced, although I am a man whose character has never yet borne a stain. Private affliction also is the lot of every man; but the two coming together, and in so frightful a form, have been enough to shake my very soul. Besides, it is not I alone. The very noblest in the land may suffer unless some way be found out of this horrible affair." "Pray compose yourself, sir," said Holmes, "and let me have a clear account of who you are and what it is that has befallen you." "My name," answered our visitor, "is probably familiar to your ears. I am Alexander Holder, of the banking firm of Holder & Stevenson, of Threadneedle Street." The name was indeed well known to us as belonging to the senior partner in the second largest private banking concern in the City of London. What could have happened, then, to bring one of the foremost citizens of London to this most pitiable pass? We waited, all curiosity, until with another effort he braced himself to tell his story. "I feel that time is of value," said he; "that is why I hastened here when the police inspector suggested that I should secure your co-operation. I came to Baker Street by the Underground and hurried from there on foot, for the cabs go slowly through this snow. That is why I was so out of breath, for I am a man who takes very little exercise. I feel better now, and I will put the facts before you as shortly and yet as clearly as I can. "It is, of course, well known to you that in a successful banking business as much depends upon our being able to find remunerative investments for our funds as upon our increasing our connection and the number of our depositors. One of our most lucrative means of laying out money is in the shape of loans, where the security is unimpeachable. We have done a good deal in this direction during the last few years, and there are many noble families to whom we have advanced large sums upon the security of their pictures, libraries, or plate. "Yesterday morning I was seated in my office at the bank when a card was brought in to me by one of the clerks. I started when I saw the name, for it was that of none other than--well, perhaps even to you I had better say no more than that it was a name which is a household word all over the earth--one of the highest, noblest, most exalted names in England. I was overwhelmed by the honour and attempted, when he entered, to say so, but he plunged at once into business with the air of a man who wishes to hurry quickly through a disagreeable task. " 'Mr. Holder,' said he, 'I have been informed that you are in the habit of advancing money.' " 'The firm does so when the security is good.' I answered. " 'It is absolutely essential to me,' said he, 'that I should have $50,000 at once. I could, of course, borrow so trifling a sum ten times over from my friends, but I much prefer to make it a matter of business and to carry out that business myself. In my position you can readily understand that it is unwise to place one's self under obligations.' " 'For how long, may I ask, do you want this sum?' I asked. " 'Next Monday I have a large sum due to me, and I shall then most certainly repay what you advance, with whatever interest you think it right to charge. But it is very essential to me that the money should be paid at once.' " 'I should be happy to advance it without further parley from my own private purse,' said I, 'were it not that the strain would be rather more than it could bear. If, on the other hand, I am to do it in the name of the firm, then in justice to my partner I must insist that, even in your case, every businesslike precaution should be taken.' " 'I should much prefer to have it so,' said he, raising up a square, black morocco case which he had laid beside his chair. 'You have doubtless heard of the Beryl Coronet?' " 'One of the most precious public possessions of the empire,' said I. " 'Precisely.' He opened the case, and there, imbedded in soft, flesh-coloured velvet, lay the magnificent piece of jewellery which he had named. 'There are thirty-nine enormous beryls,' said he, 'and the price of the gold chasing is incalculable. The lowest estimate would put the worth of the coronet at double the sum which I have asked. I am prepared to leave it with you as my security.' "I took the precious case into my hands and looked in some perplexity from it to my illustrious client. " 'You doubt its value?' he asked. " 'Not at all. I only doubt--' " 'The propriety of my leaving it. You may set your mind at rest about that. I should not dream of doing so were it not absolutely certain that I should be able in four days to reclaim it. It is a pure matter of form. Is the security sufficient?' " 'Ample.' " 'You understand, Mr. Holder, that I am giving you a strong proof of the confidence which I have in you, founded upon all that I have heard of you. I rely upon you not only to be discreet and to refrain from all gossip upon the matter but, above all, to preserve this coronet with every possible precaution because I need not say that a great public scandal would be caused if any harm were to befall it. Any injury to it would be almost as serious as its complete loss, for there are no beryls in the world to match these, and it would be impossible to replace them. I leave it with you, however, with every confidence, and I shall call for it in person on Monday morning.' "Seeing that my client was anxious to leave, I said no more but, calling for my cashier, I ordered him to pay over fifty $1000 notes. When I was alone once more, however, with the precious case lying upon the table in front of me, I could not but think with some misgivings of the immense responsibility which it entailed upon me. There could be no doubt that, as it was a national possession, a horrible scandal would ensue if any misfortune should occur to it. I already regretted having ever consented to take charge of it. However, it was too late to alter the matter now, so I locked it up in my private safe and turned once more to my work. "When evening came I felt that it would be an imprudence to leave so precious a thing in the office behind me. Bankers' safes had been forced before now, and why should not mine be? If so, how terrible would be the position in which I should find myself! I determined, therefore, that for the next few days I would always carry the case backward and forward with me, so that it might never be really out of my reach. With this intention, I called a cab and drove out to my house at Streatham, carrying the jewel with me. I did not breathe freely until I had taken it upstairs and locked it in the bureau of my dressing-room. "And now a word as to my household, Mr. Holmes, for I wish you to thoroughly understand the situation. My groom and my page sleep out of the house, and may be set aside altogether. I have three maid-servants who have been with me a number of years and whose absolute reliability is quite above suspicion. Another, Lucy Parr, the second waiting-maid, has only been in my service a few months. She came with an excellent character, however, and has always given me satisfaction. She is a very pretty girl and has attracted admirers who have occasionally hung about the place. That is the only drawback which we have found to her, but we believe her to be a thoroughly good girl in every way. "So much for the servants. My family itself is so small that it will not take me long to describe it. I am a widower and have an only son, Arthur. He has been a disappointment to me, Mr. Holmes--a grievous disappointment. I have no doubt that I am myself to blame. People tell me that I have spoiled him. Very likely I have. When my dear wife died I felt that he was all I had to love. I could not bear to see the smile fade even for a moment from his face. I have never denied him a wish. Perhaps it would have been better for both of us had I been sterner, but I meant it for the best. "It was naturally my intention that he should succeed me in my business, but he was not of a business turn. He was wild, wayward, and, to speak the truth, I could not trust him in the handling of large sums of money. When he was young he became a member of an aristocratic club, and there, having charming manners, he was soon the intimate of a number of men with long purses and expensive habits. He learned to play heavily at cards and to squander money on the turf, until he had again and again to come to me and implore me to give him an advance upon his allowance, that he might settle his debts of honour. He tried more than once to break away from the dangerous company which he was keeping, but each time the influence of his friend, Sir George Burnwell, was enough to draw him back again. "And, indeed, I could not wonder that such a man as Sir George Burnwell should gain an influence over him, for he has frequently brought him to my house, and I have found myself that I could hardly resist the fascination of his manner. He is older than Arthur, a man of the world to his finger-tips, one who had been everywhere, seen everything, a brilliant talker, and a man of great personal beauty. Yet when I think of him in cold blood, far away from the glamour of his presence, I am convinced from his cynical speech and the look which I have caught in his eyes that he is one who should be deeply distrusted. So I think, and so, too, thinks my little Mary, who has a woman's quick insight into character. "And now there is only she to be described. She is my niece; but when my brother died five years ago and left her alone in the world I adopted her, and have looked upon her ever since as my daughter. She is a sunbeam in my house--sweet, loving, beautiful, a wonderful manager and housekeeper, yet as tender and quiet and gentle as a woman could be. She is my right hand. I do not know what I could do without her. In only one matter has she ever gone against my wishes. Twice my boy has asked her to marry him, for he loves her devotedly, but each time she has refused him. I think that if anyone could have drawn him into the right path it would have been she, and that his marriage might have changed his whole life; but now, alas! it is too late--forever too late! "Now, Mr. Holmes, you know the people who live under my roof, and I shall continue with my miserable story. "When we were taking coffee in the drawing-room that night after dinner, I told Arthur and Mary my experience, and of the precious treasure which we had under our roof, suppressing only the name of my client. Lucy Parr, who had brought in the coffee, had, I am sure, left the room; but I cannot swear that the door was closed. Mary and Arthur were much interested and wished to see the famous coronet, but I thought it better not to disturb it. " 'Where have you put it?' asked Arthur. " 'In my own bureau.' " 'Well, I hope to goodness the house won't be burgled during the night.' said he. " 'It is locked up,' I answered. " 'Oh, any old key will fit that bureau. When I was a youngster I have opened it myself with the key of the box-room cupboard.' "He often had a wild way of talking, so that I thought little of what he said. He followed me to my room, however, that night with a very grave face. " 'Look here, dad,' said he with his eyes cast down, 'can you let me have $200?' " 'No, I cannot!' I answered sharply. 'I have been far too generous with you in money matters.' " 'You have been very kind,' said he, 'but I must have this money, or else I can never show my face inside the club again.' " 'And a very good thing, too!' I cried. " 'Yes, but you would not have me leave it a dishonoured man,' said he. 'I could not bear the disgrace. I must raise the money in some way, and if you will not let me have it, then I must try other means.' "I was very angry, for this was the third demand during the month. 'You shall not have a farthing from me,' I cried, on which he bowed and left the room without another word. "When he was gone I unlocked my bureau, made sure that my treasure was safe, and locked it again. Then I started to go round the house to see that all was secure--a duty which I usually leave to Mary but which I thought it well to perform myself that night. As I came down the stairs I saw Mary herself at the side window of the hall, which she closed and fastened as I approached. " 'Tell me, dad,' said she, looking, I thought, a little disturbed, 'did you give Lucy, the maid, leave to go out to-night?' " 'Certainly not.' " 'She came in just now by the back door. I have no doubt that she has only been to the side gate to see someone, but I think that it is hardly safe and should be stopped.' " 'You must speak to her in the morning, or I will if you prefer it. Are you sure that everything is fastened?' " 'Quite sure, dad.' " 'Then, good-night.' I kissed her and went up to my bedroom again, where I was soon asleep. "I am endeavouring to tell you everything, Mr. Holmes, which may have any bearing upon the case, but I beg that you will question me upon any point which I do not make clear." "On the contrary, your statement is singularly lucid." "I come to a part of my story now in which I should wish to be particularly so. I am not a very heavy sleeper, and the anxiety in my mind tended, no doubt, to make me even less so than usual. About two in the morning, then, I was awakened by some sound in the house. It had ceased ere I was wide awake, but it had left an impression behind it as though a window had gently closed somewhere. I lay listening with all my ears. Suddenly, to my horror, there was a distinct sound of footsteps moving softly in the next room. I slipped out of bed, all palpitating with fear, and peeped round the corner of my dressing-room door. " 'Arthur!' I screamed, 'you villain! you thief! How dare you touch that coronet?' "The gas was half up, as I had left it, and my unhappy boy, dressed only in his shirt and trousers, was standing beside the light, holding the coronet in his hands. He appeared to be wrenching at it, or bending it with all his strength. At my cry he dropped it from his grasp and turned as pale as death. I snatched it up and examined it. One of the gold corners, with three of the beryls in it, was missing. " 'You blackguard!' I shouted, beside myself with rage. 'You have destroyed it! You have dishonoured me forever! Where are the jewels which you have stolen?' " 'Stolen!' he cried. " 'Yes, thief!' I roared, shaking him by the shoulder. " 'There are none missing. There cannot be any missing,' said he. " 'There are three missing. And you know where they are. Must I call you a liar as well as a thief? Did I not see you trying to tear off another piece?' " 'You have called me names enough,' said he, 'I will not stand it any longer. I shall not say another word about this business, since you have chosen to insult me. I will leave your house in the morning and make my own way in the world.' " 'You shall leave it in the hands of the police!' I cried half-mad with grief and rage. 'I shall have this matter probed to the bottom.' " 'You shall learn nothing from me,' said he with a passion such as I should not have thought was in his nature. 'If you choose to call the police, let the police find what they can.' "By this time the whole house was astir, for I had raised my voice in my anger. Mary was the first to rush into my room, and, at the sight of the coronet and of Arthur's face, she read the whole story and, with a scream, fell down senseless on the ground. I sent the house-maid for the police and put the investigation into their hands at once. When the inspector and a constable entered the house, Arthur, who had stood sullenly with his arms folded, asked me whether it was my intention to charge him with theft. I answered that it had ceased to be a private matter, but had become a public one, since the ruined coronet was national property. I was determined that the law should have its way in everything. " 'At least,' said he, 'you will not have me arrested at once. It would be to your advantage as well as mine if I might leave the house for five minutes.' " 'That you may get away, or perhaps that you may conceal what you have stolen,' said I. And then, realising the dreadful position in which I was placed, I implored him to remember that not only my honour but that of one who was far greater than I was at stake; and that he threatened to raise a scandal which would convulse the nation. He might avert it all if he would but tell me what he had done with the three missing stones. " 'You may as well face the matter,' said I; 'you have been caught in the act, and no confession could make your guilt more heinous. If you but make such reparation as is in your power, by telling us where the beryls are, all shall be forgiven and forgotten.' " 'Keep your forgiveness for those who ask for it,' he answered, turning away from me with a sneer. I saw that he was too hardened for any words of mine to influence him. There was but one way for it. I called in the inspector and gave him into custody. A search was made at once not only of his person but of his room and of every portion of the house where he could possibly have concealed the gems; but no trace of them could be found, nor would the wretched boy open his mouth for all our persuasions and our threats. This morning he was removed to a cell, and I, after going through all the police formalities, have hurried round to you to implore you to use your skill in unravelling the matter. The police have openly confessed that they can at present make nothing of it. You may go to any expense which you think necessary. I have already offered a reward of $1000. My God, what shall I do! I have lost my honour, my gems, and my son in one night. Oh, what shall I do!" He put a hand on either side of his head and rocked himself to and fro, droning to himself like a child whose grief has got beyond words. Sherlock Holmes sat silent for some few minutes, with his brows knitted and his eyes fixed upon the fire. "Do you receive much company?" he asked. "None save my partner with his family and an occasional friend of Arthur's. Sir George Burnwell has been several times lately. No one else, I think." "Do you go out much in society?" "Arthur does. Mary and I stay at home. We neither of us care for it." "That is unusual in a young girl." "She is of a quiet nature. Besides, she is not so very young. She is four-and-twenty." "This matter, from what you say, seems to have been a shock to her also." "Terrible! She is even more affected than I." "You have neither of you any doubt as to your son's guilt?" "How can we have when I saw him with my own eyes with the coronet in his hands." "I hardly consider that a conclusive proof. Was the remainder of the coronet at all injured?" "Yes, it was twisted." "Do you not think, then, that he might have been trying to straighten it?" "God bless you! You are doing what you can for him and for me. But it is too heavy a task. What was he doing there at all? If his purpose were innocent, why did he not say so?" "Precisely. And if it were guilty, why did he not invent a lie? His silence appears to me to cut both ways. There are several singular points about the case. What did the police think of the noise which awoke you from your sleep?" "They considered that it might be caused by Arthur's closing his bedroom door." "A likely story! As if a man bent on felony would slam his door so as to wake a household. What did they say, then, of the disappearance of these gems?" "They are still sounding the planking and probing the furniture in the hope of finding them." "Have they thought of looking outside the house?" "Yes, they have shown extraordinary energy. The whole garden has already been minutely examined." "Now, my dear sir," said Holmes. "is it not obvious to you now that this matter really strikes very much deeper than either you or the police were at first inclined to think? It appeared to you to be a simple case; to me it seems exceedingly complex. Consider what is involved by your theory. You suppose that your son came down from his bed, went, at great risk, to your dressing-room, opened your bureau, took out your coronet, broke off by main force a small portion of it, went off to some other place, concealed three gems out of the thirty-nine, with such skill that nobody can find them, and then returned with the other thirty-six into the room in which he exposed himself to the greatest danger of being discovered. I ask you now, is such a theory tenable?" "But what other is there?" cried the banker with a gesture of despair. "If his motives were innocent, why does he not explain them?" "It is our task to find that out," replied Holmes; "so now, if you please, Mr. Holder, we will set off for Streatham together, and devote an hour to glancing a little more closely into details." My friend insisted upon my accompanying them in their expedition, which I was eager enough to do, for my curiosity and sympathy were deeply stirred by the story to which we had listened. I confess that the guilt of the banker's son appeared to me to be as obvious as it did to his unhappy father, but still I had such faith in Holmes' judgment that I felt that there must be some grounds for hope as long as he was dissatisfied with the accepted explanation. He hardly spoke a word the whole way out to the southern suburb, but sat with his chin upon his breast and his hat drawn over his eyes, sunk in the deepest thought. Our client appeared to have taken fresh heart at the little glimpse of hope which had been presented to him, and he even broke into a desultory chat with me over his business affairs. A short railway journey and a shorter walk brought us to Fairbank, the modest residence of the great financier. Fairbank was a good-sized square house of white stone, standing back a little from the road. A double carriage-sweep, with a snow-clad lawn, stretched down in front to two large iron gates which closed the entrance. On the right side was a small wooden thicket, which led into a narrow path between two neat hedges stretching from the road to the kitchen door, and forming the tradesmen's entrance. On the left ran a lane which led to the stables, and was not itself within the grounds at all, being a public, though little used, thoroughfare. Holmes left us standing at the door and walked slowly all round the house, across the front, down the tradesmen's path, and so round by the garden behind into the stable lane. So long was he that Mr. Holder and I went into the dining-room and waited by the fire until he should return. We were sitting there in silence when the door opened and a young lady came in. She was rather above the middle height, slim, with dark hair and eyes, which seemed the darker against the absolute pallor of her skin. I do not think that I have ever seen such deadly paleness in a woman's face. Her lips, too, were bloodless, but her eyes were flushed with crying. As she swept silently into the room she impressed me with a greater sense of grief than the banker had done in the morning, and it was the more striking in her as she was evidently a woman of strong character, with immense capacity for self-restraint. Disregarding my presence, she went straight to her uncle and passed her hand over his head with a sweet womanly caress. "You have given orders that Arthur should be liberated, have you not, dad?" she asked. "No, no, my girl, the matter must be probed to the bottom." "But I am so sure that he is innocent. You know what woman's instincts are. I know that he has done no harm and that you will be sorry for having acted so harshly." "Why is he silent, then, if he is innocent?" "Who knows? Perhaps because he was so angry that you should suspect him." "How could I help suspecting him, when I actually saw him with the coronet in his hand?" "Oh, but he had only picked it up to look at it. Oh, do, do take my word for it that he is innocent. Let the matter drop and say no more. It is so dreadful to think of our dear Arthur in prison!" "I shall never let it drop until the gems are found--never, Mary! Your affection for Arthur blinds you as to the awful consequences to me. Far from hushing the thing up, I have brought a gentleman down from London to inquire more deeply into it." "This gentleman?" she asked, facing round to me. "No, his friend. He wished us to leave him alone. He is round in the stable lane now." "The stable lane?" She raised her dark eyebrows. "What can he hope to find there? Ah! this, I suppose, is he. I trust, sir, that you will succeed in proving, what I feel sure is the truth, that my cousin Arthur is innocent of this crime." "I fully share your opinion, and I trust, with you, that we may prove it," returned Holmes, going back to the mat to knock the snow from his shoes. "I believe I have the honour of addressing Miss Mary Holder. Might I ask you a question or two?" "Pray do, sir, if it may help to clear this horrible affair up." "You heard nothing yourself last night?" "Nothing, until my uncle here began to speak loudly. I heard that, and I came down." "You shut up the windows and doors the night before. Did you fasten all the windows?" "Yes." "Were they all fastened this morning?" "Yes." "You have a maid who has a sweetheart? I think that you remarked to your uncle last night that she had been out to see him?" "Yes, and she was the girl who waited in the drawing-room, and who may have heard uncle's remarks about the coronet." "I see. You infer that she may have gone out to tell her sweetheart, and that the two may have planned the robbery." "But what is the good of all these vague theories," cried the banker impatiently, "when I have told you that I saw Arthur with the coronet in his hands?" "Wait a little, Mr. Holder. We must come back to that. About this girl, Miss Holder. You saw her return by the kitchen door, I presume?" "Yes; when I went to see if the door was fastened for the night I met her slipping in. I saw the man, too, in the gloom." "Do you know him?" "Oh, yes! he is the green-grocer who brings our vegetables round. His name is Francis Prosper." "He stood," said Holmes, "to the left of the door--that is to say, farther up the path than is necessary to reach the door?" "Yes, he did." "And he is a man with a wooden leg?" Something like fear sprang up in the young lady's expressive black eyes. "Why, you are like a magician," said she. "How do you know that?" She smiled, but there was no answering smile in Holmes' thin, eager face. "I should be very glad now to go upstairs," said he. "I shall probably wish to go over the outside of the house again. Perhaps I had better take a look at the lower windows before I go up." He walked swiftly round from one to the other, pausing only at the large one which looked from the hall onto the stable lane. This he opened and made a very careful examination of the sill with his powerful magnifying lens. "Now we shall go upstairs," said he at last. The banker's dressing-room was a plainly furnished little chamber, with a grey carpet, a large bureau, and a long mirror. Holmes went to the bureau first and looked hard at the lock. "Which key was used to open it?" he asked. "That which my son himself indicated--that of the cupboard of the lumber-room." "Have you it here?" "That is it on the dressing-table." Sherlock Holmes took it up and opened the bureau. "It is a noiseless lock," said he. "It is no wonder that it did not wake you. This case, I presume, contains the coronet. We must have a look at it." He opened the case, and taking out the diadem he laid it upon the table. It was a magnificent specimen of the jeweller's art, and the thirty-six stones were the finest that I have ever seen. At one side of the coronet was a cracked edge, where a corner holding three gems had been torn away. "Now, Mr. Holder," said Holmes, "here is the corner which corresponds to that which has been so unfortunately lost. Might I beg that you will break it off." The banker recoiled in horror. "I should not dream of trying," said he. "Then I will." Holmes suddenly bent his strength upon it, but without result. "I feel it give a little," said he; "but, though I am exceptionally strong in the fingers, it would take me all my time to break it. An ordinary man could not do it. Now, what do you think would happen if I did break it, Mr. Holder? There would be a noise like a pistol shot. Do you tell me that all this happened within a few yards of your bed and that you heard nothing of it?" "I do not know what to think. It is all dark to me." "But perhaps it may grow lighter as we go. What do you think, Miss Holder?" "I confess that I still share my uncle's perplexity." "Your son had no shoes or slippers on when you saw him?" "He had nothing on save only his trousers and shirt." "Thank you. We have certainly been favoured with extraordinary luck during this inquiry, and it will be entirely our own fault if we do not succeed in clearing the matter up. With your permission, Mr. Holder, I shall now continue my investigations outside." He went alone, at his own request, for he explained that any unnecessary footmarks might make his task more difficult. For an hour or more he was at work, returning at last with his feet heavy with snow and his features as inscrutable as ever. "I think that I have seen now all that there is to see, Mr. Holder," said he; "I can serve you best by returning to my rooms." "But the gems, Mr. Holmes. Where are they?" "I cannot tell." The banker wrung his hands. "I shall never see them again!" he cried. "And my son? You give me hopes?" "My opinion is in no way altered." "Then, for God's sake, what was this dark business which was acted in my house last night?" "If you can call upon me at my Baker Street rooms to-morrow morning between nine and ten I shall be happy to do what I can to make it clearer. I understand that you give me carte blanche to act for you, provided only that I get back the gems, and that you place no limit on the sum I may draw." "I would give my fortune to have them back." "Very good. I shall look into the matter between this and then. Good-bye; it is just possible that I may have to come over here again before evening." It was obvious to me that my companion's mind was now made up about the case, although what his conclusions were was more than I could even dimly imagine. Several times during our homeward journey I endeavoured to sound him upon the point, but he always glided away to some other topic, until at last I gave it over in despair. It was not yet three when we found ourselves in our rooms once more. He hurried to his chamber and was down again in a few minutes dressed as a common loafer. With his collar turned up, his shiny, seedy coat, his red cravat, and his worn boots, he was a perfect sample of the class. "I think that this should do," said he, glancing into the glass above the fireplace. "I only wish that you could come with me, Watson, but I fear that it won't do. I may be on the trail in this matter, or I may be following a will-o'-the-wisp, but I shall soon know which it is. I hope that I may be back in a few hours." He cut a slice of beef from the joint upon the sideboard, sandwiched it between two rounds of bread, and thrusting this rude meal into his pocket he started off upon his expedition. I had just finished my tea when he returned, evidently in excellent spirits, swinging an old elastic-sided boot in his hand. He chucked it down into a corner and helped himself to a cup of tea. "I only looked in as I passed," said he. "I am going right on." "Where to?" "Oh, to the other side of the West End. It may be some time before I get back. Don't wait up for me in case I should be late." "How are you getting on?" "Oh, so so. Nothing to complain of. I have been out to Streatham since I saw you last, but I did not call at the house. It is a very sweet little problem, and I would not have missed it for a good deal. However, I must not sit gossiping here, but must get these disreputable clothes off and return to my highly respectable self." I could see by his manner that he had stronger reasons for satisfaction than his words alone would imply. His eyes twinkled, and there was even a touch of colour upon his sallow cheeks. He hastened upstairs, and a few minutes later I heard the slam of the hall door, which told me that he was off once more upon his congenial hunt. I waited until midnight, but there was no sign of his return, so I retired to my room. It was no uncommon thing for him to be away for days and nights on end when he was hot upon a scent, so that his lateness caused me no surprise. I do not know at what hour he came in, but when I came down to breakfast in the morning there he was with a cup of coffee in one hand and the paper in the other, as fresh and trim as possible. "You will excuse my beginning without you, Watson," said he, "but you remember that our client has rather an early appointment this morning." "Why, it is after nine now," I answered. "I should not be surprised if that were he. I thought I heard a ring." It was, indeed, our friend the financier. I was shocked by the change which had come over him, for his face which was naturally of a broad and massive mould, was now pinched and fallen in, while his hair seemed to me at least a shade whiter. He entered with a weariness and lethargy which was even more painful than his violence of the morning before, and he dropped heavily into the armchair which I pushed forward for him. "I do not know what I have done to be so severely tried," said he. "Only two days ago I was a happy and prosperous man, without a care in the world. Now I am left to a lonely and dishonoured age. One sorrow comes close upon the heels of another. My niece, Mary, has deserted me." "Deserted you?" "Yes. Her bed this morning had not been slept in, her room was empty, and a note for me lay upon the hall table. I had said to her last night, in sorrow and not in anger, that if she had married my boy all might have been well with him. Perhaps it was thoughtless of me to say so. It is to that remark that she refers in this note: " 'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, and that if I had acted differently this terrible misfortune might never have occurred. I cannot, with this thought in my mind, ever again be happy under your roof, and I feel that I must leave you forever. Do not worry about my future, for that is provided for; and, above all, do not search for me, for it will be fruitless labour and an ill-service to me. In life or in death, I am ever your loving " 'MARY.' "What could she mean by that note, Mr. Holmes? Do you think it points to suicide?" "No, no, nothing of the kind. It is perhaps the best possible solution. I trust, Mr. Holder, that you are nearing the end of your troubles." "Ha! You say so! You have heard something, Mr. Holmes; you have learned something! Where are the gems?" "You would not think $1000 apiece an excessive sum for them?" "I would pay ten." "That would be unnecessary. Three thousand will cover the matter. And there is a little reward, I fancy. Have you your check-book? Here is a pen. Better make it out for $4000." With a dazed face the banker made out the required check. Holmes walked over to his desk, took out a little triangular piece of gold with three gems in it, and threw it down upon the table. With a shriek of joy our client clutched it up. "You have it!" he gasped. "I am saved! I am saved!" The reaction of joy was as passionate as his grief had been, and he hugged his recovered gems to his bosom. "There is one other thing you owe, Mr. Holder," said Sherlock Holmes rather sternly. "Owe!" He caught up a pen. "Name the sum, and I will pay it." "No, the debt is not to me. You owe a very humble apology to that noble lad, your son, who has carried himself in this matter as I should be proud to see my own son do, should I ever chance to have one." "Then it was not Arthur who took them?" "I told you yesterday, and I repeat to-day, that it was not." "You are sure of it! Then let us hurry to him at once to let him know that the truth is known." "He knows it already. When I had cleared it all up I had an interview with him, and finding that he would not tell me the story, I told it to him, on which he had to confess that I was right and to add the very few details which were not yet quite clear to me. Your news of this morning, however, may open his lips." "For heaven's sake, tell me, then, what is this extraordinary mystery!" "I will do so, and I will show you the steps by which I reached it. And let me say to you, first, that which it is hardest for me to say and for you to hear: there has been an understanding between Sir George Burnwell and your niece Mary. They have now fled together." "My Mary? Impossible!" "It is unfortunately more than possible; it is certain. Neither you nor your son knew the true character of this man when you admitted him into your family circle. He is one of the most dangerous men in England--a ruined gambler, an absolutely desperate villain, a man without heart or conscience. Your niece knew nothing of such men. When he breathed his vows to her, as he had done to a hundred before her, she flattered herself that she alone had touched his heart. The devil knows best what he said, but at least she became his tool and was in the habit of seeing him nearly every evening." "I cannot, and I will not, believe it!" cried the banker with an ashen face. "I will tell you, then, what occurred in your house last night. Your niece, when you had, as she thought, gone to your room, slipped down and talked to her lover through the window which leads into the stable lane. His footmarks had pressed right through the snow, so long had he stood there. She told him of the coronet. His wicked lust for gold kindled at the news, and he bent her to his will. I have no doubt that she loved you, but there are women in whom the love of a lover extinguishes all other loves, and I think that she must have been one. She had hardly listened to his instructions when she saw you coming downstairs, on which she closed the window rapidly and told you about one of the servants' escapade with her wooden-legged lover, which was all perfectly true. "Your boy, Arthur, went to bed after his interview with you but he slept badly on account of his uneasiness about his club debts. In the middle of the night he heard a soft tread pass his door, so he rose and, looking out, was surprised to see his cousin walking very stealthily along the passage until she disappeared into your dressing-room. Petrified with astonishment, the lad slipped on some clothes and waited there in the dark to see what would come of this strange affair. Presently she emerged from the room again, and in the light of the passage-lamp your son saw that she carried the precious coronet in her hands. She passed down the stairs, and he, thrilling with horror, ran along and slipped behind the curtain near your door, whence he could see what passed in the hall beneath. He saw her stealthily open the window, hand out the coronet to someone in the gloom, and then closing it once more hurry back to her room, passing quite close to where he stood hid behind the curtain. "As long as she was on the scene he could not take any action without a horrible exposure of the woman whom he loved. But the instant that she was gone he realised how crushing a misfortune this would be for you, and how all-important it was to set it right. He rushed down, just as he was, in his bare feet, opened the window, sprang out into the snow, and ran down the lane, where he could see a dark figure in the moonlight. Sir George Burnwell tried to get away, but Arthur caught him, and there was a struggle between them, your lad tugging at one side of the coronet, and his opponent at the other. In the scuffle, your son struck Sir George and cut him over the eye. Then something suddenly snapped, and your son, finding that he had the coronet in his hands, rushed back, closed the window, ascended to your room, and had just observed that the coronet had been twisted in the struggle and was endeavouring to straighten it when you appeared upon the scene." "Is it possible?" gasped the banker. "You then roused his anger by calling him names at a moment when he felt that he had deserved your warmest thanks. He could not explain the true state of affairs without betraying one who certainly deserved little enough consideration at his hands. He took the more chivalrous view, however, and preserved her secret." "And that was why she shrieked and fainted when she saw the coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have been! And his asking to be allowed to go out for five minutes! The dear fellow wanted to see if the missing piece were at the scene of the struggle. How cruelly I have misjudged him!" "When I arrived at the house," continued Holmes, "I at once went very carefully round it to observe if there were any traces in the snow which might help me. I knew that none had fallen since the evening before, and also that there had been a strong frost to preserve impressions. I passed along the tradesmen's path, but found it all trampled down and indistinguishable. Just beyond it, however, at the far side of the kitchen door, a woman had stood and talked with a man, whose round impressions on one side showed that he had a wooden leg. I could even tell that they had been disturbed, for the woman had run back swiftly to the door, as was shown by the deep toe and light heel marks, while Wooden-leg had waited a little, and then had gone away. I thought at the time that this might be the maid and her sweetheart, of whom you had already spoken to me, and inquiry showed it was so. I passed round the garden without seeing anything more than random tracks, which I took to be the police; but when I got into the stable lane a very long and complex story was written in the snow in front of me. "There was a double line of tracks of a booted man, and a second double line which I saw with delight belonged to a man with naked feet. I was at once convinced from what you had told me that the latter was your son. The first had walked both ways, but the other had run swiftly, and as his tread was marked in places over the depression of the boot, it was obvious that he had passed after the other. I followed them up and found they led to the hall window, where Boots had worn all the snow away while waiting. Then I walked to the other end, which was a hundred yards or more down the lane. I saw where Boots had faced round, where the snow was cut up as though there had been a struggle, and, finally, where a few drops of blood had fallen, to show me that I was not mistaken. Boots had then run down the lane, and another little smudge of blood showed that it was he who had been hurt. When he came to the highroad at the other end, I found that the pavement had been cleared, so there was an end to that clue. "On entering the house, however, I examined, as you remember, the sill and framework of the hall window with my lens, and I could at once see that someone had passed out. I could distinguish the outline of an instep where the wet foot had been placed in coming in. I was then beginning to be able to form an opinion as to what had occurred. A man had waited outside the window; someone had brought the gems; the deed had been overseen by your son; he had pursued the thief; had struggled with him; they had each tugged at the coronet, their united strength causing injuries which neither alone could have effected. He had returned with the prize, but had left a fragment in the grasp of his opponent. So far I was clear. The question now was, who was the man and who was it brought him the coronet? "It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. Now, I knew that it was not you who had brought it down, so there only remained your niece and the maids. But if it were the maids, why should your son allow himself to be accused in their place? There could be no possible reason. As he loved his cousin, however, there was an excellent explanation why he should retain her secret--the more so as the secret was a disgraceful one. When I remembered that you had seen her at that window, and how she had fainted on seeing the coronet again, my conjecture became a certainty. "And who could it be who was her confederate? A lover evidently, for who else could outweigh the love and gratitude which she must feel to you? I knew that you went out little, and that your circle of friends was a very limited one. But among them was Sir George Burnwell. I had heard of him before as being a man of evil reputation among women. It must have been he who wore those boots and retained the missing gems. Even though he knew that Arthur had discovered him, he might still flatter himself that he was safe, for the lad could not say a word without compromising his own family. "Well, your own good sense will suggest what measures I took next. I went in the shape of a loafer to Sir George's house, managed to pick up an acquaintance with his valet, learned that his master had cut his head the night before, and, finally, at the expense of six shillings, made all sure by buying a pair of his cast-off shoes. With these I journeyed down to Streatham and saw that they exactly fitted the tracks." "I saw an ill-dressed vagabond in the lane yesterday evening," said Mr. Holder. "Precisely. It was I. I found that I had my man, so I came home and changed my clothes. It was a delicate part which I had to play then, for I saw that a prosecution must be avoided to avert scandal, and I knew that so astute a villain would see that our hands were tied in the matter. I went and saw him. At first, of course, he denied everything. But when I gave him every particular that had occurred, he tried to bluster and took down a life-preserver from the wall. I knew my man, however, and I clapped a pistol to his head before he could strike. Then he became a little more reasonable. I told him that we would give him a price for the stones he held--$1000 apiece. That brought out the first signs of grief that he had shown. 'Why, dash it all!' said he, 'I've let them go at six hundred for the three!' I soon managed to get the address of the receiver who had them, on promising him that there would be no prosecution. Off I set to him, and after much chaffering I got our stones at $1000 apiece. Then I looked in upon your son, told him that all was right, and eventually got to my bed about two o'clock, after what I may call a really hard day's work." "A day which has saved England from a great public scandal," said the banker, rising. "Sir, I cannot find words to thank you, but you shall not find me ungrateful for what you have done. Your skill has indeed exceeded all that I have heard of it. And now I must fly to my dear boy to apologise to him for the wrong which I have done him. As to what you tell me of poor Mary, it goes to my very heart. Not even your skill can inform me where she is now." "I think that we may safely say," returned Holmes, "that she is wherever Sir George Burnwell is. It is equally certain, too, that whatever her sins are, they will soon receive a more than sufficient punishment." XII. THE ADVENTURE OF THE COPPER BEECHES "To the man who loves art for its own sake," remarked Sherlock Holmes, tossing aside the advertisement sheet of the Daily Telegraph, "it is frequently in its least important and lowliest manifestations that the keenest pleasure is to be derived. It is pleasant to me to observe, Watson, that you have so far grasped this truth that in these little records of our cases which you have been good enough to draw up, and, I am bound to say, occasionally to embellish, you have given prominence not so much to the many causes celebres and sensational trials in which I have figured but rather to those incidents which may have been trivial in themselves, but which have given room for those faculties of deduction and of logical synthesis which I have made my special province." "And yet," said I, smiling, "I cannot quite hold myself absolved from the charge of sensationalism which has been urged against my records." "You have erred, perhaps," he observed, taking up a glowing cinder with the tongs and lighting with it the long cherry-wood pipe which was wont to replace his clay when he was in a disputatious rather than a meditative mood--"you have erred perhaps in attempting to put colour and life into each of your statements instead of confining yourself to the task of placing upon record that severe reasoning from cause to effect which is really the only notable feature about the thing." "It seems to me that I have done you full justice in the matter," I remarked with some coldness, for I was repelled by the egotism which I had more than once observed to be a strong factor in my friend's singular character. "No, it is not selfishness or conceit," said he, answering, as was his wont, my thoughts rather than my words. "If I claim full justice for my art, it is because it is an impersonal thing--a thing beyond myself. Crime is common. Logic is rare. Therefore it is upon the logic rather than upon the crime that you should dwell. You have degraded what should have been a course of lectures into a series of tales." It was a cold morning of the early spring, and we sat after breakfast on either side of a cheery fire in the old room at Baker Street. A thick fog rolled down between the lines of dun-coloured houses, and the opposing windows loomed like dark, shapeless blurs through the heavy yellow wreaths. Our gas was lit and shone on the white cloth and glimmer of china and metal, for the table had not been cleared yet. Sherlock Holmes had been silent all the morning, dipping continuously into the advertisement columns of a succession of papers until at last, having apparently given up his search, he had emerged in no very sweet temper to lecture me upon my literary shortcomings. "At the same time," he remarked after a pause, during which he had sat puffing at his long pipe and gazing down into the fire, "you can hardly be open to a charge of sensationalism, for out of these cases which you have been so kind as to interest yourself in, a fair proportion do not treat of crime, in its legal sense, at all. The small matter in which I endeavoured to help the King of Bohemia, the singular experience of Miss Mary Sutherland, the problem connected with the man with the twisted lip, and the incident of the noble bachelor, were all matters which are outside the pale of the law. But in avoiding the sensational, I fear that you may have bordered on the trivial." "The end may have been so," I answered, "but the methods I hold to have been novel and of interest." "Pshaw, my dear fellow, what do the public, the great unobservant public, who could hardly tell a weaver by his tooth or a compositor by his left thumb, care about the finer shades of analysis and deduction! But, indeed, if you are trivial. I cannot blame you, for the days of the great cases are past. Man, or at least criminal man, has lost all enterprise and originality. As to my own little practice, it seems to be degenerating into an agency for recovering lost lead pencils and giving advice to young ladies from boarding-schools. I think that I have touched bottom at last, however. This note I had this morning marks my zero-point, I fancy. Read it!" He tossed a crumpled letter across to me. It was dated from Montague Place upon the preceding evening, and ran thus: "DEAR MR. HOLMES:--I am very anxious to consult you as to whether I should or should not accept a situation which has been offered to me as governess. I shall call at half-past ten to-morrow if I do not inconvenience you. Yours faithfully, "VIOLET HUNTER." "Do you know the young lady?" I asked. "Not I." "It is half-past ten now." "Yes, and I have no doubt that is her ring." "It may turn out to be of more interest than you think. You remember that the affair of the blue carbuncle, which appeared to be a mere whim at first, developed into a serious investigation. It may be so in this case, also." "Well, let us hope so. But our doubts will very soon be solved, for here, unless I am much mistaken, is the person in question." As he spoke the door opened and a young lady entered the room. She was plainly but neatly dressed, with a bright, quick face, freckled like a plover's egg, and with the brisk manner of a woman who has had her own way to make in the world. "You will excuse my troubling you, I am sure," said she, as my companion rose to greet her, "but I have had a very strange experience, and as I have no parents or relations of any sort from whom I could ask advice, I thought that perhaps you would be kind enough to tell me what I should do." "Pray take a seat, Miss Hunter. I shall be happy to do anything that I can to serve you." I could see that Holmes was favourably impressed by the manner and speech of his new client. He looked her over in his searching fashion, and then composed himself, with his lids drooping and his finger-tips together, to listen to her story. "I have been a governess for five years," said she, "in the family of Colonel Spence Munro, but two months ago the colonel received an appointment at Halifax, in Nova Scotia, and took his children over to America with him, so that I found myself without a situation. I advertised, and I answered advertisements, but without success. At last the little money which I had saved began to run short, and I was at my wit's end as to what I should do. "There is a well-known agency for governesses in the West End called Westaway's, and there I used to call about once a week in order to see whether anything had turned up which might suit me. Westaway was the name of the founder of the business, but it is really managed by Miss Stoper. She sits in her own little office, and the ladies who are seeking employment wait in an anteroom, and are then shown in one by one, when she consults her ledgers and sees whether she has anything which would suit them. "Well, when I called last week I was shown into the little office as usual, but I found that Miss Stoper was not alone. A prodigiously stout man with a very smiling face and a great heavy chin which rolled down in fold upon fold over his throat sat at her elbow with a pair of glasses on his nose, looking very earnestly at the ladies who entered. As I came in he gave quite a jump in his chair and turned quickly to Miss Stoper. " 'That will do,' said he; 'I could not ask for anything better. Capital! capital!' He seemed quite enthusiastic and rubbed his hands together in the most genial fashion. He was such a comfortable-looking man that it was quite a pleasure to look at him. " 'You are looking for a situation, miss?' he asked. " 'Yes, sir.' " 'As governess?' " 'Yes, sir.' " 'And what salary do you ask?' " 'I had $4 a month in my last place with Colonel Spence Munro.' " 'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his fat hands out into the air like a man who is in a boiling passion. 'How could anyone offer so pitiful a sum to a lady with such attractions and accomplishments?' " 'My accomplishments, sir, may be less than you imagine,' said I. 'A little French, a little German, music, and drawing--' " 'Tut, tut!' he cried. 'This is all quite beside the question. The point is, have you or have you not the bearing and deportment of a lady? There it is in a nutshell. If you have not, you are not fitted for the rearing of a child who may some day play a considerable part in the history of the country. But if you have why, then, how could any gentleman ask you to condescend to accept anything under the three figures? Your salary with me, madam, would commence at $100 a year.' "You may imagine, Mr. Holmes, that to me, destitute as I was, such an offer seemed almost too good to be true. The gentleman, however, seeing perhaps the look of incredulity upon my face, opened a pocket-book and took out a note. " 'It is also my custom,' said he, smiling in the most pleasant fashion until his eyes were just two little shining slits amid the white creases of his face, 'to advance to my young ladies half their salary beforehand, so that they may meet any little expenses of their journey and their wardrobe.' "It seemed to me that I had never met so fascinating and so thoughtful a man. As I was already in debt to my tradesmen, the advance was a great convenience, and yet there was something unnatural about the whole transaction which made me wish to know a little more before I quite committed myself. " 'May I ask where you live, sir?' said I. " 'Hampshire. Charming rural place. The Copper Beeches, five miles on the far side of Winchester. It is the most lovely country, my dear young lady, and the dearest old country-house.' " 'And my duties, sir? I should be glad to know what they would be.' " 'One child--one dear little romper just six years old. Oh, if you could see him killing cockroaches with a slipper! Smack! smack! smack! Three gone before you could wink!' He leaned back in his chair and laughed his eyes into his head again. "I was a little startled at the nature of the child's amusement, but the father's laughter made me think that perhaps he was joking. " 'My sole duties, then,' I asked, 'are to take charge of a single child?' " 'No, no, not the sole, not the sole, my dear young lady,' he cried. 'Your duty would be, as I am sure your good sense would suggest, to obey any little commands my wife might give, provided always that they were such commands as a lady might with propriety obey. You see no difficulty, heh?' " 'I should be happy to make myself useful.' " 'Quite so. In dress now, for example. We are faddy people, you know--faddy but kind-hearted. If you were asked to wear any dress which we might give you, you would not object to our little whim. Heh?' " 'No,' said I, considerably astonished at his words. " 'Or to sit here, or sit there, that would not be offensive to you?' " 'Oh, no.' " 'Or to cut your hair quite short before you come to us?' "I could hardly believe my ears. As you may observe, Mr. Holmes, my hair is somewhat luxuriant, and of a rather peculiar tint of chestnut. It has been considered artistic. I could not dream of sacrificing it in this offhand fashion. " 'I am afraid that that is quite impossible,' said I. He had been watching me eagerly out of his small eyes, and I could see a shadow pass over his face as I spoke. " 'I am afraid that it is quite essential,' said he. 'It is a little fancy of my wife's, and ladies' fancies, you know, madam, ladies' fancies must be consulted. And so you won't cut your hair?' " 'No, sir, I really could not,' I answered firmly. " 'Ah, very well; then that quite settles the matter. It is a pity, because in other respects you would really have done very nicely. In that case, Miss Stoper, I had best inspect a few more of your young ladies.' "The manageress had sat all this while busy with her papers without a word to either of us, but she glanced at me now with so much annoyance upon her face that I could not help suspecting that she had lost a handsome commission through my refusal. " 'Do you desire your name to be kept upon the books?' she asked. " 'If you please, Miss Stoper.' " 'Well, really, it seems rather useless, since you refuse the most excellent offers in this fashion,' said she sharply. 'You can hardly expect us to exert ourselves to find another such opening for you. Good-day to you, Miss Hunter.' She struck a gong upon the table, and I was shown out by the page. "Well, Mr. Holmes, when I got back to my lodgings and found little enough in the cupboard, and two or three bills upon the table. I began to ask myself whether I had not done a very foolish thing. After all, if these people had strange fads and expected obedience on the most extraordinary matters, they were at least ready to pay for their eccentricity. Very few governesses in England are getting $100 a year. Besides, what use was my hair to me? Many people are improved by wearing it short and perhaps I should be among the number. Next day I was inclined to think that I had made a mistake, and by the day after I was sure of it. I had almost overcome my pride so far as to go back to the agency and inquire whether the place was still open when I received this letter from the gentleman himself. I have it here and I will read it to you: " 'The Copper Beeches, near Winchester. " 'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your address, and I write from here to ask you whether you have reconsidered your decision. My wife is very anxious that you should come, for she has been much attracted by my description of you. We are willing to give $30 a quarter, or $120 a year, so as to recompense you for any little inconvenience which our fads may cause you. They are not very exacting, after all. My wife is fond of a particular shade of electric blue and would like you to wear such a dress indoors in the morning. You need not, however, go to the expense of purchasing one, as we have one belonging to my dear daughter Alice (now in Philadelphia), which would, I should think, fit you very well. Then, as to sitting here or there, or amusing yourself in any manner indicated, that need cause you no inconvenience. As regards your hair, it is no doubt a pity, especially as I could not help remarking its beauty during our short interview, but I am afraid that I must remain firm upon this point, and I only hope that the increased salary may recompense you for the loss. Your duties, as far as the child is concerned, are very light. Now do try to come, and I shall meet you with the dog-cart at Winchester. Let me know your train. Yours faithfully, " 'JEPHRO RUCASTLE.' "That is the letter which I have just received, Mr. Holmes, and my mind is made up that I will accept it. I thought, however, that before taking the final step I should like to submit the whole matter to your consideration." "Well, Miss Hunter, if your mind is made up, that settles the question," said Holmes, smiling. "But you would not advise me to refuse?" "I confess that it is not the situation which I should like to see a sister of mine apply for." "What is the meaning of it all, Mr. Holmes?" "Ah, I have no data. I cannot tell. Perhaps you have yourself formed some opinion?" "Well, there seems to me to be only one possible solution. Mr. Rucastle seemed to be a very kind, good-natured man. Is it not possible that his wife is a lunatic, that he desires to keep the matter quiet for fear she should be taken to an asylum, and that he humours her fancies in every way in order to prevent an outbreak?" "That is a possible solution--in fact, as matters stand, it is the most probable one. But in any case it does not seem to be a nice household for a young lady." "But the money, Mr. Holmes, the money!" "Well, yes, of course the pay is good--too good. That is what makes me uneasy. Why should they give you $120 a year, when they could have their pick for $40? There must be some strong reason behind." "I thought that if I told you the circumstances you would understand afterwards if I wanted your help. I should feel so much stronger if I felt that you were at the back of me." "Oh, you may carry that feeling away with you. I assure you that your little problem promises to be the most interesting which has come my way for some months. There is something distinctly novel about some of the features. If you should find yourself in doubt or in danger--" "Danger! What danger do you foresee?" Holmes shook his head gravely. "It would cease to be a danger if we could define it," said he. "But at any time, day or night, a telegram would bring me down to your help." "That is enough." She rose briskly from her chair with the anxiety all swept from her face. "I shall go down to Hampshire quite easy in my mind now. I shall write to Mr. Rucastle at once, sacrifice my poor hair to-night, and start for Winchester to-morrow." With a few grateful words to Holmes she bade us both good-night and bustled off upon her way. "At least," said I as we heard her quick, firm steps descending the stairs, "she seems to be a young lady who is very well able to take care of herself." "And she would need to be," said Holmes gravely. "I am much mistaken if we do not hear from her before many days are past." It was not very long before my friend's prediction was fulfilled. A fortnight went by, during which I frequently found my thoughts turning in her direction and wondering what strange side-alley of human experience this lonely woman had strayed into. The unusual salary, the curious conditions, the light duties, all pointed to something abnormal, though whether a fad or a plot, or whether the man were a philanthropist or a villain, it was quite beyond my powers to determine. As to Holmes, I observed that he sat frequently for half an hour on end, with knitted brows and an abstracted air, but he swept the matter away with a wave of his hand when I mentioned it. "Data! data! data!" he cried impatiently. "I can't make bricks without clay." And yet he would always wind up by muttering that no sister of his should ever have accepted such a situation. The telegram which we eventually received came late one night just as I was thinking of turning in and Holmes was settling down to one of those all-night chemical researches which he frequently indulged in, when I would leave him stooping over a retort and a test-tube at night and find him in the same position when I came down to breakfast in the morning. He opened the yellow envelope, and then, glancing at the message, threw it across to me. "Just look up the trains in Bradshaw," said he, and turned back to his chemical studies. The summons was a brief and urgent one. "Please be at the Black Swan Hotel at Winchester at midday to-morrow," it said. "Do come! I am at my wit's end. "HUNTER." "Will you come with me?" asked Holmes, glancing up. "I should wish to." "Just look it up, then." "There is a train at half-past nine," said I, glancing over my Bradshaw. "It is due at Winchester at 11:30." "That will do very nicely. Then perhaps I had better postpone my analysis of the acetones, as we may need to be at our best in the morning." By eleven o'clock the next day we were well upon our way to the old English capital. Holmes had been buried in the morning papers all the way down, but after we had passed the Hampshire border he threw them down and began to admire the scenery. It was an ideal spring day, a light blue sky, flecked with little fleecy white clouds drifting across from west to east. The sun was shining very brightly, and yet there was an exhilarating nip in the air, which set an edge to a man's energy. All over the countryside, away to the rolling hills around Aldershot, the little red and grey roofs of the farm-steadings peeped out from amid the light green of the new foliage. "Are they not fresh and beautiful?" I cried with all the enthusiasm of a man fresh from the fogs of Baker Street. But Holmes shook his head gravely. "Do you know, Watson," said he, "that it is one of the curses of a mind with a turn like mine that I must look at everything with reference to my own special subject. You look at these scattered houses, and you are impressed by their beauty. I look at them, and the only thought which comes to me is a feeling of their isolation and of the impunity with which crime may be committed there." "Good heavens!" I cried. "Who would associate crime with these dear old homesteads?" "They always fill me with a certain horror. It is my belief, Watson, founded upon my experience, that the lowest and vilest alleys in London do not present a more dreadful record of sin than does the smiling and beautiful countryside." "You horrify me!" "But the reason is very obvious. The pressure of public opinion can do in the town what the law cannot accomplish. There is no lane so vile that the scream of a tortured child, or the thud of a drunkard's blow, does not beget sympathy and indignation among the neighbours, and then the whole machinery of justice is ever so close that a word of complaint can set it going, and there is but a step between the crime and the dock. But look at these lonely houses, each in its own fields, filled for the most part with poor ignorant folk who know little of the law. Think of the deeds of hellish cruelty, the hidden wickedness which may go on, year in, year out, in such places, and none the wiser. Had this lady who appeals to us for help gone to live in Winchester, I should never have had a fear for her. It is the five miles of country which makes the danger. Still, it is clear that she is not personally threatened." "No. If she can come to Winchester to meet us she can get away." "Quite so. She has her freedom." "What can be the matter, then? Can you suggest no explanation?" "I have devised seven separate explanations, each of which would cover the facts as far as we know them. But which of these is correct can only be determined by the fresh information which we shall no doubt find waiting for us. Well, there is the tower of the cathedral, and we shall soon learn all that Miss Hunter has to tell." The Black Swan is an inn of repute in the High Street, at no distance from the station, and there we found the young lady waiting for us. She had engaged a sitting-room, and our lunch awaited us upon the table. "I am so delighted that you have come," she said earnestly. "It is so very kind of you both; but indeed I do not know what I should do. Your advice will be altogether invaluable to me." "Pray tell us what has happened to you." "I will do so, and I must be quick, for I have promised Mr. Rucastle to be back before three. I got his leave to come into town this morning, though he little knew for what purpose." "Let us have everything in its due order." Holmes thrust his long thin legs out towards the fire and composed himself to listen. "In the first place, I may say that I have met, on the whole, with no actual ill-treatment from Mr. and Mrs. Rucastle. It is only fair to them to say that. But I cannot understand them, and I am not easy in my mind about them." "What can you not understand?" "Their reasons for their conduct. But you shall have it all just as it occurred. When I came down, Mr. Rucastle met me here and drove me in his dog-cart to the Copper Beeches. It is, as he said, beautifully situated, but it is not beautiful in itself, for it is a large square block of a house, whitewashed, but all stained and streaked with damp and bad weather. There are grounds round it, woods on three sides, and on the fourth a field which slopes down to the Southampton highroad, which curves past about a hundred yards from the front door. This ground in front belongs to the house, but the woods all round are part of Lord Southerton's preserves. A clump of copper beeches immediately in front of the hall door has given its name to the place. "I was driven over by my employer, who was as amiable as ever, and was introduced by him that evening to his wife and the child. There was no truth, Mr. Holmes, in the conjecture which seemed to us to be probable in your rooms at Baker Street. Mrs. Rucastle is not mad. I found her to be a silent, pale-faced woman, much younger than her husband, not more than thirty, I should think, while he can hardly be less than forty-five. From their conversation I have gathered that they have been married about seven years, that he was a widower, and that his only child by the first wife was the daughter who has gone to Philadelphia. Mr. Rucastle told me in private that the reason why she had left them was that she had an unreasoning aversion to her stepmother. As the daughter could not have been less than twenty, I can quite imagine that her position must have been uncomfortable with her father's young wife. "Mrs. Rucastle seemed to me to be colourless in mind as well as in feature. She impressed me neither favourably nor the reverse. She was a nonentity. It was easy to see that she was passionately devoted both to her husband and to her little son. Her light grey eyes wandered continually from one to the other, noting every little want and forestalling it if possible. He was kind to her also in his bluff, boisterous fashion, and on the whole they seemed to be a happy couple. And yet she had some secret sorrow, this woman. She would often be lost in deep thought, with the saddest look upon her face. More than once I have surprised her in tears. I have thought sometimes that it was the disposition of her child which weighed upon her mind, for I have never met so utterly spoiled and so ill-natured a little creature. He is small for his age, with a head which is quite disproportionately large. His whole life appears to be spent in an alternation between savage fits of passion and gloomy intervals of sulking. Giving pain to any creature weaker than himself seems to be his one idea of amusement, and he shows quite remarkable talent in planning the capture of mice, little birds, and insects. But I would rather not talk about the creature, Mr. Holmes, and, indeed, he has little to do with my story." "I am glad of all details," remarked my friend, "whether they seem to you to be relevant or not." "I shall try not to miss anything of importance. The one unpleasant thing about the house, which struck me at once, was the appearance and conduct of the servants. There are only two, a man and his wife. Toller, for that is his name, is a rough, uncouth man, with grizzled hair and whiskers, and a perpetual smell of drink. Twice since I have been with them he has been quite drunk, and yet Mr. Rucastle seemed to take no notice of it. His wife is a very tall and strong woman with a sour face, as silent as Mrs. Rucastle and much less amiable. They are a most unpleasant couple, but fortunately I spend most of my time in the nursery and my own room, which are next to each other in one corner of the building. "For two days after my arrival at the Copper Beeches my life was very quiet; on the third, Mrs. Rucastle came down just after breakfast and whispered something to her husband. " 'Oh, yes,' said he, turning to me, 'we are very much obliged to you, Miss Hunter, for falling in with our whims so far as to cut your hair. I assure you that it has not detracted in the tiniest iota from your appearance. We shall now see how the electric-blue dress will become you. You will find it laid out upon the bed in your room, and if you would be so good as to put it on we should both be extremely obliged.' "The dress which I found waiting for me was of a peculiar shade of blue. It was of excellent material, a sort of beige, but it bore unmistakable signs of having been worn before. It could not have been a better fit if I had been measured for it. Both Mr. and Mrs. Rucastle expressed a delight at the look of it, which seemed quite exaggerated in its vehemence. They were waiting for me in the drawing-room, which is a very large room, stretching along the entire front of the house, with three long windows reaching down to the floor. A chair had been placed close to the central window, with its back turned towards it. In this I was asked to sit, and then Mr. Rucastle, walking up and down on the other side of the room, began to tell me a series of the funniest stories that I have ever listened to. You cannot imagine how comical he was, and I laughed until I was quite weary. Mrs. Rucastle, however, who has evidently no sense of humour, never so much as smiled, but sat with her hands in her lap, and a sad, anxious look upon her face. After an hour or so, Mr. Rucastle suddenly remarked that it was time to commence the duties of the day, and that I might change my dress and go to little Edward in the nursery. "Two days later this same performance was gone through under exactly similar circumstances. Again I changed my dress, again I sat in the window, and again I laughed very heartily at the funny stories of which my employer had an immense repertoire, and which he told inimitably. Then he handed me a yellow-backed novel, and moving my chair a little sideways, that my own shadow might not fall upon the page, he begged me to read aloud to him. I read for about ten minutes, beginning in the heart of a chapter, and then suddenly, in the middle of a sentence, he ordered me to cease and to change my dress. "You can easily imagine, Mr. Holmes, how curious I became as to what the meaning of this extraordinary performance could possibly be. They were always very careful, I observed, to turn my face away from the window, so that I became consumed with the desire to see what was going on behind my back. At first it seemed to be impossible, but I soon devised a means. My hand-mirror had been broken, so a happy thought seized me, and I concealed a piece of the glass in my handkerchief. On the next occasion, in the midst of my laughter, I put my handkerchief up to my eyes, and was able with a little management to see all that there was behind me. I confess that I was disappointed. There was nothing. At least that was my first impression. At the second glance, however, I perceived that there was a man standing in the Southampton Road, a small bearded man in a grey suit, who seemed to be looking in my direction. The road is an important highway, and there are usually people there. This man, however, was leaning against the railings which bordered our field and was looking earnestly up. I lowered my handkerchief and glanced at Mrs. Rucastle to find her eyes fixed upon me with a most searching gaze. She said nothing, but I am convinced that she had divined that I had a mirror in my hand and had seen what was behind me. She rose at once. " 'Jephro,' said she, 'there is an impertinent fellow upon the road there who stares up at Miss Hunter.' " 'No friend of yours, Miss Hunter?' he asked. " 'No, I know no one in these parts.' " 'Dear me! How very impertinent! Kindly turn round and motion to him to go away.' " 'Surely it would be better to take no notice.' " 'No, no, we should have him loitering here always. Kindly turn round and wave him away like that.' "I did as I was told, and at the same instant Mrs. Rucastle drew down the blind. That was a week ago, and from that time I have not sat again in the window, nor have I worn the blue dress, nor seen the man in the road." "Pray continue," said Holmes. "Your narrative promises to be a most interesting one." "You will find it rather disconnected, I fear, and there may prove to be little relation between the different incidents of which I speak. On the very first day that I was at the Copper Beeches, Mr. Rucastle took me to a small outhouse which stands near the kitchen door. As we approached it I heard the sharp rattling of a chain, and the sound as of a large animal moving about. " 'Look in here!' said Mr. Rucastle, showing me a slit between two planks. 'Is he not a beauty?' "I looked through and was conscious of two glowing eyes, and of a vague figure huddled up in the darkness. " 'Don't be frightened,' said my employer, laughing at the start which I had given. 'It's only Carlo, my mastiff. I call him mine, but really old Toller, my groom, is the only man who can do anything with him. We feed him once a day, and not too much then, so that he is always as keen as mustard. Toller lets him loose every night, and God help the trespasser whom he lays his fangs upon. For goodness' sake don't you ever on any pretext set your foot over the threshold at night, for it's as much as your life is worth.' "The warning was no idle one, for two nights later I happened to look out of my bedroom window about two o'clock in the morning. It was a beautiful moonlight night, and the lawn in front of the house was silvered over and almost as bright as day. I was standing, rapt in the peaceful beauty of the scene, when I was aware that something was moving under the shadow of the copper beeches. As it emerged into the moonshine I saw what it was. It was a giant dog, as large as a calf, tawny tinted, with hanging jowl, black muzzle, and huge projecting bones. It walked slowly across the lawn and vanished into the shadow upon the other side. That dreadful sentinel sent a chill to my heart which I do not think that any burglar could have done. "And now I have a very strange experience to tell you. I had, as you know, cut off my hair in London, and I had placed it in a great coil at the bottom of my trunk. One evening, after the child was in bed, I began to amuse myself by examining the furniture of my room and by rearranging my own little things. There was an old chest of drawers in the room, the two upper ones empty and open, the lower one locked. I had filled the first two with my linen, and as I had still much to pack away I was naturally annoyed at not having the use of the third drawer. It struck me that it might have been fastened by a mere oversight, so I took out my bunch of keys and tried to open it. The very first key fitted to perfection, and I drew the drawer open. There was only one thing in it, but I am sure that you would never guess what it was. It was my coil of hair. "I took it up and examined it. It was of the same peculiar tint, and the same thickness. But then the impossibility of the thing obtruded itself upon me. How could my hair have been locked in the drawer? With trembling hands I undid my trunk, turned out the contents, and drew from the bottom my own hair. I laid the two tresses together, and I assure you that they were identical. Was it not extraordinary? Puzzle as I would, I could make nothing at all of what it meant. I returned the strange hair to the drawer, and I said nothing of the matter to the Rucastles as I felt that I had put myself in the wrong by opening a drawer which they had locked. "I am naturally observant, as you may have remarked, Mr. Holmes, and I soon had a pretty good plan of the whole house in my head. There was one wing, however, which appeared not to be inhabited at all. A door which faced that which led into the quarters of the Tollers opened into this suite, but it was invariably locked. One day, however, as I ascended the stair, I met Mr. Rucastle coming out through this door, his keys in his hand, and a look on his face which made him a very different person to the round, jovial man to whom I was accustomed. His cheeks were red, his brow was all crinkled with anger, and the veins stood out at his temples with passion. He locked the door and hurried past me without a word or a look. "This aroused my curiosity, so when I went out for a walk in the grounds with my charge, I strolled round to the side from which I could see the windows of this part of the house. There were four of them in a row, three of which were simply dirty, while the fourth was shuttered up. They were evidently all deserted. As I strolled up and down, glancing at them occasionally, Mr. Rucastle came out to me, looking as merry and jovial as ever. " 'Ah!' said he, 'you must not think me rude if I passed you without a word, my dear young lady. I was preoccupied with business matters.' "I assured him that I was not offended. 'By the way,' said I, 'you seem to have quite a suite of spare rooms up there, and one of them has the shutters up.' "He looked surprised and, as it seemed to me, a little startled at my remark. " 'Photography is one of my hobbies,' said he. 'I have made my dark room up there. But, dear me! what an observant young lady we have come upon. Who would have believed it? Who would have ever believed it?' He spoke in a jesting tone, but there was no jest in his eyes as he looked at me. I read suspicion there and annoyance, but no jest. "Well, Mr. Holmes, from the moment that I understood that there was something about that suite of rooms which I was not to know, I was all on fire to go over them. It was not mere curiosity, though I have my share of that. It was more a feeling of duty--a feeling that some good might come from my penetrating to this place. They talk of woman's instinct; perhaps it was woman's instinct which gave me that feeling. At any rate, it was there, and I was keenly on the lookout for any chance to pass the forbidden door. "It was only yesterday that the chance came. I may tell you that, besides Mr. Rucastle, both Toller and his wife find something to do in these deserted rooms, and I once saw him carrying a large black linen bag with him through the door. Recently he has been drinking hard, and yesterday evening he was very drunk; and when I came upstairs there was the key in the door. I have no doubt at all that he had left it there. Mr. and Mrs. Rucastle were both downstairs, and the child was with them, so that I had an admirable opportunity. I turned the key gently in the lock, opened the door, and slipped through. "There was a little passage in front of me, unpapered and uncarpeted, which turned at a right angle at the farther end. Round this corner were three doors in a line, the first and third of which were open. They each led into an empty room, dusty and cheerless, with two windows in the one and one in the other, so thick with dirt that the evening light glimmered dimly through them. The centre door was closed, and across the outside of it had been fastened one of the broad bars of an iron bed, padlocked at one end to a ring in the wall, and fastened at the other with stout cord. The door itself was locked as well, and the key was not there. This barricaded door corresponded clearly with the shuttered window outside, and yet I could see by the glimmer from beneath it that the room was not in darkness. Evidently there was a skylight which let in light from above. As I stood in the passage gazing at the sinister door and wondering what secret it might veil, I suddenly heard the sound of steps within the room and saw a shadow pass backward and forward against the little slit of dim light which shone out from under the door. A mad, unreasoning terror rose up in me at the sight, Mr. Holmes. My overstrung nerves failed me suddenly, and I turned and ran--ran as though some dreadful hand were behind me clutching at the skirt of my dress. I rushed down the passage, through the door, and straight into the arms of Mr. Rucastle, who was waiting outside. " 'So,' said he, smiling, 'it was you, then. I thought that it must be when I saw the door open.' " 'Oh, I am so frightened!' I panted. " 'My dear young lady! my dear young lady!'--you cannot think how caressing and soothing his manner was--'and what has frightened you, my dear young lady?' "But his voice was just a little too coaxing. He overdid it. I was keenly on my guard against him. " 'I was foolish enough to go into the empty wing,' I answered. 'But it is so lonely and eerie in this dim light that I was frightened and ran out again. Oh, it is so dreadfully still in there!' " 'Only that?' said he, looking at me keenly. " 'Why, what did you think?' I asked. " 'Why do you think that I lock this door?' " 'I am sure that I do not know.' " 'It is to keep people out who have no business there. Do you see?' He was still smiling in the most amiable manner. " 'I am sure if I had known--' " 'Well, then, you know now. And if you ever put your foot over that threshold again'--here in an instant the smile hardened into a grin of rage, and he glared down at me with the face of a demon--'I'll throw you to the mastiff.' "I was so terrified that I do not know what I did. I suppose that I must have rushed past him into my room. I remember nothing until I found myself lying on my bed trembling all over. Then I thought of you, Mr. Holmes. I could not live there longer without some advice. I was frightened of the house, of the man, of the woman, of the servants, even of the child. They were all horrible to me. If I could only bring you down all would be well. Of course I might have fled from the house, but my curiosity was almost as strong as my fears. My mind was soon made up. I would send you a wire. I put on my hat and cloak, went down to the office, which is about half a mile from the house, and then returned, feeling very much easier. A horrible doubt came into my mind as I approached the door lest the dog might be loose, but I remembered that Toller had drunk himself into a state of insensibility that evening, and I knew that he was the only one in the household who had any influence with the savage creature, or who would venture to set him free. I slipped in in safety and lay awake half the night in my joy at the thought of seeing you. I had no difficulty in getting leave to come into Winchester this morning, but I must be back before three o'clock, for Mr. and Mrs. Rucastle are going on a visit, and will be away all the evening, so that I must look after the child. Now I have told you all my adventures, Mr. Holmes, and I should be very glad if you could tell me what it all means, and, above all, what I should do." Holmes and I had listened spellbound to this extraordinary story. My friend rose now and paced up and down the room, his hands in his pockets, and an expression of the most profound gravity upon his face. "Is Toller still drunk?" he asked. "Yes. I heard his wife tell Mrs. Rucastle that she could do nothing with him." "That is well. And the Rucastles go out to-night?" "Yes." "Is there a cellar with a good strong lock?" "Yes, the wine-cellar." "You seem to me to have acted all through this matter like a very brave and sensible girl, Miss Hunter. Do you think that you could perform one more feat? I should not ask it of you if I did not think you a quite exceptional woman." "I will try. What is it?" "We shall be at the Copper Beeches by seven o'clock, my friend and I. The Rucastles will be gone by that time, and Toller will, we hope, be incapable. There only remains Mrs. Toller, who might give the alarm. If you could send her into the cellar on some errand, and then turn the key upon her, you would facilitate matters immensely." "I will do it." "Excellent! We shall then look thoroughly into the affair. Of course there is only one feasible explanation. You have been brought there to personate someone, and the real person is imprisoned in this chamber. That is obvious. As to who this prisoner is, I have no doubt that it is the daughter, Miss Alice Rucastle, if I remember right, who was said to have gone to America. You were chosen, doubtless, as resembling her in height, figure, and the colour of your hair. Hers had been cut off, very possibly in some illness through which she has passed, and so, of course, yours had to be sacrificed also. By a curious chance you came upon her tresses. The man in the road was undoubtedly some friend of hers--possibly her fiance--and no doubt, as you wore the girl's dress and were so like her, he was convinced from your laughter, whenever he saw you, and afterwards from your gesture, that Miss Rucastle was perfectly happy, and that she no longer desired his attentions. The dog is let loose at night to prevent him from endeavouring to communicate with her. So much is fairly clear. The most serious point in the case is the disposition of the child." "What on earth has that to do with it?" I ejaculated. "My dear Watson, you as a medical man are continually gaining light as to the tendencies of a child by the study of the parents. Don't you see that the converse is equally valid. I have frequently gained my first real insight into the character of parents by studying their children. This child's disposition is abnormally cruel, merely for cruelty's sake, and whether he derives this from his smiling father, as I should suspect, or from his mother, it bodes evil for the poor girl who is in their power." "I am sure that you are right, Mr. Holmes," cried our client. "A thousand things come back to me which make me certain that you have hit it. Oh, let us lose not an instant in bringing help to this poor creature." "We must be circumspect, for we are dealing with a very cunning man. We can do nothing until seven o'clock. At that hour we shall be with you, and it will not be long before we solve the mystery." We were as good as our word, for it was just seven when we reached the Copper Beeches, having put up our trap at a wayside public-house. The group of trees, with their dark leaves shining like burnished metal in the light of the setting sun, were sufficient to mark the house even had Miss Hunter not been standing smiling on the door-step. "Have you managed it?" asked Holmes. A loud thudding noise came from somewhere downstairs. "That is Mrs. Toller in the cellar," said she. "Her husband lies snoring on the kitchen rug. Here are his keys, which are the duplicates of Mr. Rucastle's." "You have done well indeed!" cried Holmes with enthusiasm. "Now lead the way, and we shall soon see the end of this black business." We passed up the stair, unlocked the door, followed on down a passage, and found ourselves in front of the barricade which Miss Hunter had described. Holmes cut the cord and removed the transverse bar. Then he tried the various keys in the lock, but without success. No sound came from within, and at the silence Holmes' face clouded over. "I trust that we are not too late," said he. "I think, Miss Hunter, that we had better go in without you. Now, Watson, put your shoulder to it, and we shall see whether we cannot make our way in." It was an old rickety door and gave at once before our united strength. Together we rushed into the room. It was empty. There was no furniture save a little pallet bed, a small table, and a basketful of linen. The skylight above was open, and the prisoner gone. "There has been some villainy here," said Holmes; "this beauty has guessed Miss Hunter's intentions and has carried his victim off." "But how?" "Through the skylight. We shall soon see how he managed it." He swung himself up onto the roof. "Ah, yes," he cried, "here's the end of a long light ladder against the eaves. That is how he did it." "But it is impossible," said Miss Hunter; "the ladder was not there when the Rucastles went away." "He has come back and done it. I tell you that he is a clever and dangerous man. I should not be very much surprised if this were he whose step I hear now upon the stair. I think, Watson, that it would be as well for you to have your pistol ready." The words were hardly out of his mouth before a man appeared at the door of the room, a very fat and burly man, with a heavy stick in his hand. Miss Hunter screamed and shrunk against the wall at the sight of him, but Sherlock Holmes sprang forward and confronted him. "You villain!" said he, "where's your daughter?" The fat man cast his eyes round, and then up at the open skylight. "It is for me to ask you that," he shrieked, "you thieves! Spies and thieves! I have caught you, have I? You are in my power. I'll serve you!" He turned and clattered down the stairs as hard as he could go. "He's gone for the dog!" cried Miss Hunter. "I have my revolver," said I. "Better close the front door," cried Holmes, and we all rushed down the stairs together. We had hardly reached the hall when we heard the baying of a hound, and then a scream of agony, with a horrible worrying sound which it was dreadful to listen to. An elderly man with a red face and shaking limbs came staggering out at a side door. "My God!" he cried. "Someone has loosed the dog. It's not been fed for two days. Quick, quick, or it'll be too late!" Holmes and I rushed out and round the angle of the house, with Toller hurrying behind us. There was the huge famished brute, its black muzzle buried in Rucastle's throat, while he writhed and screamed upon the ground. Running up, I blew its brains out, and it fell over with its keen white teeth still meeting in the great creases of his neck. With much labour we separated them and carried him, living but horribly mangled, into the house. We laid him upon the drawing-room sofa, and having dispatched the sobered Toller to bear the news to his wife, I did what I could to relieve his pain. We were all assembled round him when the door opened, and a tall, gaunt woman entered the room. "Mrs. Toller!" cried Miss Hunter. "Yes, miss. Mr. Rucastle let me out when he came back before he went up to you. Ah, miss, it is a pity you didn't let me know what you were planning, for I would have told you that your pains were wasted." "Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. Toller knows more about this matter than anyone else." "Yes, sir, I do, and I am ready enough to tell what I know." "Then, pray, sit down, and let us hear it for there are several points on which I must confess that I am still in the dark." "I will soon make it clear to you," said she; "and I'd have done so before now if I could ha' got out from the cellar. If there's police-court business over this, you'll remember that I was the one that stood your friend, and that I was Miss Alice's friend too. "She was never happy at home, Miss Alice wasn't, from the time that her father married again. She was slighted like and had no say in anything, but it never really became bad for her until after she met Mr. Fowler at a friend's house. As well as I could learn, Miss Alice had rights of her own by will, but she was so quiet and patient, she was, that she never said a word about them but just left everything in Mr. Rucastle's hands. He knew he was safe with her; but when there was a chance of a husband coming forward, who would ask for all that the law would give him, then her father thought it time to put a stop on it. He wanted her to sign a paper, so that whether she married or not, he could use her money. When she wouldn't do it, he kept on worrying her until she got brain-fever, and for six weeks was at death's door. Then she got better at last, all worn to a shadow, and with her beautiful hair cut off; but that didn't make no change in her young man, and he stuck to her as true as man could be." "Ah," said Holmes, "I think that what you have been good enough to tell us makes the matter fairly clear, and that I can deduce all that remains. Mr. Rucastle then, I presume, took to this system of imprisonment?" "Yes, sir." "And brought Miss Hunter down from London in order to get rid of the disagreeable persistence of Mr. Fowler." "That was it, sir." "But Mr. Fowler being a persevering man, as a good seaman should be, blockaded the house, and having met you succeeded by certain arguments, metallic or otherwise, in convincing you that your interests were the same as his." "Mr. Fowler was a very kind-spoken, free-handed gentleman," said Mrs. Toller serenely. "And in this way he managed that your good man should have no want of drink, and that a ladder should be ready at the moment when your master had gone out." "You have it, sir, just as it happened." "I am sure we owe you an apology, Mrs. Toller," said Holmes, "for you have certainly cleared up everything which puzzled us. And here comes the country surgeon and Mrs. Rucastle, so I think, Watson, that we had best escort Miss Hunter back to Winchester, as it seems to me that our locus standi now is rather a questionable one." And thus was solved the mystery of the sinister house with the copper beeches in front of the door. Mr. Rucastle survived, but was always a broken man, kept alive solely through the care of his devoted wife. They still live with their old servants, who probably know so much of Rucastle's past life that he finds it difficult to part from them. Mr. Fowler and Miss Rucastle were married, by special license, in Southampton the day after their flight, and he is now the holder of a government appointment in the island of Mauritius. As to Miss Violet Hunter, my friend Holmes, rather to my disappointment, manifested no further interest in her when once she had ceased to be the centre of one of his problems, and she is now the head of a private school at Walsall, where I believe that she has met with considerable success. *** END OF THE PROJECT GUTENBERG EBOOK, THE ADVENTURES OF SHERLOCK HOLMES *** This file should be named advsh12h.htm or advsh12h.zip Corrected EDITIONS of our eBooks get a new NUMBER, advsh13h.txt VERSIONS based on separate sources get new LETTER, advsh12ah.txt Project Gutenberg eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the US unless a copyright notice is included. Thus, we usually do not keep eBooks in compliance with any particular paper edition. We are now trying to release all our eBooks one year in advance of the official release dates, leaving time for better editing. Please be encouraged to tell us about any error or corrections, even years after the official publication date. Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement. The official release date of all Project Gutenberg eBooks is at Midnight, Central Time, of the last day of the stated month. A preliminary version may often be posted for suggestion, comment and editing by those who wish to do so. Most people start at our Web sites at: http://gutenberg.net or http://promo.net/pg These Web sites include award-winning information about Project Gutenberg, including how to donate, how to help produce our new eBooks, and how to subscribe to our email newsletter (free!). Those of you who want to download any eBook before announcement can get to them as follows, and just download by date. This is also a good way to get them instantly upon announcement, as the indexes our cataloguers produce obviously take a while after an announcement goes out in the Project Gutenberg Newsletter. http://www.ibiblio.org/gutenberg/etext04 or ftp://ftp.ibiblio.org/pub/docs/books/gutenberg/etext03 Or /etext03, 02, 01, 00, 99, 98, 97, 96, 95, 94, 93, 92, 92, 91 or 90 Just search by the first five letters of the filename you want, as it appears in our Newsletters. Information about Project Gutenberg (one page) We produce about two million dollars for each hour we work. The time it takes us, a rather conservative estimate, is fifty hours to get any eBook selected, entered, proofread, edited, copyright searched and analyzed, the copyright letters written, etc. Our projected audience is one hundred million readers. If the value per text is nominally estimated at one dollar then we produce $2 million dollars per hour in 2002 as we release over 100 new text files per month: 1240 more eBooks in 2001 for a total of 4000+ We are already on our way to trying for 2000 more eBooks in 2002 If they reach just 1-2% of the world's population then the total will reach over half a trillion eBooks given away by year's end. The Goal of Project Gutenberg is to Give Away 1 Trillion eBooks! This is ten thousand titles each to one hundred million readers, which is only about 4% of the present number of computer users. Here is the briefest record of our progress (* means estimated): eBooks Year Month 1 1971 July 10 1991 January 100 1994 January 1000 1997 August 1500 1998 October 2000 1999 December 2500 2000 December 3000 2001 November 4000 2001 October/November 6000 2002 December* 9000 2003 November* 10000 2004 January* The Project Gutenberg Literary Archive Foundation has been created to secure a future for Project Gutenberg into the next millennium. We need your donations more than ever! As of February, 2002, contributions are being solicited from people and organizations in: Alabama, Alaska, Arkansas, Connecticut, Delaware, District of Columbia, Florida, Georgia, Hawaii, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Massachusetts, Michigan, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin, and Wyoming. We have filed in all 50 states now, but these are the only ones that have responded. As the requirements for other states are met, additions to this list will be made and fund raising will begin in the additional states. Please feel free to ask to check the status of your state. In answer to various questions we have received on this: We are constantly working on finishing the paperwork to legally request donations in all 50 states. If your state is not listed and you would like to know if we have added it since the list you have, just ask. While we cannot solicit donations from people in states where we are not yet registered, we know of no prohibition against accepting donations from donors in these states who approach us with an offer to donate. International donations are accepted, but we don't know ANYTHING about how to make them tax-deductible, or even if they CAN be made deductible, and don't have the staff to handle it even if there are ways. Donations by check or money order may be sent to: Project Gutenberg Literary Archive Foundation PMB 113 1739 University Ave. Oxford, MS 38655-4109 Contact us if you want to arrange for a wire transfer or payment method other than by check or money order. The Project Gutenberg Literary Archive Foundation has been approved by the US Internal Revenue Service as a 501(c)(3) organization with EIN [Employee Identification Number] 64-622154. Donations are tax-deductible to the maximum extent permitted by law. As fund-raising requirements for other states are met, additions to this list will be made and fund-raising will begin in the additional states. We need your donations more than ever! You can get up to date donation information online at: http://www.gutenberg.net/donation.html *** If you can't reach Project Gutenberg, you can always email directly to: Michael S. Hart Prof. Hart will answer or forward your message. We would prefer to send you information by email. **The Legal Small Print** (Three Pages) ***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN EBOOKS**START*** Why is this "Small Print!" statement here? You know: lawyers. They tell us you might sue us if there is something wrong with your copy of this eBook, even if you got it for free from someone other than us, and even if what's wrong is not our fault. So, among other things, this "Small Print!" statement disclaims most of our liability to you. It also tells you how you may distribute copies of this eBook if you want to. *BEFORE!* YOU USE OR READ THIS EBOOK By using or reading any part of this PROJECT GUTENBERG-tm eBook, you indicate that you understand, agree to and accept this "Small Print!" statement. If you do not, you can receive a refund of the money (if any) you paid for this eBook by sending a request within 30 days of receiving it to the person you got it from. If you received this eBook on a physical medium (such as a disk), you must return it with your request. ABOUT PROJECT GUTENBERG-TM EBOOKS This PROJECT GUTENBERG-tm eBook, like most PROJECT GUTENBERG-tm eBooks, is a "public domain" work distributed by Professor Michael S. Hart through the Project Gutenberg Association (the "Project"). Among other things, this means that no one owns a United States copyright on or for this work, so the Project (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth below, apply if you wish to copy and distribute this eBook under the "PROJECT GUTENBERG" trademark. Please do not use the "PROJECT GUTENBERG" trademark to market any commercial products without permission. To create these eBooks, the Project expends considerable efforts to identify, transcribe and proofread public domain works. Despite these efforts, the Project's eBooks and any medium they may be on may contain "Defects". Among other things, Defects may take the form of incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other eBook medium, a computer virus, or computer codes that damage or cannot be read by your equipment. LIMITED WARRANTY; DISCLAIMER OF DAMAGES But for the "Right of Replacement or Refund" described below, [1] Michael Hart and the Foundation (and any other party you may receive this eBook from as a PROJECT GUTENBERG-tm eBook) disclaims all liability to you for damages, costs and expenses, including legal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR UNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT, INCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. If you discover a Defect in this eBook within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending an explanatory note within that time to the person you received it from. If you received it on a physical medium, you must return it with your note, and such person may choose to alternatively give you a replacement copy. If you received it electronically, such person may choose to alternatively give you a second opportunity to receive it electronically. THIS EBOOK IS OTHERWISE PROVIDED TO YOU "AS-IS". NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS TO THE EBOOK OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states do not allow disclaimers of implied warranties or the exclusion or limitation of consequential damages, so the above disclaimers and exclusions may not apply to you, and you may have other legal rights. INDEMNITY You will indemnify and hold Michael Hart, the Foundation, and its trustees and agents, and any volunteers associated with the production and distribution of Project Gutenberg-tm texts harmless, from all liability, cost and expense, including legal fees, that arise directly or indirectly from any of the following that you do or cause: [1] distribution of this eBook, [2] alteration, modification, or addition to the eBook, or [3] any Defect. DISTRIBUTION UNDER "PROJECT GUTENBERG-tm" You may distribute copies of this eBook electronically, or by disk, book or any other medium if you either delete this "Small Print!" and all other references to Project Gutenberg, or: [1] Only give exact copies of it. Among other things, this requires that you do not remove, alter or modify the eBook or this "small print!" statement. You may however, if you wish, distribute this eBook in machine readable binary, compressed, mark-up, or proprietary form, including any form resulting from conversion by word processing or hypertext software, but only so long as *EITHER*: [*] The eBook, when displayed, is clearly readable, and does *not* contain characters other than those intended by the author of the work, although tilde (~), asterisk (*) and underline (_) characters may be used to convey punctuation intended by the author, and additional characters may be used to indicate hypertext links; OR [*] The eBook may be readily converted by the reader at no expense into plain ASCII, EBCDIC or equivalent form by the program that displays the eBook (as is the case, for instance, with most word processors); OR [*] You provide, or agree to also provide on request at no additional cost, fee or expense, a copy of the eBook in its original plain ASCII form (or in EBCDIC or other equivalent proprietary form). [2] Honor the eBook refund and replacement provisions of this "Small Print!" statement. [3] Pay a trademark license fee to the Foundation of 20% of the gross profits you derive calculated using the method you already use to calculate your applicable taxes. If you don't derive profits, no royalty is due. Royalties are payable to "Project Gutenberg Literary Archive Foundation" the 60 days following each date you prepare (or were legally required to prepare) your annual (or equivalent periodic) tax return. Please contact us beforehand to let us know your plans and to work out the details. WHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO? Project Gutenberg is dedicated to increasing the number of public domain and licensed works that can be freely distributed in machine readable form. The Project gratefully accepts contributions of money, time, public domain materials, or royalty free copyright licenses. Money should be paid to the: "Project Gutenberg Literary Archive Foundation." If you are interested in contributing scanning equipment or software or other items, please contact Michael Hart at: hart@pobox.com [Portions of this eBook's header and trailer may be reprinted only when distributed free of all fees. Copyright (C) 2001, 2002 by Michael S. Hart. Project Gutenberg is a TradeMark and may not be used in any sales of Project Gutenberg eBooks or other materials be they hardware or software or any other related product without express permission.] *END THE SMALL PRINT! FOR PUBLIC DOMAIN EBOOKS*Ver.02/11/02*END* The Project Gutenberg EBook of History of the United States by Charles A. Beard and Mary R. Beard This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net Title: History of the United States Author: Charles A. Beard and Mary R. Beard Release Date: October 28, 2005 [EBook #16960] Language: English Character set encoding: ISO-8859-1 *** START OF THIS PROJECT GUTENBERG EBOOK HISTORY OF THE UNITED STATES *** Produced by Curtis Weyant, M and the Online Distributed Proofreading Team at http://www.pgdp.net HISTORY OF THE UNITED STATES BY CHARLES A. BEARD AND MARY R. BEARD New York THE MACMILLAN COMPANY 1921 _All rights reserved_ COPYRIGHT, 1921, BY THE MACMILLAN COMPANY. Set up and electrotyped. Published March, 1921. Norwood Press J.S. Cushing Co.--Berwick & Smith Co. NORWOOD, MASS., U.S.A. PREFACE As things now stand, the course of instruction in American history in our public schools embraces three distinct treatments of the subject. Three separate books are used. First, there is the primary book, which is usually a very condensed narrative with emphasis on biographies and anecdotes. Second, there is the advanced text for the seventh or eighth grade, generally speaking, an expansion of the elementary book by the addition of forty or fifty thousand words. Finally, there is the high school manual. This, too, ordinarily follows the beaten path, giving fuller accounts of the same events and characters. To put it bluntly, we do not assume that our children obtain permanent possessions from their study of history in the lower grades. If mathematicians followed the same method, high school texts on algebra and geometry would include the multiplication table and fractions. There is, of course, a ready answer to the criticism advanced above. It is that teachers have learned from bitter experience how little history their pupils retain as they pass along the regular route. No teacher of history will deny this. Still it is a standing challenge to existing methods of historical instruction. If the study of history cannot be made truly progressive like the study of mathematics, science, and languages, then the historians assume a grave responsibility in adding their subject to the already overloaded curriculum. If the successive historical texts are only enlarged editions of the first text--more facts, more dates, more words--then history deserves most of the sharp criticism which it is receiving from teachers of science, civics, and economics. In this condition of affairs we find our justification for offering a new high school text in American history. Our first contribution is one of omission. The time-honored stories of exploration and the biographies of heroes are left out. We frankly hold that, if pupils know little or nothing about Columbus, Cortes, Magellan, or Captain John Smith by the time they reach the high school, it is useless to tell the same stories for perhaps the fourth time. It is worse than useless. It is an offense against the teachers of those subjects that are demonstrated to be progressive in character. In the next place we have omitted all descriptions of battles. Our reasons for this are simple. The strategy of a campaign or of a single battle is a highly technical, and usually a highly controversial, matter about which experts differ widely. In the field of military and naval operations most writers and teachers of history are mere novices. To dispose of Gettysburg or the Wilderness in ten lines or ten pages is equally absurd to the serious student of military affairs. Any one who compares the ordinary textbook account of a single Civil War campaign with the account given by Ropes, for instance, will ask for no further comment. No youth called upon to serve our country in arms would think of turning to a high school manual for information about the art of warfare. The dramatic scene or episode, so useful in arousing the interest of the immature pupil, seems out of place in a book that deliberately appeals to boys and girls on the very threshold of life's serious responsibilities. It is not upon negative features, however, that we rest our case. It is rather upon constructive features. _First._ We have written a topical, not a narrative, history. We have tried to set forth the important aspects, problems, and movements of each period, bringing in the narrative rather by way of illustration. _Second._ We have emphasized those historical topics which help to explain how our nation has come to be what it is to-day. _Third._ We have dwelt fully upon the social and economic aspects of our history, especially in relation to the politics of each period. _Fourth._ We have treated the causes and results of wars, the problems of financing and sustaining armed forces, rather than military strategy. These are the subjects which belong to a history for civilians. These are matters which civilians can understand--matters which they must understand, if they are to play well their part in war and peace. _Fifth._ By omitting the period of exploration, we have been able to enlarge the treatment of our own time. We have given special attention to the history of those current questions which must form the subject matter of sound instruction in citizenship. _Sixth._ We have borne in mind that America, with all her unique characteristics, is a part of a general civilization. Accordingly we have given diplomacy, foreign affairs, world relations, and the reciprocal influences of nations their appropriate place. _Seventh._ We have deliberately aimed at standards of maturity. The study of a mere narrative calls mainly for the use of the memory. We have aimed to stimulate habits of analysis, comparison, association, reflection, and generalization--habits calculated to enlarge as well as inform the mind. We have been at great pains to make our text clear, simple, and direct; but we have earnestly sought to stretch the intellects of our readers--to put them upon their mettle. Most of them will receive the last of their formal instruction in the high school. The world will soon expect maturity from them. Their achievements will depend upon the possession of other powers than memory alone. The effectiveness of their citizenship in our republic will be measured by the excellence of their judgment as well as the fullness of their information. C.A.B. M.R.B. NEW YORK CITY, February 8, 1921. =A SMALL LIBRARY IN AMERICAN HISTORY= _=SINGLE VOLUMES:=_ BASSETT, J.S. _A Short History of the United States_ ELSON, H.W. _History of the United States of America_ _=SERIES:=_ "EPOCHS OF AMERICAN HISTORY," EDITED BY A.B. HART HART, A.B. _Formation of the Union_ THWAITES, R.G. _The Colonies_ WILSON, WOODROW. _Division and Reunion_ "RIVERSIDE SERIES," EDITED BY W.E. DODD BECKER, C.L. _Beginnings of the American People_ DODD, W.E. _Expansion and Conflict_ JOHNSON, A. _Union and Democracy_ PAXSON, F.L. _The New Nation_ CONTENTS PART I. THE COLONIAL PERIOD CHAPTER PAGE I. THE GREAT MIGRATION TO AMERICA 1 The Agencies of American Colonization 2 The Colonial Peoples 6 The Process of Colonization 12 II. COLONIAL AGRICULTURE, INDUSTRY, AND COMMERCE 20 The Land and the Westward Movement 20 Industrial and Commercial Development 28 III. SOCIAL AND POLITICAL PROGRESS 38 The Leadership of the Churches 39 Schools and Colleges 43 The Colonial Press 46 The Evolution in Political Institutions 48 IV. THE DEVELOPMENT OF COLONIAL NATIONALISM 56 Relations with the Indians and the French 57 The Effects of Warfare on the Colonies 61 Colonial Relations with the British Government 64 Summary of Colonial Period 73 PART II. CONFLICT AND INDEPENDENCE V. THE NEW COURSE IN BRITISH IMPERIAL POLICY 77 George III and His System 77 George III's Ministers and Their Colonial Policies 79 Colonial Resistance Forces Repeal 83 Resumption of British Revenue and Commercial Policies 87 Renewed Resistance in America 90 Retaliation by the British Government 93 From Reform to Revolution in America 95 VI. THE AMERICAN REVOLUTION 99 Resistance and Retaliation 99 American Independence 101 The Establishment of Government and the New Allegiance 108 Military Affairs 116 The Finances of the Revolution 125 The Diplomacy of the Revolution 127 Peace at Last 132 Summary of the Revolutionary Period 135 PART III. FOUNDATIONS OF THE UNION AND NATIONAL POLITICS VII. THE FORMATION OF THE CONSTITUTION 139 The Promise and the Difficulties of America 139 The Calling of a Constitutional Convention 143 The Framing of the Constitution 146 The Struggle over Ratification 157 VIII. THE CLASH OF POLITICAL PARTIES 162 The Men and Measures of the New Government 162 The Rise of Political Parties 168 Foreign Influences and Domestic Politics 171 IX. THE JEFFERSONIAN REPUBLICANS IN POWER 186 Republican Principles and Policies 186 The Republicans and the Great West 188 The Republican War for Commercial Independence 193 The Republicans Nationalized 201 The National Decisions of Chief Justice Marshall 208 Summary of Union and National Politics 212 PART IV. THE WEST AND JACKSONIAN DEMOCRACY X. THE FARMERS BEYOND THE APPALACHIANS 217 Preparation for Western Settlement 217 The Western Migration and New States 221 The Spirit of the Frontier 228 The West and the East Meet 230 XI. JACKSONIAN DEMOCRACY 238 The Democratic Movement in the East 238 The New Democracy Enters the Arena 244 The New Democracy at Washington 250 The Rise of the Whigs 260 The Interaction of American and European Opinion 265 XII. THE MIDDLE BORDER AND THE GREAT WEST 271 The Advance of the Middle Border 271 On to the Pacific--Texas and the Mexican War 276 The Pacific Coast and Utah 284 Summary of Western Development and National Politics 292 PART V. SECTIONAL CONFLICT AND RECONSTRUCTION XIII. THE RISE OF THE INDUSTRIAL SYSTEM 295 The Industrial Revolution 296 The Industrial Revolution and National Politics 307 XIV. THE PLANTING SYSTEM AND NATIONAL POLITICS 316 Slavery--North and South 316 Slavery in National Politics 324 The Drift of Events toward the Irrepressible Conflict 332 XV. THE CIVIL WAR AND RECONSTRUCTION 344 The Southern Confederacy 344 The War Measures of the Federal Government 350 The Results of the Civil War 365 Reconstruction in the South 370 Summary of the Sectional Conflict 375 PART VI. NATIONAL GROWTH AND WORLD POLITICS XVI. THE POLITICAL AND ECONOMIC EVOLUTION OF THE SOUTH 379 The South at the Close of the War 379 The Restoration of White Supremacy 382 The Economic Advance of the South 389 XVII. BUSINESS ENTERPRISE AND THE REPUBLICAN PARTY 401 Railways and Industry 401 The Supremacy of the Republican Party (1861-1885) 412 The Growth of Opposition to Republican Rule 417 XVIII. THE DEVELOPMENT OF THE GREAT WEST 425 The Railways as Trail Blazers 425 The Evolution of Grazing and Agriculture 431 Mining and Manufacturing in the West 436 The Admission of New States 440 The Influence of the Far West on National Life 443 XIX. DOMESTIC ISSUES BEFORE THE COUNTRY (1865-1897) 451 The Currency Question 452 The Protective Tariff and Taxation 459 The Railways and Trusts 460 The Minor Parties and Unrest 462 The Sound Money Battle of 1896 466 Republican Measures and Results 472 XX. AMERICA A WORLD POWER (1865-1900) 477 American Foreign Relations (1865-1898) 478 Cuba and the Spanish War 485 American Policies in the Philippines and the Orient 497 Summary of National Growth and World Politics 504 PART VII. PROGRESSIVE DEMOCRACY AND THE WORLD WAR XXI. THE EVOLUTION OF REPUBLICAN POLICIES (1901-1913) 507 Foreign Affairs 508 Colonial Administration 515 The Roosevelt Domestic Policies 519 Legislative and Executive Activities 523 The Administration of President Taft 527 Progressive Insurgency and the Election of 1912 530 XXII. THE SPIRIT OF REFORM IN AMERICA 536 An Age of Criticism 536 Political Reforms 538 Measures of Economic Reform 546 XXIII. THE NEW POLITICAL DEMOCRACY 554 The Rise of the Woman Movement 555 The National Struggle for Woman Suffrage 562 XXIV. INDUSTRIAL DEMOCRACY 570 Cooperation between Employers and Employees 571 The Rise and Growth of Organized Labor 575 The Wider Relations of Organized Labor 577 Immigration and Americanization 582 XXV. PRESIDENT WILSON AND THE WORLD WAR 588 Domestic Legislation 588 Colonial and Foreign Policies 592 The United States and the European War 596 The United States at War 604 The Settlement at Paris 612 Summary of Democracy and the World War 620 APPENDIX 627 A TOPICAL SYLLABUS 645 INDEX 655 MAPS PAGE The Original Grants (color map) _Facing_ 4 German and Scotch-Irish Settlements 8 Distribution of Population in 1790 27 English, French, and Spanish Possessions in America, 1750 (color map) _Facing_ 59 The Colonies at the Time of the Declaration of Independence (color map) _Facing_ 108 North America according to the Treaty of 1783 (color map) _Facing_ 134 The United States in 1805 (color map) _Facing_ 193 Roads and Trails into Western Territory (color map) _Facing_ 224 The Cumberland Road 233 Distribution of Population in 1830 235 Texas and the Territory in Dispute 282 The Oregon Country and the Disputed Boundary 285 The Overland Trails 287 Distribution of Slaves in Southern States 323 The Missouri Compromise 326 Slave and Free Soil on the Eve of the Civil War 335 The United States in 1861 (color map) _Facing_ 345 Railroads of the United States in 1918 405 The United States in 1870 (color map) _Facing_ 427 The United States in 1912 (color map) _Facing_ 443 American Dominions in the Pacific (color map) _Facing_ 500 The Caribbean Region (color map) _Facing_ 592 Battle Lines of the Various Years of the World War 613 Europe in 1919 (color map) _Between_ 618-619 "THE NATIONS OF THE WEST" (popularly called "The Pioneers"), designed by A. Stirling Calder and modeled by Mr. Calder, F.G.R. Roth, and Leo Lentelli, topped the Arch of the Setting Sun at the Panama-Pacific Exposition held at San Francisco in 1915. Facing the Court of the Universe moves a group of men and women typical of those who have made our civilization. From left to right appear the French-Canadian, the Alaskan, the Latin-American, the German, the Italian, the Anglo-American, and the American Indian, squaw and warrior. In the place of honor in the center of the group, standing between the oxen on the tongue of the prairie schooner, is a figure, beautiful and almost girlish, but strong, dignified, and womanly, the Mother of To-morrow. Above the group rides the Spirit of Enterprise, flanked right and left by the Hopes of the Future in the person of two boys. The group as a whole is beautifully symbolic of the westward march of American civilization. [Illustration: _Photograph by Cardinell-Vincent Co., San Francisco_ "THE NATIONS OF THE WEST"] HISTORY OF THE UNITED STATES PART I. THE COLONIAL PERIOD CHAPTER I THE GREAT MIGRATION TO AMERICA The tide of migration that set in toward the shores of North America during the early years of the seventeenth century was but one phase in the restless and eternal movement of mankind upon the surface of the earth. The ancient Greeks flung out their colonies in every direction, westward as far as Gaul, across the Mediterranean, and eastward into Asia Minor, perhaps to the very confines of India. The Romans, supported by their armies and their government, spread their dominion beyond the narrow lands of Italy until it stretched from the heather of Scotland to the sands of Arabia. The Teutonic tribes, from their home beyond the Danube and the Rhine, poured into the empire of the Caesars and made the beginnings of modern Europe. Of this great sweep of races and empires the settlement of America was merely a part. And it was, moreover, only one aspect of the expansion which finally carried the peoples, the institutions, and the trade of Europe to the very ends of the earth. In one vital point, it must be noted, American colonization differed from that of the ancients. The Greeks usually carried with them affection for the government they left behind and sacred fire from the altar of the parent city; but thousands of the immigrants who came to America disliked the state and disowned the church of the mother country. They established compacts of government for themselves and set up altars of their own. They sought not only new soil to till but also political and religious liberty for themselves and their children. THE AGENCIES OF AMERICAN COLONIZATION It was no light matter for the English to cross three thousand miles of water and found homes in the American wilderness at the opening of the seventeenth century. Ships, tools, and supplies called for huge outlays of money. Stores had to be furnished in quantities sufficient to sustain the life of the settlers until they could gather harvests of their own. Artisans and laborers of skill and industry had to be induced to risk the hazards of the new world. Soldiers were required for defense and mariners for the exploration of inland waters. Leaders of good judgment, adept in managing men, had to be discovered. Altogether such an enterprise demanded capital larger than the ordinary merchant or gentleman could amass and involved risks more imminent than he dared to assume. Though in later days, after initial tests had been made, wealthy proprietors were able to establish colonies on their own account, it was the corporation that furnished the capital and leadership in the beginning. =The Trading Company.=--English pioneers in exploration found an instrument for colonization in companies of merchant adventurers, which had long been employed in carrying on commerce with foreign countries. Such a corporation was composed of many persons of different ranks of society--noblemen, merchants, and gentlemen--who banded together for a particular undertaking, each contributing a sum of money and sharing in the profits of the venture. It was organized under royal authority; it received its charter, its grant of land, and its trading privileges from the king and carried on its operations under his supervision and control. The charter named all the persons originally included in the corporation and gave them certain powers in the management of its affairs, including the right to admit new members. The company was in fact a little government set up by the king. When the members of the corporation remained in England, as in the case of the Virginia Company, they operated through agents sent to the colony. When they came over the seas themselves and settled in America, as in the case of Massachusetts, they became the direct government of the country they possessed. The stockholders in that instance became the voters and the governor, the chief magistrate. [Illustration: JOHN WINTHROP, GOVERNOR OF THE MASSACHUSETTS BAY COMPANY] Four of the thirteen colonies in America owed their origins to the trading corporation. It was the London Company, created by King James I, in 1606, that laid during the following year the foundations of Virginia at Jamestown. It was under the auspices of their West India Company, chartered in 1621, that the Dutch planted the settlements of the New Netherland in the valley of the Hudson. The founders of Massachusetts were Puritan leaders and men of affairs whom King Charles I incorporated in 1629 under the title: "The governor and company of the Massachusetts Bay in New England." In this case the law did but incorporate a group drawn together by religious ties. "We must be knit together as one man," wrote John Winthrop, the first Puritan governor in America. Far to the south, on the banks of the Delaware River, a Swedish commercial company in 1638 made the beginnings of a settlement, christened New Sweden; it was destined to pass under the rule of the Dutch, and finally under the rule of William Penn as the proprietary colony of Delaware. In a certain sense, Georgia may be included among the "company colonies." It was, however, originally conceived by the moving spirit, James Oglethorpe, as an asylum for poor men, especially those imprisoned for debt. To realize this humane purpose, he secured from King George II, in 1732, a royal charter uniting several gentlemen, including himself, into "one body politic and corporate," known as the "Trustees for establishing the colony of Georgia in America." In the structure of their organization and their methods of government, the trustees did not differ materially from the regular companies created for trade and colonization. Though their purposes were benevolent, their transactions had to be under the forms of law and according to the rules of business. =The Religious Congregation.=--A second agency which figured largely in the settlement of America was the religious brotherhood, or congregation, of men and women brought together in the bonds of a common religious faith. By one of the strange fortunes of history, this institution, founded in the early days of Christianity, proved to be a potent force in the origin and growth of self-government in a land far away from Galilee. "And the multitude of them that believed were of one heart and of one soul," we are told in the Acts describing the Church at Jerusalem. "We are knit together as a body in a most sacred covenant of the Lord ... by virtue of which we hold ourselves strictly tied to all care of each other's good and of the whole," wrote John Robinson, a leader among the Pilgrims who founded their tiny colony of Plymouth in 1620. The Mayflower Compact, so famous in American history, was but a written and signed agreement, incorporating the spirit of obedience to the common good, which served as a guide to self-government until Plymouth was annexed to Massachusetts in 1691. [Illustration: THE ORIGINAL GRANTS] Three other colonies, all of which retained their identity until the eve of the American Revolution, likewise sprang directly from the congregations of the faithful: Rhode Island, Connecticut, and New Hampshire, mainly offshoots from Massachusetts. They were founded by small bodies of men and women, "united in solemn covenants with the Lord," who planted their settlements in the wilderness. Not until many a year after Roger Williams and Anne Hutchinson conducted their followers to the Narragansett country was Rhode Island granted a charter of incorporation (1663) by the crown. Not until long after the congregation of Thomas Hooker from Newtown blazed the way into the Connecticut River Valley did the king of England give Connecticut a charter of its own (1662) and a place among the colonies. Half a century elapsed before the towns laid out beyond the Merrimac River by emigrants from Massachusetts were formed into the royal province of New Hampshire in 1679. Even when Connecticut was chartered, the parchment and sealing wax of the royal lawyers did but confirm rights and habits of self-government and obedience to law previously established by the congregations. The towns of Hartford, Windsor, and Wethersfield had long lived happily under their "Fundamental Orders" drawn up by themselves in 1639; so had the settlers dwelt peacefully at New Haven under their "Fundamental Articles" drafted in the same year. The pioneers on the Connecticut shore had no difficulty in agreeing that "the Scriptures do hold forth a perfect rule for the direction and government of all men." =The Proprietor.=--A third and very important colonial agency was the proprietor, or proprietary. As the name, associated with the word "property," implies, the proprietor was a person to whom the king granted property in lands in North America to have, hold, use, and enjoy for his own benefit and profit, with the right to hand the estate down to his heirs in perpetual succession. The proprietor was a rich and powerful person, prepared to furnish or secure the capital, collect the ships, supply the stores, and assemble the settlers necessary to found and sustain a plantation beyond the seas. Sometimes the proprietor worked alone. Sometimes two or more were associated like partners in the common undertaking. Five colonies, Maryland, Pennsylvania, New Jersey, and the Carolinas, owe their formal origins, though not always their first settlements, nor in most cases their prosperity, to the proprietary system. Maryland, established in 1634 under a Catholic nobleman, Lord Baltimore, and blessed with religious toleration by the act of 1649, flourished under the mild rule of proprietors until it became a state in the American union. New Jersey, beginning its career under two proprietors, Berkeley and Carteret, in 1664, passed under the direct government of the crown in 1702. Pennsylvania was, in a very large measure, the product of the generous spirit and tireless labors of its first proprietor, the leader of the Friends, William Penn, to whom it was granted in 1681 and in whose family it remained until 1776. The two Carolinas were first organized as one colony in 1663 under the government and patronage of eight proprietors, including Lord Clarendon; but after more than half a century both became royal provinces governed by the king. [Illustration: WILLIAM PENN, PROPRIETOR OF PENNSYLVANIA] THE COLONIAL PEOPLES =The English.=--In leadership and origin the thirteen colonies, except New York and Delaware, were English. During the early days of all, save these two, the main, if not the sole, current of immigration was from England. The colonists came from every walk of life. They were men, women, and children of "all sorts and conditions." The major portion were yeomen, or small land owners, farm laborers, and artisans. With them were merchants and gentlemen who brought their stocks of goods or their fortunes to the New World. Scholars came from Oxford and Cambridge to preach the gospel or to teach. Now and then the son of an English nobleman left his baronial hall behind and cast his lot with America. The people represented every religious faith--members of the Established Church of England; Puritans who had labored to reform that church; Separatists, Baptists, and Friends, who had left it altogether; and Catholics, who clung to the religion of their fathers. New England was almost purely English. During the years between 1629 and 1640, the period of arbitrary Stuart government, about twenty thousand Puritans emigrated to America, settling in the colonies of the far North. Although minor additions were made from time to time, the greater portion of the New England people sprang from this original stock. Virginia, too, for a long time drew nearly all her immigrants from England alone. Not until the eve of the Revolution did other nationalities, mainly the Scotch-Irish and Germans, rival the English in numbers. The populations of later English colonies--the Carolinas, New York, Pennsylvania, and Georgia--while receiving a steady stream of immigration from England, were constantly augmented by wanderers from the older settlements. New York was invaded by Puritans from New England in such numbers as to cause the Anglican clergymen there to lament that "free thinking spreads almost as fast as the Church." North Carolina was first settled toward the northern border by immigrants from Virginia. Some of the North Carolinians, particularly the Quakers, came all the way from New England, tarrying in Virginia only long enough to learn how little they were wanted in that Anglican colony. =The Scotch-Irish.=--Next to the English in numbers and influence were the Scotch-Irish, Presbyterians in belief, English in tongue. Both religious and economic reasons sent them across the sea. Their Scotch ancestors, in the days of Cromwell, had settled in the north of Ireland whence the native Irish had been driven by the conqueror's sword. There the Scotch nourished for many years enjoying in peace their own form of religion and growing prosperous in the manufacture of fine linen and woolen cloth. Then the blow fell. Toward the end of the seventeenth century their religious worship was put under the ban and the export of their cloth was forbidden by the English Parliament. Within two decades twenty thousand Scotch-Irish left Ulster alone, for America; and all during the eighteenth century the migration continued to be heavy. Although no exact record was kept, it is reckoned that the Scotch-Irish and the Scotch who came directly from Scotland, composed one-sixth of the entire American population on the eve of the Revolution. [Illustration: SETTLEMENTS OF GERMAN AND SCOTCH-IRISH IMMIGRANTS] These newcomers in America made their homes chiefly in New Jersey, Pennsylvania, Maryland, Virginia, and the Carolinas. Coming late upon the scene, they found much of the land immediately upon the seaboard already taken up. For this reason most of them became frontier people settling the interior and upland regions. There they cleared the land, laid out their small farms, and worked as "sturdy yeomen on the soil," hardy, industrious, and independent in spirit, sharing neither the luxuries of the rich planters nor the easy life of the leisurely merchants. To their agriculture they added woolen and linen manufactures, which, flourishing in the supple fingers of their tireless women, made heavy inroads upon the trade of the English merchants in the colonies. Of their labors a poet has sung: "O, willing hands to toil; Strong natures tuned to the harvest-song and bound to the kindly soil; Bold pioneers for the wilderness, defenders in the field." =The Germans.=--Third among the colonists in order of numerical importance were the Germans. From the very beginning, they appeared in colonial records. A number of the artisans and carpenters in the first Jamestown colony were of German descent. Peter Minuit, the famous governor of New Motherland, was a German from Wesel on the Rhine, and Jacob Leisler, leader of a popular uprising against the provincial administration of New York, was a German from Frankfort-on-Main. The wholesale migration of Germans began with the founding of Pennsylvania. Penn was diligent in searching for thrifty farmers to cultivate his lands and he made a special effort to attract peasants from the Rhine country. A great association, known as the Frankfort Company, bought more than twenty thousand acres from him and in 1684 established a center at Germantown for the distribution of German immigrants. In old New York, Rhinebeck-on-the-Hudson became a similar center for distribution. All the way from Maine to Georgia inducements were offered to the German farmers and in nearly every colony were to be found, in time, German settlements. In fact the migration became so large that German princes were frightened at the loss of so many subjects and England was alarmed by the influx of foreigners into her overseas dominions. Yet nothing could stop the movement. By the end of the colonial period, the number of Germans had risen to more than two hundred thousand. The majority of them were Protestants from the Rhine region, and South Germany. Wars, religious controversies, oppression, and poverty drove them forth to America. Though most of them were farmers, there were also among them skilled artisans who contributed to the rapid growth of industries in Pennsylvania. Their iron, glass, paper, and woolen mills, dotted here and there among the thickly settled regions, added to the wealth and independence of the province. [Illustration: _From an old print_ A GLIMPSE OF OLD GERMANTOWN] Unlike the Scotch-Irish, the Germans did not speak the language of the original colonists or mingle freely with them. They kept to themselves, built their own schools, founded their own newspapers, and published their own books. Their clannish habits often irritated their neighbors and led to occasional agitations against "foreigners." However, no serious collisions seem to have occurred; and in the days of the Revolution, German soldiers from Pennsylvania fought in the patriot armies side by side with soldiers from the English and Scotch-Irish sections. =Other Nationalities.=--Though the English, the Scotch-Irish, and the Germans made up the bulk of the colonial population, there were other racial strains as well, varying in numerical importance but contributing their share to colonial life. From France came the Huguenots fleeing from the decree of the king which inflicted terrible penalties upon Protestants. From "Old Ireland" came thousands of native Irish, Celtic in race and Catholic in religion. Like their Scotch-Irish neighbors to the north, they revered neither the government nor the church of England imposed upon them by the sword. How many came we do not know, but shipping records of the colonial period show that boatload after boatload left the southern and eastern shores of Ireland for the New World. Undoubtedly thousands of their passengers were Irish of the native stock. This surmise is well sustained by the constant appearance of Celtic names in the records of various colonies. [Illustration:_From an old print_ OLD DUTCH FORT AND ENGLISH CHURCH NEAR ALBANY] The Jews, then as ever engaged in their age-long battle for religious and economic toleration, found in the American colonies, not complete liberty, but certainly more freedom than they enjoyed in England, France, Spain, or Portugal. The English law did not actually recognize their right to live in any of the dominions, but owing to the easy-going habits of the Americans they were allowed to filter into the seaboard towns. The treatment they received there varied. On one occasion the mayor and council of New York forbade them to sell by retail and on another prohibited the exercise of their religious worship. Newport, Philadelphia, and Charleston were more hospitable, and there large Jewish colonies, consisting principally of merchants and their families, flourished in spite of nominal prohibitions of the law. Though the small Swedish colony in Delaware was quickly submerged beneath the tide of English migration, the Dutch in New York continued to hold their own for more than a hundred years after the English conquest in 1664. At the end of the colonial period over one-half of the 170,000 inhabitants of the province were descendants of the original Dutch--still distinct enough to give a decided cast to the life and manners of New York. Many of them clung as tenaciously to their mother tongue as they did to their capacious farmhouses or their Dutch ovens; but they were slowly losing their identity as the English pressed in beside them to farm and trade. The melting pot had begun its historic mission. THE PROCESS OF COLONIZATION Considered from one side, colonization, whatever the motives of the emigrants, was an economic matter. It involved the use of capital to pay for their passage, to sustain them on the voyage, and to start them on the way of production. Under this stern economic necessity, Puritans, Scotch-Irish, Germans, and all were alike laid. =Immigrants Who Paid Their Own Way.=--Many of the immigrants to America in colonial days were capitalists themselves, in a small or a large way, and paid their own passage. What proportion of the colonists were able to finance their voyage across the sea is a matter of pure conjecture. Undoubtedly a very considerable number could do so, for we can trace the family fortunes of many early settlers. Henry Cabot Lodge is authority for the statement that "the settlers of New England were drawn from the country gentlemen, small farmers, and yeomanry of the mother country.... Many of the emigrants were men of wealth, as the old lists show, and all of them, with few exceptions, were men of property and good standing. They did not belong to the classes from which emigration is usually supplied, for they all had a stake in the country they left behind." Though it would be interesting to know how accurate this statement is or how applicable to the other colonies, no study has as yet been made to gratify that interest. For the present it is an unsolved problem just how many of the colonists were able to bear the cost of their own transfer to the New World. =Indentured Servants.=--That at least tens of thousands of immigrants were unable to pay for their passage is established beyond the shadow of a doubt by the shipping records that have come down to us. The great barrier in the way of the poor who wanted to go to America was the cost of the sea voyage. To overcome this difficulty a plan was worked out whereby shipowners and other persons of means furnished the passage money to immigrants in return for their promise, or bond, to work for a term of years to repay the sum advanced. This system was called indentured servitude. It is probable that the number of bond servants exceeded the original twenty thousand Puritans, the yeomen, the Virginia gentlemen, and the Huguenots combined. All the way down the coast from Massachusetts to Georgia were to be found in the fields, kitchens, and workshops, men, women, and children serving out terms of bondage generally ranging from five to seven years. In the proprietary colonies the proportion of bond servants was very high. The Baltimores, Penns, Carterets, and other promoters anxiously sought for workers of every nationality to till their fields, for land without labor was worth no more than land in the moon. Hence the gates of the proprietary colonies were flung wide open. Every inducement was offered to immigrants in the form of cheap land, and special efforts were made to increase the population by importing servants. In Pennsylvania, it was not uncommon to find a master with fifty bond servants on his estate. It has been estimated that two-thirds of all the immigrants into Pennsylvania between the opening of the eighteenth century and the outbreak of the Revolution were in bondage. In the other Middle colonies the number was doubtless not so large; but it formed a considerable part of the population. The story of this traffic in white servants is one of the most striking things in the history of labor. Bondmen differed from the serfs of the feudal age in that they were not bound to the soil but to the master. They likewise differed from the negro slaves in that their servitude had a time limit. Still they were subject to many special disabilities. It was, for instance, a common practice to impose on them penalties far heavier than were imposed upon freemen for the same offense. A free citizen of Pennsylvania who indulged in horse racing and gambling was let off with a fine; a white servant guilty of the same unlawful conduct was whipped at the post and fined as well. The ordinary life of the white servant was also severely restricted. A bondman could not marry without his master's consent; nor engage in trade; nor refuse work assigned to him. For an attempt to escape or indeed for any infraction of the law, the term of service was extended. The condition of white bondmen in Virginia, according to Lodge, "was little better than that of slaves. Loose indentures and harsh laws put them at the mercy of their masters." It would not be unfair to add that such was their lot in all other colonies. Their fate depended upon the temper of their masters. Cruel as was the system in many ways, it gave thousands of people in the Old World a chance to reach the New--an opportunity to wrestle with fate for freedom and a home of their own. When their weary years of servitude were over, if they survived, they might obtain land of their own or settle as free mechanics in the towns. For many a bondman the gamble proved to be a losing venture because he found himself unable to rise out of the state of poverty and dependence into which his servitude carried him. For thousands, on the contrary, bondage proved to be a real avenue to freedom and prosperity. Some of the best citizens of America have the blood of indentured servants in their veins. =The Transported--Involuntary Servitude.=--In their anxiety to secure settlers, the companies and proprietors having colonies in America either resorted to or connived at the practice of kidnapping men, women, and children from the streets of English cities. In 1680 it was officially estimated that "ten thousand persons were spirited away" to America. Many of the victims of the practice were young children, for the traffic in them was highly profitable. Orphans and dependents were sometimes disposed of in America by relatives unwilling to support them. In a single year, 1627, about fifteen hundred children were shipped to Virginia. In this gruesome business there lurked many tragedies, and very few romances. Parents were separated from their children and husbands from their wives. Hundreds of skilled artisans--carpenters, smiths, and weavers--utterly disappeared as if swallowed up by death. A few thus dragged off to the New World to be sold into servitude for a term of five or seven years later became prosperous and returned home with fortunes. In one case a young man who was forcibly carried over the sea lived to make his way back to England and establish his claim to a peerage. Akin to the kidnapped, at least in economic position, were convicts deported to the colonies for life in lieu of fines and imprisonment. The Americans protested vigorously but ineffectually against this practice. Indeed, they exaggerated its evils, for many of the "criminals" were only mild offenders against unduly harsh and cruel laws. A peasant caught shooting a rabbit on a lord's estate or a luckless servant girl who purloined a pocket handkerchief was branded as a criminal along with sturdy thieves and incorrigible rascals. Other transported offenders were "political criminals"; that is, persons who criticized or opposed the government. This class included now Irish who revolted against British rule in Ireland; now Cavaliers who championed the king against the Puritan revolutionists; Puritans, in turn, dispatched after the monarchy was restored; and Scotch and English subjects in general who joined in political uprisings against the king. =The African Slaves.=--Rivaling in numbers, in the course of time, the indentured servants and whites carried to America against their will were the African negroes brought to America and sold into slavery. When this form of bondage was first introduced into Virginia in 1619, it was looked upon as a temporary necessity to be discarded with the increase of the white population. Moreover it does not appear that those planters who first bought negroes at the auction block intended to establish a system of permanent bondage. Only by a slow process did chattel slavery take firm root and become recognized as the leading source of the labor supply. In 1650, thirty years after the introduction of slavery, there were only three hundred Africans in Virginia. The great increase in later years was due in no small measure to the inordinate zeal for profits that seized slave traders both in Old and in New England. Finding it relatively easy to secure negroes in Africa, they crowded the Southern ports with their vessels. The English Royal African Company sent to America annually between 1713 and 1743 from five to ten thousand slaves. The ship owners of New England were not far behind their English brethren in pushing this extraordinary traffic. As the proportion of the negroes to the free white population steadily rose, and as whole sections were overrun with slaves and slave traders, the Southern colonies grew alarmed. In 1710, Virginia sought to curtail the importation by placing a duty of $5 on each slave. This effort was futile, for the royal governor promptly vetoed it. From time to time similar bills were passed, only to meet with royal disapproval. South Carolina, in 1760, absolutely prohibited importation; but the measure was killed by the British crown. As late as 1772, Virginia, not daunted by a century of rebuffs, sent to George III a petition in this vein: "The importation of slaves into the colonies from the coast of Africa hath long been considered as a trade of great inhumanity and under its present encouragement, we have too much reason to fear, will endanger the very existence of Your Majesty's American dominions.... Deeply impressed with these sentiments, we most humbly beseech Your Majesty to remove all those restraints on Your Majesty's governors of this colony which inhibit their assenting to such laws as might check so very pernicious a commerce." All such protests were without avail. The negro population grew by leaps and bounds, until on the eve of the Revolution it amounted to more than half a million. In five states--Maryland, Virginia, the two Carolinas, and Georgia--the slaves nearly equalled or actually exceeded the whites in number. In South Carolina they formed almost two-thirds of the population. Even in the Middle colonies of Delaware and Pennsylvania about one-fifth of the inhabitants were from Africa. To the North, the proportion of slaves steadily diminished although chattel servitude was on the same legal footing as in the South. In New York approximately one in six and in New England one in fifty were negroes, including a few freedmen. The climate, the soil, the commerce, and the industry of the North were all unfavorable to the growth of a servile population. Still, slavery, though sectional, was a part of the national system of economy. Northern ships carried slaves to the Southern colonies and the produce of the plantations to Europe. "If the Northern states will consult their interest, they will not oppose the increase in slaves which will increase the commodities of which they will become the carriers," said John Rutledge, of South Carolina, in the convention which framed the Constitution of the United States. "What enriches a part enriches the whole and the states are the best judges of their particular interest," responded Oliver Ellsworth, the distinguished spokesman of Connecticut. =References= E. Charming, _History of the United States_, Vols. I and II. J.A. Doyle, _The English Colonies in America_ (5 vols.). J. Fiske, _Old Virginia and Her Neighbors_ (2 vols.). A.B. Faust, _The German Element in the United States_ (2 vols.). H.J. Ford, _The Scotch-Irish in America_. L. Tyler, _England in America_ (American Nation Series). R. Usher, _The Pilgrims and Their History_. =Questions= 1. America has been called a nation of immigrants. Explain why. 2. Why were individuals unable to go alone to America in the beginning? What agencies made colonization possible? Discuss each of them. 3. Make a table of the colonies, showing the methods employed in their settlement. 4. Why were capital and leadership so very important in early colonization? 5. What is meant by the "melting pot"? What nationalities were represented among the early colonists? 6. Compare the way immigrants come to-day with the way they came in colonial times. 7. Contrast indentured servitude with slavery and serfdom. 8. Account for the anxiety of companies and proprietors to secure colonists. 9. What forces favored the heavy importation of slaves? 10. In what way did the North derive advantages from slavery? =Research Topics= =The Chartered Company.=--Compare the first and third charters of Virginia in Macdonald, _Documentary Source Book of American History_, 1606-1898, pp. 1-14. Analyze the first and second Massachusetts charters in Macdonald, pp. 22-84. Special reference: W.A.S. Hewins, _English Trading Companies_. =Congregations and Compacts for Self-government.=--A study of the Mayflower Compact, the Fundamental Orders of Connecticut and the Fundamental Articles of New Haven in Macdonald, pp. 19, 36, 39. Reference: Charles Borgeaud, _Rise of Modern Democracy_, and C.S. Lobingier, _The People's Law_, Chaps. I-VII. =The Proprietary System.=--Analysis of Penn's charter of 1681, in Macdonald, p. 80. Reference: Lodge, _Short History of the English Colonies in America_, p. 211. =Studies of Individual Colonies.=--Review of outstanding events in history of each colony, using Elson, _History of the United States_, pp. 55-159, as the basis. =Biographical Studies.=--John Smith, John Winthrop, William Penn, Lord Baltimore, William Bradford, Roger Williams, Anne Hutchinson, Thomas Hooker, and Peter Stuyvesant, using any good encyclopedia. =Indentured Servitude.=--In Virginia, Lodge, _Short History_, pp. 69-72; in Pennsylvania, pp. 242-244. Contemporary account in Callender, _Economic History of the United States_, pp. 44-51. Special reference: Karl Geiser, _Redemptioners and Indentured Servants_ (Yale Review, X, No. 2 Supplement). =Slavery.=--In Virginia, Lodge, _Short History_, pp. 67-69; in the Northern colonies, pp. 241, 275, 322, 408, 442. =The People of the Colonies.=--Virginia, Lodge, _Short History_, pp. 67-73; New England, pp. 406-409, 441-450; Pennsylvania, pp. 227-229, 240-250; New York, pp. 312-313, 322-335. CHAPTER II COLONIAL AGRICULTURE, INDUSTRY, AND COMMERCE THE LAND AND THE WESTWARD MOVEMENT =The Significance of Land Tenure.=--The way in which land may be acquired, held, divided among heirs, and bought and sold exercises a deep influence on the life and culture of a people. The feudal and aristocratic societies of Europe were founded on a system of landlordism which was characterized by two distinct features. In the first place, the land was nearly all held in great estates, each owned by a single proprietor. In the second place, every estate was kept intact under the law of primogeniture, which at the death of a lord transferred all his landed property to his eldest son. This prevented the subdivision of estates and the growth of a large body of small farmers or freeholders owning their own land. It made a form of tenantry or servitude inevitable for the mass of those who labored on the land. It also enabled the landlords to maintain themselves in power as a governing class and kept the tenants and laborers subject to their economic and political control. If land tenure was so significant in Europe, it was equally important in the development of America, where practically all the first immigrants were forced by circumstances to derive their livelihood from the soil. =Experiments in Common Tillage.=--In the New World, with its broad extent of land awaiting the white man's plow, it was impossible to introduce in its entirety and over the whole area the system of lords and tenants that existed across the sea. So it happened that almost every kind of experiment in land tenure, from communism to feudalism, was tried. In the early days of the Jamestown colony, the land, though owned by the London Company, was tilled in common by the settlers. No man had a separate plot of his own. The motto of the community was: "Labor and share alike." All were supposed to work in the fields and receive an equal share of the produce. At Plymouth, the Pilgrims attempted a similar experiment, laying out the fields in common and distributing the joint produce of their labor with rough equality among the workers. In both colonies the communistic experiments were failures. Angry at the lazy men in Jamestown who idled their time away and yet expected regular meals, Captain John Smith issued a manifesto: "Everyone that gathereth not every day as much as I do, the next day shall be set beyond the river and forever banished from the fort and live there or starve." Even this terrible threat did not bring a change in production. Not until each man was given a plot of his own to till, not until each gathered the fruits of his own labor, did the colony prosper. In Plymouth, where the communal experiment lasted for five years, the results were similar to those in Virginia, and the system was given up for one of separate fields in which every person could "set corn for his own particular." Some other New England towns, refusing to profit by the experience of their Plymouth neighbor, also made excursions into common ownership and labor, only to abandon the idea and go in for individual ownership of the land. "By degrees it was seen that even the Lord's people could not carry the complicated communist legislation into perfect and wholesome practice." =Feudal Elements in the Colonies--Quit Rents, Manors, and Plantations.=--At the other end of the scale were the feudal elements of land tenure found in the proprietary colonies, in the seaboard regions of the South, and to some extent in New York. The proprietor was in fact a powerful feudal lord, owning land granted to him by royal charter. He could retain any part of it for his personal use or dispose of it all in large or small lots. While he generally kept for himself an estate of baronial proportions, it was impossible for him to manage directly any considerable part of the land in his dominion. Consequently he either sold it in parcels for lump sums or granted it to individuals on condition that they make to him an annual payment in money, known as "quit rent." In Maryland, the proprietor sometimes collected as high as $9000 (equal to about $500,000 to-day) in a single year from this source. In Pennsylvania, the quit rents brought a handsome annual tribute into the exchequer of the Penn family. In the royal provinces, the king of England claimed all revenues collected in this form from the land, a sum amounting to $19,000 at the time of the Revolution. The quit rent,--"really a feudal payment from freeholders,"--was thus a material source of income for the crown as well as for the proprietors. Wherever it was laid, however, it proved to be a burden, a source of constant irritation; and it became a formidable item in the long list of grievances which led to the American Revolution. Something still more like the feudal system of the Old World appeared in the numerous manors or the huge landed estates granted by the crown, the companies, or the proprietors. In the colony of Maryland alone there were sixty manors of three thousand acres each, owned by wealthy men and tilled by tenants holding small plots under certain restrictions of tenure. In New York also there were many manors of wide extent, most of which originated in the days of the Dutch West India Company, when extensive concessions were made to patroons to induce them to bring over settlers. The Van Rensselaer, the Van Cortlandt, and the Livingston manors were so large and populous that each was entitled to send a representative to the provincial legislature. The tenants on the New York manors were in somewhat the same position as serfs on old European estates. They were bound to pay the owner a rent in money and kind; they ground their grain at his mill; and they were subject to his judicial power because he held court and meted out justice, in some instances extending to capital punishment. The manors of New York or Maryland were, however, of slight consequence as compared with the vast plantations of the Southern seaboard--huge estates, far wider in expanse than many a European barony and tilled by slaves more servile than any feudal tenants. It must not be forgotten that this system of land tenure became the dominant feature of a large section and gave a decided bent to the economic and political life of America. [Illustration: SOUTHERN PLANTATION MANSION] =The Small Freehold.=--In the upland regions of the South, however, and throughout most of the North, the drift was against all forms of servitude and tenantry and in the direction of the freehold; that is, the small farm owned outright and tilled by the possessor and his family. This was favored by natural circumstances and the spirit of the immigrants. For one thing, the abundance of land and the scarcity of labor made it impossible for the companies, the proprietors, or the crown to develop over the whole continent a network of vast estates. In many sections, particularly in New England, the climate, the stony soil, the hills, and the narrow valleys conspired to keep the farms within a moderate compass. For another thing, the English, Scotch-Irish, and German peasants, even if they had been tenants in the Old World, did not propose to accept permanent dependency of any kind in the New. If they could not get freeholds, they would not settle at all; thus they forced proprietors and companies to bid for their enterprise by selling land in small lots. So it happened that the freehold of modest proportions became the cherished unit of American farmers. The people who tilled the farms were drawn from every quarter of western Europe; but the freehold system gave a uniform cast to their economic and social life in America. [Illustration: _From an old print_ A NEW ENGLAND FARMHOUSE] =Social Effects of Land Tenure.=--Land tenure and the process of western settlement thus developed two distinct types of people engaged in the same pursuit--agriculture. They had a common tie in that they both cultivated the soil and possessed the local interest and independence which arise from that occupation. Their methods and their culture, however, differed widely. The Southern planter, on his broad acres tilled by slaves, resembled the English landlord on his estates more than he did the colonial farmer who labored with his own hands in the fields and forests. He sold his rice and tobacco in large amounts directly to English factors, who took his entire crop in exchange for goods and cash. His fine clothes, silverware, china, and cutlery he bought in English markets. Loving the ripe old culture of the mother country, he often sent his sons to Oxford or Cambridge for their education. In short, he depended very largely for his prosperity and his enjoyment of life upon close relations with the Old World. He did not even need market towns in which to buy native goods, for they were made on his own plantation by his own artisans who were usually gifted slaves. The economic condition of the small farmer was totally different. His crops were not big enough to warrant direct connection with English factors or the personal maintenance of a corps of artisans. He needed local markets, and they sprang up to meet the need. Smiths, hatters, weavers, wagon-makers, and potters at neighboring towns supplied him with the rough products of their native skill. The finer goods, bought by the rich planter in England, the small farmer ordinarily could not buy. His wants were restricted to staples like tea and sugar, and between him and the European market stood the merchant. His community was therefore more self-sufficient than the seaboard line of great plantations. It was more isolated, more provincial, more independent, more American. The planter faced the Old East. The farmer faced the New West. =The Westward Movement.=--Yeoman and planter nevertheless were alike in one respect. Their land hunger was never appeased. Each had the eye of an expert for new and fertile soil; and so, north and south, as soon as a foothold was secured on the Atlantic coast, the current of migration set in westward, creeping through forests, across rivers, and over mountains. Many of the later immigrants, in their search for cheap lands, were compelled to go to the border; but in a large part the path breakers to the West were native Americans of the second and third generations. Explorers, fired by curiosity and the lure of the mysterious unknown, and hunters, fur traders, and squatters, following their own sweet wills, blazed the trail, opening paths and sending back stories of the new regions they traversed. Then came the regular settlers with lawful titles to the lands they had purchased, sometimes singly and sometimes in companies. In Massachusetts, the westward movement is recorded in the founding of Springfield in 1636 and Great Barrington in 1725. By the opening of the eighteenth century the pioneers of Connecticut had pushed north and west until their outpost towns adjoined the Hudson Valley settlements. In New York, the inland movement was directed by the Hudson River to Albany, and from that old Dutch center it radiated in every direction, particularly westward through the Mohawk Valley. New Jersey was early filled to its borders, the beginnings of the present city of New Brunswick being made in 1681 and those of Trenton in 1685. In Pennsylvania, as in New York, the waterways determined the main lines of advance. Pioneers, pushing up through the valley of the Schuylkill, spread over the fertile lands of Berks and Lancaster counties, laying out Reading in 1748. Another current of migration was directed by the Susquehanna, and, in 1726, the first farmhouse was built on the bank where Harrisburg was later founded. Along the southern tier of counties a thin line of settlements stretched westward to Pittsburgh, reaching the upper waters of the Ohio while the colony was still under the Penn family. In the South the westward march was equally swift. The seaboard was quickly occupied by large planters and their slaves engaged in the cultivation of tobacco and rice. The Piedmont Plateau, lying back from the coast all the way from Maryland to Georgia, was fed by two streams of migration, one westward from the sea and the other southward from the other colonies--Germans from Pennsylvania and Scotch-Irish furnishing the main supply. "By 1770, tide-water Virginia was full to overflowing and the 'back country' of the Blue Ridge and the Shenandoah was fully occupied. Even the mountain valleys ... were claimed by sturdy pioneers. Before the Declaration of Independence, the oncoming tide of home-seekers had reached the crest of the Alleghanies." [Illustration: DISTRIBUTION OF POPULATION, 1790] Beyond the mountains pioneers had already ventured, harbingers of an invasion that was about to break in upon Kentucky and Tennessee. As early as 1769 that mighty Nimrod, Daniel Boone, curious to hunt buffaloes, of which he had heard weird reports, passed through the Cumberland Gap and brought back news of a wonderful country awaiting the plow. A hint was sufficient. Singly, in pairs, and in groups, settlers followed the trail he had blazed. A great land corporation, the Transylvania Company, emulating the merchant adventurers of earlier times, secured a huge grant of territory and sought profits in quit rents from lands sold to farmers. By the outbreak of the Revolution there were several hundred people in the Kentucky region. Like the older colonists, they did not relish quit rents, and their opposition wrecked the Transylvania Company. They even carried their protests into the Continental Congress in 1776, for by that time they were our "embryo fourteenth colony." INDUSTRIAL AND COMMERCIAL DEVELOPMENT Though the labor of the colonists was mainly spent in farming, there was a steady growth in industrial and commercial pursuits. Most of the staple industries of to-day, not omitting iron and textiles, have their beginnings in colonial times. Manufacturing and trade soon gave rise to towns which enjoyed an importance all out of proportion to their numbers. The great centers of commerce and finance on the seaboard originated in the days when the king of England was "lord of these dominions." [Illustration: DOMESTIC INDUSTRY: DIPPING TALLOW CANDLES] =Textile Manufacture as a Domestic Industry.=--Colonial women, in addition to sharing every hardship of pioneering, often the heavy labor of the open field, developed in the course of time a national industry which was almost exclusively their own. Wool and flax were raised in abundance in the North and South. "Every farm house," says Coman, the economic historian, "was a workshop where the women spun and wove the serges, kerseys, and linsey-woolseys which served for the common wear." By the close of the seventeenth century, New England manufactured cloth in sufficient quantities to export it to the Southern colonies and to the West Indies. As the industry developed, mills were erected for the more difficult process of dyeing, weaving, and fulling, but carding and spinning continued to be done in the home. The Dutch of New Netherland, the Swedes of Delaware, and the Scotch-Irish of the interior "were not one whit behind their Yankee neighbors." The importance of this enterprise to British economic life can hardly be overestimated. For many a century the English had employed their fine woolen cloth as the chief staple in a lucrative foreign trade, and the government had come to look upon it as an object of special interest and protection. When the colonies were established, both merchants and statesmen naturally expected to maintain a monopoly of increasing value; but before long the Americans, instead of buying cloth, especially of the coarser varieties, were making it to sell. In the place of customers, here were rivals. In the place of helpless reliance upon English markets, here was the germ of economic independence. If British merchants had not discovered it in the ordinary course of trade, observant officers in the provinces would have conveyed the news to them. Even in the early years of the eighteenth century the royal governor of New York wrote of the industrious Americans to his home government: "The consequence will be that if they can clothe themselves once, not only comfortably, but handsomely too, without the help of England, they who already are not very fond of submitting to government will soon think of putting in execution designs they have long harboured in their breasts. This will not seem strange when you consider what sort of people this country is inhabited by." =The Iron Industry.=--Almost equally widespread was the art of iron working--one of the earliest and most picturesque of colonial industries. Lynn, Massachusetts, had a forge and skilled artisans within fifteen years after the founding of Boston. The smelting of iron began at New London and New Haven about 1658; in Litchfield county, Connecticut, a few years later; at Great Barrington, Massachusetts, in 1731; and near by at Lenox some thirty years after that. New Jersey had iron works at Shrewsbury within ten years after the founding of the colony in 1665. Iron forges appeared in the valleys of the Delaware and the Susquehanna early in the following century, and iron masters then laid the foundations of fortunes in a region destined to become one of the great iron centers of the world. Virginia began iron working in the year that saw the introduction of slavery. Although the industry soon lapsed, it was renewed and flourished in the eighteenth century. Governor Spotswood was called the "Tubal Cain" of the Old Dominion because he placed the industry on a firm foundation. Indeed it seems that every colony, except Georgia, had its iron foundry. Nails, wire, metallic ware, chains, anchors, bar and pig iron were made in large quantities; and Great Britain, by an act in 1750, encouraged the colonists to export rough iron to the British Islands. =Shipbuilding.=--Of all the specialized industries in the colonies, shipbuilding was the most important. The abundance of fir for masts, oak for timbers and boards, pitch for tar and turpentine, and hemp for rope made the way of the shipbuilder easy. Early in the seventeenth century a ship was built at New Amsterdam, and by the middle of that century shipyards were scattered along the New England coast at Newburyport, Salem, New Bedford, Newport, Providence, New London, and New Haven. Yards at Albany and Poughkeepsie in New York built ships for the trade of that colony with England and the Indies. Wilmington and Philadelphia soon entered the race and outdistanced New York, though unable to equal the pace set by New England. While Maryland, Virginia, and South Carolina also built ships, Southern interest was mainly confined to the lucrative business of producing ship materials: fir, cedar, hemp, and tar. =Fishing.=--The greatest single economic resource of New England outside of agriculture was the fisheries. This industry, started by hardy sailors from Europe, long before the landing of the Pilgrims, flourished under the indomitable seamanship of the Puritans, who labored with the net and the harpoon in almost every quarter of the Atlantic. "Look," exclaimed Edmund Burke, in the House of Commons, "at the manner in which the people of New England have of late carried on the whale fishery. Whilst we follow them among the tumbling mountains of ice and behold them penetrating into the deepest frozen recesses of Hudson's Bay and Davis's Straits, while we are looking for them beneath the arctic circle, we hear that they have pierced into the opposite region of polar cold, that they are at the antipodes and engaged under the frozen serpent of the south.... Nor is the equinoctial heat more discouraging to them than the accumulated winter of both poles. We know that, whilst some of them draw the line and strike the harpoon on the coast of Africa, others run the longitude and pursue their gigantic game along the coast of Brazil. No sea but what is vexed by their fisheries. No climate that is not witness to their toils. Neither the perseverance of Holland nor the activity of France nor the dexterous and firm sagacity of English enterprise ever carried this most perilous mode of hard industry to the extent to which it has been pushed by this recent people." The influence of the business was widespread. A large and lucrative European trade was built upon it. The better quality of the fish caught for food was sold in the markets of Spain, Portugal, and Italy, or exchanged for salt, lemons, and raisins for the American market. The lower grades of fish were carried to the West Indies for slave consumption, and in part traded for sugar and molasses, which furnished the raw materials for the thriving rum industry of New England. These activities, in turn, stimulated shipbuilding, steadily enlarging the demand for fishing and merchant craft of every kind and thus keeping the shipwrights, calkers, rope makers, and other artisans of the seaport towns rushed with work. They also increased trade with the mother country for, out of the cash collected in the fish markets of Europe and the West Indies, the colonists paid for English manufactures. So an ever-widening circle of American enterprise centered around this single industry, the nursery of seamanship and the maritime spirit. =Oceanic Commerce and American Merchants.=--All through the eighteenth century, the commerce of the American colonies spread in every direction until it rivaled in the number of people employed, the capital engaged, and the profits gleaned, the commerce of European nations. A modern historian has said: "The enterprising merchants of New England developed a network of trade routes that covered well-nigh half the world." This commerce, destined to be of such significance in the conflict with the mother country, presented, broadly speaking, two aspects. On the one side, it involved the export of raw materials and agricultural produce. The Southern colonies produced for shipping, tobacco, rice, tar, pitch, and pine; the Middle colonies, grain, flour, furs, lumber, and salt pork; New England, fish, flour, rum, furs, shoes, and small articles of manufacture. The variety of products was in fact astounding. A sarcastic writer, while sneering at the idea of an American union, once remarked of colonial trade: "What sort of dish will you make? New England will throw in fish and onions. The middle states, flax-seed and flour. Maryland and Virginia will add tobacco. North Carolina, pitch, tar, and turpentine. South Carolina, rice and indigo, and Georgia will sprinkle the whole composition with sawdust. Such an absurd jumble will you make if you attempt to form a union among such discordant materials as the thirteen British provinces." On the other side, American commerce involved the import trade, consisting principally of English and continental manufactures, tea, and "India goods." Sugar and molasses, brought from the West Indies, supplied the flourishing distilleries of Massachusetts, Rhode Island, and Connecticut. The carriage of slaves from Africa to the Southern colonies engaged hundreds of New England's sailors and thousands of pounds of her capital. The disposition of imported goods in the colonies, though in part controlled by English factors located in America, employed also a large and important body of American merchants like the Willings and Morrises of Philadelphia; the Amorys, Hancocks, and Faneuils of Boston; and the Livingstons and Lows of New York. In their zeal and enterprise, they were worthy rivals of their English competitors, so celebrated for world-wide commercial operations. Though fully aware of the advantages they enjoyed in British markets and under the protection of the British navy, the American merchants were high-spirited and mettlesome, ready to contend with royal officers in order to shield American interests against outside interference. [Illustration: THE DUTCH WEST INDIA WAREHOUSE IN NEW AMSTERDAM (NEW YORK CITY)] Measured against the immense business of modern times, colonial commerce seems perhaps trivial. That, however, is not the test of its significance. It must be considered in relation to the growth of English colonial trade in its entirety--a relation which can be shown by a few startling figures. The whole export trade of England, including that to the colonies, was, in 1704, $6,509,000. On the eve of the American Revolution, namely, in 1772, English exports to the American colonies alone amounted to $6,024,000; in other words, almost as much as the whole foreign business of England two generations before. At the first date, colonial trade was but one-twelfth of the English export business; at the second date, it was considerably more than one-third. In 1704, Pennsylvania bought in English markets goods to the value of $11,459; in 1772 the purchases of the same colony amounted to $507,909. In short, Pennsylvania imports increased fifty times within sixty-eight years, amounting in 1772 to almost the entire export trade of England to the colonies at the opening of the century. The American colonies were indeed a great source of wealth to English merchants. =Intercolonial Commerce.=--Although the bad roads of colonial times made overland transportation difficult and costly, the many rivers and harbors along the coast favored a lively water-borne trade among the colonies. The Connecticut, Hudson, Delaware, and Susquehanna rivers in the North and the many smaller rivers in the South made it possible for goods to be brought from, and carried to, the interior regions in little sailing vessels with comparative ease. Sloops laden with manufactures, domestic and foreign, collected at some city like Providence, New York, or Philadelphia, skirted the coasts, visited small ports, and sailed up the navigable rivers to trade with local merchants who had for exchange the raw materials which they had gathered in from neighboring farms. Larger ships carried the grain, live stock, cloth, and hardware of New England to the Southern colonies, where they were traded for tobacco, leather, tar, and ship timber. From the harbors along the Connecticut shores there were frequent sailings down through Long Island Sound to Maryland, Virginia, and the distant Carolinas. =Growth of Towns.=--In connection with this thriving trade and industry there grew up along the coast a number of prosperous commercial centers which were soon reckoned among the first commercial towns of the whole British empire, comparing favorably in numbers and wealth with such ports as Liverpool and Bristol. The statistical records of that time are mainly guesses; but we know that Philadelphia stood first in size among these towns. Serving as the port of entry for Pennsylvania, Delaware, and western Jersey, it had drawn within its borders, just before the Revolution, about 25,000 inhabitants. Boston was second in rank, with somewhat more than 20,000 people. New York, the "commercial capital of Connecticut and old East Jersey," was slightly smaller than Boston, but growing at a steady rate. The fourth town in size was Charleston, South Carolina, with about 10,000 inhabitants. Newport in Rhode Island, a center of rum manufacture and shipping, stood fifth, with a population of about 7000. Baltimore and Norfolk were counted as "considerable towns." In the interior, Hartford in Connecticut, Lancaster and York in Pennsylvania, and Albany in New York, with growing populations and increasing trade, gave prophecy of an urban America away from the seaboard. The other towns were straggling villages. Williamsburg, Virginia, for example, had about two hundred houses, in which dwelt a dozen families of the gentry and a few score of tradesmen. Inland county seats often consisted of nothing more than a log courthouse, a prison, and one wretched inn to house judges, lawyers, and litigants during the sessions of the court. The leading towns exercised an influence on colonial opinion all out of proportion to their population. They were the centers of wealth, for one thing; of the press and political activity, for another. Merchants and artisans could readily take concerted action on public questions arising from their commercial operations. The towns were also centers for news, gossip, religious controversy, and political discussion. In the market places the farmers from the countryside learned of British policies and laws, and so, mingling with the townsmen, were drawn into the main currents of opinion which set in toward colonial nationalism and independence. =References= J. Bishop, _History of American Manufactures_ (2 vols.). E.L. Bogart, _Economic History of the United States_. P.A. Bruce, _Economic History of Virginia_ (2 vols.). E. Semple, _American History and Its Geographical Conditions_. W. Weeden, _Economic and Social History of New England_. (2 vols.). =Questions= 1. Is land in your community parceled out into small farms? Contrast the system in your community with the feudal system of land tenure. 2. Are any things owned and used in common in your community? Why did common tillage fail in colonial times? 3. Describe the elements akin to feudalism which were introduced in the colonies. 4. Explain the success of freehold tillage. 5. Compare the life of the planter with that of the farmer. 6. How far had the western frontier advanced by 1776? 7. What colonial industry was mainly developed by women? Why was it very important both to the Americans and to the English? 8. What were the centers for iron working? Ship building? 9. Explain how the fisheries affected many branches of trade and industry. 10. Show how American trade formed a vital part of English business. 11. How was interstate commerce mainly carried on? 12. What were the leading towns? Did they compare in importance with British towns of the same period? =Research Topics= =Land Tenure.=--Coman, _Industrial History_ (rev. ed.), pp. 32-38. Special reference: Bruce, _Economic History of Virginia_, Vol. I, Chap. VIII. =Tobacco Planting in Virginia.=--Callender, _Economic History of the United States_, pp. 22-28. =Colonial Agriculture.=--Coman, pp. 48-63. Callender, pp. 69-74. Reference: J.R.H. Moore, _Industrial History of the American People_, pp. 131-162. =Colonial Manufactures.=--Coman, pp. 63-73. Callender, pp. 29-44. Special reference: Weeden, _Economic and Social History of New England_. =Colonial Commerce.=--Coman, pp. 73-85. Callender, pp. 51-63, 78-84. Moore, pp. 163-208. Lodge, _Short History of the English Colonies_, pp. 409-412, 229-231, 312-314. Chapter III SOCIAL AND POLITICAL PROGRESS Colonial life, crowded as it was with hard and unremitting toil, left scant leisure for the cultivation of the arts and sciences. There was little money in private purses or public treasuries to be dedicated to schools, libraries, and museums. Few there were with time to read long and widely, and fewer still who could devote their lives to things that delight the eye and the mind. And yet, poor and meager as the intellectual life of the colonists may seem by way of comparison, heroic efforts were made in every community to lift the people above the plane of mere existence. After the first clearings were opened in the forests those efforts were redoubled, and with lengthening years told upon the thought and spirit of the land. The appearance, during the struggle with England, of an extraordinary group of leaders familiar with history, political philosophy, and the arts of war, government, and diplomacy itself bore eloquent testimony to the high quality of the American intellect. No one, not even the most critical, can run through the writings of distinguished Americans scattered from Massachusetts to Georgia--the Adamses, Ellsworth, the Morrises, the Livingstons, Hamilton, Franklin, Washington, Madison, Marshall, Henry, the Randolphs, and the Pinckneys--without coming to the conclusion that there was something in American colonial life which fostered minds of depth and power. Women surmounted even greater difficulties than the men in the process of self-education, and their keen interest in public issues is evident in many a record like the _Letters_ of Mrs. John Adams to her husband during the Revolution; the writings of Mrs. Mercy Otis Warren, the sister of James Otis, who measured her pen with the British propagandists; and the patriot newspapers founded and managed by women. THE LEADERSHIP OF THE CHURCHES In the intellectual life of America, the churches assumed a role of high importance. There were abundant reasons for this. In many of the colonies--Maryland, Pennsylvania, and New England--the religious impulse had been one of the impelling motives in stimulating immigration. In all the colonies, the clergy, at least in the beginning, formed the only class with any leisure to devote to matters of the spirit. They preached on Sundays and taught school on week days. They led in the discussion of local problems and in the formation of political opinion, so much of which was concerned with the relation between church and state. They wrote books and pamphlets. They filled most of the chairs in the colleges; under clerical guidance, intellectual and spiritual, the Americans received their formal education. In several of the provinces the Anglican Church was established by law. In New England the Puritans were supreme, notwithstanding the efforts of the crown to overbear their authority. In the Middle colonies, particularly, the multiplication of sects made the dominance of any single denomination impossible; and in all of them there was a growing diversity of faith, which promised in time a separation of church and state and freedom of opinion. =The Church of England.=--Virginia was the stronghold of the English system of church and state. The Anglican faith and worship were prescribed by law, sustained by taxes imposed on all, and favored by the governor, the provincial councilors, and the richest planters. "The Established Church," says Lodge, "was one of the appendages of the Virginia aristocracy. They controlled the vestries and the ministers, and the parish church stood not infrequently on the estate of the planter who built and managed it." As in England, Catholics and Protestant Dissenters were at first laid under heavy disabilities. Only slowly and on sufferance were they admitted to the province; but when once they were even covertly tolerated, they pressed steadily in, until, by the Revolution, they outnumbered the adherents of the established order. The Church was also sanctioned by law and supported by taxes in the Carolinas after 1704, and in Georgia after that colony passed directly under the crown in 1754--this in spite of the fact that the majority of the inhabitants were Dissenters. Against the protests of the Catholics it was likewise established in Maryland. In New York, too, notwithstanding the resistance of the Dutch, the Established Church was fostered by the provincial officials, and the Anglicans, embracing about one-fifteenth of the population, exerted an influence all out of proportion to their numbers. Many factors helped to enhance the power of the English Church in the colonies. It was supported by the British government and the official class sent out to the provinces. Its bishops and archbishops in England were appointed by the king, and its faith and service were set forth by acts of Parliament. Having its seat of power in the English monarchy, it could hold its clergy and missionaries loyal to the crown and so counteract to some extent the independent spirit that was growing up in America. The Church, always a strong bulwark of the state, therefore had a political role to play here as in England. Able bishops and far-seeing leaders firmly grasped this fact about the middle of the eighteenth century and redoubled their efforts to augment the influence of the Church in provincial affairs. Unhappily for their plans they failed to calculate in advance the effect of their methods upon dissenting Protestants, who still cherished memories of bitter religious conflicts in the mother country. =Puritanism in New England.=--If the established faith made for imperial unity, the same could not be said of Puritanism. The Plymouth Pilgrims had cast off all allegiance to the Anglican Church and established a separate and independent congregation before they came to America. The Puritans, essaying at first the task of reformers within the Church, soon after their arrival in Massachusetts, likewise flung off their yoke of union with the Anglicans. In each town a separate congregation was organized, the male members choosing the pastor, the teachers, and the other officers. They also composed the voters in the town meeting, where secular matters were determined. The union of church and government was thus complete, and uniformity of faith and life prescribed by law and enforced by civil authorities; but this worked for local autonomy instead of imperial unity. The clergy became a powerful class, dominant through their learning and their fearful denunciations of the faithless. They wrote the books for the people to read--the famous Cotton Mather having three hundred and eighty-three books and pamphlets to his credit. In cooperation with the civil officers they enforced a strict observance of the Puritan Sabbath--a day of rest that began at six o'clock on Saturday evening and lasted until sunset on Sunday. All work, all trading, all amusement, and all worldly conversation were absolutely prohibited during those hours. A thoughtless maid servant who for some earthly reason smiled in church was in danger of being banished as a vagabond. Robert Pike, a devout Puritan, thinking the sun had gone to rest, ventured forth on horseback one Sunday evening and was luckless enough to have a ray of light strike him through a rift in the clouds. The next day he was brought into court and fined for "his ungodly conduct." With persons accused of witchcraft the Puritans were still more ruthless. When a mania of persecution swept over Massachusetts in 1692, eighteen people were hanged, one was pressed to death, many suffered imprisonment, and two died in jail. Just about this time, however, there came a break in the uniformity of Puritan rule. The crown and church in England had long looked upon it with disfavor, and in 1684 King Charles II annulled the old charter of the Massachusetts Bay Company. A new document issued seven years later wrested from the Puritans of the colony the right to elect their own governor and reserved the power of appointment to the king. It also abolished the rule limiting the suffrage to church members, substituting for it a simple property qualification. Thus a royal governor and an official family, certain to be Episcopalian in faith and monarchist in sympathies, were forced upon Massachusetts; and members of all religious denominations, if they had the required amount of property, were permitted to take part in elections. By this act in the name of the crown, the Puritan monopoly was broken down in Massachusetts, and that province was brought into line with Connecticut, Rhode Island, and New Hampshire, where property, not religious faith, was the test for the suffrage. =Growth of Religious Toleration.=--Though neither the Anglicans of Virginia nor the Puritans of Massachusetts believed in toleration for other denominations, that principle was strictly applied in Rhode Island. There, under the leadership of Roger Williams, liberty in matters of conscience was established in the beginning. Maryland, by granting in 1649 freedom to those who professed to believe in Jesus Christ, opened its gates to all Christians; and Pennsylvania, true to the tenets of the Friends, gave freedom of conscience to those "who confess and acknowledge the one Almighty and Eternal God to be the creator, upholder, and ruler of the World." By one circumstance or another, the Middle colonies were thus early characterized by diversity rather than uniformity of opinion. Dutch Protestants, Huguenots, Quakers, Baptists, Presbyterians, New Lights, Moravians, Lutherans, Catholics, and other denominations became too strongly intrenched and too widely scattered to permit any one of them to rule, if it had desired to do so. There were communities and indeed whole sections where one or another church prevailed, but in no colony was a legislature steadily controlled by a single group. Toleration encouraged diversity, and diversity, in turn, worked for greater toleration. The government and faith of the dissenting denominations conspired with economic and political tendencies to draw America away from the English state. Presbyterians, Quakers, Baptists, and Puritans had no hierarchy of bishops and archbishops to bind them to the seat of power in London. Neither did they look to that metropolis for guidance in interpreting articles of faith. Local self-government in matters ecclesiastical helped to train them for local self-government in matters political. The spirit of independence which led Dissenters to revolt in the Old World, nourished as it was amid favorable circumstances in the New World, made them all the more zealous in the defense of every right against authority imposed from without. SCHOOLS AND COLLEGES =Religion and Local Schools.=--One of the first cares of each Protestant denomination was the education of the children in the faith. In this work the Bible became the center of interest. The English version was indeed the one book of the people. Farmers, shopkeepers, and artisans, whose life had once been bounded by the daily routine of labor, found in the Scriptures not only an inspiration to religious conduct, but also a book of romance, travel, and history. "Legend and annal," says John Richard Green, "war-song and psalm, state-roll and biography, the mighty voices of prophets, the parables of Evangelists, stories of mission journeys, of perils by sea and among the heathen, philosophic arguments, apocalyptic visions, all were flung broadcast over minds unoccupied for the most part by any rival learning.... As a mere literary monument, the English version of the Bible remains the noblest example of the English tongue." It was the King James version just from the press that the Pilgrims brought across the sea with them. For the authority of the Established Church was substituted the authority of the Scriptures. The Puritans devised a catechism based upon their interpretation of the Bible, and, very soon after their arrival in America, they ordered all parents and masters of servants to be diligent in seeing that their children and wards were taught to read religious works and give answers to the religious questions. Massachusetts was scarcely twenty years old before education of this character was declared to be compulsory, and provision was made for public schools where those not taught at home could receive instruction in reading and writing. [Illustration: A PAGE FROM A FAMOUS SCHOOLBOOK A In ADAM'S Fall We sinned all. B Heaven to find, The Bible Mind. C Christ crucify'd For sinners dy'd. D The Deluge drown'd The Earth around. E ELIJAH hid by Ravens fed. F The judgment made FELIX afraid.] Outside of New England the idea of compulsory education was not regarded with the same favor; but the whole land was nevertheless dotted with little schools kept by "dames, itinerant teachers, or local parsons." Whether we turn to the life of Franklin in the North or Washington in the South, we read of tiny schoolhouses, where boys, and sometimes girls, were taught to read and write. Where there were no schools, fathers and mothers of the better kind gave their children the rudiments of learning. Though illiteracy was widespread, there is evidence to show that the diffusion of knowledge among the masses was making steady progress all through the eighteenth century. =Religion and Higher Learning.=--Religious motives entered into the establishment of colleges as well as local schools. Harvard, founded in 1636, and Yale, opened in 1718, were intended primarily to train "learned and godly ministers" for the Puritan churches of New England. To the far North, Dartmouth, chartered in 1769, was designed first as a mission to the Indians and then as a college for the sons of New England farmers preparing to preach, teach, or practice law. The College of New Jersey, organized in 1746 and removed to Princeton eleven years later, was sustained by the Presbyterians. Two colleges looked to the Established Church as their source of inspiration and support: William and Mary, founded in Virginia in 1693, and King's College, now Columbia University, chartered by King George II in 1754, on an appeal from the New York Anglicans, alarmed at the growth of religious dissent and the "republican tendencies" of the age. Two colleges revealed a drift away from sectarianism. Brown, established in Rhode Island in 1764, and the Philadelphia Academy, forerunner of the University of Pennsylvania, organized by Benjamin Franklin, reflected the spirit of toleration by giving representation on the board of trustees to several religious sects. It was Franklin's idea that his college should prepare young men to serve in public office as leaders of the people and ornaments to their country. =Self-education in America.=--Important as were these institutions of learning, higher education was by no means confined within their walls. Many well-to-do families sent their sons to Oxford or Cambridge in England. Private tutoring in the home was common. In still more families there were intelligent children who grew up in the great colonial school of adversity and who trained themselves until, in every contest of mind and wit, they could vie with the sons of Harvard or William and Mary or any other college. Such, for example, was Benjamin Franklin, whose charming autobiography, in addition to being an American classic, is a fine record of self-education. His formal training in the classroom was limited to a few years at a local school in Boston; but his self-education continued throughout his life. He early manifested a zeal for reading, and devoured, he tells us, his father's dry library on theology, Bunyan's works, Defoe's writings, Plutarch's _Lives_, Locke's _On the Human Understanding_, and innumerable volumes dealing with secular subjects. His literary style, perhaps the best of his time, Franklin acquired by the diligent and repeated analysis of the _Spectator_. In a life crowded with labors, he found time to read widely in natural science and to win single-handed recognition at the hands of European savants for his discoveries in electricity. By his own efforts he "attained an acquaintance" with Latin, Italian, French, and Spanish, thus unconsciously preparing himself for the day when he was to speak for all America at the court of the king of France. Lesser lights than Franklin, educated by the same process, were found all over colonial America. From this fruitful source of native ability, self-educated, the American cause drew great strength in the trials of the Revolution. THE COLONIAL PRESS =The Rise of the Newspaper.=--The evolution of American democracy into a government by public opinion, enlightened by the open discussion of political questions, was in no small measure aided by a free press. That too, like education, was a matter of slow growth. A printing press was brought to Massachusetts in 1639, but it was put in charge of an official censor and limited to the publication of religious works. Forty years elapsed before the first newspaper appeared, bearing the curious title, _Public Occurrences Both Foreign and Domestic_, and it had not been running very long before the government of Massachusetts suppressed it for discussing a political question. Publishing, indeed, seemed to be a precarious business; but in 1704 there came a second venture in journalism, _The Boston News-Letter_, which proved to be a more lasting enterprise because it refrained from criticizing the authorities. Still the public interest languished. When Franklin's brother, James, began to issue his _New England Courant_ about 1720, his friends sought to dissuade him, saying that one newspaper was enough for America. Nevertheless he continued it; and his confidence in the future was rewarded. In nearly every colony a gazette or chronicle appeared within the next thirty years or more. Benjamin Franklin was able to record in 1771 that America had twenty-five newspapers. Boston led with five. Philadelphia had three: two in English and one in German. =Censorship and Restraints on the Press.=--The idea of printing, unlicensed by the government and uncontrolled by the church, was, however, slow in taking form. The founders of the American colonies had never known what it was to have the free and open publication of books, pamphlets, broadsides, and newspapers. When the art of printing was first discovered, the control of publishing was vested in clerical authorities. After the establishment of the State Church in England in the reign of Elizabeth, censorship of the press became a part of royal prerogative. Printing was restricted to Oxford, Cambridge, and London; and no one could publish anything without previous approval of the official censor. When the Puritans were in power, the popular party, with a zeal which rivaled that of the crown, sought, in turn, to silence royalist and clerical writers by a vigorous censorship. After the restoration of the monarchy, control of the press was once more placed in royal hands, where it remained until 1695, when Parliament, by failing to renew the licensing act, did away entirely with the official censorship. By that time political parties were so powerful and so active and printing presses were so numerous that official review of all published matter became a sheer impossibility. In America, likewise, some troublesome questions arose in connection with freedom of the press. The Puritans of Massachusetts were no less anxious than King Charles or the Archbishop of London to shut out from the prying eyes of the people all literature "not mete for them to read"; and so they established a system of official licensing for presses, which lasted until 1755. In the other colonies where there was more diversity of opinion and publishers could set up in business with impunity, they were nevertheless constantly liable to arrest for printing anything displeasing to the colonial governments. In 1721 the editor of the _Mercury_ in Philadelphia was called before the proprietary council and ordered to apologize for a political article, and for a later offense of a similar character he was thrown into jail. A still more famous case was that of Peter Zenger, a New York publisher, who was arrested in 1735 for criticising the administration. Lawyers who ventured to defend the unlucky editor were deprived of their licenses to practice, and it became necessary to bring an attorney all the way from Philadelphia. By this time the tension of feeling was high, and the approbation of the public was forthcoming when the lawyer for the defense exclaimed to the jury that the very cause of liberty itself, not that of the poor printer, was on trial! The verdict for Zenger, when it finally came, was the signal for an outburst of popular rejoicing. Already the people of King George's province knew how precious a thing is the freedom of the press. Thanks to the schools, few and scattered as they were, and to the vigilance of parents, a very large portion, perhaps nearly one-half, of the colonists could read. Through the newspapers, pamphlets, and almanacs that streamed from the types, the people could follow the course of public events and grasp the significance of political arguments. An American opinion was in the process of making--an independent opinion nourished by the press and enriched by discussions around the fireside and at the taverns. When the day of resistance to British rule came, government by opinion was at hand. For every person who could hear the voice of Patrick Henry and Samuel Adams, there were a thousand who could see their appeals on the printed page. Men who had spelled out their letters while poring over Franklin's _Poor Richard's Almanac_ lived to read Thomas Paine's thrilling call to arms. THE EVOLUTION IN POLITICAL INSTITUTIONS Two very distinct lines of development appeared in colonial politics. The one, exalting royal rights and aristocratic privileges, was the drift toward provincial government through royal officers appointed in England. The other, leading toward democracy and self-government, was the growth in the power of the popular legislative assembly. Each movement gave impetus to the other, with increasing force during the passing years, until at last the final collision between the two ideals of government came in the war of independence. =The Royal Provinces.=--Of the thirteen English colonies eight were royal provinces in 1776, with governors appointed by the king. Virginia passed under the direct rule of the crown in 1624, when the charter of the London Company was annulled. The Massachusetts Bay corporation lost its charter in 1684, and the new instrument granted seven years later stripped the colonists of the right to choose their chief executive. In the early decades of the eighteenth century both the Carolinas were given the provincial instead of the proprietary form. New Hampshire, severed from Massachusetts in 1679, and Georgia, surrendered by the trustees in 1752, went into the hands of the crown. New York, transferred to the Duke of York on its capture from the Dutch in 1664, became a province when he took the title of James II in 1685. New Jersey, after remaining for nearly forty years under proprietors, was brought directly under the king in 1702. Maryland, Pennsylvania, and Delaware, although they retained their proprietary character until the Revolution, were in some respects like the royal colonies, for their governors were as independent of popular choice as were the appointees of King George. Only two colonies, Rhode Island and Connecticut, retained full self-government on the eve of the Revolution. They alone had governors and legislatures entirely of their own choosing. The chief officer of the royal province was the governor, who enjoyed high and important powers which he naturally sought to augment at every turn. He enforced the laws and, usually with the consent of a council, appointed the civil and military officers. He granted pardons and reprieves; he was head of the highest court; he was commander-in-chief of the militia; he levied troops for defense and enforced martial law in time of invasion, war, and rebellion. In all the provinces, except Massachusetts, he named the councilors who composed the upper house of the legislature and was likely to choose those who favored his claims. He summoned, adjourned, and dissolved the popular assembly, or the lower house; he laid before it the projects of law desired by the crown; and he vetoed measures which he thought objectionable. Here were in America all the elements of royal prerogative against which Hampden had protested and Cromwell had battled in England. [Illustration: THE ROYAL GOVERNOR'S PALACE AT NEW BERNE] The colonial governors were generally surrounded by a body of office-seekers and hunters for land grants. Some of them were noblemen of broken estates who had come to America to improve their fortunes. The pretensions of this circle grated on colonial nerves, and privileges granted to them, often at the expense of colonists, did much to deepen popular antipathy to the British government. Favors extended to adherents of the Established Church displeased Dissenters. The reappearance of this formidable union of church and state, from which they had fled, stirred anew the ancient wrath against that combination. =The Colonial Assembly.=--Coincident with the drift toward administration through royal governors was the second and opposite tendency, namely, a steady growth in the practice of self-government. The voters of England had long been accustomed to share in taxation and law-making through representatives in Parliament, and the idea was early introduced in America. Virginia was only twelve years old (1619) when its first representative assembly appeared. As the towns of Massachusetts multiplied and it became impossible for all the members of the corporation to meet at one place, the representative idea was adopted, in 1633. The river towns of Connecticut formed a representative system under their "Fundamental Orders" of 1639, and the entire colony was given a royal charter in 1662. Generosity, as well as practical considerations, induced such proprietors as Lord Baltimore and William Penn to invite their colonists to share in the government as soon as any considerable settlements were made. Thus by one process or another every one of the colonies secured a popular assembly. It is true that in the provision for popular elections, the suffrage was finally restricted to property owners or taxpayers, with a leaning toward the freehold qualification. In Virginia, the rural voter had to be a freeholder owning at least fifty acres of land, if there was no house on it, or twenty-five acres with a house twenty-five feet square. In Massachusetts, the voter for member of the assembly under the charter of 1691 had to be a freeholder of an estate worth forty shillings a year at least or of other property to the value of forty pounds sterling. In Pennsylvania, the suffrage was granted to freeholders owning fifty acres or more of land well seated, twelve acres cleared, and to other persons worth at least fifty pounds in lawful money. Restrictions like these undoubtedly excluded from the suffrage a very considerable number of men, particularly the mechanics and artisans of the towns, who were by no means content with their position. Nevertheless, it was relatively easy for any man to acquire a small freehold, so cheap and abundant was land; and in fact a large proportion of the colonists were land owners. Thus the assemblies, in spite of the limited suffrage, acquired a democratic tone. The popular character of the assemblies increased as they became engaged in battles with the royal and proprietary governors. When called upon by the executive to make provision for the support of the administration, the legislature took advantage of the opportunity to make terms in the interest of the taxpayers. It made annual, not permanent, grants of money to pay official salaries and then insisted upon electing a treasurer to dole it out. Thus the colonists learned some of the mysteries of public finance, as well as the management of rapacious officials. The legislature also used its power over money grants to force the governor to sign bills which he would otherwise have vetoed. =Contests between Legislatures and Governors.=--As may be imagined, many and bitter were the contests between the royal and proprietary governors and the colonial assemblies. Franklin relates an amusing story of how the Pennsylvania assembly held in one hand a bill for the executive to sign and, in the other hand, the money to pay his salary. Then, with sly humor, Franklin adds: "Do not, my courteous reader, take pet at our proprietary constitution for these our bargain and sale proceedings in legislation. It is a happy country where justice and what was your own before can be had for ready money. It is another addition to the value of money and of course another spur to industry. Every land is not so blessed." It must not be thought, however, that every governor got off as easily as Franklin's tale implies. On the contrary, the legislatures, like Caesar, fed upon meat that made them great and steadily encroached upon executive prerogatives as they tried out and found their strength. If we may believe contemporary laments, the power of the crown in America was diminishing when it was struck down altogether. In New York, the friends of the governor complained in 1747 that "the inhabitants of plantations are generally educated in republican principles; upon republican principles all is conducted. Little more than a shadow of royal authority remains in the Northern colonies." "Here," echoed the governor of South Carolina, the following year, "levelling principles prevail; the frame of the civil government is unhinged; a governor, if he would be idolized, must betray his trust; the people have got their whole administration in their hands; the election of the members of the assembly is by ballot; not civil posts only, but all ecclesiastical preferments, are in the disposal or election of the people." Though baffled by the "levelling principles" of the colonial assemblies, the governors did not give up the case as hopeless. Instead they evolved a system of policy and action which they thought could bring the obstinate provincials to terms. That system, traceable in their letters to the government in London, consisted of three parts: (1) the royal officers in the colonies were to be made independent of the legislatures by taxes imposed by acts of Parliament; (2) a British standing army was to be maintained in America; (3) the remaining colonial charters were to be revoked and government by direct royal authority was to be enlarged. Such a system seemed plausible enough to King George III and to many ministers of the crown in London. With governors, courts, and an army independent of the colonists, they imagined it would be easy to carry out both royal orders and acts of Parliament. This reasoning seemed both practical and logical. Nor was it founded on theory, for it came fresh from the governors themselves. It was wanting in one respect only. It failed to take account of the fact that the American people were growing strong in the practice of self-government and could dispense with the tutelage of the British ministry, no matter how excellent it might be or how benevolent its intentions. =References= A.M. Earle, _Home Life in Colonial Days_. A.L. Cross, _The Anglican Episcopate and the American Colonies_ (Harvard Studies). E.G. Dexter, _History of Education in the United States_. C.A. Duniway, _Freedom of the Press in Massachusetts_. Benjamin Franklin, _Autobiography_. E.B. Greene, _The Provincial Governor_ (Harvard Studies). A.E. McKinley, _The Suffrage Franchise in the Thirteen English Colonies_ (Pennsylvania University Studies). M.C. Tyler, _History of American Literature during the Colonial Times_ (2 vols.). =Questions= 1. Why is leisure necessary for the production of art and literature? How may leisure be secured? 2. Explain the position of the church in colonial life. 3. Contrast the political roles of Puritanism and the Established Church. 4. How did diversity of opinion work for toleration? 5. Show the connection between religion and learning in colonial times. 6. Why is a "free press" such an important thing to American democracy? 7. Relate some of the troubles of early American publishers. 8. Give the undemocratic features of provincial government. 9. How did the colonial assemblies help to create an independent American spirit, in spite of a restricted suffrage? 10. Explain the nature of the contests between the governors and the legislatures. =Research Topics= =Religious and Intellectual Life.=--Lodge, _Short History of the English Colonies_: (1) in New England, pp. 418-438, 465-475; (2) in Virginia, pp. 54-61, 87-89; (3) in Pennsylvania, pp. 232-237, 253-257; (4) in New York, pp. 316-321. Interesting source materials in Hart, _American History Told by Contemporaries_, Vol. II, pp. 255-275, 276-290. =The Government of a Royal Province, Virginia.=--Lodge, pp. 43-50. Special Reference: E.B. Greene, _The Provincial Governor_ (Harvard Studies). =The Government of a Proprietary Colony, Pennsylvania.=--Lodge, pp. 230-232. =Government in New England.=--Lodge, pp. 412-417. =The Colonial Press.=--Special Reference: G.H. Payne, _History of Journalism in the United States_ (1920). =Colonial Life in General.=--John Fiske, _Old Virginia and Her Neighbors_, Vol. II, pp. 174-269; Elson, _History of the United States_, pp. 197-210. =Colonial Government in General.=--Elson, pp. 210-216. CHAPTER IV THE DEVELOPMENT OF COLONIAL NATIONALISM It is one of the well-known facts of history that a people loosely united by domestic ties of a political and economic nature, even a people torn by domestic strife, may be welded into a solid and compact body by an attack from a foreign power. The imperative call to common defense, the habit of sharing common burdens, the fusing force of common service--these things, induced by the necessity of resisting outside interference, act as an amalgam drawing together all elements, except, perhaps, the most discordant. The presence of the enemy allays the most virulent of quarrels, temporarily at least. "Politics," runs an old saying, "stops at the water's edge." This ancient political principle, so well understood in diplomatic circles, applied nearly as well to the original thirteen American colonies as to the countries of Europe. The necessity for common defense, if not equally great, was certainly always pressing. Though it has long been the practice to speak of the early settlements as founded in "a wilderness," this was not actually the case. From the earliest days of Jamestown on through the years, the American people were confronted by dangers from without. All about their tiny settlements were Indians, growing more and more hostile as the frontier advanced and as sharp conflicts over land aroused angry passions. To the south and west was the power of Spain, humiliated, it is true, by the disaster to the Armada, but still presenting an imposing front to the British empire. To the north and west were the French, ambitious, energetic, imperial in temper, and prepared to contest on land and water the advance of British dominion in America. RELATIONS WITH THE INDIANS AND THE FRENCH =Indian Affairs.=--It is difficult to make general statements about the relations of the colonists to the Indians. The problem was presented in different shape in different sections of America. It was not handled according to any coherent or uniform plan by the British government, which alone could speak for all the provinces at the same time. Neither did the proprietors and the governors who succeeded one another, in an irregular train, have the consistent policy or the matured experience necessary for dealing wisely with Indian matters. As the difficulties arose mainly on the frontiers, where the restless and pushing pioneers were making their way with gun and ax, nearly everything that happened was the result of chance rather than of calculation. A personal quarrel between traders and an Indian, a jug of whisky, a keg of gunpowder, the exchange of guns for furs, personal treachery, or a flash of bad temper often set in motion destructive forces of the most terrible character. On one side of the ledger may be set innumerable generous records--of Squanto and Samoset teaching the Pilgrims the ways of the wilds; of Roger Williams buying his lands from the friendly natives; or of William Penn treating with them on his arrival in America. On the other side of the ledger must be recorded many a cruel and bloody conflict as the frontier rolled westward with deadly precision. The Pequots on the Connecticut border, sensing their doom, fell upon the tiny settlements with awful fury in 1637 only to meet with equally terrible punishment. A generation later, King Philip, son of Massasoit, the friend of the Pilgrims, called his tribesmen to a war of extermination which brought the strength of all New England to the field and ended in his own destruction. In New York, the relations with the Indians, especially with the Algonquins and the Mohawks, were marked by periodic and desperate wars. Virginia and her Southern neighbors suffered as did New England. In 1622 Opecacano, a brother of Powhatan, the friend of the Jamestown settlers, launched a general massacre; and in 1644 he attempted a war of extermination. In 1675 the whole frontier was ablaze. Nathaniel Bacon vainly attempted to stir the colonial governor to put up an adequate defense and, failing in that plea, himself headed a revolt and a successful expedition against the Indians. As the Virginia outposts advanced into the Kentucky country, the strife with the natives was transferred to that "dark and bloody ground"; while to the southeast, a desperate struggle with the Tuscaroras called forth the combined forces of the two Carolinas and Virginia. [Illustration: _From an old print._ VIRGINIANS DEFENDING THEMSELVES AGAINST THE INDIANS] From such horrors New Jersey and Delaware were saved on account of their geographical location. Pennsylvania, consistently following a policy of conciliation, was likewise spared until her western vanguard came into full conflict with the allied French and Indians. Georgia, by clever negotiations and treaties of alliance, managed to keep on fair terms with her belligerent Cherokees and Creeks. But neither diplomacy nor generosity could stay the inevitable conflict as the frontier advanced, especially after the French soldiers enlisted the Indians in their imperial enterprises. It was then that desultory fighting became general warfare. [Illustration: ENGLISH, FRENCH, AND SPANISH POSSESSIONS IN AMERICA, 1750] =Early Relations with the French.=--During the first decades of French exploration and settlement in the St. Lawrence country, the English colonies, engrossed with their own problems, gave little or no thought to their distant neighbors. Quebec, founded in 1608, and Montreal, in 1642, were too far away, too small in population, and too slight in strength to be much of a menace to Boston, Hartford, or New York. It was the statesmen in France and England, rather than the colonists in America, who first grasped the significance of the slowly converging empires in North America. It was the ambition of Louis XIV of France, rather than the labors of Jesuit missionaries and French rangers, that sounded the first note of colonial alarm. Evidence of this lies in the fact that three conflicts between the English and the French occurred before their advancing frontiers met on the Pennsylvania border. King William's War (1689-1697), Queen Anne's War (1701-1713), and King George's War (1744-1748) owed their origins and their endings mainly to the intrigues and rivalries of European powers, although they all involved the American colonies in struggles with the French and their savage allies. =The Clash in the Ohio Valley.=--The second of these wars had hardly closed, however, before the English colonists themselves began to be seriously alarmed about the rapidly expanding French dominion in the West. Marquette and Joliet, who opened the Lake region, and La Salle, who in 1682 had gone down the Mississippi to the Gulf, had been followed by the builders of forts. In 1718, the French founded New Orleans, thus taking possession of the gateway to the Mississippi as well as the St. Lawrence. A few years later they built Fort Niagara; in 1731 they occupied Crown Point; in 1749 they formally announced their dominion over all the territory drained by the Ohio River. Having asserted this lofty claim, they set out to make it good by constructing in the years 1752-1754 Fort Le Boeuf near Lake Erie, Fort Venango on the upper waters of the Allegheny, and Fort Duquesne at the junction of the streams forming the Ohio. Though they were warned by George Washington, in the name of the governor of Virginia, to keep out of territory "so notoriously known to be property of the crown of Great Britain," the French showed no signs of relinquishing their pretensions. [Illustration: _From an old print_ BRADDOCK'S RETREAT] =The Final Phase--the French and Indian War.=--Thus it happened that the shot which opened the Seven Years' War, known in America as the French and Indian War, was fired in the wilds of Pennsylvania. There began the conflict that spread to Europe and even Asia and finally involved England and Prussia, on the one side, and France, Austria, Spain, and minor powers on the other. On American soil, the defeat of Braddock in 1755 and Wolfe's exploit in capturing Quebec four years later were the dramatic features. On the continent of Europe, England subsidized Prussian arms to hold France at bay. In India, on the banks of the Ganges, as on the banks of the St. Lawrence, British arms were triumphant. Well could the historian write: "Conquests equaling in rapidity and far surpassing in magnitude those of Cortes and Pizarro had been achieved in the East." Well could the merchants of London declare that under the administration of William Pitt, the imperial genius of this world-wide conflict, commerce had been "united with and made to flourish by war." From the point of view of the British empire, the results of the war were momentous. By the peace of 1763, Canada and the territory east of the Mississippi, except New Orleans, passed under the British flag. The remainder of the Louisiana territory was transferred to Spain and French imperial ambitions on the American continent were laid to rest. In exchange for Havana, which the British had seized during the war, Spain ceded to King George the colony of Florida. Not without warrant did Macaulay write in after years that Pitt "was the first Englishman of his time; and he had made England the first country in the world." THE EFFECTS OF WARFARE ON THE COLONIES The various wars with the French and the Indians, trivial in detail as they seem to-day, had a profound influence on colonial life and on the destiny of America. Circumstances beyond the control of popular assemblies, jealous of their individual powers, compelled cooperation among them, grudging and stingy no doubt, but still cooperation. The American people, more eager to be busy in their fields or at their trades, were simply forced to raise and support armies, to learn the arts of warfare, and to practice, if in a small theater, the science of statecraft. These forces, all cumulative, drove the colonists, so tenaciously provincial in their habits, in the direction of nationalism. =The New England Confederation.=--It was in their efforts to deal with the problems presented by the Indian and French menace that the Americans took the first steps toward union. Though there were many common ties among the settlers of New England, it required a deadly fear of the Indians to produce in 1643 the New England Confederation, composed of Massachusetts, Plymouth, Connecticut, and New Haven. The colonies so united were bound together in "a firm and perpetual league of friendship and amity for offense and defense, mutual service and succor, upon all just occasions." They made provision for distributing the burdens of wars among the members and provided for a congress of commissioners from each colony to determine upon common policies. For some twenty years the Confederation was active and it continued to hold meetings until after the extinction of the Indian peril on the immediate border. Virginia, no less than Massachusetts, was aware of the importance of intercolonial cooperation. In the middle of the seventeenth century, the Old Dominion began treaties of commerce and amity with New York and the colonies of New England. In 1684 delegates from Virginia met at Albany with the agents of New York and Massachusetts to discuss problems of mutual defense. A few years later the Old Dominion cooperated loyally with the Carolinas in defending their borders against Indian forays. =The Albany Plan of Union.=--An attempt at a general colonial union was made in 1754. On the suggestion of the Lords of Trade in England, a conference was held at Albany to consider Indian relations, to devise measures of defense against the French, and to enter into "articles of union and confederation for the general defense of his Majesty's subjects and interests in North America as well in time of peace as of war." New Hampshire, Massachusetts, Connecticut, Rhode Island, New York, Pennsylvania, and Maryland were represented. After a long discussion, a plan of union, drafted mainly, it seems, by Benjamin Franklin, was adopted and sent to the colonies and the crown for approval. The colonies, jealous of their individual rights, refused to accept the scheme and the king disapproved it for the reason, Franklin said, that it had "too much weight in the democratic part of the constitution." Though the Albany union failed, the document is still worthy of study because it forecast many of the perplexing problems that were not solved until thirty-three years afterward, when another convention of which also Franklin was a member drafted the Constitution of the United States. [Illustration: BENJAMIN FRANKLIN] =The Military Education of the Colonists.=--The same wars that showed the provincials the meaning of union likewise instructed them in the art of defending their institutions. Particularly was this true of the last French and Indian conflict, which stretched all the way from Maine to the Carolinas and made heavy calls upon them all for troops. The answer, it is admitted, was far from satisfactory to the British government and the conduct of the militiamen was far from professional; but thousands of Americans got a taste, a strong taste, of actual fighting in the field. Men like George Washington and Daniel Morgan learned lessons that were not forgotten in after years. They saw what American militiamen could do under favorable circumstances and they watched British regulars operating on American soil. "This whole transaction," shrewdly remarked Franklin of Braddock's campaign, "gave us Americans the first suspicion that our exalted ideas of the prowess of British regular troops had not been well founded." It was no mere accident that the Virginia colonel who drew his sword under the elm at Cambridge and took command of the army of the Revolution was the brave officer who had "spurned the whistle of bullets" at the memorable battle in western Pennsylvania. =Financial Burdens and Commercial Disorder.=--While the provincials were learning lessons in warfare they were also paying the bills. All the conflicts were costly in treasure as in blood. King Philip's war left New England weak and almost bankrupt. The French and Indian struggle was especially expensive. The twenty-five thousand men put in the field by the colonies were sustained only by huge outlays of money. Paper currency streamed from the press and debts were accumulated. Commerce was driven from its usual channels and prices were enhanced. When the end came, both England and America were staggering under heavy liabilities, and to make matters worse there was a fall of prices accompanied by a commercial depression which extended over a period of ten years. It was in the midst of this crisis that measures of taxation had to be devised to pay the cost of the war, precipitating the quarrel which led to American independence. =The Expulsion of French Power from North America.=--The effects of the defeat administered to France, as time proved, were difficult to estimate. Some British statesmen regarded it as a happy circumstance that the colonists, already restive under their administration, had no foreign power at hand to aid them in case they struck for independence. American leaders, on the other hand, now that the soldiers of King Louis were driven from the continent, thought that they had no other country to fear if they cast off British sovereignty. At all events, France, though defeated, was not out of the sphere of American influence; for, as events proved, it was the fortunate French alliance negotiated by Franklin that assured the triumph of American arms in the War of the Revolution. COLONIAL RELATIONS WITH THE BRITISH GOVERNMENT It was neither the Indian wars nor the French wars that finally brought forth American nationality. That was the product of the long strife with the mother country which culminated in union for the war of independence. The forces that created this nation did not operate in the colonies alone. The character of the English sovereigns, the course of events in English domestic politics, and English measures of control over the colonies--executive, legislative, and judicial--must all be taken into account. =The Last of the Stuarts.=--The struggles between Charles I (1625-49) and the parliamentary party and the turmoil of the Puritan regime (1649-60) so engrossed the attention of Englishmen at home that they had little time to think of colonial policies or to interfere with colonial affairs. The restoration of the monarchy in 1660, accompanied by internal peace and the increasing power of the mercantile classes in the House of Commons, changed all that. In the reign of Charles II (1660-85), himself an easy-going person, the policy of regulating trade by act of Parliament was developed into a closely knit system and powerful agencies to supervise the colonies were created. At the same time a system of stricter control over the dominions was ushered in by the annulment of the old charter of Massachusetts which conferred so much self-government on the Puritans. Charles' successor, James II, a man of sterner stuff and jealous of his authority in the colonies as well as at home, continued the policy thus inaugurated and enlarged upon it. If he could have kept his throne, he would have bent the Americans under a harsh rule or brought on in his dominions a revolution like that which he precipitated at home in 1688. He determined to unite the Northern colonies and introduce a more efficient administration based on the pattern of the royal provinces. He made a martinet, Sir Edmund Andros, governor of all New England, New York, and New Jersey. The charter of Massachusetts, annulled in the last days of his brother's reign, he continued to ignore, and that of Connecticut would have been seized if it had not been spirited away and hidden, according to tradition, in a hollow oak. For several months, Andros gave the Northern colonies a taste of ill-tempered despotism. He wrung quit rents from land owners not accustomed to feudal dues; he abrogated titles to land where, in his opinion, they were unlawful; he forced the Episcopal service upon the Old South Church in Boston; and he denied the writ of _habeas corpus_ to a preacher who denounced taxation without representation. In the middle of his arbitrary course, however, his hand was stayed. The news came that King James had been dethroned by his angry subjects, and the people of Boston, kindling a fire on Beacon Hill, summoned the countryside to dispose of Andros. The response was prompt and hearty. The hated governor was arrested, imprisoned, and sent back across the sea under guard. The overthrow of James, followed by the accession of William and Mary and by assured parliamentary supremacy, had an immediate effect in the colonies. The new order was greeted with thanksgiving. Massachusetts was given another charter which, though not so liberal as the first, restored the spirit if not the entire letter of self-government. In the other colonies where Andros had been operating, the old course of affairs was resumed. =The Indifference of the First Two Georges.=--On the death in 1714 of Queen Anne, the successor of King William, the throne passed to a Hanoverian prince who, though grateful for English honors and revenues, was more interested in Hanover than in England. George I and George II, whose combined reigns extended from 1714 to 1760, never even learned to speak the English language, at least without an accent. The necessity of taking thought about colonial affairs bored both of them so that the stoutest defender of popular privileges in Boston or Charleston had no ground to complain of the exercise of personal prerogatives by the king. Moreover, during a large part of this period, the direction of affairs was in the hands of an astute leader, Sir Robert Walpole, who betrayed his somewhat cynical view of politics by adopting as his motto: "Let sleeping dogs lie." He revealed his appreciation of popular sentiment by exclaiming: "I will not be the minister to enforce taxes at the expense of blood." Such kings and such ministers were not likely to arouse the slumbering resistance of the thirteen colonies across the sea. =Control of the Crown over the Colonies.=--While no English ruler from James II to George III ventured to interfere with colonial matters personally, constant control over the colonies was exercised by royal officers acting under the authority of the crown. Systematic supervision began in 1660, when there was created by royal order a committee of the king's council to meet on Mondays and Thursdays of each week to consider petitions, memorials, and addresses respecting the plantations. In 1696 a regular board was established, known as the "Lords of Trade and Plantations," which continued, until the American Revolution, to scrutinize closely colonial business. The chief duties of the board were to examine acts of colonial legislatures, to recommend measures to those assemblies for adoption, and to hear memorials and petitions from the colonies relative to their affairs. The methods employed by this board were varied. All laws passed by American legislatures came before it for review as a matter of routine. If it found an act unsatisfactory, it recommended to the king the exercise of his veto power, known as the royal disallowance. Any person who believed his personal or property rights injured by a colonial law could be heard by the board in person or by attorney; in such cases it was the practice to hear at the same time the agent of the colony so involved. The royal veto power over colonial legislation was not, therefore, a formal affair, but was constantly employed on the suggestion of a highly efficient agency of the crown. All this was in addition to the powers exercised by the governors in the royal provinces. =Judicial Control.=--Supplementing this administrative control over the colonies was a constant supervision by the English courts of law. The king, by virtue of his inherent authority, claimed and exercised high appellate powers over all judicial tribunals in the empire. The right of appeal from local courts, expressly set forth in some charters, was, on the eve of the Revolution, maintained in every colony. Any subject in England or America, who, in the regular legal course, was aggrieved by any act of a colonial legislature or any decision of a colonial court, had the right, subject to certain regulations, to carry his case to the king in council, forcing his opponent to follow him across the sea. In the exercise of appellate power, the king in council acting as a court could, and frequently did, declare acts of colonial legislatures duly enacted and approved, null and void, on the ground that they were contrary to English law. =Imperial Control in Operation.=--Day after day, week after week, year after year, the machinery for political and judicial control over colonial affairs was in operation. At one time the British governors in the colonies were ordered not to approve any colonial law imposing a duty on European goods imported in English vessels. Again, when North Carolina laid a tax on peddlers, the council objected to it as "restrictive upon the trade and dispersion of English manufactures throughout the continent." At other times, Indian trade was regulated in the interests of the whole empire or grants of lands by a colonial legislature were set aside. Virginia was forbidden to close her ports to North Carolina lest there should be retaliation. In short, foreign and intercolonial trade were subjected to a control higher than that of the colony, foreshadowing a day when the Constitution of the United States was to commit to Congress the power to regulate interstate and foreign commerce and commerce with the Indians. A superior judicial power, towering above that of the colonies, as the Supreme Court at Washington now towers above the states, kept the colonial legislatures within the metes and bounds of established law. In the thousands of appeals, memorials, petitions, and complaints, and the rulings and decisions upon them, were written the real history of British imperial control over the American colonies. So great was the business before the Lords of Trade that the colonies had to keep skilled agents in London to protect their interests. As common grievances against the operation of this machinery of control arose, there appeared in each colony a considerable body of men, with the merchants in the lead, who chafed at the restraints imposed on their enterprise. Only a powerful blow was needed to weld these bodies into a common mass nourishing the spirit of colonial nationalism. When to the repeated minor irritations were added general and sweeping measures of Parliament applying to every colony, the rebound came in the Revolution. =Parliamentary Control over Colonial Affairs.=--As soon as Parliament gained in power at the expense of the king, it reached out to bring the American colonies under its sway as well. Between the execution of Charles I and the accession of George III, there was enacted an immense body of legislation regulating the shipping, trade, and manufactures of America. All of it, based on the "mercantile" theory then prevalent in all countries of Europe, was designed to control the overseas plantations in such a way as to foster the commercial and business interests of the mother country, where merchants and men of finance had got the upper hand. According to this theory, the colonies of the British empire should be confined to agriculture and the production of raw materials, and forced to buy their manufactured goods of England. _The Navigation Acts._--In the first rank among these measures of British colonial policy must be placed the navigation laws framed for the purpose of building up the British merchant marine and navy--arms so essential in defending the colonies against the Spanish, Dutch, and French. The beginning of this type of legislation was made in 1651 and it was worked out into a system early in the reign of Charles II (1660-85). The Navigation Acts, in effect, gave a monopoly of colonial commerce to British ships. No trade could be carried on between Great Britain and her dominions save in vessels built and manned by British subjects. No European goods could be brought to America save in the ships of the country that produced them or in English ships. These laws, which were almost fatal to Dutch shipping in America, fell with severity upon the colonists, compelling them to pay higher freight rates. The adverse effect, however, was short-lived, for the measures stimulated shipbuilding in the colonies, where the abundance of raw materials gave the master builders of America an advantage over those of the mother country. Thus the colonists in the end profited from the restrictive policy written into the Navigation Acts. _The Acts against Manufactures._--The second group of laws was deliberately aimed to prevent colonial industries from competing too sharply with those of England. Among the earliest of these measures may be counted the Woolen Act of 1699, forbidding the exportation of woolen goods from the colonies and even the woolen trade between towns and colonies. When Parliament learned, as the result of an inquiry, that New England and New York were making thousands of hats a year and sending large numbers annually to the Southern colonies and to Ireland, Spain, and Portugal, it enacted in 1732 a law declaring that "no hats or felts, dyed or undyed, finished or unfinished" should be "put upon any vessel or laden upon any horse or cart with intent to export to any place whatever." The effect of this measure upon the hat industry was almost ruinous. A few years later a similar blow was given to the iron industry. By an act of 1750, pig and bar iron from the colonies were given free entry to England to encourage the production of the raw material; but at the same time the law provided that "no mill or other engine for slitting or rolling of iron, no plating forge to work with a tilt hammer, and no furnace for making steel" should be built in the colonies. As for those already built, they were declared public nuisances and ordered closed. Thus three important economic interests of the colonists, the woolen, hat, and iron industries, were laid under the ban. _The Trade Laws._--The third group of restrictive measures passed by the British Parliament related to the sale of colonial produce. An act of 1663 required the colonies to export certain articles to Great Britain or to her dominions alone; while sugar, tobacco, and ginger consigned to the continent of Europe had to pass through a British port paying custom duties and through a British merchant's hands paying the usual commission. At first tobacco was the only one of the "enumerated articles" which seriously concerned the American colonies, the rest coming mainly from the British West Indies. In the course of time, however, other commodities were added to the list of enumerated articles, until by 1764 it embraced rice, naval stores, copper, furs, hides, iron, lumber, and pearl ashes. This was not all. The colonies were compelled to bring their European purchases back through English ports, paying duties to the government and commissions to merchants again. _The Molasses Act._--Not content with laws enacted in the interest of English merchants and manufacturers, Parliament sought to protect the British West Indies against competition from their French and Dutch neighbors. New England merchants had long carried on a lucrative trade with the French islands in the West Indies and Dutch Guiana, where sugar and molasses could be obtained in large quantities at low prices. Acting on the protests of English planters in the Barbadoes and Jamaica, Parliament, in 1733, passed the famous Molasses Act imposing duties on sugar and molasses imported into the colonies from foreign countries--rates which would have destroyed the American trade with the French and Dutch if the law had been enforced. The duties, however, were not collected. The molasses and sugar trade with the foreigners went on merrily, smuggling taking the place of lawful traffic. =Effect of the Laws in America.=--As compared with the strict monopoly of her colonial trade which Spain consistently sought to maintain, the policy of England was both moderate and liberal. Furthermore, the restrictive laws were supplemented by many measures intended to be favorable to colonial prosperity. The Navigation Acts, for example, redounded to the advantage of American shipbuilders and the producers of hemp, tar, lumber, and ship stores in general. Favors in British ports were granted to colonial producers as against foreign competitors and in some instances bounties were paid by England to encourage colonial enterprise. Taken all in all, there is much justification in the argument advanced by some modern scholars to the effect that the colonists gained more than they lost by British trade and industrial legislation. Certainly after the establishment of independence, when free from these old restrictions, the Americans found themselves handicapped by being treated as foreigners rather than favored traders and the recipients of bounties in English markets. Be that as it may, it appears that the colonists felt little irritation against the mother country on account of the trade and navigation laws enacted previous to the close of the French and Indian war. Relatively few were engaged in the hat and iron industries as compared with those in farming and planting, so that England's policy of restricting America to agriculture did not conflict with the interests of the majority of the inhabitants. The woolen industry was largely in the hands of women and carried on in connection with their domestic duties, so that it was not the sole support of any considerable number of people. As a matter of fact, moreover, the restrictive laws, especially those relating to trade, were not rigidly enforced. Cargoes of tobacco were boldly sent to continental ports without even so much as a bow to the English government, to which duties should have been paid. Sugar and molasses from the French and Dutch colonies were shipped into New England in spite of the law. Royal officers sometimes protested against smuggling and sometimes connived at it; but at no time did they succeed in stopping it. Taken all in all, very little was heard of "the galling restraints of trade" until after the French war, when the British government suddenly entered upon a new course. SUMMARY OF THE COLONIAL PERIOD In the period between the landing of the English at Jamestown, Virginia, in 1607, and the close of the French and Indian war in 1763--a period of a century and a half--a new nation was being prepared on this continent to take its place among the powers of the earth. It was an epoch of migration. Western Europe contributed emigrants of many races and nationalities. The English led the way. Next to them in numerical importance were the Scotch-Irish and the Germans. Into the melting pot were also cast Dutch, Swedes, French, Jews, Welsh, and Irish. Thousands of negroes were brought from Africa to till Southern fields or labor as domestic servants in the North. Why did they come? The reasons are various. Some of them, the Pilgrims and Puritans of New England, the French Huguenots, Scotch-Irish and Irish, and the Catholics of Maryland, fled from intolerant governments that denied them the right to worship God according to the dictates of their consciences. Thousands came to escape the bondage of poverty in the Old World and to find free homes in America. Thousands, like the negroes from Africa, were dragged here against their will. The lure of adventure appealed to the restless and the lure of profits to the enterprising merchants. How did they come? In some cases religious brotherhoods banded together and borrowed or furnished the funds necessary to pay the way. In other cases great trading companies were organized to found colonies. Again it was the wealthy proprietor, like Lord Baltimore or William Penn, who undertook to plant settlements. Many immigrants were able to pay their own way across the sea. Others bound themselves out for a term of years in exchange for the cost of the passage. Negroes were brought on account of the profits derived from their sale as slaves. Whatever the motive for their coming, however, they managed to get across the sea. The immigrants set to work with a will. They cut down forests, built houses, and laid out fields. They founded churches, schools, and colleges. They set up forges and workshops. They spun and wove. They fashioned ships and sailed the seas. They bartered and traded. Here and there on favorable harbors they established centers of commerce--Boston, Providence, New York, Philadelphia, Baltimore, and Charleston. As soon as a firm foothold was secured on the shore line they pressed westward until, by the close of the colonial period, they were already on the crest of the Alleghanies. Though they were widely scattered along a thousand miles of seacoast, the colonists were united in spirit by many common ties. The major portion of them were Protestants. The language, the law, and the literature of England furnished the basis of national unity. Most of the colonists were engaged in the same hard task; that of conquering a wilderness. To ties of kinship and language were added ties created by necessity. They had to unite in defense; first, against the Indians and later against the French. They were all subjects of the same sovereign--the king of England. The English Parliament made laws for them and the English government supervised their local affairs, their trade, and their manufactures. Common forces assailed them. Common grievances vexed them. Common hopes inspired them. Many of the things which tended to unite them likewise tended to throw them into opposition to the British Crown and Parliament. Most of them were freeholders; that is, farmers who owned their own land and tilled it with their own hands. A free soil nourished the spirit of freedom. The majority of them were Dissenters, critics, not friends, of the Church of England, that stanch defender of the British monarchy. Each colony in time developed its own legislature elected by the voters; it grew accustomed to making laws and laying taxes for itself. Here was a people learning self-reliance and self-government. The attempts to strengthen the Church of England in America and the transformation of colonies into royal provinces only fanned the spirit of independence which they were designed to quench. Nevertheless, the Americans owed much of their prosperity to the assistance of the government that irritated them. It was the protection of the British navy that prevented Holland, Spain, and France from wiping out their settlements. Though their manufacture and trade were controlled in the interests of the mother country, they also enjoyed great advantages in her markets. Free trade existed nowhere upon the earth; but the broad empire of Britain was open to American ships and merchandise. It could be said, with good reason, that the disadvantages which the colonists suffered through British regulation of their industry and trade were more than offset by the privileges they enjoyed. Still that is somewhat beside the point, for mere economic advantage is not necessarily the determining factor in the fate of peoples. A thousand circumstances had helped to develop on this continent a nation, to inspire it with a passion for independence, and to prepare it for a destiny greater than that of a prosperous dominion of the British empire. The economists, who tried to prove by logic unassailable that America would be richer under the British flag, could not change the spirit of Patrick Henry, Samuel Adams, Benjamin Franklin, or George Washington. =References= G.L. Beer, _Origin of the British Colonial System_ and _The Old Colonial System_. A. Bradley, _The Fight for Canada in North America_. C.M. Andrews, _Colonial Self-Government_ (American Nation Series). H. Egerton, _Short History of British Colonial Policy_. F. Parkman, _France and England in North America_ (12 vols.). R. Thwaites, _France in America_ (American Nation Series). J. Winsor, _The Mississippi Valley_ and _Cartier to Frontenac_. =Questions= 1. How would you define "nationalism"? 2. Can you give any illustrations of the way that war promotes nationalism? 3. Why was it impossible to establish and maintain a uniform policy in dealing with the Indians? 4. What was the outcome of the final clash with the French? 5. Enumerate the five chief results of the wars with the French and the Indians. Discuss each in detail. 6. Explain why it was that the character of the English king mattered to the colonists. 7. Contrast England under the Stuarts with England under the Hanoverians. 8. Explain how the English Crown, Courts, and Parliament controlled the colonies. 9. Name the three important classes of English legislation affecting the colonies. Explain each. 10. Do you think the English legislation was beneficial or injurious to the colonies? Why? =Research Topics= =Rise of French Power in North America.=--Special reference: Francis Parkman, _Struggle for a Continent_. =The French and Indian Wars.=--Special reference: W.M. Sloane, _French War and the Revolution_, Chaps. VI-IX. Parkman, _Montcalm and Wolfe_, Vol. II, pp. 195-299. Elson, _History of the United States_, pp. 171-196. =English Navigation Acts.=--Macdonald, _Documentary Source Book_, pp. 55, 72, 78, 90, 103. Coman, _Industrial History_, pp. 79-85. =British Colonial Policy.=--Callender, _Economic History of the United States_, pp. 102-108. =The New England Confederation.=--Analyze the document in Macdonald, _Source Book_, p. 45. Special reference: Fiske, _Beginnings of New England_, pp. 140-198. =The Administration of Andros.=--Fiske, _Beginnings_, pp. 242-278. =Biographical Studies.=--William Pitt and Sir Robert Walpole. Consult Green, _Short History of England_, on their policies, using the index. PART II. CONFLICT AND INDEPENDENCE CHAPTER V THE NEW COURSE IN BRITISH IMPERIAL POLICY On October 25, 1760, King George II died and the British crown passed to his young grandson. The first George, the son of the Elector of Hanover and Sophia the granddaughter of James I, was a thorough German who never even learned to speak the language of the land over which he reigned. The second George never saw England until he was a man. He spoke English with an accent and until his death preferred his German home. During their reign, the principle had become well established that the king did not govern but acted only through ministers representing the majority in Parliament. GEORGE III AND HIS SYSTEM =The Character of the New King.=--The third George rudely broke the German tradition of his family. He resented the imputation that he was a foreigner and on all occasions made a display of his British sympathies. To the draft of his first speech to Parliament, he added the popular phrase: "Born and educated in this country, I glory in the name of Briton." Macaulay, the English historian, certainly of no liking for high royal prerogative, said of George: "The young king was a born Englishman. All his tastes and habits, good and bad, were English. No portion of his subjects had anything to reproach him with.... His age, his appearance, and all that was known of his character conciliated public favor. He was in the bloom of youth; his person and address were pleasing; scandal imputed to him no vice; and flattery might without glaring absurdity ascribe to him many princely virtues." Nevertheless George III had been spoiled by his mother, his tutors, and his courtiers. Under their influence he developed high and mighty notions about the sacredness of royal authority and his duty to check the pretensions of Parliament and the ministers dependent upon it. His mother had dinned into his ears the slogan: "George, be king!" Lord Bute, his teacher and adviser, had told him that his honor required him to take an active part in the shaping of public policy and the making of laws. Thus educated, he surrounded himself with courtiers who encouraged him in the determination to rule as well as reign, to subdue all parties, and to place himself at the head of the nation and empire. [Illustration: _From an old print._ GEORGE III] =Political Parties and George III.=--The state of the political parties favored the plans of the king to restore some of the ancient luster of the crown. The Whigs, who were composed mainly of the smaller freeholders, merchants, inhabitants of towns, and Protestant non-conformists, had grown haughty and overbearing through long continuance in power and had as a consequence raised up many enemies in their own ranks. Their opponents, the Tories, had by this time given up all hope of restoring to the throne the direct Stuart line; but they still cherished their old notions about divine right. With the accession of George III the coveted opportunity came to them to rally around the throne again. George received his Tory friends with open arms, gave them offices, and bought them seats in the House of Commons. =The British Parliamentary System.=--The peculiarities of the British Parliament at the time made smooth the way for the king and his allies with their designs for controlling the entire government. In the first place, the House of Lords was composed mainly of hereditary nobles whose number the king could increase by the appointment of his favorites, as of old. Though the members of the House of Commons were elected by popular vote, they did not speak for the mass of English people. Great towns like Leeds, Manchester, and Birmingham, for example, had no representatives at all. While there were about eight million inhabitants in Great Britain, there were in 1768 only about 160,000 voters; that is to say, only about one in every ten adult males had a voice in the government. Many boroughs returned one or more members to the Commons although they had merely a handful of voters or in some instances no voters at all. Furthermore, these tiny boroughs were often controlled by lords who openly sold the right of representation to the highest bidder. The "rotten-boroughs," as they were called by reformers, were a public scandal, but George III readily made use of them to get his friends into the House of Commons. GEORGE III'S MINISTERS AND THEIR COLONIAL POLICIES =Grenville and the War Debt.=--Within a year after the accession of George III, William Pitt was turned out of office, the king treating him with "gross incivility" and the crowds shouting "Pitt forever!" The direction of affairs was entrusted to men enjoying the king's confidence. Leadership in the House of Commons fell to George Grenville, a grave and laborious man who for years had groaned over the increasing cost of government. The first task after the conclusion of peace in 1763 was the adjustment of the disordered finances of the kingdom. The debt stood at the highest point in the history of the country. More revenue was absolutely necessary and Grenville began to search for it, turning his attention finally to the American colonies. In this quest he had the aid of a zealous colleague, Charles Townshend, who had long been in public service and was familiar with the difficulties encountered by royal governors in America. These two men, with the support of the entire ministry, inaugurated in February, 1763, "a new system of colonial government. It was announced by authority that there were to be no more requisitions from the king to the colonial assemblies for supplies, but that the colonies were to be taxed instead by act of Parliament. Colonial governors and judges were to be paid by the Crown; they were to be supported by a standing army of twenty regiments; and all the expenses of this force were to be met by parliamentary taxation." =Restriction of Paper Money (1763).=--Among the many complaints filed before the board of trade were vigorous protests against the issuance of paper money by the colonial legislatures. The new ministry provided a remedy in the act of 1763, which declared void all colonial laws authorizing paper money or extending the life of outstanding bills. This law was aimed at the "cheap money" which the Americans were fond of making when specie was scarce--money which they tried to force on their English creditors in return for goods and in payment of the interest and principal of debts. Thus the first chapter was written in the long battle over sound money on this continent. =Limitation on Western Land Sales.=--Later in the same year (1763) George III issued a royal proclamation providing, among other things, for the government of the territory recently acquired by the treaty of Paris from the French. One of the provisions in this royal decree touched frontiersmen to the quick. The contests between the king's officers and the colonists over the disposition of western lands had been long and sharp. The Americans chafed at restrictions on settlement. The more adventurous were continually moving west and "squatting" on land purchased from the Indians or simply seized without authority. To put an end to this, the king forbade all further purchases from the Indians, reserving to the crown the right to acquire such lands and dispose of them for settlement. A second provision in the same proclamation vested the power of licensing trade with the Indians, including the lucrative fur business, in the hands of royal officers in the colonies. These two limitations on American freedom and enterprise were declared to be in the interest of the crown and for the preservation of the rights of the Indians against fraud and abuses. =The Sugar Act of 1764.=--King George's ministers next turned their attention to measures of taxation and trade. Since the heavy debt under which England was laboring had been largely incurred in the defense of America, nothing seemed more reasonable to them than the proposition that the colonies should help to bear the burden which fell so heavily upon the English taxpayer. The Sugar Act of 1764 was the result of this reasoning. There was no doubt about the purpose of this law, for it was set forth clearly in the title: "An act for granting certain duties in the British colonies and plantations in America ... for applying the produce of such duties ... towards defraying the expenses of defending, protecting and securing the said colonies and plantations ... and for more effectually preventing the clandestine conveyance of goods to and from the said colonies and plantations and improving and securing the trade between the same and Great Britain." The old Molasses Act had been prohibitive; the Sugar Act of 1764 was clearly intended as a revenue measure. Specified duties were laid upon sugar, indigo, calico, silks, and many other commodities imported into the colonies. The enforcement of the Molasses Act had been utterly neglected; but this Sugar Act had "teeth in it." Special precautions as to bonds, security, and registration of ship masters, accompanied by heavy penalties, promised a vigorous execution of the new revenue law. The strict terms of the Sugar Act were strengthened by administrative measures. Under a law of the previous year the commanders of armed vessels stationed along the American coast were authorized to stop, search, and, on suspicion, seize merchant ships approaching colonial ports. By supplementary orders, the entire British official force in America was instructed to be diligent in the execution of all trade and navigation laws. Revenue collectors, officers of the army and navy, and royal governors were curtly ordered to the front to do their full duty in the matter of law enforcement. The ordinary motives for the discharge of official obligations were sharpened by an appeal to avarice, for naval officers who seized offenders against the law were rewarded by large prizes out of the forfeitures and penalties. =The Stamp Act (1765).=--The Grenville-Townshend combination moved steadily towards its goal. While the Sugar Act was under consideration in Parliament, Grenville announced a plan for a stamp bill. The next year it went through both Houses with a speed that must have astounded its authors. The vote in the Commons stood 205 in favor to 49 against; while in the Lords it was not even necessary to go through the formality of a count. As George III was temporarily insane, the measure received royal assent by a commission acting as a board of regency. Protests of colonial agents in London were futile. "We might as well have hindered the sun's progress!" exclaimed Franklin. Protests of a few opponents in the Commons were equally vain. The ministry was firm in its course and from all appearances the Stamp Act hardly roused as much as a languid interest in the city of London. In fact, it is recorded that the fateful measure attracted less notice than a bill providing for a commission to act for the king when he was incapacitated. The Stamp Act, like the Sugar Act, declared the purpose of the British government to raise revenue in America "towards defraying the expenses of defending, protecting, and securing the British colonies and plantations in America." It was a long measure of more than fifty sections, carefully planned and skillfully drawn. By its provisions duties were imposed on practically all papers used in legal transactions,--deeds, mortgages, inventories, writs, bail bonds,--on licenses to practice law and sell liquor, on college diplomas, playing cards, dice, pamphlets, newspapers, almanacs, calendars, and advertisements. The drag net was closely knit, for scarcely anything escaped. =The Quartering Act (1765).=--The ministers were aware that the Stamp Act would rouse opposition in America--how great they could not conjecture. While the measure was being debated, a friend of General Wolfe, Colonel Barre, who knew America well, gave them an ominous warning in the Commons. "Believe me--remember I this day told you so--" he exclaimed, "the same spirit of freedom which actuated that people at first will accompany them still ... a people jealous of their liberties and who will vindicate them, if ever they should be violated." The answer of the ministry to a prophecy of force was a threat of force. Preparations were accordingly made to dispatch a larger number of soldiers than usual to the colonies, and the ink was hardly dry on the Stamp Act when Parliament passed the Quartering Act ordering the colonists to provide accommodations for the soldiers who were to enforce the new laws. "We have the power to tax them," said one of the ministry, "and we will tax them." COLONIAL RESISTANCE FORCES REPEAL =Popular Opposition.=--The Stamp Act was greeted in America by an outburst of denunciation. The merchants of the seaboard cities took the lead in making a dignified but unmistakable protest, agreeing not to import British goods while the hated law stood upon the books. Lawyers, some of them incensed at the heavy taxes on their operations and others intimidated by patriots who refused to permit them to use stamped papers, joined with the merchants. Aristocratic colonial Whigs, who had long grumbled at the administration of royal governors, protested against taxation without their consent, as the Whigs had done in old England. There were Tories, however, in the colonies as in England--many of them of the official class--who denounced the merchants, lawyers, and Whig aristocrats as "seditious, factious and republican." Yet the opposition to the Stamp Act and its accompanying measure, the Quartering Act, grew steadily all through the summer of 1765. In a little while it was taken up in the streets and along the countryside. All through the North and in some of the Southern colonies, there sprang up, as if by magic, committees and societies pledged to resist the Stamp Act to the bitter end. These popular societies were known as Sons of Liberty and Daughters of Liberty: the former including artisans, mechanics, and laborers; and the latter, patriotic women. Both groups were alike in that they had as yet taken little part in public affairs. Many artisans, as well as all the women, were excluded from the right to vote for colonial assemblymen. While the merchants and Whig gentlemen confined their efforts chiefly to drafting well-phrased protests against British measures, the Sons of Liberty operated in the streets and chose rougher measures. They stirred up riots in Boston, New York, Philadelphia, and Charleston when attempts were made to sell the stamps. They sacked and burned the residences of high royal officers. They organized committees of inquisition who by threats and intimidation curtailed the sale of British goods and the use of stamped papers. In fact, the Sons of Liberty carried their operations to such excesses that many mild opponents of the stamp tax were frightened and drew back in astonishment at the forces they had unloosed. The Daughters of Liberty in a quieter way were making a very effective resistance to the sale of the hated goods by spurring on domestic industries, their own particular province being the manufacture of clothing, and devising substitutes for taxed foods. They helped to feed and clothe their families without buying British goods. =Legislative Action against the Stamp Act.=--Leaders in the colonial assemblies, accustomed to battle against British policies, supported the popular protest. The Stamp Act was signed on March 22, 1765. On May 30, the Virginia House of Burgesses passed a set of resolutions declaring that the General Assembly of the colony alone had the right to lay taxes upon the inhabitants and that attempts to impose them otherwise were "illegal, unconstitutional, and unjust." It was in support of these resolutions that Patrick Henry uttered the immortal challenge: "Caesar had his Brutus, Charles I his Cromwell, and George III...." Cries of "Treason" were calmly met by the orator who finished: "George III may profit by their example. If that be treason, make the most of it." [Illustration: PATRICK HENRY] =The Stamp Act Congress.=--The Massachusetts Assembly answered the call of Virginia by inviting the colonies to elect delegates to a Congress to be held in New York to discuss the situation. Nine colonies responded and sent representatives. The delegates, while professing the warmest affection for the king's person and government, firmly spread on record a series of resolutions that admitted of no double meaning. They declared that taxes could not be imposed without their consent, given through their respective colonial assemblies; that the Stamp Act showed a tendency to subvert their rights and liberties; that the recent trade acts were burdensome and grievous; and that the right to petition the king and Parliament was their heritage. They thereupon made "humble supplication" for the repeal of the Stamp Act. The Stamp Act Congress was more than an assembly of protest. It marked the rise of a new agency of government to express the will of America. It was the germ of a government which in time was to supersede the government of George III in the colonies. It foreshadowed the Congress of the United States under the Constitution. It was a successful attempt at union. "There ought to be no New England men," declared Christopher Gadsden, in the Stamp Act Congress, "no New Yorkers known on the Continent, but all of us Americans." =The Repeal of the Stamp Act and the Sugar Act.=--The effect of American resistance on opinion in England was telling. Commerce with the colonies had been effectively boycotted by the Americans; ships lay idly swinging at the wharves; bankruptcy threatened hundreds of merchants in London, Bristol, and Liverpool. Workingmen in the manufacturing towns of England were thrown out of employment. The government had sown folly and was reaping, in place of the coveted revenue, rebellion. Perplexed by the storm they had raised, the ministers summoned to the bar of the House of Commons, Benjamin Franklin, the agent for Pennsylvania, who was in London. "Do you think it right," asked Grenville, "that America should be protected by this country and pay no part of the expenses?" The answer was brief: "That is not the case; the colonies raised, clothed, and paid during the last war twenty-five thousand men and spent many millions." Then came an inquiry whether the colonists would accept a modified stamp act. "No, never," replied Franklin, "never! They will never submit to it!" It was next suggested that military force might compel obedience to law. Franklin had a ready answer. "They cannot force a man to take stamps.... They may not find a rebellion; they may, indeed, make one." The repeal of the Stamp Act was moved in the House of Commons a few days later. The sponsor for the repeal spoke of commerce interrupted, debts due British merchants placed in jeopardy, Manchester industries closed, workingmen unemployed, oppression instituted, and the loss of the colonies threatened. Pitt and Edmund Burke, the former near the close of his career, the latter just beginning his, argued cogently in favor of retracing the steps taken the year before. Grenville refused. "America must learn," he wailed, "that prayers are not to be brought to Caesar through riot and sedition." His protests were idle. The Commons agreed to the repeal on February 22, 1766, amid the cheers of the victorious majority. It was carried through the Lords in the face of strong opposition and, on March 18, reluctantly signed by the king, now restored to his right mind. In rescinding the Stamp Act, Parliament did not admit the contention of the Americans that it was without power to tax them. On the contrary, it accompanied the repeal with a Declaratory Act. It announced that the colonies were subordinate to the crown and Parliament of Great Britain; that the king and Parliament therefore had undoubted authority to make laws binding the colonies in all cases whatsoever; and that the resolutions and proceedings of the colonists denying such authority were null and void. The repeal was greeted by the colonists with great popular demonstrations. Bells were rung; toasts to the king were drunk; and trade resumed its normal course. The Declaratory Act, as a mere paper resolution, did not disturb the good humor of those who again cheered the name of King George. Their confidence was soon strengthened by the news that even the Sugar Act had been repealed, thus practically restoring the condition of affairs before Grenville and Townshend inaugurated their policy of "thoroughness." RESUMPTION OF BRITISH REVENUE AND COMMERCIAL POLICIES =The Townshend Acts (1767).=--The triumph of the colonists was brief. Though Pitt, the friend of America, was once more prime minister, and seated in the House of Lords as the Earl of Chatham, his severe illness gave to Townshend and the Tory party practical control over Parliament. Unconvinced by the experience with the Stamp Act, Townshend brought forward and pushed through both Houses of Parliament three measures, which to this day are associated with his name. First among his restrictive laws was that of June 29, 1767, which placed the enforcement of the collection of duties and customs on colonial imports and exports in the hands of British commissioners appointed by the king, resident in the colonies, paid from the British treasury, and independent of all control by the colonists. The second measure of the same date imposed a tax on lead, glass, paint, tea, and a few other articles imported into the colonies, the revenue derived from the duties to be applied toward the payment of the salaries and other expenses of royal colonial officials. A third measure was the Tea Act of July 2, 1767, aimed at the tea trade which the Americans carried on illegally with foreigners. This law abolished the duty which the East India Company had to pay in England on tea exported to America, for it was thought that English tea merchants might thus find it possible to undersell American tea smugglers. =Writs of Assistance Legalized by Parliament.=--Had Parliament been content with laying duties, just as a manifestation of power and right, and neglected their collection, perhaps little would have been heard of the Townshend Acts. It provided, however, for the strict, even the harsh, enforcement of the law. It ordered customs officers to remain at their posts and put an end to smuggling. In the revenue act of June 29, 1767, it expressly authorized the superior courts of the colonies to issue "writs of assistance," empowering customs officers to enter "any house, warehouse, shop, cellar, or other place in the British colonies or plantations in America to search for and seize" prohibited or smuggled goods. The writ of assistance, which was a general search warrant issued to revenue officers, was an ancient device hateful to a people who cherished the spirit of personal independence and who had made actual gains in the practice of civil liberty. To allow a "minion of the law" to enter a man's house and search his papers and premises, was too much for the emotions of people who had fled to America in a quest for self-government and free homes, who had braved such hardships to establish them, and who wanted to trade without official interference. The writ of assistance had been used in Massachusetts in 1755 to prevent illicit trade with Canada and had aroused a violent hostility at that time. In 1761 it was again the subject of a bitter controversy which arose in connection with the application of a customs officer to a Massachusetts court for writs of assistance "as usual." This application was vainly opposed by James Otis in a speech of five hours' duration--a speech of such fire and eloquence that it sent every man who heard it away "ready to take up arms against writs of assistance." Otis denounced the practice as an exercise of arbitrary power which had cost one king his head and another his throne, a tyrant's device which placed the liberty of every man in jeopardy, enabling any petty officer to work possible malice on any innocent citizen on the merest suspicion, and to spread terror and desolation through the land. "What a scene," he exclaimed, "does this open! Every man, prompted by revenge, ill-humor, or wantonness to inspect the inside of his neighbor's house, may get a writ of assistance. Others will ask it from self-defense; one arbitrary exertion will provoke another until society is involved in tumult and blood." He did more than attack the writ itself. He said that Parliament could not establish it because it was against the British constitution. This was an assertion resting on slender foundation, but it was quickly echoed by the people. Then and there James Otis sounded the call to America to resist the exercise of arbitrary power by royal officers. "Then and there," wrote John Adams, "the child Independence was born." Such was the hated writ that Townshend proposed to put into the hands of customs officers in his grim determination to enforce the law. =The New York Assembly Suspended.=--In the very month that Townshend's Acts were signed by the king, Parliament took a still more drastic step. The assembly of New York, protesting against the "ruinous and insupportable" expense involved, had failed to make provision for the care of British troops in accordance with the terms of the Quartering Act. Parliament therefore suspended the assembly until it promised to obey the law. It was not until a third election was held that compliance with the Quartering Act was wrung from the reluctant province. In the meantime, all the colonies had learned on how frail a foundation their representative bodies rested. RENEWED RESISTANCE IN AMERICA =The Massachusetts Circular (1768).=--Massachusetts, under the leadership of Samuel Adams, resolved to resist the policy of renewed intervention in America. At his suggestion the assembly adopted a Circular Letter addressed to the assemblies of the other colonies informing them of the state of affairs in Massachusetts and roundly condemning the whole British program. The Circular Letter declared that Parliament had no right to lay taxes on Americans without their consent and that the colonists could not, from the nature of the case, be represented in Parliament. It went on shrewdly to submit to consideration the question as to whether any people could be called free who were subjected to governors and judges appointed by the crown and paid out of funds raised independently. It invited the other colonies, in the most temperate tones, to take thought about the common predicament in which they were all placed. [Illustration: _From an old print._ SAMUEL ADAMS] =The Dissolution of Assemblies.=--The governor of Massachusetts, hearing of the Circular Letter, ordered the assembly to rescind its appeal. On meeting refusal, he promptly dissolved it. The Maryland, Georgia, and South Carolina assemblies indorsed the Circular Letter and were also dissolved at once. The Virginia House of Burgesses, thoroughly aroused, passed resolutions on May 16, 1769, declaring that the sole right of imposing taxes in Virginia was vested in its legislature, asserting anew the right of petition to the crown, condemning the transportation of persons accused of crimes or trial beyond the seas, and beseeching the king for a redress of the general grievances. The immediate dissolution of the Virginia assembly, in its turn, was the answer of the royal governor. =The Boston Massacre.=--American opposition to the British authorities kept steadily rising as assemblies were dissolved, the houses of citizens searched, and troops distributed in increasing numbers among the centers of discontent. Merchants again agreed not to import British goods, the Sons of Liberty renewed their agitation, and women set about the patronage of home products still more loyally. On the night of March 5, 1770, a crowd on the streets of Boston began to jostle and tease some British regulars stationed in the town. Things went from bad to worse until some "boys and young fellows" began to throw snowballs and stones. Then the exasperated soldiers fired into the crowd, killing five and wounding half a dozen more. The day after the "massacre," a mass meeting was held in the town and Samuel Adams was sent to demand the withdrawal of the soldiers. The governor hesitated and tried to compromise. Finding Adams relentless, the governor yielded and ordered the regulars away. The Boston Massacre stirred the country from New Hampshire to Georgia. Popular passions ran high. The guilty soldiers were charged with murder. Their defense was undertaken, in spite of the wrath of the populace, by John Adams and Josiah Quincy, who as lawyers thought even the worst offenders entitled to their full rights in law. In his speech to the jury, however, Adams warned the British government against its course, saying, that "from the nature of things soldiers quartered in a populous town will always occasion two mobs where they will prevent one." Two of the soldiers were convicted and lightly punished. =Resistance in the South.=--The year following the Boston Massacre some citizens of North Carolina, goaded by the conduct of the royal governor, openly resisted his authority. Many were killed as a result and seven who were taken prisoners were hanged as traitors. A little later royal troops and local militia met in a pitched battle near Alamance River, called the "Lexington of the South." =The _Gaspee_ Affair and the Virginia Resolutions of 1773.=--On sea as well as on land, friction between the royal officers and the colonists broke out into overt acts. While patrolling Narragansett Bay looking for smugglers one day in 1772, the armed ship, _Gaspee_, ran ashore and was caught fast. During the night several men from Providence boarded the vessel and, after seizing the crew, set it on fire. A royal commission, sent to Rhode Island to discover the offenders and bring them to account, failed because it could not find a single informer. The very appointment of such a commission aroused the patriots of Virginia to action; and in March, 1773, the House of Burgesses passed a resolution creating a standing committee of correspondence to develop cooperation among the colonies in resistance to British measures. =The Boston Tea Party.=--Although the British government, finding the Townshend revenue act a failure, repealed in 1770 all the duties except that on tea, it in no way relaxed its resolve to enforce the other commercial regulations it had imposed on the colonies. Moreover, Parliament decided to relieve the British East India Company of the financial difficulties into which it had fallen partly by reason of the Tea Act and the colonial boycott that followed. In 1773 it agreed to return to the Company the regular import duties, levied in England, on all tea transshipped to America. A small impost of three pence, to be collected in America, was left as a reminder of the principle laid down in the Declaratory Act that Parliament had the right to tax the colonists. This arrangement with the East India Company was obnoxious to the colonists for several reasons. It was an act of favoritism for one thing, in the interest of a great monopoly. For another thing, it promised to dump on the American market, suddenly, an immense amount of cheap tea and so cause heavy losses to American merchants who had large stocks on hand. It threatened with ruin the business of all those who were engaged in clandestine trade with the Dutch. It carried with it an irritating tax of three pence on imports. In Charleston, Annapolis, New York, and Boston, captains of ships who brought tea under this act were roughly handled. One night in December, 1773, a band of Boston citizens, disguised as Indians, boarded the hated tea ships and dumped the cargo into the harbor. This was serious business, for it was open, flagrant, determined violation of the law. As such the British government viewed it. RETALIATION BY THE BRITISH GOVERNMENT =Reception of the News of the Tea Riot.=--The news of the tea riot in Boston confirmed King George in his conviction that there should be no soft policy in dealing with his American subjects. "The die is cast," he stated with evident satisfaction. "The colonies must either triumph or submit.... If we take the resolute part, they will undoubtedly be very meek." Lord George Germain characterized the tea party as "the proceedings of a tumultuous and riotous rabble who ought, if they had the least prudence, to follow their mercantile employments and not trouble themselves with politics and government, which they do not understand." This expressed, in concise form, exactly the sentiments of Lord North, who had then for three years been the king's chief minister. Even Pitt, Lord Chatham, was prepared to support the government in upholding its authority. =The Five Intolerable Acts.=--Parliament, beginning on March 31, 1774, passed five stringent measures, known in American history as the five "intolerable acts." They were aimed at curing the unrest in America. The _first_ of them was a bill absolutely shutting the port of Boston to commerce with the outside world. The _second_, following closely, revoked the Massachusetts charter of 1691 and provided furthermore that the councilors should be appointed by the king, that all judges should be named by the royal governor, and that town meetings (except to elect certain officers) could not be held without the governor's consent. A _third_ measure, after denouncing the "utter subversion of all lawful government" in the provinces, authorized royal agents to transfer to Great Britain or to other colonies the trials of officers or other persons accused of murder in connection with the enforcement of the law. The _fourth_ act legalized the quartering of troops in Massachusetts towns. The _fifth_ of the measures was the Quebec Act, which granted religious toleration to the Catholics in Canada, extended the boundaries of Quebec southward to the Ohio River, and established, in this western region, government by a viceroy. The intolerable acts went through Parliament with extraordinary celerity. There was an opposition, alert and informed; but it was ineffective. Burke spoke eloquently against the Boston port bill, condemning it roundly for punishing the innocent with the guilty, and showing how likely it was to bring grave consequences in its train. He was heard with respect and his pleas were rejected. The bill passed both houses without a division, the entry "unanimous" being made upon their journals although it did not accurately represent the state of opinion. The law destroying the charter of Massachusetts passed the Commons by a vote of three to one; and the third intolerable act by a vote of four to one. The triumph of the ministry was complete. "What passed in Boston," exclaimed the great jurist, Lord Mansfield, "is the overt act of High Treason proceeding from our over lenity and want of foresight." The crown and Parliament were united in resorting to punitive measures. In the colonies the laws were received with consternation. To the American Protestants, the Quebec Act was the most offensive. That project they viewed not as an act of grace or of mercy but as a direct attempt to enlist French Canadians on the side of Great Britain. The British government did not grant religious toleration to Catholics either at home or in Ireland and the Americans could see no good motive in granting it in North America. The act was also offensive because Massachusetts, Connecticut, and Virginia had, under their charters, large claims in the territory thus annexed to Quebec. To enforce these intolerable acts the military arm of the British government was brought into play. The commander-in-chief of the armed forces in America, General Gage, was appointed governor of Massachusetts. Reinforcements were brought to the colonies, for now King George was to give "the rebels," as he called them, a taste of strong medicine. The majesty of his law was to be vindicated by force. FROM REFORM TO REVOLUTION IN AMERICA =The Doctrine of Natural Rights.=--The dissolution of assemblies, the destruction of charters, and the use of troops produced in the colonies a new phase in the struggle. In the early days of the contest with the British ministry, the Americans spoke of their "rights as Englishmen" and condemned the acts of Parliament as unlawful, as violating the principles of the English constitution under which they all lived. When they saw that such arguments had no effect on Parliament, they turned for support to their "natural rights." The latter doctrine, in the form in which it was employed by the colonists, was as English as the constitutional argument. John Locke had used it with good effect in defense of the English revolution in the seventeenth century. American leaders, familiar with the writings of Locke, also took up his thesis in the hour of their distress. They openly declared that their rights did not rest after all upon the English constitution or a charter from the crown. "Old Magna Carta was not the beginning of all things," retorted Otis when the constitutional argument failed. "A time may come when Parliament shall declare every American charter void, but the natural, inherent, and inseparable rights of the colonists as men and as citizens would remain and whatever became of charters can never be abolished until the general conflagration." Of the same opinion was the young and impetuous Alexander Hamilton. "The sacred rights of mankind," he exclaimed, "are not to be rummaged for among old parchments or musty records. They are written as with a sunbeam in the whole volume of human destiny by the hand of divinity itself, and can never be erased or obscured by mortal power." Firm as the American leaders were in the statement and defense of their rights, there is every reason for believing that in the beginning they hoped to confine the conflict to the realm of opinion. They constantly avowed that they were loyal to the king when protesting in the strongest language against his policies. Even Otis, regarded by the loyalists as a firebrand, was in fact attempting to avert revolution by winning concessions from England. "I argue this cause with the greater pleasure," he solemnly urged in his speech against the writs of assistance, "as it is in favor of British liberty ... and as it is in opposition to a kind of power, the exercise of which in former periods cost one king of England his head and another his throne." =Burke Offers the Doctrine of Conciliation.=--The flooding tide of American sentiment was correctly measured by one Englishman at least, Edmund Burke, who quickly saw that attempts to restrain the rise of American democracy were efforts to reverse the processes of nature. He saw how fixed and rooted in the nature of things was the American spirit--how inevitable, how irresistible. He warned his countrymen that there were three ways of handling the delicate situation--and only three. One was to remove the cause of friction by changing the spirit of the colonists--an utter impossibility because that spirit was grounded in the essential circumstances of American life. The second was to prosecute American leaders as criminals; of this he begged his countrymen to beware lest the colonists declare that "a government against which a claim of liberty is tantamount to high treason is a government to which submission is equivalent to slavery." The third and right way to meet the problem, Burke concluded, was to accept the American spirit, repeal the obnoxious measures, and receive the colonies into equal partnership. =Events Produce the Great Decision.=--The right way, indicated by Burke, was equally impossible to George III and the majority in Parliament. To their narrow minds, American opinion was contemptible and American resistance unlawful, riotous, and treasonable. The correct way, in their view, was to dispatch more troops to crush the "rebels"; and that very act took the contest from the realm of opinion. As John Adams said: "Facts are stubborn things." Opinions were unseen, but marching soldiers were visible to the veriest street urchin. "Now," said Gouverneur Morris, "the sheep, simple as they are, cannot be gulled as heretofore." It was too late to talk about the excellence of the British constitution. If any one is bewildered by the controversies of modern historians as to why the crisis came at last, he can clarify his understanding by reading again Edmund Burke's stately oration, _On Conciliation with America_. =References= G.L. Beer, _British Colonial Policy_ (1754-63). E. Channing, _History of the United States_, Vol. III. R. Frothingham, _Rise of the Republic_. G.E. Howard, _Preliminaries of the Revolution_ (American Nation Series). J.K. Hosmer, _Samuel Adams_. J.T. Morse, _Benjamin Franklin_. M.C. Tyler, _Patrick Henry_. J.A. Woodburn (editor), _The American Revolution_ (Selections from the English work by Lecky). =Questions= 1. Show how the character of George III made for trouble with the colonies. 2. Explain why the party and parliamentary systems of England favored the plans of George III. 3. How did the state of English finances affect English policy? 4. Enumerate five important measures of the English government affecting the colonies between 1763 and 1765. Explain each in detail. 5. Describe American resistance to the Stamp Act. What was the outcome? 6. Show how England renewed her policy of regulation in 1767. 7. Summarize the events connected with American resistance. 8. With what measures did Great Britain retaliate? 9. Contrast "constitutional" with "natural" rights. 10. What solution did Burke offer? Why was it rejected? =Research Topics= =Powers Conferred on Revenue Officers by Writs of Assistance.=--See a writ in Macdonald, _Source Book_, p. 109. =The Acts of Parliament Respecting America.=--Macdonald, pp. 117-146. Assign one to each student for report and comment. =Source Studies on the Stamp Act.=--Hart, _American History Told by Contemporaries_, Vol. II, pp. 394-412. =Source Studies of the Townshend Acts.=--Hart, Vol. II, pp. 413-433. =American Principles.=--Prepare a table of them from the Resolutions of the Stamp Act Congress and the Massachusetts Circular. Macdonald, pp. 136-146. =An English Historian's View of the Period.=--Green, _Short History of England_, Chap. X. =English Policy Not Injurious to America.=--Callender, _Economic History_, pp. 85-121. =A Review of English Policy.=--Woodrow Wilson, _History of the American People_, Vol. II, pp. 129-170. =The Opening of the Revolution.=--Elson, _History of the United States_, pp. 220-235. CHAPTER VI THE AMERICAN REVOLUTION RESISTANCE AND RETALIATION =The Continental Congress.=--When the news of the "intolerable acts" reached America, every one knew what strong medicine Parliament was prepared to administer to all those who resisted its authority. The cause of Massachusetts became the cause of all the colonies. Opposition to British policy, hitherto local and spasmodic, now took on a national character. To local committees and provincial conventions was added a Continental Congress, appropriately called by Massachusetts on June 17, 1774, at the instigation of Samuel Adams. The response to the summons was electric. By hurried and irregular methods delegates were elected during the summer, and on September 5 the Congress duly assembled in Carpenter's Hall in Philadelphia. Many of the greatest men in America were there--George Washington and Patrick Henry from Virginia and John and Samuel Adams from Massachusetts. Every shade of opinion was represented. Some were impatient with mild devices; the majority favored moderation. The Congress drew up a declaration of American rights and stated in clear and dignified language the grievances of the colonists. It approved the resistance to British measures offered by Massachusetts and promised the united support of all sections. It prepared an address to King George and another to the people of England, disavowing the idea of independence but firmly attacking the policies pursued by the British government. =The Non-Importation Agreement.=--The Congress was not content, however, with professions of faith and with petitions. It took one revolutionary step. It agreed to stop the importation of British goods into America, and the enforcement of this agreement it placed in the hands of local "committees of safety and inspection," to be elected by the qualified voters. The significance of this action is obvious. Congress threw itself athwart British law. It made a rule to bind American citizens and to be carried into effect by American officers. It set up a state within the British state and laid down a test of allegiance to the new order. The colonists, who up to this moment had been wavering, had to choose one authority or the other. They were for the enforcement of the non-importation agreement or they were against it. They either bought English goods or they did not. In the spirit of the toast--"May Britain be wise and America be free"--the first Continental Congress adjourned in October, having appointed the tenth of May following for the meeting of a second Congress, should necessity require. =Lord North's "Olive Branch."=--When the news of the action of the American Congress reached England, Pitt and Burke warmly urged a repeal of the obnoxious laws, but in vain. All they could wring from the prime minister, Lord North, was a set of "conciliatory resolutions" proposing to relieve from taxation any colony that would assume its share of imperial defense and make provision for supporting the local officers of the crown. This "olive branch" was accompanied by a resolution assuring the king of support at all hazards in suppressing the rebellion and by the restraining act of March 30, 1775, which in effect destroyed the commerce of New England. =Bloodshed at Lexington and Concord (April 19, 1775).=--Meanwhile the British authorities in Massachusetts relaxed none of their efforts in upholding British sovereignty. General Gage, hearing that military stores had been collected at Concord, dispatched a small force to seize them. By this act he precipitated the conflict he had sought to avoid. At Lexington, on the road to Concord, occurred "the little thing" that produced "the great event." An unexpected collision beyond the thought or purpose of any man had transferred the contest from the forum to the battle field. =The Second Continental Congress.=--Though blood had been shed and war was actually at hand, the second Continental Congress, which met at Philadelphia in May, 1775, was not yet convinced that conciliation was beyond human power. It petitioned the king to interpose on behalf of the colonists in order that the empire might avoid the calamities of civil war. On the last day of July, it made a temperate but firm answer to Lord North's offer of conciliation, stating that the proposal was unsatisfactory because it did not renounce the right to tax or repeal the offensive acts of Parliament. =Force, the British Answer.=--Just as the representatives of America were about to present the last petition of Congress to the king on August 23, 1775, George III issued a proclamation of rebellion. This announcement declared that the colonists, "misled by dangerous and ill-designing men," were in a state of insurrection; it called on the civil and military powers to bring "the traitors to justice"; and it threatened with "condign punishment the authors, perpetrators, and abettors of such traitorous designs." It closed with the usual prayer: "God, save the king." Later in the year, Parliament passed a sweeping act destroying all trade and intercourse with America. Congress was silent at last. Force was also America's answer. AMERICAN INDEPENDENCE =Drifting into War.=--Although the Congress had not given up all hope of reconciliation in the spring and summer of 1775, it had firmly resolved to defend American rights by arms if necessary. It transformed the militiamen who had assembled near Boston, after the battle of Lexington, into a Continental army and selected Washington as commander-in-chief. It assumed the powers of a government and prepared to raise money, wage war, and carry on diplomatic relations with foreign countries. [Illustration: _From an old print_ SPIRIT OF 1776] Events followed thick and fast. On June 17, the American militia, by the stubborn defense of Bunker Hill, showed that it could make British regulars pay dearly for all they got. On July 3, Washington took command of the army at Cambridge. In January, 1776, after bitter disappointments in drumming up recruits for its army in England, Scotland, and Ireland, the British government concluded a treaty with the Landgrave of Hesse-Cassel in Germany contracting, at a handsome figure, for thousands of soldiers and many pieces of cannon. This was the crowning insult to America. Such was the view of all friends of the colonies on both sides of the water. Such was, long afterward, the judgment of the conservative historian Lecky: "The conduct of England in hiring German mercenaries to subdue the essentially English population beyond the Atlantic made reconciliation hopeless and independence inevitable." The news of this wretched transaction in German soldiers had hardly reached America before there ran all down the coast the thrilling story that Washington had taken Boston, on March 17, 1776, compelling Lord Howe to sail with his entire army for Halifax. =The Growth of Public Sentiment in Favor of Independence.=--Events were bearing the Americans away from their old position under the British constitution toward a final separation. Slowly and against their desires, prudent and honorable men, who cherished the ties that united them to the old order and dreaded with genuine horror all thought of revolution, were drawn into the path that led to the great decision. In all parts of the country and among all classes, the question of the hour was being debated. "American independence," as the historian Bancroft says, "was not an act of sudden passion nor the work of one man or one assembly. It had been discussed in every part of the country by farmers and merchants, by mechanics and planters, by the fishermen along the coast and the backwoodsmen of the West; in town meetings and from the pulpit; at social gatherings and around the camp fires; in county conventions and conferences or committees; in colonial congresses and assemblies." [Illustration: _From an old print_ THOMAS PAINE] =Paine's "Commonsense."=--In the midst of this ferment of American opinion, a bold and eloquent pamphleteer broke in upon the hesitating public with a program for absolute independence, without fears and without apologies. In the early days of 1776, Thomas Paine issued the first of his famous tracts, "Commonsense," a passionate attack upon the British monarchy and an equally passionate plea for American liberty. Casting aside the language of petition with which Americans had hitherto addressed George III, Paine went to the other extreme and assailed him with many a violent epithet. He condemned monarchy itself as a system which had laid the world "in blood and ashes." Instead of praising the British constitution under which colonists had been claiming their rights, he brushed it aside as ridiculous, protesting that it was "owing to the constitution of the people, not to the constitution of the government, that the Crown is not as oppressive in England as in Turkey." Having thus summarily swept away the grounds of allegiance to the old order, Paine proceeded relentlessly to an argument for immediate separation from Great Britain. There was nothing in the sphere of practical interest, he insisted, which should bind the colonies to the mother country. Allegiance to her had been responsible for the many wars in which they had been involved. Reasons of trade were not less weighty in behalf of independence. "Our corn will fetch its price in any market in Europe and our imported goods must be paid for, buy them where we will." As to matters of government, "it is not in the power of Britain to do this continent justice; the business of it will soon be too weighty and intricate to be managed with any tolerable degree of convenience by a power so distant from us and so very ignorant of us." There is accordingly no alternative to independence for America. "Everything that is right or natural pleads for separation. The blood of the slain, the weeping voice of nature cries ''tis time to part.' ... Arms, the last resort, must decide the contest; the appeal was the choice of the king and the continent hath accepted the challenge.... The sun never shone on a cause of greater worth. 'Tis not the affair of a city, a county, a province or a kingdom, but of a continent.... 'Tis not the concern of a day, a year or an age; posterity is involved in the contest and will be more or less affected to the end of time by the proceedings now. Now is the seed-time of Continental union, faith, and honor.... O! ye that love mankind! Ye that dare oppose not only the tyranny, but the tyrant, stand forth.... Let names of Whig and Tory be extinct. Let none other be heard among us than those of a good citizen, an open and resolute friend, and a virtuous supporter of the rights of mankind and of the free and independent states of America." As more than 100,000 copies were scattered broadcast over the country, patriots exclaimed with Washington: "Sound doctrine and unanswerable reason!" =The Drift of Events toward Independence.=--Official support for the idea of independence began to come from many quarters. On the tenth of February, 1776, Gadsden, in the provincial convention of South Carolina, advocated a new constitution for the colony and absolute independence for all America. The convention balked at the latter but went half way by abolishing the system of royal administration and establishing a complete plan of self-government. A month later, on April 12, the neighboring state of North Carolina uttered the daring phrase from which others shrank. It empowered its representatives in the Congress to concur with the delegates of the other colonies in declaring independence. Rhode Island, Massachusetts, and Virginia quickly responded to the challenge. The convention of the Old Dominion, on May 15, instructed its delegates at Philadelphia to propose the independence of the United Colonies and to give the assent of Virginia to the act of separation. When the resolution was carried the British flag on the state house was lowered for all time. Meanwhile the Continental Congress was alive to the course of events outside. The subject of independence was constantly being raised. "Are we rebels?" exclaimed Wyeth of Virginia during a debate in February. "No: we must declare ourselves a free people." Others hesitated and spoke of waiting for the arrival of commissioners of conciliation. "Is not America already independent?" asked Samuel Adams a few weeks later. "Why not then declare it?" Still there was uncertainty and delegates avoided the direct word. A few more weeks elapsed. At last, on May 10, Congress declared that the authority of the British crown in America must be suppressed and advised the colonies to set up governments of their own. [Illustration: _From an old print_ THOMAS JEFFERSON READING HIS DRAFT OF THE DECLARATION OF INDEPENDENCE TO THE COMMITTEE OF CONGRESS] =Independence Declared.=--The way was fully prepared, therefore, when, on June 7, the Virginia delegation in the Congress moved that "these united colonies are and of right ought to be free and independent states." A committee was immediately appointed to draft a formal document setting forth the reasons for the act, and on July 2 all the states save New York went on record in favor of severing their political connection with Great Britain. Two days later, July 4, Jefferson's draft of the Declaration of Independence, changed in some slight particulars, was adopted. The old bell in Independence Hall, as it is now known, rang out the glad tidings; couriers swiftly carried the news to the uttermost hamlet and farm. A new nation announced its will to have a place among the powers of the world. To some documents is given immortality. The Declaration of Independence is one of them. American patriotism is forever associated with it; but patriotism alone does not make it immortal. Neither does the vigor of its language or the severity of its indictment give it a secure place in the records of time. The secret of its greatness lies in the simple fact that it is one of the memorable landmarks in the history of a political ideal which for three centuries has been taking form and spreading throughout the earth, challenging kings and potentates, shaking down thrones and aristocracies, breaking the armies of irresponsible power on battle fields as far apart as Marston Moor and Chateau-Thierry. That ideal, now so familiar, then so novel, is summed up in the simple sentence: "Governments derive their just powers from the consent of the governed." Written in a "decent respect for the opinions of mankind," to set forth the causes which impelled the American colonists to separate from Britain, the Declaration contained a long list of "abuses and usurpations" which had induced them to throw off the government of King George. That section of the Declaration has passed into "ancient" history and is seldom read. It is the part laying down a new basis for government and giving a new dignity to the common man that has become a household phrase in the Old World as in the New. In the more enduring passages there are four fundamental ideas which, from the standpoint of the old system of government, were the essence of revolution: (1) all men are created equal and are endowed by their Creator with certain unalienable rights including life, liberty, and the pursuit of happiness; (2) the purpose of government is to secure these rights; (3) governments derive their just powers from the consent of the governed; (4) whenever any form of government becomes destructive of these ends it is the right of the people to alter or abolish it and institute new government, laying its foundations on such principles and organizing its powers in such form as to them shall seem most likely to effect their safety and happiness. Here was the prelude to the historic drama of democracy--a challenge to every form of government and every privilege not founded on popular assent. THE ESTABLISHMENT OF GOVERNMENT AND THE NEW ALLEGIANCE =The Committees of Correspondence.=--As soon as debate had passed into armed resistance, the patriots found it necessary to consolidate their forces by organizing civil government. This was readily effected, for the means were at hand in town meetings, provincial legislatures, and committees of correspondence. The working tools of the Revolution were in fact the committees of correspondence--small, local, unofficial groups of patriots formed to exchange views and create public sentiment. As early as November, 1772, such a committee had been created in Boston under the leadership of Samuel Adams. It held regular meetings, sent emissaries to neighboring towns, and carried on a campaign of education in the doctrines of liberty. [Illustration: THE COLONIES OF NORTH AMERICA AT THE TIME OF THE DECLARATION OF INDEPENDENCE] Upon local organizations similar in character to the Boston committee were built county committees and then the larger colonial committees, congresses, and conventions, all unofficial and representing the revolutionary elements. Ordinarily the provincial convention was merely the old legislative assembly freed from all royalist sympathizers and controlled by patriots. Finally, upon these colonial assemblies was built the Continental Congress, the precursor of union under the Articles of Confederation and ultimately under the Constitution of the United States. This was the revolutionary government set up within the British empire in America. =State Constitutions Framed.=--With the rise of these new assemblies of the people, the old colonial governments broke down. From the royal provinces the governor, the judges, and the high officers fled in haste, and it became necessary to substitute patriot authorities. The appeal to the colonies advising them to adopt a new form of government for themselves, issued by the Congress in May, 1776, was quickly acted upon. Before the expiration of a year, Virginia, New Jersey, Pennsylvania, Delaware, Maryland, Georgia, and New York had drafted new constitutions as states, not as colonies uncertain of their destinies. Connecticut and Rhode Island, holding that their ancient charters were equal to their needs, merely renounced their allegiance to the king and went on as before so far as the form of government was concerned. South Carolina, which had drafted a temporary plan early in 1776, drew up a new and more complete constitution in 1778. Two years later Massachusetts with much deliberation put into force its fundamental law, which in most of its essential features remains unchanged to-day. The new state constitutions in their broad outlines followed colonial models. For the royal governor was substituted a governor or president chosen usually by the legislature; but in two instances, New York and Massachusetts, by popular vote. For the provincial council there was substituted, except in Georgia, a senate; while the lower house, or assembly, was continued virtually without change. The old property restriction on the suffrage, though lowered slightly in some states, was continued in full force to the great discontent of the mechanics thus deprived of the ballot. The special qualifications, laid down in several constitutions, for governors, senators, and representatives, indicated that the revolutionary leaders were not prepared for any radical experiments in democracy. The protests of a few women, like Mrs. John Adams of Massachusetts and Mrs. Henry Corbin of Virginia, against a government which excluded them from political rights were treated as mild curiosities of no significance, although in New Jersey women were allowed to vote for many years on the same terms as men. By the new state constitutions the signs and symbols of royal power, of authority derived from any source save "the people," were swept aside and republican governments on an imposing scale presented for the first time to the modern world. Copies of these remarkable documents prepared by plain citizens were translated into French and widely circulated in Europe. There they were destined to serve as a guide and inspiration to a generation of constitution-makers whose mission it was to begin the democratic revolution in the Old World. =The Articles of Confederation.=--The formation of state constitutions was an easy task for the revolutionary leaders. They had only to build on foundations already laid. The establishment of a national system of government was another matter. There had always been, it must be remembered, a system of central control over the colonies, but Americans had had little experience in its operation. When the supervision of the crown of Great Britain was suddenly broken, the patriot leaders, accustomed merely to provincial statesmanship, were poorly trained for action on a national stage. Many forces worked against those who, like Franklin, had a vision of national destiny. There were differences in economic interest--commerce and industry in the North and the planting system of the South. There were contests over the apportionment of taxes and the quotas of troops for common defense. To these practical difficulties were added local pride, the vested rights of state and village politicians in their provincial dignity, and the scarcity of men with a large outlook upon the common enterprise. Nevertheless, necessity compelled them to consider some sort of federation. The second Continental Congress had hardly opened its work before the most sagacious leaders began to urge the desirability of a permanent connection. As early as July, 1775, Congress resolved to go into a committee of the whole on the state of the union, and Franklin, undaunted by the fate of his Albany plan of twenty years before, again presented a draft of a constitution. Long and desultory debates followed and it was not until late in 1777 that Congress presented to the states the Articles of Confederation. Provincial jealousies delayed ratification, and it was the spring of 1781, a few months before the surrender of Cornwallis at Yorktown, when Maryland, the last of the states, approved the Articles. This plan of union, though it was all that could be wrung from the reluctant states, provided for neither a chief executive nor a system of federal courts. It created simply a Congress of delegates in which each state had an equal voice and gave it the right to call upon the state legislatures for the sinews of government--money and soldiers. =The Application of Tests of Allegiance.=--As the successive steps were taken in the direction of independent government, the patriots devised and applied tests designed to discover who were for and who were against the new nation in the process of making. When the first Continental Congress agreed not to allow the importation of British goods, it provided for the creation of local committees to enforce the rules. Such agencies were duly formed by the choice of men favoring the scheme, all opponents being excluded from the elections. Before these bodies those who persisted in buying British goods were summoned and warned or punished according to circumstances. As soon as the new state constitutions were put into effect, local committees set to work in the same way to ferret out all who were not outspoken in their support of the new order of things. [Illustration: MOBBING THE TORIES] These patriot agencies, bearing different names in different sections, were sometimes ruthless in their methods. They called upon all men to sign the test of loyalty, frequently known as the "association test." Those who refused were promptly branded as outlaws, while some of the more dangerous were thrown into jail. The prison camp in Connecticut at one time held the former governor of New Jersey and the mayor of New York. Thousands were black-listed and subjected to espionage. The black-list of Pennsylvania contained the names of nearly five hundred persons of prominence who were under suspicion. Loyalists or Tories who were bold enough to speak and write against the Revolution were suppressed and their pamphlets burned. In many places, particularly in the North, the property of the loyalists was confiscated and the proceeds applied to the cause of the Revolution. The work of the official agencies for suppression of opposition was sometimes supplemented by mob violence. A few Tories were hanged without trial, and others were tarred and feathered. One was placed upon a cake of ice and held there "until his loyalty to King George might cool." Whole families were driven out of their homes to find their way as best they could within the British lines or into Canada, where the British government gave them lands. Such excesses were deplored by Washington, but they were defended on the ground that in effect a civil war, as well as a war for independence, was being waged. =The Patriots and Tories.=--Thus, by one process or another, those who were to be citizens of the new republic were separated from those who preferred to be subjects of King George. Just what proportion of the Americans favored independence and what share remained loyal to the British monarchy there is no way of knowing. The question of revolution was not submitted to popular vote, and on the point of numbers we have conflicting evidence. On the patriot side, there is the testimony of a careful and informed observer, John Adams, who asserted that two-thirds of the people were for the American cause and not more than one-third opposed the Revolution at all stages. On behalf of the loyalists, or Tories as they were popularly known, extravagant claims were made. Joseph Galloway, who had been a member of the first Continental Congress and had fled to England when he saw its temper, testified before a committee of Parliament in 1779 that not one-fifth of the American people supported the insurrection and that "many more than four-fifths of the people prefer a union with Great Britain upon constitutional principles to independence." At the same time General Robertson, who had lived in America twenty-four years, declared that "more than two-thirds of the people would prefer the king's government to the Congress' tyranny." In an address to the king in that year a committee of American loyalists asserted that "the number of Americans in his Majesty's army exceeded the number of troops enlisted by Congress to oppose them." =The Character of the Loyalists.=--When General Howe evacuated Boston, more than a thousand people fled with him. This great company, according to a careful historian, "formed the aristocracy of the province by virtue of their official rank; of their dignified callings and professions; of their hereditary wealth and of their culture." The act of banishment passed by Massachusetts in 1778, listing over 300 Tories, "reads like the social register of the oldest and noblest families of New England," more than one out of five being graduates of Harvard College. The same was true of New York and Philadelphia; namely, that the leading loyalists were prominent officials of the old order, clergymen and wealthy merchants. With passion the loyalists fought against the inevitable or with anguish of heart they left as refugees for a life of uncertainty in Canada or the mother country. =Tories Assail the Patriots.=--The Tories who remained in America joined the British army by the thousands or in other ways aided the royal cause. Those who were skillful with the pen assailed the patriots in editorials, rhymes, satires, and political catechisms. They declared that the members of Congress were "obscure, pettifogging attorneys, bankrupt shopkeepers, outlawed smugglers, etc." The people and their leaders they characterized as "wretched banditti ... the refuse and dregs of mankind." The generals in the army they sneered at as "men of rank and honor nearly on a par with those of the Congress." =Patriot Writers Arouse the National Spirit.=--Stung by Tory taunts, patriot writers devoted themselves to creating and sustaining a public opinion favorable to the American cause. Moreover, they had to combat the depression that grew out of the misfortunes in the early days of the war. A terrible disaster befell Generals Arnold and Montgomery in the winter of 1775 as they attempted to bring Canada into the revolution--a disaster that cost 5000 men; repeated calamities harassed Washington in 1776 as he was defeated on Long Island, driven out of New York City, and beaten at Harlem Heights and White Plains. These reverses were almost too great for the stoutest patriots. Pamphleteers, preachers, and publicists rose, however, to meet the needs of the hour. John Witherspoon, provost of the College of New Jersey, forsook the classroom for the field of political controversy. The poet, Philip Freneau, flung taunts of cowardice at the Tories and celebrated the spirit of liberty in many a stirring poem. Songs, ballads, plays, and satires flowed from the press in an unending stream. Fast days, battle anniversaries, celebrations of important steps taken by Congress afforded to patriotic clergymen abundant opportunities for sermons. "Does Mr. Wiberd preach against oppression?" anxiously inquired John Adams in a letter to his wife. The answer was decisive. "The clergy of every denomination, not excepting the Episcopalian, thunder and lighten every Sabbath. They pray for Boston and Massachusetts. They thank God most explicitly and fervently for our remarkable successes. They pray for the American army." Thomas Paine never let his pen rest. He had been with the forces of Washington when they retreated from Fort Lee and were harried from New Jersey into Pennsylvania. He knew the effect of such reverses on the army as well as on the public. In December, 1776, he made a second great appeal to his countrymen in his pamphlet, "The Crisis," the first part of which he had written while defeat and gloom were all about him. This tract was a cry for continued support of the Revolution. "These are the times that try men's souls," he opened. "The summer soldier and the sunshine patriot will, in this crisis, shrink from the service of his country; but he that stands it now deserves the love and thanks of men and women." Paine laid his lash fiercely on the Tories, branding every one as a coward grounded in "servile, slavish, self-interested fear." He deplored the inadequacy of the militia and called for a real army. He refuted the charge that the retreat through New Jersey was a disaster and he promised victory soon. "By perseverance and fortitude," he concluded, "we have the prospect of a glorious issue; by cowardice and submission the sad choice of a variety of evils--a ravaged country, a depopulated city, habitations without safety and slavery without hope.... Look on this picture and weep over it." His ringing call to arms was followed by another and another until the long contest was over. MILITARY AFFAIRS =The Two Phases of the War.=--The war which opened with the battle of Lexington, on April 19, 1775, and closed with the surrender of Cornwallis at Yorktown on October 19, 1781, passed through two distinct phases--the first lasting until the treaty of alliance with France, in 1778, and the second until the end of the struggle. During the first phase, the war was confined mainly to the North. The outstanding features of the contest were the evacuation of Boston by the British, the expulsion of American forces from New York and their retreat through New Jersey, the battle of Trenton, the seizure of Philadelphia by the British (September, 1777), the invasion of New York by Burgoyne and his capture at Saratoga in October, 1777, and the encampment of American forces at Valley Forge for the terrible winter of 1777-78. The final phase of the war, opening with the treaty of alliance with France on February 6, 1778, was confined mainly to the Middle states, the West, and the South. In the first sphere of action the chief events were the withdrawal of the British from Philadelphia, the battle of Monmouth, and the inclosure of the British in New York by deploying American forces from Morristown, New Jersey, up to West Point. In the West, George Rogers Clark, by his famous march into the Illinois country, secured Kaskaskia and Vincennes and laid a firm grip on the country between the Ohio and the Great Lakes. In the South, the second period opened with successes for the British. They captured Savannah, conquered Georgia, and restored the royal governor. In 1780 they seized Charleston, administered a crushing defeat to the American forces under Gates at Camden, and overran South Carolina, though meeting reverses at Cowpens and King's Mountain. Then came the closing scenes. Cornwallis began the last of his operations. He pursued General Greene far into North Carolina, clashed with him at Guilford Court House, retired to the coast, took charge of British forces engaged in plundering Virginia, and fortified Yorktown, where he was penned up by the French fleet from the sea and the combined French and American forces on land. =The Geographical Aspects of the War.=--For the British the theater of the war offered many problems. From first to last it extended from Massachusetts to Georgia, a distance of almost a thousand miles. It was nearly three thousand miles from the main base of supplies and, though the British navy kept the channel open, transports were constantly falling prey to daring privateers and fleet American war vessels. The sea, on the other hand, offered an easy means of transportation between points along the coast and gave ready access to the American centers of wealth and population. Of this the British made good use. Though early forced to give up Boston, they seized New York and kept it until the end of the war; they took Philadelphia and retained it until threatened by the approach of the French fleet; and they captured and held both Savannah and Charleston. Wars, however, are seldom won by the conquest of cities. Particularly was this true in the case of the Revolution. Only a small portion of the American people lived in towns. Countrymen back from the coast were in no way dependent upon them for a livelihood. They lived on the produce of the soil, not upon the profits of trade. This very fact gave strength to them in the contest. Whenever the British ventured far from the ports of entry, they encountered reverses. Burgoyne was forced to surrender at Saratoga because he was surrounded and cut off from his base of supplies. As soon as the British got away from Charleston, they were harassed and worried by the guerrilla warriors of Marion, Sumter, and Pickens. Cornwallis could technically defeat Greene at Guilford far in the interior; but he could not hold the inland region he had invaded. Sustained by their own labor, possessing the interior to which their armies could readily retreat, supplied mainly from native resources, the Americans could not be hemmed in, penned up, and destroyed at one fell blow. =The Sea Power.=--The British made good use of their fleet in cutting off American trade, but control of the sea did not seriously affect the United States. As an agricultural country, the ruin of its commerce was not such a vital matter. All the materials for a comfortable though somewhat rude life were right at hand. It made little difference to a nation fighting for existence, if silks, fine linens, and chinaware were cut off. This was an evil to which submission was necessary. Nor did the brilliant exploits of John Paul Jones and Captain John Barry materially change the situation. They demonstrated the skill of American seamen and their courage as fighting men. They raised the rates of British marine insurance, but they did not dethrone the mistress of the seas. Less spectacular, and more distinctive, were the deeds of the hundreds of privateers and minor captains who overhauled British supply ships and kept British merchantmen in constant anxiety. Not until the French fleet was thrown into the scale, were the British compelled to reckon seriously with the enemy on the sea and make plans based upon the possibilities of a maritime disaster. =Commanding Officers.=--On the score of military leadership it is difficult to compare the contending forces in the revolutionary contest. There is no doubt that all the British commanders were men of experience in the art of warfare. Sir William Howe had served in America during the French War and was accounted an excellent officer, a strict disciplinarian, and a gallant gentleman. Nevertheless he loved ease, society, and good living, and his expulsion from Boston, his failure to overwhelm Washington by sallies from his comfortable bases at New York and Philadelphia, destroyed every shred of his military reputation. John Burgoyne, to whom was given the task of penetrating New York from Canada, had likewise seen service in the French War both in America and Europe. He had, however, a touch of the theatrical in his nature and after the collapse of his plans and the surrender of his army in 1777, he devoted his time mainly to light literature. Sir Henry Clinton, who directed the movement which ended in the capture of Charleston in 1780, had "learned his trade on the continent," and was regarded as a man of discretion and understanding in military matters. Lord Cornwallis, whose achievements at Camden and Guilford were blotted out by his surrender at Yorktown, had seen service in the Seven Years' War and had undoubted talents which he afterward displayed with great credit to himself in India. Though none of them, perhaps, were men of first-rate ability, they all had training and experience to guide them. [Illustration: GEORGE WASHINGTON] The Americans had a host in Washington himself. He had long been interested in military strategy and had tested his coolness under fire during the first clashes with the French nearly twenty years before. He had no doubts about the justice of his cause, such as plagued some of the British generals. He was a stern but reasonable disciplinarian. He was reserved and patient, little given to exaltation at success or depression at reverses. In the dark hour of the Revolution, "what held the patriot forces together?" asks Beveridge in his _Life of John Marshall_. Then he answers: "George Washington and he alone. Had he died or been seriously disabled, the Revolution would have ended.... Washington was the soul of the American cause. Washington was the government. Washington was the Revolution." The weakness of Congress in furnishing men and supplies, the indolence of civilians, who lived at ease while the army starved, the intrigues of army officers against him such as the "Conway cabal," the cowardice of Lee at Monmouth, even the treason of Benedict Arnold, while they stirred deep emotions in his breast and aroused him to make passionate pleas to his countrymen, did not shake his iron will or his firm determination to see the war through to the bitter end. The weight of Washington's moral force was immeasurable. Of the generals who served under him, none can really be said to have been experienced military men when the war opened. Benedict Arnold, the unhappy traitor but brave and daring soldier, was a druggist, book seller, and ship owner at New Haven when the news of Lexington called him to battle. Horatio Gates was looked upon as a "seasoned soldier" because he had entered the British army as a youth, had been wounded at Braddock's memorable defeat, and had served with credit during the Seven Years' War; but he was the most conspicuous failure of the Revolution. The triumph over Burgoyne was the work of other men; and his crushing defeat at Camden put an end to his military pretensions. Nathanael Greene was a Rhode Island farmer and smith without military experience who, when convinced that war was coming, read Caesar's _Commentaries_ and took up the sword. Francis Marion was a shy and modest planter of South Carolina whose sole passage at arms had been a brief but desperate brush with the Indians ten or twelve years earlier. Daniel Morgan, one of the heroes of Cowpens, had been a teamster with Braddock's army and had seen some fighting during the French and Indian War, but his military knowledge, from the point of view of a trained British officer, was negligible. John Sullivan was a successful lawyer at Durham, New Hampshire, and a major in the local militia when duty summoned him to lay down his briefs and take up the sword. Anthony Wayne was a Pennsylvania farmer and land surveyor who, on hearing the clash of arms, read a few books on war, raised a regiment, and offered himself for service. Such is the story of the chief American military leaders, and it is typical of them all. Some had seen fighting with the French and Indians, but none of them had seen warfare on a large scale with regular troops commanded according to the strategy evolved in European experience. Courage, native ability, quickness of mind, and knowledge of the country they had in abundance, and in battles such as were fought during the Revolution all those qualities counted heavily in the balance. =Foreign Officers in American Service.=--To native genius was added military talent from beyond the seas. Baron Steuben, well schooled in the iron regime of Frederick the Great, came over from Prussia, joined Washington at Valley Forge, and day after day drilled and manoeuvered the men, laughing and cursing as he turned raw countrymen into regular soldiers. From France came young Lafayette and the stern De Kalb, from Poland came Pulaski and Kosciusko;--all acquainted with the arts of war as waged in Europe and fitted for leadership as well as teaching. Lafayette came early, in 1776, in a ship of his own, accompanied by several officers of wide experience, and remained loyally throughout the war sharing the hardships of American army life. Pulaski fell at the siege of Savannah and De Kalb at Camden. Kosciusko survived the American war to defend in vain the independence of his native land. To these distinguished foreigners, who freely threw in their lot with American revolutionary fortunes, was due much of that spirit and discipline which fitted raw recruits and temperamental militiamen to cope with a military power of the first rank. =The Soldiers.=--As far as the British soldiers were concerned their annals are short and simple. The regulars from the standing army who were sent over at the opening of the contest, the recruits drummed up by special efforts at home, and the thousands of Hessians bought outright by King George presented few problems of management to the British officers. These common soldiers were far away from home and enlisted for the war. Nearly all of them were well disciplined and many of them experienced in actual campaigns. The armies of King George fought bravely, as the records of Bunker Hill, Brandywine, and Monmouth demonstrate. Many a man and subordinate officer and, for that matter, some of the high officers expressed a reluctance at fighting against their own kin; but they obeyed orders. The Americans, on the other hand, while they fought with grim determination, as men fighting for their homes, were lacking in discipline and in the experience of regular troops. When the war broke in upon them, there were no common preparations for it. There was no continental army; there were only local bands of militiamen, many of them experienced in fighting but few of them "regulars" in the military sense. Moreover they were volunteers serving for a short time, unaccustomed to severe discipline, and impatient at the restraints imposed on them by long and arduous campaigns. They were continually leaving the service just at the most critical moments. "The militia," lamented Washington, "come in, you cannot tell how; go, you cannot tell where; consume your provisions; exhaust your stores; and leave you at last at a critical moment." Again and again Washington begged Congress to provide for an army of regulars enlisted for the war, thoroughly trained and paid according to some definite plan. At last he was able to overcome, in part at least, the chronic fear of civilians in Congress and to wring from that reluctant body an agreement to grant half pay to all officers and a bonus to all privates who served until the end of the war. Even this scheme, which Washington regarded as far short of justice to the soldiers, did not produce quick results. It was near the close of the conflict before he had an army of well-disciplined veterans capable of meeting British regulars on equal terms. Though there were times when militiamen and frontiersmen did valiant and effective work, it is due to historical accuracy to deny the time-honored tradition that a few minutemen overwhelmed more numerous forces of regulars in a seven years' war for independence. They did nothing of the sort. For the victories of Bennington, Trenton, Saratoga, and Yorktown there were the defeats of Bunker Hill, Long Island, White Plains, Germantown, and Camden. Not once did an army of militiamen overcome an equal number of British regulars in an open trial by battle. "To bring men to be well acquainted with the duties of a soldier," wrote Washington, "requires time.... To expect the same service from raw and undisciplined recruits as from veteran soldiers is to expect what never did and perhaps never will happen." =How the War Was Won.=--Then how did the American army win the war? For one thing there were delays and blunders on the part of the British generals who, in 1775 and 1776, dallied in Boston and New York with large bodies of regular troops when they might have been dealing paralyzing blows at the scattered bands that constituted the American army. "Nothing but the supineness or folly of the enemy could have saved us," solemnly averred Washington in 1780. Still it is fair to say that this apparent supineness was not all due to the British generals. The ministers behind them believed that a large part of the colonists were loyal and that compromise would be promoted by inaction rather than by a war vigorously prosecuted. Victory by masterly inactivity was obviously better than conquest, and the slighter the wounds the quicker the healing. Later in the conflict when the seasoned forces of France were thrown into the scale, the Americans themselves had learned many things about the practical conduct of campaigns. All along, the British were embarrassed by the problem of supplies. Their troops could not forage with the skill of militiamen, as they were in unfamiliar territory. The long oversea voyages were uncertain at best and doubly so when the warships of France joined the American privateers in preying on supply boats. The British were in fact battered and worn down by a guerrilla war and outdone on two important occasions by superior forces--at Saratoga and Yorktown. Stern facts convinced them finally that an immense army, which could be raised only by a supreme effort, would be necessary to subdue the colonies if that hazardous enterprise could be accomplished at all. They learned also that America would then be alienated, fretful, and the scene of endless uprisings calling for an army of occupation. That was a price which staggered even Lord North and George III. Moreover, there were forces of opposition at home with which they had to reckon. =Women and the War.=--At no time were the women of America indifferent to the struggle for independence. When it was confined to the realm of opinion they did their part in creating public sentiment. Mrs. Elizabeth Timothee, for example, founded in Charleston, in 1773, a newspaper to espouse the cause of the province. Far to the north the sister of James Otis, Mrs. Mercy Warren, early begged her countrymen to rest their case upon their natural rights, and in influential circles she urged the leaders to stand fast by their principles. While John Adams was tossing about with uncertainty at the Continental Congress, his wife was writing letters to him declaring her faith in "independency." When the war came down upon the country, women helped in every field. In sustaining public sentiment they were active. Mrs. Warren with a tireless pen combatted loyalist propaganda in many a drama and satire. Almost every revolutionary leader had a wife or daughter who rendered service in the "second line of defense." Mrs. Washington managed the plantation while the General was at the front and went north to face the rigors of the awful winter at Valley Forge--an inspiration to her husband and his men. The daughter of Benjamin Franklin, Mrs. Sarah Bache, while her father was pleading the American cause in France, set the women of Pennsylvania to work sewing and collecting supplies. Even near the firing line women were to be found, aiding the wounded, hauling powder to the front, and carrying dispatches at the peril of their lives. In the economic sphere, the work of women was invaluable. They harvested crops without enjoying the picturesque title of "farmerettes" and they canned and preserved for the wounded and the prisoners of war. Of their labor in spinning and weaving it is recorded: "Immediately on being cut off from the use of English manufactures, the women engaged within their own families in manufacturing various kinds of cloth for domestic use. They thus kept their households decently clad and the surplus of their labors they sold to such as chose to buy rather than make for themselves. In this way the female part of families by their industry and strict economy frequently supported the whole domestic circle, evincing the strength of their attachment and the value of their service." For their war work, women were commended by high authorities on more than one occasion. They were given medals and public testimonials even as in our own day. Washington thanked them for their labors and paid tribute to them for the inspiration and material aid which they had given to the cause of independence. THE FINANCES OF THE REVOLUTION When the Revolution opened, there were thirteen little treasuries in America but no common treasury, and from first to last the Congress was in the position of a beggar rather than a sovereign. Having no authority to lay and collect taxes directly and knowing the hatred of the provincials for taxation, it resorted mainly to loans and paper money to finance the war. "Do you think," boldly inquired one of the delegates, "that I will consent to load my constituents with taxes when we can send to the printer and get a wagon load of money, one quire of which will pay for the whole?" =Paper Money and Loans.=--Acting on this curious but appealing political economy, Congress issued in June, 1776, two million dollars in bills of credit to be redeemed by the states on the basis of their respective populations. Other issues followed in quick succession. In all about $241,000,000 of continental paper was printed, to which the several states added nearly $210,000,000 of their own notes. Then came interest-bearing bonds in ever increasing quantities. Several millions were also borrowed from France and small sums from Holland and Spain. In desperation a national lottery was held, producing meager results. The property of Tories was confiscated and sold, bringing in about $16,000,000. Begging letters were sent to the states asking them to raise revenues for the continental treasury, but the states, burdened with their own affairs, gave little heed. =Inflation and Depreciation.=--As paper money flowed from the press, it rapidly declined in purchasing power until in 1779 a dollar was worth only two or three cents in gold or silver. Attempts were made by Congress and the states to compel people to accept the notes at face value; but these were like attempts to make water flow uphill. Speculators collected at once to fatten on the calamities of the republic. Fortunes were made and lost gambling on the prices of public securities while the patriot army, half clothed, was freezing at Valley Forge. "Speculation, peculation, engrossing, forestalling," exclaimed Washington, "afford too many melancholy proofs of the decay of public virtue. Nothing, I am convinced, but the depreciation of our currency ... aided by stock jobbing and party dissensions has fed the hopes of the enemy." =The Patriot Financiers.=--To the efforts of Congress in financing the war were added the labors of private citizens. Hayn Solomon, a merchant of Philadelphia, supplied members of Congress, including Madison, Jefferson, and Monroe, and army officers, like Lee and Steuben, with money for their daily needs. All together he contributed the huge sum of half a million dollars to the American cause and died broken in purse, if not in spirit, a British prisoner of war. Another Philadelphia merchant, Robert Morris, won for himself the name of the "patriot financier" because he labored night and day to find the money to meet the bills which poured in upon the bankrupt government. When his own funds were exhausted, he borrowed from his friends. Experienced in the handling of merchandise, he created agencies at important points to distribute supplies to the troops, thus displaying administrative as well as financial talents. [Illustration: ROBERT MORRIS] Women organized "drives" for money, contributed their plate and their jewels, and collected from door to door. Farmers took worthless paper in return for their produce, and soldiers saw many a pay day pass without yielding them a penny. Thus by the labors and sacrifices of citizens, the issuance of paper money, lotteries, the floating of loans, borrowings in Europe, and the impressment of supplies, the Congress staggered through the Revolution like a pauper who knows not how his next meal is to be secured but is continuously relieved at a crisis by a kindly fate. THE DIPLOMACY OF THE REVOLUTION When the full measure of honor is given to the soldiers and sailors and their commanding officers, the civilians who managed finances and supplies, the writers who sustained the American spirit, and the women who did well their part, there yet remains the duty of recognizing the achievements of diplomacy. The importance of this field of activity was keenly appreciated by the leaders in the Continental Congress. They were fairly well versed in European history. They knew of the balance of power and the sympathies, interests, and prejudices of nations and their rulers. All this information they turned to good account, in opening relations with continental countries and seeking money, supplies, and even military assistance. For the transaction of this delicate business, they created a secret committee on foreign correspondence as early as 1775 and prepared to send agents abroad. =American Agents Sent Abroad.=--Having heard that France was inclining a friendly ear to the American cause, the Congress, in March, 1776, sent a commissioner to Paris, Silas Deane of Connecticut, often styled the "first American diplomat." Later in the year a form of treaty to be presented to foreign powers was drawn up, and Franklin, Arthur Lee, and Deane were selected as American representatives at the court of "His Most Christian Majesty the King of France." John Jay of New York was chosen minister to Spain in 1779; John Adams was sent to Holland the same year; and other agents were dispatched to Florence, Vienna, and Berlin. The representative selected for St. Petersburg spent two fruitless years there, "ignored by the court, living in obscurity and experiencing nothing but humiliation and failure." Frederick the Great, king of Prussia, expressed a desire to find in America a market for Silesian linens and woolens, but, fearing England's command of the sea, he refused to give direct aid to the Revolutionary cause. =Early French Interest.=--The great diplomatic triumph of the Revolution was won at Paris, and Benjamin Franklin was the hero of the occasion, although many circumstances prepared the way for his success. Louis XVI's foreign minister, Count de Vergennes, before the arrival of any American representative, had brought to the attention of the king the opportunity offered by the outbreak of the war between England and her colonies. He showed him how France could redress her grievances and "reduce the power and greatness of England"--the empire that in 1763 had forced upon her a humiliating peace "at the price of our possessions, of our commerce, and our credit in the Indies, at the price of Canada, Louisiana, Isle Royale, Acadia, and Senegal." Equally successful in gaining the king's interest was a curious French adventurer, Beaumarchais, a man of wealth, a lover of music, and the author of two popular plays, "Figaro" and "The Barber of Seville." These two men had already urged upon the king secret aid for America before Deane appeared on the scene. Shortly after his arrival they made confidential arrangements to furnish money, clothing, powder, and other supplies to the struggling colonies, although official requests for them were officially refused by the French government. =Franklin at Paris.=--When Franklin reached Paris, he was received only in private by the king's minister, Vergennes. The French people, however, made manifest their affection for the "plain republican" in "his full dress suit of spotted Manchester velvet." He was known among men of letters as an author, a scientist, and a philosopher of extraordinary ability. His "Poor Richard" had thrice been translated into French and was scattered in numerous editions throughout the kingdom. People of all ranks--ministers, ladies at court, philosophers, peasants, and stable boys--knew of Franklin and wished him success in his mission. The queen, Marie Antoinette, fated to lose her head in a revolution soon to follow, played with fire by encouraging "our dear republican." For the king of France, however, this was more serious business. England resented the presence of this "traitor" in Paris, and Louis had to be cautious about plunging into another war that might also end disastrously. Moreover, the early period of Franklin's sojourn in Paris was a dark hour for the American Revolution. Washington's brilliant exploit at Trenton on Christmas night, 1776, and the battle with Cornwallis at Princeton had been followed by the disaster at Brandywine, the loss of Philadelphia, the defeat at Germantown, and the retirement to Valley Forge for the winter of 1777-78. New York City and Philadelphia--two strategic ports--were in British hands; the Hudson and Delaware rivers were blocked; and General Burgoyne with his British troops was on his way down through the heart of northern New York, cutting New England off from the rest of the colonies. No wonder the king was cautious. Then the unexpected happened. Burgoyne, hemmed in from all sides by the American forces, his flanks harried, his foraging parties beaten back, his supplies cut off, surrendered on October 17, 1777, to General Gates, who had superseded General Schuyler in time to receive the honor. =Treaties of Alliance and Commerce (1778).=--News of this victory, placed by historians among the fifteen decisive battles of the world, reached Franklin one night early in December while he and some friends sat gloomily at dinner. Beaumarchais, who was with him, grasped at once the meaning of the situation and set off to the court at Versailles with such haste that he upset his coach and dislocated his arm. The king and his ministers were at last convinced that the hour had come to aid the Revolution. Treaties of commerce and alliance were drawn up and signed in February, 1778. The independence of the United States was recognized by France and an alliance was formed to guarantee that independence. Combined military action was agreed upon and Louis then formally declared war on England. Men who had, a few short years before, fought one another in the wilderness of Pennsylvania or on the Plains of Abraham, were now ranged side by side in a war on the Empire that Pitt had erected and that George III was pulling down. =Spain and Holland Involved.=--Within a few months, Spain, remembering the steady decline of her sea power since the days of the Armada and hoping to drive the British out of Gibraltar, once more joined the concert of nations against England. Holland, a member of a league of armed neutrals formed in protest against British searches on the high seas, sent her fleet to unite with the forces of Spain, France, and America to prey upon British commerce. To all this trouble for England was added the danger of a possible revolt in Ireland, where the spirit of independence was flaming up. =The British Offer Terms to America.=--Seeing the colonists about to be joined by France in a common war on the English empire, Lord North proposed, in February, 1778, a renewal of negotiations. By solemn enactment, Parliament declared its intention not to exercise the right of imposing taxes within the colonies; at the same time it authorized the opening of negotiations through commissioners to be sent to America. A truce was to be established, pardons granted, objectionable laws suspended, and the old imperial constitution, as it stood before the opening of hostilities, restored to full vigor. It was too late. Events had taken the affairs of America out of the hands of British commissioners and diplomats. =Effects of French Aid.=--The French alliance brought ships of war, large sums of gold and silver, loads of supplies, and a considerable body of trained soldiers to the aid of the Americans. Timely as was this help, it meant no sudden change in the fortunes of war. The British evacuated Philadelphia in the summer following the alliance, and Washington's troops were encouraged to come out of Valley Forge. They inflicted a heavy blow on the British at Monmouth, but the treasonable conduct of General Charles Lee prevented a triumph. The recovery of Philadelphia was offset by the treason of Benedict Arnold, the loss of Savannah and Charleston (1780), and the defeat of Gates at Camden. The full effect of the French alliance was not felt until 1781, when Cornwallis went into Virginia and settled at Yorktown. Accompanied by French troops Washington swept rapidly southward and penned the British to the shore while a powerful French fleet shut off their escape by sea. It was this movement, which certainly could not have been executed without French aid, that put an end to all chance of restoring British dominion in America. It was the surrender of Cornwallis at Yorktown that caused Lord North to pace the floor and cry out: "It is all over! It is all over!" What might have been done without the French alliance lies hidden from mankind. What was accomplished with the help of French soldiers, sailors, officers, money, and supplies, is known to all the earth. "All the world agree," exultantly wrote Franklin from Paris to General Washington, "that no expedition was ever better planned or better executed. It brightens the glory that must accompany your name to the latest posterity." Diplomacy as well as martial valor had its reward. PEACE AT LAST =British Opposition to the War.=--In measuring the forces that led to the final discomfiture of King George and Lord North, it is necessary to remember that from the beginning to the end the British ministry at home faced a powerful, informed, and relentless opposition. There were vigorous protests, first against the obnoxious acts which precipitated the unhappy quarrel, then against the way in which the war was waged, and finally against the futile struggle to retain a hold upon the American dominions. Among the members of Parliament who thundered against the government were the first statesmen and orators of the land. William Pitt, Earl of Chatham, though he deplored the idea of American independence, denounced the government as the aggressor and rejoiced in American resistance. Edmund Burke leveled his heavy batteries against every measure of coercion and at last strove for a peace which, while giving independence to America, would work for reconciliation rather than estrangement. Charles James Fox gave the colonies his generous sympathy and warmly championed their rights. Outside of the circle of statesmen there were stout friends of the American cause like David Hume, the philosopher and historian, and Catherine Macaulay, an author of wide fame and a republican bold enough to encourage Washington in seeing it through. Against this powerful opposition, the government enlisted a whole army of scribes and journalists to pour out criticism on the Americans and their friends. Dr. Samuel Johnson, whom it employed in this business, was so savage that even the ministers had to tone down his pamphlets before printing them. Far more weighty was Edward Gibbon, who was in time to win fame as the historian of the _Decline and Fall of the Roman Empire_. He had at first opposed the government; but, on being given a lucrative post, he used his sharp pen in its support, causing his friends to ridicule him in these lines: "King George, in a fright Lest Gibbon should write The story of England's disgrace, Thought no way so sure His pen to secure As to give the historian a place." =Lord North Yields.=--As time wore on, events bore heavily on the side of the opponents of the government's measures. They had predicted that conquest was impossible, and they had urged the advantages of a peace which would in some measure restore the affections of the Americans. Every day's news confirmed their predictions and lent support to their arguments. Moreover, the war, which sprang out of an effort to relieve English burdens, made those burdens heavier than ever. Military expenses were daily increasing. Trade with the colonies, the greatest single outlet for British goods and capital, was paralyzed. The heavy debts due British merchants in America were not only unpaid but postponed into an indefinite future. Ireland was on the verge of revolution. The French had a dangerous fleet on the high seas. In vain did the king assert in December, 1781, that no difficulties would ever make him consent to a peace that meant American independence. Parliament knew better, and on February 27, 1782, in the House of Commons was carried an address to the throne against continuing the war. Burke, Fox, the younger Pitt, Barre, and other friends of the colonies voted in the affirmative. Lord North gave notice then that his ministry was at an end. The king moaned: "Necessity made me yield." In April, 1782, Franklin received word from the English government that it was prepared to enter into negotiations leading to a settlement. This was embarrassing. In the treaty of alliance with France, the United States had promised that peace should be a joint affair agreed to by both nations in open conference. Finding France, however, opposed to some of their claims respecting boundaries and fisheries, the American commissioners conferred with the British agents at Paris without consulting the French minister. They actually signed a preliminary peace draft before they informed him of their operations. When Vergennes reproached him, Franklin replied that they "had been guilty of neglecting _bienseance_ [good manners] but hoped that the great work would not be ruined by a single indiscretion." =The Terms of Peace (1783).=--The general settlement at Paris in 1783 was a triumph for America. England recognized the independence of the United States, naming each state specifically, and agreed to boundaries extending from the Atlantic to the Mississippi and from the Great Lakes to the Floridas. England held Canada, Newfoundland, and the West Indies intact, made gains in India, and maintained her supremacy on the seas. Spain won Florida and Minorca but not the coveted Gibraltar. France gained nothing important save the satisfaction of seeing England humbled and the colonies independent. The generous terms secured by the American commission at Paris called forth surprise and gratitude in the United States and smoothed the way for a renewal of commercial relations with the mother country. At the same time they gave genuine anxiety to European diplomats. "This federal republic is born a pigmy," wrote the Spanish ambassador to his royal master. "A day will come when it will be a giant; even a colossus formidable to these countries. Liberty of conscience and the facility for establishing a new population on immense lands, as well as the advantages of the new government, will draw thither farmers and artisans from all the nations. In a few years we shall watch with grief the tyrannical existence of the same colossus." [Illustration: NORTH AMERICA ACCORDING TO THE TREATY OF 1783] SUMMARY OF THE REVOLUTIONARY PERIOD The independence of the American colonies was foreseen by many European statesmen as they watched the growth of their population, wealth, and power; but no one could fix the hour of the great event. Until 1763 the American colonists lived fairly happily under British dominion. There were collisions from time to time, of course. Royal governors clashed with stiff-necked colonial legislatures. There were protests against the exercise of the king's veto power in specific cases. Nevertheless, on the whole, the relations between America and the mother country were more amicable in 1763 than at any period under the Stuart regime which closed in 1688. The crash, when it came, was not deliberately willed by any one. It was the product of a number of forces that happened to converge about 1763. Three years before, there had come to the throne George III, a young, proud, inexperienced, and stubborn king. For nearly fifty years his predecessors, Germans as they were in language and interest, had allowed things to drift in England and America. George III decided that he would be king in fact as well as in name. About the same time England brought to a close the long and costly French and Indian War and was staggering under a heavy burden of debt and taxes. The war had been fought partly in defense of the American colonies and nothing seemed more reasonable to English statesmen than the idea that the colonies should bear part of the cost of their own defense. At this juncture there came into prominence, in royal councils, two men bent on taxing America and controlling her trade, Grenville and Townshend. The king was willing, the English taxpayers were thankful for any promise of relief, and statesmen were found to undertake the experiment. England therefore set out upon a new course. She imposed taxes upon the colonists, regulated their trade and set royal officers upon them to enforce the law. This action evoked protests from the colonists. They held a Stamp Act Congress to declare their rights and petition for a redress of grievances. Some of the more restless spirits rioted in the streets, sacked the houses of the king's officers, and tore up the stamped paper. Frightened by uprising, the English government drew back and repealed the Stamp Act. Then it veered again and renewed its policy of interference. Interference again called forth American protests. Protests aroused sharper retaliation. More British regulars were sent over to keep order. More irritating laws were passed by Parliament. Rioting again appeared: tea was dumped in the harbor of Boston and seized in the harbor of Charleston. The British answer was more force. The response of the colonists was a Continental Congress for defense. An unexpected and unintended clash of arms at Lexington and Concord in the spring of 1775 brought forth from the king of England a proclamation: "The Americans are rebels!" The die was cast. The American Revolution had begun. Washington was made commander-in-chief. Armies were raised, money was borrowed, a huge volume of paper currency was issued, and foreign aid was summoned. Franklin plied his diplomatic arts at Paris until in 1778 he induced France to throw her sword into the balance. Three years later, Cornwallis surrendered at Yorktown. In 1783, by the formal treaty of peace, George III acknowledged the independence of the United States. The new nation, endowed with an imperial domain stretching from the Atlantic Ocean to the Mississippi River, began its career among the sovereign powers of the earth. In the sphere of civil government, the results of the Revolution were equally remarkable. Royal officers and royal authorities were driven from the former dominions. All power was declared to be in the people. All the colonies became states, each with its own constitution or plan of government. The thirteen states were united in common bonds under the Articles of Confederation. A republic on a large scale was instituted. Thus there was begun an adventure in popular government such as the world had never seen. Could it succeed or was it destined to break down and be supplanted by a monarchy? The fate of whole continents hung upon the answer. =References= J. Fiske, _The American Revolution_ (2 vols.). H. Lodge, _Life of Washington_ (2 vols.). W. Sumner, _The Financier and the Finances of the American Revolution_. O. Trevelyan, _The American Revolution_ (4 vols.). A sympathetic account by an English historian. M.C. Tyler, _Literary History of the American Revolution_ (2 vols.). C.H. Van Tyne, _The American Revolution_ (American Nation Series) and _The Loyalists in the American Revolution_. =Questions= 1. What was the non-importation agreement? By what body was it adopted? Why was it revolutionary in character? 2. Contrast the work of the first and second Continental Congresses. 3. Why did efforts at conciliation fail? 4. Trace the growth of American independence from opinion to the sphere of action. 5. Why is the Declaration of Independence an "immortal" document? 6. What was the effect of the Revolution on colonial governments? On national union? 7. Describe the contest between "Patriots" and "Tories." 8. What topics are considered under "military affairs"? Discuss each in detail. 9. Contrast the American forces with the British forces and show how the war was won. 10. Compare the work of women in the Revolutionary War with their labors in the World War (1917-18). 11. How was the Revolution financed? 12. Why is diplomacy important in war? Describe the diplomatic triumph of the Revolution. 13. What was the nature of the opposition in England to the war? 14. Give the events connected with the peace settlement; the terms of peace. =Research Topics= =The Spirit of America.=--Woodrow Wilson, _History of the American People_, Vol. II, pp. 98-126. =American Rights.=--Draw up a table showing all the principles laid down by American leaders in (1) the Resolves of the First Continental Congress, Macdonald, _Documentary Source Book_, pp. 162-166; (2) the Declaration of the Causes and the Necessity of Taking Up Arms, Macdonald, pp. 176-183; and (3) the Declaration of Independence. =The Declaration of Independence.=--Fiske, _The American Revolution_, Vol. I, pp. 147-197. Elson, _History of the United States_, pp. 250-254. =Diplomacy and the French Alliance.=--Hart, _American History Told by Contemporaries_, Vol. II, pp. 574-590. Fiske, Vol. II, pp. 1-24. Callender, _Economic History of the United States_, pp. 159-168; Elson, pp. 275-280. =Biographical Studies.=--Washington, Franklin, Samuel Adams, Patrick Henry, Thomas Jefferson--emphasizing the peculiar services of each. =The Tories.=--Hart, _Contemporaries_, Vol. II, pp. 470-480. =Valley Forge.=--Fiske, Vol. II, pp. 25-49. =The Battles of the Revolution.=--Elson, pp. 235-317. =An English View of the Revolution.=--Green, _Short History of England_, Chap. X, Sect. 2. =English Opinion and the Revolution.=--Trevelyan, _The American Revolution_, Vol. III (or Part 2, Vol. II), Chaps. XXIV-XXVII. PART III. THE UNION AND NATIONAL POLITICS CHAPTER VII THE FORMATION OF THE CONSTITUTION THE PROMISE AND THE DIFFICULTIES OF AMERICA The rise of a young republic composed of thirteen states, each governed by officials popularly elected under constitutions drafted by "the plain people," was the most significant feature of the eighteenth century. The majority of the patriots whose labors and sacrifices had made this possible naturally looked upon their work and pronounced it good. Those Americans, however, who peered beneath the surface of things, saw that the Declaration of Independence, even if splendidly phrased, and paper constitutions, drawn by finest enthusiasm "uninstructed by experience," could not alone make the republic great and prosperous or even free. All around them they saw chaos in finance and in industry and perils for the immediate future. =The Weakness of the Articles of Confederation.=--The government under the Articles of Confederation had neither the strength nor the resources necessary to cope with the problems of reconstruction left by the war. The sole organ of government was a Congress composed of from two to seven members from each state chosen as the legislature might direct and paid by the state. In determining all questions, each state had one vote--Delaware thus enjoying the same weight as Virginia. There was no president to enforce the laws. Congress was given power to select a committee of thirteen--one from each state--to act as an executive body when it was not in session; but this device, on being tried out, proved a failure. There was no system of national courts to which citizens and states could appeal for the protection of their rights or through which they could compel obedience to law. The two great powers of government, military and financial, were withheld. Congress, it is true, could authorize expenditures but had to rely upon the states for the payment of contributions to meet its bills. It could also order the establishment of an army, but it could only request the states to supply their respective quotas of soldiers. It could not lay taxes nor bring any pressure to bear upon a single citizen in the whole country. It could act only through the medium of the state governments. =Financial and Commercial Disorders.=--In the field of public finance, the disorders were pronounced. The huge debt incurred during the war was still outstanding. Congress was unable to pay either the interest or the principal. Public creditors were in despair, as the market value of their bonds sank to twenty-five or even ten cents on the dollar. The current bills of Congress were unpaid. As some one complained, there was not enough money in the treasury to buy pen and ink with which to record the transactions of the shadow legislature. The currency was in utter chaos. Millions of dollars in notes issued by Congress had become mere trash worth a cent or two on the dollar. There was no other expression of contempt so forceful as the popular saying: "not worth a Continental." To make matters worse, several of the states were pouring new streams of paper money from the press. Almost the only good money in circulation consisted of English, French, and Spanish coins, and the public was even defrauded by them because money changers were busy clipping and filing away the metal. Foreign commerce was unsettled. The entire British system of trade discrimination was turned against the Americans, and Congress, having no power to regulate foreign commerce, was unable to retaliate or to negotiate treaties which it could enforce. Domestic commerce was impeded by the jealousies of the states, which erected tariff barriers against their neighbors. The condition of the currency made the exchange of money and goods extremely difficult, and, as if to increase the confusion, backward states enacted laws hindering the prompt collection of debts within their borders--an evil which nothing but a national system of courts could cure. =Congress in Disrepute.=--With treaties set at naught by the states, the laws unenforced, the treasury empty, and the public credit gone, the Congress of the United States fell into utter disrepute. It called upon the states to pay their quotas of money into the treasury, only to be treated with contempt. Even its own members looked upon it as a solemn futility. Some of the ablest men refused to accept election to it, and many who did take the doubtful honor failed to attend the sessions. Again and again it was impossible to secure a quorum for the transaction of business. =Troubles of the State Governments.=--The state governments, free to pursue their own course with no interference from without, had almost as many difficulties as the Congress. They too were loaded with revolutionary debts calling for heavy taxes upon an already restive population. Oppressed by their financial burdens and discouraged by the fall in prices which followed the return of peace, the farmers of several states joined in a concerted effort and compelled their legislatures to issue large sums of paper money. The currency fell in value, but nevertheless it was forced on unwilling creditors to square old accounts. In every part of the country legislative action fluctuated violently. Laws were made one year only to be repealed the next and reenacted the third year. Lands were sold by one legislature and the sales were canceled by its successor. Uncertainty and distrust were the natural consequences. Men of substance longed for some power that would forbid states to issue bills of credit, to make paper money legal tender in payment of debts, or to impair the obligation of contracts. Men heavily in debt, on the other hand, urged even more drastic action against creditors. So great did the discontent of the farmers in New Hampshire become in 1786 that a mob surrounded the legislature, demanding a repeal of the taxes and the issuance of paper money. It was with difficulty that an armed rebellion was avoided. In Massachusetts the malcontents, under the leadership of Daniel Shays, a captain in the Revolutionary army, organized that same year open resistance to the government of the state. Shays and his followers protested against the conduct of creditors in foreclosing mortgages upon the debt-burdened farmers, against the lawyers for increasing the costs of legal proceedings, against the senate of the state the members of which were apportioned among the towns on the basis of the amount of taxes paid, against heavy taxes, and against the refusal of the legislature to issue paper money. They seized the towns of Worcester and Springfield and broke up the courts of justice. All through the western part of the state the revolt spread, sending a shock of alarm to every center and section of the young republic. Only by the most vigorous action was Governor Bowdoin able to quell the uprising; and when that task was accomplished, the state government did not dare to execute any of the prisoners because they had so many sympathizers. Moreover, Bowdoin and several members of the legislature who had been most zealous in their attacks on the insurgents were defeated at the ensuing election. The need of national assistance for state governments in times of domestic violence was everywhere emphasized by men who were opposed to revolutionary acts. =Alarm over Dangers to the Republic.=--Leading American citizens, watching the drift of affairs, were slowly driven to the conclusion that the new ship of state so proudly launched a few years before was careening into anarchy. "The facts of our peace and independence," wrote a friend of Washington, "do not at present wear so promising an appearance as I had fondly painted in my mind. The prejudices, jealousies, and turbulence of the people at times almost stagger my confidence in our political establishments; and almost occasion me to think that they will show themselves unworthy of the noble prize for which we have contended." Washington himself was profoundly discouraged. On hearing of Shays's rebellion, he exclaimed: "What, gracious God, is man that there should be such inconsistency and perfidiousness in his conduct! It is but the other day that we were shedding our blood to obtain the constitutions under which we now live--constitutions of our own choice and making--and now we are unsheathing our sword to overturn them." The same year he burst out in a lament over rumors of restoring royal government. "I am told that even respectable characters speak of a monarchical government without horror. From thinking proceeds speaking. Hence to acting is often but a single step. But how irresistible and tremendous! What a triumph for our enemies to verify their predictions! What a triumph for the advocates of despotism to find that we are incapable of governing ourselves!" =Congress Attempts Some Reforms.=--The Congress was not indifferent to the events that disturbed Washington. On the contrary it put forth many efforts to check tendencies so dangerous to finance, commerce, industries, and the Confederation itself. In 1781, even before the treaty of peace was signed, the Congress, having found out how futile were its taxing powers, carried a resolution of amendment to the Articles of Confederation, authorizing the levy of a moderate duty on imports. Yet this mild measure was rejected by the states. Two years later the Congress prepared another amendment sanctioning the levy of duties on imports, to be collected this time by state officers and applied to the payment of the public debt. This more limited proposal, designed to save public credit, likewise failed. In 1786, the Congress made a third appeal to the states for help, declaring that they had been so irregular and so negligent in paying their quotas that further reliance upon that mode of raising revenues was dishonorable and dangerous. THE CALLING OF A CONSTITUTIONAL CONVENTION =Hamilton and Washington Urge Reform.=--The attempts at reform by the Congress were accompanied by demand for, both within and without that body, a convention to frame a new plan of government. In 1780, the youthful Alexander Hamilton, realizing the weakness of the Articles, so widely discussed, proposed a general convention for the purpose of drafting a new constitution on entirely different principles. With tireless energy he strove to bring his countrymen to his view. Washington, agreeing with him on every point, declared, in a circular letter to the governors, that the duration of the union would be short unless there was lodged somewhere a supreme power "to regulate and govern the general concerns of the confederated republic." The governor of Massachusetts, disturbed by the growth of discontent all about him, suggested to the state legislature in 1785 the advisability of a national convention to enlarge the powers of the Congress. The legislature approved the plan, but did not press it to a conclusion. [Illustration: ALEXANDER HAMILTON] =The Annapolis Convention.=--Action finally came from the South. The Virginia legislature, taking things into its own hands, called a conference of delegates at Annapolis to consider matters of taxation and commerce. When the convention assembled in 1786, it was found that only five states had taken the trouble to send representatives. The leaders were deeply discouraged, but the resourceful Hamilton, a delegate from New York, turned the affair to good account. He secured the adoption of a resolution, calling upon the Congress itself to summon another convention, to meet at Philadelphia. =A National Convention Called (1787).=--The Congress, as tardy as ever, at last decided in February, 1787, to issue the call. Fearing drastic changes, however, it restricted the convention to "the sole and express purpose of revising the Articles of Confederation." Jealous of its own powers, it added that any alterations proposed should be referred to the Congress and the states for their approval. Every state in the union, except Rhode Island, responded to this call. Indeed some of the states, having the Annapolis resolution before them, had already anticipated the Congress by selecting delegates before the formal summons came. Thus, by the persistence of governors, legislatures, and private citizens, there was brought about the long-desired national convention. In May, 1787, it assembled in Philadelphia. =The Eminent Men of the Convention.=--On the roll of that memorable convention were fifty-five men, at least half of whom were acknowledged to be among the foremost statesmen and thinkers in America. Every field of statecraft was represented by them: war and practical management in Washington, who was chosen president of the convention; diplomacy in Franklin, now old and full of honor in his own land as well as abroad; finance in Alexander Hamilton and Robert Morris; law in James Wilson of Pennsylvania; the philosophy of government in James Madison, called the "father of the Constitution." They were not theorists but practical men, rich in political experience and endowed with deep insight into the springs of human action. Three of them had served in the Stamp Act Congress: Dickinson of Delaware, William Samuel Johnson of Connecticut, and John Rutledge of South Carolina. Eight had been signers of the Declaration of Independence: Read of Delaware, Sherman of Connecticut, Wythe of Virginia, Gerry of Massachusetts, Franklin, Robert Morris, George Clymer, and James Wilson of Pennsylvania. All but twelve had at some time served in the Continental Congress and eighteen were members of that body in the spring of 1787. Washington, Hamilton, Mifflin, and Charles Pinckney had been officers in the Revolutionary army. Seven of the delegates had gained political experience as governors of states. "The convention as a whole," according to the historian Hildreth, "represented in a marked manner the talent, intelligence, and especially the conservative sentiment of the country." THE FRAMING OF THE CONSTITUTION =Problems Involved.=--The great problems before the convention were nine in number: (1) Shall the Articles of Confederation be revised or a new system of government constructed? (2) Shall the government be founded on states equal in power as under the Articles or on the broader and deeper foundation of population? (3) What direct share shall the people have in the election of national officers? (4) What shall be the qualifications for the suffrage? (5) How shall the conflicting interests of the commercial and the planting states be balanced so as to safeguard the essential rights of each? (6) What shall be the form of the new government? (7) What powers shall be conferred on it? (8) How shall the state legislatures be restrained from their attacks on property rights such as the issuance of paper money? (9) Shall the approval of all the states be necessary, as under the Articles, for the adoption and amendment of the Constitution? =Revision of the Articles or a New Government?=--The moment the first problem was raised, representatives of the small states, led by William Paterson of New Jersey, were on their feet. They feared that, if the Articles were overthrown, the equality and rights of the states would be put in jeopardy. Their protest was therefore vigorous. They cited the call issued by the Congress in summoning the convention which specifically stated that they were assembled for "the sole and express purpose of revising the Articles of Confederation." They cited also their instructions from their state legislatures, which authorized them to "revise and amend" the existing scheme of government, not to make a revolution in it. To depart from the authorization laid down by the Congress and the legislatures would be to exceed their powers, they argued, and to betray the trust reposed in them by their countrymen. To their contentions, Randolph of Virginia replied: "When the salvation of the republic is at stake, it would be treason to our trust not to propose what we find necessary." Hamilton, reminding the delegates that their work was still subject to the approval of the states, frankly said that on the point of their powers he had no scruples. With the issue clear, the convention cast aside the Articles as if they did not exist and proceeded to the work of drawing up a new constitution, "laying its foundations on such principles and organizing its powers in such form" as to the delegates seemed "most likely to affect their safety and happiness." =A Government Founded on States or on People?--The Compromise.=--Defeated in their attempt to limit the convention to a mere revision of the Articles, the spokesmen of the smaller states redoubled their efforts to preserve the equality of the states. The signal for a radical departure from the Articles on this point was given early in the sessions when Randolph presented "the Virginia plan." He proposed that the new national legislature consist of two houses, the members of which were to be apportioned among the states according to their wealth or free white population, as the convention might decide. This plan was vehemently challenged. Paterson of New Jersey flatly avowed that neither he nor his state would ever bow to such tyranny. As an alternative, he presented "the New Jersey plan" calling for a national legislature of one house representing states as such, not wealth or people--a legislature in which all states, large or small, would have equal voice. Wilson of Pennsylvania, on behalf of the more populous states, took up the gauntlet which Paterson had thrown down. It was absurd, he urged, for 180,000 men in one state to have the same weight in national counsels as 750,000 men in another state. "The gentleman from New Jersey," he said, "is candid. He declares his opinion boldly.... I will be equally candid.... I will never confederate on his principles." So the bitter controversy ran on through many exciting sessions. Greek had met Greek. The convention was hopelessly deadlocked and on the verge of dissolution, "scarce held together by the strength of a hair," as one of the delegates remarked. A crash was averted only by a compromise. Instead of a Congress of one house as provided by the Articles, the convention agreed upon a legislature of two houses. In the Senate, the aspirations of the small states were to be satisfied, for each state was given two members in that body. In the formation of the House of Representatives, the larger states were placated, for it was agreed that the members of that chamber were to be apportioned among the states on the basis of population, counting three-fifths of the slaves. =The Question of Popular Election.=--The method of selecting federal officers and members of Congress also produced an acrimonious debate which revealed how deep-seated was the distrust of the capacity of the people to govern themselves. Few there were who believed that no branch of the government should be elected directly by the voters; still fewer were there, however, who desired to see all branches so chosen. One or two even expressed a desire for a monarchy. The dangers of democracy were stressed by Gerry of Massachusetts: "All the evils we experience flow from an excess of democracy. The people do not want virtue but are the dupes of pretended patriots.... I have been too republican heretofore but have been taught by experience the danger of a leveling spirit." To the "democratic licentiousness of the state legislatures," Randolph sought to oppose a "firm senate." To check the excesses of popular government Charles Pinckney of South Carolina declared that no one should be elected President who was not worth $100,000 and that high property qualifications should be placed on members of Congress and judges. Other members of the convention were stoutly opposed to such "high-toned notions of government." Franklin and Wilson, both from Pennsylvania, vigorously championed popular election; while men like Madison insisted that at least one part of the government should rest on the broad foundation of the people. Out of this clash of opinion also came compromise. One branch, the House of Representatives, it was agreed, was to be elected directly by the voters, while the Senators were to be elected indirectly by the state legislatures. The President was to be chosen by electors selected as the legislatures of the states might determine, and the judges of the federal courts, supreme and inferior, by the President and the Senate. =The Question of the Suffrage.=--The battle over the suffrage was sharp but brief. Gouverneur Morris proposed that only land owners should be permitted to vote. Madison replied that the state legislatures, which had made so much trouble with radical laws, were elected by freeholders. After the debate, the delegates, unable to agree on any property limitations on the suffrage, decided that the House of Representatives should be elected by voters having the "qualifications requisite for electors of the most numerous branch of the state legislature." Thus they accepted the suffrage provisions of the states. =The Balance between the Planting and the Commercial States.=--After the debates had gone on for a few weeks, Madison came to the conclusion that the real division in the convention was not between the large and the small states but between the planting section founded on slave labor and the commercial North. Thus he anticipated by nearly three-quarters of a century "the irrepressible conflict." The planting states had neither the free white population nor the wealth of the North. There were, counting Delaware, six of them as against seven commercial states. Dependent for their prosperity mainly upon the sale of tobacco, rice, and other staples abroad, they feared that Congress might impose restraints upon their enterprise. Being weaker in numbers, they were afraid that the majority might lay an unfair burden of taxes upon them. _Representation and Taxation._--The Southern members of the convention were therefore very anxious to secure for their section the largest possible representation in Congress, and at the same time to restrain the taxing power of that body. Two devices were thought adapted to these ends. One was to count the slaves as people when apportioning representatives among the states according to their respective populations; the other was to provide that direct taxes should be apportioned among the states, in proportion not to their wealth but to the number of their free white inhabitants. For obvious reasons the Northern delegates objected to these proposals. Once more a compromise proved to be the solution. It was agreed that not all the slaves but three-fifths of them should be counted for both purposes--representation and direct taxation. _Commerce and the Slave Trade._--Southern interests were also involved in the project to confer upon Congress the power to regulate interstate and foreign commerce. To the manufacturing and trading states this was essential. It would prevent interstate tariffs and trade jealousies; it would enable Congress to protect American manufactures and to break down, by appropriate retaliations, foreign discriminations against American commerce. To the South the proposal was menacing because tariffs might interfere with the free exchange of the produce of plantations in European markets, and navigation acts might confine the carrying trade to American, that is Northern, ships. The importation of slaves, moreover, it was feared might be heavily taxed or immediately prohibited altogether. The result of this and related controversies was a debate on the merits of slavery. Gouverneur Morris delivered his mind and heart on that subject, denouncing slavery as a nefarious institution and the curse of heaven on the states in which it prevailed. Mason of Virginia, a slaveholder himself, was hardly less outspoken, saying: "Slavery discourages arts and manufactures. The poor despise labor when performed by slaves. They prevent the migration of whites who really strengthen and enrich a country." The system, however, had its defenders. Representatives from South Carolina argued that their entire economic life rested on slave labor and that the high death rate in the rice swamps made continuous importation necessary. Ellsworth of Connecticut took the ground that the convention should not meddle with slavery. "The morality or wisdom of slavery," he said, "are considerations belonging to the states. What enriches a part enriches the whole." To the future he turned an untroubled face: "As population increases, poor laborers will be so plenty as to render slaves useless. Slavery in time will not be a speck in our country." Virginia and North Carolina, already overstocked with slaves, favored prohibiting the traffic in them; but South Carolina was adamant. She must have fresh supplies of slaves or she would not federate. So it was agreed that, while Congress might regulate foreign trade by majority vote, the importation of slaves should not be forbidden before the lapse of twenty years, and that any import tax should not exceed $10 a head. At the same time, in connection with the regulation of foreign trade, it was stipulated that a two-thirds vote in the Senate should be necessary in the ratification of treaties. A further concession to the South was made in the provision for the return of runaway slaves--a provision also useful in the North, where indentured servants were about as troublesome as slaves in escaping from their masters. =The Form of the Government.=--As to the details of the frame of government and the grand principles involved, the opinion of the convention ebbed and flowed, decisions being taken in the heat of debate, only to be revoked and taken again. _The Executive._--There was general agreement that there should be an executive branch; for reliance upon Congress to enforce its own laws and treaties had been a broken reed. On the character and functions of the executive, however, there were many views. The New Jersey plan called for a council selected by the Congress; the Virginia plan provided that the executive branch should be chosen by the Congress but did not state whether it should be composed of one or several persons. On this matter the convention voted first one way and then another; finally it agreed on a single executive chosen indirectly by electors selected as the state legislatures might decide, serving for four years, subject to impeachment, and endowed with regal powers in the command of the army and the navy and in the enforcement of the laws. _The Legislative Branch--Congress._--After the convention had made the great compromise between the large and small commonwealths by giving representation to states in the Senate and to population in the House, the question of methods of election had to be decided. As to the House of Representatives it was readily agreed that the members should be elected by direct popular vote. There was also easy agreement on the proposition that a strong Senate was needed to check the "turbulence" of the lower house. Four devices were finally selected to accomplish this purpose. In the first place, the Senators were not to be chosen directly by the voters but by the legislatures of the states, thus removing their election one degree from the populace. In the second place, their term was fixed at six years instead of two, as in the case of the House. In the third place, provision was made for continuity by having only one-third of the members go out at a time while two-thirds remained in service. Finally, it was provided that Senators must be at least thirty years old while Representatives need be only twenty-five. _The Judiciary._--The need for federal courts to carry out the law was hardly open to debate. The feebleness of the Articles of Confederation was, in a large measure, attributed to the want of a judiciary to hold states and individuals in obedience to the laws and treaties of the union. Nevertheless on this point the advocates of states' rights were extremely sensitive. They looked with distrust upon judges appointed at the national capital and emancipated from local interests and traditions; they remembered with what insistence they had claimed against Britain the right of local trial by jury and with what consternation they had viewed the proposal to make colonial judges independent of the assemblies in the matter of their salaries. Reluctantly they yielded to the demand for federal courts, consenting at first only to a supreme court to review cases heard in lower state courts and finally to such additional inferior courts as Congress might deem necessary. _The System of Checks and Balances._--It is thus apparent that the framers of the Constitution, in shaping the form of government, arranged for a distribution of power among three branches, executive, legislative, and judicial. Strictly speaking we might say four branches, for the legislature, or Congress, was composed of two houses, elected in different ways, and one of them, the Senate, was made a check on the President through its power of ratifying treaties and appointments. "The accumulation of all powers, legislative, executive, and judicial, in the same hands," wrote Madison, "whether of one, a few, or many, and whether hereditary, self-appointed, or elective, may justly be pronounced the very definition of tyranny." The devices which the convention adopted to prevent such a centralization of authority were exceedingly ingenious and well calculated to accomplish the purposes of the authors. The legislature consisted of two houses, the members of which were to be apportioned on a different basis, elected in different ways, and to serve for different terms. A veto on all its acts was vested in a President elected in a manner not employed in the choice of either branch of the legislature, serving for four years, and subject to removal only by the difficult process of impeachment. After a law had run the gantlet of both houses and the executive, it was subject to interpretation and annulment by the judiciary, appointed by the President with the consent of the Senate and serving for life. Thus it was made almost impossible for any political party to get possession of all branches of the government at a single popular election. As Hamilton remarked, the friends of good government considered "every institution calculated to restrain the excess of law making and to keep things in the same state in which they happen to be at any given period as more likely to do good than harm." =The Powers of the Federal Government.=--On the question of the powers to be conferred upon the new government there was less occasion for a serious dispute. Even the delegates from the small states agreed with those from Massachusetts, Pennsylvania, and Virginia that new powers should be added to those intrusted to Congress by the Articles of Confederation. The New Jersey plan as well as the Virginia plan recognized this fact. Some of the delegates, like Hamilton and Madison, even proposed to give Congress a general legislative authority covering all national matters; but others, frightened by the specter of nationalism, insisted on specifying each power to be conferred and finally carried the day. _Taxation and Commerce._--There were none bold enough to dissent from the proposition that revenue must be provided to pay current expenses and discharge the public debt. When once the dispute over the apportionment of direct taxes among the slave states was settled, it was an easy matter to decide that Congress should have power to lay and collect taxes, duties, imposts, and excises. In this way the national government was freed from dependence upon stubborn and tardy legislatures and enabled to collect funds directly from citizens. There were likewise none bold enough to contend that the anarchy of state tariffs and trade discriminations should be longer endured. When the fears of the planting states were allayed and the "bargain" over the importation of slaves was reached, the convention vested in Congress the power to regulate foreign and interstate commerce. _National Defense._--The necessity for national defense was realized, though the fear of huge military establishments was equally present. The old practice of relying on quotas furnished by the state legislatures was completely discredited. As in the case of taxes a direct authority over citizens was demanded. Congress was therefore given full power to raise and support armies and a navy. It could employ the state militia when desirable; but it could at the same time maintain a regular army and call directly upon all able-bodied males if the nature of a crisis was thought to require it. _The "Necessary and Proper" Clause._--To the specified power vested in Congress by the Constitution, the advocates of a strong national government added a general clause authorizing it to make all laws "necessary and proper" for carrying into effect any and all of the enumerated powers. This clause, interpreted by that master mind, Chief Justice Marshall, was later construed to confer powers as wide as the requirements of a vast country spanning a continent and taking its place among the mighty nations of the earth. =Restraints on the States.=--Framing a government and endowing it with large powers were by no means the sole concern of the convention. Its very existence had been due quite as much to the conduct of the state legislatures as to the futilities of a paralyzed Continental Congress. In every state, explains Marshall in his _Life of Washington_, there was a party of men who had "marked out for themselves a more indulgent course. Viewing with extreme tenderness the case of the debtor, their efforts were unceasingly directed to his relief. To exact a faithful compliance with contracts was, in their opinion, a harsh measure which the people could not bear. They were uniformly in favor of relaxing the administration of justice, of affording facilities for the payment of debts, or of suspending their collection, and remitting taxes." The legislatures under the dominance of these men had enacted paper money laws enabling debtors to discharge their obligations more easily. The convention put an end to such practices by providing that no state should emit bills of credit or make anything but gold or silver legal tender in the payment of debts. The state legislatures had enacted laws allowing men to pay their debts by turning over to creditors land or personal property; they had repealed the charter of an endowed college and taken the management from the hands of the lawful trustees; and they had otherwise interfered with the enforcement of private agreements. The convention, taking notice of such matters, inserted a clause forbidding states "to impair the obligation of contracts." The more venturous of the radicals had in Massachusetts raised the standard of revolt against the authorities of the state. The convention answered by a brief sentence to the effect that the President of the United States, to be equipped with a regular army, would send troops to suppress domestic insurrections whenever called upon by the legislature or, if it was not in session, by the governor of the state. To make sure that the restrictions on the states would not be dead letters, the federal Constitution, laws, and treaties were made the supreme law of the land, to be enforced whenever necessary by a national judiciary and executive against violations on the part of any state authorities. =Provisions for Ratification and Amendment.=--When the frame of government had been determined, the powers to be vested in it had been enumerated, and the restrictions upon the states had been written into the bond, there remained three final questions. How shall the Constitution be ratified? What number of states shall be necessary to put it into effect? How shall it be amended in the future? On the first point, the mandate under which the convention was sitting seemed positive. The Articles of Confederation were still in effect. They provided that amendments could be made only by unanimous adoption in Congress and the approval of all the states. As if to give force to this provision of law, the call for the convention had expressly stated that all alterations and revisions should be reported to Congress for adoption or rejection, Congress itself to transmit the document thereafter to the states for their review. To have observed the strict letter of the law would have defeated the purposes of the delegates, because Congress and the state legislatures were openly hostile to such drastic changes as had been made. Unanimous ratification, as events proved, would have been impossible. Therefore the delegates decided that the Constitution should be sent to Congress with the recommendation that it, in turn, transmit the document, not to the state legislatures, but to conventions held in the states for the special object of deciding upon ratification. This process was followed. It was their belief that special conventions would be more friendly than the state legislatures. The convention was equally positive in dealing with the problem of the number of states necessary to establish the new Constitution. Attempts to change the Articles had failed because amendment required the approval of every state and there was always at least one recalcitrant member of the union. The opposition to a new Constitution was undoubtedly formidable. Rhode Island had even refused to take part in framing it, and her hostility was deep and open. So the convention cast aside the provision of the Articles of Confederation which required unanimous approval for any change in the plan of government; it decreed that the new Constitution should go into effect when ratified by nine states. In providing for future changes in the Constitution itself the convention also thrust aside the old rule of unanimous approval, and decided that an amendment could be made on a two-thirds vote in both houses of Congress and ratification by three-fourths of the states. This change was of profound significance. Every state agreed to be bound in the future by amendments duly adopted even in case it did not approve them itself. America in this way set out upon the high road that led from a league of states to a nation. THE STRUGGLE OVER RATIFICATION On September 17, 1787, the Constitution, having been finally drafted in clear and simple language, a model to all makers of fundamental law, was adopted. The convention, after nearly four months of debate in secret session, flung open the doors and presented to the Americans the finished plan for the new government. Then the great debate passed to the people. =The Opposition.=--Storms of criticism at once descended upon the Constitution. "Fraudulent usurpation!" exclaimed Gerry, who had refused to sign it. "A monster" out of the "thick veil of secrecy," declaimed a Pennsylvania newspaper. "An iron-handed despotism will be the result," protested a third. "We, 'the low-born,'" sarcastically wrote a fourth, "will now admit the 'six hundred well-born' immediately to establish this most noble, most excellent, and truly divine constitution." The President will become a king; Congress will be as tyrannical as Parliament in the old days; the states will be swallowed up; the rights of the people will be trampled upon; the poor man's justice will be lost in the endless delays of the federal courts--such was the strain of the protests against ratification. [Illustration: AN ADVERTISEMENT OF _The Federalist_] =Defense of the Constitution.=--Moved by the tempest of opposition, Hamilton, Madison, and Jay took up their pens in defense of the Constitution. In a series of newspaper articles they discussed and expounded with eloquence, learning, and dignity every important clause and provision of the proposed plan. These papers, afterwards collected and published in a volume known as _The Federalist_, form the finest textbook on the Constitution that has ever been printed. It takes its place, moreover, among the wisest and weightiest treatises on government ever written in any language in any time. Other men, not so gifted, were no less earnest in their support of ratification. In private correspondence, editorials, pamphlets, and letters to the newspapers, they urged their countrymen to forget their partisanship and accept a Constitution which, in spite of any defects great or small, was the only guarantee against dissolution and warfare at home and dishonor and weakness abroad. [Illustration: CELEBRATING THE RATIFICATION] =The Action of the State Conventions.=--Before the end of the year, 1787, three states had ratified the Constitution: Delaware and New Jersey unanimously and Pennsylvania after a short, though savage, contest. Connecticut and Georgia followed early the next year. Then came the battle royal in Massachusetts, ending in ratification in February by the narrow margin of 187 votes to 168. In the spring came the news that Maryland and South Carolina were "under the new roof." On June 21, New Hampshire, where the sentiment was at first strong enough to defeat the Constitution, joined the new republic, influenced by the favorable decision in Massachusetts. Swift couriers were sent to carry the news to New York and Virginia, where the question of ratification was still undecided. Nine states had accepted it and were united, whether more saw fit to join or not. Meanwhile, however, Virginia, after a long and searching debate, had given her approval by a narrow margin, leaving New York as the next seat of anxiety. In that state the popular vote for the delegates to the convention had been clearly and heavily against ratification. Events finally demonstrated the futility of resistance, and Hamilton by good judgment and masterly arguments was at last able to marshal a majority of thirty to twenty-seven votes in favor of ratification. The great contest was over. All the states, except North Carolina and Rhode Island, had ratified. "The sloop Anarchy," wrote an ebullient journalist, "when last heard from was ashore on Union rocks." =The First Election.=--In the autumn of 1788, elections were held to fill the places in the new government. Public opinion was overwhelmingly in favor of Washington as the first President. Yielding to the importunities of friends, he accepted the post in the spirit of public service. On April 30, 1789, he took the oath of office at Federal Hall in New York City. "Long live George Washington, President of the United States!" cried Chancellor Livingston as soon as the General had kissed the Bible. The cry was caught by the assembled multitude and given back. A new experiment in popular government was launched. =References= M. Farrand, _The Framing of the Constitution of the United States_. P.L. Ford, _Essays on the Constitution of the United States_. _The Federalist_ (in many editions). G. Hunt, _Life of James Madison_. A.C. McLaughlin, _The Confederation and the Constitution_ (American Nation Series). =Questions= 1. Account for the failure of the Articles of Confederation. 2. Explain the domestic difficulties of the individual states. 3. Why did efforts at reform by the Congress come to naught? 4. Narrate the events leading up to the constitutional convention. 5. Who were some of the leading men in the convention? What had been their previous training? 6. State the great problems before the convention. 7. In what respects were the planting and commercial states opposed? What compromises were reached? 8. Show how the "check and balance" system is embodied in our form of government. 9. How did the powers conferred upon the federal government help cure the defects of the Articles of Confederation? 10. In what way did the provisions for ratifying and amending the Constitution depart from the old system? 11. What was the nature of the conflict over ratification? =Research Topics= =English Treatment of American Commerce.=--Callender, _Economic History of the United States_, pp. 210-220. =Financial Condition of the United States.=--Fiske, _Critical Period of American History_, pp. 163-186. =Disordered Commerce.=--Fiske, pp. 134-162. =Selfish Conduct of the States.=--Callender, pp. 185-191. =The Failure of the Confederation.=--Elson, _History of the United States_, pp. 318-326. =Formation of the Constitution.=--(1) The plans before the convention, Fiske, pp. 236-249; (2) the great compromise, Fiske, pp. 250-255; (3) slavery and the convention, Fiske, pp. 256-266; and (4) the frame of government, Fiske, pp. 275-301; Elson, pp. 328-334. =Biographical Studies.=--Look up the history and services of the leaders in the convention in any good encyclopedia. =Ratification of the Constitution.=--Hart, _History Told by Contemporaries_, Vol. III, pp. 233-254; Elson, pp. 334-340. =Source Study.=--Compare the Constitution and Articles of Confederation under the following heads: (1) frame of government; (2) powers of Congress; (3) limits on states; and (4) methods of amendment. Every line of the Constitution should be read and re-read in the light of the historical circumstances set forth in this chapter. CHAPTER VIII THE CLASH OF POLITICAL PARTIES THE MEN AND MEASURES OF THE NEW GOVERNMENT =Friends of the Constitution in Power.=--In the first Congress that assembled after the adoption of the Constitution, there were eleven Senators, led by Robert Morris, the financier, who had been delegates to the national convention. Several members of the House of Representatives, headed by James Madison, had also been at Philadelphia in 1787. In making his appointments, Washington strengthened the new system of government still further by a judicious selection of officials. He chose as Secretary of the Treasury, Alexander Hamilton, who had been the most zealous for its success; General Knox, head of the War Department, and Edmund Randolph, the Attorney-General, were likewise conspicuous friends of the experiment. Every member of the federal judiciary whom Washington appointed, from the Chief Justice, John Jay, down to the justices of the district courts, had favored the ratification of the Constitution; and a majority of them had served as members of the national convention that framed the document or of the state ratifying conventions. Only one man of influence in the new government, Thomas Jefferson, the Secretary of State, was reckoned as a doubter in the house of the faithful. He had expressed opinions both for and against the Constitution; but he had been out of the country acting as the minister at Paris when the Constitution was drafted and ratified. =An Opposition to Conciliate.=--The inauguration of Washington amid the plaudits of his countrymen did not set at rest all the political turmoil which had been aroused by the angry contest over ratification. "The interesting nature of the question," wrote John Marshall, "the equality of the parties, the animation produced inevitably by ardent debate had a necessary tendency to embitter the dispositions of the vanquished and to fix more deeply in many bosoms their prejudices against a plan of government in opposition to which all their passions were enlisted." The leaders gathered around Washington were well aware of the excited state of the country. They saw Rhode Island and North Carolina still outside of the union.[1] They knew by what small margins the Constitution had been approved in the great states of Massachusetts, Virginia, and New York. They were equally aware that a majority of the state conventions, in yielding reluctant approval to the Constitution, had drawn a number of amendments for immediate submission to the states. =The First Amendments--a Bill of Rights.=--To meet the opposition, Madison proposed, and the first Congress adopted, a series of amendments to the Constitution. Ten of them were soon ratified and became in 1791 a part of the law of the land. These amendments provided, among other things, that Congress could make no law respecting the establishment of religion, abridging the freedom of speech or of the press or the right of the people peaceably to assemble and petition the government for a redress of grievances. They also guaranteed indictment by grand jury and trial by jury for all persons charged by federal officers with serious crimes. To reassure those who still feared that local rights might be invaded by the federal government, the tenth amendment expressly provided that the powers not delegated to the United States by the Constitution, nor prohibited by it to the states, are reserved to the states respectively or to the people. Seven years later, the eleventh amendment was written in the same spirit as the first ten, after a heated debate over the action of the Supreme Court in permitting a citizen to bring a suit against "the sovereign state" of Georgia. The new amendment was designed to protect states against the federal judiciary by forbidding it to hear any case in which a state was sued by a citizen. =Funding the National Debt.=--Paper declarations of rights, however, paid no bills. To this task Hamilton turned all his splendid genius. At the very outset he addressed himself to the problem of the huge public debt, daily mounting as the unpaid interest accumulated. In a _Report on Public Credit_ under date of January 9, 1790, one of the first and greatest of American state papers, he laid before Congress the outlines of his plan. He proposed that the federal government should call in all the old bonds, certificates of indebtedness, and other promises to pay which had been issued by the Congress since the beginning of the Revolution. These national obligations, he urged, should be put into one consolidated debt resting on the credit of the United States; to the holders of the old paper should be issued new bonds drawing interest at fixed rates. This process was called "funding the debt." Such a provision for the support of public credit, Hamilton insisted, would satisfy creditors, restore landed property to its former value, and furnish new resources to agriculture and commerce in the form of credit and capital. =Assumption and Funding of State Debts.=--Hamilton then turned to the obligations incurred by the several states in support of the Revolution. These debts he proposed to add to the national debt. They were to be "assumed" by the United States government and placed on the same secure foundation as the continental debt. This measure he defended not merely on grounds of national honor. It would, as he foresaw, give strength to the new national government by making all public creditors, men of substance in their several communities, look to the federal, rather than the state government, for the satisfaction of their claims. =Funding at Face Value.=--On the question of the terms of consolidation, assumption, and funding, Hamilton had a firm conviction. That millions of dollars' worth of the continental and state bonds had passed out of the hands of those who had originally subscribed their funds to the support of the government or had sold supplies for the Revolutionary army was well known. It was also a matter of common knowledge that a very large part of these bonds had been bought by speculators at ruinous figures--ten, twenty, and thirty cents on the dollar. Accordingly, it had been suggested, even in very respectable quarters, that a discrimination should be made between original holders and speculative purchasers. Some who held this opinion urged that the speculators who had paid nominal sums for their bonds should be reimbursed for their outlays and the original holders paid the difference; others said that the government should "scale the debt" by redeeming, not at full value but at a figure reasonably above the market price. Against the proposition Hamilton set his face like flint. He maintained that the government was honestly bound to redeem every bond at its face value, although the difficulty of securing revenue made necessary a lower rate of interest on a part of the bonds and the deferring of interest on another part. =Funding and Assumption Carried.=--There was little difficulty in securing the approval of both houses of Congress for the funding of the national debt at full value. The bill for the assumption of state debts, however, brought the sharpest division of opinions. To the Southern members of Congress assumption was a gross violation of states' rights, without any warrant in the Constitution and devised in the interest of Northern speculators who, anticipating assumption and funding, had bought up at low prices the Southern bonds and other promises to pay. New England, on the other hand, was strongly in favor of assumption; several representatives from that section were rash enough to threaten a dissolution of the union if the bill was defeated. To this dispute was added an equally bitter quarrel over the location of the national capital, then temporarily at New York City. [Illustration: FIRST UNITED STATES BANK AT PHILADELPHIA] A deadlock, accompanied by the most surly feelings on both sides, threatened the very existence of the young government. Washington and Hamilton were thoroughly alarmed. Hearing of the extremity to which the contest had been carried and acting on the appeal from the Secretary of the Treasury, Jefferson intervened at this point. By skillful management at a good dinner he brought the opposing leaders together; and thus once more, as on many other occasions, peace was purchased and the union saved by compromise. The bargain this time consisted of an exchange of votes for assumption in return for votes for the capital. Enough Southern members voted for assumption to pass the bill, and a majority was mustered in favor of building the capital on the banks of the Potomac, after locating it for a ten-year period at Philadelphia to satisfy Pennsylvania members. =The United States Bank.=--Encouraged by the success of his funding and assumption measures, Hamilton laid before Congress a project for a great United States Bank. He proposed that a private corporation be chartered by Congress, authorized to raise a capital stock of $10,000,000 (three-fourths in new six per cent federal bonds and one-fourth in specie) and empowered to issue paper currency under proper safeguards. Many advantages, Hamilton contended, would accrue to the government from this institution. The price of the government bonds would be increased, thus enhancing public credit. A national currency would be created of uniform value from one end of the land to the other. The branches of the bank in various cities would make easy the exchange of funds so vital to commercial transactions on a national scale. Finally, through the issue of bank notes, the money capital available for agriculture and industry would be increased, thus stimulating business enterprise. Jefferson hotly attacked the bank on the ground that Congress had no power whatever under the Constitution to charter such a private corporation. Hamilton defended it with great cogency. Washington, after weighing all opinions, decided in favor of the proposal. In 1791 the bill establishing the first United States Bank for a period of twenty years became a law. =The Protective Tariff.=--A third part of Hamilton's program was the protection of American industries. The first revenue act of 1789, though designed primarily to bring money into the empty treasury, declared in favor of the principle. The following year Washington referred to the subject in his address to Congress. Thereupon Hamilton was instructed to prepare recommendations for legislative action. The result, after a delay of more than a year, was his _Report on Manufactures_, another state paper worthy, in closeness of reasoning and keenness of understanding, of a place beside his report on public credit. Hamilton based his argument on the broadest national grounds: the protective tariff would, by encouraging the building of factories, create a home market for the produce of farms and plantations; by making the United States independent of other countries in times of peace, it would double its security in time of war; by making use of the labor of women and children, it would turn to the production of goods persons otherwise idle or only partly employed; by increasing the trade between the North and South it would strengthen the links of union and add to political ties those of commerce and intercourse. The revenue measure of 1792 bore the impress of these arguments. THE RISE OF POLITICAL PARTIES =Dissensions over Hamilton's Measures.=--Hamilton's plans, touching deeply as they did the resources of individuals and the interests of the states, awakened alarm and opposition. Funding at face value, said his critics, was a government favor to speculators; the assumption of state debts was a deep design to undermine the state governments; Congress had no constitutional power to create a bank; the law creating the bank merely allowed a private corporation to make paper money and lend it at a high rate of interest; and the tariff was a tax on land and labor for the benefit of manufacturers. Hamilton's reply to this bill of indictment was simple and straightforward. Some rascally speculators had profited from the funding of the debt at face value, but that was only an incident in the restoration of public credit. In view of the jealousies of the states it was a good thing to reduce their powers and pretensions. The Constitution was not to be interpreted narrowly but in the full light of national needs. The bank would enlarge the amount of capital so sorely needed to start up American industries, giving markets to farmers and planters. The tariff by creating a home market and increasing opportunities for employment would benefit both land and labor. Out of such wise policies firmly pursued by the government, he concluded, were bound to come strength and prosperity for the new government at home, credit and power abroad. This view Washington fully indorsed, adding the weight of his great name to the inherent merits of the measures adopted under his administration. =The Sharpness of the Partisan Conflict.=--As a result of the clash of opinion, the people of the country gradually divided into two parties: Federalists and Anti-Federalists, the former led by Hamilton, the latter by Jefferson. The strength of the Federalists lay in the cities--Boston, Providence, Hartford, New York, Philadelphia, Charleston--among the manufacturing, financial, and commercial groups of the population who were eager to extend their business operations. The strength of the Anti-Federalists lay mainly among the debt-burdened farmers who feared the growth of what they called "a money power" and planters in all sections who feared the dominance of commercial and manufacturing interests. The farming and planting South, outside of the few towns, finally presented an almost solid front against assumption, the bank, and the tariff. The conflict between the parties grew steadily in bitterness, despite the conciliatory and engaging manner in which Hamilton presented his cause in his state papers and despite the constant efforts of Washington to soften the asperity of the contestants. =The Leadership and Doctrines of Jefferson.=--The party dispute had not gone far before the opponents of the administration began to look to Jefferson as their leader. Some of Hamilton's measures he had approved, declaring afterward that he did not at the time understand their significance. Others, particularly the bank, he fiercely assailed. More than once, he and Hamilton, shaking violently with anger, attacked each other at cabinet meetings, and nothing short of the grave and dignified pleas of Washington prevented an early and open break between them. In 1794 it finally came. Jefferson resigned as Secretary of State and retired to his home in Virginia to assume, through correspondence and negotiation, the leadership of the steadily growing party of opposition. Shy and modest in manner, halting in speech, disliking the turmoil of public debate, and deeply interested in science and philosophy, Jefferson was not very well fitted for the strenuous life of political contest. Nevertheless, he was an ambitious and shrewd negotiator. He was also by honest opinion and matured conviction the exact opposite of Hamilton. The latter believed in a strong, active, "high-toned" government, vigorously compelling in all its branches. Jefferson looked upon such government as dangerous to the liberties of citizens and openly avowed his faith in the desirability of occasional popular uprisings. Hamilton distrusted the people. "Your people is a great beast," he is reported to have said. Jefferson professed his faith in the people with an abandon that was considered reckless in his time. On economic matters, the opinions of the two leaders were also hopelessly at variance. Hamilton, while cherishing agriculture, desired to see America a great commercial and industrial nation. Jefferson was equally set against this course for his country. He feared the accumulation of riches and the growth of a large urban working class. The mobs of great cities, he said, are sores on the body politic; artisans are usually the dangerous element that make revolutions; workshops should be kept in Europe and with them the artisans with their insidious morals and manners. The only substantial foundation for a republic, Jefferson believed to be agriculture. The spirit of independence could be kept alive only by free farmers, owning the land they tilled and looking to the sun in heaven and the labor of their hands for their sustenance. Trusting as he did in the innate goodness of human nature when nourished on a free soil, Jefferson advocated those measures calculated to favor agriculture and to enlarge the rights of persons rather than the powers of government. Thus he became the champion of the individual against the interference of the government, and an ardent advocate of freedom of the press, freedom of speech, and freedom of scientific inquiry. It was, accordingly, no mere factious spirit that drove him into opposition to Hamilton. =The Whisky Rebellion.=--The political agitation of the Anti-Federalists was accompanied by an armed revolt against the government in 1794. The occasion for this uprising was another of Hamilton's measures, a law laying an excise tax on distilled spirits, for the purpose of increasing the revenue needed to pay the interest on the funded debt. It so happened that a very considerable part of the whisky manufactured in the country was made by the farmers, especially on the frontier, in their own stills. The new revenue law meant that federal officers would now come into the homes of the people, measure their liquor, and take the tax out of their pockets. All the bitterness which farmers felt against the fiscal measures of the government was redoubled. In the western districts of Pennsylvania, Virginia, and North Carolina, they refused to pay the tax. In Pennsylvania, some of them sacked and burned the houses of the tax collectors, as the Revolutionists thirty years before had mobbed the agents of King George sent over to sell stamps. They were in a fair way to nullify the law in whole districts when Washington called out the troops to suppress "the Whisky Rebellion." Then the movement collapsed; but it left behind a deep-seated resentment which flared up in the election of several obdurate Anti-Federalist Congressmen from the disaffected regions. FOREIGN INFLUENCES AND DOMESTIC POLITICS =The French Revolution.=--In this exciting period, when all America was distracted by partisan disputes, a storm broke in Europe--the epoch-making French Revolution--which not only shook the thrones of the Old World but stirred to its depths the young republic of the New World. The first scene in this dramatic affair occurred in the spring of 1789, a few days after Washington was inaugurated. The king of France, Louis XVI, driven into bankruptcy by extravagance and costly wars, was forced to resort to his people for financial help. Accordingly he called, for the first time in more than one hundred fifty years, a meeting of the national parliament, the "Estates General," composed of representatives of the "three estates"--the clergy, nobility, and commoners. Acting under powerful leaders, the commoners, or "third estate," swept aside the clergy and nobility and resolved themselves into a national assembly. This stirred the country to its depths. [Illustration: _From an old print_ LOUIS XVI IN THE HANDS OF THE MOB] Great events followed in swift succession. On July 14, 1789, the Bastille, an old royal prison, symbol of the king's absolutism, was stormed by a Paris crowd and destroyed. On the night of August 4, the feudal privileges of the nobility were abolished by the national assembly amid great excitement. A few days later came the famous Declaration of the Rights of Man, proclaiming the sovereignty of the people and the privileges of citizens. In the autumn of 1791, Louis XVI was forced to accept a new constitution for France vesting the legislative power in a popular assembly. Little disorder accompanied these startling changes. To all appearances a peaceful revolution had stripped the French king of his royal prerogatives and based the government of his country on the consent of the governed. =American Influence in France.=--In undertaking their great political revolt the French had been encouraged by the outcome of the American Revolution. Officers and soldiers, who had served in the American war, reported to their French countrymen marvelous tales. At the frugal table of General Washington, in council with the unpretentious Franklin, or at conferences over the strategy of war, French noblemen of ancient lineage learned to respect both the talents and the simple character of the leaders in the great republican commonwealth beyond the seas. Travelers, who had gone to see the experiment in republicanism with their own eyes, carried home to the king and ruling class stories of an astounding system of popular government. On the other hand the dalliance with American democracy was regarded by French conservatives as playing with fire. "When we think of the false ideas of government and philanthropy," wrote one of Lafayette's aides, "which these youths acquired in America and propagated in France with so much enthusiasm and such deplorable success--for this mania of imitation powerfully aided the Revolution, though it was not the sole cause of it--we are bound to confess that it would have been better, both for themselves and for us, if these young philosophers in red-heeled shoes had stayed at home in attendance on the court." =Early American Opinion of the French Revolution.=--So close were the ties between the two nations that it is not surprising to find every step in the first stages of the French Revolution greeted with applause in the United States. "Liberty will have another feather in her cap," exultantly wrote a Boston editor. "In no part of the globe," soberly wrote John Marshall, "was this revolution hailed with more joy than in America.... But one sentiment existed." The main key to the Bastille, sent to Washington as a memento, was accepted as "a token of the victory gained by liberty." Thomas Paine saw in the great event "the first ripe fruits of American principles transplanted into Europe." Federalists and Anti-Federalists regarded the new constitution of France as another vindication of American ideals. =The Reign of Terror.=--While profuse congratulations were being exchanged, rumors began to come that all was not well in France. Many noblemen, enraged at the loss of their special privileges, fled into Germany and plotted an invasion of France to overthrow the new system of government. Louis XVI entered into negotiations with his brother monarchs on the continent to secure their help in the same enterprise, and he finally betrayed to the French people his true sentiments by attempting to escape from his kingdom, only to be captured and taken back to Paris in disgrace. A new phase of the revolution now opened. The working people, excluded from all share in the government by the first French constitution, became restless, especially in Paris. Assembling on the Champs de Mars, a great open field, they signed a petition calling for another constitution giving them the suffrage. When told to disperse, they refused and were fired upon by the national guard. This "massacre," as it was called, enraged the populace. A radical party, known as "Jacobins," then sprang up, taking its name from a Jacobin monastery in which it held its sessions. In a little while it became the master of the popular convention convoked in September, 1792. The monarchy was immediately abolished and a republic established. On January 21, 1793, Louis was sent to the scaffold. To the war on Austria, already raging, was added a war on England. Then came the Reign of Terror, during which radicals in possession of the convention executed in large numbers counter-revolutionists and those suspected of sympathy with the monarchy. They shot down peasants who rose in insurrection against their rule and established a relentless dictatorship. Civil war followed. Terrible atrocities were committed on both sides in the name of liberty, and in the name of monarchy. To Americans of conservative temper it now seemed that the Revolution, so auspiciously begun, had degenerated into anarchy and mere bloodthirsty strife. =Burke Summons the World to War on France.=--In England, Edmund Burke led the fight against the new French principles which he feared might spread to all Europe. In his _Reflections on the French Revolution_, written in 1790, he attacked with terrible wrath the whole program of popular government; he called for war, relentless war, upon the French as monsters and outlaws; he demanded that they be reduced to order by the restoration of the king to full power under the protection of the arms of European nations. =Paine's Defense of the French Revolution.=--To counteract the campaign of hate against the French, Thomas Paine replied to Burke in another of his famous tracts, _The Rights of Man_, which was given to the American public in an edition containing a letter of approval from Jefferson. Burke, said Paine, had been mourning about the glories of the French monarchy and aristocracy but had forgotten the starving peasants and the oppressed people; had wept over the plumage and neglected the dying bird. Burke had denied the right of the French people to choose their own governors, blandly forgetting that the English government in which he saw final perfection itself rested on two revolutions. He had boasted that the king of England held his crown in contempt of the democratic societies. Paine answered: "If I ask a man in America if he wants a king, he retorts and asks me if I take him for an idiot." To the charge that the doctrines of the rights of man were "new fangled," Paine replied that the question was not whether they were new or old but whether they were right or wrong. As to the French disorders and difficulties, he bade the world wait to see what would be brought forth in due time. =The Effect of the French Revolution on American Politics.=--The course of the French Revolution and the controversies accompanying it, exercised a profound influence on the formation of the first political parties in America. The followers of Hamilton, now proud of the name "Federalists," drew back in fright as they heard of the cruel deeds committed during the Reign of Terror. They turned savagely upon the revolutionists and their friends in America, denouncing as "Jacobin" everybody who did not condemn loudly enough the proceedings of the French Republic. A Massachusetts preacher roundly assailed "the atheistical, anarchical, and in other respects immoral principles of the French Republicans"; he then proceeded with equal passion to attack Jefferson and the Anti-Federalists, whom he charged with spreading false French propaganda and betraying America. "The editors, patrons, and abettors of these vehicles of slander," he exclaimed, "ought to be considered and treated as enemies to their country.... Of all traitors they are the most aggravatedly criminal; of all villains, they are the most infamous and detestable." The Anti-Federalists, as a matter of fact, were generally favorable to the Revolution although they deplored many of the events associated with it. Paine's pamphlet, indorsed by Jefferson, was widely read. Democratic societies, after the fashion of French political clubs, arose in the cities; the coalition of European monarchs against France was denounced as a coalition against the very principles of republicanism; and the execution of Louis XVI was openly celebrated at a banquet in Philadelphia. Harmless titles, such as "Sir," "the Honorable," and "His Excellency," were decried as aristocratic and some of the more excited insisted on adopting the French title, "Citizen," speaking, for example, of "Citizen Judge" and "Citizen Toastmaster." Pamphlets in defense of the French streamed from the press, while subsidized newspapers kept the propaganda in full swing. =The European War Disturbs American Commerce.=--This battle of wits, or rather contest in calumny, might have gone on indefinitely in America without producing any serious results, had it not been for the war between England and France, then raging. The English, having command of the seas, claimed the right to seize American produce bound for French ports and to confiscate American ships engaged in carrying French goods. Adding fuel to a fire already hot enough, they began to search American ships and to carry off British-born sailors found on board American vessels. =The French Appeal for Help.=--At the same time the French Republic turned to the United States for aid in its war on England and sent over as its diplomatic representative "Citizen" Genet, an ardent supporter of the new order. On his arrival at Charleston, he was greeted with fervor by the Anti-Federalists. As he made his way North, he was wined and dined and given popular ovations that turned his head. He thought the whole country was ready to join the French Republic in its contest with England. Genet therefore attempted to use the American ports as the base of operations for French privateers preying on British merchant ships; and he insisted that the United States was in honor bound to help France under the treaty of 1778. =The Proclamation of Neutrality and the Jay Treaty.=--Unmoved by the rising tide of popular sympathy for France, Washington took a firm course. He received Genet coldly. The demand that the United States aid France under the old treaty of alliance he answered by proclaiming the neutrality of America and warning American citizens against hostile acts toward either France or England. When Genet continued to hold meetings, issue manifestoes, and stir up the people against England, Washington asked the French government to recall him. This act he followed up by sending the Chief Justice, John Jay, on a pacific mission to England. The result was the celebrated Jay treaty of 1794. By its terms Great Britain agreed to withdraw her troops from the western forts where they had been since the war for independence and to grant certain slight trade concessions. The chief sources of bitterness--the failure of the British to return slaves carried off during the Revolution, the seizure of American ships, and the impressment of sailors--were not touched, much to the distress of everybody in America, including loyal Federalists. Nevertheless, Washington, dreading an armed conflict with England, urged the Senate to ratify the treaty. The weight of his influence carried the day. At this, the hostility of the Anti-Federalists knew no bounds. Jefferson declared the Jay treaty "an infamous act which is really nothing more than an alliance between England and the Anglo-men of this country, against the legislature and the people of the United States." Hamilton, defending it with his usual courage, was stoned by a mob in New York and driven from the platform with blood streaming from his face. Jay was burned in effigy. Even Washington was not spared. The House of Representatives was openly hostile. To display its feelings, it called upon the President for the papers relative to the treaty negotiations, only to be more highly incensed by his flat refusal to present them, on the ground that the House did not share in the treaty-making power. =Washington Retires from Politics.=--Such angry contests confirmed the President in his slowly maturing determination to retire at the end of his second term in office. He did not believe that a third term was unconstitutional or improper; but, worn out by his long and arduous labors in war and in peace and wounded by harsh attacks from former friends, he longed for the quiet of his beautiful estate at Mount Vernon. In September, 1796, on the eve of the presidential election, Washington issued his Farewell Address, another state paper to be treasured and read by generations of Americans to come. In this address he directed the attention of the people to three subjects of lasting interest. He warned them against sectional jealousies. He remonstrated against the spirit of partisanship, saying that in government "of the popular character, in government purely elective, it is a spirit not to be encouraged." He likewise cautioned the people against "the insidious wiles of foreign influence," saying: "Europe has a set of primary interests which to us have none or a very remote relation. Hence she must be engaged in frequent controversies, the causes of which are essentially foreign to our concerns. Hence, therefore, it would be unwise in us to implicate ourselves, by artificial ties, in the ordinary vicissitudes of her politics or the ordinary combinations and collisions of her friendships or enmities.... Why forego the advantages of so peculiar a situation?... It is our true policy to steer clear of permanent alliances with any portion of the foreign world.... Taking care always to keep ourselves, by suitable establishments, on a respectable defensive posture, we may safely trust to temporary alliances for extraordinary emergencies." =The Campaign of 1796--Adams Elected.=--On hearing of the retirement of Washington, the Anti-Federalists cast off all restraints. In honor of France and in opposition to what they were pleased to call the monarchical tendencies of the Federalists, they boldly assumed the name "Republican"; the term "Democrat," then applied only to obscure and despised radicals, had not come into general use. They selected Jefferson as their candidate for President against John Adams, the Federalist nominee, and carried on such a spirited campaign that they came within four votes of electing him. The successful candidate, Adams, was not fitted by training or opinion for conciliating a determined opposition. He was a reserved and studious man. He was neither a good speaker nor a skillful negotiator. In one of his books he had declared himself in favor of "government by an aristocracy of talents and wealth"--an offense which the Republicans never forgave. While John Marshall found him "a sensible, plain, candid, good-tempered man," Jefferson could see in him nothing but a "monocrat" and "Anglo-man." Had it not been for the conduct of the French government, Adams would hardly have enjoyed a moment's genuine popularity during his administration. =The Quarrel with France.=--The French Directory, the executive department established under the constitution of 1795, managed, however, to stir the anger of Republicans and Federalists alike. It regarded the Jay treaty as a rebuke to France and a flagrant violation of obligations solemnly registered in the treaty of 1778. Accordingly it refused to receive the American minister, treated him in a humiliating way, and finally told him to leave the country. Overlooking this affront in his anxiety to maintain peace, Adams dispatched to France a commission of eminent men with instructions to reach an understanding with the French Republic. On their arrival, they were chagrined to find, instead of a decent reception, an indirect demand for an apology respecting the past conduct of the American government, a payment in cash, and an annual tribute as the price of continued friendship. When the news of this affair reached President Adams, he promptly laid it before Congress, referring to the Frenchmen who had made the demands as "Mr. X, Mr. Y, and Mr. Z." This insult, coupled with the fact that French privateers, like the British, were preying upon American commerce, enraged even the Republicans who had been loudest in the profession of their French sympathies. They forgot their wrath over the Jay treaty and joined with the Federalists in shouting: "Millions for defense, not a cent for tribute!" Preparations for war were made on every hand. Washington was once more called from Mount Vernon to take his old position at the head of the army. Indeed, fighting actually began upon the high seas and went on without a formal declaration of war until the year 1800. By that time the Directory had been overthrown. A treaty was readily made with Napoleon, the First Consul, who was beginning his remarkable career as chief of the French Republic, soon to be turned into an empire. =Alien and Sedition Laws.=--Flushed with success, the Federalists determined, if possible, to put an end to radical French influence in America and to silence Republican opposition. They therefore passed two drastic laws in the summer of 1798: the Alien and Sedition Acts. The first of these measures empowered the President to expel from the country or to imprison any alien whom he regarded as "dangerous" or "had reasonable grounds to suspect" of "any treasonable or secret machinations against the government." The second of the measures, the Sedition Act, penalized not only those who attempted to stir up unlawful combinations against the government but also every one who wrote, uttered, or published "any false, scandalous, and malicious writing ... against the government of the United States or either House of Congress, or the President of the United States, with intent to defame said government ... or to bring them or either of them into contempt or disrepute." This measure was hurried through Congress in spite of the opposition and the clear provision in the Constitution that Congress shall make no law abridging the freedom of speech or of the press. Even many Federalists feared the consequences of the action. Hamilton was alarmed when he read the bill, exclaiming: "Let us not establish a tyranny. Energy is a very different thing from violence." John Marshall told his friends in Virginia that, had he been in Congress, he would have opposed the two bills because he thought them "useless" and "calculated to create unnecessary discontents and jealousies." The Alien law was not enforced; but it gave great offense to the Irish and French whose activities against the American government's policy respecting Great Britain put them in danger of prison. The Sedition law, on the other hand, was vigorously applied. Several editors of Republican newspapers soon found themselves in jail or broken by ruinous fines for their caustic criticisms of the Federalist President and his policies. Bystanders at political meetings, who uttered sentiments which, though ungenerous and severe, seem harmless enough now, were hurried before Federalist judges and promptly fined and imprisoned. Although the prosecutions were not numerous, they aroused a keen resentment. The Republicans were convinced that their political opponents, having saddled upon the country Hamilton's fiscal system and the British treaty, were bent on silencing all censure. The measures therefore had exactly the opposite effect from that which their authors intended. Instead of helping the Federalist party, they made criticism of it more bitter than ever. =The Kentucky and Virginia Resolutions.=--Jefferson was quick to take advantage of the discontent. He drafted a set of resolutions declaring the Sedition law null and void, as violating the federal Constitution. His resolutions were passed by the Kentucky legislature late in 1798, signed by the governor, and transmitted to the other states for their consideration. Though receiving unfavorable replies from a number of Northern states, Kentucky the following year reaffirmed its position and declared that the nullification of all unconstitutional acts of Congress was the rightful remedy to be used by the states in the redress of grievances. It thus defied the federal government and announced a doctrine hostile to nationality and fraught with terrible meaning for the future. In the neighboring state of Virginia, Madison led a movement against the Alien and Sedition laws. He induced the legislature to pass resolutions condemning the acts as unconstitutional and calling upon the other states to take proper means to preserve their rights and the rights of the people. =The Republican Triumph in 1800.=--Thus the way was prepared for the election of 1800. The Republicans left no stone unturned in their efforts to place on the Federalist candidate, President Adams, all the odium of the Alien and Sedition laws, in addition to responsibility for approving Hamilton's measures and policies. The Federalists, divided in councils and cold in their affection for Adams, made a poor campaign. They tried to discredit their opponents with epithets of "Jacobins" and "Anarchists"--terms which had been weakened by excessive use. When the vote was counted, it was found that Adams had been defeated; while the Republicans had carried the entire South and New York also and secured eight of the fifteen electoral votes cast by Pennsylvania. "Our beloved Adams will now close his bright career," lamented a Federalist newspaper. "Sons of faction, demagogues and high priests of anarchy, now you have cause to triumph!" [Illustration: _An old cartoon_ A QUARREL BETWEEN A FEDERALIST AND A REPUBLICAN IN THE HOUSE OF REPRESENTATIVES] Jefferson's election, however, was still uncertain. By a curious provision in the Constitution, presidential electors were required to vote for two persons without indicating which office each was to fill, the one receiving the highest number of votes to be President and the candidate standing next to be Vice President. It so happened that Aaron Burr, the Republican candidate for Vice President, had received the same number of votes as Jefferson; as neither had a majority the election was thrown into the House of Representatives, where the Federalists held the balance of power. Although it was well known that Burr was not even a candidate for President, his friends and many Federalists began intriguing for his election to that high office. Had it not been for the vigorous action of Hamilton the prize might have been snatched out of Jefferson's hands. Not until the thirty-sixth ballot on February 17, 1801, was the great issue decided in his favor.[2] =References= J.S. Bassett, _The Federalist System_ (American Nation Series). C.A. Beard, _Economic Origins of Jeffersonian Democracy_. H. Lodge, _Alexander Hamilton_. J.T. Morse, _Thomas Jefferson_. =Questions= 1. Who were the leaders in the first administration under the Constitution? 2. What step was taken to appease the opposition? 3. Enumerate Hamilton's great measures and explain each in detail. 4. Show the connection between the parts of Hamilton's system. 5. Contrast the general political views of Hamilton and Jefferson. 6. What were the important results of the "peaceful" French Revolution (1789-92)? 7. Explain the interaction of opinion between France and the United States. 8. How did the "Reign of Terror" change American opinion? 9. What was the Burke-Paine controversy? 10. Show how the war in Europe affected American commerce and involved America with England and France. 11. What were American policies with regard to each of those countries? 12. What was the outcome of the Alien and Sedition Acts? =Research Topics= =Early Federal Legislation.=--Coman, _Industrial History of the United States_, pp. 133-156; Elson, _History of the United States_, pp. 341-348. =Hamilton's Report on Public Credit.=--Macdonald, _Documentary Source Book_, pp. 233-243. =The French Revolution.=--Robinson and Beard, _Development of Modern Europe_, Vol. I, pp. 224-282; Elson, pp. 351-354. =The Burke-Paine Controversy.=--Make an analysis of Burke's _Reflections on the French Revolution_ and Paine's _Rights of Man_. =The Alien and Sedition Acts.=--Macdonald, _Documentary Source Book_, pp. 259-267; Elson, pp. 367-375. =Kentucky and Virginia Resolutions.=--Macdonald, pp. 267-278. =Source Studies.=--Materials in Hart, _American History Told by Contemporaries_, Vol. III, pp. 255-343. =Biographical Studies.=--Alexander Hamilton, John Adams, Thomas Jefferson, and Albert Gallatin. =The Twelfth Amendment.=--Contrast the provision in the original Constitution with the terms of the Amendment. _See_ Appendix. FOOTNOTES: [1] North Carolina ratified in November, 1789, and Rhode Island in May, 1790. [2] To prevent a repetition of such an unfortunate affair, the twelfth amendment of the Constitution was adopted in 1804, changing slightly the method of electing the President. CHAPTER IX THE JEFFERSONIAN REPUBLICANS IN POWER REPUBLICAN PRINCIPLES AND POLICIES =Opposition to Strong Central Government.=--Cherishing especially the agricultural interest, as Jefferson said, the Republicans were in the beginning provincial in their concern and outlook. Their attachment to America was, certainly, as strong as that of Hamilton; but they regarded the state, rather than the national government, as the proper center of power and affection. Indeed, a large part of the rank and file had been among the opponents of the Constitution in the days of its adoption. Jefferson had entertained doubts about it and Monroe, destined to be the fifth President, had been one of the bitter foes of ratification. The former went so far in the direction of local autonomy that he exalted the state above the nation in the Kentucky resolutions of 1798, declaring the Constitution to be a mere compact and the states competent to interpret and nullify federal law. This was provincialism with a vengeance. "It is jealousy, not confidence, which prescribes limited constitutions," wrote Jefferson for the Kentucky legislature. Jealousy of the national government, not confidence in it--this is the ideal that reflected the provincial and agricultural interest. =Republican Simplicity.=--Every act of the Jeffersonian party during its early days of power was in accord with the ideals of government which it professed. It had opposed all pomp and ceremony, calculated to give weight and dignity to the chief executive of the nation, as symbols of monarchy and high prerogative. Appropriately, therefore, Jefferson's inauguration on March 4, 1801, the first at the new capital at Washington, was marked by extreme simplicity. In keeping with this procedure he quit the practice, followed by Washington and Adams, of reading presidential addresses to Congress in joint assembly and adopted in its stead the plan of sending his messages in writing--a custom that was continued unbroken until 1913 when President Wilson returned to the example set by the first chief magistrate. =Republican Measures.=--The Republicans had complained of a great national debt as the source of a dangerous "money power," giving strength to the federal government; accordingly they began to pay it off as rapidly as possible. They had held commerce in low esteem and looked upon a large navy as a mere device to protect it; consequently they reduced the number of warships. They had objected to excise taxes, particularly on whisky; these they quickly abolished, to the intense satisfaction of the farmers. They had protested against the heavy cost of the federal government; they reduced expenses by discharging hundreds of men from the army and abolishing many offices. They had savagely criticized the Sedition law and Jefferson refused to enforce it. They had been deeply offended by the assault on freedom of speech and press and they promptly impeached Samuel Chase, a justice of the Supreme Court, who had been especially severe in his attacks upon offenders under the Sedition Act. Their failure to convict Justice Chase by a narrow margin was due to no lack of zeal on their part but to the Federalist strength in the Senate where the trial was held. They had regarded the appointment of a large number of federal judges during the last hours of Adams' administration as an attempt to intrench Federalists in the judiciary and to enlarge the sphere of the national government. Accordingly, they at once repealed the act creating the new judgeships, thus depriving the "midnight appointees" of their posts. They had considered the federal offices, civil and military, as sources of great strength to the Federalists and Jefferson, though committed to the principle that offices should be open to all and distributed according to merit, was careful to fill most of the vacancies as they occurred with trusted Republicans. To his credit, however, it must be said that he did not make wholesale removals to find room for party workers. The Republicans thus hewed to the line of their general policy of restricting the weight, dignity, and activity of the national government. Yet there were no Republicans, as the Federalists asserted, prepared to urge serious modifications in the Constitution. "If there be any among us who wish to dissolve this union or to change its republican form," wrote Jefferson in his first inaugural, "let them stand undisturbed as monuments of the safety with which error of opinion may be tolerated where reason is left free to combat it." After reciting the fortunate circumstances of climate, soil, and isolation which made the future of America so full of promise, Jefferson concluded: "A wise and frugal government which shall restrain men from injuring one another, shall leave them otherwise free to regulate their own pursuits of industry and improvement and shall not take from the mouth of labour the bread it has earned. This is the sum of good government; and this is necessary to close the circle of our felicities." In all this the Republicans had not reckoned with destiny. In a few short years that lay ahead it was their fate to double the territory of the country, making inevitable a continental nation; to give the Constitution a generous interpretation that shocked many a Federalist; to wage war on behalf of American commerce; to reestablish the hated United States Bank; to enact a high protective tariff; to see their Federalist opponents in their turn discredited as nullifiers and provincials; to announce high national doctrines in foreign affairs; and to behold the Constitution exalted and defended against the pretensions of states by a son of old Virginia, John Marshall, Chief Justice of the Supreme Court of the United States. THE REPUBLICANS AND THE GREAT WEST =Expansion and Land Hunger.=--The first of the great measures which drove the Republicans out upon this new national course--the purchase of the Louisiana territory--was the product of circumstances rather than of their deliberate choosing. It was not the lack of land for his cherished farmers that led Jefferson to add such an immense domain to the original possessions of the United States. In the Northwest territory, now embracing Ohio, Indiana, Illinois, Michigan, Wisconsin, and a portion of Minnesota, settlements were mainly confined to the north bank of the Ohio River. To the south, in Kentucky and Tennessee, where there were more than one hundred thousand white people who had pushed over the mountains from Virginia and the Carolinas, there were still wide reaches of untilled soil. The Alabama and Mississippi regions were vast Indian frontiers of the state of Georgia, unsettled and almost unexplored. Even to the wildest imagination there seemed to be territory enough to satisfy the land hunger of the American people for a century to come. =The Significance of the Mississippi River.=--At all events the East, then the center of power, saw no good reason for expansion. The planters of the Carolinas, the manufacturers of Pennsylvania, the importers of New York, the shipbuilders of New England, looking to the seaboard and to Europe for trade, refinements, and sometimes their ideas of government, were slow to appreciate the place of the West in national economy. The better educated the Easterners were, the less, it seems, they comprehended the destiny of the nation. Sons of Federalist fathers at Williams College, after a long debate decided by a vote of fifteen to one that the purchase of Louisiana was undesirable. On the other hand, the pioneers of Kentucky, Ohio, and Tennessee, unlearned in books, saw with their own eyes the resources of the wilderness. Many of them had been across the Mississippi and had beheld the rich lands awaiting the plow of the white man. Down the great river they floated their wheat, corn, and bacon to ocean-going ships bound for the ports of the seaboard or for Europe. The land journeys over the mountain barriers with bulky farm produce, they knew from experience, were almost impossible, and costly at best. Nails, bolts of cloth, tea, and coffee could go or come that way, but not corn and bacon. A free outlet to the sea by the Mississippi was as essential to the pioneers of the Kentucky region as the harbor of Boston to the merchant princes of that metropolis. =Louisiana under Spanish Rule.=--For this reason they watched with deep solicitude the fortunes of the Spanish king to whom, at the close of the Seven Years' War, had fallen the Louisiana territory stretching from New Orleans to the Rocky Mountains. While he controlled the mouth of the Mississippi there was little to fear, for he had neither the army nor the navy necessary to resist any invasion of American trade. Moreover, Washington had been able, by the exercise of great tact, to secure from Spain in 1795 a trading privilege through New Orleans which satisfied the present requirements of the frontiersmen even if it did not allay their fears for the future. So things stood when a swift succession of events altered the whole situation. =Louisiana Transferred to France.=--In July, 1802, a royal order from Spain instructed the officials at New Orleans to close the port to American produce. About the same time a disturbing rumor, long current, was confirmed--Napoleon had coerced Spain into returning Louisiana to France by a secret treaty signed in 1800. "The scalers of the Alps and conquerors of Venice" now looked across the sea for new scenes of adventure. The West was ablaze with excitement. A call for war ran through the frontier; expeditions were organized to prevent the landing of the French; and petitions for instant action flooded in upon Jefferson. =Jefferson Sees the Danger.=--Jefferson, the friend of France and sworn enemy of England, compelled to choose in the interest of America, never winced. "The cession of Louisiana and the Floridas by Spain to France," he wrote to Livingston, the American minister in Paris, "works sorely on the United States. It completely reverses all the political relations of the United States and will form a new epoch in our political course.... There is on the globe one single spot, the possessor of which is our natural and habitual enemy. It is New Orleans through which the produce of three-eighths of our territory must pass to market.... France, placing herself in that door, assumes to us an attitude of defiance. Spain might have retained it quietly for years. Her pacific dispositions, her feeble state would induce her to increase our facilities there.... Not so can it ever be in the hands of France.... The day that France takes possession of New Orleans fixes the sentence which is to restrain her forever within her low water mark.... It seals the union of the two nations who in conjunction can maintain exclusive possession of the ocean. From that moment we must marry ourselves to the British fleet and nation.... This is not a state of things we seek or desire. It is one which this measure, if adopted by France, forces on us as necessarily as any other cause by the laws of nature brings on its necessary effect." =Louisiana Purchased.=--Acting on this belief, but apparently seeing only the Mississippi outlet at stake, Jefferson sent his friend, James Monroe, to France with the power to buy New Orleans and West Florida. Before Monroe arrived, the regular minister, Livingston, had already convinced Napoleon that it would be well to sell territory which might be wrested from him at any moment by the British sea power, especially as the war, temporarily stopped by the peace of Amiens, was once more raging in Europe. Wise as he was in his day, Livingston had at first no thought of buying the whole Louisiana country. He was simply dazed when Napoleon offered to sell the entire domain and get rid of the business altogether. Though staggered by the proposal, he and Monroe decided to accept. On April 30, they signed the treaty of cession, agreeing to pay $11,250,000 in six per cent bonds and to discharge certain debts due French citizens, making in all approximately fifteen millions. Spain protested, Napoleon's brother fumed, French newspapers objected; but the deed was done. =Jefferson and His Constitutional Scruples.=--When the news of this extraordinary event reached the United States, the people were filled with astonishment, and no one was more surprised than Jefferson himself. He had thought of buying New Orleans and West Florida for a small sum, and now a vast domain had been dumped into the lap of the nation. He was puzzled. On looking into the Constitution he found not a line authorizing the purchase of more territory and so he drafted an amendment declaring "Louisiana, as ceded by France,--a part of the United States." He had belabored the Federalists for piling up a big national debt and he could hardly endure the thought of issuing more bonds himself. In the midst of his doubts came the news that Napoleon might withdraw from the bargain. Thoroughly alarmed by that, Jefferson pressed the Senate for a ratification of the treaty. He still clung to his original idea that the Constitution did not warrant the purchase; but he lamely concluded: "If our friends shall think differently, I shall certainly acquiesce with satisfaction; confident that the good sense of our country will correct the evil of construction when it shall produce ill effects." Thus the stanch advocate of "strict interpretation" cut loose from his own doctrine and intrusted the construction of the Constitution to "the good sense" of his countrymen. =The Treaty Ratified.=--This unusual transaction, so favorable to the West, aroused the ire of the seaboard Federalists. Some denounced it as unconstitutional, easily forgetting Hamilton's masterly defense of the bank, also not mentioned in the Constitution. Others urged that, if "the howling wilderness" ever should be settled, it would turn against the East, form new commercial connections, and escape from federal control. Still others protested that the purchase would lead inevitably to the dominance of a "hotch potch of wild men from the Far West." Federalists, who thought "the broad back of America" could readily bear Hamilton's consolidated debt, now went into agonies over a bond issue of less than one-sixth of that amount. But in vain. Jefferson's party with a high hand carried the day. The Senate, after hearing the Federalist protest, ratified the treaty. In December, 1803, the French flag was hauled down from the old government buildings in New Orleans and the Stars and Stripes were hoisted as a sign that the land of Coronado, De Soto, Marquette, and La Salle had passed forever to the United States. [Illustration: THE UNITED STATES IN 1805] By a single stroke, the original territory of the United States was more than doubled. While the boundaries of the purchase were uncertain, it is safe to say that the Louisiana territory included what is now Arkansas, Missouri, Iowa, Oklahoma, Kansas, Nebraska, South Dakota, and large portions of Louisiana, Minnesota, North Dakota, Colorado, Montana, and Wyoming. The farm lands that the friends of "a little America" on the seacoast declared a hopeless wilderness were, within a hundred years, fully occupied and valued at nearly seven billion dollars--almost five hundred times the price paid to Napoleon. =Western Explorations.=--Having taken the fateful step, Jefferson wisely began to make the most of it. He prepared for the opening of the new country by sending the Lewis and Clark expedition to explore it, discover its resources, and lay out an overland route through the Missouri Valley and across the Great Divide to the Pacific. The story of this mighty exploit, which began in the spring of 1804 and ended in the autumn of 1806, was set down with skill and pains in the journal of Lewis and Clark; when published even in a short form, it invited the forward-looking men of the East to take thought about the western empire. At the same time Zebulon Pike, in a series of journeys, explored the sources of the Mississippi River and penetrated the Spanish territories of the far Southwest. Thus scouts and pioneers continued the work of diplomats. THE REPUBLICAN WAR FOR COMMERCIAL INDEPENDENCE =The English and French Blockades.=--In addition to bringing Louisiana to the United States, the reopening of the European War in 1803, after a short lull, renewed in an acute form the commercial difficulties that had plagued the country all during the administrations of Washington and Adams. The Republicans were now plunged into the hornets' nest. The party whose ardent spirits had burned Jay in effigy, stoned Hamilton for defending his treaty, jeered Washington's proclamation of neutrality, and spoken bitterly of "timid traders," could no longer take refuge in criticism. It had to act. Its troubles took a serious turn in 1806. England, in a determined effort to bring France to her knees by starvation, declared the coast of Europe blockaded from Brest to the mouth of the Elbe River. Napoleon retaliated by his Berlin Decree of November, 1806, blockading the British Isles--a measure terrifying to American ship owners whose vessels were liable to seizure by any French rover, though Napoleon had no navy to make good his proclamation. Great Britain countered with a still more irritating decree--the Orders in Council of 1807. It modified its blockade, but in so doing merely authorized American ships not carrying munitions of war to complete their voyage to the Continent, on condition of their stopping at a British port, securing a license, and paying a tax. This, responded Napoleon, was the height of insolence, and he denounced it as a gross violation of international law. He then closed the circle of American troubles by issuing his Milan Decree of December, 1807. This order declared that any ship which complied with the British rules would be subject to seizure and confiscation by French authorities. =The Impressment of Seamen.=--That was not all. Great Britain, in dire need of men for her navy, adopted the practice of stopping American ships, searching them, and carrying away British-born sailors found on board. British sailors were so badly treated, so cruelly flogged for trivial causes, and so meanly fed that they fled in crowds to the American marine. In many cases it was difficult to tell whether seamen were English or American. They spoke the same language, so that language was no test. Rovers on the deep and stragglers in the ports of both countries, they frequently had no papers to show their nativity. Moreover, Great Britain held to the old rule--"Once an Englishman, always an Englishman"--a doctrine rejected by the United States in favor of the principle that a man could choose the nation to which he would give allegiance. British sea captains, sometimes by mistake, and often enough with reckless indifference, carried away into servitude in their own navy genuine American citizens. The process itself, even when executed with all the civilities of law, was painful enough, for it meant that American ships were forced to "come to," and compelled to rest submissively under British guns until the searching party had pried into records, questioned seamen, seized and handcuffed victims. Saints could not have done this work without raising angry passions, and only saints could have endured it with patience and fortitude. Had the enactment of the scenes been confined to the high seas and knowledge of them to rumors and newspaper stories, American resentment might not have been so intense; but many a search and seizure was made in sight of land. British and French vessels patrolled the coasts, firing on one another and chasing one another in American waters within the three-mile limit. When, in the summer of 1807, the American frigate _Chesapeake_ refused to surrender men alleged to be deserters from King George's navy, the British warship _Leopard_ opened fire, killing three men and wounding eighteen more--an act which even the British ministry could hardly excuse. If the French were less frequently the offenders, it was not because of their tenderness about American rights but because so few of their ships escaped the hawk-eyed British navy to operate in American waters. =The Losses in American Commerce.=--This high-handed conduct on the part of European belligerents was very injurious to American trade. By their enterprise, American shippers had become the foremost carriers on the Atlantic Ocean. In a decade they had doubled the tonnage of American merchant ships under the American flag, taking the place of the French marine when Britain swept that from the seas, and supplying Britain with the sinews of war for the contest with the Napoleonic empire. The American shipping engaged in foreign trade embraced 363,110 tons in 1791; 669,921 tons in 1800; and almost 1,000,000 tons in 1810. Such was the enterprise attacked by the British and French decrees. American ships bound for Great Britain were liable to be captured by French privateers which, in spite of the disasters of the Nile and Trafalgar, ranged the seas. American ships destined for the Continent, if they failed to stop at British ports and pay tribute, were in great danger of capture by the sleepless British navy and its swarm of auxiliaries. American sea captains who, in fear of British vengeance, heeded the Orders in Council and paid the tax were almost certain to fall a prey to French vengeance, for the French were vigorous in executing the Milan Decree. =Jefferson's Policy.=--The President's dilemma was distressing. Both the belligerents in Europe were guilty of depredations on American commerce. War on both of them was out of the question. War on France was impossible because she had no territory on this side of the water which could be reached by American troops and her naval forces had been shattered at the battles of the Nile and Trafalgar. War on Great Britain, a power which Jefferson's followers feared and distrusted, was possible but not inviting. Jefferson shrank from it. A man of peace, he disliked war's brazen clamor; a man of kindly spirit, he was startled at the death and destruction which it brought in its train. So for the eight years Jefferson steered an even course, suggesting measure after measure with a view to avoiding bloodshed. He sent, it is true, Commodore Preble in 1803 to punish Mediterranean pirates preying upon American commerce; but a great war he evaded with passionate earnestness, trying in its place every other expedient to protect American rights. =The Embargo and Non-intercourse Acts.=--In 1806, Congress passed and Jefferson approved a non-importation act closing American ports to certain products from British dominions--a measure intended as a club over the British government's head. This law, failing in its purpose, Jefferson proposed and Congress adopted in December, 1807, the Embargo Act forbidding all vessels to leave American harbors for foreign ports. France and England were to be brought to terms by cutting off their supplies. The result of the embargo was pathetic. England and France refused to give up search and seizure. American ship owners who, lured by huge profits, had formerly been willing to take the risk were now restrained by law to their home ports. Every section suffered. The South and West found their markets for cotton, rice, tobacco, corn, and bacon curtailed. Thus they learned by bitter experience the national significance of commerce. Ship masters, ship builders, longshoremen, and sailors were thrown out of employment while the prices of foreign goods doubled. Those who obeyed the law were ruined; violators of the law smuggled goods into Canada and Florida for shipment abroad. Jefferson's friends accepted the medicine with a wry face as the only alternative to supine submission or open war. His opponents, without offering any solution of their own, denounced it as a contemptible plan that brought neither relief nor honor. Beset by the clamor that arose on all sides, Congress, in the closing days of Jefferson's administration, repealed the Embargo law and substituted a Non-intercourse act forbidding trade with England and France while permitting it with other countries--a measure equally futile in staying the depredations on American shipping. =Jefferson Retires in Favor of Madison.=--Jefferson, exhausted by endless wrangling and wounded, as Washington had been, by savage criticism, welcomed March 4, 1809. His friends urged him to "stay by the ship" and accept a third term. He declined, saying that election for life might result from repeated reelection. In following Washington's course and defending it on principle, he set an example to all his successors, making the "third term doctrine" a part of American unwritten law. His intimate friend, James Madison, to whom he turned over the burdens of his high office was, like himself, a man of peace. Madison had been a leader since the days of the Revolution, but in legislative halls and council chambers, not on the field of battle. Small in stature, sensitive in feelings, studious in habits, he was no man for the rough and tumble of practical politics. He had taken a prominent and distinguished part in the framing and the adoption of the Constitution. He had served in the first Congress as a friend of Hamilton's measures. Later he attached himself to Jefferson's fortunes and served for eight years as his first counselor, the Secretary of State. The principles of the Constitution, which he had helped to make and interpret, he was now as President called upon to apply in one of the most perplexing moments in all American history. In keeping with his own traditions and following in the footsteps of Jefferson, he vainly tried to solve the foreign problem by negotiation. =The Trend of Events.=--Whatever difficulties Madison had in making up his mind on war and peace were settled by events beyond his own control. In the spring of 1811, a British frigate held up an American ship near the harbor of New York and impressed a seaman alleged to be an American citizen. Burning with resentment, the captain of the _President_, an American warship, acting under orders, poured several broadsides into the _Little Belt_, a British sloop, suspected of being the guilty party. The British also encouraged the Indian chief Tecumseh, who welded together the Indians of the Northwest under British protection and gave signs of restlessness presaging a revolt. This sent a note of alarm along the frontier that was not checked even when, in November, Tecumseh's men were badly beaten at Tippecanoe by William Henry Harrison. The Indians stood in the way of the advancing frontier, and it seemed to the pioneers that, without support from the British in Canada, the Red Men would soon be subdued. =Clay and Calhoun.=--While events were moving swiftly and rumors were flying thick and fast, the mastery of the government passed from the uncertain hands of Madison to a party of ardent young men in Congress, dubbed "Young Republicans," under the leadership of two members destined to be mighty figures in American history: Henry Clay of Kentucky and John C. Calhoun of South Carolina. The former contended, in a flair of folly, that "the militia of Kentucky alone are competent to place Montreal and Upper Canada at your feet." The latter with a light heart spoke of conquering Canada in a four weeks' campaign. "It must not be inferred," says Channing, "that in advocating conquest, the Westerners were actuated merely by desire for land; they welcomed war because they thought it would be the easiest way to abate Indian troubles. The savages were supported by the fur-trading interests that centred at Quebec and London.... The Southerners on their part wished for Florida and they thought that the conquest of Canada would obviate some Northern opposition to this acquisition of slave territory." While Clay and Calhoun, spokesmen of the West and South, were not unmindful of what Napoleon had done to American commerce, they knew that their followers still remembered with deep gratitude the aid of the French in the war for independence and that the embers of the old hatred for George III, still on the throne, could be readily blown into flame. =Madison Accepts War as Inevitable.=--The conduct of the British ministers with whom Madison had to deal did little to encourage him in adhering to the policy of "watchful waiting." One of them, a high Tory, believed that all Americans were alike "except that a few are less knaves than others" and his methods were colored by his belief. On the recall of this minister the British government selected another no less high and mighty in his principles and opinions. So Madison became thoroughly discouraged about the outcome of pacific measures. When the pressure from Congress upon him became too heavy, he gave way, signing on June 18, 1812, the declaration of war on Great Britain. In proclaiming hostilities, the administration set forth the causes which justified the declaration; namely, the British had been encouraging the Indians to attack American citizens on the frontier; they had ruined American trade by blockades; they had insulted the American flag by stopping and searching our ships; they had illegally seized American sailors and driven them into the British navy. =The Course of the War.=--The war lasted for nearly three years without bringing victory to either side. The surrender of Detroit by General Hull to the British and the failure of the American invasion of Canada were offset by Perry's victory on Lake Erie and a decisive blow administered to British designs for an invasion of New York by way of Plattsburgh. The triumph of Jackson at New Orleans helped to atone for the humiliation suffered in the burning of the Capitol by the British. The stirring deeds of the _Constitution_, the _United States_, and the _Argus_ on the seas, the heroic death of Lawrence and the victories of a hundred privateers furnished consolation for those who suffered from the iron blockade finally established by the British government when it came to appreciate the gravity of the situation. While men love the annals of the sea, they will turn to the running battles, the narrow escapes, and the reckless daring of American sailors in that naval contest with Great Britain. All this was exciting but it was inconclusive. In fact, never was a government less prepared than was that of the United States in 1812. It had neither the disciplined troops, the ships of war, nor the supplies required by the magnitude of the military task. It was fortune that favored the American cause. Great Britain, harassed, worn, and financially embarrassed by nearly twenty years of fighting in Europe, was in no mood to gather her forces for a titanic effort in America even after Napoleon was overthrown and sent into exile at Elba in the spring of 1814. War clouds still hung on the European horizon and the conflict temporarily halted did again break out. To be rid of American anxieties and free for European eventualities, England was ready to settle with the United States, especially as that could be done without conceding anything or surrendering any claims. =The Treaty of Peace.=--Both countries were in truth sick of a war that offered neither glory nor profit. Having indulged in the usual diplomatic skirmishing, they sent representatives to Ghent to discuss terms of peace. After long negotiations an agreement was reached on Christmas eve, 1814, a few days before Jackson's victory at New Orleans. When the treaty reached America the people were surprised to find that it said nothing about the seizure of American sailors, the destruction of American trade, the searching of American ships, or the support of Indians on the frontier. Nevertheless, we are told, the people "passed from gloom to glory" when the news of peace arrived. The bells were rung; schools were closed; flags were displayed; and many a rousing toast was drunk in tavern and private home. The rejoicing could continue. With Napoleon definitely beaten at Waterloo in June, 1815, Great Britain had no need to impress sailors, search ships, and confiscate American goods bound to the Continent. Once more the terrible sea power sank into the background and the ocean was again white with the sails of merchantmen. THE REPUBLICANS NATIONALIZED =The Federalists Discredited.=--By a strange turn of fortune's wheel, the party of Hamilton, Washington, Adams, the party of the grand nation, became the party of provincialism and nullification. New England, finding its shipping interests crippled in the European conflict and then penalized by embargoes, opposed the declaration of war on Great Britain, which meant the completion of the ruin already begun. In the course of the struggle, the Federalist leaders came perilously near to treason in their efforts to hamper the government of the United States; and in their desperation they fell back upon the doctrine of nullification so recently condemned by them when it came from Kentucky. The Senate of Massachusetts, while the war was in progress, resolved that it was waged "without justifiable cause," and refused to approve military and naval projects not connected with "the defense of our seacoast and soil." A Boston newspaper declared that the union was nothing but a treaty among sovereign states, that states could decide for themselves the question of obeying federal law, and that armed resistance under the banner of a state would not be rebellion or treason. The general assembly of Connecticut reminded the administration at Washington that "the state of Connecticut is a free, sovereign, and independent state." Gouverneur Morris, a member of the convention which had drafted the Constitution, suggested the holding of another conference to consider whether the Northern states should remain in the union. [Illustration: _From an old cartoon_ NEW ENGLAND JUMPING INTO THE HANDS OF GEORGE III] In October, 1814, a convention of delegates from Connecticut, Massachusetts, Rhode Island, and certain counties of New Hampshire and Vermont was held at Hartford, on the call of Massachusetts. The counsels of the extremists were rejected but the convention solemnly went on record to the effect that acts of Congress in violation of the Constitution are void; that in cases of deliberate, dangerous, and palpable infractions the state is duty bound to interpose its authority for the protection of its citizens; and that when emergencies occur the states must be their own judges and execute their own decisions. Thus New England answered the challenge of Calhoun and Clay. Fortunately its actions were not as rash as its words. The Hartford convention merely proposed certain amendments to the Constitution and adjourned. At the close of the war, its proposals vanished harmlessly; but the men who made them were hopelessly discredited. =The Second United States Bank.=--In driving the Federalists towards nullification and waging a national war themselves, the Republicans lost all their old taint of provincialism. Moreover, in turning to measures of reconstruction called forth by the war, they resorted to the national devices of the Federalists. In 1816, they chartered for a period of twenty years a second United States Bank--the institution which Jefferson and Madison once had condemned as unsound and unconstitutional. The Constitution remained unchanged; times and circumstances had changed. Calhoun dismissed the vexed question of constitutionality with a scant reference to an ancient dispute, while Madison set aside his scruples and signed the bill. =The Protective Tariff of 1816.=--The Republicans supplemented the Bank by another Federalist measure--a high protective tariff. Clay viewed it as the beginning of his "American system" of protection. Calhoun defended it on national principles. For this sudden reversal of policy the young Republicans were taunted by some of their older party colleagues with betraying the "agricultural interest" that Jefferson had fostered; but Calhoun refused to listen to their criticisms. "When the seas are open," he said, "the produce of the South may pour anywhere into the markets of the Old World.... What are the effects of a war with a maritime power--with England? Our commerce annihilated ... our agriculture cut off from its accustomed markets, the surplus of the farmer perishes on his hands.... The recent war fell with peculiar pressure on the growers of cotton and tobacco and the other great staples of the country; and the same state of things will recur in the event of another war unless prevented by the foresight of this body.... When our manufactures are grown to a certain perfection, as they soon will be under the fostering care of the government, we shall no longer experience these evils." With the Republicans nationalized, the Federalist party, as an organization, disappeared after a crushing defeat in the presidential campaign of 1816. =Monroe and the Florida Purchase.=--To the victor in that political contest, James Monroe of Virginia, fell two tasks of national importance, adding to the prestige of the whole country and deepening the sense of patriotism that weaned men away from mere allegiance to states. The first of these was the purchase of Florida from Spain. The acquisition of Louisiana let the Mississippi flow "unvexed to the sea"; but it left all the states east of the river cut off from the Gulf, affording them ground for discontent akin to that which had moved the pioneers of Kentucky to action a generation earlier. The uncertainty as to the boundaries of Louisiana gave the United States a claim to West Florida, setting on foot a movement for occupation. The Florida swamps were a basis for Indian marauders who periodically swept into the frontier settlements, and hiding places for runaway slaves. Thus the sanction of international law was given to punitive expeditions into alien territory. The pioneer leaders stood waiting for the signal. It came. President Monroe, on the occasion of an Indian outbreak, ordered General Jackson to seize the offenders, in the Floridas, if necessary. The high-spirited warrior, taking this as a hint that he was to occupy the coveted region, replied that, if possession was the object of the invasion, he could occupy the Floridas within sixty days. Without waiting for an answer to this letter, he launched his expedition, and in the spring of 1818 was master of the Spanish king's domain to the south. There was nothing for the king to do but to make the best of the inevitable by ceding the Floridas to the United States in return for five million dollars to be paid to American citizens having claims against Spain. On Washington's birthday, 1819, the treaty was signed. It ceded the Floridas to the United States and defined the boundary between Mexico and the United States by drawing a line from the mouth of the Sabine River in a northwesterly direction to the Pacific. On this occasion even Monroe, former opponent of the Constitution, forgot to inquire whether new territory could be constitutionally acquired and incorporated into the American union. The Republicans seemed far away from the days of "strict construction." And Jefferson still lived! =The Monroe Doctrine.=--Even more effective in fashioning the national idea was Monroe's enunciation of the famous doctrine that bears his name. The occasion was another European crisis. During the Napoleonic upheaval and the years of dissolution that ensued, the Spanish colonies in America, following the example set by their English neighbors in 1776, declared their independence. Unable to conquer them alone, the king of Spain turned for help to the friendly powers of Europe that looked upon revolution and republics with undisguised horror. _The Holy Alliance._--He found them prepared to view his case with sympathy. Three of them, Austria, Prussia, and Russia, under the leadership of the Czar, Alexander I, in the autumn of 1815, had entered into a Holy Alliance to sustain by reciprocal service the autocratic principle in government. Although the effusive, almost maudlin, language of the treaty did not express their purpose explicitly, the Alliance was later regarded as a mere union of monarchs to prevent the rise and growth of popular government. The American people thought their worst fears confirmed when, in 1822, a conference of delegates from Russia, Austria, Prussia, and France met at Verona to consider, among other things, revolutions that had just broken out in Spain and Italy. The spirit of the conference is reflected in the first article of the agreement reached by the delegates: "The high contracting powers, being convinced that the system of representative government is equally incompatible with the monarchical principle and the maxim of the sovereignty of the people with the divine right, mutually engage in the most solemn manner to use all their efforts to put an end to the system of representative government in whatever country it may exist in Europe and to prevent its being introduced in those countries where it is not yet known." The Czar, who incidentally coveted the west coast of North America, proposed to send an army to aid the king of Spain in his troubles at home, thus preparing the way for intervention in Spanish America. It was material weakness not want of spirit, that prevented the grand union of monarchs from making open war on popular government. _The Position of England._--Unfortunately, too, for the Holy Alliance, England refused to cooperate. English merchants had built up a large trade with the independent Latin-American colonies and they protested against the restoration of Spanish sovereignty, which meant a renewal of Spain's former trade monopoly. Moreover, divine right doctrines had been laid to rest in England and the representative principle thoroughly established. Already there were signs of the coming democratic flood which was soon to carry the first reform bill of 1832, extending the suffrage, and sweep on to even greater achievements. British statesmen, therefore, had to be cautious. In such circumstances, instead of cooperating with the autocrats of Russia, Austria, and Prussia, they turned to the minister of the United States in London. The British prime minister, Canning, proposed that the two countries join in declaring their unwillingness to see the Spanish colonies transferred to any other power. _Jefferson's Advice._--The proposal was rejected; but President Monroe took up the suggestion with Madison and Jefferson as well as with his Secretary of State, John Quincy Adams. They favored the plan. Jefferson said: "One nation, most of all, could disturb us in this pursuit [of freedom]; she now offers to lead, aid, and accompany us in it. By acceding to her proposition we detach her from the bands, bring her mighty weight into the scale of free government and emancipate a continent at one stroke.... With her on our side we need not fear the whole world. With her then we should most sedulously cherish a cordial friendship." _Monroe's Statement of the Doctrine._--Acting on the advice of trusted friends, President Monroe embodied in his message to Congress, on December 2, 1823, a statement of principles now famous throughout the world as the Monroe Doctrine. To the autocrats of Europe he announced that he would regard "any attempt on their part to extend their system to any portion of this hemisphere as dangerous to our peace and safety." While he did not propose to interfere with existing colonies dependent on European powers, he ranged himself squarely on the side of those that had declared their independence. Any attempt by a European power to oppress them or control their destiny in any manner he characterized as "a manifestation of an unfriendly disposition toward the United States." Referring in another part of his message to a recent claim which the Czar had made to the Pacific coast, President Monroe warned the Old World that "the American continents, by the free and independent condition which they have assumed and maintained, are henceforth not to be considered as subjects for future colonization by any European powers." The effect of this declaration was immediate and profound. Men whose political horizon had been limited to a community or state were led to consider their nation as a great power among the sovereignties of the earth, taking its part in shaping their international relations. =The Missouri Compromise.=--Respecting one other important measure of this period, the Republicans also took a broad view of their obligations under the Constitution; namely, the Missouri Compromise. It is true, they insisted on the admission of Missouri as a slave state, balanced against the free state of Maine; but at the same time they assented to the prohibition of slavery in the Louisiana territory north of the line 36 o 30'. During the debate on the subject an extreme view had been presented, to the effect that Congress had no constitutional warrant for abolishing slavery in the territories. The precedent of the Northwest Ordinance, ratified by Congress in 1789, seemed a conclusive answer from practice to this contention; but Monroe submitted the issue to his cabinet, which included Calhoun of South Carolina, Crawford of Georgia, and Wirt of Virginia, all presumably adherents to the Jeffersonian principle of strict construction. He received in reply a unanimous verdict to the effect that Congress did have the power to prohibit slavery in the territories governed by it. Acting on this advice he approved, on March 6, 1820, the bill establishing freedom north of the compromise line. This generous interpretation of the powers of Congress stood for nearly forty years, until repudiated by the Supreme Court in the Dred Scott case. THE NATIONAL DECISIONS OF CHIEF JUSTICE MARSHALL =John Marshall, the Nationalist.=--The Republicans in the lower ranges of state politics, who did not catch the grand national style of their leaders charged with responsibilities in the national field, were assisted in their education by a Federalist from the Old Dominion, John Marshall, who, as Chief Justice of the Supreme Court of the United States from 1801 to 1835, lost no occasion to exalt the Constitution above the claims of the provinces. No differences of opinion as to his political views have ever led even his warmest opponents to deny his superb abilities or his sincere devotion to the national idea. All will likewise agree that for talents, native and acquired, he was an ornament to the humble democracy that brought him forth. His whole career was American. Born on the frontier of Virginia, reared in a log cabin, granted only the barest rudiments of education, inured to hardship and rough life, he rose by masterly efforts to the highest judicial honor America can bestow. On him the bitter experience of the Revolution and of later days made a lasting impression. He was no "summer patriot." He had been a soldier in the Revolutionary army. He had suffered with Washington at Valley Forge. He had seen his comrades in arms starving and freezing because the Continental Congress had neither the power nor the inclination to force the states to do their full duty. To him the Articles of Confederation were the symbol of futility. Into the struggle for the formation of the Constitution and its ratification in Virginia he had thrown himself with the ardor of a soldier. Later, as a member of Congress, a representative to France, and Secretary of State, he had aided the Federalists in establishing the new government. When at length they were driven from power in the executive and legislative branches of the government, he was chosen for their last stronghold, the Supreme Court. By historic irony he administered the oath of office to his bitterest enemy, Thomas Jefferson; and, long after the author of the Declaration of Independence had retired to private life, the stern Chief Justice continued to announce the old Federalist principles from the Supreme Bench. [Illustration: JOHN MARSHALL] =Marbury _vs._ Madison--An Act of Congress Annulled.=--He had been in his high office only two years when he laid down for the first time in the name of the entire Court the doctrine that the judges have the power to declare an act of Congress null and void when in their opinion it violates the Constitution. This power was not expressly conferred on the Court. Though many able men held that the judicial branch of the government enjoyed it, the principle was not positively established until 1803 when the case of Marbury _vs._ Madison was decided. In rendering the opinion of the Court, Marshall cited no precedents. He sought no foundations for his argument in ancient history. He rested it on the general nature of the American system. The Constitution, ran his reasoning, is the supreme law of the land; it limits and binds all who act in the name of the United States; it limits the powers of Congress and defines the rights of citizens. If Congress can ignore its limitations and trespass upon the rights of citizens, Marshall argued, then the Constitution disappears and Congress is supreme. Since, however, the Constitution is supreme and superior to Congress, it is the duty of judges, under their oath of office, to sustain it against measures which violate it. Therefore, from the nature of the American constitutional system the courts must declare null and void all acts which are not authorized. "A law repugnant to the Constitution," he closed, "is void and the courts as well as other departments are bound by that instrument." From that day to this the practice of federal and state courts in passing upon the constitutionality of laws has remained unshaken. This doctrine was received by Jefferson and many of his followers with consternation. If the idea was sound, he exclaimed, "then indeed is our Constitution a complete _felo de se_ [legally, a suicide]. For, intending to establish three departments, coordinate and independent that they might check and balance one another, it has given, according to this opinion, to one of them alone the right to prescribe rules for the government of the others, and to that one, too, which is unelected by and independent of the nation.... The Constitution, on this hypothesis, is a mere thing of wax in the hands of the judiciary which they may twist and shape into any form they please. It should be remembered, as an axiom of eternal truth in politics, that whatever power in any government is independent, is absolute also.... A judiciary independent of a king or executive alone is a good thing; but independence of the will of the nation is a solecism, at least in a republican government." But Marshall was mighty and his view prevailed, though from time to time other men, clinging to Jefferson's opinion, likewise opposed the exercise by the Courts of the high power of passing upon the constitutionality of acts of Congress. =Acts of State Legislatures Declared Unconstitutional.=--Had Marshall stopped with annulling an act of Congress, he would have heard less criticism from Republican quarters; but, with the same firmness, he set aside acts of state legislatures as well, whenever, in his opinion, they violated the federal Constitution. In 1810, in the case of Fletcher _vs._ Peck, he annulled an act of the Georgia legislature, informing the state that it was not sovereign, but "a part of a large empire, ... a member of the American union; and that union has a constitution ... which imposes limits to the legislatures of the several states." In the case of McCulloch _vs._ Maryland, decided in 1819, he declared void an act of the Maryland legislature designed to paralyze the branches of the United States Bank established in that state. In the same year, in the still more memorable Dartmouth College case, he annulled an act of the New Hampshire legislature which infringed upon the charter received by the college from King George long before. That charter, he declared, was a contract between the state and the college, which the legislature under the federal Constitution could not impair. Two years later he stirred the wrath of Virginia by summoning her to the bar of the Supreme Court to answer in a case in which the validity of one of her laws was involved and then justified his action in a powerful opinion rendered in the case of Cohens _vs._ Virginia. All these decisions aroused the legislatures of the states. They passed sheaves of resolutions protesting and condemning; but Marshall never turned and never stayed. The Constitution of the United States, he fairly thundered at them, is the supreme law of the land; the Supreme Court is the proper tribunal to pass finally upon the validity of the laws of the states; and "those sovereignties," far from possessing the right of review and nullification, are irrevocably bound by the decisions of that Court. This was strong medicine for the authors of the Kentucky and Virginia Resolutions and for the members of the Hartford convention; but they had to take it. =The Doctrine of Implied Powers.=--While restraining Congress in the Marbury case and the state legislatures in a score of cases, Marshall also laid the judicial foundation for a broad and liberal view of the Constitution as opposed to narrow and strict construction. In McCulloch _vs._ Maryland, he construed generously the words "necessary and proper" in such a way as to confer upon Congress a wide range of "implied powers" in addition to their express powers. That case involved, among other things, the question whether the act establishing the second United States Bank was authorized by the Constitution. Marshall answered in the affirmative. Congress, ran his reasoning, has large powers over taxation and the currency; a bank is of appropriate use in the exercise of these enumerated powers; and therefore, though not absolutely necessary, a bank is entirely proper and constitutional. "With respect to the means by which the powers that the Constitution confers are to be carried into execution," he said, Congress must be allowed the discretion which "will enable that body to perform the high duties assigned to it, in the manner most beneficial to the people." In short, the Constitution of the United States is not a strait jacket but a flexible instrument vesting in Congress the powers necessary to meet national problems as they arise. In delivering this opinion Marshall used language almost identical with that employed by Lincoln when, standing on the battle field of a war waged to preserve the nation, he said that "a government of the people, by the people, for the people shall not perish from the earth." SUMMARY OF THE UNION AND NATIONAL POLITICS During the strenuous period between the establishment of American independence and the advent of Jacksonian democracy the great American experiment was under the direction of the men who had launched it. All the Presidents in that period, except John Quincy Adams, had taken part in the Revolution. James Madison, the chief author of the Constitution, lived until 1836. This age, therefore, was the "age of the fathers." It saw the threatened ruin of the country under the Articles of Confederation, the formation of the Constitution, the rise of political parties, the growth of the West, the second war with England, and the apparent triumph of the national spirit over sectionalism. The new republic had hardly been started in 1783 before its troubles began. The government could not raise money to pay its debts or running expenses; it could not protect American commerce and manufactures against European competition; it could not stop the continual issues of paper money by the states; it could not intervene to put down domestic uprisings that threatened the existence of the state governments. Without money, without an army, without courts of law, the union under the Articles of Confederation was drifting into dissolution. Patriots, who had risked their lives for independence, began to talk of monarchy again. Washington, Hamilton, and Madison insisted that a new constitution alone could save America from disaster. By dint of much labor the friends of a new form of government induced the Congress to call a national convention to take into account the state of America. In May, 1787, it assembled at Philadelphia and for months it debated and wrangled over plans for a constitution. The small states clamored for equal rights in the union. The large states vowed that they would never grant it. A spirit of conciliation, fair play, and compromise saved the convention from breaking up. In addition, there were jealousies between the planting states and the commercial states. Here, too, compromises had to be worked out. Some of the delegates feared the growth of democracy and others cherished it. These factions also had to be placated. At last a plan of government was drafted--the Constitution of the United States--and submitted to the states for approval. Only after a long and acrimonious debate did enough states ratify the instrument to put it into effect. On April 30, 1789, George Washington was inaugurated first President. The new government proceeded to fund the old debt of the nation, assume the debts of the states, found a national bank, lay heavy taxes to pay the bills, and enact laws protecting American industry and commerce. Hamilton led the way, but he had not gone far before he encountered opposition. He found a formidable antagonist in Jefferson. In time two political parties appeared full armed upon the scene: the Federalists and the Republicans. For ten years they filled the country with political debate. In 1800 the Federalists were utterly vanquished by the Republicans with Jefferson in the lead. By their proclamations of faith the Republicans favored the states rather than the new national government, but in practice they added immensely to the prestige and power of the nation. They purchased Louisiana from France, they waged a war for commercial independence against England, they created a second United States Bank, they enacted the protective tariff of 1816, they declared that Congress had power to abolish slavery north of the Missouri Compromise line, and they spread the shield of the Monroe Doctrine between the Western Hemisphere and Europe. Still America was a part of European civilization. Currents of opinion flowed to and fro across the Atlantic. Friends of popular government in Europe looked to America as the great exemplar of their ideals. Events in Europe reacted upon thought in the United States. The French Revolution exerted a profound influence on the course of political debate. While it was in the stage of mere reform all Americans favored it. When the king was executed and a radical democracy set up, American opinion was divided. When France fell under the military dominion of Napoleon and preyed upon American commerce, the United States made ready for war. The conduct of England likewise affected American affairs. In 1793 war broke out between England and France and raged with only a slight intermission until 1815. England and France both ravaged American commerce, but England was the more serious offender because she had command of the seas. Though Jefferson and Madison strove for peace, the country was swept into war by the vehemence of the "Young Republicans," headed by Clay and Calhoun. When the armed conflict was closed, one in diplomacy opened. The autocratic powers of Europe threatened to intervene on behalf of Spain in her attempt to recover possession of her Latin-American colonies. Their challenge to America brought forth the Monroe Doctrine. The powers of Europe were warned not to interfere with the independence or the republican policies of this hemisphere or to attempt any new colonization in it. It seemed that nationalism was to have a peaceful triumph over sectionalism. =References= H. Adams, _History of the United States, 1800-1817_ (9 vols.). K.C. Babcock, _Rise of American Nationality_ (American Nation Series). E. Channing, _The Jeffersonian System_ (Same Series). D.C. Gilman, _James Monroe_. W. Reddaway, _The Monroe Doctrine_. T. Roosevelt, _Naval War of 1812_. =Questions= 1. What was the leading feature of Jefferson's political theory? 2. Enumerate the chief measures of his administration. 3. Were the Jeffersonians able to apply their theories? Give the reasons. 4. Explain the importance of the Mississippi River to Western farmers. 5. Show how events in Europe forced the Louisiana Purchase. 6. State the constitutional question involved in the Louisiana Purchase. 7. Show how American trade was affected by the European war. 8. Compare the policies of Jefferson and Madison. 9. Why did the United States become involved with England rather than with France? 10. Contrast the causes of the War of 1812 with the results. 11. Give the economic reasons for the attitude of New England. 12. Give five "nationalist" measures of the Republicans. Discuss each in detail. 13. Sketch the career of John Marshall. 14. Discuss the case of Marbury _vs._ Madison. 15. Summarize Marshall's views on: (_a_) states' rights; and (_b_) a liberal interpretation of the Constitution. =Research Topics= =The Louisiana Purchase.=--Text of Treaty in Macdonald, _Documentary Source Book_, pp. 279-282. Source materials in Hart, _American History Told by Contemporaries_, Vol. III, pp. 363-384. Narrative, Henry Adams, _History of the United States_, Vol. II, pp. 25-115; Elson, _History of the United States_, pp. 383-388. =The Embargo and Non-Intercourse Acts.=--Macdonald, pp. 282-288; Adams, Vol. IV, pp. 152-177; Elson, pp. 394-405. =Congress and the War of 1812.=--Adams, Vol. VI, pp. 113-198; Elson, pp. 408-450. =Proposals of the Hartford Convention.=--Macdonald, pp. 293-302. =Manufactures and the Tariff of 1816.=--Coman, _Industrial History of the United States_, pp. 184-194. =The Second United States Bank.=--Macdonald, pp. 302-306. =Effect of European War on American Trade.=--Callender, _Economic History of the United States_, pp. 240-250. =The Monroe Message.=--Macdonald, pp. 318-320. =Lewis and Clark Expedition.=--R.G. Thwaites, _Rocky Mountain Explorations_, pp. 92-187. Schafer, _A History of the Pacific Northwest_ (rev. ed.), pp. 29-61. PART IV. THE WEST AND JACKSONIAN DEMOCRACY CHAPTER X THE FARMERS BEYOND THE APPALACHIANS The nationalism of Hamilton was undemocratic. The democracy of Jefferson was, in the beginning, provincial. The historic mission of uniting nationalism and democracy was in the course of time given to new leaders from a region beyond the mountains, peopled by men and women from all sections and free from those state traditions which ran back to the early days of colonization. The voice of the democratic nationalism nourished in the West was heard when Clay of Kentucky advocated his American system of protection for industries; when Jackson of Tennessee condemned nullification in a ringing proclamation that has taken its place among the great American state papers; and when Lincoln of Illinois, in a fateful hour, called upon a bewildered people to meet the supreme test whether this was a nation destined to survive or to perish. And it will be remembered that Lincoln's party chose for its banner that earlier device--Republican--which Jefferson had made a sign of power. The "rail splitter" from Illinois united the nationalism of Hamilton with the democracy of Jefferson, and his appeal was clothed in the simple language of the people, not in the sonorous rhetoric which Webster learned in the schools. PREPARATION FOR WESTERN SETTLEMENT =The West and the American Revolution.=--The excessive attention devoted by historians to the military operations along the coast has obscured the role played by the frontier in the American Revolution. The action of Great Britain in closing western land to easy settlement in 1763 was more than an incident in precipitating the war for independence. Americans on the frontier did not forget it; when Indians were employed by England to defend that land, zeal for the patriot cause set the interior aflame. It was the members of the western vanguard, like Daniel Boone, John Sevier, and George Rogers Clark, who first understood the value of the far-away country under the guns of the English forts, where the Red Men still wielded the tomahawk and the scalping knife. It was they who gave the East no rest until their vision was seen by the leaders on the seaboard who directed the course of national policy. It was one of their number, a seasoned Indian fighter, George Rogers Clark, who with aid from Virginia seized Kaskaskia and Vincennes and secured the whole Northwest to the union while the fate of Washington's army was still hanging in the balance. =Western Problems at the End of the Revolution.=--The treaty of peace, signed with Great Britain in 1783, brought the definite cession of the coveted territory west to the Mississippi River, but it left unsolved many problems. In the first place, tribes of resentful Indians in the Ohio region, even though British support was withdrawn at last, had to be reckoned with; and it was not until after the establishment of the federal Constitution that a well-equipped army could be provided to guarantee peace on the border. In the second place, British garrisons still occupied forts on Lake Erie pending the execution of the terms of the treaty of 1783--terms which were not fulfilled until after the ratification of the Jay treaty twelve years later. In the third place, Virginia, Connecticut, and Massachusetts had conflicting claims to the land in the Northwest based on old English charters and Indian treaties. It was only after a bitter contest that the states reached an agreement to transfer their rights to the government of the United States, Virginia executing her deed of cession on March 1, 1784. In the fourth place, titles to lands bought by individuals remained uncertain in the absence of official maps and records. To meet this last situation, Congress instituted a systematic survey of the Ohio country, laying it out into townships, sections of 640 acres each, and quarter sections. In every township one section of land was set aside for the support of public schools. =The Northwest Ordinance.=--The final problem which had to be solved before settlement on a large scale could be begun was that of governing the territory. Pioneers who looked with hungry eyes on the fertile valley of the Ohio could hardly restrain their impatience. Soldiers of the Revolution, who had been paid for their services in land warrants entitling them to make entries in the West, called for action. Congress answered by passing in 1787 the famous Northwest Ordinance providing for temporary territorial government to be followed by the creation of a popular assembly as soon as there were five thousand free males in any district. Eventual admission to the union on an equal footing with the original states was promised to the new territories. Religious freedom was guaranteed. The safeguards of trial by jury, regular judicial procedure, and _habeas corpus_ were established, in order that the methods of civilized life might take the place of the rough-and-ready justice of lynch law. During the course of the debate on the Ordinance, Congress added the sixth article forbidding slavery and involuntary servitude. This Charter of the Northwest, so well planned by the Congress under the Articles of Confederation, was continued in force by the first Congress under the Constitution in 1789. The following year its essential provisions, except the ban on slavery, were applied to the territory south of the Ohio, ceded by North Carolina to the national government, and in 1798 to the Mississippi territory, once held by Georgia. Thus it was settled for all time that "the new colonies were not to be exploited for the benefit of the parent states (any more than for the benefit of England) but were to be autonomous and coordinate commonwealths." This outcome, bitterly opposed by some Eastern leaders who feared the triumph of Western states over the seaboard, completed the legal steps necessary by way of preparation for the flood of settlers. =The Land Companies, Speculators, and Western Land Tenure.=--As in the original settlement of America, so in the opening of the West, great companies and single proprietors of large grants early figured. In 1787 the Ohio Land Company, a New England concern, acquired a million and a half acres on the Ohio and began operations by planting the town of Marietta. A professional land speculator, J.C. Symmes, secured a million acres lower down where the city of Cincinnati was founded. Other individuals bought up soldiers' claims and so acquired enormous holdings for speculative purposes. Indeed, there was such a rush to make fortunes quickly through the rise in land values that Washington was moved to cry out against the "rage for speculating in and forestalling of land on the North West of the Ohio," protesting that "scarce a valuable spot within any tolerable distance of it is left without a claimant." He therefore urged Congress to fix a reasonable price for the land, not "too exorbitant and burdensome for real occupiers, but high enough to discourage monopolizers." Congress, however, was not prepared to use the public domain for the sole purpose of developing a body of small freeholders in the West. It still looked upon the sale of public lands as an important source of revenue with which to pay off the public debt; consequently it thought more of instant income than of ultimate results. It placed no limit on the amount which could be bought when it fixed the price at $2 an acre in 1796, and it encouraged the professional land operator by making the first installment only twenty cents an acre in addition to the small registration and survey fee. On such terms a speculator with a few thousand dollars could get possession of an enormous plot of land. If he was fortunate in disposing of it, he could meet the installments, which were spread over a period of four years, and make a handsome profit for himself. Even when the credit or installment feature was abolished in 1821 and the price of the land lowered to a cash price of $1.75 an acre, the opportunity for large speculative purchases continued to attract capital to land ventures. =The Development of the Small Freehold.=--The cheapness of land and the scarcity of labor, nevertheless, made impossible the triumph of the huge estate with its semi-servile tenantry. For about $45 a man could get a farm of 160 acres on the installment plan; another payment of $80 was due in forty days; but a four-year term was allowed for the discharge of the balance. With a capital of from two to three hundred dollars a family could embark on a land venture. If it had good crops, it could meet the deferred payments. It was, however, a hard battle at best. Many a man forfeited his land through failure to pay the final installment; yet in the end, in spite of all the handicaps, the small freehold of a few hundred acres at most became the typical unit of Western agriculture, except in the planting states of the Gulf. Even the lands of the great companies were generally broken up and sold in small lots. The tendency toward moderate holdings, so favored by Western conditions, was also promoted by a clause in the Northwest Ordinance declaring that the land of any person dying intestate--that is, without any will disposing of it--should be divided equally among his descendants. Hildreth says of this provision: "It established the important republican principle, not then introduced into all the states, of the equal distribution of landed as well as personal property." All these forces combined made the wide dispersion of wealth, in the early days of the nineteenth century, an American characteristic, in marked contrast with the European system of family prestige and vast estates based on the law of primogeniture. THE WESTERN MIGRATION AND NEW STATES =The People.=--With government established, federal arms victorious over the Indians, and the lands surveyed for sale, the way was prepared for the immigrants. They came with a rush. Young New Englanders, weary of tilling the stony soil of their native states, poured through New York and Pennsylvania, some settling on the northern bank of the Ohio but most of them in the Lake region. Sons and daughters of German farmers in Pennsylvania and many a redemptioner who had discharged his bond of servitude pressed out into Ohio, Kentucky, Tennessee, or beyond. From the exhausted fields and the clay hills of the Southern states came pioneers of English and Scotch-Irish descent, the latter in great numbers. Indeed one historian of high authority has ventured to say that "the rapid expansion of the United States from a coast strip to a continental area is largely a Scotch-Irish achievement." While native Americans of mixed stocks led the way into the West, it was not long before immigrants direct from Europe, under the stimulus of company enterprise, began to filter into the new settlements in increasing numbers. The types of people were as various as the nations they represented. Timothy Flint, who published his entertaining _Recollections_ in 1826, found the West a strange mixture of all sorts and conditions of people. Some of them, he relates, had been hunters in the upper world of the Mississippi, above the falls of St. Anthony. Some had been still farther north, in Canada. Still others had wandered from the South--the Gulf of Mexico, the Red River, and the Spanish country. French boatmen and trappers, Spanish traders from the Southwest, Virginia planters with their droves of slaves mingled with English, German, and Scotch-Irish farmers. Hunters, forest rangers, restless bordermen, and squatters, like the foaming combers of an advancing tide, went first. Then followed the farmers, masters of the ax and plow, with their wives who shared every burden and hardship and introduced some of the features of civilized life. The hunters and rangers passed on to new scenes; the home makers built for all time. =The Number of Immigrants.=--There were no official stations on the frontier to record the number of immigrants who entered the West during the decades following the American Revolution. But travelers of the time record that every road was "crowded" with pioneers and their families, their wagons and cattle; and that they were seldom out of the sound of the snapping whip of the teamster urging forward his horses or the crack of the hunter's rifle as he brought down his evening meal. "During the latter half of 1787," says Coman, "more than nine hundred boats floated down the Ohio carrying eighteen thousand men, women, and children, and twelve thousand horses, sheep, and cattle, and six hundred and fifty wagons." Other lines of travel were also crowded and with the passing years the flooding tide of home seekers rose higher and higher. =The Western Routes.=--Four main routes led into the country beyond the Appalachians. The Genesee road, beginning at Albany, ran almost due west to the present site of Buffalo on Lake Erie, through a level country. In the dry season, wagons laden with goods could easily pass along it into northern Ohio. A second route, through Pittsburgh, was fed by three eastern branches, one starting at Philadelphia, one at Baltimore, and another at Alexandria. A third main route wound through the mountains from Alexandria to Boonesboro in Kentucky and then westward across the Ohio to St. Louis. A fourth, the most famous of them all, passed through the Cumberland Gap and by branches extended into the Cumberland valley and the Kentucky country. Of these four lines of travel, the Pittsburgh route offered the most advantages. Pioneers, no matter from what section they came, when once they were on the headwaters of the Ohio and in possession of a flatboat, could find a quick and easy passage into all parts of the West and Southwest. Whether they wanted to settle in Ohio, Kentucky, or western Tennessee they could find their way down the drifting flood to their destination or at least to some spot near it. Many people from the South as well as the Northern and Middle states chose this route; so it came about that the sons and daughters of Virginia and the Carolinas mingled with those of New York, Pennsylvania, and New England in the settlement of the Northwest territory. =The Methods of Travel into the West.=--Many stories giving exact descriptions of methods of travel into the West in the early days have been preserved. The country was hardly opened before visitors from the Old World and from the Eastern states, impelled by curiosity, made their way to the very frontier of civilization and wrote books to inform or amuse the public. One of them, Gilbert Imlay, an English traveler, has given us an account of the Pittsburgh route as he found it in 1791. "If a man ... " he writes, "has a family or goods of any sort to remove, his best way, then, would be to purchase a waggon and team of horses to carry his property to Redstone Old Fort or to Pittsburgh, according as he may come from the Northern or Southern states. A good waggon will cost, at Philadelphia, about $10 ... and the horses about $12 each; they would cost something more both at Baltimore and Alexandria. The waggon may be covered with canvass, and if it is the choice of the people, they may sleep in it of nights with the greatest safety. But if they dislike that, there are inns of accommodation the whole distance on the different roads.... The provisions I would purchase in the same manner [that is, from the farmers along the road]; and by having two or three camp kettles and stopping every evening when the weather is fine upon the brink of some rivulet and by kindling a fire they may soon dress their own food.... This manner of journeying is so far from being disagreeable that in a fine season it is extremely pleasant." The immigrant once at Pittsburgh or Wheeling could then buy a flatboat of a size required for his goods and stock, and drift down the current to his journey's end. [Illustration: ROADS AND TRAILS INTO THE WESTERN TERRITORY] =The Admission of Kentucky and Tennessee.=--When the eighteenth century drew to a close, Kentucky had a population larger than Delaware, Rhode Island, or New Hampshire. Tennessee claimed 60,000 inhabitants. In 1792 Kentucky took her place as a state beside her none too kindly parent, Virginia. The Eastern Federalists resented her intrusion; but they took some consolation in the admission of Vermont because the balance of Eastern power was still retained. As if to assert their independence of old homes and conservative ideas the makers of Kentucky's first constitution swept aside the landed qualification on the suffrage and gave the vote to all free white males. Four years later, Kentucky's neighbor to the south, Tennessee, followed this step toward a wider democracy. After encountering fierce opposition from the Federalists, Tennessee was accepted as the sixteenth state. =Ohio.=--The door of the union had hardly opened for Tennessee when another appeal was made to Congress, this time from the pioneers in Ohio. The little posts founded at Marietta and Cincinnati had grown into flourishing centers of trade. The stream of immigrants, flowing down the river, added daily to their numbers and the growing settlements all around poured produce into their markets to be exchanged for "store goods." After the Indians were disposed of in 1794 and the last British soldier left the frontier forts under the terms of the Jay treaty of 1795, tiny settlements of families appeared on Lake Erie in the "Western Reserve," a region that had been retained by Connecticut when she surrendered her other rights in the Northwest. At the close of the century, Ohio, claiming a population of more than 50,000, grew discontented with its territorial status. Indeed, two years before the enactment of the Northwest Ordinance, squatters in that region had been invited by one John Emerson to hold a convention after the fashion of the men of Hartford, Windsor, and Wethersfield in old Connecticut and draft a frame of government for themselves. This true son of New England declared that men "have an undoubted right to pass into every vacant country and there to form their constitution and that from the confederation of the whole United States Congress is not empowered to forbid them." This grand convention was never held because the heavy hand of the government fell upon the leaders; but the spirit of John Emerson did not perish. In November, 1802, a convention chosen by voters, assembled under the authority of Congress at Chillicothe, drew up a constitution. It went into force after a popular ratification. The roll of the convention bore such names as Abbot, Baldwin, Cutler, Huntington, Putnam, and Sargent, and the list of counties from which they came included Adams, Fairfield, Hamilton, Jefferson, Trumbull, and Washington, showing that the new America in the West was peopled and led by the old stock. In 1803 Ohio was admitted to the union. =Indiana and Illinois.=--As in the neighboring state, the frontier in Indiana advanced northward from the Ohio, mainly under the leadership, however, of settlers from the South--restless Kentuckians hoping for better luck in a newer country and pioneers from the far frontiers of Virginia and North Carolina. As soon as a tier of counties swinging upward like the horns of the moon against Ohio on the east and in the Wabash Valley on the west was fairly settled, a clamor went up for statehood. Under the authority of an act of Congress in 1816 the Indianians drafted a constitution and inaugurated their government at Corydon. "The majority of the members of the convention," we are told by a local historian, "were frontier farmers who had a general idea of what they wanted and had sense enough to let their more erudite colleagues put it into shape." Two years later, the pioneers of Illinois, also settled upward from the Ohio, like Indiana, elected their delegates to draft a constitution. Leadership in the convention, quite properly, was taken by a man born in New York and reared in Tennessee; and the constitution as finally drafted "was in its principal provisions a copy of the then existing constitutions of Kentucky, Ohio, and Indiana.... Many of the articles are exact copies in wording although differently arranged and numbered." =Louisiana, Mississippi, and Alabama.=--Across the Mississippi to the far south, clearing and planting had gone on with much bustle and enterprise. The cotton and sugar lands of Louisiana, opened by French and Spanish settlers, were widened in every direction by planters with their armies of slaves from the older states. New Orleans, a good market and a center of culture not despised even by the pioneer, grew apace. In 1810 the population of lower Louisiana was over 75,000. The time had come, said the leaders of the people, to fulfill the promise made to France in the treaty of cession; namely, to grant to the inhabitants of the territory statehood and the rights of American citizens. Federalists from New England still having a voice in Congress, if somewhat weaker, still protested in tones of horror. "I am compelled to declare it as my deliberate opinion," pronounced Josiah Quincy in the House of Representatives, "that if this bill [to admit Louisiana] passes, the bonds of this Union are virtually dissolved ... that as it will be the right of all, so it will be the duty of some [states] to prepare definitely for a separation; amicably if they can, violently if they must.... It is a death blow to the Constitution. It may afterwards linger; but lingering, its fate will, at no very distant period, be consummated." Federalists from New York like those from New England had their doubts about the wisdom of admitting Western states; but the party of Jefferson and Madison, having the necessary majority, granted the coveted statehood to Louisiana in 1812. When, a few years later, Mississippi and Alabama knocked at the doors of the union, the Federalists had so little influence, on account of their conduct during the second war with England, that spokesmen from the Southwest met a kindlier reception at Washington. Mississippi, in 1817, and Alabama, in 1819, took their places among the United States of America. Both of them, while granting white manhood suffrage, gave their constitutions the tone of the old East by providing landed qualifications for the governor and members of the legislature. =Missouri.=--Far to the north in the Louisiana purchase, a new commonwealth was rising to power. It was peopled by immigrants who came down the Ohio in fleets of boats or crossed the Mississippi from Kentucky and Tennessee. Thrifty Germans from Pennsylvania, hardy farmers from Virginia ready to work with their own hands, freemen seeking freemen's homes, planters with their slaves moving on from worn-out fields on the seaboard, came together in the widening settlements of the Missouri country. Peoples from the North and South flowed together, small farmers and big planters mingling in one community. When their numbers had reached sixty thousand or more, they precipitated a contest over their admission to the union, "ringing an alarm bell in the night," as Jefferson phrased it. The favorite expedient of compromise with slavery was brought forth in Congress once more. Maine consequently was brought into the union without slavery and Missouri with slavery. At the same time there was drawn westward through the rest of the Louisiana territory a line separating servitude from slavery. THE SPIRIT OF THE FRONTIER =Land Tenure and Liberty.=--Over an immense western area there developed an unbroken system of freehold farms. In the Gulf states and the lower Mississippi Valley, it is true, the planter with his many slaves even led in the pioneer movement; but through large sections of Tennessee and Kentucky, as well as upper Georgia and Alabama, and all throughout the Northwest territory the small farmer reigned supreme. In this immense dominion there sprang up a civilization without caste or class--a body of people all having about the same amount of this world's goods and deriving their livelihood from one source: the labor of their own hands on the soil. The Northwest territory alone almost equaled in area all the original thirteen states combined, except Georgia, and its system of agricultural economy was unbroken by plantations and feudal estates. "In the subdivision of the soil and the great equality of condition," as Webster said on more than one occasion, "lay the true basis, most certainly, of popular government." There was the undoubted source of Jacksonian democracy. [Illustration: A LOG CABIN--LINCOLN'S BIRTHPLACE] =The Characteristics of the Western People.=--Travelers into the Northwest during the early years of the nineteenth century were agreed that the people of that region were almost uniformly marked by the characteristics common to an independent yeomanry. A close observer thus recorded his impressions: "A spirit of adventurous enterprise, a willingness to go through any hardship to accomplish an object.... Independence of thought and action. They have felt the influence of these principles from their childhood. Men who can endure anything; that have lived almost without restraint, free as the mountain air or as the deer and the buffalo of their forests, and who know they are Americans all.... An apparent roughness which some would deem rudeness of manner.... Where there is perfect equality in a neighborhood of people who know little about each other's previous history or ancestry but where each is lord of the soil he cultivates. Where a log cabin is all that the best of families can expect to have for years and of course can possess few of the external decorations which have so much influence in creating a diversity of rank in society. These circumstances have laid the foundation for that equality of intercourse, simplicity of manners, want of deference, want of reserve, great readiness to make acquaintances, freedom of speech, indisposition to brook real or imaginary insults which one witnesses among people of the West." This equality, this independence, this rudeness so often described by the traveler as marking a new country, were all accentuated by the character of the settlers themselves. Traces of the fierce, unsociable, eagle-eyed, hard-drinking hunter remained. The settlers who followed the hunter were, with some exceptions, soldiers of the Revolutionary army, farmers of the "middling order," and mechanics from the towns,--English, Scotch-Irish, Germans,--poor in possessions and thrown upon the labor of their own hands for support. Sons and daughters from well-to-do Eastern homes sometimes brought softer manners; but the equality of life and the leveling force of labor in forest and field soon made them one in spirit with their struggling neighbors. Even the preachers and teachers, who came when the cabins were raised in the clearings and rude churches and schoolhouses were built, preached sermons and taught lessons that savored of the frontier, as any one may know who reads Peter Cartwright's _A Muscular Christian_ or Eggleston's _The Hoosier Schoolmaster_. THE WEST AND THE EAST MEET =The East Alarmed.=--A people so independent as the Westerners and so attached to local self-government gave the conservative East many a rude shock, setting gentlemen in powdered wigs and knee breeches agog with the idea that terrible things might happen in the Mississippi Valley. Not without good grounds did Washington fear that "a touch of a feather would turn" the Western settlers away from the seaboard to the Spaniards; and seriously did he urge the East not to neglect them, lest they be "drawn into the arms of, or be dependent upon foreigners." Taking advantage of the restless spirit in the Southwest, Aaron Burr, having disgraced himself by killing Alexander Hamilton in a duel, laid wild plans, if not to bring about a secession in that region, at least to build a state of some kind out of the Spanish dominions adjoining Louisiana. Frightened at such enterprises and fearing the dominance of the West, the Federalists, with a few conspicuous exceptions, opposed equality between the sections. Had their narrow views prevailed, the West, with its new democracy, would have been held in perpetual tutelage to the seaboard or perhaps been driven into independence as the thirteen colonies had been not long before. =Eastern Friends of the West.=--Fortunately for the nation, there were many Eastern leaders, particularly from the South, who understood the West, approved its spirit, and sought to bring the two sections together by common bonds. Washington kept alive and keen the zeal for Western advancement which he acquired in his youth as a surveyor. He never grew tired of urging upon his Eastern friends the importance of the lands beyond the mountains. He pressed upon the governor of Virginia a project for a wagon road connecting the seaboard with the Ohio country and was active in a movement to improve the navigation of the Potomac. He advocated strengthening the ties of commerce. "Smooth the roads," he said, "and make easy the way for them, and then see what an influx of articles will be poured upon us; how amazingly our exports will be increased by them; and how amply we shall be compensated for any trouble and expense we may encounter to effect it." Jefferson, too, was interested in every phase of Western development--the survey of lands, the exploration of waterways, the opening of trade, and even the discovery of the bones of prehistoric animals. Robert Fulton, the inventor of the steamboat, was another man of vision who for many years pressed upon his countrymen the necessity of uniting East and West by a canal which would cement the union, raise the value of the public lands, and extend the principles of confederate and republican government. =The Difficulties of Early Transportation.=--Means of communication played an important part in the strategy of all those who sought to bring together the seaboard and the frontier. The produce of the West--wheat, corn, bacon, hemp, cattle, and tobacco--was bulky and the cost of overland transportation was prohibitive. In the Eastern market, "a cow and her calf were given for a bushel of salt, while a suit of 'store clothes' cost as much as a farm." In such circumstances, the inhabitants of the Mississippi Valley were forced to ship their produce over a long route by way of New Orleans and to pay high freight rates for everything that was brought across the mountains. Scows of from five to fifty tons were built at the towns along the rivers and piloted down the stream to the Crescent City. In a few cases small ocean-going vessels were built to transport goods to the West Indies or to the Eastern coast towns. Salt, iron, guns, powder, and the absolute essentials which the pioneers had to buy mainly in Eastern markets were carried over narrow wagon trails that were almost impassable in the rainy season. =The National Road.=--To far-sighted men, like Albert Gallatin, "the father of internal improvements," the solution of this problem was the construction of roads and canals. Early in Jefferson's administration, Congress dedicated a part of the proceeds from the sale of lands to building highways from the headwaters of the navigable waters emptying into the Atlantic to the Ohio River and beyond into the Northwest territory. In 1806, after many misgivings, it authorized a great national highway binding the East and the West. The Cumberland Road, as it was called, began in northwestern Maryland, wound through southern Pennsylvania, crossed the narrow neck of Virginia at Wheeling, and then shot almost straight across Ohio, Indiana, and Illinois, into Missouri. By 1817, stagecoaches were running between Washington and Wheeling; by 1833 contractors had carried their work to Columbus, Ohio, and by 1852, to Vandalia, Illinois. Over this ballasted road mail and passenger coaches could go at high speed, and heavy freight wagons proceed in safety at a steady pace. [Illustration: THE CUMBERLAND ROAD] =Canals and Steamboats.=--A second epoch in the economic union of the East and West was reached with the opening of the Erie Canal in 1825, offering an all-water route from New York City to the Great Lakes and the Mississippi Valley. Pennsylvania, alarmed by the advantages conferred on New York by this enterprise, began her system of canals and portages from Philadelphia to Pittsburgh, completing the last link in 1834. In the South, the Chesapeake and Ohio Company, chartered in 1825, was busy with a project to connect Georgetown and Cumberland when railways broke in upon the undertaking before it was half finished. About the same time, Ohio built a canal across the state, affording water communication between Lake Erie and the Ohio River through a rich wheat belt. Passengers could now travel by canal boat into the West with comparative ease and comfort, if not at a rapid speed, and the bulkiest of freight could be easily handled. Moreover, the rate charged for carrying goods was cut by the Erie Canal from $32 a ton per hundred miles to $1. New Orleans was destined to lose her primacy in the Mississippi Valley. The diversion of traffic to Eastern markets was also stimulated by steamboats which appeared on the Ohio about 1810, three years after Fulton had made his famous trip on the Hudson. It took twenty men to sail and row a five-ton scow up the river at a speed of from ten to twenty miles a day. In 1825, Timothy Flint traveled a hundred miles a day on the new steamer _Grecian_ "against the whole weight of the Mississippi current." Three years later the round trip from Louisville to New Orleans was cut to eight days. Heavy produce that once had to float down to New Orleans could be carried upstream and sent to the East by way of the canal systems. [Illustration: _From an old print_ AN EARLY MISSISSIPPI STEAMBOAT] Thus the far country was brought near. The timid no longer hesitated at the thought of the perilous journey. All routes were crowded with Western immigrants. The forests fell before the ax like grain before the sickle. Clearings scattered through the woods spread out into a great mosaic of farms stretching from the Southern Appalachians to Lake Michigan. The national census of 1830 gave 937,000 inhabitants to Ohio; 343,000 to Indiana; 157,000 to Illinois; 687,000 to Kentucky; and 681,000 to Tennessee. [Illustration: DISTRIBUTION OF POPULATION, 1830] With the increase in population and the growth of agriculture came political influence. People who had once petitioned Congress now sent their own representatives. Men who had hitherto accepted without protests Presidents from the seaboard expressed a new spirit of dissent in 1824 by giving only three electoral votes for John Quincy Adams; and four years later they sent a son of the soil from Tennessee, Andrew Jackson, to take Washington's chair as chief executive of the nation--the first of a long line of Presidents from the Mississippi basin. =References= W.G. Brown, _The Lower South in American History_. B.A. Hinsdale, _The Old North West_ (2 vols.). A.B. Hulbert, _Great American Canals_ and _The Cumberland Road_. T. Roosevelt, _Thomas H. Benton_. P.J. Treat, _The National Land System_ (1785-1820). F.J. Turner, _Rise of the New West_ (American Nation Series). J. Winsor, _The Westward Movement_. =Questions= 1. How did the West come to play a role in the Revolution? 2. What preparations were necessary to settlement? 3. Give the principal provisions of the Northwest Ordinance. 4. Explain how freehold land tenure happened to predominate in the West. 5. Who were the early settlers in the West? What routes did they take? How did they travel? 6. Explain the Eastern opposition to the admission of new Western states. Show how it was overcome. 7. Trace a connection between the economic system of the West and the spirit of the people. 8. Who were among the early friends of Western development? 9. Describe the difficulties of trade between the East and the West. 10. Show how trade was promoted. =Research Topics= =Northwest Ordinance.=--Analysis of text in Macdonald, _Documentary Source Book_. Roosevelt, _Winning of the West_, Vol. V, pp. 5-57. =The West before the Revolution.=--Roosevelt, Vol. I. =The West during the Revolution.=--Roosevelt, Vols. II and III. =Tennessee.=--Roosevelt, Vol. V, pp. 95-119 and Vol. VI, pp. 9-87. =The Cumberland Road.=--A.B. Hulbert, _The Cumberland Road_. =Early Life in the Middle West.=--Callender, _Economic History of the United States_, pp. 617-633; 636-641. =Slavery in the Southwest.=--Callender, pp. 641-652. =Early Land Policy.=--Callender, pp. 668-680. =Westward Movement of Peoples.=--Roosevelt, Vol. IV, pp. 7-39. Lists of books dealing with the early history of Western states are given in Hart, Channing, and Turner, _Guide to the Study and Reading of American History_ (rev. ed.), pp. 62-89. =Kentucky.=--Roosevelt, Vol. IV, pp. 176-263. CHAPTER XI JACKSONIAN DEMOCRACY The New England Federalists, at the Hartford convention, prophesied that in time the West would dominate the East. "At the adoption of the Constitution," they said, "a certain balance of power among the original states was considered to exist, and there was at that time and yet is among those parties a strong affinity between their great and general interests. By the admission of these [new] states that balance has been materially affected and unless the practice be modified must ultimately be destroyed. The Southern states will first avail themselves of their new confederates to govern the East, and finally the Western states, multiplied in number, and augmented in population, will control the interests of the whole." Strangely enough the fulfillment of this prophecy was being prepared even in Federalist strongholds by the rise of a new urban democracy that was to make common cause with the farmers beyond the mountains. THE DEMOCRATIC MOVEMENT IN THE EAST =The Aristocratic Features of the Old Order.=--The Revolutionary fathers, in setting up their first state constitutions, although they often spoke of government as founded on the consent of the governed, did not think that consistency required giving the vote to all adult males. On the contrary they looked upon property owners as the only safe "depositary" of political power. They went back to the colonial tradition that related taxation and representation. This, they argued, was not only just but a safeguard against the "excesses of democracy." In carrying their theory into execution they placed taxpaying or property qualifications on the right to vote. Broadly speaking, these limitations fell into three classes. Three states, Pennsylvania (1776), New Hampshire (1784), and Georgia (1798), gave the ballot to all who paid taxes, without reference to the value of their property. Three, Virginia, Delaware, and Rhode Island, clung firmly to the ancient principles that only freeholders could be intrusted with electoral rights. Still other states, while closely restricting the suffrage, accepted the ownership of other things as well as land in fulfillment of the requirements. In Massachusetts, for instance, the vote was granted to all men who held land yielding an annual income of three pounds or possessed other property worth sixty pounds. The electors thus enfranchised, numerous as they were, owing to the wide distribution of land, often suffered from a very onerous disability. In many states they were able to vote only for persons of wealth because heavy property qualifications were imposed on public officers. In New Hampshire, the governor had to be worth five hundred pounds, one-half in land; in Massachusetts, one thousand pounds, all freehold; in Maryland, five thousand pounds, one thousand of which was freehold; in North Carolina, one thousand pounds freehold; and in South Carolina, ten thousand pounds freehold. A state senator in Massachusetts had to be the owner of a freehold worth three hundred pounds or personal property worth six hundred pounds; in New Jersey, one thousand pounds' worth of property; in North Carolina, three hundred acres of land; in South Carolina, two thousand pounds freehold. For members of the lower house of the legislature lower qualifications were required. In most of the states the suffrage or office holding or both were further restricted by religious provisions. No single sect was powerful enough to dominate after the Revolution, but, for the most part, Catholics and Jews were either disfranchised or excluded from office. North Carolina and Georgia denied the ballot to any one who was not a Protestant. Delaware withheld it from all who did not believe in the Trinity and the inspiration of the Scriptures. Massachusetts and Maryland limited it to Christians. Virginia and New York, advanced for their day, made no discrimination in government on account of religious opinion. =The Defense of the Old Order.=--It must not be supposed that property qualifications were thoughtlessly imposed at the outset or considered of little consequence in practice. In the beginning they were viewed as fundamental. As towns grew in size and the number of landless citizens increased, the restrictions were defended with even more vigor. In Massachusetts, the great Webster upheld the rights of property in government, saying: "It is entirely just that property should have its due weight and consideration in political arrangements.... The disastrous revolutions which the world has witnessed, those political thunderstorms and earthquakes which have shaken the pillars of society to their deepest foundations, have been revolutions against property." In Pennsylvania, a leader in local affairs cried out against a plan to remove the taxpaying limitation on the suffrage: "What does the delegate propose? To place the vicious vagrant, the wandering Arabs, the Tartar hordes of our large cities on the level with the virtuous and good man?" In Virginia, Jefferson himself had first believed in property qualifications and had feared with genuine alarm the "mobs of the great cities." It was near the end of the eighteenth century before he accepted the idea of manhood suffrage. Even then he was unable to convince the constitution-makers of his own state. "It is not an idle chimera of the brain," urged one of them, "that the possession of land furnishes the strongest evidence of permanent, common interest with, and attachment to, the community.... It is upon this foundation I wish to place the right of suffrage. This is the best general standard which can be resorted to for the purpose of determining whether the persons to be invested with the right of suffrage are such persons as could be, consistently with the safety and well-being of the community, intrusted with the exercise of that right." =Attacks on the Restricted Suffrage.=--The changing circumstances of American life, however, soon challenged the rule of those with property. Prominent among the new forces were the rising mercantile and business interests. Where the freehold qualification was applied, business men who did not own land were deprived of the vote and excluded from office. In New York, for example, the most illiterate farmer who had one hundred pounds' worth of land could vote for state senator and governor, while the landless banker or merchant could not. It is not surprising, therefore, to find business men taking the lead in breaking down freehold limitations on the suffrage. The professional classes also were interested in removing the barriers which excluded many of them from public affairs. It was a schoolmaster, Thomas Dorr, who led the popular uprising in Rhode Island which brought the exclusive rule by freeholders to an end. In addition to the business and professional classes, the mechanics of the towns showed a growing hostility to a system of government that generally barred them from voting or holding office. Though not numerous, they had early begun to exercise an influence on the course of public affairs. They had led the riots against the Stamp Act, overturned King George's statue, and "crammed stamps down the throats of collectors." When the state constitutions were framed they took a lively interest, particularly in New York City and Philadelphia. In June, 1776, the "mechanicks in union" in New York protested against putting the new state constitution into effect without their approval, declaring that the right to vote on the acceptance or rejection of a fundamental law "is the birthright of every man to whatever state he may belong." Though their petition was rejected, their spirit remained. When, a few years later, the federal Constitution was being framed, the mechanics watched the process with deep concern; they knew that one of its main objects was to promote trade and commerce, affecting directly their daily bread. During the struggle over ratification, they passed resolutions approving its provisions and they often joined in parades organized to stir up sentiment for the Constitution, even though they could not vote for members of the state conventions and so express their will directly. After the organization of trade unions they collided with the courts of law and thus became interested in the election of judges and lawmakers. Those who attacked the old system of class rule found a strong moral support in the Declaration of Independence. Was it not said that all men are created equal? Whoever runs may read. Was it not declared that governments derive their just power from the consent of the governed? That doctrine was applied with effect to George III and seemed appropriate for use against the privileged classes of Massachusetts or Virginia. "How do the principles thus proclaimed," asked the non-freeholders of Richmond, in petitioning for the ballot, "accord with the existing regulation of the suffrage? A regulation which, instead of the equality nature ordains, creates an odious distinction between members of the same community ... and vests in a favored class, not in consideration of their public services but of their private possessions, the highest of all privileges." =Abolition of Property Qualifications.=--By many minor victories rather than by any spectacular triumphs did the advocates of manhood suffrage carry the day. Slight gains were made even during the Revolution or shortly afterward. In Pennsylvania, the mechanics, by taking an active part in the contest over the Constitution of 1776, were able to force the qualification down to the payment of a small tax. Vermont came into the union in 1792 without any property restrictions. In the same year Delaware gave the vote to all men who paid taxes. Maryland, reckoned one of the most conservative of states, embarked on the experiment of manhood suffrage in 1809; and nine years later, Connecticut, equally conservative, decided that all taxpayers were worthy of the ballot. Five states, Massachusetts, New York, Virginia, Rhode Island, and North Carolina, remained obdurate while these changes were going on around them; finally they had to yield themselves. The last struggle in Massachusetts took place in the constitutional convention of 1820. There Webster, in the prime of his manhood, and John Adams, in the closing years of his old age, alike protested against such radical innovations as manhood suffrage. Their protests were futile. The property test was abolished and a small tax-paying qualification was substituted. New York surrendered the next year and, after trying some minor restrictions for five years, went completely over to white manhood suffrage in 1826. Rhode Island clung to her freehold qualification through thirty years of agitation. Then Dorr's Rebellion, almost culminating in bloodshed, brought about a reform in 1843 which introduced a slight tax-paying qualification as an alternative to the freehold. Virginia and North Carolina were still unconvinced. The former refused to abandon ownership of land as the test for political rights until 1850 and the latter until 1856. Although religious discriminations and property qualifications for office holders were sometimes retained after the establishment of manhood suffrage, they were usually abolished along with the monopoly of government enjoyed by property owners and taxpayers. [Illustration: THOMAS DORR AROUSING HIS FOLLOWERS] At the end of the first quarter of the nineteenth century, the white male industrial workers and the mechanics of the Northern cities, at least, could lay aside the petition for the ballot and enjoy with the free farmer a voice in the government of their common country. "Universal democracy," sighed Carlyle, who was widely read in the United States, "whatever we may think of it has declared itself the inevitable fact of the days in which we live; and he who has any chance to instruct or lead in these days must begin by admitting that ... Where no government is wanted, save that of the parish constable, as in America with its boundless soil, every man being able to find work and recompense for himself, democracy may subsist; not elsewhere." Amid the grave misgivings of the first generation of statesmen, America was committed to the great adventure, in the populous towns of the East as well as in the forests and fields of the West. THE NEW DEMOCRACY ENTERS THE ARENA The spirit of the new order soon had a pronounced effect on the machinery of government and the practice of politics. The enfranchised electors were not long in demanding for themselves a larger share in administration. =The Spoils System and Rotation in Office.=--First of all they wanted office for themselves, regardless of their fitness. They therefore extended the system of rewarding party workers with government positions--a system early established in several states, notably New York and Pennsylvania. Closely connected with it was the practice of fixing short terms for officers and making frequent changes in personnel. "Long continuance in office," explained a champion of this idea in Pennsylvania in 1837, "unfits a man for the discharge of its duties, by rendering him arbitrary and aristocratic, and tends to beget, first life office, and then hereditary office, which leads to the destruction of free government." The solution offered was the historic doctrine of "rotation in office." At the same time the principle of popular election was extended to an increasing number of officials who had once been appointed either by the governor or the legislature. Even geologists, veterinarians, surveyors, and other technical officers were declared elective on the theory that their appointment "smacked of monarchy." =Popular Election of Presidential Electors.=--In a short time the spirit of democracy, while playing havoc with the old order in state government, made its way upward into the federal system. The framers of the Constitution, bewildered by many proposals and unable to agree on any single plan, had committed the choice of presidential electors to the discretion of the state legislatures. The legislatures, in turn, greedy of power, early adopted the practice of choosing the electors themselves; but they did not enjoy it long undisturbed. Democracy, thundering at their doors, demanded that they surrender the privilege to the people. Reluctantly they yielded, sometimes granting popular election and then withdrawing it. The drift was inevitable, and the climax came with the advent of Jacksonian democracy. In 1824, Vermont, New York, Delaware, South Carolina, Georgia, and Louisiana, though some had experimented with popular election, still left the choice of electors with the legislature. Eight years later South Carolina alone held to the old practice. Popular election had become the final word. The fanciful idea of an electoral college of "good and wise men," selected without passion or partisanship by state legislatures acting as deliberative bodies, was exploded for all time; the election of the nation's chief magistrate was committed to the tempestuous methods of democracy. =The Nominating Convention.=--As the suffrage was widened and the popular choice of presidential electors extended, there arose a violent protest against the methods used by the political parties in nominating candidates. After the retirement of Washington, both the Republicans and the Federalists found it necessary to agree upon their favorites before the election, and they adopted a colonial device--the pre-election caucus. The Federalist members of Congress held a conference and selected their candidate, and the Republicans followed the example. In a short time the practice of nominating by a "congressional caucus" became a recognized institution. The election still remained with the people; but the power of picking candidates for their approval passed into the hands of a small body of Senators and Representatives. A reaction against this was unavoidable. To friends of "the plain people," like Andrew Jackson, it was intolerable, all the more so because the caucus never favored him with the nomination. More conservative men also found grave objections to it. They pointed out that, whereas the Constitution intended the President to be an independent officer, he had now fallen under the control of a caucus of congressmen. The supremacy of the legislative branch had been obtained by an extra-legal political device. To such objections were added practical considerations. In 1824, when personal rivalry had taken the place of party conflicts, the congressional caucus selected as the candidate, William H. Crawford, of Georgia, a man of distinction but no great popularity, passing by such an obvious hero as General Jackson. The followers of the General were enraged and demanded nothing short of the death of "King Caucus." Their clamor was effective. Under their attacks, the caucus came to an ignominious end. In place of it there arose in 1831 a new device, the national nominating convention, composed of delegates elected by party voters for the sole purpose of nominating candidates. Senators and Representatives were still prominent in the party councils, but they were swamped by hundreds of delegates "fresh from the people," as Jackson was wont to say. In fact, each convention was made up mainly of office holders and office seekers, and the new institution was soon denounced as vigorously as King Caucus had been, particularly by statesmen who failed to obtain a nomination. Still it grew in strength and by 1840 was firmly established. =The End of the Old Generation.=--In the election of 1824, the representatives of the "aristocracy" made their last successful stand. Until then the leadership by men of "wealth and talents" had been undisputed. There had been five Presidents--Washington, John Adams, Jefferson, Madison, and Monroe--all Eastern men brought up in prosperous families with the advantages of culture which come from leisure and the possession of life's refinements. None of them had ever been compelled to work with his hands for a livelihood. Four of them had been slaveholders. Jefferson was a philosopher, learned in natural science, a master of foreign languages, a gentleman of dignity and grace of manner, notwithstanding his studied simplicity. Madison, it was said, was armed "with all the culture of his century." Monroe was a graduate of William and Mary, a gentleman of the old school. Jefferson and his three successors called themselves Republicans and professed a genuine faith in the people but they were not "of the people" themselves; they were not sons of the soil or the workshop. They were all men of "the grand old order of society" who gave finish and style even to popular government. Monroe was the last of the Presidents belonging to the heroic epoch of the Revolution. He had served in the war for independence, in the Congress under the Articles of Confederation, and in official capacity after the adoption of the Constitution. In short, he was of the age that had wrought American independence and set the government afloat. With his passing, leadership went to a new generation; but his successor, John Quincy Adams, formed a bridge between the old and the new in that he combined a high degree of culture with democratic sympathies. Washington had died in 1799, preceded but a few months by Patrick Henry and followed in four years by Samuel Adams. Hamilton had been killed in a duel with Burr in 1804. Thomas Jefferson and John Adams were yet alive in 1824 but they were soon to pass from the scene, reconciled at last, full of years and honors. Madison was in dignified retirement, destined to live long enough to protest against the doctrine of nullification proclaimed by South Carolina before death carried him away at the ripe old age of eighty-five. =The Election of John Quincy Adams (1824).=--The campaign of 1824 marked the end of the "era of good feeling" inaugurated by the collapse of the Federalist party after the election of 1816. There were four leading candidates, John Quincy Adams, Andrew Jackson, Henry Clay, and W.H. Crawford. The result of the election was a division of the electoral votes into four parts and no one received a majority. Under the Constitution, therefore, the selection of President passed to the House of Representatives. Clay, who stood at the bottom of the poll, threw his weight to Adams and assured his triumph, much to the chagrin of Jackson's friends. They thought, with a certain justification, that inasmuch as the hero of New Orleans had received the largest electoral vote, the House was morally bound to accept the popular judgment and make him President. Jackson shook hands cordially with Adams on the day of the inauguration, but never forgave him for being elected. While Adams called himself a Republican in politics and often spoke of "the rule of the people," he was regarded by Jackson's followers as "an aristocrat." He was not a son of the soil. Neither was he acquainted at first hand with the labor of farmers and mechanics. He had been educated at Harvard and in Europe. Like his illustrious father, John Adams, he was a stern and reserved man, little given to seeking popularity. Moreover, he was from the East and the frontiersmen of the West regarded him as a man "born with a silver spoon in his mouth." Jackson's supporters especially disliked him because they thought their hero entitled to the presidency. Their anger was deepened when Adams appointed Clay to the office of Secretary of State; and they set up a cry that there had been a "deal" by which Clay had helped to elect Adams to get office for himself. Though Adams conducted his administration with great dignity and in a fine spirit of public service, he was unable to overcome the opposition which he encountered on his election to office or to win popularity in the West and South. On the contrary, by advocating government assistance in building roads and canals and public grants in aid of education, arts, and sciences, he ran counter to the current which had set in against appropriations of federal funds for internal improvements. By signing the Tariff Bill of 1828, soon known as the "Tariff of Abominations," he made new enemies without adding to his friends in New York, Pennsylvania, and Ohio where he sorely needed them. Handicapped by the false charge that he had been a party to a "corrupt bargain" with Clay to secure his first election; attacked for his advocacy of a high protective tariff; charged with favoring an "aristocracy of office-holders" in Washington on account of his refusal to discharge government clerks by the wholesale, Adams was retired from the White House after he had served four years. =The Triumph of Jackson in 1828.=--Probably no candidate for the presidency ever had such passionate popular support as Andrew Jackson had in 1828. He was truly a man of the people. Born of poor parents in the upland region of South Carolina, schooled in poverty and adversity, without the advantages of education or the refinements of cultivated leisure, he seemed the embodiment of the spirit of the new American democracy. Early in his youth he had gone into the frontier of Tennessee where he soon won a name as a fearless and intrepid Indian fighter. On the march and in camp, he endeared himself to his men by sharing their hardships, sleeping on the ground with them, and eating parched corn when nothing better could be found for the privates. From local prominence he sprang into national fame by his exploit at the battle of New Orleans. His reputation as a military hero was enhanced by the feeling that he had been a martyr to political treachery in 1824. The farmers of the West and South claimed him as their own. The mechanics of the Eastern cities, newly enfranchised, also looked upon him as their friend. Though his views on the tariff, internal improvements, and other issues before the country were either vague or unknown, he was readily elected President. The returns of the electoral vote in 1828 revealed the sources of Jackson's power. In New England, he received but one ballot, from Maine; he had a majority of the electors in New York and all of them in Pennsylvania; and he carried every state south of Maryland and beyond the Appalachians. Adams did not get a single electoral vote in the South and West. The prophecy of the Hartford convention had been fulfilled. [Illustration: ANDREW JACKSON] When Jackson took the oath of office on March 4, 1829, the government of the United States entered into a new era. Until this time the inauguration of a President--even that of Jefferson, the apostle of simplicity--had brought no rude shock to the course of affairs at the capital. Hitherto the installation of a President meant that an old-fashioned gentleman, accompanied by a few servants, had driven to the White House in his own coach, taken the oath with quiet dignity, appointed a few new men to the higher posts, continued in office the long list of regular civil employees, and begun his administration with respectable decorum. Jackson changed all this. When he was inaugurated, men and women journeyed hundreds of miles to witness the ceremony. Great throngs pressed into the White House, "upset the bowls of punch, broke the glasses, and stood with their muddy boots on the satin-covered chairs to see the people's President." If Jefferson's inauguration was, as he called it, the "great revolution," Jackson's inauguration was a cataclysm. THE NEW DEMOCRACY AT WASHINGTON =The Spoils System.=--The staid and respectable society of Washington was disturbed by this influx of farmers and frontiersmen. To speak of politics became "bad form" among fashionable women. The clerks and civil servants of the government who had enjoyed long and secure tenure of office became alarmed at the clamor of new men for their positions. Doubtless the major portion of them had opposed the election of Jackson and looked with feelings akin to contempt upon him and his followers. With a hunter's instinct, Jackson scented his prey. Determined to have none but his friends in office, he made a clean sweep, expelling old employees to make room for men "fresh from the people." This was a new custom. Other Presidents had discharged a few officers for engaging in opposition politics. They had been careful in making appointments not to choose inveterate enemies; but they discharged relatively few men on account of their political views and partisan activities. By wholesale removals and the frank selection of officers on party grounds--a practice already well intrenched in New York--Jackson established the "spoils system" at Washington. The famous slogan, "to the victor belong the spoils of victory," became the avowed principle of the national government. Statesmen like Calhoun denounced it; poets like James Russell Lowell ridiculed it; faithful servants of the government suffered under it; but it held undisturbed sway for half a century thereafter, each succeeding generation outdoing, if possible, its predecessor in the use of public office for political purposes. If any one remarked that training and experience were necessary qualifications for important public positions, he met Jackson's own profession of faith: "The duties of any public office are so simple or admit of being made so simple that any man can in a short time become master of them." =The Tariff and Nullification.=--Jackson had not been installed in power very long before he was compelled to choose between states' rights and nationalism. The immediate occasion of the trouble was the tariff--a matter on which Jackson did not have any very decided views. His mind did not run naturally to abstruse economic questions; and owing to the divided opinion of the country it was "good politics" to be vague and ambiguous in the controversy. Especially was this true, because the tariff issue was threatening to split the country into parties again. _The Development of the Policy of "Protection."_--The war of 1812 and the commercial policies of England which followed it had accentuated the need for American economic independence. During that conflict, the United States, cut off from English manufactures as during the Revolution, built up home industries to meet the unusual call for iron, steel, cloth, and other military and naval supplies as well as the demands from ordinary markets. Iron foundries and textile mills sprang up as in the night; hundreds of business men invested fortunes in industrial enterprises so essential to the military needs of the government; and the people at large fell into the habit of buying American-made goods again. As the London _Times_ tersely observed of the Americans, "their first war with England made them independent; their second war made them formidable." In recognition of this state of affairs, the tariff of 1816 was designed: _first_, to prevent England from ruining these "infant industries" by dumping the accumulated stores of years suddenly upon American markets; and, _secondly_, to enlarge in the manufacturing centers the demand for American agricultural produce. It accomplished the purposes of its framers. It kept in operation the mills and furnaces so recently built. It multiplied the number of industrial workers and enhanced the demand for the produce of the soil. It brought about another very important result. It turned the capital and enterprise of New England from shipping to manufacturing, and converted her statesmen, once friends of low tariffs, into ardent advocates of protection. In the early years of the nineteenth century, the Yankees had bent their energies toward building and operating ships to carry produce from America to Europe and manufactures from Europe to America. For this reason, they had opposed the tariff of 1816 calculated to increase domestic production and cut down the carrying trade. Defeated in their efforts, they accepted the inevitable and turned to manufacturing. Soon they were powerful friends of protection for American enterprise. As the money invested and the labor employed in the favored industries increased, the demand for continued and heavier protection grew apace. Even the farmers who furnished raw materials, like wool, flax, and hemp, began to see eye to eye with the manufacturers. So the textile interests of New England, the iron masters of Connecticut, New Jersey, and Pennsylvania, the wool, hemp, and flax growers of Ohio, Kentucky, and Tennessee, and the sugar planters of Louisiana developed into a formidable combination in support of a high protective tariff. _The Planting States Oppose the Tariff._--In the meantime, the cotton states on the seaboard had forgotten about the havoc wrought during the Napoleonic wars when their produce rotted because there were no ships to carry it to Europe. The seas were now open. The area devoted to cotton had swiftly expanded as Alabama, Mississippi, and Louisiana were opened up. Cotton had in fact become "king" and the planters depended for their prosperity, as they thought, upon the sale of their staple to English manufacturers whose spinning and weaving mills were the wonder of the world. Manufacturing nothing and having to buy nearly everything except farm produce and even much of that for slaves, the planters naturally wanted to purchase manufactures in the cheapest market, England, where they sold most of their cotton. The tariff, they contended, raised the price of the goods they had to buy and was thus in fact a tribute laid on them for the benefit of the Northern mill owners. _The Tariff of Abominations._--They were overborne, however, in 1824 and again in 1828 when Northern manufacturers and Western farmers forced Congress to make an upward revision of the tariff. The Act of 1828 known as "the Tariff of Abominations," though slightly modified in 1832, was "the straw which broke the camel's back." Southern leaders turned in rage against the whole system. The legislatures of Virginia, North Carolina, South Carolina, Georgia, and Alabama denounced it; a general convention of delegates held at Augusta issued a protest of defiance against it; and South Carolina, weary of verbal battles, decided to prevent its enforcement. _South Carolina Nullifies the Tariff._--The legislature of that state, on October 26, 1832, passed a bill calling for a state convention which duly assembled in the following month. In no mood for compromise, it adopted the famous Ordinance of Nullification after a few days' debate. Every line of this document was clear and firm. The tariff, it opened, gives "bounties to classes and individuals ... at the expense and to the injury and oppression of other classes and individuals"; it is a violation of the Constitution of the United States and therefore null and void; its enforcement in South Carolina is unlawful; if the federal government attempts to coerce the state into obeying the law, "the people of this state will thenceforth hold themselves absolved from all further obligations to maintain or preserve their political connection with the people of the other states and will forthwith proceed to organize a separate government and do all other acts and things which sovereign and independent states may of right do." _Southern States Condemn Nullification._--The answer of the country to this note of defiance, couched in the language used in the Kentucky resolutions and by the New England Federalists during the war of 1812, was quick and positive. The legislatures of the Southern states, while condemning the tariff, repudiated the step which South Carolina had taken. Georgia responded: "We abhor the doctrine of nullification as neither a peaceful nor a constitutional remedy." Alabama found it "unsound in theory and dangerous in practice." North Carolina replied that it was "revolutionary in character, subversive of the Constitution of the United States." Mississippi answered: "It is disunion by force--it is civil war." Virginia spoke more softly, condemning the tariff and sustaining the principle of the Virginia resolutions but denying that South Carolina could find in them any sanction for her proceedings. _Jackson Firmly Upholds the Union._--The eyes of the country were turned upon Andrew Jackson. It was known that he looked with no friendly feelings upon nullification, for, at a Jefferson dinner in the spring of 1830 while the subject was in the air, he had with laconic firmness announced a toast: "Our federal union; it must be preserved." When two years later the open challenge came from South Carolina, he replied that he would enforce the law, saying with his frontier directness: "If a single drop of blood shall be shed there in opposition to the laws of the United States, I will hang the first man I can lay my hands on engaged in such conduct upon the first tree that I can reach." He made ready to keep his word by preparing for the use of military and naval forces in sustaining the authority of the federal government. Then in a long and impassioned proclamation to the people of South Carolina he pointed out the national character of the union, and announced his solemn resolve to preserve it by all constitutional means. Nullification he branded as "incompatible with the existence of the union, contradicted expressly by the letter of the Constitution, unauthorized by its spirit, inconsistent with every principle on which it was founded, and destructive of the great objects for which it was formed." _A Compromise._--In his messages to Congress, however, Jackson spoke the language of conciliation. A few days before issuing his proclamation he suggested that protection should be limited to the articles of domestic manufacture indispensable to safety in war time, and shortly afterward he asked for new legislation to aid him in enforcing the laws. With two propositions before it, one to remove the chief grounds for South Carolina's resistance and the other to apply force if it was continued, Congress bent its efforts to avoid a crisis. On February 12, 1833, Henry Clay laid before the Senate a compromise tariff bill providing for the gradual reduction of the duties until by 1842 they would reach the level of the law which Calhoun had supported in 1816. About the same time the "force bill," designed to give the President ample authority in executing the law in South Carolina, was taken up. After a short but acrimonious debate, both measures were passed and signed by President Jackson on the same day, March 2. Looking upon the reduction of the tariff as a complete vindication of her policy and an undoubted victory, South Carolina rescinded her ordinance and enacted another nullifying the force bill. [Illustration: _From an old print._ DANIEL WEBSTER] _The Webster-Hayne Debate._--Where the actual victory lay in this quarrel, long the subject of high dispute, need not concern us to-day. Perhaps the chief result of the whole affair was a clarification of the issue between the North and the South--a definite statement of the principles for which men on both sides were years afterward to lay down their lives. On behalf of nationalism and a perpetual union, the stanch old Democrat from Tennessee had, in his proclamation on nullification, spoken a language that admitted of only one meaning. On behalf of nullification, Senator Hayne, of South Carolina, a skilled lawyer and courtly orator, had in a great speech delivered in the Senate in January, 1830, set forth clearly and cogently the doctrine that the union is a compact among sovereign states from which the parties may lawfully withdraw. It was this address that called into the arena Daniel Webster, Senator from Massachusetts, who, spreading the mantle of oblivion over the Hartford convention, delivered a reply to Hayne that has been reckoned among the powerful orations of all time--a plea for the supremacy of the Constitution and the national character of the union. =The War on the United States Bank.=--If events forced the issue of nationalism and nullification upon Jackson, the same could not be said of his attack on the bank. That institution, once denounced by every true Jeffersonian, had been reestablished in 1816 under the administration of Jefferson's disciple, James Madison. It had not been in operation very long, however, before it aroused bitter opposition, especially in the South and the West. Its notes drove out of circulation the paper currency of unsound banks chartered by the states, to the great anger of local financiers. It was accused of favoritism in making loans, of conferring special privileges upon politicians in return for their support at Washington. To all Jackson's followers it was "an insidious money power." One of them openly denounced it as an institution designed "to strengthen the arm of wealth and counterpoise the influence of extended suffrage in the disposition of public affairs." This sentiment President Jackson fully shared. In his first message to Congress he assailed the bank in vigorous language. He declared that its constitutionality was in doubt and alleged that it had failed to establish a sound and uniform currency. If such an institution was necessary, he continued, it should be a public bank, owned and managed by the government, not a private concern endowed with special privileges by it. In his second and third messages, Jackson came back to the subject, leaving the decision, however, to "an enlightened people and their representatives." Moved by this frank hostility and anxious for the future, the bank applied to Congress for a renewal of its charter in 1832, four years before the expiration of its life. Clay, with his eye upon the presidency and an issue for the campaign, warmly supported the application. Congress, deeply impressed by his leadership, passed the bill granting the new charter, and sent the open defiance to Jackson. His response was an instant veto. The battle was on and it raged with fury until the close of his second administration, ending in the destruction of the bank, a disordered currency, and a national panic. In his veto message, Jackson attacked the bank as unconstitutional and even hinted at corruption. He refused to assent to the proposition that the Supreme Court had settled the question of constitutionality by the decision in the McCulloch case. "Each public officer," he argued, "who takes an oath to support the Constitution, swears that he will support it as he understands it, not as it is understood by others." Not satisfied with his veto and his declaration against the bank, Jackson ordered the Secretary of the Treasury to withdraw the government deposits which formed a large part of the institution's funds. This action he followed up by an open charge that the bank had used money shamefully to secure the return of its supporters to Congress. The Senate, stung by this charge, solemnly resolved that Jackson had "assumed upon himself authority and power not conferred by the Constitution and laws, but in derogation of both." The effects of the destruction of the bank were widespread. When its charter expired in 1836, banking was once more committed to the control of the states. The state legislatures, under a decision rendered by the Supreme Court after the death of Marshall, began to charter banks under state ownership and control, with full power to issue paper money--this in spite of the provision in the Constitution that states shall not issue bills of credit or make anything but gold and silver coin legal tender in the payment of debts. Once more the country was flooded by paper currency of uncertain value. To make matters worse, Jackson adopted the practice of depositing huge amounts of government funds in these banks, not forgetting to render favors to those institutions which supported him in politics--"pet banks," as they were styled at the time. In 1837, partially, though by no means entirely, as a result of the abolition of the bank, the country was plunged into one of the most disastrous panics which it ever experienced. =Internal Improvements Checked.=--The bank had presented to Jackson a very clear problem--one of destruction. Other questions were not so simple, particularly the subject of federal appropriations in aid of roads and other internal improvements. Jefferson had strongly favored government assistance in such matters, but his administration was followed by a reaction. Both Madison and Monroe vetoed acts of Congress appropriating public funds for public roads, advancing as their reason the argument that the Constitution authorized no such laws. Jackson, puzzled by the clamor on both sides, followed their example without making the constitutional bar absolute. Congress, he thought, might lawfully build highways of a national and military value, but he strongly deprecated attacks by local interests on the federal treasury. =The Triumph of the Executive Branch.=--Jackson's reelection in 1832 served to confirm his opinion that he was the chosen leader of the people, freed and instructed to ride rough shod over Congress and even the courts. No President before or since ever entertained in times of peace such lofty notions of executive prerogative. The entire body of federal employees he transformed into obedient servants of his wishes, a sign or a nod from him making and undoing the fortunes of the humble and the mighty. His lawful cabinet of advisers, filling all of the high posts in the government, he treated with scant courtesy, preferring rather to secure his counsel and advice from an unofficial body of friends and dependents who, owing to their secret methods and back stairs arrangements, became known as "the kitchen cabinet." Under the leadership of a silent, astute, and resourceful politician, Amos Kendall, this informal gathering of the faithful both gave and carried out decrees and orders, communicating the President's lightest wish or strictest command to the uttermost part of the country. Resolutely and in the face of bitter opposition Jackson had removed the deposits from the United States Bank. When the Senate protested against this arbitrary conduct, he did not rest until it was forced to expunge the resolution of condemnation; in time one of his lieutenants with his own hands was able to tear the censure from the records. When Chief Justice Marshall issued a decree against Georgia which did not suit him, Jackson, according to tradition, blurted out that Marshall could go ahead and enforce his own orders. To the end he pursued his willful way, finally even choosing his own successor. THE RISE OF THE WHIGS =Jackson's Measures Arouse Opposition.=--Measures so decided, policies so radical, and conduct so high-handed could not fail to arouse against Jackson a deep and exasperated opposition. The truth is the conduct of his entire administration profoundly disturbed the business and finances of the country. It was accompanied by conditions similar to those which existed under the Articles of Confederation. A paper currency, almost as unstable and irritating as the worthless notes of revolutionary days, flooded the country, hindering the easy transaction of business. The use of federal funds for internal improvements, so vital to the exchange of commodities which is the very life of industry, was blocked by executive vetoes. The Supreme Court, which, under Marshall, had held refractory states to their obligations under the Constitution, was flouted; states' rights judges, deliberately selected by Jackson for the bench, began to sap and undermine the rulings of Marshall. The protective tariff, under which the textile industry of New England, the iron mills of Pennsylvania, and the wool, flax, and hemp farms of the West had flourished, had received a severe blow in the compromise of 1833 which promised a steady reduction of duties. To cap the climax, Jackson's party, casting aside the old and reputable name of Republican, boldly chose for its title the term "Democrat," throwing down the gauntlet to every conservative who doubted the omniscience of the people. All these things worked together to evoke an opposition that was sharp and determined. [Illustration: AN OLD CARTOON RIDICULING CLAY'S TARIFF AND INTERNAL IMPROVEMENT PROGRAM] =Clay and the National Republicans.=--In this opposition movement, leadership fell to Henry Clay, a son of Kentucky, rather than to Daniel Webster of Massachusetts. Like Jackson, Clay was born in a home haunted by poverty. Left fatherless early and thrown upon his own resources, he went from Virginia into Kentucky where by sheer force of intellect he rose to eminence in the profession of law. Without the martial gifts or the martial spirit of Jackson, he slipped more easily into the social habits of the East at the same time that he retained his hold on the affections of the boisterous West. Farmers of Ohio, Indiana, and Kentucky loved him; financiers of New York and Philadelphia trusted him. He was thus a leader well fitted to gather the forces of opposition into union against Jackson. Around Clay's standard assembled a motley collection, representing every species of political opinion, united by one tie only--hatred for "Old Hickory." Nullifiers and less strenuous advocates of states' rights were yoked with nationalists of Webster's school; ardent protectionists were bound together with equally ardent free traders, all fraternizing in one grand confusion of ideas under the title of "National Republicans." Thus the ancient and honorable term selected by Jefferson and his party, now abandoned by Jacksonian Democracy, was adroitly adopted to cover the supporters of Clay. The platform of the party, however, embraced all the old Federalist principles: protection for American industry; internal improvements; respect for the Supreme Court; resistance to executive tyranny; and denunciation of the spoils system. Though Jackson was easily victorious in 1832, the popular vote cast for Clay should have given him some doubts about the faith of "the whole people" in the wisdom of his "reign." =Van Buren and the Panic of 1837.=--Nothing could shake the General's superb confidence. At the end of his second term he insisted on selecting his own successor; at a national convention, chosen by party voters, but packed with his office holders and friends, he nominated Martin Van Buren of New York. Once more he proved his strength by carrying the country for the Democrats. With a fine flourish, he attended the inauguration of Van Buren and then retired, amid the applause and tears of his devotees, to the Hermitage, his home in Tennessee. Fortunately for him, Jackson escaped the odium of a disastrous panic which struck the country with terrible force in the following summer. Among the contributory causes of this crisis, no doubt, were the destruction of the bank and the issuance of the "specie circular" of 1836 which required the purchasers of public lands to pay for them in coin, instead of the paper notes of state banks. Whatever the dominating cause, the ruin was widespread. Bank after bank went under; boom towns in the West collapsed; Eastern mills shut down; and working people in the industrial centers, starving from unemployment, begged for relief. Van Buren braved the storm, offering no measure of reform or assistance to the distracted people. He did seek security for government funds by suggesting the removal of deposits from private banks and the establishment of an independent treasury system, with government depositaries for public funds, in several leading cities. This plan was finally accepted by Congress in 1840. Had Van Buren been a captivating figure he might have lived down the discredit of the panic unjustly laid at his door; but he was far from being a favorite with the populace. Though a man of many talents, he owed his position to the quiet and adept management of Jackson rather than to his own personal qualities. The men of the frontier did not care for him. They suspected that he ate from "gold plate" and they could not forgive him for being an astute politician from New York. Still the Democratic party, remembering Jackson's wishes, renominated him unanimously in 1840 and saw him go down to utter defeat. =The Whigs and General Harrison.=--By this time, the National Republicans, now known as Whigs--a title taken from the party of opposition to the Crown in England, had learned many lessons. Taking a leaf out of the Democratic book, they nominated, not Clay of Kentucky, well known for his views on the bank, the tariff, and internal improvements, but a military hero, General William Henry Harrison, a man of uncertain political opinions. Harrison, a son of a Virginia signer of the Declaration of Independence, sprang into public view by winning a battle more famous than important, "Tippecanoe"--a brush with the Indians in Indiana. He added to his laurels by rendering praiseworthy services during the war of 1812. When days of peace returned he was rewarded by a grateful people with a seat in Congress. Then he retired to quiet life in a little village near Cincinnati. Like Jackson he was held to be a son of the South and the West. Like Jackson he was a military hero, a lesser light, but still a light. Like Old Hickory he rode into office on a tide of popular feeling against an Eastern man accused of being something of an aristocrat. His personal popularity was sufficient. The Whigs who nominated him shrewdly refused to adopt a platform or declare their belief in anything. When some Democrat asserted that Harrison was a backwoodsman whose sole wants were a jug of hard cider and a log cabin, the Whigs treated the remark not as an insult but as proof positive that Harrison deserved the votes of Jackson men. The jug and the cabin they proudly transformed into symbols of the campaign, and won for their chieftain 234 electoral votes, while Van Buren got only sixty. =Harrison and Tyler.=--The Hero of Tippecanoe was not long to enjoy the fruits of his victory. The hungry horde of Whig office seekers descended upon him like wolves upon the fold. If he went out they waylaid him; if he stayed indoors, he was besieged; not even his bed chamber was spared. He was none too strong at best and he took a deep cold on the day of his inauguration. Between driving out Democrats and appeasing Whigs, he fell mortally ill. Before the end of a month he lay dead at the capitol. Harrison's successor, John Tyler, the Vice President, whom the Whigs had nominated to catch votes in Virginia, was more of a Democrat than anything else, though he was not partisan enough to please anybody. The Whigs railed at him because he would not approve the founding of another United States Bank. The Democrats stormed at him for refusing, until near the end of his term, to sanction the annexation of Texas, which had declared its independence of Mexico in 1836. His entire administration, marked by unseemly wrangling, produced only two measures of importance. The Whigs, flushed by victory, with the aid of a few protectionist Democrats, enacted, in 1842, a new tariff law destroying the compromise which had brought about the truce between the North and the South, in the days of nullification. The distinguished leader of the Whigs, Daniel Webster, as Secretary of State, in negotiation with Lord Ashburton representing Great Britain, settled the long-standing dispute between the two countries over the Maine boundary. A year after closing this chapter in American diplomacy, Webster withdrew to private life, leaving the President to endure alone the buffets of political fortune. To the end, the Whigs regarded Tyler as a traitor to their cause; but the judgment of history is that it was a case of the biter bitten. They had nominated him for the vice presidency as a man of views acceptable to Southern Democrats in order to catch their votes, little reckoning with the chances of his becoming President. Tyler had not deceived them and, thoroughly soured, he left the White House in 1845 not to appear in public life again until the days of secession, when he espoused the Southern confederacy. Jacksonian Democracy, with new leadership, serving a new cause--slavery--was returned to power under James K. Polk, a friend of the General from Tennessee. A few grains of sand were to run through the hour glass before the Whig party was to be broken and scattered as the Federalists had been more than a generation before. THE INTERACTION OF AMERICAN AND EUROPEAN OPINION =Democracy in England and France.=--During the period of Jacksonian Democracy, as in all epochs of ferment, there was a close relation between the thought of the New World and the Old. In England, the successes of the American experiment were used as arguments in favor of overthrowing the aristocracy which George III had manipulated with such effect against America half a century before. In the United States, on the other hand, conservatives like Chancellor Kent, the stout opponent of manhood suffrage in New York, cited the riots of the British working classes as a warning against admitting the same classes to a share in the government of the United States. Along with the agitation of opinion went epoch-making events. In 1832, the year of Jackson's second triumph, the British Parliament passed its first reform bill, which conferred the ballot--not on workingmen as yet--but on mill owners and shopkeepers whom the landlords regarded with genuine horror. The initial step was thus taken in breaking down the privileges of the landed aristocracy and the rich merchants of England. About the same time a popular revolution occurred in France. The Bourbon family, restored to the throne of France by the allied powers after their victory over Napoleon in 1815, had embarked upon a policy of arbitrary government. To use the familiar phrase, they had learned nothing and forgotten nothing. Charles X, who came to the throne in 1824, set to work with zeal to undo the results of the French Revolution, to stifle the press, restrict the suffrage, and restore the clergy and the nobility to their ancient rights. His policy encountered equally zealous opposition and in 1830 he was overthrown. The popular party, under the leadership of Lafayette, established, not a republic as some of the radicals had hoped, but a "liberal" middle-class monarchy under Louis Philippe. This second French Revolution made a profound impression on Americans, convincing them that the whole world was moving toward democracy. The mayor, aldermen, and citizens of New York City joined in a great parade to celebrate the fall of the Bourbons. Mingled with cheers for the new order in France were hurrahs for "the people's own, Andrew Jackson, the Hero of New Orleans and President of the United States!" =European Interest in America.=--To the older and more settled Europeans, the democratic experiment in America was either a menace or an inspiration. Conservatives viewed it with anxiety; liberals with optimism. Far-sighted leaders could see that the tide of democracy was rising all over the world and could not be stayed. Naturally the country that had advanced furthest along the new course was the place in which to find arguments for and against proposals that Europe should make experiments of the same character. =De Tocqueville's _Democracy in America_.=--In addition to the casual traveler there began to visit the United States the thoughtful observer bent on finding out what manner of nation this was springing up in the wilderness. Those who looked with sympathy upon the growing popular forces of England and France found in the United States, in spite of many blemishes and defects, a guarantee for the future of the people's rule in the Old World. One of these, Alexis de Tocqueville, a French liberal of mildly democratic sympathies, made a journey to this country in 1831; he described in a very remarkable volume, _Democracy in America_, the grand experiment as he saw it. On the whole he was convinced. After examining with a critical eye the life and labor of the American people, as well as the constitutions of the states and the nation, he came to the conclusion that democracy with all its faults was both inevitable and successful. Slavery he thought was a painful contrast to the other features of American life, and he foresaw what proved to be the irrepressible conflict over it. He believed that through blundering the people were destined to learn the highest of all arts, self-government on a grand scale. The absence of a leisure class, devoted to no calling or profession, merely enjoying the refinements of life and adding to its graces--the flaw in American culture that gave deep distress to many a European leader--de Tocqueville thought a necessary virtue in the republic. "Amongst a democratic people where there is no hereditary wealth, every man works to earn a living, or has worked, or is born of parents who have worked. A notion of labor is therefore presented to the mind on every side as the necessary, natural, and honest condition of human existence." It was this notion of a government in the hands of people who labored that struck the French publicist as the most significant fact in the modern world. =Harriet Martineau's Visit to America.=--This phase of American life also profoundly impressed the brilliant English writer, Harriet Martineau. She saw all parts of the country, the homes of the rich and the log cabins of the frontier; she traveled in stagecoaches, canal boats, and on horseback; and visited sessions of Congress and auctions at slave markets. She tried to view the country impartially and the thing that left the deepest mark on her mind was the solidarity of the people in one great political body. "However various may be the tribes of inhabitants in those states, whatever part of the world may have been their birthplace, or that of their fathers, however broken may be their language, however servile or noble their employments, however exalted or despised their state, all are declared to be bound together by equal political obligations.... In that self-governing country all are held to have an equal interest in the principles of its institutions and to be bound in equal duty to watch their workings." Miss Martineau was also impressed with the passion of Americans for land ownership and contrasted the United States favorably with England where the tillers of the soil were either tenants or laborers for wages. =Adverse Criticism.=--By no means all observers and writers were convinced that America was a success. The fastidious traveler, Mrs. Trollope, who thought the English system of church and state was ideal, saw in the United States only roughness and ignorance. She lamented the "total and universal want of manners both in males and females," adding that while "they appear to have clear heads and active intellects," there was "no charm, no grace in their conversation." She found everywhere a lack of reverence for kings, learning, and rank. Other critics were even more savage. The editor of the _Foreign Quarterly_ petulantly exclaimed that the United States was "a brigand confederation." Charles Dickens declared the country to be "so maimed and lame, so full of sores and ulcers that her best friends turn from the loathsome creature in disgust." Sydney Smith, editor of the _Edinburgh Review_, was never tired of trying his caustic wit at the expense of America. "Their Franklins and Washingtons and all the other sages and heroes of their revolution were born and bred subjects of the king of England," he observed in 1820. "During the thirty or forty years of their independence they have done absolutely nothing for the sciences, for the arts, for literature, or even for the statesmanlike studies of politics or political economy.... In the four quarters of the globe who reads an American book? Or goes to an American play? Or looks at an American picture or statue?" To put a sharp sting into his taunt he added, forgetting by whose authority slavery was introduced and fostered: "Under which of the old tyrannical governments of Europe is every sixth man a slave whom his fellow creatures may buy and sell?" Some Americans, while resenting the hasty and often superficial judgments of European writers, winced under their satire and took thought about certain particulars in the indictments brought against them. The mass of the people, however, bent on the great experiment, gave little heed to carping critics who saw the flaws and not the achievements of our country--critics who were in fact less interested in America than in preventing the rise and growth of democracy in Europe. =References= J.S. Bassett, _Life of Andrew Jackson_. J.W. Burgess, _The Middle Period_. H. Lodge, _Daniel Webster_. W. Macdonald, _Jacksonian Democracy_ (American Nation Series). Ostrogorski, _Democracy and the Organization of Political Parties_, Vol. II. C.H. Peck, _The Jacksonian Epoch_. C. Schurz, _Henry Clay_. =Questions= 1. By what devices was democracy limited in the first days of our Republic? 2. On what grounds were the limitations defended? Attacked? 3. Outline the rise of political democracy in the United States. 4. Describe three important changes in our political system. 5. Contrast the Presidents of the old and the new generations. 6. Account for the unpopularity of John Adams' administration. 7. What had been the career of Andrew Jackson before 1829? 8. Sketch the history of the protective tariff and explain the theory underlying it. 9. Explain the growth of Southern opposition to the tariff. 10. Relate the leading events connected with nullification in South Carolina. 11. State Jackson's views and tell the outcome of the controversy. 12. Why was Jackson opposed to the bank? How did he finally destroy it? 13. The Whigs complained of Jackson's "executive tyranny." What did they mean? 14. Give some of the leading events in Clay's career. 15. How do you account for the triumph of Harrison in 1840? 16. Why was Europe especially interested in America at this period? Who were some of the European writers on American affairs? =Research Topics= =Jackson's Criticisms of the Bank.=--Macdonald, _Documentary Source Book_, pp. 320-329. =Financial Aspects of the Bank Controversy.=--Dewey, _Financial History of the United States_, Sections 86-87; Elson, _History of the United States_, pp. 492-496. =Jackson's View of the Union.=--See his proclamation on nullification in Macdonald, pp. 333-340. =Nullification.=--McMaster, _History of the People of the United States_, Vol. VI, pp. 153-182; Elson, pp. 487-492. =The Webster-Hayne Debate.=--Analyze the arguments. Extensive extracts are given in Macdonald's larger three-volume work, _Select Documents of United States History, 1776-1761_, pp. 239-260. =The Character of Jackson's Administration.=--Woodrow Wilson, _History of the American People_, Vol. IV, pp. 1-87; Elson, pp. 498-501. =The People in 1830.=--From contemporary writings in Hart, _American History Told by Contemporaries_, Vol. III, pp. 509-530. =Biographical Studies.=--Andrew Jackson, J.Q. Adams, Henry Clay, Daniel Webster, J.C. Calhoun, and W.H. Harrison. CHAPTER XII THE MIDDLE BORDER AND THE GREAT WEST "We shall not send an emigrant beyond the Mississippi in a hundred years," exclaimed Livingston, the principal author of the Louisiana purchase. When he made this astounding declaration, he doubtless had before his mind's eye the great stretches of unoccupied lands between the Appalachians and the Mississippi. He also had before him the history of the English colonies, which told him of the two centuries required to settle the seaboard region. To practical men, his prophecy did not seem far wrong; but before the lapse of half that time there appeared beyond the Mississippi a tier of new states, reaching from the Gulf of Mexico to the southern boundary of Minnesota, and a new commonwealth on the Pacific Ocean where American emigrants had raised the Bear flag of California. THE ADVANCE OF THE MIDDLE BORDER =Missouri.=--When the middle of the nineteenth century had been reached, the Mississippi River, which Daniel Boone, the intrepid hunter, had crossed during Washington's administration "to escape from civilization" in Kentucky, had become the waterway for a vast empire. The center of population of the United States had passed to the Ohio Valley. Missouri, with its wide reaches of rich lands, low-lying, level, and fertile, well adapted to hemp raising, had drawn to its borders thousands of planters from the old Southern states--from Virginia and the Carolinas as well as from Kentucky and Tennessee. When the great compromise of 1820-21 admitted her to the union, wearing "every jewel of sovereignty," as a florid orator announced, migratory slave owners were assured that their property would be safe in Missouri. Along the western shore of the Mississippi and on both banks of the Missouri to the uttermost limits of the state, plantations tilled by bondmen spread out in broad expanses. In the neighborhood of Jefferson City the slaves numbered more than a fourth of the population. Into this stream of migration from the planting South flowed another current of land-tilling farmers; some from Kentucky, Tennessee, and Mississippi, driven out by the onrush of the planters buying and consolidating small farms into vast estates; and still more from the East and the Old World. To the northwest over against Iowa and to the southwest against Arkansas, these yeomen laid out farms to be tilled by their own labor. In those regions the number of slaves seldom rose above five or six per cent of the population. The old French post, St. Louis, enriched by the fur trade of the Far West and the steamboat traffic of the river, grew into a thriving commercial city, including among its seventy-five thousand inhabitants in 1850 nearly forty thousand foreigners, German immigrants from Pennsylvania and Europe being the largest single element. =Arkansas.=--Below Missouri lay the territory of Arkansas, which had long been the paradise of the swarthy hunter and the restless frontiersman fleeing from the advancing borders of farm and town. In search of the life, wild and free, where the rifle supplied the game and a few acres of ground the corn and potatoes, they had filtered into the territory in an unending drift, "squatting" on the land. Without so much as asking the leave of any government, territorial or national, they claimed as their own the soil on which they first planted their feet. Like the Cherokee Indians, whom they had as neighbors, whose very customs and dress they sometimes adopted, the squatters spent their days in the midst of rough plenty, beset by chills, fevers, and the ills of the flesh, but for many years unvexed by political troubles or the restrictions of civilized life. Unfortunately for them, however, the fertile valleys of the Mississippi and Arkansas were well adapted to the cultivation of cotton and tobacco and their sylvan peace was soon broken by an invasion of planters. The newcomers, with their servile workers, spread upward in the valley toward Missouri and along the southern border westward to the Red River. In time the slaves in the tier of counties against Louisiana ranged from thirty to seventy per cent of the population. This marked the doom of the small farmer, swept Arkansas into the main current of planting politics, and led to a powerful lobby at Washington in favor of admission to the union, a boon granted in 1836. =Michigan.=--In accordance with a well-established custom, a free state was admitted to the union to balance a slave state. In 1833, the people of Michigan, a territory ten times the size of Connecticut, announced that the time had come for them to enjoy the privileges of a commonwealth. All along the southern border the land had been occupied largely by pioneers from New England, who built prim farmhouses and adopted the town-meeting plan of self-government after the fashion of the old home. The famous post of Detroit was growing into a flourishing city as the boats plying on the Great Lakes carried travelers, settlers, and freight through the narrows. In all, according to the census, there were more than ninety thousand inhabitants in the territory; so it was not without warrant that they clamored for statehood. Congress, busy as ever with politics, delayed; and the inhabitants of Michigan, unable to restrain their impatience, called a convention, drew up a constitution, and started a lively quarrel with Ohio over the southern boundary. The hand of Congress was now forced. Objections were made to the new constitution on the ground that it gave the ballot to all free white males, including aliens not yet naturalized; but the protests were overborne in a long debate. The boundary was fixed, and Michigan, though shorn of some of the land she claimed, came into the union in 1837. =Wisconsin.=--Across Lake Michigan to the west lay the territory of Wisconsin, which shared with Michigan the interesting history of the Northwest, running back into the heroic days when French hunters and missionaries were planning a French empire for the great monarch, Louis XIV. It will not be forgotten that the French rangers of the woods, the black-robed priests, prepared for sacrifice, even to death, the trappers of the French agencies, and the French explorers--Marquette, Joliet, and Menard--were the first white men to paddle their frail barks through the northern waters. They first blazed their trails into the black forests and left traces of their work in the names of portages and little villages. It was from these forests that Red Men in full war paint journeyed far to fight under the _fleur-de-lis_ of France when the soldiers of King Louis made their last stand at Quebec and Montreal against the imperial arms of Britain. It was here that the British flag was planted in 1761 and that the great Pontiac conspiracy was formed two years later to overthrow British dominion. When, a generation afterward, the Stars and Stripes supplanted the Union Jack, the French were still almost the only white men in the region. They were soon joined by hustling Yankee fur traders who did battle royal against British interlopers. The traders cut their way through forest trails and laid out the routes through lake and stream and over portages for the settlers and their families from the states "back East." It was the forest ranger who discovered the water power later used to turn the busy mills grinding the grain from the spreading farm lands. In the wake of the fur hunters, forest men, and farmers came miners from Kentucky, Tennessee, and Missouri crowding in to exploit the lead ores of the northwest, some of them bringing slaves to work their claims. Had it not been for the gold fever of 1849 that drew the wielders of pick and shovel to the Far West, Wisconsin would early have taken high rank among the mining regions of the country. From a favorable point of vantage on Lake Michigan, the village of Milwaukee, a center for lumber and grain transport and a place of entry for Eastern goods, grew into a thriving city. It claimed twenty thousand inhabitants, when in 1848 Congress admitted Wisconsin to the union. Already the Germans, Irish, and Scandinavians had found their way into the territory. They joined Americans from the older states in clearing forests, building roads, transforming trails into highways, erecting mills, and connecting streams with canals to make a network of routes for the traffic that poured to and from the Great Lakes. =Iowa and Minnesota.=--To the southwest of Wisconsin beyond the Mississippi, where the tall grass of the prairies waved like the sea, farmers from New England, New York, and Ohio had prepared Iowa for statehood. A tide of immigration that might have flowed into Missouri went northward; for freemen, unaccustomed to slavery and slave markets, preferred the open country above the compromise line. With incredible swiftness, they spread farms westward from the Mississippi. With Yankee ingenuity they turned to trading on the river, building before 1836 three prosperous centers of traffic: Dubuque, Davenport, and Burlington. True to their old traditions, they founded colleges and academies that religion and learning might be cherished on the frontier as in the states from which they came. Prepared for self-government, the Iowans laid siege to the door of Congress and were admitted to the union in 1846. Above Iowa, on the Mississippi, lay the territory of Minnesota--the home of the Dakotas, the Ojibways, and the Sioux. Like Michigan and Wisconsin, it had been explored early by the French scouts, and the first white settlement was the little French village of Mendota. To the people of the United States, the resources of the country were first revealed by the historic journey of Zebulon Pike in 1805 and by American fur traders who were quick to take advantage of the opportunity to ply their arts of hunting and bartering in fresh fields. In 1839 an American settlement was planted at Marina on the St. Croix, the outpost of advancing civilization. Within twenty years, the territory, boasting a population of 150,000, asked for admission to the union. In 1858 the plea was granted and Minnesota showed her gratitude three years later by being first among the states to offer troops to Lincoln in the hour of peril. ON TO THE PACIFIC--TEXAS AND THE MEXICAN WAR =The Uniformity of the Middle West.=--There was a certain monotony about pioneering in the Northwest and on the middle border. As the long stretches of land were cleared or prepared for the plow, they were laid out like checkerboards into squares of forty, eighty, one hundred sixty, or more acres, each the seat of a homestead. There was a striking uniformity also about the endless succession of fertile fields spreading far and wide under the hot summer sun. No majestic mountains relieved the sweep of the prairie. Few monuments of other races and antiquity were there to awaken curiosity about the region. No sonorous bells in old missions rang out the time of day. The chaffering Red Man bartering blankets and furs for powder and whisky had passed farther on. The population was made up of plain farmers and their families engaged in severe and unbroken labor, chopping down trees, draining fever-breeding swamps, breaking new ground, and planting from year to year the same rotation of crops. Nearly all the settlers were of native American stock into whose frugal and industrious lives the later Irish and German immigrants fitted, on the whole, with little friction. Even the Dutch oven fell before the cast-iron cooking stove. Happiness and sorrow, despair and hope were there, but all encompassed by the heavy tedium of prosaic sameness. [Illustration: SANTA BARBARA MISSION] =A Contrast in the Far West and Southwest.=--As George Rogers Clark and Daniel Boone had stirred the snug Americans of the seaboard to seek their fortunes beyond the Appalachians, so now Kit Carson, James Bowie, Sam Houston, Davy Crockett, and John C. Fremont were to lead the way into a new land, only a part of which was under the American flag. The setting for this new scene in the westward movement was thrown out in a wide sweep from the headwaters of the Mississippi to the banks of the Rio Grande; from the valleys of the Sabine and Red rivers to Montana and the Pacific slope. In comparison with the middle border, this region presented such startling diversities that only the eye of faith could foresee the unifying power of nationalism binding its communities with the older sections of the country. What contrasts indeed! The blue grass region of Kentucky or the rich, black soil of Illinois--the painted desert, the home of the sage brush and the coyote! The level prairies of Iowa--the mighty Rockies shouldering themselves high against the horizon! The long bleak winters of Wisconsin--California of endless summer! The log churches of Indiana or Illinois--the quaint missions of San Antonio, Tucson, and Santa Barbara! The little state of Delaware--the empire of Texas, one hundred and twenty times its area! And scattered about through the Southwest were signs of an ancient civilization--fragments of four-and five-story dwellings, ruined dams, aqueducts, and broken canals, which told of once prosperous peoples who, by art and science, had conquered the aridity of the desert and lifted themselves in the scale of culture above the savages of the plain. The settlers of this vast empire were to be as diverse in their origins and habits as those of the colonies on the coast had been. Americans of English, Irish, and Scotch-Irish descent came as usual from the Eastern states. To them were added the migratory Germans as well. Now for the first time came throngs of Scandinavians. Some were to make their homes on quiet farms as the border advanced against the setting sun. Others were to be Indian scouts, trappers, fur hunters, miners, cowboys, Texas planters, keepers of lonely posts on the plain and the desert, stage drivers, pilots of wagon trains, pony riders, fruit growers, "lumber jacks," and smelter workers. One common bond united them--a passion for the self-government accorded to states. As soon as a few thousand settlers came together in a single territory, there arose a mighty shout for a position beside the staid commonwealths of the East and the South. Statehood meant to the pioneers self-government, dignity, and the right to dispose of land, minerals, and timber in their own way. In the quest for this local autonomy there arose many a wordy contest in Congress, each of the political parties lending a helping hand in the admission of a state when it gave promise of adding new congressmen of the "right political persuasion," to use the current phrase. =Southern Planters and Texas.=--While the farmers of the North found the broad acres of the Western prairies stretching on before them apparently in endless expanse, it was far different with the Southern planters. Ever active in their search for new fields as they exhausted the virgin soil of the older states, the restless subjects of King Cotton quickly reached the frontier of Louisiana. There they paused; but only for a moment. The fertile land of Texas just across the boundary lured them on and the Mexican republic to which it belonged extended to them a more than generous welcome. Little realizing the perils lurking in a "peaceful penetration," the authorities at Mexico City opened wide the doors and made large grants of land to American contractors, who agreed to bring a number of families into Texas. The omnipresent Yankee, in the person of Moses Austin of Connecticut, hearing of this good news in the Southwest, obtained a grant in 1820 to settle three hundred Americans near Bexar--a commission finally carried out to the letter by his son and celebrated in the name given to the present capital of the state of Texas. Within a decade some twenty thousand Americans had crossed the border. =Mexico Closes the Door.=--The government of Mexico, unaccustomed to such enterprise and thoroughly frightened by its extent, drew back in dismay. Its fears were increased as quarrels broke out between the Americans and the natives in Texas. Fear grew into consternation when efforts were made by President Jackson to buy the territory for the United States. Mexico then sought to close the flood gates. It stopped all American colonization schemes, canceled many of the land grants, put a tariff on farming implements, and abolished slavery. These barriers were raised too late. A call for help ran through the western border of the United States. The sentinels of the frontier answered. Davy Crockett, the noted frontiersman, bear hunter, and backwoods politician; James Bowie, the dexterous wielder of the knife that to this day bears his name; and Sam Houston, warrior and pioneer, rushed to the aid of their countrymen in Texas. Unacquainted with the niceties of diplomacy, impatient at the formalities of international law, they soon made it known that in spite of Mexican sovereignty they would be their own masters. =The Independence of Texas Declared.=--Numbering only about one-fourth of the population in Texas, they raised the standard of revolt in 1836 and summoned a convention. Following in the footsteps of their ancestors, they issued a declaration of independence signed mainly by Americans from the slave states. Anticipating that the government of Mexico would not quietly accept their word of defiance as final, they dispatched a force to repel "the invading army," as General Houston called the troops advancing under the command of Santa Ana, the Mexican president. A portion of the Texan soldiers took their stand in the Alamo, an old Spanish mission in the cottonwood trees in the town of San Antonio. Instead of obeying the order to blow up the mission and retire, they held their ground until they were completely surrounded and cut off from all help. Refusing to surrender, they fought to the bitter end, the last man falling a victim to the sword. Vengeance was swift. Within three months General Houston overwhelmed Santa Ana at the San Jacinto, taking him prisoner of war and putting an end to all hopes for the restoration of Mexican sovereignty over Texas. The Lone Star Republic, with Houston at the head, then sought admission to the United States. This seemed at first an easy matter. All that was required to bring it about appeared to be a treaty annexing Texas to the union. Moreover, President Jackson, at the height of his popularity, had a warm regard for General Houston and, with his usual sympathy for rough and ready ways of doing things, approved the transaction. Through an American representative in Mexico, Jackson had long and anxiously labored, by means none too nice, to wring from the Mexican republic the cession of the coveted territory. When the Texans took matters into their own hands, he was more than pleased; but he could not marshal the approval of two-thirds of the Senators required for a treaty of annexation. Cautious as well as impetuous, Jackson did not press the issue; he went out of office in 1837 with Texas uncertain as to her future. =Northern Opposition to Annexation.=--All through the North the opposition to annexation was clear and strong. Anti-slavery agitators could hardly find words savage enough to express their feelings. "Texas," exclaimed Channing in a letter to Clay, "is but the first step of aggression. I trust indeed that Providence will beat back and humble our cupidity and ambition. I now ask whether as a people we are prepared to seize on a neighboring territory for the end of extending slavery? I ask whether as a people we can stand forth in the sight of God, in the sight of nations, and adopt this atrocious policy? Sooner perish! Sooner be our name blotted out from the record of nations!" William Lloyd Garrison called for the secession of the Northern states if Texas was brought into the union with slavery. John Quincy Adams warned his countrymen that they were treading in the path of the imperialism that had brought the nations of antiquity to judgment and destruction. Henry Clay, the Whig candidate for President, taking into account changing public sentiment, blew hot and cold, losing the state of New York and the election of 1844 by giving a qualified approval of annexation. In the same campaign, the Democrats boldly demanded the "Reannexation of Texas," based on claims which the United States once had to Spanish territory beyond the Sabine River. =Annexation.=--The politicians were disposed to walk very warily. Van Buren, at heart opposed to slavery extension, refused to press the issue of annexation. Tyler, a pro-slavery Democrat from Virginia, by a strange fling of fortune carried into office as a nominal Whig, kept his mind firmly fixed on the idea of reelection and let the troublesome matter rest until the end of his administration was in sight. He then listened with favor to the voice of the South. Calhoun stated what seemed to be a convincing argument: All good Americans have their hearts set on the Constitution; the admission of Texas is absolutely essential to the preservation of the union; it will give a balance of power to the South as against the North growing with incredible swiftness in wealth and population. Tyler, impressed by the plea, appointed Calhoun to the office of Secretary of State in 1844, authorizing him to negotiate the treaty of annexation--a commission at once executed. This scheme was blocked in the Senate where the necessary two-thirds vote could not be secured. Balked but not defeated, the advocates of annexation drew up a joint resolution which required only a majority vote in both houses, and in February of the next year, just before Tyler gave way to Polk, they pushed it through Congress. So Texas, amid the groans of Boston and the hurrahs of Charleston, folded up her flag and came into the union. [Illustration: TEXAS AND THE TERRITORY IN DISPUTE] =The Mexican War.=--The inevitable war with Mexico, foretold by the abolitionists and feared by Henry Clay, ensued, the ostensible cause being a dispute over the boundaries of the new state. The Texans claimed all the lands down to the Rio Grande. The Mexicans placed the border of Texas at the Nueces River and a line drawn thence in a northerly direction. President Polk, accepting the Texan view of the controversy, ordered General Zachary Taylor to move beyond the Nueces in defense of American sovereignty. This act of power, deemed by the Mexicans an invasion of their territory, was followed by an attack on our troops. President Polk, not displeased with the turn of events, announced that American blood had been "spilled on American soil" and that war existed "by the act of Mexico." Congress, in a burst of patriotic fervor, brushed aside the protests of those who deplored the conduct of the government as wanton aggression on a weaker nation and granted money and supplies to prosecute the war. The few Whigs in the House of Representatives, who refused to vote in favor of taking up arms, accepted the inevitable with such good grace as they could command. All through the South and the West the war was popular. New England grumbled, but gave loyal, if not enthusiastic, support to a conflict precipitated by policies not of its own choosing. Only a handful of firm objectors held out. James Russell Lowell, in his _Biglow Papers_, flung scorn and sarcasm to the bitter end. =The Outcome of the War.=--The foregone conclusion was soon reached. General Taylor might have delivered the fatal thrust from northern Mexico if politics had not intervened. Polk, anxious to avoid raising up another military hero for the Whigs to nominate for President, decided to divide the honors by sending General Scott to strike a blow at the capital, Mexico City. The deed was done with speed and pomp and two heroes were lifted into presidential possibilities. In the Far West a third candidate was made, John C. Fremont, who, in cooperation with Commodores Sloat and Stockton and General Kearney, planted the Stars and Stripes on the Pacific slope. In February, 1848, the Mexicans came to terms, ceding to the victor California, Arizona, New Mexico, and more--a domain greater in extent than the combined areas of France and Germany. As a salve to the wound, the vanquished received fifteen million dollars in cash and the cancellation of many claims held by American citizens. Five years later, through the negotiations of James Gadsden, a further cession of lands along the southern border of Arizona and New Mexico was secured on payment of ten million dollars. =General Taylor Elected President.=--The ink was hardly dry upon the treaty that closed the war before "rough and ready" General Taylor, a slave owner from Louisiana, "a Whig," as he said, "but not an ultra Whig," was put forward as the Whig candidate for President. He himself had not voted for years and he was fairly innocent in matters political. The tariff, the currency, and internal improvements, with a magnificent gesture he referred to the people's representatives in Congress, offering to enforce the laws as made, if elected. Clay's followers mourned. Polk stormed but could not win even a renomination at the hands of the Democrats. So it came about that the hero of Buena Vista, celebrated for his laconic order, "Give 'em a little more grape, Captain Bragg," became President of the United States. THE PACIFIC COAST AND UTAH =Oregon.=--Closely associated in the popular mind with the contest about the affairs of Texas was a dispute with Great Britain over the possession of territory in Oregon. In their presidential campaign of 1844, the Democrats had coupled with the slogan, "The Reannexation of Texas," two other cries, "The Reoccupation of Oregon," and "Fifty-four Forty or Fight." The last two slogans were founded on American discoveries and explorations in the Far Northwest. Their appearance in politics showed that the distant Oregon country, larger in area than New England, New York, and Pennsylvania combined, was at last receiving from the nation the attention which its importance warranted. _Joint Occupation and Settlement._--Both England and the United States had long laid claim to Oregon and in 1818 they had agreed to occupy the territory jointly--a contract which was renewed ten years later for an indefinite period. Under this plan, citizens of both countries were free to hunt and settle anywhere in the region. The vanguard of British fur traders and Canadian priests was enlarged by many new recruits, with Americans not far behind them. John Jacob Astor, the resourceful New York merchant, sent out trappers and hunters who established a trading post at Astoria in 1811. Some twenty years later, American missionaries--among them two very remarkable men, Jason Lee and Marcus Whitman--were preaching the gospel to the Indians. Through news from the fur traders and missionaries, Eastern farmers heard of the fertile lands awaiting their plows on the Pacific slope; those with the pioneering spirit made ready to take possession of the new country. In 1839 a band went around by Cape Horn. Four years later a great expedition went overland. The way once broken, others followed rapidly. As soon as a few settlements were well established, the pioneers held a mass meeting and agreed upon a plan of government. "We, the people of Oregon territory," runs the preamble to their compact, "for the purposes of mutual protection and to secure peace and prosperity among ourselves, agree to adopt the following laws and regulations until such time as the United States of America extend their jurisdiction over us." Thus self-government made its way across the Rocky Mountains. [Illustration: THE OREGON COUNTRY AND THE DISPUTED BOUNDARY] _The Boundary Dispute with England Adjusted._--By this time it was evident that the boundaries of Oregon must be fixed. Having made the question an issue in his campaign, Polk, after his election in 1844, pressed it upon the attention of the country. In his inaugural address and his first message to Congress he reiterated the claim of the Democratic platform that "our title to the whole territory of Oregon is clear and unquestionable." This pretension Great Britain firmly rejected, leaving the President a choice between war and compromise. Polk, already having the contest with Mexico on his hands, sought and obtained a compromise. The British government, moved by a hint from the American minister, offered a settlement which would fix the boundary at the forty-ninth parallel instead of "fifty-four forty," and give it Vancouver Island. Polk speedily chose this way out of the dilemma. Instead of making the decision himself, however, and drawing up a treaty, he turned to the Senate for "counsel." As prearranged with party leaders, the advice was favorable to the plan. The treaty, duly drawn in 1846, was ratified by the Senate after an acrimonious debate. "Oh! mountain that was delivered of a mouse," exclaimed Senator Benton, "thy name shall be fifty-four forty!" Thirteen years later, the southern part of the territory was admitted to the union as the state of Oregon, leaving the northern and eastern sections in the status of a territory. =California.=--With the growth of the northwestern empire, dedicated by nature to freedom, the planting interests might have been content, had fortune not wrested from them the fair country of California. Upon this huge territory they had set their hearts. The mild climate and fertile soil seemed well suited to slavery and the planters expected to extend their sway to the entire domain. California was a state of more than 155,000 square miles--about seventy times the size of the state of Delaware. It could readily be divided into five or six large states, if that became necessary to preserve the Southern balance of power. _Early American Relations with California._--Time and tide, it seems, were not on the side of the planters. Already Americans of a far different type were invading the Pacific slope. Long before Polk ever dreamed of California, the Yankee with his cargo of notions had been around the Horn. Daring skippers had sailed out of New England harbors with a variety of goods, bent their course around South America to California, on to China and around the world, trading as they went and leaving pots, pans, woolen cloth, guns, boots, shoes, salt fish, naval stores, and rum in their wake. "Home from Californy!" rang the cry in many a New England port as a good captain let go his anchor on his return from the long trading voyage in the Pacific. [Illustration: THE OVERLAND TRAILS] _The Overland Trails._--Not to be outdone by the mariners of the deep, western scouts searched for overland routes to the Pacific. Zebulon Pike, explorer and pathfinder, by his expedition into the Southwest during Jefferson's administration, had discovered the resources of New Spain and had shown his countrymen how easy it was to reach Santa Fe from the upper waters of the Arkansas River. Not long afterward, traders laid open the route, making Franklin, Missouri, and later Fort Leavenworth the starting point. Along the trail, once surveyed, poured caravans heavily guarded by armed men against marauding Indians. Sand storms often wiped out all signs of the route; hunger and thirst did many a band of wagoners to death; but the lure of the game and the profits at the end kept the business thriving. Huge stocks of cottons, glass, hardware, and ammunition were drawn almost across the continent to be exchanged at Santa Fe for furs, Indian blankets, silver, and mules; and many a fortune was made out of the traffic. _Americans in California._--Why stop at Santa Fe? The question did not long remain unanswered. In 1829, Ewing Young broke the path to Los Angeles. Thirteen years later Fremont made the first of his celebrated expeditions across plain, desert, and mountain, arousing the interest of the entire country in the Far West. In the wake of the pathfinders went adventurers, settlers, and artisans. By 1847, more than one-fifth of the inhabitants in the little post of two thousand on San Francisco Bay were from the United States. The Mexican War, therefore, was not the beginning but the end of the American conquest of California--a conquest initiated by Americans who went to till the soil, to trade, or to follow some mechanical pursuit. _The Discovery of Gold._--As if to clinch the hold on California already secured by the friends of free soil, there came in 1848 the sudden discovery of gold at Sutter's Mill in the Sacramento Valley. When this exciting news reached the East, a mighty rush began to California, over the trails, across the Isthmus of Panama, and around Cape Horn. Before two years had passed, it is estimated that a hundred thousand people, in search of fortunes, had arrived in California--mechanics, teachers, doctors, lawyers, farmers, miners, and laborers from the four corners of the earth. [Illustration: _From an old print_ SAN FRANCISCO IN 1849] _California a Free State._--With this increase in population there naturally resulted the usual demand for admission to the union. Instead of waiting for authority from Washington, the Californians held a convention in 1849 and framed their constitution. With impatience, the delegates brushed aside the plea that "the balance of power between the North and South" required the admission of their state as a slave commonwealth. Without a dissenting voice, they voted in favor of freedom and boldly made their request for inclusion among the United States. President Taylor, though a Southern man, advised Congress to admit the applicant. Robert Toombs of Georgia vowed to God that he preferred secession. Henry Clay, the great compromiser, came to the rescue and in 1850 California was admitted as a free state. =Utah.=--On the long road to California, in the midst of forbidding and barren wastes, a religious sect, the Mormons, had planted a colony destined to a stormy career. Founded in 1830 under the leadership of Joseph Smith of New York, the sect had suffered from many cruel buffets of fortune. From Ohio they had migrated into Missouri where they were set upon and beaten. Some of them were murdered by indignant neighbors. Harried out of Missouri, they went into Illinois only to see their director and prophet, Smith, first imprisoned by the authorities and then shot by a mob. Having raised up a cloud of enemies on account of both their religious faith and their practice of allowing a man to have more than one wife, they fell in heartily with the suggestion of a new leader, Brigham Young, that they go into the Far West beyond the plains of Kansas--into the forlorn desert where the wicked would cease from troubling and the weary could be at rest, as they read in the Bible. In 1847, Young, with a company of picked men, searched far and wide until he found a suitable spot overlooking the Salt Lake Valley. Returning to Illinois, he gathered up his followers, now numbering several thousand, and in one mighty wagon caravan they all went to their distant haven. _Brigham Young and His Economic System._--In Brigham Young the Mormons had a leader of remarkable power who gave direction to the redemption of the arid soil, the management of property, and the upbuilding of industry. He promised them to make the desert blossom as the rose, and verily he did it. He firmly shaped the enterprise of the colony along co-operative lines, holding down the speculator and profiteer with one hand and giving encouragement to the industrious poor with the other. With the shrewdness befitting a good business man, he knew how to draw the line between public and private interest. Land was given outright to each family, but great care was exercised in the distribution so that none should have great advantage over another. The purchase of supplies and the sale of produce were carried on through a cooperative store, the profits of which went to the common good. Encountering for the first time in the history of the Anglo-Saxon race the problem of aridity, the Mormons surmounted the most perplexing obstacles with astounding skill. They built irrigation works by cooperative labor and granted water rights to all families on equitable terms. _The Growth of Industries._--Though farming long remained the major interest of the colony, the Mormons, eager to be self-supporting in every possible way, bent their efforts also to manufacturing and later to mining. Their missionaries, who hunted in the highways and byways of Europe for converts, never failed to stress the economic advantages of the sect. "We want," proclaimed President Young to all the earth, "a company of woolen manufacturers to come with machinery and take the wool from the sheep and convert it into the best clothes. We want a company of potters; we need them; the clay is ready and the dishes wanted.... We want some men to start a furnace forthwith; the iron, coal, and molders are waiting.... We have a printing press and any one who can take good printing and writing paper to the Valley will be a blessing to themselves and the church." Roads and bridges were built; millions were spent in experiments in agriculture and manufacturing; missionaries at a huge cost were maintained in the East and in Europe; an army was kept for defense against the Indians; and colonies were planted in the outlying regions. A historian of Deseret, as the colony was called by the Mormons, estimated in 1895 that by the labor of their hands the people had produced nearly half a billion dollars in wealth since the coming of the vanguard. _Polygamy Forbidden._--The hope of the Mormons that they might forever remain undisturbed by outsiders was soon dashed to earth, for hundreds of farmers and artisans belonging to other religious sects came to settle among them. In 1850 the colony was so populous and prosperous that it was organized into a territory of the United States and brought under the supervision of the federal government. Protests against polygamy were raised in the colony and at the seat of authority three thousand miles away at Washington. The new Republican party in 1856 proclaimed it "the right and duty of Congress to prohibit in the Territories those twin relics of barbarism, polygamy and slavery." In due time the Mormons had to give up their marriage practices which were condemned by the common opinion of all western civilization; but they kept their religious faith. Monuments to their early enterprise are seen in the Temple and the Tabernacle, the irrigation works, and the great wealth of the Church. SUMMARY OF WESTERN DEVELOPMENT AND NATIONAL POLITICS While the statesmen of the old generation were solving the problems of their age, hunters, pioneers, and home seekers were preparing new problems beyond the Alleghanies. The West was rising in population and wealth. Between 1783 and 1829, eleven states were added to the original thirteen. All but two were in the West. Two of them were in the Louisiana territory beyond the Mississippi. Here the process of colonization was repeated. Hardy frontier people cut down the forests, built log cabins, laid out farms, and cut roads through the wilderness. They began a new civilization just as the immigrants to Virginia or Massachusetts had done two centuries earlier. Like the seaboard colonists before them, they too cherished the spirit of independence and power. They had not gone far upon their course before they resented the monopoly of the presidency by the East. In 1829 they actually sent one of their own cherished leaders, Andrew Jackson, to the White House. Again in 1840, in 1844, in 1848, and in 1860, the Mississippi Valley could boast that one of its sons had been chosen for the seat of power at Washington. Its democratic temper evoked a cordial response in the towns of the East where the old aristocracy had been put aside and artisans had been given the ballot. For three decades the West occupied the interest of the nation. Under Jackson's leadership, it destroyed the second United States Bank. When he smote nullification in South Carolina, it gave him cordial support. It approved his policy of parceling out government offices among party workers--"the spoils system" in all its fullness. On only one point did it really dissent. The West heartily favored internal improvements, the appropriation of federal funds for highways, canals, and railways. Jackson had misgivings on this question and awakened sharp criticism by vetoing a road improvement bill. From their point of vantage on the frontier, the pioneers pressed on westward. They pushed into Texas, created a state, declared their independence, demanded a place in the union, and precipitated a war with Mexico. They crossed the trackless plain and desert, laying out trails to Santa Fe, to Oregon, and to California. They were upon the scene when the Mexican War brought California under the Stars and Stripes. They had laid out their farms in the Willamette Valley when the slogan "Fifty-Four Forty or Fight" forced a settlement of the Oregon boundary. California and Oregon were already in the union when there arose the Great Civil War testing whether this nation or any nation so conceived and so dedicated could long endure. =References= G.P. Brown, _Westward Expansion_ (American Nation Series). K. Coman, _Economic Beginnings of the Far West_ (2 vols.). F. Parkman, _California and the Oregon Trail_. R.S. Ripley, _The War with Mexico_. W.C. Rives, _The United States and Mexico, 1821-48_ (2 vols.). =Questions= 1. Give some of the special features in the history of Missouri, Arkansas, Michigan, Wisconsin, Iowa, and Minnesota. 2. Contrast the climate and soil of the Middle West and the Far West. 3. How did Mexico at first encourage American immigration? 4. What produced the revolution in Texas? Who led in it? 5. Narrate some of the leading events in the struggle over annexation to the United States. 6. What action by President Polk precipitated war? 7. Give the details of the peace settlement with Mexico. 8. What is meant by the "joint occupation" of Oregon? 9. How was the Oregon boundary dispute finally settled? 10. Compare the American "invasion" of California with the migration into Texas. 11. Explain how California became a free state. 12. Describe the early economic policy of the Mormons. =Research Topics= =The Independence of Texas.=--McMaster, _History of the People of the United States_, Vol. VI, pp. 251-270. Woodrow Wilson, _History of the American People_, Vol. IV, pp. 102-126. =The Annexation of Texas.=--McMaster, Vol. VII. The passages on annexation are scattered through this volume and it is an exercise in ingenuity to make a connected story of them. Source materials in Hart, _American History Told by Contemporaries_, Vol. III, pp. 637-655; Elson, _History of the United States_, pp. 516-521, 526-527. =The War with Mexico.=--Elson, pp. 526-538. =The Oregon Boundary Dispute.=--Schafer, _History of the Pacific Northwest_ (rev. ed.), pp. 88-104; 173-185. =The Migration to Oregon.=--Schafer, pp. 105-172. Coman, _Economic Beginnings of the Far West_, Vol. II, pp. 113-166. =The Santa Fe Trail.=--Coman, _Economic Beginnings_, Vol. II, pp. 75-93. =The Conquest of California.=--Coman, Vol. II, pp. 297-319. =Gold in California.=--McMaster, Vol. VII, pp. 585-614. =The Mormon Migration.=--Coman, Vol. II, pp. 167-206. =Biographical Studies.=--Fremont, Generals Scott and Taylor, Sam Houston, and David Crockett. =The Romance of Western Exploration.=--J.G. Neihardt, _The Splendid Wayfaring_. J.G. Neihardt, _The Song of Hugh Glass_. PART V. SECTIONAL CONFLICT AND RECONSTRUCTION CHAPTER XIII THE RISE OF THE INDUSTRIAL SYSTEM If Jefferson could have lived to see the Stars and Stripes planted on the Pacific Coast, the broad empire of Texas added to the planting states, and the valley of the Willamette waving with wheat sown by farmers from New England, he would have been more than fortified in his faith that the future of America lay in agriculture. Even a stanch old Federalist like Gouverneur Morris or Josiah Quincy would have mournfully conceded both the prophecy and the claim. Manifest destiny never seemed more clearly written in the stars. As the farmers from the Northwest and planters from the Southwest poured in upon the floor of Congress, the party of Jefferson, christened anew by Jackson, grew stronger year by year. Opponents there were, no doubt, disgruntled critics and Whigs by conviction; but in 1852 Franklin Pierce, the Democratic candidate for President, carried every state in the union except Massachusetts, Vermont, Kentucky, and Tennessee. This victory, a triumph under ordinary circumstances, was all the more significant in that Pierce was pitted against a hero of the Mexican War, General Scott, whom the Whigs, hoping to win by rousing the martial ardor of the voters, had nominated. On looking at the election returns, the new President calmly assured the planters that "the general principle of reduction of duties with a view to revenue may now be regarded as the settled policy of the country." With equal confidence, he waved aside those agitators who devoted themselves "to the supposed interests of the relatively few Africans in the United States." Like a watchman in the night he called to the country: "All's well." The party of Hamilton and Clay lay in the dust. THE INDUSTRIAL REVOLUTION As pride often goeth before a fall, so sanguine expectation is sometimes the symbol of defeat. Jackson destroyed the bank. Polk signed the tariff bill of 1846 striking an effective blow at the principle of protection for manufactures. Pierce promised to silence the abolitionists. His successor was to approve a drastic step in the direction of free trade. Nevertheless all these things left untouched the springs of power that were in due time to make America the greatest industrial nation on the earth; namely, vast national resources, business enterprise, inventive genius, and the free labor supply of Europe. Unseen by the thoughtless, unrecorded in the diaries of wiseacres, rarely mentioned in the speeches of statesmen, there was swiftly rising such a tide in the affairs of America as Jefferson and Hamilton never dreamed of in their little philosophies. =The Inventors.=--Watt and Boulton experimenting with steam in England, Whitney combining wood and steel into a cotton gin, Fulton and Fitch applying the steam engine to navigation, Stevens and Peter Cooper trying out the "iron horse" on "iron highways," Slater building spinning mills in Pawtucket, Howe attaching the needle to the flying wheel, Morse spanning a continent with the telegraph, Cyrus Field linking the markets of the new world with the old along the bed of the Atlantic, McCormick breaking the sickle under the reaper--these men and a thousand more were destroying in a mighty revolution of industry the world of the stagecoach and the tallow candle which Washington and Franklin had inherited little changed from the age of Caesar. Whitney was to make cotton king. Watt and Fulton were to make steel and steam masters of the world. Agriculture was to fall behind in the race for supremacy. =Industry Outstrips Planting.=--The story of invention, that tribute to the triumph of mind over matter, fascinating as a romance, need not be treated in detail here. The effects of invention on social and political life, multitudinous and never-ending, form the very warp and woof of American progress from the days of Andrew Jackson to the latest hour. Neither the great civil conflict--the clash of two systems--nor the problems of the modern age can be approached without an understanding of the striking phases of industrialism. [Illustration: A NEW ENGLAND MILL BUILT IN 1793] First and foremost among them was the uprush of mills managed by captains of industry and manned by labor drawn from farms, cities, and foreign lands. For every planter who cleared a domain in the Southwest and gathered his army of bondmen about him, there rose in the North a magician of steam and steel who collected under his roof an army of free workers. In seven league boots this new giant strode ahead of the Southern giant. Between 1850 and 1859, to use dollars and cents as the measure of progress, the value of domestic manufactures including mines and fisheries rose from $1,019,106,616 to $1,900,000,000, an increase of eighty-six per cent in ten years. In this same period the total production of naval stores, rice, sugar, tobacco, and cotton, the staples of the South, went only from $165,000,000, in round figures, to $204,000,000. At the halfway point of the century, the capital invested in industry, commerce, and cities far exceeded the value of all the farm land between the Atlantic and the Pacific; thus the course of economy had been reversed in fifty years. Tested by figures of production, King Cotton had shriveled by 1860 to a petty prince in comparison, for each year the captains of industry turned out goods worth nearly twenty times all the bales of cotton picked on Southern plantations. Iron, boots and shoes, and leather goods pouring from Northern mills surpassed in value the entire cotton output. =The Agrarian West Turns to Industry.=--Nor was this vast enterprise confined to the old Northeast where, as Madison had sagely remarked, commerce was early dominant. "Cincinnati," runs an official report in 1854, "appears to be a great central depot for ready-made clothing and its manufacture for the Western markets may be said to be one of the great trades of that city." There, wrote another traveler, "I heard the crack of the cattle driver's whip and the hum of the factory: the West and the East meeting." Louisville and St. Louis were already famous for their clothing trades and the manufacture of cotton bagging. Five hundred of the two thousand woolen mills in the country in 1860 were in the Western states. Of the output of flour and grist mills, which almost reached in value the cotton crop of 1850, the Ohio Valley furnished a rapidly growing share. The old home of Jacksonian democracy, where Federalists had been almost as scarce as monarchists, turned slowly backward, as the needle to the pole, toward the principle of protection for domestic industry, espoused by Hamilton and defended by Clay. =The Extension of Canals and Railways.=--As necessary to mechanical industry as steel and steam power was the great market, spread over a wide and diversified area and knit together by efficient means of transportation. This service was supplied to industry by the steamship, which began its career on the Hudson in 1807; by the canals, of which the Erie opened in 1825 was the most noteworthy; and by the railways, which came into practical operation about 1830. [Illustration: _From an old print_ AN EARLY RAILWAY] With sure instinct the Eastern manufacturer reached out for the markets of the Northwest territory where free farmers were producing annually staggering crops of corn, wheat, bacon, and wool. The two great canal systems--the Erie connecting New York City with the waterways of the Great Lakes and the Pennsylvania chain linking Philadelphia with the headwaters of the Ohio--gradually turned the tide of trade from New Orleans to the Eastern seaboard. The railways followed the same paths. By 1860, New York had rail connections with Chicago and St. Louis, one of the routes running through the Hudson and Mohawk valleys and along the Great Lakes, the other through Philadelphia and Pennsylvania and across the rich wheat fields of Ohio, Indiana, and Illinois. Baltimore, not to be outdone by her two rivals, reached out over the mountains for the Western trade and in 1857 had trains running into St. Louis. In railway enterprise the South took more interest than in canals, and the friends of that section came to its aid. To offset the magnet drawing trade away from the Mississippi Valley, lines were built from the Gulf to Chicago, the Illinois Central part of the project being a monument to the zeal and industry of a Democrat, better known in politics than in business, Stephen A. Douglas. The swift movement of cotton and tobacco to the North or to seaports was of common concern to planters and manufacturers. Accordingly lines were flung down along the Southern coast, linking Richmond, Charleston, and Savannah with the Northern markets. Other lines struck inland from the coast, giving a rail outlet to the sea for Raleigh, Columbia, Atlanta, Chattanooga, Nashville, and Montgomery. Nevertheless, in spite of this enterprise, the mileage of all the Southern states in 1860 did not equal that of Ohio, Indiana, and Illinois combined. =Banking and Finance.=--Out of commerce and manufactures and the construction and operation of railways came such an accumulation of capital in the Northern states as merchants of old never imagined. The banks of the four industrial states of Massachusetts, Connecticut, New York, and Pennsylvania in 1860 had funds greater than the banks in all the other states combined. New York City had become the money market of America, the center to which industrial companies, railway promoters, farmers, and planters turned for capital to initiate and carry on their operations. The banks of Louisiana, South Carolina, Georgia, and Virginia, it is true, had capital far in excess of the banks of the Northwest; but still they were relatively small compared with the financial institutions of the East. =The Growth of the Industrial Population.=--A revolution of such magnitude in industry, transport, and finance, overturning as it did the agrarian civilization of the old Northwest and reaching out to the very borders of the country, could not fail to bring in its train consequences of a striking character. Some were immediate and obvious. Others require a fullness of time not yet reached to reveal their complete significance. Outstanding among them was the growth of an industrial population, detached from the land, concentrated in cities, and, to use Jefferson's phrase, dependent upon "the caprices and casualties of trade" for a livelihood. This was a result, as the great Virginian had foreseen, which flowed inevitably from public and private efforts to stimulate industry as against agriculture. [Illustration: LOWELL, MASSACHUSETTS, IN 1838, AN EARLY INDUSTRIAL TOWN] It was estimated in 1860, on the basis of the census figures, that mechanical production gave employment to 1,100,000 men and 285,000 women, making, if the average number of dependents upon them be reckoned, nearly six million people or about one-sixth of the population of the country sustained from manufactures. "This," runs the official record, "was exclusive of the number engaged in the production of many of the raw materials and of the food for manufacturers; in the distribution of their products, such as merchants, clerks, draymen, mariners, the employees of railroads, expresses, and steamboats; of capitalists, various artistic and professional classes, as well as carpenters, bricklayers, painters, and the members of other mechanical trades not classed as manufactures. It is safe to assume, then, that one-third of the whole population is supported, directly, or indirectly, by manufacturing industry." Taking, however, the number of persons directly supported by manufactures, namely about six millions, reveals the astounding fact that the white laboring population, divorced from the soil, already exceeded the number of slaves on Southern farms and plantations. _Immigration._--The more carefully the rapid growth of the industrial population is examined, the more surprising is the fact that such an immense body of free laborers could be found, particularly when it is recalled to what desperate straits the colonial leaders were put in securing immigrants,--slavery, indentured servitude, and kidnapping being the fruits of their necessities. The answer to the enigma is to be found partly in European conditions and partly in the cheapness of transportation after the opening of the era of steam navigation. Shrewd observers of the course of events had long foreseen that a flood of cheap labor was bound to come when the way was made easy. Some, among them Chief Justice Ellsworth, went so far as to prophesy that white labor would in time be so abundant that slavery would disappear as the more costly of the two labor systems. The processes of nature were aided by the policies of government in England and Germany. _The Coming of the Irish._--The opposition of the Irish people to the English government, ever furious and irrepressible, was increased in the mid forties by an almost total failure of the potato crop, the main support of the peasants. Catholic in religion, they had been compelled to support a Protestant church. Tillers of the soil by necessity, they were forced to pay enormous tributes to absentee landlords in England whose claim to their estates rested upon the title of conquest and confiscation. Intensely loyal to their race, the Irish were subjected in all things to the Parliament at London, in which their small minority of representatives had little influence save in holding a balance of power between the two contending English parties. To the constant political irritation, the potato famine added physical distress beyond description. In cottages and fields and along the highways the victims of starvation lay dead by the hundreds, the relief which charity afforded only bringing misery more sharply to the foreground. Those who were fortunate enough to secure passage money sought escape to America. In 1844 the total immigration into the United States was less than eighty thousand; in 1850 it had risen by leaps and bounds to more than three hundred thousand. Between 1820 and 1860 the immigrants from the United Kingdom numbered 2,750,000, of whom more than one-half were Irish. It has been said with a touch of exaggeration that the American canals and railways of those days were built by the labor of Irishmen. _The German Migration._--To political discontent and economic distress, such as was responsible for the coming of the Irish, may likewise be traced the source of the Germanic migration. The potato blight that fell upon Ireland visited the Rhine Valley and Southern Germany at the same time with results as pitiful, if less extensive. The calamity inflicted by nature was followed shortly by another inflicted by the despotic conduct of German kings and princes. In 1848 there had occurred throughout Europe a popular uprising in behalf of republics and democratic government. For a time it rode on a full tide of success. Kings were overthrown, or compelled to promise constitutional government, and tyrannical ministers fled from their palaces. Then came reaction. Those who had championed the popular cause were imprisoned, shot, or driven out of the land. Men of attainments and distinction, whose sole offense was opposition to the government of kings and princes, sought an asylum in America, carrying with them to the land of their adoption the spirit of liberty and democracy. In 1847 over fifty thousand Germans came to America, the forerunners of a migration that increased, almost steadily, for many years. The record of 1860 showed that in the previous twenty years nearly a million and a half had found homes in the United States. Far and wide they scattered, from the mills and shops of the seacoast towns to the uttermost frontiers of Wisconsin and Minnesota. _The Labor of Women and Children._--If the industries, canals, and railways of the country were largely manned by foreign labor, still important native sources must not be overlooked; above all, the women and children of the New England textile districts. Spinning and weaving, by a tradition that runs far beyond the written records of mankind, belonged to women. Indeed it was the dexterous housewives, spinsters, and boys and girls that laid the foundations of the textile industry in America, foundations upon which the mechanical revolution was built. As the wheel and loom were taken out of the homes to the factories operated by water power or the steam engine, the women and, to use Hamilton's phrase, "the children of tender years," followed as a matter of course. "The cotton manufacture alone employs six thousand persons in Lowell," wrote a French observer in 1836; "of this number nearly five thousand are young women from seventeen to twenty-four years of age, the daughters of farmers from the different New England states." It was not until after the middle of the century that foreign lands proved to be the chief source from which workers were recruited for the factories of New England. It was then that the daughters of the Puritans, outdone by the competition of foreign labor, both of men and women, left the spinning jenny and the loom to other hands. =The Rise of Organized Labor.=--The changing conditions of American life, marked by the spreading mill towns of New England, New York, and Pennsylvania and the growth of cities like Buffalo, Cincinnati, Louisville, St. Louis, Detroit, and Chicago in the West, naturally brought changes, as Jefferson had prophesied, in "manners and morals." A few mechanics, smiths, carpenters, and masons, widely scattered through farming regions and rural villages, raise no such problems as tens of thousands of workers collected in one center in daily intercourse, learning the power of cooperation and union. Even before the coming of steam and machinery, in the "good old days" of handicrafts, laborers in many trades--printers, shoemakers, carpenters, for example--had begun to draw together in the towns for the advancement of their interests in the form of higher wages, shorter days, and milder laws. The shoemakers of Philadelphia, organized in 1794, conducted a strike in 1799 and held together until indicted seven years later for conspiracy. During the twenties and thirties, local labor unions sprang up in all industrial centers and they led almost immediately to city federations of the several crafts. As the thousands who were dependent upon their daily labor for their livelihood mounted into the millions and industries spread across the continent, the local unions of craftsmen grew into national craft organizations bound together by the newspapers, the telegraph, and the railways. Before 1860 there were several such national trade unions, including the plumbers, printers, mule spinners, iron molders, and stone cutters. All over the North labor leaders arose--men unknown to general history but forceful and resourceful characters who forged links binding scattered and individual workers into a common brotherhood. An attempt was even made in 1834 to federate all the crafts into a permanent national organization; but it perished within three years through lack of support. Half a century had to elapse before the American Federation of Labor was to accomplish this task. All the manifestations of the modern labor movement had appeared, in germ at least, by the time the mid-century was reached: unions, labor leaders, strikes, a labor press, a labor political program, and a labor political party. In every great city industrial disputes were a common occurrence. The papers recorded about four hundred in two years, 1853-54, local affairs but forecasting economic struggles in a larger field. The labor press seems to have begun with the founding of the _Mechanics' Free Press_ in Philadelphia in 1828 and the establishment of the New York _Workingman's Advocate_ shortly afterward. These semi-political papers were in later years followed by regular trade papers designed to weld together and advance the interests of particular crafts. Edited by able leaders, these little sheets with limited circulation wielded an enormous influence in the ranks of the workers. =Labor and Politics.=--As for the political program of labor, the main planks were clear and specific: the abolition of imprisonment for debt, manhood suffrage in states where property qualifications still prevailed, free and universal education, laws protecting the safety and health of workers in mills and factories, abolition of lotteries, repeal of laws requiring militia service, and free land in the West. Into the labor papers and platforms there sometimes crept a note of hostility to the masters of industry, a sign of bitterness that excited little alarm while cheap land in the West was open to the discontented. The Philadelphia workmen, in issuing a call for a local convention, invited "all those of our fellow citizens who live by their own labor and none other." In Newcastle county, Delaware, the association of working people complained in 1830: "The poor have no laws; the laws are made by the rich and of course for the rich." Here and there an extremist went to the length of advocating an equal division of wealth among all the people--the crudest kind of communism. Agitation of this character produced in labor circles profound distrust of both Whigs and Democrats who talked principally about tariffs and banks; it resulted in attempts to found independent labor parties. In Philadelphia, Albany, New York City, and New England, labor candidates were put up for elections in the early thirties and in a few cases were victorious at the polls. "The balance of power has at length got into the hands of the working people, where it properly belongs," triumphantly exclaimed the _Mechanics' Free Press_ of Philadelphia in 1829. But the triumph was illusory. Dissensions appeared in the labor ranks. The old party leaders, particularly of Tammany Hall, the Democratic party organization in New York City, offered concessions to labor in return for votes. Newspapers unsparingly denounced "trade union politicians" as "demagogues," "levellers," and "rag, tag, and bobtail"; and some of them, deeming labor unrest the sour fruit of manhood suffrage, suggested disfranchisement as a remedy. Under the influence of concessions and attacks the political fever quickly died away, and the end of the decade left no remnant of the labor political parties. Labor leaders turned to a task which seemed more substantial and practical, that of organizing workingmen into craft unions for the definite purpose of raising wages and reducing hours. THE INDUSTRIAL REVOLUTION AND NATIONAL POLITICS =Southern Plans for Union with the West.=--It was long the design of Southern statesmen like Calhoun to hold the West and the South together in one political party. The theory on which they based their hope was simple. Both sections were agricultural--the producers of raw materials and the buyers of manufactured goods. The planters were heavy purchasers of Western bacon, pork, mules, and grain. The Mississippi River and its tributaries formed the natural channel for the transportation of heavy produce southward to the plantations and outward to Europe. Therefore, ran their political reasoning, the interests of the two sections were one. By standing together in favor of low tariffs, they could buy their manufactures cheaply in Europe and pay for them in cotton, tobacco, and grain. The union of the two sections under Jackson's management seemed perfect. =The East Forms Ties with the West.=--Eastern leaders were not blind to the ambitions of Southern statesmen. On the contrary, they also recognized the importance of forming strong ties with the agrarian West and drawing the produce of the Ohio Valley to Philadelphia and New York. The canals and railways were the physical signs of this economic union, and the results, commercial and political, were soon evident. By the middle of the century, Southern economists noted the change, one of them, De Bow, lamenting that "the great cities of the North have severally penetrated the interior with artificial lines until they have taken from the open and untaxed current of the Mississippi the commerce produced on its borders." To this writer it was an astounding thing to behold "the number of steamers that now descend the upper Mississippi River, loaded to the guards with produce, as far as the mouth of the Illinois River and then turn up that stream with their cargoes to be shipped to New York _via_ Chicago. The Illinois canal has not only swept the whole produce along the line of the Illinois River to the East, but it is drawing the products of the upper Mississippi through the same channel; thus depriving New Orleans and St. Louis of a rich portion of their former trade." If to any shippers the broad current of the great river sweeping down to New Orleans offered easier means of physical communication to the sea than the canals and railways, the difference could be overcome by the credit which Eastern bankers were able to extend to the grain and produce buyers, in the first instance, and through them to the farmers on the soil. The acute Southern observer just quoted, De Bow, admitted with evident regret, in 1852, that "last autumn, the rich regions of Ohio, Indiana, and Illinois were flooded with the local bank notes of the Eastern States, advanced by the New York houses on produce to be shipped by way of the canals in the spring.... These moneyed facilities enable the packer, miller, and speculator to hold on to their produce until the opening of navigation in the spring and they are no longer obliged, as formerly, to hurry off their shipments during the winter by the way of New Orleans in order to realize funds by drafts on their shipments. The banking facilities at the East are doing as much to draw trade from us as the canals and railways which Eastern capital is constructing." Thus canals, railways, and financial credit were swiftly forging bonds of union between the old home of Jacksonian Democracy in the West and the older home of Federalism in the East. The nationalism to which Webster paid eloquent tribute became more and more real with the passing of time. The self-sufficiency of the pioneer was broken down as he began to watch the produce markets of New York and Philadelphia where the prices of corn and hogs fixed his earnings for the year. =The West and Manufactures.=--In addition to the commercial bonds between the East and the West there was growing up a common interest in manufactures. As skilled white labor increased in the Ohio Valley, the industries springing up in the new cities made Western life more like that of the industrial East than like that of the planting South. Moreover, the Western states produced some important raw materials for American factories, which called for protection against foreign competition, notably, wool, hemp, and flax. As the South had little or no foreign competition in cotton and tobacco, the East could not offer protection for her raw materials in exchange for protection for industries. With the West, however, it became possible to establish reciprocity in tariffs; that is, for example, to trade a high rate on wool for a high rate on textiles or iron. =The South Dependent on the North.=--While East and West were drawing together, the distinctions between North and South were becoming more marked; the latter, having few industries and producing little save raw materials, was being forced into the position of a dependent section. As a result of the protective tariff, Southern planters were compelled to turn more and more to Northern mills for their cloth, shoes, hats, hoes, plows, and machinery. Nearly all the goods which they bought in Europe in exchange for their produce came overseas to Northern ports, whence transshipments were made by rail and water to Southern points of distribution. Their rice, cotton, and tobacco, in as far as they were not carried to Europe in British bottoms, were transported by Northern masters. In these ways, a large part of the financial operations connected with the sale of Southern produce and the purchase of goods in exchange passed into the hands of Northern merchants and bankers who, naturally, made profits from their transactions. Finally, Southern planters who wanted to buy more land and more slaves on credit borrowed heavily in the North where huge accumulations made the rates of interest lower than the smaller banks of the South could afford. =The South Reckons the Cost of Economic Dependence.=--As Southern dependence upon Northern capital became more and more marked, Southern leaders began to chafe at what they regarded as restraints laid upon their enterprise. In a word, they came to look upon the planter as a tribute-bearer to the manufacturer and financier. "The South," expostulated De Bow, "stands in the attitude of feeding ... a vast population of [Northern] merchants, shipowners, capitalists, and others who, without claims on her progeny, drink up the life blood of her trade.... Where goes the value of our labor but to those who, taking advantage of our folly, ship for us, buy for us, sell to us, and, after turning our own capital to their profitable account, return laden with our money to enjoy their easily earned opulence at home." Southern statisticians, not satisfied with generalities, attempted to figure out how great was this tribute in dollars and cents. They estimated that the planters annually lent to Northern merchants the full value of their exports, a hundred millions or more, "to be used in the manipulation of foreign imports." They calculated that no less than forty millions all told had been paid to shipowners in profits. They reckoned that, if the South were to work up her own cotton, she would realize from seventy to one hundred millions a year that otherwise went North. Finally, to cap the climax, they regretted that planters spent some fifteen millions a year pleasure-seeking in the alluring cities and summer resorts of the North. =Southern Opposition to Northern Policies.=--Proceeding from these premises, Southern leaders drew the logical conclusion that the entire program of economic measures demanded in the North was without exception adverse to Southern interests and, by a similar chain of reasoning, injurious to the corn and wheat producers of the West. Cheap labor afforded by free immigration, a protective tariff raising prices of manufactures for the tiller of the soil, ship subsidies increasing the tonnage of carrying trade in Northern hands, internal improvements forging new economic bonds between the East and the West, a national banking system giving strict national control over the currency as a safeguard against paper inflation--all these devices were regarded in the South as contrary to the planting interest. They were constantly compared with the restrictive measures by which Great Britain more than half a century before had sought to bind American interests. As oppression justified a war for independence once, statesmen argued, so it can justify it again. "It is curious as it is melancholy and distressing," came a broad hint from South Carolina, "to see how striking is the analogy between the colonial vassalage to which the manufacturing states have reduced the planting states and that which formerly bound the Anglo-American colonies to the British empire.... England said to her American colonies: 'You shall not trade with the rest of the world for such manufactures as are produced in the mother country.' The manufacturing states say to their Southern colonies: 'You shall not trade with the rest of the world for such manufactures as we produce.'" The conclusion was inexorable: either the South must control the national government and its economic measures, or it must declare, as America had done four score years before, its political and economic independence. As Northern mills multiplied, as railways spun their mighty web over the face of the North, and as accumulated capital rose into the hundreds of millions, the conviction of the planters and their statesmen deepened into desperation. =Efforts to Start Southern Industries Fail.=--A few of them, seeing the predominance of the North, made determined efforts to introduce manufactures into the South. To the leaders who were averse to secession and nullification this seemed the only remedy for the growing disparity in the power of the two sections. Societies for the encouragement of mechanical industries were formed, the investment of capital was sought, and indeed a few mills were built on Southern soil. The results were meager. The natural resources, coal and water power, were abundant; but the enterprise for direction and the skilled labor were wanting. The stream of European immigration flowed North and West, not South. The Irish or German laborer, even if he finally made his home in a city, had before him, while in the North, the alternative of a homestead on Western land. To him slavery was a strange, if not a repelling, institution. He did not take to it kindly nor care to fix his home where it flourished. While slavery lasted, the economy of the South was inevitably agricultural. While agriculture predominated, leadership with equal necessity fell to the planting interest. While the planting interest ruled, political opposition to Northern economy was destined to grow in strength. =The Southern Theory of Sectionalism.=--In the opinion of the statesmen who frankly represented the planting interest, the industrial system was its deadly enemy. Their entire philosophy of American politics was summed up in a single paragraph by McDuffie, a spokesman for South Carolina: "Owing to the federative character of our government, the great geographical extent of our territory, and the diversity of the pursuits of our citizens in different parts of the union, it has so happened that two great interests have sprung up, standing directly opposed to each other. One of these consists of those manufactures which the Northern and Middle states are capable of producing but which, owing to the high price of labor and the high profits of capital in those states, cannot hold competition with foreign manufactures without the aid of bounties, directly or indirectly given, either by the general government or by the state governments. The other of these interests consists of the great agricultural staples of the Southern states which can find a market only in foreign countries and which can be advantageously sold only in exchange for foreign manufactures which come in competition with those of the Northern and Middle states.... These interests then stand diametrically and irreconcilably opposed to each other. The interest, the pecuniary interest of the Northern manufacturer, is directly promoted by every increase of the taxes imposed upon Southern commerce; and it is unnecessary to add that the interest of the Southern planter is promoted by every diminution of taxes imposed upon the productions of their industry. If, under these circumstances, the manufacturers were clothed with the power of imposing taxes, at their pleasure, upon the foreign imports of the planter, no doubt would exist in the mind of any man that it would have all the characteristics of an absolute and unqualified despotism." The economic soundness of this reasoning, a subject of interesting speculation for the economist, is of little concern to the historian. The historical point is that this opinion was widely held in the South and with the progress of time became the prevailing doctrine of the planting statesmen. Their antagonism was deepened because they also became convinced, on what grounds it is not necessary to inquire, that the leaders of the industrial interest thus opposed to planting formed a consolidated "aristocracy of wealth," bent upon the pursuit and attainment of political power at Washington. "By the aid of various associated interests," continued McDuffie, "the manufacturing capitalists have obtained a complete and permanent control over the legislation of Congress on this subject [the tariff].... Men confederated together upon selfish and interested principles, whether in pursuit of the offices or the bounties of the government, are ever more active and vigilant than the great majority who act from disinterested and patriotic impulses. Have we not witnessed it on this floor, sir? Who ever knew the tariff men to divide on any question affecting their confederated interests?... The watchword is, stick together, right or wrong upon every question affecting the common cause. Such, sir, is the concert and vigilance and such the combinations by which the manufacturing party, acting upon the interests of some and the prejudices of others, have obtained a decided and permanent control over public opinion in all the tariff states." Thus, as the Southern statesman would have it, the North, in matters affecting national policies, was ruled by a "confederated interest" which menaced the planting interest. As the former grew in magnitude and attached to itself the free farmers of the West through channels of trade and credit, it followed as night the day that in time the planters would be overshadowed and at length overborne in the struggle of giants. Whether the theory was sound or not, Southern statesmen believed it and acted upon it. =References= M. Beard, _Short History of the American Labor Movement_. E.L. Bogart, _Economic History of the United States_. J.R. Commons, _History of Labour in the United States_ (2 vols.). E.R. Johnson, _American Railway Transportation_. C.D. Wright, _Industrial Evolution of the United States_. =Questions= 1. What signs pointed to a complete Democratic triumph in 1852? 2. What is the explanation of the extraordinary industrial progress of America? 3. Compare the planting system with the factory system. 4. In what sections did industry flourish before the Civil War? Why? 5. Show why transportation is so vital to modern industry and agriculture. 6. Explain how it was possible to secure so many people to labor in American industries. 7. Trace the steps in the rise of organized labor before 1860. 8. What political and economic reforms did labor demand? 9. Why did the East and the South seek closer ties with the West? 10. Describe the economic forces which were drawing the East and the West together. 11. In what way was the South economically dependent upon the North? 12 State the national policies generally favored in the North and condemned in the South. 13. Show how economic conditions in the South were unfavorable to industry. 14. Give the Southern explanation of the antagonism between the North and the South. =Research Topics= =The Inventions.=--Assign one to each student. Satisfactory accounts are to be found in any good encyclopedia, especially the Britannica. =River and Lake Commerce.=--Callender, _Economic History of the United States_, pp. 313-326. =Railways and Canals.=--Callender, pp. 326-344; 359-387. Coman, _Industrial History of the United States_, pp. 216-225. =The Growth of Industry, 1815-1840.=--Callender, pp. 459-471. From 1850 to 1860, Callender, pp. 471-486. =Early Labor Conditions.=--Callender, pp. 701-718. =Early Immigration.=--Callender, pp. 719-732. =Clay's Home Market Theory of the Tariff.=--Callender, pp. 498-503. =The New England View of the Tariff.=--Callender, pp. 503-514. CHAPTER XIV THE PLANTING SYSTEM AND NATIONAL POLITICS James Madison, the father of the federal Constitution, after he had watched for many days the battle royal in the national convention of 1787, exclaimed that the contest was not between the large and the small states, but between the commercial North and the planting South. From the inauguration of Washington to the election of Lincoln the sectional conflict, discerned by this penetrating thinker, exercised a profound influence on the course of American politics. It was latent during the "era of good feeling" when the Jeffersonian Republicans adopted Federalist policies; it flamed up in the contest between the Democrats and Whigs. Finally it raged in the angry political quarrel which culminated in the Civil War. SLAVERY--NORTH AND SOUTH =The Decline of Slavery in the North.=--At the time of the adoption of the Constitution, slavery was lawful in all the Northern states except Massachusetts. There were almost as many bondmen in New York as in Georgia. New Jersey had more than Delaware or Tennessee, indeed nearly as many as both combined. All told, however, there were only about forty thousand in the North as against nearly seven hundred thousand in the South. Moreover, most of the Northern slaves were domestic servants, not laborers necessary to keep mills going or fields under cultivation. There was, in the North, a steadily growing moral sentiment against the system. Massachusetts abandoned it in 1780. In the same year, Pennsylvania provided for gradual emancipation. New Hampshire, where there had been only a handful, Connecticut with a few thousand domestics, and New Jersey early followed these examples. New York, in 1799, declared that all children born of slaves after July 4 of that year should be free, though held for a term as apprentices; and in 1827 it swept away the last vestiges of slavery. So with the passing of the generation that had framed the Constitution, chattel servitude disappeared in the commercial states, leaving behind only such discriminations as disfranchisement or high property qualifications on colored voters. =The Growth of Northern Sentiment against Slavery.=--In both sections of the country there early existed, among those more or less philosophically inclined, a strong opposition to slavery on moral as well as economic grounds. In the constitutional convention of 1787, Gouverneur Morris had vigorously condemned it and proposed that the whole country should bear the cost of abolishing it. About the same time a society for promoting the abolition of slavery, under the presidency of Benjamin Franklin, laid before Congress a petition that serious attention be given to the emancipation of "those unhappy men who alone in this land of freedom are degraded into perpetual bondage." When Congress, acting on the recommendations of President Jefferson, provided for the abolition of the foreign slave trade on January 1, 1808, several Northern members joined with Southern members in condemning the system as well as the trade. Later, colonization societies were formed to encourage the emancipation of slaves and their return to Africa. James Madison was president and Henry Clay vice president of such an organization. The anti-slavery sentiment of which these were the signs was nevertheless confined to narrow circles and bore no trace of bitterness. "We consider slavery your calamity, not your crime," wrote a distinguished Boston clergyman to his Southern brethren, "and we will share with you the burden of putting an end to it. We will consent that the public lands shall be appropriated to this object.... I deprecate everything which sows discord and exasperating sectional animosities." =Uncompromising Abolition.=--In a little while the spirit of generosity was gone. Just as Jacksonian Democracy rose to power there appeared a new kind of anti-slavery doctrine--the dogmatism of the abolition agitator. For mild speculation on the evils of the system was substituted an imperious and belligerent demand for instant emancipation. If a date must be fixed for its appearance, the year 1831 may be taken when William Lloyd Garrison founded in Boston his anti-slavery paper, _The Liberator_. With singleness of purpose and utter contempt for all opposing opinions and arguments, he pursued his course of passionate denunciation. He apologized for having ever "assented to the popular but pernicious doctrine of gradual abolition." He chose for his motto: "Immediate and unconditional emancipation!" He promised his readers that he would be "harsh as truth and uncompromising as justice"; that he would not "think or speak or write with moderation." Then he flung out his defiant call: "I am in earnest--I will not equivocate--I will not excuse--I will not retreat a single inch--and I will be heard.... 'Such is the vow I take, so help me God.'" Though Garrison complained that "the apathy of the people is enough to make every statue leap from its pedestal," he soon learned how alive the masses were to the meaning of his propaganda. Abolition orators were stoned in the street and hissed from the platform. Their meeting places were often attacked and sometimes burned to the ground. Garrison himself was assaulted in the streets of Boston, finding refuge from the angry mob behind prison bars. Lovejoy, a publisher in Alton, Illinois, for his willingness to give abolition a fair hearing, was brutally murdered; his printing press was broken to pieces as a warning to all those who disturbed the nation's peace of mind. The South, doubly frightened by a slave revolt in 1831 which ended in the murder of a number of men, women, and children, closed all discussion of slavery in that section. "Now," exclaimed Calhoun, "it is a question which admits of neither concession nor compromise." As the opposition hardened, the anti-slavery agitation gathered in force and intensity. Whittier blew his blast from the New England hills: "No slave-hunt in our borders--no pirate on our strand; No fetters in the Bay State--no slave upon our land." Lowell, looking upon the espousal of a great cause as the noblest aim of his art, ridiculed and excoriated bondage in the South. Those abolitionists, not gifted as speakers or writers, signed petitions against slavery and poured them in upon Congress. The flood of them was so continuous that the House of Representatives, forgetting its traditions, adopted in 1836 a "gag rule" which prevented the reading of appeals and consigned them to the waste basket. Not until the Whigs were in power nearly ten years later was John Quincy Adams able, after a relentless campaign, to carry a motion rescinding the rule. How deep was the impression made upon the country by this agitation for immediate and unconditional emancipation cannot be measured. If the popular vote for those candidates who opposed not slavery, but its extension to the territories, be taken as a standard, it was slight indeed. In 1844, the Free Soil candidate, Birney, polled 62,000 votes out of over a million and a half; the Free Soil vote of the next campaign went beyond a quarter of a million, but the increase was due to the strength of the leader, Martin Van Buren; four years afterward it receded to 156,000, affording all the outward signs for the belief that the pleas of the abolitionist found no widespread response among the people. Yet the agitation undoubtedly ran deeper than the ballot box. Young statesmen of the North, in whose hands the destiny of frightful years was to lie, found their indifference to slavery broken and their consciences stirred by the unending appeal and the tireless reiteration. Charles Sumner afterward boasted that he read the _Liberator_ two years before Wendell Phillips, the young Boston lawyer who cast aside his profession to take up the dangerous cause. =Early Southern Opposition to Slavery.=--In the South, the sentiment against slavery was strong; it led some to believe that it would also come to an end there in due time. Washington disliked it and directed in his will that his own slaves should be set free after the death of his wife. Jefferson, looking into the future, condemned the system by which he also lived, saying: "Can the liberties of a nation be thought secure when we have removed their only firm basis, a conviction in the minds of the people that their liberties are the gift of God? Are they not to be violated but with His wrath? Indeed I tremble for my country when I reflect that God is just; that His justice cannot sleep forever." Nor did Southern men confine their sentiments to expressions of academic opinion. They accepted in 1787 the Ordinance which excluded slavery from the Northwest territory forever and also the Missouri Compromise, which shut it out of a vast section of the Louisiana territory. =The Revolution in the Slave System.=--Among the representatives of South Carolina and Georgia, however, the anti-slavery views of Washington and Jefferson were by no means approved; and the drift of Southern economy was decidedly in favor of extending and perpetuating, rather than abolishing, the system of chattel servitude. The invention of the cotton gin and textile machinery created a market for cotton which the planters, with all their skill and energy, could hardly supply. Almost every available acre was brought under cotton culture as the small farmers were driven steadily from the seaboard into the uplands or to the Northwest. The demand for slaves to till the swiftly expanding fields was enormous. The number of bondmen rose from 700,000 in Washington's day to more than three millions in 1850. At the same time slavery itself was transformed. Instead of the homestead where the same family of masters kept the same families of slaves from generation to generation, came the plantation system of the Far South and Southwest where masters were ever moving and ever extending their holdings of lands and slaves. This in turn reacted on the older South where the raising of slaves for the market became a regular and highly profitable business. [Illustration: _From an old print_ JOHN C. CALHOUN] =Slavery Defended as a Positive Good.=--As the abolition agitation increased and the planting system expanded, apologies for slavery became fainter and fainter in the South. Then apologies were superseded by claims that slavery was a beneficial scheme of labor control. Calhoun, in a famous speech in the Senate in 1837, sounded the new note by declaring slavery "instead of an evil, a good--a positive good." His reasoning was as follows: in every civilized society one portion of the community must live on the labor of another; learning, science, and the arts are built upon leisure; the African slave, kindly treated by his master and mistress and looked after in his old age, is better off than the free laborers of Europe; and under the slave system conflicts between capital and labor are avoided. The advantages of slavery in this respect, he concluded, "will become more and more manifest, if left undisturbed by interference from without, as the country advances in wealth and numbers." =Slave Owners Dominate Politics.=--The new doctrine of Calhoun was eagerly seized by the planters as they came more and more to overshadow the small farmers of the South and as they beheld the menace of abolition growing upon the horizon. It formed, as they viewed matters, a moral defense for their labor system--sound, logical, invincible. It warranted them in drawing together for the protection of an institution so necessary, so inevitable, so beneficent. Though in 1850 the slave owners were only about three hundred and fifty thousand in a national population of nearly twenty million whites, they had an influence all out of proportion to their numbers. They were knit together by the bonds of a common interest. They had leisure and wealth. They could travel and attend conferences and conventions. Throughout the South and largely in the North, they had the press, the schools, and the pulpits on their side. They formed, as it were, a mighty union for the protection and advancement of their common cause. Aided by those mechanics and farmers of the North who stuck by Jacksonian Democracy through thick and thin, the planters became a power in the federal government. "We nominate Presidents," exultantly boasted a Richmond newspaper; "the North elects them." This jubilant Southern claim was conceded by William H. Seward, a Republican Senator from New York, in a speech describing the power of slavery in the national government. "A party," he said, "is in one sense a joint stock association, in which those who contribute most direct the action and management of the concern.... The slaveholders, contributing in an overwhelming proportion to the strength of the Democratic party, necessarily dictate and prescribe its policy." He went on: "The slaveholding class has become the governing power in each of the slaveholding states and it practically chooses thirty of the sixty-two members of the Senate, ninety of the two hundred and thirty-three members of the House of Representatives, and one hundred and five of the two hundred and ninety-five electors of President and Vice-President of the United States." Then he considered the slave power in the Supreme Court. "That tribunal," he exclaimed, "consists of a chief justice and eight associate justices. Of these, five were called from slave states and four from free states. The opinions and bias of each of them were carefully considered by the President and Senate when he was appointed. Not one of them was found wanting in soundness of politics, according to the slaveholder's exposition of the Constitution." Such was the Northern view of the planting interest that, from the arena of national politics, challenged the whole country in 1860. [Illustration: DISTRIBUTION OF SLAVES IN THE SOUTHERN STATES] SLAVERY IN NATIONAL POLITICS =National Aspects of Slavery.=--It may be asked why it was that slavery, founded originally on state law and subject to state government, was drawn into the current of national affairs. The answer is simple. There were, in the first place, constitutional reasons. The Congress of the United States had to make all needful rules for the government of the territories, the District of Columbia, the forts and other property under national authority; so it was compelled to determine whether slavery should exist in the places subject to its jurisdiction. Upon Congress was also conferred the power of admitting new states; whenever a territory asked for admission, the issue could be raised as to whether slavery should be sanctioned or excluded. Under the Constitution, provision was made for the return of runaway slaves; Congress had the power to enforce this clause by appropriate legislation. Since the control of the post office was vested in the federal government, it had to face the problem raised by the transmission of abolition literature through the mails. Finally citizens had the right of petition; it inheres in all free government and it is expressly guaranteed by the first amendment to the Constitution. It was therefore legal for abolitionists to present to Congress their petitions, even if they asked for something which it had no right to grant. It was thus impossible, constitutionally, to draw a cordon around the slavery issue and confine the discussion of it to state politics. There were, in the second place, economic reasons why slavery was inevitably drawn into the national sphere. It was the basis of the planting system which had direct commercial relations with the North and European countries; it was affected by federal laws respecting tariffs, bounties, ship subsidies, banking, and kindred matters. The planters of the South, almost without exception, looked upon the protective tariff as a tribute laid upon them for the benefit of Northern industries. As heavy borrowers of money in the North, they were generally in favor of "easy money," if not paper currency, as an aid in the repayment of their debts. This threw most of them into opposition to the Whig program for a United States Bank. All financial aids to American shipping they stoutly resisted, preferring to rely upon the cheaper service rendered by English shippers. Internal improvements, those substantial ties that were binding the West to the East and turning the traffic from New Orleans to Philadelphia and New York, they viewed with alarm. Free homesteads from the public lands, which tended to overbalance the South by building free states, became to them a measure dangerous to their interests. Thus national economic policies, which could not by any twist or turn be confined to state control, drew the slave system and its defenders into the political conflict that centered at Washington. =Slavery and the Territories--the Missouri Compromise (1820).=--Though men continually talked about "taking slavery out of politics," it could not be done. By 1818 slavery had become so entrenched and the anti-slavery sentiment so strong, that Missouri's quest for admission brought both houses of Congress into a deadlock that was broken only by compromise. The South, having half the Senators, could prevent the admission of Missouri stripped of slavery; and the North, powerful in the House of Representatives, could keep Missouri with slavery out of the union indefinitely. An adjustment of pretensions was the last resort. Maine, separated from the parent state of Massachusetts, was brought into the union with freedom and Missouri with bondage. At the same time it was agreed that the remainder of the vast Louisiana territory north of the parallel of 36 o 30' should be, like the old Northwest, forever free; while the southern portion was left to slavery. In reality this was an immense gain for liberty. The area dedicated to free farmers was many times greater than that left to the planters. The principle was once more asserted that Congress had full power to prevent slavery in the territories. [Illustration: THE MISSOURI COMPROMISE] =The Territorial Question Reopened by the Wilmot Proviso.=--To the Southern leaders, the annexation of Texas and the conquest of Mexico meant renewed security to the planting interest against the increasing wealth and population of the North. Texas, it was said, could be divided into four slave states. The new territories secured by the treaty of peace with Mexico contained the promise of at least three more. Thus, as each new free soil state knocked for admission into the union, the South could demand as the price of its consent a new slave state. No wonder Southern statesmen saw, in the annexation of Texas and the conquest of Mexico, slavery and King Cotton triumphant--secure for all time against adverse legislation. Northern leaders were equally convinced that the Southern prophecy was true. Abolitionists and moderate opponents of slavery alike were in despair. Texas, they lamented, would fasten slavery upon the country forevermore. "No living man," cried one, "will see the end of slavery in the United States!" It so happened, however, that the events which, it was thought, would secure slavery let loose a storm against it. A sign appeared first on August 6, 1846, only a few months after war was declared on Mexico. On that day, David Wilmot, a Democrat from Pennsylvania, introduced into the House of Representatives a resolution to the effect that, as an express and fundamental condition to the acquisition of any territory from the republic of Mexico, slavery should be forever excluded from every part of it. "The Wilmot Proviso," as the resolution was popularly called, though defeated on that occasion, was a challenge to the South. The South answered the challenge. Speaking in the House of Representatives, Robert Toombs of Georgia boldly declared: "In the presence of the living God, if by your legislation you seek to drive us from the territories of California and New Mexico ... I am for disunion." South Carolina announced that the day for talk had passed and the time had come to join her sister states "in resisting the application of the Wilmot Proviso at any and all hazards." A conference, assembled at Jackson, Mississippi, in the autumn of 1849, called a general convention of Southern states to meet at Nashville the following summer. The avowed purpose was to arrest "the course of aggression" and, if that was not possible, to provide "in the last resort for their separate welfare by the formation of a compact and union that will afford protection to their liberties and rights." States that had spurned South Carolina's plea for nullification in 1832 responded to this new appeal with alacrity--an augury of the secession to come. [Illustration: _From an old print._ HENRY CLAY] =The Great Debate of 1850.=--The temper of the country was white hot when Congress convened in December, 1849. It was a memorable session, memorable for the great men who took part in the debates and memorable for the grand Compromise of 1850 which it produced. In the Senate sat for the last time three heroic figures: Webster from the North, Calhoun from the South, and Clay from a border state. For nearly forty years these three had been leaders of men. All had grown old and gray in service. Calhoun was already broken in health and in a few months was to be borne from the political arena forever. Clay and Webster had but two more years in their allotted span. Experience, learning, statecraft--all these things they now marshaled in a mighty effort to solve the slavery problem. On January 29, 1850, Clay offered to the Senate a compromise granting concessions to both sides; and a few days later, in a powerful oration, he made a passionate appeal for a union of hearts through mutual sacrifices. Calhoun relentlessly demanded the full measure of justice for the South: equal rights in the territories bought by common blood; the return of runaway slaves as required by the Constitution; the suppression of the abolitionists; and the restoration of the balance of power between the North and the South. Webster, in his notable "Seventh of March speech," condemned the Wilmot Proviso, advocated a strict enforcement of the fugitive slave law, denounced the abolitionists, and made a final plea for the Constitution, union, and liberty. This was the address which called forth from Whittier the poem, "Ichabod," deploring the fall of the mighty one whom he thought lost to all sense of faith and honor. =The Terms of the Compromise of 1850.=--When the debates were closed, the results were totaled in a series of compromise measures, all of which were signed in September, 1850, by the new President, Millard Fillmore, who had taken office two months before on the death of Zachary Taylor. By these acts the boundaries of Texas were adjusted and the territory of New Mexico created, subject to the provision that all or any part of it might be admitted to the union "with or without slavery as their constitution may provide at the time of their admission." The Territory of Utah was similarly organized with the same conditions as to slavery, thus repudiating the Wilmot Proviso without guaranteeing slavery to the planters. California was admitted as a free state under a constitution in which the people of the territory had themselves prohibited slavery. The slave trade was abolished in the District of Columbia, but slavery itself existed as before at the capital of the nation. This concession to anti-slavery sentiment was more than offset by a fugitive slave law, drastic in spirit and in letter. It placed the enforcement of its terms in the hands of federal officers appointed from Washington and so removed it from the control of authorities locally elected. It provided that masters or their agents, on filing claims in due form, might summarily remove their escaped slaves without affording their "alleged fugitives" the right of trial by jury, the right to witness, the right to offer any testimony in evidence. Finally, to "put teeth" into the act, heavy penalties were prescribed for all who obstructed or assisted in obstructing the enforcement of the law. Such was the Great Compromise of 1850. [Illustration: AN OLD CARTOON REPRESENTING WEBSTER "STEALING CLAY'S THUNDER"] =The Pro-slavery Triumph in the Election of 1852.=--The results of the election of 1852 seemed to show conclusively that the nation was weary of slavery agitation and wanted peace. Both parties, Whigs and Democrats, endorsed the fugitive slave law and approved the Great Compromise. The Democrats, with Franklin Pierce as their leader, swept the country against the war hero, General Winfield Scott, on whom the Whigs had staked their hopes. Even Webster, broken with grief at his failure to receive the nomination, advised his friends to vote for Pierce and turned away from politics to meditate upon approaching death. The verdict of the voters would seem to indicate that for the time everybody, save a handful of disgruntled agitators, looked upon Clay's settlement as the last word. "The people, especially the business men of the country," says Elson, "were utterly weary of the agitation and they gave their suffrages to the party that promised them rest." The Free Soil party, condemning slavery as "a sin against God and a crime against man," and advocating freedom for the territories, failed to carry a single state. In fact it polled fewer votes than it had four years earlier--156,000 as against nearly 3,000,000, the combined vote of the Whigs and Democrats. It is not surprising, therefore, that President Pierce, surrounded in his cabinet by strong Southern sympathizers, could promise to put an end to slavery agitation and to crush the abolition movement in the bud. =Anti-slavery Agitation Continued.=--The promise was more difficult to fulfill than to utter. In fact, the vigorous execution of one measure included in the Compromise--the fugitive slave law--only made matters worse. Designed as security for the planters, it proved a powerful instrument in their undoing. Slavery five hundred miles away on a Louisiana plantation was so remote from the North that only the strongest imagination could maintain a constant rage against it. "Slave catching," "man hunting" by federal officers on the streets of Philadelphia, New York, Boston, Chicago, or Milwaukee and in the hamlets and villages of the wide-stretching farm lands of the North was another matter. It brought the most odious aspects of slavery home to thousands of men and women who would otherwise have been indifferent to the system. Law-abiding business men, mechanics, farmers, and women, when they saw peaceful negroes, who had resided in their neighborhoods perhaps for years, torn away by federal officers and carried back to bondage, were transformed into enemies of the law. They helped slaves to escape; they snatched them away from officers who had captured them; they broke open jails and carried fugitives off to Canada. Assistance to runaway slaves, always more or less common in the North, was by this time organized into a system. Regular routes, known as "underground railways," were laid out across the free states into Canada, and trusted friends of freedom maintained "underground stations" where fugitives were concealed in the daytime between their long night journeys. Funds were raised and secret agents sent into the South to help negroes to flee. One negro woman, Harriet Tubman, "the Moses of her people," with headquarters at Philadelphia, is accredited with nineteen invasions into slave territory and the emancipation of three hundred negroes. Those who worked at this business were in constant peril. One underground operator, Calvin Fairbank, spent nearly twenty years in prison for aiding fugitives from justice. Yet perils and prisons did not stay those determined men and women who, in obedience to their consciences, set themselves to this lawless work. [Illustration: HARRIET BEECHER STOWE] From thrilling stories of adventure along the underground railways came some of the scenes and themes of the novel by Harriet Beecher Stowe, "Uncle Tom's Cabin," published two years after the Compromise of 1850. Her stirring tale set forth the worst features of slavery in vivid word pictures that caught and held the attention of millions of readers. Though the book was unfair to the South and was denounced as a hideous distortion of the truth, it was quickly dramatized and played in every city and town throughout the North. Topsy, Little Eva, Uncle Tom, the fleeing slave, Eliza Harris, and the cruel slave driver, Simon Legree, with his baying blood hounds, became living specters in many a home that sought to bar the door to the "unpleasant and irritating business of slavery agitation." THE DRIFT OF EVENTS TOWARD THE IRREPRESSIBLE CONFLICT =Repeal of the Missouri Compromise.=--To practical men, after all, the "rub-a-dub" agitation of a few abolitionists, an occasional riot over fugitive slaves, and the vogue of a popular novel seemed of slight or transient importance. They could point with satisfaction to the election returns of 1852; but their very security was founded upon shifting sands. The magnificent triumph of the pro-slavery Democrats in 1852 brought a turn in affairs that destroyed the foundations under their feet. Emboldened by their own strength and the weakness of their opponents, they now dared to repeal the Missouri Compromise. The leader in this fateful enterprise was Stephen A. Douglas, Senator from Illinois, and the occasion for the deed was the demand for the organization of territorial government in the regions west of Iowa and Missouri. Douglas, like Clay and Webster before him, was consumed by a strong passion for the presidency, and, to reach his goal, it was necessary to win the support of the South. This he undoubtedly sought to do when he introduced on January 4, 1854, a bill organizing the Nebraska territory on the principle of the Compromise of 1850; namely, that the people in the territory might themselves decide whether they would have slavery or not. Unwittingly the avalanche was started. After a stormy debate, in which important amendments were forced on Douglas, the Kansas-Nebraska Bill became a law on May 30, 1854. The measure created two territories, Kansas and Nebraska, and provided that they, or territories organized out of them, could come into the union as states "with or without slavery as their constitutions may prescribe at the time of their admission." Not content with this, the law went on to declare the Missouri Compromise null and void as being inconsistent with the principle of non-intervention by Congress with slavery in the states and territories. Thus by a single blow the very heart of the continent, dedicated to freedom by solemn agreement, was thrown open to slavery. A desperate struggle between slave owners and the advocates of freedom was the outcome in Kansas. If Douglas fancied that the North would receive the overthrow of the Missouri Compromise in the same temper that it greeted Clay's settlement, he was rapidly disillusioned. A blast of rage, terrific in its fury, swept from Maine to Iowa. Staid old Boston hanged him in effigy with an inscription--"Stephen A. Douglas, author of the infamous Nebraska bill: the Benedict Arnold of 1854." City after city burned him in effigy until, as he himself said, he could travel from the Atlantic coast to Chicago in the light of the fires. Thousands of Whigs and Free-soil Democrats deserted their parties which had sanctioned or at least tolerated the Kansas-Nebraska Bill, declaring that the startling measure showed an evident resolve on the part of the planters to rule the whole country. A gage of defiance was thrown down to the abolitionists. An issue was set even for the moderate and timid who had been unmoved by the agitation over slavery in the Far South. That issue was whether slavery was to be confined within its existing boundaries or be allowed to spread without interference, thereby placing the free states in the minority and surrendering the federal government wholly to the slave power. =The Rise of the Republican Party.=--Events of terrible significance, swiftly following, drove the country like a ship before a gale straight into civil war. The Kansas-Nebraska Bill rent the old parties asunder and called into being the Republican party. While that bill was pending in Congress, many Northern Whigs and Democrats had come to the conclusion that a new party dedicated to freedom in the territories must follow the repeal of the Missouri Compromise. Several places claim to be the original home of the Republican party; but historians generally yield it to Wisconsin. At Ripon in that state, a mass meeting of Whigs and Democrats assembled in February, 1854, and resolved to form a new party if the Kansas-Nebraska Bill should pass. At a second meeting a fusion committee representing Whigs, Free Soilers, and Democrats was formed and the name Republican--the name of Jefferson's old party--was selected. All over the country similar meetings were held and political committees were organized. When the presidential campaign of 1856 began the Republicans entered the contest. After a preliminary conference in Pittsburgh in February, they held a convention in Philadelphia at which was drawn up a platform opposing the extension of slavery to the territories. John C. Fremont, the distinguished explorer, was named for the presidency. The results of the election were astounding as compared with the Free-soil failure of the preceding election. Prominent men like Longfellow, Washington Irving, William Cullen Bryant, Ralph Waldo Emerson, and George William Curtis went over to the new party and 1,341,264 votes were rolled up for "free labor, free speech, free men, free Kansas, and Fremont." Nevertheless the victory of the Democrats was decisive. Their candidate, James Buchanan of Pennsylvania, was elected by a majority of 174 to 114 electoral votes. [Illustration: SLAVE AND FREE SOIL ON EVE OF CIVIL WAR] =The Dred Scott Decision (1857).=--In his inaugural, Buchanan vaguely hinted that in a forthcoming decision the Supreme Court would settle one of the vital questions of the day. This was a reference to the Dred Scott case then pending. Scott was a slave who had been taken by his master into the upper Louisiana territory, where freedom had been established by the Missouri Compromise, and then carried back into his old state of Missouri. He brought suit for his liberty on the ground that his residence in the free territory made him free. This raised the question whether the law of Congress prohibiting slavery north of 36 o 30' was authorized by the federal Constitution or not. The Court might have avoided answering it by saying that even though Scott was free in the territory, he became a slave again in Missouri by virtue of the law of that state. The Court, however, faced the issue squarely. It held that Scott had not been free anywhere and that, besides, the Missouri Compromise violated the Constitution and was null and void. The decision was a triumph for the South. It meant that Congress after all had no power to abolish slavery in the territories. Under the decree of the highest court in the land, that could be done only by an amendment to the Constitution which required a two-thirds vote in Congress and the approval of three-fourths of the states. Such an amendment was obviously impossible--the Southern states were too numerous; but the Republicans were not daunted. "We know," said Lincoln, "the Court that made it has often overruled its own decisions and we shall do what we can to have it overrule this." Legislatures of Northern states passed resolutions condemning the decision and the Republican platform of 1860 characterized the dogma that the Constitution carried slavery into the territories as "a dangerous political heresy at variance with the explicit provisions of that instrument itself ... with legislative and judicial precedent ... revolutionary in tendency and subversive of the peace and harmony of the country." =The Panic of 1857.=--In the midst of the acrimonious dispute over the Dred Scott decision, came one of the worst business panics which ever afflicted the country. In the spring and summer of 1857, fourteen railroad corporations, including the Erie, Michigan Central, and the Illinois Central, failed to meet their obligations; banks and insurance companies, some of them the largest and strongest institutions in the North, closed their doors; stocks and bonds came down in a crash on the markets; manufacturing was paralyzed; tens of thousands of working people were thrown out of employment; "hunger meetings" of idle men were held in the cities and banners bearing the inscription, "We want bread," were flung out. In New York, working men threatened to invade the Council Chamber to demand "work or bread," and the frightened mayor called for the police and soldiers. For this distressing state of affairs many remedies were offered; none with more zeal and persistence than the proposal for a higher tariff to take the place of the law of March, 1857, a Democratic measure making drastic reductions in the rates of duty. In the manufacturing districts of the North, the panic was ascribed to the "Democratic assault on business." So an old issue was again vigorously advanced, preparatory to the next presidential campaign. =The Lincoln-Douglas Debates.=--The following year the interest of the whole country was drawn to a series of debates held in Illinois by Lincoln and Douglas, both candidates for the United States Senate. In the course of his campaign Lincoln had uttered his trenchant saying that "a house divided against itself cannot stand. I believe this government cannot endure permanently half slave and half free." At the same time he had accused Douglas, Buchanan, and the Supreme Court of acting in concert to make slavery national. This daring statement arrested the attention of Douglas, who was making his campaign on the doctrine of "squatter sovereignty;" that is, the right of the people of each territory "to vote slavery up or down." After a few long-distance shots at each other, the candidates agreed to meet face to face and discuss the issues of the day. Never had such crowds been seen at political meetings in Illinois. Farmers deserted their plows, smiths their forges, and housewives their baking to hear "Honest Abe" and "the Little Giant." The results of the series of debates were momentous. Lincoln clearly defined his position. The South, he admitted, was entitled under the Constitution to a fair, fugitive slave law. He hoped that there might be no new slave states; but he did not see how Congress could exclude the people of a territory from admission as a state if they saw fit to adopt a constitution legalizing the ownership of slaves. He favored the gradual abolition of slavery in the District of Columbia and the total exclusion of it from the territories of the United States by act of Congress. Moreover, he drove Douglas into a hole by asking how he squared "squatter sovereignty" with the Dred Scott decision; how, in other words, the people of a territory could abolish slavery when the Court had declared that Congress, the superior power, could not do it under the Constitution? To this baffling question Douglas lamely replied that the inhabitants of a territory, by "unfriendly legislation," might make property in slaves insecure and thus destroy the institution. This answer to Lincoln's query alienated many Southern Democrats who believed that the Dred Scott decision settled the question of slavery in the territories for all time. Douglas won the election to the Senate; but Lincoln, lifted into national fame by the debates, beat him in the campaign for President two years later. =John Brown's Raid.=--To the abolitionists the line of argument pursued by Lincoln, including his proposal to leave slavery untouched in the states where it existed, was wholly unsatisfactory. One of them, a grim and resolute man, inflamed by a hatred for slavery in itself, turned from agitation to violence. "These men are all talk; what is needed is action--action!" So spoke John Brown of New York. During the sanguinary struggle in Kansas he hurried to the frontier, gun and dagger in hand, to help drive slave owners from the free soil of the West. There he committed deeds of such daring and cruelty that he was outlawed and a price put upon his head. Still he kept on the path of "action." Aided by funds from Northern friends, he gathered a small band of his followers around him, saying to them: "If God be for us, who can be against us?" He went into Virginia in the autumn of 1859, hoping, as he explained, "to effect a mighty conquest even though it be like the last victory of Samson." He seized the government armory at Harper's Ferry, declared free the slaves whom he found, and called upon them to take up arms in defense of their liberty. His was a hope as forlorn as it was desperate. Armed forces came down upon him and, after a hard battle, captured him. Tried for treason, Brown was condemned to death. The governor of Virginia turned a deaf ear to pleas for clemency based on the ground that the prisoner was simply a lunatic. "This is a beautiful country," said the stern old Brown glancing upward to the eternal hills on his way to the gallows, as calmly as if he were returning home from a long journey. "So perish all such enemies of Virginia. All such enemies of the Union. All such foes of the human race," solemnly announced the executioner as he fulfilled the judgment of the law. The raid and its grim ending deeply moved the country. Abolitionists looked upon Brown as a martyr and tolled funeral bells on the day of his execution. Longfellow wrote in his diary: "This will be a great day in our history; the date of a new revolution as much needed as the old one." Jefferson Davis saw in the affair "the invasion of a state by a murderous gang of abolitionists bent on inciting slaves to murder helpless women and children"--a crime for which the leader had met a felon's death. Lincoln spoke of the raid as absurd, the deed of an enthusiast who had brooded over the oppression of a people until he fancied himself commissioned by heaven to liberate them--an attempt which ended in "little else than his own execution." To Republican leaders as a whole, the event was very embarrassing. They were taunted by the Democrats with responsibility for the deed. Douglas declared his "firm and deliberate conviction that the Harper's Ferry crime was the natural, logical, inevitable result of the doctrines and teachings of the Republican party." So persistent were such attacks that the Republicans felt called upon in 1860 to denounce Brown's raid "as among the gravest of crimes." =The Democrats Divided.=--When the Democratic convention met at Charleston in the spring of 1860, a few months after Brown's execution, it soon became clear that there was danger ahead. Between the extreme slavery advocates of the Far South and the so-called pro-slavery Democrats of the Douglas type, there was a chasm which no appeals to party loyalty could bridge. As the spokesman of the West, Douglas knew that, while the North was not abolitionist, it was passionately set against an extension of slavery into the territories by act of Congress; that squatter sovereignty was the mildest kind of compromise acceptable to the farmers whose votes would determine the fate of the election. Southern leaders would not accept his opinion. Yancey, speaking for Alabama, refused to palter with any plan not built on the proposition that slavery was in itself right. He taunted the Northern Democrats with taking the view that slavery was wrong, but that they could not do anything about it. That, he said, was the fatal error--the cause of all discord, the source of "Black Republicanism," as well as squatter sovereignty. The gauntlet was thus thrown down at the feet of the Northern delegates: "You must not apologize for slavery; you must declare it right; you must advocate its extension." The challenge, so bluntly put, was as bluntly answered. "Gentlemen of the South," responded a delegate from Ohio, "you mistake us. You mistake us. We will not do it." For ten days the Charleston convention wrangled over the platform and balloted for the nomination of a candidate. Douglas, though in the lead, could not get the two-thirds vote required for victory. For more than fifty times the roll of the convention was called without a decision. Then in sheer desperation the convention adjourned to meet later at Baltimore. When the delegates again assembled, their passions ran as high as ever. The division into two irreconcilable factions was unchanged. Uncompromising delegates from the South withdrew to Richmond, nominated John C. Breckinridge of Kentucky for President, and put forth a platform asserting the rights of slave owners in the territories and the duty of the federal government to protect them. The delegates who remained at Baltimore nominated Douglas and endorsed his doctrine of squatter sovereignty. =The Constitutional Union Party.=--While the Democratic party was being disrupted, a fragment of the former Whig party, known as the Constitutional Unionists, held a convention at Baltimore and selected national candidates: John Bell from Tennessee and Edward Everett from Massachusetts. A melancholy interest attached to this assembly. It was mainly composed of old men whose political views were those of Clay and Webster, cherished leaders now dead and gone. In their platform they sought to exorcise the evil spirit of partisanship by inviting their fellow citizens to "support the Constitution of the country, the union of the states, and the enforcement of the laws." The party that campaigned on this grand sentiment only drew laughter from the Democrats and derision from the Republicans and polled less than one-fourth the votes. =The Republican Convention.=--With the Whigs definitely forced into a separate group, the Republican convention at Chicago was fated to be sectional in character, although five slave states did send delegates. As the Democrats were split, the party that had led a forlorn hope four years before was on the high road to success at last. New and powerful recruits were found. The advocates of a high protective tariff and the friends of free homesteads for farmers and workingmen mingled with enthusiastic foes of slavery. While still firm in their opposition to slavery in the territories, the Republicans went on record in favor of a homestead law granting free lands to settlers and approved customs duties designed "to encourage the development of the industrial interests of the whole country." The platform was greeted with cheers which, according to the stenographic report of the convention, became loud and prolonged as the protective tariff and homestead planks were read. Having skillfully drawn a platform to unite the North in opposition to slavery and the planting system, the Republicans were also adroit in their selection of a candidate. The tariff plank might carry Pennsylvania, a Democratic state; but Ohio, Indiana, and Illinois were equally essential to success at the polls. The southern counties of these states were filled with settlers from Virginia, North Carolina, and Kentucky who, even if they had no love for slavery, were no friends of abolition. Moreover, remembering the old fight on the United States Bank in Andrew Jackson's day, they were suspicious of men from the East. Accordingly, they did not favor the candidacy of Seward, the leading Republican statesman and "favorite son" of New York. After much trading and discussing, the convention came to the conclusion that Abraham Lincoln of Illinois was the most "available" candidate. He was of Southern origin, born in Kentucky in 1809, a fact that told heavily in the campaign in the Ohio Valley. He was a man of the soil, the son of poor frontier parents, a pioneer who in his youth had labored in the fields and forests, celebrated far and wide as "honest Abe, the rail-splitter." It was well-known that he disliked slavery, but was no abolitionist. He had come dangerously near to Seward's radicalism in his "house-divided-against-itself" speech but he had never committed himself to the reckless doctrine that there was a "higher law" than the Constitution. Slavery in the South he tolerated as a bitter fact; slavery in the territories he opposed with all his strength. Of his sincerity there could be no doubt. He was a speaker and writer of singular power, commanding, by the use of simple and homely language, the hearts and minds of those who heard him speak or read his printed words. He had gone far enough in his opposition to slavery; but not too far. He was the man of the hour! Amid lusty cheers from ten thousand throats, Lincoln was nominated for the presidency by the Republicans. In the ensuing election, he carried all the free states except New Jersey. =References= P.E. Chadwick, _Causes of the Civil War_ (American Nation Series). W.E. Dodd, _Statesmen of the Old South_. E. Engle, _Southern Sidelights_ (Sympathetic account of the Old South). A.B. Hart, _Slavery and Abolition_ (American Nation Series). J.F. Rhodes, _History of the United States_, Vols. I and II. T.C. Smith, _Parties and Slavery_ (American Nation Series). =Questions= 1. Trace the decline of slavery in the North and explain it. 2. Describe the character of early opposition to slavery. 3. What was the effect of abolition agitation? 4. Why did anti-slavery sentiment practically disappear in the South? 5. On what grounds did Calhoun defend slavery? 6. Explain how slave owners became powerful in politics. 7. Why was it impossible to keep the slavery issue out of national politics? 8. Give the leading steps in the long controversy over slavery in the territories. 9. State the terms of the Compromise of 1850 and explain its failure. 10. What were the startling events between 1850 and 1860? 11. Account for the rise of the Republican party. What party had used the title before? 12. How did the Dred Scott decision become a political issue? 13. What were some of the points brought out in the Lincoln-Douglas debates? 14. Describe the party division in 1860. 15. What were the main planks in the Republican platform? =Research Topics= =The Extension of Cotton Planting.=--Callender, _Economic History of the United States_, pp. 760-768. =Abolition Agitation.=--McMaster, _History of the People of the United States_, Vol. VI, pp. 271-298. =Calhoun's Defense of Slavery.=--Harding, _Select Orations Illustrating American History_, pp. 247-257. =The Compromise of 1850.=--Clay's speech in Harding, _Select Orations_, pp. 267-289. The compromise laws in Macdonald, _Documentary Source Book of American History_, pp. 383-394. Narrative account in McMaster, Vol. VIII, pp. 1-55; Elson, _History of the United States_, pp. 540-548. =The Repeal of the Missouri Compromise.=--McMaster, Vol. VIII, pp. 192-231; Elson, pp. 571-582. =The Dred Scott Case.=--McMaster, Vol. VIII, pp. 278-282. Compare the opinion of Taney and the dissent of Curtis in Macdonald, _Documentary Source Book_, pp. 405-420; Elson, pp. 595-598. =The Lincoln-Douglas Debates.=--Analysis of original speeches in Harding, _Select Orations_ pp. 309-341; Elson, pp. 598-604. =Biographical Studies.=--Calhoun, Clay, Webster, A.H. Stephens, Douglas, W.H. Seward, William Lloyd Garrison, Wendell Phillips, and Harriet Beecher Stowe. CHAPTER XV THE CIVIL WAR AND RECONSTRUCTION "The irrepressible conflict is about to be visited upon us through the Black Republican nominee and his fanatical, diabolical Republican party," ran an appeal to the voters of South Carolina during the campaign of 1860. If that calamity comes to pass, responded the governor of the state, the answer should be a declaration of independence. In a few days the suspense was over. The news of Lincoln's election came speeding along the wires. Prepared for the event, the editor of the Charleston _Mercury_ unfurled the flag of his state amid wild cheers from an excited throng in the streets. Then he seized his pen and wrote: "The tea has been thrown overboard; the revolution of 1860 has been initiated." The issue was submitted to the voters in the choice of delegates to a state convention called to cast off the yoke of the Constitution. THE SOUTHERN CONFEDERACY =Secession.=--As arranged, the convention of South Carolina assembled in December and without a dissenting voice passed the ordinance of secession withdrawing from the union. Bells were rung exultantly, the roar of cannon carried the news to outlying counties, fireworks lighted up the heavens, and champagne flowed. The crisis so long expected had come at last; even the conservatives who had prayed that they might escape the dreadful crash greeted it with a sigh of relief. [Illustration: THE UNITED STATES IN 1861 The border states (in purple) remained loyal.] South Carolina now sent forth an appeal to her sister states--states that had in Jackson's day repudiated nullification as leading to "the dissolution of the union." The answer that came this time was in a different vein. A month had hardly elapsed before five other states--Florida, Georgia, Alabama, Mississippi, and Louisiana--had withdrawn from the union. In February, Texas followed. Virginia, hesitating until the bombardment of Fort Sumter forced a conclusion, seceded in April; but fifty-five of the one hundred and forty-three delegates dissented, foreshadowing the creation of the new state of West Virginia which Congress admitted to the union in 1863. In May, North Carolina, Arkansas, and Tennessee announced their independence. =Secession and the Theories of the Union.=--In severing their relations with the union, the seceding states denied every point in the Northern theory of the Constitution. That theory, as every one knows, was carefully formulated by Webster and elaborated by Lincoln. According to it, the union was older than the states; it was created before the Declaration of Independence for the purpose of common defense. The Articles of Confederation did but strengthen this national bond and the Constitution sealed it forever. The federal government was not a creature of state governments. It was erected by the people and derived its powers directly from them. "It is," said Webster, "the people's Constitution, the people's government; made for the people; made by the people; and answerable to the people. The people of the United States have declared that this Constitution shall be the supreme law." When a state questions the lawfulness of any act of the federal government, it cannot nullify that act or withdraw from the union; it must abide by the decision of the Supreme Court of the United States. The union of these states is perpetual, ran Lincoln's simple argument in the first inaugural; the federal Constitution has no provision for its own termination; it can be destroyed only by some action not provided for in the instrument itself; even if it is a compact among all the states the consent of all must be necessary to its dissolution; therefore no state can lawfully get out of the union and acts of violence against the United States are insurrectionary or revolutionary. This was the system which he believed himself bound to defend by his oath of office "registered in heaven." All this reasoning Southern statesmen utterly rejected. In their opinion the thirteen original states won their independence as separate and sovereign powers. The treaty of peace with Great Britain named them all and acknowledged them "to be free, sovereign, and independent states." The Articles of Confederation very explicitly declared that "each state retains its sovereignty, freedom, and independence." The Constitution was a "league of nations" formed by an alliance of thirteen separate powers, each one of which ratified the instrument before it was put into effect. They voluntarily entered the union under the Constitution and voluntarily they could leave it. Such was the constitutional doctrine of Hayne, Calhoun, and Jefferson Davis. In seceding, the Southern states had only to follow legal methods, and the transaction would be correct in every particular. So conventions were summoned, elections were held, and "sovereign assemblies of the people" set aside the Constitution in the same manner as it had been ratified nearly four score years before. Thus, said the Southern people, the moral judgment was fulfilled and the letter of the law carried into effect. [Illustration: JEFFERSON DAVIS] =The Formation of the Confederacy.=--Acting on the call of Mississippi, a congress of delegates from the seceded states met at Montgomery, Alabama, and on February 8, 1861, adopted a temporary plan of union. It selected, as provisional president, Jefferson Davis of Mississippi, a man well fitted by experience and moderation for leadership, a graduate of West Point, who had rendered distinguished service on the field of battle in the Mexican War, in public office, and as a member of Congress. In March, a permanent constitution of the Confederate states was drafted. It was quickly ratified by the states; elections were held in November; and the government under it went into effect the next year. This new constitution, in form, was very much like the famous instrument drafted at Philadelphia in 1787. It provided for a President, a Senate, and a House of Representatives along almost identical lines. In the powers conferred upon them, however, there were striking differences. The right to appropriate money for internal improvements was expressly withheld; bounties were not to be granted from the treasury nor import duties so laid as to promote or foster any branch of industry. The dignity of the state, if any might be bold enough to question it, was safeguarded in the opening line by the declaration that each acted "in its sovereign and independent character" in forming the Southern union. =Financing the Confederacy.=--No government ever set out upon its career with more perplexing tasks in front of it. The North had a monetary system; the South had to create one. The North had a scheme of taxation that produced large revenues from numerous sources; the South had to formulate and carry out a financial plan. Like the North, the Confederacy expected to secure a large revenue from customs duties, easily collected and little felt among the masses. To this expectation the blockade of Southern ports inaugurated by Lincoln in April, 1861, soon put an end. Following the precedent set by Congress under the Articles of Confederation, the Southern Congress resorted to a direct property tax apportioned among the states, only to meet the failure that might have been foretold. The Confederacy also sold bonds, the first issue bringing into the treasury nearly all the specie available in the Southern banks. This specie by unhappy management was early sent abroad to pay for supplies, sapping the foundations of a sound currency system. Large amounts of bonds were sold overseas, commanding at first better terms than those of the North in the markets of London, Paris, and Amsterdam, many an English lord and statesman buying with enthusiasm and confidence to lament within a few years the proofs of his folly. The difficulties of bringing through the blockade any supplies purchased by foreign bond issues, however, nullified the effect of foreign credit and forced the Confederacy back upon the device of paper money. In all approximately one billion dollars streamed from the printing presses, to fall in value at an alarming rate, reaching in January, 1863, the astounding figure of fifty dollars in paper money for one in gold. Every known device was used to prevent its depreciation, without result. To the issues of the Confederate Congress were added untold millions poured out by the states and by private banks. =Human and Material Resources.=--When we measure strength for strength in those signs of power--men, money, and supplies--it is difficult to see how the South was able to embark on secession and war with such confidence in the outcome. In the Confederacy at the final reckoning there were eleven states in all, to be pitted against twenty-two; a population of nine millions, nearly one-half servile, to be pitted against twenty-two millions; a land without great industries to produce war supplies and without vast capital to furnish war finances, joined in battle with a nation already industrial and fortified by property worth eleven billion dollars. Even after the Confederate Congress authorized conscription in 1862, Southern man power, measured in numbers, was wholly inadequate to uphold the independence which had been declared. How, therefore, could the Confederacy hope to sustain itself against such a combination of men, money, and materials as the North could marshal? =Southern Expectations.=--The answer to this question is to be found in the ideas that prevailed among Southern leaders. First of all, they hoped, in vain, to carry the Confederacy up to the Ohio River; and, with the aid of Missouri, to gain possession of the Mississippi Valley, the granary of the nation. In the second place, they reckoned upon a large and continuous trade with Great Britain--the exchange of cotton for war materials. They likewise expected to receive recognition and open aid from European powers that looked with satisfaction upon the breakup of the great American republic. In the third place, they believed that their control over several staples so essential to Northern industry would enable them to bring on an industrial crisis in the manufacturing states. "I firmly believe," wrote Senator Hammond, of South Carolina, in 1860, "that the slave-holding South is now the controlling power of the world; that no other power would face us in hostility. Cotton, rice, tobacco, and naval stores command the world; and we have the sense to know it and are sufficiently Teutonic to carry it out successfully. The North without us would be a motherless calf, bleating about, and die of mange and starvation." There were other grounds for confidence. Having seized all of the federal military and naval supplies in the South, and having left the national government weak in armed power during their possession of the presidency, Southern leaders looked to a swift war, if it came at all, to put the finishing stroke to independence. "The greasy mechanics of the North," it was repeatedly said, "will not fight." As to disparity in numbers they drew historic parallels. "Our fathers, a mere handful, overcame the enormous power of Great Britain," a saying of ex-President Tyler, ran current to reassure the doubtful. Finally, and this point cannot be too strongly emphasized, the South expected to see a weakened and divided North. It knew that the abolitionists and the Southern sympathizers were ready to let the Confederate states go in peace; that Lincoln represented only a little more than one-third the voters of the country; and that the vote for Douglas, Bell, and Breckinridge meant a decided opposition to the Republicans and their policies. =Efforts at Compromise.=--Republican leaders, on reviewing the same facts, were themselves uncertain as to the outcome of a civil war and made many efforts to avoid a crisis. Thurlow Weed, an Albany journalist and politician who had done much to carry New York for Lincoln, proposed a plan for extending the Missouri Compromise line to the Pacific. Jefferson Davis, warning his followers that a war if it came would be terrible, was prepared to accept the offer; but Lincoln, remembering his campaign pledges, stood firm as a rock against it. His followers in Congress took the same position with regard to a similar settlement suggested by Senator Crittenden of Kentucky. Though unwilling to surrender his solemn promises respecting slavery in the territories, Lincoln was prepared to give to Southern leaders a strong guarantee that his administration would not interfere directly or indirectly with slavery in the states. Anxious to reassure the South on this point, the Republicans in Congress proposed to write into the Constitution a declaration that no amendment should ever be made authorizing the abolition of or interference with slavery in any state. The resolution, duly passed, was sent forth on March 4, 1861, with the approval of Lincoln; it was actually ratified by three states before the storm of war destroyed it. By the irony of fate the thirteenth amendment was to abolish, not guarantee, slavery. THE WAR MEASURES OF THE FEDERAL GOVERNMENT =Raising the Armies.=--The crisis at Fort Sumter, on April 12-14, 1861, forced the President and Congress to turn from negotiations to problems of warfare. Little did they realize the magnitude of the task before them. Lincoln's first call for volunteers, issued on April 15, 1861, limited the number to 75,000, put their term of service at three months, and prescribed their duty as the enforcement of the law against combinations too powerful to be overcome by ordinary judicial process. Disillusionment swiftly followed. The terrible defeat of the Federals at Bull Run on July 21 revealed the serious character of the task before them; and by a series of measures Congress put the entire man power of the country at the President's command. Under these acts, he issued new calls for volunteers. Early in August, 1862, he ordered a draft of militiamen numbering 300,000 for nine months' service. The results were disappointing--ominous--for only about 87,000 soldiers were added to the army. Something more drastic was clearly necessary. In March, 1863, Lincoln signed the inevitable draft law; it enrolled in the national forces liable to military duty all able-bodied male citizens and persons of foreign birth who had declared their intention to become citizens, between the ages of twenty and forty-five years--with exemptions on grounds of physical weakness and dependency. From the men enrolled were drawn by lot those destined to active service. Unhappily the measure struck a mortal blow at the principle of universal liability by excusing any person who found a substitute for himself or paid into the war office a sum, not exceeding three hundred dollars, to be fixed by general order. This provision, so crass and so obviously favoring the well-to-do, sowed seeds of bitterness which sprang up a hundredfold in the North. [Illustration: THE DRAFT RIOTS IN NEW YORK CITY] The beginning of the drawings under the draft act in New York City, on Monday, July 13, 1863, was the signal for four days of rioting. In the course of this uprising, draft headquarters were destroyed; the office of the _Tribune_ was gutted; negroes were seized, hanged, and shot; the homes of obnoxious Unionists were burned down; the residence of the mayor of the city was attacked; and regular battles were fought in the streets between the rioters and the police. Business stopped and a large part of the city passed absolutely into the control of the mob. Not until late the following Wednesday did enough troops arrive to restore order and enable the residents of the city to resume their daily activities. At least a thousand people had been killed or wounded and more than a million dollars' worth of damage done to property. The draft temporarily interrupted by this outbreak was then resumed and carried out without further trouble. The results of the draft were in the end distinctly disappointing to the government. The exemptions were numerous and the number who preferred and were able to pay $300 rather than serve exceeded all expectations. Volunteering, it is true, was stimulated, but even that resource could hardly keep the thinning ranks of the army filled. With reluctance Congress struck out the $300 exemption clause, but still favored the well-to-do by allowing them to hire substitutes if they could find them. With all this power in its hands the administration was able by January, 1865, to construct a union army that outnumbered the Confederates two to one. =War Finance.=--In the financial sphere the North faced immense difficulties. The surplus in the treasury had been dissipated by 1861 and the tariff of 1857 had failed to produce an income sufficient to meet the ordinary expenses of the government. Confronted by military and naval expenditures of appalling magnitude, rising from $35,000,000 in the first year of the war to $1,153,000,000 in the last year, the administration had to tap every available source of income. The duties on imports were increased, not once but many times, producing huge revenues and also meeting the most extravagant demands of the manufacturers for protection. Direct taxes were imposed on the states according to their respective populations, but the returns were meager--all out of proportion to the irritation involved. Stamp taxes and taxes on luxuries, occupations, and the earnings of corporations were laid with a weight that, in ordinary times, would have drawn forth opposition of ominous strength. The whole gamut of taxation was run. Even a tax on incomes and gains by the year, the first in the history of the federal government, was included in the long list. Revenues were supplemented by bond issues, mounting in size and interest rate, until in October, at the end of the war, the debt stood at $2,208,000,000. The total cost of the war was many times the money value of all the slaves in the Southern states. To the debt must be added nearly half a billion dollars in "greenbacks"--paper money issued by Congress in desperation as bond sales and revenues from taxes failed to meet the rising expenditures. This currency issued at par on questionable warrant from the Constitution, like all such paper, quickly began to decline until in the worst fortunes of 1864 one dollar in gold was worth nearly three in greenbacks. =The Blockade of Southern Ports.=--Four days after his call for volunteers, April 19, 1861, President Lincoln issued a proclamation blockading the ports of the Southern Confederacy. Later the blockade was extended to Virginia and North Carolina, as they withdrew from the union. Vessels attempting to enter or leave these ports, if they disregarded the warnings of a blockading ship, were to be captured and brought as prizes to the nearest convenient port. To make the order effective, immediate steps were taken to increase the naval forces, depleted by neglect, until the entire coast line was patrolled with such a number of ships that it was a rare captain who ventured to run the gantlet. The collision between the _Merrimac_ and the _Monitor_ in March, 1862, sealed the fate of the Confederacy. The exploits of the union navy are recorded in the falling export of cotton: $202,000,000 in 1860; $42,000,000 in 1861; and $4,000,000 in 1862. The deadly effect of this paralysis of trade upon Southern war power may be readily imagined. Foreign loans, payable in cotton, could be negotiated but not paid off. Supplies could be purchased on credit but not brought through the drag net. With extreme difficulty could the Confederate government secure even paper for the issue of money and bonds. Publishers, in despair at the loss of supplies, were finally driven to the use of brown wrapping paper and wall paper. As the railways and rolling stock wore out, it became impossible to renew them from England or France. Unable to export their cotton, planters on the seaboard burned it in what were called "fires of patriotism." In their lurid light the fatal weakness of Southern economy stood revealed. [Illustration: A BLOCKADE RUNNER] =Diplomacy.=--The war had not advanced far before the federal government became involved in many perplexing problems of diplomacy in Europe. The Confederacy early turned to England and France for financial aid and for recognition as an independent power. Davis believed that the industrial crisis created by the cotton blockade would in time literally compel Europe to intervene in order to get this essential staple. The crisis came as he expected but not the result. Thousands of English textile workers were thrown out of employment; and yet, while on the point of starvation, they adopted resolutions favoring the North instead of petitioning their government to aid the South by breaking the blockade. With the ruling classes it was far otherwise. Napoleon III, the Emperor of the French, was eager to help in disrupting the American republic; if he could have won England's support, he would have carried out his designs. As it turned out he found plenty of sympathy across the Channel but not open and official cooperation. According to the eminent historian, Rhodes, "four-fifths of the British House of Lords and most members of the House of Commons were favorable to the Confederacy and anxious for its triumph." Late in 1862 the British ministers, thus sustained, were on the point of recognizing the independence of the Confederacy. Had it not been for their extreme caution, for the constant and harassing criticism by English friends of the United States--like John Bright--and for the victories of Vicksburg and Gettysburg, both England and France would have doubtless declared the Confederacy to be one of the independent powers of the earth. [Illustration: JOHN BRIGHT] While stopping short of recognizing its independence, England and France took several steps that were in favor of the South. In proclaiming neutrality, they early accepted the Confederates as "belligerents" and accorded them the rights of people at war--a measure which aroused anger in the North at first but was later admitted to be sound. Otherwise Confederates taken in battle would have been regarded as "rebels" or "traitors" to be hanged or shot. Napoleon III proposed to Russia in 1861 a coalition of powers against the North, only to meet a firm refusal. The next year he suggested intervention to Great Britain, encountering this time a conditional rejection of his plans. In 1863, not daunted by rebuffs, he offered his services to Lincoln as a mediator, receiving in reply a polite letter declining his proposal and a sharp resolution from Congress suggesting that he attend to his own affairs. In both England and France the governments pursued a policy of friendliness to the Confederate agents. The British ministry, with indifference if not connivance, permitted rams and ships to be built in British docks and allowed them to escape to play havoc under the Confederate flag with American commerce. One of them, the _Alabama_, built in Liverpool by a British firm and paid for by bonds sold in England, ran an extraordinary career and threatened to break the blockade. The course followed by the British government, against the protests of the American minister in London, was later regretted. By an award of a tribunal of arbitration at Geneva in 1872, Great Britain was required to pay the huge sum of $15,500,000 to cover the damages wrought by Confederate cruisers fitted out in England. [Illustration: WILLIAM H. SEWARD] In all fairness it should be said that the conduct of the North contributed to the irritation between the two countries. Seward, the Secretary of State, was vindictive in dealing with Great Britain; had it not been for the moderation of Lincoln, he would have pursued a course verging in the direction of open war. The New York and Boston papers were severe in their attacks on England. Words were, on one occasion at least, accompanied by an act savoring of open hostility. In November, 1861, Captain Wilkes, commanding a union vessel, overhauled the British steamer _Trent_, and carried off by force two Confederate agents, Mason and Slidell, sent by President Davis to represent the Confederacy at London and Paris respectively. This was a clear violation of the right of merchant vessels to be immune from search and impressment; and, in answer to the demand of Great Britain for the release of the two men, the United States conceded that it was in the wrong. It surrendered the two Confederate agents to a British vessel for safe conduct abroad, and made appropriate apologies. =Emancipation.=--Among the extreme war measures adopted by the Northern government must be counted the emancipation of the slaves in the states in arms against the union. This step was early and repeatedly suggested to Lincoln by the abolitionists; but was steadily put aside. He knew that the abolitionists were a mere handful, that emancipation might drive the border states into secession, and that the Northern soldiers had enlisted to save the union. Moreover, he had before him a solemn resolution passed by Congress on July 22, 1861, declaring the sole purpose of the war to be the salvation of the union and disavowing any intention of interfering with slavery. The federal government, though pledged to the preservation of slavery, soon found itself beaten back upon its course and out upon a new tack. Before a year had elapsed, namely on April 10, 1862, Congress resolved that financial aid should be given to any state that might adopt gradual emancipation. Six days later it abolished slavery in the District of Columbia. Two short months elapsed. On June 19, 1862, it swept slavery forever from the territories of the United States. Chief Justice Taney still lived, the Dred Scott decision stood as written in the book, but the Constitution had been re-read in the light of the Civil War. The drift of public sentiment in the North was being revealed. While these measures were pending in Congress, Lincoln was slowly making up his mind. By July of that year he had come to his great decision. Near the end of that month he read to his cabinet the draft of a proclamation of emancipation; but he laid it aside until a military achievement would make it something more than an idle gesture. In September, the severe check administered to Lee at Antietam seemed to offer the golden opportunity. On the 22d, the immortal document was given to the world announcing that, unless the states in arms returned to the union by January 1, 1863, the fatal blow at their "peculiar institution" would be delivered. Southern leaders treated it with slight regard, and so on the date set the promise was fulfilled. The proclamation was issued as a war measure, adopted by the President as commander-in-chief of the armed forces, on grounds of military necessity. It did not abolish slavery. It simply emancipated slaves in places then in arms against federal authority. Everywhere else slavery, as far as the Proclamation was concerned, remained lawful. [Illustration: ABRAHAM LINCOLN] To seal forever the proclamation of emancipation, and to extend freedom to the whole country, Congress, in January, 1865, on the urgent recommendation of Lincoln, transmitted to the states the thirteenth amendment, abolishing slavery throughout the United States. By the end of 1865 the amendment was ratified. The house was not divided against itself; it did not fall; it was all free. =The Restraint of Civil Liberty.=--As in all great wars, particularly those in the nature of a civil strife, it was found necessary to use strong measures to sustain opinion favorable to the administration's military policies and to frustrate the designs of those who sought to hamper its action. Within two weeks of his first call for volunteers, Lincoln empowered General Scott to suspend the writ of _habeas corpus_ along the line of march between Philadelphia and Washington and thus to arrest and hold without interference from civil courts any one whom he deemed a menace to the union. At a later date the area thus ruled by military officers was extended by executive proclamation. By an act of March 3, 1863, Congress, desiring to lay all doubts about the President's power, authorized him to suspend the writ throughout the United States or in any part thereof. It also freed military officers from the necessity of surrendering to civil courts persons arrested under their orders, or even making answers to writs issued from such courts. In the autumn of that year the President, acting under the terms of this law, declared this ancient and honorable instrument for the protection of civil liberties, the _habeas corpus_, suspended throughout the length and breadth of the land. The power of the government was also strengthened by an act defining and punishing certain conspiracies, passed on July 31, 1861--a measure which imposed heavy penalties on those who by force, intimidation, or threat interfered with the execution of the law. Thus doubly armed, the military authorities spared no one suspected of active sympathy with the Southern cause. Editors were arrested and imprisoned, their papers suspended, and their newsboys locked up. Those who organized "peace meetings" soon found themselves in the toils of the law. Members of the Maryland legislature, the mayor of Baltimore, and local editors suspected of entertaining secessionist opinions, were imprisoned on military orders although charged with no offense, and were denied the privilege of examination before a civil magistrate. A Vermont farmer, too outspoken in his criticism of the government, found himself behind the bars until the government, in its good pleasure, saw fit to release him. These measures were not confined to the theater of war nor to the border states where the spirit of secession was strong enough to endanger the cause of union. They were applied all through the Northern states up to the very boundaries of Canada. Zeal for the national cause, too often supplemented by a zeal for persecution, spread terror among those who wavered in the singleness of their devotion to the union. These drastic operations on the part of military authorities, so foreign to the normal course of civilized life, naturally aroused intense and bitter hostility. Meetings of protest were held throughout the country. Thirty-six members of the House of Representatives sought to put on record their condemnation of the suspension of the _habeas corpus_ act, only to meet a firm denial by the supporters of the act. Chief Justice Taney, before whom the case of a man arrested under the President's military authority was brought, emphatically declared, in a long and learned opinion bristling with historical examples, that the President had no power to suspend the writ of _habeas corpus_. In Congress and out, Democrats, abolitionists, and champions of civil liberty denounced Lincoln and his Cabinet in unsparing terms. Vallandigham, a Democratic leader of Ohio, afterward banished to the South for his opposition to the war, constantly applied to Lincoln the epithet of "Caesar." Wendell Phillips saw in him "a more unlimited despot than the world knows this side of China." Sensitive to such stinging thrusts and no friend of wanton persecution, Lincoln attempted to mitigate the rigors of the law by paroling many political prisoners. The general policy, however, he defended in homely language, very different in tone and meaning from the involved reasoning of the lawyers. "Must I shoot a simple-minded soldier boy who deserts, while I must not touch a hair of the wily agitator who induces him to desert?" he asked in a quiet way of some spokesmen for those who protested against arresting people for "talking against the war." This summed up his philosophy. He was engaged in a war to save the union, and all measures necessary and proper to accomplish that purpose were warranted by the Constitution which he had sworn to uphold. =Military Strategy--North and South.=--The broad outlines of military strategy followed by the commanders of the opposing forces are clear even to the layman who cannot be expected to master the details of a campaign or, for that matter, the maneuvers of a single great battle. The problem for the South was one of defense mainly, though even for defense swift and paralyzing strokes at the North were later deemed imperative measures. The problem of the North was, to put it baldly, one of invasion and conquest. Southern territory had to be invaded and Southern armies beaten on their own ground or worn down to exhaustion there. In the execution of this undertaking, geography, as usual, played a significant part in the disposition of forces. The Appalachian ranges, stretching through the Confederacy to Northern Alabama, divided the campaigns into Eastern and Western enterprises. Both were of signal importance. Victory in the East promised the capture of the Confederate capital of Richmond, a stroke of moral worth, hardly to be overestimated. Victory in the West meant severing the Confederacy and opening the Mississippi Valley down to the Gulf. As it turned out, the Western forces accomplished their task first, vindicating the military powers of union soldiers and shaking the confidence of opposing commanders. In February, 1862, Grant captured Fort Donelson on the Tennessee River, rallied wavering unionists in Kentucky, forced the evacuation of Nashville, and opened the way for two hundred miles into the Confederacy. At Shiloh, Murfreesboro, Vicksburg, Chickamauga, Chattanooga, desperate fighting followed and, in spite of varying fortunes, it resulted in the discomfiture and retirement of Confederate forces to the Southeast into Georgia. By the middle of 1863, the Mississippi Valley was open to the Gulf, the initiative taken out of the hands of Southern commanders in the West, and the way prepared for Sherman's final stroke--the march from Atlanta to the sea--a maneuver executed with needless severity in the autumn of 1864. [Illustration: GENERAL ULYSSES S. GRANT] [Illustration: GENERAL ROBERT E. LEE] For the almost unbroken succession of achievements in the West by Generals Grant, Sherman, Thomas, and Hooker against Albert Sidney Johnston, Bragg, Pemberton, and Hood, the union forces in the East offered at first an almost equally unbroken series of misfortunes and disasters. Far from capturing Richmond, they had been thrown on the defensive. General after general--McClellan, Pope, Burnside, Hooker, and Meade--was tried and found wanting. None of them could administer a crushing defeat to the Confederate troops and more than once the union soldiers were beaten in a fair battle. They did succeed, however, in delivering a severe check to advancing Confederates under General Robert E. Lee, first at Antietam in September, 1862, and then at Gettysburg in July, 1863--checks reckoned as victories though in each instance the Confederates escaped without demoralization. Not until the beginning of the next year, when General Grant, supplied with almost unlimited men and munitions, began his irresistible hammering at Lee's army, did the final phase of the war commence. The pitiless drive told at last. General Lee, on April 9, 1865, seeing the futility of further conflict, surrendered an army still capable of hard fighting, at Appomattox, not far from the capital of the Confederacy. [Illustration: _Copyright by Underwood and Underwood, N.Y._ THE FEDERAL MILITARY HOSPITAL AT GETTYSBURG] =Abraham Lincoln.=--The services of Lincoln to the cause of union defy description. A judicial scrutiny of the war reveals his thought and planning in every part of the varied activity that finally crowned Northern arms with victory. Is it in the field of diplomacy? Does Seward, the Secretary of State, propose harsh and caustic measures likely to draw England's sword into the scale? Lincoln counsels moderation. He takes the irritating message and with his own hand strikes out, erases, tones down, and interlines, exchanging for words that sting and burn the language of prudence and caution. Is it a matter of compromise with the South, so often proposed by men on both sides sick of carnage? Lincoln is always ready to listen and turns away only when he is invited to surrender principles essential to the safety of the union. Is it high strategy of war, a question of the general best fitted to win Gettysburg--Hooker, Sedgwick, or Meade? Lincoln goes in person to the War Department in the dead of night to take counsel with his Secretary and to make the fateful choice. Is it a complaint from a citizen, deprived, as he believes, of his civil liberties unjustly or in violation of the Constitution? Lincoln is ready to hear it and anxious to afford relief, if warrant can be found for it. Is a mother begging for the life of a son sentenced to be shot as a deserter? Lincoln hears her petition, and grants it even against the protests made by his generals in the name of military discipline. Do politicians sow dissensions in the army and among civilians? Lincoln grandly waves aside their petty personalities and invites them to think of the greater cause. Is it a question of securing votes to ratify the thirteenth amendment abolishing slavery? Lincoln thinks it not beneath his dignity to traffic and huckster with politicians over the trifling jobs asked in return by the members who hold out against him. Does a New York newspaper call him an ignorant Western boor? Lincoln's reply is a letter to a mother who has given her all--her sons on the field of battle--and an address at Gettysburg, both of which will live as long as the tongue in which they were written. These are tributes not only to his mastery of the English language but also to his mastery of all those sentiments of sweetness and strength which are the finest flowers of culture. Throughout the entire span of service, however, Lincoln was beset by merciless critics. The fiery apostles of abolition accused him of cowardice when he delayed the bold stroke at slavery. Anti-war Democrats lashed out at every step he took. Even in his own party he found no peace. Charles Sumner complained: "Our President is now dictator, _imperator_--whichever you like; but how vain to have the power of a god and not to use it godlike." Leaders among the Republicans sought to put him aside in 1864 and place Chase in his chair. "I hope we may never have a worse man," was Lincoln's quiet answer. Wide were the dissensions in the North during that year and the Republicans, while selecting Lincoln as their candidate again, cast off their old name and chose the simple title of the "Union party." Moreover, they selected a Southern man, Andrew Johnson, of Tennessee, to be associated with him as candidate for Vice President. This combination the Northern Democrats boldly confronted with a platform declaring that "after four years of failure to restore the union by the experiment of war, during which, under the pretence of military necessity or war power higher than the Constitution, the Constitution itself has been disregarded in every part and public liberty and private right alike trodden down ... justice, humanity, liberty, and public welfare demand that immediate efforts be made for a cessation of hostilities, to the end that peace may be restored on the basis of the federal union of the states." It is true that the Democratic candidate, General McClellan, sought to break the yoke imposed upon him by the platform, saying that he could not look his old comrades in the face and pronounce their efforts vain; but the party call to the nation to repudiate Lincoln and his works had gone forth. The response came, giving Lincoln 2,200,000 votes against 1,800,000 for his opponent. The bitter things said about him during the campaign, he forgot and forgave. When in April, 1865, he was struck down by the assassin's hand, he above all others in Washington was planning measures of moderation and healing. THE RESULTS OF THE CIVIL WAR There is a strong and natural tendency on the part of writers to stress the dramatic and heroic aspects of war; but the long judgment of history requires us to include all other significant phases as well. Like every great armed conflict, the Civil War outran the purposes of those who took part in it. Waged over the nature of the union, it made a revolution in the union, changing public policies and constitutional principles and giving a new direction to agriculture and industry. =The Supremacy of the Union.=--First and foremost, the war settled for all time the long dispute as to the nature of the federal system. The doctrine of state sovereignty was laid to rest. Men might still speak of the rights of states and think of their commonwealths with affection, but nullification and secession were destroyed. The nation was supreme. =The Destruction of the Slave Power.=--Next to the vindication of national supremacy was the destruction of the planting aristocracy of the South--that great power which had furnished leadership of undoubted ability and had so long contested with the industrial and commercial interests of the North. The first paralyzing blow at the planters was struck by the abolition of slavery. The second and third came with the fourteenth (1868) and fifteenth (1870) amendments, giving the ballot to freedmen and excluding from public office the Confederate leaders--driving from the work of reconstruction the finest talents of the South. As if to add bitterness to gall and wormwood, the fourteenth amendment forbade the United States or any state to pay any debts incurred in aid of the Confederacy or in the emancipation of the slaves--plunging into utter bankruptcy the Southern financiers who had stripped their section of capital to support their cause. So the Southern planters found themselves excluded from public office and ruled over by their former bondmen under the tutelage of Republican leaders. Their labor system was wrecked and their money and bonds were as worthless as waste paper. The South was subject to the North. That which neither the Federalists nor the Whigs had been able to accomplish in the realm of statecraft was accomplished on the field of battle. =The Triumph of Industry.=--The wreck of the planting system was accompanied by a mighty upswing of Northern industry which made the old Whigs of Massachusetts and Pennsylvania stare in wonderment. The demands of the federal government for manufactured goods at unrestricted prices gave a stimulus to business which more than replaced the lost markets of the South. Between 1860 and 1870 the number of manufacturing establishments increased 79.6 per cent as against 14.2 for the previous decade; while the number of persons employed almost doubled. There was no doubt about the future of American industry. =The Victory for the Protective Tariff.=--Moreover, it was henceforth to be well protected. For many years before the war the friends of protection had been on the defensive. The tariff act of 1857 imposed duties so low as to presage a tariff for revenue only. The war changed all that. The extraordinary military expenditures, requiring heavy taxes on all sources, justified tariffs so high that a follower of Clay or Webster might well have gasped with astonishment. After the war was over the debt remained and both interest and principal had to be paid. Protective arguments based on economic reasoning were supported by a plain necessity for revenue which admitted no dispute. =A Liberal Immigration Policy.=--Linked with industry was the labor supply. The problem of manning industries became a pressing matter, and Republican leaders grappled with it. In the platform of the Union party adopted in 1864 it was declared "that foreign immigration, which in the past has added so much to the wealth, the development of resources, and the increase of power to this nation--the asylum of the oppressed of all nations--should be fostered and encouraged by a liberal and just policy." In that very year Congress, recognizing the importance of the problem, passed a measure of high significance, creating a bureau of immigration, and authorizing a modified form of indentured labor, by making it legal for immigrants to pledge their wages in advance to pay their passage over. Though the bill was soon repealed, the practice authorized by it was long continued. The cheapness of the passage shortened the term of service; but the principle was older than the days of William Penn. =The Homestead Act of 1862.=--In the immigration measure guaranteeing a continuous and adequate labor supply, the manufacturers saw an offset to the Homestead Act of 1862 granting free lands to settlers. The Homestead law they had resisted in a long and bitter congressional battle. Naturally, they had not taken kindly to a scheme which lured men away from the factories or enabled them to make unlimited demands for higher wages as the price of remaining. Southern planters likewise had feared free homesteads for the very good reason that they only promised to add to the overbalancing power of the North. In spite of the opposition, supporters of a liberal land policy made steady gains. Free-soil Democrats,--Jacksonian farmers and mechanics,--labor reformers, and political leaders, like Stephen A. Douglas of Illinois and Andrew Johnson of Tennessee, kept up the agitation in season and out. More than once were they able to force a homestead bill through the House of Representatives only to have it blocked in the Senate where Southern interests were intrenched. Then, after the Senate was won over, a Democratic President, James Buchanan, vetoed the bill. Still the issue lived. The Republicans, strong among the farmers of the Northwest, favored it from the beginning and pressed it upon the attention of the country. Finally the manufacturers yielded; they received their compensation in the contract labor law. In 1862 Congress provided for the free distribution of land in 160-acre lots among men and women of strong arms and willing hearts ready to build their serried lines of homesteads to the Rockies and beyond. =Internal Improvements.=--If farmers and manufacturers were early divided on the matter of free homesteads, the same could hardly be said of internal improvements. The Western tiller of the soil was as eager for some easy way of sending his produce to market as the manufacturer was for the same means to transport his goods to the consumer on the farm. While the Confederate leaders were writing into their constitution a clause forbidding all appropriations for internal improvements, the Republican leaders at Washington were planning such expenditures from the treasury in the form of public land grants to railways as would have dazed the authors of the national road bill half a century earlier. =Sound Finance--National Banking.=--From Hamilton's day to Lincoln's, business men in the East had contended for a sound system of national currency. The experience of the states with paper money, painfully impressive in the years before the framing of the Constitution, had been convincing to those who understood the economy of business. The Constitution, as we have seen, bore the signs of this experience. States were forbidden to emit bills of credit: paper money, in short. This provision stood clear in the document; but judicial ingenuity had circumvented it in the age of Jacksonian Democracy. The states had enacted and the Supreme Court, after the death of John Marshall, had sustained laws chartering banking companies and authorizing them to issue paper money. So the country was beset by the old curse, the banks of Western and Southern states issuing reams of paper notes to help borrowers pay their debts. In dealing with war finances, the Republicans attacked this ancient evil. By act of Congress in 1864, they authorized a series of national banks founded on the credit of government bonds and empowered to issue notes. The next year they stopped all bank paper sent forth under the authority of the states by means of a prohibitive tax. In this way, by two measures Congress restored federal control over the monetary system although it did not reestablish the United States Bank so hated by Jacksonian Democracy. =Destruction of States' Rights by Fourteenth Amendment.=--These acts and others not cited here were measures of centralization and consolidation at the expense of the powers and dignity of the states. They were all of high import, but the crowning act of nationalism was the fourteenth amendment which, among other things, forbade states to "deprive any person of life, liberty or property without due process of law." The immediate occasion, though not the actual cause of this provision, was the need for protecting the rights of freedmen against hostile legislatures in the South. The result of the amendment, as was prophesied in protests loud and long from every quarter of the Democratic party, was the subjection of every act of state, municipal, and county authorities to possible annulment by the Supreme Court at Washington. The expected happened. Few negroes ever brought cases under the fourteenth amendment to the attention of the courts; but thousands of state laws, municipal ordinances, and acts of local authorities were set aside as null and void under it. Laws of states regulating railway rates, fixing hours of labor in bakeshops, and taxing corporations were in due time to be annulled as conflicting with an amendment erroneously supposed to be designed solely for the protection of negroes. As centralized power over tariffs, railways, public lands, and other national concerns went to Congress, so centralized power over the acts of state and local authorities involving an infringement of personal and property rights was conferred on the federal judiciary, the apex of which was the Supreme Court at Washington. Thus the old federation of "independent states," all equal in rights and dignity, each wearing the "jewel of sovereignty" so celebrated in Southern oratory, had gone the way of all flesh under the withering blasts of Civil War. RECONSTRUCTION IN THE SOUTH =Theories about the Position of the Seceded States.=--On the morning of April 9, 1865, when General Lee surrendered his army to General Grant, eleven states stood in a peculiar relation to the union now declared perpetual. Lawyers and political philosophers were much perturbed and had been for some time as to what should be done with the members of the former Confederacy. Radical Republicans held that they were "conquered provinces" at the mercy of Congress, to be governed under such laws as it saw fit to enact and until in its wisdom it decided to readmit any or all of them to the union. Men of more conservative views held that, as the war had been waged by the North on the theory that no state could secede from the union, the Confederate states had merely attempted to withdraw and had failed. The corollary of this latter line of argument was simple: "The Southern states are still in the union and it is the duty of the President, as commander-in-chief, to remove the federal troops as soon as order is restored and the state governments ready to function once more as usual." =Lincoln's Proposal.=--Some such simple and conservative form of reconstruction had been suggested by Lincoln in a proclamation of December 8, 1863. He proposed pardon and a restoration of property, except in slaves, to nearly all who had "directly or by implication participated in the existing rebellion," on condition that they take an oath of loyalty to the union. He then announced that when, in any of the states named, a body of voters, qualified under the law as it stood before secession and equal in number to one-tenth the votes cast in 1860, took the oath of allegiance, they should be permitted to reestablish a state government. Such a government, he added, should be recognized as a lawful authority and entitled to protection under the federal Constitution. With reference to the status of the former slaves Lincoln made it clear that, while their freedom must be recognized, he would not object to any legislation "which may yet be consistent as a temporary arrangement with their present condition as a laboring, landless, and homeless class." =Andrew Johnson's Plan--His Impeachment.=--Lincoln's successor, Andrew Johnson, the Vice President, soon after taking office, proposed to pursue a somewhat similar course. In a number of states he appointed military governors, instructing them at the earliest possible moment to assemble conventions, chosen "by that portion of the people of the said states who are loyal to the United States," and proceed to the organization of regular civil government. Johnson, a Southern man and a Democrat, was immediately charged by the Republicans with being too ready to restore the Southern states. As the months went by, the opposition to his measures and policies in Congress grew in size and bitterness. The contest resulted in the impeachment of Johnson by the House of Representatives in March, 1868, and his acquittal by the Senate merely because his opponents lacked one vote of the two-thirds required for conviction. =Congress Enacts "Reconstruction Laws."=--In fact, Congress was in a strategic position. It was the law-making body, and it could, moreover, determine the conditions under which Senators and Representatives from the South were to be readmitted. It therefore proceeded to pass a series of reconstruction acts--carrying all of them over Johnson's veto. These measures, the first of which became a law on March 2, 1867, betrayed an animus not found anywhere in Lincoln's plans or Johnson's proclamations. They laid off the ten states--the whole Confederacy with the exception of Tennessee--still outside the pale, into five military districts, each commanded by a military officer appointed by the President. They ordered the commanding general to prepare a register of voters for the election of delegates to conventions chosen for the purpose of drafting new constitutions. Such voters, however, were not to be, as Lincoln had suggested, loyal persons duly qualified under the law existing before secession but "the male citizens of said state, twenty-one years old and upward, of whatever race, color, or previous condition, ... except such as may be disfranchised for participation in the rebellion or for felony at common law." This was the death knell to the idea that the leaders of the Confederacy and their white supporters might be permitted to share in the establishment of the new order. Power was thus arbitrarily thrust into the hands of the newly emancipated male negroes and the handful of whites who could show a record of loyalty. That was not all. Each state was, under the reconstruction acts, compelled to ratify the fourteenth amendment to the federal Constitution as a price of restoration to the union. The composition of the conventions thus authorized may be imagined. Bondmen without the asking and without preparation found themselves the governing power. An army of adventurers from the North, "carpet baggers" as they were called, poured in upon the scene to aid in "reconstruction." Undoubtedly many men of honor and fine intentions gave unstinted service, but the results of their deliberations only aggravated the open wound left by the war. Any number of political doctors offered their prescriptions; but no effective remedy could be found. Under measures admittedly open to grave objections, the Southern states were one after another restored to the union by the grace of Congress, the last one in 1870. Even this grudging concession of the formalities of statehood did not mean a full restoration of honors and privileges. The last soldier was not withdrawn from the last Southern capital until 1877, and federal control over elections long remained as a sign of congressional supremacy. =The Status of the Freedmen.=--Even more intricate than the issues involved in restoring the seceded states to the union was the question of what to do with the newly emancipated slaves. That problem, often put to abolitionists before the war, had become at last a real concern. The thirteenth amendment abolishing slavery had not touched it at all. It declared bondmen free, but did nothing to provide them with work or homes and did not mention the subject of political rights. All these matters were left to the states, and the legislatures of some of them, by their famous "black codes," restored a form of servitude under the guise of vagrancy and apprentice laws. Such methods were in fact partly responsible for the reaction that led Congress to abandon Lincoln's policies and undertake its own program of reconstruction. Still no extensive effort was made to solve by law the economic problems of the bondmen. Radical abolitionists had advocated that the slaves when emancipated should be given outright the fields of their former masters; but Congress steadily rejected the very idea of confiscation. The necessity of immediate assistance it recognized by creating in 1865 the Freedmen's Bureau to take care of refugees. It authorized the issue of food and clothing to the destitute and the renting of abandoned and certain other lands under federal control to former slaves at reasonable rates. But the larger problem of the relation of the freedmen to the land, it left to the slow working of time. Against sharp protests from conservative men, particularly among the Democrats, Congress did insist, however, on conferring upon the freedmen certain rights by national law. These rights fell into broad divisions, civil and political. By an act passed in 1866, Congress gave to former slaves the rights of white citizens in the matter of making contracts, giving testimony in courts, and purchasing, selling, and leasing property. As it was doubtful whether Congress had the power to enact this law, there was passed and submitted to the states the fourteenth amendment which gave citizenship to the freedmen, assured them of the privileges and immunities of citizens of the United States, and declared that no state should deprive any person of his life, liberty, or property without due process of law. Not yet satisfied, Congress attempted to give social equality to negroes by the second civil rights bill of 1875 which promised to them, among other things, the full and equal enjoyment of inns, theaters, public conveyances, and places of amusement--a law later declared unconstitutional by the Supreme Court. The matter of political rights was even more hotly contested; but the radical Republicans, like Charles Sumner, asserted that civil rights were not secure unless supported by the suffrage. In this same fourteenth amendment they attempted to guarantee the ballot to all negro men, leaving the women to take care of themselves. The amendment declared in effect that when any state deprived adult male citizens of the right to vote, its representation in Congress should be reduced in the proportion such persons bore to the voting population. This provision having failed to accomplish its purpose, the fifteenth amendment was passed and ratified, expressly declaring that no citizen should be deprived of the right to vote "on account of race, color, or previous condition of servitude." To make assurance doubly secure, Congress enacted in 1870, 1872, and 1873 three drastic laws, sometimes known as "force bills," providing for the use of federal authorities, civil and military, in supervising elections in all parts of the Union. So the federal government, having destroyed chattel slavery, sought by legal decree to sweep away all its signs and badges, civil, social, and political. Never, save perhaps in some of the civil conflicts of Greece or Rome, had there occurred in the affairs of a nation a social revolution so complete, so drastic, and far-reaching in its results. SUMMARY OF THE SECTIONAL CONFLICT Just as the United States, under the impetus of Western enterprise, rounded out the continental domain, its very existence as a nation was challenged by a fratricidal conflict between two sections. This storm had been long gathering upon the horizon. From the very beginning in colonial times there had been a marked difference between the South and the North. The former by climate and soil was dedicated to a planting system--the cultivation of tobacco, rice, cotton, and sugar cane--and in the course of time slave labor became the foundation of the system. The North, on the other hand, supplemented agriculture by commerce, trade, and manufacturing. Slavery, though lawful, did not flourish there. An abundant supply of free labor kept the Northern wheels turning. This difference between the two sections, early noted by close observers, was increased with the advent of the steam engine and the factory system. Between 1815 and 1860 an industrial revolution took place in the North. Its signs were gigantic factories, huge aggregations of industrial workers, immense cities, a flourishing commerce, and prosperous banks. Finding an unfavorable reception in the South, the new industrial system was confined mainly to the North. By canals and railways New York, Boston, and Philadelphia were linked with the wheatfields of Ohio, Indiana, and Illinois. A steel net wove North and Northwest together. A commercial net supplemented it. Western trade was diverted from New Orleans to the East and Eastern credit sustained Western enterprise. In time, the industrial North and the planting South evolved different ideas of political policy. The former looked with favor on protective tariffs, ship subsidies, a sound national banking system, and internal improvements. The farmers of the West demanded that the public domain be divided up into free homesteads for farmers. The South steadily swung around to the opposite view. Its spokesmen came to regard most of these policies as injurious to the planting interests. The economic questions were all involved in a moral issue. The Northern states, in which slavery was of slight consequence, had early abolished the institution. In the course of a few years there appeared uncompromising advocates of universal emancipation. Far and wide the agitation spread. The South was thoroughly frightened. It demanded protection against the agitators, the enforcement of its rights in the case of runaway slaves, and equal privileges for slavery in the new territories. With the passing years the conflict between the two sections increased in bitterness. It flamed up in 1820 and was allayed by the Missouri compromise. It took on the form of a tariff controversy and nullification in 1832. It appeared again after the Mexican war when the question of slavery in the new territories was raised. Again compromise--the great settlement of 1850--seemed to restore peace, only to prove an illusion. A series of startling events swept the country into war: the repeal of the Missouri compromise in 1854, the rise of the Republican party pledged to the prohibition of slavery in the territories, the Dred Scott decision of 1857, the Lincoln-Douglas debates, John Brown's raid, the election of Lincoln, and secession. The Civil War, lasting for four years, tested the strength of both North and South, in leadership, in finance, in diplomatic skill, in material resources, in industry, and in armed forces. By the blockade of Southern ports, by an overwhelming weight of men and materials, and by relentless hammering on the field of battle, the North was victorious. The results of the war were revolutionary in character. Slavery was abolished and the freedmen given the ballot. The Southern planters who had been the leaders of their section were ruined financially and almost to a man excluded from taking part in political affairs. The union was declared to be perpetual and the right of a state to secede settled by the judgment of battle. Federal control over the affairs of states, counties, and cities was established by the fourteenth amendment. The power and prestige of the federal government were enhanced beyond imagination. The North was now free to pursue its economic policies: a protective tariff, a national banking system, land grants for railways, free lands for farmers. Planting had dominated the country for nearly a generation. Business enterprise was to take its place. =References= NORTHERN ACCOUNTS J.K. Hosmer, _The Appeal to Arms_ and _The Outcome of the Civil War_ (American Nation Series). J. Ropes, _History of the Civil War_ (best account of military campaigns). J.F. Rhodes, _History of the United States_, Vols. III, IV, and V. J.T. Morse, _Abraham Lincoln_ (2 vols.). SOUTHERN ACCOUNTS W.E. Dodd, _Jefferson Davis_. Jefferson Davis, _Rise and Fall of the Confederate Government_. E. Pollard, _The Lost Cause_. A.H. Stephens, _The War between the States_. =Questions= 1. Contrast the reception of secession in 1860 with that given to nullification in 1832. 2. Compare the Northern and Southern views of the union. 3. What were the peculiar features of the Confederate constitution? 4. How was the Confederacy financed? 5. Compare the resources of the two sections. 6. On what foundations did Southern hopes rest? 7. Describe the attempts at a peaceful settlement. 8. Compare the raising of armies for the Civil War with the methods employed in the World War. (See below, chapter XXV.) 9. Compare the financial methods of the government in the two wars. 10. Explain why the blockade was such a deadly weapon. 11. Give the leading diplomatic events of the war. 12. Trace the growth of anti-slavery sentiment. 13. What measures were taken to restrain criticism of the government? 14. What part did Lincoln play in all phases of the war? 15. State the principal results of the war. 16. Compare Lincoln's plan of reconstruction with that adopted by Congress. 17. What rights did Congress attempt to confer upon the former slaves? =Research Topics= =Was Secession Lawful?=--The Southern view by Jefferson Davis in Harding, _Select Orations Illustrating American History_, pp. 364-369. Lincoln's view, Harding, pp. 371-381. =The Confederate Constitution.=--Compare with the federal Constitution in Macdonald, _Documentary Source Book_, pp. 424-433 and pp. 271-279. =Federal Legislative Measures.=--Prepare a table and brief digest of the important laws relating to the war. Macdonald, pp. 433-482. =Economic Aspects of the War.=--Coman, _Industrial History of the United States_, pp. 279-301. Dewey, _Financial History of the United States_, Chaps. XII and XIII. Tabulate the economic measures of Congress in Macdonald. =Military Campaigns.=--The great battles are fully treated in Rhodes, _History of the Civil War_, and teachers desiring to emphasize military affairs may assign campaigns to members of the class for study and report. A briefer treatment in Elson, _History of the United States_, pp. 641-785. =Biographical Studies.=--Lincoln, Davis, Lee, Grant, Sherman, and other leaders in civil and military affairs, with reference to local "war governors." =English and French Opinion of the War.=--Rhodes, _History of the United States_, Vol. IV, pp. 337-394. =The South during the War.=--Rhodes, Vol. V, pp. 343-382. =The North during the War.=--Rhodes, Vol. V, pp. 189-342. =Reconstruction Measures.=--Macdonald, _Source Book_, pp. 500-511; 514-518; 529-530; Elson, pp. 786-799. =The Force Bills.=--Macdonald, pp. 547-551; 554-564. PART VI. NATIONAL GROWTH AND WORLD POLITICS CHAPTER XVI THE POLITICAL AND ECONOMIC EVOLUTION OF THE SOUTH The outcome of the Civil War in the South was nothing short of a revolution. The ruling class, the law, and the government of the old order had been subverted. To political chaos was added the havoc wrought in agriculture, business, and transportation by military operations. And as if to fill the cup to the brim, the task of reconstruction was committed to political leaders from another section of the country, strangers to the life and traditions of the South. THE SOUTH AT THE CLOSE OF THE WAR =A Ruling Class Disfranchised.=--As the sovereignty of the planters had been the striking feature of the old regime, so their ruin was the outstanding fact of the new. The situation was extraordinary. The American Revolution was carried out by people experienced in the arts of self-government, and at its close they were free to follow the general course to which they had long been accustomed. The French Revolution witnessed the overthrow of the clergy and the nobility; but middle classes who took their places had been steadily rising in intelligence and wealth. The Southern Revolution was unlike either of these cataclysms. It was not brought about by a social upheaval, but by an external crisis. It did not enfranchise a class that sought and understood power, but bondmen who had played no part in the struggle. Moreover it struck down a class equipped to rule. The leading planters were almost to a man excluded from state and federal offices, and the fourteenth amendment was a bar to their return. All civil and military places under the authority of the United States and of the states were closed to every man who had taken an oath to support the Constitution as a member of Congress, as a state legislator, or as a state or federal officer, and afterward engaged in "insurrection or rebellion," or "given aid and comfort to the enemies" of the United States. This sweeping provision, supplemented by the reconstruction acts, laid under the ban most of the talent, energy, and spirit of the South. =The Condition of the State Governments.=--The legislative, executive, and judicial branches of the state governments thus passed into the control of former slaves, led principally by Northern adventurers or Southern novices, known as "Scalawags." The result was a carnival of waste, folly, and corruption. The "reconstruction" assembly of South Carolina bought clocks at $480 apiece and chandeliers at $650. To purchase land for former bondmen the sum of $800,000 was appropriated; and swamps bought at seventy-five cents an acre were sold to the state at five times the cost. In the years between 1868 and 1873, the debt of the state rose from about $5,800,000 to $24,000,000, and millions of the increase could not be accounted for by the authorities responsible for it. =Economic Ruin--Urban and Rural.=--No matter where Southern men turned in 1865 they found devastation--in the towns, in the country, and along the highways. Atlanta, the city to which Sherman applied the torch, lay in ashes; Nashville and Chattanooga had been partially wrecked; Richmond and Augusta had suffered severely from fires. Charleston was described by a visitor as "a city of ruins, of desolation, of vacant houses, of rotten wharves, of deserted warehouses, of weed gardens, of miles of grass-grown streets.... How few young men there are, how generally the young women are dressed in black! The flower of their proud aristocracy is buried on scores of battle fields." Those who journeyed through the country about the same time reported desolation equally widespread and equally pathetic. An English traveler who made his way along the course of the Tennessee River in 1870 wrote: "The trail of war is visible throughout the valley in burnt-up gin houses, ruined bridges, mills, and factories ... and large tracts of once cultivated land are stripped of every vestige of fencing. The roads, long neglected, are in disorder and, having in many places become impassable, new tracks have been made through the woods and fields without much respect to boundaries." Many a great plantation had been confiscated by the federal authorities while the owner was in Confederate service. Many more lay in waste. In the wake of the armies the homes of rich and poor alike, if spared the torch, had been despoiled of the stock and seeds necessary to renew agriculture. =Railways Dilapidated.=--Transportation was still more demoralized. This is revealed in the pages of congressional reports based upon first-hand investigations. One eloquent passage illustrates all the rest. From Pocahontas to Decatur, Alabama, a distance of 114 miles, we are told, the railroad was "almost entirely destroyed, except the road bed and iron rails, and they were in a very bad condition--every bridge and trestle destroyed, cross-ties rotten, buildings burned, water tanks gone, tracks grown up in weeds and bushes, not a saw mill near the line and the labor system of the country gone. About forty miles of the track were burned, the cross-ties entirely destroyed, and the rails bent and twisted in such a manner as to require great labor to straighten and a large portion of them requiring renewal." =Capital and Credit Destroyed.=--The fluid capital of the South, money and credit, was in the same prostrate condition as the material capital. The Confederate currency, inflated to the bursting point, had utterly collapsed and was as worthless as waste paper. The bonds of the Confederate government were equally valueless. Specie had nearly disappeared from circulation. The fourteenth amendment to the federal Constitution had made all "debts, obligations, and claims" incurred in aid of the Confederate cause "illegal and void." Millions of dollars owed to Northern creditors before the war were overdue and payment was pressed upon the debtors. Where such debts were secured by mortgages on land, executions against the property could be obtained in federal courts. THE RESTORATION OF WHITE SUPREMACY =Intimidation.=--In both politics and economics, the process of reconstruction in the South was slow and arduous. The first battle in the political contest for white supremacy was won outside the halls of legislatures and the courts of law. It was waged, in the main, by secret organizations, among which the Ku Klux Klan and the White Camelia were the most prominent. The first of these societies appeared in Tennessee in 1866 and held its first national convention the following year. It was in origin a social club. According to its announcement, its objects were "to protect the weak, the innocent, and the defenceless from the indignities, wrongs, and outrages of the lawless, the violent, and the brutal; and to succor the suffering, especially the widows and orphans of the Confederate soldiers." The whole South was called "the Empire" and was ruled by a "Grand Wizard." Each state was a realm and each county a province. In the secret orders there were enrolled over half a million men. The methods of the Ku Klux and the White Camelia were similar. Solemn parades of masked men on horses decked in long robes were held, sometimes in the daytime and sometimes at the dead of night. Notices were sent to obnoxious persons warning them to stop certain practices. If warning failed, something more convincing was tried. Fright was the emotion most commonly stirred. A horseman, at the witching hour of midnight, would ride up to the house of some offender, lift his head gear, take off a skull, and hand it to the trembling victim with the request that he hold it for a few minutes. Frequently violence was employed either officially or unofficially by members of the Klan. Tar and feathers were freely applied; the whip was sometimes laid on unmercifully, and occasionally a brutal murder was committed. Often the members were fired upon from bushes or behind trees, and swift retaliation followed. So alarming did the clashes become that in 1870 Congress forbade interference with electors or going in disguise for the purpose of obstructing the exercise of the rights enjoyed under federal law. In anticipation of such a step on the part of the federal government, the Ku Klux was officially dissolved by the "Grand Wizard" in 1869. Nevertheless, the local societies continued their organization and methods. The spirit survived the national association. "On the whole," says a Southern writer, "it is not easy to see what other course was open to the South.... Armed resistance was out of the question. And yet there must be some control had of the situation.... If force was denied, craft was inevitable." =The Struggle for the Ballot Box.=--The effects of intimidation were soon seen at elections. The freedman, into whose inexperienced hand the ballot had been thrust, was ordinarily loath to risk his head by the exercise of his new rights. He had not attained them by a long and laborious contest of his own and he saw no urgent reason why he should battle for the privilege of using them. The mere show of force, the mere existence of a threat, deterred thousands of ex-slaves from appearing at the polls. Thus the whites steadily recovered their dominance. Nothing could prevent it. Congress enacted force bills establishing federal supervision of elections and the Northern politicians protested against the return of former Confederates to practical, if not official, power; but all such opposition was like resistance to the course of nature. =Amnesty for Southerners.=--The recovery of white supremacy in this way was quickly felt in national councils. The Democratic party in the North welcomed it as a sign of its return to power. The more moderate Republicans, anxious to heal the breach in American unity, sought to encourage rather than to repress it. So it came about that amnesty for Confederates was widely advocated. Yet it must be said that the struggle for the removal of disabilities was stubborn and bitter. Lincoln, with characteristic generosity, in the midst of the war had issued a general proclamation of amnesty to nearly all who had been in arms against the Union, on condition that they take an oath of loyalty; but Johnson, vindictive toward Southern leaders and determined to make "treason infamous," had extended the list of exceptions. Congress, even more relentless in its pursuit of Confederates, pushed through the fourteenth amendment which worked the sweeping disabilities we have just described. To appeals for comprehensive clemency, Congress was at first adamant. In vain did men like Carl Schurz exhort their colleagues to crown their victory in battle with a noble act of universal pardon and oblivion. Congress would not yield. It would grant amnesty in individual cases; for the principle of proscription it stood fast. When finally in 1872, seven years after the surrender at Appomattox, it did pass the general amnesty bill, it insisted on certain exceptions. Confederates who had been members of Congress just before the war, or had served in other high posts, civil or military, under the federal government, were still excluded from important offices. Not until the summer of 1898, when the war with Spain produced once more a union of hearts, did Congress relent and abolish the last of the disabilities imposed on the Confederates. =The Force Bills Attacked and Nullified.=--The granting of amnesty encouraged the Democrats to redouble their efforts all along the line. In 1874 they captured the House of Representatives and declared war on the "force bills." As a Republican Senate blocked immediate repeal, they resorted to an ingenious parliamentary trick. To the appropriation bill for the support of the army they attached a "rider," or condition, to the effect that no troops should be used to sustain the Republican government in Louisiana. The Senate rejected the proposal. A deadlock ensued and Congress adjourned without making provision for the army. Satisfied with the technical victory, the Democrats let the army bill pass the next session, but kept up their fight on the force laws until they wrung from President Hayes a measure forbidding the use of United States troops in supervising elections. The following year they again had recourse to a rider on the army bill and carried it through, putting an end to the use of money for military control of elections. The reconstruction program was clearly going to pieces, and the Supreme Court helped along the process of dissolution by declaring parts of the laws invalid. In 1878 the Democrats even won a majority in the Senate and returned to power a large number of men once prominent in the Confederate cause. The passions of the war by this time were evidently cooling. A new generation of men was coming on the scene. The supremacy of the whites in the South, if not yet complete, was at least assured. Federal marshals, their deputies, and supervisors of elections still possessed authority over the polls, but their strength had been shorn by the withdrawal of United States troops. The war on the remaining remnants of the "force bills" lapsed into desultory skirmishing. When in 1894 the last fragment was swept away, the country took little note of the fact. The only task that lay before the Southern leaders was to write in the constitutions of their respective states the provisions of law which would clinch the gains so far secured and establish white supremacy beyond the reach of outside intervention. =White Supremacy Sealed by New State Constitutions.=--The impetus to this final step was given by the rise of the Populist movement in the South, which sharply divided the whites and in many communities threw the balance of power into the hands of the few colored voters who survived the process of intimidation. Southern leaders now devised new constitutions so constructed as to deprive negroes of the ballot by law. Mississippi took the lead in 1890; South Carolina followed five years later; Louisiana, in 1898; North Carolina, in 1900; Alabama and Maryland, in 1901; and Virginia, in 1902. The authors of these measures made no attempt to conceal their purposes. "The intelligent white men of the South," said Governor Tillman, "intend to govern here." The fifteenth amendment to the federal Constitution, however, forbade them to deprive any citizen of the right to vote on account of race, color, or previous condition of servitude. This made necessary the devices of indirection. They were few, simple, and effective. The first and most easily administered was the ingenious provision requiring each prospective voter to read a section of the state constitution or "understand and explain it" when read to him by the election officers. As an alternative, the payment of taxes or the ownership of a small amount of property was accepted as a qualification for voting. Southern leaders, unwilling to disfranchise any of the poor white men who had stood side by side with them "in the dark days of reconstruction," also resorted to a famous provision known as "the grandfather clause." This plan admitted to the suffrage any man who did not have either property or educational qualifications, provided he had voted on or before 1867 or was the son or grandson of any such person. The devices worked effectively. Of the 147,000 negroes in Mississippi above the age of twenty-one, only about 8600 registered under the constitution of 1890. Louisiana had 127,000 colored voters enrolled in 1896; under the constitution drafted two years later the registration fell to 5300. An analysis of the figures for South Carolina in 1900 indicates that only about one negro out of every hundred adult males of that race took part in elections. Thus was closed this chapter of reconstruction. =The Supreme Court Refuses to Intervene.=--Numerous efforts were made to prevail upon the Supreme Court of the United States to declare such laws unconstitutional; but the Court, usually on technical grounds, avoided coming to a direct decision on the merits of the matter. In one case the Court remarked that it could not take charge of and operate the election machinery of Alabama; it concluded that "relief from a great political wrong, if done as alleged, by the people of a state and by the state itself, must be given by them, or by the legislative and executive departments of the government of the United States." Only one of the several schemes employed, namely, the "grandfather clause," was held to be a violation of the federal Constitution. This blow, effected in 1915 by the decision in the Oklahoma and Maryland cases, left, however, the main structure of disfranchisement unimpaired. =Proposals to Reduce Southern Representation in Congress.=--These provisions excluding thousands of male citizens from the ballot did not, in express terms, deprive any one of the vote on account of race or color. They did not, therefore, run counter to the letter of the fifteenth amendment; but they did unquestionably make the states which adopted them liable to the operations of the fourteenth amendment. The latter very explicitly provides that whenever any state deprives adult male citizens of the right to vote (except in certain minor cases) the representation of the state in Congress shall be reduced in the proportion which such number of disfranchised citizens bears to the whole number of male citizens over twenty-one years of age. Mindful of this provision, those who protested against disfranchisement in the South turned to the Republican party for relief, asking for action by the political branches of the federal government as the Supreme Court had suggested. The Republicans responded in their platform of 1908 by condemning all devices designed to deprive any one of the ballot for reasons of color alone; they demanded the enforcement in letter and spirit of the fourteenth as well as all other amendments. Though victorious in the election, the Republicans refrained from reopening the ancient contest; they made no attempt to reduce Southern representation in the House. Southern leaders, while protesting against the declarations of their opponents, were able to view them as idle threats in no way endangering the security of the measures by which political reconstruction had been undone. =The Solid South.=--Out of the thirty-year conflict against "carpet-bag rule" there emerged what was long known as the "solid South"--a South that, except occasionally in the border states, never gave an electoral vote to a Republican candidate for President. Before the Civil War, the Southern people had been divided on political questions. Take, for example, the election of 1860. In all the fifteen slave states the variety of opinion was marked. In nine of them--Delaware, Virginia, Tennessee, Missouri, Maryland, Louisiana, Kentucky, Georgia, and Arkansas--the combined vote against the representative of the extreme Southern point of view, Breckinridge, constituted a safe majority. In each of the six states which were carried by Breckinridge, there was a large and powerful minority. In North Carolina Breckinridge's majority over Bell and Douglas was only 849 votes. Equally astounding to those who imagine the South united in defense of extreme views in 1860 was the vote for Bell, the Unionist candidate, who stood firmly for the Constitution and silence on slavery. In every Southern state Bell's vote was large. In Virginia, Kentucky, Missouri, and Tennessee it was greater than that received by Breckinridge; in Georgia, it was 42,000 against 51,000; in Louisiana, 20,000 against 22,000; in Mississippi, 25,000 against 40,000. The effect of the Civil War upon these divisions was immediate and decisive, save in the border states where thousands of men continued to adhere to the cause of Union. In the Confederacy itself nearly all dissent was silenced by war. Men who had been bitter opponents joined hands in defense of their homes; when the armed conflict was over they remained side by side working against "Republican misrule and negro domination." By 1890, after Northern supremacy was definitely broken, they boasted that there were at least twelve Southern states in which no Republican candidate for President could win a single electoral vote. =Dissent in the Solid South.=--Though every one grew accustomed to speak of the South as "solid," it did not escape close observers that in a number of Southern states there appeared from time to time a fairly large body of dissenters. In 1892 the Populists made heavy inroads upon the Democratic ranks. On other occasions, the contests between factions within the Democratic party over the nomination of candidates revealed sharp differences of opinion. In some places, moreover, there grew up a Republican minority of respectable size. For example, in Georgia, Mr. Taft in 1908 polled 41,000 votes against 72,000 for Mr. Bryan; in North Carolina, 114,000 against 136,000; in Tennessee, 118,000 against 135,000; in Kentucky, 235,000 against 244,000. In 1920, Senator Harding, the Republican candidate, broke the record by carrying Tennessee as well as Kentucky, Oklahoma, and Maryland. THE ECONOMIC ADVANCE OF THE SOUTH =The Break-up of the Great Estates.=--In the dissolution of chattel slavery it was inevitable that the great estate should give way before the small farm. The plantation was in fact founded on slavery. It was continued and expanded by slavery. Before the war the prosperous planter, either by inclination or necessity, invested his surplus in more land to add to his original domain. As his slaves increased in number, he was forced to increase his acreage or sell them, and he usually preferred the former, especially in the Far South. Still another element favored the large estate. Slave labor quickly exhausted the soil and of its own force compelled the cutting of the forests and the extension of the area under cultivation. Finally, the planter took a natural pride in his great estate; it was a sign of his prowess and his social prestige. In 1865 the foundations of the planting system were gone. It was difficult to get efficient labor to till the vast plantations. The planters themselves were burdened with debts and handicapped by lack of capital. Negroes commonly preferred tilling plots of their own, rented or bought under mortgage, to the more irksome wage labor under white supervision. The land hunger of the white farmer, once checked by the planting system, reasserted itself. Before these forces the plantation broke up. The small farm became the unit of cultivation in the South as in the North. Between 1870 and 1900 the number of farms doubled in every state south of the line of the Potomac and Ohio rivers, except in Arkansas and Louisiana. From year to year the process of breaking up continued, with all that it implied in the creation of land-owning farmers. =The Diversification of Crops.=--No less significant was the concurrent diversification of crops. Under slavery, tobacco, rice, and sugar were staples and "cotton was king." These were standard crops. The methods of cultivation were simple and easily learned. They tested neither the skill nor the ingenuity of the slaves. As the returns were quick, they did not call for long-time investments of capital. After slavery was abolished, they still remained the staples, but far-sighted agriculturists saw the dangers of depending upon a few crops. The mild climate all the way around the coast from Virginia to Texas and the character of the alluvial soil invited the exercise of more imagination. Peaches, oranges, peanuts, and other fruits and vegetables were found to grow luxuriantly. Refrigeration for steamships and freight cars put the markets of great cities at the doors of Southern fruit and vegetable gardeners. The South, which in planting days had relied so heavily upon the Northwest for its foodstuffs, began to battle for independence. Between 1880 and the close of the century the value of its farm crops increased from $660,000,000 to $1,270,000,000. =The Industrial and Commercial Revolution.=--On top of the radical changes in agriculture came an industrial and commercial revolution. The South had long been rich in natural resources, but the slave system had been unfavorable to their development. Rivers that would have turned millions of spindles tumbled unheeded to the seas. Coal and iron beds lay unopened. Timber was largely sacrificed in clearing lands for planting, or fell to earth in decay. Southern enterprise was consumed in planting. Slavery kept out the white immigrants who might have supplied the skilled labor for industry. [Illustration: _Copyright by Underwood and Underwood, N.Y._ STEEL MILLS--BIRMINGHAM, ALABAMA] After 1865, achievement and fortune no longer lay on the land alone. As soon as the paralysis of the war was over, the South caught the industrial spirit that had conquered feudal Europe and the agricultural North. In the development of mineral wealth, enormous strides were taken. Iron ore of every quality was found, the chief beds being in Virginia, West Virginia, Tennessee, Kentucky, North Carolina, Georgia, Alabama, Arkansas, and Texas. Five important coal basins were uncovered: in Virginia, North Carolina, the Appalachian chain from Maryland to Northern Alabama, Kentucky, Arkansas, and Texas. Oil pools were found in Kentucky, Tennessee, and Texas. Within two decades, 1880 to 1900, the output of mineral wealth multiplied tenfold: from ten millions a year to one hundred millions. The iron industries of West Virginia and Alabama began to rival those of Pennsylvania. Birmingham became the Pittsburgh and Atlanta the Chicago of the South. [Illustration: _Copyright by Underwood and Underwood, N.Y._ A SOUTHERN COTTON MILL IN A COTTON FIELD] In other lines of industry, lumbering and cotton manufacturing took a high rank. The development of Southern timber resources was in every respect remarkable, particularly in Louisiana, Arkansas, and Mississippi. At the end of the first decade of the twentieth century, primacy in lumber had passed from the Great Lakes region to the South. In 1913 eight Southern states produced nearly four times as much lumber as the Lake states and twice as much as the vast forests of Washington and Oregon. The development of the cotton industry, in the meantime, was similarly astounding. In 1865 cotton spinning was a negligible matter in the Southern states. In 1880 they had one-fourth of the mills of the country. At the end of the century they had one-half the mills, the two Carolinas taking the lead by consuming more than one-third of their entire cotton crop. Having both the raw materials and the power at hand, they enjoyed many advantages over the New England rivals, and at the opening of the new century were outstripping the latter in the proportion of spindles annually put into operation. Moreover, the cotton planters, finding a market at the neighboring mills, began to look forward to a day when they would be somewhat emancipated from absolute dependence upon the cotton exchanges of New York, New Orleans, and Liverpool. Transportation kept pace with industry. In 1860, the South had about ten thousand miles of railway. By 1880 the figure had doubled. During the next twenty years over thirty thousand miles were added, most of the increase being in Texas. About 1898 there opened a period of consolidation in which scores of short lines were united, mainly under the leadership of Northern capitalists, and new through service opened to the North and West. Thus Southern industries were given easy outlets to the markets of the nation and brought within the main currents of national business enterprise. =The Social Effects of the Economic Changes.=--As long as the slave system lasted and planting was the major interest, the South was bound to be sectional in character. With slavery gone, crops diversified, natural resources developed, and industries promoted, the social order of the ante-bellum days inevitably dissolved; the South became more and more assimilated to the system of the North. In this process several lines of development are evident. In the first place we see the steady rise of the small farmer. Even in the old days there had been a large class of white yeomen who owned no slaves and tilled the soil with their own hands, but they labored under severe handicaps. They found the fertile lands of the coast and river valleys nearly all monopolized by planters, and they were by the force of circumstances driven into the uplands where the soil was thin and the crops were light. Still they increased in numbers and zealously worked their freeholds. The war proved to be their opportunity. With the break-up of the plantations, they managed to buy land more worthy of their plows. By intelligent labor and intensive cultivation they were able to restore much of the worn-out soil to its original fertility. In the meantime they rose with their prosperity in the social and political scale. It became common for the sons of white farmers to enter the professions, while their daughters went away to college and prepared for teaching. Thus a more democratic tone was given to the white society of the South. Moreover the migration to the North and West, which had formerly carried thousands of energetic sons and daughters to search for new homesteads, was materially reduced. The energy of the agricultural population went into rehabilitation. The increase in the number of independent farmers was accompanied by the rise of small towns and villages which gave diversity to the life of the South. Before 1860 it was possible to travel through endless stretches of cotton and tobacco. The social affairs of the planter's family centered in the homestead even if they were occasionally interrupted by trips to distant cities or abroad. Carpentry, bricklaying, and blacksmithing were usually done by slaves skilled in simple handicrafts. Supplies were bought wholesale. In this way there was little place in plantation economy for villages and towns with their stores and mechanics. The abolition of slavery altered this. Small farms spread out where plantations had once stood. The skilled freedmen turned to agriculture rather than to handicrafts; white men of a business or mechanical bent found an opportunity to serve the needs of their communities. So local merchants and mechanics became an important element in the social system. In the county seats, once dominated by the planters, business and professional men assumed the leadership. Another vital outcome of this revolution was the transference of a large part of planting enterprise to business. Mr. Bruce, a Southern historian of fine scholarship, has summed up this process in a single telling paragraph: "The higher planting class that under the old system gave so much distinction to rural life has, so far as it has survived at all, been concentrated in the cities. The families that in the time of slavery would have been found only in the country are now found, with a few exceptions, in the towns. The transplantation has been practically universal. The talent, the energy, the ambition that formerly sought expression in the management of great estates and the control of hosts of slaves, now seek a field of action in trade, in manufacturing enterprises, or in the general enterprises of development. This was for the ruling class of the South the natural outcome of the great economic revolution that followed the war." As in all other parts of the world, the mechanical revolution was attended by the growth of a population of industrial workers dependent not upon the soil but upon wages for their livelihood. When Jefferson Davis was inaugurated President of the Southern Confederacy, there were approximately only one hundred thousand persons employed in Southern manufactures as against more than a million in Northern mills. Fifty years later, Georgia and Alabama alone had more than one hundred and fifty thousand wage-earners. Necessarily this meant also a material increase in urban population, although the wide dispersion of cotton spinning among small centers prevented the congestion that had accompanied the rise of the textile industry in New England. In 1910, New Orleans, Atlanta, Memphis, Nashville, and Houston stood in the same relation to the New South that Cincinnati, Chicago, Cleveland, and Detroit had stood to the New West fifty years before. The problems of labor and capital and municipal administration, which the earlier writers boasted would never perplex the planting South, had come in full force. [Illustration: _Copyright by Underwood and Underwood, N.Y._ A GLIMPSE OF MEMPHIS, TENNESSEE] =The Revolution in the Status of the Slaves.=--No part of Southern society was so profoundly affected by the Civil War and economic reconstruction as the former slaves. On the day of emancipation, they stood free, but empty-handed, the owners of no tools or property, the masters of no trade and wholly inexperienced in the arts of self-help that characterized the whites in general. They had never been accustomed to looking out for themselves. The plantation bell had called them to labor and released them. Doles of food and clothing had been regularly made in given quantities. They did not understand wages, ownership, renting, contracts, mortgages, leases, bills, or accounts. When they were emancipated, four courses were open to them. They could flee from the plantation to the nearest town or city, or to the distant North, to seek a livelihood. Thousands of them chose this way, overcrowding cities where disease mowed them down. They could remain where they, were in their cabins and work for daily wages instead of food, clothing, and shelter. This second course the major portion of them chose; but, as few masters had cash to dispense, the new relation was much like the old, in fact. It was still one of barter. The planter offered food, clothing, and shelter; the former slaves gave their labor in return. That was the best that many of them could do. A third course open to freedmen was that of renting from the former master, paying him usually with a share of the produce of the land. This way a large number of them chose. It offered them a chance to become land owners in time and it afforded an easier life, the renter being, to a certain extent at least, master of his own hours of labor. The final and most difficult path was that to ownership of land. Many a master helped his former slaves to acquire small holdings by offering easy terms. The more enterprising and the more fortunate who started life as renters or wage-earners made their way upward to ownership in so many cases that by the end of the century, one-fourth of the colored laborers on the land owned the soil they tilled. In the meantime, the South, though relatively poor, made relatively large expenditures for the education of the colored population. By the opening of the twentieth century, facilities were provided for more than one-half of the colored children of school age. While in many respects this progress was disappointing, its significance, to be appreciated, must be derived from a comparison with the total illiteracy which prevailed under slavery. In spite of all that happened, however, the status of the negroes in the South continued to give a peculiar character to that section of the country. They were almost entirely excluded from the exercise of the suffrage, especially in the Far South. Special rooms were set aside for them at the railway stations and special cars on the railway lines. In the field of industry calling for technical skill, it appears, from the census figures, that they lost ground between 1890 and 1900--a condition which their friends ascribed to discriminations against them in law and in labor organizations and their critics ascribed to their lack of aptitude. Whatever may be the truth, the fact remained that at the opening of the twentieth century neither the hopes of the emancipators nor the fears of their opponents were realized. The marks of the "peculiar institution" were still largely impressed upon Southern society. The situation, however, was by no means unchanging. On the contrary there was a decided drift in affairs. For one thing, the proportion of negroes in the South had slowly declined. By 1900 they were in a majority in only two states, South Carolina and Mississippi. In Arkansas, Virginia, West Virginia, and North Carolina the proportion of the white population was steadily growing. The colored migration northward increased while the westward movement of white farmers which characterized pioneer days declined. At the same time a part of the foreign immigration into the United States was diverted southward. As the years passed these tendencies gained momentum. The already huge colored quarters in some Northern cities were widely expanded, as whole counties in the South were stripped of their colored laborers. The race question, in its political and economic aspects, became less and less sectional, more and more national. The South was drawn into the main stream of national life. The separatist forces which produced the cataclysm of 1861 sank irresistibly into the background. =References= H.W. Grady, _The New South_ (1890). H.A. Herbert, _Why the Solid South_. W.G. Brown, _The Lower South_. E.G. Murphy, _Problems of the Present South_. B.T. Washington, _The Negro Problem_; _The Story of the Negro_; _The Future of the Negro_. A.B. Hart, _The Southern South_ and R.S. Baker, _Following the Color Line_ (two works by Northern writers). T.N. Page, _The Negro, the Southerner's Problem_. =Questions= 1. Give the three main subdivisions of the chapter. 2. Compare the condition of the South in 1865 with that of the North. Compare with the condition of the United States at the close of the Revolutionary War. At the close of the World War in 1918. 3. Contrast the enfranchisement of the slaves with the enfranchisement of white men fifty years earlier. 4. What was the condition of the planters as compared with that of the Northern manufacturers? 5. How does money capital contribute to prosperity? Describe the plight of Southern finance. 6. Give the chief steps in the restoration of white supremacy. 7. Do you know of any other societies to compare with the Ku Klux Klan? 8. Give Lincoln's plan for amnesty. What principles do you think should govern the granting of amnesty? 9. How were the "Force bills" overcome? 10. Compare the fourteenth and fifteenth amendments with regard to the suffrage provisions. 11. Explain how they may be circumvented. 12. Account for the Solid South. What was the situation before 1860? 13. In what ways did Southern agriculture tend to become like that of the North? What were the social results? 14. Name the chief results of an "industrial revolution" in general. In the South, in particular. 15. What courses were open to freedmen in 1865? 16. Give the main features in the economic and social status of the colored population in the South. 17. Explain why the race question is national now, rather than sectional. =Research Topics= =Amnesty for Confederates.=--Study carefully the provisions of the fourteenth amendment in the Appendix. Macdonald, _Documentary Source Book of American History_, pp. 470 and 564. A plea for amnesty in Harding, _Select Orations Illustrating American History_, pp. 467-488. =Political Conditions in the South in 1868.=--Dunning, _Reconstruction, Political and Economic_ (American Nation Series), pp. 109-123; Hart, _American History Told by Contemporaries_, Vol. IV, pp. 445-458, 497-500; Elson, _History of the United States_, pp. 799-805. =Movement for White Supremacy.=--Dunning, _Reconstruction_, pp. 266-280; Paxson, _The New Nation_ (Riverside Series), pp. 39-58; Beard, _American Government and Politics_, pp. 454-457. =The Withdrawal of Federal Troops from the South.=--Sparks, _National Development_ (American Nation Series), pp. 84-102; Rhodes, _History of the United States_, Vol. VIII, pp. 1-12. =Southern Industry.=--Paxson, _The New Nation_, pp. 192-207; T.M. Young, _The American Cotton Industry_, pp. 54-99. =The Race Question.=--B.T. Washington, _Up From Slavery_ (sympathetic presentation); A.H. Stone, _Studies in the American Race Problem_ (coldly analytical); Hart, _Contemporaries_, Vol. IV, pp. 647-649, 652-654, 663-669. CHAPTER XVII BUSINESS ENTERPRISE AND THE REPUBLICAN PARTY If a single phrase be chosen to characterize American life during the generation that followed the age of Douglas and Lincoln, it must be "business enterprise"--the tremendous, irresistible energy of a virile people, mounting in numbers toward a hundred million and applied without let or hindrance to the developing of natural resources of unparalleled richness. The chief goal of this effort was high profits for the captains of industry, on the one hand; and high wages for the workers, on the other. Its signs, to use the language of a Republican orator in 1876, were golden harvest fields, whirling spindles, turning wheels, open furnace doors, flaming forges, and chimneys filled with eager fire. The device blazoned on its shield and written over its factory doors was "prosperity." A Republican President was its "advance agent." Released from the hampering interference of the Southern planters and the confusing issues of the slavery controversy, business enterprise sprang forward to the task of winning the entire country. Then it flung its outposts to the uttermost parts of the earth--Europe, Africa, and the Orient--where were to be found markets for American goods and natural resources for American capital to develop. RAILWAYS AND INDUSTRY =The Outward Signs of Enterprise.=--It is difficult to comprehend all the multitudinous activities of American business energy or to appraise its effects upon the life and destiny of the American people; for beyond the horizon of the twentieth century lie consequences as yet undreamed of in our poor philosophy. Statisticians attempt to record its achievements in terms of miles of railways built, factories opened, men and women employed, fortunes made, wages paid, cities founded, rivers spanned, boxes, bales, and tons produced. Historians apply standards of comparison with the past. Against the slow and leisurely stagecoach, they set the swift express, rushing from New York to San Francisco in less time than Washington consumed in his triumphal tour from Mt. Vernon to New York for his first inaugural. Against the lazy sailing vessel drifting before a genial breeze, they place the turbine steamer crossing the Atlantic in five days or the still swifter airplane, in fifteen hours. For the old workshop where a master and a dozen workmen and apprentices wrought by hand, they offer the giant factory where ten thousand persons attend the whirling wheels driven by steam. They write of the "romance of invention" and the "captains of industry." [Illustration: _Copyright by Underwood and Underwood, N.Y._ A CORNER IN THE BETHLEHEM STEEL WORKS] =The Service of the Railway.=--All this is fitting in its way. Figures and contrasts cannot, however, tell the whole story. Take, for example, the extension of railways. It is easy to relate that there were 30,000 miles in 1860; 166,000 in 1890; and 242,000 in 1910. It is easy to show upon the map how a few straggling lines became a perfect mesh of closely knitted railways; or how, like the tentacles of a great monster, the few roads ending in the Mississippi Valley in 1860 were extended and multiplied until they tapped every wheat field, mine, and forest beyond the valley. All this, eloquent of enterprise as it truly is, does not reveal the significance of railways for American life. It does not indicate how railways made a continental market for American goods; nor how they standardized the whole country, giving to cities on the advancing frontier the leading features of cities in the old East; nor how they carried to the pioneer the comforts of civilization; nor yet how in the West they were the forerunners of civilization, the makers of homesteads, the builders of states. =Government Aid for Railways.=--Still the story is not ended. The significant relation between railways and politics must not be overlooked. The bounty of a lavish government, for example, made possible the work of railway promoters. By the year 1872 the Federal government had granted in aid of railways 155,000,000 acres of land--an area estimated as almost equal to Pennsylvania, New York, Connecticut, Rhode Island, Massachusetts, Maine, New Hampshire, and Vermont. The Union Pacific Company alone secured from the federal government a free right of way through the public domain, twenty sections of land with each mile of railway, and a loan up to fifty millions of dollars secured by a second mortgage on the company's property. More than half of the northern tier of states lying against Canada from Lake Michigan to the Pacific was granted to private companies in aid of railways and wagon roads. About half of New Mexico, Arizona, and California was also given outright to railway companies. These vast grants from the federal government were supplemented by gifts from the states in land and by subscriptions amounting to more than two hundred million dollars. The history of these gifts and their relation to the political leaders that engineered them would alone fill a large and interesting volume. =Railway Fortunes and Capital.=--Out of this gigantic railway promotion, the first really immense American fortunes were made. Henry Adams, the grandson of John Quincy Adams, related that his grandfather on his mother's side, Peter Brooks, on his death in 1849, left a fortune of two million dollars, "supposed to be the largest estate in Boston," then one of the few centers of great riches. Compared with the opulence that sprang out of the Union Pacific, the Northern Pacific, the Southern Pacific, with their subsidiary and component lines, the estate of Peter Brooks was a poor man's heritage. The capital invested in these railways was enormous beyond the imagination of the men of the stagecoach generation. The total debt of the United States incurred in the Revolutionary War--a debt which those of little faith thought the country could never pay--was reckoned at a figure well under $75,000,000. When the Union Pacific Railroad was completed, there were outstanding against it $27,000,000 in first mortgage bonds, $27,000,000 in second mortgage bonds held by the government, $10,000,000 in income bonds, $10,000,000 in land grant bonds, and, on top of that huge bonded indebtedness, $36,000,000 in stock--making $110,000,000 in all. If the amount due the United States government be subtracted, still there remained, in private hands, stocks and bonds exceeding in value the whole national debt of Hamilton's day--a debt that strained all the resources of the Federal government in 1790. Such was the financial significance of the railways. [Illustration: RAILROADS OF THE UNITED STATES IN 1918] =Growth and Extension of Industry.=--In the field of manufacturing, mining, and metal working, the results of business enterprise far outstripped, if measured in mere dollars, the results of railway construction. By the end of the century there were about ten billion dollars invested in factories alone and five million wage-earners employed in them; while the total value of the output, fourteen billion dollars, was fifteen times the figure for 1860. In the Eastern states industries multiplied. In the Northwest territory, the old home of Jacksonian Democracy, they overtopped agriculture. By the end of the century, Ohio had almost reached and Illinois had surpassed Massachusetts in the annual value of manufacturing output. That was not all. Untold wealth in the form of natural resources was discovered in the South and West. Coal deposits were found in the Appalachians stretching from Pennsylvania down to Alabama, in Michigan, in the Mississippi Valley, and in the Western mountains from North Dakota to New Mexico. In nearly every coal-bearing region, iron was also discovered and the great fields of Michigan, Wisconsin, and Minnesota soon rivaled those of the Appalachian area. Copper, lead, gold, and silver in fabulous quantities were unearthed by the restless prospectors who left no plain or mountain fastness unexplored. Petroleum, first pumped from the wells of Pennsylvania in the summer of 1859, made new fortunes equaling those of trade, railways, and land speculation. It scattered its riches with an especially lavish hand through Oklahoma, Texas, and California. =The Trust--an Instrument of Industrial Progress.=--Business enterprise, under the direction of powerful men working single-handed, or of small groups of men pooling their capital for one or more undertakings, had not advanced far before there appeared upon the scene still mightier leaders of even greater imagination. New constructive genius now brought together and combined under one management hundreds of concerns or thousands of miles of railways, revealing the magic strength of cooperation on a national scale. Price-cutting in oil, threatening ruin to those engaged in the industry, as early as 1879, led a number of companies in Cleveland, Pittsburgh, and Philadelphia to unite in price-fixing. Three years later a group of oil interests formed a close organization, placing all their stocks in the hands of trustees, among whom was John D. Rockefeller. The trustees, in turn, issued certificates representing the share to which each participant was entitled; and took over the management of the entire business. Such was the nature of the "trust," which was to play such an unique role in the progress of America. The idea of combination was applied in time to iron and steel, copper, lead, sugar, cordage, coal, and other commodities, until in each field there loomed a giant trust or corporation, controlling, if not most of the output, at least enough to determine in a large measure the prices charged to consumers. With the passing years, the railways, mills, mines, and other business concerns were transferred from individual owners to corporations. At the end of the nineteenth century, the whole face of American business was changed. Three-fourths of the output from industries came from factories under corporate management and only one-fourth from individual and partnership undertakings. [Illustration: JOHN D. ROCKEFELLER] =The Banking Corporation.=--Very closely related to the growth of business enterprise on a large scale was the system of banking. In the old days before banks, a person with savings either employed them in his own undertakings, lent them to a neighbor, or hid them away where they set no industry in motion. Even in the early stages of modern business, it was common for a manufacturer to rise from small beginnings by financing extensions out of his own earnings and profits. This state of affairs was profoundly altered by the growth of the huge corporations requiring millions and even billions of capital. The banks, once an adjunct to business, became the leaders in business. [Illustration: _Copyright by Underwood and Underwood, N.Y._ WALL STREET, NEW YORK CITY] It was the banks that undertook to sell the stocks and bonds issued by new corporations and trusts and to supply them with credit to carry on their operations. Indeed, many of the great mergers or combinations in business were initiated by magnates in the banking world with millions and billions under their control. Through their connections with one another, the banks formed a perfect network of agencies gathering up the pennies and dollars of the masses as well as the thousands of the rich and pouring them all into the channels of business and manufacturing. In this growth of banking on a national scale, it was inevitable that a few great centers, like Wall Street in New York or State Street in Boston, should rise to a position of dominance both in concentrating the savings and profits of the nation and in financing new as well as old corporations. =The Significance of the Corporation.=--The corporation, in fact, became the striking feature of American business life, one of the most marvelous institutions of all time, comparable in wealth and power and the number of its servants with kingdoms and states of old. The effect of its rise and growth cannot be summarily estimated; but some special facts are obvious. It made possible gigantic enterprises once entirely beyond the reach of any individual, no matter how rich. It eliminated many of the futile and costly wastes of competition in connection with manufacture, advertising, and selling. It studied the cheapest methods of production and shut down mills that were poorly equipped or disadvantageously located. It established laboratories for research in industry, chemistry, and mechanical inventions. Through the sale of stocks and bonds, it enabled tens of thousands of people to become capitalists, if only in a small way. The corporation made it possible for one person to own, for instance, a $50 share in a million dollar business concern--a thing entirely impossible under a regime of individual owners and partnerships. There was, of course, another side to the picture. Many of the corporations sought to become monopolies and to make profits, not by economies and good management, but by extortion from purchasers. Sometimes they mercilessly crushed small business men, their competitors, bribed members of legislatures to secure favorable laws, and contributed to the campaign funds of both leading parties. Wherever a trust approached the position of a monopoly, it acquired a dominion over the labor market which enabled it to break even the strongest trade unions. In short, the power of the trust in finance, in manufacturing, in politics, and in the field of labor control can hardly be measured. =The Corporation and Labor.=--In the development of the corporation there was to be observed a distinct severing of the old ties between master and workmen, which existed in the days of small industries. For the personal bond between the owner and the employees was substituted a new relation. "In most parts of our country," as President Wilson once said, "men work, not for themselves, not as partners in the old way in which they used to work, but generally as employees--in a higher or lower grade--of great corporations." The owner disappeared from the factory and in his place came the manager, representing the usually invisible stockholders and dependent for his success upon his ability to make profits for the owners. Hence the term "soulless corporation," which was to exert such a deep influence on American thinking about industrial relations. =Cities and Immigration.=--Expressed in terms of human life, this era of unprecedented enterprise meant huge industrial cities and an immense labor supply, derived mainly from European immigration. Here, too, figures tell only a part of the story. In Washington's day nine-tenths of the American people were engaged in agriculture and lived in the country; in 1890 more than one-third of the population dwelt in towns of 2500 and over; in 1920 more than half of the population lived in towns of over 2500. In forty years, between 1860 and 1900, Greater New York had grown from 1,174,000 to 3,437,000; San Francisco from 56,000 to 342,000; Chicago from 109,000 to 1,698,000. The miles of city tenements began to rival, in the number of their residents, the farm homesteads of the West. The time so dreaded by Jefferson had arrived. People were "piled upon one another in great cities" and the republic of small farmers had passed away. To these industrial centers flowed annually an ever-increasing tide of immigration, reaching the half million point in 1880; rising to three-quarters of a million three years later; and passing the million mark in a single year at the opening of the new century. Immigration was as old as America but new elements now entered the situation. In the first place, there were radical changes in the nationality of the newcomers. The migration from Northern Europe--England, Ireland, Germany, and Scandinavia--diminished; that from Italy, Russia, and Austria-Hungary increased, more than three-fourths of the entire number coming from these three lands between the years 1900 and 1910. These later immigrants were Italians, Poles, Magyars, Czechs, Slovaks, Russians, and Jews, who came from countries far removed from the language and the traditions of England whence came the founders of America. In the second place, the reception accorded the newcomers differed from that given to the immigrants in the early days. By 1890 all the free land was gone. They could not, therefore, be dispersed widely among the native Americans to assimilate quickly and unconsciously the habits and ideas of American life. On the contrary, they were diverted mainly to the industrial centers. There they crowded--nay, overcrowded--into colonies of their own where they preserved their languages, their newspapers, and their old-world customs and views. So eager were American business men to get an enormous labor supply that they asked few questions about the effect of this "alien invasion" upon the old America inherited from the fathers. They even stimulated the invasion artificially by importing huge armies of foreigners under contract to work in specified mines and mills. There seemed to be no limit to the factories, forges, refineries, and railways that could be built, to the multitudes that could be employed in conquering a continent. As for the future, that was in the hands of Providence! =Business Theories of Politics.=--As the statesmen of Hamilton's school and the planters of Calhoun's had their theories of government and politics, so the leaders in business enterprise had theirs. It was simple and easily stated. "It is the duty of the government," they urged, "to protect American industry against foreign competition by means of high tariffs on imported goods, to aid railways by generous grants of land, to sell mineral and timber lands at low prices to energetic men ready to develop them, and then to leave the rest to the initiative and drive of individuals and companies." All government interference with the management, prices, rates, charges, and conduct of private business they held to be either wholly pernicious or intolerably impertinent. Judging from their speeches and writings, they conceived the nation as a great collection of individuals, companies, and labor unions all struggling for profits or high wages and held together by a government whose principal duty was to keep the peace among them and protect industry against the foreign manufacturer. Such was the political theory of business during the generation that followed the Civil War. THE SUPREMACY OF THE REPUBLICAN PARTY (1861-85) =Business Men and Republican Policies.=--Most of the leaders in industry gravitated to the Republican ranks. They worked in the North and the Republican party was essentially Northern. It was moreover--at least so far as the majority of its members were concerned--committed to protective tariffs, a sound monetary and banking system, the promotion of railways and industry by land grants, and the development of internal improvements. It was furthermore generous in its immigration policy. It proclaimed America to be an asylum for the oppressed of all countries and flung wide the doors for immigrants eager to fill the factories, man the mines, and settle upon Western lands. In a word the Republicans stood for all those specific measures which favored the enlargement and prosperity of business. At the same time they resisted government interference with private enterprise. They did not regulate railway rates, prosecute trusts for forming combinations, or prevent railway companies from giving lower rates to some shippers than to others. To sum it up, the political theories of the Republican party for three decades after the Civil War were the theories of American business--prosperous and profitable industries for the owners and "the full dinner pail" for the workmen. Naturally a large portion of those who flourished under its policies gave their support to it, voted for its candidates, and subscribed to its campaign funds. =Sources of Republican Strength in the North.=--The Republican party was in fact a political organization of singular power. It originated in a wave of moral enthusiasm, having attracted to itself, if not the abolitionists, certainly all those idealists, like James Russell Lowell and George William Curtis, who had opposed slavery when opposition was neither safe nor popular. To moral principles it added practical considerations. Business men had confidence in it. Workingmen, who longed for the independence of the farmer, owed to its indulgent land policy the opportunity of securing free homesteads in the West. The immigrant, landing penniless on these shores, as a result of the same beneficent system, often found himself in a little while with an estate as large as many a baronial domain in the Old World. Under a Republican administration, the union had been saved. To it the veterans of the war could turn with confidence for those rewards of service which the government could bestow: pensions surpassing in liberality anything that the world had ever seen. Under a Republican administration also the great debt had been created in the defense of the union, and to the Republican party every investor in government bonds could look for the full and honorable discharge of the interest and principal. The spoils system, inaugurated by Jacksonian Democracy, in turn placed all the federal offices in Republican hands, furnishing an army of party workers to be counted on for loyal service in every campaign. Of all these things Republican leaders made full and vigorous use, sometimes ascribing to the party, in accordance with ancient political usage, merits and achievements not wholly its own. Particularly was this true in the case of saving the union. "When in the economy of Providence, this land was to be purged of human slavery ... the Republican party came into power," ran a declaration in one platform. "The Republican party suppressed a gigantic rebellion, emancipated four million slaves, decreed the equal citizenship of all, and established universal suffrage," ran another. As for the aid rendered by the millions of Northern Democrats who stood by the union and the tens of thousands of them who actually fought in the union army, the Republicans in their zeal were inclined to be oblivious. They repeatedly charged the Democratic party "with being the same in character and spirit as when it sympathized with treason." =Republican Control of the South.=--To the strength enjoyed in the North, the Republicans for a long time added the advantages that came from control over the former Confederate states where the newly enfranchised negroes, under white leadership, gave a grateful support to the party responsible for their freedom. In this branch of politics, motives were so mixed that no historian can hope to appraise them all at their proper values. On the one side of the ledger must be set the vigorous efforts of the honest and sincere friends of the freedmen to win for them complete civil and political equality, wiping out not only slavery but all its badges of misery and servitude. On the same side must be placed the labor of those who had valiantly fought in forum and field to save the union and who regarded continued Republican supremacy after the war as absolutely necessary to prevent the former leaders in secession from coming back to power. At the same time there were undoubtedly some men of the baser sort who looked on politics as a game and who made use of "carpet-bagging" in the South to win the spoils that might result from it. At all events, both by laws and presidential acts, the Republicans for many years kept a keen eye upon the maintenance of their dominion in the South. Their declaration that neither the law nor its administration should admit any discrimination in respect of citizens by reason of race, color, or previous condition of servitude appealed to idealists and brought results in elections. Even South Carolina, where reposed the ashes of John C. Calhoun, went Republican in 1872 by a vote of three to one! Republican control was made easy by the force bills described in a previous chapter--measures which vested the supervision of elections in federal officers appointed by Republican Presidents. These drastic measures, departing from American tradition, the Republican authors urged, were necessary to safeguard the purity of the ballot, not merely in the South where the timid freedman might readily be frightened from using it; but also in the North, particularly in New York City, where it was claimed that fraud was regularly practiced by Democratic leaders. The Democrats, on their side, indignantly denied the charges, replying that the force bills were nothing but devices created by the Republicans for the purpose of securing their continued rule through systematic interference with elections. Even the measures of reconstruction were deemed by Democratic leaders as thinly veiled schemes to establish Republican power throughout the country. "Nor is there the slightest doubt," exclaimed Samuel J. Tilden, spokesman of the Democrats in New York and candidate for President in 1876, "that the paramount object and motive of the Republican party is by these means to secure itself against a reaction of opinion adverse to it in our great populous Northern commonwealths.... When the Republican party resolved to establish negro supremacy in the ten states in order to gain to itself the representation of those states in Congress, it had to begin by governing the people of those states by the sword.... The next was the creation of new electoral bodies for those ten states, in which, by exclusions, by disfranchisements and proscriptions, by control over registration, by applying test oaths ... by intimidation and by every form of influence, three million negroes are made to predominate over four and a half million whites." =The War as a Campaign Issue.=--Even the repeal of force bills could not allay the sectional feelings engendered by the war. The Republicans could not forgive the men who had so recently been in arms against the union and insisted on calling them "traitors" and "rebels." The Southerners, smarting under the reconstruction acts, could regard the Republicans only as political oppressors. The passions of the war had been too strong; the distress too deep to be soon forgotten. The generation that went through it all remembered it all. For twenty years, the Republicans, in their speeches and platforms, made "a straight appeal to the patriotism of the Northern voters." They maintained that their party, which had saved the union and emancipated the slaves, was alone worthy of protecting the union and uplifting the freedmen. Though the Democrats, especially in the North, resented this policy and dubbed it with the expressive but inelegant phrase, "waving the bloody shirt," the Republicans refused to surrender a slogan which made such a ready popular appeal. As late as 1884, a leader expressed the hope that they might "wring one more President from the bloody shirt." They refused to let the country forget that the Democratic candidate, Grover Cleveland, had escaped military service by hiring a substitute; and they made political capital out of the fact that he had "insulted the veterans of the Grand Army of the Republic" by going fishing on Decoration Day. =Three Republican Presidents.=--Fortified by all these elements of strength, the Republicans held the presidency from 1869 to 1885. The three Presidents elected in this period, Grant, Hayes, and Garfield, had certain striking characteristics in common. They were all of origin humble enough to please the most exacting Jacksonian Democrat. They had been generals in the union army. Grant, next to Lincoln, was regarded as the savior of the Constitution. Hayes and Garfield, though lesser lights in the military firmament, had honorable records duly appreciated by veterans of the war, now thoroughly organized into the Grand Army of the Republic. It is true that Grant was not a politician and had never voted the Republican ticket; but this was readily overlooked. Hayes and Garfield on the other hand were loyal party men. The former had served in Congress and for three terms as governor of his state. The latter had long been a member of the House of Representatives and was Senator-elect when he received the nomination for President. All of them possessed, moreover, another important asset, which was not forgotten by the astute managers who led in selecting candidates. All of them were from Ohio--though Grant had been in Illinois when the summons to military duties came--and Ohio was a strategic state. It lay between the manufacturing East and the agrarian country to the West. Having growing industries and wool to sell it benefited from the protective tariff. Yet being mainly agricultural still, it was not without sympathy for the farmers who showed low tariff or free trade tendencies. Whatever share the East had in shaping laws and framing policies, it was clear that the West was to have the candidates. This division in privileges--not uncommon in political management--was always accompanied by a judicious selection of the candidate for Vice President. With Garfield, for example, was associated a prominent New York politician, Chester A. Arthur, who, as fate decreed, was destined to more than three years' service as chief magistrate, on the assassination of his superior in office. =The Disputed Election of 1876.=--While taking note of the long years of Republican supremacy, it must be recorded that grave doubts exist in the minds of many historians as to whether one of the three Presidents, Hayes, was actually the victor in 1876 or not. His Democratic opponent, Samuel J. Tilden, received a popular plurality of a quarter of a million and had a plausible claim to a majority of the electoral vote. At all events, four states sent in double returns, one set for Tilden and another for Hayes; and a deadlock ensued. Both parties vehemently claimed the election and the passions ran so high that sober men did not shrink from speaking of civil war again. Fortunately, in the end, the counsels of peace prevailed. Congress provided for an electoral commission of fifteen men to review the contested returns. The Democrats, inspired by Tilden's moderation, accepted the judgment in favor of Hayes even though they were not convinced that he was really entitled to the office. THE GROWTH OF OPPOSITION TO REPUBLICAN RULE =Abuses in American Political Life.=--During their long tenure of office, the Republicans could not escape the inevitable consequences of power; that is, evil practices and corrupt conduct on the part of some who found shelter within the party. For that matter neither did the Democrats manage to avoid such difficulties in those states and cities where they had the majority. In New York City, for instance, the local Democratic organization, known as Tammany Hall, passed under the sway of a group of politicians headed by "Boss" Tweed. He plundered the city treasury until public-spirited citizens, supported by Samuel J. Tilden, the Democratic leader of the state, rose in revolt, drove the ringleader from power, and sent him to jail. In Philadelphia, the local Republican bosses were guilty of offenses as odious as those committed by New York politicians. Indeed, the decade that followed the Civil War was marred by so many scandals in public life that one acute editor was moved to inquire: "Are not all the great communities of the Western World growing more corrupt as they grow in wealth?" In the sphere of national politics, where the opportunities were greater, betrayals of public trust were even more flagrant. One revelation after another showed officers, high and low, possessed with the spirit of peculation. Members of Congress, it was found, accepted railway stock in exchange for votes in favor of land grants and other concessions to the companies. In the administration as well as the legislature the disease was rife. Revenue officers permitted whisky distillers to evade their taxes and received heavy bribes in return. A probe into the post-office department revealed the malodorous "star route frauds"--the deliberate overpayment of certain mail carriers whose lines were indicated in the official record by asterisks or stars. Even cabinet officers did not escape suspicion, for the trail of the serpent led straight to the door of one of them. In the lower ranges of official life, the spoils system became more virulent as the number of federal employees increased. The holders of offices and the seekers after them constituted a veritable political army. They crowded into Republican councils, for the Republicans, being in power, could alone dispense federal favors. They filled positions in the party ranging from the lowest township committee to the national convention. They helped to nominate candidates and draft platforms and elbowed to one side the busy citizen, not conversant with party intrigues, who could only give an occasional day to political matters. Even the Civil Service Act of 1883, wrung from a reluctant Congress two years after the assassination of Garfield, made little change for a long time. It took away from the spoilsmen a few thousand government positions, but it formed no check on the practice of rewarding party workers from the public treasury. On viewing this state of affairs, many a distinguished citizen became profoundly discouraged. James Russell Lowell, for example, thought he saw a steady decline in public morals. In 1865, hearing of Lee's surrender, he had exclaimed: "There is something magnificent in having a country to love!" Ten years later, when asked to write an ode for the centennial at Philadelphia in 1876, he could think only of a biting satire on the nation: "Show your state legislatures; show your Rings; And challenge Europe to produce such things As high officials sitting half in sight To share the plunder and fix things right. If that don't fetch her, why, you need only To show your latest style in martyrs,--Tweed: She'll find it hard to hide her spiteful tears At such advance in one poor hundred years." When his critics condemned him for this "attack upon his native land," Lowell replied in sadness: "These fellows have no notion of what love of country means. It was in my very blood and bones. If I am not an American who ever was?... What fills me with doubt and dismay is the degradation of the moral tone. Is it or is it not a result of democracy? Is ours a 'government of the people, by the people, for the people,' or a Kakistocracy [a government of the worst], rather for the benefit of knaves at the cost of fools?" =The Reform Movement in Republican Ranks.=--The sentiments expressed by Lowell, himself a Republican and for a time American ambassador to England, were shared by many men in his party. Very soon after the close of the Civil War some of them began to protest vigorously against the policies and conduct of their leaders. In 1872, the dissenters, calling themselves Liberal Republicans, broke away altogether, nominated a candidate of their own, Horace Greeley, and put forward a platform indicting the Republican President fiercely enough to please the most uncompromising Democrat. They accused Grant of using "the powers and opportunities of his high office for the promotion of personal ends." They charged him with retaining "notoriously corrupt and unworthy men in places of power and responsibility." They alleged that the Republican party kept "alive the passions and resentments of the late civil war to use them for their own advantages," and employed the "public service of the government as a machinery of corruption and personal influence." It was not apparent, however, from the ensuing election that any considerable number of Republicans accepted the views of the Liberals. Greeley, though indorsed by the Democrats, was utterly routed and died of a broken heart. The lesson of his discomfiture seemed to be that independent action was futile. So, at least, it was regarded by most men of the rising generation like Henry Cabot Lodge, of Massachusetts, and Theodore Roosevelt, of New York. Profiting by the experience of Greeley they insisted in season and out that reformers who desired to rid the party of abuses should remain loyal to it and do their work "on the inside." =The Mugwumps and Cleveland Democracy in 1884.=--Though aided by Republican dissensions, the Democrats were slow in making headway against the political current. They were deprived of the energetic and capable leadership once afforded by the planters, like Calhoun, Davis, and Toombs; they were saddled by their opponents with responsibility for secession; and they were stripped of the support of the prostrate South. Not until the last Southern state was restored to the union, not until a general amnesty was wrung from Congress, not until white supremacy was established at the polls, and the last federal soldier withdrawn from Southern capitals did they succeed in capturing the presidency. The opportune moment for them came in 1884 when a number of circumstances favored their aspirations. The Republicans, leaving the Ohio Valley in their search for a candidate, nominated James G. Blaine of Maine, a vigorous and popular leader but a man under fire from the reformers in his own party. The Democrats on their side were able to find at this juncture an able candidate who had no political enemies in the sphere of national politics, Grover Cleveland, then governor of New York and widely celebrated as a man of "sterling honesty." At the same time a number of dissatisfied Republicans openly espoused the Democratic cause,--among them Carl Schurz, George William Curtis, Henry Ward Beecher, and William Everett, men of fine ideals and undoubted integrity. Though the "regular" Republicans called them "Mugwumps" and laughed at them as the "men milliners, the dilettanti, and carpet knights of politics," they had a following that was not to be despised. The campaign which took place that year was one of the most savage in American history. Issues were thrust into the background. The tariff, though mentioned, was not taken seriously. Abuse of the opposition was the favorite resource of party orators. The Democrats insisted that "the Republican party so far as principle is concerned is a reminiscence. In practice it is an organization for enriching those who control its machinery." For the Republican candidate, Blaine, they could hardly find words to express their contempt. The Republicans retaliated in kind. They praised their own good works, as of old, in saving the union, and denounced the "fraud and violence practiced by the Democracy in the Southern states." Seeing little objectionable in the public record of Cleveland as mayor of Buffalo and governor of New York, they attacked his personal character. Perhaps never in the history of political campaigns did the discussions on the platform and in the press sink to so low a level. Decent people were sickened. Even hot partisans shrank from their own words when, after the election, they had time to reflect on their heedless passions. Moreover, nothing was decided by the balloting. Cleveland was elected, but his victory was a narrow one. A change of a few hundred votes in New York would have sent his opponent to the White House instead. =Changing Political Fortunes (1888-96).=--After the Democrats had settled down to the enjoyment of their hard-earned victory, President Cleveland in his message of 1887 attacked the tariff as "vicious, inequitable, and illogical"; as a system of taxation that laid a burden upon "every consumer in the land for the benefit of our manufacturers." Business enterprise was thoroughly alarmed. The Republicans characterized the tariff message as a free-trade assault upon the industries of the country. Mainly on that issue they elected in 1888 Benjamin Harrison of Indiana, a shrewd lawyer, a reticent politician, a descendant of the hero of Tippecanoe, and a son of the old Northwest. Accepting the outcome of the election as a vindication of their principles, the Republicans, under the leadership of William McKinley in the House of Representatives, enacted in 1890 a tariff law imposing the highest duties yet laid in our history. To their utter surprise, however, they were instantly informed by the country that their program was not approved. That very autumn they lost in the congressional elections, and two years later they were decisively beaten in the presidential campaign, Cleveland once more leading his party to victory. =References= L.H. Haney, _Congressional History of Railways_ (2 vols.). J.P. Davis, _Union Pacific Railway_. J.M. Swank, _History of the Manufacture of Iron_. M.T. Copeland, _The Cotton Manufacturing Industry in the United States_ (Harvard Studies). E.W. Bryce, _Progress of Invention in the Nineteenth Century_. Ida Tarbell, _History of the Standard Oil Company_ (Critical). G.H. Montague, _Rise and Progress of the Standard Oil Company_ (Friendly). H.P. Fairchild, _Immigration_, and F.J. Warne, _The Immigrant Invasion_ (Both works favor exclusion). I.A. Hourwich, _Immigration_ (Against exclusionist policies). J.F. Rhodes, _History of the United States, 1877-1896_, Vol. VIII. Edward Stanwood, _A History of the Presidency_, Vol. I, for the presidential elections of the period. =Questions= 1. Contrast the state of industry and commerce at the close of the Civil War with its condition at the close of the Revolutionary War. 2. Enumerate the services rendered to the nation by the railways. 3. Explain the peculiar relation of railways to government. 4. What sections of the country have been industrialized? 5. How do you account for the rise and growth of the trusts? Explain some of the economic advantages of the trust. 6. Are the people in cities more or less independent than the farmers? What was Jefferson's view? 7. State some of the problems raised by unrestricted immigration. 8. What was the theory of the relation of government to business in this period? Has it changed in recent times? 9. State the leading economic policies sponsored by the Republican party. 10. Why were the Republicans especially strong immediately after the Civil War? 11. What illustrations can you give showing the influence of war in American political campaigns? 12. Account for the strength of middle-western candidates. 13. Enumerate some of the abuses that appeared in American political life after 1865. 14. Sketch the rise and growth of the reform movement. 15. How is the fluctuating state of public opinion reflected in the elections from 1880 to 1896? =Research Topics= =Invention, Discovery, and Transportation.=--Sparks, _National Development_ (American Nation Series), pp. 37-67; Bogart, _Economic History of the United States_, Chaps. XXI, XXII, and XXIII. =Business and Politics.=--Paxson, _The New Nation_ (Riverside Series), pp. 92-107; Rhodes, _History of the United States_, Vol. VII, pp. 1-29, 64-73, 175-206; Wilson, _History of the American People_, Vol. IV, pp. 78-96. =Immigration.=--Coman, _Industrial History of the United States_ (2d ed.), pp. 369-374; E.L. Bogart, _Economic History of the United States_, pp. 420-422, 434-437; Jenks and Lauck, _Immigration Problems_, Commons, _Races and Immigrants_. =The Disputed Election of 1876.=--Haworth, _The United States in Our Own Time_, pp. 82-94; Dunning, _Reconstruction, Political and Economic_ (American Nation Series), pp. 294-341; Elson, _History of the United States_, pp. 835-841. =Abuses in Political Life.=--Dunning, _Reconstruction_, pp. 281-293; see criticisms in party platforms in Stanwood, _History of the Presidency_, Vol. I; Bryce, _American Commonwealth_ (1910 ed.), Vol. II, pp. 379-448; 136-167. =Studies of Presidential Administrations.=--(_a_) Grant, (_b_) Hayes, (_c_) Garfield-Arthur, (_d_) Cleveland, and (_e_) Harrison, in Haworth, _The United States in Our Own Time_, or in Paxson, _The New Nation_ (Riverside Series), or still more briefly in Elson. =Cleveland Democracy.=--Haworth, _The United States_, pp. 164-183; Rhodes, _History of the United States_, Vol. VIII, pp. 240-327; Elson, pp. 857-887. =Analysis of Modern Immigration Problems.=--_Syllabus in History_ (New York State, 1919), pp. 110-112. CHAPTER XVIII THE DEVELOPMENT OF THE GREAT WEST At the close of the Civil War, Kansas and Texas were sentinel states on the middle border. Beyond the Rockies, California, Oregon, and Nevada stood guard, the last of them having been just admitted to furnish another vote for the fifteenth amendment abolishing slavery. Between the near and far frontiers lay a vast reach of plain, desert, plateau, and mountain, almost wholly undeveloped. A broad domain, extending from Canada to Mexico, and embracing the regions now included in Washington, Idaho, Wyoming, Montana, Utah, Arizona, New Mexico, the Dakotas, and Oklahoma, had fewer than half a million inhabitants. It was laid out into territories, each administered under a governor appointed by the President and Senate and, as soon as there was the requisite number of inhabitants, a legislature elected by the voters. No railway line stretched across the desert. St. Joseph on the Missouri was the terminus of the Eastern lines. It required twenty-five days for a passenger to make the overland journey to California by the stagecoach system, established in 1858, and more than ten days for the swift pony express, organized in 1860, to carry a letter to San Francisco. Indians still roamed the plain and desert and more than one powerful tribe disputed the white man's title to the soil. THE RAILWAYS AS TRAIL BLAZERS =Opening Railways to the Pacific.=--A decade before the Civil War the importance of rail connection between the East and the Pacific Coast had been recognized. Pressure had already been brought to bear on Congress to authorize the construction of a line and to grant land and money in its aid. Both the Democrats and Republicans approved the idea, but it was involved in the slavery controversy. Indeed it was submerged in it. Southern statesmen wanted connections between the Gulf and the Pacific through Texas, while Northerners stood out for a central route. The North had its way during the war. Congress, by legislation initiated in 1862, provided for the immediate organization of companies to build a line from the Missouri River to California and made grants of land and loans of money to aid in the enterprise. The Western end, the Central Pacific, was laid out under the supervision of Leland Stanford. It was heavily financed by the Mormons of Utah and also by the state government, the ranchmen, miners, and business men of California; and it was built principally by Chinese labor. The Eastern end, the Union Pacific, starting at Omaha, was constructed mainly by veterans of the Civil War and immigrants from Ireland and Germany. In 1869 the two companies met near Ogden in Utah and the driving of the last spike, uniting the Atlantic and the Pacific, was the occasion of a great demonstration. Other lines to the Pacific were projected at the same time; but the panic of 1873 checked railway enterprise for a while. With the revival of prosperity at the end of that decade, construction was renewed with vigor and the year 1883 marked a series of railway triumphs. In February trains were running from New Orleans through Houston, San Antonio, and Yuma to San Francisco, as a result of a union of the Texas Pacific with the Southern Pacific and its subsidiary corporations. In September the last spike was driven in the Northern Pacific at Helena, Montana. Lake Superior was connected with Puget Sound. The waters explored by Joliet and Marquette were joined to the waters plowed by Sir Francis Drake while he was searching for a route around the world. That same year also a third line was opened to the Pacific by way of the Atchison, Topeka and Santa Fe, making connections through Albuquerque and Needles with San Francisco. The fondest hopes of railway promoters seemed to be realized. [Illustration: UNITED STATES IN 1870] =Western Railways Precede Settlement.=--In the Old World and on our Atlantic seaboard, railways followed population and markets. In the Far West, railways usually preceded the people. Railway builders planned cities on paper before they laid tracks connecting them. They sent missionaries to spread the gospel of "Western opportunity" to people in the Middle West, in the Eastern cities, and in Southern states. Then they carried their enthusiastic converts bag and baggage in long trains to the distant Dakotas and still farther afield. So the development of the Far West was not left to the tedious processes of time. It was pushed by men of imagination--adventurers who made a romance of money-making and who had dreams of empire unequaled by many kings of the past. These empire builders bought railway lands in huge tracts; they got more from the government; they overcame every obstacle of canon, mountain, and stream with the aid of science; they built cities according to the plans made by the engineers. Having the towns ready and railway and steamboat connections formed with the rest of the world, they carried out the people to use the railways, the steamships, the houses, and the land. It was in this way that "the frontier speculator paved the way for the frontier agriculturalist who had to be near a market before he could farm." The spirit of this imaginative enterprise, which laid out railways and towns in advance of the people, is seen in an advertisement of that day: "This extension will run 42 miles from York, northeast through the Island Lake country, and will have five good North Dakota towns. The stations on the line will be well equipped with elevators and will be constructed and ready for operation at the commencement of the grain season. Prospective merchants have been active in securing desirable locations at the different towns on the line. There are still opportunities for hotels, general merchandise, hardware, furniture, and drug stores, etc." [Illustration: _Copyright by Underwood and Underwood, N.Y._ A TOWN ON THE PRAIRIE] Among the railway promoters and builders in the West, James J. Hill, of the Great Northern and allied lines, was one of the most forceful figures. He knew that tracks and trains were useless without passengers and freight; without a population of farmers and town dwellers. He therefore organized publicity in the Virginias, Iowa, Ohio, Indiana, Illinois, Wisconsin, and Nebraska especially. He sent out agents to tell the story of Western opportunity in this vein: "You see your children come out of school with no chance to get farms of their own because the cost of land in your older part of the country is so high that you can't afford to buy land to start your sons out in life around you. They have to go to the cities to make a living or become laborers in the mills or hire out as farm hands. There is no future for them there. If you are doing well where you are and can safeguard the future of your children and see them prosper around you, don't leave here. But if you want independence, if you are renting your land, if the money-lender is carrying you along and you are running behind year after year, you can do no worse by moving.... You farmers talk of free trade and protection and what this or that political party will do for you. Why don't you vote a homestead for yourself? That is the only thing Uncle Sam will ever give you. Jim Hill hasn't an acre of land to sell you. We are not in the real estate business. We don't want you to go out West and make a failure of it because the rates at which we haul you and your goods make the first transaction a loss.... We must have landless men for a manless land." Unlike steamship companies stimulating immigration to get the fares, Hill was seeking permanent settlers who would produce, manufacture, and use the railways as the means of exchange. Consequently he fixed low rates and let his passengers take a good deal of live stock and household furniture free. By doing this he made an appeal that was answered by eager families. In 1894 the vanguard of home seekers left Indiana in fourteen passenger coaches, filled with men, women, and children, and forty-eight freight cars carrying their household goods and live stock. In the ten years that followed, 100,000 people from the Middle West and the South, responding to his call, went to the Western country where they brought eight million acres of prairie land under cultivation. When Hill got his people on the land, he took an interest in everything that increased the productivity of their labor. Was the output of food for his freight cars limited by bad drainage on the farms? Hill then interested himself in practical ways of ditching and tiling. Were farmers hampered in hauling their goods to his trains by bad roads? In that case, he urged upon the states the improvement of highways. Did the traffic slacken because the food shipped was not of the best quality? Then live stock must be improved and scientific farming promoted. Did the farmers need credit? Banks must be established close at hand to advance it. In all conferences on scientific farm management, conservation of natural resources, banking and credit in relation to agriculture and industry, Hill was an active participant. His was the long vision, seeing in conservation and permanent improvements the foundation of prosperity for the railways and the people. Indeed, he neglected no opportunity to increase the traffic on the lines. He wanted no empty cars running in either direction and no wheat stored in warehouses for the lack of markets. So he looked to the Orient as well as to Europe as an outlet for the surplus of the farms. He sent agents to China and Japan to discover what American goods and produce those countries would consume and what manufactures they had to offer to Americans in exchange. To open the Pacific trade he bought two ocean monsters, the _Minnesota_ and the _Dakota_, thus preparing for emergencies West as well as East. When some Japanese came to the United States on their way to Europe to buy steel rails, Hill showed them how easy it was for them to make their purchase in this country and ship by way of American railways and American vessels. So the railway builder and promoter, who helped to break the virgin soil of the prairies, lived through the pioneer epoch and into the age of great finance. Before he died he saw the wheat fields of North Dakota linked with the spinning jennies of Manchester and the docks of Yokohama. THE EVOLUTION OF GRAZING AND AGRICULTURE =The Removal of the Indians.=--Unlike the frontier of New England in colonial days or that of Kentucky later, the advancing lines of home builders in the Far West had little difficulty with warlike natives. Indian attacks were made on the railway construction gangs; General Custer had his fatal battle with the Sioux in 1876 and there were minor brushes; but they were all of relatively slight consequence. The former practice of treating with the Indians as independent nations was abandoned in 1871 and most of them were concentrated in reservations where they were mainly supported by the government. The supervision of their affairs was vested in a board of commissioners created in 1869 and instructed to treat them as wards of the nation--a trust which unfortunately was often betrayed. A further step in Indian policy was taken in 1887 when provision was made for issuing lands to individual Indians, thus permitting them to become citizens and settle down among their white neighbors as farmers or cattle raisers. The disappearance of the buffalo, the main food supply of the wild Indians, had made them more tractable and more willing to surrender the freedom of the hunter for the routine of the reservation, ranch, or wheat field. =The Cowboy and Cattle Ranger.=--Between the frontier of farms and the mountains were plains and semi-arid regions in vast reaches suitable for grazing. As soon as the railways were open into the Missouri Valley, affording an outlet for stock, there sprang up to the westward cattle and sheep raising on an immense scale. The far-famed American cowboy was the hero in this scene. Great herds of cattle were bred in Texas; with the advancing spring and summer seasons, they were driven northward across the plains and over the buffalo trails. In a single year, 1884, it is estimated that nearly one million head of cattle were moved out of Texas to the North by four thousand cowboys, supplied with 30,000 horses and ponies. During the two decades from 1870 to 1890 both the cattle men and the sheep raisers had an almost free run of the plains, using public lands without paying for the privilege and waging war on one another over the possession of ranges. At length, however, both had to go, as the homesteaders and land companies came and fenced in the plain and desert with endless lines of barbed wire. Already in 1893 a writer familiar with the frontier lamented the passing of the picturesque days: "The unique position of the cowboys among the Americans is jeopardized in a thousand ways. Towns are growing up on their pasture lands; irrigation schemes of a dozen sorts threaten to turn bunch-grass scenery into farm-land views; farmers are pre-empting valleys and the sides of waterways; and the day is not far distant when stock-raising must be done mainly in small herds, with winter corrals, and then the cowboy's days will end. Even now his condition disappoints those who knew him only half a dozen years ago. His breed seems to have deteriorated and his ranks are filling with men who work for wages rather than for the love of the free life and bold companionship that once tempted men into that calling. Splendid Cheyenne saddles are less and less numerous in the outfits; the distinctive hat that made its way up from Mexico may or may not be worn; all the civil authorities in nearly all towns in the grazing country forbid the wearing of side arms; nobody shoots up these towns any more. The fact is the old simon-pure cowboy days are gone already." =Settlement under the Homestead Act of 1862.=--Two factors gave a special stimulus to the rapid settlement of Western lands which swept away the Indians and the cattle rangers. The first was the policy of the railway companies in selling large blocks of land received from the government at low prices to induce immigration. The second was the operation of the Homestead law passed in 1862. This measure practically closed the long controversy over the disposition of the public domain that was suitable for agriculture. It provided for granting, without any cost save a small registration fee, public lands in lots of 160 acres each to citizens and aliens who declared their intention of becoming citizens. The one important condition attached was that the settler should occupy the farm for five years before his title was finally confirmed. Even this stipulation was waived in the case of the Civil War veterans who were allowed to count their term of military service as a part of the five years' occupancy required. As the soldiers of the Revolutionary and Mexican wars had advanced in great numbers to the frontier in earlier days, so now veterans led in the settlement of the middle border. Along with them went thousands of German, Irish, and Scandinavian immigrants, fresh from the Old World. Between 1867 and 1874, 27,000,000 acres were staked out in quarter-section farms. In twenty years (1860-80), the population of Nebraska leaped from 28,000 to almost half a million; Kansas from 100,000 to a million; Iowa from 600,000 to 1,600,000; and the Dakotas from 5000 to 140,000. =The Diversity of Western Agriculture.=--In soil, produce, and management, Western agriculture presented many contrasts to that of the East and South. In the region of arable and watered lands the typical American unit--the small farm tilled by the owner--appeared as usual; but by the side of it many a huge domain owned by foreign or Eastern companies and tilled by hired labor. Sometimes the great estate took the shape of the "bonanza farm" devoted mainly to wheat and corn and cultivated on a large scale by machinery. Again it assumed the form of the cattle ranch embracing tens of thousands of acres. Again it was a vast holding of diversified interest, such as the Santa Anita ranch near Los Angeles, a domain of 60,000 acres "cultivated in a glorious sweep of vineyards and orange and olive orchards, rich sheep and cattle pastures and horse ranches, their life and customs handed down from the Spanish owners of the various ranches which were swept into one estate." =Irrigation.=--In one respect agriculture in the Far West was unique. In a large area spreading through eight states, Montana, Idaho, Wyoming, Utah, Colorado, Nevada, Arizona, New Mexico, and parts of adjoining states, the rainfall was so slight that the ordinary crops to which the American farmer was accustomed could not be grown at all. The Mormons were the first Anglo-Saxons to encounter aridity, and they were baffled at first; but they studied it and mastered it by magnificent irrigation systems. As other settlers poured into the West the problem of the desert was attacked with a will, some of them replying to the commiseration of Eastern farmers by saying that it was easier to scoop out an irrigation ditch than to cut forests and wrestle with stumps and stones. Private companies bought immense areas at low prices, built irrigation works, and disposed of their lands in small plots. Some ranchers with an instinct for water, like that of the miner for metal, sank wells into the dry sand and were rewarded with gushers that "soused the thirsty desert and turned its good-for-nothing sand into good-for-anything loam." The federal government came to the aid of the arid regions in 1894 by granting lands to the states to be used for irrigation purposes. In this work Wyoming took the lead with a law which induced capitalists to invest in irrigation and at the same time provided for the sale of the redeemed lands to actual settlers. Finally in 1902 the federal government by its liberal Reclamation Act added its strength to that of individuals, companies, and states in conquering "arid America." "Nowhere," writes Powell, a historian of the West, in his picturesque _End of the Trail_, "has the white man fought a more courageous fight or won a more brilliant victory than in Arizona. His weapons have been the transit and the level, the drill and the dredge, the pick and the spade; and the enemy which he has conquered has been the most stubborn of all foes--the hostile forces of Nature.... The story of how the white man within the space of less than thirty years penetrated, explored, and mapped this almost unknown region; of how he carried law, order, and justice into a section which had never had so much as a speaking acquaintance with any one of the three before; of how, realizing the necessity for means of communication, he built highways of steel across this territory from east to west and from north to south; of how, undismayed by the savageness of the countenance which the desert turned upon him, he laughed and rolled up his sleeves, and spat upon his hands, and slashed the face of the desert with canals and irrigating ditches, and filled those ditches with water brought from deep in the earth or high in the mountains; and of how, in the conquered and submissive soil, he replaced the aloe with alfalfa, the mesquite with maize, the cactus with cotton, forms one of the most inspiring chapters in our history. It is one of the epics of civilization, this reclamation of the Southwest, and its heroes, thank God, are Americans. "Other desert regions have been redeemed by irrigation--Egypt, for example, and Mesopotamia and parts of the Sudan--but the people of all those regions lay stretched out in the shade of a convenient palm, metaphorically speaking, and waited for some one with more energy than themselves to come along and do the work. But the Arizonians, mindful of the fact that God, the government, and Carnegie help those who help themselves, spent their days wielding the pick and shovel, and their evenings in writing letters to Washington with toil-hardened hands. After a time the government was prodded into action and the great dams at Laguna and Roosevelt are the result. Then the people, organizing themselves into cooperative leagues and water-users' associations, took up the work of reclamation where the government left off; it is to these energetic, persevering men who have drilled wells, plowed fields, and dug ditches through the length and breadth of that great region which stretches from Yuma to Tucson, that the metamorphosis of Arizona is due." The effect of irrigation wherever introduced was amazing. Stretches of sand and sagebrush gave way to fertile fields bearing crops of wheat, corn, fruits, vegetables, and grass. Huge ranches grazed by browsing sheep were broken up into small plots. The cowboy and ranchman vanished. In their place rose the prosperous community--a community unlike the township of Iowa or the industrial center of the East. Its intensive tillage left little room for hired labor. Its small holdings drew families together in village life rather than dispersing them on the lonely plain. Often the development of water power in connection with irrigation afforded electricity for labor-saving devices and lifted many a burden that in other days fell heavily upon the shoulders of the farmer and his family. MINING AND MANUFACTURING IN THE WEST =Mineral Resources.=--In another important particular the Far West differed from the Mississippi Valley states. That was in the predominance of mining over agriculture throughout a vast section. Indeed it was the minerals rather than the land that attracted the pioneers who first opened the country. The discovery of gold in California in 1848 was the signal for the great rush of prospectors, miners, and promoters who explored the valleys, climbed the hills, washed the sands, and dug up the soil in their feverish search for gold, silver, copper, coal, and other minerals. In Nevada and Montana the development of mineral resources went on all during the Civil War. Alder Gulch became Virginia City in 1863; Last Chance Gulch was named Helena in 1864; and Confederate Gulch was christened Diamond City in 1865. At Butte the miners began operations in 1864 and within five years had washed out eight million dollars' worth of gold. Under the gold they found silver; under silver they found copper. Even at the end of the nineteenth century, after agriculture was well advanced and stock and sheep raising introduced on a large scale, minerals continued to be the chief source of wealth in a number of states. This was revealed by the figures for 1910. The gold, silver, iron, and copper of Colorado were worth more than the wheat, corn, and oats combined; the copper of Montana sold for more than all the cereals and four times the price of the wheat. The interest of Nevada was also mainly mining, the receipts from the mineral output being $43,000,000 or more than one-half the national debt of Hamilton's day. The yield of the mines of Utah was worth four or five times the wheat crop; the coal of Wyoming brought twice as much as the great wool clip; the minerals of Arizona were totaled at $43,000,000 as against a wool clip reckoned at $1,200,000; while in Idaho alone of this group of states did the wheat crop exceed in value the output of the mines. [Illustration: _Photograph from Underwood and Underwood, N.Y._ LOGGING] =Timber Resources.=--The forests of the great West, unlike those of the Ohio Valley, proved a boon to the pioneers rather than a foe to be attacked. In Ohio and Indiana, for example, the frontier line of homemakers had to cut, roll, and burn thousands of trees before they could put out a crop of any size. Beyond the Mississippi, however, there were all ready for the breaking plow great reaches of almost treeless prairie, where every stick of timber was precious. In the other parts, often rough and mountainous, where stood primeval forests of the finest woods, the railroads made good use of the timber. They consumed acres of forests themselves in making ties, bridge timbers, and telegraph poles, and they laid a heavy tribute upon the forests for their annual upkeep. The surplus trees, such as had burdened the pioneers of the Northwest Territory a hundred years before, they carried off to markets on the east and west coasts. =Western Industries.=--The peculiar conditions of the Far West stimulated a rise of industries more rapid than is usual in new country. The mining activities which in many sections preceded agriculture called for sawmills to furnish timber for the mines and smelters to reduce and refine ores. The ranches supplied sheep and cattle for the packing houses of Kansas City as well as Chicago. The waters of the Northwest afforded salmon for 4000 cases in 1866 and for 1,400,000 cases in 1916. The fruits and vegetables of California brought into existence innumerable canneries. The lumber industry, starting with crude sawmills to furnish rough timbers for railways and mines, ended in specialized factories for paper, boxes, and furniture. As the railways preceded settlement and furnished a ready outlet for local manufactures, so they encouraged the early establishment of varied industries, thus creating a state of affairs quite unlike that which obtained in the Ohio Valley in the early days before the opening of the Erie Canal. =Social Effects of Economic Activities.=--In many respects the social life of the Far West also differed from that of the Ohio Valley. The treeless prairies, though open to homesteads, favored the great estate tilled in part by tenant labor and in part by migratory seasonal labor, summoned from all sections of the country for the harvests. The mineral resources created hundreds of huge fortunes which made the accumulations of eastern mercantile families look trivial by comparison. Other millionaires won their fortunes in the railway business and still more from the cattle and sheep ranges. In many sections the "cattle king," as he was called, was as dominant as the planter had been in the old South. Everywhere in the grazing country he was a conspicuous and important person. He "sometimes invested money in banks, in railroad stocks, or in city property.... He had his rating in the commercial reviews and could hobnob with bankers, railroad presidents, and metropolitan merchants.... He attended party caucuses and conventions, ran for the state legislature, and sometimes defeated a lawyer or metropolitan 'business man' in the race for a seat in Congress. In proportion to their numbers, the ranchers ... have constituted a highly impressive class." Although many of the early capitalists of the great West, especially from Nevada, spent their money principally in the East, others took leadership in promoting the sections in which they had made their fortunes. A railroad pioneer, General Palmer, built his home at Colorado Springs, founded the town, and encouraged local improvements. Denver owed its first impressive buildings to the civic patriotism of Horace Tabor, a wealthy mine owner. Leland Stanford paid his tribute to California in the endowment of a large university. Colonel W.F. Cody, better known as "Buffalo Bill," started his career by building a "boom town" which collapsed, and made a large sum of money supplying buffalo meat to construction hands (hence his popular name). By his famous Wild West Show, he increased it to a fortune which he devoted mainly to the promotion of a western reclamation scheme. While the Far West was developing this vigorous, aggressive leadership in business, a considerable industrial population was springing up. Even the cattle ranges and hundreds of farms were conducted like factories in that they were managed through overseers who hired plowmen, harvesters, and cattlemen at regular wages. At the same time there appeared other peculiar features which made a lasting impression on western economic life. Mining, lumbering, and fruit growing, for instance, employed thousands of workers during the rush months and turned them out at other times. The inevitable result was an army of migratory laborers wandering from camp to camp, from town to town, and from ranch to ranch, without fixed homes or established habits of life. From this extraordinary condition there issued many a long and lawless conflict between capital and labor, giving a distinct color to the labor movement in whole sections of the mountain and coast states. THE ADMISSION OF NEW STATES =The Spirit of Self-Government.=--The instinct of self-government was strong in the western communities. In the very beginning, it led to the organization of volunteer committees, known as "vigilantes," to suppress crime and punish criminals. As soon as enough people were settled permanently in a region, they took care to form a more stable kind of government. An illustration of this process is found in the Oregon compact made by the pioneers in 1843, the spirit of which is reflected in an editorial in an old copy of the _Rocky Mountain News_: "We claim that any body or community of American citizens which from any cause or under any circumstances is cut off from or from isolation is so situated as not to be under any active and protecting branch of the central government, have a right, if on American soil, to frame a government and enact such laws and regulations as may be necessary for their own safety, protection, and happiness, always with the condition precedent, that they shall, at the earliest moment when the central government shall extend an effective organization and laws over them, give it their unqualified support and obedience." People who turned so naturally to the organization of local administration were equally eager for admission to the union as soon as any shadow of a claim to statehood could be advanced. As long as a region was merely one of the territories of the United States, the appointment of the governor and other officers was controlled by politics at Washington. Moreover the disposition of land, mineral rights, forests, and water power was also in the hands of national leaders. Thus practical considerations were united with the spirit of independence in the quest for local autonomy. =Nebraska and Colorado.=--Two states, Nebraska and Colorado, had little difficulty in securing admission to the union. The first, Nebraska, had been organized as a territory by the famous Kansas-Nebraska bill which did so much to precipitate the Civil War. Lying to the north of Kansas, which had been admitted in 1861, it escaped the invasion of slave owners from Missouri and was settled mainly by farmers from the North. Though it claimed a population of only 67,000, it was regarded with kindly interest by the Republican Congress at Washington and, reduced to its present boundaries, it received the coveted statehood in 1867. This was hardly accomplished before the people of Colorado to the southwest began to make known their demands. They had been organized under territorial government in 1861 when they numbered only a handful; but within ten years the aspect of their affairs had completely changed. The silver and gold deposits of the Leadville and Cripple Creek regions had attracted an army of miners and prospectors. The city of Denver, founded in 1858 and named after the governor of Kansas whence came many of the early settlers, had grown from a straggling camp of log huts into a prosperous center of trade. By 1875 it was reckoned that the population of the territory was not less than one hundred thousand; the following year Congress, yielding to the popular appeal, made Colorado a member of the American union. =Six New States (1889-1890).=--For many years there was a deadlock in Congress over the admission of new states. The spell was broken in 1889 under the leadership of the Dakotas. For a long time the Dakota territory, organized in 1861, had been looked upon as the home of the powerful Sioux Indians whose enormous reservation blocked the advance of the frontier. The discovery of gold in the Black Hills, however, marked their doom. Even before Congress could open their lands to prospectors, pioneers were swarming over the country. Farmers from the adjoining Minnesota and the Eastern states, Scandinavians, Germans, and Canadians, came in swelling waves to occupy the fertile Dakota lands, now famous even as far away as the fjords of Norway. Seldom had the plow of man cut through richer soil than was found in the bottoms of the Red River Valley, and it became all the more precious when the opening of the Northern Pacific in 1883 afforded a means of transportation east and west. The population, which had numbered 135,000 in 1880, passed the half million mark before ten years had elapsed. Remembering that Nebraska had been admitted with only 67,000 inhabitants, the Dakotans could not see why they should be kept under federal tutelage. At the same time Washington, far away on the Pacific Coast, Montana, Idaho, and Wyoming, boasting of their populations and their riches, put in their own eloquent pleas. But the members of Congress were busy with politics. The Democrats saw no good reason for admitting new Republican states until after their defeat in 1888. Near the end of their term the next year they opened the door for North and South Dakota, Washington, and Montana. In 1890, a Republican Congress brought Idaho and Wyoming into the union, the latter with woman suffrage, which had been granted twenty-one years before. =Utah.=--Although Utah had long presented all the elements of a well-settled and industrious community, its admission to the union was delayed on account of popular hostility to the practice of polygamy. The custom, it is true, had been prohibited by act of Congress in 1862; but the law had been systematically evaded. In 1882 Congress made another and more effective effort to stamp out polygamy. Five years later it even went so far as to authorize the confiscation of the property of the Mormon Church in case the practice of plural marriages was not stopped. Meanwhile the Gentile or non-Mormon population was steadily increasing and the leaders in the Church became convinced that the battle against the sentiment of the country was futile. At last in 1896 Utah was admitted as a state under a constitution which forbade plural marriages absolutely and forever. Horace Greeley, who visited Utah in 1859, had prophesied that the Pacific Railroad would work a revolution in the land of Brigham Young. His prophecy had come true. [Illustration: THE UNITED STATES IN 1912] =Rounding out the Continent.=--Three more territories now remained out of the Union. Oklahoma, long an Indian reservation, had been opened for settlement to white men in 1889. The rush upon the fertile lands of this region, the last in the history of America, was marked by all the frenzy of the final, desperate chance. At a signal from a bugle an army of men with families in wagons, men and women on horseback and on foot, burst into the territory. During the first night a city of tents was raised at Guthrie and Oklahoma City. In ten days wooden houses rose on the plains. In a single year there were schools, churches, business blocks, and newspapers. Within fifteen years there was a population of more than half a million. To the west, Arizona with a population of about 125,000 and New Mexico with 200,000 inhabitants joined Oklahoma in asking for statehood. Congress, then Republican, looked with reluctance upon the addition of more Democratic states; but in 1907 it was literally compelled by public sentiment and a sense of justice to admit Oklahoma. In 1910 the House of Representatives went to the Democrats and within two years Arizona and New Mexico were "under the roof." So the continental domain was rounded out. THE INFLUENCE OF THE FAR WEST ON NATIONAL LIFE =The Last of the Frontier.=--When Horace Greeley made his trip west in 1859 he thus recorded the progress of civilization in his journal: "May 12th, Chicago.--Chocolate and morning journals last seen on the hotel breakfast table. 23rd, Leavenworth (Kansas).--Room bells and bath tubs make their final appearance. 26th, Manhattan.--Potatoes and eggs last recognized among the blessings that 'brighten as they take their flight.' 27th, Junction City.--Last visitation of a boot-black, with dissolving views of a board bedroom. Beds bid us good-by." [Illustration: _Copyright by Panama-California Exposition_ THE CANADIAN BUILDING AT THE PANAMA-CALIFORNIA INTERNATIONAL EXPOSITION, SAN DIEGO, 1915] Within thirty years travelers were riding across that country in Pullman cars and enjoying at the hotels all the comforts of a standardized civilization. The "wild west" was gone, and with it that frontier of pioneers and settlers who had long given such a bent and tone to American life and had "poured in upon the floor of Congress" such a long line of "backwoods politicians," as they were scornfully styled. =Free Land and Eastern Labor.=--It was not only the picturesque features of the frontier that were gone. Of far more consequence was the disappearance of free lands with all that meant for American labor. For more than a hundred years, any man of even moderate means had been able to secure a homestead of his own and an independent livelihood. For a hundred years America had been able to supply farms to as many immigrants as cared to till the soil. Every new pair of strong arms meant more farms and more wealth. Workmen in Eastern factories, mines, or mills who did not like their hours, wages, or conditions of labor, could readily find an outlet to the land. Now all that was over. By about 1890 most of the desirable land available under the Homestead act had disappeared. American industrial workers confronted a new situation. =Grain Supplants King Cotton.=--In the meantime a revolution was taking place in agriculture. Until 1860 the chief staples sold by America were cotton and tobacco. With the advance of the frontier, corn and wheat supplanted them both in agrarian economy. The West became the granary of the East and of Western Europe. The scoop shovel once used to handle grain was superseded by the towering elevator, loading and unloading thousands of bushels every hour. The refrigerator car and ship made the packing industry as stable as the production of cotton or corn, and gave an immense impetus to cattle raising and sheep farming. So the meat of the West took its place on the English dinner table by the side of bread baked from Dakotan wheat. =Aid in American Economic Independence.=--The effects of this economic movement were manifold and striking. Billions of dollars' worth of American grain, dairy produce, and meat were poured into European markets where they paid off debts due money lenders and acquired capital to develop American resources. Thus they accelerated the progress of American financiers toward national independence. The country, which had timidly turned to the Old World for capital in Hamilton's day and had borrowed at high rates of interest in London in Lincoln's day, moved swiftly toward the time when it would be among the world's first bankers and money lenders itself. Every grain of wheat and corn pulled the balance down on the American side of the scale. =Eastern Agriculture Affected.=--In the East as well as abroad the opening of the western granary produced momentous results. The agricultural economy of that part of the country was changed in many respects. Whole sections of the poorest land went almost out of cultivation, the abandoned farms of the New England hills bearing solemn witness to the competing power of western wheat fields. Sheep and cattle raising, as well as wheat and corn production, suffered at least a relative decline. Thousands of farmers cultivating land of the lower grade were forced to go West or were driven to the margin of subsistence. Even the herds that supplied Eastern cities with milk were fed upon grain brought halfway across the continent. =The Expansion of the American Market.=--Upon industry as well as agriculture, the opening of vast food-producing regions told in a thousand ways. The demand for farm machinery, clothing, boots, shoes, and other manufactures gave to American industries such a market as even Hamilton had never foreseen. Moreover it helped to expand far into the Mississippi Valley the industrial area once confined to the Northern seaboard states and to transform the region of the Great Lakes into an industrial empire. Herein lies the explanation of the growth of mid-western cities after 1865. Chicago, with its thirty-five railways, tapped every locality of the West and South. To the railways were added the water routes of the Lakes, thus creating a strategic center for industries. Long foresight carried the McCormick reaper works to Chicago before 1860. From Troy, New York, went a large stove plant. That was followed by a shoe factory from Massachusetts. The packing industry rose as a matter of course at a point so advantageous for cattle raisers and shippers and so well connected with Eastern markets. To the opening of the Far West also the Lake region was indebted for a large part of that water-borne traffic which made it "the Mediterranean basin of North America." The produce of the West and the manufactures of the East poured through it in an endless stream. The swift growth of shipbuilding on the Great Lakes helped to compensate for the decline of the American marine on the high seas. In response to this stimulus Detroit could boast that her shipwrights were able to turn out a ten thousand ton Leviathan for ore or grain about "as quickly as carpenters could put up an eight-room house." Thus in relation to the Far West the old Northwest territory--the wilderness of Jefferson's time--had taken the position formerly occupied by New England alone. It was supplying capital and manufactures for a vast agricultural empire West and South. =America on the Pacific.=--It has been said that the Mediterranean Sea was the center of ancient civilization; that modern civilization has developed on the shores of the Atlantic; and that the future belongs to the Pacific. At any rate, the sweep of the United States to the shores of the Pacific quickly exercised a powerful influence on world affairs and it undoubtedly has a still greater significance for the future. Very early regular traffic sprang up between the Pacific ports and the Hawaiian Islands, China, and Japan. Two years before the adjustment of the Oregon controversy with England, namely in 1844, the United States had established official and trading relations with China. Ten years later, four years after the admission of California to the union, the barred door of Japan was forced open by Commodore Perry. The commerce which had long before developed between the Pacific ports and Hawaii, China, and Japan now flourished under official care. In 1865 a ship from Honolulu carried sugar, molasses, and fruits from Hawaii to the Oregon port of Astoria. The next year a vessel from Hongkong brought rice, mats, and tea from China. An era of lucrative trade was opened. The annexation of Hawaii in 1898, the addition of the Philippines at the same time, and the participation of American troops in the suppression of the Boxer rebellion in Peking in 1900, were but signs and symbols of American power on the Pacific. [Illustration: _From an old print_ COMMODORE PERRY'S MEN MAKING PRESENTS TO THE JAPANESE] =Conservation and the Land Problem.=--The disappearance of the frontier also brought new and serious problems to the governments of the states and the nation. The people of the whole United States suddenly were forced to realize that there was a limit to the rich, new land to exploit and to the forests and minerals awaiting the ax and the pick. Then arose in America the questions which had long perplexed the countries of the Old World--the scientific use of the soils and conservation of natural resources. Hitherto the government had followed the easy path of giving away arable land and selling forest and mineral lands at low prices. Now it had to face far more difficult and complex problems. It also had to consider questions of land tenure again, especially if the ideal of a nation of home-owning farmers was to be maintained. While there was plenty of land for every man or woman who wanted a home on the soil, it made little difference if single landlords or companies got possession of millions of acres, if a hundred men in one western river valley owned 17,000,000 acres; but when the good land for small homesteads was all gone, then was raised the real issue. At the opening of the twentieth century the nation, which a hundred years before had land and natural resources apparently without limit, was compelled to enact law after law conserving its forests and minerals. Then it was that the great state of California, on the very border of the continent, felt constrained to enact a land settlement measure providing government assistance in an effort to break up large holdings into small lots and to make it easy for actual settlers to acquire small farms. America was passing into a new epoch. =References= Henry Inman, _The Old Santa Fe Trail_. R.I. Dodge, _The Plains of the Great West_ (1877). C.H. Shinn, _The Story of the Mine_. Cy Warman, _The Story of the Railroad_. Emerson Hough, _The Story of the Cowboy_. H.H. Bancroft is the author of many works on the West but his writings will be found only in the larger libraries. Joseph Schafer, _History of the Pacific Northwest_ (ed. 1918). T.H. Hittel, _History of California_ (4 vols.). W.H. Olin, _American Irrigation Farming_. W.E. Smythe, _The Conquest of Arid America_. H.A. Millis, _The American-Japanese Problem_. E.S. Meany, _History of the State of Washington_. H.K. Norton, _The Story of California_. =Questions= 1. Name the states west of the Mississippi in 1865. 2. In what manner was the rest of the western region governed? 3. How far had settlement been carried? 4. What were the striking physical features of the West? 5. How was settlement promoted after 1865? 6. Why was admission to the union so eagerly sought? 7. Explain how politics became involved in the creation of new states. 8. Did the West rapidly become like the older sections of the country? 9. What economic peculiarities did it retain or develop? 10. How did the federal government aid in western agriculture? 11. How did the development of the West affect the East? The South? 12. What relation did the opening of the great grain areas of the West bear to the growth of America's commercial and financial power? 13. State some of the new problems of the West. 14. Discuss the significance of American expansion to the Pacific Ocean. =Research Topics= =The Passing of the Wild West.=--Haworth, _The United States in Our Own Times_, pp. 100-124. =The Indian Question.=--Sparks, _National Development_ (American Nation Series), pp. 265-281. =The Chinese Question.=--Sparks, _National Development_, pp. 229-250; Rhodes, _History of the United States_, Vol. VIII, pp. 180-196. =The Railway Age.=--Schafer, _History of the Pacific Northwest_, pp. 230-245; E.V. Smalley, _The Northern Pacific Railroad_; Paxson, _The New Nation_ (Riverside Series), pp. 20-26, especially the map on p. 23, and pp. 142-148. =Agriculture and Business.=--Schafer, _Pacific Northwest_, pp. 246-289. =Ranching in the Northwest.=--Theodore Roosevelt, _Ranch Life_, and _Autobiography_, pp. 103-143. =The Conquest of the Desert.=--W.E. Smythe, _The Conquest of Arid America_. =Studies of Individual Western States.=--Consult any good encyclopedia. CHAPTER XIX DOMESTIC ISSUES BEFORE THE COUNTRY (1865-1897) For thirty years after the Civil War the leading political parties, although they engaged in heated presidential campaigns, were not sharply and clearly opposed on many matters of vital significance. During none of that time was there a clash of opinion over specific issues such as rent the country in 1800 when Jefferson rode a popular wave to victory, or again in 1828 when Jackson's western hordes came sweeping into power. The Democrats, who before 1860 definitely opposed protective tariffs, federal banking, internal improvements, and heavy taxes, now spoke cautiously on all these points. The Republicans, conscious of the fact that they had been a minority of the voters in 1860 and warned by the early loss of the House of Representatives in 1874, also moved with considerable prudence among the perplexing problems of the day. Again and again the votes in Congress showed that no clear line separated all the Democrats from all the Republicans. There were Republicans who favored tariff reductions and "cheap money." There were Democrats who looked with partiality upon high protection or with indulgence upon the contraction of the currency. Only on matters relating to the coercion of the South was the division between the parties fairly definite; this could be readily accounted for on practical as well as sentimental grounds. After all, the vague criticisms and proposals that found their way into the political platforms did but reflect the confusion of mind prevailing in the country. The fact that, out of the eighteen years between 1875 and 1893, the Democrats held the House of Representatives for fourteen years while the Republicans had every President but one showed that the voters, like the politicians, were in a state of indecision. Hayes had a Democratic House during his entire term and a Democratic Senate for two years of the four. Cleveland was confronted by a belligerent Republican majority in the Senate during his first administration; and at the same time was supported by a Democratic majority in the House. Harrison was sustained by continuous Republican successes in Senatorial elections; but in the House he had the barest majority from 1889 to 1891 and lost that altogether at the election held in the middle of his term. The opinion of the country was evidently unsettled and fluctuating. It was still distracted by memories of the dead past and uncertain as to the trend of the future. THE CURRENCY QUESTION Nevertheless these years of muddled politics and nebulous issues proved to be a period in which social forces were gathering for the great campaign of 1896. Except for three new features--the railways, the trusts, and the trade unions--the subjects of debate among the people were the same as those that had engaged their attention since the foundation of the republic: the currency, the national debt, banking, the tariff, and taxation. =Debtors and the Fall in Prices.=--For many reasons the currency question occupied the center of interest. As of old, the farmers and planters of the West and South were heavily in debt to the East for borrowed money secured by farm mortgages; and they counted upon the sale of cotton, corn, wheat, and hogs to meet interest and principal when due. During the war, the Western farmers had been able to dispose of their produce at high prices and thus discharge their debts with comparative ease; but after the war prices declined. Wheat that sold at two dollars a bushel in 1865 brought sixty-four cents twenty years later. The meaning of this for the farmers in debt--and nearly three-fourths of them were in that class--can be shown by a single illustration. A thousand-dollar mortgage on a Western farm could be paid off by five hundred bushels of wheat when prices were high; whereas it took about fifteen hundred bushels to pay the same debt when wheat was at the bottom of the scale. For the farmer, it must be remembered, wheat was the measure of his labor, the product of his toil under the summer sun; and in its price he found the test of his prosperity. =Creditors and Falling Prices.=--To the bondholders or creditors, on the other hand, falling prices were clear gain. If a fifty-dollar coupon on a bond bought seventy or eighty bushels of wheat instead of twenty or thirty, the advantage to the owner of the coupon was obvious. Moreover the advantage seemed to him entirely just. Creditors had suffered heavy losses when the Civil War carried prices skyward while the interest rates on their old bonds remained stationary. For example, if a man had a $1000 bond issued before 1860 and paying interest at five per cent, he received fifty dollars a year from it. Before the war each dollar would buy a bushel of wheat; in 1865 it would only buy half a bushel. When prices--that is, the cost of living--began to go down, creditors therefore generally regarded the change with satisfaction as a return to normal conditions. =The Cause of Falling Prices.=--The fall in prices was due, no doubt, to many factors. Among them must be reckoned the discontinuance of government buying for war purposes, labor-saving farm machinery, immigration, and the opening of new wheat-growing regions. The currency, too, was an element in the situation. Whatever the cause, the discontented farmers believed that the way to raise prices was to issue more money. They viewed it as a case of supply and demand. If there was a small volume of currency in circulation, prices would be low; if there was a large volume, prices would be high. Hence they looked with favor upon all plans to increase the amount of money in circulation. First they advocated more paper notes--greenbacks--and then they turned to silver as the remedy. The creditors, on the other hand, naturally approved the reduction of the volume of currency. They wished to see the greenbacks withdrawn from circulation and gold--a metal more limited in volume than silver--made the sole basis of the national monetary system. =The Battle over the Greenbacks.=--The contest between these factions began as early as 1866. In that year, Congress enacted a law authorizing the Treasury to withdraw the greenbacks from circulation. The paper money party set up a shrill cry of protest, and kept up the fight until, in 1878, it forced Congress to provide for the continuous re-issue of the legal tender notes as they came into the Treasury in payment of taxes and other dues. Then could the friends of easy money rejoice: "Thou, Greenback, 'tis of thee Fair money of the free, Of thee we sing." =Resumption of Specie Payment.=--There was, however, another side to this victory. The opponents of the greenbacks, unable to stop the circulation of paper, induced Congress to pass a law in 1875 providing that on and after January 1, 1879, "the Secretary of the Treasury shall redeem in coin the United States legal tender notes then outstanding on their presentation at the office of the Assistant Treasurer of the United States in the City of New York in sums of not less than fifty dollars." "The way to resume," John Sherman had said, "is to resume." When the hour for redemption arrived, the Treasury was prepared with a large hoard of gold. "On the appointed day," wrote the assistant secretary, "anxiety reigned in the office of the Treasury. Hour after hour passed; no news from New York. Inquiry by wire showed that all was quiet. At the close of the day this message came: '$135,000 of notes presented for coin--$400,000 of gold for notes.' That was all. Resumption was accomplished with no disturbance. By five o'clock the news was all over the land, and the New York bankers were sipping their tea in absolute safety." =The Specie Problem--the Parity of Gold and Silver.=--Defeated in their efforts to stop "the present suicidal and destructive policy of contraction," the advocates of an abundant currency demanded an increase in the volume of silver in circulation. This precipitated one of the sharpest political battles in American history. The issue turned on legal as well as economic points. The Constitution gave Congress the power to coin money and it forbade the states to make anything but gold and silver legal tender in the payment of debts. It evidently contemplated the use of both metals in the currency system. Such, at least, was the view of many eminent statesmen, including no less a personage than James G. Blaine. The difficulty, however, lay in maintaining gold and silver coins on a level which would permit them to circulate with equal facility. Obviously, if the gold in a gold dollar exceeds the value of the silver in a silver dollar on the open market, men will hoard gold money and leave silver money in circulation. When, for example, Congress in 1792 fixed the ratio of the two metals at one to fifteen--one ounce of gold declared worth fifteen of silver--it was soon found that gold had been undervalued. When again in 1834 the ratio was put at one to sixteen, it was found that silver was undervalued. Consequently the latter metal was not brought in for coinage and silver almost dropped out of circulation. Many a silver dollar was melted down by silverware factories. =Silver Demonetized in 1873.=--So things stood in 1873. At that time, Congress, in enacting a mintage law, discontinued the coinage of the standard silver dollar, then practically out of circulation. This act was denounced later by the friends of silver as "the crime of '73," a conspiracy devised by the money power and secretly carried out. This contention the debates in Congress do not seem to sustain. In the course of the argument on the mint law it was distinctly said by one speaker at least: "This bill provides for the making of changes in the legal tender coin of the country and for substituting as legal tender, coin of only one metal instead of two as heretofore." =The Decline in the Value of Silver.=--Absorbed in the greenback controversy, the people apparently did not appreciate, at the time, the significance of the "demonetization" of silver; but within a few years several events united in making it the center of a political storm. Germany, having abandoned silver in 1871, steadily increased her demand for gold. Three years later, the countries of the Latin Union followed this example, thus helping to enhance the price of the yellow metal. All the while, new silver lodes, discovered in the Far West, were pouring into the market great streams of the white metal, bearing down the price. Then came the resumption of specie payment, which, in effect, placed the paper money on a gold basis. Within twenty years silver was worth in gold only about half the price of 1870. That there had been a real decline in silver was denied by the friends of that metal. They alleged that gold had gone up because it had been given a monopoly in the coinage markets of civilized governments. This monopoly, they continued, was the fruit of a conspiracy against the people conceived by the bankers of the world. Moreover, they went on, the placing of the greenbacks on a gold basis had itself worked a contraction of the currency; it lowered the prices of labor and produce to the advantage of the holders of long-term investments bearing a fixed rate of interest. When wheat sold at sixty-four cents a bushel, their search for relief became desperate, and they at last concentrated their efforts on opening the mints of the government for the free coinage of silver at the ratio of sixteen to one. =Republicans and Democrats Divided.=--On this question both Republicans and Democrats were divided, the line being drawn between the East on the one hand and the South and West on the other, rather than between the two leading parties. So trusted a leader as James G. Blaine avowed, in a speech delivered in the Senate in 1878, that, as the Constitution required Congress to make both gold and silver the money of the land, the only question left was that of fixing the ratio between them. He affirmed, moreover, the main contention of the silver faction that a reopening of the government mints of the world to silver would bring it up to its old relation with gold. He admitted also that their most ominous warnings were well founded, saying: "I believe the struggle now going on in this country and in other countries for a single gold standard would, if successful, produce widespread disaster throughout the commercial world. The destruction of silver as money and the establishment of gold as the sole unit of value must have a ruinous effect on all forms of property, except those investments which yield a fixed return." This was exactly the concession that the silver party wanted. "Three-fourths of the business enterprises of this country are conducted on borrowed capital," said Senator Jones, of Nevada. "Three-fourths of the homes and farms that stand in the names of the actual occupants have been bought on time and a very large proportion of them are mortgaged for the payment of some part of the purchase money. Under the operation of a shrinkage in the volume of money, this enormous mass of borrowers, at the maturity of their respective debts, though nominally paying no more than the amount borrowed, with interest, are in reality, in the amount of the principal alone, returning a percentage of value greater than they received--more in equity than they contracted to pay.... In all discussions of the subject the creditors attempt to brush aside the equities involved by sneering at the debtors." =The Silver Purchase Act (1878).=--Even before the actual resumption of specie payment, the advocates of free silver were a power to be reckoned with, particularly in the Democratic party. They had a majority in the House of Representatives in 1878 and they carried a silver bill through that chamber. Blocked by the Republican Senate they accepted a compromise in the Bland-Allison bill, which provided for huge monthly purchases of silver by the government for coinage into dollars. So strong was the sentiment that a two-thirds majority was mustered after President Hayes vetoed the measure. The effect of this act, as some had anticipated, was disappointing. It did not stay silver on its downward course. Thereupon the silver faction pressed through Congress in 1886 a bill providing for the issue of paper certificates based on the silver accumulated in the Treasury. Still silver continued to fall. Then the advocates of inflation declared that they would be content with nothing short of free coinage at the ratio of sixteen to one. If the issue had been squarely presented in 1890, there is good reason for believing that free silver would have received a majority in both houses of Congress; but it was not presented. =The Sherman Silver Purchase Act and the Bond Sales.=--Republican leaders, particularly from the East, stemmed the silver tide by a diversion of forces. They passed the Sherman Act of 1890 providing for large monthly purchases of silver and for the issue of notes redeemable in gold or silver at the discretion of the Secretary of the Treasury. In a clause of superb ambiguity they announced that it was "the established policy of the United States to maintain the two metals on a parity with each other upon the present legal ratio or such other ratio as may be provided by law." For a while silver was buoyed up. Then it turned once more on its downward course. In the meantime the Treasury was in a sad plight. To maintain the gold reserve, President Cleveland felt compelled to sell government bonds; and to his dismay he found that as soon as the gold was brought in at the front door of the Treasury, notes were presented for redemption and the gold was quickly carried out at the back door. Alarmed at the vicious circle thus created, he urged upon Congress the repeal of the Sherman Silver Purchase Act. For this he was roundly condemned by many of his own followers who branded his conduct as "treason to the party"; but the Republicans, especially from the East, came to his rescue and in 1893 swept the troublesome sections of the law from the statute book. The anger of the silver faction knew no bounds, and the leaders made ready for the approaching presidential campaign. THE PROTECTIVE TARIFF AND TAXATION =Fluctuation in Tariff Policy.=--As each of the old parties was divided on the currency question, it is not surprising that there was some confusion in their ranks over the tariff. Like the silver issue, the tariff tended to align the manufacturing East against the agricultural West and South rather than to cut directly between the two parties. Still the Republicans on the whole stood firmly by the rates imposed during the Civil War. If we except the reductions of 1872 which were soon offset by increases, we may say that those rates were substantially unchanged for nearly twenty years. When a revision was brought about, however, it was initiated by Republican leaders. Seeing a huge surplus of revenue in the Treasury in 1883, they anticipated popular clamor by revising the tariff on the theory that it ought to be reformed by its friends rather than by its enemies. On the other hand, it was the Republicans also who enacted the McKinley tariff bill of 1890, which carried protection to its highest point up to that time. The Democrats on their part were not all confirmed free traders or even advocates of tariff for revenue only. In Cleveland's first administration they did attack the protective system in the House, where they had a majority, and in this they were vigorously supported by the President. The assault, however, proved to be a futile gesture for it was blocked by the Republicans in the Senate. When, after the sweeping victory of 1892, the Democrats in the House again attempted to bring down the tariff by the Wilson bill of 1894, they were checkmated by their own party colleagues in the upper chamber. In the end they were driven into a compromise that looked more like a McKinley than a Calhoun tariff. The Republicans taunted them with being "babes in the woods." President Cleveland was so dissatisfied with the bill that he refused to sign it, allowing it to become a law, on the lapse of ten days, without his approval. =The Income Tax of 1894.=--The advocates of tariff reduction usually associated with their proposal a tax on incomes. The argument which they advanced in support of their program was simple. Most of the industries, they said, are in the East and the protective tariff which taxes consumers for the benefit of manufacturers is, in effect, a tribute laid upon the rest of the country. As an offset they offered a tax on large incomes; this owing to the heavy concentration of rich people in the East, would fall mainly upon the beneficiaries of protection. "We propose," said one of them, "to place a part of the burden upon the accumulated wealth of the country instead of placing it all upon the consumption of the people." In this spirit the sponsors of the Wilson tariff bill laid a tax upon all incomes of $4000 a year or more. In taking this step, the Democrats encountered opposition in their own party. Senator Hill, of New York, turned fiercely upon them, exclaiming: "The professors with their books, the socialists with their schemes, the anarchists with their bombs are all instructing the people in the ... principles of taxation." Even the Eastern Republicans were hardly as savage in their denunciation of the tax. But all this labor was wasted. The next year the Supreme Court of the United States declared the income tax to be a direct tax, and therefore null and void because it was laid on incomes wherever found and not apportioned among the states according to population. The fact that four of the nine judges dissented from this decision was also an index to the diversity of opinion that divided both parties. THE RAILWAYS AND TRUSTS =The Grangers and State Regulation.=--The same uncertainty about the railways and trusts pervaded the ranks of the Republicans and Democrats. As to the railways, the first firm and consistent demand for their regulation came from the West. There the farmers, in the early seventies, having got control in state legislatures, particularly in Iowa, Wisconsin, and Illinois, enacted drastic laws prescribing the maximum charges which companies could make for carrying freight and passengers. The application of these measures, however, was limited because the state could not fix the rates for transporting goods and passengers beyond its own borders. The power of regulating interstate commerce, under the Constitution, belonged to Congress. =The Interstate Commerce Act of 1887.=--Within a few years, the movement which had been so effective in western legislatures appeared at Washington in the form of demands for the federal regulation of interstate rates. In 1887, the pressure became so strong that Congress created the interstate commerce commission and forbade many abuses on the part of railways; such as discriminating in charges between one shipper and another and granting secret rebates to favored persons. This law was a significant beginning; but it left the main question of rate-fixing untouched, much to the discontent of farmers and shippers. =The Sherman Anti-Trust Law of 1890.=--As in the case of the railways, attacks upon the trusts were first made in state legislatures, where it became the fashion to provide severe penalties for those who formed monopolies and "conspired to enhance prices." Republicans and Democrats united in the promotion of measures of this kind. As in the case of the railways also, the movement to curb the trusts soon had spokesmen at Washington. Though Blaine had declared that "trusts were largely a private affair with which neither the President nor any private citizen had any particular right to interfere," it was a Republican Congress that enacted in 1890 the first measure--the Sherman Anti-Trust Law--directed against great combinations in business. This act declared illegal "every contract, combination in the form of trust or otherwise, or conspiracy in restraint of trade and commerce among the several states or with foreign nations." =The Futility of the Anti-Trust Law.=--Whether the Sherman law was directed against all combinations or merely those which placed an "unreasonable restraint" on trade and competition was not apparent. Senator Platt of Connecticut, a careful statesman of the old school, averred: "The questions of whether the bill would be operative, of how it would operate, or whether it was within the power of Congress to enact it, have been whistled down the wind in this Senate as idle talk and the whole effort has been to get some bill headed: 'A bill to punish trusts,' with which to go to the country." Whatever its purpose, its effect upon existing trusts and upon the formation of new combinations was negligible. It was practically unenforced by President Harrison and President Cleveland, in spite of the constant demand for harsh action against "monopolies." It was patent that neither the Republicans nor the Democrats were prepared for a war on the trusts to the bitter end. THE MINOR PARTIES AND UNREST =The Demands of Dissenting Parties.=--From the election of 1872, when Horace Greeley made his ill-fated excursion into politics, onward, there appeared in each presidential campaign one, and sometimes two or more parties, stressing issues that appealed mainly to wage-earners and farmers. Whether they chose to call themselves Labor Reformers, Greenbackers, or Anti-monopolists, their slogans and their platforms all pointed in one direction. Even the Prohibitionists, who in 1872 started on their career with a single issue, the abolition of the liquor traffic, found themselves making declarations of faith on other matters and hopelessly split over the money question in 1896. A composite view of the platforms put forth by the dissenting parties from the administration of Grant to the close of Cleveland's second term reveals certain notions common to them all. These included among many others: the earliest possible payment of the national debt; regulation of the rates of railways and telegraph companies; repeal of the specie resumption act of 1875; the issue of legal tender notes by the government convertible into interest-bearing obligations on demand; unlimited coinage of silver as well as gold; a graduated inheritance tax; legislation to take from "land, railroad, money, and other gigantic corporate monopolies ... the powers they have so corruptly and unjustly usurped"; popular or direct election of United States Senators; woman suffrage; and a graduated income tax, "placing the burden of government on those who can best afford to pay instead of laying it on the farmers and producers." =Criticism of the Old Parties.=--To this long program of measures the reformers added harsh and acrid criticism of the old parties and sometimes, it must be said, of established institutions of government. "We denounce," exclaimed the Labor party in 1888, "the Democratic and Republican parties as hopelessly and shamelessly corrupt and by reason of their affiliation with monopolies equally unworthy of the suffrages of those who do not live upon public plunder." "The United States Senate," insisted the Greenbackers, "is a body composed largely of aristocratic millionaires who according to their own party papers generally purchased their elections in order to protect the great monopolies which they represent." Indeed, if their platforms are to be accepted at face value, the Greenbackers believed that the entire government had passed out of the hands of the people. =The Grangers.=--This unsparing, not to say revolutionary, criticism of American political life, appealed, it seems, mainly to farmers in the Middle West. Always active in politics, they had, before the Civil War, cast their lot as a rule with one or the other of the leading parties. In 1867, however, there grew up among them an association known as the "Patrons of Husbandry," which was destined to play a large role in the partisan contests of the succeeding decades. This society, which organized local lodges or "granges" on principles of secrecy and fraternity, was originally designed to promote in a general way the interests of the farmers. Its political bearings were apparently not grasped at first by its promoters. Yet, appealing as it did to the most active and independent spirits among the farmers and gathering to itself the strength that always comes from organization, it soon found itself in the hands of leaders more or less involved in politics. Where a few votes are marshaled together in a democracy, there is power. =The Greenback Party.=--The first extensive activity of the Grangers was connected with the attack on the railways in the Middle West which forced several state legislatures to reduce freight and passenger rates by law. At the same time, some leaders in the movement, no doubt emboldened by this success, launched in 1876 a new political party, popularly known as the Greenbackers, favoring a continued re-issue of the legal tenders. The beginnings were disappointing; but two years later, in the congressional elections, the Greenbackers swept whole sections of the country. Their candidates polled more than a million votes and fourteen of them were returned to the House of Representatives. To all outward signs a new and formidable party had entered the lists. The sanguine hopes of the leaders proved to be illusory. The quiet operations of the resumption act the following year, a revival of industry from a severe panic which had set in during 1873, the Silver Purchase Act, and the re-issue of Greenbacks cut away some of the grounds of agitation. There was also a diversion of forces to the silver faction which had a substantial support in the silver mine owners of the West. At all events the Greenback vote fell to about 300,000 in the election of 1880. A still greater drop came four years later and the party gave up the ghost, its sponsors returning to their former allegiance or sulking in their tents. =The Rise of the Populist Party.=--Those leaders of the old parties who now looked for a happy future unvexed by new factions were doomed to disappointment. The funeral of the Greenback party was hardly over before there arose two other political specters in the agrarian sections: the National Farmers' Alliance and Industrial Union, particularly strong in the South and West; and the Farmers' Alliance, operating in the North. By 1890 the two orders claimed over three million members. As in the case of the Grangers many years before, the leaders among them found an easy way into politics. In 1892 they held a convention, nominated a candidate for President, and adopted the name of "People's Party," from which they were known as Populists. Their platform, in every line, breathed a spirit of radicalism. They declared that "the newspapers are largely subsidized or muzzled; public opinion silenced; business prostrate; our homes covered with mortgages; and the land concentrating in the hands of capitalists.... The fruits of the toil of millions are boldly stolen to build up colossal fortunes for a few." Having delivered this sweeping indictment, the Populists put forward their remedies: the free coinage of silver, a graduated income tax, postal savings banks, and government ownership of railways and telegraphs. At the same time they approved the initiative, referendum, and popular election of Senators, and condemned the use of federal troops in labor disputes. On this platform, the Populists polled over a million votes, captured twenty-two presidential electors, and sent a powerful delegation to Congress. =Industrial Distress Augments Unrest.=--The four years intervening between the campaign of 1892 and the next presidential election brought forth many events which aggravated the ill-feeling expressed in the portentous platform of Populism. Cleveland, a consistent enemy of free silver, gave his powerful support to the gold standard and insisted on the repeal of the Silver Purchase Act, thus alienating an increasing number of his own party. In 1893 a grave industrial crisis fell upon the land: banks and business houses went into bankruptcy with startling rapidity; factories were closed; idle men thronged the streets hunting for work; and the prices of wheat and corn dropped to a ruinous level. Labor disputes also filled the crowded record. A strike at the Pullman car works in Chicago spread to the railways. Disorders ensued. President Cleveland, against the protests of the governor of Illinois, John P. Altgeld, dispatched troops to the scene of action. The United States district court at Chicago issued an injunction forbidding the president of the Railway Union, Eugene V. Debs, or his assistants to interfere with the transmission of the mails or interstate commerce in any form. For refusing to obey the order, Debs was arrested and imprisoned. With federal troops in possession of the field, with their leader in jail, the strikers gave up the battle, defeated but not subdued. To cap the climax the Supreme Court of the United States, the following year (1895) declared null and void the income tax law just enacted by Congress, thus fanning the flames of Populist discontent all over the West and South. THE SOUND MONEY BATTLE OF 1896 =Conservative Men Alarmed.=--Men of conservative thought and leaning in both parties were by this time thoroughly disturbed. They looked upon the rise of Populism and the growth of labor disputes as the signs of a revolutionary spirit, indeed nothing short of a menace to American institutions and ideals. The income tax law of 1894, exclaimed the distinguished New York advocate, Joseph H. Choate, in an impassioned speech before the Supreme Court, "is communistic in its purposes and tendencies and is defended here upon principles as communistic, socialistic--what shall I call them--populistic as ever have been addressed to any political assembly in the world." Mr. Justice Field in the name of the Court replied: "The present assault upon capital is but the beginning. It will be but the stepping stone to others larger and more sweeping till our political conditions will become a war of the poor against the rich." In declaring the income tax unconstitutional, he believed that he was but averting greater evils lurking under its guise. As for free silver, nearly all conservative men were united in calling it a measure of confiscation and repudiation; an effort of the debtors to pay their obligations with money worth fifty cents on the dollar; the climax of villainies openly defended; a challenge to law, order, and honor. =The Republicans Come Out for the Gold Standard.=--It was among the Republicans that this opinion was most widely shared and firmly held. It was they who picked up the gauge thrown down by the Populists, though a host of Democrats, like Cleveland and Hill of New York, also battled against the growing Populist defection in Democratic ranks. When the Republican national convention assembled in 1896, the die was soon cast; a declaration of opposition to free silver save by international agreement was carried by a vote of eight to one. The Republican party, to use the vigorous language of Mr. Lodge, arrayed itself against "not only that organized failure, the Democratic party, but all the wandering forces of political chaos and social disorder ... in these bitter times when the forces of disorder are loose and the wreckers with their false lights gather at the shore to lure the ship of state upon the rocks." Yet it is due to historic truth to state that McKinley, whom the Republicans nominated, had voted in Congress for the free coinage of silver, was widely known as a bimetallist, and was only with difficulty persuaded to accept the unequivocal indorsement of the gold standard which was pressed upon him by his counselors. Having accepted it, however, he proved to be a valiant champion, though his major interest was undoubtedly in the protective tariff. To him nothing was more reprehensible than attempts "to array class against class, 'the classes against the masses,' section against section, labor against capital, 'the poor against the rich,' or interest against interest." Such was the language of his acceptance speech. The whole program of Populism he now viewed as a "sudden, dangerous, and revolutionary assault upon law and order." =The Democratic Convention at Chicago.=--Never, save at the great disruption on the eve of the Civil War, did a Democratic national convention display more feeling than at Chicago in 1896. From the opening prayer to the last motion before the house, every act, every speech, every scene, every resolution evoked passions and sowed dissensions. Departing from long party custom, it voted down in anger a proposal to praise the administration of the Democratic President, Cleveland. When the platform with its radical planks, including free silver, was reported, a veritable storm broke. Senator Hill, trembling with emotion, protested against the departure from old tests of Democratic allegiance; against principles that must drive out of the party men who had grown gray in its service; against revolutionary, unwise, and unprecedented steps in the history of the party. Senator Vilas of Wisconsin, in great fervor, avowed that there was no difference in principle between the free coinage of silver--"the confiscation of one-half of the credits of the nation for the benefit of debtors"--and communism itself--"a universal distribution of property." In the triumph of that cause he saw the beginning of "the overthrow of all law, all justice, all security and repose in the social order." [Illustration: _Copyright by Underwood and Underwood, N.Y._ WILLIAM J. BRYAN IN 1898] =The Crown of Thorns Speech.=--The champions of free silver replied in strident tones. They accused the gold advocates of being the aggressors who had assailed the labor and the homes of the people. William Jennings Bryan, of Nebraska, voiced their sentiments in a memorable oration. He declared that their cause "was as holy as the cause of liberty--the cause of humanity." He exclaimed that the contest was between the idle holders of idle capital and the toiling millions. Then he named those for whom he spoke--the wage-earner, the country lawyer, the small merchant, the farmer, and the miner. "The man who is employed for wages is as much a business man as his employer. The attorney in a country town is as much a business man as the corporation counsel in a great metropolis. The merchant at the cross roads store is as much a business man as the merchant of New York. The farmer ... is as much a business man as the man who goes upon the board of trade and bets upon the price of grain. The miners who go a thousand feet into the earth or climb two thousand feet upon the cliffs ... are as much business men as the few financial magnates who in a back room corner the money of the world.... It is for these that we speak. We do not come as aggressors. Ours is not a war of conquest. We are fighting in defense of our homes, our families, and our posterity. We have petitioned and our petitions have been scorned. We have entreated and our entreaties have been disregarded. We have begged and they have mocked when our calamity came. We beg no longer; we entreat no more; we petition no more. We defy them.... We shall answer their demands for a gold standard by saying to them, 'You shall not press upon the brow of labor this crown of thorns. You shall not crucify mankind upon a cross of gold.'" =Bryan Nominated.=--In all the history of national conventions never had an orator so completely swayed a multitude; not even Yancey in his memorable plea in the Charleston convention of 1860 when, with grave and moving eloquence, he espoused the Southern cause against the impending fates. The delegates, after cheering Mr. Bryan until they could cheer no more, tore the standards from the floor and gathered around the Nebraska delegation to renew the deafening applause. The platform as reported was carried by a vote of two to one and the young orator from the West, hailed as America's Tiberius Gracchus, was nominated as the Democratic candidate for President. The South and West had triumphed over the East. The division was sectional, admittedly sectional--the old combination of power which Calhoun had so anxiously labored to build up a century earlier. The Gold Democrats were repudiated in terms which were clear to all. A few, unable to endure the thought of voting the Republican ticket, held a convention at Indianapolis where, with the sanction of Cleveland, they nominated candidates of their own and endorsed the gold standard in a forlorn hope. =The Democratic Platform.=--It was to the call from Chicago that the Democrats gave heed and the Republicans made answer. The platform on which Mr. Bryan stood, unlike most party manifestoes, was explicit in its language and its appeal. It denounced the practice of allowing national banks to issue notes intended to circulate as money on the ground that it was "in derogation of the Constitution," recalling Jackson's famous attack on the Bank in 1832. It declared that tariff duties should be laid "for the purpose of revenue"--Calhoun's doctrine. In demanding the free coinage of silver, it recurred to the practice abandoned in 1873. The income tax came next on the program. The platform alleged that the law of 1894, passed by a Democratic Congress, was "in strict pursuance of the uniform decisions of the Supreme Court for nearly a hundred years," and then hinted that the decision annulling the law might be reversed by the same body "as it may hereafter be constituted." The appeal to labor voiced by Mr. Bryan in his "crown of thorns" speech was reinforced in the platform. "As labor creates the wealth of the country," ran one plank, "we demand the passage of such laws as may be necessary to protect it in all its rights." Referring to the recent Pullman strike, the passions of which had not yet died away, the platform denounced "arbitrary interference by federal authorities in local affairs as a violation of the Constitution of the United States and a crime against free institutions." A special objection was lodged against "government by injunction as a new and highly dangerous form of oppression by which federal judges, in contempt of the laws of states and rights of citizens, become at once legislators, judges, and executioners." The remedy advanced was a federal law assuring trial by jury in all cases of contempt in labor disputes. Having made this declaration of faith, the Democrats, with Mr. Bryan at the head, raised their standard of battle. =The Heated Campaign.=--The campaign which ensued outrivaled in the range of its educational activities and the bitterness of its tone all other political conflicts in American history, not excepting the fateful struggle of 1860. Immense sums of money were contributed to the funds of both parties. Railway, banking, and other corporations gave generously to the Republicans; the silver miners, less lavishly but with the same anxiety, supported the Democrats. The country was flooded with pamphlets, posters, and handbills. Every public forum, from the great auditoriums of the cities to the "red schoolhouses" on the countryside, was occupied by the opposing forces. Mr. Bryan took the stump himself, visiting all parts of the country in special trains and addressing literally millions of people in the open air. Mr. McKinley chose the older and more formal plan. He received delegations at his home in Canton and discussed the issues of the campaign from his front porch, leaving to an army of well-organized orators the task of reaching the people in their home towns. Parades, processions, and monster demonstrations filled the land with politics. Whole states were polled in advance by the Republicans and the doubtful voters personally visited by men equipped with arguments and literature. Manufacturers, frightened at the possibility of disordered public credit, announced that they would close their doors if the Democrats won the election. Men were dismissed from public and private places on account of their political views, one eminent college president being forced out for advocating free silver. The language employed by impassioned and embittered speakers on both sides roused the public to a state of frenzy, once more showing the lengths to which men could go in personal and political abuse. =The Republican Victory.=--The verdict of the nation was decisive. McKinley received 271 of the 447 electoral votes, and 7,111,000 popular votes as against Bryan's 6,509,000. The congressional elections were equally positive although, on account of the composition of the Senate, the "hold-over" Democrats and Populists still enjoyed a power out of proportion to their strength as measured at the polls. Even as it was, the Republicans got full control of both houses--a dominion of the entire government which they were to hold for fourteen years--until the second half of Mr. Taft's administration, when they lost possession of the House of Representatives. The yoke of indecision was broken. The party of sound finance and protective tariffs set out upon its lease of power with untroubled assurance. REPUBLICAN MEASURES AND RESULTS =The Gold Standard and the Tariff.=--Yet strange as it may seem, the Republicans did not at once enact legislation making the gold dollar the standard for the national currency. Not until 1900 did they take that positive step. In his first inaugural President McKinley, as if still uncertain in his own mind or fearing a revival of the contest just closed, placed the tariff, not the money question, in the forefront. "The people have decided," he said, "that such legislation should be had as will give ample protection and encouragement to the industries and development of our country." Protection for American industries, therefore, he urged, is the task before Congress. "With adequate revenue secured, but not until then, we can enter upon changes in our fiscal laws." As the Republicans had only forty-six of the ninety Senators, and at least four of them were known advocates of free silver, the discretion exercised by the President in selecting the tariff for congressional debate was the better part of valor. Congress gave heed to the warning. Under the direction of Nelson P. Dingley, whose name was given to the bill, a tariff measure levying the highest rates yet laid in the history of American imposts was prepared and driven through the House of Representatives. The opposition encountered in the Senate, especially from the West, was overcome by concessions in favor of that section; but the duties on sugar, tin, steel, lumber, hemp, and in fact all of the essential commodities handled by combinations and trusts, were materially raised. [Illustration: _Copyright by Underwood and Underwood, N.Y._ PRESIDENT MCKINLEY AND HIS CABINET] =Growth of Combinations.=--The years that followed the enactment of the Dingley law were, whatever the cause, the most prosperous the country had witnessed for many a decade. Industries of every kind were soon running full blast; labor was employed; commerce spread more swiftly than ever to the markets of the world. Coincident with this progress was the organization of the greatest combinations and trusts the world had yet seen. In 1899 the smelters formed a trust with a capital of $65,000,000; in the same year the Standard Oil Company with a capital of over one hundred millions took the place of the old trust; and the Copper Trust was incorporated under the laws of New Jersey, its par value capital being fixed shortly afterward at $175,000,000. A year later the National Sugar Refining Company, of New Jersey, started with a capital of $90,000,000, adopting the policy of issuing to the stockholders no public statement of its earnings or financial condition. Before another twelvemonth had elapsed all previous corporate financing was reduced to small proportions by the flotation of the United States Steel Corporation with a capital of more than a billion dollars, an enterprise set in motion by the famous Morgan banking house of New York. In nearly all these gigantic undertakings, the same great leaders in finance were more or less intimately associated. To use the language of an eminent authority: "They are all allied and intertwined by their various mutual interests. For instance, the Pennsylvania Railroad interests are on the one hand allied with the Vanderbilts and on the other with the Rockefellers. The Vanderbilts are closely allied with the Morgan group.... Viewed as a whole we find the dominating influences in the trusts to be made up of a network of large and small capitalists, many allied to one another by ties of more or less importance, but all being appendages to or parts of the greater groups which are themselves dependent on and allied with the two mammoth or Rockefeller and Morgan groups. These two mammoth groups jointly ... constitute the heart of the business and commercial life of the nation." Such was the picture of triumphant business enterprise drawn by a financier within a few years after the memorable campaign of 1896. America had become one of the first workshops of the world. It was, by virtue of the closely knit organization of its business and finance, one of the most powerful and energetic leaders in the struggle of the giants for the business of the earth. The capital of the Steel Corporation alone was more than ten times the total national debt which the apostles of calamity in the days of Washington and Hamilton declared the nation could never pay. American industry, filling domestic markets to overflowing, was ready for new worlds to conquer. =References= F.W. Taussig, _Tariff History of the United States_. J.L. Laughlin, _Bimetallism in the United States_. A.B. Hepburn, _History of Coinage and Currency in the United States_. E.R.A. Seligman, _The Income Tax_. S.J. Buck, _The Granger Movement_ (Harvard Studies). F.H. Dixon, _State Railroad Control_. H.R. Meyer, _Government Regulation of Railway Rates_. W.Z. Ripley (editor), _Trusts, Pools, and Corporations_. R.T. Ely, _Monopolies and Trusts_. J.B. Clark, _The Control of Trusts_. =Questions= 1. What proof have we that the political parties were not clearly divided over issues between 1865 and 1896? 2. Why is a fall in prices a loss to farmers and a gain to holders of fixed investments? 3. Explain the theory that the quantity of money determines the prices of commodities. 4. Why was it difficult, if not impossible, to keep gold and silver at a parity? 5. What special conditions favored a fall in silver between 1870 and 1896? 6. Describe some of the measures taken to raise the value of silver. 7. Explain the relation between the tariff and the income tax in 1894. 8. How did it happen that the farmers led in regulating railway rates? 9. Give the terms of the Sherman Anti-Trust Act. What was its immediate effect? 10. Name some of the minor parties. Enumerate the reforms they advocated. 11. Describe briefly the experiments of the farmers in politics. 12. How did industrial conditions increase unrest? 13. Why were conservative men disturbed in the early nineties? 14. Explain the Republican position in 1896. 15. Give Mr. Bryan's doctrines in 1896. Enumerate the chief features of the Democratic platform. 16. What were the leading measures adopted by the Republicans after their victory in 1896? =Research Topics= =Greenbacks and Resumption.=--Dewey, _Financial History of the United States_ (6th ed.), Sections 122-125, 154, and 378; MacDonald, _Documentary Source Book of American History_, pp. 446, 566; Hart, _American History Told by Contemporaries_, Vol. IV, pp. 531-533; Rhodes, _History of the United States_, Vol. VIII, pp. 97-101. =Demonetization and Coinage of Silver.=--Dewey, _Financial History_, Sections 170-173, 186, 189, 194; MacDonald, _Documentary Source Book_, pp. 174, 573, 593, 595; Hart, _Contemporaries_, Vol. IV, pp. 529-531; Rhodes, _History_, Vol. VIII, pp. 93-97. =Free Silver and the Campaign of 1896.=--Dewey, _National Problems_ (American Nation Series), pp. 220-237, 314-328; Hart, _Contemporaries_, Vol. IV, pp. 533-538. =Tariff Revision.=--Dewey, _Financial History_, Sections 167, 180, 181, 187, 192, 196; Hart, _Contemporaries_, Vol. IV, pp. 518-525; Rhodes, _History_, Vol. VIII, pp. 168-179, 346-351, 418-422. =Federal Regulation of Railways.=--Dewey, _National Problems_, pp. 91-111; MacDonald, _Documentary Source Book_, pp. 581-590; Hart, _Contemporaries_, Vol. IV, pp. 521-523; Rhodes, _History_, Vol. VIII, pp. 288-292. =The Rise and Regulation of Trusts.=--Dewey, _National Problems_, pp. 188-202; MacDonald, _Documentary Source Book_, pp. 591-593. =The Grangers and Populism.=--Paxson, _The New Nation_ (Riverside Series), pp. 20-37, 177-191, 208-223. =General Analysis of Domestic Problems.=--_Syllabus in History_ (New York State, 1920), pp. 137-142. CHAPTER XX AMERICA A WORLD POWER (1865-1900) It has now become a fashion, sanctioned by wide usage and by eminent historians, to speak of America, triumphant over Spain and possessed of new colonies, as entering the twentieth century in the role of "a world power," for the first time. Perhaps at this late day, it is useless to protest against the currency of the idea. Nevertheless, the truth is that from the fateful moment in March, 1775, when Edmund Burke unfolded to his colleagues in the British Parliament the resources of an invincible America, down to the settlement at Versailles in 1919 closing the drama of the World War, this nation has been a world power, influencing by its example, by its institutions, by its wealth, trade, and arms the course of international affairs. And it should be said also that neither in the field of commercial enterprise nor in that of diplomacy has it been wanting in spirit or ingenuity. When John Hay, Secretary of State, heard that an American citizen, Perdicaris, had been seized by Raisuli, a Moroccan bandit, in 1904, he wired his brusque message: "We want Perdicaris alive or Raisuli dead." This was but an echo of Commodore Decatur's equally characteristic answer, "Not a minute," given nearly a hundred years before to the pirates of Algiers begging for time to consider whether they would cease preying upon American merchantmen. Was it not as early as 1844 that the American commissioner, Caleb Cushing, taking advantage of the British Opium War on China, negotiated with the Celestial Empire a successful commercial treaty? Did he not then exultantly exclaim: "The laws of the Union follow its citizens and its banner protects them even within the domain of the Chinese Empire"? Was it not almost half a century before the battle of Manila Bay in 1898, that Commodore Perry with an adequate naval force "gently coerced Japan into friendship with us," leading all the nations of the earth in the opening of that empire to the trade of the Occident? Nor is it inappropriate in this connection to recall the fact that the Monroe Doctrine celebrates in 1923 its hundredth anniversary. AMERICAN FOREIGN RELATIONS (1865-98) =French Intrigues in Mexico Blocked.=--Between the war for the union and the war with Spain, the Department of State had many an occasion to present the rights of America among the powers of the world. Only a little while after the civil conflict came to a close, it was called upon to deal with a dangerous situation created in Mexico by the ambitions of Napoleon III. During the administration of Buchanan, Mexico had fallen into disorder through the strife of the Liberal and the Clerical parties; the President asked for authority to use American troops to bring to a peaceful haven "a wreck upon the ocean, drifting about as she is impelled by different factions." Our own domestic crisis then intervened. Observing the United States heavily involved in its own problems, the great powers, England, France, and Spain, decided in the autumn of 1861 to take a hand themselves in restoring order in Mexico. They entered into an agreement to enforce the claims of their citizens against Mexico and to protect their subjects residing in that republic. They invited the United States to join them, and, on meeting a polite refusal, they prepared for a combined military and naval demonstration on their own account. In the midst of this action England and Spain, discovering the sinister purposes of Napoleon, withdrew their troops and left the field to him. The French Emperor, it was well known, looked with jealousy upon the growth of the United States and dreamed of establishing in the Western hemisphere an imperial power to offset the American republic. Intervention to collect debts was only a cloak for his deeper designs. Throwing off that guise in due time, he made the Archduke Maximilian, a brother of the ruler of Austria, emperor in Mexico, and surrounded his throne by French soldiers, in spite of all protests. This insolent attack upon the Mexican republic, deeply resented in the United States, was allowed to drift in its course until 1865. At that juncture General Sheridan was dispatched to the Mexican border with a large armed force; General Grant urged the use of the American army to expel the French from this continent. The Secretary of State, Seward, counseled negotiation first, and, applying the Monroe Doctrine, was able to prevail upon Napoleon III to withdraw his troops. Without the support of French arms, the sham empire in Mexico collapsed like a house of cards and the unhappy Maximilian, the victim of French ambition and intrigue, met his death at the hands of a Mexican firing squad. =Alaska Purchased.=--The Mexican affair had not been brought to a close before the Department of State was busy with negotiations which resulted in the purchase of Alaska from Russia. The treaty of cession, signed on March 30, 1867, added to the United States a domain of nearly six hundred thousand square miles, a territory larger than Texas and nearly three-fourths the size of the Louisiana purchase. Though it was a distant colony separated from our continental domain by a thousand miles of water, no question of "imperialism" or "colonization foreign to American doctrines" seems to have been raised at the time. The treaty was ratified promptly by the Senate. The purchase price, $7,200,000, was voted by the House of Representatives after the display of some resentment against a system that compelled it to appropriate money to fulfill an obligation which it had no part in making. Seward, who formulated the treaty, rejoiced, as he afterwards said, that he had kept Alaska out of the hands of England. =American Interest in the Caribbean.=--Having achieved this diplomatic triumph, Seward turned to the increase of American power in another direction. He negotiated, with Denmark, a treaty providing for the purchase of the islands of St. John and St. Thomas in the West Indies, strategic points in the Caribbean for sea power. This project, long afterward brought to fruition by other men, was defeated on this occasion by the refusal of the Senate to ratify the treaty. Evidently it was not yet prepared to exercise colonial dominion over other races. Undaunted by the misadventure in Caribbean policies, President Grant warmly advocated the acquisition of Santo Domingo. This little republic had long been in a state of general disorder. In 1869 a treaty of annexation was concluded with its president. The document Grant transmitted to the Senate with his cordial approval, only to have it rejected. Not at all changed in his opinion by the outcome of his effort, he continued to urge the subject of annexation. Even in his last message to Congress he referred to it, saying that time had only proved the wisdom of his early course. The addition of Santo Domingo to the American sphere of protection was the work of a later generation. The State Department, temporarily checked, had to bide its time. =The _Alabama_ Claims Arbitrated.=--Indeed, it had in hand a far more serious matter, a vexing issue that grew out of Civil War diplomacy. The British government, as already pointed out in other connections, had permitted Confederate cruisers, including the famous _Alabama_, built in British ports, to escape and prey upon the commerce of the Northern states. This action, denounced at the time by our government as a grave breach of neutrality as well as a grievous injury to American citizens, led first to remonstrances and finally to repeated claims for damages done to American ships and goods. For a long time Great Britain was firm. Her foreign secretary denied all obligations in the premises, adding somewhat curtly that "he wished to say once for all that Her Majesty's government disclaimed any responsibility for the losses and hoped that they had made their position perfectly clear." Still President Grant was not persuaded that the door of diplomacy, though closed, was barred. Hamilton Fish, his Secretary of State, renewed the demand. Finally he secured from the British government in 1871 the treaty of Washington providing for the arbitration not merely of the _Alabama_ and other claims but also all points of serious controversy between the two countries. The tribunal of arbitration thus authorized sat at Geneva in Switzerland, and after a long and careful review of the arguments on both sides awarded to the United States the lump sum of $15,500,000 to be distributed among the American claimants. The damages thus allowed were large, unquestionably larger than strict justice required and it is not surprising that the decision excited much adverse comment in England. Nevertheless, the prompt payment by the British government swept away at once a great cloud of ill-feeling in America. Moreover, the spectacle of two powerful nations choosing the way of peaceful arbitration to settle an angry dispute seemed a happy, if illusory, omen of a modern method for avoiding the arbitrament of war. =Samoa.=--If the Senate had its doubts at first about the wisdom of acquiring strategic points for naval power in distant seas, the same could not be said of the State Department or naval officers. In 1872 Commander Meade, of the United States navy, alive to the importance of coaling stations even in mid-ocean, made a commercial agreement with the chief of Tutuila, one of the Samoan Islands, far below the equator, in the southern Pacific, nearer to Australia than to California. This agreement, providing among other things for our use of the harbor of Pago Pago as a naval base, was six years later changed into a formal treaty ratified by the Senate. Such enterprise could not escape the vigilant eyes of England and Germany, both mindful of the course of the sea power in history. The German emperor, seizing as a pretext a quarrel between his consul in the islands and a native king, laid claim to an interest in the Samoan group. England, aware of the dangers arising from German outposts in the southern seas so near to Australia, was not content to stand aside. So it happened that all three countries sent battleships to the Samoan waters, threatening a crisis that was fortunately averted by friendly settlement. If, as is alleged, Germany entertained a notion of challenging American sea power then and there, the presence of British ships must have dispelled that dream. The result of the affair was a tripartite agreement by which the three powers in 1889 undertook a protectorate over the islands. But joint control proved unsatisfactory. There was constant friction between the Germans and the English. The spheres of authority being vague and open to dispute, the plan had to be abandoned at the end of ten years. England withdrew altogether, leaving to Germany all the islands except Tutuila, which was ceded outright to the United States. Thus one of the finest harbors in the Pacific, to the intense delight of the American navy, passed permanently under American dominion. Another triumph in diplomacy was set down to the credit of the State Department. =Cleveland and the Venezuela Affair.=--In the relations with South America, as well as in those with the distant Pacific, the diplomacy of the government at Washington was put to the test. For some time it had been watching a dispute between England and Venezuela over the western boundary of British Guiana and, on an appeal from Venezuela, it had taken a lively interest in the contest. In 1895 President Cleveland saw that Great Britain would yield none of her claims. After hearing the arguments of Venezuela, his Secretary of State, Richard T. Olney, in a note none too conciliatory, asked the British government whether it was willing to arbitrate the points in controversy. This inquiry he accompanied by a warning to the effect that the United States could not permit any European power to contest its mastery in this hemisphere. "The United States," said the Secretary, "is practically sovereign on this continent and its fiat is law upon the subjects to which it confines its interposition.... Its infinite resources, combined with its isolated position, render it master of the situation and practically invulnerable against any or all other powers." The reply evoked from the British government by this strong statement was firm and clear. The Monroe Doctrine, it said, even if not so widely stretched by interpretation, was not binding in international law; the dispute with Venezuela was a matter of interest merely to the parties involved; and arbitration of the question was impossible. This response called forth President Cleveland's startling message of 1895. He asked Congress to create a commission authorized to ascertain by researches the true boundary between Venezuela and British Guiana. He added that it would be the duty of this country "to resist by every means in its power, as a willful aggression upon its rights and interests, the appropriation by Great Britain of any lands or the exercise of governmental jurisdiction over any territory which, after investigation, we have determined of right belongs to Venezuela." The serious character of this statement he thoroughly understood. He declared that he was conscious of his responsibilities, intimating that war, much as it was to be deplored, was not comparable to "a supine submission to wrong and injustice and the consequent loss of national self-respect and honor." [Illustration: GROVER CLEVELAND] The note of defiance which ran through this message, greeted by shrill cries of enthusiasm in many circles, was viewed in other quarters as a portent of war. Responsible newspapers in both countries spoke of an armed settlement of the dispute as inevitable. Congress created the commission and appropriated money for the investigation; a body of learned men was appointed to determine the merits of the conflicting boundary claims. The British government, deaf to the clamor of the bellicose section of the London press, deplored the incident, courteously replied in the affirmative to a request for assistance in the search for evidence, and finally agreed to the proposition that the issue be submitted to arbitration. The outcome of this somewhat perilous dispute contributed not a little to Cleveland's reputation as "a sterling representative of the true American spirit." This was not diminished when the tribunal of arbitration found that Great Britain was on the whole right in her territorial claims against Venezuela. =The Annexation of Hawaii.=--While engaged in the dangerous Venezuela controversy, President Cleveland was compelled by a strange turn in events to consider the annexation of the Hawaiian Islands in the mid-Pacific. For more than half a century American missionaries had been active in converting the natives to the Christian faith and enterprising American business men had been developing the fertile sugar plantations. Both the Department of State and the Navy Department were fully conscious of the strategic relation of the islands to the growth of sea power and watched with anxiety any developments likely to bring them under some other Dominion. The country at large was indifferent, however, until 1893, when a revolution, headed by Americans, broke out, ending in the overthrow of the native government, the abolition of the primitive monarchy, and the retirement of Queen Liliuokalani to private life. This crisis, a repetition of the Texas affair in a small theater, was immediately followed by a demand from the new Hawaiian government for annexation to the United States. President Harrison looked with favor on the proposal, negotiated the treaty of annexation, and laid it before the Senate for approval. There it still rested when his term of office was brought to a close. Harrison's successor, Cleveland, it was well known, had doubts about the propriety of American action in Hawaii. For the purpose of making an inquiry into the matter, he sent a special commissioner to the islands. On the basis of the report of his agent, Cleveland came to the conclusion that "the revolution in the island kingdom had been accomplished by the improper use of the armed forces of the United States and that the wrong should be righted by a restoration of the queen to her throne." Such being his matured conviction, though the facts upon which he rested it were warmly controverted, he could do nothing but withdraw the treaty from the Senate and close the incident. To the Republicans this sharp and cavalier disposal of their plans, carried out in a way that impugned the motives of a Republican President, was nothing less than "a betrayal of American interests." In their platform of 1896 they made clear their position: "Our foreign policy should be at all times firm, vigorous, and dignified and all our interests in the Western hemisphere carefully watched and guarded. The Hawaiian Islands should be controlled by the United States and no foreign power should be permitted to interfere with them." There was no mistaking this view of the issue. As the vote in the election gave popular sanction to Republican policies, Congress by a joint resolution, passed on July 6, 1898, annexed the islands to the United States and later conferred upon them the ordinary territorial form of government. CUBA AND THE SPANISH WAR =Early American Relations with Cuba.=--The year that brought Hawaii finally under the American flag likewise drew to a conclusion another long controversy over a similar outpost in the Atlantic, one of the last remnants of the once glorious Spanish empire--the island of Cuba. For a century the Department of State had kept an anxious eye upon this base of power, knowing full well that both France and England, already well established in the West Indies, had their attention also fixed upon Cuba. In the administration of President Fillmore they had united in proposing to the United States a tripartite treaty guaranteeing Spain in her none too certain ownership. This proposal, squarely rejected, furnished the occasion for a statement of American policy which stood the test of all the years that followed; namely, that the affair was one between Spain and the United States alone. In that long contest in the United States for the balance of power between the North and South, leaders in the latter section often thought of bringing Cuba into the union to offset the free states. An opportunity to announce their purposes publicly was afforded in 1854 by a controversy over the seizure of an American ship by Cuban authorities. On that occasion three American ministers abroad, stationed at Madrid, Paris, and London respectively, held a conference and issued the celebrated "Ostend Manifesto." They united in declaring that Cuba, by her geographical position, formed a part of the United States, that possession by a foreign power was inimical to American interests, and that an effort should be made to purchase the island from Spain. In case the owner refused to sell, they concluded, with a menacing flourish, "by every law, human and divine, we shall be justified in wresting it from Spain if we possess the power." This startling proclamation to the world was promptly disowned by the United States government. [Illustration: _=An old cartoon.=_ A SIGHT TOO BAD _Struggling Cuba._ "You must be awfully near-sighted, Mr. President, not to recognize me." _U.S.G._ "No, I am far-sighted: for I can recognize France."] =Revolutions in Cuba.=--For nearly twenty years afterwards the Cuban question rested. Then it was revived in another form during President Grant's administrations, when the natives became engaged in a destructive revolt against Spanish officials. For ten years--1868-78--a guerrilla warfare raged in the island. American citizens, by virtue of their ancient traditions of democracy, naturally sympathized with a war for independence and self-government. Expeditions to help the insurgents were fitted out secretly in American ports. Arms and supplies were smuggled into Cuba. American soldiers of fortune joined their ranks. The enforcement of neutrality against the friends of Cuban independence, no pleasing task for a sympathetic President, the protection of American lives and property in the revolutionary area, and similar matters kept our government busy with Cuba for a whole decade. A brief lull in Cuban disorders was followed in 1895 by a renewal of the revolutionary movement. The contest between the rebels and the Spanish troops, marked by extreme cruelty and a total disregard for life and property, exceeded all bounds of decency, and once more raised the old questions that had tormented Grant's administration. Gomez, the leader of the revolt, intent upon provoking American interference, laid waste the land with fire and sword. By a proclamation of November 6, 1895, he ordered the destruction of sugar plantations and railway connections and the closure of all sugar factories. The work of ruin was completed by the ruthless Spanish general, Weyler, who concentrated the inhabitants from rural regions into military camps, where they died by the hundreds of disease and starvation. Stories of the atrocities, bad enough in simple form, became lurid when transmuted into American news and deeply moved the sympathies of the American people. Sermons were preached about Spanish misdeeds; orators demanded that the Cubans be sustained "in their heroic struggle for independence"; newspapers, scouting the ordinary forms of diplomatic negotiation, spurned mediation and demanded intervention and war if necessary. [Illustration: _Underwood and Underwood, N.Y._ CUBAN REVOLUTIONISTS] =President Cleveland's Policy.=--Cleveland chose the way of peace. He ordered the observance of the rule of neutrality. He declined to act on a resolution of Congress in favor of giving to the Cubans the rights of belligerents. Anxious to bring order to the distracted island, he tendered to Spain the good offices of the United States as mediator in the contest--a tender rejected by the Spanish government with the broad hint that President Cleveland might be more vigorous in putting a stop to the unlawful aid in money, arms, and supplies, afforded to the insurgents by American sympathizers. Thereupon the President returned to the course he had marked out for himself, leaving "the public nuisance" to his successor, President McKinley. =Republican Policies.=--The Republicans in 1897 found themselves in a position to employ that "firm, vigorous, and dignified" foreign policy which they had approved in their platform. They had declared: "The government of Spain having lost control of Cuba and being unable to protect the property or lives of resident American citizens or to comply with its treaty obligations, we believe that the government of the United States should actively use its influence and good offices to restore peace and give independence to the island." The American property in Cuba to which the Republicans referred in their platform amounted by this time to more than fifty million dollars; the commerce with the island reached more than one hundred millions annually; and the claims of American citizens against Spain for property destroyed totaled sixteen millions. To the pleas of humanity which made such an effective appeal to the hearts of the American people, there were thus added practical considerations of great weight. =President McKinley Negotiates.=--In the face of the swelling tide of popular opinion in favor of quick, drastic, and positive action, McKinley chose first the way of diplomacy. A short time after his inauguration he lodged with the Spanish government a dignified protest against its policies in Cuba, thus opening a game of thrust and parry with the suave ministers at Madrid. The results of the exchange of notes were the recall of the obnoxious General Weyler, the appointment of a governor-general less bloodthirsty in his methods, a change in the policy of concentrating civilians in military camps, and finally a promise of "home rule" for Cuba. There is no doubt that the Spanish government was eager to avoid a war that could have but one outcome. The American minister at Madrid, General Woodford, was convinced that firm and patient pressure would have resulted in the final surrender of Cuba by the Spanish government. =The De Lome and the _Maine_ Incidents.=--Such a policy was defeated by events. In February, 1898, a private letter written by Senor de Lome, the Spanish ambassador at Washington, expressing contempt for the President of the United States, was filched from the mails and passed into the hands of a journalist, William R. Hearst, who published it to the world. In the excited state of American opinion, few gave heed to the grave breach of diplomatic courtesy committed by breaking open private correspondence. The Spanish government was compelled to recall De Lome, thus officially condemning his conduct. At this point a far more serious crisis put the pacific relations of the two negotiating countries in dire peril. On February 15, the battleship _Maine_, riding in the harbor of Havana, was blown up and sunk, carrying to death two officers and two hundred and fifty-eight members of the crew. This tragedy, ascribed by the American public to the malevolence of Spanish officials, profoundly stirred an already furious nation. When, on March 21, a commission of inquiry reported that the ill-fated ship had been blown up by a submarine mine which had in turn set off some of the ship's magazines, the worst suspicions seemed confirmed. If any one was inclined to be indifferent to the Cuban war for independence, he was now met by the vehement cry: "Remember the _Maine_!" =Spanish Concessions.=--Still the State Department, under McKinley's steady hand, pursued the path of negotiation, Spain proving more pliable and more ready with promises of reform in the island. Early in April, however, there came a decided change in the tenor of American diplomacy. On the 4th, McKinley, evidently convinced that promises did not mean performances, instructed our minister at Madrid to warn the Spanish government that as no effective armistice had been offered to the Cubans, he would lay the whole matter before Congress. This decision, every one knew, from the temper of Congress, meant war--a prospect which excited all the European powers. The Pope took an active interest in the crisis. France and Germany, foreseeing from long experience in world politics an increase of American power and prestige through war, sought to prevent it. Spain, hopeless and conscious of her weakness, at last dispatched to the President a note promising to suspend hostilities, to call a Cuban parliament, and to grant all the autonomy that could be reasonably asked. =President McKinley Calls for War.=--For reasons of his own--reasons which have never yet been fully explained--McKinley ignored the final program of concessions presented by Spain. At the very moment when his patient negotiations seemed to bear full fruit, he veered sharply from his course and launched the country into the war by sending to Congress his militant message of April 11, 1898. Without making public the last note he had received from Spain, he declared that he was brought to the end of his effort and the cause was in the hands of Congress. Humanity, the protection of American citizens and property, the injuries to American commerce and business, the inability of Spain to bring about permanent peace in the island--these were the grounds for action that induced him to ask for authority to employ military and naval forces in establishing a stable government in Cuba. They were sufficient for a public already straining at the leash. =The Resolution of Congress.=--There was no doubt of the outcome when the issue was withdrawn from diplomacy and placed in charge of Congress. Resolutions were soon introduced into the House of Representatives authorizing the President to employ armed force in securing peace and order in the island and "establishing by the free action of the people thereof a stable and independent government of their own." To the form and spirit of this proposal the Democrats and Populists took exception. In the Senate, where they were stronger, their position had to be reckoned with by the narrow Republican majority. As the resolution finally read, the independence of Cuba was recognized; Spain was called upon to relinquish her authority and withdraw from the island; and the President was empowered to use force to the extent necessary to carry the resolutions into effect. Furthermore the United States disclaimed "any disposition or intention to exercise sovereignty, jurisdiction, or control over said island except for the pacification thereof." Final action was taken by Congress on April 19, 1898, and approved by the President on the following day. =War and Victory.=--Startling events then followed in swift succession. The navy, as a result in no small measure of the alertness of Theodore Roosevelt, Assistant Secretary of the Department, was ready for the trial by battle. On May 1, Commodore Dewey at Manila Bay shattered the Spanish fleet, marking the doom of Spanish dominion in the Philippines. On July 3, the Spanish fleet under Admiral Cervera, in attempting to escape from Havana, was utterly destroyed by American forces under Commodore Schley. On July 17, Santiago, invested by American troops under General Shafter and shelled by the American ships, gave up the struggle. On July 25 General Miles landed in Porto Rico. On August 13, General Merritt and Admiral Dewey carried Manila by storm. The war was over. =The Peace Protocol.=--Spain had already taken cognizance of stern facts. As early as July 26, 1898, acting through the French ambassador, M. Cambon, the Madrid government approached President McKinley for a statement of the terms on which hostilities could be brought to a close. After some skirmishing Spain yielded reluctantly to the ultimatum. On August 12, the preliminary peace protocol was signed, stipulating that Cuba should be free, Porto Rico ceded to the United States, and Manila occupied by American troops pending the formal treaty of peace. On October 1, the commissioners of the two countries met at Paris to bring about the final settlement. =Peace Negotiations.=--When the day for the first session of the conference arrived, the government at Washington apparently had not made up its mind on the final disposition of the Philippines. Perhaps, before the battle of Manila Bay, not ten thousand people in the United States knew or cared where the Philippines were. Certainly there was in the autumn of 1898 no decided opinion as to what should be done with the fruits of Dewey's victory. President McKinley doubtless voiced the sentiment of the people when he stated to the peace commissioners on the eve of their departure that there had originally been no thought of conquest in the Pacific. The march of events, he added, had imposed new duties on the country. "Incidental to our tenure in the Philippines," he said, "is the commercial opportunity to which American statesmanship cannot be indifferent. It is just to use every legitimate means for the enlargement of American trade." On this ground he directed the commissioners to accept not less than the cession of the island of Luzon, the chief of the Philippine group, with its harbor of Manila. It was not until the latter part of October that he definitely instructed them to demand the entire archipelago, on the theory that the occupation of Luzon alone could not be justified "on political, commercial, or humanitarian grounds." This departure from the letter of the peace protocol was bitterly resented by the Spanish agents. It was with heaviness of heart that they surrendered the last sign of Spain's ancient dominion in the far Pacific. =The Final Terms of Peace.=--The treaty of peace, as finally agreed upon, embraced the following terms: the independence of Cuba; the cession of Porto Rico, Guam, and the Philippines to the United States; the settlement of claims filed by the citizens of both countries; the payment of twenty million dollars to Spain by the United States for the Philippines; and the determination of the status of the inhabitants of the ceded territories by Congress. The great decision had been made. Its issue was in the hands of the Senate where the Democrats and the Populists held the balance of power under the requirement of the two-thirds vote for ratification. =The Contest in America over the Treaty of Peace.=--The publication of the treaty committing the United States to the administration of distant colonies directed the shifting tides of public opinion into two distinct channels: support of the policy and opposition to it. The trend in Republican leadership, long in the direction marked out by the treaty, now came into the open. Perhaps a majority of the men highest in the councils of that party had undergone the change of heart reflected in the letters of John Hay, Secretary of State. In August of 1898 he had hinted, in a friendly letter to Andrew Carnegie, that he sympathized with the latter's opposition to "imperialism"; but he had added quickly: "The only question in my mind is how far it is now possible for us to withdraw from the Philippines." In November of the same year he wrote to Whitelaw Reid, one of the peace commissioners at Paris: "There is a wild and frantic attack now going on in the press against the whole Philippine transaction. Andrew Carnegie really seems to be off his head.... But all this confusion of tongues will go its way. The country will applaud the resolution that has been reached and you will return in the role of conquering heroes with your 'brows bound with oak.'" Senator Beveridge of Indiana and Senator Platt of Connecticut, accepting the verdict of history as the proof of manifest destiny, called for unquestioning support of the administration in its final step. "Every expansion of our territory," said the latter, "has been in accordance with the irresistible law of growth. We could no more resist the successive expansions by which we have grown to be the strongest nation on earth than a tree can resist its growth. The history of territorial expansion is the history of our nation's progress and glory. It is a matter to be proud of, not to lament. We should rejoice that Providence has given us the opportunity to extend our influence, our institutions, and our civilization into regions hitherto closed to us, rather than contrive how we can thwart its designs." This doctrine was savagely attacked by opponents of McKinley's policy, many a stanch Republican joining with the majority of Democrats in denouncing the treaty as a departure from the ideals of the republic. Senator Vest introduced in the Senate a resolution that "under the Constitution of the United States, no power is given to the federal Government to acquire territory to be held and governed permanently as colonies." Senator Hoar, of Massachusetts, whose long and honorable career gave weight to his lightest words, inveighed against the whole procedure and to the end of his days believed that the new drift into rivalry with European nations as a colonial power was fraught with genuine danger. "Our imperialistic friends," he said, "seem to have forgotten the use of the vocabulary of liberty. They talk about giving good government. 'We shall give them such a government as we think they are fitted for.' 'We shall give them a better government than they had before.' Why, Mr. President, that one phrase conveys to a free man and a free people the most stinging of insults. In that little phrase, as in a seed, is contained the germ of all despotism and of all tyranny. Government is not a gift. Free government is not to be given by all the blended powers of earth and heaven. It is a birthright. It belongs, as our fathers said, and as their children said, as Jefferson said, and as President McKinley said, to human nature itself." The Senate, more conservative on the question of annexation than the House of Representatives composed of men freshly elected in the stirring campaign of 1896, was deliberate about ratification of the treaty. The Democrats and Populists were especially recalcitrant. Mr. Bryan hurried to Washington and brought his personal influence to bear in favor of speedy action. Patriotism required ratification, it was said in one quarter. The country desires peace and the Senate ought not to delay, it was urged in another. Finally, on February 6, 1899, the requisite majority of two-thirds was mustered, many a Senator who voted for the treaty, however, sharing the misgivings of Senator Hoar as to the "dangers of imperialism." Indeed at the time, the Senators passed a resolution declaring that the policy to be adopted in the Philippines was still an open question, leaving to the future, in this way, the possibility of retracing their steps. =The Attitude of England.=--The Spanish war, while accomplishing the simple objects of those who launched the nation on that course, like all other wars, produced results wholly unforeseen. In the first place, it exercised a profound influence on the drift of opinion among European powers. In England, sympathy with the United States was from the first positive and outspoken. "The state of feeling here," wrote Mr. Hay, then ambassador in London, "is the best I have ever known. From every quarter the evidences of it come to me. The royal family by habit and tradition are most careful not to break the rules of strict neutrality, but even among them I find nothing but hearty kindness and--so far as is consistent with propriety--sympathy. Among the political leaders on both sides I find not only sympathy but a somewhat eager desire that 'the other fellows' shall not seem more friendly." Joseph Chamberlain, the distinguished Liberal statesman, thinking no doubt of the continental situation, said in a political address at the very opening of the war that the next duty of Englishmen "is to establish and maintain bonds of permanent unity with our kinsmen across the Atlantic.... I even go so far as to say that, terrible as war may be, even war would be cheaply purchased if, in a great and noble cause, the Stars and Stripes and the Union Jack should wave together over an Anglo-Saxon alliance." To the American ambassador he added significantly that he did not "care a hang what they say about it on the continent," which was another way of expressing the hope that the warning to Germany and France was sufficient. This friendly English opinion, so useful to the United States when a combination of powers to support Spain was more than possible, removed all fears as to the consequences of the war. Henry Adams, recalling days of humiliation in London during the Civil War, when his father was the American ambassador, coolly remarked that it was "the sudden appearance of Germany as the grizzly terror" that "frightened England into America's arms"; but the net result in keeping the field free for an easy triumph of American arms was none the less appreciated in Washington where, despite outward calm, fears of European complications were never absent. AMERICAN POLICIES IN THE PHILIPPINES AND THE ORIENT =The Filipino Revolt against American Rule.=--In the sphere of domestic politics, as well as in the field of foreign relations, the outcome of the Spanish war exercised a marked influence. It introduced at once problems of colonial administration and difficulties in adjusting trade relations with the outlying dominions. These were furthermore complicated in the very beginning by the outbreak of an insurrection against American sovereignty in the Philippines. The leader of the revolt, Aguinaldo, had been invited to join the American forces in overthrowing Spanish dominion, and he had assumed, apparently without warrant, that independence would be the result of the joint operations. When the news reached him that the American flag had been substituted for the Spanish flag, his resentment was keen. In February, 1899, there occurred a slight collision between his men and some American soldiers. The conflict thus begun was followed by serious fighting which finally dwindled into a vexatious guerrilla warfare lasting three years and costing heavily in men and money. Atrocities were committed by the native insurrectionists and, sad to relate, they were repaid in kind; it was argued in defense of the army that the ordinary rules of warfare were without terror to men accustomed to fighting like savages. In vain did McKinley assure the Filipinos that the institutions and laws established in the islands would be designed "not for our satisfaction or for the expression of our theoretical views, but for the happiness, peace, and prosperity of the people of the Philippine Islands." Nothing short of military pressure could bring the warring revolutionists to terms. =Attacks on Republican "Imperialism."=--The Filipino insurrection, following so quickly upon the ratification of the treaty with Spain, moved the American opponents of McKinley's colonial policies to redouble their denunciation of what they were pleased to call "imperialism." Senator Hoar was more than usually caustic in his indictment of the new course. The revolt against American rule did but convince him of the folly hidden in the first fateful measures. Everywhere he saw a conspiracy of silence and injustice. "I have failed to discover in the speeches, public or private, of the advocates of this war," he contended in the Senate, "or in the press which supports it and them, a single expression anywhere of a desire to do justice to the people of the Philippine Islands, or of a desire to make known to the people of the United States the truth of the case.... The catchwords, the cries, the pithy and pregnant phrases of which their speech is full, all mean dominion. They mean perpetual dominion.... There is not one of these gentlemen who will rise in his place and affirm that if he were a Filipino he would not do exactly as the Filipinos are doing; that he would not despise them if they were to do otherwise. So much at least they owe of respect to the dead and buried history--the dead and buried history so far as they can slay and bury it--of their country." In the way of practical suggestions, the Senator offered as a solution of the problem: the recognition of independence, assistance in establishing self-government, and an invitation to all powers to join in a guarantee of freedom to the islands. =The Republican Answer.=--To McKinley and his supporters, engaged in a sanguinary struggle to maintain American supremacy, such talk was more than quixotic; it was scarcely short of treasonable. They pointed out the practical obstacles in the way of uniform self-government for a collection of seven million people ranging in civilization from the most ignorant hill men to the highly cultivated inhabitants of Manila. The incidents of the revolt and its repression, they admitted, were painful enough; but still nothing as compared with the chaos that would follow the attempt of a people who had never had experience in such matters to set up and sustain democratic institutions. They preferred rather the gradual process of fitting the inhabitants of the islands for self-government. This course, in their eyes, though less poetic, was more in harmony with the ideals of humanity. Having set out upon it, they pursued it steadfastly to the end. First, they applied force without stint to the suppression of the revolt. Then they devoted such genius for colonial administration as they could command to the development of civil government, commerce, and industry. [Illustration: _Copyright by Underwood and Underwood, N.Y._ A PHILIPPINE HOME] =The Boxer Rebellion in China.=--For a nation with a world-wide trade, steadily growing, as the progress of home industries redoubled the zeal for new markets, isolation was obviously impossible. Never was this clearer than in 1900 when a native revolt against foreigners in China, known as the Boxer uprising, compelled the United States to join with the powers of Europe in a military expedition and a diplomatic settlement. The Boxers, a Chinese association, had for some time carried on a campaign of hatred against all aliens in the Celestial empire, calling upon the natives to rise in patriotic wrath and drive out the foreigners who, they said, "were lacerating China like tigers." In the summer of 1900 the revolt flamed up in deeds of cruelty. Missionaries and traders were murdered in the provinces; foreign legations were stoned; the German ambassador, one of the most cordially despised foreigners, was killed in the streets of Peking; and to all appearances a frightful war of extermination had begun. In the month of June nearly five hundred men, women, and children, representing all nations, were besieged in the British quarters in Peking under constant fire of Chinese guns and in peril of a terrible death. =Intervention in China.=--Nothing but the arrival of armed forces, made up of Japanese, Russian, British, American, French, and German soldiers and marines, prevented the destruction of the beleaguered aliens. When once the foreign troops were in possession of the Chinese capital, diplomatic questions of the most delicate character arose. For more than half a century, the imperial powers of Europe had been carving up the Chinese empire, taking to themselves territory, railway concessions, mining rights, ports, and commercial privileges at the expense of the huge but helpless victim. The United States alone among the great nations, while as zealous as any in the pursuit of peaceful trade, had refrained from seizing Chinese territory or ports. Moreover, the Department of State had been urging European countries to treat China with fairness, to respect her territorial integrity, and to give her equal trading privileges with all nations. =The American Policy of the "Open Door."=--In the autumn of 1899, Secretary Hay had addressed to London, Berlin, Rome, Paris, Tokyo, and St. Petersburg his famous note on the "open door" policy in China. In this document he proposed that existing treaty ports and vested interests of the several foreign countries should be respected; that the Chinese government should be permitted to extend its tariffs to all ports held by alien powers except the few free ports; and that there should be no discrimination in railway and port charges among the citizens of foreign countries operating in the empire. To these principles the governments addressed by Mr. Hay, finally acceded with evident reluctance. [Illustration: AMERICAN DOMINIONS IN THE PACIFIC] On this basis he then proposed the settlement that had to follow the Boxer uprising. "The policy of the Government of the United States," he said to the great powers, in the summer of 1900, "is to seek a solution which may bring about permanent safety and peace to China, preserve Chinese territorial and administrative entity, protect all rights guaranteed to friendly powers by treaty and international law, and safeguard for the world the principle of equal and impartial trade with all parts of the Chinese empire." This was a friendly warning to the world that the United States would not join in a scramble to punish the Chinese by carving out more territory. "The moment we acted," said Mr. Hay, "the rest of the world paused and finally came over to our ground; and the German government, which is generally brutal but seldom silly, recovered its senses, and climbed down off its perch." In taking this position, the Secretary of State did but reflect the common sense of America. "We are, of course," he explained, "opposed to the dismemberment of that empire and we do not think that the public opinion of the United States would justify this government in taking part in the great game of spoliation now going on." Heavy damages were collected by the European powers from China for the injuries inflicted upon their citizens by the Boxers; but the United States, finding the sum awarded in excess of the legitimate claims, returned the balance in the form of a fund to be applied to the education of Chinese students in American universities. "I would rather be, I think," said Mr. Hay, "the dupe of China than the chum of the Kaiser." By pursuing a liberal policy, he strengthened the hold of the United States upon the affections of the Chinese people and, in the long run, as he remarked himself, safeguarded "our great commercial interests in that Empire." =Imperialism in the Presidential Campaign of 1900.=--It is not strange that the policy pursued by the Republican administration in disposing of the questions raised by the Spanish War became one of the first issues in the presidential campaign of 1900. Anticipating attacks from every quarter, the Republicans, in renominating McKinley, set forth their position in clear and ringing phrases: "In accepting by the treaty of Paris the just responsibility of our victories in the Spanish War the President and Senate won the undoubted approval of the American people. No other course was possible than to destroy Spain's sovereignty throughout the West Indies and in the Philippine Islands. That course created our responsibility, before the world and with the unorganized population whom our intervention had freed from Spain, to provide for the maintenance of law and order, and for the establishment of good government and for the performance of international obligations. Our authority could not be less than our responsibility, and wherever sovereign rights were extended it became the high duty of the government to maintain its authority, to put down armed insurrection, and to confer the blessings of liberty and civilization upon all the rescued peoples. The largest measure of self-government consistent with their welfare and our duties shall be secured to them by law." To give more strength to their ticket, the Republican convention, in a whirlwind of enthusiasm, nominated for the vice presidency, against his protest, Theodore Roosevelt, the governor of New York and the hero of the Rough Riders, so popular on account of their Cuban campaign. The Democrats, as expected, picked up the gauntlet thrown down with such defiance by the Republicans. Mr. Bryan, whom they selected as their candidate, still clung to the currency issue; but the main emphasis, both of the platform and the appeal for votes, was on the "imperialistic program" of the Republican administration. The Democrats denounced the treatment of Cuba and Porto Rico and condemned the Philippine policy in sharp and vigorous terms. "As we are not willing," ran the platform, "to surrender our civilization or to convert the Republic into an empire, we favor an immediate declaration of the Nation's purpose to give to the Filipinos, first, a stable form of government; second, independence; third, protection from outside interference.... The greedy commercialism which dictated the Philippine policy of the Republican administration attempts to justify it with the plea that it will pay, but even this sordid and unworthy plea fails when brought to the test of facts. The war of 'criminal aggression' against the Filipinos entailing an annual expense of many millions has already cost more than any possible profit that could accrue from the entire Philippine trade for years to come.... We oppose militarism. It means conquest abroad and intimidation and oppression at home. It means the strong arm which has ever been fatal to free institutions. It is what millions of our citizens have fled from in Europe. It will impose upon our peace-loving people a large standing army, an unnecessary burden of taxation, and would be a constant menace to their liberties." Such was the tenor of their appeal to the voters. With the issues clearly joined, the country rejected the Democratic candidate even more positively than four years before. The popular vote cast for McKinley was larger and that cast for Bryan smaller than in the silver election. Thus vindicated at the polls, McKinley turned with renewed confidence to the development of the policies he had so far advanced. But fate cut short his designs. In the September following his second inauguration, he was shot by an anarchist while attending the Buffalo exposition. "What a strange and tragic fate it has been of mine," wrote the Secretary of State, John Hay, on the day of the President's death, "to stand by the bier of three of my dearest friends, Lincoln, Garfield, and McKinley, three of the gentlest of men, all risen to the head of the state and all done to death by assassins." On September 14, 1901, the Vice President, Theodore Roosevelt, took up the lines of power that had fallen from the hands of his distinguished chief, promising to continue "absolutely unbroken" the policies he had inherited. SUMMARY OF NATIONAL GROWTH AND WORLD POLITICS The economic aspects of the period between 1865 and 1900 may be readily summed up: the recovery of the South from the ruin of the Civil War, the extension of the railways, the development of the Great West, and the triumph of industry and business enterprise. In the South many of the great plantations were broken up and sold in small farms, crops were diversified, the small farming class was raised in the scale of social importance, the cotton industry was launched, and the coal, iron, timber, and other resources were brought into use. In the West the free arable land was practically exhausted by 1890 under the terms of the Homestead Act; gold, silver, copper, coal and other minerals were discovered in abundance; numerous rail connections were formed with the Atlantic seaboard; the cowboy and the Indian were swept away before a standardized civilization of electric lights and bathtubs. By the end of the century the American frontier had disappeared. The wild, primitive life so long associated with America was gone. The unity of the nation was established. In the field of business enterprise, progress was most marked. The industrial system, which had risen and flourished before the Civil War, grew into immense proportions and the industrial area was extended from the Northeast into all parts of the country. Small business concerns were transformed into huge corporations. Individual plants were merged under the management of gigantic trusts. Short railway lines were consolidated into national systems. The industrial population of wage-earners rose into the tens of millions. The immigration of aliens increased by leaps and bounds. The cities overshadowed the country. The nation that had once depended upon Europe for most of its manufactured goods became a competitor of Europe in the markets of the earth. In the sphere of politics, the period witnessed the recovery of white supremacy in the South; the continued discussion of the old questions, such as the currency, the tariff, and national banking; and the injection of new issues like the trusts and labor problems. As of old, foreign affairs were kept well at the front. Alaska was purchased from Russia; attempts were made to extend American influence in the Caribbean region; a Samoan island was brought under the flag; and the Hawaiian islands were annexed. The Monroe Doctrine was applied with vigor in the dispute between Venezuela and Great Britain. Assistance was given to the Cubans in their revolutionary struggle against Spain and thus there was precipitated a war which ended in the annexation of Porto Rico and the Philippines. American influence in the Pacific and the Orient was so enlarged as to be a factor of great weight in world affairs. Thus questions connected with foreign and "imperial" policies were united with domestic issues to make up the warp and woof of politics. In the direction of affairs, the Republicans took the leadership, for they held the presidency during all the years, except eight, between 1865 and 1900. =References= J.W. Foster, _A Century of American Diplomacy_; _American Diplomacy in the Orient_. W.F. Reddaway, _The Monroe Doctrine_. J.H. Latane, _The United States and Spanish America_. A.C. Coolidge, _United States as a World Power_. A.T. Mahan, _Interest of the United States in the Sea Power_. F.E. Chadwick, _Spanish-American War_. D.C. Worcester, _The Philippine Islands and Their People_. M.M. Kalaw, _Self-Government in the Philippines_. L.S. Rowe, _The United States and Porto Rico_. F.E. Chadwick, _The Relations of the United States and Spain_. W.R. Shepherd, _Latin America_; _Central and South America_. =Questions= 1. Tell the story of the international crisis that developed soon after the Civil War with regard to Mexico. 2. Give the essential facts relating to the purchase of Alaska. 3. Review the early history of our interest in the Caribbean. 4. Amid what circumstances was the Monroe Doctrine applied in Cleveland's administration? 5. Give the causes that led to the war with Spain. 6. Tell the leading events in that war. 7. What was the outcome as far as Cuba was concerned? The outcome for the United States? 8. Discuss the attitude of the Filipinos toward American sovereignty in the islands. 9. Describe McKinley's colonial policy. 10. How was the Spanish War viewed in England? On the Continent? 11. Was there a unified American opinion on American expansion? 12. Was this expansion a departure from our traditions? 13. What events led to foreign intervention in China? 14. Explain the policy of the "open door." =Research Topics= =Hawaii and Venezuela.=--Dewey, _National Problems_ (American Nation Series), pp. 279-313; Macdonald, _Documentary Source Book_, pp. 600-602; Hart, _American History Told by Contemporaries_, Vol. IV, pp. 612-616. =Intervention in Cuba.=--Latane, _America as a World Power_ (American Nation Series), pp. 3-28; Macdonald, _Documentary Source Book_, pp. 597-598; Roosevelt, _Autobiography_, pp. 223-277; Haworth, _The United States in Our Own Time_, pp. 232-256; Hart, _Contemporaries_, Vol. IV, pp. 573-578. =The War with Spain.=--Elson, _History of the United States_, pp. 889-896. =Terms of Peace with Spain.=--Latane, pp. 63-81; Macdonald, pp. 602-608; Hart, _Contemporaries_, Vol. IV, pp. 588-590. =The Philippine Insurrection.=--Latane, pp. 82-99. =Imperialism as a Campaign Issue.=--Latane, pp. 120-132; Haworth, pp. 257-277; Hart, _Contemporaries_, Vol. IV, pp. 604-611. =Biographical Studies.=--William McKinley, M.A. Hanna, John Hay; Admirals, George Dewey, W.T. Sampson, and W.S. Schley; and Generals, W.R. Shafter, Joseph Wheeler, and H.W. Lawton. =General Analysis of American Expansion.=--_Syllabus in History_ (New York State, 1920), pp. 142-147. PART VII. PROGRESSIVE DEMOCRACY AND THE WORLD WAR CHAPTER XXI THE EVOLUTION OF REPUBLICAN POLICIES (1901-13) =The Personality and Early Career of Roosevelt.=--On September 14, 1901, when Theodore Roosevelt took the oath of office, the presidency passed to a new generation and a leader of a new type recalling, if comparisons must be made, Andrew Jackson rather than any Republican predecessor. Roosevelt was brusque, hearty, restless, and fond of action--"a young fellow of infinite dash and originality," as John Hay remarked of him; combining the spirit of his old college, Harvard, with the breezy freedom of the plains; interested in everything--a new species of game, a new book, a diplomatic riddle, or a novel theory of history or biology. Though only forty-three years old he was well versed in the art of practical politics. Coming upon the political scene in the early eighties, he had associated himself with the reformers in the Republican party; but he was no Mugwump. From the first he vehemently preached the doctrine of party loyalty; if beaten in the convention, he voted the straight ticket in the election. For twenty years he adhered to this rule and during a considerable portion of that period he held office as a spokesman of his party. He served in the New York legislature, as head of the metropolitan police force, as federal civil service commissioner under President Harrison, as assistant secretary of the navy under President McKinley, and as governor of the Empire state. Political managers of the old school spoke of him as "brilliant but erratic"; they soon found him equal to the shrewdest in negotiation and action. [Illustration: _Copyright by Underwood and Underwood, N.Y._ ROOSEVELT TALKING TO THE ENGINEER OF A RAILROAD TRAIN] FOREIGN AFFAIRS =The Panama Canal.=--The most important foreign question confronting President Roosevelt on the day of his inauguration, that of the Panama Canal, was a heritage from his predecessor. The idea of a water route across the isthmus, long a dream of navigators, had become a living issue after the historic voyage of the battleship _Oregon_ around South America during the Spanish War. But before the United States could act it had to undo the Clayton-Bulwer treaty, made with Great Britain in 1850, providing for the construction of the canal under joint supervision. This was finally effected by the Hay-Pauncefote treaty of 1901 authorizing the United States to proceed alone, on condition that there should be no discriminations against other nations in the matter of rates and charges. This accomplished, it was necessary to decide just where the canal should be built. One group in Congress favored the route through Nicaragua; in fact, two official commissions had already approved that location. Another group favored cutting the way through Panama after purchasing the rights of the old French company which, under the direction of De Lesseps, the hero of the Suez Canal, had made a costly failure some twenty years before. After a heated argument over the merits of the two plans, preference was given to the Panama route. As the isthmus was then a part of Colombia, President Roosevelt proceeded to negotiate with the government at Bogota a treaty authorizing the United States to cut a canal through its territory. The treaty was easily framed, but it was rejected by the Colombian senate, much to the President's exasperation. "You could no more make an agreement with the Colombian rulers," he exclaimed, "than you could nail jelly to a wall." He was spared the necessity by a timely revolution. On November 3, 1903, Panama renounced its allegiance to Colombia and three days later the United States recognized its independence. [Illustration: _Courtesy of Panama Canal, Washington, D.C._ DEEPEST EXCAVATED PORTION OF PANAMA CANAL, SHOWING GOLD HILL ON RIGHT AND CONTRACTOR'S HILL ON LEFT. JUNE, 1913] This amazing incident was followed shortly by the signature of a treaty between Panama and the United States in which the latter secured the right to construct the long-discussed canal, in return for a guarantee of independence and certain cash payments. The rights and property of the French concern were then bought, and the final details settled. A lock rather than a sea-level canal was agreed upon. Construction by the government directly instead of by private contractors was adopted. Scientific medicine was summoned to stamp out the tropical diseases that had made Panama a plague spot. Finally, in 1904, as the President said, "the dirt began to fly." After surmounting formidable difficulties--engineering, labor, and sanitary--the American forces in 1913 joined the waters of the Atlantic and the Pacific. Nearly eight thousand miles were cut off the sea voyage from New York to San Francisco. If any were inclined to criticize President Roosevelt for the way in which he snapped off negotiations with Colombia and recognized the Panama revolutionists, their attention was drawn to the magnificent outcome of the affair. Notwithstanding the treaty with Great Britain, Congress passed a tolls bill discriminating in rates in favor of American ships. It was only on the urgent insistence of President Wilson that the measure was later repealed. =The Conclusion of the Russo-Japanese War.=--The applause which greeted the President's next diplomatic stroke was unmarred by censure of any kind. In the winter of 1904 there broke out between Japan and Russia a terrible conflict over the division of spoils in Manchuria. The fortunes of war were with the agile forces of Nippon. In this struggle, it seems, President Roosevelt's sympathies were mainly with the Japanese, although he observed the proprieties of neutrality. At all events, Secretary Hay wrote in his diary on New Year's Day, 1905, that the President was "quite firm in his view that we cannot permit Japan to be robbed a second time of her victory," referring to the fact that Japan, ten years before, after defeating China on the field of battle, had been forced by Russia, Germany, and France to forego the fruits of conquest. Whatever the President's personal feelings may have been, he was aware that Japan, despite her triumphs over Russia, was staggering under a heavy burden of debt. At a suggestion from Tokyo, he invited both belligerents in the summer of 1905 to join in a peace conference. The celerity of their reply was aided by the pressure of European bankers, who had already come to a substantial agreement that the war must stop. After some delay, Portsmouth, New Hampshire, was chosen as the meeting place for the spokesmen of the two warring powers. Roosevelt presided over the opening ceremonies with fine urbanity, thoroughly enjoying the justly earned honor of being for the moment at the center of the world's interest. He had the satisfaction of seeing the conference end in a treaty of peace and amity. =The Monroe Doctrine Applied to Germany.=--Less spectacular than the Russo-Japanese settlement but not less important was a diplomatic passage-at-arms with Germany over the Monroe Doctrine. This clash grew out of the inability or unwillingness of the Venezuelan government to pay debts due foreign creditors. Having exhausted their patience in negotiations, England and Germany, in December 1901, sent battleships to establish what they characterized as "a peaceful blockade" of Venezuelan ports. Their action was followed by the rupture of diplomatic relations; there was a possibility that war and the occupation of Venezuelan territory might result. While unwilling to stand between a Latin-American country and its creditors, President Roosevelt was determined that debt collecting should not be made an excuse for European countries to seize territory. He therefore urged arbitration of the dispute, winning the assent of England and Italy. Germany, with a somewhat haughty air, refused to take the milder course. The President, learning of this refusal, called the German ambassador to the White House and informed him in very precise terms that, unless the Imperial German Government consented to arbitrate, Admiral Dewey would be ordered to the scene with instructions to prevent Germany from seizing any Venezuelan territory. A week passed and no answer came from Berlin. Not baffled, the President again took the matter up with the ambassador, this time with even more firmness; he stated in language admitting of but one meaning that, unless within forty-eight hours the Emperor consented to arbitration, American battleships, already coaled and cleared, would sail for Venezuelan waters. The hint was sufficient. The Kaiser accepted the proposal and the President, with the fine irony of diplomacy, complimented him publicly on "being so stanch an advocate of arbitration." In terms of the Monroe Doctrine this action meant that the United States, while not denying the obligations of debtors, would not permit any move on the part of European powers that might easily lead to the temporary or permanent occupation of Latin-American territory. =The Santo Domingo Affair.=--The same issue was involved in a controversy over Santo Domingo which arose in 1904. The Dominican republic, like Venezuela, was heavily in debt, and certain European countries declared that, unless the United States undertook to look after the finances of the embarrassed debtor, they would resort to armed coercion. What was the United States to do? The danger of having some European power strongly intrenched in Santo Domingo was too imminent to be denied. President Roosevelt acted with characteristic speed, and notwithstanding strong opposition in the Senate was able, in 1907, to effect a treaty arrangement which placed Dominican finances under American supervision. In the course of the debate over this settlement, a number of interesting questions arose. It was pertinently asked whether the American navy should be used to help creditors collect their debts anywhere in Latin-America. It was suggested also that no sanction should be given to the practice among European governments of using armed force to collect private claims. Opponents of President Roosevelt's policy, and they were neither few nor insignificant, urged that such matters should be referred to the Hague Court or to special international commissions for arbitration. To this the answer was made that the United States could not surrender any question coming under the terms of the Monroe Doctrine to the decision of an international tribunal. The position of the administration was very clearly stated by President Roosevelt himself. "The country," he said, "would certainly decline to go to war to prevent a foreign government from collecting a just debt; on the other hand, it is very inadvisable to permit any foreign power to take possession, even temporarily, of the customs houses of an American republic in order to enforce the payment of its obligations; for such a temporary occupation might turn into a permanent occupation. The only escape from these alternatives may at any time be that we must ourselves undertake to bring about some arrangement by which so much as possible of a just obligation shall be paid." The Monroe Doctrine was negative. It denied to European powers a certain liberty of operation in this hemisphere. The positive obligations resulting from its application by the United States were points now emphasized and developed. =The Hague Conference.=--The controversies over Latin-American relations and his part in bringing the Russo-Japanese War to a close naturally made a deep impression upon Roosevelt, turning his mind in the direction of the peaceful settlement of international disputes. The subject was moreover in the air. As if conscious of impending calamity, the statesmen of the Old World, to all outward signs at least, seemed searching for a way to reduce armaments and avoid the bloody and costly trial of international causes by the ancient process of battle. It was the Czar, Nicholas II, fated to die in one of the terrible holocausts which he helped to bring upon mankind, who summoned the delegates of the nations in the first Hague Peace Conference in 1899. The conference did nothing to reduce military burdens or avoid wars but it did recognize the right of friendly nations to offer the services of mediation to countries at war and did establish a Court at the Hague for the arbitration of international disputes. Encouraged by this experiment, feeble as it was, President Roosevelt in 1904 proposed a second conference, yielding to the Czar the honor of issuing the call. At this great international assembly, held at the Hague in 1907, the representatives of the United States proposed a plan for the compulsory arbitration of certain matters of international dispute. This was rejected with contempt by Germany. Reduction of armaments, likewise proposed in the conference, was again deferred. In fact, nothing was accomplished beyond agreement upon certain rules for the conduct of "civilized warfare," casting a somewhat lurid light upon the "pacific" intentions of most of the powers assembled. =The World Tour of the Fleet.=--As if to assure the world then that the United States placed little reliance upon the frail reed of peace conferences, Roosevelt the following year (1908) made an imposing display of American naval power by sending a fleet of sixteen battleships on a tour around the globe. On his own authority, he ordered the ships to sail out of Hampton Roads and circle the earth by way of the Straits of Magellan, San Francisco, Australia, the Philippines, China, Japan, and the Suez Canal. This enterprise was not, as some critics claimed, a "mere boyish flourish." President Roosevelt knew how deep was the influence of sea power on the fate of nations. He was aware that no country could have a wide empire of trade and dominion without force adequate to sustain it. The voyage around the world therefore served a double purpose. It interested his own country in the naval program of the government, and it reminded other powers that the American giant, though quiet, was not sleeping in the midst of international rivalries. COLONIAL ADMINISTRATION =A Constitutional Question Settled.=--In colonial administration, as in foreign policy, President Roosevelt advanced with firm step in a path already marked out. President McKinley had defined the principles that were to control the development of Porto Rico and the Philippines. The Republican party had announced a program of pacification, gradual self-government, and commercial improvement. The only remaining question of importance, to use the popular phrase,--"Does the Constitution follow the flag?"--had been answered by the Supreme Court of the United States. Although it was well known that the Constitution did not contemplate the government of dependencies, such as the Philippines and Porto Rico, the Court, by generous and ingenious interpretations, found a way for Congress to apply any reasonable rules required by the occasion. =Porto Rico.=--The government of Porto Rico was a relatively simple matter. It was a single island with a fairly homogeneous population apart from the Spanish upper class. For a time after military occupation in 1898, it was administered under military rule. This was succeeded by the establishment of civil government under the "organic act" passed by Congress in 1900. The law assured to the Porto Ricans American protection but withheld American citizenship--a boon finally granted in 1917. It provided for a governor and six executive secretaries appointed by the President with the approval of the Senate; and for a legislature of two houses--one elected by popular native vote, and an upper chamber composed of the executive secretaries and five other persons appointed in the same manner. Thus the United States turned back to the provincial system maintained by England in Virginia or New York in old colonial days. The natives were given a voice in their government and the power of initiating laws; but the final word both in law-making and administration was vested in officers appointed in Washington. Such was the plan under which the affairs of Porto Rico were conducted by President Roosevelt. It lasted until the new organic act of 1917. [Illustration: _Photograph from Underwood and Underwood, N.Y._ A SUGAR MILL, PORTO RICO] =The Philippines.=--The administration of the Philippines presented far more difficult questions. The number of islands, the variety of languages and races, the differences in civilization all combined to challenge the skill of the government. Moreover, there was raging in 1901 a stubborn revolt against American authority, which had to be faced. Following the lines laid down by President McKinley, the evolution of American policy fell into three stages. At first the islands were governed directly by the President under his supreme military power. In 1901 a civilian commission, headed by William Howard Taft, was selected by the President and charged with the government of the provinces in which order had been restored. Six years later, under the terms of an organic act, passed by Congress in 1902, the third stage was reached. The local government passed into the hands of a governor and commission, appointed by the President and Senate, and a legislature--one house elected by popular vote and an upper chamber composed of the commission. This scheme, like that obtaining in Porto Rico, remained intact until a Democratic Congress under President Wilson's leadership carried the colonial administration into its fourth phase by making both houses elective. Thus, by the steady pursuit of a liberal policy, self-government was extended to the dependencies; but it encouraged rather than extinguished the vigorous movement among the Philippine natives for independence. [Illustration: _Copyright by Underwood and Underwood, N.Y._ MR TAFT IN THE PHILIPPINES] =Cuban Relations.=--Within the sphere of colonial affairs, Cuba, though nominally independent, also presented problems to the government at Washington. In the fine enthusiasm that accompanied the declaration of war on Spain, Congress, unmindful of practical considerations, recognized the independence of Cuba and disclaimed "any disposition or intention to exercise sovereignty, jurisdiction, or control over said island except for the pacification thereof." In the settlement that followed the war, however, it was deemed undesirable to set the young republic adrift upon the stormy sea of international politics without a guiding hand. Before withdrawing American troops from the island, Congress, in March, 1901, enacted, and required Cuba to approve, a series of restrictions known as the Platt amendment, limiting her power to incur indebtedness, securing the right of the United States to intervene whenever necessary to protect life and property, and reserving to the United States coaling stations at certain points to be agreed upon. The Cubans made strong protests against what they deemed "infringements of their sovereignty"; but finally with good grace accepted their fate. Even when in 1906 President Roosevelt landed American troops in the island to quell a domestic dissension, they acquiesced in the action, evidently regarding it as a distinct warning that they should learn to manage their elections in an orderly manner. THE ROOSEVELT DOMESTIC POLICIES =Social Questions to the Front.=--From the day of his inauguration to the close of his service in 1909, President Roosevelt, in messages, speeches, and interviews, kept up a lively and interesting discussion of trusts, capital, labor, poverty, riches, lawbreaking, good citizenship, and kindred themes. Many a subject previously touched upon only by representatives of the minor and dissenting parties, he dignified by a careful examination. That he did this with any fixed design or policy in mind does not seem to be the case. He admitted himself that when he became President he did not have in hand any settled or far-reaching plan of social betterment. He did have, however, serious convictions on general principles. "I was bent upon making the government," he wrote, "the most efficient possible instrument in helping the people of the United States to better themselves in every way, politically, socially, and industrially. I believed with all my heart in real and thorough-going democracy and I wished to make the democracy industrial as well as political, although I had only partially formulated the method I believed we should follow." It is thus evident at least that he had departed a long way from the old idea of the government as nothing but a great policeman keeping order among the people in a struggle over the distribution of the nation's wealth and resources. =Roosevelt's View of the Constitution.=--Equally significant was Roosevelt's attitude toward the Constitution and the office of President. He utterly repudiated the narrow construction of our national charter. He held that the Constitution "should be treated as the greatest document ever devised by the wit of man to aid a people in exercising every power necessary for its own betterment, not as a strait-jacket cunningly fashioned to strangle growth." He viewed the presidency as he did the Constitution. Strict constructionists of the Jeffersonian school, of whom there were many on occasion even in the Republican party, had taken a view that the President could do nothing that he was not specifically authorized by the Constitution to do. Roosevelt took exactly the opposite position. It was his opinion that it was not only the President's right but his duty "to do anything that the needs of the nation demanded unless such action was forbidden by the Constitution or the laws." He went on to say that he acted "for the common well-being of all our people whenever and in whatever manner was necessary, unless prevented by direct constitutional or legislative prohibition." =The Trusts and Railways.=--To the trust question, Roosevelt devoted especial attention. This was unavoidable. By far the larger part of the business of the country was done by corporations as distinguished from partnerships and individual owners. The growth of these gigantic aggregations of capital had been the leading feature in American industrial development during the last two decades of the nineteenth century. In the conquest of business by trusts and "the resulting private fortunes of great magnitude," the Populists and the Democrats had seen a grievous danger to the republic. "Plutocracy has taken the place of democracy; the tariff breeds trusts; let us destroy therefore the tariff and the trusts"--such was the battle cry which had been taken up by Bryan and his followers. President Roosevelt countered vigorously. He rejected the idea that the trusts were the product of the tariff or of governmental action of any kind. He insisted that they were the outcome of "natural economic forces": (1) destructive competition among business men compelling them to avoid ruin by cooperation in fixing prices; (2) the growth of markets on a national scale and even international scale calling for vast accumulations of capital to carry on such business; (3) the possibility of immense savings by the union of many plants under one management. In the corporation he saw a new stage in the development of American industry. Unregulated competition he regarded as "the source of evils which all men concede must be remedied if this civilization of ours is to survive." The notion, therefore, that these immense business concerns should be or could be broken up by a decree of law, Roosevelt considered absurd. At the same time he proposed that "evil trusts" should be prevented from "wrong-doing of any kind"; that is, punished for plain swindling, for making agreements to limit output, for refusing to sell to customers who dealt with rival firms, and for conspiracies with railways to ruin competitors by charging high freight rates and for similar abuses. Accordingly, he proposed, not the destruction of the trusts, but their regulation by the government. This, he contended, would preserve the advantages of business on a national scale while preventing the evils that accompanied it. The railway company he declared to be a public servant. "Its rates should be just to and open to all shippers alike." So he answered those who thought that trusts and railway combinations were private concerns to be managed solely by their owners without let or hindrance and also those who thought trusts and railway combinations could be abolished by tariff reduction or criminal prosecution. =The Labor Question.=--On the labor question, then pressing to the front in public interest, President Roosevelt took advanced ground for his time. He declared that the working-man, single-handed and empty-handed, threatened with starvation if unemployed, was no match for the employer who was able to bargain and wait. This led him, accordingly, to accept the principle of the trade union; namely, that only by collective bargaining can labor be put on a footing to measure its strength equally with capital. While he severely arraigned labor leaders who advocated violence and destructive doctrines, he held that "the organization of labor into trade unions and federations is necessary, is beneficent, and is one of the greatest possible agencies in the attainment of a true industrial, as well as a true political, democracy in the United States." The last resort of trade unions in labor disputes, the strike, he approved in case negotiations failed to secure "a fair deal." He thought, however, that labor organizations, even if wisely managed, could not solve all the pressing social questions of the time. The aid of the government at many points he believed to be necessary to eliminate undeserved poverty, industrial diseases, unemployment, and the unfortunate consequences of industrial accidents. In his first message of 1901, for instance, he urged that workers injured in industry should have certain and ample compensation. From time to time he advocated other legislation to obtain what he called "a larger measure of social and industrial justice." =Great Riches and Taxation.=--Even the challenge of the radicals, such as the Populists, who alleged that "the toil of millions is boldly stolen to build up colossal fortunes for a few"--challenges which his predecessors did not consider worthy of notice--President Roosevelt refused to let pass without an answer. In his first message he denied the truth of the common saying that the rich were growing richer and the poor were growing poorer. He asserted that, on the contrary, the average man, wage worker, farmer, and small business man, was better off than ever before in the history of our country. That there had been abuses in the accumulation of wealth he did not pretend to ignore, but he believed that even immense fortunes, on the whole, represented positive benefits conferred upon the country. Nevertheless he felt that grave dangers to the safety and the happiness of the people lurked in great inequalities of wealth. In 1906 he wrote that he wished it were in his power to prevent the heaping up of enormous fortunes. The next year, to the astonishment of many leaders in his own party, he boldly announced in a message to Congress that he approved both income and inheritance taxes, then generally viewed as Populist or Democratic measures. He even took the stand that such taxes should be laid in order to bring about a more equitable distribution of wealth and greater equality of opportunity among citizens. LEGISLATIVE AND EXECUTIVE ACTIVITIES =Economic Legislation.=--When President Roosevelt turned from the field of opinion he found himself in a different sphere. Many of his views were too advanced for the members of his party in Congress, and where results depended upon the making of new laws, his progress was slow. Nevertheless, in his administrations several measures were enacted that bore the stamp of his theories, though it could hardly be said that he dominated Congress to the same degree as did some other Presidents. The Hepburn Railway Act of 1906 enlarged the interstate commerce commission; it extended the commission's power over oil pipe lines, express companies, and other interstate carriers; it gave the commission the right to reduce rates found to be unreasonable and discriminatory; it forbade "midnight tariffs," that is, sudden changes in rates favoring certain shippers; and it prohibited common carriers from transporting goods owned by themselves, especially coal, except for their own proper use. Two important pure food and drug laws, enacted during the same year, were designed to protect the public against diseased meats and deleterious foods and drugs. A significant piece of labor legislation was an act of the same Congress making interstate railways liable to damages for injuries sustained by their employees. When this measure was declared unconstitutional by the Supreme Court it was reenacted with the objectionable clauses removed. A second installment of labor legislation was offered in the law of 1908 limiting the hours of railway employees engaged as trainmen or telegraph operators. [Illustration: _Courtesy United States Reclamation Service._ THE ROOSEVELT DAM, PHOENIX, ARIZONA] =Reclamation and Conservation.=--The open country--the deserts, the forests, waterways, and the public lands--interested President Roosevelt no less than railway and industrial questions. Indeed, in his first message to Congress he placed the conservation of natural resources among "the most vital internal problems" of the age, and forcibly emphasized an issue that had been discussed in a casual way since Cleveland's first administration. The suggestion evoked an immediate response in Congress. Under the leadership of Senator Newlands, of Nevada, the Reclamation Act of 1902 was passed, providing for the redemption of the desert areas of the West. The proceeds from the sale of public lands were dedicated to the construction of storage dams and sluiceways to hold water and divert it as needed to the thirsty sands. Furthermore it was stipulated that the rents paid by water users should go into a reclamation fund to continue the good work forever. Construction was started immediately under the terms of the law. Within seventeen years about 1,600,000 acres had been reclaimed and more than a million were actually irrigated. In the single year 1918, the crops of the irrigated districts were valued at approximately $100,000,000. In his first message, also, President Roosevelt urged the transfer of all control over national forests to trained men in the Bureau of Forestry--a recommendation carried out in 1907 when the Forestry Service was created. In every direction noteworthy advances were made in the administration of the national domain. The science of forestry was improved and knowledge of the subject spread among the people. Lands in the national forest available for agriculture were opened to settlers. Water power sites on the public domain were leased for a term of years to private companies instead of being sold outright. The area of the national forests was enlarged from 43 million acres to 194 million acres by presidential proclamation--more than 43 million acres being added in one year, 1907. The men who turned sheep and cattle to graze on the public lands were compelled to pay a fair rental, much to their dissatisfaction. Fire prevention work was undertaken in the forests on a large scale, reducing the appalling, annual destruction of timber. Millions of acres of coal land, such as the government had been carelessly selling to mining companies at low figures, were withdrawn from sale and held until Congress was prepared to enact laws for the disposition of them in the public interest. Prosecutions were instituted against men who had obtained public lands by fraud and vast tracts were recovered for the national domain. An agitation was begun which bore fruit under the administrations of Taft and Wilson in laws reserving to the federal government the ownership of coal, water power, phosphates, and other natural resources while authorizing corporations to develop them under leases for a period of years. =The Prosecution of the Trusts.=--As an executive, President Roosevelt was also a distinct "personality." His discrimination between "good" and "bad" trusts led him to prosecute some of them with vigor. On his initiative, the Northern Securities Company, formed to obtain control of certain great western railways, was dissolved by order of the Supreme Court. Proceedings were instituted against the American Tobacco Company and the Standard Oil Company as monopolies in violation of the Sherman Anti-Trust law. The Sugar Trust was found guilty of cheating the New York customs house and some of the minor officers were sent to prison. Frauds in the Post-office Department were uncovered and the offenders brought to book. In fact hardly a week passed without stirring news of "wrong doers" and "malefactors" haled into federal courts. =The Great Coal Strike.=--The Roosevelt theory that the President could do anything for public welfare not forbidden by the Constitution and the laws was put to a severe test in 1902. A strike of the anthracite coal miners, which started in the summer, ran late into the autumn. Industries were paralyzed for the want of coal; cities were threatened with the appalling menace of a winter without heat. Governors and mayors were powerless and appealed for aid. The mine owners rejected the demands of the men and refused to permit the arbitration of the points in dispute, although John Mitchell, the leader of the miners, repeatedly urged it. After observing closely the course affairs, President Roosevelt made up his mind that the situation was intolerable. He arranged to have the federal troops, if necessary, take possession of the mines and operate them until the strike could be settled. He then invited the contestants to the White House and by dint of hard labor induced them to accept, as a substitute or compromise, arbitration by a commission which he appointed. Thus, by stepping outside the Constitution and acting as the first citizen of the land, President Roosevelt averted a crisis of great magnitude. =The Election of 1904.=--The views and measures which he advocated with such vigor aroused deep hostility within as well as without his party. There were rumors of a Republican movement to defeat his nomination in 1904 and it was said that the "financial and corporation interests" were in arms against him. A prominent Republican paper in New York City accused him of having "stolen Mr. Bryan's thunder," by harrying the trusts and favoring labor unions. When the Republican convention assembled in Chicago, however, the opposition disappeared and Roosevelt was nominated by acclamation. This was the signal for a change on the part of Democratic leaders. They denounced the President as erratic, dangerous, and radical and decided to assume the moderate role themselves. They put aside Mr. Bryan and selected as their candidate, Judge Alton B. Parker, of New York, a man who repudiated free silver and made a direct appeal for the conservative vote. The outcome of the reversal was astounding. Judge Parker's vote fell more than a million below that cast for Bryan in 1900; of the 476 electoral votes he received only 140. Roosevelt, in addition to sweeping the Republican sections, even invaded Democratic territory, carrying the state of Missouri. Thus vindicated at the polls, he became more outspoken than ever. His leadership in the party was so widely recognized that he virtually selected his own successor. THE ADMINISTRATION OF PRESIDENT TAFT =The Campaign of 1908.=--Long before the end of his elective term, President Roosevelt let it be known that he favored as his successor, William Howard Taft, of Ohio, his Secretary of War. To attain this end he used every shred of his powerful influence. When the Republican convention assembled, Mr. Taft easily won the nomination. Though the party platform was conservative in tone, he gave it a progressive tinge by expressing his personal belief in the popular election of United States Senators, an income tax, and other liberal measures. President Roosevelt announced his faith in the Republican candidate and appealed to the country for his election. The turn in Republican affairs now convinced Mr. Bryan that the signs were propitious for a third attempt to win the presidency. The disaster to Judge Parker had taught the party that victory did not lie in a conservative policy. With little difficulty, therefore, the veteran leader from Nebraska once more rallied the Democrats around his standard, won the nomination, and wrote a platform vigorously attacking the tariff, trusts, and monopolies. Supported by a loyal following, he entered the lists, only to meet another defeat. Though he polled almost a million and a half more votes than did Judge Parker in 1904, the palm went to Mr. Taft. =The Tariff Revision and Party Dissensions.=--At the very beginning of his term, President Taft had to face the tariff issue. He had met it in the campaign. Moved by the Democratic demand for a drastic reduction, he had expressed opinions which were thought to imply a "downward revision." The Democrats made much of the implication and the Republicans from the Middle West rejoiced in it. Pressure was coming from all sides. More than ten years had elapsed since the enactment of the Dingley bill and the position of many industries had been altered with the course of time. Evidently the day for revision--at best a thankless task--had arrived. Taft accepted the inevitable and called Congress in a special session. Until the midsummer of 1909, Republican Senators and Representatives wrangled over tariff schedules, the President making little effort to influence their decisions. When on August 5 the Payne-Aldrich bill became a law, a breach had been made in Republican ranks. Powerful Senators from the Middle West had spoken angrily against many of the high rates imposed by the bill. They had even broken with their party colleagues to vote against the entire scheme of tariff revision. =The Income Tax Amendment.=--The rift in party harmony was widened by another serious difference of opinion. During the debate on the tariff bill, there was a concerted movement to include in it an income tax provision--this in spite of the decision of the Supreme Court in 1895 declaring it unconstitutional. Conservative men were alarmed by the evident willingness of some members to flout a solemn decree of that eminent tribunal. At the same time they saw a powerful combination of Republicans and Democrats determined upon shifting some of the burden of taxation to large incomes. In the press of circumstances, a compromise was reached. The income tax bill was dropped for the present; but Congress passed the sixteenth amendment to the Constitution, authorizing taxes upon incomes from whatever source they might be derived, without reference to any apportionment among the states on the basis of population. The states ratified the amendment and early in 1913 it was proclaimed. =President Taft's Policies.=--After the enactment of the tariff bill, Taft continued to push forward with his legislative program. He recommended, and Congress created, a special court of commerce with jurisdiction, among other things, over appeals from the interstate commerce commission, thus facilitating judicial review of the railway rates fixed and the orders issued by that body. This measure was quickly followed by an act establishing a system of postal savings banks in connection with the post office--a scheme which had long been opposed by private banks. Two years later, Congress defied the lobby of the express companies and supplemented the savings banks with a parcels post system, thus enabling the American postal service to catch up with that of other progressive nations. With a view to improving the business administration of the federal government, the President obtained from Congress a large appropriation for an economy and efficiency commission charged with the duty of inquiring into wasteful and obsolete methods and recommending improved devices and practices. The chief result of this investigation was a vigorous report in favor of a national budget system, which soon found public backing. President Taft negotiated with England and France general treaties providing for the arbitration of disputes which were "justiciable" in character even though they might involve questions of "vital interest and national honor." They were coldly received in the Senate and so amended that Taft abandoned them altogether. A tariff reciprocity agreement with Canada, however, he forced through Congress in the face of strong opposition from his own party. After making a serious breach in Republican ranks, he was chagrined to see the whole scheme come to naught by the overthrow of the Liberals in the Canadian elections of 1911. =Prosecution of the Trusts.=--The party schism was even enlarged by what appeared to be the successful prosecution of several great combinations. In two important cases, the Supreme Court ordered the dissolution of the Standard Oil Company and the American Tobacco Company on the ground that they violated the Sherman Anti-Trust law. In taking this step Chief Justice White was at some pains to state that the law did not apply to combinations which did not "unduly" restrain trade. His remark, construed to mean that the Court would not interfere with corporations as such, became the subject of a popular outcry against the President and the judges. PROGRESSIVE INSURGENCY AND THE ELECTION OF 1912 =Growing Dissensions.=--All in all, Taft's administration from the first day had been disturbed by party discord. High words had passed over the tariff bill and disgruntled members of Congress could not forget them. To differences over issues were added quarrels between youth and old age. In the House of Representatives there developed a group of young "insurgent" Republicans who resented the dominance of the Speaker, Joseph G. Cannon, and other members of the "old guard," as they named the men of long service and conservative minds. In 1910, the insurgents went so far as to join with the Democrats in a movement to break the Speaker's sway by ousting him from the rules committee and depriving him of the power to appoint its members. The storm was brewing. In the autumn of that year the Democrats won a clear majority in the House of Representatives and began an open battle with President Taft by demanding an immediate downward revision of the tariff. =The Rise of the Progressive Republicans.=--Preparatory to the campaign of 1912, the dissenters within the Republican party added the prefix "Progressive" to their old title and began to organize a movement to prevent the renomination of Mr. Taft. As early as January 21, 1911, they formed a Progressive Republican League at the home of Senator La Follette of Wisconsin and launched an attack on the Taft measures and policies. In October they indorsed Mr. La Follette as "the logical Republican candidate" and appealed to the party for support. The controversy over the tariff had grown into a formidable revolt against the occupant of the White House. =Roosevelt in the Field.=--After looking on for a while, ex-President Roosevelt took a hand in the fray. Soon after his return in 1910 from a hunting trip in Africa and a tour in Europe, he made a series of addresses in which he formulated a progressive program. In a speech in Kansas, he favored regulation of the trusts, a graduated income tax bearing heavily on great fortunes, tariff revision schedule by schedule, conservation of natural resources, labor legislation, the direct primary, and the recall of elective officials. In an address before the Ohio state constitutional convention in February, 1912, he indorsed the initiative and referendum and announced a doctrine known as the "recall of judicial decisions." This was a new and radical note in American politics. An ex-President of the United States proposed that the people at the polls should have the right to reverse the decision of a judge who set aside any act of a state legislature passed in the interests of social welfare. The Progressive Republicans, impressed by these addresses, turned from La Follette to Roosevelt and on February 24, induced him to come out openly as a candidate against Taft for the Republican nomination. =The Split in the Republican Party.=--The country then witnessed the strange spectacle of two men who had once been close companions engaged in a bitter rivalry to secure a majority of the delegates to the Republican convention to be held at Chicago. When the convention assembled, about one-fourth of the seats were contested, the delegates for both candidates loudly proclaiming the regularity of their election. In deciding between the contestants the national committee, after the usual hearings, settled the disputes in such a way that Taft received a safe majority. After a week of negotiation, Roosevelt and his followers left the Republican party. Most of his supporters withdrew from the convention and the few who remained behind refused to answer the roll call. Undisturbed by this formidable bolt, the regular Republicans went on with their work. They renominated Mr. Taft and put forth a platform roundly condemning such Progressive doctrines as the recall of judges. =The Formation of the Progressive Party.=--The action of the Republicans in seating the Taft delegates was vigorously denounced by Roosevelt. He declared that the convention had no claim to represent the voters of the Republican party; that any candidate named by it would be "the beneficiary of a successful fraud"; and that it would be deeply discreditable to any man to accept the convention's approval under such circumstances. The bitterness of his followers was extreme. On July 8, a call went forth for a "Progressive" convention to be held in Chicago on August 5. The assembly which duly met on that day was a unique political conference. Prominence was given to women delegates, and "politicians" were notably absent. Roosevelt himself, who was cheered as a conquering hero, made an impassioned speech setting forth his "confession of faith." He was nominated by acclamation; Governor Hiram Johnson of California was selected as his companion candidate for Vice President. The platform endorsed such political reforms as woman suffrage, direct primaries, the initiative, referendum, and recall, popular election of United States Senators, and the short ballot. It favored a program of social legislation, including the prohibition of child labor and minimum wages for women. It approved the regulation, rather than the dissolution, of the trusts. Like apostles in a new and lofty cause, the Progressives entered a vigorous campaign for the election of their distinguished leader. =Woodrow Wilson and the Election of 1912.=--With the Republicans divided, victory loomed up before the Democrats. Naturally, a terrific contest over the nomination occurred at their convention in Baltimore. Champ Clark, Speaker of the House of Representatives, and Governor Woodrow Wilson, of New Jersey, were the chief contestants. After tossing to and fro for seven long, hot days, and taking forty-six ballots, the delegates, powerfully influenced by Mr. Bryan, finally decided in favor of the governor. As a professor, a writer on historical and political subjects, and the president of Princeton University, Mr. Wilson had become widely known in public life. As the governor of New Jersey he had attracted the support of the progressives in both parties. With grim determination he had "waged war on the bosses," and pushed through the legislature measures establishing direct primaries, regulating public utilities, and creating a system of workmen's compensation in industries. During the presidential campaign that followed Governor Wilson toured the country and aroused great enthusiasm by a series of addresses later published under the title of _The New Freedom_. He declared that "the government of the United States is at present the foster child of the special interests." He proposed to free the country by breaking the dominance of "the big bankers, the big manufacturers, the big masters of commerce, the heads of railroad corporations and of steamship corporations." In the election Governor Wilson easily secured a majority of the electoral votes, and his party, while retaining possession of the House of Representatives, captured the Senate as well. The popular verdict, however, indicated a state of confusion in the country. The combined Progressive and Republican vote exceeded that of the Democrats by 1,300,000. The Socialists, with Eugene V. Debs as their candidate again, polled about 900,000 votes, more than double the number received four years before. Thus, as the result of an extraordinary upheaval the Republicans, after holding the office of President for sixteen years, passed out of power, and the government of the country was intrusted to the Democrats under the leadership of a man destined to be one of the outstanding figures of the modern age, Woodrow Wilson. =General References= J.B. Bishop, _Theodore Roosevelt and His Time_ (2 vols.). Theodore Roosevelt, _Autobiography_; _New Nationalism_; _Progressive Principles_. W.H. Taft, _Popular Government_. Walter Weyl, _The New Democracy_. H. Croly, _The Promise of American Life_. J.B. Bishop, _The Panama Gateway_. J.B. Scott, _The Hague Peace Conferences_. W.B. Munro (ed.), _Initiative, Referendum, and Recall_. C.R. Van Hise, _The Conservation of Natural Resources_. Gifford Pinchot, _The Fight for Conservation_. W.F. Willoughby, _Territories and Dependencies of the United States_ (1905). =Research Topics= =Roosevelt and "Big Business."=--Haworth, _The United States in Our Own Time_, pp. 281-289; F.A. Ogg, _National Progress_ (American Nation Series), pp. 40-75; Paxson, _The New Nation_ (Riverside Series), pp. 293-307. =Our Insular Possessions.=--Elson, _History of the United States_, pp. 896-904. =Latin-American Relations.=--Haworth, pp. 294-299; Ogg, pp. 254-257. =The Panama Canal.=--Haworth, pp. 300-309; Ogg, pp. 266-277; Paxson, pp. 286-292; Elson, pp. 906-911. =Conservation.=--Haworth, pp. 331-334; Ogg, pp. 96-115; Beard, _American Government and Politics_ (3d ed.), pp. 401-416. =Republican Dissensions under Taft's Administration.=--Haworth, pp. 351-360; Ogg, pp. 167-186; Paxson, pp. 324-342; Elson, pp. 916-924. =The Campaign of 1912.=--Haworth, pp. 360-379; Ogg, pp. 187-208. =Questions= 1. Compare the early career of Roosevelt with that of some other President. 2. Name the chief foreign and domestic questions of the Roosevelt-Taft administrations. 3. What international complications were involved in the Panama Canal problem? 4. Review the Monroe Doctrine. Discuss Roosevelt's applications of it. 5. What is the strategic importance of the Caribbean to the United States? 6. What is meant by the sea power? Trace the voyage of the fleet around the world and mention the significant imperial and commercial points touched. 7. What is meant by the question: "Does the Constitution follow the flag?" 8. Trace the history of self-government in Porto Rico. In the Philippines. 9. What is Cuba's relation to the United States? 10. What was Roosevelt's theory of our Constitution? 11. Give Roosevelt's views on trusts, labor, taxation. 12. Outline the domestic phases of Roosevelt's administrations. 13. Account for the dissensions under Taft. 14. Trace the rise of the Progressive movement. 15. What was Roosevelt's progressive program? 16. Review Wilson's early career and explain the underlying theory of _The New Freedom_. CHAPTER XXII THE SPIRIT OF REFORM IN AMERICA AN AGE OF CRITICISM =Attacks on Abuses in American Life.=--The crisis precipitated by the Progressive uprising was not a sudden and unexpected one. It had been long in preparation. The revolt against corruption in politics which produced the Liberal Republican outbreak in the seventies and the Mugwump movement of the eighties was followed by continuous criticism of American political and economic development. From 1880 until his death in 1892, George William Curtis, as president of the Civil Service Reform Association, kept up a running fire upon the abuses of the spoils system. James Bryce, an observant English scholar and man of affairs, in his great work, _The American Commonwealth_, published in 1888, by picturing fearlessly the political rings and machines which dominated the cities, gave the whole country a fresh shock. Six years later Henry D. Lloyd, in a powerful book entitled _Wealth against Commonwealth_, attacked in scathing language certain trusts which had destroyed their rivals and bribed public officials. In 1903 Miss Ida Tarbell, an author of established reputation in the historical field, gave to the public an account of the Standard Oil Company, revealing the ruthless methods of that corporation in crushing competition. About the same time Lincoln Steffens exposed the sordid character of politics in several municipalities in a series of articles bearing the painful heading: _The Shame of the Cities_. The critical spirit appeared in almost every form; in weekly and monthly magazines, in essays and pamphlets, in editorials and news stories, in novels like Churchill's _Coniston_ and Sinclair's _The Jungle_. It became so savage and so wanton that the opening years of the twentieth century were well named "the age of the muckrakers." =The Subjects of the Criticism.=--In this outburst of invective, nothing was spared. It was charged that each of the political parties had fallen into the hands of professional politicians who devoted their time to managing conventions, making platforms, nominating candidates, and dictating to officials; in return for their "services" they sold offices and privileges. It was alleged that mayors and councils had bargained away for private benefit street railway and other franchises. It was asserted that many powerful labor unions were dominated by men who blackmailed employers. Some critics specialized in descriptions of the poverty, slums, and misery of great cities. Others took up "frenzied finance" and accused financiers of selling worthless stocks and bonds to an innocent public. Still others professed to see in the accumulations of millionaires the downfall of our republic. =The Attack on "Invisible Government."=--Some even maintained that the control of public affairs had passed from the people to a sinister minority called "the invisible government." So eminent and conservative a statesman as the Hon. Elihu Root lent the weight of his great name to such an imputation. Speaking of his native state, New York, he said: "What is the government of this state? What has it been during the forty years of my acquaintance with it? The government of the Constitution? Oh, no; not half the time or half way.... From the days of Fenton and Conkling and Arthur and Cornell and Platt, from the days of David B. Hill down to the present time, the government of the state has presented two different lines of activity: one, of the constitutional and statutory officers of the state and the other of the party leaders; they call them party bosses. They call the system--I don't coin the phrase--the system they call 'invisible government.' For I don't know how many years Mr. Conkling was the supreme ruler in this state. The governor did not count, the legislature did not count, comptrollers and secretaries of state and what not did not count. It was what Mr. Conkling said, and in a great outburst of public rage he was pulled down. Then Mr. Platt ruled the state; for nigh upon twenty years he ruled it. It was not the governor; it was not the legislature; it was Mr. Platt. And the capital was not here [in Albany]; it was at 49 Broadway; Mr. Platt and his lieutenants. It makes no difference what name you give, whether you call it Fenton or Conkling or Cornell or Arthur or Platt or by the names of men now living. The ruler of the state during the greater part of the forty years of my acquaintance with the state government has not been any man authorized by the constitution or by law.... The party leader is elected by no one, accountable to no one, bound by no oath of office, removable by no one." =The Nation Aroused.=--With the spirit of criticism came also the spirit of reform. The charges were usually exaggerated; often wholly false; but there was enough truth in them to warrant renewed vigilance on the part of American democracy. President Roosevelt doubtless summed up the sentiment of the great majority of citizens when he demanded the punishment of wrong-doers in 1907, saying: "It makes not a particle of difference whether these crimes are committed by a capitalist or by a laborer, by a leading banker or manufacturer or railroad man or by a leading representative of a labor union. Swindling in stocks, corrupting legislatures, making fortunes by the inflation of securities, by wrecking railroads, by destroying competitors through rebates--these forms of wrong-doing in the capitalist are far more infamous than any ordinary form of embezzlement or forgery." The time had come, he added, to stop "muckraking" and proceed to the constructive work of removing the abuses that had grown up. POLITICAL REFORMS =The Public Service.=--It was a wise comprehension of the needs of American democracy that led the friends of reform to launch and to sustain for more than half a century a movement to improve the public service. On the one side they struck at the spoils system; at the right of the politicians to use public offices as mere rewards for partisan work. The federal civil service act of 1883 opened the way to reform by establishing five vital principles in law: (1) admission to office, not on the recommendation of party workers, but on the basis of competitive examinations; (2) promotion for meritorious service of the government rather than of parties; (3) no assessment of office holders for campaign funds; (4) permanent tenure during good behavior; and (5) no dismissals for political reasons. The act itself at first applied to only 14,000 federal offices, but under the constant pressure from the reformers it was extended until in 1916 it covered nearly 300,000 employees out of an executive force of approximately 414,000. While gaining steadily at Washington, civil service reformers carried their agitation into the states and cities. By 1920 they were able to report ten states with civil service commissions and the merit system well intrenched in more than three hundred municipalities. In excluding spoilsmen from public office, the reformers were, in a sense, engaged in a negative work: that of "keeping the rascals out." But there was a second and larger phase to their movement, one constructive in character: that of getting skilled, loyal, and efficient servants into the places of responsibility. Everywhere on land and sea, in town and country, new burdens were laid upon public officers. They were called upon to supervise the ships sailing to and from our ports; to inspect the water and milk supplies of our cities; to construct and operate great public works, such as the Panama and Erie canals; to regulate the complicated rates of railway companies; to safeguard health and safety in a thousand ways; to climb the mountains to fight forest fires; and to descend into the deeps of the earth to combat the deadly coal gases that assail the miners. In a word, those who labored to master the secrets and the powers of nature were summoned to the aid of the government: chemists, engineers, architects, nurses, surgeons, foresters--the skilled in all the sciences, arts, and crafts. Keeping rascals out was no task at all compared with the problem of finding competent people for all the technical offices. "Now," said the reformers, "we must make attractive careers in the government work for the best American talent; we must train those applying for admission and increase the skill of those already in positions of trust; we must see to it that those entering at the bottom have a chance to rise to the top; in short, we must work for a government as skilled and efficient as it is strong, one commanding all the wisdom and talent of America that public welfare requires." =The Australian Ballot.=--A second line of attack on the political machines was made in connection with the ballot. In the early days elections were frequently held in the open air and the poll was taken by a show of hands or by the enrollment of the voters under names of their favorite candidates. When this ancient practice was abandoned in favor of the printed ballot, there was still no secrecy about elections. Each party prepared its own ballot, often of a distinctive color, containing the names of its candidates. On election day, these papers were handed out to the voters by party workers. Any one could tell from the color of the ballot dropped into the box, or from some mark on the outside of the folded ballot, just how each man voted. Those who bought votes were sure that their purchases were "delivered." Those who intimidated voters could know when their intimidation was effective. In this way the party ballot strengthened the party machine. As a remedy for such abuses, reformers, learning from the experience of Australia, urged the adoption of the "Australian ballot." That ballot, though it appeared in many forms, had certain constant features. It was official, that is, furnished by the government, not by party workers; it contained the names of all candidates of all parties; it was given out only in the polling places; and it was marked in secret. The first state to introduce it was Massachusetts. The year was 1888. Before the end of the century it had been adopted by nearly all the states in the union. The salutary effect of the reform in reducing the amount of cheating and bribery in elections was beyond all question. =The Direct Primary.=--In connection with the uprising against machine politics, came a call for the abolition of the old method of nominating candidates by conventions. These time-honored party assemblies, which had come down from the days of Andrew Jackson, were, it was said, merely conclaves of party workers, sustained by the spoils system, and dominated by an inner circle of bosses. The remedy offered in this case was again "more democracy," namely, the abolition of the party convention and the adoption of the direct primary. Candidates were no longer to be chosen by secret conferences. Any member of a party was to be allowed to run for any office, to present his name to his party by securing signatures to a petition, and to submit his candidacy to his fellow partisans at a direct primary--an election within the party. In this movement Governor La Follette of Wisconsin took the lead and his state was the first in the union to adopt the direct primary for state-wide purposes. The idea spread, rapidly in the West, more slowly in the East. The public, already angered against "the bosses," grasped eagerly at it. Governor Hughes in New York pressed it upon the unwilling legislature. State after state accepted it until by 1918 Rhode Island, Delaware, Connecticut, and New Mexico were the only states that had not bowed to the storm. Still the results were disappointing and at that very time the pendulum was beginning to swing backward. =Popular Election of Federal Senators.=--While the movement for direct primaries was still advancing everywhere, a demand for the popular election of Senators, usually associated with it, swept forward to victory. Under the original Constitution, it had been expressly provided that Senators should be chosen by the legislatures of the states. In practice this rule transferred the selection of Senators to secret caucuses of party members in the state legislatures. In connection with these caucuses there had been many scandals, some direct proofs of brazen bribery and corruption, and dark hints besides. The Senate was called by its detractors "a millionaires' club" and it was looked upon as the "citadel of conservatism." The prescription in this case was likewise "more democracy"--direct election of Senators by popular vote. This reform was not a new idea. It had been proposed in Congress as early as 1826. President Johnson, an ardent advocate, made it the subject of a special message in 1868 Not long afterward it appeared in Congress. At last in 1893, the year after the great Populist upheaval, the House of Representatives by the requisite two-thirds vote incorporated it in an amendment to the federal Constitution. Again and again it passed the House; but the Senate itself was obdurate. Able Senators leveled their batteries against it. Mr. Hoar of Massachusetts declared that it would transfer the seat of power to the "great cities and masses of population"; that it would "overthrow the whole scheme of the Senate and in the end the whole scheme of the national Constitution as designed and established by the framers of the Constitution and the people who adopted it." Failing in the Senate, advocates of popular election made a rear assault through the states. They induced state legislatures to enact laws requiring the nomination of candidates for the Senate by the direct primary, and then they bound the legislatures to abide by the popular choice. Nevada took the lead in 1899. Shortly afterward Oregon, by the use of the initiative and referendum, practically bound legislators to accept the popular nominee and the country witnessed the spectacle of a Republican legislature "electing" a Democrat to represent the state in the Senate at Washington. By 1910 three-fourths of the states had applied the direct primary in some form to the choice of Senators. Men selected by that method began to pour in upon the floors of Congress; finally in 1912 the two-thirds majority was secured for an amendment to the federal Constitution providing for the popular election of Senators. It was quickly ratified by the states. The following year it was proclaimed in effect. =The Initiative and Referendum.=--As a corrective for the evils which had grown up in state legislatures there arose a demand for the introduction of a Swiss device known as the initiative and referendum. The initiative permits any one to draw up a proposed bill; and, on securing a certain number of signatures among the voters, to require the submission of the measure to the people at an election. If the bill thus initiated receives a sufficient majority, it becomes a law. The referendum allows citizens who disapprove any act passed by the legislature to get up a petition against it and thus bring about a reference of the measure to the voters at the polls for approval or rejection. These two practices constitute a form of "direct government." These devices were prescribed "to restore the government to the people." The Populists favored them in their platform of 1896. Mr. Bryan, two years later, made them a part of his program, and in the same year South Dakota adopted them. In 1902 Oregon, after a strenuous campaign, added a direct legislation amendment to the state constitution. Within ten years all the Southwestern, Mountain, and Pacific states, except Texas and Wyoming, had followed this example. To the east of the Mississippi, however, direct legislation met a chilly reception. By 1920 only five states in this section had accepted it: Maine, Massachusetts, Ohio, Michigan, and Maryland, the last approving the referendum only. =The Recall.=--Executive officers and judges, as well as legislatures, had come in for their share of criticism, and it was proposed that they should likewise be subjected to a closer scrutiny by the public. For this purpose there was advanced a scheme known as the recall--which permitted a certain percentage of the voters to compel any officer, at any time during his term, to go before the people at a new election. This feature of direct government, tried out first in the city of Los Angeles, was extended to state-wide uses in Oregon in 1908. It failed, however, to capture popular imagination to the same degree as the initiative and referendum. At the end of ten years' agitation, only ten states, mainly in the West, had adopted it for general purposes, and four of them did not apply it to the judges of the courts. Still it was extensively acclaimed in cities and incorporated into hundreds of municipal laws and charters. As a general proposition, direct government in all its forms was bitterly opposed by men of a conservative cast of mind. It was denounced by Senator Henry Cabot Lodge as "nothing less than a complete revolution in the fabric of our government and in the fundamental principles upon which that government rests." In his opinion, it promised to break down the representative principle and "undermine and overthrow the bulwarks of ordered liberty and individual freedom." Mr. Taft shared Mr. Lodge's views and spoke of direct government with scorn. "Votes," he exclaimed, "are not bread ... referendums do not pay rent or furnish houses, recalls do not furnish clothes, initiatives do not supply employment or relieve inequalities of condition or of opportunity." =Commission Government for Cities.=--In the restless searching out of evils, the management of cities early came under critical scrutiny. City government, Mr. Bryce had remarked, was the one conspicuous failure in America. This sharp thrust, though resented by some, was accepted as a warning by others. Many prescriptions were offered by doctors of the body politic. Chief among them was the idea of simplifying the city government so that the light of public scrutiny could shine through it. "Let us elect only a few men and make them clearly responsible for the city government!" was the new cry in municipal reform. So, many city councils were reduced in size; one of the two houses, which several cities had adopted in imitation of the federal government, was abolished; and in order that the mayor could be held to account, he was given the power to appoint all the chief officials. This made the mayor, in some cases, the only elective city official and gave the voters a "short ballot" containing only a few names--an idea which some proposed to apply also to the state government. A further step in the concentration of authority was taken in Galveston, Texas, where the people, looking upon the ruin of their city wrought by the devastating storm of 1901, and confronted by the difficult problems of reconstruction, felt the necessity for a more businesslike management of city affairs and instituted a new form of local administration. They abolished the old scheme of mayor and council and vested all power in five commissioners, one of whom, without any special prerogatives, was assigned to the office of "mayor president." In 1908, the commission form of government, as it was soon characterized, was adopted by Des Moines, Iowa. The attention of all municipal reformers was drawn to it and it was hailed as the guarantee of a better day. By 1920, more than four hundred cities, including Memphis, Spokane, Birmingham, Newark, and Buffalo, had adopted it. Still the larger cities like New York and Chicago kept their boards of aldermen. =The City Manager Plan.=--A few years' experience with commission government revealed certain patent defects. The division of the work among five men was frequently found to introduce dissensions and irresponsibility. Commissioners were often lacking in the technical ability required to manage such difficult matters as fire and police protection, public health, public works, and public utilities. Some one then proposed to carry over into city government an idea from the business world. In that sphere the stockholders of each corporation elect the directors and the directors, in turn, choose a business manager to conduct the affairs of the company. It was suggested that the city commissioners, instead of attempting to supervise the details of the city administration, should select a manager to do this. The scheme was put into effect in Sumter, South Carolina, in 1912. Like the commission plan, it became popular. Within eight years more than one hundred and fifty towns and cities had adopted it. Among the larger municipalities were Dayton, Springfield (Ohio), Akron, Kalamazoo, and Phoenix. It promised to create a new public service profession, that of city manager. MEASURES OF ECONOMIC REFORM =The Spirit of American Reform.=--The purification of the ballot, the restriction of the spoils system, the enlargement of direct popular control over the organs of government were not the sole answers made by the reformers to the critics of American institutions. Nor were they the most important. In fact, they were regarded not as ends in themselves, but as means to serve a wider purpose. That purpose was the promotion of the "general welfare." The concrete objects covered by that broad term were many and varied; but they included the prevention of extortion by railway and other corporations, the protection of public health, the extension of education, the improvement of living conditions in the cities, the elimination of undeserved poverty, the removal of gross inequalities in wealth, and more equality of opportunity. All these things involved the use of the powers of government. Although a few clung to the ancient doctrine that the government should not interfere with private business at all, the American people at large rejected that theory as vigorously as they rejected the doctrines of an extreme socialism which exalts the state above the individual. Leaders representing every shade of opinion proclaimed the government an instrument of common welfare to be used in the public interest. "We must abandon definitely," said Roosevelt, "the _laissez-faire_ theory of political economy and fearlessly champion a system of increased governmental control, paying no attention to the cries of worthy people who denounce this as socialistic." This view was shared by Mr. Taft, who observed: "Undoubtedly the government can wisely do much more ... to relieve the oppressed, to create greater equality of opportunity, to make reasonable terms for labor in employment, and to furnish vocational education." He was quick to add his caution that "there is a line beyond which the government cannot go with any good practical results in seeking to make men and society better." =The Regulation of Railways.=--The first attempts to use the government in a large way to control private enterprise in the public interest were made by the Northwestern states in the decade between 1870 and 1880. Charges were advanced by the farmers, particularly those organized into Granges, that the railways extorted the highest possible rates for freight and passengers, that favoritism was shown to large shippers, that fraudulent stocks and bonds were sold to the innocent public. It was claimed that railways were not like other enterprises, but were "quasi-public" concerns, like the roads and ferries, and thus subject to government control. Accordingly laws were enacted bringing the railroads under state supervision. In some cases the state legislature fixed the maximum rates to be charged by common carriers, and in other cases commissions were created with the power to establish the rates after an investigation. This legislation was at first denounced in the East as nothing less than the "confiscation" of the railways in the interest of the farmers. Attempts to have the Supreme Court of the United States declare it unconstitutional were made without avail; still a principle was finally laid down to the effect that in fixing rates state legislatures and commissions must permit railway companies to earn a "fair" return on the capital invested. In a few years the Granger spirit appeared in Congress. An investigation revealed a long list of abuses committed by the railways against shippers and travelers. The result was the interstate commerce act of 1887, which created the Interstate Commerce Commission, forbade discriminations in rates, and prohibited other objectionable practices on the part of railways. This measure was loosely enforced and the abuses against which it was directed continued almost unabated. A demand for stricter control grew louder and louder. Congress was forced to heed. In 1903 it enacted the Elkins law, forbidding railways to charge rates other than those published, and laid penalties upon the officers and agents of companies, who granted secret favors to shippers, and upon shippers who accepted them. Three years later a still more drastic step was taken by the passage of the Hepburn act. The Interstate Commerce Commission was authorized, upon complaint of some party aggrieved, and after a public hearing, to determine whether just and reasonable rates had been charged by the companies. In effect, the right to fix freight and passenger rates was taken out of the hands of the owners of the railways engaged in interstate commerce and vested in the hands of the Interstate Commerce Commission. Thus private property to the value of $20,000,000,000 or more was declared to be a matter of public concern and subject to government regulation in the common interest. =Municipal Utilities.=--Similar problems arose in connection with the street railways, electric light plants, and other utilities in the great cities. In the beginning the right to construct such undertakings was freely, and often corruptly, granted to private companies by city councils. Distressing abuses arose in connection with such practices. Many grants or franchises were made perpetual, or perhaps for a term of 999 years. The rates charged and services rendered were left largely to the will of the companies holding the franchises. Mergers or unions of companies were common and the public was deluged with stocks and bonds of doubtful value; bankruptcies were frequent. The connection between the utility companies and the politicians was, to say the least, not always in the public interest. American ingenuity was quick to devise methods for eliminating such evils. Three lines of progress were laid out by the reformers. One group proposed that such utilities should be subject to municipal or state regulation, that the formation of utility companies should be under public control, and that the issue of stocks and bonds must be approved by public authority. In some cases state, and in other cases municipal, commissions were created to exercise this great power over "quasi-public corporations." Wisconsin, by laws enacted in 1907, put all heat, light, water works, telephone, and street railway companies under the supervision of a single railway commission. Other states followed this example rapidly. By 1920 the principle of public control over municipal utilities was accepted in nearly every section of the union. A second line of reform appeared in the "model franchise" for utility corporations. An illustration of this tendency was afforded by the Chicago street railway settlement of 1906. The total capital of the company was fixed at a definite sum, its earnings were agreed upon, and the city was given the right to buy and operate the system if it desired to do so. In many states, about the same time, it was provided that no franchises to utility companies could run more than twenty-five years. A third group of reformers were satisfied with nothing short of municipal ownership. They proposed to drive private companies entirely out of the field and vest the ownership and management of municipal plants in the city itself. This idea was extensively applied to electric light and water works plants, but to street railways in only a few cities, including San Francisco and Seattle. In New York the subways are owned by the city but leased for operation. =Tenement House Control.=--Among the other pressing problems of the cities was the overcrowding in houses unfit for habitation. An inquiry in New York City made under the authority of the state in 1902 revealed poverty, misery, slums, dirt, and disease almost beyond imagination. The immediate answer was the enactment of a tenement house law prescribing in great detail the size of the rooms, the air space, the light and the sanitary arrangement for all new buildings. An immense improvement followed and the idea was quickly taken up in other states having large industrial centers. In 1920 New York made a further invasion of the rights of landlords by assuring to the public "reasonable rents" for flats and apartments. =Workmen's Compensation.=--No small part of the poverty in cities was due to the injury of wage-earners while at their trade. Every year the number of men and women killed or wounded in industry mounted higher. Under the old law, the workman or his family had to bear the loss unless the employer had been guilty of some extraordinary negligence. Even in that case an expensive lawsuit was usually necessary to recover "damages." In short, although employers insured their buildings and machinery against necessary risks from fire and storm, they allowed their employees to assume the heavy losses due to accidents. The injustice of this, though apparent enough now, was once not generally recognized. It was said to be unfair to make the employer pay for injuries for which he was not personally responsible; but the argument was overborne. [Illustration: AN EAST SIDE STREET IN NEW YORK] About 1910 there set in a decided movement in the direction of lifting the burden of accidents from the unfortunate victims. In the first place, laws were enacted requiring employers to pay damages in certain amounts according to the nature of the case, no matter how the accident occurred, as long as the injured person was not guilty of willful negligence. By 1914 more than one-half the states had such laws. In the second place, there developed schemes of industrial insurance in the form of automatic grants made by state commissions to persons injured in industries, the funds to be provided by the employers or the state or by both. By 1917 thirty-six states had legislation of this type. =Minimum Wages and Mothers' Pensions.=--Another source of poverty, especially among women and children, was found to be the low wages paid for their labor. Report after report showed this. In 1912 Massachusetts took a significant step in the direction of declaring the minimum wages which might be paid to women and children. Oregon, the following year, created a commission with power to prescribe minimum wages in certain industries, based on the cost of living, and to enforce the rates fixed. Within a short time one-third of the states had legislation of this character. To cut away some of the evils of poverty and enable widows to keep their homes intact and bring up their children, a device known as mothers' pensions became popular during the second decade of the twentieth century. At the opening of 1913 two states, Colorado and Illinois, had laws authorizing the payment from public funds of definite sums to widows with children. Within four years, thirty-five states had similar legislation. =Taxation and Great Fortunes.=--As a part of the campaign waged against poverty by reformers there came a demand for heavy taxes upon great fortunes, particularly taxes upon inheritances or estates passing to heirs on the decease of the owners. Roosevelt was an ardent champion of this type of taxation and dwelt upon it at length in his message to Congress in 1907. "Such a tax," he said, "would help to preserve a measurable equality of opportunity for the people of the generations growing to manhood.... Our aim is to recognize what Lincoln pointed out: the fact that there are some respects in which men are obviously not equal; but also to insist that there should be equality of self-respect and of mutual respect, an equality of rights before the law, and at least an approximate equality in the conditions under which each man obtains the chance to show the stuff that is in him when compared with his fellows." The spirit of the new age was, therefore, one of reform, not of revolution. It called for no evolutionary or utopian experiments, but for the steady and progressive enactment of measures aimed at admitted abuses and designed to accomplish tangible results in the name of public welfare. =General References= J. Bryce, _The American Commonwealth_. R.C. Brooks, _Corruption in American Life_. E.A. Ross, _Changing America_. P.L. Haworth, _America in Ferment_. E.R.A. Seligman, _The Income Tax_. W.Z. Ripley, _Railroads: Rates and Regulation_. E.S. Bradford, _Commission Government in American Cities_. H.R. Seager, _A Program of Social Reform_. C. Zueblin, _American Municipal Progress_. W.E. Walling, _Progressivism and After_. _The American Year Book_ (an annual publication which contains reviews of reform legislation). =Research Topics= ="The Muckrakers."=--Paxson, _The New Nation_ (Riverside Series), pp. 309-323. =Civil Service Reform.=--Beard, _American Government and Politics_ (3d ed.), pp. 222-230; Ogg, _National Progress_ (American Nation Series), pp. 135-142. =Direct Government.=--Beard, _American Government_, pp. 461-473; Ogg, pp. 160-166. =Popular Election of Senators.=--Beard, _American Government_, pp. 241-244; Ogg, pp. 149-150. =Party Methods.=--Beard, _American Government_, pp. 656-672. =Ballot Reform.=--Beard, _American Government_, pp. 672-705. =Social and Economic Legislation.=--Beard, _American Government_, pp. 721-752. =Questions= 1. Who were some of the critics of abuses in American life? 2. What particular criticisms were advanced? 3. How did Elihu Root define "invisible government"? 4. Discuss the use of criticism as an aid to progress in a democracy. 5. Explain what is meant by the "merit system" in the civil service. Review the rise of the spoils system. 6. Why is the public service of increasing importance? Give some of its new problems. 7. Describe the Australian ballot and the abuses against which it is directed. 8. What are the elements of direct government? Sketch their progress in the United States. 9. Trace the history of popular election of Senators. 10. Explain the direct primary. Commission government. The city manager plan. 11. How does modern reform involve government action? On what theory is it justified? 12. Enumerate five lines of recent economic reform. CHAPTER XXIII THE NEW POLITICAL DEMOCRACY =Women in Public Affairs.=--The social legislation enacted in response to the spirit of reform vitally affected women in the home and in industry and was promoted by their organizations. Where they did not lead, they were affiliated with movements for social improvement. No cause escaped their attention; no year passed without widening the range of their interests. They served on committees that inquired into the problems of the day; they appeared before legislative assemblies to advocate remedies for the evils they discovered. By 1912 they were a force to be reckoned with in national politics. In nine states complete and equal suffrage had been established, and a widespread campaign for a national suffrage amendment was in full swing. On every hand lay evidences that their sphere had been broadened to include public affairs. This was the culmination of forces that had long been operating. =A New Emphasis in History.=--A movement so deeply affecting important interests could not fail to find a place in time in the written record of human progress. History often began as a chronicle of kings and queens, knights and ladies, written partly to amuse and partly to instruct the classes that appeared in its pages. With the growth of commerce, parliaments, and international relations, politics and diplomacy were added to such chronicles of royal and princely doings. After the rise of democracy, industry, and organized labor, the transactions of everyday life were deemed worthy of a place in the pages of history. In each case history was rewritten and the past rediscovered in the light of the new age. So it will be with the rise and growth of women's political power. The history of their labor, their education, their status in society, their influence on the course of events will be explored and given its place in the general record. It will be a history of change. The superior position which women enjoy in America to-day is the result of a slow evolution from an almost rightless condition in colonial times. The founders of America brought with them the English common law. Under that law, a married woman's personal property--jewels, money, furniture, and the like--became her husband's property; the management of her lands passed into his control. Even the wages she earned, if she worked for some one else, belonged to him. Custom, if not law, prescribed that women should not take part in town meetings or enter into public discussions of religious questions. Indeed it is a far cry from the banishment of Anne Hutchinson from Massachusetts in 1637, for daring to dispute with the church fathers, to the political conventions of 1920 in which women sat as delegates, made nominating speeches, and served on committees. In the contrast between these two scenes may be measured the change in the privileges of women since the landing of the Pilgrims. The account of this progress is a narrative of individual effort on the part of women, of organizations among them, of generous aid from sympathetic men in the long agitation for the removal of civil and political disabilities. It is in part also a narrative of irresistible economic change which drew women into industry, created a leisure class, gave women wages and incomes, and therewith economic independence. THE RISE OF THE WOMAN MOVEMENT =Protests of Colonial Women.=--The republican spirit which produced American independence was of slow and steady growth. It did not spring up full-armed in a single night. It was, on the contrary, nourished during a long period of time by fireside discussions as well as by debates in the public forum. Women shared that fireside sifting of political principles and passed on the findings of that scrutiny in letters to their friends, newspaper articles, and every form of written word. How widespread was this potent, though not spectacular force, is revealed in the collections of women's letters, articles, songs, dramas, and satirical "skits" on English rule that have come down to us. In this search into the reasons of government, some women began to take thought about laws that excluded them from the ballot. Two women at least left their protests on record. Abigail, the ingenious and witty wife of John Adams, wrote to her husband, in March, 1776, that women objected "to all arbitrary power whether of state or males" and demanded political privileges in the new order then being created. Hannah Lee Corbin, the sister of "Lighthorse" Harry Lee, protested to her brother against the taxation of women without representation. [Illustration: ABIGAIL ADAMS] =The Stir among European Women.=--Ferment in America, in the case of women as of men, was quickened by events in Europe. In 1792, Mary Wollstonecraft published in England the _Vindication of the Rights of Women_--a book that was destined to serve the cause of liberty among women as the writings of Locke and Paine had served that of men. The specific grievances which stirred English women were men's invasion of women's industries, such as spinning and weaving; the denial of equal educational opportunities; and political disabilities. In France also the great Revolution raised questionings about the status of women. The rights of "citizenesses" as well as the rights of "citizens" were examined by the boldest thinkers. This in turn reacted upon women in the United States. =Leadership in America.=--The origins of the American woman movement are to be found in the writings of a few early intellectual leaders. During the first decades of the nineteenth century, books, articles, and pamphlets about women came in increasing numbers from the press. Lydia Maria Child wrote a history of women; Margaret Fuller made a critical examination of the status of women in her time; and Mrs. Elizabeth Ellet supplemented the older histories by showing what an important part women had played in the American Revolution. =The Struggle for Education.=--Along with criticism, there was carried on a constructive struggle for better educational facilities for women who had been from the beginning excluded from every college in the country. In this long battle, Emma Willard and Mary Lyon led the way; the former founded a seminary at Troy, New York; and the latter made the beginnings of Mount Holyoke College in Massachusetts. Oberlin College in Ohio, established in 1833, opened its doors to girls and from it were graduated young students to lead in the woman movement. Sarah J. Hale, who in 1827 became the editor of a "Ladies' Magazine," published in Boston, conducted a campaign for equal educational opportunities which helped to bear fruit in the founding of Vassar College shortly after the Civil War. =The Desire to Effect Reforms.=--As they came to study their own history and their own part in civilization, women naturally became deeply interested in all the controversies going on around them. The temperance question made a special appeal to them and they organized to demand the right to be heard on it. In 1846 the "Daughters of Temperance" formed a secret society favoring prohibition. They dared to criticize the churches for their indifference and were so bold as to ask that drunkenness be made a ground for divorce. The slavery issue even more than temperance called women into public life. The Grimke sisters of South Carolina emancipated their bondmen, and one of these sisters, exiled from Charleston for her "Appeal to the Christian Women of the South," went North to work against the slavery system. In 1837 the National Women's Anti-Slavery Convention met in New York; seventy-one women delegates represented eight states. Three years later eight American women, five of them in Quaker costume, attended the World Anti-Slavery Convention in London, much to the horror of the men, who promptly excluded them from the sessions on the ground that it was not fitting for women to take part in such meetings. In other spheres of activity, especially social service, women steadily enlarged their interest. Nothing human did they consider alien to them. They inveighed against cruel criminal laws and unsanitary prisons. They organized poor relief and led in private philanthropy. Dorothea Dix directed the movement that induced the New York legislature to establish in 1845 a separate asylum for the criminal insane. In the same year Sarah G. Bagley organized the Lowell Female Reform Association for the purpose of reducing the long hours of labor for women, safeguarding "the constitutions of future generations." Mrs. Eliza Woodson Farnham, matron in Sing Sing penitentiary, was known throughout the nation for her social work, especially prison reform. Wherever there were misery and suffering, women were preparing programs of relief. =Freedom of Speech for Women.=--In the advancement of their causes, of whatever kind, women of necessity had to make public appeals and take part in open meetings. Here they encountered difficulties. The appearance of women on the platform was new and strange. Naturally it was widely resented. Antoinette Brown, although she had credentials as a delegate, was driven off the platform of a temperance convention in New York City simply because she was a woman. James Russell Lowell, editor of the "Atlantic Monthly," declined a poem from Julia Ward Howe on the theory that no woman could write a poem; but he added on second thought that he might consider an article in prose. Nathaniel Hawthorne, another editor, even objected to something in prose because to him "all ink-stained women were equally detestable." To the natural resentment against their intrusion into new fields was added that aroused by their ideas and methods. As temperance reformers, they criticized in a caustic manner those who would not accept their opinions. As opponents of slavery they were especially bitter. One of their conventions, held at Philadelphia in 1833, passed a resolution calling on all women to leave those churches that would not condemn every form of human bondage. This stirred against them many of the clergy who, accustomed to having women sit silent during services, were in no mood to treat such a revolt leniently. Then came the last straw. Women decided that they would preach--out of the pulpit first, and finally in it. =Women in Industry.=--The period of this ferment was also the age of the industrial revolution in America, the rise of the factory system, and the growth of mill towns. The labor of women was transferred from the homes to the factories. Then arose many questions: the hours of labor, the sanitary conditions of the mills, the pressure of foreign immigration on native labor, the wages of women as compared with those of men, and the right of married women to their own earnings. Labor organizations sprang up among working women. The mill girls of Lowell, Massachusetts, mainly the daughters of New England farmers, published a magazine, "The Lowell Offering." So excellent were their writings that the French statesman, Thiers, carried a copy of their paper into the Chamber of Deputies to show what working women could achieve in a republic. As women were now admittedly earning their own way in the world by their own labor, they began to talk of their "economic independence." =The World Shaken by Revolution.=--Such was the quickening of women's minds in 1848 when the world was startled once more by a revolution in France which spread to Germany, Poland, Austria, Hungary, and Italy. Once more the people of the earth began to explore the principles of democracy and expound human rights. Women, now better educated and more "advanced" in their ideas, played a role of still greater importance in that revolution. They led in agitations and uprisings. They suffered from reaction and persecution. From their prison in France, two of them who had been jailed for too much insistence on women's rights exchanged greetings with American women who were raising the same issue here. By this time the women had more supporters among the men. Horace Greeley, editor of the New York _Tribune_, though he afterwards recanted, used his powerful pen in their behalf. Anti-slavery leaders welcomed their aid and repaid them by urging the enfranchisement of women. =The Woman's Rights Convention of 1848.=--The forces, moral and intellectual, which had been stirring among women, crystallized a few months after the outbreak of the European revolution in the first Woman's Rights Convention in the history of America. It met at Seneca Falls, New York, in 1848, on the call of Lucretia Mott, Martha Wright, Elizabeth Cady Stanton, and Mary Ann McClintock, three of them Quakers. Accustomed to take part in church meetings with men, the Quakers naturally suggested that men as well as women be invited to attend the convention. Indeed, a man presided over the conference, for that position seemed too presumptuous even for such stout advocates of woman's rights. The deliberations of the Seneca Falls convention resulted in a Declaration of Rights modeled after the Declaration of Independence. For example, the preamble began: "When in the course of human events it becomes necessary for one portion of the family of man to assume among the people of the earth a position different from that which they have hitherto occupied...." So also it closed: "Such has been the patient suffering of women under this government and such is now the necessity which constrains them to demand the equal station to which they are entitled." Then followed the list of grievances, the same number which had been exhibited to George III in 1776. Especially did they assail the disabilities imposed upon them by the English common law imported into America--the law which denied married women their property, their wages, and their legal existence as separate persons. All these grievances they recited to "a candid world." The remedies for the evils which they endured were then set forth in detail. They demanded "equal rights" in the colleges, trades, and professions; equal suffrage; the right to share in all political offices, honors, and emoluments; the right to complete equality in marriage, including equal guardianship of the children; and for married women the right to own property, to keep wages, to make contracts, to transact business, and to testify in the courts of justice. In short, they declared women to be persons as men are persons and entitled to all the rights and privileges of human beings. Such was the clarion call which went forth to the world in 1848--to an amused and contemptuous world, it must be admitted--but to a world fated to heed and obey. =The First Gains in Civil Liberty.=--The convention of 1848 did not make political enfranchisement the leading issue. Rather did it emphasize the civil disabilities of women which were most seriously under discussion at the time. Indeed, the New York legislature of that very year, as the result of a twelve years' agitation, passed the Married Woman's Property Act setting aside the general principles of the English common law as applied to women and giving them many of the "rights of man." California and Wisconsin followed in 1850; Massachusetts in 1854; and Kansas in 1859. Other states soon fell into line. Women's earnings and inheritances were at last their own in some states at least. In a little while laws were passed granting women rights as equal guardians of their children and permitting them to divorce their husbands on the grounds of cruelty and drunkenness. By degrees other steps were taken. The Woman's Medical College of Pennsylvania was founded in 1850, and the Philadelphia School of Design for Women three years later. In 1852 the American Women's Educational Association was formed to initiate an agitation for enlarged educational opportunities for women. Other colleges soon emulated the example of Oberlin: the University of Utah in 1850; Hillsdale College in Michigan in 1855; Baker University in Kansas in 1858; and the University of Iowa in 1860. New trades and professions were opened to women and old prejudices against their activities and demands slowly gave way. THE NATIONAL STRUGGLE FOR WOMAN SUFFRAGE =The Beginnings of Organization.=--As women surmounted one obstacle after another, the agitation for equal suffrage came to the front. If any year is to be fixed as the date of its beginning, it may very well be 1850, when the suffragists of Ohio urged the state constitutional convention to confer the vote upon them. With apparent spontaneity there were held in the same year state suffrage conferences in Indiana, Pennsylvania, and Massachusetts; and connections were formed among the leaders of these meetings. At the same time the first national suffrage convention was held in Worcester, Massachusetts, on the call of eighty-nine leading men and women representing six states. Accounts of the convention were widely circulated in this country and abroad. English women,--for instance, Harriet Martineau,--sent words of appreciation for the work thus inaugurated. It inspired a leading article in the "Westminster Review," which deeply interested the distinguished economist, John Stuart Mill. Soon he was the champion of woman suffrage in the British Parliament and the author of a powerful tract _The Subjection of Women_, widely read throughout the English-speaking world. Thus do world movements grow. Strange to relate the women of England were enfranchised before the adoption of the federal suffrage amendment in America. The national suffrage convention of 1850 was followed by an extraordinary outburst of agitation. Pamphlets streamed from the press. Petitions to legislative bodies were drafted, signed, and presented. There were addresses by favorite orators like Garrison, Phillips, and Curtis, and lectures and poems by men like Emerson, Longfellow, and Whittier. In 1853 the first suffrage paper was founded by the wife of a member of Congress from Rhode Island. By this time the last barrier to white manhood suffrage in the North had been swept away and the woman's movement was gaining momentum every year. =The Suffrage Movement Checked by the Civil War.=--Advocates of woman suffrage believed themselves on the high road to success when the Civil War engaged the energies and labors of the nation. Northern women became absorbed in the struggle to preserve the union. They held no suffrage conventions for five years. They transformed their associations into Loyalty Leagues. They banded together to buy only domestic goods when foreign imports threatened to ruin American markets. They rolled up monster petitions in favor of the emancipation of slaves. In hospitals, in military prisons, in agriculture, and in industry they bore their full share of responsibility. Even when the New York legislature took advantage of their unguarded moments and repealed the law giving the mother equal rights with the father in the guardianship of children, they refused to lay aside war work for agitation. As in all other wars, their devotion was unstinted and their sacrifices equal to the necessities of the hour. =The Federal Suffrage Amendment.=--Their plans and activities, when the war closed, were shaped by events beyond their control. The emancipation of the slaves and their proposed enfranchisement made prominent the question of a national suffrage for the first time in our history. Friends of the colored man insisted that his civil liberties would not be safe unless he was granted the right to vote. The woman suffragists very pertinently asked why the same principle did not apply to women. The answer which they received was negative. The fourteenth amendment to the federal Constitution, adopted in 1868, definitely put women aside by limiting the scope of its application, so far as the suffrage was concerned, to the male sex. In making manhood suffrage national, however, it nationalized the issue. This was the signal for the advocates of woman suffrage. In March, 1869, their proposed amendment was introduced in Congress by George W. Julian of Indiana. It provided that no citizen should be deprived of the vote on account of sex, following the language of the fifteenth amendment which forbade disfranchisement on account of race. Support for the amendment, coming from many directions, led the suffragists to believe that their case was hopeful. In their platform of 1872, for example, the Republicans praised the women for their loyal devotion to freedom, welcomed them to spheres of wider usefulness, and declared that the demand of any class of citizens for additional rights deserved "respectful consideration." [Illustration: _Copyright by Underwood and Underwood, N.Y._ SUSAN B. ANTHONY] Experience soon demonstrated, however, that praise was not the ballot. Indeed the suffragists already had realized that a tedious contest lay before them. They had revived in 1866 their regular national convention. They gave the name of "The Revolution" to their paper, edited by Elizabeth Cady Stanton and Susan B. Anthony. They formed a national suffrage association and organized annual pilgrimages to Congress to present their claims. Such activities bore some results. Many eminent congressmen were converted to their cause and presented it ably to their colleagues of both chambers. Still the subject was ridiculed by the newspapers and looked upon as freakish by the masses. =The State Campaigns.=--Discouraged by the outcome of the national campaign, suffragists turned to the voters of the individual states and sought the ballot at their hands. Gains by this process were painfully slow. Wyoming, it is true, while still a territory, granted suffrage to women in 1869 and continued it on becoming a state twenty years later, in spite of strong protests in Congress. In 1893 Colorado established complete political equality. In Utah, the third suffrage state, the cause suffered many vicissitudes. Women were enfranchised by the territorial legislature; they were deprived of the ballot by Congress in 1887; finally in 1896 on the admission of Utah to the union they recovered their former rights. During the same year, 1896, Idaho conferred equal suffrage upon the women. This was the last suffrage victory for more than a decade. =The Suffrage Cause in Congress.=--In the midst of the meager gains among the states there were occasional flurries of hope for immediate action on the federal amendment. Between 1878 and 1896 the Senate committee reported the suffrage resolution by a favorable majority on five different occasions. During the same period, however, there were nine unfavorable reports and only once did the subject reach the point of a general debate. At no time could anything like the required two-thirds vote be obtained. =The Changing Status of Women.=--While the suffrage movement was lagging, the activities of women in other directions were steadily multiplying. College after college--Vassar, Bryn Mawr, Smith, Wellesley, to mention a few--was founded to give them the advantages of higher education. Other institutions, especially the state universities of the West, opened their doors to women, and women were received into the professions of law and medicine. By the rapid growth of public high schools in which girls enjoyed the same rights as boys, education was extended still more widely. The number of women teachers increased by leaps and bounds. Meanwhile women were entering nearly every branch of industry and business. How many of them worked at gainful occupations before 1870 we do not know; but from that year forward we have the records of the census. Between 1870 and 1900 the proportion of women in the professions rose from less than two per cent to more than ten per cent; in trade and transportation from 24.8 per cent to 43.2 per cent; and in manufacturing from 13 to 19 per cent. In 1910, there were over 8,000,000 women gainfully employed as compared with 30,000,000 men. When, during the war on Germany, the government established the principle of equal pay for equal work and gave official recognition to the value of their services in industry, it was discovered how far women had traveled along the road forecast by the leaders of 1848. =The Club Movement among Women.=--All over the country women's societies and clubs were started to advance this or that reform or merely to study literature, art, and science. In time these women's organizations of all kinds were federated into city, state, and national associations and drawn into the consideration of public questions. Under the leadership of Frances Willard they made temperance reform a vital issue. They took an interest in legislation pertaining to prisons, pure food, public health, and municipal government, among other things. At their sessions and conferences local, state, and national issues were discussed until finally, it seems, everything led to the quest of the franchise. By solemn resolution in 1914 the National Federation of Women's Clubs, representing nearly two million club women, formally endorsed woman suffrage. In the same year the National Education Association, speaking for the public school teachers of the land, added its seal of approval. =State and National Action.=--Again the suffrage movement was in full swing in the states. Washington in 1910, California in 1911, Oregon, Kansas, and Arizona in 1912, Nevada and Montana in 1914 by popular vote enfranchised their women. Illinois in 1913 conferred upon them the right to vote for President of the United States. The time had arrived for a new movement. A number of younger suffragists sought to use the votes of women in the equal suffrage states to compel one or both of the national political parties to endorse and carry through Congress the federal suffrage amendment. Pressure then came upon Congress from every direction: from the suffragists who made a straight appeal on the grounds of justice; and from the suffragists who besought the women of the West to vote against candidates for President, who would not approve the federal amendment. In 1916, for the first time, a leading presidential candidate, Mr. Charles E. Hughes, speaking for the Republicans, endorsed the federal amendment and a distinguished ex-President, Roosevelt, exerted a powerful influence to keep it an issue in the campaign. [Illustration: _Copyright by Underwood and Underwood, N.Y._ CONFERENCE OF MEN AND WOMEN DELEGATES AT A NATIONAL CONVENTION IN 1920] =National Enfranchisement.=--After that, events moved rapidly. The great state of New York adopted equal suffrage in 1917. Oklahoma, South Dakota, and Michigan swung into line the following year; several other states, by legislative action, gave women the right to vote for President. In the meantime the suffrage battle at Washington grew intense. Appeals and petitions poured in upon Congress and the President. Militant suffragists held daily demonstrations in Washington. On September 30, 1918, President Wilson, who, two years before, had opposed federal action and endorsed suffrage by state adoption only, went before Congress and urged the passage of the suffrage amendment to the Constitution. In June, 1919, the requisite two-thirds vote was secured; the resolution was carried and transmitted to the states for ratification. On August 28, 1920, the thirty-sixth state, Tennessee, approved the amendment, making three-fourths of the states as required by the Constitution. Thus woman suffrage became the law of the land. A new political democracy had been created. The age of agitation was closed and the epoch of responsible citizenship opened. =General References= Edith Abbott, _Women in Industry_. C.P. Gilman, _Woman and Economics_. I.H. Harper, _Life and Work of Susan B. Anthony_. E.R. Hecker, _Short History of Woman's Rights_. S.B. Anthony and I.H. Harper, _History of Woman Suffrage_ (4 vols.). J.W. Taylor, _Before Vassar Opened_. A.H. Shaw, _The Story of a Pioneer_. =Research Topics= =The Rise of the Woman Suffrage Movement.=--McMaster, _History of the People of the United States_, Vol. VIII, pp. 116-121; K. Porter, _History of Suffrage in the United States_, pp. 135-145. =The Development of the Suffrage Movement.=--Porter, pp. 228-254; Ogg, _National Progress_ (American Nation Series), pp. 151-156 and p. 382. =Women's Labor in the Colonial Period.=--E. Abbott, _Women in Industry_, pp. 10-34. =Women and the Factory System.=--Abbott, pp. 35-62. =Early Occupations for Women.=--Abbott, pp. 63-85. =Women's Wages.=--Abbott, pp. 262-316. =Questions= 1. Why were women involved in the reform movements of the new century? 2. What is history? What determines the topics that appear in written history? 3. State the position of women under the old common law. 4. What part did women play in the intellectual movement that preceded the American Revolution? 5. Explain the rise of the discussion of women's rights. 6. What were some of the early writings about women? 7. Why was there a struggle for educational opportunities? 8. How did reform movements draw women into public affairs and what were the chief results? 9. Show how the rise of the factory affected the life and labor of women. 10. Why is the year 1848 an important year in the woman movement? Discuss the work of the Seneca Falls convention. 11. Enumerate some of the early gains in civil liberty for women. 12. Trace the rise of the suffrage movement. Show the effect of the Civil War. 13. Review the history of the federal suffrage amendment. 14. Summarize the history of the suffrage in the states. CHAPTER XXIV INDUSTRIAL DEMOCRACY =The New Economic Age.=--The spirit of criticism and the measures of reform designed to meet it, which characterized the opening years of the twentieth century, were merely the signs of a new age. The nation had definitely passed into industrialism. The number of city dwellers employed for wages as contrasted with the farmers working on their own land was steadily mounting. The free land, once the refuge of restless workingmen of the East and the immigrants from Europe, was a thing of the past. As President Roosevelt later said in speaking of the great coal strike, "a few generations ago, the American workman could have saved money, gone West, and taken up a homestead. Now the free lands were gone. In earlier days, a man who began with a pick and shovel might come to own a mine. That outlet was now closed as regards the immense majority.... The majority of men who earned wages in the coal industry, if they wished to progress at all, were compelled to progress not by ceasing to be wage-earners but by improving the conditions under which all the wage-earners of the country lived and worked." The disappearance of the free land, President Roosevelt went on to say, also produced "a crass inequality in the bargaining relation of the employer and the individual employee standing alone. The great coal-mining and coal-carrying companies which employed their tens of thousands could easily dispense with the services of any particular miner. The miner, on the other hand, however expert, could not dispense with the companies. He needed a job; his wife and children would starve if he did not get one.... Individually the miners were impotent when they sought to enter a wage contract with the great companies; they could make fair terms only by uniting into trade unions to bargain collectively." It was of this state of affairs that President Taft spoke when he favored the modification of the common law "so as to put employees of little power and means on a level with their employers in adjusting and agreeing upon their mutual obligations." John D. Rockefeller, Jr., on the side of the great captains of industry, recognized the same facts. He said: "In the early days of the development of industry, the employer and capital investor were frequently one. Daily contact was had between him and his employees, who were his friends and neighbors.... Because of the proportions which modern industry has attained, employers and employees are too often strangers to each other.... Personal relations can be revived only through adequate representation of the employees. Representation is a principle which is fundamentally just and vital to the successful conduct of industry.... It is not consistent for us as Americans to demand democracy in government and practice autocracy in industry.... With the developments what they are in industry to-day, there is sure to come a progressive evolution from aristocratic single control, whether by capital, labor, or the state, to democratic, cooperative control by all three." COOPERATION BETWEEN EMPLOYERS AND EMPLOYEES =Company Unions.=--The changed economic life described by the three eminent men just quoted was acknowledged by several great companies and business concerns. All over the country decided efforts were made to bridge the gulf which industry and the corporation had created. Among the devices adopted was that of the "company union." In one of the Western lumber mills, for example, all the employees were invited to join a company organization; they held monthly meetings to discuss matters of common concern; they elected a "shop committee" to confer with the representatives of the company; and periodically the agents of the employers attended the conferences of the men to talk over matters of mutual interest. The function of the shop committee was to consider wages, hours, safety rules, sanitation, recreation and other problems. Whenever any employee had a grievance he took it up with the foreman and, if it was not settled to his satisfaction, he brought it before the shop committee. If the members of the shop committee decided in favor of the man with a grievance, they attempted to settle the matter with the company's agents. All these things failing, the dispute was transferred to a grand meeting of all the employees with the employers' representatives, in common council. A deadlock, if it ensued from such a conference, was broken by calling in impartial arbitrators selected by both sides from among citizens outside the mill. Thus the employees were given a voice in all decisions affecting their work and welfare; rights and grievances were treated as matters of mutual interest rather than individual concern. Representatives of trade unions from outside, however, were rigidly excluded from all negotiations between employers and the employees. =Profit-sharing.=--Another proposal for drawing capital and labor together was to supplement the wage system by other ties. Sometimes lump sums were paid to employees who remained in a company's service for a definite period of years. Again they were given a certain percentage of the annual profits. In other instances, employees were allowed to buy stock on easy terms and thus become part owners in the concern. This last plan was carried so far by a large soap manufacturing company that the employees, besides becoming stockholders, secured the right to elect representatives to serve on the board of directors who managed the entire business. So extensive had profit-sharing become by 1914 that the Federal Industrial Relations Committee, appointed by the President, deemed it worthy of a special study. Though opposed by regular trade unions, it was undoubtedly growing in popularity. =Labor Managers and Welfare Work.=--Another effort of employers to meet the problems of the new age appeared in the appointment of specialists, known as employment managers, whose task it was to study the relations existing between masters and workers and discover practical methods for dealing with each grievance as it arose. By 1918, hundreds of big companies had recognized this modern "profession" and universities were giving courses of instruction on the subject to young men and women. In that year a national conference of employment managers was held at Rochester, New York. The discussion revealed a wide range of duties assigned to managers, including questions of wages, hours, sanitation, rest rooms, recreational facilities, and welfare work of every kind designed to make the conditions in mills and factories safer and more humane. Thus it was evident that hundreds of employers had abandoned the old idea that they were dealing merely with individual employees and that their obligations ended with the payment of any wages they saw fit to fix. In short, they were seeking to develop a spirit of cooperation to take the place of competition and enmity; and to increase the production of commodities by promoting the efficiency and happiness of the producers. THE RISE AND GROWTH OF ORGANIZED LABOR =The American Federation of Labor.=--Meanwhile a powerful association of workers representing all the leading trades and crafts, organized into unions of their own, had been built up outside the control of employers. This was the American Federation of Labor, a nation-wide union of unions, founded in 1886 on the basis of beginnings made five years before. At the time of its establishment it had approximately 150,000 members. Its growth up to the end of the century was slow, for the total enrollment in 1900 was only 300,000. At that point the increase became marked. The membership reached 1,650,000 in 1904 and more than 3,000,000 in 1919. To be counted in the ranks of organized labor were several strong unions, friendly to the Federation, though not affiliated with it. Such, for example, were the Railway Brotherhoods with more than half a million members. By the opening of 1920 the total strength of organized labor was put at about 4,000,000 members, meaning, if we include their families, that nearly one-fifth of the people of the United States were in some positive way dependent upon the operations of trade unions. =Historical Background.=--This was the culmination of a long and significant history. Before the end of the eighteenth century, the skilled workmen--printers, shoemakers, tailors, and carpenters--had, as we have seen, formed local unions in the large cities. Between 1830 and 1860, several aggressive steps were taken in the American labor movement. For one thing, the number of local unions increased by leaps and bounds in all the industrial towns. For another, there was established in every large manufacturing city a central labor body composed of delegates from the unions of the separate trades. In the local union the printers or the cordwainers, for example, considered only their special trade problems. In the central labor union, printers, cordwainers, iron molders, and other craftsmen considered common problems and learned to cooperate with one another in enforcing the demands of each craft. A third step was the federation of the unions of the same craftsmen in different cities. The printers of New York, Philadelphia, Boston, and other towns, for instance, drew together and formed a national trade union of printers built upon the local unions of that craft. By the eve of the Civil War there were four or five powerful national unions of this character. The expansion of the railway made travel and correspondence easier and national conventions possible even for workmen of small means. About 1834 an attempt was made to federate the unions of all the different crafts into a national organization; but the effort was premature. _The National Labor Union._--The plan which failed in 1834 was tried again in the sixties. During the war, industries and railways had flourished as never before; prices had risen rapidly; the demand for labor had increased; wages had mounted slowly, but steadily. Hundreds of new local unions had been founded and eight or ten national trade unions had sprung into being. The time was ripe, it seemed, for a national consolidation of all labor's forces; and in 1866, the year after the surrender of General Lee at Appomattox, the "National Labor Union" was formed at Baltimore under the leadership of an experienced organizer, W.H. Sylvis of the iron molders. The purpose of the National Labor Union was not merely to secure labor's standard demands touching hours, wages, and conditions of work or to maintain the gains already won. It leaned toward political action and radical opinions. Above all, it sought to eliminate the conflict between capital and labor by making workingmen the owners of shops through the formation of cooperative industries. For six years the National Labor Union continued to hold conferences and carry on its propaganda; but most of the cooperative enterprises failed, political dissensions arose, and by 1872 the experiment had come to an end. _The Knights of Labor._--While the National Labor Union was experimenting, there grew up in the industrial world a more radical organization known as the "Noble Order of the Knights of Labor." It was founded in Philadelphia in 1869, first as a secret society with rituals, signs, and pass words; "so that no spy of the boss can find his way into the lodge room to betray his fellows," as the Knights put it. In form the new organization was simple. It sought to bring all laborers, skilled and unskilled, men and women, white and colored, into a mighty body of local and national unions without distinction of trade or craft. By 1885, ten years after the national organization was established, it boasted a membership of over 700,000. In philosophy, the Knights of Labor were socialistic, for they advocated public ownership of the railways and other utilities and the formation of cooperative societies to own and manage stores and factories. As the Knights were radical in spirit and their strikes, numerous and prolonged, were often accompanied by violence, the organization alarmed employers and the general public, raising up against itself a vigorous opposition. Weaknesses within, as well as foes from without, started the Knights on the path to dissolution. They waged more strikes than they could carry on successfully; their cooperative experiments failed as those of other labor groups before them had failed; and the rank and file could not be kept in line. The majority of the members wanted immediate gains in wages or the reduction of hours; when their hopes were not realized they drifted away from the order. The troubles were increased by the appearance of the American Federation of Labor, a still mightier organization composed mainly of skilled workers who held strategic positions in industry. When they failed to secure the effective support of the Federation in their efforts to organize the unskilled, the employers closed in upon them; then the Knights declined rapidly in power. By 1890 they were a negligible factor and in a short time they passed into the limbo of dead experiments. =The Policies of the American Federation.=--Unlike the Knights of Labor, the American Federation of Labor sought, first of all, to be very practical in its objects and methods. It avoided all kinds of socialistic theories and attended strictly to the business of organizing unions for the purpose of increasing wages, shortening hours, and improving working conditions for its members. It did not try to include everybody in one big union but brought together the employees of each particular craft whose interests were clearly the same. To prepare for strikes and periods of unemployment, it raised large funds by imposing heavy dues and created a benefit system to hold men loyally to the union. In order to permit action on a national scale, it gave the superior officers extensive powers over local unions. While declaring that employers and employees had much in common, the Federation strongly opposed company unions. Employers, it argued, were affiliated with the National Manufacturers' Association or with similar employers' organizations; every important industry was now national in scope; and wages and hours, in view of competition with other shops, could not be determined in a single factory, no matter how amicable might be the relations of the company and its workers in that particular plant. For these reasons, the Federation declared company unions and local shop committees inherently weak; it insisted that hours, wages, and other labor standards should be fixed by general trade agreements applicable to all the plants of a given industry, even if subject to local modifications. At the same time, the Federation, far from deliberately antagonizing employers, sought to enlist their cooperation and support. It affiliated with the National Civic Federation, an association of business men, financiers, and professional men, founded in 1900 to promote friendly relations in the industrial world. In brief, the American Federation of Labor accepted the modern industrial system and, by organization within it, endeavored to secure certain definite terms and conditions for trade unionists. THE WIDER RELATIONS OF ORGANIZED LABOR =The Socialists.=--The trade unionism "pure and simple," espoused by the American Federation of Labor, seemed to involve at first glance nothing but businesslike negotiations with employers. In practice it did not work out that way. The Federation was only six years old when a new organization, appealing directly for the labor vote--namely, the Socialist Labor Party--nominated a candidate for President, launched into a national campaign, and called upon trade unionists to desert the older parties and enter its fold. The socialistic idea, introduced into national politics in 1892, had been long in germination. Before the Civil War, a number of reformers, including Nathaniel Hawthorne, Horace Greeley, and Wendell Phillips, deeply moved by the poverty of the great industrial cities, had earnestly sought relief in the establishment of cooperative or communistic colonies. They believed that people should go into the country, secure land and tools, own them in common so that no one could profit from exclusive ownership, and produce by common labor the food and clothing necessary for their support. For a time this movement attracted wide interest, but it had little vitality. Nearly all the colonies failed. Selfishness and indolence usually disrupted the best of them. In the course of time this "Utopian" idea was abandoned, and another set of socialist doctrines, claiming to be more "scientific," appeared instead. The new school of socialists, adopting the principles of a German writer and agitator, Karl Marx, appealed directly to workingmen. It urged them to unite against the capitalists, to get possession of the machinery of government, and to introduce collective or public ownership of railways, land, mines, mills, and other means of production. The Marxian socialists, therefore, became political. They sought to organize labor and to win elections. Like the other parties they put forward candidates and platforms. The Socialist Labor party in 1892, for example, declared in favor of government ownership of utilities, free school books, woman suffrage, heavy income taxes, and the referendum. The Socialist party, founded in 1900, with Eugene V. Debs, the leader of the Pullman strike, as its candidate, called for public ownership of all trusts, monopolies, mines, railways; and the chief means of production. In the course of time the vote of the latter organization rose to considerable proportions, reaching almost a million in 1912. It declined four years later and then rose in 1920 to about the same figure. In their appeal for votes, the socialists of every type turned first to labor. At the annual conventions of the American Federation of Labor they besought the delegates to endorse socialism. The president of the Federation, Samuel Gompers, on each occasion took the floor against them. He repudiated socialism and the socialists, on both theoretical and practical grounds. He opposed too much public ownership, declaring that the government was as likely as any private employer to oppress labor. The approval of socialism, he maintained, would split the Federation on the rock of politics, weaken it in its fight for higher wages and shorter hours, and prejudice the public against it. At every turn he was able to vanquish the socialists in the Federation, although he could not prevent it from endorsing public ownership of the railways at the convention of 1920. =The Extreme Radicals.=--Some of the socialists, defeated in their efforts to capture organized labor and seeing that the gains in elections were very meager, broke away from both trade unionism and politics. One faction, the Industrial Workers of the World, founded in 1905, declared themselves opposed to all capitalists, the wages system, and craft unions. They asserted that the "working class and the employing class have nothing in common" and that trade unions only pitted one set of workers against another set. They repudiated all government ownership and the government itself, boldly proclaiming their intention to unite all employees into one big union and seize the railways, mines, and mills of the country. This doctrine, so revolutionary in tone, called down upon the extremists the condemnation of the American Federation of Labor as well as of the general public. At its convention in 1919, the Federation went on record as "opposed to Bolshevism, I.W.W.-ism, and the irresponsible leadership that encourages such a policy." It announced its "firm adherence to American ideals." =The Federation and Political Issues.=--The hostility of the Federation to the socialists did not mean, however, that it was indifferent to political issues or political parties. On the contrary, from time to time, at its annual conventions, it endorsed political and social reforms, such as the initiative, referendum, and recall, the abolition of child labor, the exclusion of Oriental labor, old-age pensions, and government ownership. Moreover it adopted the policy of "rewarding friends and punishing enemies" by advising members to vote for or against candidates according to their stand on the demands of organized labor. [Illustration: _Copyright by Underwood and Underwood, N.Y._ SAMUEL GOMPERS AND OTHER LABOR LEADERS] This policy was pursued with especial zeal in connection with disputes over the use of injunctions in labor controversies. An injunction is a bill or writ issued by a judge ordering some person or corporation to do or to refrain from doing something. For example, a judge may order a trade union to refrain from interfering with non-union men or to continue at work handling goods made by non-union labor; and he may fine or imprison those who disobey his injunction, the penalty being inflicted for "contempt of court." This ancient legal device came into prominence in connection with nation-wide railway strikes in 1877. It was applied with increasing frequency after its effective use against Eugene V. Debs in the Pullman strike of 1894. Aroused by the extensive use of the writ, organized labor demanded that the power of judges to issue injunctions in labor disputes be limited by law. Representatives of the unions sought support from the Democrats and the Republicans; they received from the former very specific and cordial endorsement. In 1896 the Democratic platform denounced "government by injunction as a new and highly dangerous form of oppression." Mr. Gompers, while refusing to commit the Federation to Democratic politics, privately supported Mr. Bryan. In 1908, he came out openly and boasted that eighty per cent of the votes of the Federation had been cast for the Democratic candidate. Again in 1912 the same policy was pursued. The reward was the enactment in 1914 of a federal law exempting trade unions from prosecution as combinations in restraint of trade, limiting the use of the injunction in labor disputes, and prescribing trial by jury in case of contempt of court. This measure was hailed by Mr. Gompers as the "Magna Carta of Labor" and a vindication of his policy. As a matter of fact, however, it did not prevent the continued use of injunctions against trade unions. Nevertheless Mr. Gompers was unshaken in his conviction that organized labor should not attempt to form an independent political party or endorse socialist or other radical economic theories. =Organized Labor and the Public.=--Besides its relations to employers, radicals within its own ranks, and political questions, the Federation had to face responsibilities to the general public. With the passing of time these became heavy and grave. While industries were small and conflicts were local in character, a strike seldom affected anybody but the employer and the employees immediately involved in it. When, however, industries and trade unions became organized on a national scale and a strike could paralyze a basic enterprise like coal mining or railways, the vital interests of all citizens were put in jeopardy. Moreover, as increases in wages and reductions in hours often added directly to the cost of living, the action of the unions affected the well-being of all--the food, clothing, and shelter of the whole people. For the purpose of meeting the issue raised by this state of affairs, it was suggested that employers and employees should lay their disputes before commissions of arbitration for decision and settlement. President Cleveland, in a message of April 2, 1886, proposed such a method for disposing of industrial controversies, and two years later Congress enacted a voluntary arbitration law applicable to the railways. The principle was extended in 1898 and again in 1913, and under the authority of the federal government many contentions in the railway world were settled by arbitration. The success of such legislation induced some students of industrial questions to urge that unions and employers should be compelled to submit all disputes to official tribunals of arbitration. Kansas actually passed such a law in 1920. Congress in the Esch-Cummins railway bill of the same year created a federal board of nine members to which all railway controversies, not settled by negotiation, must be submitted. Strikes, however, were not absolutely forbidden. Generally speaking, both employers and employees opposed compulsory adjustments without offering any substitute in case voluntary arbitration should not be accepted by both parties to a dispute. IMMIGRATION AND AMERICANIZATION =The Problems of Immigration.=--From its very inception, the American Federation of Labor, like the Knights of Labor before it, was confronted by numerous questions raised by the ever swelling tide of aliens coming to our shores. In its effort to make each trade union all-inclusive, it had to wrestle with a score or more languages. When it succeeded in thoroughly organizing a craft, it often found its purposes defeated by an influx of foreigners ready to work for lower wages and thus undermine the foundations of the union. At the same time, persons outside the labor movement began to be apprehensive as they contemplated the undoubted evil, as well as the good, that seemed to be associated with the "alien invasion." They saw whole sections of great cities occupied by people speaking foreign tongues, reading only foreign newspapers, and looking to the Old World alone for their ideas and their customs. They witnessed an expanding army of total illiterates, men and women who could read and write no language at all; while among those aliens who could read few there were who knew anything of American history, traditions, and ideals. Official reports revealed that over twenty per cent of the men of the draft army during the World War could not read a newspaper or write a letter home. Perhaps most alarming of all was the discovery that thousands of alien men are in the United States only on a temporary sojourn, solely to make money and return home with their savings. These men, willing to work for low wages and live in places unfit for human beings, have no stake in this country and do not care what becomes of it. =The Restriction of Immigration.=--In all this there was, strictly speaking, no cause for surprise. Since the foundation of our republic the policy of the government had been to encourage the coming of the alien. For nearly one hundred years no restraining act was passed by Congress, while two important laws positively encouraged it; namely, the homestead act of 1862 and the contract immigration law of 1864. Not until American workingmen came into open collision with cheap Chinese labor on the Pacific Coast did the federal government spread the first measure of limitation on the statute books. After the discovery of gold, and particularly after the opening of the railway construction era, a horde of laborers from China descended upon California. Accustomed to starvation wages and indifferent to the conditions of living, they threatened to cut the American standard to the point of subsistence. By 1876 the protest of American labor was loud and long and both the Republicans and the Democrats gave heed to it. In 1882 Congress enacted a law prohibiting the admission of Chinese laborers to the United States for a term of ten years--later extended by legislation. In a little while the demand arose for the exclusion of the Japanese as well. In this case no exclusion law was passed; but an understanding was reached by which Japan agreed not to issue passports to her laborers authorizing them to come to the United States. By act of Congress in 1907 the President was empowered to exclude any laborers who, having passports to Canada, Hawaii, or Mexico, attempted to enter our country. These laws and agreements, however, did not remove all grounds for the agitation of the subject. They were difficult to enforce and it was claimed by residents of the Coast that in spite of federal authority Oriental laborers were finding their way into American ports. Moreover, several Western states, anxious to preserve the soil for American ownership, enacted laws making it impossible for Chinese and Japanese to buy land outright; and in other ways they discriminated against Orientals. Such proceedings placed the federal government in an embarrassing position. By treaty it had guaranteed specific rights to Japanese citizens in the United States, and the government at Tokyo contended that the state laws just cited violated the terms of the international agreement. The Western states were fixed in their determination to control Oriental residents; Japan was equally persistent in asking that no badge of inferiority be attached to her citizens. Subjected to pressure on both sides, the federal government sought a way out of the deadlock. Having embarked upon the policy of restriction in 1882, Congress readily extended it. In that same year it barred paupers, criminals, convicts, and the insane. Three years later, mainly owing to the pressure of the Knights of Labor, it forbade any person, company, or association to import aliens under contract. By an act of 1887, the contract labor restriction was made even more severe. In 1903, anarchists were excluded and the bureau of immigration was transferred from the Treasury Department to the Department of Commerce and Labor, in order to provide for a more rigid execution of the law. In 1907 the classes of persons denied admission were widened to embrace those suffering from physical and mental defects and otherwise unfit for effective citizenship. When the Department of Labor was established in 1913 the enforcement of the law was placed in the hands of the Secretary of Labor, W.B. Wilson, who was a former leader in the American Federation of Labor. =The Literacy Test.=--Still the advocates of restriction were not satisfied. Still organized labor protested and demanded more protection against the competition of immigrants. In 1917 it won a thirty-year battle in the passage of a bill excluding "all aliens over sixteen years of age, physically capable of reading, who cannot read the English language or some other language or dialect, including Hebrew or Yiddish." Even President Wilson could not block it, for a two-thirds vote to overcome his veto was mustered in Congress. This act, while it served to exclude illiterates, made no drastic cut in the volume of immigration. Indeed a material reduction was resolutely opposed in many quarters. People of certain nationalities already in the United States objected to every barrier that shut out their own kinsmen. Some Americans of the old stock still held to the idea that the United States should continue to be an asylum for "the oppressed of the earth." Many employers looked upon an increased labor supply as the means of escaping what they called "the domination of trade unions." In the babel of countless voices, the discussion of these vital matters went on in town and country. =Americanization.=--Intimately connected with the subject of immigration was a call for the "Americanization" of the alien already within our gates. The revelation of the illiteracy in the army raised the cry and the demand was intensified when it was found that many of the leaders among the extreme radicals were foreign in birth and citizenship. Innumerable programs for assimilating the alien to American life were drawn up, and in 1919 a national conference on the subject was held in Washington under the auspices of the Department of the Interior. All were agreed that the foreigner should be taught to speak and write the language and understand the government of our country. Congress was urged to lend aid in this vast undertaking. America, as ex-President Roosevelt had said, was to find out "whether it was a nation or a boarding-house." =General References= J.R. Commons and Associates, _History of Labor in the United States_ (2 vols.). Samuel Gompers, _Labor and the Common Welfare_. W.E. Walling, _Socialism as It Is_. W.E. Walling (and Others), _The Socialism of Today_. R.T. Ely, _The Labor Movement in America_. T.S. Adams and H. Sumner, _Labor Problems_. J.G. Brooks, _American Syndicalism_ and _Social Unrest_. P.F. Hall, _Immigration and Its Effects on the United States_. =Research Topics= =The Rise of Trade Unionism.=--Mary Beard, _Short History of the American Labor Movement_, pp. 10-18, 47-53, 62-79; Carlton, _Organized Labor in American History_, pp. 11-44. =Labor and Politics.=--Beard, _Short History_, pp. 33-46, 54-61, 103-112; Carlton, pp. 169-197; Ogg, _National Progress_ (American Nation Series), pp. 76-85. =The Knights of Labor.=--Beard, _Short History_, pp. 116-126; Dewey, _National Problems_ (American Nation Series), pp. 40-49. =The American Federation of Labor--Organization and Policies.=--Beard, _Short History_, pp. 86-112. =Organized Labor and the Socialists.=--Beard, _Short History_, pp. 126-149. =Labor and the Great War.=--Carlton, pp. 282-306; Beard, _Short History_, pp. 150-170. =Questions= 1. What are the striking features of the new economic age? 2. Give Mr. Rockefeller's view of industrial democracy. 3. Outline the efforts made by employers to establish closer relations with their employees. 4. Sketch the rise and growth of the American Federation of Labor. 5. How far back in our history does the labor movement extend? 6. Describe the purposes and outcome of the National Labor Union and the Knights of Labor. 7. State the chief policies of the American Federation of Labor. 8. How does organized labor become involved with outside forces? 9. Outline the rise of the socialist movement. How did it come into contact with the American Federation? 10. What was the relation of the Federation to the extreme radicals? To national politics? To the public? 11. Explain the injunction. 12. Why are labor and immigration closely related? 13. Outline the history of restrictions on immigration. 14. What problems arise in connection with the assimilation of the alien to American life? CHAPTER XXV PRESIDENT WILSON AND THE WORLD WAR "The welfare, the happiness, the energy, and the spirit of the men and women who do the daily work in our mines and factories, on our railroads, in our offices and ports of trade, on our farms, and on the sea are the underlying necessity of all prosperity." Thus spoke Woodrow Wilson during his campaign for election. In this spirit, as President, he gave the signal for work by summoning Congress in a special session on April 7, 1913. He invited the cooperation of all "forward-looking men" and indicated that he would assume the role of leadership. As an evidence of his resolve, he appeared before Congress in person to read his first message, reviving the old custom of Washington and Adams. Then he let it be known that he would not give his party any rest until it fulfilled its pledges to the country. When Democratic Senators balked at tariff reductions, they were sharply informed that the party had plighted its word and that no excuses or delays would be tolerated. DOMESTIC LEGISLATION =Financial Measures.=--Under this spirited leadership Congress went to work, passing first the Underwood tariff act of 1913, which made a downward revision in the rates of duty, fixing them on the average about twenty-six per cent lower than the figures of 1907. The protective principle was retained, but an effort was made to permit a moderate element of foreign competition. As a part of the revenue act Congress levied a tax on incomes as authorized by the sixteenth amendment to the Constitution. The tax which roused such party passions twenty years before was now accepted as a matter of course. Having disposed of the tariff, Congress took up the old and vexatious currency question and offered a new solution in the form of the federal reserve law of December, 1913. This measure, one of the most interesting in the history of federal finance, embraced four leading features. In the first place, it continued the prohibition on the issuance of notes by state banks and provided for a national currency. In the second place, it put the new banking system under the control of a federal reserve board composed entirely of government officials. To prevent the growth of a "central money power," it provided, in the third place, for the creation of twelve federal reserve banks, one in each of twelve great districts into which the country is divided. All local national banks were required and certain other banks permitted to become members of the new system and share in its control. Finally, with a view to expanding the currency, a step which the Democrats had long urged upon the country, the issuance of paper money, under definite safeguards, was authorized. Mindful of the agricultural interest, ever dear to the heart of Jefferson's followers, the Democrats supplemented the reserve law by the Farm Loan Act of 1916, creating federal agencies to lend money on farm mortgages at moderate rates of interest. Within a year $20,000,000 had been lent to farmers, the heaviest borrowing being in nine Western and Southern states, with Texas in the lead. =Anti-trust Legislation.=--The tariff and currency laws were followed by three significant measures relative to trusts. Rejecting utterly the Progressive doctrine of government regulation, President Wilson announced that it was the purpose of the Democrats "to destroy monopoly and maintain competition as the only effective instrument of business liberty." The first step in this direction, the Clayton Anti-trust Act, carried into great detail the Sherman law of 1890 forbidding and penalizing combinations in restraint of interstate and foreign trade. In every line it revealed a determined effort to tear apart the great trusts and to put all business on a competitive basis. Its terms were reinforced in the same year by a law creating a Federal Trade Commission empowered to inquire into the methods of corporations and lodge complaints against concerns "using any unfair method of competition." In only one respect was the severity of the Democratic policy relaxed. An act of 1918 provided that the Sherman law should not apply to companies engaged in export trade, the purpose being to encourage large corporations to enter foreign commerce. The effect of this whole body of anti-trust legislation, in spite of much labor on it, remained problematical. Very few combinations were dissolved as a result of it. Startling investigations were made into alleged abuses on the part of trusts; but it could hardly be said that huge business concerns had lost any of their predominance in American industry. =Labor Legislation.=--By no mere coincidence, the Clayton Anti-trust law of 1914 made many concessions to organized labor. It declared that "the labor of a human being is not a commodity or an article of commerce," and it exempted unions from prosecution as "combinations in restraint of trade." It likewise defined and limited the uses which the federal courts might make of injunctions in labor disputes and guaranteed trial by jury to those guilty of disobedience (see p. 581). The Clayton law was followed the next year by the Seamen's Act giving greater liberty of contract to American sailors and requiring an improvement of living conditions on shipboard. This was such a drastic law that shipowners declared themselves unable to meet foreign competition under its terms, owing to the low labor standards of other countries. Still more extraordinary than the Seamen's Act was the Adamson law of 1916 fixing a standard eight-hour work-day for trainmen on railroads--a measure wrung from Congress under a threat of a great strike by the four Railway Brotherhoods. This act, viewed by union leaders as a triumph, called forth a bitter denunciation of "trade union domination," but it was easier to criticize than to find another solution of the problem. Three other laws enacted during President Wilson's administration were popular in the labor world. One of them provided compensation for federal employees injured in the discharge of their duties. Another prohibited the labor of children under a certain age in the industries of the nation. A third prescribed for coal miners in Alaska an eight-hour day and modern safeguards for life and health. There were positive proofs that organized labor had obtained a large share of power in the councils of the country. =Federal and State Relations.=--If the interference of the government with business and labor represented a departure from the old idea of "the less government the better," what can be said of a large body of laws affecting the rights of states? The prohibition of child labor everywhere was one indication of the new tendency. Mr. Wilson had once declared such legislation unconstitutional; the Supreme Court declared it unconstitutional; but Congress, undaunted, carried it into effect under the guise of a tax on goods made by children below the age limit. There were other indications of the drift. Large sums of money were appropriated by Congress in 1916 to assist the states in building and maintaining highways. The same year the Farm Loan Act projected the federal government into the sphere of local money lending. In 1917 millions of dollars were granted to states in aid of vocational education, incidentally imposing uniform standards throughout the country. Evidently the government was no longer limited to the duties of the policeman. =The Prohibition Amendment.=--A still more significant form of intervention in state affairs was the passage, in December, 1917, of an amendment to the federal Constitution establishing national prohibition of the manufacture and sale of intoxicating liquors as beverages. This was the climax of a historical movement extending over half a century. In 1872, a National Prohibition party, launched three years before, nominated its first presidential candidate and inaugurated a campaign of agitation. Though its vote was never large, the cause for which it stood found increasing favor among the people. State after state by popular referendum abolished the liquor traffic within its borders. By 1917 at least thirty-two of the forty-eight were "dry." When the federal amendment was submitted for approval, the ratification was surprisingly swift. In a little more than a year, namely, on January 16, 1919, it was proclaimed. Twelve months later the amendment went into effect. COLONIAL AND FOREIGN POLICIES =The Philippines and Porto Rico.=--Independence for the Philippines and larger self-government for Porto Rico had been among the policies of the Democratic party since the campaign of 1900. President Wilson in his annual messages urged upon Congress more autonomy for the Filipinos and a definite promise of final independence. The result was the Jones Organic Act for the Philippines passed in 1916. This measure provided that the upper as well as the lower house of the Philippine legislature should be elected by popular vote, and declared it to be the intention of the United States to grant independence "as soon as a stable government can be established." This, said President Wilson on signing the bill, is "a very satisfactory advance in our policy of extending to them self-government and control of their own affairs." The following year Congress, yielding to President Wilson's insistence, passed a new organic act for Porto Rico, making both houses of the legislature elective and conferring American citizenship upon the inhabitants of the island. [Illustration: THE CARIBBEAN REGION] =American Power in the Caribbean.=--While extending more self-government to its dominions, the United States enlarged its sphere of influence in the Caribbean. The supervision of finances in Santo Domingo, inaugurated in Roosevelt's administration, was transformed into a protectorate under Wilson. In 1914 dissensions in the republic led to the landing of American marines to "supervise" the elections. Two years later, an officer in the American navy, with authority from Washington, placed the entire republic "in a state of military occupation." He proceeded to suspend the government and laws of the country, exile the president, suppress the congress, and substitute American military authority. In 1919 a consulting board of four prominent Dominicans was appointed to aid the American military governor; but it resigned the next year after making a plea for the restoration of independence to the republic. For all practical purposes, it seemed, the sovereignty of Santo Domingo had been transferred to the United States. In the neighboring republic of Haiti, a similar state of affairs existed. In the summer of 1915 a revolution broke out there--one of a long series beginning in 1804--and our marines were landed to restore order. Elections were held under the supervision of American officers, and a treaty was drawn up placing the management of Haitian finances and the local constabulary under American authority. In taking this action, our Secretary of State was careful to announce: "The United States government has no purpose of aggression and is entirely disinterested in promoting this protectorate." Still it must be said that there were vigorous protests on the part of natives and American citizens against the conduct of our agents in the island. In 1921 President Wilson was considering withdrawal. In line with American policy in the West Indian waters was the purchase in 1917 of the Danish Islands just off the coast of Porto Rico. The strategic position of the islands, especially in relation to Haiti and Porto Rico, made them an object of American concern as early as 1867, when a treaty of purchase was negotiated only to be rejected by the Senate of the United States. In 1902 a second arrangement was made, but this time it was defeated by the upper house of the Danish parliament. The third treaty brought an end to fifty years of bargaining and the Stars and Stripes were raised over St. Croix, St. Thomas, St. John, and numerous minor islands scattered about in the neighborhood. "It would be suicidal," commented a New York newspaper, "for America, on the threshold of a great commercial expansion in South America, to suffer a Heligoland, or a Gibraltar, or an Aden to be erected by her rivals at the mouth of her Suez." On the mainland American power was strengthened by the establishment of a protectorate over Nicaragua in 1916. =Mexican Relations.=--The extension of American enterprise southward into Latin America, of which the operations in the Caribbean regions were merely one phase, naturally carried Americans into Mexico to develop the natural resources of that country. Under the iron rule of General Porfirio Diaz, established in 1876 and maintained with only a short break until 1911, Mexico had become increasingly attractive to our business men. On the invitation of President Diaz, they had invested huge sums in Mexican lands, oil fields, and mines, and had laid the foundations of a new industrial order. The severe regime instituted by Diaz, however, stirred popular discontent. The peons, or serfs, demanded the break-up of the great estates, some of which had come down from the days of Cortez. Their clamor for "the restoration of the land to the people could not be silenced." In 1911 Diaz was forced to resign and left the country. Mexico now slid down the path to disorder. Revolutions and civil commotions followed in swift succession. A liberal president, Madero, installed as the successor to Diaz, was deposed in 1913 and brutally murdered. Huerta, a military adventurer, hailed for a time as another "strong man," succeeded Madero whose murder he was accused of instigating. Although Great Britain and nearly all the powers of Europe accepted the new government as lawful, the United States steadily withheld recognition. In the meantime Mexico was torn by insurrections under the leadership of Carranza, a friend of Madero, Villa, a bandit of generous pretensions, and Zapata, a radical leader of the peons. Without the support of the United States, Huerta was doomed. In the summer of 1914, the dictator resigned and fled from the capital, leaving the field to Carranza. For six years the new president, recognized by the United States, held a precarious position which he vigorously strove to strengthen against various revolutionary movements. At length in 1920, he too was deposed and murdered, and another military chieftain, Obregon, installed in power. These events right at our door could not fail to involve the government of the United States. In the disorders many American citizens lost their lives. American property was destroyed and land owned by Americans was confiscated. A new Mexican constitution, in effect nationalizing the natural resources of the country, struck at the rights of foreign investors. Moreover the Mexican border was in constant turmoil. Even in the last days of his administration, Mr. Taft felt compelled to issue a solemn warning to the Mexican government protesting against the violation of American rights. President Wilson, soon after his inauguration, sent a commissioner to Mexico to inquire into the situation. Although he declared a general policy of "watchful waiting," he twice came to blows with Mexican forces. In 1914 some American sailors at Tampico were arrested by a Mexican officer; the Mexican government, although it immediately released the men, refused to make the required apology for the incident. As a result President Wilson ordered the landing of American forces at Vera Cruz and the occupation of the city. A clash of arms followed in which several Americans were killed. War seemed inevitable, but at this juncture the governments of Argentina, Brazil, and Chile tendered their good offices as mediators. After a few weeks of negotiation, during which Huerta was forced out of power, American forces were withdrawn from Vera Cruz and the incident closed. In 1916 a second break in amicable relations occurred. In the spring of that year a band of Villa's men raided the town of Columbus, New Mexico, killing several citizens and committing robberies. A punitive expedition under the command of General Pershing was quickly sent out to capture the offenders. Against the protests of President Carranza, American forces penetrated deeply into Mexico without effecting the object of the undertaking. This operation lasted until January, 1917, when the imminence of war with Germany led to the withdrawal of the American soldiers. Friendly relations were resumed with the Mexican government and the policy of "watchful waiting" was continued. THE UNITED STATES AND THE EUROPEAN WAR =The Outbreak of the War.=--In the opening days of August, 1914, the age-long jealousies of European nations, sharpened by new imperial ambitions, broke out in another general conflict such as had shaken the world in the days of Napoleon. On June 28, the heir to the Austro-Hungarian throne was assassinated at Serajevo, the capital of Bosnia, an Austrian province occupied mainly by Serbs. With a view to stopping Serbian agitation for independence, Austria-Hungary laid the blame for this incident on the government of Serbia and made humiliating demands on that country. Germany at once proposed that the issue should be regarded as "an affair which should be settled solely between Austria-Hungary and Serbia"; meaning that the small nation should be left to the tender mercies of a great power. Russia refused to take this view. Great Britain proposed a settlement by mediation. Germany backed up Austria to the limit. To use the language of the German authorities: "We were perfectly aware that a possible warlike attitude of Austria-Hungary against Serbia might bring Russia upon the field and that it might therefore involve us in a war, in accordance with our duties as allies. We could not, however, in these vital interests of Austria-Hungary which were at stake, advise our ally to take a yielding attitude not compatible with his dignity nor deny him our assistance." That made the war inevitable. Every day of the fateful August, 1914, was crowded with momentous events. On the 1st, Germany declared war on Russia. On the 2d, the Germans invaded the little duchy of Luxemburg and notified the King of Belgium that they were preparing to violate the neutrality of his realm on their way to Paris. On the same day, Great Britain, anxiously besought by the French government, promised the aid of the British navy if German warships made hostile demonstrations in the Channel. August 3d, the German government declared war on France. The following day, Great Britain demanded of Germany respect for Belgian neutrality and, failing to receive the guarantee, broke off diplomatic relations. On the 5th, the British prime minister announced that war had opened between England and Germany. The storm now broke in all its pitiless fury. =The State of American Opinion.=--Although President Wilson promptly proclaimed the neutrality of the United States, the sympathies of a large majority of the American people were without doubt on the side of Great Britain and France. To them the invasion of the little kingdom of Belgium and the horrors that accompanied German occupation were odious in the extreme. Moreover, they regarded the German imperial government as an autocratic power wielded in the interest of an ambitious military party. The Kaiser, William II, and the Crown Prince were the symbols of royal arrogance. On the other hand, many Americans of German descent, in memory of their ties with the Fatherland, openly sympathized with the Central Powers; and many Americans of Irish descent, recalling their long and bitter struggle for home rule in Ireland, would have regarded British defeat as a merited redress of ancient grievances. Extremely sensitive to American opinion, but ill informed about it, the German government soon began systematic efforts to present its cause to the people of the United States in the most favorable light possible. Dr. Bernhard Dernburg, the former colonial secretary of the German empire, was sent to America as a special agent. For months he filled the newspapers, magazines, and periodicals with interviews, articles, and notes on the justice of the Teutonic cause. From a press bureau in New York flowed a stream of pamphlets, leaflets, and cartoons. A magazine, "The Fatherland," was founded to secure "fair play for Germany and Austria." Several professors in American universities, who had received their training in Germany, took up the pen in defense of the Central Empires. The German language press, without exception it seems, the National German Alliance, minor German societies, and Lutheran churches came to the support of the German cause. Even the English language papers, though generally favorable to the Entente Allies, opened their columns in the interest of equal justice to the spokesmen for all the contending powers of Europe. Before two weeks had elapsed the controversy had become so intense that President Wilson (August 18, 1914) was moved to caution his countrymen against falling into angry disputes. "Every man," he said, "who really loves America will act and speak in the true spirit of neutrality which is the spirit of impartiality and fairness and friendliness to all concerned.... We must be impartial in thought as well as in action, must put a curb upon our sentiments as well as upon every transaction that might be construed as a preference of one party to the struggle before another." =The Clash over American Trade.=--As in the time of the Napoleonic wars, the conflict in Europe raised fundamental questions respecting rights of Americans trading with countries at peace as well as those at war. On this point there existed on August 1, 1914, a fairly definite body of principles by which nations were bound. Among them the following were of vital significance. In the first place, it was recognized that an enemy merchant ship caught on the high seas was a legitimate prize of war which might be seized and confiscated. In the second place, it was agreed that "contraband of war" found on an enemy or neutral ship was a lawful prize; any ship suspected of carrying it was liable to search and if caught with forbidden goods was subject to seizure. In the third place, international law prescribed that a peaceful merchant ship, whether belonging to an enemy or to a neutral country, should not be destroyed or sunk without provision for the safety of crew and passengers. In the fourth place, it was understood that a belligerent had the right, if it could, to blockade the ports of an enemy and prevent the ingress and egress of all ships; but such a blockade, to be lawful, had to be effective. These general principles left undetermined two important matters: "What is an effective blockade?" and "What is contraband of war?" The task of answering these questions fell to Great Britain as mistress of the seas. Although the German submarines made it impossible for her battleships to maintain a continuous patrol of the waters in front of blockaded ports, she declared the blockade to be none the less "effective" because her navy was supreme. As to contraband of war Great Britain put such a broad interpretation upon the term as to include nearly every important article of commerce. Early in 1915 she declared even cargoes of grain and flour to be contraband, defending the action on the ground that the German government had recently taken possession of all domestic stocks of corn, wheat, and flour. A new question arose in connection with American trade with the neutral countries surrounding Germany. Great Britain early began to intercept ships carrying oil, gasoline, and copper--all war materials of prime importance--on the ground that they either were destined ultimately to Germany or would release goods for sale to Germans. On November 2, 1914, the English government announced that the Germans wore sowing mines in open waters and that therefore the whole of the North Sea was a military zone. Ships bound for Denmark, Norway, and Sweden were ordered to come by the English Channel for inspection and sailing directions. In effect, Americans were now licensed by Great Britain to trade in certain commodities and in certain amounts with neutral countries. Against these extraordinary measures, the State Department at Washington lodged pointed objections, saying: "This government is reluctantly forced to the conclusion that the present policy of His Majesty's government toward neutral ships and cargoes exceeds the manifest necessity of a belligerent and constitutes restrictions upon the rights of American citizens on the high seas, which are not justified by the rules of international law or required under the principle of self-preservation." =Germany Begins the Submarine Campaign.=--Germany now announced that, on and after February 18, 1915, the whole of the English Channel and the waters around Great Britain would be deemed a war zone and that every enemy ship found therein would be destroyed. The German decree added that, as the British admiralty had ordered the use of neutral flags by English ships in time of distress, neutral vessels would be in danger of destruction if found in the forbidden area. It was clear that Germany intended to employ submarines to destroy shipping. A new factor was thus introduced into naval warfare, one not provided for in the accepted laws of war. A warship overhauling a merchant vessel could easily take its crew and passengers on board for safe keeping as prescribed by international law; but a submarine ordinarily could do nothing of the sort. Of necessity the lives and the ships of neutrals, as well as of belligerents, were put in mortal peril. This amazing conduct Germany justified on the ground that it was mere retaliation against Great Britain for her violations of international law. The response of the United States to the ominous German order was swift and direct. On February 10, 1915, it warned Germany that if her commanders destroyed American lives and ships in obedience to that decree, the action would "be very hard indeed to reconcile with the friendly relations happily subsisting between the two governments." The American note added that the German imperial government would be held to "strict accountability" and all necessary steps would be taken to safeguard American lives and American rights. This was firm and clear language, but the only response which it evoked from Germany was a suggestion that, if Great Britain would allow food supplies to pass through the blockade, the submarine campaign would be dropped. =Violations of American Rights.=--Meanwhile Germany continued to ravage shipping on the high seas. On January 28, a German raider sank the American ship, _William P. Frye_, in the South Atlantic; on March 28, a British ship, the _Falaba_, was sunk by a submarine and many on board, including an American citizen, were killed; and on April 28, a German airplane dropped bombs on the American steamer _Cushing_. On the morning of May 1, 1915, Americans were astounded to see in the newspapers an advertisement, signed by the German Imperial Embassy, warning travelers of the dangers in the war zone and notifying them that any who ventured on British ships into that area did so at their own risk. On that day, the _Lusitania_, a British steamer, sailed from New York for Liverpool. On May 7, without warning, the ship was struck by two torpedoes and in a few minutes went down by the bow, carrying to death 1153 persons including 114 American men, women, and children. A cry of horror ran through the country. The German papers in America and a few American people argued that American citizens had been duly warned of the danger and had deliberately taken their lives into their own hands; but the terrible deed was almost universally condemned by public opinion. =The _Lusitania_ Notes.=--On May 14, the Department of State at Washington made public the first of three famous notes on the _Lusitania_ case. It solemnly informed the German government that "no warning that an unlawful and inhumane act will be committed can possibly be accepted as an excuse or palliation for that act or as an abatement of the responsibility for its commission." It called upon the German government to disavow the act, make reparation as far as possible, and take steps to prevent "the recurrence of anything so obviously subversive of the principles of warfare." The note closed with a clear caution to Germany that the government of the United States would not "omit any word or any act necessary to the performance of its sacred duty of maintaining the rights of the United States and its citizens and of safeguarding their free exercise and enjoyment." The die was cast; but Germany in reply merely temporized. In a second note, made public on June 11, the position of the United States was again affirmed. William Jennings Bryan, the Secretary of State, had resigned because the drift of President Wilson's policy was not toward mediation but the strict maintenance of American rights, if need be, by force of arms. The German reply was still evasive and German naval commanders continued their course of sinking merchant ships. In a third and final note of July 21, 1915, President Wilson made it clear to Germany that he meant what he said when he wrote that he would maintain the rights of American citizens. Finally after much discussion and shifting about, the German ambassador on September 1, 1915, sent a brief note to the Secretary of State: "Liners will not be sunk by our submarines without warning and without safety of the lives of non-combatants, provided the liners do not try to escape or offer resistance." Editorially, the New York _Times_ declared: "It is a triumph not only of diplomacy but of reason, of humanity, of justice, and of truth." The Secretary of State saw in it "a recognition of the fundamental principles for which we have contended." =The Presidential Election of 1916.=--In the midst of this crisis came the presidential campaign. On the Republican side everything seemed to depend upon the action of the Progressives. If the breach created in 1912 could be closed, victory was possible; if not, defeat was certain. A promise of unity lay in the fact that the conventions of the Republicans and Progressives were held simultaneously in Chicago. The friends of Roosevelt hoped that both parties would select him as their candidate; but this hope was not realized. The Republicans chose, and the Progressives accepted, Charles E. Hughes, an associate justice of the federal Supreme Court who, as governor of New York, had won a national reputation by waging war on "machine politicians." In the face of the clamor for expressions of sympathy with one or the other of the contending powers of Europe, the Republicans chose a middle course, declaring that they would uphold all American rights "at home and abroad, by land and by sea." This sentiment Mr. Hughes echoed in his acceptance speech. By some it was interpreted to mean a firmer policy in dealing with Great Britain; by others, a more vigorous handling of the submarine menace. The Democrats, on their side, renominated President Wilson by acclamation, reviewed with pride the legislative achievements of the party, and commended "the splendid diplomatic victories of our great President who has preserved the vital interests of our government and its citizens and kept us out of war." In the election which ensued President Wilson's popular vote exceeded that cast for Mr. Hughes by more than half a million, while his electoral vote stood 277 to 254. The result was regarded, and not without warrant, as a great personal triumph for the President. He had received the largest vote yet cast for a presidential candidate. The Progressive party practically disappeared, and the Socialists suffered a severe set-back, falling far behind the vote of 1912. =President Wilson Urges Peace upon the Warring Nations.=--Apparently convinced that his pacific policies had been profoundly approved by his countrymen, President Wilson, soon after the election, addressed "peace notes" to the European belligerents. On December 16, the German Emperor proposed to the Allied Powers that they enter into peace negotiations, a suggestion that was treated as a mere political maneuver by the opposing governments. Two days later President Wilson sent a note to the warring nations asking them to avow "the terms upon which war might be concluded." To these notes the Central Powers replied that they were ready to meet their antagonists in a peace conference; and Allied Powers answered by presenting certain conditions precedent to a satisfactory settlement. On January 22, 1917, President Wilson in an address before the Senate, declared it to be a duty of the United States to take part in the establishment of a stable peace on the basis of certain principles. These were, in short: "peace without victory"; the right of nationalities to freedom and self-government; the independence of Poland; freedom of the seas; the reduction of armaments; and the abolition of entangling alliances. The whole world was discussing the President's remarkable message, when it was dumbfounded to hear, on January 31, that the German ambassador at Washington had announced the official renewal of ruthless submarine warfare. THE UNITED STATES AT WAR =Steps toward War.=--Three days after the receipt of the news that the German government intended to return to its former submarine policy, President Wilson severed diplomatic relations with the German empire. At the same time he explained to Congress that he desired no conflict with Germany and would await an "overt act" before taking further steps to preserve American rights. "God grant," he concluded, "that we may not be challenged to defend them by acts of willful injustice on the part of the government of Germany." Yet the challenge came. Between February 26 and April 2, six American merchant vessels were torpedoed, in most cases without any warning and without regard to the loss of American lives. President Wilson therefore called upon Congress to answer the German menace. The reply of Congress on April 6 was a resolution, passed with only a few dissenting votes, declaring the existence of a state of war with Germany. Austria-Hungary at once severed diplomatic relations with the United States; but it was not until December 7 that Congress, acting on the President's advice, declared war also on that "vassal of the German government." =American War Aims.=--In many addresses at the beginning and during the course of the war, President Wilson stated the purposes which actuated our government in taking up arms. He first made it clear that it was a war of self-defense. "The military masters of Germany," he exclaimed, "denied us the right to be neutral." Proof of that lay on every hand. Agents of the German imperial government had destroyed American lives and American property on the high seas. They had filled our communities with spies. They had planted bombs in ships and munition works. They had fomented divisions among American citizens. Though assailed in many ways and compelled to resort to war, the United States sought no material rewards. "The world must be made safe for democracy. Its peace must be planted upon the tested foundations of political liberty. We have no selfish ends to serve. We desire no conquest, no dominion. We seek no indemnities for ourselves." In a very remarkable message read to Congress on January 8, 1918, President Wilson laid down his famous "fourteen points" summarizing the ideals for which we were fighting. They included open treaties of peace, openly arrived at; absolute freedom of navigation upon the seas; the removal, as far as possible, of trade barriers among nations; reduction of armaments; adjustment of colonial claims in the interest of the populations concerned; fair and friendly treatment of Russia; the restoration of Belgium; righting the wrong done to France in 1871 in the matter of Alsace-Lorraine; adjustment of Italian frontiers along the lines of nationality; more liberty for the peoples of Austria-Hungary; the restoration of Serbia and Rumania; the readjustment of the Turkish Empire; an independent Poland; and an association of nations to afford mutual guarantees to all states great and small. On a later occasion President Wilson elaborated the last point, namely, the formation of a league of nations to guarantee peace and establish justice among the powers of the world. Democracy, the right of nations to determine their own fate, a covenant of enduring peace--these were the ideals for which the American people were to pour out their blood and treasure. =The Selective Draft.=--The World War became a war of nations. The powers against which we were arrayed had every able-bodied man in service and all their resources, human and material, thrown into the scale. For this reason, President Wilson summoned the whole people of the United States to make every sacrifice necessary for victory. Congress by law decreed that the national army should be chosen from all male citizens and males not enemy aliens who had declared their intention of becoming citizens. By the first act of May 18, 1917, it fixed the age limits at twenty-one to thirty-one inclusive. Later, in August, 1918, it extended them to eighteen and forty-five. From the men of the first group so enrolled were chosen by lot the soldiers for the World War who, with the regular army and the national guard, formed the American Expeditionary Force upholding the American cause on the battlefields of Europe. "The whole nation," said the President, "must be a team in which each man shall play the part for which he is best fitted." =Liberty Loans and Taxes.=--In order that the military and naval forces should be stinted in no respect, the nation was called upon to place its financial resources at the service of the government. Some urged the "conscription of wealth as well as men," meaning the support of the war out of taxes upon great fortunes; but more conservative counsels prevailed. Four great Liberty Loans were floated, all the agencies of modern publicity being employed to enlist popular interest. The first loan had four and a half million subscribers; the fourth more than twenty million. Combined with loans were heavy taxes. A progressive tax was laid upon incomes beginning with four per cent on incomes in the lower ranges and rising to sixty-three per cent of that part of any income above $2,000,000. A progressive tax was levied upon inheritances. An excess profits tax was laid upon all corporations and partnerships, rising in amount to sixty per cent of the net income in excess of thirty-three per cent on the invested capital. "This," said a distinguished economist, "is the high-water mark in the history of taxation. Never before in the annals of civilization has an attempt been made to take as much as two-thirds of a man's income by taxation." =Mobilizing Material Resources.=--No stone was left unturned to provide the arms, munitions, supplies, and transportation required in the gigantic undertaking. Between the declaration of war and the armistice, Congress enacted law after law relative to food supplies, raw materials, railways, mines, ships, forests, and industrial enterprises. No power over the lives and property of citizens, deemed necessary to the prosecution of the armed conflict, was withheld from the government. The farmer's wheat, the housewife's sugar, coal at the mines, labor in the factories, ships at the wharves, trade with friendly countries, the railways, banks, stores, private fortunes--all were mobilized and laid under whatever obligations the government deemed imperative. Never was a nation more completely devoted to a single cause. A law of August 10, 1917, gave the President power to fix the prices of wheat and coal and to take almost any steps necessary to prevent monopoly and excessive prices. By a series of measures, enlarging the principles of the shipping act of 1916, ships and shipyards were brought under public control and the government was empowered to embark upon a great ship-building program. In December, 1917, the government assumed for the period of the war the operation of the railways under a presidential proclamation which was elaborated in March, 1918, by act of Congress. In the summer of 1918 the express, telephone, and telegraph business of the entire country passed under government control. By war risk insurance acts allowances were made for the families of enlisted men, compensation for injuries was provided, death benefits were instituted, and a system of national insurance was established in the interest of the men in service. Never before in the history of the country had the government taken such a wise and humane view of its obligations to those who served on the field of battle or on the seas. =The Espionage and Sedition Acts.=--By the Espionage law of June 15, 1917, and the amending law, known as the Sedition act, passed in May of the following year, the government was given a drastic power over the expression of opinion. The first measure penalized those who conveyed information to a foreign country to be used to the injury of the United States; those who made false statements designed to interfere with the military or naval forces of the United States; those who attempted to stir up insubordination or disloyalty in the army and navy; and those who willfully obstructed enlistment. The Sedition act was still more severe and sweeping in its terms. It imposed heavy penalties upon any person who used "abusive language about the government or institutions of the country." It authorized the dismissal of any officer of the government who committed "disloyal acts" or uttered "disloyal language," and empowered the Postmaster General to close the mails to persons violating the law. This measure, prepared by the Department of Justice, encountered vigorous opposition in the Senate, where twenty-four Republicans and two Democrats voted against it. Senator Johnson of California denounced it as a law "to suppress the freedom of the press in the United States and to prevent any man, no matter who he is, from expressing legitimate criticism concerning the present government." The constitutionality of the acts was attacked; but they were sustained by the Supreme Court and stringently enforced. [Illustration: _Copyright by Underwood and Underwood, N.Y._ THE LAUNCHING OF A SHIP AT THE GREAT NAVAL YARDS, NEWARK, N.J.] =Labor and the War.=--In view of the restlessness of European labor during the war and especially the proletarian revolution in Russia in November, 1917, some anxiety was early expressed as to the stand which organized labor might take in the United States. It was, however, soon dispelled. Samuel Gompers, speaking for the American Federation of Labor, declared that "this is labor's war," and pledged the united support of all the unions. There was some dissent. The Socialist party denounced the war as a capitalist quarrel; but all the protests combined were too slight to have much effect. American labor leaders were sent to Europe to strengthen the wavering ranks of trade unionists in war-worn England, France, and Italy. Labor was given representation on the important boards and commissions dealing with industrial questions. Trade union standards were accepted by the government and generally applied in industry. The Department of Labor became one of the powerful war centers of the nation. In a memorable address to the American Federation of Labor, President Wilson assured the trade unionists that labor conditions should not be made unduly onerous by the war and received in return a pledge of loyalty from the Federation. Recognition of labor's contribution to winning the war was embodied in the treaty of peace, which provided for a permanent international organization to promote the world-wide effort of labor to improve social conditions. "The league of nations has for its object the establishment of universal peace," runs the preamble to the labor section of the treaty, "and such a peace can be established only if it is based upon social justice.... The failure of any nation to adopt humane conditions of labor is an obstacle in the way of other nations which desire to improve the conditions in their own countries." =The American Navy in the War.=--As soon as Congress declared war the fleet was mobilized, American ports were thrown open to the warships of the Allies, immediate provision was made for increasing the number of men and ships, and a contingent of war vessels was sent to cooperate with the British and French in their life-and-death contest with submarines. Special effort was made to stimulate the production of "submarine chasers" and "scout cruisers" to be sent to the danger zone. Convoys were provided to accompany the transports conveying soldiers to France. Before the end of the war more than three hundred American vessels and 75,000 officers and men were operating in European waters. Though the German fleet failed to come out and challenge the sea power of the Allies, the battleships of the United States were always ready to do their full duty in such an event. As things turned out, the service of the American navy was limited mainly to helping in the campaign that wore down the submarine menace to Allied shipping. =The War in France.=--Owing to the peculiar character of the warfare in France, it required a longer time for American military forces to get into action; but there was no unnecessary delay. Soon after the declaration of war, steps were taken to give military assistance to the Allies. The regular army was enlarged and the troops of the national guard were brought into national service. On June 13, General John J. Pershing, chosen head of the American Expeditionary Forces, reached Paris and began preparations for the arrival of our troops. In June, the vanguard of the army reached France. A slow and steady stream followed. As soon as the men enrolled under the draft were ready, it became a flood. During the period of the war the army was enlarged from about 190,000 men to 3,665,000, of whom more than 2,000,000 were in France when the armistice was signed. Although American troops did not take part on a large scale until the last phase of the war in 1918, several battalions of infantry were in the trenches by October, 1917, and had their first severe encounter with the Germans early in November. In January, 1918, they took over a part of the front line as an American sector. In March, General Pershing placed our forces at the disposal of General Foch, commander-in-chief of the Allied armies. The first division, which entered the Montdidier salient in April, soon was engaged with the enemy, "taking with splendid dash the town of Cantigny and all other objectives, which were organized and held steadfastly against vicious counter attacks and galling artillery fire." [Illustration: _Copyright by Underwood and Underwood, N.Y._ TROOPS RETURNING FROM FRANCE] When the Germans launched their grand drives toward the Marne and Paris, in June and July, 1918, every available man was placed at General Foch's command. At Belleau Wood, at Chateau-Thierry, and other points along the deep salient made by the Germans into the French lines, American soldiers distinguished themselves by heroic action. They also played an important role in the counter attack that "smashed" the salient and drove the Germans back. In September, American troops, with French aid, "wiped out" the German salient at St. Mihiel. By this time General Pershing was ready for the great American drive to the northeast in the Argonne forest, while he also cooperated with the British in the assault on the Hindenburg line. In the Meuse-Argonne battle, our soldiers encountered some of the most severe fighting of the war and pressed forward steadily against the most stubborn resistance from the enemy. On the 6th of November, reported General Pershing, "a division of the first corps reached a point on the Meuse opposite Sedan, twenty-five miles from our line of departure. The strategical goal which was our highest hope was gained. We had cut the enemy's main line of communications and nothing but a surrender or an armistice could save his army from complete disaster." Five days later the end came. On the morning of November 11, the order to cease firing went into effect. The German army was in rapid retreat and demoralization had begun. The Kaiser had abdicated and fled into Holland. The Hohenzollern dreams of empire were shattered. In the fifty-second month, the World War, involving nearly every civilized nation on the globe, was brought to a close. More than 75,000 American soldiers and sailors had given their lives. More than 250,000 had been wounded or were missing or in German prison camps. [Illustration: WESTERN BATTLE LINES OF THE VARIOUS YEARS OF THE WORLD WAR] THE SETTLEMENT AT PARIS =The Peace Conference.=--On January 18, 1919, a conference of the Allied and Associated Powers assembled to pronounce judgment upon the German empire and its defeated satellites: Austria-Hungary, Bulgaria, and Turkey. It was a moving spectacle. Seventy-two delegates spoke for thirty-two states. The United States, Great Britain, France, Italy, and Japan had five delegates each. Belgium, Brazil, and Serbia were each assigned three. Canada, Australia, South Africa, India, China, Greece, Hedjaz, Poland, Portugal, Rumania, Siam, and Czechoslovakia were allotted two apiece. The remaining states of New Zealand, Bolivia, Cuba, Ecuador, Guatemala, Haiti, Honduras, Liberia, Nicaragua, Panama, Peru, and Uruguay each had one delegate. President Wilson spoke in person for the United States. England, France, and Italy were represented by their premiers: David Lloyd George, Georges Clemenceau, and Vittorio Orlando. [Illustration: PREMIERS LLOYD GEORGE, ORLANDO AND CLEMENCEAU AND PRESIDENT WILSON AT PARIS] =The Supreme Council.=--The real work of the settlement was first committed to a Supreme Council of ten representing the United States, Great Britain, France, Italy, and Japan. This was later reduced to five members. Then Japan dropped out and finally Italy, leaving only President Wilson and the Premiers, Lloyd George and Clemenceau, the "Big Three," who assumed the burden of mighty decisions. On May 6, their work was completed and in a secret session of the full conference the whole treaty of peace was approved, though a few of the powers made reservations or objections. The next day the treaty was presented to the Germans who, after prolonged protests, signed on the last day of grace, June 28. This German treaty was followed by agreements with Austria, Hungary, Bulgaria, and Turkey. Collectively these great documents formed the legal basis of the general European settlement. =The Terms of the Settlement.=--The combined treaties make a huge volume. The German treaty alone embraces about 80,000 words. Collectively they cover an immense range of subjects which may be summarized under five heads: (1) The territorial settlement in Europe; (2) the destruction of German military power; (3) reparations for damages done by Germany and her allies; (4) the disposition of German colonies and protectorates; and (5) the League of Nations. Germany was reduced by the cession of Alsace-Lorraine to France and the loss of several other provinces. Austria-Hungary was dissolved and dismembered. Russia was reduced by the creation of new states on the west. Bulgaria was stripped of her gains in the recent Balkan wars. Turkey was dismembered. Nine new independent states were created: Poland, Finland, Lithuania, Latvia, Esthonia, Ukraine, Czechoslovakia, Armenia, and Hedjaz. Italy, Greece, Rumania, and Serbia were enlarged by cessions of territory and Serbia was transformed into the great state of Jugoslavia. The destruction of German military power was thorough. The entire navy, with minor exceptions, was turned over to the Allied and Associated Powers; Germany's total equipment for the future was limited to six battleships and six light cruisers, with certain small vessels but no submarines. The number of enlisted men and officers for the army was fixed at not more than 100,000; the General Staff was dissolved; and the manufacture of munitions restricted. Germany was compelled to accept full responsibility for all damages; to pay five billion dollars in cash and goods, and to make certain other payments which might be ordered from time to time by an inter-allied reparations commission. She was also required to deliver to Belgium, France, and Italy, millions of tons of coal every year for ten years; while by way of additional compensation to France the rich coal basin of the Saar was placed under inter-allied control to be exploited under French administration for a period of at least fifteen years. Austria and the other associates of Germany were also laid under heavy obligations to the victors. Damages done to shipping by submarines and other vessels were to be paid for on the basis of ton for ton. The disposition of the German colonies and the old Ottoman empire presented knotty problems. It was finally agreed that the German colonies and Turkish provinces which were in a backward stage of development should be placed under the tutelage of certain powers acting as "mandatories" holding them in "a sacred trust of civilization." An exception to the mandatory principle arose in the case of German rights in Shantung, all of which were transferred directly to Japan. It was this arrangement that led the Chinese delegation to withhold their signatures from the treaty. =The League of Nations.=--High among the purposes which he had in mind in summoning the nation to arms, President Wilson placed the desire to put an end to war. All through the United States the people spoke of the "war to end war." No slogan called forth a deeper response from the public. The President himself repeatedly declared that a general association of nations must be formed to guard the peace and protect all against the ambitions of the few. "As I see it," he said in his address on opening the Fourth Liberty Loan campaign, "the constitution of the League of Nations and the clear definition of its objects must be a part, in a sense the most essential part, of the peace settlement itself." Nothing was more natural, therefore, than Wilson's insistence at Paris upon the formation of an international association. Indeed he had gone to Europe in person largely to accomplish that end. Part One of the treaty with Germany, the Covenant of the League of Nations, was due to his labors more than to any other influence. Within the League thus created were to be embraced all the Allied and Associated Powers and nearly all the neutrals. By a two-thirds vote of the League Assembly the excluded nations might be admitted. The agencies of the League of Nations were to be three in number: (1) a permanent secretariat located at Geneva; (2) an Assembly consisting of one delegate from each country, dominion, or self-governing colony (including Canada, Australia, South Africa, New Zealand, and India); (3) and a Council consisting of representatives of the United States, Great Britain, France, Italy, and Japan, and four other representatives selected by the Assembly from time to time. The duties imposed on the League and the obligations accepted by its members were numerous and important. The Council was to take steps to formulate a scheme for the reduction of armaments and to submit a plan for the establishment of a permanent Court of International Justice. The members of the League (Article X) were to respect and preserve as against external aggression the territorial integrity and existing political independence of all the associated nations. They were to submit to arbitration or inquiry by the Council all disputes which could not be adjusted by diplomacy and in no case to resort to war until three months after the award. Should any member disregard its covenants, its action would be considered an act of war against the League, which would accordingly cut off the trade and business of the hostile member and recommend through the Council to the several associated governments the military measures to be taken. In case the decision in any arbitration of a dispute was unanimous, the members of the League affected by it were to abide by it. Such was the settlement at Paris and such was the association of nations formed to promote the peace of the world. They were quickly approved by most of the powers, and the first Assembly of the League of Nations met at Geneva late in 1920. =The Treaty in the United States.=--When the treaty was presented to the United States Senate for approval, a violent opposition appeared. In that chamber the Republicans had a slight majority and a two-thirds vote was necessary for ratification. The sentiment for and against the treaty ran mainly along party lines; but the Republicans were themselves divided. The major portion, known as "reservationists," favored ratification with certain conditions respecting American rights; while a small though active minority rejected the League of Nations in its entirety, announcing themselves to be "irreconcilables." The grounds of this Republican opposition lay partly in the terms of peace imposed on Germany and partly in the Covenant of the League of Nations. Exception was taken to the clauses which affected the rights of American citizens in property involved in the adjustment with Germany, but the burden of criticism was directed against the League. Article X guaranteeing against external aggression the political independence and territorial integrity of the members of the League was subjected to a specially heavy fire; while the treatment accorded to China and the sections affecting American internal affairs were likewise attacked as "unjust and dangerous." As an outcome of their deliberations, the Republicans proposed a long list of reservations which touched upon many of the vital parts of the treaty. These were rejected by President Wilson as amounting in effect to a "nullification of the treaty." As a deadlock ensued the treaty was definitely rejected, owing to the failure of its sponsors to secure the requisite two-thirds vote. [Illustration: EUROPE] =The League of Nations in the Campaign of 1920.=--At this juncture the presidential campaign of 1920 opened. The Republicans, while condemning the terms of the proposed League, endorsed the general idea of an international agreement to prevent war. Their candidate, Senator Warren G. Harding of Ohio, maintained a similar position without saying definitely whether the League devised at Paris could be recast in such a manner as to meet his requirements. The Democrats, on the other hand, while not opposing limitations clarifying the obligations of the United States, demanded "the immediate ratification of the treaty without reservations which would impair its essential integrity." The Democratic candidate, Governor James M. Cox, of Ohio, announced his firm conviction that the United States should "go into the League," without closing the door to mild reservations; he appealed to the country largely on that issue. The election of Senator Harding, in an extraordinary "landslide," coupled with the return of a majority of Republicans to the Senate, made uncertain American participation in the League of Nations. =The United States and International Entanglements.=--Whether America entered the League or not, it could not close its doors to the world and escape perplexing international complications. It had ever-increasing financial and commercial connections with all other countries. Our associates in the recent war were heavily indebted to our government. The prosperity of American industries depended to a considerable extent upon the recovery of the impoverished and battle-torn countries of Europe. There were other complications no less specific. The United States was compelled by force of circumstances to adopt a Russian policy. The government of the Czar had been overthrown by a liberal revolution, which in turn had been succeeded by an extreme, communist "dictatorship." The Bolsheviki, or majority faction of the socialists, had obtained control of the national council of peasants, workingmen, and soldiers, called the soviet, and inaugurated a radical regime. They had made peace with Germany in March, 1918. Thereupon the United States joined England, France, and Japan in an unofficial war upon them. After the general settlement at Paris in 1919, our government, while withdrawing troops from Siberia and Archangel, continued in its refusal to recognize the Bolshevists or to permit unhampered trade with them. President Wilson repeatedly denounced them as the enemies of civilization and undertook to lay down for all countries the principles which should govern intercourse with Russia. Further international complications were created in connection with the World War, wholly apart from the terms of peace or the League of Nations. The United States had participated in a general European conflict which changed the boundaries of countries, called into being new nations, and reduced the power and territories of the vanquished. Accordingly, it was bound to face the problem of how far it was prepared to cooperate with the victors in any settlement of Europe's difficulties. By no conceivable process, therefore, could America be disentangled from the web of world affairs. Isolation, if desirable, had become impossible. Within three hundred years from the founding of the tiny settlements at Jamestown and Plymouth, America, by virtue of its institutions, its population, its wealth, and its commerce, had become first among the nations of the earth. By moral obligations and by practical interests its fate was thus linked with the destiny of all mankind. SUMMARY OF DEMOCRACY AND THE WORLD WAR The astounding industrial progress that characterized the period following the Civil War bequeathed to the new generation many perplexing problems connected with the growth of trusts and railways, the accumulation of great fortunes, the increase of poverty in the industrial cities, the exhaustion of the free land, and the acquisition of dominions in distant seas. As long as there was an abundance of land in the West any able-bodied man with initiative and industry could become an independent farmer. People from the cities and immigrants from Europe had always before them that gateway to property and prosperity. When the land was all gone, American economic conditions inevitably became more like those of Europe. Though the new economic questions had been vigorously debated in many circles before his day, it was President Roosevelt who first discussed them continuously from the White House. The natural resources of the country were being exhausted; he advocated their conservation. Huge fortunes were being made in business creating inequalities in opportunity; he favored reducing them by income and inheritance taxes. Industries were disturbed by strikes; he pressed arbitration upon capital and labor. The free land was gone; he declared that labor was in a less favorable position to bargain with capital and therefore should organize in unions for collective bargaining. There had been wrong-doing on the part of certain great trusts; those responsible should be punished. The spirit of reform was abroad in the land. The spoils system was attacked. It was alleged that the political parties were dominated by "rings and bosses." The United States Senate was called "a millionaires' club." Poverty and misery were observed in the cities. State legislatures and city governments were accused of corruption. In answer to the charges, remedies were proposed and adopted. Civil service reform was approved. The Australian ballot, popular election of Senators, the initiative, referendum, and recall, commission and city manager plans for cities, public regulation of railways, compensation for those injured in industries, minimum wages for women and children, pensions for widows, the control of housing in the cities--these and a hundred other reforms were adopted and tried out. The national watchword became: "America, Improve Thyself." The spirit of reform broke into both political parties. It appeared in many statutes enacted by Congress under President Taft's leadership. It disrupted the Republicans temporarily in 1912 when the Progressive party entered the field. It led the Democratic candidate in that year, Governor Wilson, to make a "progressive appeal" to the voters. It inspired a considerable program of national legislation under President Wilson's two administrations. In the age of change, four important amendments to the federal constitution, the first in more than forty years, were adopted. The sixteenth empowered Congress to lay an income tax. The seventeenth assured popular election of Senators. The eighteenth made prohibition national. The nineteenth, following upon the adoption of woman suffrage in many states, enfranchised the women of the nation. In the sphere of industry, equally great changes took place. The major portion of the nation's business passed into the hands of corporations. In all the leading industries of the country labor was organized into trade unions and federated in a national organization. The power of organized capital and organized labor loomed upon the horizon. Their struggles, their rights, and their place in the economy of the nation raised problems of the first magnitude. While the country was engaged in a heated debate upon its domestic issues, the World War broke out in Europe in 1914. As a hundred years before, American rights upon the high seas became involved at once. They were invaded on both sides; but Germany, in addition to assailing American ships and property, ruthlessly destroyed American lives. She set at naught the rules of civilized warfare upon the sea. Warnings from President Wilson were without avail. Nothing could stay the hand of the German war party. After long and patient negotiations, President Wilson in 1917 called upon the nation to take up arms against an assailant that had in effect declared war upon America. The answer was swift and firm. The national resources, human and material, were mobilized. The navy was enlarged, a draft army created, huge loans floated, heavy taxes laid, and the spirit of sacrifice called forth in a titanic struggle against an autocratic power that threatened to dominate Europe and the World. In the end, American financial, naval, and military assistance counted heavily in the scale. American sailors scoured the seas searching for the terrible submarines. American soldiers took part in the last great drives that broke the might of Germany's army. Such was the nation's response to the President's summons to arms in a war "for democracy" and "to end war." When victory crowned the arms of the powers united against Germany, President Wilson in person took part in the peace council. He sought to redeem his pledge to end wars by forming a League of Nations to keep the peace. In the treaty drawn at the close of the war the first part was a covenant binding the nations in a permanent association for the settlement of international disputes. This treaty, the President offered to the United States Senate for ratification and to his country for approval. Once again, as in the days of the Napoleonic wars, the people seriously discussed the place of America among the powers of the earth. The Senate refused to ratify the treaty. World politics then became an issue in the campaign of 1920. Though some Americans talked as if the United States could close its doors and windows against all mankind, the victor in the election, Senator Harding, of Ohio, knew better. The election returns were hardly announced before he began to ask the advice of his countrymen on the pressing theme that would not be downed: "What part shall America--first among the nations of the earth in wealth and power--assume at the council table of the world?" =General References= Woodrow Wilson, _The New Freedom_. C.L. Jones, _The Caribbean Interests of the United States_. H.P. Willis, _The Federal Reserve_. C.W. Barron, _The Mexican Problem_ (critical toward Mexico). L.J. de Bekker, _The Plot against Mexico_ (against American intervention). Theodore Roosevelt, _America and the World War_. E.E. Robinson and V.J. West, _The Foreign Policy of Woodrow Wilson_. J.S. Bassett, _Our War with Germany_. Carlton J.H. Hayes, _A Brief History of the Great War_. J.B. McMaster, _The United States in the World War_. =Research Topics= =President Wilson's First Term.=--Elson, _History of the United States_, pp. 925-941. =The Underwood Tariff Act.=--Ogg, _National Progress_ (The American Nation Series), pp. 209-226. =The Federal Reserve System.=--Ogg, pp. 228-232. =Trust and Labor Legislation.=--Ogg, pp. 232-236. =Legislation Respecting the Territories.=--Ogg, pp. 236-245. =American Interests in the Caribbean.=--Ogg, pp. 246-265. =American Interests in the Pacific.=--Ogg, pp. 304-324. =Mexican Affairs.=--Haworth, pp. 388-395; Ogg, pp. 284-304. =The First Phases of the European War.=--Haworth, pp. 395-412; Ogg, pp. 325-343. =The Campaign of 1916.=--Haworth, pp. 412-418; Ogg, pp. 364-383. =America Enters the War.=--Haworth, pp. 422-440; pp. 454-475. Ogg, pp. 384-399; Elson, pp. 951-970. =Mobilizing the Nation.=--Haworth, pp. 441-453. =The Peace Settlement.=--Haworth, pp. 475-497; Elson, pp. 971-982. =Questions= 1. Enumerate the chief financial measures of the Wilson administration. Review the history of banks and currency and give the details of the Federal reserve law. 2. What was the Wilson policy toward trusts? Toward labor? 3. Review again the theory of states' rights. How has it fared in recent years? 4. What steps were taken in colonial policies? In the Caribbean? 5. Outline American-Mexican relations under Wilson. 6. How did the World War break out in Europe? 7. Account for the divided state of opinion in America. 8. Review the events leading up to the War of 1812. Compare them with the events from 1914 to 1917. 9. State the leading principles of international law involved and show how they were violated. 10. What American rights were assailed in the submarine campaign? 11. Give Wilson's position on the _Lusitania_ affair. 12. How did the World War affect the presidential campaign of 1916? 13. How did Germany finally drive the United States into war? 14. State the American war aims given by the President. 15. Enumerate the measures taken by the government to win the war. 16. Review the part of the navy in the war. The army. 17. How were the terms of peace formulated? 18. Enumerate the principal results of the war. 19. Describe the League of Nations. 20. Trace the fate of the treaty in American politics. 21. Can there be a policy of isolation for America? APPENDIX CONSTITUTION OF THE UNITED STATES We the people of the United States, in order to form a more perfect union, establish justice, insure domestic tranquillity, provide for the common defence, promote the general welfare, and secure the blessings of liberty to ourselves and our posterity, do ordain and establish this Constitution for the United States of America. ARTICLE I SECTION 1. All legislative powers herein granted shall be vested in a Congress of the United States, which shall consist of a Senate and House of Representatives. SECTION 2. 1. The House of Representatives shall be composed of members chosen every second year by the people of the several States, and the electors in each State shall have the qualifications requisite for electors of the most numerous branch of the State legislature. 2. No person shall be a representative who shall not have attained to the age of twenty-five years, and been seven years a citizen of the United States, and who shall not, when elected, be an inhabitant of that State in which he shall be chosen. 3. Representatives and direct taxes[3] shall be apportioned among the several States which may be included within this Union, according to their respective numbers, which shall be determined by adding to the whole number of free persons, including those bound to service for a term of years, and excluding Indians not taxed, three-fifths of all other persons.[3] The actual enumeration shall be made within three years after the first meeting of the Congress of the United States, and within every subsequent term of ten years, in such manner as they shall by law direct. The number of representatives shall not exceed one for every thirty thousand, but each State shall have at least one representative; and until such enumeration shall be made, the State of New Hampshire shall be entitled to choose three, Massachusetts eight, Rhode Island and Providence Plantations one, Connecticut five, New York six, New Jersey four, Pennsylvania eight, Delaware one, Maryland six, Virginia ten, North Carolina five, South Carolina five, and Georgia three. 4. When vacancies happen in the representation from any State, the executive authority thereof shall issue writs of election to fill such vacancies. 5. The House of Representatives shall choose their speaker and other officers; and shall have the sole power of impeachment. SECTION 3. 1. The Senate of the United States shall be composed of two senators from each State, chosen by the legislature thereof, for six years; and each senator shall have one vote.[4] 2. Immediately after they shall be assembled in consequence of the first election, they shall be divided as equally as may be into three classes. The seats of the senators of the first class shall be vacated at the expiration of the second year, of the second class at the expiration of the fourth year, and of the third class at the expiration of the sixth year, so that one-third may be chosen every second year; and if vacancies happen by resignation, or otherwise, during the recess of the legislature of any State, the executive thereof may make temporary appointments until the next meeting of the legislature, which shall then fill such vacancies.[5] 3. No person shall be a senator who shall not have attained to the age of thirty years, and been nine years a citizen of the United States, and who shall not, when elected, be an inhabitant of that State for which he shall be chosen. 4. The Vice-President of the United States shall be President of the Senate, but shall have no vote, unless they be equally divided. 5. The Senate shall choose their other officers, and also a President _pro tempore_, in the absence of the Vice-President, or when he shall exercise the office of President of the United States. 6. The Senate shall have the sole power to try all impeachments. When sitting for that purpose, they shall be on oath or affirmation. When the President of the United States is tried, the chief justice shall preside: And no person shall be convicted without the concurrence of two-thirds of the members present. 7. Judgment in cases of impeachment shall not extend further than to removal from office, and disqualification to hold and enjoy any office of honor, trust, or profit under the United States: but the party convicted shall nevertheless be liable and subject to indictment, trial, judgment, and punishment, according to law. SECTION 4. 1. The times, places, and manner of holding elections for senators and representatives, shall be prescribed in each State by the legislature thereof; but the Congress may at any time by law make or alter such regulations, except as to the places of choosing senators. 2. The Congress shall assemble at least once in every year, and such meeting shall be on the first Monday in December, unless they shall by law appoint a different day. SECTION 5. 1. Each House shall be the judge of the elections, returns and qualifications of its own members, and a majority of each shall constitute a quorum to do business; but a smaller number may adjourn from day to day, and may be authorized to compel the attendance of absent members, in such manner, and under such penalties as each House may provide. 2. Each House may determine the rules of its proceedings, punish its members for disorderly behaviour, and, with the concurrence of two-thirds, expel a member. 3. Each House shall keep a journal of its proceedings, and from time to time publish the same, excepting such parts as may in their judgment require secrecy; and the yeas and nays of the members of either House on any question shall, at the desire of one-fifth of those present, be entered on the journal. 4. Neither House, during the session of Congress, shall, without the consent of the other, adjourn for more than three days, nor to any other place than that in which the two Houses shall be sitting. SECTION 6. 1. The senators and representatives shall receive a compensation for their services, to be ascertained by law, and paid out of the Treasury of the United States. They shall in all cases, except treason, felony, and breach of the peace, be privileged from arrest during their attendance at the sessions of their respective Houses, and in going to and returning from the same; and, for any speech or debate in either House, they shall not be questioned in any other place. 2. No senator or representative shall, during the time for which he was elected, be appointed to any civil office under the authority of the United States, which shall have been created, or the emoluments whereof shall have been increased during such time; and no person, holding any office under the United States, shall be a member of either House during his continuance in office. SECTION 7. 1. All bills for raising revenue shall originate in the House of Representatives; but the Senate may propose or concur with amendments as on other bills. 2. Every bill, which shall have passed the House of Representatives; and the Senate, shall, before it become a law, be presented to the President of the United States; if he approve he shall sign it, but if not he shall return it with his objections to that House, in which it shall have originated, who shall enter the objections at large on their journal, and proceed to reconsider it. If after such reconsideration two-thirds of that House shall agree to pass the bill, it shall be sent, together with the objections, to the other House, by which it shall likewise be reconsidered, and if approved by two-thirds of that House, it shall become a law. But in all such cases the votes of both Houses shall be determined by yeas and nays, and the names of the persons voting for and against the bill shall be entered on the journal of each House respectively. If any bill shall not be returned by the President within ten days (Sundays excepted) after it shall have been presented to him, the same shall be a law, in like manner as if he had signed it, unless the Congress by their adjournment prevent its return, in which case it shall not be a law. 3. Every order, resolution, or vote to which the concurrence of the Senate and House of Representatives may be necessary (except on a question of adjournment) shall be presented to the President of the United States and before the same shall take effect, shall be approved by him, or being disapproved by him, shall be repassed by two-thirds of the Senate and House of Representatives, according to the rules and limitations prescribed in the case of a bill. SECTION 8. The Congress shall have power: 1. To lay and collect taxes, duties, imposts, and excises, to pay the debts and provide for the common defence and general welfare of the United States; but all duties, imposts, and excises shall be uniform throughout the United States; 2. To borrow money on the credit of the United States; 3. To regulate commerce with foreign nations, and among the several States, and with the Indian tribes; 4. To establish an uniform rule of naturalization, and uniform laws on the subject of bankruptcies throughout the United States; 5. To coin money, regulate the value thereof, and of foreign coin, and fix the standard of weights and measures; 6. To provide for the punishment of counterfeiting the securities and current coin of the United States; 7. To establish post offices and post roads; 8. To promote the progress of science and useful arts by securing for limited times to authors and inventors the exclusive right to their respective writings and discoveries; 9. To constitute tribunals inferior to the Supreme Court; 10. To define and punish piracies and felonies committed on the high seas, and offences against the law of nations; 11. To declare war, grant letters of marque and reprisal, and make rules concerning captures on land and water; 12. To raise and support armies, but no appropriation of money to that use shall be for a longer term than two years; 13. To provide and maintain a navy; 14. To make rules for the government and regulation of the land and naval forces; 15. To provide for calling forth the militia to execute the laws of the Union, suppress insurrections, and repel invasions; 16. To provide for organizing, arming, and disciplining the militia, and for governing such part of them as may be employed in the service of the United States, reserving to the States respectively the appointment of the officers, and the authority of training the militia according to the discipline prescribed by Congress. 17. To exercise exclusive legislation in all cases whatsoever, over such district (not exceeding ten miles square) as may, by cession of particular States and the acceptance of Congress, become the seat of the government of the United States, and to exercise like authority over all places purchased by the consent of the legislature of the State in which the same shall be, for the erection of forts, magazines, arsenals, dock-yards, and other needful buildings;--and 18. To make all laws which shall be necessary and proper for carrying into execution the foregoing powers, and all other powers vested by this Constitution in the government of the United States, or in any department or officer thereof. SECTION 9. 1. The migration or importation of such persons as any of the States now existing shall think proper to admit, shall not be prohibited by the Congress prior to the year one thousand eight hundred and eight, but a tax or duty may be imposed on such importation, not exceeding ten dollars for each person. 2. The privilege of the writ of _habeas corpus_ shall not be suspended, unless when in cases of rebellion or invasion the public safety may require it. 3. No bill of attainder or _ex post facto_ law shall be passed. 4. No capitation, or other direct, tax shall be laid, unless in proportion to the census or enumeration hereinbefore directed to be taken.[6] 5. No tax or duty shall be laid on articles exported from any State. 6. No preference shall be given by any regulation of commerce or revenue to the ports of one State over those of another: nor shall vessels bound to, or from, one State, be obliged to enter, clear, or pay duties in another. 7. No money shall be drawn from the Treasury, but in consequence of appropriations made by law; and a regular statement and account of the receipts and expenditures of all public money shall be published from time to time. 8. No title of nobility shall be granted by the United States; and no person, holding any office of profit or trust under them, shall, without the consent of the Congress, accept of any present, emolument, office, or title, of any kind whatever, from any king, prince, or foreign State. SECTION 10. 1. No State shall enter into any treaty, alliance, or confederation; grant letters of marque and reprisal; coin money; emit bills of credit; make anything but gold and silver coin a tender in payment of debts; pass any bill of attainder, _ex post facto_ law, or law impairing the obligation of contracts, or grant any title of nobility. 2. No State shall, without the consent of the Congress, lay any imposts or duties on imports or exports, except what may be absolutely necessary for executing its inspection laws: and the net produce of all duties and imposts, laid by any State on imports or exports, shall be for the use of the Treasury of the United States; and all such laws shall be subject to the revision and control of the Congress. 3. No State shall, without the consent of Congress, lay any duty of tonnage, keep troops, or ships of war in time of peace, enter into any agreement or compact with another State, or with a foreign power, or engage in war unless actually invaded, or in such imminent danger as will not admit of delay. ARTICLE II SECTION 1. 1. The executive power shall be vested in a President of the United States of America. He shall hold his office during the term of four years, and, together with the Vice-President, chosen for the same term, be elected, as follows: 2. Each State shall appoint, in such manner as the legislature thereof may direct, a number of electors, equal to the whole number of senators and representatives to which the State may be entitled in the Congress; but no senator or representative, or person holding an office of trust or profit under the United States, shall be appointed an elector.[7] The electors shall meet in their respective States, and vote by ballot for two persons, of whom one at least shall not be an inhabitant of the same State with themselves. And they shall make a list of all the persons voted for, and of the number of votes for each; which list they shall sign and certify, and transmit sealed to the seat of the government of the United States, directed to the president of the Senate. The President of the Senate shall, in the presence of the Senate and House of Representatives, open all the certificates, and the votes shall then be counted. The person having the greatest number of votes shall be the President, if such number be a majority of the whole number of electors appointed; and if there be more than one who have such majority, and have an equal number of votes, then the House of Representatives shall immediately choose by ballot one of them for President; and if no person have a majority, then from the five highest on the list the said House shall in like manner choose the President. But in choosing the President, the votes shall be taken by States, the representation from each State having one vote; a quorum for this purpose shall consist of a member or members from two-thirds of the States and a majority of all the States shall be necessary to a choice. In every case, after the choice of the President, the person having the greatest number of votes of the electors shall be the Vice-President. But if there should remain two or more who have equal votes, the Senate shall choose from them by ballot the Vice-President.[8] 3. The Congress may determine the time of choosing the electors, and the day on which they shall give their votes; which day shall be the same throughout the United States. 4. No person except a natural born citizen, or a citizen of the United States, at the time of the adoption of this Constitution, shall be eligible to the office of President; neither shall any person be eligible to that office who shall not have attained to the age of thirty-five years, and been fourteen years a resident within the United States. 5. In case of the removal of the President from office, or of his death, resignation, or inability to discharge the powers and duties of the said office, the same shall devolve on the Vice-President, and the Congress may by law provide for the case of removal, death, resignation, or inability both of the President and Vice-President, declaring what officer shall then act as President, and such officer shall act accordingly, until the disability be removed, or a President shall be elected. 6. The President shall, at stated times, receive for his services a compensation, which shall neither be increased nor diminished during the period for which he shall have been elected, and he shall not receive within that period any other emolument from the United States, or any of them. 7. Before he enter on the execution of his office, he shall take the following oath or affirmation:--"I do solemnly swear (or affirm) that I will faithfully execute the office of President of the United States, and will to the best of my ability, preserve, protect, and defend the Constitution of the United States." SECTION 2. 1. The President shall be commander-in-chief of the army and navy of the United States, and of the militia of the several States, when called into the actual service of the United States; he may require the opinion, in writing, of the principal officer in each of the executive departments, upon any subject relating to the duties of their respective offices, and he shall have power to grant reprieves and pardons for offences against the United States, except in cases of impeachment. 2. He shall have power, by and with the advice and consent of the Senate, to make treaties, provided two-thirds of the senators present concur; and he shall nominate, and by and with the advice and consent of the Senate, shall appoint ambassadors, other public ministers and consuls, judges of the Supreme Court, and all other officers of the United States, whose appointments are not herein otherwise provided for, and which shall be established by law: but the Congress may by law vest the appointment of such inferior officers, as they think proper, in the President alone, in the courts of law, or in the heads of departments. 3. The President shall have power to fill all vacancies that may happen during the recess of the Senate, by granting commissions which shall expire at the end of their next session. SECTION 3. He shall from time to time give to the Congress information on the state of the Union, and recommend to their consideration such measures as he shall judge necessary and expedient; he may, on extraordinary occasions, convene both Houses, or either of them, and in case of disagreement between them, with respect to the time of adjournment, he may adjourn them to such time as he shall think proper; he shall receive ambassadors and other public ministers; he shall take care that the laws be faithfully executed, and shall commission all the officers of the United States. SECTION 4. The President, Vice-President, and all civil officers of the United States shall be removed from office on impeachment for, and conviction of, treason, bribery, or other high crimes and misdemeanors. ARTICLE III SECTION 1. The judicial power of the United States shall be vested in one Supreme Court, and in such inferior courts as the Congress may from time to time ordain and establish. The judges, both of the Supreme and inferior courts, shall hold their offices during good behaviour, and shall, at stated times, receive for their services a compensation, which shall not be diminished during their continuance in office. SECTION 2. 1. The judicial power shall extend to all cases, in law and equity, arising under this Constitution, the laws of the United States, and treaties made, or which shall be made, under their authority;--to all cases affecting ambassadors, other public ministers and consuls;--to all cases of admiralty and maritime jurisdiction;--to controversies to which the United States shall be a party;--to controversies between two or more States;--between a State and citizens of another State;[9]--between citizens of different States;--between citizens of the same State claiming lands under grants of different States;--and between a State, or the citizens thereof, and foreign States, citizens, or subjects. 2. In all cases affecting ambassadors, other public ministers and consuls and those in which a State shall be a party, the Supreme Court shall have original jurisdiction. In all the other cases before mentioned, the Supreme Court shall have appellate jurisdiction, both as to law and fact, with such exceptions and under such regulations as the Congress shall make. 3. The trial of all crimes, except in cases of impeachment, shall be by jury; and such trial shall be held in the State where the said crimes shall have been committed; but when not committed within any State, the trial shall be at such place or places as the Congress may by law have directed. SECTION 3. 1. Treason against the United States shall consist only in levying war against them, or in adhering to their enemies, giving them aid and comfort. No person shall be convicted of treason unless on the testimony of two witnesses to the same overt act, or on confession in open court. 2. The Congress shall have power to declare the punishment of treason, but no attainder of treason shall work corruption of blood or forfeiture except during the life of the person attainted. ARTICLE IV SECTION 1. Full faith and credit shall be given in each State to the public acts, records, and judicial proceedings of every other State. And the Congress may by general laws prescribe the manner in which such acts, records, and proceedings shall be proved, and the effect thereof. SECTION 2. 1. The citizens of each State shall be entitled to all privileges and immunities of citizens in the several States. 2. A person charged in any State with treason, felony, or other crime, who shall flee from justice, and be found in another State, shall on demand of the executive authority of the State from which he fled, be delivered up, to be removed to the State having jurisdiction of the crime. 3. No person held to service or labor in one State, under the laws thereof, escaping into another, shall, in consequence of any law or regulation therein, be discharged from such service or labor, but shall be delivered up on claim of the party to whom such service or labor may be due. SECTION 3. 1. New States may be admitted by the Congress into this Union; but no new State shall be formed or erected within the jurisdiction of any other State; nor any State be formed by the junction of two or more States, or parts of States, without the consent of the legislatures of the States concerned as well as of the Congress. 2. The Congress shall have power to dispose of and make all needful rules and regulations respecting the territory or other property belonging to the United States; and nothing in this Constitution shall be so construed as to prejudice any claims, of the United States, or of any particular State. SECTION 4. The United States shall guarantee to every State in this Union a republican form of government, and shall protect each of them against invasion; and on application of the legislature, or of the executive (when the legislature cannot be convened), against domestic violence. ARTICLE V The Congress, whenever two-thirds of both Houses shall deem it necessary, shall propose amendments to this Constitution, or, on the application of the legislatures of two-thirds of the several States, shall call a convention for proposing amendments, which, in either case, shall be valid to all intents and purposes as part of this Constitution, when ratified by the legislatures of three-fourths of the several States, or by conventions in three-fourths thereof, as the one or the other mode of ratification may be proposed by the Congress; provided that no amendment which may be made prior to the year one thousand eight hundred and eight shall in any manner affect the first and fourth clauses in the ninth Section of the first article; and that no State, without its consent, shall be deprived of its equal suffrage in the Senate. ARTICLE VI 1. All debts contracted and engagements entered into, before the adoption of this Constitution, shall be as valid against the United States under this Constitution, as under the Confederation. 2. This Constitution and the laws of the United States which shall be made in pursuance thereof and all treaties made, or which shall be made, under the authority of the United States, shall be the supreme law of the land; and the judges in every State shall be bound thereby, anything in the Constitution or laws of any State to the contrary notwithstanding. 3. The senators and representatives before mentioned, and the members of the several State legislatures, and all executive and judicial officers, both of the United States and of the several States, shall be bound by oath or affirmation to support this Constitution; but no religious test shall ever be required as a qualification to any office or public trust under the United States. ARTICLE VII The ratification of the conventions of nine States shall be sufficient for the establishment of this Constitution between the States so ratifying the same. Done in Convention by the unanimous consent of the States present the seventeenth day of September in the year of our Lord one thousand seven hundred and eighty-seven and of the independence of the United States of America the twelfth. In witness whereof we have hereunto subscribed our names, G^O. WASHINGTON-- Presidt. and Deputy from Virginia [and thirty-eight members from all the States except Rhode Island.] * * * * * Articles in addition to, and amendment of, the Constitution of the United States of America, proposed by Congress, and ratified by the legislatures of the several States pursuant to the fifth article of the original Constitution. ARTICLE I[10] Congress shall make no law respecting an establishment of religion, or prohibiting the free exercise thereof; or abridging the freedom of speech, or of the press; or the right of the people peaceably to assemble, and to petition the government for a redress of grievances. ARTICLE II A well regulated militia, being necessary to the security of a free State, the right of the people to keep and bear arms shall not be infringed. ARTICLE III No soldier shall, in time of peace, be quartered in any house, without the consent of the owner, nor in time of war, but in a manner to be prescribed by law. ARTICLE IV The right of the people to be secure in their persons, houses, papers, and effects, against unreasonable searches and seizures, shall not be violated, and no warrants shall issue, but upon probable cause, supported by oath or affirmation, and particularly describing the place to be searched, and the persons or things to be seized. ARTICLE V No person shall be held to answer for a capital, or otherwise infamous crime, unless on a presentment or indictment of a grand jury, except in cases arising in the land or naval forces, or in the militia, when in actual service in time of war or public danger; nor shall any person be subject for the same offence to be twice put in jeopardy of life or limb; nor shall be compelled in any criminal case to be a witness against himself; nor be deprived of life, liberty, or property, without due process of law; nor shall private property be taken for public use, without just compensation. ARTICLE VI In all criminal prosecutions, the accused shall enjoy the right to a speedy and public trial, by an impartial jury of the State and district wherein the crime shall have been committed, which district shall have been previously ascertained by law, and to be informed of the nature and cause of the accusation; to be confronted with the witnesses against him; to have compulsory process for obtaining witnesses in his favor, and to have the assistance of counsel for his defence. ARTICLE VII In suits at common law, where the value in controversy shall exceed twenty dollars, the right of trial by jury shall be preserved, and no fact tried by a jury shall be otherwise reexamined in any court of the United States, than according to the rules of the common law. ARTICLE VIII Excessive bail shall not be required, nor excessive fines imposed, nor cruel and unusual punishments inflicted. ARTICLE IX The enumeration in the Constitution, of certain rights, shall not be construed to deny or disparage others retained by the people. ARTICLE X The powers not delegated to the United States by the Constitution, nor prohibited by it to the States, are reserved to the States respectively, or to the people. ARTICLE XI[11] The judicial power of the United States shall not be construed to extend to any suit in law or equity, commenced or prosecuted against one of the United States by citizens of another State, or by citizens or subjects of any foreign State. ARTICLE XII[12] The electors shall meet in their respective States, and vote by ballot for President and Vice-President, one of whom at least shall not be an inhabitant of the same State with themselves; they shall name in their ballots the person voted for as President, and in distinct ballots the person voted for as Vice-President, and they shall make distinct lists of all persons voted for as President, and of all persons voted for as Vice-President, and of the number of votes for each, which lists they shall sign and certify, and transmit sealed to the seat of the government of the United States, directed to the President of the Senate;--The President of the Senate shall, in presence of the Senate and House of Representatives, open all the certificates and the votes shall then be counted;--The person having the greatest number of votes for President, shall be the President, if such number be a majority of the whole number of electors appointed; and if no person have such majority, then from the persons having the highest numbers not exceeding three on the list of those voted for as President, the House of Representatives shall choose immediately, by ballot, the President. But in choosing the President, the votes shall be taken by States, the representation from each State having one vote; a quorum for this purpose shall consist of a member or members from two-thirds of the States, and a majority of all the States shall be necessary to a choice. And if the House of Representatives shall not choose a President whenever the right of choice shall devolve upon them, before the fourth day of March next following, then the Vice-President shall act as President, as in the case of the death or other constitutional disability of the President. The person having the greatest number of votes as Vice-President, shall be the Vice-President, if such number be a majority of the whole number of electors appointed, and if no person have a majority, then from the two highest members on the list, the Senate shall choose the Vice-President; a quorum for the purpose shall consist of two-thirds of the whole number of senators, and a majority of the whole number shall be necessary to a choice. But no person constitutionally ineligible to the office of President shall be eligible to that of Vice-President of the United States. ARTICLE XIII[13] SECTION 1. Neither slavery nor involuntary servitude, except as a punishment for crime whereof the party shall have been duly convicted, shall exist within the United States, or any place subject to their jurisdiction. SECTION 2. Congress shall have power to enforce this article by appropriate legislation. ARTICLE XIV[14] SECTION 1. All persons born or naturalized in the United States, and subject to the jurisdiction thereof, are citizens of the United States and of the State wherein they reside. No State shall make or enforce any law which shall abridge the privileges or immunities of citizens of the United States; nor shall any State deprive any person of life, liberty, or property without due process of law; nor deny to any person within its jurisdiction the equal protection of the laws. SECTION 2. Representatives shall be apportioned among the several States according to their respective numbers, counting the whole number of persons in each State, excluding Indians not taxed. But when the right to vote at any election for the choice of electors for President and Vice-President of the United States, representatives in Congress, the executive and judicial officers of a State, or the members of the legislature thereof, is denied to any of the male inhabitants of such State, being twenty-one years of age, and citizens of the United States, or in any way abridged, except for participation in rebellion or other crime, the basis of representation therein shall be reduced in the proportion which the number of such male citizens shall bear to the whole number of male citizens twenty-one years of age in such State. SECTION 3. No person shall be a senator or representative in Congress, or elector of President and Vice-President, or hold any office, civil or military, under the United States, or under any State, who, having previously taken an oath, as a member of Congress, or as an officer of the United States, or as a member of any State legislature, or as an executive or judicial officer of any State, to support the Constitution of the United States, shall have engaged in insurrection or rebellion against the same, or given aid or comfort to the enemies thereof. But Congress may by two-thirds vote of each House, remove such disability. SECTION 4. The validity of the public debt of the United States, authorized by law, including debts incurred for payment of pensions and bounties for services in suppressing insurrection or rebellion, shall not be questioned. But neither the United States nor any State shall assume or pay any debt or obligation incurred in aid of insurrection or rebellion against the United States, or any claim for the loss or emancipation of any slave; but all such debts, obligations, and claims shall be held illegal and void. SECTION 5. The Congress shall have power to enforce, by appropriate legislation, the provisions of this article. ARTICLE XV[15] SECTION 1. The right of citizens of the United States to vote shall not be denied or abridged by the United States or by any State on account of race, color, or previous condition of servitude. SECTION 2. The Congress shall have power to enforce this article by appropriate legislation. ARTICLE XVI[16] The Congress shall have power to lay and collect taxes on incomes, from whatever source derived, without apportionment among the several States, and without regard to any census or enumeration. ARTICLE XVII[17] The Senate of the United States shall be composed of two senators from each State, elected by the people thereof, for six years; and each senator shall have one vote. The electors in each State shall have the qualifications requisite for electors of the most numerous branch of the State legislature. When vacancies happen in the representation of any State in the Senate, the executive authority of each State shall issue writs of election to fill such vacancies: _Provided_ that the legislature of any State may empower the executive thereof to make temporary appointments until the people fill the vacancies by election as the legislature may direct. This amendment shall not be so construed as to effect the election or term of any senator chosen before it becomes valid as part of the Constitution. ARTICLE XVIII[18] SECTION 1. After one year from the ratification of this article the manufacture, sale, or transportation of intoxicating liquors within, the importation thereof into, or the exportation thereof from the United States and all territory subject to the jurisdiction thereof for beverage purposes is hereby prohibited. SECTION 2. The Congress and the several States shall have concurrent power to enforce this article by appropriate legislation. SECTION 3. This article shall be inoperative unless it shall have been ratified as an amendment to the Constitution by the legislatures of the several States, as provided in the Constitution, within seven years from the date of the submission hereof to the States by the Congress. ARTICLE XIX[19] The right of citizens of the United States to vote shall not be denied or abridged by the United States or any State on account of sex. The Congress shall have power to enforce this article by appropriate legislation. POPULATION OF THE UNITED STATES, BY STATES: 1920, 1910, 1900 +---------------------+--------------------------------------------+ | STATES | POPULATION | + +--------------+--------------+--------------+ | | 1920 | 1910 | 1900 | +---------------------+--------------+--------------+--------------+ |United States | 105,708,771 | 91,972,266 | 75,994,575 | +---------------------+--------------+--------------+--------------+ |Alabama | 2,348,174 | 2,138,093 | 1,828,697 | |Arizona | 333,903 | 204,354 | 122,931 | |Arkansas | 1,752,204 | 1,574,449 | 1,311,564 | |California | 3,426,861 | 2,377,549 | 1,485,053 | |Colorado | 939,629 | 799,024 | 539,700 | |Connecticut | 1,380,631 | 1,114,756 | 908,420 | |Delaware | 223,003 | 202,322 | 184,735 | |District of Columbia | 437,571 | 331,069 | 278,718 | |Florida | 968,470 | 752,619 | 528,542 | |Georgia | 2,895,832 | 2,609,121 | 2,216,331 | |Idaho | 431,866 | 325,594 | 161,772 | |Illinois | 6,485,280 | 5,638,591 | 4,821,550 | |Indiana | 2,930,390 | 2,700,876 | 2,516,462 | |Iowa | 2,404,021 | 2,224,771 | 2,231,853 | |Kansas | 1,769,257 | 1,690,949 | 1,470,495 | |Kentucky | 2,416,630 | 2,289,905 | 2,147,174 | |Louisiana | 1,798,509 | 1,656,388 | 1,381,625 | |Maine | 768,014 | 742,371 | 694,466 | |Maryland | 1,449,661 | 1,295,346 | 1,188,044 | |Massachusetts | 3,852,356 | 3,366,416 | 2,805,346 | |Michigan | 3,668,412 | 2,810,173 | 2,420,982 | |Minnesota | 2,387,125 | 2,075,708 | 1,751,394 | |Mississippi | 1,790,618 | 1,797,114 | 1,551,270 | |Missouri | 3,404,055 | 3,293,335 | 3,106,665 | |Montana | 548,889 | 376,053 | 243,329 | |Nebraska | 1,296,372 | 1,192,214 | 1,066,300 | |Nevada | 77,407 | 81,875 | 42,335 | |New Hampshire | 443,407 | 430,572 | 411,588 | |New Jersey | 3,155,900 | 2,537,167 | 1,883,669 | |New Mexico | 360,350 | 327,301 | 195,310 | |New York | 10,384,829 | 9,113,614 | 7,268,894 | |North Carolina | 2,559,123 | 2,206,287 | 1,893,810 | |North Dakota | 645,680 | 577,056 | 319,146 | |Ohio | 5,759,394 | 4,767,121 | 4,157,545 | |Oklahoma | 2,028,283 | 1,657,155 | 790,391 | |Oregon | 783,389 | 672,765 | 413,536 | |Pennsylvania | 8,720,017 | 7,665,111 | 6,302,115 | |Rhode Island | 604,397 | 542,610 | 428,556 | |South Carolina | 1,683,724 | 1,515,400 | 1,340,316 | |South Dakota | 636,547 | 583,888 | 401,570 | |Tennessee | 2,337,885 | 2,184,789 | 2,020,616 | |Texas | 4,663,228 | 3,896,542 | 3,048,710 | |Utah | 449,396 | 373,351 | 276,749 | |Vermont | 352,428 | 355,956 | 343,641 | |Virginia | 2,309,187 | 2,061,612 | 1,854,184 | |Washington | 1,356,621 | 1,141,990 | 518,103 | |West Virginia | 1,463,701 | 1,221,119 | 958,800 | |Wisconsin | 2,632,067 | 2,333,860 | 2,069,042 | |Wyoming | 194,402 | 145,965 | 92,531 | +---------------------+--------------+--------------+--------------+ FOOTNOTES: [3] Partly superseded by the 14th Amendment, p. 639. [4] See the 17th Amendment, p. 641. [5] _Ibid._, p. 641. [6] See the 16th Amendment, p. 640. [7] The following paragraph was in force only from 1788 to 1803. [8] Superseded by the 12th Amendment, p. 638. [9] See the 11th Amendment, p. 638. [10] First ten amendments proposed by Congress, Sept. 25, 1789. Proclaimed to be in force Dec. 15, 1791. [11] Proposed Sept. 5, 1794. Declared in force January 8, 1798. [12] Adopted in 1804. [13] Adopted in 1865. [14] Adopted in 1868. [15] Proposed February 27, 1869. Declared in force March 30, 1870. [16] Passed July, 1909; proclaimed February 25, 1913. [17] Passed May, 1912, in lieu of paragraph one, Section 3, Article I, of the Constitution and so much of paragraph two of the same Section as relates to the filling of vacancies; proclaimed May 31, 1913. [18] Ratified January 16, 1919. [19] Ratified August 26, 1920. APPENDIX TABLE OF PRESIDENTS NAME STATE PARTY YEAR IN VICE-PRESIDENT OFFICE 1 George Washington Va. Fed. 1789-1797 John Adams 2 John Adams Mass. Fed. 1797-1801 Thomas Jefferson 3 Thomas Jefferson Va. Rep. 1801-1809 Aaron Burr George Clinton 4 James Madison Va. Rep. 1809-1817 George Clinton Elbridge Gerry 5 James Monroe Va. Rep. 1817-1825 Daniel D. Tompkins 6 John Q. Adams Mass. Rep. 1825-1829 John C. Calhoun 7 Andrew Jackson Tenn. Dem. 1829-1837 John C. Calhoun Martin Van Buren 8 Martin Van Buren N.Y. Dem. 1837-1841 Richard M. Johnson 9 Wm. H. Harrison Ohio Whig 1841-1841 John Tyler 10 John Tyler[20] Va. Whig 1841-1845 11 James K. Polk Tenn. Dem. 1845-1849 George M. Dallas 12 Zachary Taylor La. Whig 1849-1850 Millard Fillmore 13 Millard Fillmore[20] N.Y. Whig 1850-1853 14 Franklin Pierce N.H. Dem. 1853-1857 William R. King 15 James Buchanan Pa. Dem. 1857-1861 J.C. Breckinridge 16 Abraham Lincoln Ill. Rep. 1861-1865 Hannibal Hamlin Andrew Johnson 17 Andrew Johnson[20] Tenn. Rep. 1865-1869 18 Ulysses S. Grant Ill. Rep. 1869-1877 Schuyler Colfax Henry Wilson 19 Rutherford B. Hayes Ohio Rep. 1877-1881 Wm. A. Wheeler 20 James A. Garfield Ohio Rep. 1881-1881 Chester A. Arthur 21 Chester A. Arthur[20] N.Y. Rep. 1881-1885 22 Grover Cleveland N.Y. Dem. 1885-1889 Thomas A. Hendricks 23 Benjamin Harrison Ind. Rep. 1889-1893 Levi P. Morton 24 Grover Cleveland N.Y. Dem. 1893-1897 Adlai E. Stevenson 25 William McKinley Ohio Rep. 1897-1901 Garrett A. Hobart Theodore Roosevelt 26 Theodore Roosevelt[20]N.Y. Rep. 1901-1909 Chas. W. Fairbanks 27 William H. Taft Ohio Rep. 1909-1913 James S. Sherman 28 Woodrow Wilson N.J. Dem. 1913-1921 Thomas R. Marshall 29 Warren G. Harding Ohio Rep. 1921- Calvin Coolidge FOOTNOTES: [20] Promoted from the vice-presidency on the death of the president. POPULATION OF THE OUTLYING POSSESSIONS: 1920 AND 1910 ----------------------------------------+--------------+--------------- AREA | 1920 | 1910 ----------------------------------------+--------------+--------------- United States with outlying possessions |117,857,509 | 101,146,530 +--------------+--------------- Continental United States |105,708,771 | 91,972,266 Outlying Possessions | 12,148,738 | 9,174,264 +--------------|--------------- Alaska | 54,899 | 64,356 American Samoa | 8,056 | 7,251[21] Guam | 13,275 | 11,806 Hawaii | 255,912 | 191,909 Panama Canal Zone | 22,858 | 62,810[21] Porto Rico | 1,299,809 | 1,118,012 Military and naval, etc., service | | abroad | 117,238 | 55,608 Philippine Islands |10,350,640[22]| 7,635,426[23] Virgin Islands of the United States | 26,051[24]| 27,086[25] ----------------------------------------+--------------+--------------- FOOTNOTES: [21] Population in 1912. [22] Population in 1918. [23] Population in 1903. [24] Population in 1917. [25] Population in 1911. A TOPICAL SYLLABUS As a result of a wholesome reaction against the purely chronological treatment of history, there is now a marked tendency in the direction of a purely topical handling of the subject. The topical method, however, may also be pushed too far. Each successive stage of any topic can be understood only in relation to the forces of the time. For that reason, the best results are reached when there is a combination of the chronological and the topical methods. It is therefore suggested that the teacher first follow the text closely and then review the subject with the aid of this topical syllabus. The references are to pages. =Immigration= I. Causes: religious (1-2, 4-11, 302), economic (12-17, 302-303), and political (302-303). II. Colonial immigration. 1. Diversified character: English, Scotch-Irish, Irish, Jews, Germans and other peoples (6-12). 2. Assimilation to an American type; influence of the land system (23-25, 411). 3. Enforced immigration: indentured servitude, slavery, etc. (13-17). III. Immigration between 1789-1890. 1. Nationalities: English, Irish, Germans, and Scandinavians (278, 302-303). 2. Relations to American life (432-433, 445). IV. Immigration and immigration questions after 1890. 1. Change in nationalities (410-411). 2. Changes in economic opportunities (411). 3. Problems of congestion and assimilation (410). 4. Relations to labor and illiteracy (582-586). 5. Oriental immigration (583). 6. The restriction of immigration (583-585). =Expansion of the United States= I. Territorial growth. 1. Territory of the United States in 1783 (134 and color map). 2. Louisiana purchase, 1803 (188-193 and color map). 3. Florida purchase, 1819 (204). 4. Annexation of Texas, 1845 (278-281). 5. Acquisition of Arizona, New Mexico, California, and other territory at close of Mexican War, 1848 (282-283). 6. The Gadsden purchase, 1853 (283). 7. Settlement of the Oregon boundary question, 1846 (284-286). 8. Purchase of Alaska from Russia, 1867 (479). 9. Acquisition of Tutuila in Samoan group, 1899 (481-482). 10. Annexation of Hawaii, 1898 (484). 11. Acquisition of Porto Rico, the Philippines, and Guam at close of Spanish War, 1898 (493-494). 12. Acquisition of Panama Canal strip, 1904 (508-510). 13. Purchase of Danish West Indies, 1917 (593). 14. Extension of protectorate over Haiti, Santo Domingo, and Nicaragua (593-594). II. Development of colonial self-government. 1. Hawaii (485). 2. Philippines (516-518). 3. Porto Rico (515-516). III. Sea power. 1. In American Revolution (118). 2. In the War of 1812 (193-201). 3. In the Civil War (353-354). 4. In the Spanish-American War (492). 5. In the Caribbean region (512-519). 6. In the Pacific (447-448, 481). 7. The role of the American navy (515). =The Westward Advance of the People= I. Beyond the Appalachians. 1. Government and land system (217-231). 2. The routes (222-224). 3. The settlers (221-223, 228-230). 4. Relations with the East (230-236). II. Beyond the Mississippi. 1. The lower valley (271-273). 2. The upper valley (275-276). III. Prairies, plains, and desert. 1. Cattle ranges and cowboys (276-278, 431-432). 2. The free homesteads (432-433). 3. Irrigation (434-436, 523-525). IV. The Far West. 1. Peculiarities of the West (433-440). 2. The railways (425-431). 3. Relations to the East and Europe (443-447). 4. American power in the Pacific (447-449). =The Wars of American History= I. Indian wars (57-59). II. Early colonial wars: King William's, Queen Anne's, and King George's (59). III. French and Indian War (Seven Years' War), 1754-1763 (59-61). IV. Revolutionary War, 1775-1783 (99-135). V. The War of 1812, 1812-1815 (193-201). VI. The Mexican War, 1845-1848 (276-284). VII. The Civil War, 1861-1865 (344-375). VIII. The Spanish War, 1898 (485-497). IX. The World War, 1914-1918 [American participation, 1917-1918] (596-625). =Government= I. Development of the American system of government. 1. Origin and growth of state government. _a._ The trading corporation (2-4), religious congregation (4-5), and proprietary system (5-6). _b._ Government of the colonies (48-53). _c._ Formation of the first state constitutions (108-110). _d._ The admission of new states (_see_ Index under each state). _e._ Influence of Jacksonian Democracy (238-247). _f._ Growth of manhood suffrage (238-244). _g._ Nullification and state sovereignty (180-182, 251-257). _h._ The doctrine of secession (345-346). _i._ Effects of the Civil War on position of states (366, 369-375). _j._ Political reform--direct government--initiative, referendum, and recall (540-544). 2. Origin and growth of national government. _a._ British imperial control over the colonies (64-72). _b._ Attempts at intercolonial union--New England Confederation, Albany plan (61-62). _c._ The Stamp Act Congress (85-86). _d._ The Continental Congresses (99-101). _e._ The Articles of Confederation (110-111, 139-143). _f._ The formation of the federal Constitution (143-160). _g._ Development of the federal Constitution. (1) Amendments 1-11--rights of persons and states (163). (2) Twelfth amendment--election of President (184, note). (3) Amendments 13-15--Civil War settlement (358, 366, 369, 370, 374, 375). (4) Sixteenth amendment--income tax (528-529). (5) Seventeenth amendment--election of Senators (541-542). (6) Eighteenth amendment--prohibition (591-592). (7) Nineteenth amendment--woman suffrage (563-568). 3. Development of the suffrage. _a._ Colonial restrictions (51-52). _b._ Provisions of the first state constitutions (110, 238-240). _c._ Position under federal Constitution of 1787 (149). _d._ Extension of manhood suffrage (241-244). _e._ Extension and limitation of negro suffrage (373-375, 382-387). _f._ Woman suffrage (560-568). II. Relation of government to economic and social welfare. 1. Debt and currency. _a._ Colonial paper money (80). _b._ Revolutionary currency and debt (125-127). _c._ Disorders under Articles of Confederation (140-141). _d._ Powers of Congress under the Constitution to coin money (_see_ Constitution in the Appendix). _e._ First United States bank notes (167). _f._ Second United States bank notes (257). _g._ State bank notes (258). _h._ Civil War greenbacks and specie payment (352-353, 454). _i._ The Civil War debt (252). _j._ Notes of National Banks under act of 1864 (369). _k._ Demonetization of silver and silver legislation (452-458). _l._ The gold standard (472). _m._ The federal reserve notes (589). _n._ Liberty bonds (606). 2. Banking systems. _a._ The first United States bank (167). _b._ The second United States bank--origin and destruction (203, 257-259). _c._ United States treasury system (263). _d._ State banks (258). _e._ The national banking system of 1864 (369). _f._ Services of banks (407-409). _g._ Federal reserve system (589). 3. The tariff. _a._ British colonial system (69-72). _b._ Disorders under Articles of Confederation (140). _c._ The first tariff under the Constitution (150, 167-168). _d._ Development of the tariff, 1816-1832 (252-254). _f._ Tariff and nullification (254-256). _g._ Development to the Civil War--attitude of South and West (264, 309-314, 357). _h._ Republicans and Civil War tariffs (352, 367). _i._ Revival of the tariff controversy under Cleveland (422). _j._ Tariff legislation after 1890--McKinley bill (422), Wilson bill (459), Dingley bill (472), Payne-Aldrich bill (528), Underwood bill (588). 4. Foreign and domestic commerce and transportation (_see_ Tariff, Immigration, and Foreign Relations). _a._ British imperial regulations (69-72). _b._ Confusion under Articles of Confederation (140). _c._ Provisions of federal Constitution (150). _d._ Internal improvements--aid to roads, canals, etc. (230-236). _e._ Aid to railways (403). _f._ Service of railways (402). _g._ Regulation of railways (460-461, 547-548). _h._ Control of trusts and corporations (461-462, 589-590). 5. Land and natural resources. _a._ British control over lands (80). _b._ Early federal land measures (219-221). _c._ The Homestead act (368, 432-445). _d._ Irrigation and reclamation (434-436, 523-525). _e._ Conservation of natural resources (523-526). 6. Legislation advancing human rights and general welfare (_see_ Suffrage). _a._ Abolition of slavery: civil and political rights of negroes (357-358, 373-375). _b._ Extension of civil and political rights to women (554-568). _c._ Legislation relative to labor conditions (549-551, 579-581, 590-591). _d._ Control of public utilities (547-549). _e._ Social reform and the war on poverty (549-551). _f._ Taxation and equality of opportunity (551-552). =Political Parties and Political Issues= I. The Federalists _versus_ the Anti-Federalists [Jeffersonian Republicans] from about 1790 to about 1816 (168-208, 201-203). 1. Federalist leaders: Hamilton, John Adams, John Marshall, Robert Morris. 2. Anti-Federalist leaders: Jefferson, Madison, Monroe. 3. Issues: funding the debt, assumption of state debts, first United States bank, taxation, tariff, strong central government _versus_ states' rights, and the Alien and Sedition acts. II. Era of "Good Feeling" from about 1816 to about 1824, a period of no organized party opposition (248). III. The Democrats [former Jeffersonian Republicans] _versus_ the Whigs [or National Republicans] from about 1832 to 1856 (238-265, 276-290, 324-334). 1. Democratic leaders: Jackson, Van Buren, Calhoun, Benton. 2. Whig leaders: Webster and Clay. 3. Issues: second United States bank, tariff, nullification, Texas, internal improvements, and disposition of Western lands. IV. The Democrats _versus_ the Republicans from about 1856 to the present time (334-377, 388-389, 412-422, 451-475, 489-534, 588-620). 1. Democratic leaders: Jefferson Davis, Tilden, Cleveland, Bryan, and Wilson. 2. Republican leaders: Lincoln, Blaine, McKinley, Roosevelt. 3. Issues: Civil War and reconstruction, currency, tariff, taxation, trusts, railways, foreign policies, imperialism, labor questions, and policies with regard to land and conservation. V. Minor political parties. 1. Before the Civil War: Free Soil (319) and Labor Parties (306-307). 2. Since the Civil War: Greenback (463-464), Populist (464), Liberal Republican (420), Socialistic (577-579), Progressive (531-534, 602-603). =The Economic Development of the United States= I. The land and natural resources. 1. The colonial land system: freehold, plantation, and manor (20-25). 2. Development of the freehold in the West (220-221, 228-230). 3. The Homestead act and its results (368, 432-433). 4. The cattle range and cowboy (431-432). 5. Disappearance of free land (443-445). 6. Irrigation and reclamation (434-436). 7. Movement for the conservation of resources (523-526). II. Industry. 1. The rise of local and domestic industries (28-32). 2. British restrictions on American enterprise (67-69, 70-72). 3. Protective tariffs (see above, 648-649). 4. Development of industry previous to the Civil War (295-307). 5. Great progress of industry after the war (401-406). 6. Rise and growth of trusts and combinations (406-412, 472-474). III. Commerce and transportation. 1. Extent of colonial trade and commerce (32-35). 2. British regulation (69-70). 3. Effects of the Revolution and the Constitution (139-140, 154). 4. Growth of American shipping (195-196). 5. Waterways and canals (230-236). 6. Rise and extension of the railway system (298-300). 7. Growth of American foreign trade (445-449). IV. Rise of organized labor. 1. Early phases before the Civil War: local unions, city federations, and national unions in specific trades (304-307). 2. The National Trade Union, 1866-1872 (574-575). 3. The Knights of Labor (575-576). 4. The American Federation of Labor (573-574). _a._ Policies of the Federation (576-577). _b._ Relations to politics (579-581). _c._ Contests with socialists and radicals (577-579). _d._ Problems of immigration (582-585). 5. The relations of capital and labor. _a._ The corporation and labor (410, 570-571). _b._ Company unions and profit-sharing (571-572). _c._ Welfare work (573). _d._ Strikes (465, 526, 580-581). _e._ Arbitration (581-582). =American Foreign Relations= I. Colonial period. 1. Indian relations (57-59). 2. French relations (59-61). II. Period of conflict and independence. 1. Relations with Great Britain (77-108, 116-125, 132-135). 2. Establishment of connections with European powers (128). 3. The French alliance of 1778 (128-130). 4. Assistance of Holland and Spain (130). III. Relations with Great Britain since 1783. 1. Commercial settlement in Jay treaty of 1794 (177-178). 2. Questions arising out of European wars [1793-1801] (176-177, 180). 3. Blockade and embargo problems (193-199). 4. War of 1812 (199-201). 5. Monroe Doctrine and Holy Alliance (205-207). 6. Maine boundary--Webster-Ashburton treaty (265). 7. Oregon boundary (284-286). 8. Attitude of Great Britain during Civil War (354-355). 9. Arbitration of _Alabama_ claims (480-481). 10. The Samoan question (481-482) 11. The Venezuelan question (482-484). 12. British policy during Spanish-American War (496-497). 13. Controversy over blockade, 1914-1917 (598-600). 14. The World War (603-620). IV. Relations with France. 1. The colonial wars (59-61). 2. The French alliance of 1778 (128-130). 3. Controversies over the French Revolution (128-130). 4. Commercial questions arising out of the European wars (176-177, 180, 193-199). 5. Attitude of Napoleon III toward the Civil War (354-355). 6. The Mexican entanglement (478-479). 7. The World War (596-620). V. Relations with Germany. 1. Negotiations with Frederick, king of Prussia (128). 2. The Samoan controversy (481-482). 3. Spanish-American War (491). 4. The Venezuelan controversy (512). 5. The World War (596-620). VI. Relations with the Orient. 1. Early trading connections (486-487). 2. The opening of China (447). 3. The opening of Japan (448). 4. The Boxer rebellion and the "open door" policy (499-502). 5. Roosevelt and the close of the Russo-Japanese War (511). 6. The Oriental immigration question (583-584). VII. The United States and Latin America. 1. Mexican relations. _a._ Mexican independence and the Monroe Doctrine (205-207). _b._ Mexico and French intervention--policy of the United States (478-479). _c._ The overthrow of Diaz (1911) and recent questions (594-596). 2. Cuban relations. _a._ Slavery and the "Ostend Manifesto" (485-486). _b._ The revolutionary period, 1867-1877 (487). _c._ The revival of revolution (487-491). _d._ American intervention and the Spanish War (491-496). _e._ The Platt amendment and American protection (518-519). 3. Caribbean and other relations. _a._ Acquisition of Porto Rico (493). _b._ The acquisition of the Panama Canal strip (508-510). _c._ Purchase of Danish West Indies (593). _d._ Venezuelan controversies (482-484, 512). _e._ Extension of protectorate over Haiti, Santo Domingo, and Nicaragua (513-514, 592-594). INDEX Abolition, 318, 331 Adams, Abigail, 556 Adams, John, 97, 128, 179ff. Adams, J.Q., 247, 319 Adams, Samuel, 90, 99, 108 Adamson law, 590 Aguinaldo, 497 Alabama, admission, 227 _Alabama_ claims, 480 Alamance, battle, 92 Alamo, 280 Alaska, purchase, 479 Albany, plan of union, 62 Algonquins, 57 Alien law, 180 Amendment, method of, 156 Amendments to federal Constitution: first eleven, 163 twelfth, 184, note thirteenth, 358 fourteenth, 366, 369, 387 fifteenth, 358 sixteenth, 528 seventeenth, 542 eighteenth, 591 nineteenth, 563ff. American expeditionary force, 610 American Federation of Labor, 573, 608 Americanization, 585 Amnesty, for Confederates, 383 Andros, 65 Annapolis, convention, 144 Antietam, 357 Anti-Federalists, 169 Anti-slavery. _See_ Abolition Anthony, Susan, 564 Appomattox, 363 Arbitration: international, 480, 514, 617 labor disputes, 582 Arizona, admission, 443 Arkansas, admission, 272 Arnold, Benedict, 114, 120 Articles of Confederation, 110, 139ff., 146 Ashburton, treaty, 265 Assembly, colonial, 49ff., 89ff. Assumption, 164ff. Atlanta, 361 Australian ballot, 540 Bacon, Nathaniel, 58 Ballot: Australian, 540 short, 544 Baltimore, Lord, 6 Bank: first U.S., 167 second, 203, 257ff. Banking system: state, 300 U.S. national, 369 services of, 407 _See also_ Federal reserve Barry, John, 118 Bastille, 172 Bell, John, 341 Belleau Wood, 611 Berlin decree, 194 Blockade: by England and France, 193ff. Southern ports, 353 law and practice in 1914, 598ff. Bond servants, 13ff. Boone, Daniel, 28, 218 Boston: massacre, 91 evacuation, 116 port bill, 94 Bowdoin, Governor, 142 Boxer rebellion, 499 Brandywine, 129 Breckinridge, J.C., 340 Bright, John, 355 Brown, John, 338 Brown University, 45 Bryan, W.J., 468ff., 495, 502, 503, 527 Buchanan, James, 335, 368 Budget system, 529 Bull Run, 350 Bunker Hill, 102 Burgoyne, General, 116, 118, 130 Burke, Edmund, 87, 96ff., 132, 175 Burr, Aaron, 183, 231 Business. _See_ Industry Calhoun, J.C., 198ff., 203, 208, 281, 321, 328 California, 286ff. Canada, 61, 114, 530 Canals, 233, 298, 508 Canning, British premier, 206 Cannon, J.G., 530 Cantigny, 611 Caribbean, 479 Carpet baggers, 373 Cattle ranger, 431ff. Caucus, 245 Censorship. _See_ Newspapers Charles I, 3 Charles II, 65 Charleston, 36, 116 Charters, colonial, 2ff., 41 Chase, Justice, 187 Chateau-Thierry, 611 Checks and balances, 153 _Chesapeake_, the, 195 Chickamauga, 361 Child labor law, 591 China, 447, 499ff. Chinese labor, 583 Churches, colonial, 39ff., 42, 43 Cities, 35, 36, 300ff., 395, 410, 544 City manager plan, 545 Civil liberty, 358ff., 561 Civil service, 419, 536, 538ff. Clarendon, Lord, 6 Clark, G.R., 116, 218 Clay, Henry, 198, 203, 248, 261, 328 Clayton anti-trust act, 489 Clergy. _See_ Churches Cleveland, Grover, 421, 465, 482, 484, 489, 582 Clinton, Sir Henry, 119 Colorado, admission, 441 Combination. _See_ Trusts Commerce, colonial, 33ff. disorders after 1781, 140 Constitutional provisions on, 154 Napoleonic wars, 176, 193ff. domestic growth of, 307 congressional regulation of, 460ff., 547 _See also_ Trusts and Railways Commission government, 544 Committees of correspondence, 108 _Commonsense_, pamphlet, 103 Communism, colonial, 20f. Company, trading, 2f. Compromises: of Constitution, 148, 150, 151 Missouri, 325, 332 of 1850, 328ff. Crittenden, 350 Conciliation, with England, 131 Concord, battle, 100 Confederacy, Southern, 346ff. Confederation: New England, 61f. _See also_ Articles of Congregation, religious, 4 Congress: stamp act, 85 continental, 99ff. under Articles, 139f. under Constitution, 152 powers of, 153 Connecticut: founded, 4ff. self-government, 49 _See also_ Suffrage constitutions, state Conservation, 523ff. Constitution: formation of, 143ff. _See also_ Amendment _Constitution_, the, 200 Constitutions, state, 109ff., 238ff., 385ff. Constitutional union party, 340 Contract labor law, 584 Convention: 1787, 144ff. nominating, 405 Convicts, colonial, 15 Conway Cabal, 120 Cornwallis, General, 116, 119, 131 Corporation and labor, 571. _See also_ Trusts Cotton. _See_ Planting system Cowboy, 431ff. Cowpens, battle, 116 Cox, J.M., 619 _Crisis, The_, pamphlet, 115 Crittenden Compromise, 350 Cuba, 485ff., 518 Cumberland Gap, 223 Currency. _See_ Banking Danish West Indies, purchased, 593 Dartmouth College, 45 Daughters of liberty, 84 Davis, Jefferson, 346ff. Deane, Silas, 128 Debs, E.V., 465, 534 Debt, national, 164ff. Decatur, Commodore, 477 Declaration of Independence, 101ff. Defense, national, 154 De Kalb, 121 Delaware, 3, 49 De Lome affair, 490 Democratic party, name assumed, 260 _See also_ Anti-Federalists Dewey, Admiral, 492 Diplomacy: of the Revolution, 127ff. Civil War, 354 Domestic industry, 28 Donelson, Fort, 361 Dorr Rebellion, 243 Douglas, Stephen A., 333, 337, 368 Draft: Civil War, 351 World War, 605 Draft riots, 351 Dred Scott case, 335, 338 Drug act, 523 Duquesne, Fort, 60 Dutch, 3, 12 East India Company, 93 Education, 43ff., 557, 591 Electors, popular election of, 245 Elkins law, 547 Emancipation, 357ff. Embargo acts, 186ff. England: Colonial policy of, 64ff. Revolutionary War, 99ff. Jay treaty, 177 War of 1812, 198ff. Monroe Doctrine, 206 Ashburton treaty, 265 Civil War, 354 _Alabama_ claims, 480 Samoa, 481 Venezuela question, 482 Spanish War, 496 World War, 596ff. Erie Canal, 233 Esch-Cummins bill, 582 Espionage act, 607 Excess profits tax, 606 Executive, federal, plans for, 151 Expunging resolution, 260 Farm loan act, 589 Federal reserve act, 589 Federal trade commission, 590 _Federalist_, the, 158 Federalists, 168ff., 201ff. Feudal elements in colonies, 21f. Filipino revolt. _See_ Philippines Fillmore, President, 485 Finances: colonial, 64 revolutionary, 125ff. disorders, 140 Civil War, 347, 352ff. World War, 606 _See also_ Banking Fishing industry, 31 Fleet, world tour, 515 Florida, 134, 204 Foch, General, 611 Food and fuel law, 607 Force bills, 384 ff., 375 Forests, national, 525ff. Fourteen points, 605 Fox, C.J., 132 France: colonization, 59ff. French and Indian War, 60ff. American Revolution, 116, 123, 128ff. French Revolution, 165ff. Quarrel with, 180 Napoleonic wars, 193ff. Louisiana purchase, 190 French Revolution of 1830, 266 Civil War, 354 Mexican affair, 478 World War, 596ff. Franchises, utility, 548 Franklin, Benjamin, 45, 62, 82, 86, 128, 134 Freedmen. _See_ Negro Freehold. _See_ Land Free-soil party, 319 Fremont, J.C., 288, 334 French. _See_ France Friends, the, 5 Frontier. _See_ Land Fugitive slave act, 329 Fulton, Robert, 231, 234 Fundamental articles, 5 Fundamental orders, 5 Gage, General, 95, 100 Garfield, President, 416 Garrison, William Lloyd, 318 _Gaspee_, the, 92 Gates, General, 116, 120, 131 Genet, 177 George I, 66 George II, 4, 66, 82 George III, 77ff. Georgia: founded, 4 royal province, 49 state constitution, 109 _See also_ Secession Germans: colonial immigration, 9ff. in Revolutionary War, 102ff. later immigration, 303 Germany: Samoa, 481 Venezuela affair, 512 World War, 596f. Gerry, Elbridge, 148 Gettysburg, 362 Gibbon, Edward, 133 Gold: discovery, 288 standard, 466, 472 Gompers, Samuel, 573, 608 Governor, royal, 49ff. Grandfather clause, 386f. Grangers, 460ff. Grant, General, 361, 416, 480, 487 Great Britain. _See_ England Greeley, Horace, 420 Greenbacks, 454ff. Greenbackers, 462ff. Greene, General, 117, 120 Grenville, 79ff. Guilford, battle, 117 Habeas corpus, 358 Hague conferences, 514 Haiti, 593 Hamilton, Alexander, 95, 143, 158, 162, 168ff., 231 Harding, W.G., 389, 619 Harlem Heights, battle, 114 Harper's Ferry, 339 Harrison, Benjamin, 422, 484 Harrison, W.H., 198, 263f. Hartford convention, 201ff., 238 Harvard, 44 Hawaii, 484f. Hay, John, 477, 500ff. Hayne, Robert, 256 Hays, President, 416f. Henry, Patrick, 85 Hepburn act, 523 Hill, James J., 429 Holland, 130 Holy Alliance, 205 Homestead act, 368, 432 Hooker, Thomas, 5 Houston, Sam, 279ff. Howe, General, 118 Hughes, Charles E., 602 Huguenots, 10 Hume, David, 132 Hutchinson, Anne, 5 Idaho, admission, 442 Income tax, 459, 466, 528, 588, 606 Inheritance tax, 606 Illinois, admission, 226 Illiteracy, 585 Immigration: colonial, 1-17 before Civil War, 302, 367 after Civil War, 410ff. problems of, 582ff. Imperialism, 494ff., 498f., 502ff. Implied powers, 212 Impressment of seamen, 194 Indentured servants, 13f. Independence, Declaration of, 107 Indiana, admission, 226 Indians, 57ff., 81, 431 Industry: colonial, 28ff. growth of, 296ff. during Civil War, 366 after 1865, 390ff., 401ff., 436ff., 559 _See also_ Trusts Initiative, the, 543 Injunction, 465, 580 Internal improvements, 260, 368 Interstate commerce act, 461, 529 Intolerable acts, 93 Invisible government, 537 Iowa, admission, 275 Irish, 11, 302 Iron. _See_ Industry Irrigation, 434ff., 523ff. Jackson, Andrew, 201, 204, 246, 280 Jacobins, 174 James I, 3 James II, 65 Jamestown, 3, 21 Japan, relations with, 447, 511, 583 Jay, John, 128, 158, 177 Jefferson, Thomas: Declaration of Independence, 107 Secretary of State, 162ff. political leader, 169 as President, 183ff. Monroe Doctrine, 206, 231 Jews, migration of, 11 Johnson, Andrew, 365, 368, 371f. Johnson, Samuel, 132 Joliet, 59 Jones, John Paul, 118 Judiciary: British system, 67 federal, 152 Kansas, admission, 441 Kansas-Nebraska bill, 333 Kentucky: admission, 224 Resolutions, 182 King George's War, 59 King Philip's War, 57 King William's War, 59 King's College (Columbia), 45 Knights of Labor, 575ff. Kosciusko, 121 Ku Klux Klan, 382 Labor: rise of organized, 304 parties, 462ff. question, 521 American Federation, 573ff. legislation, 590 World War, 608ff. Lafayette, 121 La Follette, Senator, 531 Land: tenure 20ff. sales restricted, 80 Western survey, 219 federal sales policy, 220 Western tenure, 228 disappearance of free, 445 new problems, 449 _See also_ Homestead act La Salle, 59 Lawrence, Captain, 200 League of Nations, 616ff. Le Boeuf, Fort, 59 Lee, General Charles, 131 Lee, R.E., 357 Lewis and Clark expedition, 193 Lexington, battle, 100 Liberal Republicans, 420 Liberty loan, 606 Lincoln: Mexican War, 282 Douglas debates, 336f. election, 341 Civil War, 344ff. reconstruction, 371 Literacy test, 585 Livingston, R.R., 191 Locke, John, 95 London Company, 3 Long Island, battle, 114 Lords of trade, 67ff. Louis XVI, 171ff. Louisiana: ceded to Spain, 61 purchase, 190ff. admission, 227 Loyalists. _See_ Tories _Lusitania_, the, 601ff. McClellan, General, 362, 365 McCulloch _vs._ Maryland, 211 McKinley, William, 422, 467ff., 489ff. Macaulay, Catherine, 132 Madison, James, 158, 197ff. Maine, 325 _Maine_, the, 490 Manila Bay, battle, 492 Manors, colonial, 22 Manufactures. _See_ Industry Marbury _vs._ Madison, 209 Marietta, 220 Marion, Francis, 117, 120 Marquette, 59 Marshall, John, 208ff. Martineau, Harriet, 267 Maryland, founded, 6, 49, 109, 239, 242 Massachusetts: founded, 3ff. _See also_ Immigration, Royal province, Industry, Revolutionary War, Constitutions, state, Suffrage, Commerce, and Industry Massachusetts Bay Company, 3 founded, 3ff. _See also_ Immigration, Royal province _Mayflower_ compact, 4 Mercantile theory, 69 Merchants. _See_ Commerce _Merrimac_, the, 353 Meuse-Argonne, battle, 612 Mexico: and Texas, 278ff. later relations, 594f. Michigan, admission, 273 Midnight appointees, 187 Milan Decree, 194 Militia, Revolutionary War, 122 Minimum wages, 551 Minnesota, admission, 275 Mississippi River, and West, 189f. Missouri Compromise, 207, 227, 271, 325, 332 Molasses act, 71 Money, paper, 80, 126, 155, 369 _Monitor_, the, 353 Monroe, James, 204ff., 191 Monroe Doctrine, 205, 512 Montana, admission, 442 Montgomery, General, 114 Morris, Robert, 127 Mothers' pensions, 551 Mohawks, 57 Muckraking, 536f. Mugwumps, 420 Municipal ownership, 549 Napoleon I, 190 Napoleon III: Civil War, 354f. Mexico, 477 National Labor Union, 574 National road, 232 Nationalism, colonial, 56ff. Natural rights, 95 Navigation acts, 69 Navy: in Revolution, 188 War of 1812, 195 Civil War, 353 World War, 610. _See also_ Sea Power Nebraska, admission, 441 Negro: Civil rights, 370ff. in agriculture, 393ff. status of, 396ff. _See also_ Slavery New England: colonial times, 6ff., 35, 40ff. _See also_ Industry, Suffrage, Commerce, and Wars New Hampshire: founded, 4ff. _See also_ Immigration, Royal province, Suffrage, and Constitutions, state New Jersey, founded, 6. _See also_ Immigration, Royal province, Suffrage, and Constitutions, state Newlands, Senator, 524 New Mexico, admission, 443 New Orleans, 59, 190 battle, 201 Newspapers, colonial, 46ff. New York: founded by Dutch, 3 transferred to English, 49 _See also_ Dutch, Immigration, Royal province, Commerce, Suffrage, and Constitutions, state New York City, colonial, 36 Niagara, Fort, 59 Nicaragua protectorate, 594 Non-intercourse act, 196ff. Non-importation, 84ff., 99 North, Lord, 100, 131, 133 North Carolina: founded, 6. _See also_ Royal province, Immigration, Suffrage, and Constitutions, state North Dakota, admission, 442 Northwest Ordinance, 219 Nullification, 182, 251ff. Oglethorpe, James, 3 Ohio, admission, 225 Oklahoma, admission, 443 Open door policy, 500 Oregon, 284ff. Ostend Manifesto, 486 Otis, James, 88, 95f. Pacific, American influence, 447 Paine, Thomas, 103, 115, 175 Panama Canal, 508ff. Panics: 1837, 262 1857, 336 1873, 464 1893, 465 Parcel post, 529 Parker, A.B., 527 Parties: rise of, 168ff. Federalists, 169ff. Anti-Federalists (Jeffersonian Republicans), 169ff. Democrats, 260 Whigs, 260ff. Republicans, 334ff. Liberal Republicans, 420 Constitutional union, 340 minor parties, 462ff. Paterson, William, 196ff. Penn, William, 6 Pennsylvania: founded, 6 _See also_ Penn, Germans, Immigration, Industry, Revolutionary War, Constitutions, state, Suffrage Pennsylvania University, 45 Pensions, soldiers and sailors, 413, 607 mothers', 551 Pequots, 57 Perry, O.H., 200 Pershing, General, 610 Philadelphia, 36, 116 Philippines, 492ff., 516ff., 592 Phillips, Wendell, 320 Pierce, Franklin, 295, 330 Pike, Z., 193, 287 Pilgrims, 4 Pinckney, Charles, 148 Pitt, William, 61, 79, 87, 132 Planting system, 22f., 25, 149, 389, 393ff. Plymouth, 4, 21 Polk, J.K., 265, 285f. Polygamy, 290f. Populist party, 464 Porto Rico, 515, 592 Postal savings bank, 529 Preble, Commodore, 196 Press. _See_ Newspapers Primary, direct, 541 Princeton, battle, 129 University, 45 Profit sharing, 572 Progressive party, 531f. Prohibition, 591f. Proprietary colonies, 3, 6 Provinces, royal, 49ff. Public service, 538ff. Pulaski, 121 Pullman strike, 465 Pure food act, 523 Puritans, 3, 7, 40ff. Quakers, 6ff. Quartering act, 83 Quebec act, 94 Queen Anne's War, 59 Quit rents, 21f. Radicals, 579 Railways, 298, 402, 425, 460ff., 547, 621 Randolph, Edmund, 146, 147, 162 Ratification, of Constitution, 156ff. Recall, 543 Reclamation, 523ff. Reconstruction, 370ff. Referendum, the, 543 Reign of terror, 174 Republicans: Jeffersonian, 179 rise of present party, 334ff. supremacy of, 412ff. _See also_ McKinley, Roosevelt, and Taft Resumption, 454 Revolution: American, 99ff. French, 171ff. Russian, 619 Rhode Island: founded, 4ff. self-government, 49 _See also_ Suffrage Roosevelt, Theodore, 492, 500ff., 531, 570 Royal province, 49ff. Russia, 205, 207, 355, 479, 619 Russo-Japanese War, 511f. Saint Mihiel, 612 Samoa, 481 San Jacinto, 280 Santa Fe trail, 287 Santo Domingo, 480, 513, 592 Saratoga, battle, 116, 130 Savannah, 116, 131 Scandinavians, 278 Schools. _See_ Education Scott, General, 283, 330 Scotch-Irish, 7ff. Seamen's act, 590 Sea power: American Revolution, 118 Napoleonic wars, 193ff. Civil War, 353 Caribbean, 593 Pacific, 447 World War, 610ff. Secession, 344ff. Sedition: act of 1798, 180ff., 187 of 1918, 608 Senators, popular election, 527, 541ff. Seven Years' War, 60ff. Sevier, John, 218 Seward, W.H., 322, 342 Shafter, General, 492 Shays's rebellion, 142 Sherman, General, 361 Sherman: anti-trust law, 461 silver act, 458 Shiloh, 361 Shipping. _See_ Commerce Shipping act, 607 Silver, free, 455ff. Slavery: colonial, 16f. trade, 150 in Northwest, 219 decline in North, 316f. growth in South, 320ff. and the Constitution, 324 and territories, 325ff. compromises, 350 abolished, 357ff. Smith, Joseph, 290 Socialism, 577ff. Solid South, 388 Solomon, Hayn, 126 Sons of liberty, 82 South: economic and political views, 309ff. _See also_ Slavery and Planting system, and Reconstruction South Carolina: founded, 6 nullification, 253ff. _See also_ Constitutions, state, Suffrage, Slavery, and Secession South Dakota, 442 Spain: and Revolution, 130 Louisiana, 190 Monroe Doctrine, 205 Spanish War, 490ff. Spoils system, 244, 250, 418, 536ff. Stamp act, 82ff. Stanton, Elizabeth Cady, 564 States: disorders under Articles of Confederation, 141 constitutions, federal limits on, 155 position after Civil War, 366ff. _See also_ Suffrage, Nullification, and Secession Steamboat, 234 Stowe, H.B., 332 Strikes: of 1877, 581 Pullman, 581 coal, 526 _See also_ Labor Submarine campaign, 600ff. Suffrage: colonial, 42, 51 first state constitutions, 239 White manhood, 242 Negro, 374ff., 385f. Woman, 110, 562ff. Sugar act, 81 Sumner, Charles, 319 Sumter, Fort, 350 Swedes, 3, 13 Taft, W.H., 527ff. Tammany Hall, 306, 418 Taney, Chief Justice, 357 Tariff: first, 167 of 1816, 203 development of, 251ff. abominations, 249, 253 nullification, 251 of 1842, 264 Southern views of, 309ff. of 1857, 337 Civil War, 367 Wilson bill, 459 McKinley bill, 422 Dingley bill, 472 Payne-Aldrich, 528 Underwood, 588 Taxation: and representation, 149 and Constitution, 154 Civil War, 353 and wealth, 522, 551 and World War, 606 Tea act, 88 Tea party, 92 Tenement house reform, 549 Tennessee, 28, 224 Territories, Northwest, 219 South of the Ohio, 219 _See also_ Slavery and Compromise Texas, 278ff. Tippecanoe, battle, 198 Tocqueville, 267 Toleration, religious, 42 Tories, colonial, 84 in Revolution, 112 Townshend acts, 80, 87 Trade, colonial, 70 legislation, 70. _See_ Commerce Transylvania company, 28 Treasury, independent, 263 Treaties, of 1763, 61 alliance with France, 177 of 1783 with England, 134 Jay, 177, 218 Louisiana purchase, 191f. of 1815, 201 Ashburton, 265 of 1848 with Mexico, 283 Washington with England, 481 with Spain, 492 Versailles (1919), 612ff. Trenton, battle, 116 Trollope, Mrs., 268 Trusts, 405ff., 461, 472ff., 521, 526, 530 Tweed, W.M., 418 Tyler, President, 264ff., 281, 349 "Uncle Tom's Cabin," 332 Union party, 365 Unions. _See_ Labor Utah, 290ff., 329, 442 Utilities, municipal, 548 Vallandigham, 360 Valley Forge, 116, 129 Van Buren, Martin, 262 Venango, Fort, 59 Venezuela, 482ff., 512 Vermont, 223 Vicksburg, 361 Virginia: founded, 3. _See also_ Royal province, Constitutions, state, Planting system, Slavery, Secession, and Immigration Walpole, Sir Robert, 66 Wars: colonial, 57ff. Revolutionary, 99ff. of 1812, 199ff. Mexican, 282ff. Civil, 344ff. Spanish, 490ff. World, 596ff. Washington: warns French, 60 in French war, 63 commander-in-chief, 101ff. and movement for Constitution, 142ff. as President, 166ff. Farewell Address, 178 Washington City, 166 Washington State, 442 Webster, 256, 265, 328 Welfare work, 573 Whigs: English, 78 colonial, 83 rise of party, 260ff., 334, 340 Whisky Rebellion, 171 White Camelia, 382 White Plains, battle, 114 Whitman, Marcus, 284 William and Mary College, 45 Williams, Roger, 5, 42 Wilmot Proviso, 326 Wilson, James, 147 Wilson, Woodrow, election, 533f. administrations, 588ff. Winthrop, John, 3 Wisconsin, admission, 274 Witchcraft, 41 Wollstonecraft, Mary, 556 Women: colonial, 28 Revolutionary War, 124 labor, 305 education and civil rights, 554ff. suffrage, 562ff. Workmen's compensation, 549 Writs of assistance, 88 Wyoming, admission, 442 X, Y, Z affair, 180 Yale, 44 Young, Brigham, 290 Zenger, Peter, 48 * * * * * Printed in the United States of America. * * * * * [Transcriber's notes: Punctuation normalized in all _Underwood and Underwood, N.Y._ Superscripted letters are denoted with a caret. For example, G^O WASHINGTON. Period added after Mass on verso page. Original read "Mass, U.S.A." Chapter I, page 19, period added to pp. 55-159 and pp. 242-244. Chapter IV, page 61 cooperation changed to cooperation twice to match rest of text usage. Also on page 620. Chapter VI, page 121 changed maneuvered to manoevered. Chapter VIII, page 185, period added to "Vol." Original read "Vol III," Chapter X, page 219, changed coordinate to coordinate to reflect rest of text usage. Chapter X, page 234, Italicized habeus corpus to match rest of text. Chapter XI, page 257 changed reestablished to reestablished to conform to rest of text usage. Chapter XI, page 259 changed reelection to reelection Chapter XII, page 269 added period after "Vol" Vol. II Chapter XII, page 270. Title of work reads "_Selected Documents of United States History, 1776-1761_". Research shows the document does have this title. Chapter XV, page 351. changed "bout" to "about". "for only about" Chapter XVI, page 385. changed "provisons" to "provisions". Chapter XX, page 478. changed "aniversary" to "anniversary". Chapter XXIV, page 579 word "on" changed to "one" "five commissioners, one of whom," Topical Syllabus. Missing periods added to normalize punctuation in entries such as on page 648 (4) Sixteenth Amendment--income tax (528-529). Appendix, page 631, comma changed to semi-colon on "bills of credit;" to match rest of list. Also on "obligation of contracts;" Index, page 657, changed "Freesoil" to Free-soil to match rest of text usage. Index, page 660, space removed from "396 ff." changed to "status of, 396ff." Index, Page 662, added comma to States: disorders under Articles of Constitution, 141] End of the Project Gutenberg EBook of History of the United States by Charles A. Beard and Mary R. Beard *** END OF THIS PROJECT GUTENBERG EBOOK HISTORY OF THE UNITED STATES *** ***** This file should be named 16960-8.txt or 16960-8.zip ***** This and all associated files of various formats will be found in: http://www.gutenberg.org/1/6/9/6/16960/ Produced by Curtis Weyant, M and the Online Distributed Proofreading Team at http://www.pgdp.net Updated editions will replace the previous one--the old editions will be renamed. Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away--you may do practically ANYTHING with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect the Project Gutenberg-tm mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg-tm License (available with this file or online at http://gutenberg.net/license). Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.net), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need, is critical to reaching Project Gutenberg-tm's goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org. Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://pglaf.org/fundraising. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://pglaf.org While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including including checks, online payments and credit card donations. To donate, please visit: http://pglaf.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.net This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. Project Gutenberg's Manual of Surgery, by Alexis Thomson and Alexander Miles This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org Title: Manual of Surgery Volume First: General Surgery. Sixth Edition. Author: Alexis Thomson and Alexander Miles Release Date: March 4, 2006 [EBook #17921] Language: English Character set encoding: ISO-8859-1 *** START OF THIS PROJECT GUTENBERG EBOOK MANUAL OF SURGERY *** Produced by Jonathan Ingram, Laura Wisewell and the Online Distributed Proofreading Team at http://www.pgdp.net +--------------------------------------------------------------------+ | | | Transcriber's note: The original text used the apothecaries' | | symbols here rendered as [ounce] and [dram]. The substitutions | | used for other special characters, such as the oe ligature, are | | standard. All the special characters are preserved in the UTF-8 | | and HTML versions of this text. | | | | In addition, a number of printing errors have been corrected. | | These are marked in the HTML version only. | | | +--------------------------------------------------------------------+ OXFORD MEDICAL PUBLICATIONS MANUAL OF SURGERY BY ALEXIS THOMSON, F.R.C.S.Ed. _PROFESSOR OF SURGERY, UNIVERSITY OF EDINBURGH_ SURGEON EDINBURGH ROYAL INFIRMARY AND ALEXANDER MILES, F.R.C.S.Ed. SURGEON EDINBURGH ROYAL INFIRMARY VOLUME FIRST GENERAL SURGERY _SIXTH EDITION REVISED_ _WITH 169 ILLUSTRATIONS_ LONDON HENRY FROWDE and HODDER & STOUGHTON THE _LANCET_ BUILDING 1 & 2 BEDFORD STREET, STRAND, W.C.2 First Edition 1904 Second Edition 1907 Third Edition 1909 Fourth Edition 1911 " " Second Impression 1913 Fifth Edition 1915 " " Second Impression 1919 Sixth Edition 1921 PRINTED IN GREAT BRITAIN BY MORRISON AND GIBB LTD., EDINBURGH PREFACE TO SIXTH EDITION Much has happened since this Manual was last revised, and many surgical lessons have been learned in the hard school of war. Some may yet have to be unlearned, and others have but little bearing on the problems presented to the civilian surgeon. Save in its broadest principles, the surgery of warfare is a thing apart from the general surgery of civil life, and the exhaustive literature now available on every aspect of it makes it unnecessary that it should receive detailed consideration in a manual for students. In preparing this new edition, therefore, we have endeavoured to incorporate only such additions to our knowledge and resources as our experience leads us to believe will prove of permanent value in civil practice. For the rest, the text has been revised, condensed, and in places rearranged; a number of old illustrations have been discarded, and a greater number of new ones added. Descriptions of operative procedures have been omitted from the _Manual_, as they are to be found in the companion volume on _Operative Surgery_, the third edition of which appeared some months ago. We have retained the Basle anatomical nomenclature, as extended experience has confirmed our preference for it. For the convenience of readers who still employ the old terms, these are given in brackets after the new. This edition of the _Manual_ appears in three volumes; the first being devoted to General Surgery, the other two to Regional Surgery. This arrangement has enabled us to deal in a more consecutive manner than hitherto with the surgery of the Extremities, including Fractures and Dislocations. We have once more to express our thanks to colleagues in the Edinburgh School and to other friends for aiding us in providing new illustrations, and for other valuable help, as well as to our publishers for their generosity in the matter of illustrations. EDINBURGH, _March_ 1921. CONTENTS PAGE CHAPTER I REPAIR 1 CHAPTER II CONDITIONS WHICH INTERFERE WITH REPAIR 17 CHAPTER III INFLAMMATION 31 CHAPTER IV SUPPURATION 45 CHAPTER V ULCERATION AND ULCERS 68 CHAPTER VI GANGRENE 86 CHAPTER VII BACTERIAL AND OTHER WOUND INFECTIONS 107 CHAPTER VIII TUBERCULOSIS 133 CHAPTER IX SYPHILIS 146 CHAPTER X TUMOURS 181 CHAPTER XI INJURIES 218 CHAPTER XII METHODS OF WOUND TREATMENT 241 CHAPTER XIII CONSTITUTIONAL EFFECTS OF INJURIES 249 CHAPTER XIV THE BLOOD VESSELS 258 CHAPTER XV THE LYMPH VESSELS AND GLANDS 321 CHAPTER XVI THE NERVES 342 CHAPTER XVII SKIN AND SUBCUTANEOUS TISSUES 376 CHAPTER XVIII THE MUSCLES, TENDONS, AND TENDON SHEATHS 405 CHAPTER XIX THE BURSAE 426 CHAPTER XX DISEASES OF BONE 434 CHAPTER XXI DISEASES OF JOINTS 501 INDEX 547 LIST OF ILLUSTRATIONS FIG. PAGE 1. Ulcer of Back of Hand grafted from Abdominal Wall 15 2. Staphylococcus aureus in Pus from case of Osteomyelitis 25 3. Streptococci in Pus from case of Diffuse Cellulitis 26 4. Bacillus coli communis in Pus from Abdominal Abscess 27 5. Fraenkel's Pneumococci in Pus from Empyema following 28 Pneumonia 6. Passive Hyperaemia of Hand and Forearm induced by Bier's 37 Bandage 7. Passive Hyperaemia of Finger induced by Klapp's Suction 38 Bell 8. Passive Hyperaemia induced by Klapp's Suction Bell for 39 Inflammation of Inguinal Gland 9. Diagram of various forms of Whitlow 56 10. Charts of Acute Sapraemia 61 11. Chart of Hectic Fever 62 12. Chart of Septicaemia followed by Pyaemia 63 13. Chart of Pyaemia following on Acute Osteomyelitis 65 14. Leg Ulcers associated with Varicose Veins 71 15. Perforating Ulcers of Sole of Foot 74 16. Bazin's Disease in a girl aet. 16 75 17. Syphilitic Ulcers in region of Knee 76 18. Callous Ulcer showing thickened edges 78 19. Tibia and Fibula, showing changes due to Chronic Ulcer of 80 Leg 20. Senile Gangrene of the Foot 89 21. Embolic Gangrene of Hand and Arm 92 22. Gangrene of Terminal Phalanx of Index-Finger 100 23. Cancrum Oris 103 24. Acute Bed Sores over right Buttock 104 25. Chart of Erysipelas occurring in a wound 108 26. Bacillus of Tetanus 113 27. Bacillus of Anthrax 120 28. Malignant Pustule third day after infection 122 29. Malignant Pustule fourteen days after infection 122 30. Colony of Actinomyces 126 31. Actinomycosis of Maxilla 128 32. Mycetoma, or Madura Foot 130 33. Tubercle bacilli 134 34. Tuberculous Abscess in Lumbar Region 141 35. Tuberculous Sinus injected through its opening in the 144 Forearm with Bismuth Paste 36. Spirochaete pallida 147 37. Spirochaeta refrigerans from scraping of Vagina 148 38. Primary Lesion on Thumb, with Secondary Eruption on 154 Forearm 39. Syphilitic Rupia 159 40. Ulcerating Gumma of Lips 169 41. Ulceration in inherited Syphilis 170 42. Tertiary Syphilitic Ulceration in region of Knee and on 171 both Thumbs 43. Facies of Inherited Syphilis 174 44. Facies of Inherited Syphilis 175 45. Subcutaneous Lipoma 185 46. Pedunculated Lipoma of Buttock 186 47. Diffuse Lipomatosis of Neck 187 48. Zanthoma of Hands 188 49. Zanthoma of Buttock 189 50. Chondroma growing from Infra-Spinous Fossa of Scapula 190 51. Chondroma of Metacarpal Bone of Thumb 190 52. Cancellous Osteoma of Lower End of Femur 192 53. Myeloma of Shaft of Humerus 195 54. Fibro-myoma of Uterus 196 55. Recurrent Sarcoma of Sciatic Nerve 198 56. Sarcoma of Arm fungating 199 57. Carcinoma of Breast 206 58. Epithelioma of Lip 209 59. Dermoid Cyst of Ovary 213 60. Carpal Ganglion in a woman aet. 25 215 61. Ganglion on lateral aspect of Knee 216 62. Radiogram showing pellets embedded in Arm 228 63. Cicatricial Contraction following Severe Burn 236 64. Genealogical Tree of Haemophilic Family 278 65. Radiogram showing calcareous degeneration of Arteries 284 66. Varicose Vein with Thrombosis 289 67. Extensive Varix of Internal Saphena System on Left Leg 291 68. Mixed Naevus of Nose 296 69. Cirsoid Aneurysm of Forehead 299 70. Cirsoid Aneurysm of Orbit and Face 300 71. Radiogram of Aneurysm of Aorta 303 72. Sacculated Aneurysm of Abdominal Aorta 304 73. Radiogram of Innominate Aneurysm after Treatment by 309 Moore-Corradi method 74. Thoracic Aneurysm threatening to rupture 313 75. Innominate Aneurysm in a woman 315 76. Congenital Cystic Tumour or Hygroma of Axilla 328 77. Tuberculous Cervical Gland with Abscess formation 331 78. Mass of Tuberculous Glands removed from Axilla 333 79. Tuberculous Axillary Glands 335 80. Chronic Hodgkin's Disease in boy aet. 11 337 81. Lymphadenoma in a woman aet. 44 338 82. Lympho Sarcoma removed from Groin 339 83. Cancerous Glands in Neck, secondary to Epithelioma of Lip 341 84. Stump Neuromas of Sciatic Nerve 345 85. Stump Neuromas, showing changes at ends of divided Nerves 354 86. Diffuse Enlargement of Nerves in generalised 356 Neuro-Fibromatosis 87. Plexiform Neuroma of small Sciatic Nerve 357 88. Multiple Neuro-Fibromas of Skin (Molluscum fibrosum) 358 89. Elephantiasis Neuromatosa in a woman aet. 28 359 90. Drop-Wrist following Fracture of Shaft of Humerus 365 91. To illustrate the Loss of Sensation produced by Division 367 of the Median Nerve 92. To illustrate Loss of Sensation produced by Complete 368 Division of Ulnar Nerve 93. Callosities and Corns on Sole of Foot 377 94. Ulcerated Chilblains on Fingers 378 95. Carbuncle on Back of Neck 381 96. Tuberculous Elephantiasis 383 97. Elephantiasis in a woman aet. 45 387 98. Elephantiasis of Penis and Scrotum 388 99. Multiple Sebaceous Cysts or Wens 390 100. Sebaceous Horn growing from Auricle 392 101. Paraffin Epithelioma 394 102. Rodent Cancer of Inner Canthus 395 103. Rodent Cancer with destruction of contents of Orbit 396 104. Diffuse Melanotic Cancer of Lymphatics of Skin 398 105. Melanotic Cancer of Forehead with Metastasis in Lymph 399 Glands 106. Recurrent Keloid 401 107. Subungual Exostosis 403 108. Avulsion of Tendon 410 109. Volkmann's Ischaemic Contracture 414 110. Ossification in Tendon of Ilio-psoas Muscle 417 111. Radiogram of Calcification and Ossification in Biceps and 418 Triceps 112. Ossification in Muscles of Trunk in generalised Ossifying 419 Myositis 113. Hydrops of Prepatellar Bursa 427 114. Section through Gouty Bursa 428 115. Tuberculous Disease of Sub-Deltoid Bursa 429 116. Great Enlargement of the Ischial Bursa 431 117. Gouty Disease of Bursae 432 118. Shaft of the Femur after Acute Osteomyelitis 444 119. Femur and Tibia showing results of Acute Osteomyelitis 445 120. Segment of Tibia resected for Brodie's Abscess 449 121. Radiogram of Brodie's Abscess in Lower End of Tibia 451 122. Sequestrum of Femur after Amputation 453 123. New Periosteal Bone on Surface of Femur from Amputation 454 Stump 124. Tuberculous Osteomyelitis of Os Magnum 456 125. Tuberculous Disease of Tibia 457 126. Diffuse Tuberculous Osteomyelitis of Right Tibia 458 127. Advanced Tuberculous Disease in Region of Ankle 459 128. Tuberculous Dactylitis 460 129. Shortening of Middle Finger of Adult, the result of 461 Tuberculous Dactylitis in Childhood 130. Syphilitic Disease of Skull 463 131. Syphilitic Hyperostosis and Sclerosis of Tibia 464 132. Sabre-blade Deformity of Tibia 467 133. Skeleton of Rickety Dwarf 470 134. Changes in the Skull resulting from Ostitis Deformans 474 135. Cadaver, illustrating the alterations in the Lower Limbs 475 resulting from Ostitis Deformans 136. Osteomyelitis Fibrosa affecting Femora 476 137. Radiogram of Upper End of Femur in Osteomyelitis Fibrosa 478 138. Radiogram of Right Knee showing Multiple Exostoses 482 139. Multiple Exostoses of Limbs 483 140. Multiple Cartilaginous Exostoses 484 141. Multiple Cartilaginous Exostoses 486 142. Multiple Chondromas of Phalanges and Metacarpals 488 143. Skiagram of Multiple Chondromas 489 144. Multiple Chondromas in Hand 490 145. Radiogram of Myeloma of Humerus 492 146. Periosteal Sarcoma of Femur 493 147. Periosteal Sarcoma of Humerus 493 148. Chondro-Sarcoma of Scapula 494 149. Central Sarcoma of Femur invading Knee Joint 495 150. Osseous Shell of Osteo-Sarcoma of Femur 495 151. Radiogram of Osteo-Sarcoma of Femur 496 152. Radiogram of Chondro-Sarcoma of Humerus 497 153. Epitheliomatus Ulcer of Leg invading Tibia 499 154. Osseous Ankylosis of Femur and Tibia 503 155. Osseous Ankylosis of Knee 504 156. Caseating focus in Upper End of Fibula 513 157. Arthritis Deformans of Elbow 525 158. Arthritis Deformans of Knee 526 159. Hypertrophied Fringes of Synovial Membrane of Knee 527 160. Arthritis Deformans of Hands 529 161. Arthritis Deformans of several Joints 530 162. Bones of Knee in Charcot's Disease 533 163. Charcot's Disease of Left Knee 534 164. Charcot's Disease of both Ankles: front view 535 165. Charcot's Disease of both Ankles: back view 536 166. Radiogram of Multiple Loose Bodies in Knee-joint 540 167. Loose Body from Knee-joint 541 168. Multiple partially ossified Chondromas of Synovial 542 Membrane from Shoulder-joint 169. Multiple Cartilaginous Loose Bodies from Knee-joint 543 MANUAL OF SURGERY CHAPTER I REPAIR Introduction--Process of repair--Healing by primary union--Granulation tissue--Cicatricial tissue--Modifications of process of repair--Repair in individual tissues--Transplantation or grafting of tissues--Conditions--Sources of grafts--Grafting of individual tissues--Methods. INTRODUCTION To prolong human life and to alleviate suffering are the ultimate objects of scientific medicine. The two great branches of the healing art--Medicine and Surgery--are so intimately related that it is impossible to draw a hard-and-fast line between them, but for convenience Surgery may be defined as "the art of treating lesions and malformations of the human body by manual operations, mediate and immediate." To apply his art intelligently and successfully, it is essential that the surgeon should be conversant not only with the normal anatomy and physiology of the body and with the various pathological conditions to which it is liable, but also with the nature of the process by which repair of injured or diseased tissues is effected. Without this knowledge he is unable to recognise such deviations from the normal as result from mal-development, injury, or disease, or rationally to direct his efforts towards the correction or removal of these. PROCESS OF REPAIR The process of repair in living tissue depends upon an inherent power possessed by vital cells of reacting to the irritation caused by injury or disease. The cells of the damaged tissues, under the influence of this irritation, undergo certain proliferative changes, which are designed to restore the normal structure and configuration of the part. The process by which this restoration is effected is essentially the same in all tissues, but the extent to which different tissues can carry the recuperative process varies. Simple structures, such as skin, cartilage, bone, periosteum, and tendon, for example, have a high power of regeneration, and in them the reparative process may result in almost perfect restitution to the normal. More complex structures, on the other hand, such as secreting glands, muscle, and the tissues of the central nervous system, are but imperfectly restored, simple cicatricial connective tissue taking the place of what has been lost or destroyed. Any given tissue can be replaced only by tissue of a similar kind, and in a damaged part each element takes its share in the reparative process by producing new material which approximates more or less closely to the normal according to the recuperative capacity of the particular tissue. The normal process of repair may be interfered with by various extraneous agencies, the most important of which are infection by disease-producing micro-organisms, the presence of foreign substances, undue movement of the affected part, and improper applications and dressings. The effect of these agencies is to delay repair or to prevent the individual tissues carrying the process to the furthest degree of which they are capable. In the management of wounds and other diseased conditions the main object of the surgeon is to promote the natural reparative process by preventing or eliminating any factor by which it may be disturbed. #Healing by Primary Union.#--The most favourable conditions for the progress of the reparative process are to be found in a clean-cut wound of the integument, which is uncomplicated by loss of tissue, by the presence of foreign substances, or by infection with disease-producing micro-organisms, and its edges are in contact. Such a wound in virtue of the absence of infection is said to be _aseptic_, and under these conditions healing takes place by what is called "primary union"--the "healing by first intention" of the older writers. #Granulation Tissue.#--The essential and invariable medium of repair in all structures is an elementary form of new tissue known as _granulation tissue_, which is produced in the damaged area in response to the irritation caused by injury or disease. The vital reaction induced by such irritation results in dilatation of the vessels of the part, emigration of leucocytes, transudation of lymph, and certain proliferative changes in the fixed tissue cells. These changes are common to the processes of inflammation and repair; no hard-and-fast line can be drawn between these processes, and the two may go on together. It is, however, only when the proliferative changes have come to predominate that the reparative process is effectively established by the production of healthy granulation tissue. _Formation of Granulation Tissue._--When a wound is made in the integument under aseptic conditions, the passage of the knife through the tissues is immediately followed by an oozing of blood, which soon coagulates on the cut surfaces. In each of the divided vessels a clot forms, and extends as far as the nearest collateral branch; and on the surface of the wound there is a microscopic layer of bruised and devitalised tissue. If the wound is closed, the narrow space between its edges is occupied by blood-clot, which consists of red and white corpuscles mixed with a quantity of fibrin, and this forms a temporary uniting medium between the divided surfaces. During the first twelve hours, the minute vessels in the vicinity of the wound dilate, and from them lymph exudes and leucocytes migrate into the tissues. In from twenty-four to thirty-six hours, the capillaries of the part adjacent to the wound begin to throw out minute buds and fine processes, which bridge the gap and form a firmer, but still temporary, connection between the two sides. Each bud begins in the wall of the capillary as a small accumulation of granular protoplasm, which gradually elongates into a filament containing a nucleus. This filament either joins with a neighbouring capillary or with a similar filament, and in time these become hollow and are filled with blood from the vessels that gave them origin. In this way a series of young _capillary loops_ is formed. The spaces between these loops are filled by cells of various kinds, the most important being the _fibroblasts_, which are destined to form cicatricial fibrous tissue. These fibroblasts are large irregular nucleated cells derived mainly from the proliferation of the fixed connective-tissue cells of the part, and to a less extent from the lymphocytes and other mononuclear cells which have migrated from the vessels. Among the fibroblasts, larger multi-nucleated cells--_giant cells_--are sometimes found, particularly when resistant substances, such as silk ligatures or fragments of bone, are embedded in the tissues, and their function seems to be to soften such substances preliminary to their being removed by the phagocytes. Numerous _polymorpho-nuclear leucocytes_, which have wandered from the vessels, are also present in the spaces. These act as phagocytes, their function being to remove the red corpuscles and fibrin of the original clot, and this performed, they either pass back into the circulation in virtue of their amoeboid movement, or are themselves eaten up by the growing fibroblasts. Beyond this phagocytic action, they do not appear to play any direct part in the reparative process. These young capillary loops, with their supporting cells and fluids, constitute granulation tissue, which is usually fully formed in from three to five days, after which it begins to be replaced by cicatricial or scar tissue. _Formation of Cicatricial Tissue._--The transformation of this temporary granulation tissue into scar tissue is effected by the fibroblasts, which become elongated and spindle-shaped, and produce in and around them a fine fibrillated material which gradually increases in quantity till it replaces the cell protoplasm. In this way white fibrous tissue is formed, the cells of which are arranged in parallel lines and eventually become grouped in bundles, constituting fully formed white fibrous tissue. In its growth it gradually obliterates the capillaries, until at the end of two, three, or four weeks both vessels and cells have almost entirely disappeared, and the original wound is occupied by cicatricial tissue. In course of time this tissue becomes consolidated, and the cicatrix undergoes a certain amount of contraction--_cicatricial contraction_. _Healing of Epidermis._--While these changes are taking place in the deeper parts of the wound, the surface is being covered over by _epidermis_ growing in from the margins. Within twelve hours the cells of the rete Malpighii close to the cut edge begin to sprout on to the surface of the wound, and by their proliferation gradually cover the granulations with a thin pink pellicle. As the epithelium increases in thickness it assumes a bluish hue and eventually the cells become cornified and the epithelium assumes a greyish-white colour. _Clinical Aspects._--So long as the process of repair is not complicated by infection with micro-organisms, there is no interference with the general health of the patient. The temperature remains normal; the circulatory, gastro-intestinal, nervous, and other functions are undisturbed; locally, the part is cool, of natural colour and free from pain. #Modifications of the Process of Repair.#--The process of repair by primary union, above described, is to be looked upon as the type of all reparative processes, such modifications as are met with depending merely upon incidental differences in the conditions present, such as loss of tissue, infection by micro-organisms, etc. _Repair after Loss or Destruction of Tissue._--When the edges of a wound cannot be approximated either because tissue has been lost, for example in excising a tumour or because a drainage tube or gauze packing has been necessary, a greater amount of granulation tissue is required to fill the gap, but the process is essentially the same as in the ideal method of repair. The raw surface is first covered by a layer of coagulated blood and fibrin. An extensive new formation of capillary loops and fibroblasts takes place towards the free surface, and goes on until the gap is filled by a fine velvet-like mass of granulation tissue. This granulation tissue is gradually replaced by young cicatricial tissue, and the surface is covered by the ingrowth of epithelium from the edges. This modification of the reparative process can be best studied clinically in a recent wound which has been packed with gauze. When the plug is introduced, the walls of the cavity consist of raw tissue with numerous oozing blood vessels. On removing the packing on the fifth or sixth day, the surface is found to be covered with minute, red, papillary granulations, which are beginning to fill up the cavity. At the edges the epithelium has proliferated and is covering over the newly formed granulation tissue. As lymph and leucocytes escape from the exposed surface there is a certain amount of serous or sero-purulent discharge. On examining the wound at intervals of a few days, it is found that the granulation tissue gradually increases in amount till the gap is completely filled up, and that coincidently the epithelium spreads in and covers over its surface. In course of time the epithelium thickens, and as the granulation tissue is slowly replaced by young cicatricial tissue, which has a peculiar tendency to contract and so to obliterate the blood vessels in it, the scar that is left becomes smooth, pale, and depressed. This method of healing is sometimes spoken of as "healing by granulation"--although, as we have seen, it is by granulation that all repair takes place. _Healing by Union of two Granulating Surfaces._--In gaping wounds union is sometimes obtained by bringing the two surfaces into apposition after each has become covered with healthy granulations. The exudate on the surfaces causes them to adhere, capillary loops pass from one to the other, and their final fusion takes place by the further development of granulation and cicatricial tissue. _Reunion of Parts entirely Separated from the Body._--Small portions of tissue, such as the end of a finger, the tip of the nose or a portion of the external ear, accidentally separated from the body, if accurately replaced and fixed in position, occasionally adhere by primary union. In the course of operations also, portions of skin, fascia, or bone, or even a complete joint may be transplanted, and unite by primary union. _Healing under a Scab._--When a small superficial wound is exposed to the air, the blood and serum exuded on its surface may dry and form a hard crust or _scab_, which serves to protect the surface from external irritation in the same way as would a dry pad of sterilised gauze. Under this scab the formation of granulation tissue, its transformation into cicatricial tissue, and the growth of epithelium on the surface, go on until in the course of time the crust separates, leaving a scar. _Healing by Blood-clot._--In subcutaneous wounds, for example tenotomy, in amputation wounds, and in wounds made in excising tumours or in operating upon bones, the space left between the divided tissues becomes filled with blood-clot, which acts as a temporary scaffolding in which granulation tissue is built up. Capillary loops grow into the coagulum, and migrated leucocytes from the adjacent blood vessels destroy the red corpuscles, and are in turn disposed of by the developing fibroblasts, which by their growth and proliferation fill up the gap with young connective tissue. It will be evident that this process only differs from healing by primary union in the _amount_ of blood-clot that is present. _Presence of a Foreign Body._--When an aseptic foreign body is present in the tissues, _e.g._ a piece of unabsorbable chromicised catgut, the healing process may be modified. After primary union has taken place the scar may broaden, become raised above the surface, and assume a bluish-brown colour; the epidermis gradually thins and gives way, revealing the softened portion of catgut, which can be pulled out in pieces, after which the wound rapidly heals and resumes a normal appearance. REPAIR IN INDIVIDUAL TISSUES _Skin and Connective Tissue._--The mode of regeneration of these tissues under aseptic conditions has already been described as the type of ideal repair. In highly vascular parts, such as the face, the reparative process goes on with great rapidity, and even extensive wounds may be firmly united in from three to five days. Where the anastomosis is less free the process is more prolonged. The more highly organised elements of the skin, such as the hair follicles, the sweat and sebaceous glands, are imperfectly reproduced; hence the scar remains smooth, dry, and hairless. _Epithelium._--Epithelium is only reproduced from pre-existing epithelium, and, as a rule, from one of a similar type, although metaplastic transformation of cells of one kind of epithelium into another kind can take place. Thus a granulating surface may be covered entirely by the ingrowing of the cutaneous epithelium from the margins; or islets, originating in surviving cells of sebaceous glands or sweat glands, or of hair follicles, may spring up in the centre of the raw area. Such islets may also be due to the accidental transference of loose epithelial cells from the edges. Even the fluid from a blister, in virtue of the isolated cells of the rete Malpighii which it contains, is capable of starting epithelial growth on a granulating surface. Hairs and nails may be completely regenerated if a sufficient amount of the hair follicles or of the nail matrix has escaped destruction. The epithelium of a mucous membrane is regenerated in the same way as that on a cutaneous surface. Epithelial cells have the power of living for some time after being separated from their normal surroundings, and of growing again when once more placed in favourable circumstances. On this fact the practice of skin grafting is based (p. 11). _Cartilage._--When an articular cartilage is divided by incision or by being implicated in a fracture involving the articular end of a bone, it is repaired by ordinary cicatricial fibrous tissue derived from the proliferating cells of the perichondrium. Cartilage being a non-vascular tissue, the reparative process goes on slowly, and it may be many weeks before it is complete. It is possible for a metaplastic transformation of connective-tissue cells into cartilage cells to take place, the characteristic hyaline matrix being secreted by the new cells. This is sometimes observed as an intermediary stage in the healing of fractures, especially in young bones. It may also take place in the regeneration of lost portions of cartilage, provided the new tissue is so situated as to constitute part of a joint and to be subjected to pressure by an opposing cartilaginous surface. This is illustrated by what takes place after excision of joints where it is desired to restore the function of the articulation. By carrying out movements between the constituent parts, the fibrous tissue covering the ends of the bones becomes moulded into shape, its cells take on the characters of cartilage cells, and, forming a matrix, so develop a new cartilage. Conversely, it is observed that when articular cartilage is no longer subjected to pressure by an opposing cartilage, it tends to be transformed into fibrous tissue, as may be seen in deformities attended with displacement of articular surfaces, such as hallux valgus and club-foot. After fractures of costal cartilage or of the cartilages of the larynx the cicatricial tissue may be ultimately replaced by bone. _Tendons._--When a tendon is divided, for example by subcutaneous tenotomy, the end nearer the muscle fibres is drawn away from the other, leaving a gap which is speedily filled by blood-clot. In the course of a few days this clot becomes permeated by granulation tissue, the fibroblasts of which are derived from the sheath of the tendon, the surrounding connective tissue, and probably also from the divided ends of the tendon itself. These fibroblasts ultimately develop into typical tendon cells, and the fibres which they form constitute the new tendon fibres. Under aseptic conditions repair is complete in from two to three weeks. In the course of the reparative process the tendon and its sheath may become adherent, which leads to impaired movement and stiffness. If the ends of an accidentally divided tendon are at once brought into accurate apposition and secured by sutures, they unite directly with a minimum amount of scar tissue, and function is perfectly restored. _Muscle._--Unstriped muscle does not seem to be capable of being regenerated to any but a moderate degree. If the ends of a divided striped muscle are at once brought into apposition by stitches, primary union takes place with a minimum of intervening fibrous tissue. The nuclei of the muscle fibres in close proximity to this young cicatricial tissue proliferate, and a few new muscle fibres may be developed, but any gross loss of muscular tissue is replaced by a fibrous cicatrix. It would appear that portions of muscle transplanted from animals to fill up gaps in human muscle are similarly replaced by fibrous tissue. When a muscle is paralysed from loss of its nerve supply and undergoes complete degeneration, it is not capable of being regenerated, even should the integrity of the nerve be restored, and so its function is permanently lost. _Secretory Glands._--The regeneration of secretory glands is usually incomplete, cicatricial tissue taking the place of the glandular substance which has been destroyed. In wounds of the liver, for example, the gap is filled by fibrous tissue, but towards the periphery of the wound the liver cells proliferate and a certain amount of regeneration takes place. In the kidney also, repair mainly takes place by cicatricial tissue, and although a few collecting tubules may be reformed, no regeneration of secreting tissue takes place. After the operation of decapsulation of the kidney a new capsule is formed, and during the process young blood vessels permeate the superficial parts of the kidney and temporarily increase its blood supply, but in the consolidation of the new fibrous tissue these vessels are ultimately obliterated. This does not prove that the operation is useless, as the temporary improvement of the circulation in the kidney may serve to tide the patient over a critical period of renal insufficiency. _Stomach and Intestine._--Provided the peritoneal surfaces are accurately apposed, wounds of the stomach and intestine heal with great rapidity. Within a few hours the peritoneal surfaces are glued together by a thin layer of fibrin and leucocytes, which is speedily organised and replaced by fibrous tissue. Fibrous tissue takes the place of the muscular elements, which are not regenerated. The mucous lining is restored by ingrowth from the margins, and there is evidence that some of the secreting glands may be reproduced. Hollow viscera, like the oesophagus and urinary bladder, in so far as they are not covered by peritoneum, heal less rapidly. _Nerve Tissues._--There is no trustworthy evidence that regeneration of the tissues of the brain or spinal cord in man ever takes place. Any loss of substance is replaced by cicatricial tissue. The repair of _Bone_, _Blood Vessels_, and _Peripheral Nerves_ is more conveniently considered in the chapters dealing with these structures. #Rate of Healing.#--While the rate at which wounds heal is remarkably constant there are certain factors that influence it in one direction or the other. Healing is more rapid when the edges are in contact, when there is a minimum amount of blood-clot between them, when the patient is in normal health and the vitality of the tissues has not been impaired. Wounds heal slightly more quickly in the young than in the old, although the difference is so small that it can only be demonstrated by the most careful observations. Certain tissues take longer to heal than others: for example, a fracture of one of the larger long bones takes about six weeks to unite, and divided nerve trunks take much longer--about a year. Wounds of certain parts of the body heal more quickly than others: those of the scalp, face, and neck, for example, heal more quickly than those over the buttock or sacrum, probably because of their greater vascularity. The extent of the wound influences the rate of healing; it is only natural that a long and deep wound should take longer to heal than a short and superficial one, because there is so much more work to be done in the conversion of blood-clot into granulation tissue, and this again into scar tissue that will be strong enough to stand the strain on the edges of the wound. THE TRANSPLANTATION OR GRAFTING OF TISSUES Conditions are not infrequently met with in which healing is promoted and restoration of function made possible by the transference of a portion of tissue from one part of the body to another; the tissue transferred is known as the _graft_ or the _transplant_. The simplest example of grafting is the transplantation of skin. In order that the graft may survive and have a favourable chance of "taking," as it is called, the transplanted tissue must retain its vitality until it has formed an organic connection with the tissue in which it is placed, so that it may derive the necessary nourishment from its new bed. When these conditions are fulfilled the tissues of the graft continue to proliferate, producing new tissue elements to replace those that are lost and making it possible for the graft to become incorporated with the tissue with which it is in contact. Dead tissue, on the other hand, can do neither of these things; it is only capable of acting as a model, or, at the most, as a scaffolding for such mobile tissue elements as may be derived from, the parent tissue with which the graft is in contact: a portion of sterilised marine sponge, for example, may be observed to become permeated with granulation tissue when it is embedded in the tissues. A successful graft of living tissue is not only capable of regeneration, but it acquires a system of lymph and blood vessels, so that in time it bleeds when cut into, and is permeated by new nerve fibres spreading in from the periphery towards the centre. It is instructive to associate the period of survival of the different tissues of the body after death, with their capacity of being used for grafting purposes; the higher tissues such as those of the central nervous system and highly specialised glandular tissues like those of the kidney lose their vitality quickly after death and are therefore useless for grafting; connective tissues, on the other hand, such as fat, cartilage, and bone retain their vitality for several hours after death, so that when they are transplanted, they readily "take" and do all that is required of them: the same is true of the skin and its appendages. _Sources of Grafts._--It is convenient to differentiate between _autoplastic_ grafts, that is those derived from the same individual; _homoplastic_ grafts, derived from another animal of the same species; and _heteroplastic_ grafts, derived from an animal of another species. Other conditions being equal, the prospects of success are greatest with autoplastic grafts, and these are therefore preferred whenever possible. There are certain details making for success that merit attention: the graft must not be roughly handled or allowed to dry, or be subjected to chemical irritation; it must be brought into accurate contact with the new soil, no blood-clot intervening between the two, no movement of the one upon the other should be possible and all infection must be excluded; it will be observed that these are exactly the same conditions that permit of the primary healing of wounds, with which of course the healing of grafts is exactly comparable. _Preservation of Tissues for Grafting._--It was at one time believed that tissues might be taken from the operating theatre and kept in cold storage until they were required. It is now agreed that tissues which have been separated from the body for some time inevitably lose their vitality, become incapable of regeneration, and are therefore unsuited for grafting purposes. If it is intended to preserve a portion of tissue for future grafting, it should be embedded in the subcutaneous tissue of the abdominal wall until it is wanted; this has been carried out with portions of costal cartilage and of bone. INDIVIDUAL TISSUES AS GRAFTS #The Blood# lends itself in an ideal manner to transplantation, or, as it has long been called, _transfusion_. Being always a homoplastic transfer, the new blood is not always tolerated by the old, in which case biochemical changes occur, resulting in haemolysis, which corresponds to the disintegration of other unsuccessful homoplastic grafts. (See article on Transfusion, _Op. Surg._, p. 37.) #The Skin.#--The skin was the first tissue to be used for grafting purposes, and it is still employed with greater frequency than any other, as lesions causing defects of skin are extremely common and without the aid of grafts are tedious in healing. Skin grafts may be applied to a raw surface or to one that is covered with granulations. _Skin grafting of raw surfaces_ is commonly indicated after operations for malignant disease in which considerable areas of skin must be sacrificed, and after accidents, such as avulsion of the scalp by machinery. _Skin grafting of granulating surfaces_ is chiefly employed to promote healing in the large defects of skin caused by severe burns; the grafting is carried out when the surface is covered by a uniform layer of healthy granulations and before the inevitable contraction of scar tissue makes itself manifest. Before applying the grafts it is usual to scrape away the granulations until the young fibrous tissue underneath is exposed, but, if the granulations are healthy and can be rendered aseptic, the grafts may be placed on them directly. If it is decided to scrape away the granulations, the oozing must be arrested by pressure with a pad of gauze, a sheet of dental rubber or green protective is placed next the raw surface to prevent the gauze adhering and starting the bleeding afresh when it is removed. #Methods of Skin-Grafting.#--Two methods are employed: one in which the epidermis is mainly or exclusively employed--epidermis or epithelial grafting; the other, in which the graft consists of the whole thickness of the true skin--cutis-grafting. _Epidermis or Epithelial Grafting._--The method introduced by the late Professor Thiersch of Leipsic is that almost universally practised. It consists in transplanting strips of epidermis shaved from the surface of the skin, the razor passing through the tips of the papillae, which appear as tiny red points yielding a moderate ooze of blood. The strips are obtained from the front and lateral aspects of the thigh or upper arm, the skin in those regions being pliable and comparatively free from hairs. They are cut with a sharp hollow-ground razor or with Thiersch's grafting knife, the blade of which is rinsed in alcohol and kept moistened with warm saline solution. The cutting is made easier if the skin is well stretched and kept flat and perfectly steady, the operator's left hand exerting traction on the skin behind, the hands of the assistant on the skin in front, one above and the other below the seat of operation. To ensure uniform strips being cut, the razor is kept parallel with the surface and used with a short, rapid, sawing movement, so that, with a little practice, grafts six or eight inches long by one or two inches broad can readily be cut. The patient is given a general anaesthetic, or regional anaesthesia is obtained by injections of a solution of one per cent. novocain into the line of the lateral and middle cutaneous nerves; the disinfection of the skin is carried out on the usual lines, any chemical agent being finally got rid of, however, by means of alcohol followed by saline solution. The strips of epidermis wrinkle up on the knife and are directly transferred to the surface, for which they should be made to form a complete carpet, slightly overlapping the edges of the area and of one another; some blunt instrument is used to straighten out the strips, which are then subjected to firm pressure with a pad of gauze to express blood and air-bells and to ensure accurate contact, for this must be as close as that between a postage stamp and the paper to which it is affixed. As a dressing for the grafted area and of that also from which the grafts have been taken, gauze soaked in _liquid paraffin_--the patent variety known as _ambrine_ is excellent--appears to be the best; the gauze should be moistened every other day or so with fresh paraffin, so that, at the end of a week, when the grafts should have united, the gauze can be removed without risk of detaching them. _Dental wax_ is another useful type of dressing; as is also _picric acid_ solution. Over the gauze, there is applied a thick layer of cotton wool, and the whole dressing is kept in place by a firmly applied bandage, and in the case of the limbs some form of splint should be added to prevent movement. A dressing may be dispensed with altogether, the grafts being protected by a wire cage such as is used after vaccination, but they tend to dry up and come to resemble a scab. When the grafts have healed, it is well to protect them from injury and to prevent them drying up and cracking by the liberal application of lanoline or vaseline. The new skin is at first insensitive and is fixed to the underlying connective tissue or bone, but in course of time (from six weeks onwards) sensation returns and the formation of elastic tissue beneath renders the skin pliant and movable so that it can be pinched up between the finger and thumb. _Reverdin's_ method consists in planting out pieces of skin not bigger than a pin-head over a granulating surface. It is seldom employed. _Grafts of the Cutis Vera._--Grafts consisting of the entire thickness of the true skin were specially advocated by Wolff and are often associated with his name. They should be cut oval or spindle-shaped, to facilitate the approximation of the edges of the resulting wound. The graft should be cut to the exact size of the surface it is to cover; Gillies believes that tension of the graft favours its taking. These grafts may be placed either on a fresh raw surface or on healthy granulations. It is sometimes an advantage to stitch them in position, especially on the face. The dressing and the after-treatment are the same as in epidermis grafting. There is a degree of uncertainty about the graft retaining its vitality long enough to permit of its deriving the necessary nourishment from its new surroundings; in a certain number of cases the flap dies and is thrown off as a slough--moist or dry according to the presence or absence of septic infection. The technique for cutis-grafting must be without a flaw, and the asepsis absolute; there must not only be a complete absence of movement, but there must be no traction on the flap that will endanger its blood supply. Owing to the uncertainty in the results of cutis-grafting the _two-stage_ or _indirect method_ has been introduced, and its almost uniform success has led to its sphere of application being widely extended. The flap is raised as in the direct method but is left attached at one of its margins for a period ranging from 14 to 21 days until its blood supply from its new bed is assured; the detachment is then made complete. The blood supply of the proposed flap may influence its selection and the way in which it is fashioned; for example, a flap cut from the side of the head to fill a defect in the cheek, having in its margin of attachment or pedicle the superficial temporal artery, is more likely to take than a flap cut with its base above. Another modification is to raise the flap but leave it connected at both ends like the piers of a bridge; this method is well suited to defects of skin on the dorsum of the fingers, hand and forearm, the bridge of skin is raised from the abdominal wall and the hand is passed beneath it and securely fixed in position; after an interval of 14 to 21 days, when the flap is assured of its blood supply, the piers of the bridge are divided (Fig. 1). With undermining it is usually easy to bring the edges of the gap in the abdominal wall together, even in children; the skin flap on the dorsum of the hand appears rather thick and prominent--almost like the pad of a boxing-glove--for some time, but the restoration of function in the capacity to flex the fingers is gratifying in the extreme. [Illustration: FIG. 1.--Ulcer of back of Hand covered by flap of skin raised from anterior abdominal wall. The lateral edges of the flap are divided after the graft has adhered.] The indirect element of this method of skin-grafting may be carried still further by transferring the flap of skin first to one part of the body and then, after it has taken, transferring it to a third part. Gillies has especially developed this method in the remedying of deformities of the face caused by gunshot wounds and by petrol burns in air-men. A rectangular flap of skin is marked out in the neck and chest, the lateral margins of the flap are raised sufficiently to enable them to be brought together so as to form a tube of skin: after the circulation has been restored, the lower end of the tube is detached and is brought up to the lip or cheek, or eyelid, where it is wanted; when this end has derived its new blood supply, the other end is detached from the neck and brought up to where it is wanted. In this way, skin from the chest may be brought up to form a new forehead and eyelids. Grafts of _mucous membrane_ are used to cover defects in the lip, cheek, and conjunctiva. The technique is similar to that employed in skin-grafting; the sources of mucous membrane are limited and the element of septic infection cannot always be excluded. _Fat._--Adipose tissue has a low vitality, but it is easily retained and it readily lends itself to transplantation. Portions of fat are often obtainable at operations--from the omentum, for example, otherwise the subcutaneous fat of the buttock is the most accessible; it may be employed to fill up cavities of all kinds in order to obtain more rapid and sounder healing and also to remedy deformity, as in filling up a depression in the cheek or forehead. It is ultimately converted into ordinary connective tissue _pari passu_ with the absorption of the fat. The _fascia lata of the thigh_ is widely and successfully used as a graft to fill defects in the dura mater, and interposed between the bones of a joint--if the articular cartilage has been destroyed--to prevent the occurrence of ankylosis. The _peritoneum_ of hydrocele and hernial sacs and of the omentum readily lends itself to transplantation. _Cartilage and bone_, next to skin, are the tissues most frequently employed for grafting purposes; their sphere of action is so extensive and includes so much of technical detail in their employment, that they will be considered later with the surgery of the bones and joints and with the methods of re-forming the nose. _Tendons and blood vessels_ readily lend themselves to transplantation and will also be referred to later. _Muscle and nerve_, on the other hand, do not retain their vitality when severed from their surroundings and do not functionate as grafts except for their connective-tissue elements, which it goes without saying are more readily obtainable from other sources. Portions of the _ovary_ and of the _thyreoid_ have been successfully transplanted into the subcutaneous cellular tissue of the abdominal wall by Tuffier and others. In these new surroundings, the ovary or thyreoid is vascularised and has been shown to functionate, but there is not sufficient regeneration of the essential tissue elements to "carry on"; the secreting tissue is gradually replaced by connective tissue and the special function comes to an end. Even such temporary function may, however, tide a patient over a difficult period. CHAPTER II CONDITIONS WHICH INTERFERE WITH REPAIR SURGICAL BACTERIOLOGY Want of rest--Irritation--Unhealthy tissues--Pathogenic bacteria. SURGICAL BACTERIOLOGY--General characters of bacteria--Classification of bacteria--Conditions of bacterial life--Pathogenic powers of bacteria--Results of bacterial growth--Death of bacteria--Immunity--Antitoxic sera--Identification of bacteria--Pyogenic bacteria. In the management of wounds and other surgical conditions it is necessary to eliminate various extraneous influences which tend to delay or arrest the natural process of repair. Of these, one of the most important is undue movement of the affected part. "The first and great requisite for the restoration of injured parts is _rest_," said John Hunter; and physiological and mechanical rest as the chief of natural therapeutic agents was the theme of John Hilton's classical work--_Rest and Pain_. In this connection it must be understood that "rest" implies more than the mere state of physical repose: all physiological as well as mechanical function must be prevented as far as is possible. For instance, the constituent bones of a joint affected with tuberculosis must be controlled by splints or other appliances so that no movement can take place between them, and the limb may not be used for any purpose; physiological rest may be secured to an inflamed colon by making an artificial anus in the caecum; the activity of a diseased kidney may be diminished by regulating the quantity and quality of the fluids taken by the patient. Another source of interference with repair in wounds is _irritation_, either by mechanical agents such as rough, unsuitable dressings, bandages, or ill-fitting splints; or by chemical agents in the form of strong lotions or other applications. An _unhealthy or devitalised condition of the patient's tissues_ also hinders the reparative process. Bruised or lacerated skin heals less kindly than skin cut with a smooth, sharp instrument; and persistent venous congestion of a part, such as occurs, for example, in the leg when the veins are varicose, by preventing the access of healthy blood, tends to delay the healing of open wounds. The existence of grave constitutional disease, such as Bright's disease, diabetes, syphilis, scurvy, or alcoholism, also impedes healing. Infection by disease-producing micro-organisms or _pathogenic bacteria_ is, however, the most potent factor in disturbing the natural process of repair in wounds. SURGICAL BACTERIOLOGY The influence of micro-organisms in the causation of disease, and the role played by them in interfering with the natural process of repair, are so important that the science of applied bacteriology has now come to dominate every department of surgery, and it is from the standpoint of bacteriology that nearly all surgical questions have to be considered. The term _sepsis_ as now used in clinical surgery no longer retains its original meaning as synonymous with "putrefaction," but is employed to denote all conditions in which bacterial infection has taken place, and more particularly those in which pyogenic bacteria are present. In the same way the term _aseptic_ conveys the idea of freedom from all forms of bacteria, putrefactive or otherwise; and the term _antiseptic_ is used to denote a power of counteracting bacteria and their products. #General Characters of Bacteria.#--A _bacterium_ consists of a finely granular mass of protoplasm, enclosed in a thin gelatinous envelope. Many forms are motile--some in virtue of fine thread-like flagella, and others through contractility of the protoplasm. The great majority multiply by simple fission, each parent cell giving rise to two daughter cells, and this process goes on with extraordinary rapidity. Other varieties, particularly bacilli, are propagated by the formation of _spores_. A spore is a minute mass of protoplasm surrounded by a dense, tough membrane, developed in the interior of the parent cell. Spores are remarkable for their tenacity of life, and for the resistance they offer to the action of heat and chemical germicides. Bacteria are most conveniently classified according to their shape. Thus we recognise (1) those that are globular--_cocci_; (2) those that resemble a rod--_bacilli_; (3) the spiral or wavy forms--_spirilla_. _Cocci_ or _micrococci_ are minute round bodies, averaging about 1 u in diameter. The great majority are non-motile. They multiply by fission; and when they divide in such a way that the resulting cells remain in pairs, are called _diplococci_, of which the bacteria of gonorrhoea and pneumonia are examples (Fig. 5). When they divide irregularly, and form grape-like bunches, they are known as _staphylococci_, and to this variety the commonest pyogenic or pus-forming organisms belong (Fig. 2). When division takes place only in one axis, so that long chains are formed, the term _streptococcus_ is applied (Fig. 3). Streptococci are met with in erysipelas and various other inflammatory and suppurative processes of a spreading character. _Bacilli_ are rod-shaped bacteria, usually at least twice as long as they are broad (Fig. 4). Some multiply by fission, others by sporulation. Some forms are motile, others are non-motile. Tuberculosis, tetanus, anthrax, and many other surgical diseases are due to different forms of bacilli. _Spirilla_ are long, slender, thread-like cells, more or less spiral or wavy. Some move by a screw-like contraction of the protoplasm, some by flagellae. The spirochaete associated with syphilis (Fig. 36) is the most important member of this group. #Conditions of Bacterial Life.#--Bacteria require for their growth and development a suitable food-supply in the form of proteins, carbohydrates, and salts of calcium and potassium which they break up into simpler elements. An alkaline medium favours bacterial growth; and moisture is a necessary condition; spores, however, can survive the want of water for much longer periods than fully developed bacteria. The necessity for oxygen varies in different species. Those that require oxygen are known as _aerobic bacilli_ or _aerobes_; those that cannot live in the presence of oxygen are spoken of as _anaerobes_. The great majority of bacteria, however, while they prefer to have oxygen, are able to live without it, and are called _facultative anaerobes_. The most suitable temperature for bacterial life is from 95 o to 102 o F., roughly that of the human body. Extreme or prolonged cold paralyses but does not kill micro-organisms. Few, however, survive being raised to a temperature of 134 1/2 o F. Boiling for ten to twenty minutes will kill all bacteria, and the great majority of spores. Steam applied in an autoclave under a pressure of two atmospheres destroys even the most resistant spores in a few minutes. Direct sunlight, electric light, or even diffuse daylight, is inimical to the growth of bacteria, as are also Rontgen rays and radium emanations. #Pathogenic Properties of Bacteria.#--We are now only concerned with pathogenic bacteria--that is, bacteria capable of producing disease in the human subject. This capacity depends upon two sets of factors--(1) certain features peculiar to the invading bacteria, and (2) others peculiar to the host. Many bacteria have only the power of living upon dead matter, and are known as _saphrophytes_. Such as do nourish in living tissue are, by distinction, known as _parasites_. The power a given parasitic micro-organism has of multiplying in the body and giving rise to disease is spoken of as its _virulence_, and this varies not only with different species, but in the same species at different times and under varying circumstances. The actual number of organisms introduced is also an important factor in determining their pathogenic power. Healthy tissues can resist the invasion of a certain number of bacteria of a given species, but when that number is exceeded, the organisms get the upper hand and disease results. When the organisms gain access directly to the blood-stream, as a rule they produce their effects more certainly and with greater intensity than when they are introduced into the tissues. Further, the virulence of an organism is modified by the condition of the patient into whose tissues it is introduced. So long as a person is in good health, the tissues are able to resist the attacks of moderate numbers of most bacteria. Any lowering of the vitality of the individual, however, either locally or generally, at once renders him more susceptible to infection. Thus bruised or torn tissue is much more liable to infection with pus-producing organisms than tissues clean-cut with a knife; also, after certain diseases, the liability to infection by the organisms of diphtheria, pneumonia, or erysipelas is much increased. Even such slight depression of vitality as results from bodily fatigue, or exposure to cold and damp, may be sufficient to turn the scale in the battle between the tissues and the bacteria. Age is an important factor in regard to the action of certain bacteria. Young subjects are attacked by diphtheria, tuberculosis, acute osteomyelitis, and some other diseases with greater frequency and severity than those of more advanced years. In different races, localities, environment, and seasons, the pathogenic powers of certain organisms, such as those of erysipelas, diphtheria, and acute osteomyelitis, vary considerably. There is evidence that a _mixed infection_--that is, the introduction of more than one species of organism, for example, the tubercle bacillus and a pyogenic staphylococcus--increases the severity of the resulting disease. If one of the varieties gain the ascendancy, the poisons produced by the others so devitalise the tissue cells, and diminish their power of resistance, that the virulence of the most active organisms is increased. On the other hand, there is reason to believe that the products of certain organisms antagonise one another--for example, an attack of erysipelas may effect the cure of a patch of tuberculous lupus. Lastly, in patients suffering from chronic wasting diseases, bacteria may invade the internal organs by the blood-stream in enormous numbers and with great rapidity, during the period of extreme debility which shortly precedes death. The discovery of such collections of organisms on post-mortem examination may lead to erroneous conclusions being drawn as to the cause of death. #Results of Bacterial Growth.#--Some organisms, such as those of tetanus and erysipelas, and certain of the pyogenic bacteria, show little tendency to pass far beyond the point at which they gain an entrance to the body. Others, on the contrary--for example, the tubercle bacillus and the organism of acute osteomyelitis--although frequently remaining localised at the seat of inoculation, tend to pass to distant parts, lodging in the capillaries of joints, bones, kidney, or lungs, and there producing their deleterious effects. In the human subject, multiplication in the blood-stream does not occur to any great extent. In some general acute pyogenic infections, such as osteomyelitis, cellulitis, etc., pure cultures of staphylococci or of streptococci may be obtained from the blood. In pneumococcal and typhoid infections, also, the organisms may be found in the blood. It is by the vital changes they bring about in the parts where they settle that micro-organisms disturb the health of the patient. In deriving nourishment from the complex organic compounds in which they nourish, the organisms evolve, probably by means of a ferment, certain chemical products of unknown composition, but probably colloidal in nature, and known as _toxins_. When these poisons are absorbed into the general circulation they give rise to certain groups of symptoms--such as rise of temperature, associated circulatory and respiratory derangements, interference with the gastro-intestinal functions and also with those of the nervous system--which go to make up the condition known as blood-poisoning, toxaemia, or _bacterial intoxication_. In addition to this, certain bacteria produce toxins that give rise to definite and distinct groups of symptoms--such as the convulsions of tetanus, or the paralyses that follow diphtheria. _Death of Bacteria._--Under certain circumstances, it would appear that the accumulation of the toxic products of bacterial action tends to interfere with the continued life and growth of the organisms themselves, and in this way the natural cure of certain diseases is brought about. Outside the body, bacteria may be killed by starvation, by want of moisture, by being subjected to high temperature, or by the action of certain chemical agents of which carbolic acid, the perchloride and biniodide of mercury, and various chlorine preparations are the most powerful. #Immunity.#--Some persons are insusceptible to infection by certain diseases, from which they are said to enjoy a _natural immunity_. In many acute diseases one attack protects the patient, for a time at least, from a second attack--_acquired immunity_. _Phagocytosis._--In the production of immunity the leucocytes and certain other cells play an important part in virtue of the power they possess of ingesting bacteria and of destroying them by a process of intra-cellular digestion. To this process Metchnikoff gave the name of _phagocytosis_, and he recognised two forms of _phagocytes_: (1) the _microphages_, which are the polymorpho-nuclear leucocytes of the blood; and (2) the _macrophages_, which include the larger hyaline leucocytes, endothelial cells, and connective-tissue corpuscles. During the process of phagocytosis, the polymorpho-nuclear leucocytes in the circulating blood increase greatly in numbers (_leucocytosis_), as well as in their phagocytic action, and in the course of destroying the bacteria they produce certain ferments which enter the blood serum. These are known as _opsonins_ or _alexins_, and they act on the bacteria by a process comparable to narcotisation, and render them an easy prey for the phagocytes. _Artificial or Passive Immunity._--A form of immunity can be induced by the introduction of protective substances obtained from an animal which has been actively immunised. The process by which passive immunity is acquired depends upon the fact that as a result of the reaction between the specific virus of a particular disease (the _antigen_) and the tissues of the animal attacked, certain substances--_antibodies_--are produced, which when transferred to the body of a susceptible animal protect it against that disease. The most important of these antibodies are the _antitoxins_. From the study of the processes by which immunity is secured against the effects of bacterial action the serum and vaccine methods of treating certain infective diseases have been evolved. The _serum treatment_ is designed to furnish the patient with a sufficiency of antibodies to neutralise the infection. The anti-diphtheritic and the anti-tetanic act by neutralising the specific toxins of the disease--_antitoxic serums_; the anti-streptcoccic and the serum for anthrax act upon the bacteria--_anti-bacterial serums_. A _polyvalent_ serum, that is, one derived from an animal which has been immunised by numerous strains of the organism derived from various sources, is much more efficacious than when a single strain has been used. _Clinical Use of Serums._--Every precaution must be taken to prevent organismal contamination of the serum or of the apparatus by means of which it is injected. Syringes are so made that they can be sterilised by boiling. The best situations for injection are under the skin of the abdomen, the thorax, or the buttock, and the skin should be purified at the seat of puncture. If the bulk of the full dose is large, it should be divided and injected into different parts of the body, not more than 20 c.c. being injected at one place. The serum may be introduced directly into a vein, or into the spinal canal, _e.g._ anti-tetanic serum. The immunity produced by injections of antitoxic sera lasts only for a comparatively short time, seldom longer than a few weeks. _"Serum Disease" and Anaphylaxis._--It is to be borne in mind that some patients exhibit a supersensitiveness with regard to protective sera, an injection being followed in a few days by the appearance of an urticarial or erythematous rash, pain and swelling of the joints, and a variable degree of fever. These symptoms, to which the name _serum disease_ is applied, usually disappear in the course of a few days. The term _anaphylaxis_ is applied to an allied condition of supersensitiveness which appears to be induced by the injection of certain substances, including toxins and sera, that are capable of acting as antigens. When a second injection is given after an interval of some days, if anaphylaxis has been established by the first dose, the patient suddenly manifests toxic symptoms of the nature of profound shock which may even prove fatal. The conditions which render a person liable to develop anaphylaxis and the mechanism by which it is established are as yet imperfectly understood. _Vaccine Treatment._--The vaccine treatment elaborated by A. E. Wright consists in injecting, while the disease is still active, specially prepared dead cultures of the causative organisms, and is based on the fact that these "vaccines" render the bacteria in the tissues less able to resist the attacks of the phagocytes. The method is most successful when the vaccine is prepared from organisms isolated from the patient himself, _autogenous vaccine_, but when this is impracticable, or takes a considerable time, laboratory-prepared polyvalent _stock vaccines_ may be used. _Clinical Use of Vaccines._--Vaccines should not be given while a patient is in a negative phase, as a certain amount of the opsonin in the blood is used up in neutralising the substances injected, and this may reduce the opsonic index to such an extent that the vaccines themselves become dangerous. As a rule, the propriety of using a vaccine can be determined from the general condition of the patient. The initial dose should always be a small one, particularly if the disease is acute, and the subsequent dosage will be regulated by the effect produced. If marked constitutional disturbance with rise of temperature follows the use of a vaccine, it indicates a negative phase, and calls for a diminution in the next dose. If, on the other hand, the local as well as the general condition of the patient improves after the injection, it indicates a positive phase, and the original dose may be repeated or even increased. Vaccines are best introduced subcutaneously, a part being selected which is not liable to pressure, as there is sometimes considerable local reaction. Repeated doses may be necessary at intervals of a few days. The vaccine treatment has been successfully employed in various tuberculous lesions, in pyogenic infections such as acne, boils, sycosis, streptococcal, pneumococcal, and gonococcal conditions, in infections of the accessory air sinuses, and in other diseases caused by bacteria. PYOGENIC BACTERIA From the point of view of the surgeon the most important varieties of micro-organisms are those that cause inflammation and suppuration--the _pyogenic bacteria_. This group includes a great many species, and these are so widely distributed that they are to be met with under all conditions of everyday life. The nature of the inflammatory and suppurative processes will be considered in detail later; suffice it here to say that they are brought about by the action of one or other of the organisms that we have now to consider. It is found that the _staphylococci_, which cluster into groups, tend to produce localised lesions; while the chain-forms--_streptococci_--give rise to diffuse, spreading conditions. Many varieties of pyogenic bacteria have now been differentiated, the best known being the staphylococcus aureus, the streptococcus, and the bacillus coli communis. [Illustration: FIG. 2.--Staphylococcus aureus in Pus from case of Osteomyelitis. x 1000 diam. Gram's stain.] _Staphylococcus Aureus._--This is the commonest organism found in localised inflammatory and suppurative conditions. It varies greatly in its virulence, and is found in such widely different conditions as skin pustules, boils, carbuncles, and some acute inflammations of bone. As seen by the microscope it occurs in grape-like clusters, fission of the individual cells taking place irregularly (Fig. 2). When grown in artificial media, the colonies assume an orange-yellow colour--hence the name _aureus_. It is of high vitality and resists more prolonged exposure to high temperatures than most non-sporing bacteria. It is capable of lying latent in the tissues for long periods, for example, in the marrow of long bones, and of again becoming active and causing a fresh outbreak of suppuration. This organism is widely distributed: it is found on the skin, in the mouth, and in other situations in the body, and as it is present in the dust of the air and on all objects upon which dust has settled, it is a continual source of infection unless means are taken to exclude it from wounds. The _staphylococcus albus_ is much less common than the aureus, but has the same properties and characters, save that its growth on artificial media assumes a white colour. It is the common cause of stitch abscesses, the skin being its normal habitat. [Illustration: FIG. 3.--Streptococci in Pus from an acute abscess in subcutaneous tissue. x 1000 diam. Gram's stain.] _Streptococcus Pyogenes._--This organism also varies greatly in its virulence; in some instances--for example in erysipelas--it causes a sharp attack of acute spreading inflammation, which soon subsides without showing any tendency to end in suppuration; under other conditions it gives rise to a generalised infection which rapidly proves fatal. The streptococcus has less capacity of liquefying the tissues than the staphylococcus, so that pus formation takes place more slowly. At the same time its products are very potent in destroying the tissues in their vicinity, and so interfering with the exudation of leucocytes which would otherwise exercise their protective influence. Streptococci invade the lymph spaces, and are associated with acute spreading conditions such as phlegmonous or erysipelatous inflammations and suppurations, lymphangitis and suppuration in lymph glands, and inflammation of serous and synovial membranes, also with a form of pneumonia which is prone to follow on severe operations in the mouth and throat. Streptococci are also concerned in the production of spreading gangrene and pyaemia. Division takes place in one axis, so that chains of varying length are formed (Fig. 3). It is less easily cultivated by artificial media than the staphylococcus; it forms a whitish growth. [Illustration: FIG. 4.--Bacillus coli communis in Urine, from a case of Cystitis. x 1000 diam. Leishman's stain.] _Bacillus Coli Communis._--This organism, which is a normal inhabitant of the intestinal tract, shows a great tendency to invade any organ or tissue whose vitality is lowered. It is causatively associated with such conditions as peritonitis and peritoneal suppuration resulting from strangulated hernia, appendicitis, or perforation in any part of the alimentary canal. In cystitis, pyelitis, abscess of the kidney, suppuration in the bile-ducts or liver, and in many other abdominal conditions, it plays a most important part. The discharge from wounds infected by this organism has usually a foetid, or even a faecal odour, and often contains gases resulting from putrefaction. It is a small rod-shaped organism with short flagellae, which render it motile (Fig. 4). It closely resembles the typhoid bacillus, but is distinguished from it by its behaviour in artificial culture media. [Illustration: FIG. 5.--Fraenkel's Pneumococci in Pus from Empyema following Pneumonia. x 100 diam. Stained with Muir's capsule stain.] _Pneumo-bacteria._--Two forms of organism associated with pneumonia--_Fraenkel's pneumococcus_ (one of the diplococci) (Fig. 5) and _Friedlander's pneumo-bacillus_ (a short rod-shaped form)--are frequently met with in inflammations of the serous and synovial membranes, in suppuration in the liver, and in various other inflammatory and suppurative conditions. _Bacillus Typhosus._--This organism has been found in pure culture in suppurative conditions of bone, of cellular tissue, and of internal organs, especially during convalescence from typhoid fever. Like the staphylococcus, it is capable of lying latent in the tissues for long periods. _Other Pyogenic Bacteria._--It is not necessary to do more than name some of the other organisms that are known to be pyogenic, such as the bacillus pyocyaneus, which is found in green and blue pus, the micrococcus tetragenus, the gonococcus, actinomyces, the glanders bacillus, and the tubercle bacillus. Most of these will receive further mention in connection with the diseases to which they give rise. #Leucocytosis.#--Most bacterial diseases, as well as certain other pathological conditions, are associated with an increase in the number of leucocytes in the blood throughout the circulatory system. This condition of the blood, which is known as _leucocytosis_, is believed to be due to an excessive output and rapid formation of leucocytes by the bone marrow, and it probably has as its object the arrest and destruction of the invading organisms or toxins. To increase the resisting power of the system to pathogenic organisms, an artificial leucocytosis may be induced by subcutaneous injection of a solution of nucleinate of soda (16 minims of a 5 per cent. solution). The _normal_ number of leucocytes per cubic millimetre varies in different individuals, and in the same individual under different conditions, from 5000 to 10,000: 7500 is a normal average, and anything above 12,000 is considered abnormal. When leucocytosis is present, the number may range from 12,000 to 30,000 or even higher; 40,000 is looked upon as a high degree of leucocytosis. According to Ehrlich, the following may be taken as the standard proportion of the various forms of leucocytes in normal blood: polynuclear neutrophile leucocytes, 70 to 72 per cent.; lymphocytes, 22 to 25 per cent.; eosinophile cells, 2 to 4 per cent.; large mononuclear and transitional leucocytes, 2 to 4 per cent.; mast-cells, 0.5 to 2 per cent. In estimating the clinical importance of a leucocytosis, it is not sufficient merely to count the aggregate number of leucocytes present. A differential count must be made to determine which variety of cells is in excess. In the majority of surgical affections it is chiefly the granular polymorpho-nuclear neutrophile leucocytes that are in excess (_ordinary leucocytosis_). In some cases, and particularly in parasitic diseases such as trichiniasis and hydatid disease, the eosinophile leucocytes also show a proportionate increase (_eosinophilia_). The term _lymphocytosis_ is applied when there is an increase in the number of circulating lymphocytes, as occurs, for example, in lymphatic leucaemia, and in certain cases of syphilis. Leucocytosis is met with in nearly all acute infective diseases, and in acute pyogenic inflammatory affections, particularly in those attended with suppuration. In exceptionally acute septic conditions the extreme virulence of the toxins may prevent the leucocytes reacting, and leucocytosis may be absent. The absence of leucocytosis in a disease in which it is usually present is therefore to be looked upon as a grave omen, particularly when the general symptoms are severe. In some cases of malignant disease the number of leucocytes is increased to 15,000 or 20,000. A few hours after a severe haemorrhage also there is usually a leucocytosis of from 15,000 to 30,000, which lasts for three or four days (Lyon). In cases of haemorrhage the leucocytosis is increased by infusion of fluids into the circulation. After all operations there is at least a transient leucocytosis (_post-operative leucocytosis_) (F. I. Dawson). The leucocytosis begins soon after the infection manifests itself--for example, by shivering, rigor, or rise of temperature. The number of leucocytes rises somewhat rapidly, increases while the condition is progressing, and remains high during the febrile period, but there is no constant correspondence between the number of leucocytes and the height of the temperature. The arrest of the inflammation and its resolution are accompanied by a fall in the number of leucocytes, while the occurrence of suppuration is attended with a further increase in their number. In interpreting the "blood count," it is to be kept in mind that a _physiological leucocytosis_ occurs within three or four hours of taking a meal, especially one rich in proteins, from 1500 to 2000 being added to the normal number. In this _digestion leucocytosis_ the increase is chiefly in the polynuclear neutrophile leucocytes. Immediately before and after delivery, particularly in primiparae, there is usually a moderate degree of leucocytosis. If the labour is normal and the puerperium uncomplicated, the number of leucocytes regains the normal in about a week. Lactation has no appreciable effect on the number of leucocytes. In new-born infants the leucocyte count is abnormally high, ranging from 15,000 to 20,000. In children under one year of age, the normal average is from 10,000 to 20,000. _Absence of Leucocytosis--Leucopenia._--In certain infective diseases the number of leucocytes in the circulating blood is abnormally low--3000 or 4000--and this condition is known as _leucopenia_. It occurs in typhoid fever, especially in the later stages of the disease, in tuberculous lesions unaccompanied by suppuration, in malaria, and in most cases of uncomplicated influenza. The occurrence of leucocytosis in any of these conditions is to be looked upon as an indication that a mixed infection has taken place, and that some suppurative process is present. The absence of leucocytosis in some cases of virulent septic poisoning has already been referred to. It will be evident that too much reliance must not be placed upon a single observation, particularly in emergency cases. Whenever possible, a series of observations should be made, the blood being examined about four hours after meals, and about the same hour each day. The clinical significance of the blood count in individual diseases will be further referred to. _The Iodine or Glycogen Reaction._--The leucocyte count may be supplemented by staining films of the blood with a watery solution of iodine and potassium iodide. In all advancing purulent conditions, in septic poisonings, in pneumonia, and in cancerous growths associated with ulceration, a certain number of the polynuclear leucocytes are stained a brown or reddish-brown colour, due to the action of the iodine on some substance in the cells of the nature of glycogen. This reaction is absent in serous effusions, in unmixed tuberculous infections, in uncomplicated typhoid fever, and in the early stages of cancerous growths. CHAPTER III INFLAMMATION Definition--Nature of inflammation from surgical point of view--Sequence of changes in bacterial inflammation--Clinical aspects of inflammation--General principles of treatment--Chronic inflammation. Inflammation may be defined as the series of vital changes that occurs in the tissues in response to irritation. These changes represent the reaction of the tissue elements to the irritant, and constitute the attempt made by nature to arrest or to limit its injurious effects, and to repair the damage done by it. The phenomena which characterise the inflammatory reaction can be induced by any form of irritation--such, for example, as mechanical injury, the application of heat or of chemical substances, or the action of pathogenic bacteria and their toxins--and they are essentially similar in kind whatever the irritant may be. The extent to which the process may go, however, and its effects on the part implicated and on the system as a whole, vary with different irritants and with the intensity and duration of their action. A mechanical, a thermal, or a chemical irritant, acting alone, induces a degree of reaction directly proportionate to its physical properties, and so long as it does not completely destroy the vitality of the part involved, the changes in the tissues are chiefly directed towards repairing the damage done to the part, and the inflammatory reaction is not only compatible with the occurrence of ideal repair, but may be looked upon as an integral step in the reparative process. The irritation caused by infection with bacteria, on the other hand, is cumulative, as the organisms not only multiply in the tissues, but in addition produce chemical poisons (toxins) which aggravate the irritative effects. The resulting reaction is correspondingly progressive, and has as its primary object the expulsion of the irritant and the limitation of its action. If the natural protective effort is successful, the resulting tissue changes subserve the process of repair, but if the bacteria gain the upper hand in the struggle, the inflammatory reaction becomes more intense, certain of the tissue elements succumb, and the process for the time being is a destructive one. During the stage of bacterial inflammation, reparative processes are in abeyance, and it is only after the inflammation has been allayed, either by natural means or by the aid of the surgeon, that repair takes place. In applying the antiseptic principle to the treatment of wounds, our main object is to exclude or to eliminate the bacterial factor, and so to prevent the inflammatory reaction going beyond the stage in which it is protective, and just in proportion as we succeed in attaining this object, do we favour the occurrence of ideal repair. #Sequence of Changes in Bacterial Inflammation.#--As the form of inflammation with which we are most concerned is that due to the action of bacteria, in describing the process by which the protective influence of the inflammatory reaction is brought into play, we shall assume the presence of a bacterial irritant. The introduction of a colony of micro-organisms is quickly followed by an accumulation of wandering cells, and proliferation of connective-tissue cells in the tissues at the site of infection. The various cells are attracted to the bacteria by a peculiar chemical or biological power known as _chemotaxis_, which seems to result from variations in the surface tension of different varieties of cells, probably caused by some substance produced by the micro-organisms. Changes in the blood vessels then ensue, the arteries becoming dilated and the rate of the current in them being for a time increased--_active hyperaemia_. Soon, however, the rate of the blood flow becomes slower than normal, and in course of time the current may cease (_stasis_), and the blood in the vessels may even coagulate (_thrombosis_). Coincidently with these changes in the vessels, the leucocytes in the blood of the inflamed part rapidly increase in number, and they become viscous and adhere to the vessel wall, where they may accumulate in large numbers. In course of time the leucocytes pass through the vessel wall--_emigration of leucocytes_--and move towards the seat of infection, giving rise to a marked degree of _local leucocytosis_. Through the openings by which the leucocytes have escaped from the vessels, red corpuscles may be passively extruded--_diapedesis of red corpuscles_. These processes are accompanied by changes in the endothelium of the vessel walls, which result in an increased formation of lymph, which transudes into the meshes of the connective tissue giving rise to an _inflammatory oedema_, or, if the inflammation is on a free surface, forming an _inflammatory exudate_. The quantity and characters of this exudate vary in different parts of the body, and according to the nature, virulence, and location of the organisms causing the inflammation. Thus it may be _serous_, as in some forms of synovitis; _sero-fibrinous_, as in certain varieties of peritonitis, the fibrin tending to limit the spread of the inflammation by forming adhesions; _croupous_, when it coagulates on a free surface and forms a false membrane, as in diphtheria; _haemorrhagic_ when mixed with blood; or _purulent_, when suppuration has occurred. The protective effects of the inflammatory reaction depend for the most part upon the transudation of lymph and the emigration of leucocytes. The lymph contains the opsonins which act on the bacteria and render them less able to resist the attack of the phagocytes, as well as the various protective antibodies which neutralise the toxins. The polymorph leucocytes are the principal agents in the process of phagocytosis (p. 22), and together with the other forms of phagocytes they ingest and destroy the bacteria. If the attempt to repel the invading organisms is successful, the irritant effects are overcome, the inflammation is arrested, and _resolution_ is said to take place. Certain of the vascular and cellular changes are now utilised to restore the condition to the normal, and _repair_ ensues after the manner already described. In certain situations, notably in tendon sheaths, in the cavities of joints, and in the interior of serous cavities, for example the pleura and peritoneum, the restoration to the normal is not perfect, adhesions forming between the opposing surfaces. If, however, the reaction induced by the infection is insufficient to check the growth and spread of the organisms, or to inhibit their toxin production, local necrosis of tissue may take place, either in the form of suppuration or of gangrene, or the toxins absorbed into the circulation may produce blood-poisoning, which may even prove fatal. #Clinical Aspects of Inflammation.#--It must clearly be understood that inflammation is not to be looked upon as a disease in itself, but rather as an evidence of some infective process going on in the tissues in which it occurs, and of an effort on the part of these tissues to overcome the invading organisms and their products. The chief danger to the patient lies, not in the reactive changes that constitute the inflammatory process, but in the fact that he is liable to be poisoned by the toxins of the bacteria at work in the inflamed area. Since the days of Celsus (first century A.D.), heat, redness, swelling, and pain have been recognised as cardinal signs of inflammation, and to these may be added, interference with function in the inflamed part, and general constitutional disturbance. Variations in these signs and symptoms depend upon the acuteness of the condition, the nature of the causative organism and of the tissue attacked, the situation of the part in relation to the surface, and other factors. The _heat_ of the inflamed part is to be attributed to the increased quantity of blood present in it, and the more superficial the affected area the more readily is the local increase of temperature detected by the hand. This clinical point is best tested by placing the palm of the hand and fingers for a few seconds alternately over an uninflamed and an inflamed area, otherwise under similar conditions as to coverings and exposure. In this way even slight differences may be recognised. _Redness_, similarly, is due to the increased afflux of blood to the inflamed part. The shade of colour varies with the stage of the inflammation, being lighter and brighter in the early, hyperaemic stages, and darker and duskier when the blood flow is slowed or when stasis has occurred and the oxygenation of the blood is defective. In the thrombotic stage the part may assume a purplish hue. The _swelling_ is partly due to the increased amount of blood in the affected part and to the accumulation of leucocytes and proliferated tissue cells, but chiefly to the exudate in the connective tissue--_inflammatory oedema_. The more open the structure of the tissue of the part, the greater is the amount of swelling--witness the marked degree of oedema that occurs in such parts as the scrotum or the eyelids. _Pain_ is a symptom seldom absent in inflammation. _Tenderness_--that is, pain elicited on pressure--is one of the most valuable diagnostic signs we possess, and is often present before pain is experienced by the patient. That the area of tenderness corresponds to the area of inflammation is almost an axiom of surgery. Pain and tenderness are due to the irritation of nerve filaments of the part, rendered all the more sensitive by the abnormal conditions of their blood supply. In inflammatory conditions of internal organs, for example the abdominal viscera, the pain is frequently referred to other parts, usually to an area supplied by branches from the same segment of the cord as that supplying the inflamed part. For purposes of diagnosis, attention should be paid to the terms in which the patient describes his pain. For example, the pain caused by an inflammation of the skin is usually described as of a _burning_ or _itching_ character; that of inflammation in dense tissues like periosteum or bone, or in encapsuled organs, as _dull_, _boring_, or _aching_. When inflammation is passing on to suppuration the pain assumes a _throbbing_ character, and as the pus reaches the surface, or "points," as it is called, sharp, _darting_, or _lancinating_ pains are experienced. Inflammation involving a nerve-trunk may cause a _boring_ or a _tingling_ pain; while the implication of a serous membrane such as the pleura or peritoneum gives rise to a pain of a sharp, _stabbing_ character. _Interference with the function_ of the inflamed part is always present to a greater or less extent. #Constitutional Disturbances.#--Under the term constitutional disturbances are included the presence of fever or elevation of temperature; certain changes in the pulse rate and the respiration; gastro-intestinal and urinary disturbances; and derangements of the central nervous system. These are all due to the absorption of toxins into the general circulation. _Temperature._--A marked rise of temperature is one of the most constant and important concomitants of acute inflammatory conditions, and the temperature chart forms a fairly reliable index of the state of the patient. The toxins interfere with the nerve-centres in the medulla that regulate the balance between the production and the loss of body heat. Clinically the temperature is estimated by means of a self-registering thermometer placed, for from one to five minutes, in close contact with the skin in the axilla, or in the mouth. Sometimes the thermometer is inserted into the rectum, where, however, the temperature is normally 3/4 o F. higher than in the axilla. _In health_ the temperature of the body is maintained at a mean of about 98.4 o F. (37 o C.) by the heat-regulating mechanism. It varies from hour to hour even in health, reaching its maximum between four and eight in the evening, when it may rise to 99 o F., and is at its lowest between four and six in the morning, when it may be about 97 o F. The temperature is more easily disturbed in children than in adults, and may become markedly elevated (104 o or 105 o F.) from comparatively slight causes; in the aged it is less liable to change, so that a rise to 103 o or 104 o F. is to be looked upon as indicating a high state of fever. A sudden rise of temperature is usually associated with a feeling of chilliness down the back and in the limbs, which may be so marked that the patient shivers violently, while the skin becomes cold, pale, and shrivelled--_cutis anserina_. This is a nervous reaction due to a want of correspondence between the internal and the surface temperature of the body, and is known clinically as a _rigor_. When the temperature rises gradually the chill is usually slight and may be unobserved. Even during the cold stage, however, the internal temperature is already raised, and by the time the chill has passed off its maximum has been reached. The _pulse_ is always increased in frequency, and usually varies directly with the height of the temperature. _Respiration_ is more active during the progress of an inflammation; and bronchial catarrh is common apart from any antecedent respiratory disease. _Gastro-intestinal disturbances_ take the form of loss of appetite, vomiting, diminished secretion of the alimentary juices, and weakening of the peristalsis of the bowel, leading to thirst, dry, furred tongue, and constipation. Diarrhoea is sometimes present. The _urine_ is usually scanty, of high specific gravity, rich in nitrogenous substances, especially urea and uric acid, and in calcium salts, while sodium chloride is deficient. Albumin and hyaline casts may be present in cases of severe inflammation with high temperature. The significance of general _leucocytosis_ has already been referred to. #General Principles of Treatment.#--The capacity of the inflammatory reaction for dealing with bacterial infections being limited, it often becomes necessary for the surgeon to aid the natural defensive processes, as well as to counteract the local and general effects of the reaction, and to relieve symptoms. The ideal means of helping the tissues is by removing the focus of infection, and when this can be done, as for example in a carbuncle or an anthrax pustule, the infected area may be completely excised. When the focus is not sufficiently limited to admit of this, the infected tissue may be scraped away with the sharp spoon, or destroyed by caustics or by the actual cautery. If this is inadvisable, the organisms may be attacked by strong antiseptics, such as pure carbolic acid. Moist dressings favour the removal of bacteria by promoting the escape of the inflammatory exudate, in which they are washed out. #Artificial Hyperaemia.#--When such direct means as the above are impracticable, much can be done to aid the tissues in their struggle by improving the condition of the circulation in the inflamed area, so as to ensure that a plentiful supply of fresh arterial blood reaches it. The beneficial effects of _hot fomentations and poultices_ depend on their causing a dilatation of the vessels, and so inducing a hyperaemia in the affected area. It has been shown experimentally that repeated, short applications of moist heat (not exceeding 106 o F.) are more efficacious than continuous application. It is now believed that the so-called _counter-irritants_--mustard, iodine, cantharides, actual cautery--act in the same way; and the method of treating erysipelas by applying a strong solution of iodine around the affected area is based on the same principle. [Illustration: FIG. 6.--Passive Hyperaemia of Hand and Forearm induced by Bier's Bandage.] While these and similar methods have long been employed in the treatment of inflammatory conditions, it is only within comparatively recent years that their mode of action has been properly understood, and to August Bier belongs the credit of having put the treatment of inflammation on a scientific and rational basis. Recognising the "beneficent intention" of the inflammatory reaction, and the protective action of the leucocytosis which accompanies the hyperaemic stages of the process, Bier was led to study the effects of increasing the hyperaemia by artificial means. As a result of his observations, he has formulated a method of treatment which consists in inducing an artificial hyperaemia in the inflamed area, either by obstructing the venous return from the part (_passive hyperaemia_), or by stimulating the arterial flow through it (_active hyperaemia_). _Bier's Constricting Bandage._--To induce a _passive hyperaemia_ in a limb, an elastic bandage is applied some distance above the inflamed area sufficiently tightly to obstruct the venous return from the distal parts without arresting in any way the inflow of arterial blood (Fig. 6). If the constricting band is correctly applied, the parts beyond become swollen and oedematous, and assume a bluish-red hue, but they retain their normal temperature, the pulse is unchanged, and there is no pain. If the part becomes blue, cold, or painful, or if any existing pain is increased, the band has been applied too tightly. The hyperaemia is kept up from twenty to twenty-two hours out of the twenty-four, and in the intervals the limb is elevated to get rid of the oedema and to empty it of impure blood, and so make room for a fresh supply of healthy blood when the bandage is re-applied. As the inflammation subsides, the period during which the band is kept on each day is diminished; but the treatment should be continued for some days after all signs of inflammation have subsided. This method of treating acute inflammatory conditions necessitates close supervision until the correct degree of tightness of the band has been determined. [Illustration: FIG. 7.--Passive Hyperaemia of Finger induced by Klapp's Suction Bell.] _Klapp's Suction Bells._--In inflammatory conditions to which the constricting band cannot be applied, as for example an acute mastitis, a bubo in the groin, or a boil on the neck, the affected area may be rendered hyperaemic by an appropriately shaped glass bell applied over it and exhausted by means of a suction-pump, the rarefaction of the air in the bell determining a flow of blood into the tissues enclosed within it (Figs. 7 and 8). The edge of the bell is smeared with vaseline, and the suction applied for from five to ten minutes at a time, with a corresponding interval between the applications. Each sitting lasts for from half an hour to an hour, and the treatment may be carried out once or twice a day according to circumstances. This apparatus acts in the same way as the old-fashioned _dry cup_, and is more convenient and equally efficacious. [Illustration: FIG. 8.--Passive Hyperaemia induced by Klapp's Suction Bell for Inflammation of Inguinal Gland.] _Active hyperaemia_ is induced by the local application of heat, particularly by means of hot air. It has not proved so useful in acute inflammation as passive hyperaemia, but is of great value in hastening the absorption of inflammatory products and in overcoming adhesions and stiffness in tendons and joints. _General Treatment._--The patient should be kept at rest, preferably in bed, to diminish the general tissue waste; and the diet should be restricted to fluids, such as milk, beef-tea, meat juices or gruel, and these may be rendered more easily assimilable by artificial digestion if necessary. To counteract the general effect of toxins absorbed into the circulation, specific antitoxic sera are employed in certain forms of infection, such as diphtheria, streptococcal septicaemia, and tetanus. In other forms of infection, vaccines are employed to increase the opsonic power of the blood. When such means are not available, the circulating toxins may to some extent be diluted by giving plenty of bland fluids by the mouth or normal salt solution by the rectum. The elimination of the toxins is promoted by securing free action of the emunctories. A saline purge, such as half an ounce of sulphate of magnesium in a small quantity of water, ensures a free evacuation of the bowels. The kidneys are flushed by such diluent drinks as equal parts of milk and lime water, or milk with a dram of liquor calcis saccharatus added to each tumblerful. Barley-water and "Imperial drink," which consists of a dram and a half of cream of tartar added to a pint of boiling water and sweetened with sugar after cooling, are also useful and non-irritating diuretics. The skin may be stimulated by Dover's powder (10 grains) or liquor ammoniae acetatis in three-dram doses every four hours. Various drugs administered internally, such as quinine, salol, salicylate of iron, and others, have a reputation, more or less deserved, as internal antiseptics. Weakness of the heart, as indicated by the condition of the pulse, is treated by the use of such drugs as digitalis, strophanthus, or strychnin, according to circumstances. Gastro-intestinal disturbances are met by ordinary medical means. Vomiting, for example, can sometimes be checked by effervescing drinks, such as citrate of caffein, or by dilute hydrocyanic acid and bismuth. In severe cases, and especially when the vomited matter resembles coffee-grounds from admixture with altered blood--the so-called post-operative haematemesis--the best means of arresting the vomiting is by washing out the stomach. Thirst is relieved by rectal injections of saline solution. The introduction of saline solution into the veins or by the rectum is also useful in diluting and hastening the elimination of circulating toxins. In surgical inflammations, as a rule, nothing is gained by lowering the temperature, unless at the same time the cause is removed. When severe or prolonged pyrexia becomes a source of danger, the use of hot or cold sponging, or even the cold bath, is preferable to the administration of drugs. _Relief of Symptoms._--For the relief of _pain_, rest is essential. The inflamed part should be placed in a splint or other appliance which will prevent movement, and steps must be taken to reduce its functional activity as far as possible. Locally, warm and moist dressings, such as a poultice or fomentation, may be used. To make a fomentation, a piece of flannel or lint is wrung out of very hot water or antiseptic lotion and applied under a sheet of mackintosh. Fomentations should be renewed as often as they cool. An ordinary india-rubber bag filled with hot water and fixed over the fomentation, by retaining the heat, obviates the necessity of frequently changing the application. The addition of a few drops of laudanum sprinkled on the flannel has a soothing effect. Lead and opium lotion is a useful, soothing application employed as a fomentation. We prefer the application of lint soaked in a 10 per cent. aqueous or glycerine solution of ichthyol, or smeared with ichthyol ointment (1 in 3). Belladonna and glycerine, equal parts, may be used. Dry cold obtained by means of icebags, or by Leiter's lead tubes through which a continuous stream of ice-cold water is kept flowing, is sometimes soothing to the patient, but when the vessels in the inflamed part are greatly congested its use is attended with considerable risk, as it not only contracts the arterioles supplying the part, but also diminishes the outflow of venous blood, and so may determine gangrene of tissues already devitalised. A milder form of employing cold is by means of evaporating lotions: a thin piece of lint or gauze is applied over the inflamed part and kept constantly moist with the lotion, the dressing being left freely exposed to allow of continuous evaporation. A useful evaporating lotion is made up as follows: take of chloride of ammonium, half an ounce; rectified spirit, one ounce; and water, seven ounces. The administration of opiates may be necessary for the relief of pain. The accumulation of an excessive amount of inflammatory exudate may endanger the vitality of the tissues by pressing on the blood vessels to such an extent as to cause stasis, and by concentrating the local action of the toxins. Under such conditions the tension should be relieved and the exudate with its contained toxins removed by making an incision into the inflamed tissues, and applying a suction bell. When the exudate has collected in a synovial cavity, such as a joint or bursa, it may be withdrawn by means of a trocar and cannula. There are other methods of withdrawing blood and exudate from an inflamed area, for example by leeches or wet-cupping, but they are seldom employed now. Before applying leeches the part must be thoroughly cleansed, and if the leech is slow to bite, may be smeared with cream. The leech is retained in position under an inverted wine-glass or wide test-tube till it takes hold. After it has sucked its fill it usually drops off, having withdrawn a dram or a dram and a half of blood. If it be desirable to withdraw more blood, hot fomentations should be applied to the bite. As it is sometimes necessary to employ considerable pressure to stop the bleeding, leeches should, if possible, be applied over a bone which will furnish the necessary resistance. The use of styptics may be called for. _Wet-cupping_ has almost entirely been superseded by the use of Klapp's suction bells. _General blood-letting_ consists in opening a superficial vein (venesection) and allowing from eight to ten ounces of blood to flow from it. It is seldom used in the treatment of surgical forms of inflammation. _Counter-irritants._--In deep-seated inflammations, counter-irritants are sometimes employed in the form of mustard leaves or blisters, according to the degree of irritation required. A mustard leaf or plaster should not be left on longer than ten or fifteen minutes, unless it is desired to produce a blister. Blistering may be produced by a _cantharides plaster_, or by painting with _liquor epispasticus_. The plaster should be left on from eight to ten hours, and if it has failed to raise a blister, a hot fomentation should be applied to the part. _Liquor epispasticus_, alone or mixed with equal parts of collodion, is painted on the part with a brush. Several paintings are often required before a blister is raised. The preliminary removal of the natural grease from the skin favours the action of these applications. The treatment of inflammation in special tissues and organs will be considered in the sections devoted to regional surgery. #Chronic Inflammation.#--A variety of types of chronic and subacute inflammation are met with which, owing to ignorance of their causations, cannot at present be satisfactorily classified. The best defined group is that of the _granulomata_, which includes such important diseases as tuberculosis and syphilis, and in which different types of chronic inflammation are caused by infection with a specific organism, all having the common character, however, that abundant granulation tissue is formed in which cellular changes are more in evidence than changes in the blood vessels, and in which the subsequent degeneration and necrosis of the granulation tissue results in the breaking down and destruction of the tissue in which it is formed. Another group is that in which chronic inflammation is due to mild or attenuated forms of pyogenic infection affecting especially the lymph glands and the bone marrow. In the glands of the groin, for example, associated with various forms of irritation about the external genitals, different types of _chronic lymphadenitis_ are met with; they do not frankly suppurate as do the acute types, but are attended with a hyperplasia of the tissue elements which results in enlargement of the affected glands of a persistent, and sometimes of a relapsing character. Similar varieties of _osteomyelitis_ are met with that do not, like the acute forms, go on to suppuration or to death of bone, but result in thickening of the bone affected, both on the surface and in the interior, resulting in obliteration of the medullary canal. A third group of chronic inflammations are those that begin as an acute pyogenic inflammation, which, instead of resolving completely, persists in a chronic form. It does so apparently because there is some factor aiding the organisms and handicapping the tissues, such as the presence of a foreign body, a piece of glass or metal, or a piece of dead bone; in these circumstances the inflammation persists in a chronic form, attended with the formation of fibrous tissue, and, in the case of bone, with the formation of new bone in excess. It will be evident that in this group, chronic inflammation and repair are practically interchangeable terms. There are other groups of chronic inflammation, the origin of which continues to be the subject of controversy. Reference is here made to the chronic inflammations of the synovial membrane of joints, of tendon sheaths and of bursae--_chronic synovitis_, _teno-synovitis_ and _bursitis_; of the fibrous tissues of joints--chronic forms of _arthritis_; of the blood vessels--chronic forms of _endarteritis_ and of _phlebitis_ and of the peripheral nerves--_neuritis_. Also in the breast and in the prostate, with the waning of sexual life there may occur a formation of fibrous tissue--chronic _interstitial mastitis_, _chronic prostatitis_, having analogies with the chronic interstitial inflammations of internal organs like the kidney--_chronic interstitial nephritis_; and in the breast and prostate, as in the kidney, the formation of fibrous tissue leads to changes in the secreting epithelium resulting in the formation of cysts. Lastly, there are still other types of chronic inflammation attended with the formation of fibrous tissue on such a liberal scale as to suggest analogies with new growths. The best known of these are the systematic forms of fibromatosis met with in the central nervous system and in the peripheral nerves--_neuro-fibromatosis_; in the submucous coat of the stomach--_gastric fibromatosis_; and in the colon--_intestinal fibromatosis_. These conditions will be described with the tissues and organs in which they occur. In the _treatment of chronic inflammations_, pending further knowledge as to their causation, and beyond such obvious indications as to help the tissues by removing a foreign body or a piece of dead bone, there are employed--empirically--a number of procedures such as the induction of hyperaemia, exposure to the X-rays, and the employment of blisters, cauteries, and setons. Vaccines may be had recourse to in those of bacterial origin. CHAPTER IV SUPPURATION Definition--Pus--_Varieties_--Acute circumscribed abscess--_Acute suppuration in a wound_--_Acute Suppuration in a mucous membrane_--Diffuse cellulitis and diffuse suppuration-- _Whitlow_--_Suppurative cellulitis in different situations_--Chronic suppuration--Sinus, Fistula--Constitutional manifestations of pyogenic infection--_Sapraemia_--_Septicaemia_--_Pyaemia_. Suppuration, or the formation of pus, is one of the results of the action of bacteria on the tissues. The invading organism is usually one of the staphylococci, less frequently a streptococcus, and still less frequently one of the other bacteria capable of producing pus, such as the bacillus coli communis, the gonococcus, the pneumococcus, or the typhoid bacillus. So long as the tissues are in a healthy condition they are able to withstand the attacks of moderate numbers of pyogenic bacteria of ordinary virulence, but when devitalised by disease, by injury, or by inflammation due to the action of other pathogenic organisms, suppuration ensues. It would appear, for example, that pyogenic organisms can pass through the healthy urinary tract without doing any damage, but if the pelvis of the kidney, the ureter, or the bladder is the seat of stone, they give rise to suppuration. Similarly, a calculus in one of the salivary ducts frequently results in an abscess forming in the floor of the mouth. When the lumen of a tubular organ, such as the appendix or the Fallopian tube is blocked also, the action of pyogenic organisms is favoured and suppuration ensues. #Pus.#--The fluid resulting from the process of suppuration is known as _pus_. In its typical form it is a yellowish creamy substance, of alkaline reaction, with a specific gravity of about 1030, and it has a peculiar mawkish odour. If allowed to stand in a test-tube it does not coagulate, but separates into two layers: the upper, transparent, straw-coloured fluid, the _liquor puris_ or pus serum, closely resembling blood serum in its composition, but containing less protein and more cholestrol; it also contains leucin, tyrosin, and certain albumoses which prevent coagulation. The layer at the bottom of the tube consists for the most part of polymorph leucocytes, and proliferated connective tissue and endothelial cells (_pus corpuscles_). Other forms of leucocytes may be present, especially in long-standing suppurations; and there are usually some red corpuscles, dead bacteria, fat cells and shreds of tissue, cholestrol crystals, and other detritus in the deposit. If a film of fresh pus is examined under the microscope, the pus cells are seen to have a well-defined rounded outline, and to contain a finely granular protoplasm and a multi-partite nucleus; if still warm, the cells may exhibit amoeboid movement. In stained films the nuclei take the stain well. In older pus cells the outline is irregular, the protoplasm coarsely granular, and the nuclei disintegrated, no longer taking the stain. _Variations from Typical Pus._--Pus from old-standing sinuses is often watery in consistence (ichorous), with few cells. Where the granulations are vascular and bleed easily, it becomes sanious from admixture with red corpuscles; while, if a blood-clot be broken down and the debris mixed with the pus, it contains granules of blood pigment and is said to be "grumous." The _odour_ of pus varies with the different bacteria producing it. Pus due to ordinary pyogenic cocci has a mawkish odour; when putrefactive organisms are present it has a putrid odour; when it forms in the vicinity of the intestinal canal it usually contains the bacillus coli communis and has a faecal odour. The _colour_ of pus also varies: when due to one or other of the varieties of the bacillus pyocyaneus, it is usually of a blue or green colour; when mixed with bile derivatives or altered blood pigment, it may be of a bright orange colour. In wounds inflicted with rough iron implements from which rust is deposited, the pus often presents the same colour. The pus may form and collect within a circumscribed area, constituting a localised _abscess_; or it may infiltrate the tissues over a wide area--_diffuse suppuration_. ACUTE CIRCUMSCRIBED ABSCESS Any tissue of the body may be the seat of an acute abscess, and there are many routes by which the bacteria may gain access to the affected area. For example: an abscess in the integument or subcutaneous cellular tissue usually results from infection by organisms which have entered through a wound or abrasion of the surface, or along the ducts of the skin; an abscess in the breast from organisms which have passed along the milk ducts opening on the nipple, or along the lymphatics which accompany these. An abscess in a lymph gland is usually due to infection passing by way of the lymph channels from the area of skin or mucous membrane drained by them. Abscesses in internal organs, such as the kidney, liver, or brain, usually result from organisms carried in the blood-stream from some focus of infection elsewhere in the body. A knowledge of the possible avenues of infection is of clinical importance, as it may enable the source of a given abscess to be traced and dealt with. In suppuration in the Fallopian tube (pyosalpynx), for example, the fact that the most common origin of the infection is in the genital passage, leads to examination for vaginal discharge; and if none is present, the abscess is probably due to infection carried in the blood-stream from some primary focus about the mouth, such as a gumboil or an infective sore throat. The exact location of an abscess also may furnish a key to its source; in axillary abscess, for example, if the suppuration is in the lymph glands the infection has come through the afferent lymphatics; if in the cellular tissue, it has spread from the neck or chest wall; if in the hair follicles, it is a local infection through the skin. #Formation of an Abscess.#--When pyogenic bacteria are introduced into the tissue there ensues an inflammatory reaction, which is characterised by dilatation of the blood vessels, exudation of large numbers of leucocytes, and proliferation of connective-tissue cells. These wandering cells soon accumulate round the focus of infection, and form a protective barrier which tends to prevent the spread of the organisms and to restrict their field of action. Within the area thus circumscribed the struggle between the bacteria and the phagocytes takes place, and in the process toxins are formed by the organisms, a certain number of the leucocytes succumb, and, becoming degenerated, set free certain proteolytic enzymes or ferments. The toxins cause coagulation-necrosis of the tissue cells with which they come in contact, the ferments liquefy the exudate and other albuminous substances, and in this way _pus_ is formed. If the bacteria gain the upper hand, this process of liquefaction which is characteristic of suppuration, extends into the surrounding tissues, the protective barrier of leucocytes is broken down, and the suppurative process spreads. A fresh accession of leucocytes, however, forms a new barrier, and eventually the spread is arrested, and the collection of pus so hemmed in constitutes an _abscess_. Owing to the swelling and condensation of the parts around, the pus thus formed is under considerable pressure, and this causes it to burrow along the lines of least resistance. In the case of a subcutaneous abscess the pus usually works its way towards the surface, and "points," as it is called. Where it approaches the surface the skin becomes soft and thin, and eventually sloughs, allowing the pus to escape. An abscess forming in the deeper planes is prevented from pointing directly to the surface by the firm fasciae and other fibrous structures. The pus therefore tends to burrow along the line of the blood vessels and in the connective-tissue septa, till it either finds a weak spot or causes a portion of fascia to undergo necrosis and so reaches the surface. Accordingly, many abscess cavities resulting from deep-seated suppuration are of irregular shape, with pouches and loculi in various directions--an arrangement which interferes with their successful treatment by incision and drainage. The relief of tension which follows the bursting of an abscess, the removal of irritation by the escape of pus, and the casting off of bacteria and toxins, allow the tissues once more to assert themselves, and a process of repair sets in. The walls of the abscess fall in; granulation tissue grows into the space and gradually fills it; and later this is replaced by cicatricial tissue. As a result of the subsequent contraction of the cicatricial tissue, the scar is usually depressed below the level of the surrounding skin surface. If an abscess is prevented from healing--for example, by the presence of a foreign body or a piece of necrosed bone--a sinus results, and from it pus escapes until the foreign body is removed. #Clinical Features of an Acute Circumscribed Abscess.#--In the initial stages the usual symptoms of inflammation are present. Increased elevation of temperature, with or without a rigor, progressive leucocytosis, and sweating, mark the transition between inflammation and suppuration. An increasing leucocytosis is evidence that a suppurative process is spreading. The local symptoms vary with the seat of the abscess. When it is situated superficially--for example, in the breast tissue--the affected area is hot, the redness of inflammation gives place to a dusky purple colour, with a pale, sometimes yellow, spot where the pus is near the surface. The swelling increases in size, the firm brawny centre becomes soft, projects as a cone beyond the level of the rest of the swollen area, and is usually surrounded by a zone of induration. By gently palpating with the finger-tips over the softened area, a fluid wave may be detected--_fluctuation_--and when present this is a certain indication of the existence of fluid in the swelling. Its recognition, however, is by no means easy, and various fallacies are to be guarded against in applying this test clinically. When, for example, the walls of the abscess are thick and rigid, or when its contents are under excessive tension, the fluid wave cannot be elicited. On the other hand, a sensation closely resembling fluctuation may often be recognised in oedematous tissues, in certain soft, solid tumours such as fatty tumours or vascular sarcomata, in aneurysm, and in a muscle when it is palpated in its transverse axis. When pus has formed in deeper parts, and before it has reached the surface, oedema of the overlying skin is frequently present, and the skin pits on pressure. With the formation of pus the continuous burning or boring pain of inflammation assumes a throbbing character, with occasional sharp, lancinating twinges. Should doubt remain as to the presence of pus, recourse may be had to the use of an exploring needle. _Differential Diagnosis of Acute Abscess._--A practical difficulty which frequently arises is to decide whether or not pus has actually formed. It may be accepted as a working rule in practice that when an acute inflammation has lasted for four or five days without showing signs of abatement, suppuration has almost certainly occurred. In deep-seated suppuration, marked oedema of the skin and the occurrence of rigors and sweating may be taken to indicate the formation of pus. There are cases on record where rapidly growing sarcomatous and angiomatous tumours, aneurysms, and the bruises that occur in haemophylics, have been mistaken for acute abscesses and incised, with disastrous results. #Treatment of Acute Abscesses.#--The dictum of John Bell, "Where there is pus, let it out," summarises the treatment of abscess. The extent and situation of the incision and the means taken to drain the cavity, however, vary with the nature, site, and relations of the abscess. In a superficial abscess, for example a bubo, or an abscess in the breast or face where a disfiguring scar is undesirable, a small puncture should be made where the pus threatens to point, and a Klapp's suction bell be applied as already described (p. 39). A drain is not necessary, and in the intervals between the applications of the bell the part is covered with a moist antiseptic dressing. In abscesses deeply placed, as for example under the gluteal or pectoral muscles, one or more incisions should be made, and the cavity drained by glass or rubber tubes or by strips of rubber tissue. The wound should be dressed the next day, and the tube shortened, in the case of a rubber tube, by cutting off a portion of its outer end. On the second day or later, according to circumstances, the tube is removed, and after this the dressing need not be repeated oftener than every second or third day. Where pus has formed in relation to important structures--as, for example, in the deeper planes of the neck--_Hilton's method_ of opening the abscess may be employed. An incision is made through the skin and fascia, a grooved director is gently pushed through the deeper tissues till pus escapes along its groove, and then the track is widened by passing in a pair of dressing forceps and expanding the blades. A tube, or strip of rubber tissue, is introduced, and the subsequent treatment carried out as in other abscesses. When the drain lies in proximity to a large blood vessel, care must be taken not to leave it in position long enough to cause ulceration of the vessel wall by pressure. In some abscesses, such as those in the vicinity of the anus, the cavity should be laid freely open in its whole extent, stuffed with iodoform or bismuth gauze, and treated by the open method. It is seldom advisable to wash out an abscess cavity, and squeezing out the pus is also to be avoided, lest the protective zone be broken down and the infection be diffused into the surrounding tissues. The importance of taking precautions against further infection in opening an abscess can scarcely be exaggerated, and the rapidity with which healing occurs when the access of fresh bacteria is prevented is in marked contrast to what occurs when such precautions are neglected and further infection is allowed to take place. _Acute Suppuration in a Wound._--If in the course of an operation infection of the wound has occurred, a marked inflammatory reaction soon manifests itself, and the same changes as occur in the formation of an acute abscess take place, modified, however, by the fact that the pus can more readily reach the surface. In from twenty-four to forty-eight hours the patient is conscious of a sensation of chilliness, or may even have a rigor. At the same time he feels generally out of sorts, with impaired appetite, headache, and it may be looseness of the bowels. His temperature rises to 100 o or 101 o F., and the pulse quickens to 100 or 110. On exposing the wound it is found that the parts for some distance around are red, glazed, and oedematous. The discoloration and swelling are most intense in the immediate vicinity of the wound, the edges of which are everted and moist. Any stitches that may have been introduced are tight, and the deep ones may be cutting into the tissues. There is heat, and a constant burning or throbbing pain, which is increased by pressure. If the stitches be cut, pus escapes, the wound gapes, and its surfaces are found to be inflamed and covered with pus. The open method is the only safe means of treating such wounds. The infected surface may be sponged over with pure carbolic acid, the excess of which is washed off with absolute alcohol, and the wound either drained by tubes or packed with iodoform gauze. The practice of scraping such surfaces with the sharp spoon, squeezing or even of washing them out with antiseptic lotions, is attended with the risk of further diffusing the organisms in the tissue, and is only to be employed under exceptional circumstances. Continuous irrigation of infected wounds or their immersion in antiseptic baths is sometimes useful. The free opening up of the wound is almost immediately followed by a fall in the temperature. The surrounding inflammation subsides, the discharge of pus lessens, and healing takes place by the formation of granulation tissue--the so-called "healing by second intention." Wound infection may take place from _catgut_ which has not been efficiently prepared. The local and general reactions may be slight, and, as a rule, do not appear for seven or eight days after the operation, and, it may be, not till after the skin edges have united. The suppuration is strictly localised to the part of the wound where catgut was employed for stitches or ligatures, and shows little tendency to spread. The infected part, however, is often long of healing. The irritation in these cases is probably due to toxins in the catgut and not to bacteria. When suppuration occurs in connection with buried sutures of unabsorbable materials, such as silk, silkworm gut, or silver wire, it is apt to persist till the foreign material is cast off or removed. Suppuration may occur in the track of a skin stitch, producing a _stitch abscess_. The infection may arise from the material used, especially catgut or silk, or, more frequently perhaps, from the growth of staphylococcus albus from the skin of the patient when this has been imperfectly disinfected. The formation of pus under these conditions may not be attended with any of the usual signs of suppuration, and beyond some induration around the wound and a slight tenderness on pressure there may be nothing to suggest the presence of an abscess. _Acute Suppuration of a Mucous Membrane._--When pyogenic organisms gain access to a mucous membrane, such as that of the bladder, urethra, or middle ear, the usual phenomena of acute inflammation and suppuration ensue, followed by the discharge of pus on the free surface. It would appear that the most marked changes take place in the submucous tissue, causing the covering epithelium in places to die and leave small superficial ulcers, for example in gonorrhoeal urethritis, the cicatricial contraction of the scar subsequently leading to the formation of stricture. When mucous glands are present in the membrane, the pus is mixed with mucus--_muco-pus_. DIFFUSE CELLULITIS AND DIFFUSE SUPPURATION Cellulitis is an acute affection resulting from the introduction of some organism--commonly the _streptococcus pyogenes_--into the cellular connective tissue of the integument, intermuscular septa, tendon sheaths, or other structures. Infection always takes place through a breach of the surface, although this may be superficial and insignificant, such as a pin-prick, a scratch, or a crack under a nail, and the wound may have been healed for some time before the inflammation becomes manifest. The cellulitis, also, may develop at some distance from the seat of inoculation, the organisms having travelled by the lymphatics. The virulence of the organisms, the loose, open nature of the tissues in which they develop, and the free lymphatic circulation by means of which they are spread, account for the diffuse nature of the process. Sometimes numbers of cocci are carried for a considerable distance from the primary area before they are arrested in the lymphatics, and thus several patches of inflammation may appear with healthy areas between. The pus infiltrates the meshes of the cellular tissue, there is sloughing of considerable portions of tissue of low vitality, such as fat, fascia, or tendon, and if the process continues for some time several collections of pus may form. _Clinical Features._--The reaction in cases of diffuse cellulitis is severe, and is usually ushered in by a distinct chill or even a rigor, while the temperature rises to 103 o, 104 o, or 105 o F. The pulse is proportionately increased in frequency, and is small, feeble, and often irregular. The face is flushed, the tongue dry and brown, and the patient may become delirious, especially during the night. Leucocytosis is present in cases of moderate severity; but in severe cases the virulence of the toxins prevents reaction taking place, and leucocytosis is absent. The local manifestations vary with the relation of the seat of the inflammation to the surface. When the superficial cellular tissue is involved, the skin assumes a dark bluish-red colour, is swollen, oedematous, and the seat of burning pain. To the touch it is firm, hot, and tender. When the primary focus is in the deeper tissues, the constitutional disturbance is aggravated, while the local signs are delayed, and only become prominent when pus forms and approaches the surface. It is not uncommon for blebs containing dark serous fluid to form on the skin. The infection frequently spreads along the line of the main lymph vessels of the part (_septic lymphangitis_) and may reach the lymph glands (_septic lymphadenitis_). With the formation of pus the skin becomes soft and boggy at several points, and eventually breaks, giving exit to a quantity of thick grumous discharge. Sometimes several small collections under the skin fuse, and an abscess is formed in which fluctuation can be detected. Occasionally gases are evolved in the tissues, giving rise to emphysema. It is common for portions of fascia, ligaments, or tendons to slough, and this may often be recognised clinically by a peculiar crunching or grating sensation transmitted to the fingers on making firm pressure on the part. If it is not let out by incision, the pus, travelling along the lines of least resistance, tends to point at several places on the surface, or to open into joints or other cavities. _Prognosis._--The occurrence of _septicaemia_ is the most serious risk, and it is in cases of diffuse suppurative cellulitis that this form of blood-poisoning assumes its most aggravated forms. The toxins of the streptococci are exceedingly virulent, and induce local death of tissue so rapidly that the protective emigration of leucocytes fails to take place. In some cases the passage of masses of free cocci in the lymphatics, or of infective emboli in the blood vessels, leads to the formation of _pyogenic abscesses_ in vital organs, such as the brain, lungs, liver, kidneys, or other viscera. _Haemorrhage_ from erosion of arterial or venous trunks may take place and endanger life. _Treatment._--The treatment of diffuse cellulitis depends to a large extent on the situation and extent of the affected area, and on the stage of the process. _In the limbs_, for example, where the application of a constricting band is practicable, Bier's method of inducing passive hyperaemia yields excellent results. If pus is formed, one or more small incisions are made and a light moist dressing placed over the wounds to absorb the discharge, but no drain is inserted. The whole of the inflamed area should be covered with gauze wrung out of a 1 in 10 solution of ichthyol in glycerine. The dressing is changed as often as necessary, and in the intervals when the band is off, gentle active and passive movements should be carried out to prevent the formation of adhesions. After incisions have been made, we have found the _immersion_ of the limb, for a few hours at a time, in a water-bath containing warm boracic lotion or eusol a useful adjuvant to the passive hyperaemia. _Continuous irrigation_ of the part by a slow, steady stream of lotion, at the body temperature, such as eusol, or Dakin's solution, or boracic acid, or frequent washing with peroxide of hydrogen, has been found of value. A suitably arranged splint adds to the comfort of the patient; and the limb should be placed in the attitude which, in the event of stiffness resulting, will least interfere with its usefulness. The elbow, for example, should be flexed to a little less than a right angle; at the wrist, the hand should be dorsiflexed and the fingers flexed slightly towards the palm. Massage, passive movement, hot and cold douching, and other measures, may be necessary to get rid of the chronic oedema, adhesions of tendons, and stiffness of joints which sometimes remain. In situations where a constricting band cannot be applied, for example, on the trunk or the neck, Klapp's suction bells may be used, small incisions being made to admit of the escape of pus. If these measures fail or are impracticable, it may be necessary to make one or more free incisions, and to insert drainage-tubes, portions of rubber dam, or iodoform worsted. The general treatment of toxaemia must be carried out, and in cases due to infection by streptococci, anti-streptococcic serum may be used. In a few cases, amputation well above the seat of disease, by removing the source of toxin production, offers the only means of saving the patient. WHITLOW The clinical term whitlow is applied to an acute infection, usually followed by suppuration, commonly met with in the fingers, less frequently in the toes. The point of infection is often trivial--a pin-prick, a puncture caused by a splinter of wood, a scratch, or even an imperceptible lesion of the skin. Several varieties of whitlow are recognised, but while it is convenient to describe them separately, it is to be clearly understood that clinically they merge one into another, and it is not always possible to determine in which connective-tissue plane a given infection has originated. _Initial Stage._--Attention is usually first attracted to the condition by a sensation of tightness in the finger and tenderness when the part is squeezed or knocked against anything. In the course of a few hours the part becomes red and swollen; there is continuous pain, which soon assumes a throbbing character, particularly when the hand is dependent, and may be so severe as to prevent sleep, and the patient may feel generally out of sorts. If a constricting band is applied at this stage, the infection can usually be checked and the occurrence of suppuration prevented. If this fails, or if the condition is allowed to go untreated, the inflammatory reaction increases and terminates in suppuration, giving rise to one or other of the forms of whitlow to be described. _The Purulent Blister._--In the most superficial variety, pus forms between the rete Malpighii and the stratum corneum of the skin, the latter being raised as a blister in which fluctuation can be detected (Fig. 9, a). This is commonly met with in the palm of the hand of labouring men who have recently resumed work after a spell of idleness. When the blister forms near the tip of the finger, the pus burrows under the nail--which corresponds to the stratum corneum--raising it from its bed. There is some local heat and discoloration, and considerable pain and tenderness, but little or no constitutional disturbance. Superficial lymphangitis may extend a short distance up the forearm. By clipping away the raised epidermis, and if necessary the nail, the pus is allowed to escape, and healing speedily takes place. _Whitlow at the Nail Fold._--This variety, which is met with among those who handle septic material, occurs in the sulcus between the nail and the skin, and is due to the introduction of infective matter at the root of the nail (Fig. 9, b). A small focus of suppuration forms under the nail, with swelling and redness of the nail fold, causing intense pain and discomfort, interfering with sleep, and producing a constitutional reaction out of all proportion to the local lesion. To allow the pus to escape, it is necessary, under local anaesthesia, to cut away the nail fold as well as the portion of nail in the infected area, or, it may be, to remove the nail entirely. If only a small opening is made in the nail it is apt to be blocked by granulations. [Illustration: FIG. 9.--Diagram of various forms of Whitlow. a = Purulent blister. b = Suppuration at nail fold. c = Subcutaneous whitlow. d = Whitlow in sheath of flexor tendon (e). ] _Subcutaneous Whitlow._--In this variety the infection manifests itself as a cellulitis of the pulp of the finger (Fig. 9, c), which sometimes spreads towards the palm of the hand. The finger becomes red, swollen, and tense; there is severe throbbing pain, which is usually worst at night and prevents sleep, and the part is extremely tender on pressure. When the palm is invaded there may be marked oedema of the back of the hand, the dense integument of the palm preventing the swelling from appearing on the front. The pus may be under such tension that fluctuation cannot be detected. The patient is usually able to flex the finger to a certain extent without increasing the pain--a point which indicates that the tendon sheaths have not been invaded. The suppurative process may, however, spread to the tendon sheaths, or even to the bone. Sometimes the excessive tension and virulent toxins induce actual gangrene of the distal part, or even of the whole finger. There is considerable constitutional disturbance, the temperature often reaching 101 o or 102 o F. The treatment consists in applying a constriction band and making an incision over the centre of the most tender area, care being taken to avoid opening the tendon sheath lest the infection be conveyed to it. Moist dressings should be employed while the suppuration lasts. Carbolic fomentations, however, are to be avoided on account of the risk of inducing gangrene. _Whitlow of the Tendon Sheaths._--In this form the main incidence of the infection is on the sheaths of the flexor tendons, but it is not always possible to determine whether it started there or spread thither from the subcutaneous cellular tissue (Fig. 9, d). In some cases both connective tissue planes are involved. The affected finger becomes red, painful, and swollen, the swelling spreading to the dorsum. The involvement of the tendon sheath is usually indicated by the patient being unable to flex the finger, and by the pain being increased when he attempts to do so. On account of the anatomical arrangement of the tendon sheaths, the process may spread into the forearm--directly in the case of the thumb and little finger, and after invading the palm in the case of the other fingers--and there give rise to a diffuse cellulitis which may result in sloughing of fasciae and tendons. When the infection spreads into the common flexor sheath under the transverse carpal (anterior annular) ligament, it is not uncommon for the intercarpal and wrist joints to become implicated. Impaired movement of tendons and joints is, therefore, a common sequel to this variety of whitlow. The _treatment_ consists in inducing passive hyperaemia by Bier's method, and, if this is done early, suppuration may be avoided. If pus forms, small incisions are made, under local anaesthesia, to relieve the tension in the sheath and to diminish the risk of the tendons sloughing. No form of drain should be inserted. In the fingers the incisions should be made in the middle line, and in the palm they should be made over the metacarpal bones to avoid the digital vessels and nerves. If pus has spread under the transverse carpal ligament, the incision must be made above the wrist. Passive movements and massage must be commenced as early as possible and be perseveringly employed to diminish the formation of adhesions and resulting stiffness. _Subperiosteal Whitlow._--This form is usually an extension of the subcutaneous or of the thecal variety, but in some cases the inflammation begins in the periosteum--usually of the terminal phalanx. It may lead to necrosis of a portion or even of the entire phalanx. This is usually recognised by the persistence of suppuration long after the acute symptoms have passed off, and by feeling bare bone with the probe. In such cases one or more of the joints are usually implicated also, and lateral mobility and grating may be elicited. Recovery does not take place until the dead bone is removed, and the usefulness of the finger is often seriously impaired by fibrous or bony ankylosis of the interphalangeal joints. This may render amputation advisable when a stiff finger is likely to interfere with the patient's occupation. SUPPURATIVE CELLULITIS IN DIFFERENT SITUATIONS _Cellulitis of the forearm_ is usually a sequel to one of the deeper varieties of whitlow. In the _region of the elbow-joint_, cellulitis is common around the olecranon. It may originate as an inflammation of the olecranon bursa, or may invade the bursa secondarily. In exceptional cases the elbow-joint is also involved. Cellulitis of the _axilla_ may originate in suppuration in the lymph glands, following an infected wound of the hand, or it may spread from a septic wound on the chest wall or in the neck. In some cases it is impossible to discover the primary seat of infection. A firm, brawny swelling forms in the armpit and extends on to the chest wall. It is attended with great pain, which is increased on moving the arm, and there is marked constitutional disturbance. When suppuration occurs, its spread is limited by the attachments of the axillary fascia, and the pus tends to burrow on to the chest wall beneath the pectoral muscles, and upwards towards the shoulder-joint, which may become infected. When the pus forms in the axillary space, the treatment consists in making free incisions, which should be placed on the thoracic side of the axilla to avoid the axillary vessels and nerves. If the pus spreads on to the chest wall, the abscess should be opened below the clavicle by Hilton's method, and a counter opening may be made in the axilla. Cellulitis of the _sole of the foot_ may follow whitlow of the toes. In the _region of the ankle_ cellulitis is not common; but _around the knee_ it frequently occurs in relation to the prepatellar bursa and to the popliteal lymph glands, and may endanger the knee-joint. It is also met with in the _groin_ following on inflammation and suppuration of the inguinal glands, and cases are recorded in which the sloughing process has implicated the femoral vessels and led to secondary haemorrhage. Cellulitis of the scalp, orbit, neck, pelvis, and perineum will be considered with the diseases of these regions. CHRONIC SUPPURATION While it is true that a chronic pyogenic abscess is sometimes met with--for example, in the breast and in the marrow of long bones--in the great majority of instances the formation of a chronic or cold abscess is the result of the action of the tubercle bacillus. It is therefore more convenient to study this form of suppuration with tuberculosis (p. 139). SINUS AND FISTULA #Sinus.#--A sinus is a track leading from a focus of suppuration to a cutaneous or mucous surface. It usually represents the path by which the discharge escapes from an abscess cavity that has been prevented from closing completely, either from mechanical causes or from the persistent formation of discharge which must find an exit. A sinus is lined by granulation tissue, and when it is of long standing the opening may be dragged below the level of the surrounding skin by contraction of the scar tissue around it. As a sinus will persist until the obstacle to closure of the original abscess is removed, it is necessary that this should be sought for. It may be a foreign body, such as a piece of dead bone, an infected ligature, or a bullet, acting mechanically or by keeping up discharge, and if the body is removed the sinus usually heals. The presence of a foreign body is often suggested by a mass of redundant granulations at the mouth of the sinus. If a sinus passes through a muscle, the repeated contractions tend to prevent healing until the muscle is kept at rest by a splint, or put out of action by division of its fibres. The sinuses associated with empyema are prevented from healing by the rigidity of the chest wall, and will only close after an operation which admits of the cavity being obliterated. In any case it is necessary to disinfect the track, and, it may be, to remove the unhealthy granulations lining it, by means of the sharp spoon, or to excise it bodily. To encourage healing from the bottom the cavity should be packed with bismuth or iodoform gauze. The healing of long and tortuous sinuses is often hastened by the injection of Beck's bismuth paste (p. 145). If disfigurement is likely to follow from cicatricial contraction--for example, in a sinus over the lower jaw associated with a carious tooth--the sinus should be excised and the raw surfaces approximated with stitches. The _tuberculous sinus_ is described under Tuberculosis. A #fistula# is an abnormal canal passing from a mucous surface to the skin or to another mucous surface. Fistulae resulting from suppuration usually occur near the natural openings of mucous canals--for example, on the cheek, as a salivary fistula; beside the inner angle of the eye, as a lacrymal fistula; near the ear, as a mastoid fistula; or close to the anus, as a fistula-in-ano. Intestinal fistulae are sometimes met with in the abdominal wall after strangulated hernia, operations for appendicitis, tuberculous peritonitis, and other conditions. In the perineum, fistulae frequently complicate stricture of the urethra. Fistulae also occur between the bladder and vagina (_vesico-vaginal fistula_), or between the bladder and the rectum (_recto-vesical fistula_). The _treatment_ of these various forms of fistula will be described in the sections dealing with the regions in which they occur. _Congenital fistulae_, such as occur in the neck from imperfect closure of branchial clefts, or in the abdomen from unobliterated foetal ducts such as the urachus or Meckel's diverticulum, will be described in their proper places. CONSTITUTIONAL MANIFESTATIONS OF PYOGENIC INFECTION We have here to consider under the terms Sapraemia, Septicaemia, and Pyaemia certain general effects of pyogenic infection, which, although their clinical manifestations may vary, are all associated with the action of the same forms of bacteria. They may occur separately or in combination, or one may follow on and merge into another. #Sapraemia#, or septic intoxication, is the name applied to a form of poisoning resulting from the absorption into the blood of the toxic products of pyogenic bacteria. These products, which are of the nature of alkaloids, act immediately on their entrance into the circulation, and produce effects in direct proportion to the amount absorbed. As the toxins are gradually eliminated from the body the symptoms abate, and if no more are introduced they disappear. Sapraemia in these respects, therefore, is comparable to poisoning by any other form of alkaloid, such as strychnin or morphin. _Clinical Features._--The symptoms of sapraemia seldom manifest themselves within twenty-four hours of an operation or injury, because it takes some time for the bacteria to produce a sufficient dose of their poisons. The onset of the condition is marked by a feeling of chilliness, sometimes amounting to a rigor, and a rise of temperature to 102 o, 103 o, or 104 o F., with morning remissions (Fig. 10). The heart's action is markedly depressed, and the pulse is soft and compressible. The appetite is lost, the tongue dry and covered with a thin brownish-red fur, so that it has the appearance of "dried beef." The urine is scanty and loaded with urates. In severe cases diarrhoea and vomiting of dark coffee-ground material are often prominent features. Death is usually impending when the skin becomes cold and clammy, the mucous membranes livid, the pulse feeble and fluttering, the discharges involuntary, and when a low form of muttering delirium is present. [Illustration: FIG. 10.--Charts of Acute sapraemia from (a) case of crushed foot, and (b) case of incomplete abortion.] A local form of septic infection is always present--it may be an abscess, an infected compound fracture, or an infection of the cavity of the uterus, for example, from a retained portion of placenta. _Treatment._--The first indication is the immediate and complete removal of the infected material. The wound must be freely opened, all blood-clot, discharge, or necrosed tissue removed, and the area disinfected by washing with sterilised salt solution, peroxide of hydrogen, or eusol. Stronger lotions are to be avoided as being likely to depress the tissues, and so interfere with protective phagocytosis. On account of its power of neutralising toxins, iodoform is useful in these cases, and is best employed by packing the wound with iodoform gauze, and treating it by the open method, if this is possible. The general treatment is carried out on the same lines as for other infective conditions. #Chronic sapraemia or Hectic Fever.#--Hectic fever differs from acute sapraemia merely in degree. It usually occurs in connection with tuberculous conditions, such as bone or joint disease, psoas abscess, or empyema, which have opened externally, and have thereby become infected with pyogenic organisms. It is gradual in its development, and is of a mild type throughout. [Illustration: FIG. 11.--Chart of Hectic Fever.] The pulse is small, feeble, and compressible, and the temperature rises in the afternoon or evening to 102 o or 103 o F. (Fig. 11), the cheeks becoming characteristically flushed. In the early morning the temperature falls to normal or below it, and the patient breaks into a profuse perspiration, which leaves him pale, weak, and exhausted. He becomes rapidly and markedly emaciated, even although in some cases the appetite remains good and is even voracious. The poisons circulating in the blood produce _waxy degeneration_ in certain viscera, notably the liver, spleen, kidneys, and intestines. The process begins in the arterial walls, and spreads thence to the connective-tissue structures, causing marked enlargement of the affected organs. Albuminuria, ascites, oedema of the lower limbs, clubbing of the fingers, and diarrhoea are among the most prominent symptoms of this condition. The _prognosis_ in hectic fever depends on the completeness with which the further absorption of toxins can be prevented. In many cases this can only be effected by an operation which provides for free drainage, and, if possible, the removal of infected tissues. The resulting wound is best treated by the open method. Even advanced waxy degeneration does not contra-indicate this line of treatment, as the diseased organs usually recover if the focus from which absorption of toxic material is taking place is completely eradicated. [Illustration: FIG. 12.--Chart of case of Septicaemia followed by Pyaemia.] #Septicaemia.#--This form of blood-poisoning is the result of the action of pyogenic bacteria, which not only produce their toxins at the primary seat of infection, but themselves enter the blood-stream and are carried to other parts, where they settle and produce further effects. _Clinical Features._--There may be an incubation period of some hours between the infection and the first manifestation of acute septicaemia. In such conditions as acute osteomyelitis or acute peritonitis, we see the most typical clinical pictures of this condition. The onset is marked by a chill, or a rigor, which may be repeated, while the temperature rises to 103 o or 104 o F., although in very severe cases the temperature may remain subnormal throughout, the virulence of the toxins preventing reaction. It is in the general appearance of the patient and in the condition of the pulse that we have our best guides as to the severity of the condition. If the pulse remains firm, full, and regular, and does not exceed 110 or even 120, while the temperature is moderately raised, the outlook is hopeful; but when the pulse becomes small and compressible, and reaches 130 or more, especially if at the same time the temperature is low, a grave prognosis is indicated. The tongue is often dry and coated with a black crust down the centre, while the sides are red. It is a good omen when the tongue becomes moist again. Thirst is most distressing, especially in septicaemia of intestinal origin. Persistent vomiting of dark-brown material is often present, and diarrhoea with blood-stained stools is not uncommon. The urine is small in amount, and contains a large proportion of urates. As the poisons accumulate, the respiration becomes shallow and laboured, the face of a dull ashy grey, the nose pinched, and the skin cold and clammy. Capillary haemorrhages sometimes take place in the skin or mucous membranes; and in a certain proportion of cases cutaneous eruptions simulating those of scarlet fever or measles appear, and are apt to lead to errors in diagnosis. In other cases there is slight jaundice. The mental state is often one of complete apathy, the patient failing to realise the gravity of his condition; sometimes there is delirium. The _prognosis_ is always grave, and depends on the possibility of completely eradicating the focus of infection, and on the reserve force the patient has to carry him over the period during which he is eliminating the poison already circulating in his blood. The _treatment_ is carried out on the same lines as in sapraemia, but it is less likely to be successful owing to the organisms having entered the circulation. When possible, the primary focus of infection should be dealt with. #Pyaemia# is a form of blood-poisoning characterised by the development of secondary foci of suppuration in different parts of the body. Toxins are thus introduced into the blood, not only at the primary seat of infection, but also from each of these metastatic collections. Like septicaemia, this condition is due to pyogenic bacteria, the _streptococcus pyogenes_ being the commonest organism found. The primary infection is usually in a wound--for example, a compound fracture--but cases occur in which the point of entrance of the bacteria is not discoverable. The dissemination of the organisms takes place through the medium of infected emboli which form in a thrombosed vein in the vicinity of the original lesion, and, breaking loose, are carried thence in the blood-stream. These emboli lodge in the minute vessels of the lungs, spleen, liver, kidneys, pleura, brain, synovial membranes, or cellular tissue, and the bacteria they contain give rise to secondary foci of suppuration. Secondary abscesses are thus formed in those parts, and these in turn may be the starting-point of new emboli which give rise to fresh areas of pus formation. The organs above named are the commonest situations of pyaemic abscesses, but these may also occur in the bone marrow, the substance of muscles, the heart and pericardium, lymph glands, subcutaneous tissue, or, in fact, in any tissue of the body. Organisms circulating in the blood are prone to lodge on the valves of the heart and give rise to endocarditis. [Illustration: FIG. 13.--Chart of Pyaemia following on Acute Osteomyelitis.] _Clinical Features._--Before antiseptic surgery was practised, pyaemia was a common complication of wounds. In the present day it is not only infinitely less common, but appears also to be of a less severe type. Its rarity and its mildness may be related as cause and effect, because it was formerly found that pyaemia contracted from a pyaemic patient was more virulent than that from other sources. In contrast with sapraemia and septicaemia, pyaemia is late of developing, and it seldom begins within a week of the primary infection. The first sign is a feeling of chilliness, or a violent rigor lasting for perhaps half an hour, during which time the temperature rises to 103 o, 104 o, or 105 o F. In the course of an hour it begins to fall again, and the patient breaks into a profuse sweat. The temperature may fall several degrees, but seldom reaches the normal. In a few days there is a second rigor with rise of temperature, and another remission, and such attacks may be repeated at diminishing intervals during the course of the illness (Figs. 12 and 13). The pulse is soft, and tends to remain abnormally rapid even when the temperature falls nearly to normal. The face is flushed, and wears a drawn, anxious expression, and the eyes are bright. A characteristic sweetish odour, which has been compared to that of new-mown hay, can be detected in the breath and may pervade the patient. The appetite is lost; there may be sickness and vomiting and profuse diarrhoea; and the patient emaciates rapidly. The skin is continuously hot, and has often a peculiar pungent feel. Patches of erythema sometimes appear scattered over the body. The skin may assume a dull sallow or earthy hue, or a bright yellow icteric tint may appear. The conjunctivae also may be yellow. In the latter stages of the disease the pulse becomes small and fluttering; the tongue becomes dry and brown; sordes collect on the teeth; and a low muttering form of delirium supervenes. Secondary infection of the parotid gland frequently occurs, and gives rise to a suppurative parotitis. This condition is associated with severe pain, gradually extending from behind the angle of the jaw on to the face. There is also swelling over the gland, and eventually suppuration and sloughing of the gland tissue and overlying skin. Secondary abscesses in the lymph glands, subcutaneous tissue, or joints are often so insidious and painless in their development that they are only discovered accidentally. When the abscess is evacuated, healing often takes place with remarkable rapidity, and with little impairment of function. The general symptoms may be simulated by an attack of malaria. _Prognosis._--The prognosis in acute pyaemia is much less hopeless than it once was, a considerable proportion of the patients recovering. In acute cases the disease proves fatal in ten days or a fortnight, death being due to toxaemia. Chronic cases often run a long course, lasting for weeks or even months, and prove fatal from exhaustion and waxy disease following on prolonged suppuration. _Treatment._--In such conditions as compound fractures and severe lacerated wounds, much can be done to avert the conditions which lead to pyaemia, by applying a Bier's constricting bandage as soon as there is evidence of infection having taken place, or even if there is reason to suspect that the wound is not aseptic. If sepsis is already established, and evidence of general infection is present, the wound should be opened up sufficiently to admit of thorough disinfection and drainage, and the constricting bandage applied to aid the defensive processes going on in the tissues. If these measures fail, amputation of the limb may be the only means of preventing further dissemination of infective material from the primary source of infection. Attempts have been made to interrupt the channel along which the infective emboli spread, by ligating or resecting the main vein of the affected part, but this is seldom feasible except in the case of the internal jugular vein for infection of the transverse sinus. Secondary abscesses must be aspirated or opened and drained whenever possible. The general treatment is conducted on the same lines as on other forms of pyogenic infection. CHAPTER V ULCERATION AND ULCERS Definitions--Clinical examination of an ulcer--The healing sore.--Classification of ulcers--A. According to cause: _Traumatism_, _Imperfect circulation_, _Imperfect nerve-supply_, _Constitutional causes_--B. According to condition: _Healing_, _Stationary_, _Spreading_.--Treatment. The process of _ulceration_ may be defined as the molecular or cellular death of tissue taking place on a free surface. It is essentially of the same nature as the process of suppuration, only that the purulent discharge, instead of collecting in a closed cavity and forming an abscess, at once escapes on the surface. An _ulcer_ is an open wound or sore in which there are present certain conditions tending to prevent it undergoing the natural process of repair. Of these, one of the most important is the presence of pathogenic bacteria, which by their action not only prevent healing, but so irritate and destroy the tissues as to lead to an actual increase in the size of the sore. Interference with the nutrition of a part by oedema or chronic venous congestion may impede healing; as may also induration of the surrounding area, by preventing the contraction which is such an important factor in repair. Defective innervation, such as occurs in injuries and diseases of the spinal cord, also plays an important part in delaying repair. In certain constitutional conditions, too--for example, Bright's disease, diabetes, or syphilis--the vitiated state of the tissues is an impediment to repair. Mechanical causes, such as unsuitable dressings or ill-fitting appliances, may also act in the same direction. #Clinical Examination of an Ulcer.#--In examining any ulcer, we observe--(1) Its _base_ or _floor_, noting the presence or absence of granulations, their disposition, size, colour, vascularity, and whether they are depressed or elevated in relation to the surrounding parts. (2) The _discharge_ as to quantity, consistence, colour, composition, and odour. (3) The _edges_, noting particularly whether or not the marginal epithelium is attempting to grow over the surface; also their shape, regularity, thickness, and whether undermined or overlapping, everted or depressed. (4) The _surrounding tissues_, as to whether they are congested, oedematous, inflamed, indurated, or otherwise. (5) Whether or not there is _pain_ or tenderness in the raw surface or its surroundings. (6) The _part of the body_ on which it occurs, because certain ulcers have special seats of election--for example, the varicose ulcer in the lower third of the leg, the perforating ulcer on the sole of the foot, and so on. #The Healing Sore.#--If a portion of skin be excised aseptically, and no attempt made to close the wound, the raw surface left is soon covered over with a layer of coagulated blood and lymph. In the course of a few days this is replaced by the growth of _granulations_, which are of uniform size, of a pinkish-red colour, and moist with a slight serous exudate containing a few dead leucocytes. They grow until they reach the level of the surrounding skin, and so fill the gap with a fine velvety mass of granulation tissue. At the edges, the young epithelium may be seen spreading in over the granulations as a fine bluish-white pellicle, which gradually covers the sore, becoming paler in colour as it thickens, and eventually forming the smooth, non-vascular covering of the cicatrix. There is no pain, and the surrounding parts are healthy. This may be used as a type with which to compare the ulcers seen at the bedside, so that we may determine how far, and in what particulars, these differ from the type; and that we may in addition recognise the conditions that have to be counteracted before the characters of the typical healing sore are assumed. For purposes of contrast we may indicate the characters of an open sore in which bacterial infection with pathogenic bacteria has taken place. The layer of coagulated blood and lymph becomes liquefied and is thrown off, and instead of granulations being formed, the tissues exposed on the floor of the ulcer are destroyed by the bacterial toxins, with the formation of minute sloughs and a quantity of pus. The discharge is profuse, thin, acrid, and offensive, and consists of pus, broken-down blood-clot, and sloughs. The edges are inflamed, irregular, and ragged, showing no sign of growing epithelium--on the contrary, the sore may be actually increasing in area by the breaking-down of the tissues at its margins. The surrounding parts are hot, red, swollen, and oedematous; and there is pain and tenderness both in the sore itself and in the parts around. #Classification of Ulcers.#--The nomenclature of ulcers is much involved and gives rise to great confusion, chiefly for the reason that no one basis of classification has been adopted. Thus some ulcers are named according to the causes at work in producing or maintaining them--for example, the traumatic, the septic, and the varicose ulcer; some from the constitutional element present, as the gouty and the diabetic ulcer; and others according to the condition in which they happen to be when seen by the surgeon, such as the weak, the inflamed, and the callous ulcer. So long as we retain these names it will be impossible to find a single basis for classification; and yet many of the terms are so descriptive and so generally understood that it is undesirable to abolish them. We must therefore remain content with a clinical arrangement of ulcers,--it cannot be called a classification,--considering any given ulcer from two points of view: first its _cause_, and second its _present condition_. This method of studying ulcers has the practical advantage that it furnishes us with the main indications for treatment as well as for diagnosis: the cause must be removed, and the condition so modified as to convert the ulcer into an aseptic healing sore. A. #Arrangement of Ulcers according to their Cause.#--Although any given ulcer may be due to a combination of causes, it is convenient to describe the following groups: _Ulcers due to Traumatism._--Traumatism in the form of a _crush_ or _bruise_ is a frequent cause of ulcer formation, acting either by directly destroying the skin, or by so diminishing its vitality that it is rendered a suitable soil for bacteria. If these gain access, in the course of a few days the damaged area of skin becomes of a greyish colour, blebs form on it, and it undergoes necrosis, leaving an unhealthy raw surface when the slough separates. _Heat_ and _prolonged exposure to the Rontgen rays_ or _to radium emanations_ act in a similar way. The _pressure_ of improperly padded splints or other appliances may so far interfere with the circulation of the part pressed upon, that the skin sloughs, leaving an open sore. This is most liable to occur in patients who suffer from some nerve lesion--such as anterior poliomyelitis, or injury of the spinal cord or nerve-trunks. Splint-pressure sores are usually situated over bony prominences, such as the malleoli, the condyles of the femur or humerus, the head of the fibula, the dorsum of the foot, or the base of the fifth metatarsal bone. On removing the splint, the skin of the part pressed upon is found to be of a red or pink colour, with a pale grey patch in the centre, which eventually sloughs and leaves an ulcer. Certain forms of _bed-sore_ are also due to prolonged pressure. Pressure sores are also known to have been produced artificially by malingerers and hysterical subjects. [Illustration: FIG. 14.--Leg Ulcers associated with Varicose Veins and Pigmentation of the Skin.] _Ulcers due to Imperfect Circulation._--Imperfect circulation is an important causative factor in ulceration, especially when it is the _venous return_ that is defective. This is best illustrated in the so-called _leg ulcer_, which occurs most frequently on the front and medial aspect of the lower third of the leg. At this point the anastomosis between the superficial and deep veins of the leg is less free than elsewhere, so that the extra stress thrown upon the surface veins interferes with the nutrition of the skin (Hilton). The importance of imperfect venous return in the causation of such ulcers is evidenced by the fact that as soon as the condition of the circulation is improved by confining the patient to bed and elevating the limb, the ulcer begins to heal, even although all methods of local treatment have hitherto proved ineffectual. In a considerable number of cases, but by no means in all, this form of ulcer is associated with the presence of varicose veins, and in such cases it is spoken of as the _varicose ulcer_ (Fig. 14). The presence of varicose veins is frequently associated with a diffuse brownish or bluish pigmentation of the skin of the lower third of the leg, or with an obstinate form of dermatitis (_varicose eczema_), and the scratching or rubbing of the part is liable to cause a breach of the surface and permit of infection which leads to ulceration. Varicose ulcers may also originate from the bursting of a small peri-phlebitic abscess. Varicose veins in immediate relation to the base of a large chronic ulcer usually become thrombosed, and in time are reduced to fibrous cords, and therefore in such cases haemorrhage is not a common complication. In smaller and more superficial ulcers, however, the destructive process is liable to implicate the wall of the vessel before the occurrence of thrombosis, and to lead to profuse and it may be dangerous bleeding. These ulcers are at first small and superficial, but from want of care, from continued standing or walking, or from injudicious treatment, they gradually become larger and deeper. They are not infrequently multiple, and this, together with their depth, may lead to their being mistaken for ulcers due to syphilis. The base of the ulcer is covered with imperfectly formed, soft, oedematous granulations, which give off a thin sero-purulent discharge. The edges are slightly inflamed, and show no evidence of healing. The parts around are usually pigmented and slightly oedematous, and as a rule there is little pain. This variety of ulcer is particularly prone to pass into the condition known as callous. In _anaemic_ patients, especially young girls, ulcers are occasionally met with which have many of the clinical characters of those associated with imperfect venous return. They are slow to heal, and tend to pass into the condition known as weak. _Ulcers due to Interference with Nerve-Supply._--Any interference with the nerve-supply of the superficial tissues predisposes to ulceration. For example, _trophic_ ulcers are liable to occur in injuries or diseases of the spinal cord, in cerebral paralysis, in limbs weakened by poliomyelitis, in ascending or peripheral neuritis, or after injuries of nerve-trunks. The _acute bed-sore_ is a rapidly progressing form of ulceration, often amounting to gangrene, of portions of skin exposed to pressure when their trophic nerve-supply has been interfered with. [Illustration: FIG. 15.--Perforating Ulcers of Sole of Foot. (From Photograph lent by Sir Montagu Cotterill.)] The _perforating ulcer of the foot_ is a peculiar type of sore which occurs in association with the different forms of peripheral neuritis, and with various lesions of the brain and spinal cord, such as general paralysis, locomotor ataxia, or syringo-myelia (Fig. 15). It also occurs in patients suffering from glycosuria, and is usually associated with arterio-sclerosis--local or general. Perforating ulcer is met with most frequently under the head of the metatarsal bone of the great toe. A callosity forms and suppuration occurs under it, the pus escaping through a small hole in the centre. The process slowly and gradually spreads deeper and deeper, till eventually the bone or joint is reached, and becomes implicated in the destructive process--hence the term "perforating ulcer." The flexor tendons are sometimes destroyed, the toe being dorsiflexed by the unopposed extensors. The depth of the track being so disproportionate to its superficial area, the condition closely simulates a tuberculous sinus, for which it is liable to be mistaken. The raw surface is absolutely insensitive, so that the probe can be freely employed without the patient even being aware of it or suffering the least discomfort--a significant fact in diagnosis. The cavity is filled with effete and decomposing epidermis, which has a most offensive odour. The chronic and intractable character of the ulcer is due to interference with the trophic nerve-supply of the parts, and to the fact that the epithelium of the skin grows in and lines the track leading down to the deepest part of the ulcer and so prevents closure. While they are commonest on the sole of the foot and other parts subjected to pressure, perforating ulcers are met with on the sides and dorsum of the foot and toes, on the hands, and on other parts where no pressure has been exerted. The _tuberculous ulcer_, so often seen in the neck, in the vicinity of joints, or over the ribs and sternum, usually results from the bursting through the skin of a tuberculous abscess. The base is soft, pale, and covered with feeble granulations and grey shreddy sloughs. The edges are of a dull blue or purple colour, and gradually thin out towards their free margins, and in addition are characteristically undermined, so that a probe can be passed for some distance between the floor of the ulcer and the thinned-out edges. Thin, devitalised tags of skin often stretch from side to side of the ulcer. The outline is irregular; small perforations often occur through the skin, and a thin, watery discharge, containing grey shreds of tuberculous debris, escapes. _Bazin's Disease._--This term is applied to an affection of the skin and subcutaneous tissue which bears certain resemblances to tuberculosis. It is met with almost exclusively between the knee and the ankle, and it usually affects both legs. It is commonest in girls of delicate constitution, in whose family history there is evidence of a tuberculous taint. The patient often presents other lesions of a tuberculous character, notably enlarged cervical glands, and phlyctenular ophthalmia. The tubercle bacillus has rarely been found, but we have always observed characteristic epithelioid cells and giant cells in sections made from the edge or floor of the ulcer. [Illustration: FIG. 16.--Bazin's Disease in a girl aet. 16.] The condition begins by the formation in the skin and subcutaneous tissue of dusky or livid nodules of induration, which soften and ulcerate, forming small open sores with ragged and undermined edges, not unlike those resulting from the breaking down of superficial syphilitic gummata (Fig. 16). Fresh crops of nodules appear in the neighbourhood of the ulcers, and in turn break down. While in the nodular stage the affection is sometimes painful, but with the formation of the ulcer the pain subsides. The disease runs a chronic course, and may slowly extend over a wide area in spite of the usual methods of treatment. After lasting for some months, or even years, however, it may eventually undergo spontaneous cure. The most satisfactory treatment is to excise the affected tissues and fill the gap with skin-grafts. [Illustration: FIG. 17.--Syphilitic Ulcers in region of Knee, showing punched-out appearance and raised indurated edges.] The _syphilitic ulcer_ is usually formed by the breaking down of a cutaneous or subcutaneous gumma in the tertiary stage of syphilis. When the gummatous tissue is first exposed by the destruction of the skin or mucous membrane covering it, it appears as a tough greyish slough, compared to "wash leather," which slowly separates and leaves a more or less circular, deep, punched-out gap which shows a few feeble unhealthy granulations and small sloughs on its floor. The edges are raised and indurated; and the discharge is thick, glairy, and peculiarly offensive. The parts around the ulcer are congested and of a dark brown colour. There are usually several such ulcers together, and as they tend to heal at one part while they spread at another, the affected area assumes a sinuous or serpiginous outline. Syphilitic ulcers may be met with in any part of the body, but are most frequent in the upper part of the leg (Fig. 17), especially around the knee-joint in women, and over the ribs and sternum. On healing, they usually leave a depressed and adherent cicatrix. The _scorbutic ulcer_ occurs in patients suffering from scurvy, and is characterised by its prominent granulations, which show a marked tendency to bleed, with the formation of clots, which dry and form a spongy crust on the surface. In _gouty_ patients small ulcers which are exceedingly irritable and painful are liable to occur. _Ulcers associated with Malignant Disease._--Cancer and sarcoma when situated in the subcutaneous tissue may destroy the overlying skin so that the substance of the tumour is exposed. The fungating masses thus produced are sometimes spoken of as malignant ulcers, but as they are essentially different in their nature from all other forms of ulcers, and call for totally different treatment, it is best to consider them along with the tumours with which they are associated. Rodent ulcer, which is one form of cancer of the skin, will be discussed with new growths of the skin. B. #Arrangement of Ulcers according to their Condition.#--Having arrived at an opinion as to the cause of a given ulcer, and placed it in one or other of the preceding groups, the next question to ask is, In what condition do I find this ulcer at the present moment? Any ulcer is in one of three states--healing, stationary, or spreading; although it is not uncommon to find healing going on at one part while the destructive process is extending at another. _The Healing Condition._--The process of healing in an ulcer has already been studied, and we have learned that it takes place by the formation of granulation tissue, which becomes converted into connective tissue, and is covered over by epithelium growing in from the edges. Those ulcers which are _stationary_--that is, neither healing nor spreading--may be in one of several conditions. _The Weak Condition._--Any ulcer may get into a weak state from receiving a blood supply which is defective either in quantity or in quality. The granulations are small and smooth, and of a pale yellow or grey colour, the discharge is small in amount, and consists of thin serum and a few pus cells, and as this dries on the edges it forms scabs which interfere with the growth of epithelium. Should the part become oedematous, either from general causes, such as heart or kidney disease, or from local causes, such as varicose veins, the granulations share in the oedema, and there is an abundant serous discharge. The excessive use of moist dressings leads to a third variety of weak ulcer--namely, one in which the granulations become large, soft, pale, and flabby, projecting beyond the level of the skin and overlapping the edges, which become pale and sodden. The term "proud flesh" is popularly applied to such redundant granulations. [Illustration: FIG. 18.--Callous Ulcer, showing thickened edges and indurated swelling of surrounding parts.] _The Callous Condition._--This condition is usually met with in ulcers on the lower third of the leg, and is often associated with the presence of varicose veins. It is chiefly met with in hospital practice. The want of healing is mainly due to impeded venous return and to oedema and induration of the surrounding skin and cellular tissues (Fig. 18). The induration results from coagulation and partial organisation of the inflammatory effusion, and prevents the necessary contraction of the sore. The base of a callous ulcer lies at some distance below the level of the swollen, thickened, and white edges, and presents a glazed appearance, such granulations as are present being unhealthy and irregular. The discharge is usually watery, and cakes in the dressing. When from neglect and want of cleanliness the ulcer becomes inflamed, there is considerable pain, and the discharge is purulent and often offensive. The prolonged hyperaemia of the tissues in relation to a callous ulcer of the leg often leads to changes in the underlying bones. The periosteum is abnormally thick and vascular, the superficial layers of the bone become injected and porous, and the bones, as a whole, are thickened. In the macerated bone "the surface is covered with irregular, stalactite-like processes or foliaceous masses, which, to a certain extent, follow the line of attachment of the interosseous membrane and of the intermuscular septa" (Cathcart) (Fig. 19). When the whole thickness of the soft tissues is destroyed by the ulcerative process, the area of bone that comes to form the base of the ulcer projects as a flat, porous node, which in its turn may be eroded. These changes as seen in the macerated specimen are often mistaken for disease originating in the bone. [Illustration: FIG. 19.--Tibia and Fibula, showing changes due to chronic ulcer of leg.] The _irritable condition_ is met with in ulcers which occur, as a rule, just above the external malleolus in women of neurotic temperament. They are small in size and have prominent granulations, and by the aid of a probe points of excessive tenderness may be discovered. These, Hilton believed, correspond to exposed nerve filaments. _Ulcers which are spreading_ may be met with in one of several conditions. _The Inflamed Condition._--Any ulcer may become acutely inflamed from the access of fresh organisms, aided by mechanical irritation from trauma, ill-fitting splints or bandages, or want of rest, or from chemical irritants, such as strong antiseptics. The best clinical example of an inflamed ulcer is the venereal soft sore. The base of the ulcer becomes red and angry-looking, the granulations disappear, and a copious discharge of thin yellow pus, mixed with blood, escapes. Sloughs of granulation tissue or of connective tissue may form. The edges become red, ragged, and everted, and the ulcer increases in size by spreading into the inflamed and oedematous surrounding tissues. Such ulcers are frequently multiple. Pain is a constant symptom, and is often severe, and there is usually some constitutional disturbance. The _phagedaenic condition_ is the result of an ulcer being infected with specially virulent bacteria. It occurs in syphilitic ulcers, and rapidly leads to a widespread destruction of tissue. It is also met with in the throat in some cases of scarlet fever, and may give rise to fatal haemorrhage by ulcerating into large blood vessels. All the local and constitutional signs of a severe septic infection are present. #Treatment of Ulcers.#--An ulcer is not only an immediate cause of suffering to the patient, crippling and incapacitating him for his work, but is a distinct and constant menace to his health: the prolonged discharge reduces his strength; the open sore is a possible source of infection by the organisms of suppuration, erysipelas, or other specific diseases; phlebitis, with formation of septic emboli, leading to pyaemia, is liable to occur; and in old persons it is not uncommon for ulcers of long standing to become the seat of cancer. In addition, the offensive odour of many ulcers renders the patient a source of annoyance and discomfort to others. The primary object of treatment in any ulcer is to bring it into the condition of a healing sore. When this has been effected, nature will do the rest, provided extraneous sources of irritation are excluded. Steps must be taken to facilitate the venous return from the ulcerated part, and to ensure that a sufficient supply of fresh, healthy blood reaches it. The septic element must be eliminated by disinfecting the ulcer and its surroundings, and any other sources of irritation must be removed. If the patient's health is below par, good nourishing food, tonics, and general hygienic treatment are indicated. _Management of a Healing Sore._--Perhaps the best dressing for a healing sore is a layer of Lister's perforated oiled-silk protective, which is made to cover the raw surface and the skin for about a quarter of an inch beyond the margins of the sore. Over this three or four thicknesses of sterilised gauze, wrung out of eusol, creolin, or sterilised water, are applied, and covered by a pad of absorbent wool. As far as possible the part should be kept at rest, and the position should be adjusted so as to favour the circulation in the affected area. The dressing may be renewed at intervals, and care must be taken to avoid any rough handling of the sore. Any discharge that lies on the surface should be removed by a gentle stream of lotion rather than by wiping. The area round the sore should be cleansed before the fresh dressing is applied. In some cases, healing goes on more rapidly under a dressing of weak boracic ointment (one-quarter the strength of the pharmacopoeial preparation). The growth of epithelium may be stimulated by a 6 to 8 per cent. ointment of scarlet-red. Dusting powders and poultice dressings are best avoided in the treatment of healing sores. In extensive ulcers resulting from recent burns, if the granulations are healthy and aseptic, skin-grafts may safely be placed on them directly. If, however, their asepticity cannot be relied upon, it is necessary to scrape away the superficial layer of the granulations, the young fibrous tissue underneath being conserved, as it is sufficiently vascular to nourish the grafts placed on it. #Treatment of Special Varieties of Ulcers.#--Before beginning to treat a given ulcer, two questions have to be answered--first, What are the causative conditions present? and second, In what condition do I find the ulcer?--in other words, In what particulars does it differ from a healthy healing sore? If the cause is a local one, it must be removed; if a constitutional one, means must be taken to counteract it. This done, the condition of the ulcer must be so modified as to bring it into the state of a healing sore, after which it will be managed on the lines already laid down. #Treatment in relation to the Cause of the Ulcer.#--_Traumatic Group._--The _prophylaxis_ of these ulcers consists in excluding bacteria, by cleansing crushed or bruised parts, and applying sterilised dressings and properly adjusted splints. If there is reason to fear that the disinfection has not been complete, a Bier's constricting bandage should be applied for some hours each day. These measures will often prevent a grossly injured portion of skin dying, and will ensure asepticity should it do so. In the event of the skin giving way, the same form of dressing should be continued till the slough has separated and a healthy granulating surface is formed. The protective dressing appropriate to a healing sore is then substituted. _Pressure sores_ are treated on the same lines. The treatment of ulcers caused by _burns and scalds_ will be described later. In _ulcers of the leg due to interference with the venous return_, the primary indication is to elevate the limb in order to facilitate the flow of the blood in the veins, and so admit of fresh blood reaching the part. The limb may be placed on pillows, or the foot of the bed raised on blocks, so that the ulcer lies on a higher level than the heart. Should varicose veins be present, the question of operative treatment must be considered. When an _imperfect nerve supply_ is the main factor underlying ulcer formation, prophylaxis is the chief consideration. In patients suffering from spinal injuries or diseases, cerebral paralysis, or affections of the peripheral nerves, all sources of irritation, such as ill-fitting splints, tight bandages, moist applications, and hot bottles, should be avoided. Any part liable to pressure, from the position of the patient or otherwise, must be carefully protected by pads of wool, air-cushions, or water-bags, and must be kept absolutely dry. The skin should be hardened by daily applications of methylated spirit. Should an ulcer form in spite of these precautions, the mildest antiseptics must be employed for bathing and dressing it, and as far as possible all dressings should be dry. The _perforating ulcer_ of the foot calls for special treatment. To avoid pressure on the sole of the foot, the patient must be confined to bed. As the main local obstacle to healing is the down-growth of epithelium along the sides of the ulcer, this must be removed by the knife or sharp spoon. The base also should be excised, and any bone which may have become involved should be gouged away, so as to leave a healthy and vascular surface. The cavity thus formed is stuffed with bismuth or iodoform gauze and encouraged to heal from the bottom. As the parts are insensitive an anaesthetic is not required. After the ulcer has healed, the patient should wear in his boot a thick felt sole with a hole cut out opposite the situation of the cicatrix. When a joint has been opened into, the difficulty of thoroughly getting rid of all unhealthy and infected granulations is so great that amputation may be advisable, but it is to be remembered that ulceration may recur in the stump if pressure is put upon it. The treatment of any nervous disease or glycosuria which may coexist is, of course, indicated. Exposure of the plantar nerves by an incision behind the medial malleolus, and subjecting them to forcible stretching, has been employed by Chipault and others in the treatment of perforating ulcers of the foot. The ulcer that forms in relation to callosities on the sole of the foot is treated by paring away all the thickened skin, after softening it with soda fomentations, removing the unhealthy granulations, and applying stimulating dressings. _Treatment of Ulcers due to Constitutional Causes._--When ulcers are associated with such diseases as tuberculosis, syphilis, diabetes, Bright's disease, scurvy, or gout, these must receive appropriate treatment. The local treatment of the _tuberculous ulcer_ calls for special mention. If the ulcer is of limited extent and situated on an exposed part of the body, the most satisfactory method is complete removal, by means of the knife, scissors, or sharp spoon, of the ulcerated surface and of all the infected area around it, so as to leave a healthy surface from which granulations may spring up. Should the raw surface left be likely to result in an unsightly scar or in cicatricial contraction, skin-grafting should be employed. For extensive ulcers on the limbs, the chest wall, or on other covered parts, or when operative treatment is contra-indicated, the use of tuberculin and exposure to the Rontgen rays have proved beneficial. The induction of passive hyperaemia, by Bier's or by Klapp's apparatus, should also be used, either alone or supplementary to other measures. No ulcerative process responds so readily to medicinal treatment as the _syphilitic ulcer_ does to the intra-venous administration of arsenical preparations of the "606" or "914" groups or to full doses of iodide of potassium and mercury, and the local application of black wash. When the ulceration has lasted for a long time, however, and is widespread and deep, the duration of treatment is materially shortened by a thorough scraping with the sharp spoon. #Treatment in relation to the Condition of the Ulcer.#--_Ulcers in a weak condition._--If the weak condition of the ulcer is due to anaemia or kidney disease, these affections must first be treated. Locally, the imperfect granulations should be scraped away, and some stimulating agent applied to the raw surface to promote the growth of healthy granulations. For this purpose the sore may be covered with gauze smeared with a 6 to 8 per cent. ointment of scarlet-red, the surrounding parts being protected from the irritant action of the scarlet-red by a layer of vaseline. A dressing of gauze moistened with eusol or of boracic lint wrung out of red lotion (2 grains of sulphate of zinc, and 10 minims of compound tincture of lavender, to an ounce of water), and covered with a layer of gutta-percha tissue, is also useful. When the condition has resulted from the prolonged use of moist dressings, these must be stopped, the redundant granulations clipped away with scissors, the surface rubbed with silver nitrate or sulphate of copper (blue-stone), and dry dressings applied. When the ulcer has assumed the characters of a healing sore, skin-grafts may be applied to hasten cicatrisation. _Ulcers in a callous condition_ call for treatment in three directions--(1) The infective element must be eliminated. When the ulcer is foul, relays of charcoal poultices (three parts of linseed meal to one of charcoal), maintained for thirty-six to forty-eight hours, are useful as a preliminary step. The base of the ulcer and the thickened edges should then be freely scraped with a sharp spoon, and the resulting raw surface sponged over with undiluted carbolic acid or iodine, after which an antiseptic dressing is applied, and changed daily till healthy granulations appear. (2) The venous return must be facilitated by elevation of the limb and massage. (3) The induration of the surrounding parts must be got rid of before contraction of the sore is possible. For this purpose the free application of blisters, as first recommended by Syme, leaves little to be desired. Liquor epispasticus painted over the parts, or a large fly-blister (emplastrum cantharidis) applied all round the ulcer, speedily disperses the inflammatory products which cause the induration. The use of elastic pressure or of strapping, of hot-air baths, or the making of multiple incisions in the skin around the ulcer, fulfils the same object. As soon as the ulcer assumes the characters of a healing sore, it should be covered with skin-grafts, which furnish a much better cicatrix than that which forms when the ulcer is allowed to heal without such aid. A more radical method of treatment consists in excising the whole ulcer, including its edges and about a quarter of an inch of the surrounding tissue, as well as the underlying fibrous tissue, and grafting the raw surface. _Ambulatory Treatment._--When the circumstances of the patient forbid his lying up in bed, the healing of the ulcer is much delayed. He should be instructed to take every possible opportunity of placing the limb in an elevated position, and must constantly wear a firm bandage of _elastic webbing_. This webbing is porous and admits of evaporation of the skin and wound secretions--an advantage it has over Martin's rubber bandage. The bandage should extend from the toes to well above the knee, and should always be applied while the patient is in the recumbent position with the leg elevated, preferably before getting out of bed in the morning. Additional support is given to the veins if the bandage is applied as a figure of eight. We have found the following method satisfactory in out-patient practice. The patient lying on a couch, the limb is raised about eighteen inches and kept in this position for five minutes--till the excess of blood has left it. With the limb still raised, the ulcer with the surrounding skin is covered with a layer, about half an inch thick, of finely powdered boracic acid, and the leg, from foot to knee, excluding the sole, is enveloped in a thick layer of wood-wool wadding. This is held in position by ordinary cotton bandages, painted over with liquid starch; while the starch is drying the limb is kept elevated. With this appliance the patient may continue to work, and the dressing does not require to be changed oftener than once in three or four weeks (W. G. Richardson). When an ulcer becomes acutely _inflamed_ as a result of superadded infection, antiseptic measures are employed to overcome the infection, and ichthyol or other soothing applications may be used to allay the pain. The _phagedaenic ulcer_ calls for more energetic means of disinfection; the whole of the affected surface is touched with the actual cautery at a white heat, or is painted with pure carbolic acid. Relays of charcoal poultices are then applied until the spread of the disease is arrested. For the _irritable ulcer_ the most satisfactory treatment is complete excision and subsequent skin-grafting. CHAPTER VI GANGRENE Definition--Types: _Dry_, _Moist_--Varieties--Gangrene primarily due to interference with circulation: _Senile gangrene_; _Embolic gangrene_; _Gangrene following ligation of arteries_; _Gangrene from mechanical causes_; _Gangrene from heat, chemical agents, and cold_; _Diabetic gangrene_; _Gangrene associated with spasm of blood vessels_; _Raynaud's disease_; _Angio-sclerotic gangrene_; _Gangrene from ergot_. Bacterial varieties of gangrene. _Pathology_--clinical varieties--_Acute infective gangrene_; _Malignant oedema_; _Acute emphysematous_ or _gas gangrene_; _Cancrum oris_, _etc_. Bed-sores: _Acute_; _chronic_. Gangrene or mortification is the process by which a portion of tissue dies _en masse_, as distinguished from the molecular or cellular death which constitutes ulceration. The dead portion is known as a _slough_. In this chapter we shall confine our attention to the process as it affects the limbs and superficial parts, leaving gangrene of the viscera to be described in regional surgery. TYPES OF GANGRENE Two distinct types of gangrene are met with, which, from their most obvious point of difference, are known respectively as _dry_ and _moist_, and there are several clinical varieties of each type. Speaking generally, it may be said that dry gangrene is essentially due to a simple _interference with the blood supply_ of a part; while the main factor in the production of moist gangrene is _bacterial infection_. The cardinal signs of gangrene are: change in the colour of the part, coldness, loss of sensation and motor power, and, lastly, loss of pulsation in the arteries. #Dry Gangrene# or #Mummification# is a comparatively slow form of local death due, as a rule, to a diminution in the arterial blood supply of the affected part, resulting from such causes as the gradual narrowing of the lumen of the arteries by disease of their coats, or the blocking of the main vessel by an embolus. As the fluids in the tissues are lost by evaporation the part becomes dry and shrivelled, and as the skin is usually intact, infection does not take place, or if it does, the want of moisture renders the part an unsuitable soil, and the organisms do not readily find a footing. Any spread of the process that may take place is chiefly influenced by the anatomical distribution of the blocked arteries, and is arrested as soon as it reaches an area rich in anastomotic vessels. The dead portion is then cast off, the irritation resulting from the contact of the dead with the still living tissue inducing the formation of granulations on the proximal side of the junction, and these by slowly eating into the dead portion produce a furrow--the _line of demarcation_--which gradually deepens until complete separation is effected. As the muscles and bones have a richer blood supply than the integument, the death of skin and subcutaneous tissues extends higher than that of muscles and bone, with the result that the stump left after spontaneous separation is conical, the end of the bone projecting beyond the soft parts. _Clinical Features._--The part undergoing mortification becomes colder than normal, the temperature falling to that of the surrounding atmosphere. In many instances, but not in all, the onset of the process is accompanied by severe neuralgic pain in the part, probably due to anaemia of the nerves, to neuritis, or to the irritation of the exposed axis cylinders by the dead and dying tissues around them. This pain soon ceases and gives place to a complete loss of sensation. The dead part becomes dry, horny, shrivelled, and semi-transparent--at first of a dark brown, but finally of a black colour, from the dissemination of blood pigment throughout the tissues. There is no putrefaction, and therefore no putrid odour; and the condition being non-infective, there is not necessarily any constitutional disturbance. In itself, therefore, dry gangrene does not involve immediate risk to life; the danger lies in the fact that the breach of surface at the line of demarcation furnishes a possible means of entrance for bacteria, which may lead to infective complications. #Moist Gangrene# is an acute process, the dead part retaining its fluids and so affording a favourable soil for the development of bacteria. The action of the organisms and their toxins on the adjacent tissues leads to a rapid and wide spread of the process. The skin becomes moist and macerated, and bullae, containing dark-coloured fluid or gases, form under the epidermis. The putrefactive gases evolved cause the skin to become emphysematous and crepitant and produce an offensive odour. The tissues assume a greenish-black colour from the formation in them of a sulphide of iron resulting from decomposition of the blood pigment. Under certain conditions the dead part may undergo changes resembling more closely those of ordinary post-mortem decomposition. Owing to its nature the spread of the gangrene is seldom arrested by the natural protective processes, and it usually continues until the condition proves fatal from the absorption of toxins into the circulation. The _clinical features_ vary in the different varieties of moist gangrene, but the local results of bacterial action and the constitutional disturbance associated with toxin absorption are present in all; the prognosis therefore is grave in the extreme. From what has been said, it will be gathered that in dry gangrene there is no urgent call for operation to save the patient's life, the primary indication being to prevent the access of bacteria to the dead part, and especially to the surface exposed at the line of demarcation. In moist gangrene, on the contrary, organisms having already obtained a footing, immediate removal of the dead and dying tissues, as a rule, offers the only hope of saving life. VARIETIES OF GANGRENE #Varieties of Gangrene essentially due to Interference with the Circulation# While the varieties of gangrene included in this group depend primarily on interference with the circulation, it is to be borne in mind that the clinical course of the affection may be profoundly influenced by superadded infection with micro-organisms. Although the bacteria do not play the most important part in producing tissue necrosis, their subsequent introduction is an accident of such importance that it may change the whole aspect of affairs and convert a dry form of gangrene into one of the moist type. Moreover, the low state of vitality of the tissues, and the extreme difficulty of securing and maintaining asepsis, make it a sequel of great frequency. #Senile Gangrene.#--Senile gangrene is the commonest example of local death produced by a _gradual_ diminution in the quantity of blood passing through the parts, as a result of arterio-sclerosis or other chronic disease of the arteries leading to diminution of their calibre. It is the most characteristic example of the dry type of gangrene. As the term indicates, it occurs in old persons, but the patient's age is to be reckoned by the condition of his arteries rather than by the number of his years. Thus the vessels of a comparatively young man who has suffered from syphilis and been addicted to alcohol are more liable to atheromatous degeneration leading to this form of gangrene than are those of a much older man who has lived a regular and abstemious life. This form of gangrene is much more common in men than in women. While it usually attacks only one foot, it is not uncommon for the other foot to be affected after an interval, and in some cases it is bilateral from the outset. It must clearly be understood that any form of gangrene may occur in old persons, the term senile being here restricted to that variety which results from arterio-sclerosis. [Illustration: FIG. 20.--Senile Gangrene of the Foot, showing line of demarcation.] _Clinical Features._--The commonest seat of the disease is in the toes, especially the great toe, whence it spreads up the foot to the heel, or even to the leg (Fig. 20). There is often a history of some slight injury preceding its onset. The vitality of the tissues is so low that the balance between life and death may be turned by the most trivial injury, such as a cut while paring a toe-nail or a corn, a blister caused by an ill-fitting shoe or the contact of a hot-bottle. In some cases the actual gangrene is determined by thrombosis of the popliteal or tibial arteries, which are already narrowed by obliterating endarteritis. It is common to find that the patient has been troubled for a long time before the onset of definite signs of gangrene, with cold feet, with tingling and loss of feeling, or a peculiar sensation as if walking on cotton wool. The first evidence of the death of the part varies in different cases. Sometimes a dark-blue spot appears on the medial side of the great toe and gradually increases in size; or a blister containing blood-stained fluid may form. Streaks or patches of dark-blue mottling appear higher up on the foot or leg. In other cases a small sore surrounded by a congested areola forms in relation to the nail and refuses to heal. Such sores on the toes of old persons are always to be looked upon with suspicion and treated with the greatest care; and the urine should be examined for sugar. There is often severe, deep-seated pain of a neuralgic character, with cramps in the limb, and these may persist long after a line of demarcation has formed. The dying part loses sensibility to touch and becomes cold and shrivelled. All the physical appearances and clinical symptoms associated with dry gangrene supervene, and the dead portion is delimited by a line of demarcation. If this forms slowly and irregularly it indicates a very unsatisfactory condition of the circulation; while, if it forms quickly and decidedly, the presumption is that the circulation in the parts above is fairly good. The separation of the dead part is always attended with the risk of infection taking place, and should this occur, the temperature rises and other evidences of toxaemia appear. _Prophylaxis._--The toes and feet of old people, the condition of whose circulation predisposes them to gangrene, should be protected from slight injuries such as may be received while paring nails, cutting corns, or wearing ill-fitting boots. The patient should also be warned of the risk of exposure to cold, the use of hot-bottles, and of placing the feet near a fire. Attempts have been made to improve the peripheral circulation by establishing an anastomosis between the main artery of a limb and its companion vein, so that arterial blood may reach the peripheral capillaries--reversal of the circulation--but the clinical results have proved disappointing. (See _Op. Surg._, p. 29.) _Treatment._--When there is evidence that gangrene has occurred, the first indication is to prevent infection by purifying the part, and after careful drying to wrap it in a thick layer of absorbent and antiseptic wool, retained in place by a loosely applied bandage. A slight degree of elevation of the limb is an advantage, but it must not be sufficient to diminish the amount of blood entering the part. Hot-bottles are to be used with the utmost caution. As absolute dryness is essential, ointments or other greasy dressings are to be avoided, as they tend to prevent evaporation from the skin. Opium should be given freely to alleviate pain. Stimulation is to be avoided, and the patient should be carefully dieted. When the gangrene is limited to the toes in old and feeble patients, some surgeons advocate the expectant method of treatment, waiting for a line of demarcation to form and allowing the dead part to be separated. This takes place so slowly, however, that it necessitates the patient being laid up for many weeks, or even months; and we agree with the majority in advising early amputation. In this connection it is worthy of note that there are certain points at which gangrene naturally tends to become arrested--namely, at the highly vascular areas in the neighbourhood of joints. Thus gangrene of the great toe often stops when it reaches the metatarso-phalangeal joint; or if it trespasses this limit it may be arrested either at the tarso-metatarsal or at the ankle joint. If these be passed, it usually spreads up the leg to just below the knee before signs of arrestment appear. Further, it is seen from pathological specimens that the spread is greater on the dorsal than on the plantar aspect, and that the death of skin and subcutaneous tissues extends higher than that of bone and muscle. These facts furnish us with indications as to the seat and method of amputation. Experience has proved that in senile gangrene of the lower extremity the most reliable and satisfactory results are obtained by amputating in the region of the knee, care being taken to perform the operation so as to leave the prepatellar anastomosis intact by retaining the patella in the anterior flap. The most satisfactory operation in these cases is Gritti's supra-condylar amputation. Haemorrhage is easily controlled by digital pressure, and the use of a tourniquet should be dispensed with, as the constriction of the limb is liable to interfere with the vitality of the flaps. When the tibial vessels can be felt pulsating at the ankle it may be justifiable, if the patient urgently desires it, to amputate lower than the knee; but there is considerable risk of gangrene recurring in the stump and necessitating a second operation. That amputation for senile gangrene performed between the ankle and the knee seldom succeeds, is explained by the fact that the vascular obstruction is usually in the upper part of the posterior tibial artery, and the operation is therefore performed through tissues with an inadequate blood supply. It is not uncommon, indeed, on amputating above the knee, to find even the popliteal artery plugged by a clot. This should be removed at the amputation by squeezing the vessel from above downward by a "milking" movement, or by "catheterising the artery" with the aid of a cannula with a terminal aperture. It is to be borne in mind that the object of amputation in these cases is merely to remove the gangrenous part, and so relieve the patient of the discomfort and the risks from infection which its presence involves. While it is true that in many of these patients the operation is borne remarkably well, it must be borne in mind that those who suffer from senile gangrene are of necessity bad lives, and a guarded opinion should be expressed as to the prospects of survival. The possibility of the disease developing in the other limb has already been referred to. [Illustration: FIG. 21.--Embolic Gangrene of Hand and Arm.] #Embolic Gangrene# (Fig. 21).--This is the most typical form of gangrene resulting from the _sudden_ occlusion of the main artery of a part, whether by the impaction of an embolus or the formation of a thrombus in its lumen, when the collateral circulation is not sufficiently free to maintain the vitality of the tissues. There is sudden pain at the site of impaction of the embolus, and the pulses beyond are lost. The limb becomes cold, numb, insensitive, and powerless. It is often pale at first--hence the term "white gangrene" sometimes applicable to the early appearances, which closely resemble those presented by the limb of a corpse. If the part is aseptic it shrivels, and presents the ordinary features of dry gangrene. It is liable, however, especially in the lower extremity and when the veins also are obstructed, to become infected and to assume the characters of the moist type. The extent of the gangrene depends upon the site of impaction of the embolus, thus if the _abdominal aorta_ becomes suddenly occluded by an embolus at its bifurcation, the obstruction of the iliacs and femorals induces symmetrical gangrene of both extremities as high as the inguinal ligaments. When gangrene follows occlusion of the _external iliac_ or of the _femoral artery_ above the origin of its deep branch, the death of the limb extends as high as the middle or upper third of the thigh. When the _femoral_ below the origin of its deep branch or the _popliteal artery_ is obstructed, the veins remaining pervious, the anastomosis through the profunda is sufficient to maintain the vascular supply, and gangrene does not necessarily follow. The rupture of a popliteal aneurysm, however, by compressing the vein and the articular branches, usually determines gangrene. When an embolus becomes impacted at the _bifurcation of the popliteal_, if gangrene ensues it usually spreads well up the leg. When the _axillary artery_ is the seat of embolic impaction, and gangrene ensues, the process usually reaches the middle of the upper arm. Gangrene following the blocking of the _brachial_ at its bifurcation usually extends as far as the junction of the lower and middle thirds of the forearm. Gangrene due to thrombosis or embolism is sometimes met with in patients recovering from typhus, typhoid, or other fevers, such as that associated with child-bed. It occurs in peripheral parts, such as the toes, fingers, nose, or ears. _Treatment._--The general treatment of embolic gangrene is the same as that for the senile form. Success has followed opening the artery and removing the embolus. The artery is exposed at the seat of impaction and, having been clamped above and below, a longitudinal opening is made and the clot carefully extracted with the aid of forceps; it is sometimes unexpectedly long (one recorded from the femoral artery measured nearly 34 inches); the wound in the artery is then sewn up with fine silk soaked in paraffin. When amputation is indicated, it must be performed sufficiently high to ensure a free vascular supply to the flaps. #Gangrene following Ligation of Arteries.#--After the ligation of an artery in its continuity--for example, in the treatment of aneurysm--the limb may for some days remain in a condition verging on gangrene, the distal parts being cold, devoid of sensation, and powerless. As the collateral circulation is established, the vitality of the tissues is gradually restored and these symptoms pass off. In some cases, however,--and especially in the lower extremity--gangrene ensues and presents the same characters as those resulting from embolism. It tends to be of the dry type. The occlusion of the vein as well as the artery is not found to increase the risk of gangrene. #Gangrene from Mechanical Constriction of the Vessels of the part.#--The application of a bandage or plaster-of-Paris case too tightly, or of a tourniquet for too long a time, has been known to lead to death of the part beyond; but such cases are rare, as are also those due to the pressure of a fractured bone or of a tumour on a large artery or vein. When gangrene occurs from such causes, it tends to be of the moist type. Much commoner is it to meet with localised areas of necrosis due to the excessive _pressure of splints_ over bony prominences, such as the lateral malleolus, the medial condyle of the humerus, or femur, or over the dorsum of the foot. This is especially liable to occur when the nutrition of the skin is depressed by any interference with its nerve-supply, such as follows injuries to the spine or peripheral nerves, disease of the brain, or acute anterior poliomyelitis. When the splint is removed the skin pressed upon is found to be of a pale yellow or grey colour, and is surrounded by a ring of hyperaemia. If protected from infection, the clinical course is that of dry gangrene. Bed-sores, which are closely allied to pressure sores, will be described at the end of this chapter. When a localised portion of tissue, for example, a piece of skin, is so severely _crushed_ or _bruised_ that its blood vessels are occluded and its structure destroyed, it dies, and, if not infected with bacteria, dries up, and the shrivelled brown skin is slowly separated by the growth of granulation tissue beneath and around it. Fingers, toes, or even considerable portions of limbs may in the same way be suddenly destroyed by severe trauma, and undergo mummification. If organisms gain access, typical moist gangrene may ensue, or changes similar to those of ordinary post-mortem decomposition may take place. _Treatment._--The first indication is to exclude bacteria by purifying the damaged part and its surroundings, and applying dry, non-irritating dressings. When these measures are successful, dry gangrene ensues. The raw surface left after the separation of the dead skin may be allowed to heal by granulation, or may be covered by skin-grafts. In the case of a finger or a limb it is not necessary to wait until spontaneous separation takes place, as this is often a slow process. When a well-marked line of demarcation has formed, amputation may be performed just sufficiently far above it to enable suitable flaps to be made. The end of a stump, after spontaneous separation of the gangrenous portion, requires to be trimmed, sufficient bone being removed to permit of the soft parts coming together. If moist gangrene supervenes, amputation must be performed without delay, and at a higher level. #Gangrene from Heat, Chemical Agents, and Cold.#--Severe #burns# and #scalds# may be followed by necrosis of tissue. So long as the parts are kept absolutely dry--as, for example, by the picric acid method of treatment--the grossly damaged portions of tissue undergo dry gangrene; but when wet or oily dressings are applied and organisms gain access, moist gangrene follows. Strong #chemical agents#, such as caustic potash, nitric or sulphuric acid, may also induce local tissue necrosis, the general appearances of the lesions produced being like those of severe burns. The resulting sloughs are slow to separate, and leave deep punched-out cavities which are long of healing. #Carbolic Gangrene.#--Carbolic acid, even in comparatively weak solution, is liable to induce dry gangrene when applied as a fomentation to a finger, especially in women and children. Thrombosis occurs in the blood vessels of the part, which at first is pale and soft, but later becomes dark and leathery. On account of the anaesthetic action of carbolic acid, the onset of the process is painless, and the patient does not realise his danger. A line of demarcation soon forms, but the dead part separates very slowly. #Gangrene from Frost-bite.#--It is difficult to draw the line between the third degree of chilblain and the milder forms of true frost-bite; the difference is merely one of degree. Frost-bite affects chiefly the toes and fingers--especially the great toe and the little finger--the ears, and the nose. In this country it is seldom seen except in members of the tramp class, who, in addition to being exposed to cold by sleeping in the open air, are ill-fed and generally debilitated. The condition usually manifests itself after the parts, having been subjected to extreme cold, are brought into warm surroundings. The first symptom is numbness in the part, followed by a sense of weight, tingling, and finally by complete loss of sensation. The part attacked becomes white and bleached-looking, feels icy cold, and is insensitive to touch. Either immediately, or, it may be, not for several days, it becomes discoloured and swollen, and finally contracts and shrivels. Above the dead area the limb may be the seat of excruciating pain. The dead portion is cast off, as in other forms of dry gangrene, by the formation of a line of demarcation. To prevent the occurrence of gangrene from frost-bite it is necessary to avoid the sudden application of heat. The patient should be placed in a cold room, and the part rubbed with snow, or put in a cold bath, and have light friction applied to it. As the circulation is restored the general surroundings and the local applications are gradually made warmer. Elevation of the part, wrapping it in cotton wool, and removal to a warmer room, are then permissible, and stimulants and warm drinks may be given with caution. When by these means the occurrence of gangrene is averted, recovery ensues, its onset being indicated by the white parts assuming a livid red hue and becoming the seat of an acute burning sensation. A condition known as _Trench feet_ was widely prevalent amongst the troops in France during the European War. Although allied to frost-bite, cold appears to play a less important part in its causation than humidity and constriction of the limbs producing ischaemia of the feet. Changes were found in the endothelium of the blood vessels, the axis cylinders of nerves, and the muscles. The condition does not occur in civil life. #Diabetic Gangrene.#--This form of gangrene is prone to occur in persons over fifty years of age who suffer from glycosuria. The arteries are often markedly diseased. In some cases the existence of the glycosuria is unsuspected before the onset of the gangrene, and it is only on examining the urine that the cause of the condition is discovered. The gangrenous process seldom begins as suddenly as that associated with embolism, and, like senile gangrene, which it may closely simulate in its early stages, it not infrequently begins after a slight injury to one of the toes. It but rarely, however, assumes the dry, shrivelling type, as a rule being attended with swelling, oedema, and dusky redness of the foot, and severe pain. According to Paget, the dead part remains warm longer than in other forms of senile gangrene; there is a greater tendency for patches of skin at some distance from the primary seat of disease to become gangrenous, and for the death of tissue to extend upwards in the subcutaneous planes, leaving the overlying skin unaffected. The low vitality of the tissues favours the growth of bacteria, and if these gain access, the gangrene assumes the characters of the moist type and spreads rapidly. The rules for amputation are the same as those governing the treatment of senile gangrene, the level at which the limb is removed depending upon whether the gangrene is of the dry or moist type. The general treatment for diabetes must, of course, be employed whether amputation is performed or not. Paget recommended that the dietetic treatment should not be so rigid as in uncomplicated diabetes, and that opium should be given freely. The _prognosis_ even after amputation is unfavourable. In many cases the patient dies with symptoms of diabetic coma within a few days of the operation; or, if he survives this, he may eventually succumb to diabetes. In others there is sloughing of the flaps and death results from toxaemia. Occasionally the other limb becomes gangrenous. On the other hand, the glycosuria may diminish or may even disappear after amputation. #Gangrene associated with Spasm of Blood Vessels.#--#Raynaud's Disease#, or symmetrical gangrene, is supposed to be due to spasm of the arterioles, resulting from peripheral neuritis. It occurs oftenest in women, between the ages of eighteen and thirty, who are the subjects of uterine disorders, anaemia, or chlorosis. Cold is an aggravating factor, as the disease is commonest during the winter months. The digits of both hands or the toes of both feet are simultaneously attacked, and the disease seldom spreads beyond the phalanges or deeper than the skin. The first evidence is that the fingers become cold, white, and insensitive to touch and pain. These attacks of _local syncope_ recur at varying intervals for months or even years. They last for a few minutes or even for some hours, and as they pass off the parts become hyperaemic and painful. A more advanced stage of the disease is known as _local asphyxia_. The circulation through the fingers becomes exceedingly sluggish, and the parts assume a dull, livid hue. There is swelling and burning or shooting pain. This may pass off in a few days, or may increase in severity, with the formation of bullae, and end in dry gangrene. As a rule, the slough which forms is comparatively small and superficial, but it may take some months to separate. The condition tends to recur in successive winters. The _treatment_ consists in remedying any nervous or uterine disorder that may be present, keeping the parts warm by wrapping them in cotton wool, and in the use of hot-air or electric baths, the parts being immersed in water through which a constant current is passed. When gangrene occurs, it is treated on the same lines as other forms of dry gangrene, but if amputation is called for it is only with a view to removing the dead part. #Angio-sclerotic Gangrene.#--A form of gangrene due to _angio-sclerosis_ is occasionally met with in young persons, even in children. It bears certain analogies to Raynaud's disease in that spasm of the vessels plays a part in determining the local death. The main arteries are narrowed by hyperplastic endarteritis followed by thrombosis, and similar changes are found in the veins. The condition is usually met with in the feet, but the upper extremity may be affected, and is attended with very severe pain, rendering sleep impossible. The patient is liable to sudden attacks of numbness, tingling and weakness of the limbs which pass off with rest--_intermittent claudication_. During these attacks the large arteries--femoral, brachial, and subclavian--can be felt as firm cords, while pulsation is lost in the peripheral vessels. Gangrene eventually ensues, is attended with great pain and runs a slow course. It is treated on the same lines as Raynaud's disease. #Gangrene from Ergot.#--Gangrene may occur from interference with blood supply, the result of tetanic contraction of the minute vessels, such as results in ill-nourished persons who eat large quantities of coarse rye bread contaminated with the _claviceps purpurea_ and containing the ergot of rye. It has also occurred in the fingers of patients who have taken ergot medicinally over long periods. The gangrene, which attacks the toes, fingers, ears, or nose, is preceded by formication, numbness, and pains in the parts to be affected, and is of the dry variety. In this country it is usually met with in sailors off foreign ships, whose dietary largely consists of rye bread. Trivial injuries may be the starting-point, the anaesthesia produced by the ergotin preventing the patient taking notice of them. Alcoholism is a potent predisposing cause. As it is impossible to predict how far the process will spread, it is advisable to wait for the formation of a line of demarcation before operating, and then to amputate immediately above the dead part. BACTERIAL VARIETIES OF GANGRENE The acute bacillary forms of gangrene all assume the moist type from the first, and, spreading rapidly, result in extensive necrosis of tissue, and often end fatally. The infection is usually a mixed one in which anaerobic bacteria predominate. The anaerobe most constantly present is the _bacillus aerogenes capsulatus_, usually in association with other anaerobes, and sometimes with pyogenic diplo- and streptococci. According to the mode of action of the associated organisms and the combined effects of their toxins on the tissues, the gangrenous process presents different pathological and clinical features. Some combinations, for example, result in a rapidly spreading cellulitis with early necrosis of connective tissue accompanied by thrombosis throughout the capillary and venous circulation of the parts implicated; other combinations cause great oedema of the part, and others again lead to the formation of gases in the tissues, particularly in the muscles. These different effects do not appear to be due to a specific action of any one of the organisms present, but to the combined effect of a particular group living in symbiosis. According as the cellulitic, the oedematous, or the gaseous characteristics predominate, the clinical varieties of bacillary gangrene may be separately described, but it must be clearly understood that they frequently overlap and cannot always be distinguished from one another. #Clinical Varieties of Bacillary Gangrene.#--#Acute infective gangrene# is the form most commonly met with in civil practice. It may follow such trivial injuries as a pin-prick or a scratch, the signs of acute cellulitis rapidly giving place to those of a spreading gangrene. Or it may ensue on a severe railway, machinery, or street accident, when lacerated and bruised tissues are contaminated with gross dirt. Often within a few hours of the injury the whole part rapidly becomes painful, swollen, oedematous, and tense. The skin is at first glazed, and perhaps paler than normal, but soon assumes a dull red or purplish hue, and bullae form on the surface. Putrefactive gases may be evolved in the tissues, and their presence is indicated by emphysematous crackling when the part is handled. The spread of the disease is so rapid that its progress is quite visible from hour to hour, and may be traced by the occurrence of red lines along the course of the lymphatics of the limb. In the most acute cases the death of the affected part takes place so rapidly that the local changes indicative of gangrene have not time to occur, and the fact that the part is dead may be overlooked. [Illustration: FIG. 22.--Gangrene of Terminal Phalanx of Index-Finger, following cellulitis of hand resulting from a scratch on the palm of the hand.] Rigors may occur, but the temperature is not necessarily raised--indeed, it is sometimes subnormal. The pulse is small, feeble, rapid, and irregular. Unless amputation is promptly performed, death usually follows within thirty-six or forty-eight hours. Even early operation does not always avert the fatal issue, because the quantity of toxin absorbed and its extreme virulence are often more than even a robust subject can outlive. _Treatment._--Every effort must be made to purify all such wounds as are contaminated by earth, street dust, stable refuse, or other forms of gross dirt. Devitalised and contaminated tissue is removed with the knife or scissors and the wound purified with antiseptics of the chlorine group or with hydrogen peroxide. If there is a reasonable prospect that infection has been overcome, the wound may be at once sutured, but if this is doubtful it is left open and packed or irrigated. When acute gangrene has set in no treatment short of amputation is of any avail, and the sooner this is done, the greater is the hope of saving the patient. The limb must be amputated well beyond the apparent limits of the infected area, and stringent precautions must be taken to avoid discharge from the already gangrenous area reaching the operation wound. An assistant or nurse, who is to take no other part in the operation, is told off to carry out the preliminary purification, and to hold the limb during the operation. #Malignant Oedema.#--This form of acute gangrene has been defined as "a spreading inflammatory oedema attended with emphysema, and ultimately followed by gangrene of the skin and adjacent parts." The predominant organism is the _bacillus of malignant oedema_ or _vibrion septique_ of Pasteur, which is found in garden soil, dung, and various putrefying substances. It is anaerobic, and occurs as long, thick rods with somewhat rounded ends and several laterally placed flagella. Spores, which have a high power of resistance, form in the centre of the rods, and bulge out the sides so as to give the organisms a spindle-shaped outline. Other pathogenic organisms are also present and aid the specific bacillus in its action. At the bedside it is difficult, if not impossible, to distinguish it from acute infective gangrene. Both follow on the same kinds of injury and run an exceedingly rapid course. In malignant oedema, however, the incidence of the disease is mainly on the superficial parts, which become oedematous and emphysematous, and acquire a marbled appearance with the veins clearly outlined. Early disappearance of sensation is a particularly grave symptom. Bullae form on the skin, and the tissues have "a peculiar heavy but not putrid odour." The constitutional effects are extremely severe, and death may ensue within a few hours. #Acute Emphysematous# or #Gas Gangrene# was prevalent in certain areas at various periods during the European War. It follows infection of lacerated wounds with the _bacillus aerogenes capsulatus_, usually in combination with other anaerobes, and its main incidence is on the muscles, which rapidly become infiltrated with gas that spreads throughout the whole extent of the muscle, disintegrating its fibres and leading to necrosis. The gangrenous process spreads with appalling rapidity, the limb becoming enormously swollen, painful, and crepitant or even tympanitic. Patches of coppery or purple colour appear on the skin, and bullae containing blood-stained serum form on the surface. The toxaemia is profound, and the face and lips assume a characteristic cyanosis. The condition is attended with a high mortality. Only in the early stages and when the infection is limited are local measures successful in arresting the spread; in more severe cases amputation is the only means of saving life. #Cancrum Oris# or #Noma#.--This disease is believed to be due to a specific bacillus, which occurs in long delicate rods, and is chiefly found at the margin of the gangrenous area. It is prone to attack unhealthy children from two to five years of age, especially during their convalescence from such diseases as measles, scarlet fever, or typhoid, but may attack adults when they are debilitated. It is most common in the mouth, but sometimes occurs on the vulva. In the mouth it begins as an ulcerative stomatitis, more especially affecting the gums or inner aspect of the cheek. The child lies prostrated, and from the open mouth foul-smelling saliva, streaked with blood, escapes; the face is of an ashy-grey colour, the lips dark and swollen. On the inner aspect of the cheek is a deeply ulcerated surface, with sloughy shreds of dark-brown or black tissue covering its base; the edges are irregular, firm, and swollen, and the surrounding mucous membrane is infiltrated and oedematous. In the course of a few hours a dark spot appears on the outer aspect of the cheek, and rapidly increases in size; towards the centre it is black, shading off through blue and grey into a dark-red area which extends over the cheek (Fig. 23). The tissue implicated is at first firm and indurated, but as it loses its vitality it becomes doughy and sodden. Finally a slough forms, and, when it separates, the cheek is perforated. Meanwhile the process spreads inside the mouth, and the gums, the floor of the mouth, or even the jaws, may become gangrenous and the teeth fall out. The constitutional disturbance is severe, the temperature raised, and the pulse feeble and rapid. The extremely foetid odour which pervades the room or even the house the patient occupies, is usually sufficient to suggest the diagnosis of cancrum oris. The odour must not be mistaken for that due to decomposition of sordes on the teeth and gums of a debilitated patient. The _prognosis_ is always grave in the extreme, the main risks being general toxaemia and septic pneumonia. When recovery takes place there is serious deformity, and considerable portions of the jaws may be lost by necrosis. [Illustration: FIG. 23.--Cancrum oris. (From a photograph lent by Sir George T. Beatson.)] _Treatment._--The only satisfactory treatment is thorough removal under an anaesthetic of all the sloughy tissue, with the surrounding zone in which the organisms are active. This is most efficiently accomplished by the knife or scissors, cutting until the tissue bleeds freely, after which the raw surface is painted with undiluted carbolic acid and dressed with iodoform gauze. It may be necessary to remove large pieces of bone when the necrotic process has implicated the jaws. The mouth must be constantly sprayed with peroxide of hydrogen, and washed out with a disinfectant and deodorant lotion, such as Condy's fluid. The patient's general condition calls for free stimulation. The deformity resulting from these necessarily heroic measures is not so great as might be expected, and can be further diminished by plastic operations, which should be undertaken before cicatricial contraction has occurred. BED-SORES Bed-sores are most frequently met with in old and debilitated patients, or in those whose tissues are devitalised by acute or chronic diseases associated with stagnation of blood in the peripheral veins. Any interference with the nerve-supply of the skin, whether from injury or disease of the central nervous system or of the peripheral nerves, strongly predisposes to the formation of bed-sores. Prolonged and excessive pressure over a bony prominence, especially if the parts be moist with skin secretions, urine, or wound discharges, determines the formation of a sore. Excoriations, which may develop into true bed-sores, sometimes form where two skin surfaces remain constantly apposed, as in the region of the scrotum or labium, under pendulous mammae, or between fingers or toes confined in a splint. [Illustration: FIG. 24.--Acute Bed-Sores over Right Buttock.] _Clinical Features._--Two clinical varieties are met with--the acute and the chronic bed-sore. The _acute_ bed-sore usually occurs over the sacrum or buttock. It develops rapidly after spinal injuries and in the course of certain brain diseases. The part affected becomes red and congested, while the surrounding parts are oedematous and swollen, blisters form, and the skin loses its vitality (Fig. 24). In advanced cases of general paralysis of the insane, a peculiar form of acute bed-sore beginning as a blister, and passing on to the formation of a black, dry eschar, which slowly separates, occurs on such parts as the medial side of the knee, the angle of the scapula, and the heel. The _chronic_ bed-sore begins as a dusky reddish purple patch, which gradually becomes darker till it is almost black. The parts around are oedematous, and a blister may form. This bursts and exposes the papillae of the skin, which are of a greenish hue. A tough greyish-black slough forms, and is slowly separated. It is not uncommon for the gangrenous area to continue to spread both in width and in depth till it reaches the periosteum or bone. Bed-sores over the sacrum sometimes implicate the vertebral canal and lead to spinal meningitis, which usually proves fatal. In old and debilitated patients the septic absorption taking place from a bed-sore often proves a serious complication of other surgical conditions. From this cause, for example, old people may succumb during the treatment of a fractured thigh. The granulating surface left on the separation of the slough tends to heal comparatively rapidly. _Prevention of Bed-sores._--The first essential in the prevention of bed-sores is the regular changing of the patient's position, so that no one part of the body is continuously pressed upon for any length of time. Ring-pads of wool, air-cushions, or water-beds are necessary to remove pressure from prominent parts. Absolute dryness of the skin is all-important. At least once a day, the sacrum, buttocks, shoulder-blades, heels, elbows, malleoli, or other parts exposed to pressure, must be sponged with soap and water, thoroughly dried, and then rubbed with methylated spirit, which is allowed to dry on the skin. Dusting the part with boracic acid powder not only keeps it dry, but prevents the development of bacteria in the skin secretions. In operation cases, care must be taken that irritating chemicals used to purify the skin do not collect under the patient and remain in contact with the skin of the sacrum and buttocks during the time he is on the operating-table. There is reason to believe that the so-called "post-operation bed-sore" may be due to such causes. A similar result has been known to follow soiling of the sheets by the escape of a turpentine enema. _Treatment._--Once a bed-sore has formed, every effort must be made to prevent its spread. Alcohol is used to cleanse the broken surface, and dry absorbent dressings are applied and frequently changed. It is sometimes found necessary to employ moist or oily substances, such as boracic poultices, eucalyptus ointment, or balsam of Peru, to facilitate the separation of sloughs, or to promote the growth of granulations. In patients who are not extremely debilitated the slough may be excised, the raw surface scraped, and then painted with iodine. Skin-grafting is sometimes useful in covering in the large raw surface left after separation or removal of sloughs. CHAPTER VII BACTERIAL AND OTHER WOUND INFECTIONS _Erysipelas_--_Diphtheria_--_Tetanus_--_Hydrophobia_--_Anthrax_-- _Glanders_--_Actinomycosis_--_Mycetoma_--_Delhi boil_--_Chigoe_--_Poisoning by insects_--_Snake-bites_. ERYSIPELAS Erysipelas, popularly known as "rose," is an acute spreading infective disease of the skin or of a mucous membrane due to the action of a streptococcus. Infection invariably takes place through an abrasion of the surface, although this may be so slight that it escapes observation even when sought for. The streptococci are found most abundantly in the lymph spaces just beyond the swollen margin of the inflammatory area, and in the serous blebs which sometimes form on the surface. #Clinical Features.#--_Facial erysipelas_ is the commonest clinical variety, infection usually occurring through some slight abrasion in the region of the mouth or nose, or from an operation wound in this area. From this point of origin the inflammation may spread all over the face and scalp as far back as the nape of the neck. It stops, however, at the chin, and never extends on to the front of the neck. There is great oedema of the face, the eyes becoming closed up, and the features unrecognisable. The inflammation may spread to the meninges, the intracranial venous sinuses, the eye, or the ear. In some cases the erysipelas invades the mucous membrane of the mouth, and spreads to the fauces and larynx, setting up an oedema of the glottis which may prove dangerous to life. Erysipelas occasionally attacks an operation wound that has become septic; and it may accompany septic infection of the genital tract in puerperal women, or the separation of the umbilical cord in infants (_erysipelas neonatorum_). After an incubation period, which varies from fifteen to sixty hours, the patient complains of headache, pains in the back and limbs, loss of appetite, nausea, and frequently there is vomiting. He has a chill or slight rigor, initiating a rise of temperature to 103 o, 104 o, or 105 o F.; and a full bounding pulse of about 100 (Fig. 25). The tongue is foul, the breath heavy, and, as a rule, the bowels are constipated. There is frequently albuminuria, and occasionally nocturnal delirium. A moderate degree of leucocytosis (15,000 to 20,000) is usually present. Around the seat of inoculation a diffuse red patch forms, varying in hue from a bright scarlet to a dull brick-red. The edges are slightly raised above the level of the surrounding skin, as may readily be recognised by gently stroking the part from the healthy towards the affected area. The skin is smooth, tense, and glossy, and presents here and there blisters filled with serous fluid. The local temperature is raised, and the part is the seat of a burning sensation and is tender to the touch, the most tender area being the actively spreading zone which lies about half an inch beyond the red margin. [Illustration: FIG. 25.--Chart of Erysipelas occurring in a wound.] The disease tends to spread spasmodically and irregularly, and the direction and extent of its progress may be recognised by mapping out the peripheral zone of tenderness. Red streaks appear along the lines of the superficial lymph vessels, and the deep lymphatics may sometimes be palpated as firm, tender cords. The neighbouring glands, also, are generally enlarged and tender. The disease lasts for from two or three days to as many weeks, and relapses are frequent. Spontaneous resolution usually takes place, but the disease may prove fatal from absorption of toxins, involvement of the brain or meninges, or from general streptococcal infection. #Complications.#--_Diffuse suppurative cellulitis_ is the most serious local complication, and results from a mixed infection with other pyogenic bacteria. Small _localised superficial abscesses_ may form during the convalescent stage. They are doubtless due to the action of skin bacteria, which attack the tissues devitalised by the erysipelas. A persistent form of _oedema_ sometimes remains after recurrent attacks of erysipelas, especially when they affect the face or the lower extremity, a condition which is referred to with elephantiasis. #Treatment.#--The first indication is to endeavour to arrest the spread of the process. We have found that by painting with linimentum iodi, a ring half an inch broad, about an inch in front of the peripheral tender zone--not the red margin--an artificial leucocytosis is produced, and the advancing streptococci are thereby arrested. Several coats of the iodine are applied, one after the other, and this is repeated daily for several days, even although the erysipelas has not overstepped the ring. Success depends upon using the liniment of iodine (the tincture is not strong enough), and in applying it well in front of the disease. To allay pain the most useful local applications are ichthyol ointment (1 in 6), or lead and opium fomentations. The general treatment consists in attending to the emunctories, in administrating quinine in small--two-grain--doses every four hours, or salicylate of iron (2-5 gr. every three hours), and in giving plenty of fluid nourishment. It is worthy of note that the anti-streptococcic serum has proved of less value in the treatment of erysipelas than might have been expected, probably because the serum is not made from the proper strain of streptococcus. It is not necessary to isolate cases of erysipelas, provided the usual precautions against carrying infection from one patient to another are rigidly carried out. DIPHTHERIA Diphtheria is an acute infective disease due to the action of a specific bacterium, the _bacillus diphtheriae_ or _Klebs-Loffler bacillus_. The disease is usually transmitted from one patient to another, but it may be contracted from cats, fowls, or through the milk of infected cows. Cases have occurred in which the surgeon has carried the infection from one patient to another through neglect of antiseptic precautions. The incubation period varies from two to seven days. #Clinical Features.#--In _pharyngeal diphtheria_, on the first or second day of the disease, redness and swelling of the mucous membrane of the pharynx, tonsils, and palate are well marked, and small, circular greenish or grey patches of false membrane, composed of necrosed epithelium, fibrin, leucocytes, and red blood corpuscles, begin to appear. These rapidly increase in area and thickness, till they coalesce and form a complete covering to the parts. In the pharynx the false membrane is less adherent to the surface than it is when the disease affects the air-passages. The diphtheritic process may spread from the pharynx to the nasal cavities, causing blocking of the nares, with a profuse ichorous discharge from the nostrils, and sometimes severe epistaxis. The infection may spread along the nasal duct to the conjunctiva. The middle ear also may become involved by spread along the auditory (Eustachian) tube. The lymph glands behind the angle of the jaw enlarge and become tender, and may suppurate from superadded infection. There is pain on swallowing, and often earache; and the patient speaks with a nasal accent. He becomes weak and anaemic, and loses his appetite. There is often albuminuria. Leucocytosis is usually well marked before the injection of antitoxin; after the injection there is usually a diminution in the number of leucocytes. The false membrane may separate and be cast off, after which the patient gradually recovers. Death may take place from gradual failure of the heart's action or from syncope during some slight exertion. _Laryngeal Diphtheria._--The disease may arise in the larynx, although, as a rule, it spreads thence from the pharynx. It first manifests itself by a short, dry, croupy cough, and hoarseness of the voice. The first difficulty in breathing usually takes place during the night, and once it begins, it rapidly gets worse. Inspiration becomes noisy, sometimes stridulous or metallic or sibilant, and there is marked indrawing of the epigastrium and lower intercostal spaces. The hoarseness becomes more marked, the cough more severe, and the patient restless. The difficulty of breathing occurs in paroxysms, which gradually increase in frequency and severity, until at length the patient becomes asphyxiated. The duration of the disease varies from a few hours to four or five days. After the acute symptoms have passed off, various localised paralyses may develop, affecting particularly the nerves of the palatal and orbital muscles, less frequently the lower limbs. #Diagnosis.#--The finding of the Klebs-Loffler bacillus is the only conclusive evidence of the disease. The bacillus may be obtained by swabbing the throat with a piece of aseptic--not antiseptic--cotton wool or clean linen rag held in a pair of forceps, and rotated so as to entangle portions of the false membrane or exudate. The swab thus obtained is placed in a test-tube, previously sterilised by having had some water boiled in it, and sent to a laboratory for investigation. To identify the bacillus a piece of the membrane from the swab is rubbed on a cover glass, dried, and stained with methylene blue or other basic stain; or cultures may be made on agar or other suitable medium. When a bacteriological examination is impossible, or when the clinical features do not coincide with the results obtained, the patient should always be treated on the assumption that he suffers from diphtheria. So much doubt exists as to the real nature of membranous croup and its relationship to true diphtheria, that when the diagnosis between the two is uncertain the safest plan is to treat the case as one of diphtheria. In children, diphtheria may occur on the vulva, vagina, prepuce, or glans penis, and give rise to difficulty in diagnosis, which is only cleared up by demonstration of the bacillus. #Treatment.#--An attempt may be made to destroy or to counteract the organisms by swabbing the throat with strong antiseptic solutions, such as 1 in 1000 corrosive sublimate or 1 in 30 carbolic acid, or by spraying with peroxide of hydrogen. The antitoxic serum is our sheet-anchor in the treatment of diphtheria, and recourse should be had to its use as early as possible. Difficulty of swallowing may be met by the use of a stomach tube passed either through the mouth or nose. When this is impracticable, nutrient enemata are called for. In laryngeal diphtheria, the interference with respiration may call for intubation of the larynx, or tracheotomy, but the antitoxin treatment has greatly diminished the number of cases in which it becomes necessary to have recourse to these measures. Intubation consists in introducing through the mouth into the larynx a tube which allows the patient to breathe freely during the period while the membrane is becoming separated and thrown off. This is best done with the apparatus of O'Dwyer; but when this instrument is not available, a simple gum-elastic catheter with a terminal opening (as suggested by Macewen and Annandale) may be employed. When intubation is impracticable, the operation of tracheotomy is called for if the patient's life is endangered by embarrassment of respiration. Unless the patient is in hospital with skilled assistance available, tracheotomy is the safer of the two procedures. TETANUS Tetanus is a disease resulting from infection of a wound by a specific micro-organism, the _bacillus tetani_, and characterised by increased reflex excitability, hypertonus, and spasm of one or more groups of voluntary muscles. _Etiology and Morbid Anatomy._--The tetanus bacillus, which is a perfect anaerobe, is widely distributed in nature and can be isolated from garden earth, dung-heaps, and stable refuse. It is a slender rod-shaped bacillus, with a single large spore at one end giving it the shape of a drum-stick (Fig. 26). The spores, which are the active agents in producing tetanus, are highly resistant to chemical agents, retain their vitality in a dry condition, and even survive boiling for five minutes. The organism does not readily establish itself in the human body, and seems to flourish best when it finds a nidus in necrotic tissue and is accompanied by aerobic organisms, which, by using up the oxygen in the tissues, provide for it a suitable environment. The presence of a foreign body in the wound seems to favour its action. The infection is for all practical purposes a local one, the symptoms of the disease being due to the toxins produced in the wound of infection acting upon the central nervous system. The toxin acts principally on the nerve centres in the spinal medulla, to which it travels from the focus of infection by way of the nerve fibres supplying the voluntary muscles. Its first effect on the motor ganglia of the cord is to render them hypersensitive, so that they are excited by mild stimuli, which under ordinary conditions would produce no reaction. As the toxin accumulates the reflex arc is affected, with the result that when a stimulus reaches the ganglia a motor discharge takes place, which spreads by ascending and descending collaterals to the reflex apparatus of the whole cord. As the toxin spreads it causes both motor hyper-tonus and hyper-excitability, which accounts for the tonic contraction and the clonic spasms characteristic of tetanus. [Illustration: FIG. 26.--Bacillus of Tetanus from scraping of a wound of finger, x 1000 diam. Basic fuchsin stain.] #Clinical Varieties of Tetanus.#--_Acute_ or _Fulminating Tetanus_.--This variety is characterised by the shortness of the incubation period, the rapidity of its progress, the severity of its symptoms, and its all but universally fatal issue in spite of treatment, death taking place in from one to four days. The characteristic symptoms may appear within three or four days of the infliction of the wound, but the incubation period may extend to three weeks, and the wound may be quite healed before the disease declares itself--_delayed tetanus_. Usually, however, the wound is inflamed and suppurating, with ragged and sloughy edges. A slight feverish attack may mark the onset of the tetanic condition, or the patient may feel perfectly well until the spasms begin. If careful observations be made, it may be found that the muscles in the immediate neighbourhood of the wound are the first to become contracted; but in the majority of instances the patient's first complaint is of pain and stiffness in the muscles of mastication, notably the masseter, so that he has difficulty in opening the mouth--hence the popular name "lock-jaw." The muscles of expression soon share in the rigidity, and the face assumes a taut, mask-like aspect. The angles of the mouth may be retracted, producing a grinning expression known as the _risus sardonicus_. The next muscles to become stiff and painful are those of the neck, especially the sterno-mastoid and trapezius. The patient is inclined to attribute the pain and stiffness to exposure to cold or rheumatism. At an early stage the diaphragm and the muscles of the anterior abdominal wall become contracted; later the muscles of the back and thorax are involved; and lastly those of the limbs. Although this is the typical order of involvement of the different groups of muscles, it is not always adhered to. To this permanent tonic contraction of the muscles there are soon added clonic spasms. These spasms are at first slight and transient, with prolonged intervals between the attacks, but rapidly tend to become more frequent, more severe, and of longer duration, until eventually the patient simply passes out of one seizure into another. The distribution of the spasms varies in different cases: in some it is confined to particular groups of muscles, such as those of the neck, back, abdominal walls, or limbs; in others all these groups are simultaneously involved. When the muscles of the back become spasmodically contracted, the body is raised from the bed, sometimes to such an extent that the patient rests only on his heels and occiput--the position of _opisthotonos_. Lateral arching of the body from excessive action of the muscles on one side--_pleurosthotonos_--is not uncommon, the arching usually taking place towards the side on which the wound of infection exists. Less frequently the body is bent forward so that the knees and chin almost meet (_emprosthotonos_). Sometimes all the muscles simultaneously become rigid, so that the body assumes a statuesque attitude (_orthotonos_). When the thoracic muscles, including the diaphragm, are thrown into spasm, the patient experiences a distressing sensation as if he were gripped in a vice, and has extreme difficulty in getting breath. Between the attacks the limbs are kept rigidly extended. The clonic spasms may be so severe as to rupture muscles or even to fracture one of the long bones. As time goes on, the clonic exacerbations become more and more frequent, and the slightest external stimulus, such as the feeling of the pulse, a whisper in the room, a noise in the street, a draught of cold air, the effort to swallow, a question addressed to the patient or his attempt to answer, is sufficient to determine an attack. The movements are so forcible and so continuous that the nurse has great difficulty in keeping the bedclothes on the patient, or even in keeping him in bed. The general condition of the patient is pitiful in the extreme. He is fully conscious of the gravity of the disease, and his mind remains clear to the end. The suffering induced by the cramp-like spasms of the muscles keeps him in a constant state of fearful apprehension of the next seizure, and he is unable to sleep until he becomes utterly exhausted. The temperature is moderately raised (100 o to 102 o F.), or may remain normal throughout. Shortly before death very high temperatures (110 o F.) have been recorded, and it has been observed that the thermometer sometimes continues to rise after death, and may reach as high as 112 o F. or more. The pulse corresponds with the febrile condition. It is accelerated during the spasms, and may become exceedingly rapid and feeble before death, probably from paralysis of the vagus. Sudden death from cardiac paralysis or from cardiac spasm is not uncommon. The respiration is affected in so far as the spasms of the respiratory muscles produce dyspnoea, and a feeling of impending suffocation which adds to the horrors of the disease. One of the most constant symptoms is a copious perspiration, the patient being literally bathed in sweat. The urine is diminished in quantity, but as a rule is normal in composition; as in other acute infective conditions, albumen and blood may be present. Retention of urine may result from spasm of the urethral muscles, and necessitate the use of the catheter. The fits may cease some time before death, or, on the other hand, death may occur during a paroxysm from fixation of the diaphragm and arrest of respiration. _Differential Diagnosis._--There is little difficulty, as a rule, in diagnosing a case of fulminating tetanus, but there are several conditions with which it may occasionally be confused. In _strychnin poisoning_, for example, the spasms come on immediately after the patient has taken a toxic dose of the drug; they are clonic in character, but the muscles are relaxed between the fits. If the dose is not lethal, the spasms soon cease. In _hydrophobia_ a history of having been bitten by a rabid animal is usually forthcoming; the spasms, which are clonic in character, affect chiefly the muscles of respiration and deglutition, and pass off entirely in the intervals between attacks. Certain cases of _haemorrhage into the lateral ventricles_ of the brain also simulate tetanus, but an analysis of the symptoms will prevent errors in diagnosis. _Cerebro-spinal meningitis_ and _basal meningitis_ present certain superficial resemblances to tetanus, but there is no trismus, and the spasms chiefly affect the muscles of the neck and back. _Hysteria and catalepsy_ may assume characters resembling those of tetanus, but there is little difficulty in distinguishing between these diseases. Lastly, in the _tetany_ of children, or that following operations on the thyreoid gland, the spasms are of a jerking character, affect chiefly the hands and fingers, and yield to medicinal treatment. #Chronic Tetanus.#--The difference between this and acute tetanus is mainly one of degree. Its incubation period is longer, it is more slow and insidious in its progress, and it never reaches the same degree of severity. Trismus is the most marked and constant form of spasm; and while the trunk muscles may be involved, those of respiration as a rule escape. Every additional day the patient lives adds to the probability of his ultimate recovery. When the disease does prove fatal, it is from exhaustion, and not from respiratory or cardiac spasm. The usual duration is from six to ten weeks. #Delayed Tetanus.#--During the European War acute tetanus occasionally developed many weeks or even months after a patient had been injured, and when the original wound had completely healed. It usually followed some secondary operation, _e.g._, for the removal of a foreign body, or the breaking down of adhesions, which aroused latent organisms. #Local Tetanus.#--This term is applied to a form of the disease in which the hypertonus and spasms are localised to the muscles in the vicinity of the wound. It usually occurs in patients who have had prophylactic injections of anti-tetanic serum, the toxins entering the blood being probably neutralised by the antibodies in circulation, while those passing along the motor nerves are unaffected. When it occurs in the _limbs_, attention is usually directed to the fact by pain accompanying the spasms; the muscles are found to be hard and there are frequent twitchings of the limb. A characteristic reflex is present in the lower extremity, namely, extension of the foot and leg when the sole is tickled. _Cephalic Tetanus_ is another localised variety which follows injury in the distribution of the facial nerve. It is characterised by the occurrence on the same side as the injury, of facial spasm, rapidly followed by more or less complete paralysis of the muscles of expression, with unilateral trismus and difficulty in swallowing. Other cranial nerves, particularly the oculomotor and the hypoglossal, may also be implicated. A remarkable feature of this condition is that although the muscles are irresponsive to ordinary physiological stimuli, they are thrown into spasm by the abnormal impulses of tetanus. _Trismus._--This term is used to denote a form of tetanic spasm limited to the muscles of mastication. It is really a mild form of chronic tetanus, and the prognosis is favourable. It must not be confused with the fixation of the jaw sometimes associated with a wisdom-tooth gumboil, with tonsillitis, or with affections of the temporo-mandibular articulation. _Tetanus neonatorum_ is a form of tetanus occurring in infants of about a week old. Infection takes place through the umbilicus, and manifests itself clinically by spasms of the muscles of mastication. It is almost invariably fatal within a few days. _Prophylaxis._--Experience in the European War has established the fact that the routine injection of anti-tetanic serum to all patients with lacerated and contaminated wounds greatly reduces the frequency of tetanus. The sooner the serum is given after the injury, the more certain is its effect; within twenty-four hours 1500 units injected subcutaneously is sufficient for the initial dose; if a longer period has elapsed, 2000 to 3000 units should be given intra-muscularly, as this ensures more rapid absorption. A second injection is given a week after the first. The wound must be purified in the usual way, and all instruments and appliances used for operations on tetanic patients must be immediately sterilised by prolonged boiling. _Treatment._--When tetanus has developed the main indications are to prevent the further production of toxins in the wound, and to neutralise those that have been absorbed into the nervous system. Thorough purification with antiseptics, excision of devitalised tissues, and drainage of the wound are first carried out. To arrest the absorption of toxins intra-muscular injections of 10,000 units of serum are given daily into the muscles of the affected limb, or directly into the nerve trunks leading from the focus of infection, in the hope of "blocking" the nerves with antitoxin and so preventing the passage of toxins towards the spinal cord. To neutralise the toxins that have already reached the spinal cord, 5000 units should be injected intra-thecally daily for four or five days, the foot of the bed being raised to enable the serum to reach the upper parts of the cord. The quantity of toxin circulating in the blood is so small as to be practically negligible, and the risk of anaphylactic shock attending intra-venous injection outweighs any benefit likely to follow this procedure. Baccelli recommends the injection of 20 c.c. of a 1 in 100 solution of carbolic acid into the subcutaneous tissues every four hours during the period that the contractions persist. Opinions vary as to the efficiency of this treatment. The intra-thecal injection of 10 c.c. of a 15 per cent. solution of magnesium sulphate has proved beneficial in alleviating the severity of the spasms, but does not appear to have a curative effect. To conserve the patient's strength by preventing or diminishing the severity of the spasms, he should be placed in a quiet room, and every form of disturbance avoided. Sedatives, such as bromides, paraldehyde, or opium, must be given in large doses. Chloral is perhaps the best, and the patient should rarely have less than 150 grains in twenty-four hours. When he is unable to swallow, it should be given by the rectum. The administration of chloroform is of value in conserving the strength of the patient, by abolishing the spasms, and enabling the attendants to administer nourishment or drugs either through a stomach tube or by the rectum. Extreme elevation of temperature is met by tepid sponging. It is necessary to use the catheter if retention of urine occurs. HYDROPHOBIA Hydrophobia is an acute infective disease following on the bite of a rabid animal. It most commonly follows the bite or lick of a rabid dog or cat. The virus appears to be communicated through the saliva of the animal, and to show a marked affinity for nerve tissues; and the disease is most likely to develop when the patient is infected on the face or other uncovered part, or in a part richly endowed with nerves. A dog which has bitten a person should on no account be killed until its condition has been proved one way or the other. Should rabies develop and its destruction become necessary, the head and spinal cord should be retained and forwarded, packed in ice, to a competent observer. Much anxiety to the person bitten and to his friends would be avoided if these rules were observed, because in many cases it will be shown that the animal did not after all suffer from rabies, and that the patient consequently runs no risk. If, on the other hand, rabies is proved to be present, the patient should be submitted to the Pasteur treatment. _Clinical Features._--There is almost always a history of the patient having been bitten or licked by an animal supposed to suffer from rabies. The incubation period averages about forty days, but varies from a fortnight to seven or eight months, and is shorter in young than in old persons. The original wound has long since healed, and beyond a slight itchiness or pain shooting along the nerves of the part, shows no sign of disturbance. A few days of general malaise, with chills and giddiness precede the onset of the acute manifestations, which affect chiefly the muscles of deglutition and respiration. One of the earliest signs is that the patient has periodically a sudden catch in his breathing "resembling what often occurs when a person goes into a cold bath." This is due to spasm of the diaphragm, and is frequently accompanied by a loud-sounding hiccough, likened by the laity to the barking of a dog. Difficulty in swallowing fluids may be the first symptom. The spasms rapidly spread to all the muscles of deglutition and respiration, so that the patient not only has the greatest difficulty in swallowing, but has a constant sense of impending suffocation. To add to his distress, a copious secretion of viscid saliva fills his mouth. Any voluntary effort, as well as all forms of external stimuli, only serve to aggravate the spasms which are always induced by the attempt to swallow fluid, or even by the sound of running water. The temperature is raised; the pulse is small, rapid, and intermittent; and the urine may contain sugar and albumen. The mind may remain clear to the end, or the patient may have delusions, supposing himself to be surrounded by terrifying forms. There is always extreme mental agitation and despair, and the sufferer is in constant fear of his impending fate. Happily the inevitable issue is not long delayed, death usually occurring in from two to four days from the onset. The symptoms of the disease are so characteristic that there is no difficulty in diagnosis. The only condition with which it is liable to be confused is the variety of cephalic tetanus in which the muscles of deglutition are specially involved--the so-called tetanus hydrophobicus. _Prophylaxis._--The bite of an animal suspected of being rabid should be cauterised at once by means of the actual or Paquelin cautery, or by a strong chemical escharotic such as pure carbolic acid, after which antiseptic dressings are applied. It is, however, to Pasteur's _preventive inoculation_ that we must look for our best hope of averting the onset of symptoms. "It may now be taken as established that a grave responsibility rests on those concerned if a person bitten by a mad animal is not subjected to the Pasteur treatment" (Muir and Ritchie). This method is based on the fact that the long incubation period of the disease admits of the patient being inoculated with a modified virus producing a mild attack, which protects him from the natural disease. _Treatment._--When the symptoms have once developed they can only be palliated. The patient must be kept absolutely quiet and free from all sources of irritation. The spasms may be diminished by means of chloral and bromides, or by chloroform inhalation. ANTHRAX Anthrax is a comparatively rare disease, communicable to man from certain of the lower animals, such as sheep, oxen, horses, deer, and other herbivora. In animals it is characterised by symptoms of acute general poisoning, and, from the fact that it produces a marked enlargement of the spleen, is known in veterinary surgery as "splenic fever." The _bacillus anthracis_ (Fig. 27), the largest of the known pathogenic bacteria, occurs in groups or in chains made up of numerous bacilli, each bacillus measuring from 6 to 8 u in length. The organisms are found in enormous numbers throughout the bodies of animals that have died of anthrax, and are readily recognised and cultivated. Sporulation only takes place outside the body, probably because free oxygen is necessary to the process. In the spore-free condition, the organisms are readily destroyed by ordinary germicides, and by the gastric juice. The spores, on the other hand, have a high degree of resistance. Not only do they remain viable in the dry state for long periods, even up to a year, but they survive boiling for five minutes, and must be subjected to dry heat at 140 o C. for several hours before they are destroyed. [Illustration: FIG. 27.--Bacillus of Anthrax in section of skin, from a case of malignant pustule; shows vesicle containing bacilli. x 400 diam. Gram's stain.] _Clinical Varieties of Anthrax._--In man, anthrax may manifest itself in one of three clinical forms. It may be transmitted by means of spores or bacilli directly from a diseased animal to those who, by their occupation or otherwise, are brought into contact with it--for example, shepherds, butchers, veterinary surgeons, or hide-porters. Infection may occur on the face by the use of a shaving-brush contaminated by spores. The path of infection is usually through an abrasion of the skin, and the primary manifestations are local, constituting what is known as _the malignant pustule_. In other cases the disease is contracted through the inhalation of the dried spores into the respiratory passages. This occurs oftenest in those who work amongst wool, fur, and rags, and a form of acute pneumonia of great virulence ensues. This affection is known as _wool-sorter's disease_, and is almost universally fatal. There is reason to believe that infection may also take place by means of spores ingested into the alimentary canal in meat or milk derived from diseased animals, or in infected water. #Clinical Features of Malignant Pustule.#--We shall here confine ourselves to the consideration of the local lesion as it occurs in the skin--_the malignant pustule_. The point of infection is usually on an uncovered part of the body, such as the face, hands, arms, or back of the neck, and the wound may be exceedingly minute. After an incubation period varying from a few hours to several days, a reddish nodule resembling a small boil appears at the seat of inoculation, the immediately surrounding skin becomes swollen and indurated, and over the indurated area there appear a number of small vesicles containing serum, which at first is clear but soon becomes blood-stained (Fig. 28). Coincidently the subcutaneous tissue for a considerable distance around becomes markedly oedematous, and the skin red and tense. Within a few hours, blood is extravasated in the centre of the indurated area, the blisters burst, and a dark brown or black eschar, composed of necrosed skin and subcutaneous tissue and altered blood, forms (Fig. 29). Meanwhile the induration extends, fresh vesicles form and in turn burst, and the eschar increases in size. The neighbouring lymph glands soon become swollen and tender. The affected part is hot and itchy, but the patient does not complain of great pain. There is a moderate degree of constitutional disturbance, with headache, nausea, and sometimes shivering. If the infection becomes generalised--_anthracaemia_--the temperature rises to 103 o or 104 o F., the pulse becomes feeble and rapid, and other signs of severe blood-poisoning appear: vomiting, diarrhoea, pains in the limbs, headache and delirium, and the condition proves fatal in from five to eight days. _Differential Diagnosis._--When the malignant pustule is fully developed, the central slough with the surrounding vesicles and the widespread oedema are characteristic. The bacillus can be obtained from the peripheral portion of the slough, from the blisters, and from the adjacent lymph vessels and glands. The occupation of the patient may suggest the possibility of anthrax infection. [Illustration: FIG. 28.--Malignant Pustule, third day after infection with Anthrax, showing great oedema of upper extremity and pectoral region (cf. Fig. 29).] [Illustration: FIG. 29.--Malignant Pustule, fourteen days after infection, showing black eschar in process of separation. The oedema has largely disappeared. Treated by Sclavo's serum (cf. Fig. 28).] _Prophylaxis._--Any wound suspected of being infected with anthrax should at once be cauterised with caustic potash, the actual cautery, or pure carbolic acid. _Treatment._--The best results hitherto obtained have followed the use of the anti-anthrax serum introduced by Sclavo. The initial dose is 40 c.c., and if the serum is given early in the disease, the beneficial effects are manifest in a few hours. Favourable results have also followed the use of pyocyanase, a vaccine prepared from the bacillus pyocyaneus. By some it is recommended that the local lesion should be freely excised; others advocate cauterisation of the affected part with solid caustic potash till all the indurated area is softened. Graf has had excellent results by the latter method in a large series of cases, the oedema subsiding in about twenty-four hours and the constitutional symptoms rapidly improving. Wolff and Wiewiorowski, on the other hand, have had equally good results by simply protecting the local lesion with a mild antiseptic dressing, and relying upon general treatment. The general treatment consists in feeding and stimulating the patient as freely as possible. Quinine, in 5 to 10 grain doses every four hours, and powdered ipecacuanha, in 40 to 60 grain doses every four hours, have also been employed with apparent benefit. GLANDERS Glanders is due to the action of a specific bacterium, the _bacillus mallei_, which resembles the tubercle bacillus, save that it is somewhat shorter and broader, and does not stain by Gram's method. It requires higher temperatures for its cultivation than the tubercle bacillus, and its growth on potato is of a characteristic chocolate-brown colour, with a greenish-yellow ring at the margin of the growth. The bacillus mallei retains its vitality for long periods under ordinary conditions, but is readily killed by heat and chemical agents. It does not form spores. _Clinical Features._--Both in the lower animals and in man the bacillus gives rise to two distinct types of disease--_acute glanders_, and _chronic glanders_ or _farcy_. Acute Glanders is most commonly met with in the horse and in other equine animals, horned cattle being immune. It affects the septum of the nose and adjacent parts, firm, translucent, greyish nodules containing lymphoid and epithelioid cells appearing in the mucous membrane. These nodules subsequently break down in the centre, forming irregular ulcers, which are attended with profuse discharge, and marked inflammatory swelling. The cervical lymph glands, as well as the lungs, spleen, and liver, may be the seat of secondary nodules. _In man_, acute glanders is commoner than the chronic variety. Infection always takes place through an abraded surface, and usually on one of the uncovered parts of the body--most commonly the skin of the hands, arms, or face; or on the mucous membrane of the mouth, nose, or eye. The disease has been acquired by accidental inoculation in the course of experimental investigations in the laboratory, and proved fatal. The incubation period is from three to five days. The _local_ manifestations are pain and swelling in the region of the infected wound, with inflammatory redness around it and along the lines of the superficial lymphatics. In the course of a week, small, firm nodules appear, and are rapidly transformed into pustules. These may occur on the face and in the vicinity of joints, and may be mistaken for the eruption of small-pox. After breaking down, these pustules give rise to irregular ulcers, which by their confluence lead to extensive destruction of skin. Sometimes the nasal mucous membrane becomes affected, and produces a discharge--at first watery, but later sanious and purulent. Necrosis of the bones of the nose may take place, in which case the discharge becomes peculiarly offensive. In nearly every case metastatic abscesses form in different parts of the body, such as the lungs, joints, or muscles. During the development of the disease the patient feels ill, complains of headache and pains in the limbs, the temperature rises to 104 o or even to 106 o F., and assumes a pyaemic type. The pulse becomes rapid and weak. The tongue is dry and brown. There is profuse sweating, albuminuria, and often insomnia with delirium. Death may take place within a week, but more frequently occurs during the second or third week. _Differential Diagnosis._--There is nothing characteristic in the site of the primary lesion in man, and the condition may, during the early stages, be mistaken for a boil or carbuncle, or for any acute inflammatory condition. Later, the disease may simulate acute articular rheumatism, or may manifest all the symptoms of acute septicaemia or pyaemia. The diagnosis is established by the recognition of the bacillus. Veterinary surgeons attach great importance to the mallein test as a means of diagnosis in animals, but in the human subject its use is attended with considerable risk and is not to be recommended. _Treatment._--Excision of the primary nodule, followed by the application of the thermo-cautery and sponging with pure carbolic acid, should be carried out, provided the condition is sufficiently limited to render complete removal practicable. When secondary abscesses form in accessible situations, they must be incised, disinfected, and drained. The general treatment is carried out on the same lines as in other acute infective diseases. #Chronic Glanders.#--_In the horse_ the chronic form of glanders is known as _farcy_, and follows infection through an abrasion of the skin, involving chiefly the superficial lymph vessels and glands. The lymphatics become indurated and nodular, constituting what veterinarians call _farcy pipes_ and _farcy buds_. _In man_ also the clinical features of the chronic variety of the disease are somewhat different from those of the acute form. Here, too, infection takes place through a broken cutaneous surface, and leads to a superficial lymphangitis with nodular thickening of the lymphatics (_farcy buds_). The neighbouring glands soon become swollen and indurated. The primary lesion meanwhile inflames, suppurates, and, after breaking down, leaves a large, irregular ulcer with thickened edges and a foul, purulent or bloody discharge. The glands break down in the same way, and lead to wide destruction of skin, and the resulting sinuses and ulcers are exceedingly intractable. Secondary deposits in the subcutaneous tissue, the muscles, and other parts, are not uncommon, and the nasal mucous membrane may become involved. The disease often runs a chronic course, extending to four or five months, or even longer. Recovery takes place in about 50 per cent. of cases, but the convalescence is prolonged, and at any time the disease may assume the characters of the acute variety and speedily prove fatal. The _differential diagnosis_ is often difficult, especially in the chronic nodules, in which it may be impossible to demonstrate the bacillus. The ulcerated lesions of farcy have to be distinguished from those of tubercle, syphilis, and other forms of infective granuloma. _Treatment._--Limited areas of disease should be completely excised. The general condition of the patient must be improved by tonics, good food, and favourable hygienic surroundings. In some cases potassium iodide acts beneficially. ACTINOMYCOSIS Actinomycosis is a chronic disease due to the action of an organism somewhat higher in the vegetable scale than ordinary bacteria--the _streptothrix actinomyces_ or _ray fungus_. [Illustration: FIG. 30.--Section of Actinomycosis Colony in Pus from Abscess of Liver, showing filaments and clubs of streptothrix actinomyces. x 400 diam. Gram's stain.] _Etiology and Morbid Anatomy._--The actinomyces, which has never been met with outside the body, gives rise in oxen, horses, and other animals to tumour-like masses composed of granulation tissue; and in man to chronic suppurative processes which may result in a condition resembling chronic pyaemia. The actinomyces is more complex in structure than other pathogenic organisms, and occurs in the tissues in the form of small, round, semi-translucent bodies, about the size of a pin-head or less, and consisting of colonies of the fungus. On account of their yellow tint they are spoken of as "sulphur grains." Each colony is made up of a series of thin, interlacing, and branching _filaments_, some of which are broken up so as to form masses or chains of _cocci_; and around the periphery of the colony are elongated, pear-shaped, hyaline, _club-like bodies_ (Fig. 30). Infection is believed to be conveyed by the husks of cereals, especially barley; and the organism has been found adhering to particles of grain embedded in the tissues of animals suffering from the disease. In the human subject there is often a history of exposure to infection from such sources, and the disease is said to be most common during the harvesting months. Around each colony of actinomyces is a zone of granulation tissue in which suppuration usually occurs, so that the fungus comes to lie in a bath of greenish-yellow pus. As the process spreads these purulent foci become confluent and form abscess cavities. When metastasis takes place, as it occasionally does, the fungus is transmitted by the blood vessels, as in pyaemia. _Clinical features._--In man the disease may be met with in the skin, the organisms gaining access through an abrasion, and spreading by the formation of new nodules in the same way as tuberculosis. The region of the mouth and jaws is one of the commonest sites of surgical actinomycosis. Infection takes place, as a rule, along the side of a carious tooth, and spreads to the lower jaw. A swelling is slowly and insidiously developed, but when the loose connective tissue of the neck becomes infiltrated, the spread is more rapid. The whole region becomes infiltrated and swollen, and the skin ultimately gives way and free suppuration occurs, resulting in the formation of sinuses. The characteristic greenish-grey or yellow granules are seen in the pus, and when examined microscopically reveal the colonies of actinomyces. Less frequently the maxilla becomes affected, and the disease may spread to the base of the skull and brain. The vertebrae may become involved by infection taking place through the pharynx or oesophagus, and leading to a condition simulating tuberculous disease of the spine. When it implicates the intestinal canal and its accessory glands, the lungs, pleura, and bronchial tubes, or the brain, the disease is not amenable to surgical treatment. _Differential Diagnosis._--The conditions likely to be mistaken for surgical actinomycosis are sarcoma, tubercle, and syphilis. In the early stages the differential diagnosis is exceedingly difficult. In many cases it is only possible when suppuration has occurred and the fungus can be demonstrated. The slow destruction of the affected tissue by suppuration, the absence of pain, tenderness, and redness, simulate tuberculosis, but the absence of glandular involvement helps to distinguish it. Syphilitic lesions are liable to be mistaken for actinomycosis, all the more that in both diseases improvement follows the administration of iodides. When it affects the lower jaw, in its early stages, actinomycosis may closely simulate a periosteal sarcoma. [Illustration: FIG. 31.--Actinomycosis of Maxilla. The disease spread to opposite side; finally implicated base of skull, and proved fatal. Treated by radium. (Mr. D. P. D. Wilkie's case.)] The recognition of the fungus is the crucial point in diagnosis. _Prognosis._--Spontaneous cure rarely occurs. When the disease implicates internal organs, it is almost always fatal. On external parts the destructive process gradually spreads, and the patient eventually succumbs to superadded septic infection. When, from its situation, the primary focus admits of removal, the prognosis is more favourable. _Treatment._--The surgical treatment is early and free removal of the affected tissues, after which the wound is cauterised by the actual cautery, and sponged over with pure carbolic acid. The cavity is packed with iodoform gauze, no attempt being made to close the wound. Success has attended the use of a vaccine prepared from cultures of the organism; and the X-rays and radium, combined with the administration of iodides in large doses, or with intra-muscular injections of a 10 per cent. solution of cacodylate of soda, have proved of benefit. MYCETOMA, OR MADURA FOOT.--Mycetoma is a chronic disease due to an organism resembling that of actinomycosis, but not identical with it. It is endemic in certain tropical countries, and is most frequently met with in India. Infection takes place through an abrasion of the skin, and the disease usually occurs on the feet of adult males who work barefooted in the fields. _Clinical Features._--The disease begins on the foot as an indurated patch, which becomes discoloured and permeated by black or yellow nodules containing the organism. These nodules break down by suppuration, and numerous minute abscesses lined by granulation tissues are thus formed. In the pus are found yellow particles likened to fish-roe, or black pigmented granules like gunpowder. Sinuses form, and the whole foot becomes greatly swollen and distorted by flattening of the sole and dorsiflexion of the toes. Areas of caries or necrosis occur in the bones, and the disease gradually extends up the leg (Fig. 32). There is but little pain, and no glandular involvement or constitutional disturbance. The disease runs a prolonged course, sometimes lasting for twenty or thirty years. Spontaneous cure never takes place, and the risk to life is that of prolonged suppuration. If the disease is localised, it may be removed by the knife or sharp spoon, and the part afterwards cauterised. As a rule, amputation well above the disease is the best line of treatment. Unlike actinomycosis, this disease does not appear to be benefited by iodides. [Illustration: FIG. 32.--Mycetoma, or Madura Foot. (Museum of Royal College of Surgeons, Edinburgh.)] DELHI BOIL.--_Synonyms_--Aleppo boil, Biskra button, Furunculus orientalis, Natal sore. Delhi boil is a chronic inflammatory disease, most commonly met with in India, especially towards the end of the wet season. The disease occurs oftenest on the face, and is believed to be due to an organism, although this has not been demonstrated. The infection is supposed to be conveyed through water used for washing, or by the bites of insects. _Clinical Features._--A red spot, resembling the mark of a mosquito bite, appears on the affected part, and is attended with itching. After becoming papular and increasing to the size of a pea, desquamation takes place, leaving a dull-red surface, over which in the course of several weeks there develops a series of small yellowish-white spots, from which serum exudes, and, drying, forms a thick scab. Under this scab the skin ulcerates, leaving small oval sores with sharply bevelled edges, and an uneven floor covered with yellow or sanious pus. These sores vary in number from one to forty or fifty. They may last for months and then heal spontaneously, or may continue to spread until arrested by suitable treatment. There is no enlargement of adjacent glands, and but little inflammatory reaction in the surrounding tissues; nor is there any marked constitutional disturbance. Recovery is often followed by cicatricial contraction leading to deformity of the face. The _treatment_ consists in destroying the original papule by the actual cautery, acid nitrate of mercury, or pure carbolic acid. The ulcers should be scraped with the sharp spoon, and cauterised. CHIGOE.--Chigoe or jigger results from the introduction of the eggs of the sand-flea (_Pulex penetrans_) into the tissues. It occurs in tropical Africa, South America, and the West Indies. The impregnated female flea remains attached to the part till the eggs mature, when by their irritation they cause localised inflammation with pustules or vesicles on the surface. Children are most commonly attacked, particularly about the toe-nails and on the scrotum. The treatment consists in picking out the insect with a blunt needle, special care being taken not to break it up. The puncture is then cauterised. The application of essential oils to the feet acts as a preventive. POISONING BY INSECTS.--The bites of certain insects, such as mosquitoes, midges, different varieties of flies, wasps, and spiders, may be followed by serious complications. The effects are mainly due to the injection of an irritant acid secretion, the exact nature of which has not been ascertained. The local lesion is a puncture, surrounded by a zone of hyperaemia, wheals, or vesicles, and is associated with burning sensations and itching which usually pass off in a few hours, but may recur at intervals, especially when the patient is warm in bed. Scratching also reproduces the local signs and symptoms. Where the connective tissue is loose--for example, in the eyelid or scrotum--there is often considerable swelling; and in the mouth and fauces this may lead to oedema of the glottis, which may prove fatal. The _treatment_ consists in the local application of dilute alkalies such as ammonia water, solutions of carbonate or bicarbonate of soda, or sal-volatile. Weak carbolic lotions, or lead and opium lotion, are useful in allaying the local irritation. One of the best means of neutralising the poison is to apply to the sting a drop of a mixture containing equal parts of pure carbolic acid and liquor ammoniae. Free stimulation is called for when severe constitutional symptoms are present. SNAKE-BITES.--We are here only concerned with the injuries inflicted by the venomous varieties of snakes, the most important of which are the hooded snakes of India, the rattle-snakes of America, the horned snakes of Africa, the viper of Europe, and the adder of the United Kingdom. While the virulence of these creatures varies widely, they are all capable of producing in a greater or less degree symptoms of acute poisoning in man and other animals. By means of two recurved fangs attached to the upper jaw, and connected by a duct with poison-secreting glands, they introduce into their prey a thick, transparent, yellowish fluid, of acid reaction, probably of the nature of an albumose, and known as the _venom_. The _clinical features_ resulting from the injection of the venom vary directly in intensity with the amount of the poison introduced, and the rapidity with which it reaches the circulating blood, being most marked when it immediately enters a large vein. The poison is innocuous when taken into the stomach. _Locally_ the snake inflicts a double wound, passing vertically into the subcutaneous tissue; the edges of the punctures are ecchymosed, and the adjacent vessels the seat of thrombosis. Immediately there is intense pain, and considerable swelling with congestion, which tends to spread towards the trunk. Extensive gangrene may ensue. There is no special involvement of the lymphatics. The _general symptoms_ may come on at once if the snake is a particularly venomous one, or not for some hours if less virulent. In the majority of viper or adder bites the constitutional disturbance is slight and transient, if it appears at all. Snake-bites in children are particularly dangerous. The patient's condition is one of profound shock with faintness, giddiness, dimness of sight, and a feeling of great terror. The pupils dilate, the skin becomes moist with a clammy sweat, and nausea with vomiting, sometimes of blood, ensues. High fever, cramps, loss of sensation, haematuria, and melaena are among the other symptoms that may be present. The pulse becomes feeble and rapid, the respiratory nerve centres are profoundly depressed, and delirium followed by coma usually precedes the fatal issue, which may take place in from five to forty-eight hours. If the patient survives for two days the prognosis is favourable. _Treatment._--A broad ligature should be tied tightly round the limb above the seat of infection, to prevent the poison passing into the general circulation, and bleeding from the wound should be encouraged. The application of an elastic bandage from above downward to empty the blood out of the infected portion of the limb has been recommended. The whole of the bite should at once be excised, and crystals of permanganate of potash rubbed into the wound until it is black, or peroxide of hydrogen applied with the object of destroying the poison by oxidation. The general treatment consists in free stimulation with whisky, brandy, ammonia, digitalis, etc. Hypodermic injections of strychnin in doses sufficiently large to produce a slight degree of poisoning by the drug are particularly useful. The most rational treatment, when it is available, is the use of the _antivenin_ introduced by Fraser and Calmette. CHAPTER VIII TUBERCULOSIS Tubercle bacillus--Methods of infection--Inherited and acquired predisposition--Relationship of tuberculosis to injury--Human and bovine tuberculosis--Action of the bacillus upon the tissues--Tuberculous granulation tissue--Natural cure--Recrudescence of the disease--THE TUBERCULOUS ABSCESS--Contents and wall of the abscess--Tuberculous sinuses. Tuberculosis occurs more frequently in some situations than in others; it is common, for example, in lymph glands, in bones and joints, in the peritoneum, the intestine, the kidney, prostate and testis, and in the skin and subcutaneous cellular tissue; it is seldom met with in the breast or in muscles, and it rarely affects the ovary, the pancreas, the parotid, or the thyreoid. _Tubercle bacilli_ vary widely in their virulence, and they are more tenacious of life than the common pyogenic bacteria. In a dry state, for example, they can retain their vitality for months; and they can also survive immersion in water for prolonged periods. They resist the action of the products of putrefaction for a considerable time, and are not destroyed by digestive processes in the stomach and intestine. They may be killed in a few minutes by boiling, or by exposure to steam under pressure, or by immersion for less than a minute in 1 in 20 carbolic lotion. #Methods of Infection.#--In marked contrast to what obtains in the infective diseases that have already been described, tuberculosis rarely results from the _infection of a wound_. In exceptional instances, however, this does occur, and in illustration of the fact may be cited the case of a servant who cut her finger with a broken spittoon containing the sputum of her consumptive master; the wound subsequently showed evidence of tuberculous infection, which ultimately spread up along the lymph vessels of the arm. Pathologists, too, whose hands, before the days of rubber gloves, were frequently exposed to the contact of tuberculous tissues and pus, were liable to suffer from a form of tuberculosis of the skin of the finger, known as _anatomical tubercle_. Slight wounds of the feet in children who go about barefoot in towns sometimes become infected with tubercle. Operation wounds made with instruments contaminated with tuberculous material have also been known to become infected. It is highly probable that the common form of tuberculosis of the skin known as "lupus" arises by direct infection from without. [Illustration: FIG. 33.--Tubercle Bacilli in caseous material x 1000 diam. Z. Neilsen stain.] In the vast majority of cases the tubercle bacillus gains entrance to the body by way of the mucous surfaces, the organisms being either inhaled or swallowed; those inhaled are mostly derived from the human subject, those swallowed, from cattle. Bacilli, whether inhaled or swallowed, are especially apt to lodge about the pharynx and pass to the pharyngeal lymphoid tissue and tonsils, and by way of the lymph vessels to the glands. The glands most frequently infected in this way are the cervical glands, and those within the cavity of the chest--particularly the bronchial glands at the root of the lung. From these, infection extends at any later period in life to the bones, joints, and internal organs. There is reason to believe that the organisms may lie in a dormant condition for an indefinite period in these glands, and only become active long afterwards, when some depression of the patient's health produces conditions which favour their growth. When the organisms become active in this way, the tuberculous tissue undergoes softening and disintegration, and the infective material, by bursting into an adjacent vein, may enter the blood-stream, in which it is carried to distant parts of the body. In this way a _general tuberculosis_ may be set up, or localised foci of tuberculosis may develop in the tissues in which the organisms lodge. Many tuberculous patients are to be regarded as possessing in their bronchial glands, or elsewhere, an internal store of bacilli, to which the disease for which advice is sought owes its origin, and from which similar outbreaks of tuberculosis may originate in the future. _The alimentary mucous membrane_, especially that of the lower ileum and caecum, is exposed to infection by swallowed sputum and by food materials, such as milk, containing tubercle bacilli. The organisms may lodge in the mucous membrane and cause tuberculous ulceration, or they may be carried through the wall of the bowel into the lacteals, along which they pass to the mesenteric glands where they become arrested and give rise to tuberculous disease. #Relationship of Tuberculosis to Trauma.#--Any tissue whose vitality has been lowered by injury or disease furnishes a favourable nidus for the lodgment and growth of tubercle bacilli. The injury or disease, however, is to be looked upon as determining the _localisation_ of the tuberculous lesion rather than as an essential factor in its causation. In a person, for example, in whose blood tubercle bacilli are circulating and reaching every tissue and organ of the body, the occurrence of tuberculous disease in a particular part may be determined by the depression of the tissues resulting from an injury of that part. There can be no doubt that excessive movement and jarring of a limb aggravates tuberculous disease of a joint; also that an injury may light up a focus that has been long quiescent, but we do not agree with those--Da Costa, for example--who maintain that injury may be a determining cause of tuberculosis. The question is not one of mere academic interest, but one that may raise important issues in the law courts. #Human and Bovine Tuberculosis.#--The frequency of the bovine bacillus in the abdominal and in the glandular and osseous tuberculous lesions of children would appear to justify the conclusion that the disease is transmissible from the ox to the human subject, and that the milk of tuberculous cows is probably a common vehicle of transmission. #Changes in the Tissues following upon the successful Lodgment of Tubercle Bacilli.#--The action of the bacilli on the tissues results in the formation of granulation tissue comprising characteristic tissue elements and with a marked tendency to undergo caseation. The recognition of the characteristic elements, with or without caseation, is usually sufficient evidence of the tuberculous nature of any portion of tissue examined for diagnostic purposes. The recognition of the bacillus itself by appropriate methods of staining makes the diagnosis a certainty; but as it is by no means easy to identify the organism in many forms of surgical tuberculosis, it may be necessary to have recourse to experimental inoculation of susceptible animals such as guinea-pigs. The changes subsequent to the formation of tuberculous granulation tissue are liable to many variations. It must always be borne in mind that although the bacilli have effected a lodgment and have inaugurated disease, the relation between them and the tissues remains one of mutual antagonism; which of them is to gain and keep the upper hand in the conflict depends on their relative powers of resistance. If the tissues prevail, there ensues a process of repair. In the immediate vicinity of the area of infection young connective tissue, and later, fibrous tissue, is formed. This may replace the tuberculous tissue and bring about repair--a fibrous cicatrix remaining to mark the scene of the previous contest. Scars of this nature are frequently discovered at the apex of the lung after death in persons who have at one time suffered from pulmonary phthisis. Under other circumstances, the tuberculous tissue that has undergone caseation, or even calcification, is only encapsulated by the new fibrous tissue, like a foreign body. Although this may be regarded as a victory for the tissues, the cure, if such it may be called, is not necessarily a permanent one, for at any subsequent period, if the part affected is disturbed by injury or through some other influence, the encapsulated tubercle may again become active and get the upper hand of the tissues, and there results a relapse or recrudescence of the disease. This _tendency to relapse_ after apparent cure is a notable feature of tuberculous disease as it is met with in the spine, or in the hip-joint, and it necessitates a prolonged course of treatment to give the best chance of a lasting cure. If, however, at the inauguration of the tuberculous disease the bacilli prevail, the infection tends to spread into the tissues surrounding those originally infected, and more and more tuberculous granulation tissue is formed. Finally the tuberculous tissue breaks down and liquefies, resulting in the formation of a cold abscess. In their struggle with the tissues, tubercle bacilli receive considerable support and assistance from any pyogenic organisms that may be present. A tuberculous infection may exhibit its aggressive qualities in a more serious manner by sending off detachments of bacilli, which are carried by the lymphatics to the nearest glands, or by the blood-stream to more distant, and it may be to all, parts of the body. When the infection is thus generalised, the condition is called _general tuberculosis_. Considering the extraordinary frequency of localised forms of surgical tuberculosis, general dissemination of the disease is rare. #The clinical features# of surgical tuberculosis will be described with the individual tissues and organs, as they vary widely according to the situation of the lesion. #The general treatment# consists in combating the adverse influences that have been mentioned as increasing the liability to tuberculous infection. Within recent years the value of the "open-air" treatment has been widely recognised. An open-air life, even in the centre of a city, may be followed by marked improvement, especially in the hospital class of patient, whose home surroundings tend to favour the progress of the disease. The purer air of places away from centres of population is still better; and, according to the idiosyncrasies of the individual patient, mountain air or that of the sea coast may be preferred. In view of the possible discomforts and gastric disturbance which may attend a sea-voyage, this should be recommended to patients suffering from tuberculous lesions with more caution than has hitherto been exercised. The diet must be a liberal one, and should include those articles which are at the same time easily digested and nourishing, especially proteids and fats; milk obtained from a reliable source and underdone butcher-meat are among the best. When the ordinary nourishment taken is insufficient, it may be supplemented by such articles as malt extract, stout, and cod-liver oil. The last is specially beneficial in patients who do not take enough fat in other forms. It is noteworthy that many tuberculous patients show an aversion to fat. For _the use of tuberculin in diagnosis_ and for _the vaccine treatment of tuberculosis_ the reader is referred to text-books on medicine. In addition to increasing the resisting power of the patient, it is important to enable the fluids of the body, so altered, to come into contact with the tuberculous focus. One of the obstacles to this is that the focus is often surrounded by tissues or fluids which have been almost entirely deprived of bactericidal substances. In the case of caseated glands in the neck, for example, it is obvious that the removal of this inert material is necessary before the tissues can be irrigated with fluids of high bactericidal value. Again, in tuberculous ascites the abdominal cavity is filled with a fluid practically devoid of anti-bacterial substances, so that the bacilli are able to thrive and work their will on the tissues. When the stagnant fluid is got rid of by laparotomy, the parts are immediately douched with lymph charged with protective substances, the bactericidal power of which may be many times that of the fluid displaced. It is probable that the beneficial influence of _counter-irritants_, such as blisters, and exposure to the _Finsen light_ and other forms of _rays_, is to be attributed in part to the increased flow of blood to the infected tissues. _Artificial Hyperaemia._--As has been explained, the induction of hyperaemia by the method devised by Bier, constitutes one of our most efficient means of combating bacterial infection. The treatment of tuberculosis on this plan has been proved by experience to be a valuable addition to our therapeutic measures, and the simplicity of its application has led to its being widely adopted in practice. It results in an increase in the reactive changes around the tuberculous focus, an increase in the immigration of leucocytes, and infiltration with the lymphocytes. The constricting bandage should be applied at some distance above the seat of infection; for instance, in disease of the wrist, it is put on above the elbow, and it must not cause pain either where it is applied or in the diseased part. The bandage is only applied for a few hours each day, either two hours at a time or twice a day for one hour, and, while it is on, all dressings are removed save a piece of sterile gauze over any wound or sinus that may be present. The process of cure takes a long time--nine or even twelve months in the case of a severe joint affection. In cases in which a constricting bandage is inapplicable, for example, in cold abscesses, tuberculous glands or tendon sheaths, Klapp's suction bell is employed. The cup is applied for five minutes at a time and then taken off for three minutes, and this is repeated over a period of about three-quarters of an hour. The pus is allowed to escape by a small incision, and no packing or drain should be introduced. It has been found that tuberculous lesions tend to undergo cure when the infected tissues are exposed to the rays of the sun--_heliotherapy_--therefore whenever practicable this therapeutic measure should be had recourse to. Since the introduction of the methods of treatment described above, and especially by their employment at an early stage in the disease, the number of cases of tuberculosis requiring operative interference has greatly diminished. There are still circumstances, however, in which an operation is required; for example, in disease of the lymph glands for the removal of inert masses of caseous material, in disease of bone for the removal of sequestra, or in disease of joints to improve the function of the limb. It is to be understood, however, that operative treatment must always be preceded by and combined with other therapeutic measures. TUBERCULOUS ABSCESS The caseation of tuberculous granulation tissue and its liquefaction is a slow and insidious process, and is unattended with the classical signs of inflammation--hence the terms "cold" and "chronic" applied to the tuberculous abscess. In a cold abscess, such as that which results from tuberculous disease of the vertebrae, the clinical appearances are those of a soft, fluid swelling without heat, redness, pain, or fever. When toxic symptoms are present, they are usually due to a mixed infection. A tuberculous abscess results from the disintegration and liquefaction of tuberculous granulation tissue which has undergone caseation. Fluid and cells from the adjacent blood vessels exude into the cavity, and lead to variations in the character of its contents. In some cases the contents consist of a clear amber-coloured fluid, in which are suspended fragments of caseated tissue; in others, of a white material like cream-cheese. From the addition of a sufficient number of leucocytes, the contents may resemble the pus of an ordinary abscess. The wall of the abscess is lined with tuberculous granulation tissue, the inner layers of which are undergoing caseation and disintegration, and present a shreddy appearance; the outer layers consist of tuberculous tissue which has not yet undergone caseation. The abscess tends to increase in size by progressive liquefaction of the inner layers, caseation of the outer layers, and the further invasion of the surrounding tissues by tubercle bacilli. In this way a tuberculous abscess is capable of indefinite extension and increase in size until it reaches a free surface and ruptures externally. The direction in which it spreads is influenced by the anatomical arrangement of the tissues, and possibly to some extent by gravity, and the abscess may reach the surface at a considerable distance from its seat of origin. The best illustration of this is seen in the psoas abscess, which may originate in the dorsal vertebrae, extend downwards within the sheath of the psoas muscle, and finally appear in the thigh. #Clinical Features.#--The insidious development of the tuberculous abscess is one of its characteristic features. The swelling may attain a considerable size without the patient being aware of its existence, and, as a matter of fact, it is often discovered accidentally. The absence of toxaemia is to be associated with the incapacity of the wall of the abscess to permit of absorption; this is shown also by the fact that when even a large quantity of iodoform is inserted into the cavity of the abscess, there are no symptoms of poisoning. The abscess varies in size from a small cherry to a cavity containing several pints of pus. Its shape also varies; it is usually that of a flattened sphere, but it may present pockets or burrows running in various directions. Sometimes it is hour-glass or dumb-bell shaped, as is well illustrated in the region of the groin in disease of the spine or pelvis, where there may be a large sac occupying the venter ilii, and a smaller one in the thigh, the two communicating by a narrow channel under Poupart's ligament. By pressing with the fingers the pus may be displaced from one compartment to the other. The usual course of events is that the abscess progresses slowly, and finally reaches a free surface--generally the skin. As it does so there may be some pain, redness, and local elevation of temperature. Fluctuation becomes evident and superficial, and the skin becomes livid and finally gives way. If the case is left to nature, the discharge of pus continues, and the track opening on the skin remains as a _sinus_. The persistence of suppuration is due to the presence in the wall of the abscess and of the sinus, of tuberculous granulation tissue, which, so long as it remains, continues to furnish discharge, and so prevents healing. Sooner or later pyogenic organisms gain access to the sinus, and through it to the wall of the abscess. They tend further to depress the resisting power of the tissues, and thereby aggravate and perpetuate the tuberculous disease. This superadded infection with pyogenic organisms exposes the patient to the further risks of septic intoxication, especially in the form of hectic fever and septicaemia, and increases the liability to general tuberculosis, and to waxy degeneration of the internal organs. The mixed infection is chiefly responsible for the pyrexia, sweating, and emaciation which the laity associate with consumptive disease. A tuberculous abscess may in one or other of these ways be a cause of death. _Residual abscess_ is the name given to an abscess that makes its appearance months, or even years, after the apparent cure of tuberculous disease--as, for example, in the hip-joint or spine. It is called residual because it has its origin in the remains of the original disease. [Illustration: FIG. 34.--Tuberculous Abscess in right lumbar region in a woman aged thirty.] #Diagnosis.#--A cold abscess is to be diagnosed from a syphilitic gumma, a cyst, and from lipoma and other soft tumours. The differential diagnosis of these affections will be considered later; it is often made easier by recognising the presence of a lesion that is likely to cause a cold abscess, such as tuberculous disease of the spine or of the sacro-iliac joint. When it is about to burst externally, it may be difficult to distinguish a tuberculous abscess from one due to infection with pyogenic organisms. Even when the abscess is opened, the appearances of the pus may not supply the desired information, and it may be necessary to submit it to bacteriological examination. When the pus is found to be sterile, it is usually safe to assume that the condition is tuberculous, as in other forms of suppuration the causative organisms can usually be recognised. Experimental inoculation will establish a definite diagnosis, but it implies a delay of two to three weeks. #Treatment.#--The tuberculous abscess may recede and disappear under general treatment. Many surgeons advise that so long as the abscess is quiescent it should be left alone. All agree, however, that if it shows a tendency to spread, to increase in size, or to approach the skin or a mucous membrane, something should be done to avoid the danger of its bursting and becoming infected with pyogenic organisms. Simple evacuation of the abscess by a hollow needle may suffice, or bismuth or iodoform may be introduced after withdrawal of the contents. _Evacuation of the Abscess and Injection of Iodoform._--The iodoform is employed in the form of a 10 per cent. solution in ether or the same proportion suspended in glycerin. Either form becomes sterile soon after it is prepared. Its curative effects would appear to depend upon the liberation of iodine, which restrains the activity of the bacilli, and upon its capacity for irritating the tissues and so inducing a protective leucocytosis, and also of stimulating the formation of scar tissue. An anaesthetic is rarely called for, except in children. The abscess is first evacuated by means of a large trocar and cannula introduced obliquely through the overlying soft parts, avoiding any part where the skin is thin or red. If the cannula becomes blocked with caseous material, it may be cleared with a probe, or a small quantity of saline solution is forced in by the syringe. The iodoform is injected by means of a glass-barrelled syringe, which is firmly screwed on to the cannula. The amount injected varies with the size of the abscess and the age of the patient; it may be said to range from two or three drams in the case of children to several ounces in large abscesses in adults. The cannula is withdrawn, the puncture is closed by a Michel's clip, and a dressing applied so as to exert a certain amount of compression. If the abscess fills up again, the procedure should be repeated; in doing so, the contents show the coloration due to liberated iodine. When the contents are semi-solid, and cannot be withdrawn even through a large cannula, an incision must be made, and, after the cavity has been emptied, the iodoform is introduced through a short rubber tube attached to the syringe. Experience has shown that even large abscesses, such as those associated with spinal disease, may be cured by iodoform injection, and this even when rupture of the abscess on the skin surface has appeared to be imminent. Another method of treatment which is less popular now than it used to be, and which is chiefly applicable in abscesses of moderate size, is by _incision of the abscess and removal of the tuberculous tissue in its wall_ with the sharp spoon. An incision is made which will give free access to the interior of the abscess, so that outlying pockets or recesses may not be overlooked. After removal of the pus, the wall of the abscess is scraped with the Volkmann spoon or with Barker's flushing spoon, to get rid of the tuberculous tissue with which it is lined. In using the spoon, care must be taken that its sharp edge does not perforate the wall of a vein or other important structure. Any debris which may adhere to the walls is removed by rubbing with dry gauze. The oozing of blood is arrested by packing the cavity for a few minutes with gauze. After the packing is removed, iodoform powder is rubbed into the raw surface. The soft parts divided by the incision are sutured in layers so as to ensure primary union. If, on the other hand, there is fear of a mixed infection, especially in abscesses near the rectum or anus, it is safer to treat it by the open method, packing the cavity with iodoform worsted or bismuth gauze, which is renewed at intervals of a week or ten days as the cavity heals from the bottom. Another method is to incise the abscess, cleanse the cavity with gauze, irrigate with Carrel-Dakin solution and pack with gauze smeared with the dilute non-toxic B.I.P.P. (bismuth and iodoform 2 parts, vaseline 12 parts, hard paraffin, sufficient to give the consistence of butter). The wound is closed with "bipped" silk sutures; one of these--the "waiting suture"--is left loose to permit of withdrawal of the gauze after forty-eight hours; the waiting suture is then tied, and delayed primary union is thus effected. When the skin over the abscess is red, thin, and about to give way, as is frequently the case when the abscess is situated in the subcutaneous cellular tissue, any skin which is undermined and infected with tubercle should be removed with the scissors at the same time that the abscess is dealt with. In abscesses treated by the open method, when the cavity has become lined with healthy granulations, it may be closed by secondary suture, or, if the granulating surface is flush with the skin, healing may be hastened by skin-grafting. If the tuberculous abscess has burst and left a _sinus_, this is apt to persist because of the presence of tuberculous tissue in its wall, and of superadded pyogenic infection, or because it serves as an avenue for the escape of discharge from a focus of tubercle in a bone or a lymph gland. [Illustration: FIG. 35.--Tuberculous Sinus injected through its opening in the forearm with bismuth paste. (Mr. Pirie Watson's case--Radiogram by Dr. Hope Fowler.)] The treatment varies with the conditions present, and must include measures directed to the lesion from which the sinus has originated. The extent and direction of any given sinus may be demonstrated by the use of the probe, or, more accurately, by injecting the sinus with a paste consisting of white vaseline containing 10 to 30 per cent. of bismuth subcarbonate, and following its track with the X-rays (Fig. 35). It was found by Beck of Chicago that the injection of bismuth paste is frequently followed by healing of the sinus, and that, if one injection fails to bring about a cure, repeating the injection every second day may be successful. Some caution must be observed in this treatment, as symptoms of poisoning have been observed to follow its use. If they manifest themselves, an injection of warm olive oil should be given; the oil, left in for twelve hours or so, forms an emulsion with the bismuth, which can be withdrawn by aspiration. Iodoform suspended in glycerin may be employed in a similar manner. When these and other non-operative measures fail, and the whole track of the sinus is accessible, it should be laid open, scraped, and packed with bismuth or iodoform gauze until it heals from the bottom. The _tuberculous ulcer_ is described in the chapter on ulcers. CHAPTER IX SYPHILIS Definition.--Virus.--ACQUIRED SYPHILIS--Primary period: _Incubation, primary chancre, glandular enlargement_; _Extra-genital chancres_--Treatment--Secondary period: _General symptoms, skin affections, mucous patches, affections of bones, joints, eyes_, etc.--Treatment: _Salvarsan_--_Methods of administering mercury_--Syphilis and marriage--Intermediate stage--_Reminders_--Tertiary period: _General symptoms_, _gummata_, _tertiary ulcers_, _tertiary lesions of skin, mucous membrane, bones, joints_, etc.--Second attacks.--INHERITED SYPHILIS--Transmission--_Clinical features in infancy, in later life_--Contagiousness--Treatment. Syphilis is an infective disease due to the entrance into the body of a specific virus. It is nearly always communicated from one individual to another by contact infection, the discharge from a syphilitic lesion being the medium through which the virus is transmitted, and the seat of inoculation is almost invariably a surface covered by squamous epithelium. The disease was unknown in Europe before the year 1493, when it was introduced into Spain by Columbus' crew, who were infected in Haiti, where the disease had been endemic from time immemorial (Bloch). The granulation tissue which forms as a result of the reaction of the tissues to the presence of the virus is chiefly composed of lymphocytes and plasma cells, along with an abundant new formation of capillary blood vessels. Giant cells are not uncommon, but the endothelioid cells, which are so marked a feature of tuberculous granulation tissue, are practically absent. When syphilis is communicated from one individual to another by contact infection, the condition is spoken of as _acquired syphilis_, and the first visible sign of the disease appears at the site of inoculation, and is known as _the primary lesion_. Those who have thus acquired the disease may transmit it to their offspring, who are then said to suffer from _inherited syphilis_. #The Virus of Syphilis.#--The cause of syphilis, whether acquired or inherited, is the organism, described by Schaudinn and Hoffman, in 1905, under the name of _spirochaeta pallida_ or _spironema pallidum_. It is a delicate, thread-like spirilla, in length averaging from 8 to 10 u and in width about 0.25 u, and is distinguished from other spirochaetes by its delicate shape, its dead-white appearance, together with its closely twisted spiral form, with numerous undulations (10 to 26), which are perfectly regular, and are characteristic in that they remain the same during rest and in active movement (Fig. 36). In a fresh specimen, such as a scraping from a hard chancre suspended in a little salt solution, it shows active movements. The organism is readily destroyed by heat, and perishes in the absence of moisture. It has been proved experimentally that it remains infective only up to six hours after its removal from the body. Noguchi has succeeded in obtaining pure cultures from the infected tissues of the rabbit. [Illustration: FIG. 36.--Spirochaeta pallida from scraping of hard Chancre of Prepuce. x 1000 diam. Burri method.] The spirochaete may be recognised in films made by scraping the deeper parts of the primary lesion, from papules on the skin, or from blisters artificially raised on lesions of the skin or on the immediately adjacent portion of healthy skin. It is readily found in the mucous patches and condylomata of the secondary period. It is best stained by Giemsa's method, and its recognition is greatly aided by the use of the ultra-microscope. The spirochaete has been demonstrated in every form of syphilitic lesion, and has been isolated from the blood--with difficulty--and from lymph withdrawn by a hollow needle from enlarged lymph glands. The saliva of persons suffering from syphilitic lesions of the mouth also contains the organism. [Illustration: FIG. 37.--Spirochaeta refrigerans from scraping of Vagina. x 1000 diam. Burri method.] In tertiary lesions there is greater difficulty in demonstrating the spirochaete, but small numbers have been found in the peripheral parts of gummata and in the thickened patches in syphilitic disease of the aorta. Noguchi and Moore have discovered the spirochaete in the brain in a number of cases of general paralysis of the insane. The spirochaete may persist in the body for a long time after infection; its presence has been demonstrated as long as sixteen years after the original acquisition of the disease. In inherited syphilis the spirochaete is present in enormous numbers throughout all the organs and fluids of the body. Considerable interest attaches to the observations of Metchnikoff, Roux, and Neisser, who have succeeded in conveying syphilis to the chimpanzee and other members of the ape tribe, obtaining primary and secondary lesions similar to those observed in man, and also containing the spirochaete. In animals the disease has been transmitted by material from all kinds of syphilitic lesions, including even the blood in the secondary and tertiary stages of the disease. The primary lesion is in the form of an indurated papule, in every respect resembling the corresponding lesion in man, and associated with enlargement and induration of the lymph glands. The primary lesion usually appears about thirty days after inoculation, to be followed, in about half the cases, by secondary manifestations, which are usually of a mild character; in no instance has any tertiary lesion been observed. The severity of the affection amongst apes would appear to be in proportion to the nearness of the relationship of the animal to the human subject. The eye of the rabbit is also susceptible to inoculation from syphilitic lesions; the material in a finely divided state is introduced into the anterior chamber of the eye. Attempts to immunise against the disease have so far proved negative, but Metchnikoff has shown that the inunction of the part inoculated with an ointment containing 33 per cent. of calomel, within one hour of infection, suffices to neutralise the virus in man, and up to eighteen hours in monkeys. He recommends the adoption of this procedure in the prophylaxis of syphilis. Noguchi has made an emulsion of dead spirochaetes which he calls _luetin_, and which gives a specific reaction resembling that of tuberculin in tuberculosis, a papule or a pustule forming at the site of the intra-dermal injection. It is said to be most efficacious in the tertiary and latent forms of syphilis, which are precisely those forms in which the diagnosis is surrounded with difficulties. ACQUIRED SYPHILIS In the vast majority of cases, infection takes place during the congress of the sexes. Delicate, easily abraded surfaces are then brought into contact, and the discharge from lesions containing the virus is placed under favourable conditions for conveying the disease from one person to the other. In the male the possibility of infection taking place is increased if the virus is retained under cover of a long and tight prepuce, and if there are abrasions on the surface with which it comes in contact. The frequency with which infection takes place on the genitals during sexual intercourse warrants syphilis being considered a venereal disease, although there are other ways in which it may be contracted. Some of these imply direct contact--such, for example, as kissing, the digital examination of syphilitic patients by doctors or nurses, or infection of the surgeon's fingers while operating upon a syphilitic patient. In suckling, a syphilitic wet nurse may infect a healthy infant, or a syphilitic infant may infect a healthy wet nurse. In other cases the infection is by indirect contact, the virus being conveyed through the medium of articles contaminated by a syphilitic patient--such, for example, as surgical instruments, tobacco pipes, wind instruments, table utensils, towels, or underclothing. Physiological secretions, such as saliva, milk, or tears, are not capable of communicating the disease unless contaminated by discharge from a syphilitic sore. While the saliva itself is innocuous, it can be, and often is, contaminated by the discharge from mucous patches or other syphilitic lesions in the mouth and throat, and is then a dangerous medium of infection. Unless these extra-genital sources of infection are borne in mind, there is a danger of failing to recognise the primary lesion of syphilis in unusual positions, such as the lip, finger, or nipple. When the disease is thus acquired by innocent transfer, it is known as _syphilis insontium_. #Stages or Periods of Syphilis.#--Following the teaching of Ricord, it is customary to divide the life-history of syphilis into three periods or stages, referred to, for convenience, as primary, secondary, and tertiary. This division is to some extent arbitrary and artificial, as the different stages overlap one another, and the lesions of one stage merge insensibly into those of another. Wide variations are met with in the manifestations of the secondary stage, and histologically there is no valid distinction to be drawn between secondary and tertiary lesions. _The primary period_ embraces the interval that elapses between the initial infection and the first constitutional manifestations,--roughly, from four to eight weeks,--and includes the period of incubation, the development of the primary sore, and the enlargement of the nearest lymph glands. _The secondary period_ varies in duration from one to two years, during which time the patient is liable to suffer from manifestations which are for the most part superficial in character, affecting the skin and its appendages, the mucous membranes, and the lymph glands. _The tertiary period_ has no time-limit except that it follows upon the secondary, so that during the remainder of his life the patient is liable to suffer from manifestations which may affect the deeper tissues and internal organs as well as the skin and mucous membranes. #Primary Syphilis.#--_The period of incubation_ represents the interval that elapses between the occurrence of infection and the appearance of the primary lesion at the site of inoculation. Its limits may be stated as varying from two to six weeks, with an average of from twenty-one to twenty-eight days. While the disease is incubating, there is nothing to show that infection has occurred. _The Primary Lesion._--The incubation period having elapsed, there appears at the site of inoculation a circumscribed area of infiltration which represents the reaction of the tissues to the entrance of the virus. The first appearance is that of a sharply defined papule, rarely larger than a split pea. Its surface is at first smooth and shiny, but as necrosis of the tissue elements takes place in the centre, it becomes concave, and in many cases the epithelium is shed, and an ulcer is formed. Such an ulcer has an elevated border, sharply cut edges, an indurated base, and exudes a scanty serous discharge; its surface is at first occupied by yellow necrosed tissue, but in time this is replaced by smooth, pale-pink granulation tissue; finally, epithelium may spread over the surface, and the ulcer heals. As a rule, the patient suffers little discomfort, and may even be ignorant of the existence of the lesion, unless, as a result of exposure to mechanical or septic irritation, ulceration ensues, and the sore becomes painful and tender, and yields a purulent discharge. The primary lesion may persist until the secondary manifestations make their appearance, that is, for several weeks. It cannot be emphasised too strongly that the induration of the primary lesion, which has obtained for it the name of "hard chancre," is its most important characteristic. It is best appreciated when the sore is grasped from side to side between the finger and thumb. The sensation on grasping it has been aptly compared to that imparted by a nodule of cartilage, or by a button felt through a layer of cloth. The evidence obtained by touch is more valuable than that obtained by inspection, a fact which is made use of in the recognition of _concealed chancres_--that is, those which are hidden by a tight prepuce. The induration is due not only to the dense packing of the connective-tissue spaces with lymphocytes and plasma cells, but also to the formation of new connective-tissue elements. It is most marked in chancres situated in the furrow between the glans and the prepuce. _In the male_, the primary lesion specially affects certain _situations_, and the appearances vary with these: (1) On the inner aspect of the prepuce, and in the fold between the prepuce and the glans; in the latter situation the induration imparts a "collar-like" rigidity to the prepuce, which is most apparent when it is rolled back over the corona. (2) At the orifice of the prepuce the primary lesion assumes the form of multiple linear ulcers or fissures, and as each of these is attended with infiltration, the prepuce cannot be pulled back--a condition known as _syphilitic phimosis_. (3) On the glans penis the infiltration may be so superficial that it resembles a layer of parchment, but if it invades the cavernous tissue there is a dense mass of induration. (4) On the external aspect of the prepuce or on the skin of the penis itself. (5) At either end of the torn fraenum, in the form of a diamond-shaped ulcer raised above the surroundings. (6) In relation to the meatus and canal of the urethra, in either of which situations the swelling and induration may lead to narrowing of the urethra, so that the urine is passed with pain and difficulty and in a minute stream; stricture results only in the exceptional cases in which the chancre has ulcerated and caused destruction of tissue. A chancre within the orifice of the urethra is rare, and, being concealed from view, it can only be recognised by the discharge from the meatus and by the induration felt between the finger and thumb on palpating the urethra. _In the female_, the primary lesion is not so typical or so easily recognised as in men; it is usually met with on the labia; the induration is rarely characteristic and does not last so long. The primary lesion may take the form of condylomata. Indurated oedema, with brownish-red or livid discoloration of one or both labia, is diagnostic of syphilis. The hard chancre is usually solitary, but sometimes there are two or more; when there are several, they are individually smaller than the solitary chancre. It is the exception for a hard chancre to leave a visible scar, hence, in examining patients with a doubtful history of syphilis, little reliance can be placed on the presence or absence of a scar on the genitals. When the primary lesion has taken the form of an open ulcer with purulent discharge, or has sloughed, there is a permanent scar. _Infection of the adjacent lymph glands_ is usually found to have taken place by the time the primary lesion has acquired its characteristic induration. Several of the glands along Poupart's ligament, on one or on both sides, become enlarged, rounded, and indurated; they are usually freely movable, and are rarely sensitive unless there is superadded septic infection. The term _bullet-bubo_ has been applied to them, and their presence is of great value in diagnosis. In a certain number of cases, one of the main _lymph vessels_ on the dorsum of the penis is transformed into a fibrous cord easily recognisable on palpation, and when grasped between the fingers appears to be in size and consistence not unlike the vas deferens. _Concealed chancre_ is the term applied when one or more chancres are situated within the sac of a prepuce which cannot be retracted. If the induration is well marked, the chancre can be palpated through the prepuce, and is tender on pressure. As under these conditions it is impossible for the patient to keep the parts clean, septic infection becomes a prominent feature, the prepuce is oedematous and inflamed, and there is an abundant discharge of pus from its orifice. It occasionally happens that the infection assumes a virulent character and causes sloughing of the prepuce--a condition known as _phagedaena_. The discharge is then foul and blood-stained, and the prepuce becomes of a dusky red or purple colour, and may finally slough, exposing the glans. _Extra-genital or Erratic Chancres_ (Fig. 38).--Erratic chancre is the term applied by Jonathan Hutchinson to the primary lesion of syphilis when it appears on parts of the body other than the genitals. It differs in some respects from the hard chancre as met with on the penis; it is usually larger, the induration is more diffused, and the enlarged glands are softer and more sensitive. The glands in nearest relation to the sore are those first affected, for example, the epitrochlear or axillary glands in chancre of the finger; the submaxillary glands in chancre of the lip or mouth; or the pre-auricular gland in chancre of the eyelid or forehead. In consequence of their divergence from the typical chancre, and of their being often met with in persons who, from age, surroundings, or moral character, are unlikely subjects of venereal disease, the true nature of erratic chancres is often overlooked until the persistence of the lesion, its want of resemblance to anything else, or the onset of constitutional symptoms, determines the diagnosis of syphilis. A solitary, indolent sore occurring on the lip, eyelid, finger, or nipple, which does not heal but tends to increase in size, and is associated with induration and enlargement of the adjacent glands, is most likely to be the primary lesion of syphilis. [Illustration: FIG. 38.--Primary Lesion on Thumb, with Secondary Eruption on Forearm.[1]] [1] From _A System of Syphilis_, vol. ii., edited by D'Arcy Power and J. Keogh Murphy, Oxford Medical Publications. #The Soft Sore, Soft Chancre, or Chancroid.#--The differential diagnosis of syphilis necessitates the consideration of the _soft sore_, _soft chancre_, or _chancroid_, which is also a common form of venereal disease, and is due to infection with a virulent pus-forming bacillus, first described by Ducrey in 1889. Ducrey's bacillus occurs in the form of minute oval rods measuring about 1.5 u in length, which stain readily with any basic aniline dye, but are quickly decolorised by Gram's method. They are found mixed with other organisms in the purulent discharge from the sore, and are chiefly arranged in small groups or in short chains. Soft sores are always contracted by direct contact from another individual, and the incubation period is a short one of from two to five days. They are usually situated in the vicinity of the fraenum, and, in women, about the labia minora or fourchette; they probably originate in abrasions in these situations. They appear as pustules, which are rapidly converted into small, acutely inflamed ulcers with sharply cut, irregular margins, which bleed easily and yield an abundant yellow purulent discharge. They are devoid of the induration of syphilis, are painful, and nearly always multiple, reproducing themselves in successive crops by auto-inoculation. Soft sores are often complicated by phimosis and balanitis, and they frequently lead to infection of the glands in the groin. The resulting bubo is ill-defined, painful, and tender, and suppuration occurs in about one-fourth of the cases. The overlying skin becomes adherent and red, and suppuration takes place either in the form of separate foci in the interior of the individual glands, or around them; in the latter case, on incision, the glands are found lying bathed in pus. Ducrey's bacillus is found in pure culture in the pus. Sometimes other pyogenic organisms are superadded. After the bubo has been opened the wound may take on the characters of a soft sore. _Treatment._--Soft sores heal rapidly when kept clean. If concealed under a tight prepuce, an incision should be made along the dorsum to give access to the sores. They should be washed with eusol, and dusted with a mixture of one part iodoform and two parts boracic or salicylic acid, or, when the odour of iodoform is objected to, of equal parts of boracic acid and carbonate of zinc. Immersion of the penis in a bath of eusol for some hours daily is useful. The sore is then covered with a piece of gauze kept in position by drawing the prepuce over it, or by a few turns of a narrow bandage. Sublimed sulphur frequently rubbed into the sore is recommended by C. H. Mills. If the sores spread in spite of this, they should be painted with cocaine and then cauterised. When the glands in the groin are infected, the patient must be confined to bed, and a dressing impregnated with ichthyol and glycerin (10 per cent.) applied; the repeated use of a suction bell is of great service. Harrison recommends aspiration of a bubonic abscess, followed by injection of 1 in 20 solution of tincture of iodine into the cavity; this is in turn aspirated, and then 1 or 2 c.c. of the solution injected and left in. This is repeated as often as the cavity refills. It is sometimes necessary to let the pus out by one or more small incisions and continue the use of the suction bell. _Diagnosis of Primary Syphilis._--In cases in which there is a history of an incubation period of from three to five weeks, when the sore is indurated, persistent, and indolent, and attended with bullet-buboes in the groin, the diagnosis of primary syphilis is not difficult. Owing, however, to the great importance of instituting treatment at the earliest possible stage of the infection, an effort should be made to establish the diagnosis without delay by demonstrating the spirochaete. Before any antiseptic is applied, the margin of the suspected sore is rubbed with gauze, and the serum that exudes on pressure is collected in a capillary tube and sent to a pathologist for microscopical examination. A better specimen can sometimes be obtained by puncturing an enlarged lymph gland with a hypodermic needle, injecting a few minims of sterile saline solution and then aspirating the blood-stained fluid. The Wassermann test must not be relied upon for diagnosis in the early stage, as it does not appear until the disease has become generalised and the secondary manifestations are about to begin. The practice of waiting in doubtful cases before making a diagnosis until secondary manifestations appear is to be condemned. Extra-genital chancres, _e.g._ sores on the fingers of doctors or nurses, are specially liable to be overlooked, if the possibility of syphilis is not kept in mind. It is important to bear in mind _the possibility of a patient having acquired a mixed infection_ with the virus of soft chancre, which will manifest itself a few days after infection, and the virus of syphilis, which shows itself after an interval of several weeks. This occurrence was formerly the source of much confusion in diagnosis, and it was believed at one time that syphilis might result from soft sores, but it is now established that syphilis does not follow upon soft sores unless the virus of syphilis has been introduced at the same time. The practitioner must be on his guard, therefore, when a patient asks his advice concerning a venereal sore which has appeared within a few days of exposure to infection. Such a patient is naturally anxious to know whether he has contracted syphilis or not, but neither a positive nor a negative answer can be given--unless the spirochaete can be identified. Syphilis is also to be diagnosed from _epithelioma_, the common form of cancer of the penis. It is especially in elderly patients with a tight prepuce that the induration of syphilis is liable to be mistaken for that associated with epithelioma. In difficult cases the prepuce must be slit open. Difficulty may occur in the diagnosis of primary syphilis from _herpes_, as this may appear as late as ten days after connection; it commences as a group of vesicles which soon burst and leave shallow ulcers with a yellow floor; these disappear quickly on the use of an antiseptic dusting powder. Apprehensive patients who have committed sexual indiscretions are apt to regard as syphilitic any lesion which happens to be located on the penis--for example, acne pustules, eczema, psoriasis papules, boils, balanitis, or venereal warts. _The local treatment_ of the primary sore consists in attempting to destroy the organisms _in situ_. An ointment made up of calomel 33 parts, lanoline 67 parts, and vaseline 10 parts (Metchnikoff's cream) is rubbed into the sore several times a day. If the surface is unbroken, it may be dusted lightly with a powder composed of equal parts of calomel and carbonate of zinc. A gauze dressing is applied, and the penis and scrotum should be supported against the abdominal wall by a triangular handkerchief or bathing-drawers; if there is inflammatory oedema the patient should be confined to bed. In _concealed chancres_ with phimosis, the sac of the prepuce should be slit up along the dorsum to admit of the ointment being applied. If phagedaena occurs, the prepuce must be slit open along the dorsum, or if sloughing, cut away, and the patient should have frequent sitz baths of weak sublimate lotion. When the chancre is within the meatus, iodoform bougies are inserted into the urethra, and the urine should be rendered bland by drinking large quantities of fluid. General treatment is considered on p. 149. #Secondary Syphilis.#--The following description of secondary syphilis is based on the average course of the disease in untreated cases. The onset of constitutional symptoms occurs from six to twelve weeks after infection, and the manifestations are the result of the entrance of the virus into the general circulation, and its being carried to all parts of the body. The period during which the patient is liable to suffer from secondary symptoms ranges from six months to two years. In some cases the general health is not disturbed; in others the patient is feverish and out of sorts, losing appetite, becoming pale and anaemic, complaining of lassitude, incapacity for exertion, headache, and pains of a rheumatic type referred to the bones. There is a moderate degree of leucocytosis, but the increase is due not to the polymorpho-nuclear leucocytes but to lymphocytes. In isolated cases the temperature rises to 101 o or 102 o F. and the patient loses flesh. The lymph glands, particularly those along the posterior border of the sterno-mastoid, become enlarged and slightly tender. The hair comes out, eruptions appear on the skin and mucous membranes, and the patient may suffer from sore throat and affections of the eyes. The local lesions are to be regarded as being of the nature of reactions against accumulations of the parasite, lymphocytes and plasma cells being the elements chiefly concerned in the reactive process. _Affections of the Skin_ are among the most constant manifestations. An evanescent macular rash, not unlike that of measles--_roseola_--is the first to appear, usually in from six to eight weeks from the date of infection; it is widely diffused over the trunk, and the original dull rose-colour soon fades, leaving brownish stains, which in time disappear. It is usually followed by a _papular eruption_, the individual papules being raised above the surface of the skin, smooth or scaly, and as they are due to infiltration of the skin they are more persistent than the roseoles. They vary in size and distribution, being sometimes small, hard, polished, and closely aggregated like lichen, sometimes as large as a shilling-piece, with an accumulation of scales on the surface like that seen in psoriasis. The co-existence of scaly papules and faded roseoles is very suggestive of syphilis. Other types of eruption are less common, and are met with from the third month onwards. A _pustular_ eruption, not unlike that of acne, is sometimes a prominent feature, but is not characteristic of syphilis unless it affects the scalp and forehead and is associated with the remains of the papular eruption. The term _ecthyma_ is applied when the pustules are of large size, and, after breaking on the surface, give rise to superficial ulcers; the discharge from the ulcer often dries up and forms a scab or crust which is continually added to from below as the ulcer extends in area and depth. The term _rupia_ is applied when the crusts are prominent, dark in colour, and conical in shape, roughly resembling the shell of a limpet. If the crust is detached, a sharply defined ulcer is exposed, and when this heals it leaves a scar which is usually circular, thin, white, shining like satin, and the surrounding skin is darkly pigmented; in the case of deep ulcers, the scar is depressed and adherent (Fig. 39). [Illustration: FIG. 39.--Syphilitic Rupia, showing the limpet-shaped crusts or scabs.] In the later stages there may occur a form of creeping or _spreading ulceration of the skin_ of the face, groin, or scrotum, healing at one edge and spreading at another like tuberculous lupus, but distinguished from this by its more rapid progress and by the pigmentation of the scar. _Condylomata_ are more characteristic of syphilis than any other type of skin lesion. They are papules occurring on those parts of the body where the skin is habitually moist, and especially where two skin surfaces are in contact. They are chiefly met with on the external genitals, especially in women, around the anus, beneath large pendulous mammae, between the toes, and at the angles of the mouth, and in these situations their development is greatly favoured by neglect of cleanliness. They present the appearance of well-defined circular or ovoid areas in which the skin is thickened and raised above the surface; they are covered with a white sodden epidermis, and furnish a scanty but very infective discharge. Under the influence of irritation and want of rest, as at the anus or at the angle of the mouth, they are apt to become fissured and superficially ulcerated, and the discharge then becomes abundant and may crust on the surface, forming yellow scabs. At the angle of the mouth the condylomatous patches may spread to the cheek, and when they ulcerate may leave fissure-like scars radiating from the mouth--an appearance best seen in inherited syphilis (Fig. 44). _The Appendages of the Skin._--The _hair_ loses its gloss, becomes dry and brittle, and readily falls out, either as an exaggeration of the normal shedding of the hair, or in scattered areas over the scalp (_syphilitic alopoecia_). The hair is not re-formed in the scars which result from ulcerated lesions of the scalp. The _nail-folds_ occasionally present a pustular eruption and superficial ulceration, to which the name _syphilitic onychia_ has been applied; more commonly the nails become brittle and ragged, and they may even be shed. _The Mucous Membranes_, and especially those of the _mouth_ and _throat_, suffer from lesions similar to those met with on the skin. On a mucous surface the papular eruption assumes the form of _mucous patches_, which are areas with a congested base covered with a thin white film of sodden epithelium like wet tissue-paper. They are best seen on the inner aspect of the cheeks, the soft palate, uvula, pillars of the fauces, and tonsils. In addition to mucous patches, there may be a number of small, _superficial, kidney-shaped ulcers_, especially along the margins of the tongue and on the tonsils. In the absence of mucous patches and ulcers, the sore throat may be characterised by a bluish tinge of the inflamed mucous membrane and a thin film of shed epithelium on the surface. Sometimes there is an elongated sinuous film which has been likened to the track of a snail. In the _larynx_ the presence of congestion, oedema, and mucous patches may be the cause of persistent hoarseness. The _tongue_ often presents a combination of lesions, including ulcers, patches where the papillae are absent, fissures, and raised white papules resembling warts, especially towards the centre of the dorsum. These lesions are specially apt to occur in those who smoke, drink undiluted alcohol or spirits, or eat hot condiments to excess, or who have irregular, sharp-cornered teeth. At a later period, and in those who are broken down in health from intemperance or other cause, the sore throat may take the form of rapidly spreading, penetrating ulcers in the soft palate and pillars of the fauces, which may lead to extensive destruction of tissue, with subsequent scars and deformity highly characteristic of previous syphilis. In the _Bones_, lesions occur which assume the clinical features of an evanescent periostitis, the patient complaining of nocturnal pains over the frontal bone, sternum, tibiae, and ulnae, and localised tenderness on tapping over these bones. In the _Joints_, a serous synovitis or hydrops may occur, chiefly in the knee, on one or on both sides. _The Affections of the Eyes_, although fortunately rare, are of great importance because of the serious results which may follow if they are not recognised and treated. _Iritis_ is the commonest of these, and may occur in one or in both eyes, one after the other, from three to eight months after infection. The patient complains of impairment of sight and of frontal or supraorbital pain. The eye waters and is hypersensitive, the iris is discoloured and reacts sluggishly to light, and there is a zone of ciliary congestion around the cornea. The appearance of minute white nodules or flakes of lymph at the margin of the pupil is especially characteristic of syphilitic iritis. When adhesions have formed between the iris and the structures in relation to it, the pupil dilates irregularly under atropin. Although complete recovery is to be expected under early and energetic treatment, if neglected, _iritis_ may result in occlusion of the pupil and permanent impairment or loss of sight. The other lesions of the eye are much rarer, and can only be discovered on ophthalmoscopic examination. The virus of syphilis exerts a special influence upon the _Blood Vessels_, exciting a proliferation of the endothelial lining which results in narrowing of their lumen, _endarteritis_, and a perivascular infiltration in the form of accumulations of plasma cells around the vessels and in the lymphatics that accompany them. In the _Brain_, in the later periods of secondary and in tertiary syphilis, changes occur as a result of the narrowing of the lumen of the arteries, or of their complete obliteration by thrombosis. By interfering with the nutrition of those parts of the brain supplied by the affected arteries, these lesions give rise to clinical features of which severe headache and paralysis are the most prominent. Affections of the _Spinal Cord_ are extremely rare, but paraplegia from myelitis has been observed. Lastly, attention must be directed to the remarkable variations observed in different patients. Sometimes the virulent character of the disease can only be accounted for by an idiosyncrasy of the patient. Constitutional symptoms, particularly pyrexia and anaemia, are most often met with in young women. Patients over forty years of age have greater difficulty in overcoming the infection than younger adults. Malarial and other infections, and the conditions attending life in tropical countries, from the debility which they cause, tend to aggravate and prolong the disease, which then assumes the characters of what has been called _malignant syphilis_. All chronic ailments have a similar influence, and alcoholic intemperance is universally regarded as a serious aggravating factor. _Diagnosis of Secondary Syphilis._--A routine examination should be made of the parts of the body which are most often affected in this disease--the scalp, mouth, throat, posterior cervical glands, and the trunk, the patient being stripped and examined by daylight. Among the _diagnostic features of the skin affections_ the following may be mentioned: They are frequently, and sometimes to a marked degree, symmetrical; more than one type of eruption--papules and pustules, for example--are present at the same time; there is little itching; they are at first a dull-red colour, but later present a brown pigmentation which has been likened to the colour of raw ham; they exhibit a predilection for those parts of the forehead and neck which are close to the roots of the hair; they tend to pass off spontaneously; and they disappear rapidly under treatment. #Serum Diagnosis--Wassermann Reaction.#--Wassermann found that if an extract of syphilitic liver rich in spirochaetes is mixed with the serum from a syphilitic patient, a large amount of complement is fixed. The application of the test is highly complicated and can only be carried out by an expert pathologist. For the purpose he is supplied with from 5 c.c. to 10 c.c. of the patient's blood, withdrawn under aseptic conditions from the median basilic vein by means of a serum syringe, and transferred to a clean and dry glass tube. There is abundant evidence that the Wassermann test is a reliable means of establishing a diagnosis of syphilis. A definitely positive reaction can usually be obtained between the fifteenth and thirtieth day after the appearance of the primary lesion, and as time goes on it becomes more marked. During the secondary period the reaction is practically always positive. In the tertiary stage also it is positive except in so far as it is modified by the results of treatment. In para-syphilitic lesions such as general paralysis and tabes a positive reaction is almost always present. In inherited syphilis the reaction is positive in every case. A positive reaction may be present in other diseases, for example, frambesia, trypanosomiasis, and leprosy. As the presence of the reaction is an evidence of the activity of the spirochaetes, repeated applications of the test furnish a valuable means of estimating the efficacy of treatment. The object aimed at is to change a persistently positive reaction to a permanently negative one. #Treatment of Syphilis.#--In the treatment of syphilis the two main objects are to maintain the general health at the highest possible standard, and to introduce into the system therapeutic agents which will inhibit or destroy the invading parasite. The second of these objects has been achieved by the researches of Ehrlich, who, in conjunction with his pupil, Hata, has built up a compound, the dihydrochloride of dioxydiamido-arseno-benzol, popularly known as salvarsan or "606." Other preparations, such as kharsivan, arseno-billon, and diarsenol, are chemically equivalent to salvarsan, containing from 27 to 31 per cent. of arsenic, and are equally efficient. The full dose is 0.6 grm. All these members of the "606" group form an acid solution when dissolved in water, and must be rendered alkaline before being injected. As subcutaneous and intra-muscular injections cause considerable pain, and may cause sloughing of the tissues, "606" preparations must be injected intravenously. Ehrlich has devised a preparation--neo-salvarsan, or "914," which is more easily prepared and forms a neutral solution. It contains from 18 to 20 per cent. of arsenic. Neo-kharsivan, novo-arseno-billon, and neo-diarsenol belong to the "914" group, the full dosage of which is 0.9 grm. As subcutaneous and intra-muscular injections of the "914" group are not painful, and even more efficient than intravenous injections, the administration is simpler. Galyl, luargol, and other preparations act in the same way as the "606" and "914" groups. The "606" preparations may be introduced into the veins by injection or by means of an apparatus which allows the solution to flow in by gravity. The left median basilic vein is selected, and a platino-iridium needle with a short point and a bore larger than that of the ordinary hypodermic syringe is used. The needle is passed for a few millimetres along the vein, and the solution is then slowly introduced; before withdrawing the needle some saline is run in to diminish the risk of thrombosis. The "914" preparations may be injected either into the subcutaneous tissue of the buttock or into the substance of the gluteus muscle. The part is then massaged for a few minutes, and the massage is repeated daily for a few days. No hard-and-fast rules can be laid down as to what constitutes a complete course of treatment. Harrison recommends as a _minimum_ course of one of the "914" preparations in _early primary cases_ an initial dose of 0.45 grm. given intra-muscularly or into the deep subcutaneous tissue; the same dose a week later; 0.6 grm. the following week; then miss a week and give 9.6 grms. on two successive weeks; then miss two weeks and give 0.6 grm. on two more successive weeks. When a _positive Wassermann reaction_ is present before treatment is commenced, the above course is prolonged as follows: for three weeks is given a course of potassium iodide, after which four more weekly injections of 0.6 grm. of "914" are given. With each injection of "914" after the first, throughout the whole course 1 grain of mercury is injected intra-muscularly. In the course of a few hours, there is usually some indisposition, with a feeling of chilliness and slight rise of temperature; these symptoms pass off within twenty-four hours, and in a few days there is a decided improvement of health. Three or four days after an intra-muscular injection there may be pain and stiffness in the gluteal region. These preparations are the most efficient therapeutic agents that have yet been employed in the treatment of syphilis. The manifestations of the disease disappear with remarkable rapidity. Observations show that the spirochaetes lose their capacity for movement within an hour or two of the administration, and usually disappear altogether in from twenty-four to thirty-six hours. Wassermann's reaction usually yields a negative result in from three weeks to two months, but later may again become positive. Subsequent doses of the arsenical preparation are therefore usually indicated, and should be given in from 7 to 21 days according to the dose. When syphilis occurs in a _pregnant woman_, she should be given in the early months an ordinary course of "914," followed by 10-grain doses of potassium iodide twice daily. The injections may be repeated two months later, and during the remainder of the pregnancy 2-grain mercury pills are given twice daily (A. Campbell). The presence of albumen in the urine contra-indicates arsenical treatment. It need scarcely be pointed out that the use of powerful drugs like "606" and "914" is not free from risk; it may be mentioned that each dose contains nearly three grains of arsenic. Before the administration the patient must be overhauled; its administration is contra-indicated in the presence of disease of the heart and blood vessels, especially a combination of syphilitic aortitis and sclerosis of the coronary arteries, with degeneration of the heart muscle; in affections of the central nervous system, especially advanced paralysis, and in such disturbances of metabolism as are associated with diabetes and Bright's disease. Its use is not contra-indicated in any lesion of active syphilis. The administration is controlled by the systematic examination of the urine for arsenic. _The Administration of Mercury._--The success of the arsenical preparations has diminished the importance of mercury in the treatment of syphilis, but it is still used to supplement the effect of the injections. The amount of mercury to be given in any case must be proportioned to the idiosyncrasies of the patient, and it is advisable, before commencing the treatment, to test his urine and record his body-weight. The small amount of mercury given at the outset is gradually increased. If the body-weight falls, or if the gums become sore and the breath foul, the mercury should be stopped for a time. If salivation occurs, the drinking of hot water and the taking of hot baths should be insisted upon, and half-dram doses of the alkaline sulphates prescribed. _Methods of Administering Mercury._--(1) _By the Mouth._--This was for long the most popular method in this country, the preparation usually employed being grey powder, in pills or tablets, each of which contains one grain of the powder. Three of these are given daily in the first instance, and the daily dose is increased to five or even seven grains till the standard for the individual patient is arrived at. As the grey powder alone sometimes causes irritation of the bowels, it should be combined with iron, as in the following formula: Hydrarg. c. cret. gr. 1; ferri sulph. exsiccat. gr. 1 or 2. (2) _By Inunction._--Inunction consists in rubbing into the pores of the skin an ointment composed of equal parts of 20 per cent. oleate of mercury and lanolin. Every night after a hot bath, a dram of the ointment (made up by the chemist in paper packets) is rubbed for fifteen minutes into the skin where it is soft and comparatively free from hairs. When the patient has been brought under the influence of the mercury, inunction may be replaced by one of the other methods, of administering the drug. (3) _By Intra-muscular Injection._--This consists in introducing the drug by means of a hypodermic syringe into the substance of the gluteal muscles. The syringe is made of glass, and has a solid glass piston; the needle of platino-iridium should be 5 cm. long and of a larger calibre than the ordinary hypodermic needle. The preparation usually employed consists of: metallic mercury or calomel 1 dram, lanolin and olive oil each 2 drams; it must be warmed to allow of its passage through the needle. Five minims--containing one grain of metallic mercury--represent a dose, and this is injected into the muscles above and behind the great trochanter once a week. The contents of the syringe are slowly expressed, and, after withdrawing the needle, gentle massage of the buttock should be employed. Four courses each of ten injections are given the first year, three courses of the same number during the second and third years, and two courses during the fourth year (Lambkin). _The General Health._--The patient must lead a regular life and cultivate the fresh-air habit, which is as beneficial in syphilis as in tuberculosis. Anaemia, malaria, and other sources of debility must receive appropriate treatment. The diet should be simple and easily digested, and should include a full supply of milk. Alcohol is prohibited. The excretory organs are encouraged to act by the liberal drinking of hot water between meals, say five or six tumblerfuls in the twenty-four hours. The functions of the skin are further aided by frequent hot baths, and by the wearing of warm underclothing. While the patient should avoid exposure to cold, and taxing his energies by undue exertion, he should be advised to take exercise in the open air. On account of the liability to lesions of the mouth and throat, he should use tobacco in moderation, his teeth should be thoroughly overhauled by the dentist, and he should brush them after every meal, using an antiseptic tooth powder or wash. The mouth and throat should be rinsed out night and morning with a solution of chlorate of potash and alum, or with peroxide of hydrogen. _Treatment of the Local Manifestations._--_The skin lesions_ are treated on the same lines as similar eruptions of other origin. As local applications, preparations of mercury are usually selected, notably the ointments of the red oxide of mercury, ammoniated mercury, or oleate of mercury (5 per cent.), or the mercurial plaster introduced by Unna. In the treatment of condylomata the greatest attention must be paid to cleanliness and dryness. After washing and drying the affected patches, they are dusted with a powder consisting of equal parts of calomel and carbonate of zinc; and apposed skin surfaces, such as the nates or labia, are separated by sublimate wool. In the ulcers of later secondary syphilis, crusts are got rid of in the first instance by means of a boracic poultice, after which a piece of lint or gauze cut to the size of the ulcer and soaked in black wash is applied and covered with oil-silk. If the ulcer tends to spread in area or in depth, it should be scraped with a sharp spoon, and painted over with acid nitrate of mercury, or a local hyperaemia may be induced by Klapp's suction apparatus. _In lesions of the mouth and throat_, the teeth should be attended to; the best local application is a solution of chromic acid--10 grains to the ounce--painted on with a brush once daily. If this fails, the lesions may be dusted with calomel the last thing at night. For deep ulcers of the throat the patient should gargle frequently with chlorine water or with perchloride of mercury (1 in 2000); if the ulcer continues to spread it should be painted with acid nitrate of mercury. In the treatment of _iritis_ the eyes are shaded from the light and completely rested, and the pupil is well dilated by atropin to prevent adhesions. If there is much pain, a blister may be applied to the temple. _The Relations of Syphilis to Marriage._--Before the introduction of the Ehrlich-Hata treatment no patient was allowed to marry until three years had elapsed after the disappearance of the last manifestation. While marriage might be entered upon under these conditions without risk of the husband infecting the wife, the possibility of his conveying the disease to the offspring cannot be absolutely excluded. It is recommended, as a precautionary measure, to give a further mercurial course of two or three months' duration before marriage, and an intravenous injection of an arsenical preparation. #Intermediate Stage.#--After the dying away of the secondary manifestations and before the appearance of tertiary lesions, the patient may present certain symptoms which Hutchinson called _reminders_. These usually consist of relapses of certain of the affections of the skin, mouth, or throat, already described. In the skin, they may assume the form of peeling patches in the palms, or may appear as spreading and confluent circles of a scaly papular eruption, which if neglected may lead to the formation of fissures and superficial ulcers. Less frequently there is a relapse of the eye affections, or of paralytic symptoms from disease of the cerebral arteries. #Tertiary Syphilis.#--While the manifestations of primary and secondary syphilis are common, those of the tertiary period are by comparison rare, and are observed chiefly in those who have either neglected treatment or who have had their powers of resistance lowered by privation, by alcoholic indulgence, or by tropical disease. It is to be borne in mind that in a certain proportion of men and in a larger proportion of women, the patient has no knowledge of having suffered from syphilis. Certain slight but important signs may give the clue in a number of cases, such as irregularity of the pupils or failure to react to light, abnormality of the reflexes, and the discovery of patches of leucoplakia on the tongue, cheek, or palate. The _general character of tertiary manifestations_ may be stated as follows: They attack by preference the tissues derived from the mesoblastic layer of the embryo--the cellular tissue, bones, muscles, and viscera. They are often localised to one particular tissue or organ, such, for example, as the subcutaneous cellular tissue, the bones, or the liver, and they are rarely symmetrical. They are usually aggressive and persistent, with little tendency to natural cure, and they may be dangerous to life, because of the destructive changes produced in such organs as the brain or the larynx. They are remarkably amenable to treatment if instituted before the stage which is attended with destruction of tissue is reached. Early tertiary lesions may be infective, and the disease may be transmitted by the discharges from them; but the later the lesions the less is the risk of their containing an infective virus. The most prominent feature of tertiary syphilis consists in the formation of granulation tissue, and this takes place on a scale considerably larger than that observed in lesions of the secondary period. The granulation tissue frequently forms a definite swelling or tumour-like mass (syphiloma), which, from its peculiar elastic consistence, is known as a _gumma_. In its early stages a gumma is a firm, semi-translucent greyish or greyish-red mass of tissue; later it becomes opaque, yellow, and caseous, with a tendency to soften and liquefy. The gumma does harm by displacing and replacing the normal tissue elements of the part affected, and by involving these in the degenerative changes, of the nature of caseation and necrosis, which produce the destructive lesions of the skin, mucous membranes, and internal organs. This is true not only of the circumscribed gumma, but of the condition known as _gummatous infiltration_ or _syphilitic cirrhosis_, in which the granulation tissue is diffused throughout the connective-tissue framework of such organs as the tongue or liver. Both the gummatous lesions and the fibrosis of tertiary syphilis are directly excited by the spirochaetes. The life-history of an untreated gumma varies with its environment. When protected from injury and irritation in the substance of an internal organ such as the liver, it may become encapsulated by fibrous tissue, and persist in this condition for an indefinite period, or it may be absorbed and leave in its place a fibrous cicatrix. In the interior of a long bone it may replace the rigid framework of the shaft to such an extent as to lead to pathological fracture. If it is near the surface of the body--as, for example, in the subcutaneous or submucous cellular tissue, or in the periosteum of a superficial bone, such as the palate, the skull, or the tibia--the tissue of which it is composed is apt to undergo necrosis, in which the overlying skin or mucous membrane frequently participates, the result being an ulcer--the tertiary syphilitic ulcer (Figs. 40 and 41). _Tertiary Lesions of the Skin and Subcutaneous Cellular Tissue._--The clinical features of a _subcutaneous gumma_ are those of an indolent, painless, elastic swelling, varying in size from a pea to an almond or walnut. After a variable period it usually softens in the centre, the skin over it becomes livid and dusky, and finally separates as a slough, exposing the tissue of the gumma, which sometimes appears as a mucoid, yellowish, honey-like substance, more frequently as a sodden, caseated tissue resembling wash-leather. The caseated tissue of a gumma differs from that of a tuberculous lesion in being tough and firm, of a buff colour like wash-leather, or whitish, like boiled fish. The degenerated tissue separates slowly and gradually, and in untreated cases may be visible for weeks in the floor of the ulcer. [Illustration: FIG. 40.--Ulcerating Gumma of Lips. (From a photograph lent by Dr. Stopford Taylor and Dr. R. W. Mackenna.)] _The tertiary ulcer_ may be situated anywhere, but is most frequently met with on the leg, especially in the region of the knee (Fig. 42) and over the calf. There may be one or more ulcers, and also scars of antecedent ulcers. The edges are sharply cut, as if punched out; the margins are rounded in outline, firm, and congested; the base is occupied by gummatous tissue, or, if this has already separated and sloughed out, by unhealthy granulations and a thick purulent discharge. When the ulcer has healed it leaves a scar which is depressed, and if over a bone, is adherent to it. The features of the tertiary ulcer, however, are not always so characteristic as the above description would imply. It is to be diagnosed from the "leg ulcer," which occurs almost exclusively on the lower third of the leg; from Bazin's disease (p. 74); from the ulcers that result from certain forms of malignant disease, such as rodent cancer, and from those met with in chronic glanders. _Gummatous Infiltration of the Skin_ ("Syphilitic Lupus").--This is a lesion, met with chiefly on the face and in the region of the external genitals, in which the skin becomes infiltrated with granulation tissue so that it is thickened, raised above the surface, and of a brownish-red colour. It appears as isolated nodules, which may fuse together; the epidermis becomes scaly and is shed, giving rise to superficial ulcers which are usually covered by crusted discharge. The disease tends to spread, creeping over the skin with a serpiginous, crescentic, or horse-shoe margin, while the central portion may heal and leave a scar. From the fact of its healing in the centre while it spreads at the margin, it may resemble tuberculous disease of the skin. It can usually be differentiated by observing that the infiltration is on a larger scale; the progress is much more rapid, involving in the course of months an area which in the case of tuberculosis would require as many years; the scars are sounder and are less liable to break down again; and the disease rapidly yields to anti-syphilitic treatment. [Illustration: FIG. 41.--Ulceration of nineteen year's duration in a woman aet. 24, the subject of inherited syphilis, showing active ulceration, cicatricial contraction, and sabre-blade deformity of tibiae.] _Tertiary lesions of mucous membrane and of the submucous cellular tissue_ are met with chiefly in the tongue, nose, throat, larynx, and rectum. They originate as gummata or as gummatous infiltrations, which are liable to break down and lead to the formation of ulcers which may prove locally destructive, and, in such situations as the larynx, even dangerous to life. In the tongue the tertiary ulcer may prove the starting-point of cancer; and in the larynx or rectum the healing of the ulcer may lead to cicatricial stenosis. Tertiary lesions of the _bones and joints_, of the _muscles_, and of the _internal organs_, will be described under these heads. The part played by syphilis in the production of disease of arteries and of aneurysm will be referred to along with diseases of blood vessels. [Illustration: FIG. 42.--Tertiary Syphilitic Ulceration in region of Knee and on both Thumbs of woman aet. 37.] _Treatment._--The most valuable drugs for the treatment of the manifestations of the tertiary period are the arsenical preparations and the iodides of sodium and potassium. On account of their depressing effects, the latter are frequently prescribed along with carbonate of ammonium. The dose is usually a matter of experiment in each individual case; 5 grains three times a day may suffice, or it may be necessary to increase each dose to 20 or 25 grains. The symptoms of iodism which may follow from the smaller doses usually disappear on giving a larger amount of the drug. It should be taken after meals, with abundant water or other fluid, especially if given in tablet form. It is advisable to continue the iodides for from one to three months after the lesions for which they are given have cleared up. If the potassium salt is not tolerated, it may be replaced by the ammonium or sodium iodide. _Local Treatment._--The absorption of a subcutaneous gumma is often hastened by the application of a fly-blister. When a gumma has broken on the surface and caused an ulcer, this is treated on general principles, with a preference, however, for applications containing mercury or iodine, or both. If a wet dressing is required to cleanse the ulcer, black wash may be used; if a powder to promote dryness, one containing iodoform; if an ointment is indicated, the choice lies between the red oxide of mercury or the dilute nitrate of mercury ointment, and one consisting of equal parts of lanolin and vaselin with 2 per cent. of iodine. Deep ulcers, and obstinate lesions of the bones, larynx, and other parts may be treated by excision or scraping with the sharp spoon. #Second Attacks of Syphilis.#--Instances of re-infection of syphilis have been recorded with greater frequency since the more general introduction of arsenical treatment. A remarkable feature in such cases is the shortness of the interval between the original infection and the alleged re-infection; in a recent series of twenty-eight cases, this interval was less than a year. Another feature of interest is that when patients in the tertiary stage of syphilis are inoculated with the virus from lesions from these in the primary and secondary stage lesions of the tertiary type are produced. Reference may be made to the #relapsing false indurated chancre#, described by Hutchinson and by Fournier, as it may be the source of difficulty in diagnosis. A patient who has had an infecting chancre one or more years before, may present a slightly raised induration on the penis at or close to the site of his original sore. This relapsed induration is often so like that of a primary chancre that it is impossible to distinguish between them, except by the history. If there has been a recent exposure to venereal infection, it is liable to be regarded as the primary lesion of a second attack of syphilis, but the further progress shows that neither bullet-buboes nor secondary manifestations develop. These facts, together with the disappearance of the induration under treatment, make it very likely that the lesion is really gummatous in character. INHERITED SYPHILIS One of the most striking features of syphilis is that it may be transmitted from infected parents to their offspring, the children exhibiting the manifestations that characterise the acquired form of the disease. The more recent the syphilis in the parent, the greater is the risk of the disease being communicated to the offspring; so that if either parent suffers from secondary syphilis the infection is almost inevitably transmitted. While it is certain that either parent may be responsible for transmitting the disease to the next generation, the method of transmission is not known. In the case of a syphilitic mother it is most probable that the infection is conveyed to the foetus by the placental circulation. In the case of a syphilitic father, it is commonly believed that the infection is conveyed to the ovum through the seminal fluid at the moment of conception. If a series of children, one after the other, suffer from inherited syphilis, it is almost invariably the case that the mother has been infected. In contrast to the acquired form, inherited syphilis is remarkable for the absence of any primary stage, the infection being a general one from the outset. The spirochaete is demonstrated in incredible numbers in the liver, spleen, lung, and other organs, and in the nasal secretion, and, from any of these, successful inoculations in monkeys can readily be made. The manifestations differ in degree rather than in kind from those of the acquired disease; the difference is partly due to the fact that the virus is attacking developing instead of fully formed tissues. The virus exercises an injurious influence on the foetus, which in many cases dies during the early months of intra-uterine life, so that miscarriage results, and this may take place in repeated pregnancies, the date at which the miscarriage occurs becoming later as the virus in the mother becomes attenuated. Eventually a child is carried to full term, and it may be still-born, or, if born alive, may suffer from syphilitic manifestations. It is difficult to explain such vagaries of syphilitic inheritance as the infection of one twin and the escape of the other. _Clinical Features._--We are not here concerned with the severe forms of the disease which prove fatal, but with the milder forms in which the infant is apparently healthy when born, but after from two to six weeks begins to show evidence of the syphilitic taint. The usual phenomena are that the child ceases to thrive, becomes thin and sallow, and suffers from eruptions on the skin and mucous membranes. There is frequently a condition known as _snuffles_, in which the nasal passages are obstructed by an accumulation of thin muco-purulent discharge which causes the breathing to be noisy. It usually begins within a month after birth and before the eruptions on the skin appear. When long continued it is liable to interfere with the development of the nasal bones, so that when the child grows up there results a condition known as the "saddle-nose" deformity (Figs. 43 and 44). [Illustration: FIG. 43.--Facies of Inherited Syphilis. (From Dr. Byrom Bramwell's _Atlas of Clinical Medicine_.)] _Affections of the Skin._--Although all types of skin affection are met with in the inherited disease, the most important is a _papular_ eruption, the papules being of large size, with a smooth shining top and of a reddish-brown colour. It affects chiefly the buttocks and thighs, the genitals, and other parts which are constantly moist. It is necessary to distinguish this specific eruption from a form of eczema which occurs in these situations in non-syphilitic children, the points that characterise the syphilitic condition being the infiltration of the skin and the coppery colour of the eruption. At the anus the papules acquire the characters of _condylomata_, also at the angles of the mouth, where they often ulcerate and leave radiating scars. _Affections of the Mucous Membranes._--The inflammation of the nasal mucous membrane that causes snuffles has already been referred to. There may be mucous patches in the mouth, or a stomatitis which is of importance, because it results in interference with the development of the permanent teeth. The mucous membrane of the larynx may be the seat of mucous patches or of catarrh, and as a result the child's cry is hoarse. _Affections of the Bones._--Swellings at the ends of the long bones, due to inflammation at the epiphysial junctions, are most often observed at the upper end of the humerus and in the bones in the region of the elbow. Partial displacement and mobility at the ossifying junction may be observed. The infant cries when the part is touched; and as it does not move the limb voluntarily, the condition is spoken of as _the pseudo-paralysis of syphilis_. Recovery takes place under anti-syphilitic treatment and immobilisation of the limb. Diffuse thickening of the shafts of the long bones, due to a deposit of new bone by the periosteum, is sometimes met with. [Illustration: FIG. 44.--Facies of Inherited Syphilis.] The conditions of the skull known as Parrot's nodes or bosses, and craniotabes, were formerly believed to be characteristic of inherited syphilis, but they are now known to occur, particularly in rickety children, from other causes. The _bosses_ result from the heaping up of new spongy bone beneath the pericranium, and they may be grouped symmetrically around the anterior fontanelle, or may extend along either side of the sagittal suture, which appears as a deep groove--the "natiform skull." The bosses disappear in time, but the skull may remain permanently altered in shape, the frontal and parietal eminences appearing unduly prominent. The term _craniotabes_ is applied when the bone becomes thin and soft, reverting to its original membranous condition, so that the affected areas dimple under the finger like parchment or thin cardboard; its localisation in the posterior parts of the skull suggests that the disappearance of the osseous tissue is influenced by the pressure of the head on the pillow. Craniotabes is recovered from as the child improves in health. Between the ages of three and six months, certain other phenomena may be met with, such as _effusion into the joints_, especially the knees; _iritis_, in one or in both eyes, and enlargement of the spleen and liver. In the majority of cases the child recovers from these early manifestations, especially when efficiently treated, and may enjoy an indefinite period of good health. On the other hand, when it attains the age of from two to four years, it may begin to manifest lesions which correspond to those of the tertiary period of acquired syphilis. #Later Lesions.#--In the skin and subcutaneous tissue, the later manifestations may take the form of localised gummata, which tend to break down and form ulcers, on the leg for example, or of a spreading gummatous infiltration which is also liable to ulcerate, leaving disfiguring scars, especially on the face. The palate and fauces may be destroyed by ulceration. In the nose, especially when the ulcerative process is associated with a putrid discharge--ozaena--the destruction of tissue may be considerable and result in unsightly deformity. The entire palatal portions of the upper jaws, the vomer, turbinate, and other bones bounding the nasal and oral cavities, may disappear, so that on looking into the mouth the base of the skull is readily seen. Gummatous disease is frequently observed also in the flat bones of the skull, in the bones of the hand, as syphilitic dactylitis, and in the bones of the forearm and leg. When the tibia is affected the disease is frequently bilateral, and may assume the form of gummatous ulcers and sinuses. In later years the tibia may present alterations in shape resulting from antecedent gummatous disease--for example, nodular thickenings of the shaft, flattening of the crest, or a more uniform increase in thickness and length of the shaft of the bone, which, when it is curved in addition, is described as the "sabre-blade" deformity. Among lesions of the viscera, mention should be made of gumma of the testis, which causes the organ to become enlarged, uneven, and indurated. This has even been observed in infants a few months old. Occasionally a syphilitic child suffers from a succession of these gummatous lesions with resulting ill-health, and, it may be, waxy disease of the internal organs; on the other hand, it may recover and present no further manifestations of the inherited taint. _Affections of the Eyes._--At or near puberty there is frequently observed an affection of the eyes, known as _chronic interstitial keratitis_, the relationship of which to inherited syphilis was first established by Hutchinson. It occurs between the ages of six and sixteen years, and usually affects one eye before the other. It commences as a diffuse haziness or steaminess near the centre of the cornea, and as it spreads the entire cornea assumes the appearance of ground glass. The chief complaint is of dimness of sight, which may almost amount to blindness, but there is little pain or photophobia; a certain amount of conjunctival and ciliary congestion is usually present, and there may be _iritis_ in addition. The cornea, or parts of it, may become of a deep pink or salmon colour from the formation in it of new blood vessels. The affection may last for from eighteen months to two years. Complete recovery usually takes place, but slight opacities, especially in the site of former salmon patches, may persist, and the disease occasionally relapses. _Choroiditis_ and _retinitis_ may also occur, and leave permanent changes easily recognised on examination with the ophthalmoscope. Among the rarer and more serious lesions of the inherited disease may be mentioned gummatous disease in the _larynx and trachea_, attended with ulceration and resulting in stenosis; and lesions of the _nervous system_ which may result in convulsions, paralysis, or dementia. In a limited number of cases, about the period of puberty there may develop _deafness_, which is usually bilateral and may become absolute. _Changes in the Permanent Teeth._--These affect specially the upper central incisors, which are dwarfed and stand somewhat apart in the gum, with their free edges converging towards one another. They are tapering or peg-shaped, and present at their cutting margin a deep semilunar notch. These appearances are commonly associated with the name of Hutchinson, who first described them. Affecting as they do the permanent teeth, they are not available for diagnosis until the child is over eight years of age. Henry Moon drew attention to a change in the first molars; these are reduced in size and dome-shaped through dwarfing of the central tubercle of each cusp. #Diagnosis of Inherited Syphilis.#--When there is a typical eruption on the buttocks and snuffles there is no difficulty in recognising the disease. When, however, the rash is scanty or is obscured by co-existing eczema, most reliance should be placed on the distribution of the eruption, on the brown stains which are left after it has passed off, on the presence of condylomata, and of fissuring and scarring at the angles of the mouth. The history of the mother relative to repeated miscarriages and still-born children may afford confirmatory evidence. In doubtful cases, the diagnosis may be aided by the Wassermann test and by noting the therapeutic effects of grey powder, which, in syphilitic infants, usually effects a marked and rapid improvement both in the symptoms and in the general health. While a considerable number of syphilitic children grow up without showing any trace of their syphilitic inheritance, the majority retain throughout life one or more of the following characteristics, which may therefore be described as _permanent signs of the inherited disease_: Dwarfing of stature from interference with growth at the epiphysial junctions; the forehead low and vertical, and the parietal and frontal eminences unduly prominent; the bridge of the nose sunken and rounded; radiating scars at the angles of the mouth; perforation or destruction of the hard palate; Hutchinson's teeth; opacities of the cornea from antecedent keratitis; alterations in the fundus oculi from choroiditis; deafness; depressed scars or nodes on the bones from previous gummata; "sabre-blade" or other deformity of the tibiae. #The Contagiousness of Inherited Syphilis.#--In 1837, Colles of Dublin stated his belief that, while a syphilitic infant may convey the disease to a healthy wet nurse, it is incapable of infecting its own mother if nursed by her, even although she may never have shown symptoms of the disease. This doctrine, which is known as _Colles' law_, is generally accepted in spite of the alleged occurrence of occasional exceptions. The older the child, the less risk there is of its communicating the disease to others, until eventually the tendency dies out altogether, as it does in the tertiary period of acquired syphilis. It should be added, however, that the contagiousness of inherited syphilis is denied by some observers, who affirm that, when syphilitic infants prove infective, the disease has been really acquired at or soon after birth. There is general agreement that the subjects of inherited syphilis cannot transmit the disease by inheritance to their offspring, and that, although they very rarely acquire the disease _de novo_, it is possible for them to do so. #Prognosis of Inherited Syphilis.#--Although inherited syphilis is responsible for a large but apparently diminishing mortality in infancy, the subjects of this disease may grow up to be as strong and healthy as their neighbours. Hutchinson insisted on the fact that there is little bad health in the general community that can be attributed to inherited syphilis. #Treatment.#--Arsenical injections are as beneficial in the inherited as in the acquired disease. An infant the subject of inherited syphilis should, if possible, be nursed by its mother, and failing this it should be fed by hand. In infants at the breast, the drug may be given to the mother; in others, it is administered in the same manner as already described--only in smaller doses. On the first appearance of syphilitic manifestations it should be given 0.05 grm, novarsenbillon, injected into the deep subcutaneous tissues every week for six weeks, followed by one year's mercurial inunction--a piece of mercurial ointment the size of a pea being inserted under the infant's binder. In older children the dose is proportionately increased. The general health should be improved in every possible direction; considerable benefit may be derived from the use of cod-liver oil, and from preparations containing iron and calcium. Surgical interference may be required in the destructive gummatous lesions of the nose, throat, larynx, and bones, either with the object of arresting the spread of the disease, or of removing or alleviating the resulting deformities. In children suffering from keratitis, the eyes should be protected from the light by smoked or coloured glasses, and the pupils should be dilated with atropin from time to time, especially in cases complicated with iritis. #Acquired Syphilis in Infants and Young Children.#--When syphilis is met with in infants and young children, it is apt to be taken for granted that the disease has been inherited. It is possible, however, for them to acquire the disease--as, for example, while passing through the maternal passages during birth, through being nursed or kissed by infected women, or through the rite of circumcision. The risk of infection which formerly existed by the arm-to-arm method of vaccination has been abolished by the use of calf lymph. The clinical features of the acquired disease in infants and young children are similar to those observed in the adult, with a tendency, however, to be more severe, probably because the disease is often late in being recognised and treated. CHAPTER X TUMOURS[2] Definition--Etiology--General characters of innocent and malignant tumours. CLASSIFICATION OF TUMOURS: I. Connective-tissue tumours: (1) _Innocent_: _Lipoma_, _Xanthoma_, _Chondroma_, _Osteoma_, _Odontoma_, _Fibroma_, _Myxoma_, _Endothelioma_, etc.; (2) _Malignant_: _Sarcoma_--II. Epithelial tumours: (1) _Innocent_: _Papilloma_, _Adenoma_, _Cystic Adenoma_; (2) _Malignant_: _Epithelioma_, _Glandular Cancer_, _Rodent Cancer_, _Melanotic Cancer_--III. Dermoids--IV. Teratoma. Cysts: _Retention_, _Exudation_, _Implantation_, _Parasitic_, _Lymphatic or Serous_. Ganglion. [2] For the histology of tumours the reader is referred to a text-book of pathology. A tumour or neoplasm is a localised swelling composed of newly formed tissue which fulfils no physiological function. Tumours increase in size quite independently of the growth of the body, and there is no natural termination to their growth. They are to be distinguished from such over-growths as are of the nature of simple hypertrophy or local giantism, and also from inflammatory swellings, which usually develop under the influence of a definite cause, have a natural termination, and tend to disappear when the cause ceases to act. The _etiology of tumours_ is imperfectly understood. Various factors, acting either singly or in combination, may be concerned in their development. Certain tumours, for example, are the result of some congenital malformation of the particular tissue from which they take origin. This would appear to be the case in many tumours of blood vessels (angioma), of cartilage (chondroma), of bone (osteoma), and of secreting gland tissue (adenoma). The theory that tumours originate from foetal residues or "rests," is associated with the name of Cohnheim. These rests are supposed to be undifferentiated embryonic cells which remain embedded amongst fully formed tissue elements, and lie dormant until they are excited into active growth and give rise to a tumour. This mode of origin is illustrated by the development of dermoids from sequestrated portions of epidermis. Among the local factors concerned in the development of tumours, reference must be made to the influence of irritation. This is probably an important agent in the causation of many of the tumours met with in the skin and in mucous membranes--for example, cancer of the skin, of the lip, and of the tongue. The part played by injury is doubtful. It not infrequently happens that the development of a tumour is preceded by an injury of the part in which it grows, but it does not necessarily follow that the injury and the tumour are related as cause and effect. It is possible that an injury may stimulate into active growth undifferentiated tissue elements or "rests," and so determine the growth of a tumour, or that it may alter the characters of a tumour which already exists, causing it to grow more rapidly. The popular belief that there is some constitutional peculiarity concerned in the causation of tumours is largely based on the fact that certain forms of new growth--for example, cancer--are known to occur with undue frequency in certain families. The same influence is more striking in the case of certain innocent tumours--particularly multiple osteomas and lipomas--which are hereditary in the same sense as supernumerary or webbed fingers, and appear in members of the same family through several generations. INNOCENT AND MALIGNANT TUMOURS For clinical purposes, tumours are arbitrarily divided into two classes--the innocent and the malignant. The outstanding difference between them is, that while the evil effects of innocent tumours are entirely local and depend for their severity on the environment of the growth, malignant tumours wherever situated, in addition to producing similar local effects, injure the general health and ultimately cause death. _Innocent_, benign, or simple tumours present a close structural resemblance to the normal tissues of the body. They grow slowly, and are usually definitely circumscribed by a fibrous capsule, from which they are easily enucleated, and they do not tend to recur after removal. In their growth they merely push aside and compress adjacent parts, and they present no tendency to ulcerate and bleed unless the overlying skin or mucous membrane is injured. Although usually solitary, some are multiple from the outset--for example, fatty, fibrous, and bony tumours, warts, and fibroid tumours of the uterus. They produce no constitutional disturbance. They only threaten life when growing in the vicinity of vital organs, and then only in virtue of their situation--for example, death may result from an innocent tumour in the air-passage causing suffocation, in the intestine causing obstruction of the bowels, or in the vertebral canal causing pressure on the spinal medulla. _Malignant tumours_ usually show a marked departure from the structure and arrangement of the normal tissues of the body. Although the cells of which they are composed are derived from normal tissue cells, they tend to take on a lower, more vegetative form; they may be regarded as parasites living at the expense of the organism, multiplying indefinitely and destroying everything with which they come in contact. Malignant tumours grow more rapidly than innocent tumours, and tend to infiltrate their surroundings by sending out prolongations or offshoots; they are therefore liable to recur after an operation which is restricted to the removal of the main tumour. They are not encapsulated, although they may appear to be circumscribed by condensation of the surrounding tissues; they are rarely multiple at the outset, but show a marked tendency to spread to other parts of the body. Fragments of the parent tumour may become separated and be carried off in the lymph or blood-stream and deposited in other parts of the body, where they give rise to secondary growths. Malignant tumours tend to invade and destroy the overlying skin or mucous membrane, and thus give rise to bleeding ulcers; if the tumour tissue protrudes through the gap in the skin, it is said to _fungate_. In course of time they give rise to a condition of ill-health or _cachexia_, the patient becoming pale, sallow, feverish, and emaciated, probably as a result of chronic poisoning from the absorption of toxic products from the tumour. They ultimately destroy life, it may be by their local effects, such as ulceration and haemorrhage, by favouring the entrance of septic infection, by interfering with the function of organs which are essential to life, by cachexia, or by a combination of these effects. The situation of a malignant tumour exercises considerable influence on the rapidity, as well as on the mode, in which it causes death. Some cancers, such as that known as "rodent," show malignant features which are entirely local, while others, such as melanotic cancer, exhibit a malignancy characterised by rapid generalisation of growths throughout the body. Tumours that are structurally alike may show variations in malignancy, according to their situation and to the age of the patient, as well as to other factors which are as yet unknown. In attempting to arrive at a conclusion as to the innocence or malignancy of any tumour, too much reliance must not be placed on its histological features; its situation, rate of growth, and other clinical features must also be taken into consideration. It cannot be too emphatically stated that there is no hard-and-fast line between innocent and malignant growths; there is an indefinite transition from one to the other. The possibility of the transformation of a benign into a malignant tumour must be admitted. Such a transformation implies a change in the structure of the growth, and has been observed especially in fibrous and cartilaginous tumours, in tumours of the thyreoid gland, and in uterine fibroids. The alteration in character may take place under the influence of injury, prolonged or repeated irritation, incomplete removal of the benign tumour by operation, or the altered physiological conditions of the tissues which attend upon advancing years. After a tumour has been removed by operation it should as a routine measure be subjected to microscopical examination; the results are often instructive and sometimes other than what was expected. #Varieties of Tumours.#--In the following description, tumours are classified on an anatomical basis, taking in order first the connective-tissue group and subsequently those that originate in epithelium. INNOCENT CONNECTIVE-TISSUE TUMOURS #Lipoma.#--A lipoma is composed of fat resembling that normally present in the body. The commonest variety is the _subcutaneous lipoma_, which grows from the subcutaneous fat, and forms a soft, irregularly lobulated tumour (Fig. 45). The fat is arranged in lobules separated by connective-tissue septa, which are continuous with the capsule surrounding the tumour and with the overlying skin, which becomes dimpled or puckered when an attempt is made to pinch it up. As the fat is almost fluid at the body temperature, fluctuation can usually be detected. These tumours vary greatly in size, occur at all ages, grow slowly, and, while generally solitary, are sometimes multiple. They are most commonly met with on the shoulder, buttock, or back. In certain situations, such as the thigh and perineum, they tend to become pedunculated (Fig. 46). A fatty tumour is to be diagnosed from a cold abscess and from a cyst. The distinguishing features of the lipoma are the tacking down and dimpling of the overlying skin, the lobulation of the tumour, which is recognised when it is pressed upon with the flat of the hand, and, more reliable than either of these, the mobility, the tumour slipping away when pressed upon at its margin. [Illustration: FIG. 45.--Subcutaneous Lipoma showing lobulation.] The prognosis is more favourable than in any other tumour as it never changes its characters; the only reasons for its removal by operation are its unsightliness and its probable increase in size in the course of years. The operation consists in dividing the skin and capsule over the tumour and shelling it out. Care must be taken that none of the outlying lobules are left behind. If the overlying skin is damaged or closely adherent, it should be removed along with the tumour. [Illustration: FIG. 46.--Pedunculated Lipoma of Buttock of forty years' duration in a woman aet. 68.] _Multiple subcutaneous lipomas_ are frequently symmetrical, and in a certain group of cases, met with chiefly in women, pain is a prominent symptom, hence the term _adiposis dolorosa_ (Dercum). These multiple tumours show little or no tendency to increase in size, and the pain which attends their development does not persist. In the neck, axilla, and pubes a diffuse overgrowth of the subcutaneous fat is sometimes met with, forming symmetrical tumour-like masses, known as _diffuse lipoma_. As this is not, strictly speaking, a tumour, the term _diffuse lipomatosis_ is to be preferred. A similar condition was described by Jonathan Hutchinson as being met with in the domestic animals. If causing disfigurement, the mass of fat may be removed by operation. [Illustration: FIG. 47.--Diffuse Lipomatosis of Neck.] _Lipoma in other Situations._--The _periosteal lipoma_ is usually congenital, and is most often met with in the hand; it forms a projecting lobulated tumour, which, when situated in the palm, resembles an angioma or a lymphangioma. The _subserous lipoma_ arises from the extra-peritoneal fat in the posterior abdominal wall, in which case it tends to grow forwards between the layers of the mesentery and to give rise to an abdominal tumour; or it may grow from the extra-peritoneal fat in the anterior abdominal wall and protrude from one of the hernial openings or through an abnormal opening in the parietes, constituting a _fatty hernia_. A _subsynovial lipoma_ grows from the fat surrounding the synovial membrane of a joint, and projects into its interior, giving rise to the symptoms of loose body. Lipomas are also met with growing from the adipose connective tissue _between or in the substance of muscles_, and, when situated beneath the deep fascia, such as the fascia lata of the thigh, the characteristic signs are obscured and a differential diagnosis is difficult. It may be differentiated from a cold abscess by puncture with an exploring needle. [Illustration: FIG. 48.--Zanthoma of Hands in a girl aet. 14, showing multiple subcutaneous tumours (cf. Fig. 49). (Sir H. J. Stiles' case.)] #Zanthoma# is a rare but interesting form of tumour, composed of a fibrous and fatty tissue, containing a granular orange-yellow pigment, resembling that of the corpus luteum. It originates in the corium and presents two clinical varieties. In the first of these, it occurs in the form of raised yellow patches, usually in the skin of the eyelids of persons after middle life, and in many instances is associated with chronic jaundice; the patches are often symmetrical, and as they increase in size they tend to fuse with another. The second form occurs in children and adolescents; it may affect several generations of the same family, and is often multiple, there being a combination of thickened yellow patches of skin and projecting tumours, some of which may attain a considerable size (Figs. 48 and 49). On section, the tumour tissue presents a brilliant orange or saffron colour. There is no indication for removing the tumours unless for the deformity which they cause; exposure to the X-rays is to be preferred to operation. [Illustration: FIG. 49.--Zanthoma showing Subcutaneous Tumours on Buttocks. From same patient as Fig. 48.] #Chondroma.#--A chondroma is mainly composed of cartilage. Processes of vascular connective tissue pass in between the nodules of cartilage composing the tumour from the fibrous capsule which surrounds it. On section it is of a greyish-blue colour and semi-translucent. The tumour is firm and elastic in consistence, but certain portions may be densely hard from calcification or ossification, while other portions may be soft and fluctuating as a result of myxomatous degeneration and liquefaction. These tumours grow slowly and painlessly, and may surround nerves and arteries without injuring them. They may cause a deep hollow in the bone from which they originate. All intermediate forms between the innocent chondroma and the malignant chondro-sarcoma are met with. Chondroma may occur in a multiple form, especially in relation to the phalanges and metacarpal bones. When growing in the interior of a bone it causes a spindle-shaped enlargement of the shaft, which in the case of a phalanx or metacarpal bone may resemble the dactylitis resulting from tubercle or syphilis. A chondroma appears as a clear area in a skiagram. A _skiagram_ of a bone in which there is a chondroma shows a clear rounded area in the position of the tumour, which must be differentiated from similar clear areas due to other kinds of tumour, especially the myeloma; when it has undergone calcification or ossification, it gives a shadow as dark as bone. [Illustration: FIG. 50.--Chondroma growing from infraspinous fossa of Scapula.] [Illustration: FIG. 51.--Chondroma of Metacarpal Bone of Thumb.] _Treatment._--In view of the unstable quality of the chondroma, especially of its liability to become malignant, it should be removed as soon as it is recognised. In those projecting from the surface of a bone, both the tumour and its capsule should be removed. If in the interior, a sufficient amount of the cortex should be removed to allow of the tumour being scraped out, and care must be taken that no nodules of cartilage are left behind. In multiple chondromas of the hand, when the fingers are crippled and useless, exposure to the X-rays should be given a trial, and in extreme cases the question of amputation may have to be considered. When a cartilaginous tumour takes on active growth, it must be treated as malignant. The chondromas that are met with at the ends of the long bones in children and young adults form a group by themselves. They are usually related to the epiphysial cartilage, and it was suggested by Virchow that they take origin from islands of cartilage which have not been used up in the process of ossification. They are believed to occur more frequently in those who have suffered from rickets. They have no malignant tendencies and tend to undergo ossification concurrently with the epiphysial cartilage from which they take origin, and constitute what are known as _cartilaginous exostoses_. These are sometimes met with in a multiple form, and may occur in several generations of the same family. They are considered in greater detail in the chapter dealing with tumours of bone. Minute nodules of cartilage sometimes form in the synovial membrane of joints and lining of tendon sheaths and bursae: they tend to become detached from the membrane and constitute loose bodies; they also undergo a variable amount of calcification and ossification, so as to be visible in skiagrams. They are further considered with loose bodies in joints. Cartilaginous tumours in the parotid, submaxillary gland, and testicle belong to a class of "mixed tumours" that will be referred to later. #Osteoma.#--The true osteoma is composed of bony tissue, and originates from the skeleton. Two varieties are recognised--the spongy or cancellous, and the ivory or compact. The _spongy_ or _cancellous osteoma_ is really an ossified chondroma, and is met with at the ends of the long bones (Fig. 52). From the fact that it projects from the surface of the bone it is often spoken of as an _exostosis_. It grows slowly, and rarely causes any discomfort unless it presses upon a nerve-trunk or upon a bursa which has developed over it. The Rontgen rays show a dark shadow corresponding to the ossified portion of the tumour, and continuous with that of the bone from which it is growing (Fig. 138). Operative interference is only indicated when the tumour is giving rise to inconvenience. It is then removed, its base or neck being divided by means of the chisel. The multiple variety of osteoma is considered with the diseases of bone. The bony outgrowth from the terminal phalanx of the great toe--known as the _subungual exostosis_--is described and figured on p. 404. Bony projections or "spurs" sometimes occur on the under surface of the calcaneus, and, projecting downwards and forwards from the greater process, cause pain on putting the heel to the ground. [Illustration: FIG. 52.--Cancellous Osteoma of lower end of Femur.] The _ivory_ or _compact osteoma_ is composed of dense bone, and usually grows from the skull. It is generally sessile and solitary, and may grow into the interior of the skull, into the frontal sinus, into the cavity of the orbit or nose, or may fill up the external auditory meatus, causing most unsightly deformity and interference with sight, breathing, and hearing. Bony formations occur in _muscles and tendons_, especially at their points of attachment to the skeleton, and are known as false exostoses; they are described with the diseases of muscles. #Odontoma.#--An odontoma is composed of dental tissues in varying proportions and different degrees of development, arising from tooth-germs or from teeth still in process of growth (Bland Sutton). Odontomas resemble teeth in so far that during their development they remain hidden below the mucous membrane and give no evidence of their existence. There then succeeds, usually between the twentieth and twenty-fifth years, an eruptive stage, which is often attended with suppuration, and this may be the means of drawing attention to the tumour. Following Bland Sutton, several varieties of odontoma may be distinguished according to the part of the tooth-germ concerned in their formation. The _epithelial odontoma_ is derived from persistent portions of the epithelium of the enamel organ, and constitutes a multilocular cystic tumour which is chiefly met with in the mandible. The cystic spaces of the tumour contain a brownish glairy fluid. These tumours have been described by Eve under the name of multilocular cystic epithelial tumours of the jaw. The _follicular odontoma_, also known as a _dentigerous cyst_, is derived from the distension of a tooth follicle. It constitutes a cyst containing a viscid fluid, and an imperfectly formed tooth is often found embedded in its wall. The cyst usually forms in relation to one of the permanent molars, and may attain considerable dimensions. The _fibrous odontoma_ is the result of an overgrowth of fibrous tissue surrounding the tooth sac, which encapsulates the tooth and prevents its eruption. The thickened tooth sac is usually mistaken for a fibrous tumour, until, after removal, the tooth is recognised in its interior. _Composite Odontoma._--This is a convenient term to apply to certain hard dental tumours which are met with in the jaws, and consist of enamel, dentine, and cement. The tumour is to be regarded as being derived from an abnormal growth of all the elements of a tooth germ, or of two or more tooth germs, indiscriminately fused with one another. It may appear in childhood, and form a smooth unyielding tumour, often of considerable size, replacing the corresponding permanent tooth. It may cause a purulent discharge, and in some cases it has been extruded after sloughing of the overlying soft parts. Many examples of this variety of odontoma, growing in the nasal cavity or in the maxillary sinus, have been erroneously regarded as osteomas even after removal. On section, the tumour is usually laminated, and is seen to consist mainly of dentine with a partial covering of enamel and cement. _Diagnosis._--Odontomas are often only diagnosed after removal. When attended with suppuration, the condition has been mistaken for disease of the jaw. Fibrous odontomas have been mistaken for sarcoma, and portions of the maxilla removed unnecessarily. Any circumscribed tumour of the jaw, particularly when met with in a young adult, should suggest the possibility of an odontoma. Skiagrams often give useful information both for diagnosis and for treatment. _Treatment._--The solid varieties of odontoma can usually be shelled out after dividing the overlying soft parts. In the follicular variety, it is usually sufficient to excise a portion of the wall, scrape out the interior, and remove any tooth that may be present. The cavity is then packed and allowed to heal from the bottom. #Fibroma.#--A fibroma is a tumour composed of fibrous connective tissue. A distinction may be made between the _soft fibroma_, which is comparatively rich in cells and blood vessels, and in which the fibres are arranged loosely; and the _hard fibroma_, which is composed of closely packed bundles of fibres often arranged in a concentric fashion around the blood vessels. The cut surface of the soft fibroma presents a pinkish-white, fleshy appearance, resembling the slowly growing forms of sarcoma; that of a hard fibroma presents a dry, glistening appearance, aptly compared to watered silk. The soft variety grows much more rapidly than the hard. In certain fibromas--in those, for example, which grow from the periosteum of the base of the skull and project into the naso-pharynx--the blood vessels are dilated into sinuses and have no proper sheaths; they therefore tend to remain open when divided, and to bleed excessively. Transition forms between soft fibroma and sarcoma are met with, so that in operating for their removal it is safer to take away the capsule along with the tumour, and the patient should be kept under observation in view of the risk of recurrence. The skin--especially the skin of the buttock--is one of the favourite seats of fibroma, and it may occur in a multiple form. It is met with also in the subcutaneous and intermuscular cellular tissue, and in the abdominal wall, where it sometimes attains considerable dimensions. Various forms of fibroma are met with in the mamma and are described with diseases of that organ. The fibrous overgrowths in the skin, known as _keloid_ and _molluscum fibrosum_, and those met with in the _sheaths of nerves_, are described elsewhere. Fibroid tumours of the uterus are described with myoma. _Diffuse fibroma_ or _Fibromatosis_, analogous to lipomatosis, is met with in the connective tissue of the skin and sheaths of nerves, and constitutes one form of neuro-fibromatosis; a similar change is also met with in the stomach and colon. #Myxoma.#--A myxoma is composed of tissue of a soft gelatinous, semifluid consistence. The pure myxoma is extremely rare, and clinically resembles the lipoma. Myxomatous tissue is, however, frequently found in other connective-tissue tumours as a result of degeneration, for example, in cartilaginous tumours and in sarcomas. Myxomatous tissue is also a prominent constituent of the "innocent parotid tumour." Mucous polypus of the nose, which is often described as a myxoma, is merely a pendulous process of oedematous mucous membrane. [Illustration: FIG. 53.--Myeloma of Shaft of Humerus, causing pathological fracture. (Mr. J. W. Struthers' case.) (The unusual site of the tumour is to be noted.)] #Myeloma.#--A myeloma is composed of large multinuclear giant cells surrounded by round and spindle cells. The cut surface of the tumour presents a deep red or maroon colour. While occasionally met with in tendon sheaths and bursae, and is then of an orange-yellow colour, the myeloma occurs most frequently in the cancellous tissue at the ends of the long bones, its favourite site being the upper end of the tibia. Although formerly classified as a sarcoma, it is the exception for it to present malignant features, and it can usually be extirpated by local measures without fear of recurrence. The diagnosis, X-ray appearances, and the method of removal are considered with the diseases of bone. Sometimes the myeloma is met with in multiple form in the skeleton, in association with an unusual form of protein in the urine (Bence Jones). #Myoma.#--A myoma is composed of non-striped muscle fibres. A pure myoma is very rare, and is met with in organs possessed of non-striped muscle, such as the stomach, intestine, urinary bladder, and prostate. In the uterus, which is the most common situation, these tumours contain a considerable admixture of fibrous tissue, and are known as _fibroids_ or _fibro-myomas_. They present on section a fasciculated appearance, which may resemble that of a section of balls of cotton (Fig. 54). They are encapsulated and vascular, frequently attain a large size, and may be single or multiple. While they may occasion neither inconvenience nor suffering, they frequently give rise to profuse haemorrhage from the uterus, and may cause serious symptoms by pressing injuriously on the ureters or the intestine, or by complicating pregnancy and parturition. The #Rhabdomyoma# is an extremely rare form of tumour, met with in the kidney, uterus, and testicle. It contains striped muscle fibres, and is supposed to originate from a residue of muscular tissue which has become sequestrated during development. [Illustration: FIG. 54.--Fibro-myoma of Uterus. (Anatomical Museum, University of Edinburgh.)] #Glioma.#--A glioma is a tumour composed of neuroglia. It is met with exclusively in the central nervous system, retina, and optic nerve. It is a slowly growing, soft, ill-defined tumour, which displaces the adjacent nerve centres and nerve tracts, and is liable to become the seat of haemorrhage and thus to give rise to pressure symptoms resembling apoplexy. The glioma of the retina tends to grow into the vitreous humour and to perforate the globe. It is usually of the nature of a glio-sarcoma and is highly malignant. #Endotheliomas# take origin from the endothelium of lymph vessels and blood vessels, and serous cavities. They show great variation in type, partly because of the number of different kinds of endothelium from which they are derived, and partly because the new connective tissue which is formed is liable to undergo transformation into other tissues. They may be soft or hard, solid or cystic, diffuse or circumscribed; they grow very slowly, and are almost always innocent, although recurrence has been occasionally observed. Cases of multiple endotheliomata of the skin have recently been described by Wise. _Angioma_, _lymphangioma_, and _neuroma_ are described with the disease of the individual tissues. MALIGNANT CONNECTIVE-TISSUE TUMOURS--SARCOMA The term sarcoma is applied to any connective-tissue tumour which exhibits malignant characters. The essential structural feature is the predominance of the cellular elements over the intercellular substance or stroma, in which respect a sarcoma resembles the connective tissue of the embryo. The typical sarcoma consists chiefly of immature or embryonic connective tissue. It most frequently originates from fascia, intermuscular connective tissue, periosteum, bone-marrow, and skin, and forms a rounded or nodulated tumour which appears to be encapsulated, but the capsule merely consists of the condensed surrounding tissues, and usually contains sarcomatous elements. The consistence of the tumour depends on the nature and amount of the stroma, and on the presence of degenerative changes. The softer medullary forms are composed almost exclusively of cells; while the harder forms--such as the fibro-, chondro-, and osteo-sarcoma--are provided with an abundant stroma and are relatively poor in cells. Degenerative changes may produce areas of softening or liquefaction which result in the formation of cystic cavities in the interior of the tumour. The colour depends on the amount of blood in the tumour, and on the presence of the products of degeneration. The blood vessels are usually represented by mere chinks or spaces between the cells. This peculiarity accounts for the facility with which haemorrhage takes place into the substance of the tumour, the persistence of the bleeding when it is incised or ulcerates through the skin, and the readiness with which the sarcomatous cells are carried off and infect distant parts through the blood-stream. Sarcomas are devoid of lymphatics, and unless originating in lymphatic structures--for example, in the tonsil--they rarely infect the lymph glands. Minute portions of the tumour grow into the small veins, and, becoming detached, are transported by the blood-current to distant organs, where they are arrested in the capillaries and give rise to secondary growths. These are most frequently situated in the lungs, except when the primary growth lies within the territory of the portal circulation, in which case they occur in the liver. The secondary growths closely resemble the parent tumour. Sarcoma may invade an adjacent vein on such a scale that if the invading portion becomes detached it may constitute a dangerous embolus. This may be observed in sarcoma of the kidney, the growth taking place along the renal vein until it projects into the vena cava. [Illustration: FIG. 55.--Recurrent Sarcoma of Sciatic Nerve in a woman aet. 27. Recurrence twenty months after removal of primary growth.] In its growth, a sarcoma compresses and destroys neighbouring parts, surrounds vessels and nerves, and may lead to destruction of the skin, either by invading it, or more commonly by causing sloughing from pressure. Inflammatory and suppurative changes may take place as a result of pyogenic infection following upon sloughing of the overlying skin or upon an exploratory incision. Once the skin is broken the tumour fungates through the opening. Sarcomas vary in malignancy, especially as regards rapidity of growth and capacity for dissemination. Certain of them, such as the so-called "recurrent fibroid of Paget," grow comparatively slowly, and are only malignant in the sense that they tend to recur locally after removal; others--especially the more cellular ones--grow with extreme rapidity, and are early disseminated throughout the body, resembling in these respects the most malignant forms of cancer. They are usually solitary in the first instance, although primary multiple growths are occasionally met with in the skin and in the bones. Many varieties of sarcoma are recognised, according to its structural peculiarities. Thus, in virtue of the size and character of the cells, we have the _small round-celled_ and the _large round-celled_ sarcoma, the _small_ and the _large spindle-celled_, the _giant-celled_ and the _mixed-celled_ sarcoma. The _lympho-sarcoma_ presents a structure similar to that of lymph-follicular tissue, and the _alveolar sarcoma_ an arrangement of cells in alveoli resembling that seen in cancers. When there is a considerable amount of intercellular fibrous tissue, the tumour is called a _fibro-sarcoma_. [Illustration: FIG. 56.--Fungating Sarcoma of Arm. (Dr. J. M'Watt's case.)] The term _lymphangio-sarcoma_ is applied when the cells of the tumour are derived from the endothelium of lymph spaces and vessels. The _angio-sarcomas_ are those in which blood vessels form a prominent element in the structure of the tumour. They are sometimes derived from innocent angiomas, and they may be so vascular as to pulsate and on auscultation yield a blowing murmur like an aneurysm. The _glio-sarcoma_, _myxo-sarcoma_, _chondro-sarcoma_, and _myo-sarcoma_ are mixed forms which usually develop in pre-existing innocent tumours. The _osteo-sarcoma_ is characterised by the formation in the tumour of bone, the medullary spaces being occupied by sarcomatous cells in place of marrow. The _osteoid sarcoma_ is characterised by the formation of a tissue resembling bone but deficient in lime salts, and the _petrifying sarcoma_ by the formation of calcified areas in the stroma. These varieties, although met with chiefly in the bones, may occur in soft tissues such as muscle, and in such organs as the mamma. The pigmented varieties include the _chloroma_, which is of a light-green colour, and the _melanotic sarcoma_, which is brown or black. The _psammoma_ is a sarcoma containing a material resembling sand; it is chiefly met with in the membranes of the brain. The _chordoma_ is a rare form of tumour originating from the remains of the notochord in the region of the spheno-occipital synchondrosis or in the sacro-coccygeal region. _Diagnosis of Sarcoma._--A sarcoma is to be differentiated from an inflammatory swelling such as results from tubercle, actinomycosis, or syphilis, from an innocent tumour, and from a cancer. The points on which the diagnosis is founded are discussed with the different tissues and organs. _Treatment._--The removal of the tumour by operation is the most reliable method of treatment; in order to be successful it must be undertaken before dissemination has taken place, and a considerable area of healthy tissue beyond the apparent margin of the growth must be removed, and in tumours near the surface of the body, the overlying skin also. In order to prevent recurrence, a tube of _radium_, to which a silk thread is attached, is inserted into the space from which the tumour was removed; the thread is brought out at the drain-opening, and at the end of a week or ten days the tube of radium is removed by pulling on the thread. Radium causes a reaction in the tissues attended with exudation from the vessels, for the escape of which provision must be made. If radium is not available, the affected area is repeatedly exposed to the action of the _X-rays_ as soon as the wound has healed. The employment of these measures has diminished to a remarkable degree the recurrence of sarcoma after operation. It will readily be understood that the less thoroughly or radically the growth has been removed, the more do we depend upon radium or the X-rays for bringing about a permanent cure, and that in advanced cases of sarcoma and in cases in which, on account of their anatomical situation, removal by operation is necessarily incomplete, the prospect of cure is still more dependent on the use of radium or of the X-rays. Finally, there are cases in which removal by operation is impossible, the so-called _inoperable sarcoma_; a tube of radium, to which a silk thread is attached, is inserted into the substance of the tumour, either through an opening made by a large trocar, or, when necessary, by open dissection. A second tube of radium is placed upon the skin over the tumour and is secured there by a stitch or by a strip of plaster, thus securing a cross-fire action of the radium rays, both from within and without, as this is found to be much more efficacious in destroying or inhibiting the cellular elements of the growth. The tubes of radium are left _in situ_ for from eight to fourteen days, according to the power of the radium employed, but are moved about every second day or so in order that every part of the tumour may be efficiently radiated. If the tumour shrinks in size after the use of radium and becomes operable, it should be removed before time is given it to resume its growth. It will depend upon the subsequent course of the disease, whether or not a second, or it may be even a third, application of radium will be required. Where neither radium nor X-rays is available or applicable, recourse may be had to the injection of Coley's fluid, a preparation containing the mixed toxins of the streptococcus of erysipelas and the bacillus prodigiosus; or of selenium. EPITHELIAL TUMOURS An excessive and erratic growth of epithelium is the essential and distinguishing feature of these tumours. The innocent forms are the papilloma and the adenoma; the malignant, the carcinoma or cancer. #Papilloma.#--A papilloma is a tumour which projects from a cutaneous or mucous surface, and consists of a central axis of vascular fibrous tissue with a covering of epithelium resembling that of the surface from which the tumour grows. In the papillomas of the skin--commonly known as _warts_--the covering consists of epidermis; in those growing from mucous surfaces it consists of the epithelium covering the mucous membrane. When the surface epithelium projects as filiform processes, the tumour is called a _villous papilloma_, the best-known example of which is met with in the urinary bladder. Papillomatous growths are also met with in the larynx, in the ducts of the breast, and in the interior of certain cystic tumours of the breast and of the ovary. Although papillomas are primarily innocent, they may become the starting-point of cancer, especially in persons past middle life and if the papilloma has been subjected to irritation and has ulcerated. The clinical features and treatment of the various forms of papilloma are considered with the individual tissues and organs. #Adenoma.#--An adenoma is a tumour constructed on the type of, and growing in connection with, a secreting gland. In the substance of such glands as the mamma, parotid, thyreoid, and prostate, adenomas are met with as encapsulated tumours. When they originate from the glands of the skin or of a mucous membrane, they tend to project from the surface, and form pedunculated tumours or polypi. Adenomas may be single or multiple, and they vary greatly in size. The tumour is seldom composed entirely of gland tissue; it usually contains a considerable proportion of fibrous tissue, and is then called a _fibro-adenoma_. When it contains myxomatous tissue it is called a _myxo-adenoma_, and when the gland spaces of the tumour become distended with accumulated secretion, a _cystic adenoma_, the best examples of which are met with in the mamma and ovary. A characteristic feature of the cystic variety is the tendency the tumour tissue exhibits to project into the interior of the cysts, constituting what are known as _intracystic growths_. They are essentially innocent, but intracystic growths, especially in the mamma of women over fifty, should be regarded with suspicion and therefore should be removed on radical lines. Transition forms between adenoma and carcinoma are also met with in the rectum and large intestine, and these should be treated on the same lines as cancer. CARCINOMA OR CANCER A cancer is a malignant tumour which originates in epithelium. The cancer cells are derived by proliferation from already existing epithelium, and they invade the sub-epithelial connective tissue in the form of simple or branching columns. These columns are enclosed in spaces--termed alveoli--which are probably dilated lymph spaces, and which communicate freely with the lymph vessels. The cells composing the columns and filling the alveoli vary with the character of the epithelium in which the cancer originates. The malignancy of cancer depends on the tendency which the epithelium has of invading the tissues in its neighbourhood, and on the capacity of the cells, when transported elsewhere by the lymph or blood-stream, of giving rise to secondary growths. Cancer may arise on any surface covered by epithelium or in any of the secreting glands of the body, but it is much more common in some situations than in others. It is frequently met with, for example, in the skin, in the stomach and large intestine, in the breast, the uterus, and the external genitals; less frequently in the gall-bladder, larynx, thyreoid, prostate, and urinary bladder. Tissues appear to be most liable to cancer when, having attained maturity, they enter upon the phase of decadence or involution, and this phase is reached by different tissues at different periods. It is not so much, therefore, the age of the person in whom it occurs, as the age of the tissue in which it arises, that determines the maximum incidence of cancer. Cancer of the stomach appears and attains a maximum frequency earlier than cancer of the skin; cancer of the uterus and mamma is more frequent towards the decline of reproductive activity than in the later years of life; rectal cancer is not infrequently met with during the second and third decades. There is evidence that the irritation caused by alcohol and tobacco plays a part in the causation of cancer, in the fact that a large proportion of those who become the subjects of cancer of the mouth are excessive drinkers and smokers. A cancer may appear as a papillary growth on a mucous or a skin surface, as a nodule in the substance of an organ, or as a diffuse thickening of a tubular organ such as the stomach or intestine. The absence of definition in cancerous tumours explains the difficulty of completely removing them by surgical measures, and has led to the practice of complete extirpation of cancerous organs wherever this is possible. The boundaries of the affected organ, moreover, are frequently transgressed by the disease, and the epithelial infiltration implicates the surrounding parts. In cancer of the breast, for example, the disease often extends to the adjacent skin, fat, and muscle; in cancer of the lip or tongue, to the mandible; in cancer of the uterus or intestine, to the investing peritoneum. In addition to its tendency to infiltrate adjacent tissues and organs, cancer is also liable to give rise to _secondary growths_. These are most often met with in the nearest lymph glands; those in the neck, for example, becoming infected from cancer of the lip, tongue, or throat; those in the axilla, from cancer of the breast; those along the curvatures of the stomach, from cancer of the pylorus; and those in the groin, from cancer of the external genitals. In lymph vessels the cancer cells may merely accumulate so as to fill the lumen and form indurated cords, or they may proliferate and give rise to secondary nodules along the course of the vessels. When the lymphatic network in the skin is diffusely infected, the appearance is either that of a multitude of secondary nodules or of a diffuse thickening, so that the skin comes to resemble coarse leather. On the wall of the chest this condition is known as _cancer en cuirasse_. Although the cancer cells constantly attack the walls of the adjacent veins and spread into their interior at a comparatively early period, secondary growths due to dissemination by the blood-stream rarely show themselves clinically until late in the course of the disease. It is probable that many of the cancer cells which are carried away in the blood or lymph stream undergo necrosis and fail to give rise to secondary growths. Secondary growths present a faithful reproduction of the structure of the primary tumour. Apart from the lymph glands, the chief seats of secondary growths are the liver, lungs, serous membranes, and bone marrow. It is generally believed that the secondary growths in cancer that develop at a distance from the primary tumour, those, for example, in the medullary canal of the femur or in the diploe of the skull occurring in advanced cases of cancer of the breast, are the result of dissemination of cancer cells by way of the blood-stream and are to be regarded as emboli. Sampson Handley disagrees with this view; he believes that the dissemination is accomplished in a more subtle way, namely, by the actual growth of cancer cells along the finer vessels of the lymph plexuses that ramify in the deep fascia, a method of spread which he calls _permeation_. It is maintained also that permeation occurs as readily against the lymph stream as with it. He compares the spread of cancer to that of an invisible annular ringworm. The growing edge extends in a wider and wider circle, within which a healing process may occur, so that the area of permeation is a ring, rather than a disc. Healing occurs by a process of "peri-lymphatic fibrosis," but as the natural process of healing may fail at isolated points, nodules of cancer appear, which, although apparently separate from the primary growth, have developed in continuity with it, peri-lymphatic fibrosis having destroyed the cancer chain connecting the nodule with the primary growth. This centrifugal spread of cancer is clearly seen in the distribution of the subcutaneous secondary nodules so frequently met with in the late stages of mammary cancer. The area within which the secondary nodules occur is a circle of continually increasing diameter with the primary growth in the centre. In the rare cases in which the skin of the greater part of the body is affected, the nodules rarely appear below the level of the deltoid or the middle third of the thigh, the patient dying before the spread can reach the distal portions of the limbs. Handley argues against the embolic origin of the metastases in the bones because of the rarity of these in the bones of the distal parts of the limbs, because of the fact that secondary cancer of the femur nearly always commences in the upper third of the shaft, which harmonises with the intimate connection of the deep fascia with the periosteum over the great trochanter, thus favouring invasion of the bone marrow when permeation has spread thus far. He claims support for the permeation theory from the fact that the humerus is rarely involved below the insertion of the deltoid, and that spontaneous fracture of the femur is three times more common on the side on which the breast cancer is situated. The tumour tissue may undergo necrosis, and when the overlying skin or mucous membrane gives way an ulcer is formed. The margins of a _cancerous ulcer_ (Fig. 57) are made up of tumour tissue which has not broken down. Usually they are irregular, nodularly thickened or indurated; sometimes they are raised and crater-like. The floor of the ulcer is smooth and glazed, or occupied by necrosed tissue, and the discharge is watery and blood-stained, and as a result of putrefactive changes may become offensive. Haemorrhage is rarely a prominent feature, but discharge of blood may constitute a symptom of considerable diagnostic importance in cancer of internal organs such as the rectum, the bladder, or the uterus. [Illustration: FIG. 57.--Carcinoma of Breast with Cancerous Ulcer.] _The Contagiousness of Cancer._--A limited number of cases are on record in which a cancer appears to have been transferred by contact, as from the lower to the upper lip, from one labium majus to the other, from the tongue to the cheek, and from one vocal cord to the other; these being all examples of cancer involving surfaces which are constantly or frequently in contact. The transference of cancer from one human being to another, whether by accident, as in the case of a surgeon wounding his finger while operating for cancer, or by the deliberate introduction of a portion of cancerous tumour into the tissues, has never been known to occur. It is by no means infrequent, however, that when recurrence takes place after an operation for the removal of cancer, the recurrent nodules make their appearance in the main scar or in the scars of stitches in its neighbourhood. In the lower animals the grafting of cancer only succeeds in animals of the same species; for example, a cancer taken from a mouse will not grow in the tissues of a rat, but only in a mouse of the same variety as that from which the graft was taken. While cancer cannot be regarded as either contagious or infectious, it is important to bear in mind the possibility of infection of a wound with cancer when operating for the disease. A cancer should not be cut into unless this is essential for purposes of diagnosis, and the wound made for exploration should be tightly closed by stitches before the curative operation is proceeded with; the instruments used for the exploration must not be used again until they have been boiled. The greatest care should be taken that a cancer which has softened or broken down is not opened into during the operation. Investigations regarding the cause of cancer have been prosecuted with great energy during recent years, but as yet without positive result. It is recognised that there are a number of conditions which favour the development of cancer, such as prolonged irritation, and a considerable number of cases have been recorded in which cancer of the skin of the hands has followed prolonged and repeated exposure to the Rontgen rays. _The Alleged Increase of Cancer._--Regarding the alleged increase of cancer, it may be pointed out that it is impossible to ascertain how much of the apparent increase is due to more accurate diagnosis and improved registration. It is probable also that some increase has taken place in consequence of the increased average duration of life; a larger proportion of persons now reach the age at which cancer is frequent. _The prognosis_ largely depends on the variety of cancer and on its situation. Certain varieties--such as the atrophic cancer of the breast which occurs in old people, and some forms of cancer in the rectum--are so indolent in their progress that they can scarcely be said to shorten life; while others--such as the softer varieties of mammary cancer occurring in young women--are among the most malignant of tumours. The mode in which cancer causes death depends to a large extent upon its situation. In the gullet, for example, it usually causes death by starvation; in the larynx or thyreoid, by suffocation; in the intestine, by obstruction of the bowels; in the uterus, prostate, and bladder, by haemorrhage or by implication of the ureters and kidneys. Independently of their situation, however, cancers frequently cause death by giving rise to a progressive impairment of health known as the _cancerous cachexia_, a condition which is due to the continued absorption of poisonous products from the tumour. The patient loses appetite, becomes emaciated, pale, and feverish, and gradually loses strength until he dies. In many cases, especially those in which ulceration has occurred, the addition of pyogenic infection may also be concerned in the failure of health. _Treatment._--Removal by surgical means affords the best prospect of cure. If carcinomatous disease is to be rooted out, its mode of spread by means of the lymph vessels must be borne in mind, and as this occurs at an early stage, and is not evident on examination, a wide area must be included in the operation. The organ from which the original growth springs should, if practicable, be altogether removed, because its lymph vessels generally communicate freely with each other, and secondary deposits have probably already taken place in various parts of it. In addition, the nearest chain of lymph glands must also be removed, even though they may not be noticeably enlarged, and in some cases--in cancer of the breast, for example--the intervening lymph vessels should be removed at the same time. The treatment of cancer by other than operative methods has received a great deal of attention within recent years, and many agents have been put to the test, _e.g._ colloidal suspensions of selenium, but without any positive results. Most benefit has resulted from the use of radium and of the X-rays, and one or other should be employed as a routine measure after every operation for cancer. It has been demonstrated that cancer cells are more sensitive to radium and to the Rontgen rays than the normal cells of the body, and are more easily killed. The effect varies a good deal with the nature and seat of the tumour. In rodent cancers of the skin, for example, both radium and X-ray treatment are very successful, and are to be preferred to operation because they yield a better cosmetic result. While small epitheliomas of the skin may be cured by means of the rays, they are not so amenable as rodent cancers. Cancers of mucous membranes are less amenable to ray treatment because they are less circumscribed and are difficult of access. In cancers under the skin, the Rontgen rays are less efficient; if radium is employed, the tube containing it should be inserted into the substance of the tumour after the method described in connection with sarcoma--and another tube should be placed on the overlying skin. In the employment of X-rays and of radium in the treatment of cancer, experience is required, not only to obtain the maximum effect of the rays, but to avoid damage to the adjacent and overlying tissues. Ray treatment is not to be looked upon as a rival but as a powerful supplement to the operative treatment of cancer. VARIETIES OF CANCER The varieties of cancer are distinguished according to the character and arrangement of the epithelial cells. The _squamous epithelial cancer_ or _epithelioma_ originates from a surface covered by squamous epithelium, such as the skin, or the mucous membrane of the mouth, gullet, or larynx. The cancer cells retain the characters of squamous epithelium, and, being confined within the lymph spaces of the sub-epithelial connective tissue, become compressed and undergo a horny change. This results in the formation of concentrically laminated masses known as cell nests. The clinical features are those of a slowly growing indurated tumour, which nearly always ulcerates; there is a characteristic induration of the edges and floor of the ulcer, and its surface is often covered with warty or cauliflower-like outgrowths (Fig. 58). The infection of the lymph glands is early and constant, and constitutes the most dangerous feature of the disease; the secondary growths in the glands exhibit the characteristic induration, and may themselves break down and lead to the formation of ulcers. [Illustration: FIG. 58.--Epithelioma of Lip.] Epithelioma frequently originates in long-standing ulcers or sinuses, and in scars, and probably results from the displacement and sequestration of epithelial cells during the process of cicatrisation. The _columnar epithelial cancer_ or _columnar epithelioma_ originates in mucous membranes covered with columnar epithelium, and is chiefly met with in the stomach and intestine. As it resembles an adenoma in structure it is sometimes described as a _malignant adenoma_. Its malignancy is shown by the proliferating epithelium invading the other coats of the stomach or intestine, and by the development of secondary growths. _Glandular carcinoma_ originates in organs such as the breast, and in the glands of mucous membranes and skin. The epithelial cells are not arranged on any definite plan, but are closely packed in irregularly shaped alveoli. If the alveoli are large and the intervening stroma is scanty and delicate, the tumour is soft and brain-like, and is described as a _medullary_ or _encephaloid cancer_. If the alveoli are small and the intervening stroma is abundant and composed of dense fibrous tissue, the tumour is hard, and is known as a _scirrhous cancer_--a form which is most frequently met with in the breast. If the cells undergo degeneration and absorption and the stroma contracts, the tumour becomes still harder, and tends to shrink and to draw in the surrounding parts, leading, in the breast, to retraction of the nipple and overlying skin, and in the stomach and colon to narrowing of the lumen. When the cells of the tumour undergo colloid degeneration, a _colloid cancer_ results; if the degeneration is complete, as may occur in the breast, the malignancy is thereby greatly diminished; if only partial, as is more common in rectal cancer, the malignancy is not appreciably affected. Melanin pigment is formed in relation to the cells and stroma of certain epithelial tumours, giving rise to _melanotic cancer_, one of the most malignant of all new growths. Cyst-like spaces may form in the tumour by the accumulation of the secretion of the epithelial cells, or as a result of their degeneration--_cystic carcinoma_. This is met with chiefly in the breast and ovary, and the tumour resembles the cystic adenoma, but it tends to infect its surroundings and gives rise to secondary growths. _Rodent cancer_ originates in the glands of the skin, and presents a special tendency to break down and ulcerate on the surface (Figs. 102 and 103). It almost never infects the lymph glands. DERMOIDS A dermoid is a tumour containing skin or mucous membrane, occurring in a situation where these tissues are not met under normal conditions. The _skin dermoid_, or _derma-cyst_ as it has been called by Askanazy, arises from a portion of epiblast, which has become sequestrated during the process of coalescence of two cutaneous surfaces in development. This form is therefore most frequently met with on the face and neck in the situations which correspond to the various clefts and fissures of the embryo. It occurs also on the trunk in situations where the lateral halves of the body coalesce during development. Such a dermoid usually takes the form of a globular cyst, the wall of which consists of skin, and the contents of turbid fluid containing desquamated epithelium, fat droplets, cholestrol crystals, and detached hairs. Delicate hairs may also be found projecting from the epithelial lining of the cyst. Faulty coalescence of the cutaneous covering of the back occurs most frequently over the lower sacral vertebrae, giving rise to small congenital recesses, known as post-anal dimples and coccygeal sinuses. These recesses are lined with skin, which is furnished with hairs, sebaceous and sweat glands. If the external orifice becomes occluded, there results a dermoid cyst. _Tubulo-dermoids_ arise from embryonic ducts and passages that are normally obliterated at birth, for example, _lingual dermoids_ develop in relation to the thyreo-glossal duct; _rectal and post-rectal_ dermoids to the post-anal gut; and _branchial dermoids_ in relation to the branchial clefts. Tubulo-dermoids present the same structure as skin dermoids, save that mucous membrane takes the place of skin in the wall of the cyst, and the contents consist of the pent-up secretion of mucous glands. _Clinical Features._--Although dermoids are of congenital origin, they are rarely evident at birth, and may not give rise to visible tumours until puberty, when the skin and its appendages become more active, or not till adult life. Superficial dermoids, such as those met with at the outer angle of the orbit, form rounded, definitely limited tumours over which the skin is freely movable. They are usually adherent to the deeper parts, and when situated over the skull may be lodged in a depression or actual gap in the bone. Sometimes the cyst becomes infected and suppurates, and finally ruptures on the surface. This may lead to a natural cure, or a persistent sinus may form. Dermoids more deeply placed, such as those within the thorax, or those situated between the rectum and sacrum, give rise to difficulty in diagnosis, even with the help of the X-rays, and their nature is seldom recognised until the escape of the contents--particularly hairs--supplies the clue. The literature of dermoid cysts is full of accounts of puzzling tumours met with in all sorts of situations. The treatment is to remove the cyst. When it is impossible to remove the whole of the lining membrane by dissection, the portion that is left should be destroyed with the cautery. _Ovarian Dermoids._--Dermoids are not uncommon in the ovary (Fig. 59). They usually take the form of unilocular or multilocular cysts, the wall of which contains skin, mucous membrane, hair follicles, sebaceous, sweat, and mucous glands, nails, teeth, nipples, and mammary glands. The cavity of the cyst usually contains a pultaceous mixture of shed epithelium, fluid fat, and hair. If the cyst ruptures, the epithelial elements are diffused over the peritoneum, and may give rise to secondary dermoids. [Illustration: FIG. 59.--Dermoid Cyst of Ovary showing Teeth in its interior.] The ovarian dermoid appears clinically as an abdominal or pelvic tumour provided with a pedicle; if the pedicle becomes twisted, the tumour undergoes strangulation, an event which is attended with urgent symptoms, not unlike those of strangulated hernia. The treatment consists in removing the tumour by laparotomy. #Teratoma.#--A teratoma is believed to result from partial dichotomy or cleavage of the trunk axis of the embryo, and is found exclusively in connection with the skull and vertebral column. It may take the form of a monstrosity such as conjoined twins or a parasitic foetus, but more commonly it is met with as an irregularly shaped tumour, usually growing from the sacrum. On dissection, such a tumour is found to contain a curious mixture of tissues--bones, skin, and portions of viscera, such as the intestine or liver. The question of the removal of the tumour requires to be considered in relation to the conditions present in each individual case. CYSTS[3] [3] Cysts which form in relation to new-growths have been considered with tumours. Cysts are rounded sacs, the wall being composed of fibrous tissue lined by epithelium or endothelium; the contents are fluid or semi-solid, and vary in character according to the tissue in which the cyst has originated. _Retention and Exudation Cysts._--_Retention cysts_ develop when the duct of a secreting gland is partly obstructed; the secretion accumulates, and the gland and its duct become distended into a cyst. They are met with in the mamma and in the salivary glands. Sebaceous cysts or wens are described with diseases of the skin. _Exudation cysts_ arise from the distension of cavities which are not provided with excretory ducts, such as those in the thyreoid. _Implantation cysts_ are caused by the accidental transference of portions of the epidermis into the underlying connective tissue, as may occur in wounds by needles, awls, forks, or thorns. The implanted epidermis proliferates and forms a small cyst. They are met with chiefly on the palmar aspect of the fingers, and vary in size from a split pea to a cherry. The treatment consists in removing them by dissection. _Parasitic cysts_ are produced by the growth within the tissues of cyst-forming parasites, the best known being the taenia echinococcus, which gives rise to the _hydatid cyst_. The liver is by far the most common site of hydatid cysts in the human subject. With regard to the further life-history of hydatids, the living elements of the cyst may die and degenerate, or the cyst may increase in size until it ruptures. As a result of pyogenic infection the cyst may be converted into an abscess. The _clinical features_ of hydatids vary so much with their situation and size, that they are best discussed with the individual organs. In general it may be said that there is a slow formation of a globular, elastic, fluctuating, painless swelling. Fluctuation is detected when the cyst approaches the surface, and it is then also that percussion may elicit the "hydatid thrill" or fremitus. This thrill is not often obtainable, and in any case is not pathognomonic of hydatids, as it may be elicited in ascites and in other abdominal cysts. Pressure of the cyst upon adjacent structures, and the occurrence of suppuration, are attended with characteristic clinical features. The _diagnosis_ of hydatids will be considered with the individual organs. The disease is more common in certain parts of Australia and in Shetland and Iceland than in countries where the association of dogs in the domestic life of the inhabitants is less intimate. Pfeiler, who has worked at the _serum diagnosis of hydatid disease_, regards the complement deviation method as the most reliable; he believes that a positive reaction may almost be regarded as absolutely diagnostic of an echinococcal lesion. The _treatment_ is to excise the cyst completely, or to inject into it a 1 per cent. solution of formalin. In operating upon hydatids the utmost care must be taken to avoid leakage of the contents of the cyst, as these may readily disseminate the infection. A _blood cyst_ or haematoma results from the encapsulation of extravasated blood in the tissues, from haemorrhage taking place into a preformed cyst, or from the saccular pouching of a varicose vein. A _lymph cyst_ usually results from a contusion in which the skin is forcibly displaced from the subjacent tissues, and lymph vessels are thereby torn across. The cyst is usually situated between the skin and fascia, and contains clear or blood-stained serum. At first it is lax and fluctuates readily, later it becomes larger and more tense. The treatment consists in drawing off the contents through a hollow needle and applying firm pressure. Apart from injury, lymph cysts are met with as the result of the distension of lymph spaces and vessels (_lymphangiectasis_); and in lymphangiomas, of which the best-known example is the cystic hygroma or hydrocele of the neck. GANGLION This term is applied to a cyst filled with a clear colourless jelly or colloid material, met with in the vicinity of a joint or tendon sheath. The commonest variety--the _carpal ganglion_--popularly known as a sprained sinew--is met with as a smooth, rounded, or oval swelling on the dorsal aspect of the carpus, usually towards its radial side (Fig. 60). It is situated over one of the intercarpal or other joints in this region, and may be connected with one or other of the extensor tendons. The skin and fascia are movable over the cyst. The cyst varies in size from a pea to a pigeon's egg, and usually attains its maximum size within a few months and then remains stationary. It becomes tense and prominent when the hand is flexed towards the palm. Its appearance is usually ascribed to some strain of the wrist--for example, in girls learning gymnastics. It may cause no symptoms or it may interfere with the use of the hand, especially in grasping movements and when the hand is dorsiflexed. In girls it may give rise to pain which shoots up the arm. Ganglia are also met with on the dorsum of the metacarpus and on the palmar aspect of the wrist. [Illustration: FIG. 60.--Carpal Ganglion in a woman aet. 25.] The _tarsal ganglion_ is situated on the dorsum of the foot over one or other of the intertarsal joints. It is usually smaller, flatter, and more tense than that met with over the wrist, so that it is sometimes mistaken for a bony tumour. It rarely causes symptoms, unless so situated as to be pressed upon by the boot. _Ganglia in the region of the knee_ are usually situated over the interval between the femur and tibia, most often on the lateral aspect of the joint in front of the tendon of the biceps (Fig. 61). The swelling, which may attain the size of half a walnut, is tense and hard when the knee is extended, and becomes softer and more prominent when it is flexed. They are met with in young adults who follow laborious occupations or who indulge in athletics, and they cause stiffness, discomfort, and impairment of the use of the limb. A ganglion is sometimes met with on the median aspect of the head of the metatarsal bone of the great toe and may be the cause of considerable suffering; it is indistinguishable from the thickened and enlarged bursa so commonly present in this situation in the condition known as bunion. [Illustration: FIG. 61.--Ganglion on lateral aspect of Knee in a young woman.] Ganglionic cysts are met with in other situations than those mentioned, but they are so rare as not to require separate description. Ganglia are to be diagnosed by their situation and physical characters; enlarged bursae, synovial cysts, and new-growths are the swellings most likely to be mistaken for them. The diagnosis is sometimes only cleared up by withdrawing the clear, jelly-like contents through a hollow needle. _Pathological Anatomy._--The wall of the cyst is composed of fibrous tissue closely adherent to or fused with the surrounding tissues, so that it cannot be shelled out. There is no endothelial lining, and the fibrous tissue of the wall is in immediate contact with the colloid material in the interior, which appears to be derived by a process of degeneration from the surrounding connective tissue. In the region of the knee the ganglion is usually multilocular, and consists of a meshwork of fibrous tissue, the meshes of which are occupied by colloid material. It is often stated that a ganglion originates from a hernial protrusion of the synovial membrane of a joint or tendon sheath. We have not been able to demonstrate any communication between the cavity of the cyst and that of an adjacent tendon sheath or joint. It is possible, however, that the cyst may originate from a minute portion of synovial membrane being protruded and strangulated so that it becomes disconnected from that to which it originally belonged; it may then degenerate and give rise to colloid material, which accumulates and forms a cyst. Ledderhose and others regard ganglia as entirely new formations in the peri-articular tissues, resulting from colloid degeneration of the fibrous tissue of the capsular ligament, occurring at first in numerous small areas which later coalesce. Ganglia are probably, therefore, of the nature of degeneration cysts arising in the capsule of joints, in tendons, and in their sheaths. _Treatment._--A ganglion can usually be got rid of by a modification of the old-fashioned seton. The skin and cyst wall are transfixed by a stout needle carrying a double thread of silkworm gut; some of the colourless jelly escapes from the punctures; the ends of the thread are tied and cut short, and a dressing is applied. A week later the threads are removed and the minute punctures are sealed with collodion. The action of the threads is to convert the cyst wall into granulation tissue, which undergoes the usual conversion into scar tissue. If the cyst re-forms, it should be removed by open dissection under local anaesthesia. Puncture with a tenotomy knife and scraping the interior, and the injection of irritants, are alternative, but less satisfactory, methods of treatment. _Ganglia_ in the substance of _tendons_ are rare. The diagnosis rests on the observation that the small tumour is cystic, and that it follows the movements of the tendon. The cyst is at first multiple, but the partitions disappear, and the spaces are thrown into one. The tendon is so weakened that it readily ruptures. The best treatment is to resect the affected segment of tendon. The so-called "compound palmar ganglion" is a tuberculous disease of the tendon sheaths, and is described with diseases of tendon sheaths. CHAPTER XI INJURIES CONTUSIONS--WOUNDS: _Varieties_--WOUNDS BY FIREARMS AND EXPLOSIVES: _Pistol-shot wounds_; _Wounds by sporting guns_; _Wounds by rifle bullets_; _Wounds received in warfare_; _Shell wounds_. _Embedded foreign bodies_--BURNS AND SCALDS--INJURIES PRODUCED BY ELECTRICITY: _X-ray and radium_; _Electrical burns_; _Lightning stroke_. CONTUSIONS A contusion or bruise is a laceration of the subcutaneous soft tissues, without solution of continuity of the skin. When the integument gives way at the same time, a _contused-wound_ results. Bruising occurs when force is applied to a part by means of a blunt object, whether as a direct blow, a crush, or a grazing form of violence. If the force acts at right angles to the part, it tends to produce localised lesions which extend deeply; while, if it acts obliquely, it gives rise to lesions which are more diffuse, but comparatively superficial. It is well to remember that those who suffer from scurvy, or haemophilia (bleeders), and fat and anaemic females, are liable to be bruised by comparatively trivial injuries. _Clinical Features._--The less severe forms of contusion are associated with _ecchymosis_, numerous minute and discrete punctate haemorrhages being scattered through the superficial layers of the skin, which is slightly oedematous. The effused blood is soon reabsorbed. The more severe forms are attended with _extravasation_, the extravasated blood being widely diffused through the cellular tissue of the part, especially where this is loose and lax, as in the region of the orbit, the scrotum and perineum, and on the chest wall. A blue or bluish-black discoloration occurs in patches, varying in size and depth with the degree of force which produced the injury, and in shape with the instrument employed. It is most intense in regions where the skin is naturally thin and pigmented. In parts where the extravasated blood is only separated from the oxygen of the air by a thin layer of epidermis or by a mucous membrane, it retains its bright arterial colour. These points are often well illustrated in cases of black eye, where the blood effused under the conjunctiva is bright red, while that in the eyelids is almost black. In severe contusions associated with great tension of the skin--for example, over the front of the tibia or around the ankle--blisters often form on the surface and constitute a possible avenue of infection. When deeply situated, the blood tends to spread along the lines of least resistance, partly under the influence of gravity, passing under fasciae, between muscles, along the sheaths of vessels, or in connective-tissue spaces, so that it may only reach the surface after some time, and at a considerable distance from the seat of injury. This fact is sometimes of importance in diagnosis, as, for example, in certain fractures of the base of the skull, where discoloration appears under the conjunctiva or behind the mastoid process some days after the accident. Blood extravasated deeply in the tissues gives rise to a firm, resistant, doughy swelling, in which there may be elicited on deep palpation a peculiar sensation, not unlike the crepitus of fracture. It frequently happens that, from the tearing of lymph vessels, serous fluid is extravasated, and a _lymphatic_ or _serous cyst_ may form. In all contusions accompanied by extravasation, there is marked swelling of the area involved, as well as pain and tenderness. The temperature may rise to 101 o F., or, in the large extravasations that occur in bleeders, even higher--a form of aseptic fever. The degree of shock is variable, but sudden syncope frequently results from severe bruises of the testicle, abdomen, or head, and occasionally marked nervous depression follows these injuries. Contusion of muscles or nerves may produce partial atrophy and paresis, as is often seen after injuries in the region of the shoulder. In alcoholic or other debilitated patients, suppuration is liable to ensue in bruised parts, infection taking place from cocci circulating in the blood, or through the overlying skin. _Terminations of Contusions._--The usual termination is a complete return to the normal, some of the extravasated blood being organised, but most of it being reabsorbed. During the process characteristic alterations in the colour of the effused blood take place as a result of changes in the blood pigment. In from twenty-four to forty-eight hours the margins of the blue area become of a violet hue, and as time goes on the discoloured area increases in size, and becomes successively green, yellow, and lemon-coloured at its margins, the central part being the last to change. The rate at which this play of colours proceeds is so variable, and depends on so many circumstances, that no time-limits can be laid down. During the disintegration of the effused blood the adjacent lymph glands may become enlarged, and on dissection may be found to be pigmented. Sometimes the blood persists as a collection of fluid with a newly formed connective-tissue capsule, constituting a _haematoma_ or _blood cyst_, more often met with in the scalp than in other parts. The impairment of the blood supply of the skin may lead to the formation of _blisters_, or to _necrosis_. Death of skin is more liable to occur in bleeders, and when the slough separates the blood-clot is exposed and the reparative changes go on extremely slowly. _Suppuration_ may occur and lead to the formation of an abscess as a result of direct infection from the skin or through the circulation. _Treatment._--If the patient is seen immediately after the accident, elevation of the part, and firm pressure applied by means of a thick pad of cotton wool and an elastic bandage, are useful in preventing effusion of blood. Ice-bags and evaporating lotions are to be used with caution, as they are liable to lower the vitality of the damaged tissues and lead to necrosis of the skin. When extravasation has already taken place, massage is the most speedy and efficacious means of dispersing the effused blood. The part should be massaged several times a day, unless the presence of blebs or abrasions of the skin prevents this being done. When this is the case, the use of antiseptic dressings is called for to prevent infection and to promote healing, after which massage is employed. When the tension caused by the extravasated blood threatens the vitality of the skin, incisions may be made, if asepsis can be assured. The blood from a haematoma may be withdrawn by an exploring needle, and the puncture sealed with collodion. Infective complications must be looked for and dealt with on general principles. WOUNDS A wound is a solution in the continuity of the skin or mucous membrane and of the underlying tissues, caused by violence. Three varieties of wounds are described: incised, punctured, and contused and lacerated. #Incised Wounds.#--Typical examples of incised wounds are those made by the surgeon in the course of an operation, wounds accidentally inflicted by cutting instruments, and suicidal cut-throat wounds. It should be borne in mind in connection with medico-legal inquiries, that wounds of soft parts that closely overlie a bone, such as the skull, the tibia, or the patella, although, inflicted by a blunt instrument, may have all the appearances of incised wounds. _Clinical Features._--One of the characteristic features of an incised wound is its tendency to gape. This is evident in long skin wounds, and especially when the cut runs across the part, or when it extends deeply enough to divide muscular fibres at right angles to their long axis. The gaping of a wound, further, is more marked when the underlying tissues are in a state of tension--as, for example, in inflamed parts. Incised wounds in the palm of the hand, the sole of the foot, or the scalp, however, have little tendency to gape, because of the close attachment of the skin to the underlying fascia. Incised wounds, especially in inflamed tissues, tend to bleed profusely; and when a vessel is only partly divided and is therefore unable to contract, it continues to bleed longer than when completely cut across. The _special risks_ of incised wounds are: (1) division of large blood vessels, leading to profuse haemorrhage; (2) division of nerve-trunks, resulting in motor and sensory disturbances; and (3) division of tendons or muscles, interfering with movement. _Treatment._--If haemorrhage is still going on, it must be arrested by pressure, torsion, or ligature, as the accumulation of blood in a wound interferes with union. If necessary, the wound should be purified by washing with saline solution or eusol, and the surrounding skin painted with iodine, after which the edges are approximated by sutures. The raw surfaces must be brought into accurate apposition, care being taken that no inversion of the cutaneous surface takes place. In extensive and deep wounds, to ensure more complete closure and to prevent subsequent stretching of the scar, it is advisable to unite the different structures--muscles, fasciae, and subcutaneous tissue--by separate series of _buried sutures_ of catgut or other absorbable material. For the approximation of the skin edges, stitches of horse-hair, fishing-gut, or fine silk are the most appropriate. These _stitches of coaptation_ may be interrupted or continuous. In small superficial wounds on exposed parts, stitch marks may be avoided by approximating the edges with strips of gauze fixed in position by collodion, or by subcutaneous sutures of fine catgut. Where the skin is loose, as, for example, in the neck, on the limbs, or in the scrotum, the use of Michel's clips is advantageous in so far as these bring the deep surfaces of the skin into accurate apposition, are introduced with comparatively little pain, and leave only a slight mark if removed within forty-eight hours. When there is any difficulty in bringing the edges of the wound into apposition, a few interrupted _relaxation stitches_ may be introduced wide of the margins, to take the strain off the coaptation stitches. Stout silk, fishing-gut, or silver wire may be employed for this purpose. When the tension is extreme, Lister's button suture may be employed. The tension is relieved and death of skin prevented by scoring it freely with a sharp knife. Relaxation stitches should be removed in four or five days, and stitches of coaptation in from seven to ten days. On the face and neck, wounds heal rapidly, and stitches may be removed in two or three days, thus diminishing the marks they leave. _Drainage._--In wounds in which no cavity has been left, and in which there is no reason to suspect infection, drainage is unnecessary. When, however, the deeper parts of an extensive wound cannot be brought into accurate apposition, and especially when there is any prospect of oozing of blood or serum--as in amputation stumps or after excision of the breast--drainage is indicated. It is a wise precaution also to insert drainage tubes into wounds in fat patients when there is the slightest reason to suspect the presence of infection. Glass or rubber tubes are the best drains; but where it is desirable to leave little mark, a few strands of horse-hair, or a small roll of rubber, form a satisfactory substitute. Except when infection occurs, the drain is removed in from one to four days and the opening closed with a Michel's clip or a suture. #Punctured Wounds.#--Punctured wounds are produced by narrow, pointed instruments, and the sharper and smoother the instrument the more does the resulting injury resemble an incised wound; while from more rounded and rougher instruments the edges of the wound are more or less contused or lacerated. The depth of punctured wounds greatly exceeds their width, and the damage to subcutaneous parts is usually greater than that to the skin. When the instrument transfixes a part, the edges of the wound of entrance may be inverted, and those of the exit wound everted. If the instrument is a rough one, these conditions may be reversed by its sudden withdrawal. Punctured wounds neither gape nor bleed much. Even when a large vessel is implicated, the bleeding usually takes place into the tissues rather than externally. The _risks_ incident to this class of wounds are: (1) the extreme difficulty, especially when a dense fascia has been perforated, of rendering them aseptic, on account of the uncertainty as to their depth, and of the way in which the surface wound closes on the withdrawal of the instrument; (2) different forms of aneurysm may result from the puncture of a large vessel; (3) perforation of a joint, or of a serous cavity, such as the abdomen, thorax, or skull, materially adds to the danger. _Treatment._--The first indication is to purify the whole extent of the wound, and to remove any foreign body or blood-clot that may be in it. It is usually necessary to enlarge the wound, freely dividing injured fasciae, paring away bruised tissues, and purifying the whole wound-surface. Any blood vessel that is punctured should be cut across and tied; and divided muscles, tendons, or nerves must be sutured. After haemorrhage has been arrested, iodoform and bismuth paste is rubbed into the raw surface, and the wound closed. If there is any reason to doubt the asepticity of the wound, it is better treated by the open method, and a Bier's bandage should be applied. #Contused and Lacerated Wounds.#--These may be considered together, as they so occur in practice. They are produced by crushing, biting, or tearing forms of violence--such as result from machinery accidents, firearms, or the bites of animals. In addition to the irregular wound of the integument, there is always more or less bruising of the parts beneath and around, and the subcutaneous lesions are much wider than appears on the surface. Wounds of this variety usually gape considerably, especially when there is much laceration of the skin. It is not uncommon to have considerable portions of skin, muscle, or tendon completely torn away. Haemorrhage is seldom a prominent feature, as the crushing or tearing of the vessel wall leads to the obliteration of the lumen. The _special risks_ of these wounds are: (1) Sloughing of the bruised tissues, especially when attempts to sterilise the wound have not been successful. (2) Reactionary haemorrhage after the initial shock has passed off. (3) Secondary haemorrhage as a result of infective processes ensuing in the wound. (4) Loss of muscle or tendon, interfering with motion. (5) Cicatricial contraction. (6) Gangrene, which may follow occlusion of main vessels, or virulent infective processes. (7) It is not uncommon to have particles of carbon embedded in the tissues after lacerated wounds, leaving unsightly, pigmented scars. This is often seen in coal-miners, and in those injured by firearms, and is to be prevented by removing all gross dirt from the edges of the wound. _Treatment._--In severe wounds of this class implicating the extremities, the most important question that arises is whether or not the limb can be saved. In examining the limb, attention should first be directed to the state of the main blood vessels, in order to determine if the vascular supply of the part beyond the lesion is sufficient to maintain its vitality. Amputation is usually called for if there is complete absence of pulsation in the distal arteries and if the part beyond is cold. If at the same time important nerve-trunks are lacerated, so that the function of the limb would be seriously impaired, it is not worth running the risk of attempting to save it. If, in addition, there is extensive destruction of large muscular masses or of important tendons, or comminution of the bones, amputation is usually imperative. Stripping of large areas of skin is not in itself a reason for removing a limb, as much can be done by skin grafting, but when it is associated with other lesions it favours amputation. In considering these points, it must be borne in mind that the damage to the deeper tissues is always more extensive than appears on the surface, and that in many cases it is only possible to estimate the real extent of the injury by administering an anaesthetic and exploring the wound. In doubtful cases the possibility of rendering the parts aseptic will often decide the question for or against amputation. If thorough purification is accomplished, the success which attends conservative measures is often remarkable. It is permissible to run an amount of risk to save an upper extremity which would be unjustifiable in the case of a lower limb. The age and occupation of the patient must also be taken into account. It having been decided to try and save the limb, the question is only settled for the moment; it may have to be reconsidered from day to day, or even from hour to hour, according to the progress of the case. When it is decided to make the attempt to save the limb, the wound must be thoroughly purified. All bruised tissue in which gross dirt has become engrained should be cut away with knife or scissors. The raw surface is then cleansed with eusol, washed with sterilised salt solution followed by methylated spirit, and rubbed all over with "bipp" paste. If the purification is considered satisfactory the wound may be closed, otherwise it is left open, freely drained or packed with gauze, and the limb is immobilised by suitable splints. WOUNDS BY FIREARMS AND EXPLOSIVES It is not necessary here to do more than indicate the general characters of wounds produced by modern weapons. For further details the reader is referred to works on military surgery. Experience has shown that the nature and severity of the injuries sustained in warfare vary widely in different campaigns, and even in different fields of the same campaign. Slight variations in the size, shape, and weight of rifle bullets, for example, may profoundly modify the lesions they produce: witness the destructive effect of the pointed bullet compared with that of the conical form previously used. The conditions under which the fighting is carried on also influence the wounds. Those sustained in the open, long-range fighting of the South African campaign of 1899-1902 were very different from those met with in the entrenched warfare in France in 1914-1918. It has been found also that the infective complications are greatly influenced by the terrain in which the fighting takes place. In the dry, sandy, uncultivated veldt of South Africa, bullet wounds seldom became infected, while those sustained in the highly manured fields of Belgium were almost invariably contaminated with putrefactive organisms, and gaseous gangrene and tetanus were common complications. It has been found also that wounds inflicted in naval engagements present different characters from those sustained on land. Many other factors, such as the physical and mental condition of the men, the facilities for affording first aid, and the transport arrangements, also play a part in determining the nature and condition of the wounds that have to be dealt with by military surgeons. Whatever the nature of the weapon concerned, the wound is of the _punctured, contused, and lacerated_ variety. Its severity depends on the size, shape, and velocity of the missile, the range at which the weapon is discharged, and the part of the body struck. Shock is a prominent feature, but its degree, as well as the time of its onset, varies with the extent and seat of the injury, and with the mental state of the patient when wounded. We have observed pronounced shock in children after being shot even when no serious injury was sustained. At the moment of injury the patient experiences a sensation which is variously described as being like the lash of a whip, a blow with a stick, or an electric shock. There is not much pain at first, but later it may become severe, and is usually associated with intense thirst, especially when much blood has been lost. In all forms of wounds sustained in warfare, septic infection constitutes the main risk, particularly that resulting from streptococci. The presence of anaerobic organisms introduces the additional danger of gaseous forms of gangrene. The earlier the wound is disinfected the greater is the possibility of diminishing this risk. If cleansing is carried out within the first six hours the chance of eliminating sepsis is good; with every succeeding six hours it diminishes, until after twenty-four hours it is seldom possible to do more than mitigate sepsis. (J. T. Morrison.) The presence of a metallic foreign body having been determined and its position localised by means of the X-rays, all devitalised and contaminated tissue is excised, the foreign material, _e.g._, a missile, fragments of clothing, gravel and blood-clot, removed, the wound purified with antiseptics and closed or drained according to circumstances. #Pistol-shot Wounds.#--Wounds inflicted by pistols, revolvers, and small air-guns are of frequent occurrence in civil practice, the weapon being discharged usually by accident, but frequently with suicidal, and sometimes with homicidal intent. With all calibres and at all ranges, except actual contact, the wound of entrance is smaller than the bullet. If the weapon is discharged within a foot of the body, the skin surrounding the wound is usually stained with powder and burned, and the hair singed. At ranges varying from six inches to thirty feet, grains of powder may be found embedded in the skin or lying loose on the surface, the greater the range the wider being the area of spread. When black powder is used, the embedded grains usually leave a permanent bluish-black tattooing of the skin. When the weapon is placed in contact with the skin, the subcutaneous tissues are lacerated over an area of two or three inches around the opening made by the bullet and smoke and powder-staining and scorching are more marked than at longer ranges. When the bullet perforates, the exit wound is usually larger and more extensively lacerated than the wound of entrance. Its margins are as a rule everted, and it shows no marks of flame, smoke, or powder. These features are common to all perforations caused by bullets. Pistol wounds only produce dangerous effects when fired at close range, and when the cavities of the skull, the thorax, or the abdomen are implicated. In the abdomen a lethal injury may readily be caused even by pistols of the "toy" order. These injuries will be described with regional surgery. Pistol-shot wounds of _joints_ and _soft parts_ are seldom of serious import apart from the risk of haemorrhage and of infection. _Treatment._--The treatment of wounds of the soft parts consists in purifying the wounds of entrance and exit and the surrounding skin, and in providing for drainage if this is indicated. There being no urgency for the removal of the bullet, time should be taken to have it localised by the X-rays, preferably by stereoscopic plates. In some cases it is not necessary to remove the bullet. #Wounds by Sporting Guns.#--In the common sporting or scatter gun, with which accidents so commonly occur during the shooting season, the charge of small shot or pellets leave the muzzle of the gun as a solid mass which makes a single ragged wound having much the appearance of that caused by a single bullet. At a distance of from four to five feet from the muzzle the pellets begin to disperse so that there are separate punctures around the main central wound. As the range increases, these outlying punctures make a wider and wider pattern, until at a distance of from eighteen to twenty feet from the muzzle, the scattering is complete, there is no longer any central wound, and each individual pellet makes its own puncture. From these elementary data, it is usually possible, from the features of the wound, to arrive at an approximately accurate conclusion regarding the range at which the gun was discharged, and this may have an important bearing on the question of accident, suicide, or murder. As regards the effects on the tissues at close range, that is, within a few feet, there is widespread laceration and disruption; if a bone is struck it is shattered, and portions of bone may be displaced or even driven out through the exit wound. When the charge impinges over one of the large cavities of the body, the shot may scatter widely through the contained viscera, and there is often no exit wound. In the thorax, for example, if a rib is struck, the charge and possibly fragments of bone, will penetrate the pleura, and be dispersed throughout the lung; in the head, the skull may be shattered and the brain torn up; and in the abdomen, the hollow viscera may be perforated in many places and the solid organs lacerated. On covered parts the clothing, by deflecting the shot, influences the size and shape of the wound; the entrance wound is increased in size and more ragged, and portions of the clothes may be driven into the tissues. [Illustration: FIG. 62.--Radiogram showing Pellets embedded in Arm. (Mr. J. W. Dowden's case.)] A charge of small shot is much more destructive to blood vessels, tendons, and ligaments than a single bullet, which in many cases pushes such structures aside without dividing them. In the abdomen and chest, also, the damage done by a full charge of shot is much more extensive than that inflicted by a single bullet, the deflection of the pellets leading to a greater number of perforations of the intestine and more widespread laceration of solid viscera. When the charge impinges on one of the extremities at close range, we often have the opportunity of observing that the exit wound is larger, more ragged than that of entrance, and that its edges are everted; the extensive tearing and bruising of all the tissues, including the bones, and the marked tendency to early and progressive septic infection, render amputation compulsory in the majority of such cases. At a range of from twenty to thirty feet, although the scatter is complete, the pellets are still close together, so that if they encounter the shaft of a long bone, even the femur, they fracture the bone across, often along with some longitudinal splintering. Individual pellets striking the shafts of long bones become flattened or distorted, and when cancellated bone is struck they become embedded in it (Fig. 62). The skin, when it is closely peppered with shot, is liable to lose its vitality, and with the addition of a little sepsis, readily necroses and comes away as a slough. When the shot have diverged so as to strike singly, they seldom do much harm, but fatal damage may be done to the brain or to the aorta, or the eye may be seriously injured by a single pellet. Small shot fired at longer ranges--over about a hundred and fifty feet--usually go through the skin, but seldom pierce the fascia, and lie embedded in the subcutaneous tissue, from which they can readily be extracted. The wad of the cartridge behaves erratically: so long as it remains flat it goes off with the rest of the charge, and is often buried in the wound; but if it curls up or turns on its side, it is usually deflected and flies clear of the shot. It may make a separate wound. Wounds from sporting guns are to be _treated_ on the usual lines, the early efforts being directed to the alleviation of shock and the prevention of septic infection. There is rarely any urgency in the removal of pellets from the tissues. #Wounds by Rifle Bullets.#--The vast majority of wounds inflicted by rifle bullets are met with in the field during active warfare, and fall to be treated by military surgeons. They occasionally occur accidentally, however, during range practice for example, and may then come under the notice of the civil surgeon. It is only necessary here to consider the effects of modern small-bore rifle or machine-gun bullets. The trajectory is practically flat up to 675 yards. In destructive effect there is not much difference between the various high velocity bullets used in different armies; they will kill up to a distance of two miles. The hard covering is employed to enable the bullet to take the grooves in the rifle, and to prevent it stripping as it passes through the barrel. It also increases the penetrating power of the missile, but diminishes its "stopping" power, unless a vital part or a long bone is struck. By removing the covering from the point of the bullet, as is done in the Dum-Dum bullet, or by splitting the end, the bullet is made to expand or "mushroom" when it strikes the body, and its stopping power is thereby greatly increased, the resulting wound being much more severe. These "soft-nosed" expanding bullets are to be distinguished from "explosive" bullets which contain substances which detonate on impact. High velocity bullets are unlikely to lodge in the body unless spent, or pulled up by a sandbag, or metal buckle on a belt, or a book in the pocket, or the core and the case separating--"stripping" of the bullet. Spent shot may merely cause bruising of the surface, or they may pass through the skin and lodge in the subcutaneous tissue, or may even damage some deeper structure such as a nerve trunk. A blank cartridge fired at close range may cause a severe wound, and, if charged with black powder, may leave a permanent bluish-black pigmentation of the skin. The lesions of individual tissues--bones, nerves, blood vessels--are considered with these. #Treatment of Gunshot Wounds under War Conditions.#--It is only necessary to indicate briefly the method of dealing with gunshot wounds in warfare as practised in the European War. 1. _On the Field._--Haemorrhage is arrested in the limbs by an improvised tourniquet; in the head by a pad and bandage; in the thorax or abdomen by packing if necessary, but this should be avoided if possible, as it favours septic infection. If a limb is all but detached it should be completely severed. A full dose of morphin is given hypodermically. The ampoule of iodine carried by the wounded man is broken, and its contents are poured over and around the wound, after which the field dressing is applied. In extensive wounds, the "shell-dressing" carried by the stretcher bearers is preferred. All bandages are applied loosely to allow for subsequent swelling. The fragments of fractured bones are immobilised by some form of emergency splint. 2. _At the Advanced Dressing Station_, after the patient has had a liberal allowance of warm fluid nourishment, such as soup or tea, a full dose of anti-tetanic serum is injected. The tourniquet is removed and the wound inspected. Urgent amputations are performed. Moribund patients are detained lest they die _en route_. 3. _In the Field Ambulance or Casualty Clearing Station_ further measures are employed for the relief of shock, and urgent operations are performed, such as amputation for gangrene, tracheotomy for dyspnoea, or laparotomy for perforated or lacerated intestine. In the majority of cases the main object is to guard against infection; the skin is disinfected over a wide area and surrounded with towels; damaged tissue, especially muscle, is removed with the knife or scissors, and foreign bodies are extracted. Torn blood vessels, and, if possible, nerves and tendons are repaired. The wound is then partly closed, provision being made for free drainage, or some special method of irrigation, such as that of Carrel, is adopted. Sometimes the wound is treated with bismuth, iodoform, and paraffin paste (B.I.P.P.) and sutured. 4. _In the Base Hospital or Hospital Ship_ various measures may be called for according to the progress of the wound and the condition of the patient. #Shell Wounds and Wounds produced by Explosions.#--It is convenient to consider together the effects of the bursting of shells fired from heavy ordnance and those resulting in the course of blasting operations from the discharge of dynamite or other explosives, or from the bursting of steam boilers or pipes, the breaking of machinery, and similar accidents met with in civil practice. Wounds inflicted by shell fragments and shrapnel bullets tend to be extensive in area, and show great contusion, laceration, and destruction of the tissues. The missiles frequently lodge and carry portions of the clothing and, it may be, articles from the man's pocket, with them. Shell wounds are attended with a considerable degree of shock. On account of the wide area of contusion which surrounds the actual wound produced by shell fragments, amputation, when called for, should be performed some distance above the torn tissues, as there is considerable risk of sloughing of the flaps. Wounds produced by dynamite explosions and the bursting of boilers have the same general characters as shell wounds. Fragments of stone, coal, or metal may lodge in the tissues, and favour the occurrence of infective complications. All such injuries are to be treated on the general principles governing contused and lacerated wounds. EMBEDDED FOREIGN BODIES In the course of many operations foreign substances are introduced into the tissues and intentionally left there, for example, suture and ligature materials, steel or aluminium plates, silver wire or ivory pegs used to secure the fixation of bones, or solid paraffin employed to correct deformities. Other substances, such as gauze, drainage tubes, or metal instruments, may be unintentionally left in a wound. Foreign bodies may also lodge in accidentally inflicted wounds, for example, bullets, needles, splinters of wood, or fragments of clothing. The needles of hypodermic syringes sometimes break and a portion remains embedded in the tissues. As a result of explosions, particles of carbon, in the form of coal-dust or gunpowder, or portions of shale, may lodge in a wound. The embedded foreign body at first acts as an irritant, and induces a reaction in the tissues in which it lodges, in the form of hyperaemia, local leucocytosis, proliferation of fibroblasts, and the formation of granulation tissue. The subsequent changes depend upon whether or not the wound is infected with pyogenic bacteria. If it is so infected, suppuration ensues, a sinus forms, and persists until the foreign body is either cast out or removed. If the wound is aseptic, the fate of the foreign body varies with its character. A substance that is absorbable, such as catgut or fine silk, is surrounded and permeated by the phagocytes, which soften and disintegrate it, the debris being gradually absorbed in much the same manner as a fibrinous exudate. Minute bodies that are not capable of being absorbed, such as particles of carbon, or of pigment used in tattooing, are taken up by the phagocytes, and in course of time removed. Larger bodies, such as needles or bullets, which are not capable of being destroyed by the phagocytes, become encapsulated. In the granulation tissue by which they are surrounded large multinuclear giant-cells appear ("_foreign-body giant-cells_") and attach themselves to the foreign body, the fibroblasts proliferate and a capsule of scar tissue is eventually formed around the body. The tissues of the capsule may show evidence of iron pigmentation. Sometimes fluid accumulates around a foreign body within its capsule, constituting a cyst. Substances like paraffin, strands of silk used to bridge a gap in a tendon, or portions of calcined bone, instead of being encapsulated, are gradually permeated and eventually replaced by new connective tissue. Embedded bodies may remain in the tissues for an indefinite period without giving rise to inconvenience. At any time, however, they may cause trouble, either as a result of infective complications, or by inducing the formation of a mass of inflammatory tissue around them, which may simulate a gumma, a tuberculous focus, or a sarcoma. This latter condition may give rise to difficulties in diagnosis, particularly if there is no history forthcoming of the entrance of the foreign body. The ignorance of patients regarding the possible lodgment in the tissues of a foreign body--even of considerable size--is remarkable. In such cases the X-rays will reveal the presence of the foreign body if it is sufficiently opaque to cast a shadow. The heavy, lead-containing varieties of glass throw very definite shadows little inferior in sharpness and definition to those of metal; almost all the ordinary forms of commercial glass also may be shown up by the X-rays. Foreign bodies encapsulated in the peritoneal cavity are specially dangerous, as the proximity of the intestine furnishes a constant possibility of infection. The question of removal of the foreign body must be decided according to the conditions present in individual cases; in searching for a foreign body in the tissues, unless it has been accurately located, a general anaesthetic is to be preferred. BURNS AND SCALDS The distinction between a burn which results from the action of dry heat on the tissues of the body and a scald which results from the action of moist heat, has no clinical significance. In young and debilitated subjects hot poultices may produce injuries of the nature of burns. In old people with enfeebled circulation mere exposure to a strong fire may cause severe degrees of burning, the clothes covering the part being uninjured. This may also occur about the feet, legs, or knees of persons while intoxicated who have fallen asleep before the fire. The damage done to the tissues by strong caustics, such as fuming nitric acid, sulphuric acid, caustic potash, nitrate of silver, or arsenical paste, presents pathological and clinical features almost identical with those resulting from heat. Electricity and the Rontgen rays also produce lesions of the nature of burns. _Pathology of Burns._--Much discussion has taken place regarding the explanation of the rapidly fatal issue in extensive superficial burns. On post-mortem examination the lesions found in these cases are: (1) general hyperaemia of all the organs of the abdominal, thoracic, and cerebro-spinal cavities; (2) marked leucocytosis, with destruction of red corpuscles, setting free haemoglobin which lodges in the epithelial cells of the tubules of the kidneys; (3) minute thrombi and extravasations throughout the tissues of the body; (4) degeneration of the ganglion cells of the solar plexus; (5) oedema and degeneration of the lymphoid tissue throughout the body; (6) cloudy swelling of the liver and kidneys, and softening and enlargement of the spleen. Bardeen suggests that these morbid phenomena correspond so closely to those met with where the presence of a toxin is known to produce them, that in all probability death is similarly due to the action of some poison produced by the action of heat on the skin and on the proteins of the blood. #Clinical Features--Local Phenomena.#--The most generally accepted classification of burns is that of Dupuytren, which is based upon the depth of the lesion. Six degrees are thus, recognised: (1) hyperaemia or erythema; (2) vesication; (3) partial destruction of the true skin; (4) total destruction of the true skin; (5) charring of muscles; (6) charring of bones. It must be observed, however, that burns met with at the bedside always illustrate more than one of these degrees, the deeper forms always being associated with those less deep, and the clinical picture is made up of the combined characters of all. A burn is classified in terms of its most severe portion. It is also to be remarked that the extent and severity of a burn usually prove to be greater than at first sight appears. _Burns of the first degree_ are associated with erythema of the skin, due to hyperaemia of its blood vessels, and result from scorching by flame, from contact with solids or fluids below 212 o F., or from exposure to the sun's rays. They are characterised clinically by acute pain, redness, transitory swelling from oedema, and subsequent desquamation of the surface layers of the epidermis. A special form of pigmentation of the skin is seen on the front of the legs of women from exposure to the heat of the fire. _Burns of Second Degree--Vesication of the Skin._--These are characterised by the occurrence of vesicles or blisters which are scattered over the hyperaemic area, and contain a clear yellowish or brownish fluid. On removing the raised epidermis, the congested and highly sensitive papillae of the skin are exposed. Unna has found that pyogenic bacteria are invariably present in these blisters. Burns of the second degree leave no scar but frequently a persistent discoloration. In rare instances the burned area becomes the seat of a peculiar overgrowth of fibrous tissue of the nature of keloid (p 401). _Burns of Third Degree--Partial Destruction of the Skin._--The epidermis and papillae are destroyed in patches, leaving hard, dry, and insensitive sloughs of a yellow or black colour. The pain in these burns is intense, but passes off during the first or second day, to return again, however, when, about the end of a week, the sloughs separate and expose the nerve filaments of the underlying skin. Granulations spring up to fill the gap, and are rapidly covered by epithelium, derived partly from the margins and partly from the remains of skin glands which have not been completely destroyed. These latter appear on the surface of the granulations as small bluish islets which gradually increase in size, become of a greyish-white colour, and ultimately blend with one another and with the edges. The resulting cicatrix may be slightly depressed, but otherwise exhibits little tendency to contract and cause deformity. _Burns of Fourth Degree--Total Destruction of the Skin._--These follow the more prolonged action of any form of intense heat. Large, black, dry eschars are formed, surrounded by a zone of intense congestion. Pain is less severe, and is referred to the parts that have been burned to a less degree. Infection is liable to occur and to lead to wide destruction of the surrounding skin. The amount of granulation tissue necessary to fill the gap is therefore great; and as the epithelial covering can only be derived from the margins--the skin glands being completely destroyed--the healing process is slow. The resulting scars are irregular, deep and puckered, and show a great tendency to contract. Keloid frequently develops in such cicatrices. When situated in the region of the face, neck, or flexures of joints, much deformity and impairment of function may result (Fig. 63). [Illustration: FIG. 63.--Cicatricial Contraction following Severe Burn.] In _burns of the fifth degree_ the lesion extends through the subcutaneous tissue and involves the muscles; while in those of the _sixth degree_ it passes still more deeply and implicates the bones. These burns are comparatively limited in area, as they are usually produced by prolonged contact with hot metal or caustics. Burns of the fifth and sixth degrees are met with in epileptics or intoxicated persons who fall into the fire. Large blood vessels, nerve-trunks, joints, or serous cavities may be implicated. #General Phenomena.#--It is customary to divide the clinical history of a severe burn into three periods; but it is to be observed that the features characteristic of the periods have been greatly modified since burns have been treated on the same lines as other wounds. _The first period_ lasts for from thirty-six to forty-eight hours, during which time the patient remains in a more or less profound state of _shock_, and there is a remarkable absence of pain. When shock is absent or little marked, however, the amount of suffering may be great. When the injury proves fatal during this period, death is due to shock, probably aggravated by the absorption of poisonous substances produced in the burned tissues. In fatal cases there is often evidence of cerebral congestion and oedema. The _second period_ begins when the shock passes off, and lasts till the sloughs separate. The outstanding feature of this period is _toxaemia_, manifested by fever, the temperature rising to 102 o, 103 o, or 104 o F., and congestive or inflammatory conditions of internal organs, giving rise to such clinical complications as bronchitis, broncho-pneumonia, or pleurisy--especially in burns of the thorax; or meningitis and cerebritis, when the neck or head is the seat of the burn. Intestinal catarrh associated with diarrhoea is not uncommon; and ulceration of the duodenum leading to perforation has been met with in a few cases. These phenomena are much more prominent when bacterial infection has taken place, and it seems probable that they are to be attributed chiefly to the infection, as they have become less frequent and less severe since burns have been treated like other breaches of the surface. Albuminuria is a fairly constant symptom in severe burns, and is associated with congestion of the kidneys. In burns implicating the face, neck, mouth, or pharynx, oedema of the glottis is a dangerous complication, entailing as it does the risk of suffocation. The _third period_ begins when the sloughs separate, usually between the seventh and fourteenth days, and lasts till the wound heals, its duration depending upon the size, depth, and asepticity of the raw area. The chief causes of death during this period are toxin absorption in any of its forms; waxy disease of the liver, kidneys, or intestine; less commonly erysipelas, tetanus, or other diseases due to infection by specific organisms. We have seen nothing to substantiate the belief that duodenal ulcers are liable to perforate during the third period. The _prognosis_ in burns depends on (1) the superficial extent, and, to a much less degree, the depth of the injury. When more than one-third of the entire surface of the body is involved, even in a mild degree, the prognosis is grave. (2) The situation of the burn is important. Burns over the serous cavities--abdomen, thorax, or skull--are, other things being equal, much more dangerous than burns of the limbs. The risk of oedema of the glottis in burns about the neck and mouth has already been referred to. (3) Children are more liable to succumb to shock during the early period, but withstand prolonged suppuration better than adults. (4) When the patient survives the shock, the presence or absence of infection is the all-important factor in prognosis. #Treatment.#--The _general treatment_ consists in combating the shock. When pain is severe, morphin must be injected. _Local Treatment._--The local treatment must be carried out on antiseptic lines, a general anaesthetic being administered, if necessary, to enable the purification to be carried out thoroughly. After carefully removing the clothing, the whole of the burned area is gently, but thoroughly, cleansed with peroxide of hydrogen or warm boracic lotion, followed by sterilised saline solution. As pyogenic bacteria are invariably found in the blisters of burns, these must be opened and the raised epithelium removed. The dressings subsequently applied should meet the following indications: the relief of pain; the prevention of sepsis; and the promotion of cicatrisation. An application which satisfactorily fulfils these requirements is _picric acid_. Pads of lint or gauze are lightly wrung out of a solution made up of picric acid, 1 1/2 drams; absolute alcohol, 3 ounces; distilled water, 40 ounces, and applied over the whole of the reddened area. These are covered with antiseptic wool, _without_ any waterproof covering, and retained in position by a many-tailed bandage. The dressing should be changed once or twice a week, under the guidance of the temperature chart, any portion of the original dressing which remains perfectly dry being left undisturbed. The value of a general anaesthetic in dressing extensive burns, especially in children, can scarcely be overestimated. Picric acid yields its best results in superficial burns, and it is useful as _a primary dressing_ in all. As soon as the sloughs separate and a granulating surface forms, the ordinary treatment for a healing sore is instituted. Any slough under which pus has collected should be cut away with scissors to permit of free drainage. An occlusive dressing of melted _paraffin_ has also been employed. A useful preparation consists of: Paraffin molle 25 per cent., paraffin durum 67 per cent., olive oil 5 per cent., oil of eucalyptus 2 per cent., and beta-naphthol 1/4 per cent. It has a melting point of 48 o C. It is also known as _Ambrine_ and _Burnol_. After the burned area has been cleansed and thoroughly dried, it is sponged or painted with the melted paraffin, and before solidification takes place a layer of sterilised gauze is applied and covered with a second coating of paraffin. Further coats of paraffin are applied every other day to prevent the gauze sticking to the skin. An alternative method of treating extensive burns is by immersing the part, or even the whole body when the trunk is affected, in a bath of boracic lotion kept at the body temperature, the lotion being frequently renewed. If a burn is already infected when first seen, it is to be treated on the same principles as govern the treatment of other infected wounds. All moist or greasy applications, such as Carron oil, carbolic oil and ointments, and all substances like collodion and dry powders, which retain discharges, entirely fail to meet the indications for the rational treatment of burns, and should be abandoned. Skin-grafting is of great value in hastening healing after extensive burns, and in preventing cicatricial contraction. The _deformities_ which are so liable to develop from contraction of the cicatrices are treated on general principles. In the region of the face, neck, and flexures of joints (Fig. 63), where they are most marked, the contracted bands may be divided and the parts stretched, the raw surface left being covered by Thiersch grafts or by flaps of skin raised from adjacent surfaces or from other parts of the body (Fig. 1). INJURIES PRODUCED BY ELECTRICITY #Injuries produced by Exposure to X-Rays and Radium.#--In the routine treatment of disease by radiations, injury is sometimes done to the tissues, even when the greatest care is exercised as to dosage and frequency of application. Robert Knox describes the following ill-effects. _Acute dermatitis_ varying in degree from a slight erythema to deep ulceration or even necrosis of skin. When ulcers form they are extremely painful and slow to heal. When hair-bearing areas are affected, epilation may occur without destroying the hair follicles and the hairs are reproduced, but if the reaction is excessive permanent alopecia may result. _Chronic dermatitis_, which results from persistence of the acute form, is most intractable and may assume malignant characters. X-ray warts are a late manifestation of chronic dermatitis and may become malignant. Among the _late manifestations_ are neuritis, telangiectasis, and a painful and intractable form of ulceration, any of which may come on months or even years after the cessation of exposure. _Sterility_ may be induced in X-ray workers who are imperfectly protected from the effects of the rays. #Electrical burns# usually occur in those who are engaged in industrial undertakings where powerful electrical currents are employed. The lesions--which vary from a slight superficial scorching to complete charring of parts--are most evident at the points of entrance and exit of the current, the intervening tissues apparently escaping injury. The more superficial degrees of electrical burns differ from those produced by heat in being almost painless, and in healing very slowly, although as a rule they remain dry and aseptic. The more severe forms are attended with a considerable degree of shock, which is not only more profound, but also lasts much longer than the shock in an ordinary burn of corresponding severity. The parts at the point of entrance of the current are charred to a greater or lesser depth. The eschar is at first dry and crisp, and is surrounded by a zone of pallor. For the first thirty-six to forty-eight hours there is comparatively little suffering, but at the end of that time the parts become exceedingly painful. In a majority of cases, in spite of careful purification, a slow form of moist gangrene sets in, and the slough spreads both in area and in depth, until the muscles and often the large blood vessels and nerves are exposed. A line of demarcation eventually forms, but the sloughs are exceedingly slow to separate, taking from three to five times as long as in an ordinary burn, and during the process of separation there is considerable risk of secondary haemorrhage from erosion of large vessels. _Treatment._--Electrical burns are treated on the same lines as ordinary burns, by thorough purification and the application of dry dressings, with a view to avoiding the onset of moist gangrene. After granulations have formed, skin-grafting is of value in hastening healing. #Lightning-stroke.#--In a large proportion of cases lightning-stroke proves instantly fatal. In non-fatal cases the patient suffers from a profound degree of shock, and there may or may not be any external evidence of injury. In the mildest cases red spots or wheals--closely resembling those of urticaria--may appear on the body, but they usually fade again in the course of twenty-four hours. Sometimes large patches of skin are scorched or stained, the discoloured area showing an arborescent appearance. In other cases the injured skin becomes dry and glazed, resembling parchment. Appearances are occasionally met with corresponding to those of a superficial burn produced by heat. The chief difference from ordinary burns is the extreme slowness with which healing takes place. Localised paralysis of groups of muscles, or even of a whole limb, may follow any degree of lightning-stroke. Treatment is mainly directed towards combating the shock, the surface-lesions being treated on the same lines as ordinary burns. CHAPTER XII METHODS OF WOUND TREATMENT Varieties of wounds--Modes of infection--Lister's work--Means taken to prevent infection of wounds: _heat_; _chemical antiseptics_; _disinfection of hands_; _preparation of skin of patient_; _instruments_; _ligatures_; _dressings_--Means taken to combat infection: _purification_; _open-wound method_. The surgeon is called upon to treat two distinct classes of wounds: (1) those resulting from injury or disease in which _the skin is already broken_, or in which a communication with a mucous surface exists; and (2) those that he himself makes _through intact skin_, no infected mucous surface being involved. Infection by bacteria must be assumed to have taken place in all wounds made in any other way than by the knife of the surgeon operating through unbroken skin. On this assumption the modern system of wound treatment is based. Pathogenic bacteria are so widely distributed, that in the ordinary circumstances of everyday life, no matter how trivial a wound may be, or how short a time it may remain exposed, the access of organisms to it is almost certain unless preventive measures are employed. It cannot be emphasised too strongly that rigid precautions are to be taken to exclude fresh infection, not only in dealing with wounds that are free of organisms, but equally in the management of wounds and other lesions that are already infected. Any laxity in our methods which admits of fresh organisms reaching an infected wound adds materially to the severity of the infective process and consequently to the patient's risk. There are many ways in which accidental infection may occur. Take, for example, the case of a person who receives a cut on the face by being knocked down in a carriage accident on the street. Organisms may be introduced to such a wound from the shaft or wheel by which he was struck, from the ground on which he lay, from any portion of his clothing that may have come in contact with the wound, or from his own skin. Or, again, the hands of those who render first aid, the water used to bathe the wound, the handkerchief or other extemporised dressing applied to it, may be the means of conveying bacterial infection. Should the wound open on a mucous surface, such as the mouth or nasal cavity, the organisms constantly present in such situations are liable to prove agents of infection. Even after the patient has come under professional care the risks of his wound becoming infected are not past, because the hands of the doctor, his instruments, dressings, or other appliances may all, unless purified, become the sources of infection. In the case of an operation carried out through unbroken skin, organisms may be introduced into the wound from the patient's own skin, from the hands of the surgeon or his assistants, through the medium of contaminated instruments, swabs, ligature or suture materials, or other things used in the course of the operation, or from the dressings applied to the wound. Further, bacteria may gain access to devitalised tissues by way of the blood-stream, being carried hither from some infected area elsewhere in the body. _The Antiseptic System of Surgery._--Those who only know the surgical conditions of to-day can scarcely realise the state of matters which existed before the introduction of the antiseptic system by Joseph Lister in 1867. In those days few wounds escaped the ravages of pyogenic and other bacteria, with the result that suppuration ensued after most operations, and such diseases as erysipelas, pyaemia, and "hospital gangrene" were of everyday occurrence. The mortality after compound fractures, amputations, and many other operations was appalling, and death from blood-poisoning frequently followed even the most trivial operations. An operation was looked upon as a last resource, and the inherent risk from blood-poisoning seemed to have set an impassable barrier to the further progress of surgery. To the genius of Lister we owe it that this barrier was removed. Having satisfied himself that the septic process was due to bacterial infection, he devised a means of preventing the access of organisms to wounds or of counteracting their effects. Carbolic acid was the first antiseptic agent he employed, and by its use in compound fractures he soon obtained results such as had never before been attained. The principle was applied to other conditions with like success, and so profoundly has it affected the whole aspect of surgical pathology, that many of the infective diseases with which surgeons formerly had to deal are now all but unknown. The broad principles upon which Lister founded his system remain unchanged, although the methods employed to put them into practice have been modified. #Means taken to Prevent Infection of Wounds.#--The avenues by which infective agents may gain access to surgical wounds are so numerous and so wide, that it requires the greatest care and the most watchful attention on the part of the surgeon to guard them all. It is only by constant practice and patient attention to technical details in the operating room and at the bedside, that the carrying out of surgical manipulations in such a way as to avoid bacterial infection will become an instinctive act and a second nature. It is only possible here to indicate the chief directions in which danger lies, and to describe the means most generally adopted to avoid it. To prevent infection, it is essential that everything which comes into contact with a wound should be sterilised or disinfected, and to ensure the best results it is necessary that the efficiency of our methods of sterilisation should be periodically tested. The two chief agencies at our disposal are heat and chemical antiseptics. #Sterilisation by Heat.#--The most reliable, and at the same time the most convenient and generally applicable, means of sterilisation is by heat. All bacteria and spores are completely destroyed by being subjected for fifteen minutes to _saturated circulating steam_ at a temperature of 130 o to 145 o C. (= 266 o to 293 o F.). The articles to be sterilised are enclosed in a perforated tin casket, which is placed in a specially constructed steriliser, such as that of Schimmelbusch. This apparatus is so arranged that the steam circulates under a pressure of from two to three atmospheres, and permeates everything contained in it. Objects so sterilised are dry when removed from the steriliser. This method is specially suitable for appliances which are not damaged by steam, such, for example, as gauze swabs, towels, aprons, gloves, and metal instruments; it is essential that the efficiency of the steriliser be tested from time to time by a self-registering thermometer or other means. The best substitute for circulating steam is _boiling_. The articles are placed in a "fish-kettle steriliser" and boiled for fifteen minutes in a 1 per cent. solution of washing soda. To prevent contamination of objects that have been sterilised they must on no account be touched by any one whose hands have not been disinfected and protected by sterilised gloves. #Sterilisation by Chemical Agents.#--For the purification of the skin of the patient, the hands of the surgeon, and knives and other instruments that are damaged by heat, recourse must be had to chemical agents. These, however, are less reliable than heat, and are open to certain other objections. #Disinfection of the Hands.#--It is now generally recognised that one of the most likely sources of wound infection is the hands of the surgeon and his assistants. It is only by carefully studying to avoid all contact with infective matter that the hands can be kept surgically pure, and that this source of wound infection can be reduced to a minimum. The risk of infection from this source has further been greatly reduced by the systematic use of rubber gloves by house-surgeons, dressers, and nurses. The habitual use of gloves has also been adopted by the great majority of surgeons; the minority, who find they are handicapped by wearing gloves as a routine measure, are obliged to do so when operating in infective cases or dressing infected wounds, and in making rectal and vaginal examinations. The gloves may be sterilised by steam, and are then put on dry, or by boiling, in which case they are put on wet. The gauntlet of the glove should overlap and confine the end of the sleeve of the sterilised overall, and the gloved hands are rinsed in lotion before and at frequent intervals during the operation. The hands are sterilised before putting on the gloves, preferably by a method which dehydrates the skin. Cotton gloves may be worn by the surgeon when tying ligatures, or between operations, and by the anaesthetist during operations on the head, neck, and chest. The first step in the disinfection of the hands is the mechanical removal of gross surface dirt and loose epithelium by soap, a stream of running water as hot as can be borne, and a loofah or nail-brush, that has been previously sterilised by heat. The nails should be cut down till there is no sulcus between the nail edge and the pulp of the finger in which organisms may lodge. They are next washed for three minutes in methylated spirit to dehydrate the skin, and then for two or three minutes in 70 per cent. sublimate or biniodide alcohol (1 in 1000). Finally, the hands are rubbed with dry sterilised gauze. #Preparation of the Skin of the Patient.#--In the purification of the skin of the patient before operation, reliance is to be placed chiefly in the mechanical removal of dirt and grease by the same means as are taken for the cleansing of the surgeon's hands. Hair-covered parts should be shaved. The skin is then dehydrated by washing with methylated spirit, followed by 70 per cent. sublimate or biniodide alcohol (1 in 1000). This is done some hours before the operation, and the part is then covered with pads of dry sterilised gauze or a sterilised towel. Immediately before the operation the skin is again purified in the same way. The _iodine method_ of disinfecting the skin introduced by Grossich is simple, and equally efficient. The day before operation the skin, after being washed with soap and water, is shaved, dehydrated by means of methylated spirit, and then painted with a 5 per cent. solution of iodine in rectified spirit. The painting with iodine is repeated just before the operation commences, and again after it is completed. The final application is omitted in the case of children. In emergency operations the skin is shaved dry and dehydrated with spirit, after which the iodine is applied as described above. The staining of the skin is an advantage, as it enables the operator to recognise the area that has been prepared. If any acne pustules or infected sinuses are present, they should be destroyed or purified by means of the thermo-cautery or pure carbolic acid, after the patient is anaesthetised. #Appliances used at Operation.#--_Instruments_ that are not damaged by heat must be boiled in a fish-kettle or other suitable steriliser for fifteen minutes in a 1 per cent. solution of cresol or washing soda. Just before the operation begins they are removed in the tray of the steriliser and placed on a sterilised towel within reach of the surgeon or his assistant. Knives and instruments that are liable to be damaged by heat should be purified by being soaked in pure cresol for a few minutes, or in 1 in 20 carbolic for at least an hour. _Pads of Gauze_ sterilised by compressed circulating steam have almost entirely superseded marine sponges for operative purposes. To avoid the risk of leaving swabs in the peritoneal cavity, large square pads of gauze, to one corner of which a piece of strong tape about a foot long is securely stitched, should be employed. They should be removed from the caskets in which they are sterilised by means of sterilised forceps, and handed direct to the surgeon. The assistant who attends to the swabs should wear sterilised gloves. _Ligatures and Sutures._--To avoid the risk of implanting infective matter in a wound by means of the materials used for ligatures and sutures, great care must be taken in their preparation. _Catgut._--The following methods of preparing catgut have proved satisfactory: (1) The gut is soaked in juniper oil for at least a month; the juniper oil is then removed by ether and alcohol, and the gut preserved in 1 in 1000 solution of corrosive sublimate in alcohol (Kocher). (2) The gut is placed in a brass receiver and boiled for three-quarters of an hour in a solution consisting of 85 per cent. absolute alcohol, 10 per cent. water, and 5 per cent. carbolic acid, and is then stored in 90 per cent. alcohol. (3) Cladius recommends that the catgut, just as it is bought from the dealers, be loosely rolled on a spool, and then immersed in a solution of--iodine, 1 part; iodide of potassium, 1 part; distilled water, 100 parts. At the end of eight days it is ready for use. Moschcowitz has found that the tensile strength of catgut so prepared is increased if it is kept dry in a sterile vessel, instead of being left indefinitely in the iodine solution. If Salkindsohn's formula is used--tincture of iodine, 1 part; proof spirit, 15 parts--the gut can be kept permanently in the solution without becoming brittle. To avoid contamination from the hands, catgut should be removed from the bottle with aseptic forceps and passed direct to the surgeon. Any portion unused should be thrown away. _Silk_ is prepared by being soaked for twelve hours in ether, for other twelve in alcohol, and then boiled for ten minutes in 1 in 1000 sublimate solution. It is then wound on spools with purified hands protected by sterilised gloves, and kept in absolute alcohol. Before an operation the silk is again boiled for ten minutes in the same solution, and is used directly from this (Kocher). Linen thread is sterilised in the same way as silk. Fishing-gut and silver wire, as well as the needles, should be boiled along with the instruments. Horse-hair and fishing-gut may be sterilised by prolonged immersion in 1 in 20 carbolic, or in the iodine solutions employed to sterilise catgut. The field of operation is surrounded by sterilised towels, clipped to the edges of the wound, and securely fixed in position so that no contamination may take place from the surroundings. The surgeon and his assistants, including the anaesthetist, wear overalls sterilised by steam. To avoid the risk of infection from dust, scurf, or drops of perspiration falling from the head, the surgeon and his assistants may wear sterilised cotton caps. To obviate the risk of infection taking place by drops of saliva projected from the mouth in talking or coughing in the vicinity of a wound, a simple mask may be worn. The risk of infection from the _air_ is now known to be very small, so long as there is no excess of floating dust. All sweeping, dusting, and disturbing of curtains, blinds, or furniture must therefore be avoided before or during an operation. It has been shown that the presence of spectators increases the number of organisms in the atmosphere. In teaching clinics, therefore, the risk from air infection is greater than in private practice. To facilitate primary union, all haemorrhage should be arrested, and the accumulation of fluid in the wound prevented. When much oozing is anticipated, a glass or rubber drainage-tube is inserted through a small opening specially made for the purpose. In aseptic wounds the tube may be removed in from twenty-four to forty-eight hours, and where it is important to avoid a scar, the opening should be closed with a Michel's clip; in infected wounds the tube must remain as long as the discharge continues. The fascia and skin should be brought into accurate apposition by sutures. If any cavity exists in the deeper part of the wound it should be obliterated by buried sutures, or by so adjusting the dressing as to bring its walls into apposition. If these precautions have been successful, the wound will heal under the original dressing, which need not be interfered with for from seven to ten days, according to the nature of the case. #Dressings.#--_Gauze_, sterilised by heat, is almost universally employed for the dressing of wounds. _Double cyanide gauze_ may be used in such regions as the neck, axilla, or groin, where complete sterilisation of the skin is difficult to attain, and where it is desirable to leave the dressing undisturbed for ten days or more. _Iodoform_ or _bismuth gauze_ is of special value for the packing of wounds treated by the open method. One variety or another of _wool_, rendered absorbent by the extraction of its fat, and sterilised by heat, forms a part of almost every surgical dressing, and various antiseptic agents may be added to it. Of these, corrosive sublimate is the most generally used. Wood-wool dressings are more highly and more uniformly absorbent than cotton wools. As evaporation takes place through wool dressings, the discharge becomes dried, and so forms an unfavourable medium for bacterial growth. Pads of _sphagnum moss_, sterilised by heat, are highly absorbent, and being economical are used when there is much discharge, and in cases where a leakage of urine has to be soaked up. #Means adopted to combat Infection.#--As has already been indicated, the same antiseptic precautions are to be taken in dealing with infected as with aseptic wounds. In _recent injuries_ such as result from railway or machinery accidents, with bruising and crushing of the tissues and grinding of gross dirt into the wounds, the scissors must be freely used to remove the tissues that have been devitalised or impregnated with foreign material. Hair-covered parts should be shaved and the surrounding skin painted with iodine. Crushed and contaminated portions of bone should be chiselled away. Opinions differ as to the benefit derived from washing such wounds with chemical antiseptics, which are liable to devitalise the tissues with which they come in contact, and so render them less able to resist the action of any organisms that may remain in them. All are agreed, however, that free washing with normal salt solution is useful in mechanically cleansing the injured parts. Peroxide of hydrogen sprayed over such wounds is also beneficial in virtue of its oxidising properties. Efficient drainage must be provided, and stitches should be used sparingly, if at all. The best way in which to treat such wounds is by the _open method_. This consists in packing the wound with iodoform or bismuth gauze, which is left in position as long as it adheres to the raw surface. The packing may be renewed at intervals until the wound is filled by granulations; or, in the course of a few days when it becomes evident that the infection has been overcome, _secondary_ sutures may be introduced and the edges drawn together, provision being made at the ends for further packing or for drainage-tubes. If earth or street dirt has entered the wound, the surface may with advantage be painted over with pure carbolic acid, as virulent organisms, such as those of tetanus or spreading gangrene, are liable to be present. Prophylactic injection of tetanus antitoxin may be indicated. CHAPTER XIII CONSTITUTIONAL EFFECTS OF INJURIES SYNCOPE--SHOCK--COLLAPSE--FAT EMBOLISM--TRAUMATIC ASPHYXIA--DELIRIUM IN SURGICAL PATIENTS: _Delirium in general_; _Delirium tremens_; _Traumatic delirium_. SYNCOPE, SHOCK, AND COLLAPSE Syncope, shock, and collapse are clinical conditions which, although depending on different causes, bear a superficial resemblance to one another. #Syncope or Fainting.#--Syncope is the result of a suddenly produced anaemia of the brain from temporary weakening or arrest of the heart's action. In surgical practice, this condition is usually observed in nervous persons who have been subjected to pain, as in the reduction of a dislocation or the incision of a whitlow; or in those who have rapidly lost a considerable quantity of blood. It may also follow the sudden withdrawal of fluid from a large cavity, as in tapping an abdomen for ascites, or withdrawing fluid from the pleural cavity. Syncope sometimes occurs also during the administration of a general anaesthetic, especially if there is a tendency to sickness and the patient is not completely under. During an operation the onset of syncope is often recognised by the cessation of oozing from the divided vessels before the general symptoms become manifest. _Clinical Features._--When a person is about to faint he feels giddy, has surging sounds in his ears, and haziness of vision; he yawns, becomes pale and sick, and a free flow of saliva takes place into the mouth. The pupils dilate; the pulse becomes small and almost imperceptible; the respirations shallow and hurried; consciousness gradually fades away, and he falls in a heap on the floor. Sometimes vomiting ensues before the patient completely loses consciousness, and the muscular exertion entailed may ward off the actual faint. This is frequently seen in threatened syncopal attacks during chloroform administration. Recovery begins in a few seconds, the patient sighing or gasping, or, it may be, vomiting; the strength of the pulse gradually increases, and consciousness slowly returns. In some cases, however, syncope is fatal. _Treatment._--The head should at once be lowered--in imitation of nature's method--to encourage the flow of blood to the brain, the patient, if necessary, being held up by the heels. All tight clothing, especially round the neck or chest, must be loosened. The heart may be stimulated reflexly by dashing cold water over the face or chest, or by rubbing the face vigorously with a rough towel. The application of volatile substances, such as ammonia or smelling-salts, to the nose; the administration by the mouth of sal-volatile, whisky or brandy, and the intra-muscular injection of ether, are the most speedily efficacious remedies. In severe cases the application of hot cloths over the heart, or of the faradic current over the line of the phrenic nerve, just above the clavicle, may be called for. #Surgical Shock.#--The condition known as surgical shock may be looked upon as a state of profound exhaustion of the mechanism that exists in the body for the transformation of energy. This mechanism consists of (1) the _brain_, which, through certain special centres, regulates all vital activity; (2) the _adrenal glands_, the secretion of which--adrenalin--acting as a stimulant of the sympathetic system, so controls the tone of the blood vessels as to maintain efficient oxidation of the tissues; and (3) _the liver_, which stores and delivers glycogen as it is required by the muscles, and in addition, deals with the by-products of metabolism. Crile and his co-workers have shown that in surgical shock histological changes occur in the cells of the brain, the adrenals, and the liver, and that these are identical, whatever be the cause that leads to the exhaustion of the energy-transforming mechanism. These changes vary in degree, and range from slight alterations in the structure of the protoplasm to complete disorganisation of the cell elements. The influences which contribute to bring about this form of exhaustion that we call shock are varied, and include such emotional states as fear, anxiety, or worry, physical injury and toxic infection, and the effects of these factors are augmented by anything that tends to lower the vitality, such as loss of blood, exposure, insufficient food, loss of sleep or antecedent illness. Any one or any combination of these influences may cause shock, but the most potent, and the one which most concerns the surgeon, is physical injury, _e.g._, a severe accident or an operation (_traumatic shock_). This is usually associated with some emotional disturbance, such as fear or anxiety (_emotional shock_), or with haemorrhage; and may be followed by septic infection (_toxic shock_). The exaggerated afferent impulses reaching the brain as a result of trauma, inhibit the action of the nuclei in the region of the fourth ventricle and cerebellum which maintain the muscular tone, with the result that the muscular tone is diminished and there is a marked fall in the arterial blood pressure. The capillaries dilate--the blood stagnating in them and giving off its oxygen and transuding its fluid elements into the tissues--with the result that an insufficient quantity of oxygenated blood reaches the heart to enable it to maintain an efficient circulation. As the sarco-lactic acid liberated in the muscles is not oxygenated a condition of acidosis ensues. The more highly the injured part is endowed with sensory nerves the more marked is the shock; a crush of the hand, for example, is attended with a more intense degree of shock than a correspondingly severe crush of the foot; and injuries of such specially innervated parts as the testis, the urethra, the face, or the spinal cord, are associated with severe degrees, as are also those of parts innervated from the sympathetic system, such as the abdominal or thoracic viscera. It is to be borne in mind that a state of general anaesthesia does not prevent injurious impulses reaching the brain and causing shock during an operation. If the main nerves of the part are "blocked" by injection of a local anaesthetic, however, the central nervous system is protected from these impulses. While the aged frequently manifest but few signs of shock, they have a correspondingly feeble power of recovery; and while many young children suffer little, even after severe operations, others with much less cause succumb to shock. When the injured person's mind is absorbed with other matters than his own condition,--as, for example, during the heat of a battle or in the excitement of a railway accident or a conflagration,--even severe injuries may be unattended by pain or shock at the time, although when the period of excitement is over, the severity of the shock is all the greater. The same thing is observed in persons injured while under the influence of alcohol. _Clinical Features._--The patient is in a state of prostration. He is roused from his condition of indifference with difficulty, but answers questions intelligently, if only in a whisper. The face is pale, beads of sweat stand out on the brow, the features are drawn, the eyes sunken, and the cheeks hollow. The lips and ears are pallid; the skin of the body of a greyish colour, cold, and clammy. The pulse is rapid, fluttering, and often all but imperceptible at the wrist; the respiration is irregular, shallow, and sighing; and the temperature may fall to 96 o F. or even lower. The mouth is parched, and the patient complains of thirst. There is little sensibility to pain. Except in very severe cases, shock tends towards recovery within a few hours, the _reaction_, as it is called, being often ushered in by vomiting. The colour improves; the pulse becomes full and bounding; the respiration deeper and more regular; the temperature rises to 100 o F. or higher; and the patient begins to take notice of his surroundings. The condition of neurasthenia which sometimes follows an operation may be associated with the degenerative changes in nerve cells described by Crile. In certain cases the symptoms of traumatic shock blend with those resulting from toxin absorption, and it is difficult to estimate the relative importance of the two factors in the causation of the condition. The conditions formerly known as "delayed shock" and "prostration with excitement" are now generally recognised to be due to toxaemia. _Question of Operating during Shock._--Most authorities agree that operations should only be undertaken during profound shock when they are imperatively demanded for the arrest of haemorrhage, the prevention of infection of serous cavities, or for the relief of pain which is producing or intensifying the condition. _Prevention of Operation Shock._--In the preparation of a patient for operation, drastic purgation and prolonged fasting must be avoided, and about half an hour before a severe operation a pint of saline solution should be slowly introduced into the rectum; this is repeated, if necessary, during the operation, and at its conclusion. The operating-room must be warm--not less than 70 o F.--and the patient should be wrapped in cotton wool and blankets, and surrounded by hot-bottles. All lotions used must be warm (100 o F.); and the operation should be completed as speedily and as bloodlessly as possible. The element of fear may to some extent be eliminated by the preliminary administration of such drugs as scopolamin or morphin, and with a view to preventing the passage of exciting afferent impulses, Crile advocates "blocking" of the nerves by the injection of a 1 per cent. solution of novocaine into their substance on the proximal side of the field of operation. To prevent after-pain in abdominal wounds he recommends injecting the edges with quinine and urea hydrochlorate before suturing, the resulting anaesthesia lasting for twenty-four to forty-eight hours. To these preventive measures the term _anoci-association_ has been applied. In selecting an anaesthetic, it may be borne in mind that chloroform lowers the blood pressure more than ether does, and that with spinal anaesthesia there is no lowering of the blood pressure. _Treatment._--A patient suffering from shock should be placed in the recumbent position, with the foot of the bed raised to facilitate the return circulation in the large veins, and so to increase the flow of blood to the brain. His bed should be placed near a large fire, and the patient himself surrounded by cotton wool and blankets and hot-bottles. If he has lost much blood, the limbs should be wrapped in cotton wool and firmly bandaged from below upwards, to conserve as much of the circulating blood as possible in the trunk and head. If the shock is moderate in degree, as soon as the patient has been put to bed, about a pint of saline solution should be introduced into the rectum, and 10 to 15 minims of adrenalin chloride (1 in 1000) may with advantage be added to the fluid. The injection should be repeated every two hours until the circulation is sufficiently restored. In severe cases, especially when associated with haemorrhage, transfusion of whole blood from a compatible donor, is the most efficient means (_Op. Surg._, p. 37). Cardiac stimulants such as strychnin, digitalin, or strophanthin are contra-indicated in shock, as they merely exhaust the already impaired vaso-motor centre. Artificial respiration may be useful in tiding a patient over the critical period of shock, especially at the end of a severe operation. Failing this, the introduction of saline solution at a temperature of about 105 o F. into a vein or into the subcutaneous tissue is useful where much blood has been lost (p. 276). Two or three pints may be injected into a vein, or smaller quantities under the skin. Thirst is best met by giving small quantities of warm water by the mouth, or by the introduction of saline solution into the rectum. Ice only relieves thirst for a short time, and as it is liable to induce flatulence should be avoided, especially in abdominal cases. Dryness of the tongue may be relieved by swabbing the mouth with a mixture of glycerine and lemon juice. If severe pain calls for the use of morphin, 1/120th grain of atropin should be added, or heroin alone may be given in doses of 1/24th to 1/12th grain. #Collapse# is a clinical condition which comes on more insidiously than shock, and which does not attain its maximum degree of severity for several hours. It is met with in the course of severe illnesses, especially such as are associated with the loss of large quantities of fluid from the body--for example, by severe diarrhoea, notably in Asiatic cholera; by persistent vomiting; or by profuse sweating, as in some cases of heat-stroke. Severe degrees of collapse follow sudden and profuse loss of blood. Collapse often follows upon shock--for example, in intestinal perforations, or after abdominal operations complicated by peritonitis, especially if there is vomiting, as in cases of obstruction high up in the intestine. The symptoms of collapse are aggravated if toxin absorption is superadded to the loss of fluid. The _clinical features_ of this condition are practically the same as those of shock; and it is treated on the same lines. FAT EMBOLISM.--After various injuries and operations, but especially such as implicate the marrow of long bones--for example, comminuted fractures, osteotomies, resections of joints, or the forcible correction of deformities--fluid fat may enter the circulation in variable quantity. In the vast majority of cases no ill effects follow, but when the quantity is large or when the absorption is long continued certain symptoms ensue, either immediately, or more frequently not for two or three days. These are mostly referable to the lungs and brain. In the lung the fat collects in the minute blood vessels and produces venous congestion and oedema, and sometimes pneumonia. Dyspnoea, with cyanosis, a persistent cough and frothy or blood-stained sputum, a feeble pulse and low temperature, are the chief symptoms. When the fat lodges in the capillaries of the brain, the pulse becomes small, rapid, and irregular, delirium followed by coma ensues, and the condition is usually rapidly fatal. Fat is usually to be detected in the urine, even in mild cases. The _treatment_ consists in tiding the patient over the acute stage of his illness, until the fat is eliminated from the blood vessels. TRAUMATIC ASPHYXIA OR TRAUMATIC CYANOSIS.--This term has been applied to a condition which results when the thorax is so forcibly compressed that respiration is mechanically arrested for several minutes. It has occurred from being crushed in a struggling crowd, or under a fall of masonry, and in machinery accidents. When the patient is released, the face and the neck as low down as the level of the clavicles present an intense coloration, varying from deep purple to blue-black. The affected area is sharply defined, and on close inspection the appearance is found to be due to the presence of countless minute reddish-blue or black spots, with small areas or streaks of normal skin between them. The punctate nature of the coloration is best recognised towards the periphery of the affected area--at the junction of the brow with the hairy scalp, and where the dark patch meets the normal skin of the chest (Beach and Cobb). Pressure over the skin does not cause the colour to disappear as in ordinary cyanosis. It has been shown by Wright of Boston, that the coloration is due to stasis from mechanical over-distension of the veins and capillaries; actual extravasation into the tissues is exceptional. The sharply defined distribution of the coloration is attributed to the absence of functionating valves in the veins of the head and neck, so that when the increased intra-thoracic pressure is transmitted to these veins they become engorged. Under the conjunctivae there are extravasations of bright red blood; and sublingual haematoma has been observed (Beatson). The discoloration begins to fade within a few hours, and after the second or third day it disappears, without showing any of the chromatic changes which characterise a bruise. The sub-conjunctival ecchymosis, however, persists for several weeks and disappears like other extravasations. Apart from combating the shock, or dealing with concomitant injuries, no treatment is called for. DELIRIUM IN SURGICAL PATIENTS Delirium is a temporary disturbance of mind which occurs in the course of certain diseases, and sometimes after injuries or operations. It may be associated with any of the acute pyogenic infections; with erysipelas, especially when it affects the head or face; or with chronic infective diseases of the urinary organs. In the various forms of meningitis also, and in some cases of injury to the head, it is common; and it is sometimes met with after severe haemorrhage, and in cases of poisoning by such drugs as iodoform, cocain, or alcohol. Delirium may also, of course, be a symptom of insanity. Often there is merely incoherent muttering regarding past incidents or occupations, or about absent friends; or the condition may assume the form of excitement, of dementia, or of melancholia; and the symptoms are usually worst at night. #Delirium Tremens# is seen in persons addicted to alcohol, who, as the result of accident or operation, are suddenly compelled to lie in bed. Although oftenest met with in habitual drunkards or chronic tipplers, it is by no means uncommon in moderate drinkers, and has even been seen in children. _Clinical Features._--The delirium, which has been aptly described as being of a "busy" character, usually manifests itself within a few days of the patient being laid up. For two or three days he refuses food, is depressed, suspicious, sleepless and restless, demanding to be allowed up. Then he begins to mutter incoherently, to pull off the bedclothes, and to attempt to get out of bed. There is general muscular tremor, most marked in the tongue, the lips, and the hands. The patient imagines that he sees all sorts of horrible beings around him, and is sometimes greatly distressed because of rats, mice, beetles, or snakes, which he fancies are crawling over him. The pulse is soft, rapid, and compressible; the temperature is only moderately raised (100 o-101 o F.), and as a rule there is profuse sweating. The digestion is markedly impaired, and there is often vomiting. Patients in this condition are peculiarly insensitive to pain, and may even walk about with a fractured leg without apparent discomfort. In most cases the symptoms begin to pass off in three or four days; the patient sleeps, the hallucinations and tremors cease, and he gradually recovers. In other cases the temperature rises, the pulse becomes rapid, and death results from exhaustion. The main indication in _treatment_ is to secure sleep, and this is done by the administration of bromides, chloral, or paraldehyde, or of one or other of the drugs of which sulphonal, trional, and veronal are examples. Heroin in doses of from 1/24th to 1/12th grain is often of service. Morphin must be used with great caution. In some cases hyoscin (1/200 grain) injected hypodermically is found efficacious when all other means have failed, but this drug must be used with great discrimination. The patient must be encouraged to take plenty of easily digested fluid food, supplemented, if necessary, by nutrient enemata and saline infusions. In the early stage a brisk mercurial purge is often of value. Alcohol should be withheld, unless failing of the pulse strongly indicates its use, and then it should be given along with the food. A delirious patient must be constantly watched by a trained attendant or other competent person, lest he get out of bed and do harm to himself or others. Mechanical restraint is often necessary, but must be avoided if possible, as it is apt to increase the excitement and exhaust the patient. On account of the extreme restlessness, there is often great difficulty in carrying out the proper treatment of the primary surgical condition, and considerable modifications in splints and other appliances are often rendered necessary. A form of delirium, sometimes spoken of as #Traumatic Delirium#, may follow on severe injuries or operations in persons of neurotic temperament, or in those whose nervous system is exhausted by overwork. It is met with apart from alcoholic intemperance. This form of delirium seems to be specially prone to ensue on operations on the face, the thyreoid gland, or the genito-urinary organs. The symptoms appear in from two to five days after the operation, and take the form of restlessness, sleeplessness, low incoherent muttering, and picking at the bedclothes. It is not necessarily attended by fever or by muscular tremors. The patient may show hysterical symptoms. This condition is probably to be regarded as a form of insanity, as it is liable to merge into mania or melancholia. The _treatment_ is carried out on the same lines as that of delirium tremens. CHAPTER XIV THE BLOOD VESSELS Anatomy--INJURIES OF ARTERIES: _Varieties_--INJURIES OF VEINS: _Air Embolism_--Repair of blood vessels and natural arrest of haemorrhage--HAEMORRHAGE: _Varieties_; _Prevention_; _Arrest_--Constitutional effects of haemorrhage--Haemophilia--DISEASES OF BLOOD VESSELS: Thrombosis; Embolism--Arteritis: _Varieties_; Arterio-sclerosis--Thrombo-phlebitis--Phlebitis: _Varieties_--VARIX--ANGIOMATA--Naevus: _Varieties_; _Electrolysis_--Cirsoid aneurysm--ANEURYSM: _Varieties_; _Methods of treatment_--ANEURYSMS OF INDIVIDUAL ARTERIES. #Surgical Anatomy.#--An _artery_ has three coats: an internal coat--the _tunica intima_--made up of a single layer of endothelial cells lining the lumen; outside of this a layer of delicate connective tissue; and still farther out a dense tissue composed of longitudinally arranged elastic fibres--the internal elastic lamina. The tunica intima is easily ruptured. The middle coat, or _tunica media_, consists of non-striped muscular fibres, arranged for the most part concentrically round the vessel. In this coat also there is a considerable proportion of elastic tissue, especially in the larger vessels. The thickness of the vessel wall depends chiefly on the development of the muscular coat. The external coat, or _tunica externa_, is composed of fibrous tissue, containing, especially in vessels of medium calibre, some yellow elastic fibres in its deeper layers. In most parts of the body the arteries lie in a sheath of connective tissue, from which fine fibrous processes pass to the tunica externa. The connection, however, is not a close one, and the artery when divided transversely is capable of retracting for a considerable distance within its sheath. In some of the larger arteries the sheath assumes the form of a definite membrane. The arteries are nourished by small vessels--the _vasa vasorum_--which ramify chiefly in the outer coat. They are also well supplied with nerves, which regulate the size of the lumen by inducing contraction or relaxation of the muscular coat. The _veins_ are constructed on the same general plan as the arteries, the individual coats, however, being thinner. The inner coat is less easily ruptured, and the middle coat contains a smaller proportion of muscular tissue. In one important point veins differ structurally from arteries--namely, in being provided with valves which prevent reflux of the blood. These valves are composed of semilunar folds of the tunica intima strengthened by an addition of connective tissue. Each valve usually consists of two semilunar flaps attached to opposite sides of the vessel wall, each flap having a small sinus on its cardiac side. The distension of these sinuses with blood closes the valve and prevents regurgitation. Valves are absent from the superior and inferior venae cavae, the portal vein and its tributaries, the hepatic, renal, uterine, and spermatic veins, and from the veins in the lower part of the rectum. They are ill-developed or absent also in the iliac and common femoral veins--a fact which has an important bearing on the production of varix in the veins of the lower extremity. The wall of _capillaries_ consists of a single layer of endothelial cells. HAEMORRHAGE Various terms are employed in relation to haemorrhage, according to its seat, its origin, the time at which it occurs, and other circumstances. The term _external haemorrhage_ is employed when the blood escapes on the surface; when the bleeding takes place into the tissues or into a cavity it is spoken of as _internal_. The blood may infiltrate the connective tissue, constituting an _extravasation_ of blood; or it may collect in a space or cavity and form a _haematoma_. The coughing up of blood from the lungs is known as _haemoptysis_; vomiting of blood from the stomach, as _haematemesis_; the passage of black-coloured stools due to the presence of blood altered by digestion, as _melaena_; and the passage of bloody urine, as _haematuria_. Haemorrhage is known as arterial, venous, or capillary, according to the nature of the vessel from which it takes place. In _arterial_ haemorrhage the blood is bright red in colour, and escapes from the cardiac end of the divided vessel in pulsating jets synchronously with the systole of the heart. In vascular parts--for example the face--both ends of a divided artery bleed freely. The blood flowing from an artery may be dark in colour if the respiration is impeded. When the heart's action is weak and the blood tension low the flow may appear to be continuous and not in jets. The blood from a divided artery at the bottom of a deep wound, escapes on the surface in a steady flow. _Venous_ bleeding is not pulsatile, but occurs in a continuous stream, which, although both ends of the vessel may bleed, is more copious from the distal end. The blood is dark red under ordinary conditions, but may be purplish, or even black, if the respiration is interfered with. When one of the large veins in the neck is wounded, the effects of respiration produce a rise and fall in the stream which may resemble arterial pulsation. In _capillary_ haemorrhage, red blood escapes from numerous points on the surface of the wound in a steady ooze. This form of bleeding is serious in those who are the subjects of haemophilia. INJURIES OF ARTERIES The following description of the injuries of arteries refers to the larger, named trunks. The injuries of smaller, unnamed vessels are included in the consideration of wounds and contusions. #Contusion.#--An artery may be contused by a blow or crush, or by the oblique impact of a bullet. The bruising of the vessel wall, especially if it is diseased, may result in the formation of a thrombus which occludes the lumen temporarily or even permanently, and in rare cases may lead to gangrene of the limb beyond. #Subcutaneous Rupture.#--An artery may be ruptured subcutaneously by a blow or crush, or by a displaced fragment of bone. This injury has been produced also during attempts to reduce dislocations, especially those of old standing at the shoulder. It is most liable to occur when the vessels are diseased. The rupture may be incomplete or complete. _Incomplete Subcutaneous Rupture._--In the majority of cases the rupture is incomplete--the inner and middle coats being torn, while the outer remains intact. The middle coat contracts and retracts, and the internal, because of its elasticity, curls up in the interior of the vessel, forming a valvular obstruction to the blood-flow. In most cases this results in the formation of a thrombus which occludes the vessel. In some cases the blood-pressure gradually distends the injured segment of the vessel wall and leads to the formation of an aneurysm. The pulsation in the vessels beyond the seat of rupture is arrested--for a time at least--owing to the occlusion of the vessel, and the limb becomes cold and powerless. The pulsation seldom returns within five or six weeks of the injury, if indeed it is not permanently arrested, but, as a rule, a collateral circulation is rapidly established, sufficient to nourish the parts beyond. If the pulsation returns within a week of the injury, the presumption is that the occlusion was due to pressure from without--for example, by haemorrhage into the sheath or the pressure of a fragment of bone. _Complete Subcutaneous Rupture._--When the rupture is complete, all the coats of the vessel are torn and the blood escapes into the surrounding tissues. If the original injury is attended with much shock, the bleeding may not take place until the period of reaction. Rupture of the popliteal artery in association with fracture of the femur, or of the axillary or brachial artery with fracture of the humerus or dislocation of the shoulder, are familiar examples of this injury. Like incomplete rupture, this lesion is accompanied by loss of pulsation and power, and by coldness of the limb beyond; a tense and excessively painful swelling rapidly appears in the region of the injury, and, where the cellular tissue is loose, may attain a considerable size. The pressure of the effused blood occludes the veins and leads to congestion and oedema of the limb beyond. The interference with the circulation, and the damage to the tissues, may be so great that gangrene ensues. _Treatment._--When an artery has been contused or ruptured, the limb must be placed in the most favourable condition for restoration of the circulation. The skin is disinfected and the limb wrapped in cotton wool to conserve its heat, and elevated to such an extent as to promote the venous return without at the same time interfering with the inflow of blood. A careful watch must be kept on the state of nutrition of the limb, lest gangrene occurs. If no complications supervene, the swelling subsides, and recovery may be complete in six or eight weeks. If the extravasation is great and the skin threatens to give way, or if the vitality of the limb is seriously endangered, it is advisable to expose the injured vessel, and, after clearing away the clots, to attempt to suture the rent in the artery, or, if torn across, to join the ends after paring the bruised edges. If this is impracticable, a ligature is applied above and below the rupture. If gangrene ensues, amputation must be performed. These descriptions apply to the larger arteries of the extremities. A good illustration of subcutaneous rupture of the arteries of the head is afforded by the tearing of the middle meningeal artery caused by the application of blunt violence to the skull; and of the arteries of the trunk--caused by the tearing of the renal artery in rupture of the kidney. #Open Wounds of Arteries--Laceration.#--Laceration of large arteries is a common complication of machinery and railway accidents. The violence being usually of a tearing, twisting, or crushing nature, such injuries are seldom associated with much haemorrhage, as torn or crushed vessels quickly become occluded by contraction and retraction of their coats and by the formation of a clot. A whole limb even may be avulsed from the body with comparatively little loss of blood. The risk in such cases is secondary haemorrhage resulting from pyogenic infection. The _treatment_ is that applicable to all wounds, with, in addition, the ligation of the lacerated vessels. #Punctured wounds# of blood vessels may result from stabs, or they may be accidentally inflicted in the course of an operation. The division of the coats of the vessel being incomplete, the natural haemostasis that results from curling up of the intima and contraction of the media, fails to take place, and bleeding goes on into the surrounding tissues, and externally. If the sheath of the vessel is not widely damaged, the gradually increasing tension of the extravasated blood retained within it may ultimately arrest the haemorrhage. A clot then forms between the lips of the wound in the vessel wall and projects for a short distance into the lumen, without, however, materially interfering with the flow through the vessel. The organisation of this clot results in the healing of the wound in the vessel wall. In other cases the blood escapes beyond the sheath and collects in the surrounding tissues, and a traumatic aneurysm results. Secondary haemorrhage may occur if the wound becomes infected. The _treatment_ consists in enlarging the external wound to permit of the damaged vessel being ligated above and below the puncture. In some cases it may be possible to suture the opening in the vessel wall. When circumstances prevent these measures being taken, the bleeding may be arrested by making firm pressure over the wound with a pad; but this procedure is liable to be followed by the formation of an aneurysm. _Minute puncture of arteries_ such as frequently occur in the hypodermic administration of drugs and in the use of exploring needles, are not attended with any escape of blood, chiefly because of the elastic recoil of the arterial wall; a tiny thrombus of platelets and thrombus forms at the point where the intima is punctured. #Incised Wounds.#--We here refer only to such incised wounds as partly divide the vessel wall. Longitudinal wounds show little tendency to gape, and are therefore not attended with much bleeding. They usually heal rapidly, but, like punctured wounds, are liable to be followed by the formation of an aneurysm. When, however, the incision in the vessel wall is oblique or transverse, the retraction of the muscular coat causes the opening to gape, with the result that there is haemorrhage, which, even in comparatively small arteries, may be so profuse as to prove dangerous. When the associated wound in the soft parts is valvular the haemorrhage is arrested and an aneurysm may develop. When a large arterial trunk, such as the external iliac, the femoral, the common carotid, the brachial, or the popliteal, has been partly divided, for example, in the course of an operation, the opening should be closed with sutures--_arteriorrhaphy_. The circulation being controlled by a tourniquet, or the artery itself occluded by a clamp, fine silk or catgut stitches are passed through the outer and middle coats after the method of Lembert, a fine, round needle being employed. The sheath of the vessel or an adjacent fascia should be stitched over the line of suture in the vessel wall. If infection be excluded, there is little risk of thrombosis or secondary haemorrhage; and even if thrombosis should develop at the point of suture, the artery is obstructed gradually, and the establishment of a collateral circulation takes place better than after ligation. In the case of smaller trunks, or when suture is impracticable, the artery should be tied above and below the opening, and divided between the ligatures. #Gunshot Wounds of Blood Vessels.#--In the majority of cases injuries of large vessels are associated with an external wound; the profusion of the bleeding indicates the size of the damaged vessel, and the colour of the blood and the nature of the flow denote whether an artery or a vein is implicated. When an artery is wounded a firm _haematoma_ may form, with an expansile pulsation and a palpable thrill--whether such a haematoma remains circumscribed or becomes diffuse depends upon the density or laxity of the tissues around it. In course of time a _traumatic arterial aneurysm_ may develop from such a haematoma. When an artery and its companion vein are injured simultaneously an _arterio-venous aneurysm_ (p. 310) may develop. This frequently takes place without the formation of a haematoma as the arterial blood finds its way into the vein and so does not escape into the tissues. Even if a haematoma forms it seldom assumes a great size. In time a swelling is recognised, with a palpable thrill and a systolic bruit, loudest at the level of the communication and accompanied by a continuous venous hum. If leakage occurs into the tissues, the extravasated blood may occlude the vein by pressure, and the symptoms of arterial aneurysm replace those of the arterio-venous form, the systolic bruit persisting, while the venous hum disappears. _Gangrene_ may ensue if the blood supply is seriously interfered with, or the signs of _ischaemia_ may develop; the muscles lose their elasticity, become hard and paralysed, and anaesthesia of the "glove" or "stocking" type, with other alterations of sensation ensue. Apart from ischaemia, _reflex paralysis_ of motion and sensation of a transient kind may follow injury of a large vessel. _Treatment_ is carried out on the same lines as for similar injuries due to other causes. INJURIES OF VEINS Veins are subject to the same forms of injury as arteries, and the results are alike in both, such variations as occur being dependent partly on the difference in their anatomical structure, and partly on the conditions of the circulation through them. #Subcutaneous rupture# of veins occur most frequently in association with fractures and in the reduction of dislocations. The veins most commonly ruptured are the popliteal, the axillary, the femoral, and the subclavian. On account of the smaller amount of elastic and muscular tissue in the wall of a vein, the contraction and retraction of its walls are less than in an artery, and so bleeding may continue for a longer period. On the other hand, owing to the lower blood-pressure the outflow goes on more slowly, and the gradually increasing pressure produced by the extravasated blood is usually sufficient to arrest the haemorrhage before it becomes serious. As an aid in diagnosing the source of the bleeding, it should be remembered that the rupture of a vein does not affect the pulsation in the limb beyond. The risks are practically the same as when an artery is ruptured, excepting that of aneurysm, and the treatment is carried out on the same lines, but it is seldom necessary to operate for the purpose of applying a ligature to the injured vein. #Wounds# of veins--punctured and incised--frequently occur in the course of operations; for example, in the removal of tumours or diseased glands from the neck, the axilla, or the groin. They are also met with as a result of accidental stabs and of suicidal or homicidal injuries. The haemorrhage from a large vein so damaged is usually profuse, but it is more readily controlled by external pressure than that from an artery. When a vein is merely punctured, the bleeding may be arrested by pressure with a pad of gauze, or by a lateral ligature--that is, picking up the margins of the rent in the wall and securing them with a ligature without occluding the lumen. In the large veins, such as the internal jugular, the femoral, or the axillary, it is usually possible to suture the opening in the wall. This does not necessarily result in thrombosis in the vessel, or in obliteration of its lumen. When an _artery and vein are simultaneously wounded_, the features peculiar to each are present in greater or less degree. In the limbs gangrene may ensue, especially if the wound is infected. Punctured and gun-shot wounds implicating both artery and vein are liable to be followed by the development of arterio-venous aneurysm. #Entrance of Air into Veins--Air Embolism.#--This serious, though fortunately rare, accident is apt to occur in the course of operations in the region of the thorax, neck, or axilla, if a large vein is opened and fails to collapse on account of the rigidity of its walls, its incorporation in a dense fascia, or from traction being made upon it. If the wound in a vein is thus held open, the negative pressure during inspiration sucks air into the right side of the heart. This is accompanied by a hissing or gurgling sound, and with the next expiration some frothy blood escapes from the wound. The patient instantly becomes pale, the pupils dilate, respiration becomes laboured, and although the heart may continue to beat forcibly, the peripheral pulse is weak, and may even be imperceptible. On auscultating the heart, a churning sound may be heard. Death may result in a few minutes; or the heart may slowly regain its power and recovery take place. _Prevention._--In operations in the "dangerous area"--as the region of the root of the neck is called in this connection--care must be taken not to cut or divide any vein before it has been secured by forceps, and to apply ligatures securely and at once. Deep wounds in this region should be kept filled with normal salt solution. Immediately a cut is recognised in a vein, a finger should be placed over the vessel on the cardiac side of the wound, and kept there until the opening is secured. _Treatment._--Little can be done after the air has actually entered the vein beyond endeavouring to maintain the heart's action by hypodermic injections of ether or strychnin and the application of mustard or hot cloths over the chest. The head at the same time should be lowered to prevent syncope. Attempts to withdraw the air by suction, and the employment of artificial respiration, have proved futile, and are, by some, considered dangerous. In a desperate case massage of the heart might be tried. THE NATURAL ARREST OF HAEMORRHAGE AND THE REPAIR OF BLOOD VESSELS #Primary Haemorrhage.#--The term primary haemorrhage is applied to the bleeding which follows immediately on the wounding of a blood vessel. The natural process by which such haemorrhage is arrested varies with the character of the wound in the vessel and may be modified by accidental circumstances. (a) _Repair of completely divided Artery._--When an artery is _completely_ divided, the circular fibres of the muscular coat contract, so that the lumen of the cut ends is diminished, and at the same time each segment retracts within its sheath in virtue of the recoil of the elastic elements in its walls, the tunica intima curls up in the interior of the vessel, and the tunica externa collapses over the cut ends. The blood that escapes from the injured vessel fills the interstices of the tissues, and, coagulating, forms a clot which temporarily arrests the bleeding. That part of the clot which lies between the divided ends of the vessel and in the cellular tissue outside, is known as the _external clot_, while the portion which projects into the lumen of the vessel is known as the _internal clot_, and it usually extends as far as the nearest collateral branch. These processes constitute what is known as the _temporary arrest of haemorrhage_, which, it will be observed, is effected by the contraction and retraction of the divided artery and by clotting. The _permanent arrest_ takes place by the transformation of the clot into scar tissue. The internal clot plays the most important part in the process; it becomes invaded by leucocytes and proliferating endothelial and connective-tissue cells, and new blood vessels permeate the mass, which is thus converted into granulation tissue. This is ultimately replaced by fibrous tissue, which permanently occludes the end of the vessel. Concurrently and by the same process the external clot is converted into scar tissue. If a divided artery is _ligated at its cut end_, the tension of the ligature is usually sufficient to rupture the inner and middle coats, which curl up within the lumen, the outer coat alone being held in the grasp of the ligature. An internal clot forms and, becoming organised, permanently occludes the vessel as above described. The ligature and the small portion of vessel beyond it are subsequently absorbed. In course of time the collateral branches of the vessel above and below the level of section enlarge and their inter-communication becomes more free, so that even when large trunks have been divided the vascular supply of the parts beyond may be completely restored. This is known as the development of the _collateral circulation_. _Imperfect Collateral Circulation._--While the development of the collateral circulation after the ligation or obstruction from other cause of a main arterial trunk may be sufficient to prevent gangrene of the limb, it may be insufficient for its adequate nourishment; it may be cold, bluish in colour, and there may be necrosis of the skin over bony points; this is notably the case in the lower extremity after ligation of the femoral or popliteal artery, when patches of skin may die over the prominence of the heel, the balls of the toes, the projecting base of the fifth metatarsal and the external malleolus. If, during the period of reaction, the blood-pressure rises considerably, the occluding clot at the divided end of the vessel may be washed away or the ligature displaced, permitting of fresh bleeding taking place--_reactionary_ or _intermediary haemorrhage_ (p. 272). In the event of the wound becoming infected with pyogenic organisms, the occluding blood-clot or the young fibrous tissue may become disintegrated in the suppurative process, and the bleeding start afresh--_secondary haemorrhage_ (p. 273). (b) If an artery is only _partly cut across_, the divided fibres of the tunica muscularis contract and those of the tunica externa retract, with the result that a more or less circular hole is formed in the wall of the vessel, from which free bleeding takes place, as the conditions are unfavourable for the formation of an occluding clot. Even if a clot does form, when the blood-pressure rises it is readily displaced, leading to reactionary haemorrhage. Should the wound become infected, secondary haemorrhage is specially liable to occur. A further risk attends this form of injury, in that the intra-vascular tension may in time lead to gradual stretching of the scar tissue which closes the gap in the vessel wall, with the result that a localised dilatation or diverticulum forms, constituting a _traumatic aneurysm_. (c) When the injury merely takes the form of a _puncture_ or _small incision_ a blood-clot forms between the edges, becomes organised, and is converted into cicatricial tissue which seals the aperture. Such wounds may also be followed by reactionary or secondary haemorrhage, or later by the formation of a traumatic aneurysm. _Conditions which influence the Natural Arrest of Haemorrhage._--The natural arrest of bleeding is favoured by tearing or crushing of the vessel walls, owing to the contraction and retraction of the coats and the tendency of blood to coagulate when in contact with damaged tissue. Hence the primary haemorrhage following lacerated wounds is seldom copious. The occurrence of syncope or of profound shock also helps to stop bleeding by reducing the force of the heart's action. On the other hand, there are conditions which retard the natural arrest. When, for example, a vessel is only partly divided, the contraction and retraction of the muscular coat, instead of diminishing the calibre of the artery, causes the wound in the vessel to gape; by completing the division of the vessel under these circumstances the bleeding can often be arrested. In certain situations, also, the arteries are so intimately connected with their sheaths, that when cut across they were unable to retract and contract--for example, in the scalp, in the penis, and in bones--and copious bleeding may take place from comparatively small vessels. This inability of the vessels to contract and retract is met with also in inflamed and oedematous parts and in scar tissue. Arteries divided in the substance of a muscle also sometimes bleed unduly. Any increase in the force of the heart's action, such as may result from exertion, excitement, or over-stimulation, also interferes with the natural arrest. Lastly, in bleeders, there are conditions which interfere with the natural arrest of haemorrhage. #Repair of a Vessel ligated in its Continuity.#--When a ligature is applied to an artery it should be pulled sufficiently tight to occlude the lumen without causing rupture of its coats. It often happens, however, that the compression causes rupture of the inner and middle coats, so that only the outer coat remains in the grasp of the ligature. While this weakens the wall of the vessel, it has the advantage of hastening coagulation, by bringing the blood into contact with damaged tissue. Whether the inner and middle coats are ruptured or not, blood coagulates both above and below the ligature, the proximal clot being longer and broader than that on the distal side. In small arteries these clots extend as far as the nearest collateral branch, but in the larger trunks their length varies. The permanent occlusion of those portions of the vessel occupied by clot is brought about by the formation of granulation tissue, and its replacement by cicatricial tissue, so that the occluded segment of the vessel is represented by a fibrous cord. In this process the coagulum only plays a passive role by forming a scaffolding on which the granulation tissue is built up. The ligature surrounding the vessel, and the elements of the clot, are ultimately absorbed. #Repair of Veins.#--The process of repair in veins is the same as that in arteries, but the thrombosed area may become canalised and the circulation through the vessel be re-established. HAEMORRHAGE IN SURGICAL OPERATIONS The management of the haemorrhage which accompanies an operation includes (a) preventive measures, and (b) the arrest of the bleeding. #Prevention of Haemorrhage.#--Whenever possible, haemorrhage should be controlled by _digital compression_ of the main artery supplying the limb rather than by a tourniquet. If efficiently applied compression reduces the immediate loss of blood to a minimum, and the bleeding from small vessels that follows the removal of the tourniquet is avoided. Further, the pressure of a tourniquet has been shown to be a material factor in producing shock. In selecting a point at which to apply digital compression, it is essential that the vessel should be lying over a bone which will furnish the necessary resistance. The common carotid, for example, is pressed backward and medially against the transverse process (carotid tubercle) of the sixth cervical vertebra; the temporal against the temporal process (zygoma) in front of the ear; and the facial against the mandible at the anterior edge of the masseter. In the upper extremity, the subclavian is pressed against the first rib by making pressure downwards and backwards in the hollow above the clavicle; the axillary and brachial by pressing against the shaft of the humerus. In the lower extremity, the femoral is controlled by pressing in a direction backward and slightly upward against the brim of the pelvis, midway between the symphysis pubis and the anterior superior iliac spine. The abdominal aorta may be compressed against the bodies of the lumbar vertebrae opposite the umbilicus, if the spine is arched well forwards over a pillow or sand-bag, or by the method suggested by Macewen, in which the patient's spine is arched forwards by allowing the lower extremities and pelvis to hang over the end of the table, while the assistant, standing on a stool, applies his closed fist over the abdominal aorta and compresses it against the vertebral column. Momburg recommends an elastic cord wound round the body between the iliac crest and the lower border of the ribs, but this procedure has caused serious damage to the intestine. When digital compression is not available, the most convenient and certain means of preventing haemorrhage--say in an amputation--is by the use of some form of _tourniquet_, such as the elastic tube of Esmarch or of Foulis, or an elastic bandage, or the screw tourniquet of Petit. Before applying any of these it is advisable to empty the limb of blood. This is best done after the manner suggested by Lister: the limb is held vertical for three or four minutes; the veins are thus emptied by gravitation, and they collapse, and as a physiological result of this the arteries reflexly contract, so that the quantity of blood entering the limb is reduced to a minimum. With the limb still elevated the tourniquet is firmly applied, a part being selected where the vessel can be pressed directly against a bone, and where there is no risk of exerting injurious pressure on the nerve-trunks. The tourniquet should be applied over several layers of gauze or lint to protect the skin, and the first turn of the tourniquet must be rapidly and tightly applied to arrest completely the arterial flow, otherwise the veins only are obstructed and the limb becomes congested. In the lower extremity the best place to apply a tourniquet is the middle third of the thigh; in the upper extremity, in the middle of the arm. A tourniquet should never be applied tighter or left on longer than is absolutely necessary. The screw tourniquet of Petit is to be preferred when it is desired to intermit the flow through the main artery as in operations for aneurysm. When a tourniquet cannot conveniently be applied, or when its presence interferes with the carrying out of the operation--as, for example, in amputations at the hip or shoulder--the haemorrhage may be controlled by preliminary ligation of the main artery above the seat of operation--for instance, the external iliac or the subclavian. For such contingencies also the steel skewers used by Spence and Wyeth, or a special clamp or forceps, such as that suggested by Lynn Thomas, may be employed. In the case of vessels which it is undesirable to occlude permanently, such as the common carotid, the temporary application of a ligature or clamp is useful. #Arrest of Haemorrhage.#--_Ligature._--This is the best means of securing the larger vessels. The divided vessel having been caught with forceps as near to its cut end as possible, a ligature of catgut or silk is tied round it. When there is difficulty in applying a ligature securely, for example in a dense tissue like the scalp or periosteum, or in a friable tissue like the thyreoid gland or the mesentery, a stitch should be passed so as to surround the bleeding vessel a short distance from its end, in this way ensuring a better hold and preventing the ligature from slipping. If the haemorrhage is from a partly divided vessel, this should be completely cut across to enable its walls to contract and retract, and to facilitate the application of forceps and ligatures. _Torsion._--This method is seldom employed except for comparatively small vessels, but it is applicable to even the largest arteries. In employing torsion, the end of the vessel is caught with forceps, and the terminal portion twisted round several times. The object is to tear the inner and middle coats so that they curl up inside the lumen, while the outer fibrous coat is twisted into a cord which occludes the end of the vessel. _Forci-pressure._--Bleeding from the smallest arteries and from arterioles can usually be arrested by firmly squeezing them for a few minutes with artery forceps. It is usually found that on the removal of the forceps at the end of an operation no further haemorrhage takes place. By the use of specially strong clamps, such as the angiotribes of Doyen, large trunks may be occluded by pressure. _Cautery._--The actual cautery or Paquelin's thermo-cautery is seldom employed to arrest haemorrhage, but is frequently useful in preventing it, as, for example, in the removal of piles, or in opening the bowel in colostomy. It is used at a dull-red heat, which sears the divided ends of the vessel and so occludes the lumen. A bright-red or a white heat cuts the vessel across without occluding it. The separation of the slough produced by the charring of the tissues is sometimes attended with secondary bleeding. _Haemostatics_ or _Styptics_.--The local application of haemostatics is seldom to be recommended. In the treatment of epistaxis or bleeding from the nose, of haemorrhage from the socket of a tooth, and sometimes from ulcerating or granulating surfaces, however, they may be useful. All clots must be removed and the drug applied directly to the bleeding surface. Adrenalin and turpentine are the most useful drugs for this purpose. Haemorrhage from bone, for example the skull, may be arrested by means of Horsley's aseptic plastic wax. To stop persistent oozing from soft tissues, Horsley successfully applied a portion of living vascular tissue, such as a fragment of muscle, which readily adheres to the oozing surface and yields elements that cause coagulation of the blood by thrombo-kinetic processes. When examined after two or three days the muscle has been found to be closely adherent and undergoing organisation. #Arrest of Accidental Haemorrhage.#--The most efficient means of temporarily controlling haemorrhage is by pressure applied with the finger, or with a pad of gauze, directly over the bleeding point. While this is maintained an assistant makes digital pressure, or applies a tourniquet, over the main vessel of the limb on the proximal side of the bleeding point. A useful _emergency tourniquet_ may be improvised by folding a large handkerchief _en cravatte_, with a cork or piece of wood in the fold to act as a pad. The handkerchief is applied round the limb, with the pad over the main artery, and the ends knotted on the lateral aspect of the limb. With a strong piece of wood the handkerchief is wound up like a Spanish windlass, until sufficient pressure is exerted to arrest the bleeding. When haemorrhage is taking place from a number of small vessels, its arrest may be effected by elevation of the bleeding part, particularly if it is a limb. By this means the force of the circulation is diminished and the formation of coagula favoured. Similarly, in wounds of the hand or forearm, or of the foot or leg, bleeding may be arrested by placing a pad in the flexure and acutely flexing the limb at the elbow or knee respectively. #Reactionary Haemorrhage.#--Reactionary or intermediary haemorrhage is really a recurrence of primary bleeding. As the name indicates, it occurs during the period of reaction--that is, within the first twelve hours after an operation or injury. It may be due to the increase in the blood-pressure that accompanies reaction displacing clots which have formed in the vessels, or causing vessels to bleed which did not bleed during the operation; to the slipping of a ligature; or to the giving way of a grossly damaged portion of the vessel wall. In the scrotum, the relaxation of the dartos during the first few hours after operation occasionally leads to reactionary haemorrhage. As a rule, reactionary haemorrhage takes place from small vessels as a result of the displacement of occluding clots, and in many cases the haemorrhage stops when the bandages and soaked dressings are removed. If not, it is usually sufficient to remove the clots and apply firm pressure, and in the case of a limb to elevate it. Should the haemorrhage recur, the wound must be reopened, and ligatures applied to the bleeding vessels. Douching the wound with hot sterilised water (about 110 o F.), and plugging it tightly with gauze, are often successful in arresting capillary oozing. When the bleeding is more copious, it is usually due to a ligature having slipped from a large vessel such as the external jugular vein after operations in the neck, and the wound must be opened up and the vessel again secured. The internal administration of heroin or morphin, by keeping the patient quiet, may prove useful in preventing the recurrence of haemorrhage. #Secondary Haemorrhage.#--The term secondary haemorrhage refers to bleeding that is delayed in its onset and is due to pyogenic infection of the tissues around an artery. The septic process causes softening and erosion of the wall of the artery so that it gives way under the pressure of the contained blood. The leakage may occur in drops, or as a rush of blood, according to the extent of the erosion, the size of the artery concerned, and the relations of the erosion to the surrounding tissues. When met with as a complication of a wound there is an interval--usually a week to ten days--between the receipt of the wound and the first haemorrhage, this time being required for the extension of the septic process to the wall of the artery and the consequent erosion of its coats. When secondary haemorrhage occurs apart from a wound, there is a similar septic process attacking the wall of the artery from the outside; for example in sloughing sore-throat, the separation of a slough may implicate the wall of an artery and be followed by serious and it may be fatal haemorrhage. The mechanical pressure of a fragment of bone or of a rubber drainage tube upon the vessel may aid the septic process in causing erosion of the artery. In pre-Listerian days, the silk ligature around the artery likewise favoured the changes that lead to secondary haemorrhage, and the interesting observation was often made, that when the collateral circulation was well established, the leakage occurred on the _distal_ side of the ligature. While it may happen that the initial haemorrhage is rapidly fatal, as for example when the external carotid or one of its branches suddenly gives way, it is quite common to have one, two or more _warning haemorrhages_ before the leakage on a large scale, which is rapidly fatal. The _appearances of the wound_ in cases complicated by secondary haemorrhage are only characteristic in so far that while obviously infected, there is an absence of all reaction; instead of frankly suppurating, there is little or no discharge and the surrounding cellular tissue and the limb beyond are oedematous and pit on pressure. The _general symptoms_ of septic poisoning in cases of secondary haemorrhage vary widely in severity: they may be so slight that the general health is scarcely affected and the convalescence from an operation, for example, may be apparently normal except that the wound does not heal satisfactorily. For example, a patient may be recovering from an operation such as the removal of an epithelioma of the mouth, pharynx or larynx and the associated lymph glands in the neck, and be able to be up and going about his room, when, suddenly, without warning and without obvious cause, a rush of blood occurs from the mouth or the incompletely healed wound in the neck, causing death within a few minutes. On the other hand, the toxaemia may be of a profound type associated with marked pallor and progressive failure of strength, which, of itself, even when the danger from haemorrhage has been overcome, may have a fatal termination. The _prognosis_ therefore in cases of secondary haemorrhage can never be other than uncertain and unfavourable; the danger from loss of blood _per se_ is less when the artery concerned is amenable to control by surgical measures. _Treatment._--The treatment of secondary haemorrhage includes the use of local measures to arrest the bleeding, the employment of general measures to counteract the accompanying toxaemia, and when the loss of blood has been considerable, the treatment of the bloodless state. _Local Measures to arrest the Haemorrhage._--The occurrence of even slight haemorrhages from a septic wound in the vicinity of a large blood vessel is to be taken seriously; it is usually necessary to _open up the wound_, clear out the clots and infected tissues with a sharp spoon, disinfect the walls of the cavity with eusol or hydrogen peroxide, and _pack_ it carefully but not too tightly with gauze impregnated with some antiseptic, such as "bipp," so that, if the bleeding does not recur, it may be left undisturbed for several days. The packing should if possible be brought into actual contact with the leaking point in the vessel, and so arranged as to make pressure on the artery above the erosion. The dressings and bandage are then applied, with the limb in the attitude that will diminish the force of the stream through the main artery, for example, flexion at the elbow in haemorrhage from the deep palmar arch. Other measures for combating the local sepsis, such as the irrigation method of Carrel, may be considered. If the wound involves one of the extremities, it may be useful; and it imparts confidence to the nurse, and, it may be, to the patient, if a Petit's tourniquet is loosely applied above the wound, which the nurse is instructed to tighten up in the event of bleeding taking place. _Ligation of the Artery._--If the haemorrhage recurs in spite of packing the wound, or if it is serious from the outset and likely to be critical if repeated, ligation of the artery itself or of the trunk from which it springs, at a selected spot higher up, should be considered. This is most often indicated in wounds of the extremities. As examples of proximal ligation for secondary haemorrhage may be cited ligation of the hypogastric artery for haemorrhage in the buttock, of the common iliac for haemorrhage in the thigh, of the brachial in the upper arm for haemorrhage from the deep palmar arch, and of the posterior tibial behind the medial malleolus for haemorrhage from the sole of the foot. _Amputation_ is the last resource, and should be decided upon if the haemorrhage recurs after proximal ligation, or if this has been followed by gangrene of the limb; it should also be considered if the nature of the wound and the virulence of the sepsis would of themselves justify removal of the limb. Every surgeon can recall cases in which a timely amputation has been the means of saving life. The _counteraction of the toxaemia_ and the _treatment of the bloodless state_, are carried out on the usual lines. #Haemorrhage of Toxic Origin.#--Mention must also be made of haemorrhages which depend upon infective or toxic conditions and in which no gross lesion of the vessels can be discovered. The bleeding occurs as an oozing, which may be comparatively slight and unimportant, or by its persistence may become serious. It takes place into the superficial layers of the skin, from mucous membranes, and into the substance of such organs as the pancreas. Haemorrhage from the stomach and intestine, attended with a brown or black discoloration of the vomit and of the stools, is one of the best known examples: it is not uncommonly met with in infective conditions originating in the appendix, intestine, gall-bladder, and other abdominal organs. Haemorrhage from the mucous membrane of the stomach after abdominal operations--apparently also due to toxic causes and not to the operation--gives rise to the so-called _post-operative haematemesis_. #Constitutional Effects of Haemorrhage.#--The severity of the symptoms resulting from haemorrhage depends as much on the rapidity with which the bleeding takes place as on the amount of blood lost. The sudden loss of a large quantity, whether from an open wound or into a serous cavity--for example, after rupture of the liver or spleen--is attended with marked pallor of the surface of the body and coldness of the skin, especially of the face, feet, and hands. The skin is moist with a cold, clammy sweat, and beads of perspiration stand out on the forehead. The pulse becomes feeble, soft, and rapid, and the patient is dull and listless, and complains of extreme thirst. The temperature is usually sub-normal; and the respiration rapid, shallow, and sighing in character. Abnormal visual sensations, in the form of flashes of light or spots before the eyes; and rushing, buzzing, or ringing sounds in the ears, are often complained of. In extreme cases, phenomena which have been aptly described as those of "air-hunger" ensue. On account of the small quantity of blood circulating through the body, and the diminished haemoglobin content of the blood, the tissues are imperfectly oxygenated, and the patient becomes extremely restless, gasping for breath, constantly throwing about his arms and baring his chest in the vain attempt to breath more freely. Faintness and giddiness are marked features. The diminished supply of oxygen to the brain and to the muscles produces muscular twitchings, and sometimes convulsions. Finally the pupils dilate, the sphincters relax, and death ensues. Young children stand the loss of blood badly, but they quickly recover, as the regeneration of blood takes place rapidly. In old people also, and especially when they are fat, the loss of blood is badly borne, and the ill effects last longer. Women, on the whole, stand loss of blood better than men, and in them the blood is more rapidly re-formed. A few hours after a severe haemorrhage there is usually a leucocytosis of from 15,000 to 30,000. #Treatment of the Bloodless State.#--The patient should be placed in a warm, well-ventilated room, and the foot of the bed elevated. Cardiac stimulants, such as strychnin or alcohol, must be judiciously administered, over-stimulation being avoided. The inhalation of oxygen has been found useful in relieving the urgent symptoms of dyspnoea. The blood may be emptied from the limbs into the vessels of the trunk, where it is more needed, by holding them vertically in the air for a few minutes, and then applying a firm elastic bandage over a layer of cotton wool, from the periphery towards the trunk. _Introduction of Fluids into the Circulation._--The most valuable measure for maintaining the circulation, however, is by transfusion of blood (_Op. Surg._, p. 37). If this is not immediately available the introduction of from one to three pints of physiological salt solution (a teaspoonful of common salt to a pint of water) into a vein, or a 6 per cent. solution of gum acacia, is a useful expedient. The solution is sterilised by boiling, and cooled to a temperature of about 105 o F. The addition of 5 to 10 minims of adrenalin solution (1 in 1000) is advantageous in raising the blood-pressure (_Op. Surg._, p. 565). When the intra-venous method is not available, one or two pints of saline solution with adrenalin should be slowly introduced into the rectum, by means of a long rubber tube and a filler. Satisfactory, although less rapidly obtained results follow the introduction of saline solution into the cellular tissue--for example, under the mamma, into the axilla, or under the skin of the back. If the patient can retain fluids taken by the mouth--such as hot coffee, barley water, or soda water--these should be freely given, unless the injury necessitates operative treatment under a general anaesthetic. Transfusion of blood is most valuable as _a preliminary to operation_ in patients who are bloodless as a result of haemorrhage from gastric and duodenal ulcers, and in bleeders. HAEMOPHILIA The term haemophilia is applied to an inherited disease which renders the patient liable to serious haemorrhage from even the most trivial injuries; and the subjects of it are popularly known as "bleeders." The cause of the disease and its true nature are as yet unknown. There is no proof of any structural defect in the blood vessels, and beyond the fact that there is a diminution in the number of blood-plates, it has not been demonstrated that there is any alteration in the composition of the blood. The affection is in a marked degree hereditary, all the branches of an affected family being liable to suffer. Its mode of transmission to individuals, moreover, is characteristic: the male members of the stock alone suffer from the affection in its typical form, while the tendency is transmitted through the female line. Thus the daughters of a father who is a bleeder, whilst they do not themselves suffer from the disease, transmit the tendency to their male offspring. The sons, on the other hand, neither suffer themselves nor transmit the disease to their children (Fig. 64). The female members of a haemophilic stock are often very prolific, and there is usually a predominance of daughters in their families. FIG 64.--Genealogical Tree of a Haemophilic Family. Great-Great-Grandmother Great-Great-Grandfather Mrs D. (Lancashire) F M (History not known .| | as to bleeding) .| | .+----------+-------+ ............| .| ....| .+---------+--------+ Great-Grandmother .| | | (Married three .F MB MB times) .| .| .| By First Husband .| By Second By Third ..............| Husband Husband +-----------+------------+----------+-------+-------+-----------+------+ | .| | | +-------+-----------+------+ M .F F F | | +------+ | .| | | MB F Died in No Died Grandmother | | | Childbed Family aet. .| | +-----------+ +----+--- 70 .| +------+ |had family | | .| | | |but history| | .| MB MB |not known | MB .| .| .|............................. +-----+----------+------------+------------+------------+-------------+ | | | | |. | | | | | | |. | | M M M MB F. F F | |. | | | Mother +--+--+---+--+--+ | +----+ |. | | | | | | | | | |. M M MB F F F | M F |. | Not Married |. +---+---+---+---+ |. | | | | | |. MB M MB M M .............|. +-----+-----+-----+-----+-----+ | .| .| | | | | .|* .|* | | | M MB MB F F F F = Females. M = Males (not bleeders). MB = Males (bleeders) ** the patients observed by the authors. The dotted line shows the transmission of the disease to our patients through four generations. The disease is met with in boys who are otherwise healthy, and usually manifests itself during the first few years of life. In rare instances profuse haemorrhage takes place when the umbilical cord separates. As a rule the first evidence is the occurrence of long-continued and uncontrollable bleeding from a comparatively slight injury, such as the scratch of a pin, the extraction of a tooth, or after the operation of circumcision. The blood oozes slowly from the capillaries; at first it appears normal, but after flowing for some days, or it may be weeks, it becomes pale, thin, and watery, and shows less and less tendency to coagulate. Female members of haemophilia families sometimes show a tendency to excessive haemorrhage, but they seldom manifest the characteristic features met with in the male members. Sometimes the haemorrhage takes place apparently spontaneously from the gums, the nasal or the intestinal mucous membrane. In other cases the bleeding occurs into the cellular tissue under the skin or mucous membrane, producing large areas of ecchymosis and discoloration. One of the commonest manifestations of the disease is the occurrence of haemorrhage into the cavities of the large joints, especially the knee, elbow, or hip. The patient suffers repeatedly from such haemorrhages, the determining injury being often so slight as to have passed unobserved. There is evidence that the tendency to bleed is greater at certain times than at others--in some cases showing almost a cyclical character--although nothing is known as to the cause of the variation. After a severe haemorrhage into the cellular tissue or into a joint, the patient becomes pale and anaemic, the temperature may rise to 102 o or 103 o F., the pulse become small and rapid, and haemic murmurs are sometimes developed over the heart and large arteries. The swelling is tense, fluctuating, and hot, and there is considerable pain and tenderness. In exceptional cases, blisters form over the seat of the effusion, or the skin may even slough, and the clinical features may therefore come to simulate closely those of an acute suppurative condition. When the skin sloughs, an ulcer is formed with altered blood-clot in its floor like that seen in scurvy, and there is a remarkable absence of any attempt at healing. The acute symptoms gradually subside, and the blood is slowly absorbed, the discoloration of the skin passing through the same series of changes as occur after an ordinary bruise. The patients seldom manifest the symptoms of the bloodless state, and the blood is rapidly regenerated. The _diagnosis_ is easy if the patient or his friends are aware of the family tendency to haemorrhage and inform the doctor of it, but they are often sensitive and reticent regarding the fact, and it may only be elicited after close investigation. From the history it is usually easy to exclude scurvy and purpura. Repeated haemorrhages into a joint may result in appearances which closely simulate those of tuberculous disease. Recent haemorrhages into the cellular tissue often present clinical features closely resembling those of acute cellulitis or osteomyelitis. A careful examination, however, may reveal ecchymoses on other parts of the body which give a clue to the nature of the condition, and may prevent the disastrous consequences that may follow incision. These patients usually succumb sooner or later to haemorrhage, although they often survive several severe attacks. After middle life the tendency to bleed appears to diminish. _Treatment._--As a rule the ordinary means of arresting haemorrhage are of little avail. From among the numerous means suggested, the following may be mentioned: The application to the bleeding point of gauze soaked in a 1 in 1000 solution of adrenalin; prolonged inhalation of oxygen; freezing the part with a spray of ethyl-chloride; one or more subcutaneous injections of gelatin--5 ounces of a 2 1/2 per cent. solution of white gelatin in normal salt solution being injected at a temperature of about 100 o F.; the injection of pituitary extract. The application of a pad of gauze soaked in the blood of a normal person sometimes arrests the bleeding. To prevent bleeding in haemophilics, intra-venous or subcutaneous injections of fresh blood serum, taken from the human subject, the sheep, the dog, or the horse, have proved useful. If fresh serum is not available, anti-diphtheritic or anti-tetanic serum or trade preparations, such as hemoplastin, may be employed. We have removed the appendix and amputated through the thigh in haemophilic subjects without excessive loss of blood after a course of fresh sheep's serum given by the mouth over a period of several weeks. The chloride and lactate of calcium, and extract of thymus gland have been employed to increase the coagulability of the blood. The patient should drink large quantities of milk, which also increases the coagulability of the blood. Monro has observed remarkable results from the hypodermic injection of emetin hydrochloride in 1/2-grain doses. THROMBOSIS AND EMBOLISM The processes known as thrombosis and embolism are so intimately associated with the diseases of blood vessels that it is convenient to define these terms in the first instance. #Thrombosis.#--The term _thrombus_ is applied to a clot of blood formed in the interior of the heart or of a blood vessel, and the process by which such a clot forms is known as _thrombosis_. It would appear that slowing or stagnation of the blood-stream, and interference with the integrity of the lining membrane of the vessel wall, are the most important factors determining the formation of the clot. Alterations in the blood itself, such as occur, for example, in certain toxaemias, also favour coagulation. When the thrombus is formed slowly, it consists of white blood cells with a small proportion of fibrin, and, being deposited in successive layers, has a distinctly laminated appearance on section. It is known as a _white thrombus_ or laminated clot, and is often met with in the sac of an aneurysm (Fig. 72). When rapidly formed in a vessel in which the blood is almost stagnant--as, for example, in a pouched varicose vein--the blood coagulates _en masse_, and the clot consists of all the elements of the blood, constituting a _red thrombus_ (Fig. 66). Sometimes the thrombus is _mixed_--a red thrombus being deposited on a white one, it may be in alternate layers. When aseptic, a thrombus may become detached and be carried off in the blood-stream as an embolus; it may become organised; or it may degenerate and undergo calcification. Occasionally a small thrombus situated behind a valve in a varicose vein or in the terminal end of a dilated vein--for example in a pile--undergoes calcification, and is then spoken of as a _phlebolith_; it gives a shadow with the X-rays. When infected with pyogenic bacteria, the thrombus becomes converted into pus and a localised abscess forms; or portions of the thrombus may be carried as emboli in the circulation to distant parts, where they give rise to secondary foci of suppuration--pyaemic abscesses. #Embolism.#--The term _embolus_ is applied to any body carried along in the circulation and ultimately becoming impacted in a blood vessel. This occurrence is known as _embolism_. The commonest forms of embolus are portions of thrombi or of fibrinous formations on the valves of the heart, the latter being usually infected with micro-organisms. Embolism plays an important part in determining one form of gangrene, as has already been described. Infective emboli are the direct cause of the secondary abscesses that occur in pyaemia; and they are sometimes responsible for the formation of aneurysm. Portions of malignant tumours also may form emboli, and their impaction in the vessels may lead to the development of secondary growths in distant parts of the body. Fat and air embolism have already been referred to. ARTERITIS _Pyogenic._--Non-suppurative inflammation of the coats of an artery may so soften the wall of the vessel as to lead to aneurysmal dilatation. It is not uncommon in children, and explains the occurrence of aneurysm in young subjects. When suppuration occurs, the vessel wall becomes disintegrated and gives way, leading to secondary haemorrhage. If the vessel ruptures into an abscess cavity, dangerous bleeding may occur when the abscess bursts or is opened. _Syphilitic._--The inflammation associated with syphilis results in thickening of the tunica intima, whereby the lumen of the vessel becomes narrowed, or even obliterated--_endarteritis obliterans_. The middle coat usually escapes, but the tunica externa is generally thickened. These changes cause serious interference with the nutrition of the parts supplied by the affected arteries. In large trunks, by diminishing the elasticity of the vessel wall, they are liable to lead to the formation of aneurysm. Changes in the arterial walls closely resembling those of syphilitic arteritis are sometimes met with in _tuberculous_ lesions. #Arterio-sclerosis# or #Chronic Arteritis#.--These terms are applied to certain changes which result in narrowing of the lumen and loss of elasticity in the arteries. The condition may affect the whole vascular system or may be confined to particular areas. In the smaller arteries there is more or less uniform thickening of the tunica intima from proliferation of the endothelium and increase in the connective tissue in the elastic lamina--a form of obliterative endarteritis. The narrowing of the vessels may be sufficient to determine gangrene in the extremities. In course of time, particularly in the larger arteries, this new tissue undergoes degeneration, at first of a fatty nature, but progressing in the direction of calcification, and this is followed by the deposit of lime salts in the young connective tissue and the formation of calcareous plates or rings over a considerable area of the vessel wall. To this stage in the process the term _atheroma_ is applied. The endothelium over these plates often disappears, leaving them exposed to the blood-stream. Changes of a similar kind sometimes occur in the middle coat, the lime salts being deposited among the muscle fibres in concentric rings. The primary cause of arterio-sclerosis is not definitely known, but its almost constant occurrence, to a greater or less degree, in the aged suggests that it is of the nature of a senile degeneration. It is favoured by anything which throws excessive strain on the vessel walls, such as heavy muscular work; by chronic alcoholism and syphilis; or by such general diseases as tend to raise the blood-pressure--for example, chronic Bright's disease or gout. It occurs with greater frequency and with greater severity in men than in women. Atheromatous degeneration is most common in the large arterial trunks, and the changes are most marked at the arch of the aorta, opposite the flexures of joints, at the mouths of large branches, and at parts where the vessel lies in contact with bone. The presence of diseased patches in the wall of an artery diminishes its elasticity and favours aneurysmal dilatation. Such a vessel also is liable to be ruptured by external violence and so give rise to traumatic aneurysm. Thrombosis is liable to occur when calcareous plates are exposed in the lumen of the vessel by destruction of the endothelium, and this predisposes to embolism. Arterio-sclerosis also interferes with the natural arrest of haemorrhage, and by rendering the vessels brittle, makes it difficult to secure them by ligature. In advanced cases the accessible arteries--such as the radial, the temporal or the femoral--may be felt as firm, tortuous cords, which are sometimes so hard that they have been aptly compared to "pipe-stems." The pulse is smaller and less compressible than normal, and the vessel moves bodily with each pulsation. It must be borne in mind, however, that the condition of the radial artery may fail to afford a clue to that of the larger arteries. Calcified arteries are readily identified in skiagrams (Fig. 65). [Illustration: FIG. 65.--Radiogram showing Calcareous Degeneration (Atheroma) of Arteries.] We have met with a chronic form of arterial degeneration in elderly women, affecting especially the great vessels at the root of the neck, in which the artery is remarkably attenuated and dilated, and so friable that the wall readily tears when seized with an artery-forceps, rendering ligation of the vessel in the ordinary way well-nigh impossible. Matas suggests infolding the wall of the vessel with interrupted sutures that do not pierce the intima, and wrapping it round with a strip of peritoneum or omentum. The most serious form of arterial _thrombosis_ is that met with _in the abdominal aorta_, which is attended with violent pains in the lower limbs, rapidly followed by paralysis and arrest of the circulation. THROMBO-PHLEBITIS AND THROMBOSIS IN VEINS #Thrombosis# is more common in veins than in arteries, because slowing of the blood-stream and irritation of the endothelium of the vessel wall are, owing to the conditions of the venous circulation, more readily induced in veins. Venous thrombosis may occur from purely mechanical causes--as, for example, when the wall of a vein is incised, or the vessel included in a ligature, or when it is bruised or crushed by a fragment of a broken bone or by a bandage too tightly applied. Under these conditions thrombosis is essentially a reparative process, and has already been considered in relation to the repair of blood vessels. In other cases thrombosis is associated with certain constitutional diseases--gout, for example; the endothelium of the veins undergoing changes--possibly the result of irritation by abnormal constituents in the blood--which favour the formation of thrombi. Under these various conditions the formation of a thrombus is not necessarily associated with the action of bacteria, although in any of them this additional factor may be present. The most common cause of venous thrombosis, however, is inflammation of the wall of the vein--phlebitis. #Phlebitis.#--Various forms of phlebitis are met with, but for practical purposes they may be divided into two groups--one in which there is a tendency to the formation of a thrombus; the other in which the infective element predominates. In surgical patients, the _thrombotic form_ is almost invariably met with in the lower extremity, and usually occurs in those who are debilitated and anaemic, and who are confined to bed for prolonged periods--for example, during the treatment of fractures of the leg or pelvis, or after such operations as herniotomy, prostatectomy, or appendectomy. _Clinical Features._--The most typical example of this form of phlebitis is that so frequently met with in the great saphena vein, especially when it is varicose. The onset of the attack is indicated by a sudden pain in the lower limb--sometimes below, sometimes above the knee. This initial pain may be associated with shivering or even with a rigor, and the temperature usually rises one or two degrees. There is swelling and tenderness along the line of the affected vein, and the skin over it is a dull-red or purple colour. The swollen vein may be felt as a firm cord, with bead-like enlargements in the position of the valves. The patient experiences a feeling of stiffness and tightness throughout the limb. There is often oedema of the leg and foot, especially when the limb is in the dependent position. The acute symptoms pass off in a few days, but the swelling and tenderness of the vein and the oedema of the limb may last for many weeks. When the deep veins--iliac, femoral, popliteal--are involved, there is great swelling of the whole limb, which is of a firm almost "wooden" consistence, and of a pale-white colour; the oedema may be so great that it is impossible to feel the affected vein until the swelling has subsided. This is most often seen in puerperal women, and is known as _phlegmasia alba dolens_. _Treatment._--The patient must be placed at absolute rest, with the foot of the bed raised on blocks 10 or 12 inches high, and the limb immobilised by sand-bags or splints. It is necessary to avoid handling the parts, lest the clot be displaced and embolism occur. To avoid frequent movement of the limb, the necessary dressings should be kept in position by means of a many-tailed rather than a roller bandage. To relieve the pain, warm fomentations or lead and opium lotion should be applied. Later, ichthyol-glycerin, or glycerin and belladonna, may be substituted. When, at the end of three weeks, the danger of embolism is past, douching and gentle massage may be employed to disperse the oedema; and when the patient gets up he should wear a supporting elastic bandage. The _infective_ form usually begins as a peri-phlebitis arising in connection with some focus of infection in the adjacent tissues. The elements of the vessel wall are destroyed by suppuration, and the thrombus in its lumen becomes infected with pyogenic bacteria and undergoes softening. _Occlusion of the inferior vena cava_ as a result of infective thrombosis is a well-known condition, the thrombosis extending into the main trunk from some of its tributaries, either from the femoral or iliac veins below or from the hepatic veins above. Portions of the softened thrombus are liable to become detached and to enter the circulating blood, in which they are carried as emboli. These may lodge in distant parts, and give rise to secondary foci of suppuration--pyaemic abscesses. _Clinical Features._--Infective phlebitis is most frequently met with in the transverse sinus as a sequel to chronic suppuration in the mastoid antrum and middle ear. It also occurs in relation to the peripheral veins, but in these it can seldom be recognised as a separate entity, being merged in the general infective process from which it takes origin. Its occurrence may be inferred, if in the course of a suppurative lesion there is a sudden rise of temperature, with pain, redness, and swelling along the line of a venous trunk, and a rapidly developed oedema of the limb, with pitting of the skin on pressure. In rare cases a localised abscess forms in the vein and points towards the surface. _Treatment._--Attention must be directed towards the condition with which the phlebitis is associated. Ligation of the vein on the cardiac side of the thrombus with a view to preventing embolism is seldom feasible in the peripheral veins, although, as will be pointed out later, the jugular vein is ligated with this object in cases of phlebitis of the transverse sinus. VARIX--VARICOSE VEINS The term varix is applied to a condition in which veins are so altered in structure that they remain permanently dilated, and are at the same time lengthened and tortuous. Two types are met with: one in which dilatation of a large superficial vein and its tributaries is the most obvious feature; the other, in which bunches of distended and tortuous vessels develop at one or more points in the course of a vein, a condition to which Virchow applied the term _angioma racemosum venosum_. The two types may occur in combination. Any vein in the body may become varicose, but the condition is rare except in the veins of the lower extremity, in the veins of the spermatic cord (varicocele), and in the veins of the anal canal (haemorrhoids). We are here concerned with varix as it occurs in the veins of the lower extremity. _Etiology._--Considerable difference of opinion exists as to the essential cause of varix. The weight of evidence is in favour of the view that, when dilatation is the predominant element, it results from a congenital deficiency in the number, size, and strength of the valves of the affected veins, and in an inherent weakness in the vessel walls. The _angioma racemosum venosum_ is probably also due to a congenital alteration in the structure of the vessels, and is allied to tumours of blood vessels. The view that varix is congenital in origin, as was first suggested by Virchow, is supported by the fact that in a large proportion of cases the condition is hereditary; not only may several members of the same family in succeeding generations suffer from varix, but it is often found that the same vein, or segment of a vein, is involved in all of them. The frequent occurrence of varix in youth is also an indication of its congenital origin. In the majority of cases it is only when some exciting factor comes into operation that the clinical phenomena associated with varix appear. The most common exciting cause is increased pressure within the veins, and this may be produced in a variety of ways. In certain diseases of the heart, lungs, and liver, for example, the venous pressure may be so raised as to cause a localised dilatation of such veins as are congenitally weak. The direct pressure of a tumour, or of the gravid uterus on the large venous trunks in the pelvis, may so obstruct the flow as to distend the veins of the lower extremity. It is a common experience in women that the signs of varix date from an antecedent pregnancy. The importance of the wearing of tight garters as a factor in the production of varicose veins has been exaggerated, although it must be admitted that this practice is calculated to aggravate the condition when it is once established. It has been proved experimentally that the backward pressure in the veins may be greatly increased by straining, a fact which helps to explain the frequency with which varicosity occurs in the lower limbs of athletes and of those whose occupation involves repeated and violent muscular efforts. There is reason to believe, moreover, that a sudden strain may, by rupturing the valves and so rendering them incompetent, induce varicosity independently of any congenital defect. Prolonged standing or walking, by allowing gravity to act on the column of blood in the veins of the lower limbs, is also an important determining factor in the production of varix. Thrombosis of the deep veins--in the leg, for example--may induce marked dilatation of the superficial veins, by throwing an increased amount of work upon them. This is to be looked upon rather as a compensatory hypertrophy of the superficial vessels than as a true varix. _Morbid Anatomy._--In the lower extremity the varicosity most commonly affects the vessels of the great saphena system; less frequently those of the small saphena system. Sometimes both systems are involved, and large communicating branches may develop between the two. The essential lesion is the absence or deficiency of valves, so that they are incompetent and fail to support the column of blood which bears back upon them. Normally the valves in the femoral and iliac veins and in the inferior vena cava are imperfectly developed, so that in the erect posture the great saphena receives a large share of the backward pressure of the column of venous blood. The whole length of the vein may be affected, but as a rule the disease is confined to one or more segments, which are not only dilated, but are also increased in length, so that they become convoluted. The adjacent loops of the convoluted vein are often bound together by fibrous tissue. All the coats are thickened, chiefly by an increased development of connective tissue, and in some cases changes similar to those of arterio-sclerosis occur. The walls of varicose veins are often exceedingly brittle. In some cases the thickening is uniform, and in others it is irregular, so that here and there thin-walled sacs or pouches project from the side of the vein. These pouches vary in size from a bean to a hen's egg, the larger forms being called _venous cysts_, and being most commonly met with in the region of the saphenous opening and of the opening in the popliteal fascia. Such pouches, being exposed to injury, are frequently the seat of thrombosis (Fig. 66). [Illustration: FIG. 66.--Thrombosis in Tortuous and Pouched Great Saphena Vein, in longitudinal section.] _Clinical Features._--Varix is most frequently met with between puberty and the age of thirty, and the sexes appear to suffer about equally. The amount of discomfort bears no direct proportion to the extent of the varicosity. It depends rather upon the degree of pressure in the veins, as is shown by the fact that it is relieved by elevation of the limb. When the whole length of the main trunk of the great saphena is implicated, the pressure in the vein is high and the patient suffers a good deal of pain and discomfort. When, on the contrary, the upper part of the saphena and its valves are intact, and only the more distal veins are involved, the pressure is not so high and there is comparatively little suffering. The usual complaint is of a sense of weight and fulness in the limb after standing or walking, sometimes accompanied by actual pain, from which relief is at once obtained by raising the limb. Cramp-like pains in the muscles are often associated with varix of the deep veins. The dilated and tortuous vein can be readily seen and felt when the patient is examined in the upright posture. In advanced cases, bead-like swellings are sometimes to be detected over the position of the valves, and, on running the fingers along the course of the vessel, a firm ridge, due to periphlebitis, may be detected on each side of the vein. When the limb is oedematous, the outline of the veins is obscured, but they can be identified on palpation as gutter-like tracks. When large veins are implicated, a distinct impulse on coughing may be seen to pass down as far as the knee; and if the vessel is sharply percussed a fluid wave may be detected passing both up and down the vein. If the patient is placed on a couch and the limb elevated, the veins are emptied, and if pressure is then made over the region of the saphenous opening and the patient allowed to stand up, so long as the great saphena system alone is involved, the veins fill again very slowly from below. If the small saphena system also is involved, and if communicating branches are dilated, the veins fill up from below more rapidly. When the pressure over the saphenous opening is removed, the blood rapidly rushes into the varicose vessels from above; this is known as Trendelenburg's test. The most marked dilatation usually occurs on the medial side of the limb, between the middle of the thigh and the middle of the calf, the arrangement of the veins showing great variety (Fig. 67). There are usually one or more bunches of enlarged and tortuous veins in the region of the knee. Frequently a large branch establishes a communication between the systems of the great and small saphenous veins in the region of the popliteal space, or across the front of the upper part of the tibia. The superficial position of this last branch and its proximity to the bone render it liable to injury. [Illustration: FIG. 67.--Extensive Varix of Internal Saphena System on Left Leg, of many years' standing.] The small veins of the skin of the ankle and foot often show as fine blue streaks arranged in a stellate or arborescent manner, especially in women who have borne children. _Complications._--When the varix is of long standing, the skin in the lower part of the leg sometimes assumes a mahogany-brown or bluish hue, as a result of the _deposit of blood pigment_ in the tissues, and this is frequently a precursor of ulceration. _Chronic dermatitis_ (_varicose eczema_) is often met with in the lower part of the leg, and is due to interference with the nutrition of the skin. The incompetence of the valves allows the pressure in the varicose veins to equal that in the arterioles, so that the capillary circulation is impeded. From the same cause the blood in the deep veins is enabled to enter the superficial veins, where the backward pressure is so great that the blood flows down again, and so a vicious circle is established. The blood therefore loses more and more of its oxygen, and so fails to nourish the tissues. The _ulcer_ of the leg associated with varicose veins has already been described. _Haemorrhage_ may take place from a varicose vein as a result of a wound or of ulceration of its wall. Increased intra-venous pressure produced by severe muscular strain may determine rupture of a vein exposed in the floor of an ulcer. If the limb is dependent, the incompetency of the valves permits of rapid and copious bleeding, which may prove fatal, particularly if the patient is intoxicated when the rupture takes place and no means are taken to arrest the haemorrhage. The bleeding may be arrested at once by elevating the limb, or by applying pressure directly over the bleeding point. _Phlebitis and thrombosis_ are common sequelae of varix, and may prove dangerous, either by spreading into the large venous trunks or by giving rise to emboli. The larger the varix the greater is the tendency for a thrombus to spread upwards and to involve the deep veins. Thrombi usually originate in venous cysts or pouches, and at acute bends on the vessel, especially when these are situated in the vicinity of the knee, and are subjected to repeated injuries--for example in riding. Phleboliths sometimes form in such pouches, and may be recognised in a radiogram. In a certain proportion of cases, especially in elderly people, the occurrence of thrombosis leads to cure of the condition by the thrombus becoming organised and obliterating the vein. _Treatment._--At best the treatment of varicose veins is only palliative, as it is obviously impossible to restore to the vessels their normal structure. The patient must avoid wearing anything, such as a garter, which constricts the limb, and any obvious cause of direct pressure on the pelvic veins, such as a tumour, persistent constipation, or an ill-fitting truss, should be removed. Cardiac, renal, or pulmonary causes of venous congestion must also be treated, and the functions of the liver regulated. Severe forms of muscular exertion and prolonged standing or walking are to be avoided, and the patient may with benefit rest the limb in an elevated position for a few hours each day. To support the distended vessels, a closely woven silk or worsted stocking, or a light and porous form of elastic bandage, applied as a puttee, should be worn. These appliances should be put on before the patient leaves his bed in the morning, and should only be removed after he lies down at night. In this way the vessels are never allowed to become dilated. Elastic stockings, and bandages made entirely of india-rubber, are to be avoided. In early and mild cases these measures are usually sufficient to relieve the patient's discomfort. _Operative Treatment._--In aggravated cases, when the patient is suffering pain, when his occupation is interfered with by repeated attacks of phlebitis, or when there are large pouches on the veins, operative treatment is called for. The younger the patient the clearer is the indication to operate. It may be necessary to operate to enable a patient to enter one of the public services, even although no symptoms are present. The presence of an ulcer does not contra-indicate operation; the ulcer should be excised, and the raw surface covered with skin grafts, before dealing with the veins. The _operation of Trendelenburg_ is especially appropriate to cases in which the trunk of the great saphena vein in the thigh is alone involved. It consists in exposing three or four inches of the vein in its upper part, applying a ligature at the upper and lower ends of the exposed portion, and, after tying all tributary branches, resecting this portion of the vein. The procedure of C. H. Mayo is adapted to cases in which it is desirable to remove longer segments of the veins. It consists in the employment of special instruments known as "ring-enucleators" or "vein-strippers," by means of which long portions of the vein are removed through comparatively small incisions. An alternative procedure consists in avulsing segments of the vein by means of Babcock's stylet, which consists of a flexible steel rod, 30 inches in length, with acorn-shaped terminals. The instrument is passed along the lumen of the segment to be dealt with, and a ligature applied around the vein above the bulbous end of the stylet enables nearly the whole length of the great saphena vein to be dragged out in one piece. These methods are not suitable when the veins are brittle, when there are pouches or calcareous deposits in their walls, or where there has been periphlebitis binding the coils together. Mitchell of Belfast advises exposing the varices at numerous points by half-inch incisions, and, after clamping the vein between two pairs of forceps, cutting it across and twisting out the segments of the vein between adjacent incisions. The edges of the incisions are sutured; and the limb is firmly bandaged from below upwards, and kept in an elevated position. We have employed this method with satisfactory results. The treatment of the complications of varix has already been considered. ANGIOMA[4] [4] In the description of angiomas we have followed the teaching of the late John Duncan. Tumours of blood vessels may be divided, according to the nature of the vessels of which they are composed, into the capillary, the venous, and the arterial angiomas. CAPILLARY ANGIOMA The most common form of capillary angioma is the naevus or congenital telangiectasis. #Naevus.#--A naevus is a collection of dilated capillaries, the afferent arterioles and the efferent venules of which often share in the dilatation. Little is known regarding the _etiology_ of naevi beyond the fact that they are of congenital origin. They often escape notice until the child is some days old, but attention is usually drawn to them within a fortnight of birth. For practical purposes the most useful classification of naevi is into the cutaneous, the subcutaneous, and the mixed forms. _The cutaneous naevus_, "mother's mark," or "port-wine stain," consists of an aggregation of dilated capillaries in the substance of the skin. On stretching the skin the vessels can be seen to form a fine network, or to run in leashes parallel to one another. A dilated arteriole or a vein winding about among the capillaries may sometimes be detected. These naevi occur on any part of the body, but they are most frequently met with on the face. They may be multiple, and vary greatly in size, some being no bigger than a pin-head, while others cover large areas of the body. In colour they present every tint from purple to brilliant red; in the majority there is a considerable dash of blue, especially in cold weather. Unlike the other forms of naevi, the cutaneous variety shows little tendency to disappear, and it is especially persistent when associated with overgrowth of the epidermis and of the hairs--_naevoid mole_. The _treatment_ of the cutaneous naevus is unsatisfactory, owing to the difficulty of removing the naevus without leaving a scar which is even more disfiguring. Very small naevi may be destroyed by a fine pointed Paquelin thermo-cautery, or by escharotics, such as nitric acid. For larger naevi, radium and solidified carbon dioxide ("CO_2 snow") may be used. The extensive port-wine stains so often met with on the face are best left alone. The _subcutaneous naevus_ is comparatively rare. It constitutes a well-defined, localised tumour, which may possess a distinct capsule, especially when it has ceased to grow or is retrogressing. On section, it presents the appearance of a finely reticulated sponge. Although it may be noticed at, or within a few days of, birth, a subcutaneous naevus is often overlooked, especially when on a covered part of the body, and may not be discovered till the patient is some years old. It forms a rounded, lobulated swelling, seldom of large size and yielding a sensation like that of a sponge; the skin over it is normal, or may exhibit a bluish tinge, especially in cold weather. In some cases the tumour is diminished by pressing the blood out of it, but slowly fills again when the pressure is relaxed, and it swells up when the child struggles or cries. From a cold abscess it is diagnosed by the history and progress of the swelling and by the absence of fluctuation. When situated over one of the hernial openings, it closely simulates a hernia; and when it occurs in the middle line of the face, head, or back, it may be mistaken for such other congenital conditions as meningocele or spina bifida. When other means fail, the use of an exploring needle clears up the diagnosis. _Mixed Naevus._--As its name indicates, the mixed naevus partakes of the characters of the other two varieties; that is, it is a subcutaneous naevus with involvement of the skin. It is frequently met with on the face and head, but may occur on any part of the body. It also affects parts covered by mucous membrane, such as the cheek, tongue, and soft palate. The swelling is rounded or lobulated, and projects beyond the level of its surroundings. Sometimes the skin is invaded by the naevoid tissue over the whole extent of the tumour, sometimes only over a limited area. Frequently the margin only is of a bright-red colour, while the skin in the centre resembles a cicatrix. The swelling is reduced by steady pressure, and increases in size and becomes tense when the child cries. [Illustration: FIG. 68.--Mixed Naevus of Nose which was subsequently cured by Electrolysis.] _Prognosis._--The rate of growth of the subcutaneous and mixed forms of naevi varies greatly. They sometimes increase rapidly, especially during the first few months of life; after this they usually grow at the same rate as the child, or more slowly. There is a decided tendency to disappearance of these varieties, fully 50 per cent. undergoing natural cure by a process of obliteration, similar to the obliteration of vessels in cicatricial tissue. This usually begins about the period of the first dentition, sometimes at the second dentition, and sometimes at puberty. On the other hand, an increased activity of growth may be shown at these periods. The onset of natural cure is recognised by the tumour becoming firmer and less compressible, and, in the mixed variety, by the colour becoming less bright. Injury, infection, or ulceration of the overlying skin may initiate the curative process. Towards adult life the spaces in a subcutaneous naevus may become greatly enlarged, leading to the formation of a cavernous angioma. _Treatment._--In view of the frequency with which subcutaneous and mixed naevi disappear spontaneously, interference is only called for when the growth of the tumour is out of proportion to that of the child, or when, from its situation--for example in the vicinity of the eye--any marked increase in its size would render it less amenable to treatment. The methods of treatment most generally applicable are the use of radium and carbon dioxide snow, igni-puncture, electrolysis, and excision. For naevi situated on exposed parts, where it is desirable to avoid a scar, the use of _radium_ is to be preferred. The tube of radium is applied at intervals to different parts of the naevus, the duration and frequency of the applications varying with the strength of the emanations and the reaction produced. The object aimed at is to induce obliteration of the naevoid tissue by cicatricial contraction without destroying the overlying skin. _Carbon-dioxide snow_ may be employed in the same manner, but the results are inferior to those obtained by radium. _Igni-puncture_ consists in making a number of punctures at different parts of the naevus with a fine-pointed thermo-cautery, with the object of starting at each point a process of cicatrisation which extends throughout the naevoid tissue and so obliterates the vessels. _Electrolysis_ acts by decomposing the blood and tissues into their constituent elements--oxygen and acids appearing at the positive, hydrogen and bases at the negative electrode. These substances and gases being given off in a nascent condition, at once enter into new combinations with anything in the vicinity with which they have a chemical affinity. In the naevus the practical result of this reaction is that at the positive pole nitric acid, and at the negative pole caustic potash, both in a state of minute subdivision, make their appearance. The effect on the tissues around the positive pole, therefore, is equivalent to that of an acid cauterisation, and on those round the negative pole, to an alkaline cauterisation. As the process is painful, a general anaesthetic is necessary. The current used should be from 20 to 80 milliamperes, gradually increasing from zero, without shock; three to six large Bunsen cells give a sufficient current, and no galvanometer is required. Steel needles, insulated with vulcanite to within an eighth of an inch of their points, are the best. Both poles are introduced into the naevus, the positive being kept fixed at one spot, while the negative is moved about so as to produce a number of different tracks of cauterisation. On no account must either pole be allowed to come in contact with the skin, lest a slough be formed. The duration of the sitting is determined by the effect produced, as indicated by the hardening of the tumour, the average duration being from fifteen to twenty minutes. If pallor of the skin appears, it indicates that the needles are too near the surface, or that the blood supply to the integument is being cut off, and is an indication to stop. To cauterise the track and so prevent bleeding, the needles should be slowly withdrawn while the current is flowing. When the skin is reached the current is turned off. The punctures are covered with collodion. Six or eight weeks should be allowed to elapse before repeating the procedure. From two to eight or ten sittings may be necessary, according to the size and character of the naevus. _Excision_ is to be preferred for naevi of moderate size situated on covered parts of the body, where a scar is of no importance. Its chief advantages over electrolysis are that a single operation is sufficient, and that the cure is speedy and certain. The operation is attended with much less haemorrhage than might be expected. #Cavernous Angioma.#--This form of angioma consists of a series of large blood spaces which are usually derived from the dilatation of the capillaries of a subcutaneous naevus. The spaces come to communicate freely with one another by the disappearance of adjacent capillary walls. While the most common situation is in the subcutaneous tissue, a cavernous angioma is sometimes met with in internal organs. It may appear at any age from early youth to middle life, and is of slow growth and may become stationary. The swelling is rounded or oval, there is no pulsation or bruit, and the tumour is but slightly compressible. The treatment consists in dissecting it out. #Aneurysm by Anastomosis# is the name applied to a vascular tumour in which the arteries, veins, and capillaries are all involved. It is met with chiefly on the upper part of the trunk, the neck, and the scalp. It tends gradually to increase in size, and may, after many years, attain an enormous size. The tumour is ill-defined, and varies in consistence. It is pulsatile, and a systolic bruit or a "thrilling" murmur may be heard over it. The chief risk is haemorrhage from injury or ulceration. [Illustration: FIG. 69.--Cirsoid Aneurysm of Forehead in a boy aet. 10. (Mr. J. W. Dowden's case.)] The _treatment_ is conducted on the same lines as for naevus. When electrolysis is employed, it should be directed towards the afferent vessels; and if it fails to arrest the flow through these, it is useless to persist with it. In some cases ligation of the afferent vessels has been successful. #Arterial Angioma# or #Cirsoid Aneurysm#.--This is composed of the enlarged branches of an arterial trunk. It originates in the smaller branches of an artery--usually the temporal--and may spread to the main trunk, and may even involve branches of other trunks with which the affected artery anastomoses. The condition is probably congenital in origin, though its appearance is frequently preceded by an injury. It almost invariably occurs in the scalp, and is usually met with in adolescent young adults. The affected vessels slowly increase in size, and become tortuous, with narrowings and dilatations here and there. Grooves and gutters are frequently found in the bone underlying the dilated vessels. There is a constant loud bruit in the tumour, which greatly troubles the patient and may interfere with sleep. There is no tendency either to natural cure or to rupture, but severe and even fatal haemorrhage may follow a wound of the dilated vessels. [Illustration: FIG. 70.--Cirsoid Aneurysm of Orbit and Face, which developed after a blow on the Orbit with a cricket ball. (From a photograph lent by Sir Montagu Cotterill.)] The condition may be treated by excision or by electrolysis. In excision the haemorrhage is controlled by an elastic tourniquet applied horizontally round the head, or by ligation of the feeding trunks. In large tumours the bleeding is formidable. In many cases electrolysis is to be preferred, and is performed in the same way as for naevus. The positive pole is placed in the centre of the tumour, while the negative is introduced into the main affluents one after another. ANEURYSM An aneurysm is a sac communicating with an artery, and containing fluid or coagulated blood. Two types are met with--the pathological and the traumatic. It is convenient to describe in this section also certain conditions in which there is an abnormal communication between an artery and a vein--arterio-venous aneurysm. PATHOLOGICAL ANEURYSM In this class are included such dilatations as result from weakening of the arterial coats, combined, in most cases, with a loss of elasticity in the walls and increase in the arterial tension due to arterio-sclerosis. In some cases the vessel wall is softened by arteritis--especially the embolic form--so that it yields before the pressure of the blood. Repeated and sudden raising of the arterial tension, as a result, for example, of violent muscular efforts or of excessive indulgence in alcohol, plays an important part in the causation of aneurysm. These factors probably explain the comparative frequency of aneurysm in those who follow such arduous occupations as soldiers, sailors, dock-labourers, and navvies. In these classes the condition usually manifests itself between the ages of thirty and fifty--that is, when the vessels are beginning to degenerate, although the heart is still vigorous and the men are hard at work. The comparative immunity of women may also be explained by the less severe muscular strain involved by their occupations and recreations. Syphilis plays an important part in the production of aneurysm, probably by predisposing the patient to arterio-sclerosis and atheroma, and inducing an increase in the vascular tension in the peripheral vessels, from loss of elasticity of the vessel wall and narrowing of the lumen as a result of syphilitic arteritis. It is a striking fact that aneurysm is seldom met with in women who have not suffered from syphilis. #Varieties--Fusiform Aneurysm.#--When the _whole circumference_ of an artery has been weakened, the tension of the blood causes the walls to dilate uniformly, so that a fusiform or tubular aneurysm results. All the coats of the vessel are stretched and form the sac of the aneurysm, and the affected portion is not only dilated but is also increased in length. This form is chiefly met with in the arch of the aorta, but may occur in any of the main arterial trunks. As the sac of the aneurysm includes all three coats, and as the inner and outer coats are usually thickened by the deposit in them of connective tissue, this variety increases in size slowly and seldom gives rise to urgent symptoms. As a rule a fusiform aneurysm contains fluid blood, but when the intima is roughened by disease, especially in the form of calcareous plates, shreds of clot may adhere to it. It has little tendency to natural cure, although this is occasionally effected by the emerging artery becoming occluded by a clot; it has also little tendency to rupture. #Sacculated Aneurysm.#--When a _limited area_ of the vessel wall is weakened--for example by atheroma or by other form of arteritis--this portion yields before the pressure of the blood, and a sacculated aneurysm results. The internal and middle coats being already damaged, or, it may be, destroyed, by the primary disease, the stress falls on the external coat, which in the majority of cases constitutes the sac. To withstand the pressure the external coat becomes thickened, and as the aneurysm increases in size it forms adhesions to surrounding tissues, so that fasciae, tendons, nerves, and other structures may be found matted together in its wall. The wall is further strengthened by the deposit on its inner aspect of blood-clot, which may eventually become organised. The contents of the sac consist of fluid blood and a varying amount of clot which is deposited in concentric layers on the inner aspect of the sac, where it forms a pale, striated, firm mass, which constitutes a laminated clot. Near the blood-current the clot is soft, red, and friable (Fig. 72). The laminated clot not only strengthens the sac, enabling it to resist the blood-pressure and so prevent rupture, but, if it increases sufficiently to fill the cavity, may bring about cure. The principle upon which all methods of treatment are based is to imitate nature in producing such a clot. Sacculated aneurysm, as compared with the fusiform variety, tends to rupture and also to cure by the formation of laminated clot; natural cure is sometimes all but complete when extension and rupture occur and cause death. An aneurysm is said to be _diffused_ when the sac ruptures and the blood escapes into the cellular tissue. #Clinical Features of Aneurysm.#--Surgically, the sacculated is by far the most important variety. The outstanding feature is the existence in the line of an artery of a globular swelling, which pulsates. The pulsation is of an expansile character, which is detected by observing that when both hands are placed over the swelling they are separated with each beat of the heart. If the main artery be compressed on the cardiac side of the swelling, the pulsation is arrested and the tumour becomes smaller and less tense, and it may be still further reduced in size by gentle pressure being made over it so as to empty it of fluid blood. On allowing the blood again to flow through the artery, the pulsation returns at once, but several beats are required before the sac regains its former size. In most cases a distinct thrill is felt on placing the hand over the swelling, and a blowing, systolic murmur may be heard with the stethoscope. It is to be borne in mind that occasionally, when the interchange of blood between an aneurysm and the artery from which it arises is small, pulsation and bruit may be slight or even absent. This is also the case when the sac contains a considerable quantity of clot. When it becomes filled with clot--_consolidated aneurysm_--these signs disappear, and the clinical features are those of a solid tumour lying in contact with an artery, and transmitting its pulsation. A comparison of the pulse in the artery beyond the seat of the aneurysm with that in the corresponding artery on the healthy side, shows that on the affected side the wave is smaller in volume, and delayed in time. A pulse tracing shows that the normal impulse and dicrotic waves are lost, and that the force and rapidity of the tidal wave are diminished. [Illustration: FIG. 71.--Radiogram of Aneurysm of Aorta, showing laminated clot and erosion of bodies of vertebrae. The intervertebral discs are intact.] An aneurysm exerts pressure on the surrounding structures, which are usually thickened and adherent to it and to one another. Adjacent veins may be so compressed that congestion and oedema of the parts beyond are produced. Pain, disturbances of sensation, and muscular paralyses may result from pressure on nerves. Such bones as the sternum and vertebrae undergo erosion and are absorbed by the gradually increasing pressure of the aneurysm. Cartilage, on the other hand, being elastic, yields before the pressure, so that the intervertebral discs or the costal cartilages may escape while the adjacent bones are destroyed (Fig. 71). The skin over the tumour becomes thinned and stretched, until finally a slough forms, and when it separates haemorrhage takes place. [Illustration: FIG. 72.--Sacculated Aneurysm of Abdominal Aorta nearly filled with laminated clot. Note greater density of clot towards periphery.] In the progress of an aneurysm towards rupture, timely clotting may avert death for the moment, but while extension in one direction has been arrested there is apt to be extension in another, with imminence of rupture, or it may be again postponed. #Differential Diagnosis.#--The diagnosis is to be made from other pulsatile swellings. Pulsation is sometimes transmitted from a large artery to a tumour, a mass of enlarged lymph glands, or an inflammatory swelling which lies in its vicinity, but the pulsation is not expansile--a most important point in differential diagnosis. Such swellings may, by appropriate manipulation, be moved from the artery and the pulsation ceases, and compression of the artery on the cardiac side of the swelling, although it arrests the pulsation, does not produce any diminution in the size or tension of the swelling, and when the pressure is removed the pulsation is restored immediately. Fluid swellings overlying an artery, such as cysts, abscesses, or enlarged bursae, may closely simulate aneurysm. An apparent expansion may accompany the pulsation, but careful examination usually enables this to be distinguished from the true expansion of an aneurysm. Compression of the artery makes no difference in the size or tension of the swelling. Vascular tumours, such as sarcoma and goitre, may yield an expansile pulsation and a soft, whifling bruit, but they differ from an aneurysm in that they are not diminished in size by compression of the main artery, nor can they be emptied by pressure. The exaggerated pulsation sometimes observed in the abdominal aorta, the "pulsating aorta" seen in women, should not be mistaken for aneurysm. #Prognosis.#--When _natural cure_ occurs it is usually brought about by the formation of laminated clot, which gradually increases in amount till it fills the sac. Sometimes a portion of the clot in the sac is separated and becomes impacted as an embolus in the artery beyond, leading to thrombosis which first occludes the artery and then extends into the sac. The progress of natural cure is indicated by the aneurysm becoming smaller, firmer, less expansile, and less compressible; the murmur and thrill diminish and the pressure effects become less marked. When the cure is complete the expansile pulsation is lost, and there remains a firm swelling attached to the vessel (_consolidated aneurysm_). While these changes are taking place the collateral arteries become enlarged, and an anastomotic circulation is established. An aneurysm may prove _fatal_ by exerting pressure on important structures, by causing syncope, by rupture, or from the occurrence of suppuration. _Pressure_ symptoms are usually most serious from aneurysms situated in the neck, thorax, or skull. Sudden fatal _syncope_ is not infrequent in cases of aneurysm of the thoracic aorta. _Rupture_ may take place through the skin, on a mucous or serous surface, or into the cellular tissue. The first haemorrhage is often slight and stops naturally, but it soon recurs, and is so profuse, especially when the blood escapes externally, that it rapidly proves fatal. When the bleeding takes place into the cellular tissue, the aneurysm is said to become _diffused_, and the extravasated blood spreads widely through the tissues, exerting great pressure on the surrounding structures. The _clinical features_ associated with rupture are sudden and severe pain in the part, and the patient becomes pale, cold, and faint. If a comparatively small escape of blood takes place into the tissues, the sudden alteration in the size, shape, and tension of the aneurysm, together with loss of pulsation, may be the only local signs. When the bleeding is profuse, however, the parts beyond the aneurysm become greatly swollen, livid, and cold, and the pulse beyond is completely lost. The arrest of the blood supply may result in gangrene. Sometimes the pressure of the extravasated blood causes the skin to slough and, later, give way, and fatal haemorrhage results. The _treatment_ is carried out on the same lines as for a ruptured artery (p. 261), it being remembered, however, that the artery is diseased and does not lend itself to reconstructive procedures. _Suppuration_ may occur in the vicinity of an aneurysm, and the aneurysm may burst into the abscess which forms, so that when the latter points the pus is mixed with broken-down blood-clot, and finally free haemorrhage takes place. It has more than once happened that a surgeon has incised such an abscess without having recognised its association with aneurysm, with tragic results. #Treatment.#--In treating an aneurysm, the indications are to imitate Nature's method of cure by means of laminated clot. _Constitutional treatment_ consists in taking measures to reduce the arterial tension and to diminish the force of the heart's action. The patient must be kept in bed. A dry and non-stimulating diet is indicated, the quantity being gradually reduced till it is just sufficient to maintain nutrition. Saline purges are employed to reduce the vascular tension. The benefit derived from potassium iodide administered in full doses, as first recommended by George W. Balfour, probably depends on its depressing action on the heart and its therapeutic benefit in syphilis. Pain or restlessness may call for the use of opiates, of which heroin is the most efficient. _Local Treatment._--When constitutional treatment fails, local measures must be adopted, and many methods are available. #Endo-aneurysmorrhaphy.#--The operation devised by Rudolf Matas in 1888 aims at closing the opening between the sac and its feeding artery, and in addition, folding the wall of the sac in such a way as to leave no vacant space. If there is marked disease of the vessel, Matas' operation is not possible and recourse is then had to ligation of the artery just above the sac. _Extirpation of the Sac--The Old Operation._--The procedure which goes by this name consists in exposing the aneurysm, incising the sac, clearing out the clots, and ligating the artery above and below the sac. This method is suitable to sacculated aneurysm of the limbs, so long as they are circumscribed and free from complications. It has been successfully practised also in aneurysm of the subclavian, carotid, and external iliac arteries. It is not applicable to cases in which there is such a degree of atheroma as would interfere with the successful ligation of the artery. The continuity of the artery may be restored by grafting into the gap left after excision of the sac a segment of the great saphena vein. _Ligation of the Artery._--The object of tying the artery is to diminish or to arrest the flow of blood through the aneurysm so that the blood coagulates both in the sac and in the feeding artery. The ligature may be applied on the cardiac side of the aneurysm--proximal ligation, or to the artery beyond--distal ligation. _Proximal Ligation._--The ligature may be applied immediately above the sac (Anel, 1710) or at a distance above (John Hunter, 1785). The _Hunterian operation_ ensures that the ligature is applied to a part of the artery that is presumably healthy and where relations are undisturbed by the proximity of the sac; the best example is the ligation of the superficial femoral artery in Scarpa's triangle or in Hunter's canal for popliteal aneurysm; it is on record that Syme performed this operation with cure of the aneurysm on thirty-nine occasions. It is to be noted that the Hunterian ligature does not aim at _arresting_ the flow of blood through the sac, but is designed so to diminish its volume and force as to favour the deposition within the sac of laminated clot. The development of the collateral circulation which follows upon ligation of the artery at a distance above the sac may be attended with just that amount of return stream which favours the deposit of laminated clot, and consequently the cure of the aneurysm; the return stream may, however, be so forcible as to prevent coagulation of the blood in the sac, or only to allow of the formation of a red thrombus which may in its turn be dispersed so that pulsation in the sac recurs. This does not necessarily imply failure to cure, as the recurrent pulsation may only be temporary; the formation of laminated clot may ultimately take place and lead to consolidation of the aneurysm. The least desirable result of the Hunterian ligature is met with in cases where, owing to widespread arterial disease, the collateral circulation does not develop and gangrene of the limb supervenes. _Anel's ligature_ is only practised as part of the operation which deals with the sac directly. _Distal Ligation._--The tying of the artery beyond the sac, or of its two branches where it bifurcates (Brasdor, 1760, and Wardrop, 1825), may arrest or only diminish the flow of blood through the sac. It is less successful than the proximal ligature, and is therefore restricted to aneurysms so situated as not to be amenable to other methods; for example, in aneurysm of the common carotid near its origin, the artery may be ligated near its bifurcation, or in aneurysm of the innominate artery, the carotid and subclavian arteries are tied at the seat of election. _Compression._--Digital compression of the feeding artery has been given up except as a preparation for operations on the sac with a view to favouring the development of a collateral circulation. _Macewen's acupuncture or "needling"_ consists in passing one or more fine, highly tempered steel needles through the tissues overlying the aneurysm, and through its outer wall. The needles are made to touch the opposite wall of the sac, and the pulsation of the aneurysm imparts a movement to them which causes them to scarify the inner surface of the sac. White thrombus forms on the rough surface produced, and leads to further coagulation. The needles may be left in position for some hours, being shifted from time to time, the projecting ends being surrounded with sterile gauze. The _Moore-Corradi method_ consists in introducing through the wall of the aneurysm a hollow insulated needle, through the lumen of which from 10 to 20 feet of highly drawn silver or other wire is passed into the sac, where it coils up into an open meshwork (Fig. 73). The positive pole of a galvanic battery is attached to the wire, and the negative pole placed over the patient's back. A current, varying in strength from 20 to 70 milliamperes, is allowed to flow for about an hour. The hollow needle is then withdrawn, but the wire is left _in situ_. The results are somewhat similar to those obtained by needling, but the clot formed on the large coil of wire is more extensive. [Illustration: FIG. 73.--Radiogram of Innominate Aneurysm after treatment by the Moore-Corradi method. Two feet of finely drawn silver wire were introduced. The patient, a woman, aet. 47, lived for ten months after operation, free from pain (cf. Fig. 75).] Colt's method of wiring has been mainly used in the treatment of abdominal aneurysm; gilt wire in the form of a wisp is introduced through the cannula and expands into an umbrella shape. _Subcutaneous Injections of Gelatin._--Three or four ounces of a 2 per cent. solution of white gelatin in sterilised water, at a temperature of about 100 o F., are injected into the subcutaneous tissue of the abdomen every two, three, or four days. In the course of a fortnight or three weeks improvement may begin. The clot which forms is liable to soften and be absorbed, but a repetition of the injection has in several cases established a permanent cure. _Amputation of the limb_ is indicated in cases complicated by suppuration, by secondary haemorrhage after excision or ligation, or by gangrene. Amputation at the shoulder was performed by Fergusson in a case of subclavian aneurysm, as a means of arresting the blood-flow through the sac. TRAUMATIC ANEURYSM The essential feature of a traumatic aneurysm is that it is produced by some form of injury which divides all the coats of the artery. The walls of the injured vessel are presumably healthy, but they form no part of the sac of the aneurysm. The sac consists of the condensed and thickened tissues around the artery. The injury to the artery may be a subcutaneous one such as a tear by a fragment of bone: much more commonly it is a punctured wound from a stab or from a bullet. The aneurysm usually forms soon after the injury is inflicted; the blood slowly escapes into the surrounding tissues, gradually displacing and condensing them, until they form a sac enclosing the effused blood. Less frequently a traumatic aneurysm forms some considerable time after the injury, from gradual stretching of the fibrous cicatrix by which the wound in the wall of the artery has been closed. The gradual stretching of this cicatrix results in condensation of the surrounding structures which form the sac, on the inner aspect of which laminated clot is deposited. A traumatic aneurysm is almost always sacculated, and, so long as it remains circumscribed, has the same characters as a pathological sacculated aneurysm, with the addition that there is a scar in the overlying skin. A traumatic aneurysm is liable to become diffuse--a change which, although attended with considerable risk of gangrene, has sometimes been the means of bringing about a cure. The treatment is governed by the same principles as apply to the pathological varieties, but as the walls of the artery are not diseased, operative measures dealing with the sac and the adjacent segment of the affected artery are to be preferred. ARTERIO-VENOUS ANEURYSM An abnormal communication between an artery and a vein constitutes an arterio-venous aneurysm. Two varieties are recognised--one in which the communication is direct--_aneurysmal varix_; the other in which the vein communicates with the artery through the medium of a sac--_varicose aneurysm_. Either variety may result from pathological causes, but in the majority of cases they are traumatic in origin, being due to such injuries as stabs, punctured wounds, and gun-shot injuries which involve both artery and vein. In former times the most common situation was at the bend of the elbow, the brachial artery being accidentally punctured in blood-letting from the median basilic vein. Arterio-venous aneurysm is a frequent result of injuries by modern high-velocity bullets--for example, in the neck or groin. In _aneurysmal varix_ the higher blood pressure in the artery forces arterial blood into the vein, which near the point of communication with the artery tends to become dilated, and to form a thick-walled sac, beyond which the vessel and its tributaries are distended and tortuous. The clinical features resemble those associated with varicose veins, but the entrance of arterial blood into the dilated veins causes them to pulsate, and produces in them a vibratory thrill and a loud murmur. In those at the groin, the distension of the veins may be so great that they look like sinuses running through the muscles, a feature that must be taken into account in any operation. As the condition tends to remain stationary, the support of an elastic bandage is all that is required; but when the condition progresses and causes serious inconvenience, it may be necessary to cut down and expose the communication between the artery and vein, and, after separating the vessels, to close the opening in each by suture; this may be difficult or impossible if the parts are matted from former suppuration. If it is impossible thus to obliterate the communication, the artery should be ligated above and below the point of communication; although the risk of gangrene is considerable unless means are taken to develop the collateral circulation beforehand (Makins). _Varicose aneurysm_ usually develops in relation to a traumatic aneurysm, the sac becoming adherent to an adjacent vein, and ultimately opening into it. In this way a communication between the artery and the vein is established, and the clinical features are those of a combination of aneurysm and aneurysmal varix. As there is little tendency to spontaneous cure, and as the aneurysm is liable to increase in size and finally to rupture, operative treatment is usually called for. This is carried out on the same lines as for aneurysmal varix, and at the same time incising the sac, turning out the clots, and ligating any branches which open into the sac. If it can be avoided, the vein should not be ligated. ANEURYSMS OF INDIVIDUAL ARTERIES #Thoracic Aneurysm.#--All varieties of aneurysm occur in the aorta, the fusiform being the most common, although a sacculated aneurysm frequently springs from a fusiform dilatation. The _clinical features_ depend chiefly on the direction in which the aneurysm enlarges, and are not always well marked even when the sac is of considerable size. They consist in a pulsatile swelling--sometimes in the supra-sternal notch, but usually towards the right side of the sternum--with an increased area of dulness on percussion. With the X-rays a dark shadow is seen corresponding to the sac. Pain is usually a prominent symptom, and is largely referable to the pressure of the aneurysm on the vertebrae or the sternum, causing erosion of these bones. Pressure on the thoracic veins and on the air-passage causes cyanosis and dyspnoea. When the oesophagus is pressed upon, the patient may have difficulty in swallowing. The left recurrent nerve may be stretched or pressed upon as it hooks round the arch of the aorta, and hoarseness of the voice and a characteristic "brassy" cough may result from paralysis of the muscles of the larynx which it supplies. The vagus, the phrenic, and the spinal nerves may also be pressed upon. When the aneurysm is on the transverse part of the arch, the trachea is pulled down with each beat of the heart--a clinical phenomena known as the "tracheal tug." Aneurysm of the descending aorta may, after eroding the bodies of the vertebrae (Fig. 71) and posterior portions of the ribs, form a swelling in the back to the left of the spine. Inasmuch as obliteration of the sac and the feeding artery is out of the question, surgical treatment is confined to causing coagulation of the blood in an extension or pouching of the sac, which, making its way through the parietes of the chest, threatens to rupture externally. This may be achieved by Macewen's needles or by the introduction of wire into the sac. We have had cases under observation in which the treatment referred to has been followed by such an amount of improvement that the patient has been able to resume a laborious occupation for one or more years. Christopher Heath found that improvement followed ligation of the left common carotid in aneurysm of the transverse part of the aortic arch. [Illustration: FIG. 74.--Thoracic Aneurysm, threatening to rupture externally, but prevented from doing so by Macewen's needling. The needles were left in for forty-eight hours.] #Abdominal Aneurysm.#--Aneurysm is much less frequent in the abdominal than in the thoracic aorta. While any of the large branches in the abdomen may be affected, the most common seats are in the aorta itself, just above the origin of the coeliac artery and at the bifurcation. The _clinical features_ vary with the site of the aneurysm and with its rapidity and direction of growth. A smooth, rounded swelling, which exhibits expansile pulsation, forms, usually towards the left of the middle line. It may extend upwards under cover of the ribs, downwards towards the pelvis, or backward towards the loin. On palpation a systolic thrill may be detected, but the presence of a murmur is neither constant nor characteristic. Pain is usually present; it may be neuralgic in character, or may simulate renal colic. When the aneurysm presses on the vertebrae and erodes them, the symptoms simulate those of spinal caries, particularly if, as sometimes happens, symptoms of compression paraplegia ensue. In its growth the swelling may press upon and displace the adjacent viscera, and so interfere with their functions. The _diagnosis_ has to be made from solid or cystic tumours overlying the artery; from a "pulsating aorta"; and from spinal caries; much help is obtained by the use of the X-rays. The condition usually proves fatal, either by the aneurysm bursting into the peritoneal cavity, or by slow leakage into the retro-peritoneal tissue. The Moore-Corradi method has been successfully employed, access to the sac having been obtained by opening the abdomen. Ligation of the aorta has so far been unsuccessful, but in one case operated upon by Keen the patient survived forty-eight days. #Innominate aneurysm# may be of the fusiform or of the sacculated variety, and is frequently associated with pouching of the aorta. It usually grows upwards and laterally, projecting above the sternum and right clavicle, which may be eroded or displaced (Fig. 75). Symptoms of pressure on the structures in the neck, similar to those produced by aortic aneurysm, occur. The pulses in the right upper extremity and in the right carotid and its branches are diminished and delayed. Pressure on the right brachial plexus causes shooting pain down the arm and muscular paresis on that side. Vaso-motor disturbances and contraction of the pupil on the right side may result from pressure on the sympathetic. Death may take place from rupture, or from pressure on the air-passage. [Illustration: FIG. 75.--Innominate Aneurysm in a woman, aet. 47, eight months after treatment by Moore-Corradi method (cf. Fig. 73).] The available methods of treatment are ligation of the right common carotid and third part of the right subclavian (Wardrop's operation), of which a number of successful cases have been recorded. Those most suitable for ligation are cases in which the aneurysm is circumscribed and globular (Sheen). If ligation is found to be impracticable, the Moore-Corradi method or Macewen's needling may be tried. #Carotid Aneurysms.#--Aneurysm of the _common carotid_ is more frequent on the right than on the left side, and is usually situated either at the root of the neck or near the bifurcation. It is the aneurysm most frequently met with in women. From its position the swelling is liable to press on the vagus, recurrent and sympathetic nerves, on the air-passage, and on the oesophagus, giving rise to symptoms referable to such pressure. There may be cerebral symptoms from interference with the blood supply of the brain. Aneurysm near the origin has to be diagnosed from subclavian, innominate, and aortic aneurysm, and from other swellings--solid or fluid--met with in the neck. It is often difficult to determine with precision the trunk from which an aneurysm at the root of the neck originates, and not infrequently more than one vessel shares in the dilatation. A careful consideration of the position in which the swelling first appeared, of the direction in which it has progressed, of its pressure effects, and of the condition of the pulses beyond, may help in distinguishing between aortic, innominate, carotid, and subclavian aneurysms. Skiagraphy is also of assistance in recognising the vessel involved. Tumours of the thyreoid, enlarged lymph glands, and fatty and sarcomatous tumours can usually be distinguished from aneurysm by the history of the swelling and by physical examination. Cystic tumours and abscesses in the neck are sometimes more difficult to differentiate on account of the apparently expansile character of the pulsation transmitted to them. The fact that compression of the vessel does not affect the size and tension of these fluid swellings is useful in distinguishing them from aneurysm. _Treatment._--Digital compression of the vessel against the transverse process of the sixth cervical vertebra--the "carotid tubercle"--has been successfully employed in the treatment of aneurysm near the bifurcation. Proximal ligation in the case of high aneurysms, or distal ligation in those situated at the root of the neck, is more certain. Extirpation of the sac is probably the best method of treatment, especially in those of traumatic origin. These operations are attended with considerable risk of hemiplegia from interference with the blood supply of the brain. The _external carotid_ and the cervical portion of the _internal carotid_ are seldom the primary seat of aneurysm, although they are liable to be implicated by the upward spread of an aneurysm at the bifurcation of the common trunk. In addition to the ordinary signs of aneurysm, the clinical manifestations are chiefly referable to pressure on the pharynx and larynx, and on the hypoglossal nerve. Aneurysm of the internal carotid is of special importance on account of the way in which it bulges into the pharynx in the region of the tonsil, in some cases closely simulating a tonsillar abscess. Cases are on record in which such an aneurysm has been mistaken for an abscess and incised, with disastrous results. _Aneurysmal varix_ may occur in the neck as a result of stabs or bullet wounds. The communication is usually between the common carotid artery and the internal jugular vein. The resulting interference with the cerebral circulation causes headache, giddiness, and other brain symptoms, and a persistent loud murmur is usually a source of annoyance to the patient and may be sufficient indication for operative treatment. #Intracranial aneurysm# involves the internal carotid and its branches, or the basilar artery, and appears to be more frequently associated with syphilis and with valvular disease of the heart than are external aneurysms. It gives rise to symptoms similar to those of other intracranial tumours, and there is sometimes a loud murmur. It usually proves fatal by rupture, and intracranial haemorrhage. The treatment is to ligate the common carotid or the vertebral artery in the neck, according to the seat of the aneurysm. #Orbital Aneurysm.#--The term pulsating exophthalmos is employed to embrace a number of pathological conditions, including aneurysm, in which the chief symptoms are pulsation in the orbit and protrusion of the eyeball. There may be, in addition, congestion and oedema of the eyelids, and a distinct thrill and murmur, which can be controlled by compression of the common carotid in the neck. Varying degrees of ocular paralysis and of interference with vision may also be present. These symptoms are due, in the majority of cases, to an aneurysmal varix of the internal carotid artery and cavernous sinus, which is often traumatic in origin, being produced either by fracture of the base of the skull or by a punctured wound of the orbit. In other cases they are due to aneurysm of the ophthalmic artery, to thrombosis of the cavernous sinus, and, in rare instances, to cirsoid aneurysm. If compression of the common carotid is found to arrest the pulsation, ligation of this vessel is indicated. #Subclavian Aneurysm.#--Subclavian aneurysm is usually met with in men who follow occupations involving constant use of the shoulder--for example, dock-porters and coal-heavers. It is more common on the right side. The aneurysm usually springs from the third part of the artery, and appears as a tense, rounded, pulsatile swelling just above the clavicle and to the outer side of the sterno-mastoid muscle. It occasionally extends towards the thorax, where it may become adherent to the pleura. The radial pulse on the same side is small and delayed. Congestion and oedema of the arm, with pain, numbness, and muscular weakness, may result from pressure on the veins and nerves as they pass under the clavicle; and pressure on the phrenic nerve may induce hiccough. The aneurysm is of slow growth, and occasionally undergoes spontaneous cure. The conditions most likely to be mistaken for it are a soft, rapidly growing sarcoma, and a normal artery raised on a cervical rib. On account of the relations of the artery and of its branches, treatment is attended with greater difficulty and danger in subclavian than in almost any other form of external aneurysm. The available operative measures are proximal ligation of the innominate, and distal ligation. In some cases it has been found necessary to combine distal ligation with amputation at the shoulder-joint, to prevent the collateral circulation maintaining the flow through the aneurysm. Matas' operation has been successfully performed by Hogarth Pringle. #Axillary Aneurysm.#--This is usually met with in the right arm of labouring men and sailors, and not infrequently follows an injury in the region of the shoulder. The vessel may be damaged by the head of a dislocated humerus or in attempts to reduce the dislocation, by the fragments of a fractured bone, or by a stab or cut. Sometimes the vein also is injured and an arterio-venous aneurysm established. Owing to the laxity of the tissues, it increases rapidly, and it may soon attain a large size, filling up the axilla, and displacing the clavicle upwards. This renders compression of the third part of the subclavian difficult or impossible. It may extend beneath the clavicle into the neck, or, extending inwards may form adhesions to the chest wall, and, after eroding the ribs, to the pleura. The usual symptoms of aneurysm are present, and the pressure effects on the veins and nerves are similar to those produced by an aneurysm of the subclavian. Intra-thoracic complications, such as pleurisy or pneumonia, are not infrequent when there are adhesions to the chest wall and pleura. Rupture may take place externally, into the shoulder-joint, or into the pleura. Extirpation of the sac is the operation of choice, but, if this is impracticable, ligation of the third part of the subclavian may be had recourse to. #Brachial aneurysm# usually occurs at the bend of the elbow, is of traumatic origin, and is best treated by excision of the sac. _Aneurysmal varix_, which was frequently met with in this situation in the days of the barber-surgeons,--usually as a result of the artery having been accidentally wounded while performing venesection of the median basilic vein,--may be treated, according to the amount of discomfort it causes, by a supporting bandage, or by ligation of the artery above and below the point of communication. Aneurysms of the vessels of the #forearm and hand# call for no special mention; they are almost invariably traumatic, and are treated by excision of the sac. #Inguinal Aneurysm# (_Aneurysm of the Iliac and Femoral Arteries_).--Aneurysms appearing in the region of Poupart's ligament may have their origin in the external or common iliac arteries or in the upper part of the femoral. On account of the tension of the fascia lata, they tend to spread upwards towards the abdomen, and, to a less extent, downwards into the thigh. Sometimes a constriction occurs across the sac at the level of Poupart's ligament. The pressure exerted on the nerves and veins of the lower extremity causes pain, congestion, and oedema of the limb. Rupture may take place externally, or into the cellular tissue of the iliac fossa. These aneurysms have to be diagnosed from pulsating sarcoma growing from the pelvic bones, and from an abscess or a mass of enlarged lymph glands overlying the artery and transmitting its pulsation. The method of treatment that has met with most success is ligation of the common or external iliac, reached either by reflecting the peritoneum from off the iliac fossa (extra-peritoneal operation), or by going through the peritoneal cavity (trans-peritoneal operation). #Gluteal Aneurysm.#--An aneurysm in the buttock may arise from the superior or from the inferior gluteal artery, but by the time it forms a salient swelling it is seldom possible to recognise by external examination in which vessel it takes origin. The special symptoms to which it gives rise are pain down the limb from pressure on the sciatic nerve, and interference with the movements at the hip. Ligation of the hypogastric (internal iliac) by the trans-peritoneal route is the most satisfactory method of treatment. Extirpation of the sac is difficult and dangerous, especially when the aneurysm has spread into the pelvis. #Femoral Aneurysm.#--Aneurysm of the femoral artery beyond the origin of the profunda branch is usually traumatic in origin, and is more common in Scarpa's triangle than in Hunter's canal. Any of the methods already described is available for their treatment--the choice lying between Matas' operation and ligation of the external iliac. Aneurysm of the _profunda femoris_ is distinguished from that of the main trunk by the fact that the pulses beyond are, in the former, unaffected, and by the normal artery being felt pulsating over or alongside the sac. In _aneurysmal varix_, a not infrequent result of a bullet wound or a stab, the communication with the vein may involve the main trunk of the femoral artery. Should operative interference become necessary as a result of progressive increase in size of the tumour, or progressive distension of the veins of the limb, an attempt should be made to separate the vessels concerned and to close the opening in each by suture. If this is impracticable, the artery is tied above and below the communication; gangrene of the limb may supervene, and we have observed a case in which the gangrene extended up to the junction of the middle and lower thirds of the thigh, and in which recovery followed upon amputation of the thigh. #Popliteal Aneurysm.#--This is the most common surgical aneurysm, and is not infrequently met with in both limbs. It is generally due to disease of the artery, and repeated slight strains, which are so liable to occur at the knee, play an important part in its formation. In former times it was common in post-boys, from the repeated flexion and extension of the knee in riding. The aneurysm is usually of the sacculated variety, and may spring from the front or from the back of the vessel. It may exert pressure on the bones and ligaments of the joint, and it has been known to rupture into the articulation. The pain, stiffness, and effusion into the joint which accompany these changes often lead to an erroneous diagnosis of joint disease. The sac may press upon the popliteal artery or vein and their branches, causing congestion and oedema of the leg, and lead to gangrene. Pressure on the tibial and common peroneal nerves gives rise to severe pain, muscular cramp, and weakness of the leg. The differential diagnosis is to be made from abscess, bursal cyst, enlarged glands, and sarcoma, especially pulsating sarcoma of one of the bones entering into the knee joint. The choice of operation lies between ligation of the femoral artery in Hunter's canal, and Matas' operation of aneurysmo-arteriorrhaphy. The success which attends the Hunterian operation is evidenced by the fact that Syme performed it thirty-seven times without a single failure. If it fails, the old operation should be considered, but it is a more serious operation, and one which is more liable to be followed by gangrene of the limb. Experience shows that ligation of the vein, or even the removal of a portion of it, is not necessarily followed by gangrene. The risk of gangrene is diminished by a course of digital compression of the femoral artery, before operating on the aneurysm. _Aneurysmal varix_ is sometimes met with in the region of the popliteal space. It is characterised by the usual symptoms, and is treated by palliative measures, or by ligation of the artery above and below the point of communication. _Aneurysm_ in the #leg and foot# is rare. It is almost always traumatic, and is treated by excision of the sac. CHAPTER XV THE LYMPH VESSELS AND GLANDS Anatomy and Physiology--INJURIES OF LYMPH VESSELS--_Wounds of thoracic duct_--DISEASES OF LYMPH VESSELS--Lymphangitis: _Varieties_--Lymphangiectasis--Filarial disease--Lymphangioma--DISEASES OF LYMPH GLANDS--Lymphadenitis: _Septic_; _Tuberculous_; _Syphilitic_--Lymphadenoma--Leucocythaemia--TUMOURS. #Surgical Anatomy and Physiology.#--Lymph is essentially blood plasma, which has passed through the walls of capillaries. After bathing and nourishing the tissues, it is collected by lymph vessels, which return it to the blood stream by way of the thoracic duct. These lymph vessels take origin in the lymph spaces of the tissues and in the walls of serous cavities, and they usually run alongside blood vessels--_perivascular lymph vessels_. They have a structure similar to that of veins, but are more abundantly provided with valves. Along the course of the lymph trunks are the _lymph glands_, which possess a definite capsule and are composed of a reticulated connective tissue, the spaces of which are packed with leucocytes. The glands act as filters, arresting not only inert substances, such as blood pigment circulating in the lymph, but also living elements, such as cancer cells or bacteria. As it passes through a gland the lymph is brought into intimate contact with the leucocytes, and in bacterial infections there is always a struggle between the organisms and the leucocytes, so that the glands may be looked upon as an important line of defence, retarding or preventing the passage of bacteria and their products into the general circulation. The infective agent, moreover, in order to reach the blood stream, must usually overcome the resistance of several glands. Lymph glands are, for the most part, arranged in groups or chains, such as those in the axilla, neck, and groin. In any given situation they vary in number and size in different individuals, and fresh glands may be formed on comparatively slight stimulus, and disappear when the stimulus is withdrawn. The best-known example of this is the increase in the number of glands in the axilla which takes place during lactation; when this function ceases, many of the glands become involuted and are transformed into fat, and in the event of a subsequent lactation they are again developed. After glands have been removed by operation, new ones may be formed. The following are the more important groups of glands, and the areas drained by them in the head and neck and in the extremities. #Head and Neck.#--_The anterior auricular (parotid and pre-auricular) glands_ lie beneath the parotid fascia in front of the ear, and some are partly embedded in the substance of the parotid gland; they drain the parts about the temple, cheek, eyelids, and auricle, and are frequently the seat of tuberculous disease. _The occipital gland_, situated over the origin of the trapezius from the superior curved line, drains the top and back of the head; it is rarely infected. _The posterior auricular (mastoid) glands_ lie over the mastoid process, and drain the side of the head and auricle. These three groups pour their lymph into the superficial cervical glands. _The submaxillary_--two to six in number--lie along the lower order of the mandible from the symphysis to the angle, the posterior ones (paramandibular) being closely connected with the submaxillary salivary gland. They receive lymph from the face, lips, floor of the mouth, gums, teeth, anterior part of tongue, and the alae nasi, and from the pre-auricular glands. The lymph passes from them into the deeper cervical glands. They are frequently infected with tubercle, with epithelioma which has spread to them from the mouth, and also with pyogenic organisms. _The submental glands_ lie in or close to the median line between the anterior bellies of the digastric muscles, and receive lymph from the lips. It is rare for them to be the seat of tubercle, but in epithelioma of the lower lip and floor of the mouth they are infected at an early stage of the disease. _The supra-hyoid gland_ lies a little farther back, immediately above the hyoid bone, and receives lymph from the tongue. _The superficial cervical (external jugular) glands_, when present, lie along the external jugular vein, and receives lymph from the occipital and auricular glands and from the auricle. _The sterno-mastoid glands_--glandulae concatinatae--form a chain along the posterior edge of the sterno-mastoid muscle, some of them lying beneath the muscle. They are commonly enlarged in secondary syphilis. _The superior deep cervical (internal jugular) glands_--from six to twenty in number--form a continuous chain along the internal jugular vein, beneath the sterno-mastoid muscle. They drain the various groups of glands which lie nearer the surface, also the interior of the skull, the larynx, trachea, thyreoid, and lower part of the pharynx, and pour their lymph into the main trunks at the root of the neck. Belonging to this group is one large gland (the tonsillar gland) which lies behind the posterior belly of the digastric, and rests in the angle between the internal jugular and common facial veins. It is commonly enlarged in affections of the tonsil and posterior part of the tongue. In the same group are three or four glands which lie entirely under cover of the upper end of the sterno-mastoid muscle, and surround the accessory nerve before it perforates the muscle. The deep cervical glands are commonly infected by tubercle and also by epithelioma secondary to disease in the tongue or throat. _The inferior deep cervical (supra-clavicular) glands_ lie in the posterior triangle, above the clavicle. They receive lymph from the lowest cervical glands, from the upper part of the chest wall, and from the highest axillary glands. They are frequently infected in cancer of the breast; those on the left side also in cancer of the stomach. The removal of diseased supra-clavicular glands is not to be lightly undertaken, as difficulties are liable to ensue in connection with the thoracic duct, the pleura, or the junction of the subclavian and internal jugular veins. _The retro-pharyngeal glands_ lie on each side of the median line upon the rectus capitis anticus major muscle and in front of the pre-vertebral layer of the cervical fascia. They receive part of the lymph from the posterior wall of the pharynx, the interior of the nose and its accessory cavities, the auditory (Eustachian) tube, and the tympanum. When they are infected with pyogenic organisms or with tubercle bacilli, they may lead to the formation of one form of retro-pharyngeal abscess. #Upper Extremity.#--_The epi-trochlear and cubital glands_ vary in number, that most commonly present lying about an inch and a half above the medial epi-condyle, and other and smaller glands may lie along the medial (internal) bicipital groove or at the bend of the elbow. They drain the ulnar side of the hand and forearm, and pour their lymph into the axillary group. The epi-trochlear gland is sometimes enlarged in syphilis. _The axillary glands_ are arranged in groups: a central group lies embedded in the axillary fascia and fat, and is often related to an opening in it; a posterior or subscapular group lies along the line of the subscapular vessels; anterior or pectoral groups lie behind the pectoralis minor, along the medial side of the axillary vein, and an inter-pectoral group, between the two pectoral muscles. The axillary glands receive lymph from the arm, mamma, and side of the chest, and pass it on into the lowest cervical glands and the main lymph trunk. They are frequently the seat of pyogenic, tuberculous, and cancerous infection, and their complete removal is an essential part of the operation for cancer of the breast. #Lower Extremity.#--_The popliteal glands_ include one superficial gland at the termination of the small saphenous vein, and several deeper ones in relation to the popliteal vessels. They receive lymph from the toes and foot, and transmit it to the inguinal glands. _The femoral glands_ lie vertically along the upper part of the great saphenous vein, and receive lymph from the leg and foot; from them the lymph passes to the deep inguinal and external iliac glands. The femoral glands often participate in pyogenic infections entering through the skin of the toes and sole of the foot. _The superficial inguinal glands_ lie along the inguinal (Poupart's) ligament, and receive lymph from the external genitals, anus, perineum, buttock, and anterior abdominal wall. The lymph passes on to the deep inguinal and external iliac glands. The superficial glands through their relations to the genitals are frequently the subject of venereal infection, and also of epithelioma when this disease affects the genitals or anus; they are rarely the seat of tuberculosis. _The deep inguinal glands_ lie on the medial side of the femoral vein, and sometimes within the femoral canal. They receive lymph from the deep lymphatics of the lower limb, and some of the efferent vessels from the femoral and superficial inguinal glands. The lymph then passes on through the femoral canal to the external iliac glands. The extension of malignant disease, whether cancer or sarcoma, can often be traced along these deeper lymphatics into the pelvis, and as the obstruction to the flow of lymph increases there is a corresponding increase in the swollen dropsical condition of the lower limb on the same side. The glands of the _thorax_ and _abdomen_ will be considered with the surgery of these regions. INJURIES OF LYMPH VESSELS Lymph vessels are divided in all wounds, and the lymph that escapes from them is added to any discharge that may be present. In injuries of larger trunks the lymph may escape in considerable quantity as a colourless, watery fluid--_lymphorrhagia_; and the opening through which it escapes is known as a _lymphatic fistula_. This has been observed chiefly after extensive operation for the removal of malignant glands in the groin where there already exists a considerable degree of obstruction to the lymph stream, and in such cases the lymph, including that which has accumulated in the vessels of the limb, may escape in such abundance as to soak through large dressings and delay healing. Ultimately new lymph channels are formed, so that at the end of from four to six weeks the discharge of lymph ceases and the wound heals. _Lymphatic Oedema._--When the lymphatic return from a limb has been seriously interfered with,--as, for example, when the axillary contents has been completely cleared out in operating for cancer of the breast,--a condition of lymphatic oedema may result, the arm becoming swollen, tight, and heavy. Various degrees of the conditions are met with; in the severe forms, there is pain, as well as incapacity of the limb. As in ordinary oedema, the condition is relieved by elevation of the limb, but not nearly to the same degree; in time the tissues become so hard and tense as scarcely to pit on pressure; this is in part due to the formation of new connective tissue and hypertrophy of the skin; in advanced cases there is a gradual transition into one form of elephantiasis. Handley has devised a method of treatment--_lymphangioplasty_--the object of which is to drain the lymph by embedding a number of silk threads in the subcutaneous cellular tissue. #Wounds of the Thoracic Duct.#--The thoracic duct usually opens at the angle formed by the junction of the left internal jugular and subclavian veins, but it may open into either of these vessels by one or by several channels, or the duct may be double throughout its course. There is a smaller duct on the right side--the right lymphatic duct. The duct or ducts may be displaced by a tumour or a mass of enlarged glands, and may be accidentally wounded in dissections at the root of the neck; jets of milky fluid--chyle--may at once escape from it. The jets are rhythmical and coincide with expiration. The injury may, however, not be observed at the time of operation, but later through the dressings being soaked with chyle--_chylorrhoea_. If the wound involves the only existing main duct and all the chyle escapes, the patient suffers from intense thirst, emaciation, and weakness, and may die of inanition; but if, as is usually the case, only one of several collateral channels is implicated, the loss of chyle may be of little moment, as the discharge usually ceases. If the wound heals so that the chyle is prevented from escaping, a fluctuating swelling may form beneath the scar; in course of time it gradually disappears. An attempt should be made to close the wound in the duct by means of a fine suture; failing this, the duct must be occluded by a ligature as if it were a bleeding artery. The tissues are then stitched over it and the skin wound accurately closed, so as to obtain primary union, firm pressure being applied by dressings and an elastic webbing bandage. Even if the main duct is obliterated, a collateral circulation is usually established. A wound of the right lymphatic duct is of less importance. _Subcutaneous rupture of the thoracic duct_ may result from a crush of the thorax. The chyle escapes and accumulates in the cellular tissue of the posterior mediastinum, behind the peritoneum, in the pleural cavity (_chylo-thorax_), or in the peritoneal cavity (_chylous ascites_). There are physical signs of fluid in one or other of these situations, but, as a rule, the nature of the lesion is only recognised when chyle is withdrawn by the exploring needle. DISEASES OF LYMPH VESSELS #Lymphangitis.#--Inflammation of peripheral lymph vessels usually results from some primary source of pyogenic infection in the skin. This may be a wound or a purulent blister, and the streptococcus pyogenes is the organism most frequently present. _Septic_ lymphangitis is commonly met with in those who, from the nature of their occupation, handle infective material. A _gonococcal_ form has been observed in those suffering from gonorrhoea. The inflammation affects chiefly the walls of the vessels, and is attended with clotting of the lymph. There is also some degree of inflammation of the surrounding cellular tissue--_peri-lymphangitis_. One or more abscesses may form along the course of the vessels, or a spreading cellulitis may supervene. The _clinical features_ resemble those of other pyogenic infections, and there are wavy red lines running from the source of infection towards the nearest lymph glands. These correspond to the inflamed vessels, and are the seat of burning pain and tenderness. The associated glands are enlarged and painful. In severe cases the symptoms merge into those of septicaemia. When the deep lymph vessels alone are involved, the superficial red lines are absent, but the limb becomes greatly swollen and pits on pressure. In cases of extensive lymphangitis, especially when there are repeated attacks, the vessels are obliterated by the formation of new connective tissue and a persistent solid oedema results, culminating in one form of elephantiasis. _Treatment._--The primary source of infection is dealt with on the usual lines. If the lymphangitis affects an extremity, Bier's elastic bandage is applied, and if suppuration occurs, the pus is let out through one or more small incisions; in other parts of the body Klapp's suction bells are employed. An autogenous vaccine may be prepared and injected. When the condition has subsided, the limb is massaged and evenly bandaged to promote the disappearance of oedema. _Tuberculous Lymphangitis._--Although lymph vessels play an important role in the spread of tuberculosis, the clinical recognition of the disease in them is exceptional. The infection spreads upwards along the superficial lymphatics, which become nodularly thickened; at one or more points, larger, peri-lymphangitic nodules may form and break down into abscesses and ulcers; the nearest group of glands become infected at an early stage. When the disease is widely distributed throughout the lymphatics of the limb, it becomes swollen and hard--a condition illustrated by lupus elephantiasis. _Syphilitic lymphangitis_ is observed in cases of primary syphilis, in which the vessels of the dorsum of the penis can be felt as indurated cords. In addition to acting as channels for the conveyance of bacterial infection, _lymph vessels frequently convey the cells of malignant tumours_, and especially cancer, from the seat of the primary disease to the nearest lymph glands, and they may themselves become the seat of cancerous growth forming nodular cords. The permeation of cancer by way of the lymphatics, described by Sampson Handley, has already been referred to. #Lymphangiectasis# is a dilated or varicose condition of lymph vessels. It is met with as a congenital affection in the tongue and lips, or it may be acquired as the result of any condition which is attended with extensive obliteration or blocking of the main lymph trunks. An interesting type of lymphangiectasis is that which results from the presence of the _filaria Bancrofti_ in the vessels, and is observed chiefly in the groin, spermatic cord, and scrotum of persons who have lived in the tropics. _Filarial disease in the lymphatics of the groin_ appears as a soft, doughy swelling, varying in size from a walnut to a cocoa-nut; it may partly disappear on pressure and when the patient lies down. The patient gives a history of feverish attacks of the nature of lymphangitis during which the swelling becomes painful and tender. These attacks may show a remarkable periodicity, and each may be followed by an increase in the size of the swelling, which may extend along the inguinal canal into the abdomen, or down the spermatic cord into the scrotum. On dissection, the swelling is found to be made up of dilated, tortuous, and thickened lymph vessels in which the parent worm is sometimes found, and of greatly enlarged lymph glands which have undergone fibrosis, with giant-cell formation and eosinophile aggregations. The fluid in the dilated vessels is either clear or turbid, in the latter case resembling chyle. The affection is frequently bilateral, and may be associated with lymph scrotum, with elephantiasis, and with chyluria. The _diagnosis_ is to be made from such other swellings in the groin as hernia, lipoma, or cystic pouching of the great saphenous vein. It is confirmed by finding the recently dead or dying worms in the inflamed lymph glands. _Treatment._--When the disease is limited to the groin or scrotum, excision may bring about a permanent cure, but it may result in the formation of lymphatic sinuses and only afford temporary relief. #Lymphangioma.#--A lymphangioma is a swelling composed of a series of cavities and channels filled with lymph and freely communicating with one another. The cavities result either from the new formation of lymph spaces or vessels, or from the dilatation of those which already exist; their walls are composed of fibro-areolar tissue lined by endothelium and strengthened by non-striped muscle. They are rarely provided with a definite capsule, and frequently send prolongations of their substance between and into muscles and other structures in their vicinity. They are of congenital origin and usually make their appearance at or shortly after birth. When the tumour is made up of a meshwork of caverns and channels, it is called a _cavernous lymphangioma_; when it is composed of one or more cysts, it is called a _cystic lymphangioma_. It is probable that the cysts are derived from the caverns by breaking down and absorption of the intervening septa, as transition forms between the cavernous and cystic varieties are sometimes met with. The _cavernous lymphangioma_ appears as an ill-defined, soft swelling, presenting many of the characters of a subcutaneous haemangioma, but it is not capable of being emptied by pressure, it does not become tense when the blood pressure is raised, as in crying, and if the tumour is punctured, it yields lymph instead of blood. It also resembles a lipoma, especially the congenital variety which grows from the periosteum, and the differential diagnosis between these is rarely completed until the swelling is punctured or explored by operation. If treatment is called for, it is carried out on the same lines as for haemangioma, by means of electrolysis, igni-puncture, or excision. Complete excision is rarely possible because of the want of definition and encapsulation, but it is not necessary for cure, as the parts that remain undergo cicatrisation. [Illustration: FIG. 76.--Congenital Cystic Tumour or Hygroma of Axilla. (From a photograph lent by Dr. Lediard.)] The _cystic lymphangioma_, _lymphatic cyst_, or _congenital cystic hygroma_ is most often met with in the neck--_hydrocele of the neck_; it is situated beneath the deep fascia, and projects either in front of or behind the sterno-mastoid muscle. It may attain a large size, the overlying skin and cyst wall may be so thin as to be translucent, and it has been known to cause serious impairment of respiration through pressing on the trachea. In the axilla also the cystic tumour may attain a considerable size (Fig. 76); less frequent situations are the groin, and the floor of the mouth, where it constitutes one form of ranula. The nature of these swellings is to be recognised by their situation, by their having existed from infancy, and, if necessary, by drawing off some of the contents of the cyst through a fine needle. They are usually remarkably indolent, persisting often for a long term of years without change, and, like the haemangioma, they sometimes undergo spontaneous cicatrisation and cure. Sometimes the cystic tumour becomes infected and forms an abscess--another, although less desirable, method of cure. Those situated in the neck are most liable to suppurate, probably because of pyogenic organisms being brought to them by the lymphatics taking origin in the scalp, ear, or throat. If operative interference is called for, the cysts may be tapped and injected with iodine, or excised; the operation for removal may entail a considerable dissection amongst the deeper structures at the root of the neck, and should not be lightly undertaken; parts left behind may be induced to cicatrise by inserting a tube of radium and leaving it for a few days. Lymphangiomas are met with in the abdomen in the form of _omental cysts_. DISEASES OF LYMPH GLANDS #Lymphadenitis.#--Inflammation of lymph glands results from the advent of an irritant, usually bacterial or toxic, brought to the glands by the afferent lymph vessels. These vessels may share in the inflammation and be the seat of lymphangitis, or they may show no evidence of the passage of the noxa. It is exceptional for the irritant to reach the gland through the blood-stream. A strain or other form of trauma is sometimes blamed for the onset of lymphadenitis, especially in the glands of the groin (bubo), but it is usually possible to discover some source of pyogenic infection which is responsible for the mischief, or to obtain a history of some antecedent infection such as gonorrhoea. It is possible for gonococci to lie latent in the inguinal glands for long periods, and only give rise to lymphadenitis if the glands be subsequently subjected to injury. The glands most frequently affected are those in the neck, axilla, and groin. The characters of the lymphadenitis vary with the nature of the irritant. Sometimes it is mild and evanescent, as in the glandular enlargement in the neck which attends tonsillitis and other forms of sore throat. Sometimes it is more persistent, as in the enlargement that is associated with adenoids, hypertrophied tonsils, carious teeth, eczema of the scalp, and otorrhoea; and it is possible that this indolent enlargement predisposes to tuberculous infection. A similar enlargement is met with in the axilla in cases of chronic interstitial mastitis, and in the groin as a result of chronic irritation about the external genitals, such as balanitis. Sometimes the lymphadenitis is of an acute character, and the tendency is towards the formation of an abscess. This is illustrated in the axillary glands as a result of infected wounds of the fingers; in the femoral glands in infected wounds or purulent blisters on the foot; in the inguinal glands in gonorrhoea and soft sore; and in the cervical glands in the severer forms of sore throat associated with diphtheria and scarlet fever. The most acute suppurations result from infection with streptococci. Superficial glands, when inflamed and suppurating, become enlarged, tender, fixed, and matted to one another. In the glands of the groin the suppurative process is often remarkably sluggish; purulent foci form in the interior of individual glands, and some time may elapse before the pus erupts through their respective capsules. In the deeply placed cervical glands, especially in cases of streptococcal throat infections, the suppuration rapidly involves the surrounding cellular tissue, and the clinical features are those of an acute cellulitis and deeply seated abscess. When this is incised the necrosed glands may be found lying in the pus, and on bacteriological examination are found to be swarming with streptococci. In suppuration of the axillary glands the abscess may be quite superficial, or it may be deeply placed beneath the strong fascia and pectoral muscles, according to the group of glands involved. The _diagnosis_ of septic lymphadenitis is usually easy. The indolent enlargements are not always to be distinguished, however, from commencing tuberculous disease, except by the use of the tuberculin test, and by the fact that they usually disappear on removing the peripheral source of irritation. _Treatment._--The first indication is to discover and deal with the source of infection, and in the indolent forms of lymphadenitis this will usually be followed by recovery. In the acute forms following on pyogenic infection, the best results are obtained from the hyperaemic treatment carried out by means of suction bells. If suppuration is not thereby prevented, or if it has already taken place, each separate collection of pus is punctured with a narrow-bladed knife and the use of the suction bell is persevered with. If there is a large periglandular abscess, as is often the case, in the neck and axilla, the opening may require to be made by Hilton's method, and it may be necessary to insert a drainage-tube. [Illustration: FIG. 77.--Tuberculous Cervical Gland with abscess formation in subcutaneous cellular tissue, in a boy aet. 10.] #Tuberculous Disease of Glands.#--This is a disease of great frequency and importance. The tubercle bacilli usually gain access to the gland through the afferent lymph vessels, which convey them from some lesion of the surface within the area drained by them. Tuberculous infection may supervene in glands that are already enlarged as a result of chronic septic irritation. While any of the glands in the body may be affected, the disease is most often met with in the cervical groups which derive their lymph from the mouth, nose, throat, and ear. _The appearance of the glands on section_ varies with the stage of the disease. In the early stages the gland is enlarged, it may be to many times its natural size, is normal in appearance and consistence, and as there is no peri-adenitis it is easily shelled out from its surroundings. On microscopical examination, however, there is evidence of infection in the shape of bacilli and of characteristic giant and epithelioid cells. At a later stage, the gland tissue is studded with minute yellow foci which tend to enlarge and in time to become confluent, so that the whole gland is ultimately converted into a caseous mass. This caseous material is surrounded by the thickened capsule which, as a result of peri-adenitis, tends to become adherent to and fused with surrounding structures, and particularly with layers of fascia and with the walls of veins. The caseated tissue often remains unchanged for long periods; it may become calcified, but more frequently it breaks down and liquefies. #Tuberculous disease in the cervical glands# is a common accompaniment or sequel of adenoids, enlarged tonsils, carious teeth, pharyngitis, middle-ear disease, and conjunctivitis. These lesions afford the bacilli a chance of entry into the lymph vessels, in which they are carried to the glands, where they give rise to disease. The enlargement may affect only one gland, usually below the angle of the mandible, and remain confined to it, the gland reaching the size of a hazel-nut, and being ovoid, firm, and painless. More commonly the disease affects several glands, on one or on both sides of the neck. When the disease commences in the pre-auricular or submaxillary glands, it tends to spread to those along the carotid sheath: when the posterior auricular and occipital glands are first involved, the spread is to those along the posterior border of the sterno-mastoid. In many cases all the chains in front of, beneath, and behind this muscle are involved, the enlarged glands extending from the mastoid to the clavicle. They are at first discrete and movable, and may even vary in size from time to time; but with the addition of peri-adenitis they become fixed and matted together, forming lobulated or nodular masses (Fig. 78). They become adherent not only to one another, but also to the structures in their vicinity,--and notably to the internal jugular vein,--a point of importance in regard to their removal by operation. At any stage the disease may be arrested and the glands remain for long periods without further change. It is possible that the tuberculous tissue may undergo cicatrisation. More commonly suppuration ensues, and a cold abscess forms, but if there is a mixed infection, the pyogenic factor being usually derived from the throat, it may take on active features. [Illustration: FIG. 78.--Mass of Tuberculous Glands removed from Axilla (cf. Fig. 79).] The transition from the solid to the liquefied stage is attended with pain and tenderness in the gland, which at the same time becomes fixed and globular, and finally fluctuation can be elicited. If left to itself, the softened tubercle erupts through the capsule of the gland and infects the cellular tissue. The cervical fascia is perforated and a cold abscess, often much larger than the gland from which it took origin, forms between the fascia and the overlying skin. The further stages--reddening, undermining of skin and external rupture, with the formation of ulcers and sinuses--have been described with tuberculous abscess. The ulcers and sinuses persist indefinitely, or they heal and then break out again; sometimes the skin becomes infected, and a condition like lupus spreads over a considerable area. Spontaneous healing finally takes place after the caseous tubercle has been extruded; the resulting scars are extremely unsightly, being puckered or bridled, or hypertrophied like keloid. While the disease is most common in childhood and youth, it may be met with even in advanced life; and although often associated with impaired health and unhealthy surroundings, it may affect those who are apparently robust and are in affluent circumstances. _Diagnosis._--The chief importance lies in differentiating tuberculous disease from lympho-sarcoma and from lymphadenoma, and this is usually possible from the history and from the nature of the enlargement. Signs of liquefaction and suppuration support the diagnosis of tubercle. If any doubt remains, one of the glands should be removed and submitted to microscopical examination. Other forms of sarcoma, and the enlargement of an accessory thyreoid, are less likely to be confused with tuberculous glands. Calcified tuberculous glands give definite shadows with the X-rays. Enlargement of the cervical glands from secondary cancer may simulate tuberculosis, but is differentiated by its association with cancer in the mouth or throat, and by the characteristic, stone-like induration of epithelioma. The cold abscess which results from tuberculous glands is to be distinguished from that due to disease in the cervical spine, retro-pharyngeal abscess, as well as from congenital and other cystic swellings in the neck. _Prognosis._--Next to lupus, glandular disease is of all tuberculous lesions the least dangerous to life; but while it is the rule to recover from tuberculous disease of glands with or without an operation, it is unfortunately quite common for such persons to become the subjects of tuberculosis in other parts of the body at any subsequent period of life. _Treatment._--There is considerable difference of opinion regarding the treatment of glandular tuberculosis. Some authorities, impressed with the undoubted possibility of natural cure, are satisfied with promoting this by measures directed towards improving the general health, by the prolonged administration of tuberculin, and by repeated exposures to the X-rays and to sunlight. Others again, influenced by the risk of extension of the disease and by the destruction of tissue and disfigurement caused by breaking down of the tuberculous tissue and mixed infection, advocate the removal of the glands by operation. The conditions vary widely in different cases, and the treatment should be adapted to the individual requirements. If the disease remains confined to the glands originally infected and there are no signs of breaking down, "expectant measures" may be persevered with. [Illustration: FIG. 79.--Tuberculous Axillary Glands (cf. Fig. 78).] If, on the other hand, the disease exhibits aggressive tendencies, the question of operation should be considered. The undesirable results of the breaking down and liquefaction of the diseased gland may be avoided by the timely withdrawal of the fluid contents through a hollow needle. _The excision of tuberculous glands_ is often a difficult operation, because of the number and deep situation of the glands to be removed, and of the adhesions to surrounding structures. The skin incision must be sufficiently extensive to give access to the whole of the affected area, and to avoid disfigurement should, whenever possible, be made in the line of the natural creases of the skin. In exposing the glands the common facial and other venous trunks may require to be clamped and tied. Care must be taken not to injure the important nerves, particularly the accessory, the vagus, and the phrenic. The inframaxillary branches of the facial, the hypoglossal and its descending branches, and the motor branches of the deep cervical plexus, are also liable to be injured. The dissection is rendered easier and is attended with less risk of injury to the nerves, if the patient is placed in the sitting posture so as to empty the veins, and, instead of a knife, the conical scissors of Mayo are employed. When the glands are extensively affected on both sides of the neck, it is advisable to allow an interval to elapse rather than to operate on both sides at one sitting. (_Op. Surg._, p. 189.) If the tonsils are enlarged they should not be removed at the same time, as, by so doing, there is a risk of pyogenic infection from the throat being carried to the wound in the neck, but they should be removed, after an interval, to prevent relapse of disease in the glands. _When the skin is broken_ and caseous tuberculous tissue is exposed, healing is promoted by cutting away diseased skin, removing the granulation tissue with the spoon, scraping sinuses, and packing the cavity with iodoform worsted and treating it by the open method and secondary suture if necessary. Exposure to the sunshine on the seashore and to the X-rays is often beneficial in these cases. #Tuberculous disease in the axillary glands# may be a result of extension from those in the neck, from the mamma, ribs, or sternum, or more rarely from the upper extremity. We have seen it from an infected wound of a finger. In some cases no source of infection is discoverable. The individual glands attain a considerable size, and they fuse together to form a large tumour which fills up the axillary space. The disease progresses more rapidly than it does in the cervical glands, and almost always goes on to suppuration with the formation of sinuses. Conservative measures need not be considered, as the only satisfactory treatment is excision, and that without delay. #Tuberculous disease in the glands of the groin# is comparatively rare. We have chiefly observed it in the femoral glands as a result of inoculation tubercle on the toes or sole of the foot. The affected glands nearly always break down and suppurate, and after destroying the overlying skin give rise to fungating ulcers. The treatment consists in excising the glands and the affected skin. The dissection may be attended with troublesome haemorrhage from the numerous veins that converge towards the femoral trunk. Tuberculous disease in the _mesenteric_ and _bronchial glands_ is described with the surgery of regions. #Syphilitic Disease of Glands.#--Enlargement of lymph glands is a prominent feature of acquired syphilis, especially in the form of the indolent or bullet-bubo which accompanies the primary lesion, and the general enlargement of glands that occurs in secondary syphilis. Gummatous disease in glands is extremely rare; the affected gland rapidly enlarges to the size of a walnut, and may then persist for a long period without further change; if it breaks down, the overlying skin is destroyed and the caseated tissue of the gumma exposed. #Lymphadenoma.#--_Hodgkin's Disease_ (Pseudo-leukaemia of German authors).--This is a rare disease, the origin of which is as yet unknown, but analogy would suggest that it is due to infection with a slowly growing micro-organism. It is chiefly met with in young subjects, and is characterised by a painless enlargement of a particular group of glands, most commonly those in the cervical region (Fig. 80). [Illustration: FIG. 80.--Chronic Hodgkin's Disease in a boy aet. 11.] The glands are usually larger than in tuberculosis, and they remain longer discrete and movable; they are firm in consistence, and on section present a granular appearance due to overgrowth of the connective-tissue framework. In time the glandular masses may form enormous projecting tumours, the swelling being added to by lymphatic oedema of the overlying cellular tissue and skin. The enlargement spreads along the chain of glands to those above the clavicle, to those in the axilla, and to those of the opposite side (Fig. 81). Later, the glands in the groin become enlarged, and it is probable that the infection has spread from the neck along the mediastinal, bronchial, retro-peritoneal, and mesenteric glands, and has branched off to the iliac and inguinal groups. Two clinical types are recognised, one in which the disease progresses slowly and remains confined to the cervical glands for two or more years; the other, in which the disease is more rapidly disseminated and causes death in from twelve to eighteen months. [Illustration: FIG. 81.--Lymphadenoma (Hodgkin's Disease) affecting left side of neck and left axilla, in a woman aet. 44. Three years' duration.] In the acute form, the health suffers, there is fever, and the glands may vary in size with variations in the temperature; the blood presents the characters met with in secondary anaemia. The spleen, liver, testes, and mammae may be enlarged; the glandular swellings press on important structures, such as the trachea, oesophagus, or great veins, and symptoms referable to such pressure manifest themselves. _Diagnosis._--Considerable difficulty attends the diagnosis of lymphadenoma at an early stage. The negative results of tuberculin tests may assist in the differentiation from tuberculous disease, but the more certain means of excising one of the suspected glands and submitting it to microscopical examination should be had recourse to. The sections show proliferation of endothelial cells, the formation of numerous giant cells quite unlike those of tuberculosis and a progressive fibrosis. Lympho-sarcoma can usually be differentiated by the rapid assumption of the local features of malignant disease, and in a gland removed for examination, a predominance of small round cells with scanty protoplasm. The enlargement associated with leucocythaemia is differentiated by the characteristic changes in the blood. _Treatment._--In the acute form of lymphadenoma, treatment is of little avail. Arsenic may be given in full doses either by the mouth or by subcutaneous injection; the intravenous administration of neo-salvarsan may be tried. Exposure to the X-rays and to radium has been more successful than any other form of treatment. Excision of glands, although sometimes beneficial, seldom arrests the progress of the disease. The ease and rapidity with which large masses of glands may be shelled out is in remarkable contrast to what is observed in tuberculous disease. Surgical interference may give relief when important structures are being pressed upon--tracheotomy, for example, may be required where life is threatened by asphyxia. #Leucocythaemia.#--This is a disease of the blood and of the blood-forming organs, in which there is a great increase in the number, and an alteration of the character, of the leucocytes present in the blood. It may simulate lymphadenoma, because, in certain forms of the disease, the lymph glands, especially those in the neck, axilla, and groin, are greatly enlarged. TUMOURS OF LYMPH GLANDS #Primary Tumours.#--_Lympho-sarcoma_, which may be regarded as a sarcoma starting in a lymph gland, appears in the neck, axilla, or groin as a rapidly growing tumour consisting of one enlarged gland with numerous satellites. As the tumour increases in size, the sarcomatous tissue erupts through the capsule of the gland, and infiltrates the surrounding tissues, whereby it becomes fixed to these and to the skin. [Illustration: FIG. 82.--Lympho-Sarcoma removed from Groin. It will be observed that there is one large central parent tumour surrounded by satellites.] The prognosis is grave in the extreme, and the only hope is in early excision, followed by the use of radium and X-rays. We have observed a case of lympho-sarcoma above the clavicle, in which excision of all that was removable, followed by the insertion of a tube of radium for ten days, was followed by a disappearance of the disease over a period which extended to nearly five years, when death resulted from a tumour in the mediastinum. In a second case in which the growth was in the groin, the patient, a young man, remained well for over two years and was then lost sight of. #Secondary Tumours.#--Next to tuberculosis, _secondary cancer_ is the most common disease of lymph glands. In the neck it is met with in association with epithelioma of the lip, tongue, or fauces. The glands form tumours of variable size, and are often larger than the primary growth, the characters of which they reproduce. The glands are at first movable, but soon become fixed both to each other and to their surroundings; when fixed to the mandible they form a swelling of bone-like hardness; in time they soften, liquefy, and burst through the skin, forming foul, fungating ulcers. A similar condition is met with in the groin from epithelioma of the penis, scrotum, or vulva. In cancer of the breast, the infection of the axillary glands is an important complication. In _pigmented_ or _melanotic cancers_ of the skin, the glands are early infected and increase rapidly, so that, when the primary growth is still of small size--as, for example, on the sole of the foot--the femoral glands may already constitute large pigmented tumours. [Illustration: FIG. 83.--Cancerous Glands in Neck secondary to Epithelioma of Lip. (Mr. G. L. Chiene's case.)] The implication of the glands in other forms of cancer will be considered with regional surgery. _Secondary sarcoma_ is seldom met with in the lymph glands except when the primary growth is a lympho-sarcoma and is situated in the tonsil, thyreoid, or testicle. CHAPTER XVI THE NERVES Anatomy--INJURIES OF NERVES: Changes in nerves after division; Repair and its modifications; Clinical features; _Primary and secondary suture_--SUBCUTANEOUS INJURIES OF NERVES--DISEASES: _Neuritis_; _Tumours_--Surgery of the individual nerves: _Brachial neuralgia_; _Sciatica_; _Trigeminal neuralgia_. #Anatomy.#--A nerve-trunk is made up of a variable number of bundles of nerve fibres surrounded and supported by a framework of connective tissue. The nerve fibres are chiefly of the medullated type, and they run without interruption from a nerve cell or _neuron_ in the brain or spinal medulla to their peripheral terminations in muscle, skin, and secretory glands. Each nerve fibre consists of a number of nerve fibrils collected into a central bundle--the axis cylinder--which is surrounded by an envelope, the neurolemma or sheath of Schwann. Between the neurolemma and the axis cylinder is the medullated sheath, composed of a fatty substance known as myelin. This medullated sheath is interrupted at the nodes of Ranvier, and in each internode is a nucleus lying between the myelin and the neurolemma. The axis cylinder is the essential conducting structure of the nerve, while the neurolemma and the myelin act as insulating agents. The axis cylinder depends for its nutrition on the central neuron with which it is connected, and from which it originally developed, and it degenerates if it is separated from its neuron. The connective-tissue framework of a nerve-trunk consists of the _perineurium_, or general sheath, which surrounds all the bundles; the _epineurium_, surrounding individual groups of bundles; and the _endoneurium_, a delicate connective tissue separating the individual nerve fibres. The blood vessels and lymphatics run in these connective-tissue sheaths. According to Head and his co-workers, Sherren and Rivers, the afferent fibres in the peripheral nerves can be divided into three systems:-- 1. Those which subserve _deep sensibility_ and conduct the impulses produced by pressure as well as those which enable the patient to recognise the position of a joint on passive movement (joint-sensation), and the kinaesthetic sense, which recognises that active contraction of the muscle is taking place (active muscle-sensation). The fibres of this system run with the motor nerves, and pass to muscles, tendons, and joints. Even division of both the ulnar and the median nerves above the wrist produces little loss of deep sensibility, unless the tendons are also cut through. The failure to recognise this form of sensibility has been largely responsible for the conflicting statements as to the sensory phenomena following operations for the repair of divided nerves. 2. Those which subserve _protopathic_ sensibility--that is, are capable of responding to painful cutaneous stimuli and to the extremes of heat and cold. These also endow the hairs with sensibility to pain. They are the first to regenerate after division. 3. Those which subserve _epicritic_ sensibility, the most highly specialised, capable of appreciating light touch, _e.g._ with a wisp of cotton wool, as a well-localised sensation, and the finer grades of temperature, called cool and warm (72 o-104 o F.), and of discriminating as separate the points of a pair of compasses 2 cms. apart. These are the last to regenerate. A nerve also exerts a trophic influence on the tissues in which it is distributed. The researches of Stoffel on the minute anatomy of the larger nerves, and the disposition in them of the bundles of nerve fibres supplying different groups of muscles, have opened up what promises to be a fruitful field of clinical investigation and therapeutics. He has shown that in the larger nerve-trunks the nerve bundles for special groups of muscles are not, as was formerly supposed, arranged irregularly and fortuitously, but that on the contrary the nerve fibres to a particular group of muscles have a typical and practically constant position within the nerve. In the large nerve-trunks of the limbs he has worked out the exact position of the bundles for the various groups of muscles, so that in a cross section of a particular nerve the component bundles can be labelled as confidently and accurately as can be the cortical areas in the brain. In the living subject, by using a fine needle-like electrode and a very weak galvanic current, he has been able to differentiate the nerve bundles for the various groups of muscles. In several cases of spastic paralysis he succeeded in picking out in the nerve-trunk of the affected limb the nerve bundles supplying the spastic muscles, and, by resecting portions of them, in relieving the spasm. In a case of spastic contracture of the pronator muscles of the forearm, for example, an incision is made along the line of the median nerve above the bend of the elbow. At the lateral side of the median nerve, where it lies in contact with the biceps muscle, is situated a well-defined and easily isolated bundle of fibres which supplies the pronator teres, the flexor carpi radialis, and the palmaris longus muscles. On incising the sheath of the nerve this bundle can be readily dissected up and its identity confirmed by stimulating it with a very weak galvanic current. An inch or more of the bundle is then resected. INJURIES OF NERVES Nerves are liable to be cut or torn across, bruised, compressed, stretched, or torn away from their connections with the spinal medulla. #Complete Division of a Mixed Nerve.#--Complete division is a common result of accidental wounds, especially above the wrist, where the ulnar, median, and radial nerves are frequently cut across, and in gun-shot injuries. _Changes in Structure and Function._--The mere interruption of the continuity of a nerve results in degeneration of its fibres, the myelin being broken up into droplets and absorbed, while the axis cylinders swell up, disintegrate, and finally disappear. Both the conducting and the insulating elements are thus lost. The degeneration in the central end of the divided nerve is usually limited to the immediate proximity of the lesion, and does not even involve all the nerve fibres. In the distal end, it extends throughout the entire peripheral distribution of the nerve, and appears to be due to the cutting off of the fibres from their trophic nerve cells in the spinal medulla. Immediate suturing of the ends does not affect the degeneration of the distal segment. The peripheral end undergoes complete degeneration in from six weeks to two months. The physiological effects of complete division are that the muscles supplied by the nerve are immediately paralysed, the area to which it furnishes the sole cutaneous supply becomes insensitive, and the other structures, including tendons, bones, and joints, lose sensation, and begin to atrophy from loss of the trophic influence. #Nerves divided in Amputation.#--In the case of nerves divided in an amputation, there is an active, although necessarily abortive, attempt at regeneration, which results in the formation of bulbous swellings at the cut ends of the nerves. When there has been suppuration, and especially if the nerves have been cut so as to be exposed in the wound, these bulbous swellings may attain an abnormal size, and are then known as "amputation" or "stump neuromas" (Fig. 84). When the nerves in a stump have not been cut sufficiently short, they may become involved in the cicatrix, and it may be necessary, on account of pain, to free them from their adhesions, and to resect enough of the terminal portions to prevent them again becoming adherent. When this is difficult, a portion may be resected from each of the nerve-trunks at a higher level; and if this fails to give relief, a fresh amputation may be performed. When there is agonising pain dependent upon an ascending neuritis, it may be necessary to resect the corresponding posterior nerve roots within the vertebral canal. [Illustration: FIG. 84.--Stump Neuromas of Sciatic Nerve, excised forty years after the original amputation by Mr. A. G. Miller.] #Other Injuries of Nerves.#--_Contusion_ of a nerve-trunk is attended with extravasation of blood into the connective-tissue sheaths, and is followed by degeneration of the contused nerve fibres. Function is usually restored, the conducting paths being re-established by the formation of new nerve fibres. When a nerve is _torn across_ or badly _crushed_--as, for example, by a fractured bone--the changes are similar to those in a divided nerve, and the ultimate result depends on the amount of separation between the ends and the possibility of the young axis cylinders bridging the gap. _Involvement of Nerves in Scar Tissue._--Pressure or traction may be exerted upon a nerve by contracting scar tissue, or a process of neuritis or perineuritis may be induced. When terminal filaments are involved in a scar, it is best to dissect out the scar, and along with it the ends of the nerves pressed upon. When a nerve-trunk, such as the sciatic, is involved in cicatricial tissue, the nerve must be exposed and freed from its surroundings (_neurolysis_), and then stretched so as to tear any adhesions that may be present above or below the part exposed. It may be advisable to displace the liberated nerve from its original position so as to minimise the risk of its incorporation in the scar of the original wound or in that resulting from the operation--for example, the radial nerve may be buried in the substance of the triceps, or it may be surrounded by a segment of vein or portion of fat-bearing fascia. _Injuries of nerves resulting from_ #gun-shot wounds# include: (1) those in which the nerve is directly damaged by the bullet, and (2) those in which the nerve-trunk is involved secondarily either by scar tissue in its vicinity or by callus following fracture of an adjacent bone. The primary injuries include contusion, partial or complete division, and perforation of the nerve-trunk. One of the most constant symptoms is the early occurrence of severe neuralgic pain, and this is usually associated with marked hyperaesthesia. #Regeneration.#--_Process of Repair when the Ends are in Contact._--_If the wound is aseptic_, and the ends of the divided nerve are sutured or remain in contact, they become united, and the conducting paths are re-established by a regeneration of nerve fibres. There is a difference of opinion as to the method of regeneration. The Wallerian doctrine is that the axis cylinders in the central end grow downwards, and enter the nerve sheaths of the distal portion, and continue growing until they reach the peripheral terminations in muscle and skin, and in course of time acquire a myelin sheath; the cells of the neurolemma multiply and form long chains in both ends of the nerve, and are believed to provide for the nourishment and support of the actively lengthening axis cylinders. Another view is that the formation of new axis cylinders is not confined to the central end, but that it goes on also in the peripheral segment, in which, however, the new axis cylinders do not attain maturity until continuity with the central end has been re-established. _If the wound becomes infected_ and suppuration occurs, the young nerve fibres are destroyed and efficient regeneration is prevented; the formation of scar tissue also may constitute a permanent obstacle to new nerve fibres bridging the gap. _When the ends are not in contact_, reunion of the divided nerve fibres does not take place whether the wound is infected or not. At the proximal end there forms a bulbous swelling, which becomes adherent to the scar tissue. It consists of branching axis cylinders running in all directions, these having failed to reach the distal end because of the extent of the gap. The peripheral end is completely degenerated, and is represented by a fibrous cord, the cut end of which is often slightly swollen or bulbous, and is also incorporated with the scar tissue of the wound. #Clinical Features.#--The symptoms resulting from division and non-union of a nerve-trunk necessarily vary with the functions of the affected nerve. The following description refers to a mixed sensori-motor trunk, such as the median or radial (musculo-spiral) nerve. _Sensory Phenomena._--Superficial touch is tested by means of a wisp of cotton wool stroked gently across the skin; the capacity of discriminating two points as separate, by a pair of blunt-pointed compasses; the sensation of pressure, by means of a pencil or other blunt object; of pain, by pricking or scratching with a needle; and of sensibility to heat and cold, by test-tubes containing water at different temperatures. While these tests are being carried out, the patient's eyes are screened off. After division of a nerve containing sensory fibres, there is an area of absolute cutaneous insensibility to touch (anaesthesia), to pain (analgesia), and to all degrees of temperature--_loss of protopathic sensibility_; surrounded by an area in which there is loss of sensation to light touch, inability to recognise minor differences of temperature (72 o-104 o F.), and to appreciate as separate impressions the contact of the two points of a compass--_loss of epicritic sensibility_ (Head and Sherren) (Figs. 91, 92). _Motor Phenomena._--There is immediate and complete loss of voluntary power in the muscles supplied by the divided nerve. The muscles rapidly waste, and within from three to five days, they cease to react to the faradic current. When tested with the galvanic current, it is found that a stronger current must be used to call forth contraction than in a healthy muscle, and the contraction appears first at the closing of the circuit when the anode is used as the testing electrode. The loss of excitability to the interrupted current, and the specific alteration in the type of contraction with the constant current, is known as the _reaction of degeneration_. After a few weeks all electric excitability is lost. The paralysed muscles undergo fatty degeneration, which attains its maximum three or four months after the division of the nerve. Further changes may take place, and result in the transformation of the muscle into fibrous tissue, which by undergoing shortening may cause deformity known as _paralytic contracture_. _Vaso-motor Phenomena._--In the majority of cases there is an initial rise in the temperature of the part (2 o to 3 o F.), with redness and increased vascularity. This is followed by a fall in the local temperature, which may amount to 8 o or 10 o F., the parts becoming pale and cold. Sometimes the hyperaemia resulting from vaso-motor paralysis is more persistent, and is associated with swelling of the parts from oedema--the so-called _angio-neurotic oedema_. The vascularity varies with external influences, and in cold weather the parts present a bluish appearance. _Trophic Phenomena._--Owing to the disappearance of the subcutaneous fat, the skin is smooth and thin, and may be abnormally dry. The hair is harsh, dry, and easily shed. The nails become brittle and furrowed, or thick and curved, and the ends of the fingers become club-shaped. Skin eruptions, especially in the form of blisters, occur, or there may be actual ulcers of the skin, especially in winter. In aggravated cases the tips of the fingers disappear from progressive ulceration, and in the sole of the foot a perforating ulcer may develop. Arthropathies are occasionally met with, the joints becoming the seat of a painless effusion or hydrops, which is followed by fibrous thickening of the capsular and other ligaments, and terminates in stiffness and fibrous ankylosis. In this way the fingers are seriously crippled and deformed. #Treatment of Divided Nerves.#--The treatment consists in approximating the divided ends of the nerve and placing them under the most favourable conditions for repair, and this should be done at the earliest possible opportunity. (_Op. Surg._, pp. 45, 46.) #Primary Suture.#--The reunion of a recently divided nerve is spoken of as primary suture, and for its success asepsis is essential. As the suturing of the ends of the nerve is extremely painful, an anaesthetic is required. When the wound is healed and while waiting for the restoration of function, measures are employed to maintain the nutrition of the damaged nerve and of the parts supplied by it. The limb is exercised, massaged, and douched, and protected from cold and other injurious influences. The nutrition of the paralysed muscles is further improved by electricity. The galvanic current is employed, using at first a mild current of not more than 5 milliamperes for about ten minutes, the current being made to flow downwards in the course of the nerve, with the positive electrode applied to the spine, and the negative over the affected nerve near its termination. It is an advantage to have a metronome in the circuit whereby the current is opened and closed automatically at intervals, so as to cause contraction of the muscles. _The results_ of primary suture, when it has been performed under favourable conditions, are usually satisfactory. In a series of cases investigated by Head and Sherren, the period between the operation and the first return of sensation averaged 65 days. According to Purves Stewart protopathic sensation commences to appear in about six weeks and is completely restored in six months; electric sensation and motor power reappear together in about six months, and restoration is complete in a year. When sensation returns, the area of insensibility to pain steadily diminishes and disappears; sensibility to extremes of temperature appears soon after; and last of all, after a considerable interval, there is simultaneous return of appreciation of light touch, moderate degrees of temperature, and the points of a compass. A clinical means of estimating how regeneration in a divided nerve is progressing has been described by Tinel. He found that a tingling sensation, similar to that experienced in the foot, when it is recovering from the "sleeping" condition induced by prolonged pressure on the sciatic nerve from sitting on a hard bench, can be elicited on percussing over _growing_ axis cylinders. Tapping over the proximal end of a _newly divided nerve_, _e.g._ the common peroneal behind the head of the fibula, produces no tingling, but when in about three weeks axis cylinders begin to grow in the proximal end-bulb, local tingling is induced by tapping there. The downward growth of the axis cylinders can be traced by tapping over the distal segment of the nerve, the tingling sensation being elicited as far down as the young axis cylinders have reached. When the regeneration of the axis cylinders is complete, tapping no longer causes tingling. It usually takes about one hundred days for this stage to be reached. Tinel's sign is present before voluntary movement, muscular tone, or the normal electrical reactions reappear. In cases of complete nerve paralysis that have not been operated upon, the tingling test is helpful in determining whether or not regeneration is taking place. Its detection may prevent an unnecessary operation being performed. Primary suture should not be attempted so long as the wound shows signs of infection, as it is almost certain to end in failure. The ends should be sutured, however, as soon as the wound is aseptic or has healed. #Secondary Suture.#--The term secondary suture is applied to the operation of stitching the ends of the divided nerve after the wound has healed. _Results of Secondary Suture._--When secondary suture has been performed under favourable conditions, the prognosis is good, but a longer time is required for restoration of function than after primary suture. Purves Stewart says protopathic sensation is sometimes observed much earlier than in primary suture, because partial regeneration of axis cylinders in the peripheral segment has already taken place. Sensation is recovered first, but it seldom returns before three or four months. There then follows an improvement or disappearance of any trophic disturbances that may be present. Recovery of motion may be deferred for long periods--rather because of the changes in the muscles than from want of conductivity in the nerve--and if the muscles have undergone complete degeneration, it may never take place at all. While waiting for recovery, every effort should be made to maintain the nutrition of the damaged nerve, and of the parts which it supplies. When suture is found to be impossible, recourse must be had to other methods, known as nerve bridging and nerve implantation. #Incomplete Division of a Mixed Nerve.#--The effects of partial division of a mixed nerve vary according to the destination of the nerve bundles that have been interrupted. Within their area of distribution the paralysis is as complete as if the whole trunk had been cut across. The uninjured nerve-bundles continue to transmit impulses with the result that there is a _dissociated paralysis_ within the distribution of the affected nerve, some muscles continuing to act and to respond normally to electric stimulation, while others behave as if the whole nerve-trunk had been severed. In addition to vasomotor and trophic changes, there is often severe pain of a burning kind (_causalgia_ or _thermalgia_) which comes on about a fortnight after the injury and causes intense and continuous suffering which may last for months. Paroxysms of pain may be excited by the slightest touch or by heat, and the patient usually learns for himself that the constant application of cold wet cloths allays the pain. The thermalgic area sweats profusely. Operative treatment is indicated where there is no sign of improvement within three months, when recovery is arrested before complete restoration of function is attained, or when thermalgic pain is excessive. #Subcutaneous Injuries of Nerves.#--Several varieties of subcutaneous injuries of nerves are met with. One of the best known is the compression paralysis of the nerves of the upper arm which results from sleeping with the arm resting on the back of a chair or the edge of a table--the so-called "drunkard's palsy"; and from the pressure of a crutch in the axilla--"crutch paralysis." In some of these injuries, notably "drunkard's palsy," the disability appears to be due not to damage of the nerve, but to overstretching of the extensors of the wrist and fingers (Jones). A similar form of paralysis is sometimes met with from the pressure of a tourniquet, from tight bandages or splints, from the pressure exerted by a dislocated bone or by excessive callus, and from hyper-extension of the arm during anaesthesia. In all these forms there is impaired sensation, rarely amounting to anaesthesia, marked muscular wasting, and diminution or loss of voluntary motor power, while--and this is a point of great importance--the normal electrical reactions are preserved. There may also develop trophic changes such as blisters, superficial ulcers, and clubbing of the tips of the fingers. The prognosis is usually favourable, as recovery is the rule within from one to three months. If, however, neuritis supervenes, the electrical reactions are altered, the muscles degenerate, and recovery may be retarded or may fail to take place. Injuries which act abruptly or instantaneously are illustrated in the crushing of a nerve by the sudden displacement of a sharp-edged fragment of bone, as may occur in comminuted fractures of the humerus. The symptoms include perversion or loss of sensation, motor paralysis, and atrophy of muscles, which show the reaction of degeneration from the eighth day onwards. The presence of the reaction of degeneration influences both the prognosis and the treatment, for it implies a lesion which is probably incapable of spontaneous recovery, and which can only be remedied by operation. The _treatment_ varies with the cause and nature of the lesion. When, for example, a displaced bone or a mass of callus is pressing upon the nerve, steps must be taken to relieve the pressure, by operation if necessary. When there is reason to believe that the nerve is severely crushed or torn across, it should be exposed by incision, and, after removal of the damaged ends, should be united by sutures. When it is impossible to make a definite diagnosis as to the state of the nerve, it is better to expose it by operation, and thus learn the exact state of affairs without delay; in the event of the nerve being torn, the ends should be united by sutures. #Dislocation of Nerves.#--This injury, which resembles the dislocation of tendons from their grooves, is seldom met with except in the ulnar nerve at the elbow, and is described with injuries of that nerve. DISEASES OF NERVES #Traumatic Neuritis.#--This consists in an overgrowth of the connective-tissue framework of a nerve, which causes irritation and pressure upon the nerve fibres, sometimes resulting in their degeneration. It may originate in connection with a wound in the vicinity of a nerve, as, for example, when the brachial nerves are involved in scar tissue subsequent to an operation for clearing out the axilla for cancer; or in contusion and compression of a nerve--for example, by the pressure of the head of the humerus in a dislocation of the shoulder. Some weeks or months after the injury, the patient complains of increasing hyperaesthesia and of neuralgic pains in the course of the nerve. The nerve is very sensitive to pressure, and, if superficial, may be felt to be swollen. The associated muscles are wasted and weak, and are subject to twitchings. There are also trophic disturbances. It is rare to have complete sensory and motor paralysis. The disease is commonest in the nerves of the upper extremity, and the hand may become crippled and useless. _Treatment._--Any constitutional condition which predisposes to neuritis, such as gout, diabetes, or syphilis, must receive appropriate treatment. The symptoms may be relieved by rest and by soothing applications, such as belladonna, ichthyol, or menthol, by the use of hot-air and electric baths, and in obstinate cases by blistering or by the application of Corrigan's button. When such treatment fails the nerve may be stretched, or, in the case of a purely sensory trunk, a portion may be excised. Local causes, such as involvement of the nerve in a scar or in adhesions, may afford indications for operative treatment. #Multiple Peripheral Neuritis.#--Although this disease mainly comes under the cognizance of the physician, it may be attended with phenomena which call for surgical interference. In this country it is commonly due to alcoholism, but it may result from diabetes or from chronic poisoning with lead or arsenic, or from bacterial infections and intoxications such as occur in diphtheria, gonorrhoea, syphilis, leprosy, typhoid, influenza, beri-beri, and many other diseases. It is, as a rule, widely distributed throughout the peripheral nerves, but the distribution frequently varies with the cause--the alcoholic form, for example, mainly affecting the legs, the diphtheritic form the soft palate and pharynx, and that associated with lead poisoning the forearms. The essential lesion is a degeneration of the conducting fibres of the affected nerves, and the prominent symptoms are the result of this. In alcoholic neuritis there is great tenderness of the muscles. When the legs are affected the patient may be unable to walk, and the toes may droop and the heel be drawn up, resulting in one variety of pes equino-varus. Pressure sores and perforating ulcer of the foot are the most important trophic phenomena. Apart from the medical _treatment_, measures must be taken to prevent deformity, especially when the legs are affected. The bedclothes are supported by a cage, and the foot maintained at right angles to the leg by sand-bags or splints. When the disease is subsiding, the nutrition of the damaged nerves and muscles should be maintained by massage, baths, passive movements, and the use of the galvanic current. When deformity has been allowed to take place, operative measures may be required for its correction. NEUROMA[5] [5] We have followed the classification adopted by Alexis Thomson in his work _On Neuroma, and Neuro-fibromatosis_ (Edinburgh: 1900). Neuroma is a clinical term applied to all tumours, irrespective of their structure, which have their seat in nerves. A tumour composed of newly formed nerve tissue is spoken of as a #true neuroma#; when ganglionic cells are present in addition to nerve fibres, the name _ganglionic neuroma_ is applied. These tumours are rare, and are chiefly met with in the main cords or abdominal plexuses of the sympathetic system of children or young adults. They are quite insensitive, and their removal is only called for if they cause pain or show signs of malignancy. A #false neuroma# is an overgrowth of the sheath of a nerve. This overgrowth may result in the formation of a circumscribed tumour, or may take the form of a diffuse fibromatosis. _The circumscribed or solitary tumour_ grows from the sheath of a nerve which is otherwise healthy, and it may be innocent or malignant. _The innocent_ form is usually fibrous or myxomatous, and is definitely encapsulated. It may become cystic as a result of haemorrhage or of myxomatous degeneration. It grows very slowly, is usually elliptical in shape, and the solid form is rarely larger than a hazel-nut. The nerve fibres may be spread out all round the tumour, or may run only on one side of it. When subcutaneous and related to the smaller unnamed cutaneous nerves, it is known as a _painful subcutaneous nodule_ or _tubercle_. It is chiefly met with about the ankle, and most often in women. It is remarkably sensitive, even gentle handling causing intense pain, which usually radiates to the periphery of the nerve affected. When related to a deeper, named nerve-trunk, it is known as a _trunk-neuroma_. It is usually less sensitive than the "subcutaneous nodule," and rarely gives rise to motor symptoms unless it involves the nerve roots where they pass through bony canals. A trunk-neuroma is recognised clinically by its position in the line of a nerve, by the fact that it is movable in the transverse axis of the nerve but not in its long axis, and by being unduly painful and sensitive. [Illustration: FIG. 85.--Amputation Stump of Upper Arm, showing bulbous thickening of the ends of the nerves, embedded in scar tissue at the apex of the stamp.] _Treatment._--If the tumour causes suffering it should be removed, preferably by shelling it out from the investing nerve sheath or capsule. In the subcutaneous nodule the nerve is rarely recognisable, and is usually sacrificed. When removal of the tumour is incomplete, a tube of radium should be inserted into the cavity, to prevent recurrence of the tumour in a malignant form. _The malignant neuroma_ is a sarcoma growing from the sheath of a nerve. It has the same characters and clinical features as the innocent variety, only it grows more rapidly, and by destroying the nerve fibres causes motor symptoms--jerkings followed by paralysis. The sarcoma tends to spread along the lymph spaces in the long axis of the nerve, as well as to implicate the surrounding tissues, and it is liable to give rise to secondary growths. The malignant neuroma is met with chiefly in the sciatic and other large nerves of the limbs. The _treatment_ is conducted on the same lines as sarcoma in other situations; the insertion of a tube of radium after removal of the tumour diminishes the tendency to recurrence; a portion of the nerve-trunk being sacrificed, means must be taken to bridge the gap. In inoperable cases it may be possible to relieve pain by excising a portion of the nerve above the tumour, or, when this is impracticable, by resecting the posterior nerve roots and their ganglia within the vertebral canal. The so-called _amputation neuroma_ has already been referred to (p. 344). _Diffuse or Generalised Neuro-Fibromatosis--Recklinghausen's Disease._--These terms are now used to include what were formerly known as "multiple neuromata," as well as certain other overgrowths related to nerves. The essential lesion is an overgrowth of the endoneural connective tissue throughout the nerves of both the cerebro-spinal and sympathetic systems. The nerves are diffusely and unequally thickened, so that small twigs may become enlarged to the size of the median, while at irregular intervals along their course the connective-tissue overgrowth is exaggerated so as to form tumour-like swellings similar to the trunk-neuroma already described. The tumours, which vary greatly in size and number--as many as a thousand have been counted in one case--are enclosed in a capsule derived from the perineurium. The fibromatosis may also affect the cranial nerves, the ganglia on the posterior nerve roots, the nerves within the vertebral canal, and the sympathetic nerves and ganglia, as well as the continuations of the motor nerves within the muscles. The nerve fibres, although mechanically displaced and dissociated by the overgrown endoneurium, undergo no structural change except when compressed in passing through a bony canal. The disease probably originates before birth, although it may not make its appearance till adolescence or even till adult life. It is sometimes met with in several members of one family. It is recognised clinically by the presence of multiple tumours in the course of the nerves, and sometimes by palpable enlargement of the superficial nerve-trunks (Fig. 86). The tumours resemble the solitary trunk-neuroma, are usually quite insensitive, and many of them are unknown to the patient. As a result of injury or other exciting cause, however, one or other tumour may increase in size and become extremely sensitive; the pain is then agonising; it is increased by handling, and interferes with sleep. In these conditions, a malignant transformation of the fibroma into sarcoma is to be suspected. Motor disturbances are exceptional, unless in the case of tumours within the vertebral canal, which press on the spinal medulla and cause paraplegia. [Illustration: FIG. 86.--Diffuse enlargement of Nerves in generalised Neuro-fibromatosis. (After R. W. Smith.)] Neuro-fibromatosis is frequently accompanied by _pigmentation of the skin_ in the form of brown spots or patches scattered over the trunk. The disease is often stationary for long periods. In progressive cases the patient becomes exhausted, and usually dies of some intercurrent affection, particularly phthisis. The treatment is restricted to relieving symptoms and complications; removal of one of the tumours is to be strongly deprecated. In a considerable proportion of cases one of the multiple tumours takes on the characters of a malignant growth ("secondary malignant neuroma," Garre). This malignant transformation may follow upon injury, or on an unsuccessful attempt to remove the tumour. The features are those of a rapidly growing sarcoma involving a nerve-trunk, with agonising pain and muscular cramps, followed by paralysis from destruction of the nerve fibres. The removal of the tumour is usually followed by recurrence, so that high amputation is the only treatment to be recommended. Metastasis to internal organs is exceptional. [Illustration: FIG. 87.--Plexiform Neuroma of small Sciatic Nerve, from a girl aet. 16. (Mr. Annandale's case.)] There are other types of neuro-fibromatosis which require brief mention. _The plexiform neuroma_ (Fig. 87) is a fibromatosis confined to the distribution of one or more contiguous nerves or of a plexus of nerves, and it may occur either by itself or along with multiple tumours of the nerve-trunks and with pigmentation of the skin. The clinical features are those of an ill-defined swelling composed of a number of tortuous, convoluted cords, lying in a loose areolar tissue and freely movable on one another. It is rarely the seat of pain or tenderness. It most often appears in the early years of life, sometimes in relation to a pigmented or hairy mole. It is of slow growth, may remain stationary for long periods, and has little or no tendency to become malignant. It is usually subcutaneous, and is frequently situated on the head or neck in the distribution of the trigeminal or superficial cervical nerves. There is no necessity for its removal, but this may be indicated because of disfigurement, especially on the face or scalp or because its bulk interferes with function. When involving the ophthalmic division of the trigeminus, for example, it may cause enlargement of the upper lid and proptosis, with danger to the function of the globe. The results of excision are usually satisfactory, even if the removal is not complete. [Illustration: FIG. 88.--Multiple Neuro-fibromas of Skin (Molluscum fibrosum, or Recklinghausen's disease).] _The cutaneous neuro-fibroma_ or _molluscum fibrosum_ has been shown by Recklinghausen to be a soft fibroma related to the terminal filaments of one of the cutaneous nerves (Fig. 88). The disease appears in the form of multiple, soft, projecting tumours, scattered all over the body, except the palms of the hands and soles of the feet. The tumours are of all sizes, some being no larger than a pin's head, whilst many are as big as a filbert and a few even larger. Many are sessile and others are distinctly pedunculated, but all are covered with skin. They are mobile, soft to the touch, and of the consistence of firm fat. In exceptional cases one of the skin tumours may attain an enormous size and cause a hideous deformity, hanging down by its own weight in lobulated or folded masses (pachy-dermatocele). The treatment consists in removing the larger swellings. In some cases molluscum fibrosum is associated with pigmentation of the skin and with multiple tumours of the nerve-trunks. The small multiple tumours rarely call for interference. [Illustration: FIG. 89.--Elephantiasis Neuromatosa in a woman aet. 28] _Elephantiasis neuromatosa_ is the name applied by Virchow to a condition in which a limb is swollen and misshapen as a result of the extension of a neuro-fibromatosis to the skin and subcutaneous cellular tissue of the extremity as a whole (Fig. 89). It usually begins in early life without apparent cause, and it may be associated with multiple tumours of the nerve-trunks. The inconvenience caused by the bulk and weight of the limb may justify its removal. SURGERY OF THE INDIVIDUAL NERVES[6] [6] We desire here to acknowledge our indebtedness to Mr. James Sherren's work on _Injuries of Nerves and their Treatment_. #The Brachial Plexus.#--Lesions of the brachial plexus may be divided into those above the clavicle and those below that bone. In the #supra-clavicular injuries#, the violence applied to the head or shoulder causes over-stretching of the anterior branches (primary divisions) of the cervical nerves, the fifth, or the fifth and sixth being those most liable to suffer. Sometimes the traction is exerted upon the plexus from below, as when a man in falling from a height endeavours to save himself by clutching at some projection, and the lesion then mainly affects the first dorsal nerve. There is tearing of the nerve sheaths, with haemorrhage, but in severe cases partial or complete severance of nerve fibres may occur and these give way at different levels. During the healing process an excess of fibrous tissue is formed, which may interfere with regeneration. _Post-anaesthetic paralysis_ occurs in patients in whom, during the course of an operation, the arm is abducted and rotated laterally or extended above the head, causing over-stretching of the plexus, especially of the fifth, or fifth and sixth, anterior branches. A _cervical rib_ may damage the plexus by direct pressure, the part usually affected being the medial cord, which is made up of fibres from the eighth cervical and first dorsal nerves. When a lesion of the plexus complicates a _fracture of the clavicle_, the nerve injury is due, not to pressure on or laceration of the nerves by fragments of bone, but to the violence causing the fracture, and this is usually applied to the point of the shoulder. Penetrating _wounds_, apart from those met with in military practice, are rare. In the #infra-clavicular injuries#, the lesion most often results from the pressure of the dislocated head of the humerus; occasionally from attempts made to reduce the dislocation by the heel-in-the-axilla method, or from fracture of the upper end of the humerus or of the neck of the scapula. The whole plexus may suffer, but more frequently the medial cord is alone implicated. _Clinical Features._--Three types of lesion result from indirect violence: the whole plexus; the upper-arm type; and the lower-arm type. _When the whole plexus is involved_, sensibility is lost over the entire forearm and hand and over the lateral surface of the arm in its distal two-thirds. All the muscles of the arm, forearm, and hand are paralysed, and, as a rule, also the pectorals and spinati, but the rhomboids and serratus anterior escape. There is paralysis of the sympathetic fibres to the eye and orbit, with narrowing of the palpebral fissure, recession of the globe, and the pupil is slow to dilate when shaded from the light. The _upper-arm type_--Erb-Duchenne paralysis--is that most frequently met with, and it is due to a lesion of the fifth anterior branch, or, it may be, also of the sixth. The position of the upper limb is typical: the arm and forearm hang close to the side, with the forearm extended and pronated; the deltoid, spinati, biceps, brachialis, and supinators are paralysed, and in some cases the radial extensors of the wrist and the pronator teres are also affected. The patient is unable to supinate the forearm or to abduct the arm, and in most cases to flex the forearm. He may, however, regain some power of flexing the forearm when it is fully pronated, the extensors of the wrist becoming feeble flexors of the elbow. There is, as a rule, no loss of sensibility, but complaint may be made of tickling and of pins-and-needles over the lateral aspect of the arm. The abnormal position of the limb may persist although the muscles regain the power of voluntary movement, and as the condition frequently follows a fall on the shoulder, great care is necessary in diagnosis, as the condition is apt to be attributed to an injury to the axillary (circumflex) nerve. The _lower-arm type_ of paralysis, associated with the name of Klumpke, is usually due to over-stretching of the plexus, and especially affects the anterior branch of the first dorsal nerve. In typical cases all the intrinsic muscles of the hand are affected, and the hand assumes the claw shape. Sensibility is usually altered over the medial side of the arm and forearm, and there is paralysis of the sympathetic. _Infra-clavicular injuries_, as already stated, are most often produced by a sub-coracoid dislocation of the humerus; the medial cord is that most frequently injured, and the muscles paralysed are those supplied by the ulnar nerve, with, in addition, those intrinsic muscles of the hand supplied by the median. Sensibility is affected over the medial surface of the forearm and ulnar area of the hand. Injury of the lateral and posterior cords is very rare. _Treatment_ is carried out on the lines already laid down for nerve injuries in general. It is impossible to diagnose between complete and incomplete rupture of the nerve cords, until sufficient time has elapsed to allow of the establishment of the reaction of degeneration. If this is present at the end of fourteen days, operation should not be delayed. Access to the cords of the plexus is obtained by a dissection similar to that employed for the subclavian artery, and the nerves are sought for as they emerge from under cover of the scalenus anterior, and are then traced until the seat of injury is found. In the case of the first dorsal nerve, it may be necessary temporarily to resect the clavicle. The usual after-treatment must be persisted in until recovery ensues, and care must be taken that the paralysed muscles do not become over-stretched. The prognosis is less favourable in the supra-clavicular lesions than in those below the clavicle, which nearly always recover without surgical intervention. In the _brachial birth-paralysis_ met with in infants, the lesion is due to over-stretching of the plexus, and is nearly always of the Erb-Duchenne type. The injury is usually unilateral, it occurs with almost equal frequency in breech and in vertex presentations, and the left arm is more often affected than the right. The lesion is seldom recognised at birth. The first symptom noticed is tenderness in the supra-clavicular region, the child crying when this part is touched or the arm is moved. The attitude may be that of the Erb-Duchenne type, or the whole of the muscles of the upper limb may be flaccid, and the arm hangs powerless. A considerable proportion of the cases recover spontaneously. The arm is to be kept at rest, with the affected muscles relaxed, and, as soon as tenderness has disappeared, daily massage and passive movements are employed. The reaction of degeneration can rarely be satisfactorily tested before the child is three months old, but if it is present, an operation should be performed. After operation, the shoulder should be elevated so that no traction is exerted on the affected cords. #The long thoracic nerve# (nerve of Bell), which supplies the serratus anterior, is rarely injured. In those whose occupation entails carrying weights upon the shoulder it may be contused, and the resulting paralysis of the serratus is usually combined with paralysis of the lower part of the trapezius, the branches from the third and fourth cervical nerves which supply this muscle also being exposed to pressure as they pass across the root of the neck. There is complaint of pain above the clavicle, and winging of the scapula; the patient is unable to raise the arm in front of the body above the level of the shoulder or to perform any forward pushing movements; on attempting either of these the winging of the scapula is at once increased. If the scapula is compared with that on the sound side, it is seen that, in addition to the lower angle being more prominent, the spine is more horizontal and the lower angle nearer the middle line. The majority of these cases recover if the limb is placed at absolute rest, the elbow supported, and massage and galvanism persevered with. If the paralysis persists, the sterno-costal portion of the pectoralis major may be transplanted to the lower angle of the scapula. The long thoracic nerve may be cut across while clearing out the axilla in operating for cancer of the breast. The displacement of the scapula is not so marked as in the preceding type, and the patient is able to perform pushing movements below the level of the shoulder. If the reaction of degeneration develops, an operation may be performed, the ends of the nerve being sutured, or the distal end grafted into the posterior cord of the brachial plexus. #The Axillary (Circumflex) Nerve.#--In the majority of cases in which paralysis of the deltoid follows upon an injury of the shoulder, it is due to a lesion of the fifth cervical nerve, as has already been described in injuries of the brachial plexus. The axillary nerve itself as it passes round the neck of the humerus is most liable to be injured from the pressure of a crutch, or of the head of the humerus in sub-glenoid dislocation, or in fracture of the neck of the scapula or of the humerus. In miners, who work for long periods lying on the side, the muscle may be paralysed by direct pressure on the terminal filaments of the nerve, and the nerve may also be involved as a result of disease in the sub-deltoid bursa. The deltoid is wasted, and the acromion unduly prominent. In recent cases paralysis of the muscle is easily detected. In cases of long standing it is not so simple, because other muscles, the spinati, the clavicular fibres of the pectoral and the serratus, take its place and elevate the arm; there is always loss of sensation on the lateral aspect of the shoulder. There is rarely any call for operative treatment, as the paralysis is usually compensated for by other muscles. When the _supra-scapular nerve_ is contused or stretched in injuries of the shoulder, the spinati muscles are paralysed and wasted, the spine of the scapula is unduly prominent, and there is impairment in the power of abducting the arm and rotating it laterally. The _musculo-cutaneous nerve_ is very rarely injured; when cut across, there is paralysis of the coraco-brachialis, biceps, and part of the brachialis, but no movements are abolished, the forearm being flexed, in the pronated position, by the brachio-radialis and long radial extensor of the wrist; in the supinated position, by that portion of the brachialis supplied by the radial nerve. Supination is feebly performed by the supinator muscle. Protopathic and epicritic sensibility are lost over the radial side of the forearm. #Radial (Musculo-Spiral) Nerve.#--From its anatomical relationships this trunk is more exposed to injury than any other nerve in the body. It is frequently compressed against the humerus in sleeping with the arm resting on the back of a chair, especially in the deep sleep of alcoholic intoxication (drunkard's palsy). It may be pressed upon by a crutch in the axilla, by the dislocated head of the humerus, or by violent compression of the arm, as when an elastic tourniquet is applied too tightly. The most serious and permanent injuries of this nerve are associated with fractures of the humerus, especially those from direct violence attended with comminution of the bone. The nerve may be crushed or torn by one of the fragments at the time of the injury, or at a later period may be compressed by callus. _Clinical Features._--Immediately after the injury it is impossible to tell whether the nerve is torn across or merely compressed. The patient may complain of numbness and tingling in the distribution of the superficial branch of the nerve, but it is a striking fact, that so long as the nerve is divided below the level at which it gives off the dorsal cutaneous nerve of the forearm (external cutaneous branch), there is no loss of sensation. When it is divided above the origin of the dorsal cutaneous branch, or when the dorsal branch of the musculo-cutaneous nerve is also divided, there is a loss of sensibility on the dorsum of the hand. The motor symptoms predominate, the muscles affected being the extensors of the wrist and fingers, and the supinators. There is a characteristic "drop-wrist"; the wrist is flexed and pronated, and the patient is unable to dorsiflex the wrist or fingers (Fig. 90). If the hand and proximal phalanges are supported, the second and third phalanges may be partly extended by the interossei and lumbricals. There is also considerable impairment of power in the muscles which antagonise those that are paralysed, so that the grasp of the hand is feeble, and the patient almost loses the use of it; in some cases this would appear to be due to the median nerve having been injured at the same time. [Illustration: FIG. 90.--Drop-wrist following Fracture of Shaft of Humerus.] If the lesion is high up, as it is, for example, in crutch paralysis, the triceps and anconeus may also suffer. _Treatment._--The slighter forms of injury by compression recover under massage, douching, and electricity. If there is drop-wrist, the hand and forearm are placed on a palmar splint, with the hand dorsiflexed to nearly a right angle, and this position is maintained until voluntary dorsiflexion at the wrist returns to the normal. Recovery is sometimes delayed for several months. In the more severe injuries associated with fracture of the humerus and attended with the reaction of degeneration, it is necessary to cut down upon the nerve and free it from the pressure of a fragment of bone or from callus or adhesions. If the nerve is torn across, the ends must be sutured, and if this is impossible owing to loss of tissue, the gap may be bridged by a graft taken from the superficial branch of the radial nerve, or the ends may be implanted into the median. Finally, in cases in which the paralysis is permanent and incurable, the disability may be relieved by operation. A fascial graft can be employed to act as a ligament permanently extending the wrist; it is attached to the third and fourth metacarpal bones distally and to the radius or ulna proximally. The flexor carpi radialis can then be joined up with the extensor digitorum communis by passing its tendon through an aperture in the interosseous membrane, or better still, through the pronator quadratus, as there is less likelihood of the formation of adhesions when the tendon passes through muscle than through interosseous membrane. The palmaris longus is anastomosed with the abductor pollicis longus (extensor ossis metacarpi pollicis), thus securing a fair amount of abduction of the thumb. The flexor carpi ulnaris may also be anastomosed with the common extensor of the fingers. The extensors of the wrist may be shortened, so as to place the hand in the position of dorsal flexion, and thus improve the attitude and grasp of the hand. _The superficial branch of the radial_ (radial nerve) _and the deep branch_ (posterior interosseous), apart from suffering in lesions of the radial, are liable to be contused or torn is dislocation of the head of the radius, and in fracture of the neck of the bone. The deep branch may be divided as it passes through the supinator in operations on old fractures and dislocations in the region of the elbow. Division of the superficial branch in the upper two-thirds of the forearm produces no loss of sensibility; division in the lower third after the nerve has become associated with branches from the musculo-cutaneous is followed by a loss of sensibility on the radial side of the hand and thumb. Wounds on the dorsal surface of the wrist and forearm are often followed by loss of sensibility over a larger area, because the musculo-cutaneous nerve is divided as well, and some of the fibres of the lower lateral cutaneous branch of the radial. [Illustration: FIG. 91.--To illustrate the Loss of Sensation produced by Division of the Median Nerve. The area of complete cutaneous insensibility is shaded black. The parts insensitive to light touch and to intermediate degrees of temperature are enclosed within the dotted line. (After Head and Sherren.)] #The Median Nerve# is most frequently injured in wounds made by broken glass in the region of the wrist. It may also be injured in fractures of the lower end of the humerus, in fractures of both bones of the forearm, and as a result of pressure by splints. After _division at the elbow_, there is impairment of mobility which affects the thumb, and to a less extent the index finger: the terminal phalanx of the thumb cannot be flexed owing to the paralysis of the flexor pollicis longus, and the index can only be flexed at its metacarpo-phalangeal joint by the interosseous muscles attached to it. Pronation of the forearm is feeble, and is completed by the weight of the hand. After _division at the wrist_, the abductor-opponens group of muscles and the two lateral lumbricals only are affected; the abduction of the thumb can be feebly imitated by the short extensor and the long abductor (ext. ossis metacarpi pollicis), while opposition may be simulated by contraction of the long flexor and the short abductor of the thumb; the paralysis of the two medial lumbricals produces no symptoms that can be recognised. It is important to remember that when the median nerve is divided at the wrist, deep touch can be appreciated over the whole of the area supplied by the nerve; the injury, therefore, is liable to be over looked. If, however, the tendons are divided as well as the nerve, there is insensibility to deep touch. The areas of epicritic and of protopathic insensibility are illustrated in Fig. 91. The division of the nerve at the elbow, or even at the axilla, does not increase the extent of the loss of epicritic or protopathic sensibility, but usually affects deep sensibility. [Illustration: FIG. 92.--To illustrate Loss of Sensation produced by complete Division of Ulnar Nerve. Loss of all forms of cutaneous sensibility is represented by the shaded area. The parts insensitive to light touch and to intermediate degrees of heat and cold are enclosed within the dotted line. (Head and Sherren.)] #The Ulnar Nerve.#--The most common injury of this nerve is its division in transverse accidental wounds just above the wrist. In the arm it may be contused, along with the radial, in crutch paralysis; in the region of the elbow it may be injured in fractures or dislocations, or it may be accidentally divided in the operation for excising the elbow-joint. When it is injured _at or above the elbow_, there is paralysis of the flexor carpi ulnaris, the ulnar half of the flexor digitorum profundus, all the interossei, the two medial lumbricals, and the adductors of the thumb. The hand assumes a characteristic attitude: the index and middle fingers are extended at the metacarpo-phalangeal joints owing to paralysis of the interosseous muscles attached to them; the little and ring fingers are hyper-extended at these joints in consequence of the paralysis of the lumbricals; all the fingers are flexed at the inter-phalangeal joints, the flexion being most marked in the little and ring fingers--claw-hand or _main en griffe_. On flexing the wrist, the hand is tilted to the radial side, but the paralysis of the flexor carpi ulnaris is often compensated for by the action of the palmaris longus. The little and ring fingers can be flexed to a slight degree by the slips of the flexor sublimis attached to them and supplied by the median nerve; flexion of the terminal phalanx of the little finger is almost impossible. Adduction and abduction movements of the fingers are lost. Adduction of the thumb is carried out, not by the paralysed adductor pollicis, but the movement may be simulated by the long flexor and extensor muscles of the thumb. Epicritic sensibility is lost over the little finger, the ulnar half of the ring finger, and that part of the palm and dorsum of the hand to the ulnar side of a line drawn longitudinally through the ring finger and continued upwards. Protopathic sensibility is lost over an area which varies in different cases. Deep sensibility is usually lost over an area almost as extensive as that of protopathic insensibility. When the nerve is _divided at the wrist_, the adjacent tendons are also frequently severed. If divided below the point at which its dorsal branch is given off, the sensory paralysis is much less marked, and the injury is therefore liable to be overlooked until the wasting of muscles and typical _main en griffe_ ensue. The loss of sensibility after division of the nerve before the dorsal branch is given off resembles that after division at the elbow, except that in uncomplicated cases deep sensibility is usually retained. If the tendons are divided as well, however, deep touch is also lost. Care must be taken in all these injuries to prevent deformity; a splint must be worn, at least during the night, until the muscles regain their power of voluntary movement, and then exercises should be instituted. #Dislocation of the ulnar nerve# at the elbow results from sudden and violent flexion of the joint, the muscular effort causing stretching or laceration of the fascia that holds the nerve in its groove; it is predisposed to if the groove is shallow as a result of imperfect development of the medial condyle of the humerus, and by cubitus valgus. The nerve slips forward, and may be felt lying on the medial aspect of the condyle. It may retain this position, or it may slip backwards and forwards with the movements of the arm. The symptoms at the time of the displacement are some disability at the elbow, and pain and tingling along the nerve, which are exaggerated by movement and by pressure. The symptoms may subside altogether, or a neuritis may develop, with severe pain shooting up the nerve. The dislocated nerve is easily replaced, but is difficult to retain in position. In recent cases the arm may be placed in the extended position with a pad over the condyle, care being taken to avoid pressure on the nerve. Failing relief, it is better to make a bed for the nerve by dividing the deep fascia behind the medial condyle and to stitch the edges of the fascia over the nerve. This operation has been successful in all the recorded cases. #The Sciatic Nerve.#--When this nerve is compressed, as by sitting on a fence, there is tingling and powerlessness in the limb as a whole, known as "sleeping" of the limb, but these phenomena are evanescent. _Injuries to the great sciatic nerve_ are rare except in war. Partial division is more common than complete, and it is noteworthy that the fibres destined for the peroneal nerve are more often and more severely injured than those for the tibial (internal popliteal). After complete division, all the muscles of the leg are paralysed; if the section is in the upper part of the thigh, the hamstrings are also paralysed. The limb is at first quite powerless, but the patient usually recovers sufficiently to be able to walk with a little support, and although the hamstrings are paralysed the knee can be flexed by the sartorius and gracilis. The chief feature is drop-foot. There is also loss of sensation below the knee except along the course of the long saphenous nerve on the medial side of the leg and foot. Sensibility to deep touch is only lost over a comparatively small area on the dorsum of the foot. #The Common Peroneal (external popliteal) nerve# is exposed to injury where it winds round the neck of the fibula, because it is superficial and lies against the unyielding bone. It may be compressed by a tourniquet, or it may be bruised or torn in fractures of the upper end of the bone. It has been divided in accidental wounds,--by a scythe, for example,--in incising for cellulitis, and in performing subcutaneous tenotomy of the biceps tendon. Cases have been observed of paralysis of the nerve as a result of prolonged acute flexion of the knee in certain occupations. When the nerve is divided, the most obvious result is "drop-foot"; the patient is unable to dorsiflex the foot and cannot lift his toes off the ground, so that in walking he is obliged to jerk the foot forwards and laterally. The loss of sensibility depends upon whether the nerve is divided above or below the origin of the large cutaneous branch which comes off just before it passes round the neck of the fibula. In course of time the foot becomes inverted and the toes are pointed--pes equino-varus--and trophic sores are liable to form. #The Tibial (internal popliteal) nerve# is rarely injured. #The Cranial nerves# are considered with affections of the head and neck (Vol. II.). NEURALGIA The term neuralgia is applied clinically to any pain which follows the course of a nerve, and is not referable to any discoverable cause. It should not be applied to pain which results from pressure on a nerve by a tumour, a mass of callus, an aneurysm, or by any similar gross lesion. We shall only consider here those forms of neuralgia which are amenable to surgical treatment. #Brachial Neuralgia.#--The pain is definitely located in the distribution of one of the branches or nerve roots, is often intermittent, and is usually associated with tingling and disturbance of tactile sensation. The root of the neck should be examined to exclude pressure as the cause of the pain by a cervical rib, a tumour, or an aneurysm. When medical treatment fails, the nerve-trunks may be injected with saline solution or recourse may be had to operative measures, the affected cords being exposed and stretched through an incision in the posterior triangle of the neck. If this fails to give relief, the more serious operation of resecting the posterior roots of the affected nerves within the vertebral canal may be considered. _Neuralgia of the sciatic nerve_--#sciatica#--is the most common form of neuralgia met with in surgical practice. It is chiefly met with in adults of gouty or rheumatic tendencies who suffer from indigestion, constipation, and oxaluria--in fact, the same type of patients who are liable to lumbago, and the two affections are frequently associated. In hospital practice it is commonly met with in coal-miners and others who assume a squatting position at work. The onset of the pain may follow over-exertion and exposure to cold and wet, especially in those who do not take regular exercise. Any error of diet or indulgence in beer or wine may contribute to its development. The essential symptom is paroxysmal or continuous pain along the course of the nerve in the buttock, thigh, or leg. It may be comparatively slight, or it may be so severe as to prevent sleep. It is aggravated by movement, so that the patient walks lame or is obliged to lie up. It is aggravated also by any movement which tends to put the nerve on the stretch, as in bending down to put on the shoes, such movements also causing tingling down the nerve, and sometimes numbness in the foot. This may be demonstrated by flexing the thigh on the abdomen, the knee being kept extended; there is no pain if the same manoeuvre is repeated with the knee flexed. The nerve is sensitive to pressure, the most tender points being its emergence from the greater sciatic foramen, the hollow between the trochanter and the ischial tuberosity, and where the common peroneal nerve winds round the neck of the fibula. The muscles of the thigh are often wasted and are liable to twitch. The clinical features vary a good deal in different cases; the affection is often obstinate, and may last for many weeks or even months. In the sciatica that results from neuritis and perineuritis, there is marked tenderness on pressure due to the involvement of the nerve filaments in the sheath of the nerve, and there may be patches of cutaneous anaesthesia, loss of tendon reflexes, localised wasting of muscles, and vaso-motor and trophic changes. The presence of the reaction of degeneration confirms the diagnosis of neuritis. In long-standing cases the pain and discomfort may lead to a postural scoliosis (_ischias-scoliotica_). _Diagnosis._--Pain referred along the course of the sciatic nerve on one side, or, as is sometimes the case, on both sides, is a symptom of tumours of the uterus, the rectum, or the pelvic bones. It may result also from the pressure of an abscess or an aneurysm either inside the pelvis or in the buttock, and is sometimes associated with disease of the spinal medulla, such as tabes. Gluteal fibrositis may be mistaken for sciatica. It is also necessary to exclude such conditions as disease in the hip or sacro-iliac joint, especially tuberculous disease and arthritis deformans, before arriving at a diagnosis of sciatica. A digital examination of the rectum or vagina is of great value in excluding intra-pelvic tumours. _Treatment_ is both general and local. Any constitutional tendency, such as gout or rheumatism, must be counteracted, and indigestion, oxaluria, and constipation should receive appropriate treatment. In acute cases the patient is confined to bed between blankets, the limb is wrapped in thermogene wool, and the knee is flexed over a pillow; in some cases relief is experienced from the use of a long splint, or slinging the leg in a Salter's cradle. A rubber hot-bottle may be applied over the seat of greatest pain. The bowels should be well opened by castor oil or by calomel followed by a saline. Salicylate of soda in full doses, or aspirin, usually proves effectual in relieving pain, but when this is very intense it may call for injections of heroin or morphin. Potassium iodide is of benefit in chronic cases. Relief usually results from bathing, douching, and massage, and from repeated gentle stretching of the nerve. This may be carried out by passive movements of the limb--the hip being flexed while the knee is kept extended; and by active movements--the patient flexing the limb at the hip, the knee being maintained in the extended position. These exercises, which may be preceded by massage, are carried out night and morning, and should be practised systematically by those who are liable to sciatica. Benefit has followed the injection into the nerve itself, or into the tissues surrounding it, of normal saline solution; from 70-100 c.c. are injected at one time. If the pain recurs, the injection may require to be repeated on many occasions at different points up and down the nerve. Needling or acupuncture consists in piercing the nerve at intervals in the buttock and thigh with long steel needles. Six or eight needles are inserted and left in position for from fifteen to thirty minutes. In obstinate and severe cases the nerve may be _forcibly stretched_. This may be done bloodlessly by placing the patient on his back with the hip flexed to a right angle, and then gradually extending the knee until it is in a straight line with the thigh (Billroth). A general anaesthetic is usually required. A more effectual method is to expose the nerve through an incision at the fold of the buttock, and forcibly pull upon it. This operation is most successful when the pain is due to the nerve being involved in adhesions. #Trigeminal Neuralgia.#--A severe form of epileptiform neuralgia occurs in the branches of the fifth nerve, and is one of the most painful affections to which human flesh is liable. So far as its pathology is known, it is believed to be due to degenerative changes in the semilunar (Gasserian) ganglion. It is met with in adults, is almost invariably unilateral, and develops without apparent cause. The pain, which occurs in paroxysms, is at first of moderate severity, but gradually becomes agonising. In the early stages the paroxysms occur at wide intervals, but later they recur with such frequency as to be almost continuous. They are usually excited by some trivial cause, such as moving the jaws in eating or speaking, touching the face as in washing, or exposure to a draught of cold air. Between the paroxysms the patient is free from pain, but is in constant terror of its return, and the face wears an expression of extreme suffering and anxiety. When the paroxysm is accompanied by twitching of the facial muscles, it is called _spasmodic tic_. The skin of the affected area may be glazed and red, or may be pale and moist with inspissated sweat, the patient not daring to touch or wash it. There is excessive tenderness at the points of emergence of the different branches on the face, and pressure over one or other of these points may excite a paroxysm. In typical cases the patient is unable to take any active part in life. The attempt to eat is attended with such severe pain that he avoids taking food. In some cases the suffering is so great that the patient only obtains sleep by the use of hypnotics, and he is often on the verge of suicide. _Diagnosis._--There is seldom any difficulty in recognising the disease. It is important, however, to exclude the hysterical form of neuralgia, which is characterised by its occurrence earlier in life, by the pain varying in situation, being frequently bilateral, and being more often constant than paroxysmal. _Treatment._--Before having recourse to the measures described below, it is advisable to give a thorough trial to the medical measures used in the treatment of neuralgia. _The Injection of Alcohol into the Nerve._--The alcohol acts by destroying the nerve fibres, and must be brought into direct contact with them; if the nerve has been properly struck the injection is followed by complete anaesthesia in the distribution of the nerve. The relief may last for from six months to three years; if the pain returns, the injection may be repeated. The strength of the alcohol should be 85 per cent., and the amount injected about 2 c.c.; a general, or preferably a local, anaesthetic (novocain) should be employed (Schlosser); the needle is 8 cm. long, and 0.7 mm. in diameter. The severe pain which the alcohol causes may be lessened, after the needle has penetrated to the necessary depth, by passing a few cubic centimetres of a 2 per cent. solution of _novocain-suprarenin_ through it before the alcohol is injected. The treatment by injection of alcohol is superior to the resection of branches of the nerve, for though relapses occur after the treatment with alcohol, renewed freedom from pain may be obtained by its repetition. The ophthalmic division should not, however, be treated in this manner, for the alcohol may escape into the orbit and endanger other nerves in this region. Harris recommends the injection of alcohol into the semilunar ganglion. _Operative Treatment._--This consists in the removal of the affected nerve or nerves, either by resection--_neurectomy_; or by a combination of resection with twisting or tearing of the nerve from its central connections--_avulsion_. To prevent the regeneration of the nerve after these operations, the canal of exit through the bone should be obliterated; this is best accomplished by a silver screw-nail driven home by an ordinary screw-driver (Charles H. Mayo). When the neuralgia involves branches of two or of all three trunks, or when it has recurred after temporary relief following resection of individual branches, the _removal of the semilunar ganglion_, along with the main trunks of the maxillary and mandibular divisions, should be considered. The operation is a difficult and serious one, but the results are satisfactory so far as the cure of the neuralgia is concerned. There is little or no disability from the unilateral paralysis of the muscles of mastication; but on account of the insensitiveness of the cornea, the eye must be protected from irritation, especially during the first month or two after the operation; this may be done by fixing a large watch-glass around the edge of the orbit with adhesive plaster. If the ophthalmic branch is not involved, neither it nor the ganglion should be interfered with; the maxillary and mandibular divisions should be divided within the skull, and the foramen rotundum and foramen ovale obliterated. CHAPTER XVII THE SKIN AND SUBCUTANEOUS TISSUE Structure of skin--_Blisters_--_Callosities_--_Corns_--_Chilblains_ --_Boils_--_Carbuncle_--_Abscess_--_Veldt sores_--Tuberculosis of skin: _Inoculation tubercle_--_Lupus_: _Varieties_--Sporotrichosis --Elephantiasis--Sebaceous cysts or wens--Moles--Horns--New growths: _Fibroma_; _Papilloma_; _Adenoma_; _Epithelioma_; _Rodent cancer_; _Melanotic cancer_; _Sarcoma_--AFFECTIONS OF CICATRICES--_Varieties of scars_--_Keloid_--_Tumours_--AFFECTIONS OF NAILS. #Structure of Skin.#--The skin is composed of a superficial cellular layer--the epidermis, and the corium or true skin. The _epidermis_ is differentiated from without inwards into the stratum corneum, the stratum lucidum, the stratum granulosum, and the rete Malpighii or germinal layer, from which all the others are developed. The _corium_ or _true skin_ consists of connective tissue, in which ramify the blood vessels, lymphatics, and nerves. That part of the corium immediately adjoining the epidermis is known as the papillary portion, and contains the terminal loops of the cutaneous blood vessels and the terminations of the cutaneous nerves. The deeper portion of the true skin is known as the reticular portion, and is largely composed of adipose tissue. #Blisters# result from the exudation of serous fluid beneath the horny layer of the epidermis. The fluid may be clear, as in the blisters of a recent burn, or blood-stained, as in the blisters commonly accompanying fractures of the leg. It may become purulent as a result of infection, and this may be the starting-point of lymphangitis or cellulitis. The skin should be disinfected and the blisters punctured. When infected, the separated horny layer must be cut away with scissors to allow of the necessary purification. #Callosities# are prominent, indurated masses of the horny layer of the epidermis, where it has been exposed to prolonged friction and pressure. They occur on the fingers and hand as a result of certain occupations and sports, but are most common under the balls of the toes or heel. A bursa may form beneath a callosity, and if it becomes inflamed may cause considerable suffering; if suppuration ensues, a sinus may form, resembling a perforating ulcer of the foot. The _treatment_ of callosities on the foot consists in removing pressure by wearing properly fitting boots, and in applying a ring pad around the callosity; another method is to fit a sock of spongiopilene with a hole cut out opposite the callosity. After soaking in hot water, the overgrown horny layer is pared away, and the part painted daily with a saturated solution of salicylic acid in flexile collodion. [Illustration: FIG. 93.--Callosities and Corns on the Sole and Plantar Aspect of the Toes in a woman who was also the subject of flat-foot.] #Corns.#--A corn is a localised overgrowth of the horny layer of the epidermis, which grows downwards, pressing upon and displacing the sensitive papillae of the corium. Corns are due to the friction and pressure of ill-fitting boots, and are met with chiefly on the toes and sole of the foot. A corn is usually hard, dry, and white; but it may be sodden from moisture, as in "soft corns" between the toes. A bursa may form beneath a corn, and if inflamed constitutes one form of bunion. When suppuration takes place in relation to a corn, there is great pain and disability, and it may prove the starting-point of lymphangitis. The _treatment_ consists in the wearing of properly fitting boots and stockings, and, if the symptoms persist, the corn should be removed. This is done after the manner of chiropodists by digging out the corn with a suitably shaped knife. A more radical procedure is to excise, under local anaesthesia, the portion of skin containing the corn and the underlying bursa. The majority of so-called corn solvents consist of a solution of salicylic acid in collodion; if this is painted on daily, the epidermis dies and can then be pared away. The unskilful paring of corns may determine the occurrence of senile gangrene in those who are predisposed to it by disease of the arteries. [Illustration: FIG. 94.--Ulcerated Chilblains on Fingers of a Child.] #Chilblains.#--Chilblain or _erythema pernio_ is a vascular disturbance resulting from the alternate action of cold and heat on the distal parts of the body. Chilblains are met with chiefly on the fingers and toes in children and anaemic girls. In the mild form there is a sensation of burning and itching, the part becomes swollen, of a dusky red colour, and the skin is tense and shiny. In more severe cases the burning and itching are attended with pain, and the skin becomes of a violet or wine-red colour. There is a third degree, closely approaching frost-bite, in which the skin tends to blister and give way, leaving an indolent raw surface popularly known as a "broken chilblain." Those liable to chilblains should take open-air exercise, nourishing food, cod-liver oil, and tonics. Woollen stockings and gloves should be worn in cold weather, and sudden changes of temperature avoided. The symptoms may be relieved by ichthyol ointment, glycerin and belladonna, or a mixture of Venice turpentine, castor oil, and collodion applied on lint which is wrapped round the toe. Another favourite application is one of equal parts of tincture of capsicum and compound liniment of camphor, painted over the area night and morning. Balsam of Peru or resin ointment spread on gauze should be applied to broken chilblains. The most effective treatment is Bier's bandage applied for about six hours twice daily; it can be worn while the patient is following his occupation; in chronic cases this may be supplemented with hot-air baths. #Boils and Carbuncles.#--These result from infection with the staphylococcus aureus, which enters the orifices of the ducts of the skin under the influence of friction and pressure, as was demonstrated by the well-known experiment of Garre, who produced a crop of pustules and boils on his own forearm by rubbing in a culture of the staphylococcus aureus. A #boil# results when the infection is located in a hair follicle or sebaceous gland. A hard, painful, conical swelling develops, to which, so long as the skin retains its normal appearance, the term "blind boil" is applied. Usually, however, the skin becomes red, and after a time breaks, giving exit to a drop or two of thick pus. After an interval of from six to ten days a soft white slough is discharged; this is known as the "core," and consists of the necrosed hair follicle or sebaceous gland. After the separation of the core the boil heals rapidly, leaving a small depressed scar. Boils are most frequently met with on the back of the neck and the buttocks, and on other parts where the skin is coarse and thick and is exposed to friction and pressure. The occurrence of a number or a succession of boils is due to spread of the infection, the cocci from the original boil obtaining access to adjacent hair follicles. The spread of boils may be unwittingly promoted by the use of a domestic poultice or the wearing of infected underclothing. While boils are frequently met with in debilitated persons, and particularly in those suffering from diabetes or Bright's disease, they also occur in those who enjoy vigorous health. They seldom prove dangerous to life except in diabetic subjects, but when they occur on the face there is a risk of lymphatic and of general pyogenic infection. Boils may be differentiated from syphilitic lesions of the skin by their acute onset and progress, and by the absence of other evidence of syphilis; and from the malignant or anthrax pustule by the absence of the central black eschar and of the circumstances which attend upon anthrax infection. _Treatment._--The skin of the affected area should be painted with iodine, and a Klapp's suction bell applied thrice daily. If pus forms, the skin is frozen with ethyl-chloride and a small incision made, after which the application of the suction bell is persevered with. The further treatment consists in the use of diluted boracic or resin ointment. In multiple boils on the trunk and limbs, lysol or boracic baths are of service; the underclothing should be frequently changed, and that which is discarded must be disinfected. In patients with recurrence of boils about the neck, re-infection frequently takes place from the scalp, to which therefore treatment should be directed. Any impaired condition of health should be corrected; when, there is sugar or albumen in the urine the conditions on which these depend must receive appropriate treatment. When there are successive crops of boils, recourse should be had to vaccines. In refractory cases benefit has followed the subcutaneous injection of lipoid solution containing tin. #Carbuncle# may be looked upon as an aggregation of boils, and is characterised by a densely hard base and a brownish-red discoloration of the skin. It is usually about the size of a crown-piece, but it may continue to enlarge until it attains the size of a dinner-plate. The patient is ill and feverish, and the pain may be so severe as to prevent sleep. As time goes on several points of suppuration appear, and when these burst there are formed a number of openings in the skin, giving it a cribriform appearance; these openings exude pus. The different openings ultimately fuse and the large adherent greyish-white slough is exposed. The separation of the slough is a tedious process, and the patient may become exhausted by pain, discharge, and toxin absorption. When the slough is finally thrown off, a deep gap is left, which takes a long time to heal. A large carbuncle is a grave disease, especially in a weakly person suffering from diabetes or chronic alcoholism; we have on several occasions seen diabetic coma supervene and the patient die without recovering consciousness. In the majority of cases the patient is laid aside for several months. It is most common in male adults over forty years of age, and is usually situated on the back between the shoulders. When it occurs on the face or anterior part of the neck it is especially dangerous, because of the greater risk of dissemination of the infection. A carbuncle is to be differentiated from an ulcerated gumma and from anthrax pustule. [Illustration: FIG. 95.--Carbuncle of seventeen days' duration in a woman aet. 57.] _Treatment._--Pain is relieved by full doses of opium or codein, and these drugs are specially indicated when sugar is present in the urine. Vaccines may be given a trial. The diet should be liberal and easily digested, and strychnin and other stimulants may be of service. Locally the treatment is carried out on the same lines as for boils. In some cases it is advisable to excise the carbuncle or to make incisions across it in different directions, so that the resulting wound presents a stellate appearance. #Acute Abscesses of the Skin and Subcutaneous Tissue in Young Children.#--In young infants, abscesses are not infrequently met with scattered over the trunk and limbs, and are probably the result of infection of the sebaceous glands from dirty underclothing. The abscesses should be opened, and the further spread of infection prevented by cleansing of the skin and by the use of clean under-linen. Similar abscesses are met with on the scalp in association with eczema, impetigo, and pediculosis. #Veldt Sore.#--This sore usually originates in an abrasion of the epidermis, such as a sun blister, the bite of an insect, or a scratch. A pustule forms and bursts, and a brownish-yellow scab forms over it. When this is removed, an ulcer is left which has little tendency to heal. These sores are most common about the hands, arms, neck, and feet, and are most apt to occur in those who have had no opportunities of washing, and who have lived for a long time on tinned foods. #Tuberculosis of the Skin.#--Interest attaches chiefly to the primary forms of tuberculosis of the skin in which the bacilli penetrate from without--inoculation tubercle and lupus. #Inoculation Tubercle.#--The appearances vary with the conditions under which the inoculation takes place. As observed on the fingers of adults, the affection takes the form of an indolent painless swelling, the epidermis being red and glazed, or warty, and irregularly fissured. Sometimes the epidermis gives way, forming an ulcer with flabby granulations. The infection rarely spreads to the lymphatics, but we have seen inoculation tubercle of the index-finger followed by a large cold abscess on the median side of the upper arm and by a huge mass of breaking down glands in the axilla. In children who run about barefooted in towns, tubercle may be inoculated into wounds in the sole or about the toes, and although the local appearances may not be characteristic, the nature of the infection is revealed by its tendency to spread up the limb along the lymph vessels, giving rise to abscesses and fungating ulcers in relation to the femoral glands. #Tuberculous Lupus.#--This is an extremely chronic affection of the skin. It rarely extends to the lymph glands, and of all tuberculous lesions is the least dangerous to life. The commonest form of lupus--_lupus vulgaris_--usually commences in childhood or youth, and is most often met with on the nose or cheek. The early and typical appearance is that of brownish-yellow or pink nodules in the skin, about the size of hemp seed. Healing frequently occurs in the centre of the affected area while the disease continues to extend at the margin. When there is actual destruction of tissue and ulceration--the so-called "_lupus excedens_" or "_ulcerans_"--healing is attended with cicatricial contraction, which may cause unsightly deformity. When the cheek is affected, the lower eyelid may be drawn down and everted; when the lips are affected, the mouth may be distorted or seriously diminished in size. When the nose is attacked, both the skin and mucous surfaces are usually involved, and the nasal orifices may be narrowed or even obliterated; sometimes the soft parts, including the cartilages, are destroyed, leaving only the bones covered by tightly stretched scar tissue. The disease progresses slowly, healing in some places and spreading at others. The patient complains of a burning sensation, but little of pain, and is chiefly concerned about the disfigurement. Nothing is more characteristic of lupus than the appearance of fresh nodules in parts which have already healed. In the course of years large tracts of the face and neck may become affected. From the lips it may spread to the gum and palate, giving to the mucous membrane the appearance of a raised, bright-red, papillary or villous surface. When the disease affects the gums, the teeth may become loose and fall out. [Illustration: FIG. 96.--Tuberculous Elephantiasis in a woman aet. 35.] On parts of the body other than the face, the disease is even more chronic, and is often attended with a considerable production of dense fibrous tissue--the so-called _fibroid lupus_. Sometimes there is a warty thickening of the epidermis--_lupus verrucosus_. In the fingers and toes it may lead to a progressive destruction of tissue like that observed in leprosy, and from the resulting loss of portions of the digits it has been called _lupus mutilans_. In the lower extremity a remarkable form of the disease is sometimes met with, to which the term _lupus elephantiasis_ (Fig. 96) has been applied. It commences as an ordinary lupus of the toes or dorsum of the foot, from which the tuberculous infection spreads to the lymph vessels, and the limb as a whole becomes enormously swollen and unshapely. Finally, a long-standing lupus, especially on the cheek, may become the seat of epithelioma--_lupus epithelioma_--usually of the exuberant or cauliflower type, which, like other epitheliomas that originate in scar tissue, presents little tendency to infect the lymphatics. The _diagnosis_ of lupus is founded on the chronic progress and long duration, and the central scarring with peripheral extension of the disease. On the face it is most liable to be confused with syphilis and with rodent cancer. The syphilitic lesion belongs to the tertiary period, and although presenting a superficial resemblance to tuberculosis, its progress is more rapid, so that within a few months it may involve an area of skin as wide as would be affected by lupus in as many years. Further, it readily yields to anti-syphilitic treatment. In cases of tertiary syphilis in which the nose is destroyed, it will be noticed that the bones have suffered most, while in lupus the destruction of tissue involves chiefly the soft parts. Rodent cancer is liable to be mistaken for lupus, because it affects the same parts of the face; it is equally chronic, and may partly heal. It begins later in life, however, the margin of the ulcer is more sharply defined, and often presents a "rolled" appearance. _Treatment._--When the disease is confined to a limited area, the most rapid and certain cure is obtained by _excision_; larger areas are scraped with the sharp spoon. The _ray treatment_ includes the use of luminous, Rontgen, or radium rays, and possesses the advantage of being comparatively painless and of being followed by the least amount of scarring and deformity. Encouraging results have also been obtained by the application of carbon dioxide snow. #Multiple subcutaneous tuberculous nodules# are met with chiefly in children. They are indolent and painless, and rarely attract attention until they break down and form abscesses, which are usually about the size of a cherry, and when these burst sinuses or ulcers result. If the overlying skin is still intact, the best treatment is excision. If the abscess has already infected the skin, each focus should be scraped and packed. #Sporotrichosis# is a mycotic infection due to the sporothrix Shenkii. It presents so many features resembling syphilis and tubercle that it is frequently mistaken for one or other of these affections. It occurs chiefly in males between fifteen and forty-five, who are farmers, fruit and vegetable dealers, or florists. There is usually a history of trauma of the nature of a scratch or a cut, and after a long incubation period there develop a series of small, hard, round nodules in the skin and subcutaneous tissue which, without pain or temperature, soften into cold abscesses and leave indolent ulcers or sinuses. The infection is of slow progress and follows the course of the lymphatics. From the gelatinous pus the organism is cultivated without difficulty, and this is the essential step in arriving at a diagnosis. The disease yields in a few weeks to full doses of iodide of potassium. #Elephantiasis.#--This term is applied to an excessive enlargement of a part depending upon an overgrowth of the skin and subcutaneous cellular tissue, and it may result from a number of causes, acting independently or in combination. The condition is observed chiefly in the extremities and in the external organs of generation. _Elephantiasis from Lymphatic or Venous Obstruction._--Of this the best-known example is _tropical elephantiasis_ (E. arabum), which is endemic in Samoa, Barbadoes, and other places. It attacks the lower extremity or the genitals in either sex (Figs. 97, 98). The disease is usually ushered in with fever, and signs of lymphangitis in the part affected. After a number of such attacks, the lymph vessels appear to become obliterated, and the skin and subcutaneous cellular tissue, being bathed in stagnant lymph--which possibly contains the products of streptococci--take on an overgrowth, which continues until the part assumes gigantic proportions. In certain cases the lymph trunks have been found to be blocked with the parent worms of the filaria Bancrofti. Cases of elephantiasis of the lower extremity are met with in this country in which there are no filarial parasites in the lymph vessels, and these present features closely resembling the tropical variety, and usually follow upon repeated attacks of lymphangitis or erysipelas. The part affected is enormously increased in size, and causes inconvenience from its bulk and weight. In contrast to ordinary dropsy, there is no pitting on pressure, and the swelling does not disappear on elevation of the limb. The skin becomes rough and warty, and may hang down in pendulous folds. Blisters form on the surface and yield an abundant exudate of clear lymph. From neglect of cleanliness, the skin becomes the seat of eczema or even of ulceration attended with foul discharge. Samson Handley has sought to replace the blocked lymph vessels by burying in the subcutaneous tissue of the swollen part a number of stout silk threads--_lymphangioplasty_. By their capillary action they drain the lymph to a healthy region above, and thus enable it to enter the circulation. It has been more successful in the face and upper limb than in the lower extremity. If the tissues are infected with pus organisms, a course of vaccines should precede the operation. [Illustration: FIG. 97.--Elephantiasis in a woman aet. 45.] A similar type of elephantiasis may occur after extirpation of the lymph glands in the axilla or groin; in the leg in long-standing standing varix and phlebitis with chronic ulcer; in the arm as a result of extensive cancerous disease of the lymphatics in the axilla secondarily to cancer of the breast; and in extensive tuberculous disease of the lymphatics. The last-named is chiefly observed in the lower limb in young adult women, and from its following upon lupus of the toes or foot it has been called _lupus elephantiasis_. The tuberculous infection spreads slowly up the limb by way of the lymph vessels, and as these are obliterated the skin and cellular tissues become hypertrophied, and the surface is studded over with fungating tuberculous masses of a livid blue colour. As the more severe forms of the disease may prove dangerous to life by pyogenic complications inducing gangrene of the limb, the question of amputation may have to be considered. [Illustration: FIG. 98.--Elephantiasis of Penis and Scrotum in native of Demerara. (Mr. Annandale's case.)] Belonging to this group also is a form of _congenital elephantiasis_ resulting from the circular constriction of a limb _in utero_ by amniotic bands. _Elephantiasis occurring apart from lymphatic or venous obstruction_ is illustrated by _elephantiasis nervorum_, in which there is an overgrowth of the skin and cellular tissue of an extremity in association with neuro-fibromatosis of the cutaneous nerves (Fig. 89); and by _elephantiasis Graecorum_--a form of leprosy in which the skin of the face becomes the seat of tumour-like masses consisting of leprous nodules. It is also illustrated by _elephantiasis involving the scrotum_ as a result of prolonged irritation by the urine in cases in which the penis has been amputated and the urine has infiltrated the scrotal tissues over a period of years. #Sebaceous Cysts.#--Atheromatous cysts or wens are formed in relation to the sebaceous glands and hair follicles. They are commonly met with in adults, on the scalp (Fig. 99), face, neck, back, and external genitals. Sometimes they are multiple, and they may be met with in several members of the same family. They are smooth, rounded, or discoid cysts, varying in size from a split-pea to a Tangerine orange. In consistence they are firm and elastic, or fluctuating, and are incorporated with the overlying skin, but movable on the deeper structures. The orifice of the partly blocked sebaceous follicle is sometimes visible, and the contents of the cyst can be squeezed through the opening. The wall of the cyst is composed of a connective-tissue capsule lined by stratified squamous epithelium. The contents consist of accumulated epithelial cells, and are at first dry and pearly white in appearance, but as a result of fatty degeneration they break down into a greyish-yellow pultaceous and semi-fluid material having a peculiar stale odour. It is probable that the decomposition of the contents is the result of the presence of bacteria, and that from the surgical point of view they should be regarded as infective. A sebaceous cyst may remain indefinitely without change, or may slowly increase in size, the skin over it becoming stretched and closely adherent to the cyst wall as a result of friction and pressure. The contents may ooze from the orifice of the duct and dry on the skin surface, leading to the formation of a sebaceous horn (Fig. 100). As a result of injury the cyst may undergo sudden enlargement from haemorrhage into its interior. Recurrent attacks of inflammation frequently occur, especially in wens of the face and scalp. Suppuration may ensue and be followed by cure of the cyst, or an offensive fungating ulcer forms which may be mistaken for epithelioma. True cancerous transformation is rare. Wens are to be _diagnosed_ from dermoids, from fatty tumours, and from cold abscesses. Dermoids usually appear before adult life, and as they nearly always lie beneath the fascia, the skin is movable over them. A fatty tumour is movable, and is often lobulated. The confusion with a cold abscess is most likely to occur in wens of the neck or back, and it may be impossible without the use of an exploring needle to differentiate between them. [Illustration: FIG. 99.--Multiple Sebaceous Cysts or Wens; the larger ones are of many years' duration.] _Treatment._--The removal of wens is to be recommended while they are small and freely movable, as they are then easily shelled out after incising the overlying skin; sometimes splitting the cyst makes its removal easier. Local anaesthesia is to be preferred. It is important that none of the cyst wall be left behind. In large and adherent wens an ellipse of skin is removed along with the cyst. When inflamed, it may be impossible to dissect out the cyst, and the wall should be destroyed with carbolic acid, the resulting wound being treated by the open method. #Moles.#--The term mole is applied to a pigmented, and usually hairy, patch of skin, present at or appearing shortly after birth. The colour varies from brown to black, according to the amount of melanin pigment present. The lesion consists in an overgrowth of epidermis which often presents an alveolar arrangement. Moles vary greatly in size: some are mere dots, others are as large as the palm of the hand, and occasionally a mole covers half the face. In addition to being unsightly, they bleed freely when abraded, are liable to ulcerate from friction and pressure, and occasionally become the starting-point of melanotic cancer. Rodent cancer sometimes originates in the slightly pigmented moles met with on the face. Overgrowths in relation to the cutaneous nerves, especially the plexiform neuroma, occasionally originate in pigmented moles. Soldau believes that the pigmentation and overgrowth of the epidermis in moles are associated with, and probably result from, a fibromatosis of the cutaneous nerves. _Treatment._--The quickest way to get rid of a mole is to excise it; if the edges of the gap cannot be brought together with sutures, recourse should be had to grafting. In large hairy moles of the face whose size forbids excision, radium or the X-rays should be employed. Excellent results have been obtained by refrigeration with solid carbon dioxide. In children and women with delicate skin, applications of from ten to thirty seconds suffice. In persons with coarse skin an application of one minute may be necessary, and it may have to be repeated. #Horns.#--The _sebaceous_ horn results from the accumulation of the dried contents of a wen on the surface of the skin: the sebaceous material after drying up becomes cornified, and as fresh material is added to the base the horn increases in length (Fig. 100). The _wart_ horn grows from a warty papilloma of the skin. _Cicatrix_ horns are formed by the heaping up of epidermis in the scars that result from burns. _Nail_ horns are overgrown nails (keratomata of the nail bed), and are met with chiefly in the great toe of elderly bedridden patients. If an ulcer forms at the base of a horn, it may prove the starting-point of epithelioma, and for this reason, as well as for others, horns should be removed. [Illustration: FIG. 100.--Sebaceous Horn growing from Auricle. (Dr. Kenneth Maclachan's case.)] #New Growths in the Skin and Subcutaneous Tissue.#--The _Angioma_ has been described with diseases of blood vessels. _Fibroma._--Various types of fibroma occur in the skin. A soft pedunculated fibroma, about the size of a pea, is commonly met with, especially on the neck and trunk; it is usually solitary, and is easily removed with scissors. The multiple, soft fibroma known as _molluscum fibrosum_, which depends upon a neuro-fibromatosis of the cutaneous nerves, is described with the tumours of nerves. Hard fibromas occurring singly or in groups may be met with, especially in the skin of the buttock, and may present a local malignancy, recurring after removal like the "recurrent fibroid" of Paget. The "painful subcutaneous nodule" is a solitary fibroma related to one of the cutaneous nerves. The hard fibroma known as _keloid_ is described with the affections of scars. #Papilloma.#--The _common wart_ or verruca is an outgrowth of the surface epidermis. It may be sessile or pedunculated hard or soft. The surface may be smooth, or fissured and foliated like a cauliflower, or it may be divided up into a number of spines. Warts are met with chiefly on the hands, and are often multiple, occurring in clusters or in successive crops. Multiple warts appear to result from some contagion, the nature of which is unknown; they sometimes occur in an epidemic form among school-children, and show a remarkable tendency to disappear spontaneously. The solitary flat-topped wart which occurs on the face of old people may, if irritated, become the seat of epithelioma. A warty growth of the epidermis is a frequent accompaniment of moles and of that variety of lupus known as _lupus verrucosus_. _Treatment._--In the multiple warts of children the health should be braced up by a change to the seaside. A dusting-powder, consisting of boracic acid with 5 per cent. salicylic acid, may be rubbed into the hands after washing and drying. The persistent warts of young adults should be excised after freezing with chloride of ethyl. When cutting is objected to, they may be painted night and morning with salicylic collodion, the epidermis being dehydrated with alcohol before each application. _Venereal warts_ occur on the genitals of either sex, and may form large cauliflower-like masses on the inner surface of the prepuce or of the labia majora. Although frequently co-existing with gonorrhoea or syphilis, they occur independently of these diseases, being probably acquired by contact with another individual suffering from warts (C. W. Cathcart). They give rise to considerable irritation and suffering, and when cleanliness is neglected there may be an offensive discharge. In the female, the cauliflower-like masses are dissected from the labia; in the male, the prepuce is removed and the warts on the glans are snipped off with scissors. In milder cases, the warts usually disappear if the parts are kept absolutely dry and clean. A useful dusting-powder is one consisting of calamine and 5 per cent. salicylic acid; the exsiccated sulphate of iron, in the form of a powder, may be employed in cases which resist this treatment. #Adenoma.#--This is a comparatively rare tumour growing from the glands of the skin. One variety, known as the "tomato tumour," which apparently originates from _the sweat glands_, is met with on the scalp and face in women past middle life. These growths are often multiple; the individual tumours vary in size, and the skin, which is almost devoid of hairs, is glistening and tightly stretched over them. A similar tumour may occur on the nose. The _sebaceous adenoma_, which originates from the sebaceous glands, forms a projecting tumour on the face or scalp, and when the skin is irritated it may ulcerate and fungate. The treatment consists in the removal of the tumour along with the overlying skin. The exuberant masses on the nose known as "rhinophyma," "lipoma nasi," or "potato nose" are of the nature of sebaceous adenoma, and are removed by shaving them off with a knife until the normal shape of the nose is restored Healing takes place with remarkable rapidity. #Cancer.#--There are several types of primary cancer of the skin, the most important being squamous epithelioma, rodent cancer, and melanotic cancer. [Illustration: FIG. 101.--Paraffin Epithelioma.] #Epithelioma# occurs in a variety of forms. When originating in a small ulcer or wart-for example on the face in old people--it presents the features of a chronic indurated ulcer. A more exuberant and rapidly growing form of epithelial cancer, described by Hutchinson as the _crateriform ulcer_, commences on the face as a small red pimple which rapidly develops into an elevated mass shaped like a bee-hive, and breaks down in the centre. Epithelioma may develop anywhere on the body in relation to long-standing ulcers, especially that resulting from a burn or from lupus; this form usually presents an exuberant outgrowth of epidermis not unlike a cauliflower. An interesting example of epithelioma has been described by Neve of Kashmir. The natives in that province are in the habit of carrying a fire-basket suspended from the waist, which often burns the skin and causes a chronic ulcer, and many of these ulcers become the seat of epithelioma, due, in Neve's opinion, to the actual contact of the sooty pan with the skin. The term _trade epithelioma_ has been applied to that form met with in those who follow certain occupations, such as paraffin workers and chimney-sweeps. The most recent member of this group is the _X-ray carcinoma_, which is met with in those who are constantly exposed to the irritation of the X-rays; there is first a chronic dermatitis with warty overgrowth of the surface epithelium, pigmentation, and the formation of fissures and warts. The trade epithelioma varies a good deal in malignancy, but it tends to cause death in the same manner as other epitheliomas. Epithelial cancer has also been observed in those who have taken arsenic over long periods for medicinal purposes. [Illustration: FIG. 102.--Rodent Cancer of Inner Canthus.] #Rodent Cancer# (Rodent Ulcer).--This is a cancer originating in the sweat glands or sebaceous follicles, or in the foetal residues of cutaneous glands. The cells are small and closely packed together in alveoli or in reticulated columns; cell nests are rare. It is remarkably constant in its seat of origin, being nearly always located on the lateral aspect of the nose or in the vicinity of the lower eyelid (Fig. 102). It is rare on the trunk or limbs. It commences as a small flattened nodule in the skin, the epidermis over it being stretched and shining. The centre becomes depressed, while the margins extend in the form of an elevated ridge. Sooner or later the epidermis gives way in the centre, exposing a smooth raw surface devoid of granulations. [Illustration: FIG. 103.--Rodent Cancer of fifteen years' duration, which has destroyed the contents of the Orbit. (Sir Montagu Cotterill's case)] The margin, while in parts irregular, is typically represented by a well-defined "rolled" border which consists of the peripheral portion of the cancer that has not broken down. The central ulcer may temporarily heal. There is itching but little pain, and the condition progresses extremely slowly; rodent cancers which have existed for many years are frequently met with. The disease attacks and destroys every structure with which it comes in contact, such as the eyelids, the walls of the nasal cavities, and the bones of the face; hence it may produce the most hideous deformities (Fig. 103). The patient may succumb to haemorrhage or to infective complications such as erysipelas or meningitis. Secondary growths in the lymph glands, while not unknown, are extremely rare. We have only seen them once--in a case of rodent cancer in the groin. _Diagnosis._--Lupus is the disease most often mistaken for rodent cancer. Lupus usually begins earlier in life, it presents apple-jelly nodules, and lacks the rounded, elevated border. Syphilitic lesions progress more rapidly, and also lack the characteristic margin. The differentiation from squamous epithelioma is of considerable importance, as the latter affection spreads more rapidly, involves the lymph glands early, and is much more dangerous to life. _Treatment._--In rodent cancers of limited size--say less than one inch in diameter--free excision is the most rapid and certain method of treatment. The alternative is the application of radium or of the Rontgen rays, which, although requiring many exposures, results in cure with the minimum of disfigurement. If the cancer already covers an extensive area, or has invaded the cavity of the orbit or nose, radium or X-rays yield the best results. The effect is soon shown by the ingrowth of healthy epithelium from the surrounding skin, and at the same time the discharge is lessened. Good results are also reported from the application of carbon dioxide snow, especially when this follows upon a course of X-ray treatment. #Paget's disease# of the nipple is an epithelioma occurring in women over forty years of age: a similar form of epithelioma is sometimes met with at the umbilicus or on the genitals. #Melanotic Cancer.#--Under this head are included all new growths which contain an excess of melanin pigment. Many of these were formerly described as melanotic sarcoma. They nearly always originate in a pigmented mole which has been subjected to irritation. The primary growth may remain so small that its presence is not even suspected, or it may increase in size, ulcerate, and fungate. The amount of pigment varies: when small in amount the growth is brown, when abundant it is a deep black. The most remarkable feature is the rapidity with which the disease becomes disseminated along the lymphatics, the first evidence of which is an enlargement of the lymph glands. As the primary growth is often situated on the sole of the foot or in the matrix of the nail of the great toe, the femoral and inguinal glands become enlarged in succession, forming tumours much larger than the primary growth. Sometimes the dissemination involves the lymph vessels of the limb, forming a series of indurated pigmented cords and nodules (Fig. 104). Lastly, the dissemination may be universal throughout the body, and this usually occurs at a comparatively early stage. The secondary growths are deeply pigmented, being usually of a coal-black colour, and melanin pigment may be present in the urine. When recurrence takes place in or near the scar left by the operation, the cancer nodules are not necessarily pigmented. [Illustration: FIG. 104.--Diffuse Melanotic Cancer of Lymphatics of Skin secondary to a Growth in the Sole of the Foot.] To extirpate the disease it is necessary to excise the tumour, with a zone of healthy skin around it and a somewhat large zone of the underlying subcutaneous tissue and deep fascia. Hogarth Pringle recommends that a broad strip of subcutaneous fascia up to and including the nearest anatomical group of glands should be removed with the tumour in one continuous piece. #Secondary Cancer of the Skin.#--Cancer may spread to the skin from a subjacent growth by direct continuity or by way of the lymphatics. Both of these processes are so well illustrated in cases of mammary cancer that they will be described in relation to that disease. #Sarcoma# of various types is met with in the skin. The fibroma, after excision, may recur as a fibro-sarcoma. The alveolar sarcoma commences as a hard lump and increases in size until the epidermis gives way and an ulcer is formed. [Illustration: FIG. 105.--Melanotic Cancer of Forehead with Metastases in Lymph Vessels and Glands. (Mr. D. P. D. Wilkie's case.)] A number of fresh tumours may spring up around the original growth. Sometimes the primary growth appears in the form of multiple nodules which tend to become confluent. Excision, unless performed early, is of little avail, and in any case should be followed up by exposure to radium. AFFECTIONS OF CICATRICES A cicatrix or scar consists of closely packed bundles of white fibres covered by epidermis; the skin glands and hair follicles are usually absent. The size, shape, and level of the cicatrix depend upon the conditions which preceded healing. A healthy scar, when recently formed, has a smooth, glossy surface of a pinkish colour, which tends to become whiter as a result of obliteration of the blood vessels concerned in its formation. _Weak Scars._--A scar is said to be weak when it readily breaks down as a result of irritation or pressure. The scars resulting from severe burns and those over amputation stumps are especially liable to break down from trivial causes. The treatment is to excise the weak portion of the scar and bring the edges of the gap together. _Contracted scars_ frequently cause deformity either by displacing parts, such as the eyelid or lip, or by fixing parts and preventing the normal movements--for example, a scar on the flexor aspect of a joint may prevent extension of the forearm (Fig. 63). These are treated by dividing the scar, correcting the deformity, and filling up the gap with epithelial grafts, or with a flap of the whole thickness of the skin. When deformity results from _depression of a scar_, as is not uncommon after the healing of a sinus, the treatment is to excise the scar. Depressed scars may be raised by the injection of paraffin into the subcutaneous tissue. _Painful Scars._--Pain in relation to a scar is usually due to nerve fibres being compressed or stretched in the cicatricial tissue; and in some cases to ascending neuritis. The treatment consists in excising the scar or in stretching or excising a portion of the nerve affected. _Pigmented or Discoloured Scars._--The best-known examples are the blue coloration which results from coal-dust or gunpowder, the brown scars resulting from chronic ulcer with venous congestion of the leg, and the variously coloured scars caused by tattooing. The only satisfactory method of getting rid of the coloration is to excise the scar; the edges are brought together by sutures, or the raw surface is covered with skin-grafts according to the size of the gap. _Hypertrophied Scars._--Scars occasionally broaden out and become prominent, and on exposed parts this may prove a source of disappointment after operations such as those for goitre or tuberculous glands in the neck. There is sometimes considerable improvement from exposure to the X-rays. _Keloid._--This term is applied to an overgrowth of scar tissue which extends beyond the area of the original wound, and the name is derived from the fact that this extension occurs in the form of radiating processes, suggesting the claws of a crab. It is essentially a fibroma or new growth of fibrous tissue, which commences in relation to the walls of the smaller blood vessels; the bundles of fibrous tissue are for the most part parallel with the surface, and the epidermis is tightly stretched over them. It is more frequent in the negro and in those who are, or have been, the subjects of tuberculous disease. [Illustration: FIG. 106.--Recurrent Keloid in scar left by operation for tuberculous glands in a girl aet. 7.] Keloid may attack scars of any kind, such as those resulting from leech-bites, acne pustules, boils or blisters; those resulting from operation or accidental wounds; and the scars resulting from burns, especially when situated over the sternum, appear to be specially liable. The scar becomes more and more conspicuous, is elevated above the surface, of a pinkish or brownish-pink pink colour, and sends out irregular prolongations around its margins. The patient may complain of itching and burning, and of great sensitiveness of the scar, even to contact with the clothing. There is a natural hesitation to excise keloid because of the fear of its returning in the new scar. The application of radium is, so far as we know, the only means of preventing such return. The irritation associated with keloid may be relieved by the application of salicylic collodion or of salicylic and creosote plaster. _Epithelioma_ is liable to attack scars in old people, especially those which result from burns sustained early in childhood and have never really healed. From the absence of lymphatics in scar tissue, the disease does not spread to the glands until it has invaded the tissues outside the scar; the prognosis is therefore better than in epithelioma in general. It should be excised widely; in the lower extremity when there is also extensive destruction of tissue from an antecedent chronic ulcer or osteomyelitis, it may be better to amputate the limb. AFFECTION OF THE NAILS _Injuries._--When a nail is contused or crushed, blood is extravasated beneath it, and the nail is usually shed, a new one growing in its place. A splinter driven underneath the nail causes great pain, and if organisms are carried in along with it, may give rise to infective complications. The free edge of the nail should be clipped away to allow of the removal of the foreign body and the necessary disinfection. _Trophic Changes._--The growth of the nails may be interfered with in any disturbance of the general health. In nerve lesions, such as a divided nerve-trunk, the nails are apt to suffer, becoming curved, brittle, or furrowed, or they may be shed. _Onychia_ is the term applied to an infection of the soft parts around the nail or of the matrix beneath it. The commonest form of onychia has already been referred to with whitlow. There is a superficial variety resulting from the extension of a purulent blister beneath the nail lifting it up from its bed, the pus being visible through the nail. The nail as well as the raised horny layer of the epidermis should be removed. A deeper and more troublesome onychia results from infection at the nail-fold; the infection spreads slowly beneath the fold until it reaches the matrix, and a drop or two of pus forms beneath the nail, usually in the region of the lunule. This affection entails a disability of the finger which may last for weeks unless it is properly treated. Treatment by hyperaemia, using a suction bell, should first be tried, and, failing improvement, the nail-fold and lunule should be frozen, and a considerable portion removed with the knife; if only a small portion of the nail is removed, the opening is blocked by granulations springing from the matrix. A new nail is formed, but it is liable to be misshapen. _Tuberculous onychia_ is met with in children and adolescents. It appears as a livid or red swelling at the root of the nail and spreading around its margins. The epidermis, which is thin and shiny, gives way, and the nail is usually shed. [Illustration: FIG. 107.--Subungual Exostosis growing from Distal Phalanx of Great Toe, showing Ulceration of Skin and Displacement of Nail. _a._ Surface view. _b._ On section.] _Syphilitic_ affections of the nails assume various aspects. A primary chancre at the edge of the nail may be mistaken for a whitlow, especially if it is attended with much pain. Other forms of onychia occur during secondary syphilis simultaneously with the skin eruptions, and may prove obstinate and lead to shedding of the nails. They also occur in inherited syphilis. In addition to general treatment, an ointment containing 5 per cent. of oleate of mercury should be applied locally. _Ingrowing Toe-nail._--This is more accurately described as an overgrowth of the soft tissues along the edge of the nail. It is most frequently met with in the great toe in young adults with flat-foot whose feet perspire freely, who wear ill-fitting shoes, and who cut their toe-nails carelessly or tear them with their fingers. Where the soft tissues are pressed against the edge of the nail, the skin gives way and there is the formation of exuberant granulations and of discharge which is sometimes foetid. The affection is a painful one and may unfit the patient for work. In mild cases the condition may be remedied by getting rid of contributing causes and by disinfecting the skin and nail; the nail is cut evenly, and the groove between it and the skin packed with an antiseptic dusting-powder, such as boracic acid. In more severe cases it may be necessary to remove an ellipse of tissue consisting of the edge of the nail, together with the subjacent matrix and the redundant nail-fold. _Subungual exostosis_ is an osteoma growing from the terminal phalanx of the great toe (Fig. 107). It raises the nail and may be accompanied by ulceration of the skin over the most prominent part of the growth. The soft parts, including the nail, should be reflected towards the dorsum in the form of a flap, the base of the exostosis divided with the chisel, and the exostosis removed. _Malignant disease_ in relation to the nails is rare. Squamous epithelioma and melanotic cancer are the forms met with. Treatment consists in amputating the digit concerned, and in removing the associated lymph glands. CHAPTER XVIII THE MUSCLES, TENDONS, AND TENDON SHEATHS INJURIES: _Contusion_; _Sprain_; _Rupture_--Hernia of muscle--Dislocation of tendons--Wounds--Avulsion of tendon. DISEASES OF MUSCLE AND OF TENDONS: _Atrophy_; _"Muscular rheumatism"_--_Fibrositis_; _Contracture_; _Myositis_; _Calcification and Ossification_; _Tumours_. DISEASES OF TENDON SHEATHS: _Teno-synovitis_. INJURIES #Contusion of Muscle.#--Contusion of muscle, which consists in bruising of its fibres and blood vessels, may be due to violence acting from without, as in a blow, a kick, or a fall; or from within, as by the displacement of bone in a fracture or dislocation. The symptoms are those common to all contusions, and the patient complains of severe pain on attempting to use the muscle, and maintains an attitude which relaxes it. If the sheath of the muscle also is torn, there is subcutaneous ecchymosis, and the accumulation of blood may result in the formation of a haematoma. Restoration of function is usually complete; but when the nerve supplying the muscle is bruised at the same time, as may occur in the deltoid, wasting and loss of function may be persistent. In exceptional cases the process of repair may be attended with the formation of bone in the substance of the muscle, and this may likewise impair its function. A contused muscle should be placed at rest and supported by cotton wool and a bandage; after an interval, massage and appropriate exercises are employed. #Sprain and Partial Rupture of Muscle.#--This lesion consists in overstretching and partial rupture of the fibres of a muscle or its aponeurosis. It is of common occurrence in athletes and in those who follow laborious occupations. It may follow upon a single or repeated effort--especially in those who are out of training. Familiar examples of muscular sprain are the "labourer's" or "golfer's back," affecting the latissimus dorsi or the sacrospinalis (erector spinae); the "tennis-player's elbow," and the "sculler's sprain," affecting the muscles and ligaments about the elbow; the "angler's elbow," affecting the common origin of the extensors and supinators; the "sprinter's sprain," affecting the flexors of the hip; and the "jumper's and dancer's sprain," affecting the muscles of the calf. The patient complains of pain, often sudden in onset, of tenderness on pressure, and of inability to carry out the particular movement by which the sprain was produced. The disability varies in different cases, and it may incapacitate the patient from following his occupation or sport for weeks or, if imperfectly treated, even for months. The _treatment_ consists in resting the muscle from the particular effort concerned in the production of the sprain, in gently exercising it in other directions, in the use of massage, and the induction of hyperaemia by means of heat. In neglected cases, that is, where the muscle has not been exercised, the patient shrinks from using it and the disablement threatens to be permanent; it is sometimes said that adhesions have formed and that these interfere with the recovery of function. The condition may be overcome by graduated movements or by a sudden forcible movement under an anaesthetic. These cases afford a fruitful field for the bone-setter. #Rupture of Muscle or Tendon.#--A muscle or a tendon may be ruptured in its continuity or torn from its attachment to bone. The site of rupture in individual muscles is remarkably constant, and is usually at the junction of the muscular and tendinous portions. When rupture takes place through the belly of a muscle, the ends retract, the amount of retraction depending on the length of the muscle, and the extent of its attachment to adjacent aponeurosis or bone. The biceps in the arm, and the sartorius in the thigh, furnish examples of muscles in which the separation between the ends may be considerable. The gap in the muscle becomes filled with blood, and this in time is replaced by connective tissue, which forms a bond of union between the ends. When the space is considerable the connecting medium consists of fibrous tissue, but when the ends are in contact it contains a number of newly formed muscle fibres. In the process of repair, one or both ends of the muscle or tendon may become fixed by adhesions to adjacent structures, and if the distal portion of a muscle is deprived of its nerve supply it may undergo degeneration and so have its function impaired. Rupture of a muscle or tendon is usually the result of a sudden, and often involuntary, movement. As examples may be cited the rupture of the quadriceps extensor in attempting to regain the balance when falling backwards; of the gastrocnemius, plantaris, or tendo-calcaneus in jumping or dancing; of the adductors of the thigh in gripping a horse when it swerves--"rider's sprain"; of the abdominal muscles in vomiting, and of the biceps in sudden movements of the arm. Sometimes the effort is one that would scarcely be thought likely to rupture a muscle, as in the case recorded by Pagenstecher, where a professional athlete, while sitting at table, ruptured his biceps in a sudden effort to catch a falling glass. It would appear that the rupture is brought about not so much by the contraction of the muscle concerned, as by the contraction of the antagonistic muscles taking place before that of the muscle which undergoes rupture is completed. The violent muscular contractions of epilepsy, tetanus, or delirium rarely cause rupture. The _clinical features_ are usually characteristic. The patient experiences a sudden pain, with the sensation of being struck with a whip, and of something giving way; sometimes a distant snap is heard. The limb becomes powerless. At the seat of rupture there is tenderness and swelling, and there may be ecchymosis. As the swelling subsides, a gap may be felt between the retracted ends, and this becomes wider when the muscle is thrown into contraction. If untreated, a hard, fibrous cord remains at the seat of rupture. _Treatment._--The ends are approximated by placing the limb in an attitude which relaxes the muscle, and the position is maintained by bandages, splints, or special apparatus. When it is impossible thus to approximate the ends satisfactorily, the muscle or tendon is exposed by incision, and the ends brought into accurate contact by catgut sutures. This operation of primary suture yields the most satisfactory results, and is most successful when it is done within five or six days of the accident. Secondary suture after an interval of months is rendered difficult by the retraction of the ends and by their adhesion to adjacent structures. _Rupture of the biceps of the arm_ may involve the long or the short head, or the belly of the muscle. Most interest attaches to rupture of the long tendon of origin. There is pain and tenderness in front of the upper end of the humerus, the patient is unable to abduct or to elevate the arm, and he may be unable to flex the elbow when the forearm is supinated. The long axis of the muscle, instead of being parallel with the humerus, inclines downwards and outwards. When the patient is asked to contract the muscle, its belly is seen to be drawn towards the elbow. The _adductor longus_ may be ruptured, or torn from the pubes, by a violent effort to adduct the limb. A swelling forms in the upper and medial part of the thigh, which becomes smaller and harder when the muscle is thrown into contraction. The _quadriceps femoris_ is usually ruptured close to its insertion into the patella, in the attempt to avoid falling backwards. The injury is sometimes bilateral. The injured limb is rendered useless for progression, as it suddenly gives way whenever the knee is flexed. Treatment is conducted on the same lines as in transverse fracture of the patella; in the majority of cases the continuity of the quadriceps should be re-established by suture within five or six days of the accident. The _tendo calcaneus_ (Achillis) is comparatively easily ruptured, and the symptoms are sometimes so slight that the nature of the injury may be overlooked. The limb should be put up with the knee flexed and the toes pointed. This may be effected by attaching one end of an elastic band to the heel of a slipper, and securing the other to the lower third of the thigh. If this is not sufficient to bring the ends into apposition they should be approximated by an open operation. The _plantaris_ is not infrequently ruptured from trivial causes, such as a sudden movement in boxing, tennis, or hockey. A sharp stinging pain like the stroke of a whip is felt in the calf; there is marked tenderness at the seat of rupture, and the patient is unable to raise the heel without pain. The injury is of little importance, and if the patient does not raise the heel from the ground in walking, it is recovered from in a couple of weeks or so, without it being necessary to lay him up. #Hernia of Muscle.#--This is a rare condition, in which, owing to the fascia covering a muscle becoming stretched or torn, the muscular substance is protruded through the rent. It has been observed chiefly in the adductor longus. An oval swelling forms in the upper part of the thigh, is soft and prominent when the muscle is relaxed, less prominent when it is passively extended, and disappears when the muscle is thrown into contraction. It is liable to be mistaken, according to its situation, for a tumour, a cyst, a pouched vein, or a femoral or obturator hernia. Treatment is only called for when it is causing inconvenience, the muscle being exposed by a suitable incision, the herniated portion excised, and the rent in the sheath closed by sutures. #Dislocation of Tendons.#--Tendons which run in grooves may be displaced as a result of rupture of the confining sheath. This injury is met with chiefly in the tendons at the ankle and in the long tendon of the biceps. Dislocation of the _peronei tendons_ may occur, for example, from a violent twist of the foot. There is severe pain and considerable swelling on the lateral aspect of the ankle; the peroneus longus by itself, or together with the brevis, can be felt on the lateral aspect or in front of the lateral malleolus; the patient is unable to move the foot. By a little manipulation the tendons are replaced in their grooves, and are retained there by a series of strips of plaster. At the end of three weeks massage and exercises are employed. In other cases there is no history of injury, but whenever the foot is everted the tendon of the peroneus longus is liable to be jerked forwards out of its groove, sometimes with an audible snap. The patient suffers pain and is disabled until the tendon is replaced. Reduction is easy, but as the displacement tends to recur, an operation is required to fix the tendon in its place. An incision is made over the tendon; if the sheath is slack or torn, it is tightened up or closed with catgut sutures; or an artificial sheath is made by raising up a quadrilateral flap of periosteum from the lateral aspect of the fibula, and stitching it over the tendon. Similarly the _tibialis posterior_ may be displaced over the medial malleolus as a result of inversion of the foot. The _long tendon of the biceps_ may be dislocated laterally--or more frequently medially--as a result of violent or repeated rotation movements of the arm, such as are performed in wringing clothes. The patient is aware of the displacement taking place, and is unable to extend the forearm until the displaced tendon has been reduced by abducting the arm. In recurrent cases the patient may be able to dislocate the tendon at will, but the disability is so inconsiderable that there is rarely any occasion for interference. #Wounds of Muscles and Tendons.#--When a muscle is cut across in a wound, its ends should be brought together with sutures. If the ends are allowed to retract, and especially if the wound suppurates, they become united by scar tissue and fixed to bone or other adjacent structure. In a limb this interferes with the functions of the muscle; in the abdominal wall the scar tissue may stretch, and so favour the development of a ventral hernia. Tendons may be cut across accidentally, especially in those wounds so commonly met with above the wrist as a result, for example, of the hand being thrust through a pane of glass. It is essential that the ends should be sutured to each other, and as the proximal end is retracted the original wound may require to be enlarged in an upward direction. When primary suture has been omitted, or has failed in consequence of suppuration, the separated ends of the tendon become adherent to adjacent structures, and the function of the associated muscle is impaired or lost. Under these conditions the operation of secondary suture is indicated. A free incision is necessary to discover and isolate the ends of the tendon; if the interval is too wide to admit of their being approximated by sutures, means must be taken to lengthen the tendon, or one from some other part may be inserted in the gap. A new sheath may be provided for the tendon by resecting a portion of the great saphenous vein. _Injuries of the tendons of the fingers_ are comparatively common. One of the best known is the partial or complete rupture of the aponeurosis of the extensor tendon close to its insertion into the terminal phalanx--_drop-_ or _mallet-finger_. This may result from comparatively slight violence, such as striking the tip of the extended finger against an object, or the violence may be more severe, as in attempting to catch a cricket ball or in falling. The terminal phalanx is flexed towards the palm and the patient is unable to extend it. The treatment consists in putting up the finger with the middle joint strongly flexed. In neglected cases, a perfect functional result can only be obtained by operation; under a local anaesthetic, the ruptured tendon is exposed and is sutured to the base of the phalanx, which may be drilled for the passage of the sutures. _Subcutaneous rupture_ of one or other _of the digital tendons_ in the hand or at the wrist can be remedied only by operation. When some time has elapsed since the accident, the proximal end may be so retracted that it cannot be brought down into contact with the distal end, in which case a slip may be taken from an adjacent tendon; in the case of one of the extensors of the thumb, the extensor carpi radialis longus may be detached from its insertion and stitched to the distal end of the tendon of the thumb. Subcutaneous _rupture of the tendon of the extensor pollicis longus_ at the wrist takes place just after its emergence from beneath the annular ligament; the actual rupture may occur painlessly, more frequently a sharp pain is felt over the back of the wrist. The prominence of the tendon, which normally forms the ulnar border of the snuff-box, disappears. This lesion is chiefly met with in drummer-boys and is the cause of drummer's palsy. The only chance of restoring function is in uniting the ruptured tendon by open operation. [Illustration: FIG. 108.--Avulsion of Tendon with Terminal Phalanx of Thumb. (Surgical Museum, University of Edinburgh.)] _Avulsion of Tendons._--This is a rare injury, in which the tendons of a finger or toe are torn from their attachments along with a portion of the digit concerned. In the hand, it is usually brought about by the fingers being caught in the reins of a runaway horse, or being seized in a horse's teeth, or in machinery. It is usually the terminal phalanx that is separated, and with it the tendon of the deep flexor, which ruptures at its junction with the belly of the muscle (Fig. 108). The treatment consists in disinfecting the wound, closing the tendon-sheath, and trimming the mutilated finger so as to provide a useful stump. DISEASES OF MUSCLES AND TENDONS _Congenital absence_ of muscles is sometimes met with, usually in association with other deformities. The pectoralis major, for example, may be absent on one or on both sides, without, however, causing any disability, as other muscles enlarge and take on its functions. _Atrophy of Muscle._--Simple atrophy, in which the muscle elements are merely diminished in size without undergoing any structural alteration, is commonly met with as a result of disuse, as when a patient is confined to bed for a long period. In cases of joint disease, the muscles acting on the joint become atrophied more rapidly than is accounted for by disuse alone, and this is attributed to an interference with the trophic innervation of the muscles reflected from centres in the spinal medulla. It is more marked in the extensor than in the flexor groups of muscles. Those affected become soft and flaccid, exhibit tremors on attempted movement, and their excitability to the faradic current is diminished. _Neuropathic atrophy_ is associated with lesions of the nervous system. It is most pronounced in lesions of the motor nerve-trunks, probably because vaso-motor and trophic fibres are involved as well as those that are purely motor in function. It is attended with definite structural alterations, the muscle elements first undergoing fatty degeneration, and then being absorbed, and replaced to a large extent by ordinary connective tissue and fat. At a certain stage the muscles exhibit the reaction of degeneration. In the common form of paralysis resulting from poliomyelitis, many fibres undergo fatty degeneration and are replaced by fat, while at the same time there is a regeneration of muscle fibres. #Fibrositis# or "#Muscular Rheumatism#."--This clinical term is applied to a group of affections of which lumbago is the best-known example. The group includes lumbago, stiff-neck, and pleurodynia--conditions which have this in common, that sudden and severe pain is excited by movement of the affected part. The lesion consists in inflammatory hyperplasia of the connective tissue; the new tissue differs from normal fibrous tissue in its tendency to contract, in being swollen, painful and tender on pressure, and in the fact that it can be massaged away (Stockman). It would appear to involve mainly the fibrous tissue of muscles, although it may extend from this to aponeuroses, ligaments, periosteum, and the sheaths of nerves. The term _fibrositis_ was applied to it by Gowers in 1904. In _lumbago_--_lumbo-sacral fibrositis_--the pain is usually located over the sacrum, the sacro-iliac joint, or the aponeurosis of the lumbar muscles on one or both sides. The amount of tenderness varies, and so long as the patient is still he is free from pain. The slightest attempt to alter his position, however, is attended by pain, which may be so severe as to render him helpless for the moment. The pain is most marked on rising from the stooping or sitting posture, and may extend down the back of the hip, especially if, as is commonly the case, lumbago and gluteal fibrosis coexist. Once a patient has suffered from lumbago, it is liable to recur, and an attack may be determined by errors of diet, changes of weather, exposure to cold or unwonted exertion. It is met with chiefly in male adults, and is most apt to occur in those who are gouty or are the subjects of oxaluric dyspepsia. _Gluteal fibrositis_ usually follows exposure to wet, and affects the gluteal muscles, particularly the medius, and their aponeurotic coverings. When the condition has lasted for some time, indurated strands or nodules can be detected on palpating the relaxed muscles. The patient complains of persistent aching and stiffness over the buttock, and sometimes extending down the lateral aspect of the thigh. The pain is aggravated by such movements as bring the affected muscles into action. It is not referred to the line of the sciatic nerve, nor is there tenderness on pressing over the nerve, or sensations of tingling or numbness in the leg or foot. If untreated, the morbid process may implicate the sheath of the sciatic nerve and cause genuine sciatic neuralgia (Llewellyn and Jones). A similar condition may implicate the fascia lata of the thigh, or the calf muscles and their aponeuroses--_crural fibrositis_. In _painful stiff-neck_, or "rheumatic torticollis," the pain is located in one side of the neck, and is excited by some inadvertent movement. The head is held stiffly on one side as in wry-neck, the patient contracting the sterno-mastoid. There may be tenderness over the vertebral spines or in the lines of the cervical nerves, and the sterno-mastoid may undergo atrophy. This affection is more often met with in children. In _pleurodynia_--_intercostal fibrositis_--the pain is in the line of the intercostal nerves, and is excited by movement of the chest, as in coughing, or by any bodily exertion. There is often marked tenderness. A similar affection is met with in the _shoulder and arm_--_brachial fibrositis_--especially on waking from sleep. There is acute pain on attempting to abduct the arm, and there may be localised tenderness in the region of the axillary nerve. _Treatment._--The general treatment is concerned with the diet, attention to the stomach, bowels, and kidneys and with the correction of any gouty tendencies that may be present. Remedies such as salicylates are given for the relief of pain, and for this purpose drugs of the aspirin type are to be preferred, and these may be followed by large doses of iodide of potassium. Great benefit is derived from massage, and from the induction of hyperaemia by means of heat. Cupping or needling, or, in exceptional cases, hypodermic injections of antipyrin or morphin, may be called for. To prevent relapses of lumbago, the patient must take systematic exercises of all kinds, especially such as bring out the movements of the vertebral column and hip-joints. [Illustration: FIG. 109.--Volkmann's Ischaemic Contracture. When the wrist is flexed to a right angle it is possible to extend the fingers. (Photographs lent by Mr. Lawford Knaggs)] #Contracture of Muscles.#--Permanent shortening of muscles results from the prolonged approximation of their points of attachment, or from structural changes in their substance produced by injury or by disease. It is a frequent accompaniment and sometimes a cause of deformities, in the treatment of which lengthening of the shortened muscles or their tendons may be an essential step. #Myositis.#--_Ischaemic Myositis._--Volkmann was the first to describe a form of myositis followed by contracture, resulting from interference with the arterial blood supply. It is most frequently observed in the flexor muscles of the forearm in children and young persons under treatment for fractures in the region of the elbow, the splints and bandages causing compression of the blood vessels. There is considerable effusion of blood, the skin is tense, and the muscles, vessels, and nerves are compressed; this is further increased if the elbow is flexed and splints and tight bandages are applied. The muscles acquire a board-like hardness and no longer contract under the will, and passive motion is painful and restricted. Slight contracture of the fingers is usually the first sign of the malady; in time the muscles undergo further contraction, and this brings about a claw-like deformity of the hand. The affected muscles usually show the reaction of degeneration. In severe cases the median and ulnar nerves are also the seat of cicatricial changes (ischaemic neuritis). By means of splints, the interphalangeal, metacarpo-phalangeal, and wrist joints should be gradually extended until the deformity is over-corrected (R. Jones). Murphy advises resection of the radius and ulna sufficient to admit of dorsiflexion of the joints and lengthening of the flexor tendons. Various forms of _pyogenic_ infection are met with in muscle, most frequently in relation to pyaemia and to typhoid fever. These may result in overgrowth of the connective-tissue framework of the muscle and degeneration of its fibres, or in suppuration and the formation of one or more abscesses in the muscle substance. Repair may be associated with contracture. A _gonorrhoeal_ form of myositis is sometimes met with; it is painful, but rarely goes on to suppuration. In the early secondary period of _syphilis_, the muscles may be the seat of dull, aching, nocturnal pains, especially in the neck and back. _Syphilitic contracture_ is a condition which has been observed chiefly in the later secondary period; the biceps of the arm and the hamstrings in the thigh are the muscles more commonly affected. The striking feature is a gradually increasing difficulty of extending the limb at the elbow or knee, and progressive flexion of the joint. The affected muscle is larger and firmer than normal, and its electric excitability is diminished. In tertiary syphilis, individual muscles may become the seat of interstitial myositis or of gummata, and these affections readily yield to anti-syphilitic remedies. _Tuberculous disease_ in muscle, while usually due to extension from adjacent tissues, is sometimes the result of a primary infection through the blood-stream. Tuberculous nodules are found disseminated throughout the muscle; the surrounding tissues are indurated, and central caseation may take place and lead to abscess formation and sinuses. We have observed this form of tuberculous disease in the gastrocnemius and in the psoas--in the latter muscle apart from tuberculous disease in the vertebrae. #Tendinitis.#--German authors describe an inflammation of tendon as distinguished from inflammation of its sheath, and give it the name tendinitis. It is met with most frequently in the tendo-calcaneus in gouty and rheumatic subjects who have overstrained the tendon, especially during cold and damp weather. There is localised pain which is aggravated by walking, and the tendon is sensitive and swollen from a little above its insertion to its junction with the muscle. Gouty nodules may form in its substance. Constitutional measures, massage, and douching should be employed, and the tendon should be protected from strain. #Calcification and Ossification in Muscles, Tendons, and Fasciae.#--_Myositis ossificans._--Ossifications in muscles, tendons, fasciae, and ligaments, in those who are the subjects of arthritis deformans, are seldom recognised clinically, but are frequently met with in dissecting-rooms and museums. Similar localised ossifications are met with in Charcot's disease of joints, and in fractures which have repaired with exuberant callus. The new bone may be in the form of spicules, plates, or irregular masses, which, when connected with a bone, are called _false exostoses_ (Fig. 110). [Illustration: FIG. 110.--Ossification in Tendon of Ilio-psoas Muscle.] _Traumatic Ossification in Relation to Muscle._--Various forms of ossification are met with in muscle as the result of a single or of repeated injury. Ossification in the crureus or vastus lateralis muscle has been frequently observed as a result of a kick from a horse. Within a week or two a swelling appears at the site of injury, and becomes progressively harder until its consistence is that of bone. If the mass of new bone moves with the affected muscle, it causes little inconvenience. If, as is commonly the case, it is fixed to the femur, the action of the muscle is impaired, and the patient complains of pain and difficulty in flexing the knee. A skiagram shows the extent of the mass and its relationship to the femur. The treatment consists in excising the bony mass. Difficulty may arise in differentiating such a mass of bone from sarcoma; the ossification in muscle is uniformly hard, while the sarcoma varies in consistence at different parts, and the X-ray picture shows a clear outline of the bone in the vicinity of the ossification in muscle, whereas in sarcoma the involvement of the bone is shown by indentations and irregularity in its contour. A similar ossification has been observed in relation to the insertion of the brachialis muscle as a sequel of dislocation of the elbow. After reduction of the dislocation, the range of movement gradually diminishes and a hard swelling appears in front of the lower end of the humerus. The lump continues to increase in size and in three to four weeks the disability becomes complete. A radiogram shows a shadow in the muscle, attached at one part as a rule to the coronoid process. During the next three or four months, the lump in front of the elbow remains stationary in size; a gradual decrease then ensues, but the swelling persists, as a rule, for several years. [Illustration: FIG. 111.--Calcification and Ossification in Biceps and Triceps. (From a radiogram lent by Dr. C. A. Adair Dighton.)] Ossification in the adductor longus was first described by Billroth under the name of "rider's bone." It follows bruising and partial rupture of the muscle, and has been observed chiefly in cavalry soldiers. If it causes inconvenience the bone may be removed by operation. Ossification in the deltoid and pectoral muscles has been observed in foot-soldiers in the German army, and has received the name of "drill-bone"; it is due to bruising of the muscle by the recoil of the rifle. _Progressive Ossifying Myositis._--This is a rare and interesting disease, in which the muscles, tendons, and fasciae throughout the body become the seat of ossification. It affects almost exclusively the male sex, and usually begins in childhood or youth, sometimes after an injury, sometimes without apparent cause. The muscles of the back, especially the trapezius and latissimus, are the first to be affected, and the initial complaint is limitation of movement. [Illustration: FIG. 112.--Ossification in Muscles of Trunk in a case of generalised Ossifying Myositis. (Photograph lent by Dr. Rustomjee.)] The affected muscles show swellings which are rounded or oval, firm and elastic, sharply defined, without tenderness and without discoloration of the overlying skin. Skiagrams show that a considerable deposit of lime salts may precede the formation of bone, as is seen in Fig. 111. In course of time the vertebral column becomes rigid, the head is bent forward, the hips are flexed, and abduction and other movements of the arms are limited. The disease progresses by fits and starts, until all the striped muscles of the body are replaced by bone, and all movements, even those of the jaws, are abolished. The subjects of this disease usually succumb to pulmonary tuberculosis. There is no means of arresting the disease, and surgical treatment is restricted to the removal or division of any mass of bone that interferes with an important movement. A remarkable feature of this disease is the frequent presence of a deformity of the great toe, which usually takes the form of hallux valgus, the great toe coming to lie beneath the second one; the shortening is usually ascribed to absence of the first phalanx, but it has been shown to depend also on a synostosis and imperfect development of the phalanges. A similar deformity of the thumb is sometimes met with. Microscopical examination of the muscles shows that, prior to the deposition of lime salts and the formation of bone, there occurs a proliferation of the intra-muscular connective tissue and a gradual replacement and absorption of the muscle fibres. The bone is spongy in character, and its development takes place along similar lines to those observed in ossification from the periosteum. #Tumours of Muscle.#--With the exception of congenital varieties, such as the rhabdomyoma, tumours of muscle grow from the connective-tissue framework and not from the muscle fibres. Innocent tumours, such as the fibroma, lipoma, angioma, and neuro-fibroma, are rare. Malignant tumours may be primary in the muscle, or may result from extension from adjacent growths--for example, implication of the pectoral muscle in cancer of the breast--or they may be derived from tumours situated elsewhere. The diagnosis of an intra-muscular tumour is made by observing that the swelling is situated beneath the deep fascia, that it becomes firm and fixed when the muscle contracts, and that, when the muscle is relaxed, it becomes softer, and can be moved in the transverse axis of the muscle, but not in its long axis. Clinical interest attaches to that form of slowly growing fibro-sarcoma--_the recurrent fibroid of Paget_--which is most frequently met with in the muscles of the abdominal wall. A rarer variety is the ossifying chondro-sarcoma, which undergoes ossification to such an extent as to be visible in skiagrams. In primary sarcoma the treatment consists in removing the muscle. In the limbs, the function of the muscle that is removed may be retained by transplanting an adjacent muscle in its place. _Hydatid cysts_ of muscle resemble those developing in other tissues. DISEASES OF TENDON SHEATHS Tendon sheaths have the same structure and function as the synovial membranes of joints, and are liable to the same diseases. Apart from the tendon sheaths displayed in anatomical dissections, there is a loose peritendinous and perimuscular cellular tissue which is subject to the same pathological conditions as the tendon sheaths proper. #Teno-synovitis.#--The toxic or infective agent is conveyed to the tendon sheaths through the blood-stream, as in the gouty, gonorrhoeal, and tuberculous varieties, or is introduced directly through a wound, as in the common pyogenic form of teno-synovitis. _Teno-synovitis Crepitans._--In the simple or traumatic form of teno-synovitis, although the most prominent etiological factor is a strain or over-use of the tendon, there would appear to be some other, probably a toxic, factor in its production, otherwise the affection would be much more common than it is: only a small proportion of those who strain or over-use their tendons become the subjects of teno-synovitis. The opposed surfaces of the tendon and its sheath are covered with fibrinous lymph, so that there is friction when they move on one another. The _clinical features_ are pain on movement, tenderness on pressure over the affected tendon, and a sensation of crepitation or friction when the tendon is moved in its sheath. The crepitation may be soft like the friction of snow, or may resemble the creaking of new leather--"saddle-back creaking." There may be swelling in the long axis of the tendon, and redness and oedema of the skin. If there is an effusion of fluid into the sheath, the swelling is more marked and crepitation is absent. There is little tendency to the formation of adhesions. In the upper extremity, the sheath of the long tendon of the biceps may be affected, but the condition is most common in the tendons about the wrist, particularly in the extensors of the thumb, and it is most frequently met with in those who follow occupations which involve prolonged use or excessive straining of these tendons--for example, washerwomen or riveters. It also occurs as a result of excessive piano-playing, fencing, or rowing. At the ankle it affects the peronei, the extensor digitorum longus, or the tibialis anterior. It is most often met with in relation to the tendo-calcaneus--_Achillo-dynia_--and results from the pressure of ill-fitting boots or from the excessive use and strain of the tendon in cycling, walking, or dancing. There is pain in raising the heel from the ground, and creaking can be felt on palpation. The _treatment_ consists in putting the affected tendon at rest, and with this object a splint may be helpful; the usual remedies for inflammation are indicated: Bier's hyperaemia, lead and opium fomentations, and ichthyol and glycerine. The affection readily subsides under treatment, but is liable to relapse on a repetition of the exciting cause. _Gouty Teno-synovitis._--A deposit of urate of soda beneath the endothelial covering of tendons or of that lining their sheaths is commonly met with in gouty subjects. The accumulation of urates may result in the formation of visible nodular swellings, varying in size from a pea to a cherry, attached to the tendon and moving with it. They may be merely unsightly, or they may interfere with the use of the tendon. Recurrent attacks of inflammation are prone to occur. We have removed such gouty masses with satisfactory results. _Suppurative Teno-synovitis._--This form usually follows upon infected wounds of the fingers--especially of the thumb or little finger--and is a frequent sequel to whitlow; it may also follow amputation of a finger. Once the infection has gained access to the sheath, it tends to spread, and may reach the palm or even the forearm, being then associated with cellulitis. In moderately acute cases the tendon and its sheath become covered with granulations, which subsequently lead to the formation of adhesions; while in more acute cases the tendon sloughs. The pus may burst into the cellular tissue outside the sheath, and the suppuration is liable to spread to neighbouring sheaths or to adjacent bones or joints--for example, those of the wrist. The _treatment_ consists in inducing hyperaemia and making small incisions for the escape of pus. The site of incision is determined by the point of greatest tenderness on pressure. After the inflammation has subsided, active and passive movements are employed to prevent the formation of adhesions between the tendon and its sheath. If the tendon sloughs, the dead portion should be cut away, as its separation is extremely slow and is attended with prolonged suppuration. _Gonorrhoeal Teno-synovitis._--This is met with especially in the tendon sheaths about the wrist and ankle. It may occur in a mild form, with pain, impairment of movement, and oedema, and sometimes an elongated, fluctuating swelling, the result of serous effusion into the sheath. This condition may alternate with a gonorrhoeal affection of one of the larger joints. It may subside under rest and soothing applications, but is liable to relapse. In the more severe variety the skin is red, and the swelling partakes of the characters of a phlegmon with threatening suppuration; it may result in crippling from adhesions. Even if pus forms in the sheath, the tendon rarely sloughs. The treatment consists in inducing hyperaemia by Bier's method; and a vaccine may be employed with satisfactory results. #Tuberculous Disease of Tendon Sheaths.#--This is a comparatively common affection, and is analogous to tuberculous disease of the synovial membrane of joints. It may originate in the sheath, or may spread to it from an adjacent bone. The commonest form--hydrops--is that in which the synovial sheath is distended with a viscous fluid, and the fibrinous material on the free surface becomes detached and is moulded into melon-seed bodies by the movement of the tendon. The sheath itself is thickened by the growth of tuberculous granulation tissue. The bodies are smooth and of a dull-white colour, and vary greatly in size and shape. There may be an overgrowth of the fatty fringes of the synovial sheath, a condition described as "arborescent lipoma." The _clinical features_ vary with the tendon sheath affected. In the common flexor sheath of the hand an hour-glass-shaped swelling is formed, bulging above and below the transverse carpal (anterior annular) ligament--formerly known as _compound palmar ganglion_. There is little or no pain, but the fingers tend to be stiff and weak, and to become flexed. On palpation, it is usually possible to displace the contents of the sheath from one compartment to the other, and this may yield fluctuation, and, what is more characteristic, a peculiar soft crepitant sensation from the movement of the melon-seed bodies. In the sheath of the peronei or other tendons about the ankle, the swelling is sausage-shaped, and is constricted opposite the annular ligament. The onset and progress of the affection are most insidious, and the condition may remain stationary for long periods. It is aggravated by use or strain of the tendons involved. In exceptional cases the skin is thinned and gives way, resulting in the formation of a sinus. _Treatment._--In the common flexor sheath of the palm, an attempt may be made to cure the condition by removing the contents through a small incision and filling the cavity with iodoform glycerine, followed by the use of Bier's bandage. If this fails, the distended sheath is laid open, the contents removed, the wall scraped, and the wound closed. A less common form of tuberculous disease is that in which the sheath becomes the seat of _a diffuse tuberculous thickening_, not unlike the white swelling met with in joints, and with a similar tendency to caseation. A painless swelling of an elastic character forms in relation to the tendon sheath. It is hour-glass-shaped in the common flexor sheath of the palm, elongated or sausage-shaped in the extensors of the wrist and in the tendons at the ankle. The tuberculous granulation tissue is liable to break down and lead to the formation of a cold abscess and sinuses, and in our experience is often associated with disease in an adjacent bone or joint. In the peronei tendons, for example, it may result from disease of the fibula or of the ankle-joint. When conservative measures fail, excision of the affected sheath should be performed; the whole of the diseased area being exposed by free incision of the overlying soft parts, the sheath is carefully isolated from the surrounding tissues and is cut across above and below. Any tuberculous tissue on the tendon itself is removed with a sharp spoon. Associated bone or joint lesions are dealt with at the same time. In the after-treatment the functions of the tendons must be preserved by voluntary and passive movements. #Syphilitic Affections of Tendon Sheaths.#--These closely resemble the syphilitic affections of the synovial membrane of joints. During the secondary period the lesion usually consists in effusion into the sheath; gummata are met with during the tertiary period. Arborescent lipoma has been found in the sheaths of tendons about the wrist and ankle, sometimes in a multiple and symmetrical form, unattended by symptoms and disappearing under anti-syphilitic treatment. #Tumours of Tendon Sheaths.#--Innocent tumours, such as _lipoma_, _fibroma_, and _myxoma_, are rare. Special mention should be made of the _myeloma_ which is met with at the wrist or ankle as an elongated swelling of slow development, or over the phalanx of a finger as a small rounded swelling. The tumour tissue, when exposed by dissection, is of a chocolate or chamois-yellow colour, and consists almost entirely of giant cells. The treatment consists in dissecting the tumour tissue off the tendons, and this is usually successful in bringing about a permanent cure. All varieties of _sarcoma_ are met with, but their origin from tendon sheaths is not associated with special features. CHAPTER XIX THE BURSAE Anatomy--Normal and adventitious bursae--Injuries: Bursal haematoma--DISEASES: Infective bursitis; Traumatic or trade bursitis; Bursal hydrops; Solid bursal tumour; Gonorrhoeal and suppurative forms of bursitis; Tuberculous and syphilitic disease--Tumours--_Diseases of individual bursae in the upper and lower extremities_. A bursa is a closed sac lined by endothelium and containing synovia. Some are normally present--for instance, that between the skin and the patella, and that between the aponeurosis of the gluteus maximus and the great trochanter. _Adventitious bursae_ are developed as a result of abnormal pressure--for example, over the tarsal bones in cases of club-foot. #Injuries of Bursae.#--As a result of contusion, especially in bleeders, haemorrhage may occur into the cavity of a bursa and give rise to a _bursal haematoma_. Such a haematoma may mask a fracture of the bone beneath--for example, fracture of the olecranon. #Diseases of Bursae.#--The lining membrane of bursae resembles that of joints and tendon sheaths, and is liable to the same forms of disease. #Infective bursitis# frequently follows abrasions, scratches, and wounds of the skin over the prepatellar or olecranon bursa, and in neglected cases the infection transgresses the wall of the bursa and gives rise to a spreading cellulitis. #Traumatic or Trade Bursitis.#--This term may be conveniently applied to those affections of bursae which result from repeated slight traumatism incident to particular occupations. The most familiar examples of these are the enlargement of the prepatellar bursa met with in housemaids--the "housemaid's knee" (Fig. 113); the enlargement of the olecranon bursa--"miner's elbow"; and of the ischial bursa--"weaver's" or "tailor's bottom" (Fig. 116). These affections are characterised by an effusion of fluid into the sac of the bursa with thickening of its lining membrane. While friction and pressure are the most evident factors in their production, it is probable that there is also some toxic agent concerned, otherwise these affections would be much more common than they are. Of the countless housemaids in whom the prepatellar bursa is subjected to friction and pressure, only a small proportion become the subjects of housemaid's knee. _Clinical Features._--As these are best illustrated in the different varieties of prepatellar bursitis, it is convenient to take this as the type. In a number of cases the inflammation is acute and the patient is unable to use the limb; the part is hot, swollen, and tender, and fluctuation can be detected in the bursa. In the majority the condition is chronic, and the chief feature is the gradual accumulation of fluid constituting the _bursal hydrops_ or _hygroma_. When the affection has lasted some time, or has frequently relapsed, the wall of the bursa becomes thickened by fibrous tissue, which may be deposited irregularly, so that septa, bands, or fringes are formed, not unlike those met with in arthritis deformans. These fringes may be detached and form loose bodies like those met with in joints; less frequently there are fibrinous bodies of the melon-seed type, sometimes moulded into circular discs like wafers. The presence of irregular thickenings of the wall, or of loose bodies, may be recognised on palpation, especially in superficial bursae, if the sac is not tensely filled with fluid. The thickening of the wall may take place in a uniform and concentric fashion, resulting in the formation of a fibrous tumour--_the solid bursal tumour_--a small cavity remaining in the centre which serves to distinguish it from a new growth or neoplasm. [Illustration: FIG. 113.--Hydrops of Prepatellar Bursa in a housemaid.] The _treatment_ varies according to the variety and stage of the affection. In recent cases the symptoms subside under rest and the application of fomentations. Hydrops may be got rid of by blistering, by tapping, or by incision and drainage. When the wall is thickened, the most satisfactory treatment is to excise the bursa; the overlying skin being reflected in the shape of a horse-shoe flap or being removed along with the bursa. #Other Diseases of Bursae# are associated with _gonorrhoeal infection_, and with _rheumatism_, especially that following scarlet fever, and are apt to be persistent or to relapse after apparent cure. In the _gouty_ form, urate of soda is deposited in the wall of the bursa, and may result in the formation of chalky tumours, sometimes of considerable size (Fig. 114). [Illustration: FIG. 114.--Section through Bursa over external malleolus, showing deposit of urate of soda. (Cf. Fig. 117.)] _Tuberculous disease_ of bursae closely resembles that of tendon sheaths. It may occur as an independent affection, or may be associated with disease in an adjacent bone or joint. It is met with chiefly in the prepatellar and subdeltoid bursae, or in one of the bursae over the great trochanter. The clinical features are those of an indolent hydrops, with or without melon-seed bodies, or of uniform thickening of the wall of the bursa; the tuberculous granulation tissue may break down into a cold abscess, and give rise to sinuses. The best treatment is to excise the affected bursa, or, when this is impracticable, to lay it freely open, remove the tuberculous tissue with the sharp spoon or knife, and treat the cavity by the open method. _Syphilitic disease_ is rarely recognised except in the form of bursal and peri-bursal gummata in front of the knee-joint. _New growths_ include the fibroma, the myxoma, the myeloma or giant-celled tumour, and various forms of sarcoma. #Diseases of Individual Bursae.#--The _olecranon bursa_ is frequently the seat of pyogenic infection and of traumatic or trade bursitis, the latter being known as "miner's" or "student's elbow." [Illustration: FIG. 115.--Tuberculous Disease of Sub-deltoid Bursa. (From a photograph lent by Sir George T. Beatson.)] The _sub-deltoid_ or _sub-acromial bursa_, which usually presents a single cavity and does not normally communicate with the shoulder-joint, is indispensable in abduction and rotation of the humerus. When the arm is abducted, the fixed lower part or floor of the bursa is carried under the acromion, and the upper part or roof is rolled up in the same direction, hence tenderness over the inflamed bursa may disappear when the arm is abducted (Dawbarn's sign). It is liable to traumatic affections from a fall on the shoulder, pressure, or over-use of the limb. Pain, located commonly at the insertion of the deltoid, is a constant symptom and is especially annoying at night, the patient being unable to get into a comfortable position. Tenderness may be elicited over the anatomical limits of the bursa, and is usually most marked over the great tuberosity, just external to the inter-tubercular (bicipital) groove. When adhesions are present, abduction beyond 10 degrees is impossible. Demonstrable effusion is not uncommon, but is disguised by the overlying tissues. If left to himself, the patient tends to maintain the limb in the "sling position," and resists movements in the direction of abduction and rotation. In the treatment of this affection the arm should be maintained at a right angle to the body, the arm being rotated medially (Codman). When pain does not prevent it, movements of the arm and massage are persevered with. In neglected cases, when adhesions have formed and the shoulder is fixed, it may be necessary to break down the adhesions under an anaesthetic. The bursa is also liable to infective conditions, such as acute rheumatism, gonorrhoea, suppuration, or tubercle. In tuberculous disease a large fluctuating swelling may form and acquire the characters of a cold abscess (Fig. 115). The bursa underneath the tendon of the _subscapularis_ muscle when inflamed causes alteration in the attitude of the shoulder and impairment of its movements. An adventitious bursa forms over the _acromion_ process in porters and others who carry weights on the shoulder, and may be the seat of traumatic bursitis. The bursa under the _tendon of insertion of the biceps_, when the seat of disease, is attended with pain and swelling about a finger's breadth below the bend of the elbow; there is pain and difficulty in effecting the combined movement of flexion and supination, slight limitation of extension, and restriction of pronation. In the lower extremity, a large number of normal and adventitious bursae are met with and may be the seat of bursitis. That over the _tuberosity of the ischium_, when enlarged as a trade disease, is known as "weaver's" or "tailor's bottom." It may form a fluctuating swelling of great size, projecting on the buttock and extending down the thigh, and causing great inconvenience in sitting (Fig. 116). It sometimes contains a number of loose bodies. There are two bursae over the _great trochanter_, one superficial to, the other beneath the aponeurosis of the gluteus maximus; the latter is not infrequently infected by tuberculous disease that has spread from the trochanter. The bursa _between the psoas muscle and the capsule of the hip-joint_ may be the seat of tuberculous disease, and give rise to clinical features not unlike those of disease of the hip-joint. The limb is flexed, abducted and rotated out; there is a swelling in the upper part of Scarpa's triangle, but the movements are not restricted in directions which do not entail putting the ilio-psoas muscle on the stretch. Cartilaginous and partly ossified loose bodies may accumulate in the ilio-psoas bursa and distend it, both in a downward direction towards the hip-joint, with which it communicates, and upwards, projecting towards the abdomen. The bursa beneath the quadriceps extensor--_subcrural bursa_--usually communicates with the knee-joint and shares in its diseases. When shut off from the joint it may suffer independently, and when distended with fluid forms a horse-shoe swelling above the patella. In front of the patella and its ligament is the _prepatellar bursa_, which may have one, two, or three compartments, usually communicating with one another. It is the seat of the affection known as "housemaid's knee," which is very common and is sometimes bilateral, and, less frequently, of tuberculous disease which usually originates in the patella. [Illustration: FIG. 116.--Great Enlargement of the Ischial Bursa. (Mr. Scot-Skirving's case.)] The bursa _between the ligamentum patellae and the tibia_ is rarely the seat of disease. When it is, there is pain and tenderness referred to the ligament, the patient is unable to extend the limb completely, the tuberosity of the tibia is apparently enlarged, and there is a fluctuating swelling on either side of the ligament, most marked in the extended position of the limb. Of the numerous bursae in the popliteal space, that _between the semi-membranosus and the medial head of the gastrocnemius_ is most frequently the seat of disease, which is usually of the nature of a simple hydrops, forming a fluctuating egg-or sausage-shaped swelling at the medial side of the popliteal space. It is flaccid in the flexed, and tense in the extended position. As a rule it causes little inconvenience, and may be left alone. Otherwise it should be dissected out, and if, as is frequently the case, there is a communication with the knee-joint, this should be closed with sutures. [Illustration: FIG. 117.--Gouty Disease of Bursae in a tailor. The bursal tumours were almost entirely composed of urate of soda. (Cf. Fig. 114.)] An adventitious bursa may form over the _lateral malleolus_, especially in tailors, giving rise to the condition known as "tailor's ankle" (Fig. 117). The bursa _between the tendo-calcaneus (Achillis) and the upper part of the calcaneus_ may become inflamed--especially as a result of post-scarlatinal rheumatism or gonorrhoea. The affection is known as Achillo-bursitis. There is severe pain in the region of the insertion of the tendo-calcaneus, the movements at the ankle-joint are restricted, and the patient may be unable to walk. There is a tender swelling on either side of the tendon. When, in spite of palliative treatment, the affection persists or relapses, it is best to excise the bursa. The tendo-calcaneus is detached from the calcaneus, the bursa dissected out, and the tendon replaced. If there is a bony projection from the calcaneus, it should be shaved off with the chisel. The bursa that is sometimes met with on the under aspect of the calcaneus--_the subcalcanean bursa_--when inflamed, gives rise to pain and tenderness in the sole of the foot. This affection may be associated with a spinous projection from the bone, which is capable of being recognised in a skiagram. The soft parts of the heel are turned forwards as a flap, the bursa is dissected out, and the projection of bone, if present, is removed. The enlargement of adventitious bursae over the head of the first metatarsal in hallux valgus; over the tarsus, metatarsus, and digits in the different forms of club-foot; over the angular projection in Pott's disease of the spine; over the end of the bone in amputation stumps, and over hard tumours such as chondroma and osteoma, are described elsewhere. CHAPTER XX DISEASES OF BONE Anatomy and physiology--Regeneration of bone--Transplantation of bone. DISEASES OF BONE--Definition of terms--Pyogenic diseases: _Acute osteomyelitis and periostitis_; _Chronic and relapsing osteomyelitis_; _Abscess of bone_--Tuberculous disease--Syphilitic disease--Hydatids; Rickets; Osteomalacia--Ostitis deformans of Paget--Osteomyelitis fibrosa--Affections of bones in diseases of the nervous system--Fragilitas ossium--Tumours and cysts of bone. #Surgical Anatomy.#--During the period of growth, a long bone such as the tibia consists of a shaft or _diaphysis_, and two extremities or _epiphyses_. So long as growth continues there intervenes between the shaft and each of the epiphyses a disc of actively growing cartilage--_the epiphysial cartilage_; and at the junction of this cartilage with the shaft is a zone of young, vascular, spongy bone known as the _metaphysis_ or _epiphysial junction_. The shaft is a cylinder of compact bone enclosing the medullary canal, which is filled with yellow marrow. The extremities, which include the ossifying junctions, consist of spongy bone, the spaces of which are filled with red marrow. The articular aspect of the epiphysis is invested with a thick layer of hyaline cartilage, known as the _articular cartilage_, which would appear to be mainly nourished from the synovia. The external investment--the _periosteum_--is thick and vascular during the period of growth, but becomes thin and less vascular when the skeleton has attained maturity. Except where muscles are attached it is easily separated from the bone; at the extremities it is intimately connected with the epiphysial cartilage and with the epiphysis, and at the margin of the latter it becomes continuous with the capsule of the adjacent joint. It consists of two layers, an outer fibrous and an inner cellular layer; the cells, which are called osteoblasts, are continuous with those lining the Haversian canals and the medullary cavity. The arrangement of the _blood vessels_ determines to some extent the incidence of disease in bone. The nutrient artery, after entering the medullary canal through a special foramen in the cortex, bifurcates, and one main division runs towards each of the extremities, and terminates at the ossifying junction in a series of capillary loops projected against the epiphysial cartilage. This arrangement favours the lodgment of any organisms that may be circulating in the blood, and partly accounts for the frequency with which diseases of bacterial origin develop in the region of the ossifying junction. The diaphysis is also nourished by numerous blood vessels from the periosteum, which penetrate the cortex through the Haversian canals and anastomose with those derived from the nutrient artery. The epiphyses are nourished by a separate system of blood vessels, derived from the arteries which supply the adjacent joint. The veins of the marrow are of large calibre and are devoid of valves. The _nerves_ enter the marrow along with the arteries, and, being derived from the sympathetic system, are probably chiefly concerned with the innervation of the blood vessels, but they are also capable of transmitting sensory impulses, as pain is a prominent feature of many bone affections. It has long been believed that _the function of the periosteum_ is to form new bone, but this view has been questioned by Sir William Macewen, who maintains that its chief function is to limit the formation of new bone. His experimental observations appear to show that new bone is exclusively formed by the cellular elements or osteoblasts: these are found on the surface of the bone, lining the Haversian canals and in the marrow. We believe that it will avoid confusion in the study of the diseases of bone if the osteoblasts on the surface of the bone are still regarded as forming the deeper layer of the periosteum. The formation of new bone by the osteoblasts may be _defective_ as a result of physiological conditions, such as old age and disease of a part, and defective formation is often associated with atrophy, or more strictly speaking, absorption, of the existing bone, as is well seen in the edentulous jaw and in the neck of the femur of a person advanced in years. Defective formation associated with atrophy is also illustrated in the bones of the lower limbs of persons who are unable to stand or walk, and in the distal portion of a bone which is the seat of an ununited fracture. The same combination is seen in an exaggerated degree in the bones of limbs that are paralysed; in the case of adults, atrophy of bone predominates; in children and adolescents, defective formation is the more prominent feature, and the affected bones are attenuated, smooth on the surface, and abnormally light. On the other hand, the formation of new bone may be _exaggerated_, the osteoblasts being excited to abnormal activity by stimuli of different kinds: for example, the secretion of certain glandular organs, such as the pituitary and thyreoid; the diluted toxins of certain micro-organisms, such as the staphylococcus aureus and the spirochaete of syphilis; a condition of hyperaemia, such as that produced artificially by the application of a Bier's bandage or that which accompanies a chronic leg-ulcer. The new bone is laid down on the surface, in the Haversian canals, or in the cancellous spaces and medullary canal, or in all three situations. The new bone on the surface sometimes takes the form of a diffuse _encrustation_ of porous or spongy bone as in secondary syphilis, sometimes as a uniform increase in the girth of the bone--_hyperostosis_, sometimes as a localised heaping up of bone or _node_, and sometimes in the form of spicules, spoken of as _osteophytes_. When the new bone is laid down in the Haversian canals, cancellous spaces and medulla, the bone becomes denser and heavier, and is said to be _sclerosed_; in extreme instances this may result in obliteration of the medullary canal. Hyperostosis and sclerosis are frequently met with in combination, a condition that is well illustrated in the femur and tibia in tertiary syphilis; if the subject of this condition is confined to bed for several months before his death, the sclerosis may be undone, and rarefaction may even proceed beyond the normal, the bone becoming lighter and richer in fat, although retaining its abnormal girth. The _function of the epiphysial cartilage_ is to provide for the growth of the shaft in length. While all epiphysial cartilages contribute to this result, certain of them functionate more actively and for a longer period than others. Those at the knee, for example, contribute more to the length of limb than do those at the hip or ankle, and they are also the last to unite. In the upper limb the more active epiphyses are at the shoulder and wrist, and these also are the last to unite. The activity of the epiphysial cartilage may be modified as a result of disease. In rickets, for example, the formation of new bone may take place unequally, and may go on more rapidly in one half of the disc than in the other, with the result that the axis of the shaft comes to deviate from the normal, giving rise to knock-knee or bow-knee. In bacterial diseases originating in the marrow, if the epiphysial junction is directly involved in the destructive process, its bone-forming functions may be retarded or abolished, and the subsequent growth of the bone be seriously interfered with. On the other hand, if it is not directly involved but is merely influenced by the proximity of an infective focus, its bone-forming functions may be stimulated by the diluted toxins and the growth of the bone in length exaggerated. In paralysed limbs the growth from the epiphyses is usually little short of the normal. The result of interference with growth is more injurious in the lower than in the upper limb, because, from the functional point of view, it is essential that the lower extremities should be approximately of equal length. In the forearm or leg, where there are two parallel bones, if the growth of one is arrested the continued growth of the other results in a deviation of the hand or foot to one side. In certain diseases, such as rickets and inherited syphilis, and in developmental anomalies such as achondroplasia, _dwarfing_ of the skeleton results from defective growth of bone at the ossifying junctions. Conversely, excessive growth of bone at the ossifying junctions results in abnormal height of the skeleton or _giantism_ as a result, for example, of increased activity of the pituitary in adolescents, and in eunuchs who have been castrated in childhood or adolescence; in the latter, union of the epiphyses at the ends of the long bones is delayed beyond the usual period at which the skeleton attains maturity. #Regeneration of Bone.#--When bone has been lost or destroyed as a result of injury or disease, it is capable of being reproduced, the extent to which regeneration takes place varying under different conditions. The chief part in the regeneration of bone is played by the osteoblasts in the adjacent marrow and in the deeper layer of the periosteum. The shaft of a long bone may be reproduced after having been destroyed by disease or removed by operation. The flat bones of the skull and the bones of the face, which are primarily developed in membrane, have little capacity of regeneration; hence, when bone has been lost or removed in these situations, there results a permanent defect. Wounds or defects in articular cartilage are repaired by fibrous or osseous tissue derived from the subjacent cancellous spaces. _Transplantation of Bone--Bone-grafting._--Clinical experience is conclusive that a portion of bone which has been completely detached from its surroundings--for example, a trephine circle, or a flap of bone detached with the saw, or the loose fragments in a compound fracture--may become, if replaced in position, firmly and permanently incorporated with the surrounding bone. Embedded foreign bodies, on the other hand, such as ivory pegs or decalcified bone, exhibit, on removal after a sufficient interval, evidence of having been eroded, in the shape of worm-eaten depressions and perforations, and do not become united or fused to the surrounding bone. It follows from this that the implanting of living bone is to be preferred to the implanting of dead bone or of foreign material. We believe that transplanted living bone when placed under favourable conditions survives and becomes incorporated with the bone with which it is in contact, and does not merely act as a scaffolding. We believe also that the retention of the periosteum on the graft is not essential, but, by favouring the establishment of vascular connections, it contributes to the survival of the graft and the success of the transplantation. Macewen maintains that bone grafts "take" better if broken up into small fragments; we regard this as unnecessary. Bone grafts yield better functional results when they are immovably fixed to the adjacent bone by suture, pegs, or plates. As in all grafting procedures, asepsis is essential. Transplanted bone retains its vitality when embedded in the soft parts, but is gradually absorbed and replaced by fibrous tissue. DISEASES OF BONE The morbid processes met with in bone originate in the same way and lead to the same results as do similar processes in other tissues. The structural peculiarities of bone, however, and the important changes which take place in the skeleton during the period of growth, modify certain of the clinical and pathological features. _Definition of Terms._--Any diseased process that affects the periosteum is spoken of as _periostitis_; the term _osteomyelitis_ is employed when it is located in the marrow. The term _epiphysitis_ has been applied to an inflammatory process in two distinct situations--namely, the ossifying nucleus in the epiphysis, and the ossifying junction or metaphysis between the epiphysial cartilage and the diaphysis. We shall restrict the term to inflammation in the first of these situations. Inflammation at the ossifying junction is included under the term osteomyelitis. The term _rarefying ostitis_ is applied to any process that is attended with excessive absorption of the framework of a bone, whereby it becomes more porous or spongy than it was before, a condition known as _osteoporosis_. The term _caries_ is employed to indicate any diseased process associated with crumbling away of the trabecular framework of a bone. It may be considered as the equivalent of ulceration or molecular destruction in the soft parts. The carious process is preceded by the formation of granulation tissue in the marrow or periosteum, which eats away and replaces the bone in contact with it. The subsequent degeneration and death of the granulation tissue under the necrotic influence of bacterial toxins results in disintegration and crumbling away of the trabecular framework of the portion of bone affected. Clinically, carious bone yields a soft grating sensation under the pressure of the probe. The macerated bone presents a rough, eroded surface. The term _dry caries_ (_caries sicca_) is applied to that variety which is unattended with suppuration. _Necrosis_ is the term applied to the death of a tangible portion of bone, and the dead portion when separated is called a _sequestrum_. The term _exfoliation_ is sometimes employed to indicate the separation or throwing off of a superficial sequestrum. The edges and deep surface of the sequestrum present a serrated or worm-eaten appearance due to the process of erosion by which the dead bone has been separated from the living. BACTERIAL DISEASES The most important diseases in this group are the pyogenic, the tuberculous, and the syphilitic. PYOGENIC DISEASES OF BONE.--These diseases result from infection with pyogenic organisms, and two varieties or types are recognised according to whether the organisms concerned reach their seat of action by way of the blood-stream, or through an infection of the soft parts in contact with the bone. INFECTIONS THROUGH THE BLOOD-STREAM #Diseases caused by the Staphylococcus Aureus.#--As the majority of pyogenic diseases are due to infection with the staphylococcus aureus, these will be described first. #Acute osteomyelitis# is a suppurative process beginning in the marrow and tending to spread to the periosteum. The disease is common in children, but is rare after the skeleton has attained maturity. Boys are affected more often than girls, in the proportion of three to one, probably because they are more liable to exposure, to injury, and to violent exertion. _Etiology._--Staphylococci gain access to the blood-stream in various ways, it may be through the skin or through a mucous surface. Such conditions as, for example, a blow, some extra exertion such as a long walk, or exposure to cold, as in wading, may act as localising factors. The long bones are chiefly affected, and the commonest sites are: either end of the tibia and the lower end of the femur; the other bones of the skeleton are affected in rare instances. _Pathology._--The disease commences and is most intense in the marrow of the ossifying junction at one end of the diaphysis; it may commence at both ends simultaneously--_bipolar osteomyelitis_; or, commencing at one end, may spread to the other. The changes observed are those of intense engorgement of the marrow, going on to greenish-yellow purulent infiltration. Where the process is most advanced--that is, at the ossifying junction--there are evidences of absorption of the framework of the bone; the marrow spaces and Haversian canals undergo enlargement and become filled with greenish-yellow pus. This rarefaction of the spongy bone is the earliest change seen with the X-rays. The process may remain localised to the ossifying junction, but usually spreads along the medullary canal for a varying distance, and also extends to the periosteum by way of the enlarged Haversian canals. The pus accumulates under the periosteum and lifts it up from the bone. The extent of spread in the medullary canal and beneath the periosteum is in close correspondence. The periosteum of the diaphysis is easily separated--hence the facility with which the pus spreads along the shaft; but in the region of the ossifying junction it is raised with difficulty because of its intimate connection with the epiphysial cartilage. Less frequently there is more than one collection of pus under the periosteum, each being derived from a focus of suppuration in the subjacent marrow. The pus perforates the periosteum, and makes its way to the surface by the easiest anatomical route, and discharges externally, forming one or more sinuses through which fresh infection may take place. The infection may spread to the adjacent joint, either directly through the epiphysis and articular cartilage, or along the deep layer of the periosteum and its continuation--the capsular ligament. When the epiphysis is intra-articular, as, for example, in the head of the femur, the pus when it reaches the surface of the bone necessarily erupts directly into the joint. While the occurrence of purely periosteal suppuration is regarded as possible, we are of opinion that the embolic form of staphylococcal osteomyelitis always originates in the marrow. The portion of the diaphysis which has sustained the action of the concentrated toxins has its vitality further impaired as a result of the stripping of the periosteum and thrombosis of the blood vessels of the marrow, so that _necrosis_ of bone is one of the most striking results of the disease, and as this takes place rapidly, that is, in a day or two, the term _acute necrosis_, formerly applied to the disease, was amply justified. When there is marked rarefaction of the bone at the ossifying junction, the epiphysis is liable to be separated--_epiphysiolysis_. The separation usually takes place through the young bone of the ossifying junction, and the surfaces of the diaphysis and epiphysis are opposed to each other by irregular eroded surfaces bathed in pus. The separated epiphysis may be kept in place by the periosteum, but when this has been detached by the formation of pus beneath it, the epiphysis is liable to be displaced by muscular action or by some movement of the limb, or it is the diaphysis that is displaced, for example, the lower end of the diaphysis of the femur may be projected into the popliteal space. The epiphysial cartilage usually continues its bone-forming functions, but when it has been seriously damaged or displaced, the further growth of the bone in length may be interfered with. Sometimes the separated and displaced epiphysis dies and constitutes a sequestrum. The adjacent joint may become filled at an early stage with a serous effusion, which may be sterile. When the cocci gain access to the joint, the lesion assumes the characters of a purulent arthritis, which, from its frequency during the earlier years of life, has been called _the acute arthritis of infants_. Separation of an epiphysis nearly always results in infection and destruction of the adjacent joint. Osteomyelitis is rare in the bones of the carpus and tarsus, and the associated joints are usually infected from the outset. In flat bones, such as the skull, the scapula, or the ilium, suppuration usually occurs on both aspects of the bone as well as in the marrow. _Clinical Features._--The constitutional symptoms, which are due to the associated toxaemia, vary considerably in different cases. In mild cases they may be so slight as to escape recognition. In exceptionally severe cases the patient may succumb before there are obvious signs of the localisation of the staphylococci in the bone marrow. In average cases the temperature rises rapidly with a rigor and runs an irregular course with morning remissions, there is marked general illness accompanied by headache, vomiting, and sometimes delirium. The local manifestations are pain and tenderness in relation to one of the long bones; the pain may be so severe as to prevent sleep and to cause the child to cry out. Tenderness on pressure over the bone is the most valuable diagnostic sign. At a later stage there is an ill-defined swelling in the region of the ossifying junction, with oedema of the overlying skin and dilatation of the superficial veins. The swelling appears earlier and is more definite in superficial bones such as the tibia, than in those more deeply placed such as the upper end of the femur. It may be less evident to the eye than to the fingers, and is best appreciated by gently stroking the bone from the middle of its shaft towards the end. The maximum thickening and tenderness usually correspond to the junction of the diaphysis with the epiphysis, and the swelling tails off gradually along the shaft. As time goes on there is redness of the skin, especially over a superficial bone, such as the tibia, the swelling becomes softer, and gives evidence of fluctuation. This stage may be reached at the end of twenty-four hours, or not for some days. Suppuration spreads towards the surface, until, some days later, the skin sloughs and pus escapes, after which the fever usually remits and the pain and other symptoms are relieved. The pus may contain blood and droplets of fat derived from the marrow, and in some cases minute particles of bone are present also. The presence of fat and bony particles in the pus confirms the medullary origin of the suppuration. If an incision is made, the periosteum is found to be raised from the bone; the extent of the bare bone will be found to correspond fairly accurately with the extent of the lesion in the marrow. _Local Complications._--The adjacent joint may exhibit symptoms which vary from those of a simple effusion to those of a purulent _arthritis_. The joint symptoms may count for little in the clinical picture, or, as in the case of the hip, may so predominate as to overshadow those of the bone lesion from which they originated. _Separation and displacement of the epiphysis_ usually reveals itself by an alteration in the attitude of the limb; it is nearly always associated with suppuration in the adjacent joint. When _pathological fracture_ of the shaft occurs, as it may do, from some muscular effort or strain, it is attended with the usual signs of fracture. _Dislocation_ of the adjacent joint has been chiefly observed at the hip; it may result from effusion into the joint and stretching of the ligaments, or may be the sequel of a purulent arthritis; the signs of dislocation are not so obvious as might be expected, but it is attended with an alteration in the attitude of the limb, and the displacement of the head of the bone is readily shown in a skiagram. _General Complications._--In some cases a _multiplicity of lesions_ in the bones and joints imparts to the disease the features of pyaemia. The occurrence of endocarditis, as indicated by alterations in the heart sounds and the development of murmurs, may cause widespread infective embolism, and metastatic suppurations in the kidneys, heart-wall, and lungs, as well as in other bones and joints than those primarily affected. The secondary suppurations are liable to be overlooked unless sought for, as they are rarely attended with much pain. In these multiple forms of osteomyelitis the toxaemic symptoms predominate; the patient is dull and listless, or he may be restless and talkative, or actually delirious. The tongue is dry and coated, the lips and teeth are covered with sordes, the motions are loose and offensive, and may be passed involuntarily. The temperature is remittent and irregular, the pulse small and rapid, and the urine may contain blood and albumen. Sometimes the skin shows erythematous and purpuric rashes, and the patient may cry out as in meningitis. The post-mortem appearances are those of pyaemia. _Differential Diagnosis._--Acute osteomyelitis is to be diagnosed from infections of the soft parts, such as erysipelas and cellulitis, and, in the case of the tibia, from erythema nodosum. Tenderness localised to the ossifying junction is the most valuable diagnostic sign of osteomyelitis. When there is early and pronounced general intoxication, there is likely to be confusion with other acute febrile illnesses, such as scarlet fever. In all febrile conditions in children and adolescents, the ossifying junctions of the long bones should be examined for areas of pain and tenderness. Osteomyelitis has many features in common with acute articular rheumatism, and some authorities believe them to be different forms of the same disease (Kocher). In acute rheumatism, however, the joint symptoms predominate, there is an absence of suppuration, and the pains and temperature yield to salicylates. The _prognosis_ varies with the type of the disease, with its location--the vertebrae, skull, pelvis, and lower jaw being specially unfavourable--with the multiplicity of the lesions, and with the development of endocarditis and internal metastases. _Treatment._--This is carried out on the same lines as in other pyogenic infections. In the earliest stages of the disease, the induction of hyperaemia is indicated, and should be employed until the diagnosis is definitely established, and in the meantime preparations for operation should be made. An incision is made down to and through the periosteum, and whether pus is found or not, the bone should be opened in the vicinity of the ossifying junction by means of a drill, gouge, or trephine. If pus is found, the opening in the bone is extended along the shaft as far as the periosteum has been separated, and the infected marrow is removed with the spoon. The cavity is then lightly packed with rubber dam, or, as recommended by Bier, the skin edges are brought together by sutures which are loosely tied to afford sufficient space between them for the exit of discharge, and the hyperaemic treatment is continued. When there is widespread suppuration in the marrow, and the shaft is extensively bared of periosteum and appears likely to die, it may be resected straight away or after an interval of a day or two. Early resection of the shaft is also indicated if the opening of the medullary canal is not followed by relief of symptoms. In the leg and forearm, the unaffected bone maintains the length and contour of the limb; in the case of the femur and humerus, extension with weight and pulley along with some form of moulded gutter splint is employed with a similar object. Amputation of the limb is reserved for grave cases, in which life is endangered by toxaemia, which is attributed to the primary lesion. It may be called for later if the limb is likely to be useless, as, for example, when the whole shaft of the bone is dead without the formation of a new case, when the epiphyses are separated and displaced, and the joints are disorganised. Flat bones, such as the skull or ilium, must be trephined and the pus cleared out from both aspects of the bone. In the vertebrae, operative interference is usually restricted to opening and draining the associated abscess. #Nature's Effort at Repair.#--_In cases which are left to nature_, and in which necrosis of bone has occurred, those portions of the periosteum and marrow which have retained their vitality resume their osteogenetic functions, often to an exaggerated degree. Where the periosteum has been lifted up by an accumulation of pus, or is in contact with bone that is dead, it proceeds to form new bone with great activity, so that the dead shaft becomes surrounded by a sheath or case of new bone, known as the _involucrum_ (Fig. 118). Where the periosteum has been perforated by pus making its way to the surface, there are defects or holes in the involucrum, called _cloacae_. As these correspond more or less in position to the sinuses in the skin, in passing a probe down one of the sinuses it usually passes through a cloaca and strikes the dead bone lying in the interior. If the periosteum has been extensively destroyed, new bone may only be formed in patches, or not at all. The dead bone is separated from the living by the agency of granulation tissue with its usual complements of phagocytes and osteoclasts, so that the sequestrum presents along its margins and on its deep surface a pitted, grooved, and worm-eaten appearance, except on the periosteal aspect, which is unaltered. Ultimately the dead bone becomes loose and lies in a cavity a little larger than itself; the wall of the cavity is formed by the new case, lined with granulation tissue. The separation of the sequestrum takes place more rapidly in the spongy bone of the ossifying junction than in the compact bone of the shaft. When foci of suppuration have been scattered up and down the medullary cavity, and the bone has died in patches, several sequestra may be included by the new case; each portion of dead bone is slowly separated, and comes to lie in a cavity lined by granulations. Even at a distance from the actual necrosis there is formation of new bone by the marrow; the medullary canal is often obliterated, and the bone becomes heavier and denser--sclerosis; and the new bone which is deposited on the original shaft results in an increase in the girth of the bone--hyperostosis. [Illustration: FIG. 118.--Shaft of Femur after Acute Osteomyelitis. The shaft has undergone extensive necrosis, and a shell of new bone has been formed by the periosteum.] _Pathological fracture_ of the shaft may occur at the site of necrosis, when the new case is incapable of resisting the strain put upon it, and is most frequently met with in the shaft of the femur. Short of fracture, there may be bending or curving of the new case, and this results in deformity and shortening of the limb (Fig. 119). The _extrusion of a sequestrum_ may occur, provided there is a cloaca large enough to allow of its escape, but the surgeon has usually to interfere by performing the operation of sequestrectomy. Displacement or partial extrusion of the dead bone may cause complications, as when a sequestrum derived from the trigone of the femur perforates the popliteal artery or the cavity of the knee-joint, or a sequestrum of the pelvis perforates the wall of the urinary bladder. The extent to which bone which has been lost is reproduced varies in different parts of the skeleton: while the long bones, the scapula, the mandible, and other bones which are developed in cartilage are almost completely re-formed, bones which are entirely developed in membrane, such as the flat bones of the skull and the maxilla, are not reproduced. [Illustration: FIG. 119.--Femur and Tibia showing results of Acute Osteomyelitis affecting Trigone of Femur; sequestrum partly surrounded by new case; backward displacement of lower epiphysis and implication of knee-joint.] It may be instructive to describe _the X-ray appearances of a long bone that has passed through an attack of acute osteomyelitis_ severe enough to have caused necrosis of part of the diaphysis. The shadow of the dead bone is seen in the position of the original shaft which it represents; it is of the same shape and density as the original shaft, while its margins present an irregular contour from the erosion concerned in its separation. The sequestrum is separated from the living bone by a clear zone which corresponds to the layer of granulations lining the cavity in which it lies. This clear zone separating the shadow of the dead bone from that of the living bone by which it is surrounded is conclusive evidence of a sequestrum. The medullary canal in the vicinity of the sequestrum being obliterated, is represented by a shadow of varying density, continuous with that of the surrounding bone. The shadow of the new case or involucrum with its wavy contour is also in evidence, with its openings or cloacae, and is mainly responsible for the increase in the diameter of the bone. The skiagram may also show separation and displacement of the adjacent epiphysis and destruction of the articular surfaces or dislocation of the joint. _Sequelae of Acute Suppurative Osteomyelitis._--The commonest sequel is the presence of a sequestrum with one or more discharging sinuses; owing to the abundant formation of scar tissue these sinuses have rigid edges which are usually depressed and adherent to the bone. _The Recognition and Removal of Sequestra._--So long as there is dead bone there will be suppuration from the granulations lining the cavity in which it lies, and a discharge of pus from the sinuses, so that the mere persistence of discharge after an attack of osteomyelitis, is presumptive evidence of the occurrence of necrosis. Where there are one or more sinuses, the passage of a probe which strikes bare bone affords corroboration of the view that the bone has perished. When the dead bone has been separated from the living, the X-rays yield the most exact information. The traditional practice is to wait until the dead bone is entirely separated before undertaking an operation for its removal, from fear, on the one hand, of leaving portions behind which may keep up the discharge, and, on the other, of removing more bone than is necessary. This practice need not be adhered to, as by operating at an earlier stage healing is greatly hastened. If it is decided to wait for separation of the dead bone, drainage should be improved, and the infective element combated by the induction of hyperaemia. _The operation_ for the removal of the dead bone (_sequestrectomy_) consists in opening up the periosteum and the new case sufficiently to allow of the removal of all the dead bone, including the most minute sequestra. The limb having been rendered bloodless, existing sinuses are enlarged, but if these are inconveniently situated--for example, in the centre of the popliteal space in necrosis of the femoral trigone--it is better to make a fresh wound down to the bone on that aspect of the limb which affords best access, and which entails the least injury of the soft parts. The periosteum, which is thick and easily separable, is raised from the new case with an elevator, and with the chisel or gouge enough of the new bone is taken away to allow of the removal of the sequestrum. Care must be taken not to leave behind any fragment of dead bone, as this will interfere with healing, and may determine a relapse of suppuration. The dead bone having been removed, the lining granulations are scraped away with a spoon, and the cavity is disinfected. There are different ways of dealing with a _bone cavity_. It may be packed with gauze (impregnated with "bipp" or with iodoform), which is changed at intervals until healing takes place from the bottom; it may be filled with a flap of bone and periosteum raised from the vicinity, or with bone grafts; or the wall of bone on one side of the cavity may be chiselled through at its base, so that it can be brought into contact with the opposite wall. The method of filling bone cavities devised by Mosetig-Moorhof, consists in disinfecting and drying the cavity by a current of hot air, and filling it with a mixture of powdered iodoform (60 parts) and oil of sesame and spermaceti (each 40 parts), which is fluid at a temperature of 112 o F.; the soft parts are then brought together without drainage. As the cavity fills up with new bone the iodoform is gradually absorbed. Iodoform gives a dark shadow with the X-rays, so that the process of its absorption can be followed in skiagrams taken at intervals. These procedures may be carried out at the same time as the sequestrum is removed, or after an interval. In all of them, asepsis is essential for success. The _deformities_ resulting from osteomyelitis are more marked the earlier in life the disease occurs. Even under favourable conditions, and with the continuous effort at reconstruction of the bone by Nature's method, the return to normal is often far from perfect, and there usually remains a variable amount of hyperostosis and sclerosis and sometimes curving of the bone. Under less favourable conditions, the late results of osteomyelitis may be more serious. _Shortening_ is not uncommon from interference with growth at the ossifying junction. _Exaggerated growth_ in the length of a bone is rare, and has been observed chiefly in the bones of the leg. Where there are two parallel bones--as in the leg, for example--the growth of the diseased bone may be impaired, and the other continuing its normal growth becomes disproportionately long; less frequently the growth of the diseased bone is exaggerated, and it becomes the longer of the two. In either case, the longer bone becomes curved. An _obliquity_ of the bone may result when one half of the epiphysial cartilage is destroyed and the other half continues to form bone, giving rise to such deformities as knock-knee and club-hand. Deformity may also result from vicious union of a pathological fracture, permanent displacement of an epiphysis, contracture, ankylosis, or dislocation of the adjacent joint. #Relapsing Osteomyelitis.#--As the term indicates, the various forms of relapsing osteomyelitis date back to an antecedent attack, and their occurrence depends on the capacity of staphylococci to lie latent in the marrow. Relapse may take place within a few months of the original attack, or not for many years. Cases are sometimes met with in which relapses recur at regular intervals for several years, the tendency, however, being for the attacks to become milder as the virulence of the organisms becomes more and more attenuated. _Clinical Features._--Osteomyelitis in a patient over twenty-five is nearly always of the relapsing variety. In some cases the bone becomes enlarged, with pain and tenderness on pressure; in others there are the usual phenomena which attend suppuration, but the pus is slow in coming to the surface, and the constitutional symptoms are slight. The pus may escape by new channels, or one of the old sinuses may re-open. Radiograms usually furnish useful information as to the condition of the bone, both as it is altered by the original attack and by the changes that attend the relapse of the infective process. _Treatment._--In cases of thickening of the bone with persistent and severe pain, if relief is not afforded by the repeated application of blisters, the thickened periosteum should be incised, and the bone opened up with the chisel or trephine. In cases attended with suppuration, the swelling is incised and drained, and if there is a sequestrum, it must be removed. #Circumscribed Abscess of Bone--"Brodie's Abscess."#--The most important form of relapsing osteomyelitis is the circumscribed abscess of bone first described by Benjamin Brodie. It is usually met with in young adults, but we have met with it in patients over fifty. Several years may intervene between the original attack of osteomyelitis and the onset of symptoms of abscess. _Morbid Anatomy._[7]--The abscess is nearly always situated in the central axis of the bone in the region of the ossifying junction, although cases are occasionally met with in which it lies nearer the middle of the shaft. In exceptional cases there is more than one abscess (Fig. 120). The tibia is the bone most commonly affected, but the lower end of the femur, or either end of the humerus, may be the seat of the abscess. In the quiescent stage the lesion is represented by a small cavity in the bone, filled with clear serum, and lined by a fibrous membrane which is engaged in forming bone. Around the cavity the bone is sclerosed, and the medullary canal is obliterated. When the infection becomes active, the contents of the cavity are transformed into a greenish-yellow pus from which the staphylococcus can be isolated, and the cavity is lined by a thin film of granulation tissue which erodes the surrounding bone and so causes the abscess to increase in size. If the erosion proceeds uniformly, the cavity is spherical or oval; if it is more active at some points than others, diverticula or tunnels are formed, and one of these may finally erupt through the shell of the bone or into an adjacent joint. Small irregular sequestra are occasionally found within the abscess cavity. In long-standing cases it is common to find extensive obliteration of the medullary canal, and a considerable increase in the girth of the bone. [7] Alexis Thomson, _Edin. Med. Journ._, 1906. [Illustration: FIG. 120.--Segment of Tibia resected for Brodie's Abscess. The specimen shows two separate abscesses in the centre of the shaft, the lower one quiescent, the upper one active and increasing in size.] The size of the abscess ranges from that of a cherry to that of a walnut, but specimens in museums show that, if left to Nature, the abscess may attain much greater dimensions. The affected bone is not only thicker and heavier than normal, but may also be curved or otherwise deformed as a result of the original attack of osteomyelitis. The _clinical features_ are almost exclusively local. Pain, due to tension within the abscess, is the dominant symptom. At first it is vague and difficult to localise, later it is referred to the interior of the bone, and is described as "boring." It is aggravated by use of the limb, and there are often, especially during the night, exacerbations in which the pain becomes excruciating. In the early stages there are periods of days or weeks during which the symptoms abate, but as the abscess increases these become shorter, until the patient is hardly ever free from pain. Localised tenderness can almost always be elicited by percussion, or by compressing the bone between the fingers and thumb. The pain induced by the traction of muscles attached to the bone, or by the weight of the body, may interfere with the function of the limb, and in the lower extremity cause a limp in walking. The limb may be disabled from _involvement of the adjacent joint_, in which there may be an intermittent hydrops which comes and goes coincidently with exacerbations of pain; or the abscess may perforate the joint and set up an acute arthritis. The _diagnosis_ of Brodie's abscess from other affections met with at the ends of long bones, and particularly from tuberculosis, syphilis, and new growths, is made by a consideration of the previous history, especially with reference to an antecedent attack of osteomyelitis. When the adjacent joint is implicated, the surgeon may be misled by the patient referring all the symptoms to the joint. The X-ray picture is usually diagnostic chiefly because all the lesions which are liable to be confused with Brodie's abscess--gumma, tubercle, myeloma, chondroma, and sarcoma--give a well-marked central clear area; the sclerosis around Brodie's abscess gives a dense shadow in which the central clear area is either not seen at all or only faintly (Fig. 121). _Treatment._--If an abscess is suspected, there should be no hesitation in exploring the interior of the bone. It is exposed by a suitable incision; the periosteum is reflected and the bone is opened up by a trephine or chisel, and the presence of an abscess may be at once indicated by the escape of pus. If, owing to the small size of the abscess or the density of the bone surrounding it, the pus is not reached by this procedure, the bone should be drilled in different directions. [Illustration: FIG. 121.--Radiogram of Brodie's Abscess in Lower End of Tibia.] #Other Forms of Acute Osteomyelitis.#--Among the less severe forms of osteomyelitis resulting from the action of attenuated organisms are the _serous_ variety, in which an effusion of serous fluid forms under the periosteum; and _growth fever_, in which the child complains of vague evanescent pains (growing pains), and of feeling tired and disinclined to play; there may be some rise of temperature in the evening. Infection with the _staphylococcus albus_, the _streptococcus_, or the _pneumococcus_ also causes a mild form of osteomyelitis which may go on to suppuration. _Necrosis without suppuration_, described by Paget under the name "quiet necrosis," is a rare disease, and would appear to be associated with an attenuated form of staphylococcal infection (Tavel). It occurs in adults, being met with up to the age of fifty or sixty, and is characterised by the insidious development of a swelling which involves a considerable extent of a long bone. The pain varies in intensity, and may be continuous or intermittent, and there is tenderness on pressure. The shaft is increased in girth as a result of its being surrounded by a new case of bone. The resemblance to sarcoma may be very close, but the swelling is not as defined as in sarcoma, nor does it ever assume the characteristic "leg of mutton" shape. In both diseases there is a tendency to pathological fracture. It is difficult also in the absence of skiagrams to differentiate the condition from syphilitic and from tuberculous disease. If the diagnosis is not established after examination with the X-rays, an exploratory incision should be made; if dead bone is found, it is removed. In typhoid fever the bone marrow is liable to be invaded by _the typhoid bacillus_, which may set up osteomyelitis soon after its lodgment, or it may lie latent for a considerable period before doing so. The lesions may be single or multiple, they involve the marrow or the periosteum or both, and they may or may not be attended with suppuration. They are most commonly met with in the tibia and in the ribs at the costo-chondral junctions. The bone lesions usually occur during the seventh or eighth week of the fever, but have been known to occur much later. The chief complaint is of vague pains, at first referred to several bones, later becoming localised in one; they are aggravated by movement, or by handling the bone, and are worst at night. There is redness and oedema of the overlying soft parts, and swelling with vague fluctuation, and on incision there escapes a yellow creamy pus, or a brown syrupy fluid containing the typhoid bacillus in pure culture. Necrosis is exceptional. When the abscess develops slowly, the condition resembles tuberculous disease, from which it may be diagnosed by the history of typhoid fever, and by obtaining a positive Widal reaction. The prognosis is favourable, but recovery is apt to be slow, and relapse is not uncommon. It is usually sufficient to incise the periosteum, but when the disease occurs in a rib it may be necessary to resect a portion of bone. #Pyogenic Osteomyelitis due to Spread of Infection from the Soft Parts.#--There still remain those forms of osteomyelitis which result from infection through a wound involving the bone--for example, compound fractures, gun-shot injuries, osteotomies, amputations, resections, or operations for un-united fracture. In all of these the marrow is exposed to infection by such organisms as are present in the wound. A similar form of osteomyelitis may occur apart from a wound--for example, infection may spread to the jaws from lesions of the mouth; to the skull, from lesions of the scalp or of the cranial bones themselves--such as a syphilitic gumma or a sarcoma which has fungated externally; or to the petrous temporal, from suppuration in the middle ear. The most common is an osteomyelitis commencing in the marrow exposed in a wound infected with pyogenic organisms. In amputation stumps, fungating granulations protrude from the sawn end of the bone, and if necrosis takes place, the sequestrum is annular, affecting the cross-section of the bone at the saw-line; or tubular, extending up the shaft, and tapering off above. The periosteum is more easily detached, is thicker than normal, and is actively engaged in forming bone. In the macerated specimen, the new bone presents a characteristic coral-like appearance, and may be perforated by cloacae (Fig. 122). [Illustration: FIG. 122.--Tubular Sequestrum resulting from Septic Osteomyelitis in Amputation Stump.] Like other pyogenic infections, it may terminate in pyaemia, as a result of septic phlebitis in the marrow. The _clinical features_ of osteomyelitis in _an amputation stump_ are those of ordinary pyogenic infection; the involvement of the bone may be suspected from the clinical course, the absence of improvement from measures directed towards overcoming the sepsis in the soft parts, and the persistence of suppuration in spite of free drainage, but it is not recognised unless the bone is exposed by opening up the stump or the changes in the bone are shown by the X-rays. The first change is due to the deposit of new bone on the periosteal surface; later, there is the shadow of the sequestrum. Healing does not take place until the sequestrum is extruded or removed by operation. _In compound fractures_, if a fragment dies and forms a sequestrum, it is apt to be walled in by new bone; the sinuses continue to discharge until the sequestrum is removed. Even after healing has taken place, relapse is liable to occur, especially in gun-shot injuries. Months or years afterwards, the bone may become painful and tender. The symptoms may subside under rest and elevation of the limb and the application of a compress, or an abscess forms and bursts with comparatively little suffering. The contents may be clear yellow serum or watery pus; sometimes a small spicule of bone is discharged. Valuable information, both for diagnosis and treatment, is afforded by skiagrams. [Illustration: FIG. 123.--New Periosteal Bone on surface of Femur from Amputation Stump. Osteomyelitis supervened on the amputation, and resulted in necrosis at the sawn section of the bone. (Anatomical Museum, University of Edinburgh.)] TUBERCULOUS DISEASE The tuberculous diseases of bone result from infection of the marrow or periosteum by tubercle bacilli conveyed through the arteries; it is exceedingly rare for tubercle to appear in bone as a primary infection, the bacilli being usually derived from some pre-existing focus in the bronchial glands or elsewhere. According to the observations of John Fraser, 60 per cent. of the cases of bone and joint tubercle in children are due to the bovine bacillus, 37 per cent. to the human variety, and in 3 per cent. both types are present. Tuberculous disease in bone is characterised by its insidious onset and slow progress, and by the frequency with which it is associated with disease of the adjacent joint. #Periosteal tuberculosis# is met with in the ribs, sternum, vertebral column, skull, and less frequently in the long bones of the limbs. It may originate in the periosteum, or may spread thence from the marrow, or from synovial membrane. _In superficial bones_, such as the sternum, the formation of tuberculous granulation tissue in the deeper layer of the periosteum, and its subsequent caseation and liquefaction, is attended by the insidious development of a doughy swelling, which is not as a rule painful, although tender on pressure. While the swelling often remains quiescent for some time, it tends to increase in size, to become boggy or fluctuating, and to assume the characters of a cold abscess. The pus perforates the fibrous layer of the periosteum, invading and infecting the overlying soft parts, its spread being influenced by the anatomical arrangement of the tissues. The size of the abscess affords no indication of the extent of the bone lesion from which it originates. As the abscess reaches the surface, the skin becomes of a dusky red or livid colour, is gradually thinned out, and finally sloughs, forming a sinus. A probe passed into the sinus strikes carious bone. Small sequestra may be found embedded in the granulation tissue. The sinus persists as long as any active tubercle remains in the tissues, and is apt to form an avenue for pyogenic infection. _In deeply seated bones_, such as the upper end of the femur, the formation of a cold abscess in the soft parts is often the first evidence of the disease. _Diagnosis._--Before the stage of cold abscess is reached, the localised swelling is to be differentiated from a gumma, from chronic forms of staphylococcal osteomyelitis, from enlarged bursa or ganglion, from sub-periosteal lipoma, and from sarcoma. Most difficulty is met with in relation to periosteal sarcoma, which must be differentiated either by the X-ray appearances or by an exploratory incision. _X-ray appearances in periosteal tubercle_: the surface of the cortical bone in the area of disease is roughened and irregular by erosion, and in the vicinity there may be a deposit of new bone on the surface, particularly if a sinus is present and mixed infection has occurred; in _syphilis_ the shadow of the bone is denser as a result of sclerosis, and there is usually more new bone on the surface--hyperostosis; in _periosteal sarcoma_ there is greater erosion and consequently greater irregularity in the contour of the cortical bone, and frequently there is evidence of formation of bone in the form of characteristic spicules projecting from the surface at a right angle. The early recognition of periosteal lesions in the articular ends of bones is of importance, as the disease, if left to itself, is liable to spread to the adjacent joint. The _treatment_ is that of tuberculous lesions in general; if conservative measures fail, the choice lies between the injection of iodoform, and removal of the infected tissues with the sharp spoon. In the ribs it is more satisfactory to remove the diseased portion of bone along with the wall of the associated abscess or sinus. If all the tubercle has been removed and there is no pyogenic infection, the wound is stitched up with the object of obtaining primary union; otherwise it is treated by the open method. #Tuberculous Osteomyelitis.#--Tuberculous lesions in the marrow occur as isolated or as multiple foci of granulation tissue, which replace the marrow and erode the trabeculae of bone in the vicinity (Fig. 124). The individual focus varies in size from a pea to a walnut. The changes that ensue resemble in character those in other tissues, and the extent of the destruction varies according to the way in which the tubercle bacillus and the marrow interact upon one another. The granulation tissue may undergo caseation and liquefaction, or may become encapsulated by fibrous tissue--"encysted tubercle." [Illustration: FIG. 124.--Tuberculous Osteomyelitis of Os Magnum, excised from a boy aet. 8. Note well-defined caseous focus, with several minute foci in surrounding marrow.] Sometimes the tuberculous granulation tissue spreads in the marrow, assuming the characters of a diffuse infiltration--diffuse tuberculous osteomyelitis. The trabecular framework of the bone undergoes erosion and absorption--rarefying ostitis--and either disappears altogether or only irregular fragments or sequestra of microscopic dimensions remain in the area affected. Less frequently the trabecular framework is added to by the formation of new bone, resulting in a remarkable degree of sclerosis, and if, following upon this, there is caseation of the tubercle and death of the affected portion of bone, there results a sequestrum often of considerable size and characteristic shape, which, because of the sclerosis and surrounding endarteritis, is exceedingly slow in separating. When the sequestrum involves an articular surface it is often wedge-shaped; in other situations it is rounded or truncated and lies in the long axis of the medullary canal (Fig. 125). Finally, the sequestrum lies loose in a cavity lined by tuberculous granulation tissue, and is readily identified in a radiogram. This type of sclerosis preceding death of the bone is highly characteristic of tuberculosis. [Illustration: FIG. 125.--Tuberculous Disease of Child's Tibia, showing sequestrum in medullary cavity, and increase in girth from excess of new bone.] _Clinical Features._--As a rule, it is only in superficially placed bones, such as the tibia, ulna, clavicle, mandible, or phalanges, that tuberculous disease in the marrow gives rise to signs sufficiently definite to allow of its clinical recognition. In the vertebrae, or in the bones of deeply seated joints, such as the hip or shoulder, the existence of tuberculous lesions in the marrow can only be inferred from indirect signs--such, for example, as rigidity and curvature in the case of the spine, or from the symptoms of grave and persistent joint-disease in the case of the hip or shoulder. With few exceptions, tuberculous disease in the interior of a bone does not reveal its presence until by extension it reaches one or other of the surfaces of the bone. In the shaft of a long bone its eruption on the periosteal surface is usually followed by the formation of a cold abscess in the overlying soft parts. When situated in the articular ends of bones, the disease more often erupts in relation to the reflection of the synovial membrane or directly on the articular surface--in either case giving rise to disease of the joint (Fig. 156). [Illustration: Fig. 126.--Diffuse Tuberculous Osteomyelitis of Right Tibia. (Photograph lent by Sir H. J. Stiles.)] #Diffuse Tuberculous Osteomyelitis in the shaft of a long bone# is comparatively rare, and has been observed chiefly in the tibia and the ulna in children (Fig. 126). It commences at the growing extremity of the diaphysis, and spreads along the medulla to a variable extent; it is attended by the formation of vascular and porous bone on the surface, which causes thickening of the diaphysis; this is most marked at the ossifying junction and tapers off along the shaft. The infection not only spreads along the medulla, but it invades the spongy bone surrounding this, and then the cortical bone, and is only prevented from reaching the soft parts by the new bone formed by the periosteum. The bone is replaced by granulation tissue, and disappears, or part of it may become sclerosed and in time form a sequestrum. In the macerated specimen, the sequestrum appears small in proportion to the large cavity in which it lies. All these changes are revealed in a good skiagram, which not only confirms the diagnosis, but, in many instances, demonstrates the extent of the disease, the presence or absence of a sequestrum, and the amount of new bone on the surface. Finally the periosteum gives way, and an abscess forms in the soft parts; and if left to itself ruptures externally, leaving a sinus. The most satisfactory _treatment_ is to resect sub-periosteally the diseased portion of the diaphysis. _In cancellous bones, such as those of the tarsus_, there is a similar caseous infiltration in the marrow, and this may be attended with the formation of a sequestrum either in the interior of the bone or involving its outer shell, as shown in Fig. 127. The situation and extent of the disease are shown in X-ray photographs. After the tuberculous granulation tissue erupts through the cortex of the bone, it gives rise to a cold abscess or infects adjacent joints or tendon sheaths. [Illustration: FIG. 127.--Advanced Tuberculous Disease in region of Ankle. The ankle-joint is ankylosed, and there is a large sequestrum in the calcaneus. (Specimen in Anatomical Museum, University of Edinburgh.)] If an exact diagnosis is made at an early stage of the disease--and this is often possible with the aid of X-rays--the affected bone is excised sub-periosteally or its interior is cleared out with the sharp spoon and gouge, the latter procedure being preferred in the case of the _calcaneus_ to conserve the stability of the heel. When several bones and joints are simultaneously affected, and there are sinuses with mixed infection, amputation is usually indicated, especially in adults. #Tuberculous dactylitis# is the name applied to a diffuse form of the disease as it affects the phalanges, metacarpal or metatarsal bones. The lesion presents, on a small scale, all the anatomical changes that have been described as occurring in the medulla of the tibia or ulna, and they are easily followed in skiagrams. A periosteal type of dactylitis is also met with. The _clinical features_ are those of a spindle-shaped swelling of a finger or toe, indolent, painless, and interfering but little with the function of the digit. Recovery may eventually occur without suppuration, but it is common to have the formation of a cold abscess, which bursts and forms one or more sinuses. It may be difficult to differentiate tuberculous dactylitis from the enlargement of the phalanges in inherited syphilis (syphilitic dactylitis), especially when the tuberculous lesion occurs in a child who is the subject of inherited syphilis. [Illustration: FIG. 128.--Tuberculous Dactylitis.] In the syphilitic lesion, skiagrams usually show a more abundant formation of new bone, but in many cases the doubt is only cleared up by observing the results of the tuberculin test or the effects of anti-syphilitic treatment. Sarcoma of a phalanx or metacarpal bone may closely resemble a dactylitis both clinically and in skiagrams, but it is rare. _Treatment._--Recovery under conservative measures is not uncommon, and the functional results are usually better than those following upon operative treatment, although in either case the affected finger is liable to be dwarfed (Fig. 129). The finger should be immobilised in a splint, and a Bier's bandage applied to the upper arm. Operative interference is indicated if a cold abscess develops, if there is a persistent sinus, or if a sequestrum has formed, a point upon which information is obtained by examination with the X-rays. When a toe is affected, amputation is the best treatment, but in the case of a finger it is rarely called for. In the case of a metacarpal or metatarsal bone, sub-periosteal resection is the procedure of choice, saving the articular ends if possible. [Illustration: FIG. 129.--Shortening of Middle Finger of Adult, the result of Tuberculous Dactylitis in childhood.] SYPHILITIC DISEASE Syphilitic affections of bone may be met with at any period of the disease, but the graver forms occur in the tertiary stage of acquired and inherited syphilis. The virus is carried by the blood-stream to all parts of the skeleton, but the local development of the disease appears to be influenced by a predisposition on the part of individual bones. Syphilitic diseases of bone are much less common in practice than those due to pyogenic and tuberculous infectious, and they show a marked predilection for the tibia, sternum, and skull. They differ from tuberculous affections in the frequency with which they attack the shafts of bones rather than the articular ends, and in the comparative rarity of joint complications. _Evanescent periostitis_ is met with in acquired syphilis during the period of the early skin eruptions. The patient complains, especially at night, of pains over the frontal bone, ribs, sternum, tibiae, or ulnae. Localised tenderness is elicited on pressure, and there is slight swelling, which, however, rarely amounts to what may be described as a _periosteal node_. In the later stages of acquired syphilis, _gummatous periostitis and osteomyelitis_ occur, and are characterised by the formation in the periosteum and marrow of circumscribed gummata or of a diffuse gummatous infiltration. The framework of the bone is rarefied in the area immediately involved, and sclerosed in the parts beyond. If the gummatous tissue degenerates and breaks down, and especially if the overlying skin is perforated and septic infection is superadded, the bone disintegrates and exhibits the condition known as _syphilitic caries_; sometimes a portion of bone has its blood supply so far interfered with that it dies--_syphilitic necrosis_. Syphilitic sequestra are heavier and denser than normal bone, because sclerosis usually precedes death of the bone. The bones especially affected by gummatous disease are: the skull, the septum of the nose, the nasal bones, palate, sternum, femur, tibia, and the bones of the forearm. _In the bones of the skull_, gummata may form in the peri-cranium, diploe, or dura mater. An isolated gumma forms a firm elastic swelling, shading off into the surroundings. In the macerated bone there is a depression or an actual perforation of the calvaria; multiple gummata tend to fuse with one another at their margins, giving the appearance of a combination of circles: these sometimes surround an area of bone and cut it off from its blood supply (Fig. 130). If the overlying skin is destroyed and septic infection superadded, such an isolated area of bone is apt to die and furnish a sequestrum; the separation of the dead bone is extremely slow, partly from the want of vascularity in the sclerosed bone round about, and partly from the density of the sequestrum. In exceptional cases the necrosis involves the entire vertical plate of the frontal bone. Pus is formed between the bone and the dura (suppurative pachymeningitis), and this may be followed by cerebral abscess or by pyaemia. Gummatous disease in the wall of the orbit may cause displacement of the eye and paralysis of the ocular muscles. [Illustration: FIG. 130.--Syphilitic Disease of Skull, showing a sequestrum in process of separation.] On the inner surface of the skull, the formation of gummatous tissue may cause pressure on the brain and give rise to intense pain in the head, Jacksonian epilepsy, or paralysis, the symptoms varying with the seat and extent of the disease. The cranial nerves may be pressed upon at the base, especially at their points of exit, and this gives rise to symptoms of irritation or paralysis in the area of distribution of the nerves affected. _In the septum of the nose, the nasal bones, and the hard palate_, gummatous disease causes ulceration, which, beginning in the mucous membrane, spreads to the bones, and being complicated with septic infection leads to caries and necrosis. In the nose, the disease is attended with stinking discharge (ozoena), the extrusion of portions of dead bone, and subsequently with deformity characterised by loss of the bridge of the nose; in the palate, it is common to have a perforation, so that the air escapes through the nose in speaking, giving to the voice a characteristic nasal tone. _Syphilitic disease of the tibia_ may be taken as the type of the affection as it occurs _in the long bones_. Gummatous disease in the periosteum may be localised and result in the formation of a well-defined node, or the whole shaft may become the seat of an irregular nodular enlargement (Fig. 132). If the bone is macerated, it is found to be heavier and bulkier than normal; there is diffuse sclerosis with obliteration of the medullary canal, and the surface is uneven from heaping up of new bone--hyperostosis (Fig. 131). If a periosteal gumma breaks down and invades the skin, a syphilitic ulcer is formed with carious bone at the bottom. A central gumma may eat away the surrounding bone to such an extent that the shaft undergoes pathological fracture. In the rare cases in which it attacks the articular end of a long bone, gummatous disease may implicate the adjacent joint and give rise to syphilitic arthritis. [Illustration: FIG. 131.--Syphilitic Hyperostosis and Sclerosis of Tibia, on section and on surface view.] _Clinical Features._--There is severe boring pain--as if a gimlet were being driven into the bone. It is worst at night, preventing sleep, and has been ascribed to compression of the nerves in the narrowed Haversian canals. The _periosteal gumma_ appears as a smooth, circumscribed swelling which is soft and elastic in the centre and firm at the margins, and shades off into the surrounding bone. The gumma may be completely absorbed or it may give place to a hard node. In some cases the gumma softens in the centre, the skin becomes adherent, thin, and red, and finally gives way. The opening in the skin persists as a sinus, or develops into a typical ulcer with irregular, crescentic margins; in either case a probe reveals the presence of carious bone or of a sequestrum. The health may be impaired as a result of mixed infection, and the absorption of toxins and waxy degeneration in the viscera may ultimately be induced. A _central gumma_ in a long bone may not reveal its presence until it erupts through the shell and reaches the periosteal surface or invades an adjacent joint. Sometimes the first manifestation is a fracture of the bone produced by slight violence. In radiograms the appearance of syphilitic bones is usually characteristic. When there is hyperostosis and sclerosis, the shaft appears denser and broader than normal, and the contour is uneven or wavy. When there is a central gumma, the shadow is interrupted by a rounded clear area, like that of a chondroma or myeloma, but there is sclerosis round about. _Diagnosis._--The conditions most liable to be mistaken for syphilitic disease of bone are chronic staphylococcal osteomyelitis, tuberculosis, and sarcoma; and the diagnosis is to be made by the history and progress of the disease, the result of examination with the X-rays, and the results of specific tests and treatment. _Treatment._--The general health is to be improved by open air, by nourishing food, and by the administration of cod-liver oil, iron, and arsenic. Anti-syphilitic remedies should be given, and if they are administered before there is any destruction of tissue, the benefit derived from them is usually marked. Radiograms show the rapid absorption of the new bone both on the surface and in the marrow, and are of value in establishing the therapeutic diagnosis. In certain cases, and particularly when there are destructive changes in the bone complicated with pyogenic infection, specific remedies have little effect. In cases of persistent or relapsing gummatous disease with ulceration of skin, it is often necessary to remove the diseased soft parts with the sharp spoon and scissors, and to gouge or chisel away the unhealthy bone, on the same lines as in tuberculous disease. When hyperostosis and sclerosis of the bone is attended with severe pain which does not yield to blistering, the periosteum may be incised and the sclerosed bone perforated with a drill or trephine. #Lesions of Bone in Inherited Syphilis.#--_Craniotabes_, in which the flat bones of the skull undergo absorption in patches, was formerly regarded as syphilitic, but it is now known to result from prolonged malnutrition from any cause. _Bossing of the skull_ resulting in the formation of Parrot's nodes is also being withdrawn from the category of syphilitic affections. The lesions in infancy--epiphysitis, bossing of the skull, and craniotabes--have been referred to in the chapter on inherited syphilis. _Epiphysitis or Syphilitic Perichondritis._--The first of these terms is misleading, because the lesion involves the ossifying junction and the shaft of the bone, and the epiphysis only indirectly. The young bone is replaced by granulation tissue, so that large clear areas are seen with the X-rays. The symptoms are referred to the joint, because it is there that the muscles are inserted and drag on the perichondrium when movement occurs; swelling is most marked in the vicinity of the joint, and it may be added to by effusion into the synovial cavity. The baby, usually under six months, is noticed to be feverish and fretful and to cry when touched. The mother discovers that the pain is caused by moving a particular limb, usually the arm, as the humerus, radius, and ulna are the bones most commonly affected; the limb, moreover, hangs useless at the side as if paralysed, and the condition was formerly described as _syphilitic pseudo-paralysis_. The lesions met with later correspond to those of the tertiary period of the acquired disease, but as they affect bones which are still actively growing, the effects are more striking. Gummatous disease may come and go over periods of many years, with the result that the external appearance and architectural arrangement of a long bone come to be profoundly altered. In the tibia, for example, the shaft is bowed forward in a gentle curve, which is compared to the curve of a sabre--"sabre-blade" deformity (Fig. 132). The diffuse thickening all round the bone obscures the sharp margins so that the bone becomes circular in section and the anterior and mesial edges are blunted, and the comparison to a cucumber is deserved. In some cases the tibia is actually increased in length as well as in girth. [Illustration: FIG. 132.--Sabre-blade Deformity of Left Tibia in Inherited Syphilis. (From a photograph lent by Sir George T. Beatson.)] The contrast between the grossly enlarged and misshapen tibia and the normal or even attenuated fibula is a striking one. _Treatment_ is carried out on lines similar to those recommended in the acquired disease. When curving of the tibia causes disability in walking, the bone may be straightened by a cuneiform resection. _Syphilitic dactylitis_ is met with chiefly in children. It may affect any of the fingers or toes, but is commonest in the first phalanx of the index-finger or of the thumb. Several fingers may be attacked at the same time or in succession. The lesion consists in a gummatous infiltration of the soft parts surrounding the phalanx, or a gummatous osteomyelitis, but there is practically no tendency to break down and discharge, or to the formation of a sequestrum as is so common in tuberculous dactylitis. The finger becomes the seat of a swelling, which is more evident on the dorsal aspect, and, according to the distribution and extent of the disease, it is acorn-shaped, fusiform, or cylindrical. It is firm and elastic, and usually painless. The movements are impaired, especially if the joints are involved. In its early stages the disease is amenable to anti-syphilitic treatment, and complete recovery is the rule. HYDATID DISEASE This rare disease results from the lodgment of the embryos of the taenia echinoccus, which are conveyed to the marrow by the blood-stream. The cysts are small, usually about the size of a pin-head, and they are present in enormous numbers scattered throughout the marrow. The parts of the skeleton most often affected are the articular ends of the long bones, the bodies of the vertebrae, and the pelvis. As the cysts increase in number and in size, the framework of the bone is gradually absorbed, and there result excavations or cavities. The marrow and spongy bone first disappear, the compact tissue then becomes thin, and pathological fracture may result. The bone becomes expanded, and the cysts may escape through perforations into the surrounding cellular tissue, and when thus freed from confinement may attain considerable dimensions. Suppuration from superadded pyogenic infection may be attended with extensive necrosis, and lead to disorganisation of the adjacent joint. _Clinical Features._--The patient complains of deep-seated pains. In superficial bones, such as the tibia, there is enlargement, and it may be possible to recognise egg-shell crackling, or unequal consistence of the bone, which is hard in some parts, and doughy and elastic in others. The disease may pursue an indolent course during months or years until some complication occurs, such as suppuration or fracture. With the occurrence of suppuration the disease becomes more active, and abscesses may form in the soft parts and in the adjacent joint. In the vertebral column, hydatids give rise to angular deformity and paraplegia. In the pelvis, there is usually great enlargement of the bones, and when suppuration occurs it is apt to infect the hip-joint and to terminate fatally. Examination with the X-rays shows the characteristic excavations of the bone caused by the cysts. The disease is liable to be mistaken for central tumour, gumma, tuberculosis, or abscess of bone. The _treatment_ consists in thorough eradication of the parasite by operation. The bone is laid open and scraped or resected according to the extent of the disease, and the raw surfaces swabbed with 1 per cent. formalin. In advanced cases complicated with spontaneous fracture or with suppuration, amputation affords the best chance of recovery. The lesions in the bones resulting from _actinomycosis_ and from _mycetoma_, have been described with these diseases. CONSTITUTIONAL DISEASES ATTENDED WITH LESIONS IN THE BONES These include rickets, scurvy-rickets, osteomalacia, ostitis deformans, osteomyelitis fibrosa, fragilitas ossium, and diseases of the nervous system. RICKETS Rickets or rachitis is a constitutional disease associated with disturbance of nutrition, and attended with changes in the skeleton. The disease is most common and most severe among the children of the poorer classes in large cities, who are improperly fed and are brought up in unhealthy surroundings. There is evidence that the most important factors in the causation of rickets are ill-health of the mother during pregnancy, and the administration to the child after its birth of food which is defective in animal fat, proteids, and salts of lime, or which contains these in such a form that they are not readily assimilated. The occurrence of the disease is favoured, and its features are aggravated, by imperfect oxygenation of the blood as the result of a deficiency of fresh air and sunlight, want of exercise, and by other conditions which prevail in the slums of large towns. _Pathological Anatomy._--The most striking feature is the softness (malacia) of the bones, due to excessive absorption of osseous tissue, and the formation of an imperfectly calcified tissue at the sites of ossification. The affected bones lose their rigidity, so that they are bent under the weight of the body, by the traction of muscles, and by other mechanical forces. The _periosteum_ is thick and vascular, and when detached carries with it plates and spicules of soft porous bone. The new bone may be so abundant that it forms a thick crust on the surface, and in the flat bones of the skull this may be heaped up in the form of bosses or ridges resembling those ascribed to inherited syphilis. In the epiphysial cartilages and at the ossifying junctions, all the processes concerned in ossification, excepting the deposition of lime salts, occur to an exaggerated degree. The cartilage of the epiphysial disc proliferates actively and irregularly, so that it becomes softer, thicker, and wider, and gives rise to a visible swelling, best seen at the lower end of the radius and lower end of the tibia, and at the costo-chondral junctions where the series of beaded swellings is known as the "rickety rosary." The ossifying zone is increased in depth; the marrow is abnormally vascular; and the new bone that is formed is imperfectly calcified. The result is that the bones may never attain their normal length, and they remain stunted throughout life as in rickety dwarfs (Fig. 133), or the shafts may grow unequally and come to deviate from their normal axes as in knock-knee and bow-knee. [Illustration: FIG. 133.--Skeleton of Rickety Dwarf, known as "Bowed Joseph," leader of the Meal Riots in Edinburgh, who died in 1780. (Anatomical Museum, University of Edinburgh.)] These changes are well brought out in skiagrams; instead of the well-defined narrow line which represents the epiphysial cartilage, there is an ill-defined, blurred zone of considerable depth. In the shafts of the long bones, owing to the excessive absorption of bone, the cortex becomes porous, the spongy bone is rarefied, and the bones readily bend or break under mechanical influences. When the disease is arrested, a process of repair sets in which often results in the bones becoming denser and heavier than normal. In the flat bones of the skull, the absorption may result in the entire disappearance of areas of bone, leaving a membrane which dimples like thin cardboard under the pressure of the finger--a condition known as _craniotabes_. _Changes in the Skeleton before the Child is able to walk._--The fontanelles remain open until the end of the second year or longer, and the frontal and parietal eminences are unduly prominent. There is sometimes hydrocephalus, and the head is characteristically enlarged. The jaws are altered so that while the upper jaw is contracted into the shape of a #V#, the lower jaw is square instead of rounded in outline, and the teeth do not oppose one another. In the _thorax_, the chief feature may be the beading at the costo-chondral junctions, principally of the fifth and sixth ribs or its walls may be contracted, particularly if respiration is interfered with as a result of bronchial catarrh or adenoids. The contraction may take the form of a vertical groove on each side, or of a horizontal groove at the level of the upper end of the xiphi-sternum; when the sternum and cartilages form a projection in front, the deformity is known as "pigeon-breast." The _spine_ may be curved backwards--_kyphosis_--throughout its whole extent or only in one part; or it may be curved to one side--_scoliosis_. In the _limbs_, the prominent features are the deficient growth in length of the long bones, the enlargements at the epiphysial junctions, and the bending, and occasional greenstick fracture, of the shafts. The degree of enlargement of the epiphysial junctions is directly proportionate to the amount of movement to which the bone is subjected (John Thomson). The curves at this stage depend on the attitude of the child while sitting or being carried--for example, the arm bones become bent in children who paddle about the floor with the aid of their arms; and in a child who lies on its back with the lower limbs everted, the weight of the limb may lead to curvature of the neck of the femur--coxa vara. The clavicle or humerus may sustain greenstick fracture from the child being lifted by the arms; the femur, by a fall. From the extreme laxity of the ligaments, the joints can be moved beyond the normal limits, and the child is often observed to twist its limbs into abnormal attitudes. _In Children who have walked._--In these children the most important deformities occur in the spine, pelvis, and lower extremities, and result for the most part from yielding of the softened bones under the weight of the body. Scoliosis is the usual type of spinal curvature, and in extreme cases it may lead to a pronounced form of hump-back. The pelvis may remain small (_justo-minor pelvis_), or it may be contracted in the sagittal plane (_flat pelvis_); when the bones are unusually soft, the acetabular portions are pushed inwards by the femora bearing the weight of the body, and the pelvis assumes the shape of a trefoil, as in the malacia of women. The shaft of the femur is curved forwards and laterally; the bones of the leg laterally as in bow-leg, or forwards, or forwards and laterally just above the ankle. The deformities at the knee (genu valgum, genu varum, and genu recurvatum), and at the hip (coxa vara), will be described in the volume dealing with the Extremities. The majority of cases seen in surgical practice suffer from the deformities resulting from rickets rather than from the active disease. The examination of a large series of children at different ages shows that the deformities become less and less frequent with each year. Those who recover may ultimately show no trace of rickets, and this is especially true of children who grow at the average rate; in those, however, in whom growth is retarded, especially from the fifth to the seventh year, the deformities are apt to be permanent. It may be noted that the scoliosis due to rickets has little tendency towards recovery. _Treatment._--The treatment of the disease consists in regulating the diet, improving the surroundings, and preventing deformity. Phosphorus in doses of 100th grain may be given dissolved in cod-liver oil, and preparations of iron and lime may be added with advantage. To avoid those postures which predispose to deformities, the child should lie as much as possible. In the well-to-do classes this is readily accomplished by the aid of a nurse and the use of a perambulator. In hospital out-patients the child is kept off its feet by the use of a light wooden splint applied to the lateral aspect of each lower extremity, and extending from the pelvis to 6 inches beyond the sole. When deformities are already present, the treatment depends upon whether or not there is any prospect of the bone straightening naturally. Under five years of age this may, as a rule, be confidently expected; the child should be kept off its feet, and the limbs bathed and massaged. In children of five or six and upwards, the prospect of natural straightening is a diminishing one, and it is more satisfactory to correct the deformity by operation. In rickety curvature of the spine, the child should lie on a firm mattress, or, to allow of its being taken into the open air, upon a double Thomas' splint extending from the occiput to the heels; the muscles acting on the trunk should be braced up by massage and appropriate exercises. #Late Rickets# or #Rachitis Adolescentium# is met with at any age from nine to seventeen, and is generally believed to be due to a recrudescence of rickets which had been present in childhood. The disease is not attended with any disturbance of the general health; the pathological changes are the same as in infantile rickets, but are for the most part confined to the ossifying junctions, especially those which are most active during adolescence, for example at the knee-joint. The patient is easily tired, complains of pain in the bones, and, unless care is taken, deformity is liable to ensue. There can be no doubt that adolescent rickets plays an important part in the production of the deformities which occur at or near puberty, especially knock-knee and bow-knee. #Scurvy-Rickets# or #Infantile Scurvy#.--This disease, described by Barlow and Cheadle, is met with in infants under two years who have been brought up upon sterilised or condensed milk and other proprietary foods, and is most common in the well-to-do classes. The haemorrhages, which are so characteristic of the disease, are usually preceded for some weeks by a cachectic condition, with listlessness and debility and disinclination for movement. Very commonly the child ceases to move one of his lower limbs--pseudo-paralysis--and screams if it is touched; a swelling is found over one of the bones, usually the femur, accompanied by exquisite tenderness; the skin is tense and shiny, and there may be some oedema. These symptoms are due to a sub-periosteal haemorrhage, and associated with this there may be crepitus from separation of an epiphysis, rarely from fracture of the shaft of the bone. X-ray photographs show enlargement of the bone, the periosteum being raised from the shaft and new bone formed in relation to it. Haemorrhages also occur into the skin, presenting the appearance of bruises, into the orbit and conjunctiva, and from the mucous membranes. The _treatment_ consists in correcting the errors in diet. The infant should have a wet nurse or a plentiful supply of cow's milk in its natural state. Anti-scorbutics in the form of orange, lemon, or grape juice, and of potatoes bruised down in milk, may be given. #Osteomalacia.#--The term osteomalacia includes a group of conditions, closely allied to rickets, in which the bones of adults become soft and yielding, so that they are unduly liable to bend or break. One form occurs in _pregnant and puerperal women_, affecting most commonly the pelvis and lumbar vertebrae, but sometimes the entire skeleton. The lime salts are absorbed, the bones lose their rigidity and bend under the weight of the body and other mechanical influences, with the result that gross deformities are produced, particularly in the pelvis, the lumbar spine, and the hip-joints. _Neuropathic_ forms occur in certain chronic diseases of the brain and cord; in some cases the bones lose their lime salts and bend, in others they become brittle. _Osteomalacia associated with New Growths in the Skeleton._--When _secondary cancer_ is widely distributed throughout the skeleton, it is associated with softening of the bones, as a result of which they readily bend or break, and after death are easily cut with a knife. In the disease known as _multiple myeloma_, the interior of the ribs, sternum, and bodies of the vertebrae is occupied by a reddish gelatinous pulp, the structure of which resembles sarcoma; the bones are reduced to a mere shell, and may break on the slightest pressure; the urine contains albumose, a substance resembling albumen but coagulating at a comparatively low temperature (140 o F.), and the coagulum is re-dissolved on boiling, and it is readily precipitated by hydrochloric acid (Bence-Jones). #Ostitis Deformans--Paget's Disease of Bone.#--This rare disease was first described by Sir James Paget in 1877. In the early stages, the marrow is transformed into a vascular connective tissue; its bone-eating functions are exaggerated, and the framework of the bone becomes rarefied, so that it bends under pressure as in osteomalacia. In course of time, however, new bone is formed in great abundance; it is at first devoid of lime salts, but later becomes calcified, so that the bones regain their rigidity. This formation of new bone is much in excess of the normal, the bones become large and bulky, their surfaces rough and uneven, their texture sclerosed in parts, and the medullary canal is frequently obliterated. These changes are well brought out in X-ray photographs. The curving of the long bones, which is such a striking feature of the disease, may be associated with actual lengthening, and the changes are sometimes remarkably symmetrical (Fig. 135). The bones forming the cranium may be enormously thickened, the sutures are obliterated, the distinction into tables and diploe is lost, and, while the general texture is finely porous, there may be areas as dense as ivory (Fig. 134). [Illustration: FIG. 134.--Changes in the Skull resulting from Ostitis Deformans. (Anatomical Museum, University of Edinburgh.)] _Clinical Features._--The disease is usually met with in persons over fifty years of age. It is insidious in its onset, and, the patient's attention may be first attracted by the occurrence of vague pains in the back or limbs; by the enlargement and bending of such bones as the tibia or femur; or by a gradual increase in the size of the head, necessitating the wearing of larger hats. When the condition is fully developed, the attitude and general appearance are eminently characteristic. The height is diminished, and, owing to the curving of the lower limbs and spine, the arms appear unnaturally long; the head and upper part of the spine are bent forwards; the legs are held apart, slightly flexed at the knees, and are rotated out as well as curved; the whole appearance suggests that of one of the large anthropoid apes. The muscles of the limbs may waste to such an extent as to leave the large, curved, misshapen bones covered only by the skin (Fig. 135). In the majority of cases the bones of the lower extremities are much earlier and more severely affected than those of the upper extremity, but the capacity of walking is usually maintained even in the presence of great deformity. In a case observed by Byrom Bramwell, the patient suffered from a succession of fractures over a period of years. [Illustration: FIG. 135.--Cadaver, illustrating the alterations in the Lower Limbs resulting from Ostitis Deformans.] The disease may last for an indefinite period, the general health remaining long unaffected. In a considerable number of the recorded cases one of the bones became the seat of sarcoma. #Osteomyelitis Fibrosa.#--This comparatively rare disease, which was first described by Recklinghausen, presents many interesting features. Because of its causing deformities of the bones and an undue liability to fracture, and being chiefly met with in adolescents, it is regarded by some authors as a juvenile form of Paget's disease. It may be diffused throughout the skeleton--we have seen it in the skull and in the bones of the extremities--or it may be confined to a single bone, usually the femur, or, what is more remarkable, the condition may affect a portion only of the shaft of a long bone and be sharply defined from the normal bone in contact with it. [Illustration: FIG. 136.--Osteomyelitis Fibrosa affecting Femora in a man aet. 19. The curving of the bones is due to multiple fractures.] On longitudinal section of a long bone during the active stage of the disease, the marrow is seen to be replaced by a vascular young connective tissue which encroaches on the surrounding spongy bone, reducing it to the slenderest proportions; the formation of bone from the periosteum does not keep pace with the absorption and replacement going on in the interior, and the cortex may be reduced to a thin shell of imperfectly calcified bone which can be cut with a knife. The young connective tissue which replaces the marrow is not unlike that seen in osteomalacia; it is highly vascular and may show haemorrhages of various date; there are abundant giant cells of the myeloma type, and degeneration and liquefaction of tissue may result in the formation of cysts, which, when they constitute a prominent feature, are responsible for the name--_osteomyelitis fibrosa cystica_--sometimes applied to the condition. It would appear that most of the recorded cases of _cysts of bone_ owe their origin to this disease, while the abundance of giant cells with occasional islands of cartilage in the wall of such cysts is responsible for the view formerly held that they owed their origin to the liquefaction of a solid tumour, such as a myeloma, a chondroma, or even a sarcoma. Although the tissue elements in this disease resemble those of a new growth arising in the marrow, they differ in their arrangement and in their method of growth; there is no tendency to erupt through the cortex of the bone, to invade the soft parts, or to give rise to secondary growths. _Clinical Features._--The onset of the disease is insidious, and attention is usually first directed to it by the occurrence of fracture of the shaft of one of the long bones--usually the femur--from violence that would be insufficient to break a healthy bone. Apart from fracture, the great increase in the size of one of the long bones and its uneven contour are sufficiently remarkable to suggest examination with the X-rays, by means of which the condition is at once recognised. A systematic examination of the other long bones will often reveal the presence of the disease at a stage before the bone is altered externally. Symmetrical bossing of the skull was present in the case shown in Figs. 136 and 137, and there were also scattered patches of brown pigmentation of the skin of the face, neck, and trunk, similar to those met with in generalised neuro-fibromatosis. Apart from fracture, the disease is recognised by the thickening and usually also by the curving of the shafts of the long bones. It is easy to understand the curvature of bones that have passed through a soft stage and also of those that have been broken and badly united, but it is difficult to account for the curvatures that have no such cause; for example, we have seen marked curve of the radius in a forearm of which the ulna was quite straight. The curvature probably resulted from exaggerated growth in length. [Illustration: FIG. 137.--Radiogram of Upper End of Femur showing appearances in Osteomyelitis Fibrosa.] The X-ray appearances vary with the stage of the malady, not estimated in time, for the condition is chronic and may become stationary, but according to whether it is progressive or undergoing repair. The shadow of the bone presents a poor contrast to the soft parts, and no trace of its original architecture; in extreme cases the shadow of the femur resembles an unevenly filled sausage (Fig. 137); there is no cortical layer, the interior shows no trabecular structure, and some of the many clear areas are probably cysts. The condition extends right up to the articular cartilage, or, in the case of adolescent bones, up to the epiphysial cartilage. _Prognosis._--The condition does not appear to affect the general health. The future is concerned with the local conditions, and, especially in the case of the femur, with its liability to fracture; so far as we know there is no time limit to this. _Treatment_ is confined to protecting the affected bone--usually the femur--from injury. Operative treatment may be required for lameness due to a badly united fracture. #Neuropathic Atrophy of Bone.#--The conditions included under this heading occur in association with diseases of the nervous system. Most importance attaches to the fragility of the bones met with in general paralysis of the insane, locomotor ataxia, and other chronic diseases of the brain and spinal cord. The bones are liable to be fractured by forces which would be insufficient to break a healthy bone. In _locomotor ataxia_ the fractures affect especially the bones of the lower extremity, and may occur before there are any definite nerve symptoms, but they are more often met with in the ataxic stage, when the abrupt and uncontrolled movements of the limbs may play a part in their causation. They may be unattended with pain, and may fail to unite; when repair does take place, it is sometimes attended with an excessive formation of callus. Joint lesions of the nature of Charcot's disease may occur simultaneously with the alterations in the bones. In _syringomyelia_ pathological fracture is not so frequent as in locomotor ataxia; it is more likely to occur in the bones of the upper extremity, and especially in the humerus. In some cases of _epilepsy_ the bones break when the patient falls in a fit, and there is usually an exaggerated amount of comminution. In these affections the bones present no histological or chemical alterations, and the X-ray shadow does not differ from the normal. It is maintained, therefore, that the disposition to fracture does not depend upon a fragility of the bone, but on the loss of the muscular sense and of common sensation in the bones, as a result of which there is an inability properly to throw the muscles into action and dispose the limbs so as to place them under the most favourable conditions to meet external violence. #Osteogenesis Imperfecta#, #Fragilitas Ossium#, or #Congenital Osteopsathyrosis#.--These terms are used to describe a condition in which an undue fragility of the bones dates from intra-uterine life. It may occur in several members of the same family. In severe cases, intra-uterine fractures occur, and during parturition fresh fractures are almost sure to be produced, so that at birth there is a combination of recent fractures and old fractures united and partly united, with bendings and thickenings of the bones. Large areas of the cranial vault may remain membranous. After birth the predisposition to fracture continues, the bones are easily broken, the fractures are attended with little or no pain, the crepitus is soft, and although union may take place, it may be delayed and be attended with excess of callus. Cases have been observed in which a child has sustained over a hundred fractures. The bones show a feeble shadow with the X-rays, and appear thin and atrophied; the medullary canal is increased at the expense of the cortex. In young infants in whom multiple fractures occur the prognosis as to life is unfavourable, and no satisfactory treatment of the disease has been formulated. If the patient survives, the tendency to fracture gradually disappears. #Hypertrophic Pulmonary Osteo-Arthropathy.#--This condition, which was described by Marie in 1890, is secondary to disease in the chest, such as chronic phthisis, empyema, bronchiectasis, or sarcoma of the lung. There is symmetrical enlargement and deformity of the hands and feet; the shafts of the bones are thickened, and the soft tissues of the terminal segments of the digits hypertrophied. The fingers come to resemble drum-sticks, and the thumb the clapper of a bell. The nails are convex, and incurved at their free ends, suggesting a resemblance to the beak of a parrot. There is also enlargement of the lower ends of the bones of the forearm and leg, and effusion into the wrist and ankle-joints. Skiagrams of the hands and feet show a deposit of new bone along the shafts of the phalanges. TUMOURS OF BONE New growths which originate in the skeleton are spoken of as _primary tumours_; those which invade the bones, either by metastasis from other parts of the body or by spread from adjacent tissues, as _secondary_. A tumour of bone may grow from the cellular elements of the periosteum, the marrow, or the epiphysial cartilage. Primary tumours are of the connective-tissue type, and are usually solitary, although certain forms, such as the chondroma, may be multiple from the outset. _Periosteal tumours_ are at first situated on one side of the bone, but as they grow they tend to surround it completely. Innocent periosteal tumours retain the outer fibrous layer as a capsule. Malignant tumours tend to perforate the periosteal capsule and invade the soft parts. _Central_ or _medullary tumours_ as they increase in size replace the surrounding bone, and simultaneously new bone is formed on the surface; as this is in its turn absorbed, further bone is formed beneath the periosteum, so that in time the bone is increased in girth, and is said to be "expanded" by the growth in its interior. #Primary Tumours--Osteoma.#--When the tumour projects from the surface of a bone it is called an _exostosis_. When growing from bones developed in membrane, such as the flat bones of the skull, it is usually dense like ivory, and the term _ivory exostosis_ is employed. When derived from hyaline cartilage--for example, at the ends of the long bones--it is known as a _cartilaginous exostosis_. This is invested with a cap of cartilage from which it continues to grow until the skeleton attains maturity. An exostosis forms a rounded or mushroom-shaped tumour of limited size, which may be either sessile or pedunculated, and its surface is smooth or nodulated (Figs. 138 and 139). A cartilaginous exostosis in the vicinity of a joint may be invested with a synovial sac or bursa--the so-called _exostosis bursata_. The bursa may be derived from the synovial membrane of the adjacent joint with which its cavity sometimes communicates, or it may be of adventitious origin; when it is the seat of bursitis and becomes distended with fluid, it may mask the underlying exostosis, which then requires a radiogram for its demonstration. [Illustration: FIG. 138.--Radiogram of Right Knee showing Multiple Exostoses.] _Clinically_, the osteoma forms a hard, indolent tumour attached to a bone. The symptoms to which it gives rise depend on its situation. In the vicinity of a joint, it may interfere with movement; on the medial side of the knee it may incapacitate the patient from riding. When growing from the dorsum of the terminal phalanx of the great toe--_subungual exostosis_--it displaces the nail, and may project through its matrix at the point of the toe, while the soft parts over it may be ulcerated from pressure (Fig. 107). It incapacitates the patient from wearing a boot. When it presses on a nerve-trunk it causes pains and cramps. In the orbit it displaces the eyeball; in the nasal fossae and in the external auditory meatus it causes obstruction, which may be attended with ulceration and discharge. In the skull it may project from the outer table, forming a smooth rounded swelling, or it may project from the inner table and press upon the brain. The diagnosis is to be made by the slow growth of the tumour, its hardness, and by the shadow which it presents with the X-rays (Fig. 138). An osteoma which does not cause symptoms may be left alone, as it ceases to grow when the skeleton is mature and has no tendency to change its benign character. If causing symptoms, it is removed by dividing the neck or base of the tumour with a chisel, care being taken to remove the whole of the overlying cartilage. The dense varieties met with in the bones of the skull present greater difficulties; if it is necessary to remove them, the base or neck of the tumour is perforated in many directions with highly tempered drills rotated by some form of engine, and the division is completed with the chisel. [Illustration: FIG. 139.--Multiple Exotoses of both limbs. (Photograph lent by Sir George T. Beatson.)] #Multiple Exostoses.#--This disease, which, by custom, is still placed in the category of tumours, is to be regarded as a disorder of growth, dating from intra-uterine life and probably due to a disturbance in the function of the glands of internal secretion, the thyreoid being the one which is most likely to be at fault (Arthur Keith). The disorder of growth is confined to those elements of the skeleton where a core of bone formed in cartilage comes to be encased in a sheath of bone formed beneath the periosteum. To indicate this abnormality the name _diaphysial aclasis_ has been employed by Arthur Keith at the suggestion of Morley Roberts. Bones formed entirely in cartilage are exempt, namely, the tarsal and carpal bones, the epiphyses of the long bones, the sternum, and the bodies of the vertebrae. Bones formed entirely in membrane, that is, those of the face and of the cranial vault, are also exempt. The disorder mainly affects the ossifying junctions of the long bones of the extremities, the vertebral border of the scapula, and the cristal border of the ilium. _Clinically_ the disease is attended with the gradual and painless development during childhood or adolescence of a number of tumours or irregular projections of bone, at the ends of the long bones, the vertebral border of the scapula, and the cristal border of the ilium. They exhibit a rough symmetry; they rarely attain any size; and they usually cease growing when the skeleton attains maturity--the conversion of cartilage into bone being then completed. While they originate from the ossifying junctions of the long bones, they tend, as the shaft increases in length, to project from the surface of the bone at some distance from the ossifying junction and to "point" away from it. They may cause symptoms by "locking" the adjacent joint or by pressing upon nerve-trunks or blood vessels. In a considerable proportion of cases, the disturbance of growth is further manifested by dwarfing of the long bones; these are not only deficient in length but are sometimes also curved and misshapen, which accounts for the condition being occasionally confused with the disturbances of growth resulting from rickets. In about one-third of the recorded cases there is a dislocation of the head of the radius on one or on both sides, a result of unequal growth between the bones of the forearm. [Illustration: FIG. 140.--Multiple Cartilaginous Exostoses in a man aet. 27. The scapular tumour projecting above the right clavicle has taken on active growth and pressed injuriously on the cords of the brachial plexus.] In early adult life, one of the tumours, instead of undergoing ossification, may take on active growth and exhibit the features of a chondro-sarcoma, pressing injuriously upon adjacent structures (Fig. 140) and giving rise later to metastases in the lungs. The _X-ray appearances_ of the bones affected are of a striking character; apart from the outgrowths of bone or "tumours" there is evident a widespread alteration in the internal architecture of the bones, which suggests analogies with other disturbances of ossification such as achondroplasia and osteomyelitis fibrosa. The condition is one that runs in families, sometimes through several generations; we have more than once seen a father and son together in the hospital waiting-room. As regards _treatment_, there is no indication for surgical interference except when one or other tumour is a source of disability as by pressing upon a nerve-trunk or by locking a joint, in which case it is easily removed by chiselling through its neck. [Illustration: FIG. 141.--Multiple Cartilaginous Exostoses in a man aet. 27, the same as in Fig. 140.] _Diffuse Osteoma, Leontiasis Ossea._--This rare affection was described by Virchow, and named leontiasis ossea because of the disfigurement to which it gives rise. It usually commences in adolescence as a diffuse overgrowth first of one and then of both maxillae; these bones are enlarged in all directions and project on the face, and the nasal fossae and the maxillary and frontal sinuses become filled up with bone, which encroaches also on the orbital cavities. In addition to the hideous deformity, the patient suffers from blocking of the nose, loss of smell, and protrusion of the eyes, sometimes followed by loss of sight. The condition is liable to spread to the zygomatic and frontal bones, the vault of the skull, and to the mandible. The base of the skull is not affected. The disease is of slow progress and may become arrested; life may be prolonged for many years, or may be terminated by brain complications or by intercurrent affections. In certain cases it is possible to remove some of the more disfiguring of the bony masses. A less aggressive form, confined to the maxilla on one side, is sometimes met with, and, in a case of this variety under our own observation, the disfigurement, which was the only subject of complaint, was removed, after reflecting the soft parts, by paring away the excess of bone; this is easily done as the bone is spongy, and at an early stage, imperfectly calcified. A remarkable form of _unilateral hypertrophy and diffuse osteoma of the skull_, following the distribution of the fifth nerve, has seen described by Jonathan Hutchinson and Alexis Thomson. #Chondroma.#--Cartilaginous tumours, apart from those giving rise to multiple exostoses, grow from the long bones and from the scapula, ilium, ribs, or jaws. They usually project from the surface of the bone, and may attain an enormous size; sometimes they grow in the interior of a bone, the so-called _enchondroma_. The hyaline cartilage composing the tumour frequently undergoes myxomatous degeneration, resulting in the formation of a glairy, semi-fluid jelly, and if this change takes place throughout the tumour it comes to resemble a cyst. On the other hand, the cartilage may undergo calcification or ossification. The most important transition of all is that into sarcoma, the so-called _malignant chondroma_ or _chondro-sarcoma_, which is associated with rapid increase in size, and parts of the tumour may be carried off in the blood-stream and give rise to secondary growths, especially in the lungs. Cases have been met with in which certain parts of the skeleton--only those developed in cartilage--were so uniformly permeated with cartilage that the condition has been described as a "chondromatosis" and is regarded as dating from an early period of foetal life. Unlike the condition known as multiple cartilaginous exostoses, it is a malignant disease. [Illustration: FIG. 142.--Multiple Chondromas of Phalanges and Metacarpals in a boy aet. 10 (cf. Fig. 143).] The chondroma is met with as a slowly growing tumour which is specially common in the bones of the hand, often in a multiple form (Figs. 142 and 144). The surface is smooth or lobulated, and in consistence the tumour may be dense and elastic like normal cartilage, or may present areas of softening, or of bony hardness. The skin moves freely over it, except in relation to the bones of the fingers, where it may become adherent and ulcerate, simulating the appearance of a malignant tumour. Large tumours growing from the bones of the extremities may implicate the main vessels and nerves, either surrounding them or pressing on them. Portions of a chondroma, which have undergone calcification or ossification, throw a dark shadow with the X-rays; unaltered cartilage and myxomatous tissue appear as clear areas. [Illustration: FIG. 143.--Skiagram of Multiple Chondromas shown in Fig. 142.] _Treatment._--It is necessary to remove the whole tumour, and in chondromas growing from the surface of the bone, especially if they are pedunculated, this is comparatively easy. When a bone, such as the scapula or mandible, is involved, it is better to excise the bone, or at least the part of it which bears the tumour. In the case of central tumours the shell of bone is removed over an area sufficient to allow of the enucleation of the tumour, or the affected portion of bone is resected. Should there be evidence of malignancy, such as increased rate of growth, a tube of radium should be inserted, and in advanced cases with destruction of tissue, amputation may be called for. [Illustration: FIG. 144.--Multiple Chondromas in Hand of boy aet. 8] In multiple chondromas of the hand in young subjects, it was formerly the custom to amputate the limb; an attempt should be made to avoid this by shelling out the larger tumours individually, and persevering with the application of the X-rays or of radium to inhibit the growth of the smaller ones. Chondromas springing from the pelvic bones usually arise in the region of the sacro-iliac joint; they project into the pelvis and press on the bladder and rectum, and on the sciatic and obturator nerves; sometimes also on the iliac veins, causing oedema of the legs. They are liable to take on malignant characters, and rarely lend themselves to complete removal by operation. #Fibroma# is met with chiefly as a periosteal growth in relation to the mouth and pharynx, the _simple epulis_ of the alveolar margin and the _naso-pharyngeal polypus_ being the most common examples. We have met with a fibroma in the interior of the lower end of the femur of an adult, causing expansion of the bone with decided increase in girth and liability to pathological fracture; it is possible that this represents the cured stage of osteomyelitis fibrosa. _Myxoma_, _lipoma_, and _angioma_ of bone are all rare. #Myeloma.#--The myeloid tumour, which is sometimes classified with the sarcomas, contains as its chief elements large giant cells, like those normally present in the marrow. On section these tumours present a brownish-red or chocolate colour, and, being highly vascular, are liable to haemorrhages, and therefore also to pigmentation, and to the formation of blood cysts. Sometimes the arterial vessels are so dilated as to impart to the tumour an aneurysmal pulsation and bruit. The enlargement or "expansion" of the bone results in the cortex being represented by a thin shell of bone, which may crackle on pressure--parchment or egg-shell crackling. The myeloma is most often met with between the ages of twenty-five and forty in the upper end of the tibia or lower end of the femur. It grows slowly and causes little pain, and may long escape recognition unless an examination is made with the X-rays. Although these tumours have been known to give rise to metastases, they are, as a rule, innocent and are to be treated as such. When located in the shaft of a long bone, pathological fracture is liable to occur. _Diagnosis and X-ray Appearances of Myeloma._--The early diagnosis of myeloma is made with the aid of the X-rays: the typical appearance is that of a rounded or oval clear area bounded by a shell of bone of diminishing thickness (Fig. 145). The inflammatory lesions at the ends of the long bones--tubercle, syphilitic gumma, and Brodie's abscess, that resemble myeloma, are all attended with the formation of new bone in greater or lesser amount. The myeloma is also to be diagnosed from chondroma, from sarcoma, and from osteomyelitis fibrosa cystica. [Illustration: FIG. 145.--Radiogram of Myeloma of Humerus. (Mr. J. W. Struthers' case.)] _Treatment._--In early cases the cortex is opened up to give free access to the tumour tissue, which is scraped out with the spoon. Bloodgood advises the use of Esmarch's tourniquet, and that the curetting be followed by painting with pure carbolic acid and then rinsing with alcohol; a rod of bone is inserted to fill the gap. In advanced cases the segment of bone is resected and a portion of the tibia or fibula from the other limb inserted into the gap; a tube of radium should also be introduced. The coexistence of diffuse myelomatosis of the skeleton and albumosuria (Bence-Jones) is referred to on p. 474. Myeloma occurs in the jaws, taking origin in the marrow or from the periosteum of the alveolar process, and is described elsewhere. #Sarcoma# and #endothelioma# are the commonest tumours of bone, and present wide variations in structure and in clinical features. Structurally, two main groups may be differentiated: (1) the soft, rapidly growing cellular tumours, and (2) those containing fully formed fibrous tissue, cartilage, or bone. (1) The _soft cellular tumours_ are composed mainly of spindle or round cells; they grow from the marrow of the spongy ends or from the periosteum of the long bones, the diploe of the skull, the pelvis, vertebrae, and jaws. As they grow they may cause little alteration in the contour of the bone, but they eat away its framework and replace it, so that the continuity of the bone is maintained only by tumour tissue, and pathological fracture is a frequent result. The small round-celled sarcomas are among the most malignant tumours of bone, growing with great rapidity, and at an early stage giving rise to secondary growths. (2) The second group includes the _fibro-_, _osteo-_, and _chondro-sarcomas_, and combinations of these; in all of them fully formed tissues or attempts at fully formed tissues predominate over the cellular elements. They grow chiefly from the deeper layer of the periosteum, and at first form a projection on the surface, but later tend to surround the bone (Fig. 150), and to invade its interior, filling up the marrow spaces with a white, bone-like substance; in the flat bones of the skull they may traverse the diploe and erupt on the inner table. The tumour tissue next the shaft consists of a dense, white, homogeneous material, from which there radiate into the softer parts of the tumour, spicules, needles, and plates, often exhibiting a fan-like arrangement (Fig. 151). The peripheral portion consists of soft sarcomatous tissue, which invades the overlying soft parts. The articular cartilage long resists destruction. The ossifying sarcoma is met with most often in the femur and tibia, less frequently in the humerus, skull, pelvis, and jaws. In the long bones it may grow from the shaft, while the chondro-sarcoma more often originates at the extremities. Sometimes they are multiple, several tumours appearing simultaneously or one after another. Secondary growths are met with chiefly in the lungs, metastasis taking place by way of the veins. [Illustration: FIG. 146.--Periosteal Sarcoma of Femur in a young subject.] [Illustration: FIG. 147.--Periosteal Sarcoma of Humerus, after maceration. (Anatomical Museum, University of Edinburgh.)] _Clinical Features._--Sarcoma is usually met with before the age of thirty, and is comparatively common in children. Males suffer oftener than females, in the proportion of two to one. In _periosteal sarcoma_ the presence of a swelling is usually the first symptom; the tumour is fusiform, firm, and regular in outline, and when it occurs near the end of a long bone the limb frequently assumes a characteristic "leg of mutton" shape (Fig. 146). The surface may be uniform or bossed, the consistence varies at different parts, and the swelling gradually tapers off along the shaft. On firm pressure, fine crepitation may be felt from crushing of the delicate framework of new bone. [Illustration: FIG. 148.--Chondro-Sarcoma of Scapula in a man aet. 63; removal of the scapula was followed two years later by metastases and death.] In _central sarcoma_ pain is the first symptom, and it is usually constant, dull, and aching; is not obviously increased by use of the limb, but is often worse at night. Swelling occurs late, and is due to expansion of the bone; it is fusiform or globular, and is at first densely hard, but in time there may be parchment-like or egg-shell crackling from yielding of the thin shell. The swelling may pulsate, and a bruit may be heard over it. In advanced cases it may be impossible to differentiate between a periosteal and a central tumour, either clinically or after the specimen has been laid open. Pathological fracture is more common in central tumours, and sometimes is the first sign that calls attention to the condition. Consolidation rarely takes place, although there is often an attempt at union by the formation of cartilaginous callus. [Illustration: FIG. 149.--Central Sarcoma of Lower End of Femur, invading the knee-joint. (Museum of Royal College of Surgeons, Edinburgh.)] [Illustration: FIG. 150.--Osseous Shell of Osteo-Sarcoma of Upper Third of Femur, after maceration.] The soft parts over the tumour for a long time preserve their normal appearance; or they become oedematous, and the subcutaneous venous network is evident through the skin. Elevation of the temperature over the tumour, which may amount to two degrees or more, is a point of diagnostic significance, as it suggests an inflammatory lesion. The adjacent joint usually remains intact, although its movements may be impaired by the bulk of the tumour or by effusion into the cavity. Enlargement of the neighbouring lymph glands does not necessarily imply that they have become infected with sarcoma for the enlargement may disappear after removal of the primary growth; actual infection of the glands, however, does sometimes occur, and in them the histological structure of the parent tumour is reproduced. To obtain a reasonable prospect of cure, the _diagnosis_ must be made at an early stage. Great reliance is to be placed on information gained by examination with the X-rays. [Illustration: FIG. 151.--Radiogram of Osteo-Sarcoma of Upper Third of Femur.] _X-ray Appearances._--In periosteal tumours that do not ossify, there is merely erosion of bone, and the shadow is not unlike that given by caries; in ossifying tumours, the arrangement of the new bone on the surface is characteristic, and when it takes the form of spicules at right angles to the shaft, it is pathognomic. In soft central tumours, there is disappearance of bone shadow in the area of the tumour, while above and below or around this, the shadow is that of normal bone right up to the clear area. In many respects the X-ray appearances resemble those of myeloma. In tumours in which there is a considerable amount of imperfectly formed new bone, this gives a shadow which barely replaces that of the original bone, in parts it may even add to it--the resulting picture differing widely in different cases; but it is usually possible to differentiate it from that caused by bacterial infections of the bone and from lesions of the adjacent joint. [Illustration: FIG. 152.--Radiogram of Chondro-Sarcoma of Upper End of Humerus in a woman aet. 29.] Skiagraphy is not only of assistance in differentiating new growths from other diseases of bone, but may also yield information as to the situation and nature of the tumour, which may have important bearings on its treatment by operation. When fracture of a long bone takes place in an adolescent or young adult from comparatively slight violence, disease of the bone should be suspected and an X-ray examination made. In difficult cases the final appeal is to exploratory incision and microscopical examination of a portion of the tumour; this should be done when the major operation has been arranged for, the surgeon waiting until the examination is completed. The _prognosis_ varies widely. In general, it may be said that periosteal tumours are less favourable than central ones, because they are more liable to give rise to metastases. Permanent cures are unfortunately the exception. _Treatment._--When one of the bones of a limb is involved, the usual practice has been to perform amputation well above the growth, and this may still be recommended as a routine procedure. There are reasons, however, which may be urged against its continuance. High amputation is unnecessary in the more benign sarcomas, and in the more malignant forms is usually unavailing to prevent a fatal issue either from local recurrence or from metastases in the lungs or elsewhere. Following the lead of Mikulicz, a considerable number of permanent cures have been obtained by resecting the portion of bone which is the seat of the tumour, and substituting for it a corresponding portion from the tibia or fibula of the other limb. In a cellular sarcoma of the humerus of a boy we resected the shaft and inserted his fibula ten years ago, and he shows no sign of recurrence. When resection is impracticable, a subcapsular enucleation is performed, followed by the insertion of radium. #Pulsating Haematoma# or #Aneurysm of Bone#.--A limited number of these are innocent cavernous tumours dating from a congenital angioma. The majority would appear to be the result of changes in a sarcoma, endothelioma, or myeloma. The tumour tissue largely disappears, while the vessels and vascular spaces undergo a remarkable development. The tumour may come to be represented by one large blood-containing space communicating with the arteries of the limb; the walls of the space consist of the remains of the original tumour, plus a shell of bone of varying thickness. The most common seats of the condition are the lower end of the femur, the upper end of the tibia, and the bones of the pelvis. The _clinical features_ are those of a pulsating tumour of slow development, and as in true aneurysm, the pulsation and bruit disappear on compression of the main artery. The origin of the tumour from bone may be revealed by the presence of egg-shell crackling, and by examination with the X-rays. If the condition is believed to be innocent, the treatment is the same as for aneurysm--preferably by ligation of the main artery; if malignant, it is the same as for sarcoma. #Secondary Tumours of Bone.#--These embrace two groups of new growth, those which give rise to secondary growths in the marrow of bones and those which spread to bone by direct continuity. _Metastatic Tumours._--Excepting certain cancers which give rise to metastases by lymphatic permeation (Handley), the common metastases arising in the bone-marrow reach their destination through the blood-stream. [Illustration: FIG. 153.--Epitheliomatous Ulcer of Leg with direct extension to Tibia. (Lord Lister's specimen. Anatomical Museum, University of Edinburgh.)] Secondary cancer is a comparatively common disease, and, as in metastases in other tissues, the secondary growths resemble the parent tumour. The soft forms grow rapidly, and eat away the bone, without altering its shape or form. In slowly growing forms there may be considerable formation of imperfectly formed bone, often deficient in lime salts; this condition may be widely diffused throughout the skeleton, and, as it is associated with softening and bending of the bones, it is known as _cancerous osteomalacia_. Secondary cancer of bone is attended with pain, or it suddenly attracts notice by the occurrence of pathological fracture--as, for example, in the shaft of the femur or humerus. In the vertebrae, it is attended with a painful form of paraplegia, which may involve the lower or all four extremities. On the other hand, the disease may show itself clinically as a tumour of bone, which may attain a considerable size, and may be mistaken for a sarcoma, unless the existence of the primary cancer is discovered. The cancers most liable to give rise to metastasis in bone are those of the breast, liver, uterus, prostate, colon, and rectum; hyper-nephroma of the kidney may also give rise to metastases in bone. _Secondary tumours derived from the thyreoid gland_ require special mention, because they are peculiar in that neither the primary growth in the thyreoid nor the secondary growth in the bones is necessarily malignant. They are therefore amenable to operative treatment. _Secondary sarcoma_, whether derived from a primary growth in the bone or in the soft parts, is much rarer than secondary cancer. Its removal by operation is usually contra-indicated, but we have known of cases terminating fatally in which the _section_ revealed only one metastasis, the removal of which would have benefited the patient. In all of these conditions, examination of the bones with the X-rays gives valuable information and often disclose unsuspected metastases. _Cancer of Bone resulting from Direct Extension from Soft Parts._--In this group there are also two clinical types. The first is met with in relation to _epithelioma of a mucous surface_--for example, the palate, tongue, gums, antrum, frontal sinus, auditory meatus, or middle ear. They will be described under these special regions. The second type is met with in relation to _epithelioma occurring in a sinus_, the sequel of suppurative osteomyelitis, compound fracture, or tuberculous disease. The patient has usually had a discharging sinus for a great number of years: we have known it to last as many as fifty. The epithelioma originates at the skin orifice of the sinus, and spreads to the bone and into its interior, where the progress of the cancer is resisted by dense bone, which obliterates the medullary canal. Although its progress is slow, the infiltration of the bone is usually more extensive than appears externally. It is recognised clinically by the characteristic cauliflower growth at the orifice of the sinus, and by the offensive nature of the discharge. A similar epithelioma may arise in connection with a _chronic ulcer of the leg_. The cancer may infect the femoral lymph glands. The operative treatment is influenced by the extent of the disease in the soft parts overlying the bone, and consists in wide removal of the diseased tissues and resection of the bone, or in amputation. #Cysts of Bone.#--With the exception of hydatid cysts, cysts in the interior of bone are the result of the liquefaction of solid tissue; this may be that of chondroma, myeloma, or sarcoma, but more commonly of the marrow in osteomyelitis fibrosa. CHAPTER XXI DISEASES OF JOINTS Definition of terms--Ankylosis. DISEASES: Errors of development--Bacterial diseases: _Pyogenic_; _Gonorrhoeal_; _Tuberculous_; _Syphilitic_; _Acute rheumatism_--Diseases associated with certain constitutional conditions: _Gout_; _Chronic articular rheumatism_; _Arthritis deformans_; _Haemophilia_--Diseases associated with affections of the nervous system: _Neuro-arthropathies_; _Charcot's disease_--Hysterical or mimetic affections of joints--Tumours and cysts--Loose bodies. #Definition of Terms.#--The term _synovitis_ is applied to any reaction which affects the synovial membrane of a joint. It is usually associated with effusion of fluid, and this may be serous, sero-fibrinous, or purulent. As the term synovitis merely refers to the tissue involved, it should always be used with an adjective--such as gouty, gonorrhoeal, or tuberculous--which indicates its pathological nature. The terms _hydrops_, _hydrarthrosis_, and _chronic serous synovitis_ are synonymous, and are employed when a serous effusion into the joint is the prominent clinical feature. Hydrops may occur apart from disease--for example, in the knee-joint from repeated sprains, or when there is a loose body in the joint--but is met with chiefly in the chronic forms of synovitis which result from gonorrhoea, tuberculosis, syphilis, arthritis deformans, or arthropathies of nerve origin. _Arthritis_ is the term applied when not only the synovial membrane but the articular surfaces, and it may be also the ends of the bones, are involved, and it is necessary to prefix a qualifying adjective which indicates its nature. When effusion is present, it may be serous, as in arthritis deformans, or sero-fibrinous or purulent, as in certain forms of pyogenic and tuberculous arthritis. Wasting of the muscles, especially the extensors, in the vicinity of the joint is a constant accompaniment of arthritis. On account of the involvement of the articular surfaces, arthritis is apt to be followed by ankylosis. The term _empyema_ is sometimes employed to indicate that the cavity of the joint contains pus. This is observed chiefly in chronic disease of pyogenic or tuberculous origin, and is usually attended with the formation of abscesses outside the joint. _Ulceration of cartilage_ and _caries of the articular surfaces_ are common accompaniments of the more serious and progressive forms of joint disease, especially those of bacterial origin. The destruction of cartilage may be secondary to disease of the synovial membrane or of the subjacent bone. When the disease begins as a synovitis, the synovial membrane spreads over the articular surface, fuses with the cartilage and eats into it, causing defects or holes which are spoken of as ulcers. When the disease begins in the bone, the marrow is converted into granulation tissue, which eats into the cartilage and separates it from the bone. Following on the destruction of the cartilage, the articular surface of the bone undergoes disintegration, a condition spoken of as _caries of the articular surface_. The occurrence of ulceration of cartilage and of articular caries is attended with the clinical signs of fixation of the joint from involuntary muscular contraction, wasting of muscles, and starting pains. These _starting pains_ are the result of sudden involuntary movements of the joint. They occur most frequently as the patient is dropping off to sleep; the muscles becoming relaxed, the sensitive ulcerated surfaces jar on one another, which causes sudden reflex contraction of the muscles, and the resulting movement being attended with severe pain, wakens the patient with a start. Advanced articular caries is usually associated with some abnormal attitude and with shortening of the limb. It may be possible to feel the bony surfaces grate upon one another. When all its constituent elements are damaged or destroyed, a joint is said to be _disorganised_. Should recovery take place, repair is usually attended with union of the opposing articular surfaces either by fibrous tissue or by bone. #Conditions of Impaired Mobility of Joints.#--There are four conditions of impaired mobility in joints: rigidity, contracture, ankylosis, and locking. _Rigidity_ is the fixation of a joint by involuntary contraction of muscles, and is of value as a sign of disease in deep-seated joints, such as the hip. It disappears under anaesthesia. _Contracture_ is the term applied when the fixation is due to permanent shortening of the soft parts around a joint--muscles, tendons, ligaments, fasciae, or skin. As the structures on the flexor aspect are more liable to undergo such shortening, contracture is nearly always associated with flexion. Contracture may result from disease of the joint, or from conditions outside it--for example, disease in one of the adjacent bones, or lesions of the nerves. _Ankylosis_ is the term applied when impaired mobility results from changes involving the articular surfaces. It is frequently combined with contracture. Three anatomical varieties of ankylosis are recognised--(a) The _fibrous_, in which there are adhesions between the opposing surfaces, which may be in the form of loose isolated bands of fibrous tissue, or may bind the bones so closely together as to obliterate the cavity of the joint. The resulting stiffness, therefore, varies from a mere restriction of the normal range of movement, up to a close union of the bones which prevents movement. Fibrous ankylosis may follow upon injury, especially dislocation or fracture implicating a joint, or it may result from any form of arthritis. (b) _Cartilaginous ankylosis_ implies the fusion of two apposed cartilaginous surfaces. It is often found between the patella and the trochlear surface of the femur in tuberculous disease of the knee. The fusion of the cartilaginous surfaces is preceded by the spreading of a vascular connective tissue, derived from the synovial membrane, over the articular cartilage. Clinically, it is associated with absolute immobility, (c) _Bony ankylosis_ or _synostosis_ is an osseous union between articulating surfaces (Figs. 154 and 155). It may follow upon fibrous or cartilaginous ankylosis, or may result from the fusion of two articular surfaces which have lost their cartilage and become covered with granulations. In the majority of cases it is to be regarded as a reparative process, presenting analogies with the union of fracture. [Illustration: FIG. 154.--Osseous Ankylosis of Femur and Tibia in position of flexion.] The term _arthritis ossificans_ has been applied by Joseph Griffiths to a condition in which the articular surfaces become fused without evident cause. The occurrence of ankylosis in a joint before the skeleton has attained maturity does not appear to impair the growth in length of the bones affected; ankylosis of the temporo-maxillary joints, however, greatly impairs the growth of the mandible. When there is arrest of growth accompanying ankylosis, it usually depends on changes in the ossifying junctions caused by the original disease. To differentiate by manipulation between muscular fixation and ankylosis, it may be necessary to anaesthetise the patient. The nature and extent of ankylosis may be learned by skiagraphy; in osseous ankylosis the shadow of the two bones is a continuous one. In fibrous as contrasted with osseous ankylosis mobility may be elicited, although only to a limited extent; while in osseous ankylosis the joint is rigidly fixed, and attempts to move it are painless. [Illustration: FIG. 155.--Osseous Ankylosis of Knee in the flexed position following upon Tuberculous Arthritis. (Anatomical Museum, University of Edinburgh.)] The _treatment_ is influenced by the nature of the original lesion, the variety of the ankylosis, and the attitude of the joint. When there is restriction of movement due to fibrous adhesions, these may be elongated or ruptured. Elongation of the adhesions may be effected by manipulations, exercises, and the use of special forms of apparatus--such as the application of weights to the limb. It may be necessary to administer an anaesthetic before rupturing strong fibrous adhesions, and this procedure must be carried out with caution, in view of such risks as fracture of the bone--which is often rarefied--or separation of an epiphysis. There is also the risk of fat embolism, and of re-starting the original disease. The giving way of adhesions may be attended with an audible crack; and the procedure is often followed by considerable pain and effusion into the joint, which necessitate rest for some days before exercises and manipulations can be resumed. _Operative treatment_ may be called for in cases in which the bones are closely bound to one another by fibrous or by osseous tissue. _Arthrolysis_, which consists in opening the joint and dividing the fibrous adhesions, is almost inevitably followed by their reunion. _Arthroplasty._--Murphy of Chicago devised this operation for restoring movement to an ankylosed joint. It consists in transplanting between the bones a flap of fat-bearing tissue, from which a bursal cavity lined with endothelium and containing a fluid rich in mucin is ultimately formed. Arthroplasty is most successful in ankylosis following upon injury; when the ankylosis results from some infective condition such as tuberculosis or gonorrhoea, it is liable to result in failure either because of a fresh outbreak of the infection or because the ankylosis recurs. When arthroplasty is impracticable, and a movable joint is desired--for example at the elbow--a considerable amount of bone, and it may be also of periosteum and capsular ligament, is resected to allow of the formation of a false joint. When bony ankylosis has occurred with the joint in an undesirable attitude--for example flexion at the hip or knee--it can sometimes be remedied by osteotomy or by a wedge-shaped resection of the bone, with or without such additional division of the contracted soft parts as will permit of the limb being placed in the attitude desired. Bony ankylosis of the joints of a finger, whether the result of injury or disease, is difficult to remedy by any operative procedure, for while it is possible to restore mobility, the new joint is apt to be flail-like. _Locking._--A joint is said to lock when its movements are abruptly arrested by the coming together of bony outgrowths around the joint. It is best illustrated in arthritis deformans of the hip in which new bone formed round the rim of the acetabulum mechanically arrests the excursions of the head of the femur. The new bone, which limits the movements, is readily demonstrated in skiagrams; it may be removed by operative means. Locking of joints is more often met with as a result of injuries, especially in fractures occurring in the region of the elbow. In certain injuries of the semilunar menisci of the knee, also, the joint is liable to a variety of locking, which differs, however, in many respects from that described above. #Errors of Development.#--These include congenital dislocations and other deformities of intra-uterine origin, such as abnormal laxity of joints, absence, displacement, or defective growth of one or other of the essential constituents of a joint. The more important of these are described along with the surgery of the Extremities. DISEASES OF JOINTS #Bacterial Diseases.#--In most bacterial diseases the organisms are carried to the joint in the blood-stream, and they lodge either in the synovial membrane or in one of the bones, whence the disease subsequently spreads to the other structures of the joint. Organisms may also be introduced through accidental wounds. It has been shown experimentally that joints are among the most susceptible parts of the body to infection, and this would appear to be due to the viscid character of the synovial fluid, which protects organisms from bactericidal agents in the tissues and fluids. PYOGENIC DISEASES The commoner pyogenic diseases are the result of infection of one or other of the joint structures with _staphylococci_ or _streptococci_, which may be demonstrated in the exudate in the joint and in the substance of the synovial membrane. The mode of infection is the same as in the pyogenic diseases of bone, the metastasis occurring most frequently from the mucous membrane of the pharynx (J. B. Murphy). The localisation of the infection in a particular joint is determined by injury, exposure to cold, antecedent disease of the joint, or other factors, the nature of which is not always apparent. The effects on the joint vary in severity. In the milder forms, there is engorgement and infiltration of the synovial membrane, and an effusion into the cavity of the joint of serous fluid mixed with flakes of fibrin--_serous synovitis_. In more severe infections the exudate consists of pus mixed with fibrin, and, it may be, red blood corpuscles--_purulent_ or _suppurative synovitis_; the synovial membrane and the ligaments are softened, and the surface of the membrane presents granulations resembling those on an ulcer; foci of suppuration may develop in the peri-articular cellular tissue and result in abscesses. In _acute arthritis_, all the structures of the joint are involved; the articular cartilage is invaded by granulation tissue derived from the synovial membrane, and from the marrow of the subjacent bone; it presents a worm-eaten or ulcerated appearance, or it may undergo necrosis and separate, exposing the subjacent bone and leading to disintegration of the osseous trabeculae--_caries_. With the destruction of the ligaments, the stability of the joint is lost, and it becomes disorganised. The _clinical features_ vary with the extent of the infection. When this is confined to the synovial and peri-synovial tissues--_acute serous_ and _purulent synovitis_--there is the usual general reaction, associated with pyrexia and great pain in the joint. The part is hot and swollen, the swelling assuming the shape of the distended synovial sac, fluctuation can usually be elicited, and the joint is held in the flexed position. When the joint is infected by extension from the surrounding cellular tissue, the joint lesion may not be recognised at an early stage because of the swollen condition of the limb, and because there are already symptoms of toxaemia. We have observed a case in which both the hip and knee joints were infected from the cellular tissue. If the infection involves all the joint structures--_acute arthritis_--the general and local phenomena are intensified, the temperature rises quickly, often with a rigor, and remains high; the patient looks ill, and is either unable to sleep or the sleep is disturbed by starting pains. The joint is held rigid in the flexed position, and the least attempt at movement causes severe pain; the slightest jar--even the shaking of the bed--may cause agony. The joint is hot, tensely distended, and there may be oedema of the peri-articular tissues or of the limb as a whole. If the pus perforates the joint capsule, there are signs of abscess or of diffuse suppuration in the cellular tissue. The final disorganisation of the joint is indicated by abnormal mobility and grating of the articular surfaces, or by spontaneous displacement of the bones, and this may amount to dislocation. In the acute arthritis of infants, the epiphysis concerned may be separated and displaced. When the _joint is infected through an external wound_, the anatomical features are similar to those observed when the infection has reached the joint by the blood-stream, but the destructive changes tend to be more severe and are more likely to result in disorganisation. The _terminations_ vary with the gravity of the infection and with the stage at which treatment is instituted. In the milder forms recovery is the rule, with more or less complete restoration of function. In more severe forms the joint may be permanently damaged as a result of fibrous or bony ankylosis, or from displacement or dislocation. From changes in the peri-articular structures there may be contracture in an undesirable position, and in young subjects the growth of the limb may be interfered with. The persistence of sinuses is usually due to disease in one or other of the adjacent bones. In the most severe forms, and especially when several joints are involved, death may result from toxaemia. The _treatment_ is carried out on the same principles as in other pyogenic infections. The limb is immobilised in such an attitude that should stiffness occur there will be the least interference with function. Extension by weight and pulley is the most valuable means of allaying muscular spasm and relieving intra-articular tension and of counteracting the tendency to flexion; as much as 15 or 20 pounds may be required to relieve the pain. The induction of hyperaemia is sometimes remarkably efficacious in relieving pain and in arresting the progress of the infection. If the fluid in the joint is in sufficient quantity to cause tension, if it persists, or if there is reason to suspect that it is purulent, it should be withdrawn without delay; an exploring syringe usually suffices, the skin being punctured with a tenotomy knife, and, as practised by Murphy, 5 to 15 c.c. of a 2 per cent. solution of formalin in glycerin are injected and the wound is closed. In virulent infections the injection may be repeated in twenty-four hours. Drainage by tube or otherwise is to be condemned (Murphy). A vaccine may be prepared from the fluid in the joint and injected into the subcutaneous cellular tissue. Suppuration in the peri-articular soft parts or in one of the adjacent bones must be looked for and dealt with. When convalescence is established, attention is directed to the restoration of the functions of the limb, and to the prevention of stiffness and deformity by movements and massage, and the use of hot-air and other baths. At a later stage, and especially in neglected cases, operative and other measures may be required for deformity or ankylosis. #Metastatic Forms of Pyogenic Infection# In #pyaemia#, one or more joints may fill with pus without marked symptoms or signs, and if the pus is aspirated without delay the joint often recovers without impairment of function. In #typhoid fever#, joint lesions result from infection with the typhoid bacillus alone or along with pyogenic organisms, and run their course with or without suppuration; there is again a remarkable absence of symptoms, and attention may only be called to the condition by the occurrence of dislocation. Joint lesions are comparatively common in #scarlet fever#, and were formerly described as scarlatinal rheumatism. The most frequent clinical type is that of a serous synovitis, occurring within a week or ten days from the onset of the fever. Its favourite seat is in the hand and wrist, the sheaths of the extensor tendons as well as the synovial membrane of the joints being involved. It does not tend to migrate to other joints, and rarely lasts longer than a few days. It is probably due to the specific virus of scarlet fever. At a later stage, especially in children and in cases in which the throat lesion is severe, an arthritis is sometimes observed that is believed to be a metastasis from the throat; it may be acute and suppurative, affect several joints, and exhibit a septicaemic or pyaemic character. The joints of the lower extremity are especially apt to suffer; the child is seriously ill, is delirious at night, develops bed-sores over the sacrum and, it may happen that, not being expected to recover, the legs are allowed to assume contracture deformities with ankylosis or dislocation at the hip and flexion ankylosis at the knees; should the child survive, the degree of crippling may be pitiable in the extreme; prolonged orthopaedic treatment and a series of operations--arthroplasty, osteotomies, and resections--may be required to restore even a limited capacity of locomotion. #Pneumococcal affections of joints#, the result of infection with the pneumococcus of Fraenkel, are being met with in increasing numbers. The local lesion varies from a _synovitis_ with infiltration of the synovial membrane and effusion of serum or pus, to an _acute arthritis_ with erosion of cartilage, caries of the articular surfaces, and disorganisation of the joint. The knee is most frequently affected, but several joints may suffer at the same time. In most cases the joint affection makes its appearance a few days after the commencement of a pneumonia, but in a number of instances, especially among children, the lung is not specially involved, and the condition is an indication of a generalised pneumococcal infection, which may manifest itself by endocarditis, empyema, meningitis, or peritonitis, and frequently has a fatal termination. The differential diagnosis from other forms of pyogenic infection is established by bacteriological examination of the fluid withdrawn from the joint. The treatment is carried out on the same lines as in other pyogenic infections, considerable reliance being placed on the use of autogenous vaccines. In #measles#, #diphtheria#, #smallpox#, #influenza#, and #dysentery#, similar joint lesions may occur. The joint lesions which accompany #acute rheumatism# or "rheumatic fever" are believed to be due to a diplococcus. In the course of a general illness in which there is moderate pyrexia and profuse sweating, some of the larger joints, and not infrequently the smaller ones also, become swollen and extremely sensitive, so that the sufferer lies in bed helpless, dreading the slightest movement. From day to day fresh joints are attacked, while those first affected subside, often with great rapidity. Affections of the heart-valves and of the pericardium are commonly present. On recovery from the acute illness, it may be found that the joints have entirely recovered, but in a small proportion of cases certain of them remain stiff and pass into the crippled condition described under chronic rheumatism. There is no call for operative interference. #Gonococcal Affections of Joints.#--These include all forms of joint lesion occurring in association with gonorrhoeal urethritis, vulvo-vaginitis, or gonorrhoeal ophthalmia. They may develop at any stage of the urethritis, but are most frequently met with from the eighteenth to the twenty-second day after the primary infection, when the organisms have reached the posterior urethra; they have been observed, however, after the discharge has ceased. There is no connection between the severity of the gonorrhoea and the incidence of joint disease. In women, the gonorrhoeal nature of the discharge must be established by bacteriological examination. As a complication of ophthalmia, the joint lesions are met with in infants, and occur more commonly towards the end of the second or during the third week. The gonococcus is carried to the joint in the blood-stream and is first deposited in the synovial membrane, in the tissues of which it can usually be found; it may be impossible to find it in the exudate within the joint. The joint lesions may be the only evidence of metastasis, or they may be part of a general infection involving the endocardium, pleura, and tendon sheaths. The joints most frequently affected are the knee, elbow, ankle, wrist, and fingers. Usually two or more joints are affected. Several clinical types are differentiated. (1) A _dry poly-arthritis_ met with in the joints and tendon sheaths of the wrist and hand, formerly described as gonorrhoeal rheumatism, which in some cases is trifling and evanescent, and in others is persistent and progressive, and results in stiffness of the affected joints and permanent crippling of the hand and fingers. (2) The commonest type is a _chronic synovitis_ or _hydrops_, in which the joint--very often the knee--becomes filled with a serous or sero-fibrinous exudate. There are no reactive changes in the synovial membrane, cellular tissue, or skin, nor is there any fever or disturbance of health. The movements are free except in so far as they are restricted by the amount of fluid in the joint. It usually subsides in two or three weeks under rest, but tends to relapse. (3) An _acute synovitis_ with peri-articular phlegmon is most often met with in the elbow, but it occurs also in the knee and ankle. There is a sudden onset of severe pain and swelling in and around the joint, with considerable fever and disturbance of health. The slightest movement causes pain, and the part is sensitive to touch. The skin is hot and tense, and in the case of the elbow may be red and fiery as in erysipelas. The deposit of fibrin on the synovial membrane and on the articular surfaces may lead to the formation of adhesions, sometimes in the form of isolated bands, sometimes in the form of a close fibrous union between the bones. (4) A _suppurative arthritis_, like that caused by ordinary pus microbes, may be the result of gonococcal infection alone or of a mixed infection. Usually only one joint is affected, but the condition may be multiple. The articular cartilages are destroyed, the ends of the bones are covered with granulations, extra-articular abscesses form, and complete osseous ankylosis results. The _diagnosis_ is often missed because the possibility of gonorrhoea is not suspected. The denial of the disease by the patient is not always to be relied upon, especially in the case of women, as they may be ignorant of its presence. The chief points in the differential diagnosis from acute articular rheumatism are, that the gonorrhoeal affection is more often confined to one or two joints, has little tendency to wander from joint to joint, and its progress is not appreciably influenced by salicylates, although these drugs may relieve pain. The conclusive point is the recognition of a gonorrhoeal discharge or of threads in the urine. The disease may persist or may relapse, and the patient may be laid up for weeks or months, and may finally be crippled in one or in several joints. The _treatment_--besides that of the urethral disease or of the ophthalmia--consists in rest until all pain and sensitiveness have disappeared. The pain is relieved by salicylates, but most benefit follows weight extension, the induction of hyperaemia by the rubber bandage and hot-air baths; if the joint is greatly distended, the fluid may be withdrawn by a needle and syringe. Detoxicated vaccines should be given from the first, and in afebrile cases the injection of a foreign protein, such as anti-typhoid vaccine, is beneficial (Harrison). Murphy has found benefit from the introduction into the joint, in the early stages, of from 5 to 15 c.c. of a 2 per cent. solution of formalin in glycerin. This may be repeated within a week, the patient being kept in bed with light weight extension. In the chronic hydrops the fluid is withdrawn, and about an ounce of a 1 per cent. solution of protargol injected; the patient should be warned of the marked reaction which follows. After all symptoms have settled down, but not till then, for fear of exciting relapse or metastasis, the joint is massaged and exercised. Stiffness from adhesions is most intractable, and may, in spite of every attention, terminate in ankylosis even in cases where there has been no suppuration. Forcible breaking down of adhesions under anaesthesia is not recommended, as it is followed by great suffering and the adhesions re-form. Operation for ankylosis--arthroplasty--should not be undertaken, as the ankylosis recurs. TUBERCULOUS DISEASE Tuberculous disease of joints results from bacillary infection through the arteries. The disease may commence in the synovial membrane or in the marrow of one of the adjacent bones, and the relative frequency of these two seats of infection has been the subject of considerable difference of opinion. The traditional view of Konig is that in the knee and most of the larger joints the disease arises in the bone and in the synovial membrane in about equal proportion, and that in the hip the number of cases beginning in the bones is about five times greater than that originating in the membrane. This estimate, so far as the actual frequency of bone lesions is concerned, has been generally accepted, but recent observers, notably John Fraser, do not accept the presence of bone lesions as necessarily proving that the disease commenced in the bones; he maintains, and we think with good grounds, that in many cases the disease having commenced in the synovial membrane, slowly spreads to the bone by way of the blood vessels and lymphatics, and gives rise to lesions in the marrow. #Morbid Anatomy.#--Tuberculous disease in the articular end of a long bone may give rise to _reactive changes_ in the adjacent joint, characterised by effusion and by the extension of the synovial membrane over the articular surfaces. This may result in the formation of adhesions which obliterate the cavity of the joint or divide it into compartments. These lesions are comparatively common, and are not necessarily due to actual tuberculous infection of the joint. The _infection of the joint_ by tubercle originating in the adjacent bone may take place at the periphery, the osseous focus reaching the surface of the bone at the site of reflection of the synovial membrane, and the infection which begins at this point then spreads to the rest of the membrane. Or it may take place in the central area, by the projection of tuberculous granulation tissue into the joint following upon erosion of the cartilage (Fig. 156). [Illustration: FIG. 156.--Section of Upper End of Fibula, showing caseating focus in marrow, erupting on articular surface and infecting joint.] _Changes in the Synovial Membrane._--In the majority of cases there is a _diffuse thickening of the synovial membrane_, due to the formation of granulation tissue, or of young connective tissue, in its substance. This new tissue is arranged in two layers--the outer composed of fully formed connective or fibrous tissue, the inner of embryonic tissue, usually permeated with miliary tubercles. On opening the joint, these tubercles may be seen on the surface of the membrane, or the surface may be covered with a layer of fibrinous or caseating tissue. Where there is greater resistance on the part of the tissues, there is active formation of young connective tissue which circumscribes or encapsulates the tubercles, so that they remain embedded in the substance of the membrane, and are only seen on cutting into it. The thickened synovial membrane is projected into the cavity of the joint, filling up its pouches and recesses, and spreading over the surface of the articular cartilage "like ivy growing on a wall." Wherever the synovial tissue covers the cartilage it becomes adherent to and fused with it. The morbid process may be arrested at this stage, and fibrous adhesions form between the opposing articular surfaces, or it may progress, in which case further changes occur, resulting in destruction of the articular cartilage and exposure of the subjacent bone. In rare instances the synovial membrane presents nodular masses or lumps, resembling the tuberculous tumours met with in the brain; they project into the cavity of the joint, are often pedunculated, and may give rise to the symptoms of loose body. The fringes of synovial membrane may also undergo a remarkable development, like that observed in arthritis deformans, and described as arborescent lipoma. Both these types are almost exclusively met with in the knee. _The Contents of Tuberculous Joints._--In a large proportion of cases of synovial tuberculosis the joint is entirely filled up by the diffuse thickening of the synovial membrane. In a small number there is an abundant serous exudate, and with this there may be a considerable formation of fibrin, covering the surface of the membrane and floating in the fluid as flakes or masses; under the influence of movement it may assume the shape of melon-seed bodies. More rarely the joint contains pus, and the surface of the synovial membrane resembles the wall of a cold abscess. _Ulceration and Necrosis of Cartilage._--The synovial tissue covering the cartilage causes pitting and perforation of the cartilage and makes its way through it, and often spreads widely between it and the subjacent bone; the cartilage may be detached in portions of considerable size. It may be similarly ulcerated or detached as a result of disease in the bone. _Caries of Articular Surfaces._--Tuberculous infiltration of the marrow in the surface cancelli breaks up the spongy framework of the bone into minute irregular fragments, so that it disintegrates or crumbles away--caries. When there is an absence of caseation and suppuration, the condition is called _caries sicca_. The pressure of the articular surfaces against one another favours the progress of ulceration of cartilage and of articular caries. These processes are usually more advanced in the areas most exposed to pressure--for example, in the hip-joint, on the superior aspect of the head of the femur, and on the posterior and upper segment of the acetabulum. The occurrence of _pathological dislocation_ is due to softening and stretching of the ligaments which normally retain the bones in position, and to some factor causing displacement, which may be the accumulation of fluid or of granulations in the joint, the involuntary contraction of muscles, or some movement or twist of the limb. The occurrence of dislocation is also favoured by destructive changes in the bones. _Peri-articular tubercle and abscess_ may result from the spread of disease from the bone or joint into the surrounding tissues, either directly or by way of the lymphatics. A peri-articular abscess may spread in several directions, sometimes invading tendon sheaths or bursae, and finally reaching the skin surface by tortuous sinuses. Reactive changes in the vicinity of tuberculous joints are of common occurrence, and play a considerable part in the production of what is clinically known as _white swelling_. New connective tissue forms in the peri-articular fat and between muscles and tendons. It may be tough and fibrous, or soft, vascular, and oedematous, and the peri-articular fat becomes swollen and gelatinous, constituting a layer of considerable thickness. The fat disappears and is replaced by a mucoid effusion between the fibrous bundles of connective tissue. This is what was formerly known as _gelatinous degeneration_ of the synovial membrane. In the case of the wrist the newly formed connective tissue may fix the tendons in their sheaths, interfering with the movements of the fingers. In relation to the bones also there may be reactive changes, resulting in the formation of spicules of new bone on the periosteal surfaces and at the attachment of the capsular and other ligaments; these are only met with where pyogenic infection has been superadded. _Terminations and Sequelae._--A natural process of cure may occur at any stage, the tuberculous tissue being replaced by scar tissue. Recovery is apt to be attended with impairment of movement due to adhesions, ankylosis, or contracture of the peri-articular structures. Caseous foci in the interior of the bones may become encapsulated, and a cure be thus effected, or they may be the cause of a relapse of the disease at a later date. Interference with growth is comparatively common, and may involve only the epiphysial junctions in the immediate vicinity of the joint affected, or those of all the bones of the limb. This is well seen in adults who have suffered from severe disease of the hip in childhood--the entire limb, including the foot, being shorter and smaller than the corresponding parts of the opposite side. Atrophic conditions are also met with, the bones undergoing fatty atrophy, so that in extreme cases they may be cut with a knife or be easily fractured. These atrophic conditions are most marked in bedridden patients, and are largely due to disuse of the limb; they are recovered from if it is able to resume its functions. #Clinical Features.#--These vary with the different anatomical forms of the disease, and with the joint affected. Sometimes the disease is ushered in by a febrile attack attended with pains in several joints--described by John Duncan as _tuberculous arthritic fever_. This is liable to be mistaken for rheumatic fever, from which, however, it differs in that there is no real migration from joint to joint; there is an absence of sweating and of cardiac complications; and no benefit follows the administration of salicylates. In exceptional cases, tuberculous joint disease follows an acute course resembling that of the pyogenic arthritis of infants. This has been observed in children, especially in the knee, the lesion being in the synovial membrane, and attended with an accumulation of pus in the joint. If promptly treated by incision and drainage, recovery is rapid, and free movement of the joint, may be preserved. The onset and early stages of tuberculous disease, however, are more often insidious, and are attended with so few symptoms that the disease may have obtained a considerable hold before it attracts notice. It is not uncommon for patients or their friends to attribute the condition to injury, as it often first attracts attention after some slight trauma or excessive use of the limb. The symptoms usually subside under rest, only to relapse again with use of the limb. The initial local symptoms may be due to the presence of a focus in the neighbouring bone, perhaps causing neuralgic pains in the joint, or weakness, tiredness, stiffness, and inability to use the limb, these symptoms improving with rest and being aggravated by exertion. It is rarely possible by external examination to recognise deep-seated osseous foci in the vicinity of joints; but if they are near the surface in a superficial bone--such as the head of the tibia--there may be local thickening of the periosteum, oedema, pain, and tenderness on pressure and on percussion. _X-ray Appearances of Tuberculous Joints._--Gross lesions such as caseous foci in the marrow of the adjacent bone show as clear areas with an ill-defined margin; a sclerosed focus gives a denser shadow than the surrounding bone, and a sequestrum presents a dark shadow of irregular contour, and a clear interval between it and the surrounding bone. Caries of the articular surface imparts a woolly appearance or irregular contour in place of the well-defined outline of the articular end of the bone. In bony ankylosis the shadow of the two bones is a continuous one, the joint interval having been filled up. The minor changes are best appreciated on comparison with the normal joint of the other limb. _Wasting of muscles_ is a constant accompaniment of tuberculous joint disease. It is to be attributed partly to want of use, but chiefly to reflex interference with the trophic innervation of the muscles. It is specially well seen in the extensor and adductor muscles of the thigh in disease of the knee, and in the deltoid in disease of the shoulder. The muscles become soft and flaccid, they exhibit tremors on attempted movement, and their excitability to the faradic current is diminished. The muscular tissue may be largely replaced by fat. _Impairment of the normal movements_ is one of the most valuable diagnostic signs, particularly in deeply seated joints such as the shoulder, hip, and spine. It is due to a protective contraction of the muscles around the joint, designed to prevent movement. This muscular fixation disappears under anaesthesia. _Abnormal attitudes of the limb_ occur earlier, and are more pronounced in cases in which pain and other irritative symptoms of articular disease are well marked, and are best illustrated by the attitudes assumed in disease of the hip. They are due to reflex or involuntary contraction of the muscles acting on the joint, with the object of placing it in the attitude of greatest ease; they also disappear under anaesthesia. With the lapse of time they not only become exaggerated, but may become permanent from ankylosis or from contracture of the soft parts round the joint. _Startings at night_ are to be regarded as an indication that there is progressive disease involving the articular surfaces. _The formation of extra-articular abscess_ may take place early, or it may not occur till long after the disease has subsided. The abscess may develop so insidiously that it does not attract attention until it has attained considerable size, especially when associated with disease of the spine, pelvis, or hip. The position of the abscess in relation to different joints is fairly constant and is determined by the anatomical relationships of the capsule and synovial membrane to the surrounding tissues. The bursae and tendon sheaths in the vicinity may influence the direction of spread of the abscess and the situation of resulting sinuses. When the abscess is allowed to burst, or is opened and becomes infected with pyogenic bacteria, there is not only the risk of aggravation of the disease and persistent suppuration, but there is a greater liability to general tuberculosis. The sinuses may be so tortuous that a probe cannot be passed to the primary focus of disease, and their course and disposition can only be demonstrated by injecting the sinuses with an emulsion of bismuth and taking X-ray photographs. Tuberculous infection of the lymph glands of the limb is exceptional, but may follow upon infection of the skin around the orifice of a sinus. A slight rise of temperature in the evening may be induced in quiescent joint lesions by injury or by movement of the joint under anaesthesia, or by the fatigue of a railway journey. When sinuses have formed and become infected with pyogenic bacteria, there may be a diurnal variation in the temperature of the type known as hectic fever (Fig. 11). _Relative Frequency of Tuberculous Disease in Different Joints._--Hospital statistics show that joints are affected in the following order of frequency: Spine, knee, hip, ankle and tarsus, elbow, wrist, shoulder. The hip and spine are most often affected in childhood and youth, the shoulder and wrist in adults; the knee, ankle, and elbow show little age preference. _Clinical Variations of Tuberculous Joint Disease._--The above description applies to tuberculous joint disease in general; it must be modified to include special manifestations or varieties. When the main incidence of the infection affects the synovial membrane, the clinical picture may assume the form of a _hydrops_, or of an _empyema_ in which the joint is filled with pus. More common than either of these is the well-known _white swelling_ or _tumor albus_ (Wiseman, 1676) which is the clinical manifestation of diffuse thickening of the synovial membrane along with mucoid degeneration of the peri-synovial cellular tissue. It is well seen in joints which are superficial--such as the knee, ankle, elbow, and wrist. The swelling, which is the first and most prominent clinical feature, develops gradually and painlessly, obliterating the bony prominences by filling up the natural hollows. It appears greater to the eye than is borne out by measurement, being thrown into relief by the wasting of the muscles above and below the joint. In the early stage the swelling is elastic, doughy, and non-sensitive, and corresponds to the superficial area of the synovial membrane involved, and there is comparatively little complaint on the part of the patient, because the articular surfaces and ligaments are still intact. There may be a feeling of weight in the limb, and in the case of the knee and ankle the patient tires on walking and drags the leg with more or less of a limp. Movements of the joint are permitted, but are limited in range. The disability is increased by use and exertion, but, for a time at least, it improves under rest. If the disease is not arrested, there follow the symptoms and signs of involvement of the articular surfaces. _Influence of Tuberculous Joint Disease on the General Health._--Experience shows that the early stages of tuberculous joint disease are compatible with the appearance of good health. As a rule, however, and especially if there is mixed infection, the health suffers, the appetite is impaired, the patient is easily tired, and there may be some loss of weight. #Treatment.#--In addition to the general treatment of tuberculosis, local measures are employed. These may be described under two heads--the conservative and the operative. _Conservative treatment_ is almost always to be employed in the first instance, as by it a larger proportion of cures is obtained with a smaller mortality and with better functional results than by operation. _Treatment by rest_ implies the immobilisation of the diseased limb until pain and tenderness have disappeared. The attitude in which the limb is immobilised should be that in which, in the event of subsequent stiffness, it will be most serviceable to the patient. Immobilisation may be secured by bandages, splints, extension, or other apparatus. _Extension_ with weight and pulley is of value in securing rest, especially in disease of the hip or knee; it eliminates muscular spasm, relieves pain and startings at night, and prevents abnormal attitudes of the limb. If, when the patient first comes under observation, the limb is in a deformed attitude which does not readily yield to extension, the deformity should be corrected under an anaesthetic. _The induction of hyperaemia_ is often helpful, the rubber bandage or the hot-air chamber being employed for an hour or so morning and evening. _Injection of Iodoform._--This is carried out on the same lines as have been described for tuberculous abscess. After the fluid contents of the joint are withdrawn, the iodoform is injected; and this may require to be repeated in a month or six weeks. After the injection of iodoform there is usually considerable reaction, attended with fever (101 o F.), headache, and malaise, and considerable pain and swelling of the joint. In some cases there is sickness, and there may be blood pigment in the urine. The severity of these phenomena diminishes with each subsequent injection. The use of Scott's dressing and of blisters and of the actual cautery has largely gone out of fashion, but the cautery may still be employed with benefit for the relief of pain in cases in which ulceration of cartilage is a prominent feature. The application of the X-rays has proved beneficial in synovial lesions in superficial joints such as the wrist or elbow; prolonged exposures are made at fortnightly intervals, and on account of the cicatricial contraction which attends upon recovery, the joint must be kept in good position. Conservative treatment is only abandoned if improvement does not show itself after a thorough trial, or if the disease relapses after apparent cure. _Operative Treatment._--Other things being equal, operation is more often indicated in adults than in children, because after the age of twenty there is less prospect of recovery under conservative treatment, there is more tendency for the disease to relapse and to invade the internal organs, and there is no fear of interfering with the growth of the bones. The state of the general health may necessitate operation as the most rapid method of removing the disease. The social status of the patient must also be taken into account; the bread-winner, under existing social conditions, may be unable to give up his work for a sufficient time to give conservative measures a fair trial. The _local conditions_ which decide for or against operation are differently regarded by different surgeons, but it may be said in general terms that operative interference is indicated in cases in which the disease continues to progress in spite of a fair trial of conservative measures; in cases unsuited for conservative treatment--that is to say, where there are severe bone lesions. Operative interference is indicated also when the functional result will be better than that likely to be obtained by conservative measures, as is often the case in the knee and elbow. Cold abscesses should, if possible, be dealt with before operating on the joint. In many cases the extent of the operation can only be decided after exploration. The aim is to remove all the disease with the least impairment of function and the minimum sacrifice of healthy tissue. The more open the method of operating the better, so that all parts of the joint may be available for inspection. The methods of Kocher, which permit of dislocating the joint, are specially to be recommended, as this procedure affords the freest possible access. Diseased synovial membrane is removed with the scissors or knife. If the cartilages are sound, and if a movable joint is aimed at, they may be left; but if ankylosis is desired, they must be removed. Localised disease of the cartilage should be removed with the spoon or gouge, and the bone beneath investigated. If the articular surface is extensively diseased, a thin slice of bone should be removed, and if foci in the marrow are then revealed, it is better to gouge them out than to remove further slices of bone, as this involves sacrifice of the cortex and periosteum. Operative treatment of deformities resulting from tuberculous joint disease has almost entirely replaced reduction by force; the contracted soft parts are divided, and the bone is resected. _Amputation_ for tuberculous joint disease has become one of the rare operations of surgery, and is only justified when less radical measures have failed and the condition of the limb is affecting the general health. Amputation is more frequently called for in persons past middle life who are the subjects of pulmonary tuberculosis. SYPHILITIC DISEASE Syphilitic affections of joints are comparatively rare. As in tuberculosis, the disease may be first located in the synovial membrane, or it may spread to the joint from one of the bones. In #acquired syphilis#, at an early stage and before the skin eruptions appear, one of the large joints, such as the shoulder or knee, may be the seat of pain--_arthralgia_--which is worse at night. In the secondary stage, a _synovitis_ with serous effusion is not uncommon, and may affect several joints. Syphilitic _hydrops_ is met with almost exclusively in the knee; it is frequently bilateral, and is insidious in its onset and progress, the patient usually being able to go about. In the _tertiary stage_ the joint lesions are persistent and destructive, and result from the formation of gummata, either in the deeper layers of the synovial membrane or in the adjacent bone or periosteum. _Peri-synovial_ and _peri-bursal gummata_ are met with in relation to the knee-joint of middle-aged adults, especially women. They are usually multiple, develop slowly, and are rarely sensitive or painful. One or more of the gummata may break down and give rise to tertiary ulcers. The co-existence of indolent swellings, ulcers, and depressed scars in the vicinity of the knee is characteristic of tertiary syphilis. The disease spreads throughout the capsule and synovial membrane, which becomes diffusely thickened and infiltrated with granulation tissue which eats into and replaces the articular cartilage. Clinically, the condition resembles tuberculous disease of the synovial membrane, for which it is probably frequently mistaken, but in the syphilitic affection the swelling is nodular and uneven, and the subjective symptoms are slight, mobility is little impaired, and yet the deformity is considerable. _Syphilitic osteo-arthritis_ results from a gumma in the periosteum or marrow of one of the adjacent bones. There is gradual enlargement of one of the bones, the patient complains of pains, which are worst at night. The disease may extend to the synovial membrane and be attended with effusion into the joint, or it may erupt on the periosteal surface and invade the skin, forming one or more sinuses. The further progress is complicated by the occurrence of pyogenic infection leading to necrosis of bone, in the knee-joint, for example, the patella or one of the condyles of the femur or tibia, may furnish a sequestrum. In such cases, anti-syphilitic treatment must be supplemented by operation for the removal of the diseased tissues. In the knee, excision is rarely necessary; but in the elbow it may be called for to obtain a movable joint. In #inherited syphilis# the earliest joint affections are those in which there is an effusion into the joint, especially the knee or elbow; and in exceptional cases pyogenic infection may be superadded, and pus form in the joint. In older children, a gummatous synovitis is met with of which the most striking features are: its insidious development, its chronic course, symmetrical distribution, freedom from pain, the free mobility of the joint, its tendency to relapse, and its association with other syphilitic stigmata, especially in the eyes. The knees are the joints most frequently affected, and the condition usually yields readily to anti-syphilitic treatment without impairment of function. JOINT DISEASES ACCOMPANYING CERTAIN CONSTITUTIONAL CONDITIONS #Gout.#--_Arthritis Urica._--One of the manifestations of gout is that certain joints are liable to attacks of inflammation associated with the deposit of a chalk-like material composed of sodium biurate, chiefly in the matrix of the articular cartilage, it may be in streaks or patches towards the central area of the joint, or throughout the entire extent of the cartilage, which appears as if it had been painted over with plaster of Paris. As a result of this uratic infiltration, the cartilage loses its vitality and crumbles away, leading to the formation of what are known as gouty ulcers, and these may extend through the cartilage and invade the bone. The deposit of urates in the synovial membrane is attended with effusion into the joint and the formation of adhesions, while in the ligaments and peri-articular structures it leads to the formation of scar tissue. The metatarso-phalangeal joint of the great toe, on one or on both sides, is that most frequently affected. The disease is met with in men after middle life, and while common enough in England and Ireland, is almost unknown in hospital practice in Scotland. The _clinical features_ are characteristic. There is a sudden onset of excruciating pain, usually during the early hours of the morning, the joint becomes swollen, red, and glistening, with engorgement of the veins and some fever and disturbance of health and temper. In the course of a week or ten days there is a gradual return to the normal. Such attacks may recur only once a year or they may be more frequent; the successive attacks tend to become less acute but last longer, and the local phenomena persist, the joint remaining permanently swollen and stiff. Masses of chalk form in and around the joint, and those in the subcutaneous tissue may break through the skin, forming indolent ulcers with exposure of the chalky masses (_tophi_). The hands may become seriously crippled, especially when the tendon sheaths and bursae also are affected; the crippling resembles that resulting from arthritis deformans but it differs in not being symmetrical. The local _treatment_ consists in employing soothing applications and a Bier's bandage for two or three hours twice daily while the symptoms are acute; later, hot-air baths, massage, and exercises are indicated. It is remarkable how completely even the most deformed joints may recover their function. Dietetic and medicinal treatment must also be employed. #Chronic Rheumatism.#--This term is applied to a condition which sometimes follows upon acute articular rheumatism in persons presenting a family tendency to acute rheumatism or to inflammations of serous membranes, and manifesting other evidence of the rheumatic taint, such as chorea or rheumatic nodules. The changes in the joints involve almost exclusively the synovial membrane and the ligaments; they consist in cellular infiltration and exudation, resulting in the formation of new connective tissue which encroaches on the cavity of the joint and gives rise to adhesions, and by contracting causes stiffness and deformity. The articular cartilages may subsequently be transformed into connective tissue, with consequent fibrous ankylosis and obliteration of the joint. The bones are affected only in so far as they undergo fatty atrophy from disuse of the limb, or alteration in their configuration as a result of partial dislocation. Osseous ankylosis may occur, especially in the small joints of the hand and foot. The disease is generally poly-articular and may be met with in childhood and youth as well as in adult life. In some cases pain is so severe that the patient resists the least attempt at movement. In others, the joints, although stiff, can be moved but exhibit pronounced crackings. When there is much connective tissue formed in relation to the synovial membrane, the joint is swollen, and as the muscles waste above and below, the swelling is spindle-shaped. Subacute exacerbations occur from time to time, with fever and aggravation of the local symptoms and implication of other joints. After repeated recurrences, there is ankylosis with deformity, the patient becoming a helpless cripple. On account of the tendency to visceral complications, the tenure of life is uncertain. From the nature of the disease, _treatment_ is for the most part palliative. Salicylates are only of service during the exacerbations attended with pyrexia. The application of soda fomentations, turpentine cloths, or electric or hot-air baths may be useful. Improvement may result from the general and local therapeutics available at such places as Bath, Buxton, Harrogate, Strathpeffer, Wiesbaden, or Aix. In selected cases, a certain measure of success has followed operative interference, which consists in a modified excision. The deformities resulting from chronic rheumatism are but little amenable to surgical treatment, and forcible attempts to remedy stiffness or deformity are to be avoided. #Arthritis Deformans# (_Osteo-arthritis, Rheumatoid Arthritis, Rheumatic Gout, Malum Senile, Traumatic or Mechanical Arthritis_).--Under the term arthritis deformans, which was first employed by Virchow, it is convenient to include a number of joint affections which have many anatomical and clinical features in common. The disease is widely distributed in the animal kingdom, both in domestic species and in wild animals in the natural state such as the larger carnivora and the gorilla; evidence of it has also been found in the bones of animals buried with prehistoric man. The morbid changes in the joints present a remarkable combination of atrophy and degeneration on the one hand and overgrowth on the other, indicating a profound disturbance of nutrition in the joint structures. The nature of this disturbance and its etiology are imperfectly known. By many writers it is believed to depend upon some form of auto-intoxication, the toxins being absorbed from the gastro-intestinal tract, and those who suffer are supposed to possess what has been called an "arthritic diathesis." The localisation of the disease in a particular joint may be determined by several factors, of which trauma appears to be the most important. The condition is frequently observed to follow, either directly or after an interval, upon a lesion which involves gross injury of the joint or of one of the neighbouring bones. It occurs with greater frequency after repeated minor injuries affecting the joint and its vicinity, such as sprains and contusions, and particularly those sustained in laborious occupations. This connection between trauma and arthritis deformans led Arbuthnot Lane to apply to it the term _traumatic_ or _trade arthritis_. The traumatic or strain factor in the production of the disease may be manifested in a less obvious fashion. In the lower extremity, for example, _any condition which disturbs the static equilibrium of the limb as a whole_ would appear to predispose to the disease in one or other of the joints. The static equilibrium may be disturbed by such deformities as flat-foot or knock-knee, and badly united fractures of the lower extremity. In hallux valgus, the metatarso-phalangeal joint of the great toe undergoes changes characteristic of arthritis deformans. A number of cases have been recorded in which arthritis deformans has followed upon antecedent disease of the joint, such as pyogenic or gonorrhoeal synovitis, upon repeated haemorrhages into the knee-joint in bleeders, and in unreduced dislocations in which a new joint has been established. [Illustration: FIG. 157.--Arthritis Deformans of Elbow, showing destruction of articular surfaces and masses of new bone around the articular margins. (Anatomical Museum, University of Edinburgh.)] Lastly, Poncet and other members of the Lyons school regard arthritis deformans as due to an attenuated form of tuberculous infection, and draw attention to the fact that a tuberculous family history is often met with in the subjects of the disease. [Illustration: FIG. 158.--Arthritis Deformans of Knee, showing eburnation and grooving of articular surfaces. (Anatomical Museum, University of Edinburgh.)] _Morbid Anatomy._--The commonest type is that in which the articular surfaces undergo degenerative changes. The primary change involves the articular cartilage, which becomes softened and fibrillated and is worn away until the subjacent bone is exposed. If the bone is rarefied, the enlarged cancellous spaces are opened into and an eroded and worm-eaten appearance is brought about; with further use of the joint, the bone is worn away, so that in a ball-and-socket joint like the hip, the head of the femur and the acetabulum are markedly altered in size and shape. More commonly, the bone exposed as a result of disappearance of the cartilage is denser than normal, and under the influence of the movements of the joint, becomes smooth and polished--a change described as _eburnation_ of the articular surfaces (Fig. 158). In hinge-joints such as the knee and elbow, the influence of movement is shown by a series of parallel grooves corresponding to the lines of friction (Fig. 158). [Illustration: FIG. 159.--Hypertrophied Fringes of Synovial Membrane in Arthritis Deformans of Knee. (Museum of Royal College of Surgeons, Edinburgh.)] While these degenerative changes are gradually causing destruction of the articular surfaces, reparative and hypertrophic changes are taking place at the periphery. Along the line of the junction between the cartilage and synovial membrane, the proliferation of tissue leads to the formation of nodules or masses of cartilage--_ecchondroses_--which are subsequently converted into bone (Fig. 157). Gross alterations in the ends of the bone are thus brought about which can be recognised clinically and in skiagrams, and which tend to restrict the normal range of movement. The extension of the ossification into the synovial reflection and capsular ligament adds a collar or "lip" of new bone, known as "lipping" of the articular margins, and also into other ligaments, insertions of tendons and intermuscular septa giving rise to bony outgrowths or osteophytes not unlike those met with in the neuro-arthropathies. Proliferative changes in the synovial membrane are attended with increased vascularity and thickening of the membrane and an enlargement of its villi and fringes. When the fatty fringes are developed to an exaggerated degree, the condition is described as an _arborescent lipoma_ (Fig. 159). Individual fringes may attain the size of a hazel nut, and the fibro-fatty tissue of which they are composed may be converted into cartilage and bone; such a body may remain attached by a narrow pedicle or stalk, or this may be torn across and the body becomes loose and, unless confined in a recess of the joint, it wanders about and may become impacted between the articular surfaces. These changes in the synovial membrane are often associated with an abundant exudate or hydrops. These degenerative and hypertrophic changes, while usually attended with marked restriction of movement and sometimes by "locking" of the joint, practically never result in ankylosis. The _ankylosing type_ of chronic arthritis is fortunately much rarer than those described above, and is chiefly met with in the joints of the fingers and toes and in those of the vertebral column. The synovial membrane proliferates, grows over the cartilage, and replaces it, and when two such articular surfaces are in contact they tend to adhere, thus obliterating the joint, cavity, and resulting in fibrous or bony ankylosis. The changes progress slowly and, before they result in ankylosis, various sub-luxations and dislocations may occur with distortion and deformity which, in the case of the fingers, is extremely disabling and unsightly (Fig. 160). _Clinical Features._--It is usually observed that in patients who are still young the tendency is for the disease to advance with considerable rapidity, so that in the course of months it may cause crippling of several joints. The course of the disease as met with in persons past middle life is more chronic; it begins insidiously, and many years may pass before there is pronounced disability. The earliest symptom is stiffness, especially in the morning after rest, which passes off temporarily with use of the limb. As time goes on, the range of movement becomes restricted, and crackings occur. This stage of the disease may be prolonged indefinitely; if it progresses, stiffness becomes more pronounced, certain movements are lost, others develop in abnormal directions, and deformed attitudes add to the disablement. The disease is compatible with long life, but not with any active occupation, hence those of the hospital class who suffer from it tend to accumulate in workhouse infirmaries. _Hydrops_ is most marked in the knee, and may affect also the adjacent bursae. As the joint becomes distended with fluid, the ligaments are stretched, the limb becomes weak and unstable, and the patient complains of a feeling of weight, of insecurity, and of tiredness. Pain is occasional and evanescent, and is usually the result of some extra exertion, or exposure to cold and wet. This form of the disease is extremely chronic, and may last for an indefinite number of years. It is to be diagnosed from the other forms of hydrops already considered--the purely traumatic, the pyogenic, gonorrhoeal, tuberculous, and syphilitic--and from that associated with Charcot's disease. _Hypertrophied fringes and pedunculated or loose bodies_ often co-exist with hydrops, and give rise to characteristic clinical features, particularly in the knee. The fringes, especially when they assume the type of the arborescent lipoma, project into the cavity of the joint, filling up its recesses and distending its capsule so that the joint is swollen and slightly flexed. Pain is not a prominent feature, and the patient may walk fairly well. On grasping the joint while it is being actively flexed and extended, the fringes may be felt moving under the fingers. Symptoms from impaction of a loose body are exceptional. [Illustration: FIG. 160.--Arthritis Deformans of Hands, showing symmetry of lesions, ulnar deviation of fingers, and nodular thickening at inter-phalangeal joints.] _The dry form of arthritis deformans_, although specially common in the knee, is met with in other joints, either as a mon-articular or poly-articular disease; and it is also met with in the joints of the spine and of the fingers as well as in the temporo-mandibular joint. In the joints of the fingers the disease is remarkably symmetrical, and tends to assume a nodular type (Heberden's nodes) (Fig. 160); in younger subjects it assumes a more painful and progressive fusiform type (Fig. 161). In the larger joints the subjective symptoms usually precede any palpable evidence of disease, the patient complaining of stiffness, crackings, and aching, aggravated by changes in the weather. The roughness due to fibrillation of the articular cartilages causes coarse friction on moving the joint, or, in the knee, on moving the patella on the condyles of the femur. It may be months or even years before the lipping and other hypertrophic changes in the ends of the bones are recognisable, and before the joint assumes the deformed features which the name of the disease suggests. The capsular ligament, except in hydrops, is the seat of connective-tissue overgrowth, and tends to become contracted and rigid. Intra-articular ligaments, such as the ligamentum teres in the hip, are usually worn away and disappear. The surrounding muscles undergo atrophy, tendons become adherent to their sheaths and may be ossified, and the sheaths of nerves may be involved by the cicatricial changes in the surrounding tissues. _The X-ray appearances of arthritis deformans_ necessarily vary with the type of the disease and the joint affected; in the joints of the fingers there is a narrowing of the spaces between the articular ends of the bones as a result of absorption of the articular cartilage, and rarefaction of the cancellous tissue in the vicinity of the joints; in the larger joints there is "lipping" of the articular margins, osteophytes, and other evidence of abnormal ossification in and around the joint. Eburnation of the articular surfaces is shown by increase in the density of the shadow of the bone in the areas affected. [Illustration: FIG. 161.--Arthritis Deformans affecting several Joints, in a boy aet. 10. (Dr. Dickson's case.)] _Treatment._--Treatment is for the most part limited to the relief of symptoms. On no account should the affected joints be kept at rest by means of splints or other apparatus. Active movements and exercises of all kinds are to be persevered with. When pain is a prominent feature, it may be relieved either by douches of iodine and hot water (tincture of iodine 1 oz. to the quart), or by the application of lint saturated with a lotion made up of chloral hydrate, gr. v, glycerin [dram]j, water [ounce]j, and covered with oil-silk. Strain and over-use of the joint and sudden changes of temperature are to be avoided. The induction of hyperaemia by means of massage, the elastic bandage, and hot-air baths is often of service. Operative interference is indicated when the disease is of a severe type, when it is mon-articular, and when the general condition of the patient is otherwise favourable. Excision has been practised with success in the hip, knee, elbow, and temporo-mandibular joints. Limitation of movement and locking at the hip-joint when due to new bone round the edge of the acetabulum may be greatly relieved by removal of the bone--a procedure known as _cheilotomy_. Loose bodies and hypertrophied fringes if causing symptoms may also be removed by operation. When stiffness and grating on movement are prominent features we have found the injection of from half to one ounce of sterilised white vaseline afford decided relief. The patient should be nourished well, and there need be no restriction in the diet such as is required in gouty patients, so long as the digestion is not impaired. Benefit is also derived from the administration of cod-liver oil, and of tonics, such as strychnin, arsenic, and iron, and in some cases of iodide of potassium. Luff recommends the administration over long periods of guaiacol carbonate, in cachets beginning with doses of 5-10 grs. and increased to 15-20 grs. thrice daily. A course of treatment at one of the reputed spas--Aix, Bath, Buxton, Gastein, Harrogate, Strathpeffer, Wiesbaden, Wildbad--is often beneficial. In some cases benefit has followed the prolonged internal administration of liquid paraffin. On the assumption that the condition is the result of an auto-intoxication from the intestinal tract, saline purges and irrigation of the colon are indicated, and Arbuthnot Lane claims to have brought about improvement by short-circuiting or by resecting the colon. Residence in a warm and dry climate, with an open-air life, has been known to arrest the disease when other measures have failed to give relief. The application of radium and the ingestion of radio-active waters have also been recommended. #Haemophilic# or #Bleeder's Joint#.--This is a rare but characteristic affection met with chiefly in the knee-joint of boys who are the subjects of haemophilia. After some trivial injury, or even without apparent cause, a haemorrhage takes place into the joint. The joint is tensely swollen, cannot be completely extended, and is so painful that the patient is obliged to lie up. The temperature is often raised (101 o to 102 o F.), especially if there are also haemorrhages elsewhere. The blood in the joint is slowly re-absorbed, and by the end of a fortnight or so, the symptoms completely disappear. As a rule these attacks are repeated; the pain attending them diminishes, but the joint becomes the seat of permanent changes: the synovial membrane is thickened, abnormally vascular, and coloured brown from the deposit of blood pigment; on its surface, and in parts of the articular cartilage, there is a deposit of rust-coloured fibrin; there may be extensive adhesions, and in some cases changes occur like those observed in arthritis deformans with erosion and ulceration of the cartilage and a form of dry caries of the articular surfaces, which may terminate in ankylosis. As the swelling of the joint is associated with wasting of the muscles, with stiffness, and with flexion, the condition closely resembles tuberculous disease of the synovial membrane. From errors in diagnosis such joints have been operated upon, with disastrous results due to haemorrhage. The treatment of a recent haemorrhage consists in securing absolute rest and applying elastic compression. The introduction of blood-serum (10-15 c.c.) into a vein may assist in arresting the haemorrhage; anti-diphtheritic serum is that most readily obtainable. After an interval, measures should be adopted to promote the absorption of blood and to prevent stiffness and flexion; these include massage, movements, and extension with weight and pulley. JOINT DISEASES ASSOCIATED WITH LESIONS OF THE NERVOUS SYSTEM: NEURO-ARTHROPATHIES _In Lesions of Peripheral Nerves._--In the hand, and more rarely in the foot, when one or other of the main nerve-trunks has been divided or compressed, the joints may become swollen and painful and afterwards become stiff and deformed. Bony ankylosis has been observed. _In Affections of the Spinal Medulla._--In myelitis, progressive muscular atrophy, poliomyelitis, insular sclerosis, and in traumatic lesions, joint affections are occasionally met with. The occurrence of joint lesions in _locomotor ataxia_ (tabes dorsalis) was first described by Charcot in 1868--hence the term "Charcot's disease" applied to them. Although they usually develop in the ataxic stage, one or more years after the initial spinal symptoms, they may appear before there is any evidence of tabes. The onset is frequently determined by some injury. The joints of the lower extremity are most commonly affected, and the disease is bilateral in a considerable proportion of cases--both knees or both hips, for instance, being implicated. Among the theories suggested in explanation of these arthropathies the most recent is that by Babinski and Barre, which traces the condition to vascular lesions of a syphilitic type in the articular arteries. The first symptom is usually a swelling of the joint and its vicinity. There is no redness or heat and no pain on movement. The peri-articular swelling, unlike ordinary oedema, scarcely pits even on firm pressure. [Illustration: FIG. 162.--Bones of Knee-joint in advanced stage of Charcot's Disease. The medial part of the head of the tibia has disappeared. (Anatomical Museum, University of Edinburgh).] In mild cases this condition of affairs may persist for months; in severe cases destructive changes ensue with remarkable rapidity. The joint becomes enormously swollen, loses its normal contour, and the ends of the bones become irregularly deformed (Fig. 162). Sometimes, and especially in the knee, the clinical features are those of an enormous hydrops with fibrinous and other loose bodies and hypertrophied fringes--and great oedema of the peri-articular tissues (Fig. 163). The joint is wobbly or flail-like from stretching and destruction of the controlling ligaments, and is devoid of sensation. In other cases, wearing down and total disappearance of the ends of the bones is the prominent feature, attended with flail-like movements and with coarse grating. Dislocation is observed chiefly at the hip, and is rather a gross displacement with unnatural mobility than a typical dislocation, and it is usually possible to move the bones freely upon one another and to reduce the displacement. A striking feature is the extensive formation of new bone in the capsular ligament and surrounding muscles. The enormous swelling and its rapid development may suggest the growth of a malignant tumour. The most useful factor in diagnosis is the entire absence of pain, of tenderness, and of common sensibility. The freedom with which a tabetic patient will allow his disorganised joint to be handled requires to be seen to be appreciated. [Illustration: FIG. 163.--Charcot's Disease of Left Knee. The joint is distended with fluid and the whole limb is oedematous.] The rapidity of the destructive changes in certain cases of tabes, and the entire absence of joint lesions in others, would favour the view that special parts of the spinal medulla must be implicated in the former group. In _syringomyelia_, joint affections (gliomatous arthropathies) are more frequent than in tabes, and they usually involve the upper extremity in correspondence with the seat of the spinal lesion, which usually affects the lower cervical and upper thoracic segments. Except that the joint disease is seldom symmetrical, it closely resembles the arthropathy of tabes. The completeness of the analgesia of the articular structures and of the overlying soft parts is illustrated by the fact that in one case the patient himself was in the habit of letting out the fluid from his elbow with the aid of a pair of scissors, and that in another the joint was painlessly excised without an anaesthetic. [Illustration: FIG. 164.--Charcot's Disease of both Ankles: front view. Man, aet. 32.] The disease may become arrested or may go on to complete disorganisation; suppuration may ensue from infection through a breach of the surface, and in rare cases the joint has become the seat of tuberculosis. [Illustration: FIG. 165.--Charcot's Disease of both Ankles: back view. Man, aet. 32.] _Treatment_, in addition to that of the nerve lesion underlying the arthropathy, consists in supporting and protecting the joint by means of bandages, splints, and other apparatus. In the lower extremity, the use of crutches is helpful in taking the strain off the affected limb. When there is much distension of the joint, considerable relief follows upon withdrawal of fluid. The best possible result being rigid ankylosis in a good position, it may be advisable to bring this about artificially by arthrodesis or resection. Operation is indicated when only one joint is affected and when the cord lesion is such as will permit of the patient using the limb. The wounds heal well, but the victims of tabes are unfavourable subjects for operative interference, on account of their liability to intercurrent complications. When the limb is quite useless, amputation may be the best course. _In cerebral lesions_ attended with hemiplegia, joint affections, characterised by evanescent pain, redness, and swelling, are occasionally met with. The secondary changes in joints which are the seat of paralytic contracture are considered with the surgery of the Extremities. In cases of _hysteria_ and other _functional affections of the nervous system_, an intermittent neuropathic hydrops has been observed--especially in the knee. Without apparent cause, the joint fills with fluid and its movements become restricted, and after from two to eight days the swelling subsides and the joint returns to normal. A remarkable feature of the condition is that the effusion into the joint recurs at regular intervals, it may be over a period of years. Psychic conditions have been known to induce attacks, and sometimes to abort them or even to cause their disappearance. Hence it has been recommended that treatment by suggestion should be employed along with tonic doses of quinine and arsenic. HYSTERICAL OR MIMETIC JOINT AFFECTIONS Under this heading, Sir Benjamin Brodie, in 1822, described an affection of joints, characterised by the prominence of subjective symptoms and the absence of pathological changes. Although most frequently met with in young women with an impressionable nervous system, and especially among those in good social circumstances, it occurs occasionally in men. The onset may be referred to injury or exposure to cold, or may be associated with some disturbance of the emotions or of the generative organs; or the condition may be an involuntary imitation of the symptoms of organic joint disease presented by a relative or friend. It is characteristic that the symptoms develop abruptly without satisfactory cause, that they are exaggerated and wanting in harmony with one another, and that they do not correspond with the features of any of the known forms of organic disease. In some cases the only complaint is of severe pain; more often this is associated with excessive tenderness and with impairment of the functions of the joint. On examination the joint presents a normal appearance, but the skin over it is remarkably sensitive. A light touch is more likely to excite pain than deep and firm pressure. Stiffness is a variable feature--in some cases amounting to absolute rigidity, so that no ordinary force will elicit movement. It is characteristic of this, as of other neuroses, that the symptoms come and go without sufficient cause. When the patient's attention is diverted, the pain and stiffness may disappear. There is no actual swelling of the joint, although there may be an appearance of this from wasting of the muscles above and below. If the joint is kept rigid for long periods, secondary contracture may occur--in the knee with flexion, in the hip with flexion and adduction. The _diagnosis_ is often a matter of considerable difficulty, and the condition is liable to be mistaken for such organic lesions as a tuberculous or pyogenic focus in the bone close to the joint. The greatest difficulty is met with in the knee and hip, where the condition may closely simulate tuberculous disease. The use of the Rontgen rays, or examination of the joint under anaesthesia, is helpful. The _local treatment_ consists chiefly in improving the nutrition of the affected limb by means of massage, exercises, baths, and electricity. Splints are to be avoided. In refractory cases, benefit may follow the application of blisters or of Corrigan's button. The general condition of the patient must be treated on the same lines as in other neuroses. The Weir-Mitchell treatment may have to be employed in obstinate cases, the patient being secluded from her friends and placed in charge of a nurse. Complete recovery is the rule, but when the muscles are weak and wasted from prolonged disuse, a considerable time may elapse before the limb returns to normal. TUMOURS AND CYSTS New growths taking origin in the synovial membrane are rare, and are not usually diagnosed before operation. They are attended with exudation into the joint, and in the case of _sarcoma_ the fluid is usually blood-stained. If the tumour projects in a polypoidal manner into the joint, it may cause symptoms of loose body. One or two cases have been recorded in which a _cartilaginous tumour_ growing from the synovial membrane has erupted through the joint capsule and infiltrated the adjoining muscles. _Multiple cartilaginous tumours_ forming loose bodies are described on p. 544. _Cysts of joints_ constitute an ill-defined group which includes ganglia formed in relation to the capsular ligament. Cystic distension of bursae which communicate with the joint is most often met with in the region of the knee in cases of long-standing hydrops. It was suggested by Morrant Baker that cystic swellings may result from the hernial protrusion of the synovial membrane between the stretched fibres of the capsular ligament, and the name "Baker's cysts" has been applied to these. In the majority of cases, cysts in relation to joints give rise to little inconvenience and may be left alone. If interfered with at all, they should be excised. LOOSE BODIES It is convenient to describe the varieties of loose bodies under two heads: those composed of fibrin, and those composed of organised connective tissue. #Fibrinous Loose Bodies# (Corpora oryzoidea).--These are homogeneous or concentrically laminated masses of fibrin, sometimes resembling rice grains, melon seeds, or adhesive wafers, sometimes quite irregular in shape. Usually they are present in large numbers, but sometimes there is only one, and it may attain considerable dimensions. They are not peculiar to joints, for they are met with in tendon sheaths and bursae, and their origin from synovial membrane may be accepted as proved. They occur in tuberculosis, arthritis deformans, and in Charcot's disease, and their presence is almost invariably associated with an effusion of fluid into the joint. While they may result from the coagulation of fibrin-forming elements in the exudate, their occurrence in tuberculous hydrops would appear to be the result of coagulation necrosis, or of fibrinous degeneration of the surface layer of the diseased synovial membrane. However formed, their shape is the result of mechanical influences, and especially of the movement of the joint. _Clinically_, loose bodies composed of fibrin constitute an unimportant addition to the features of the disease with which they are associated. They never give rise to the classical symptoms associated with impaction of a loose body between the articular surfaces. Their presence may be recognised, especially in the knee, by the crepitating sensation imparted to the fingers of the hand grasping the joint while it is flexed and extended by the patient. The _treatment_ is directed towards the disease underlying the hydrops. If it is desired to empty the joint, this is best done by open incision. [Illustration: FIG. 166.--Radiogram of Multiple Loose Bodies in Knee-joint and Semi-membranosus Bursa in a man aet. 38. (Mr. J. W. Dowden's case.)] #Bodies composed of Organised Connective Tissue.#--These are comparatively common in joints that are already the seat of some chronic disease, such as arthritis deformans, Charcot's arthropathy, or synovial tuberculosis. They take origin almost exclusively from an erratic overgrowth of the fringes of the synovial membrane, and may consist entirely of fat, the arborescent lipoma (Fig. 159) being the most pronounced example of this variety. Fibrous tissue or cartilage may form in one or more of the fatty fringes and give rise to hard nodular masses, which may attain a considerable size, and in course of time may undergo ossification. Like other hypertrophies on a free surface, they tend to become pedunculated, and so acquire a limited range of movement. The pedicle may give way and the body become free. In this condition it may wander about the joint, or lie snugly in one of its recesses until disturbed by some sudden movement. A loose body free in a joint is capable of growth, deriving the necessary nutriment from the surrounding fluid. The size and number of the bodies vary widely. Single specimens have been known to attain the size of the patella. The smaller varieties may number considerably over a hundred. [Illustration: FIG. 167.--Loose Body from Knee-joint of man aet. 25. Natural size. a = Convex surface. b = Concave surface.] In arthritis deformans a rarer type of loose body is met with, a portion of the lipping of one of the articular margins being detached by injury. In Charcot's disease, bodies composed of bone are formed in relation to the capsular and other ligaments, and may be made to grate upon one another. The _clinical features_ in this group are mainly those of the disease which has given rise to the loose bodies, and it is exceptional to meet with symptoms from impaction of the body between the articular surfaces. Treatment is to be directed towards the primary disease in the joint, as well as to the removal of the loose bodies. [Illustration: FIG. 168.--Multiple partially ossified Chondromas of Synovial Membrane, from Shoulder-joint, the seat of arthritis deformans, from a man aet. 35.] _Loose Bodies in Joints which are otherwise healthy._--It is in joints otherwise healthy that loose bodies causing the classical symptoms and calling for operative treatment are most frequently met with. They occur chiefly in the knee and elbow of healthy males under the age of thirty. The complaint may be of vague pains, of occasional cracking on moving the joint, or of impairment of function--usually an inability to extend or flex the joint completely. In many cases a clear account is given of the symptoms which arise when the body is impacted between the articular surfaces, namely, sudden onset of intense sickening pain, loss of power in the limb and locking of the joint, followed by effusion and other accompaniments of a severe sprain. On some particular movement, the body is disengaged, the locking disappears, and recovery takes place. Attacks of this kind may recur at irregular intervals, during a period of many years. On examining the joint, it is usually found to contain fluid, and there may be points of special tenderness corresponding to the ligaments that have been overstretched. In cases in which there has been recurrent attacks of locking, the ligaments become slack, the joint is wobbly, and the quadriceps is wasted. The patient himself, or the surgeon, may discover the loose body and feel it roll beneath his fingers, especially if it is lodged in the supra-patellar pouch in the knee, or on one or other side of the olecranon in the elbow. In most instances the patient has carefully observed his own symptoms, and is aware not only of the existence of the loose body, but of its erratic appearance at different parts of the joint. This feature serves to differentiate the lesions from a torn medial meniscus in which the pain and tenderness are always in the same spot. As the body usually contains bone, it is recognisable in a skiagram. [Illustration: FIG. 169.--Multiple Cartilaginous Loose Bodies from Knee-joint.] There are two methods of _removing the body_; the first and simpler method is applicable when the body can be palpated, usually in the supra-patellar pouch; it is preferably transfixed by a needle and can then be removed through a small incision; otherwise, the joint must be freely opened and explored, firstly to find the body and further to remove it. The characters of this type of loose body are remarkably constant. It is usually solitary, about the size of a bean or almond, concavo-convex in shape, the convex aspect being smooth like an articular surface, the concave aspect uneven and nodulated and showing reparative changes, healing over of the raw surface, and the new formation of fibrous tissue, hyaline cartilage and bone, the necessary nutriment being derived from the synovial fluid (Fig. 167). The body is sometimes found to be lodged in a defect or excavation in one of the articular surfaces, usually the medial condyle of the femur, from which it is readily shelled out by means of an elevator. It presents on section a layer of articular cartilage on the convex aspect and a variable thickness of spongy bone beneath this. The origin of these bodies is one of the most debated questions in surgical pathology; they obviously consist of a portion of the articular surface of one of the bones, but how this is detached still remains a mystery; some maintain that it is purely traumatic; Konig regards them as portions of the articular surface which have been detached by a morbid process which he calls "osteochondritis dessicans." _Multiple Chondromas and Osteomas of the Synovial Membrane._--In this rare type of loose body, the surface of the synovial membrane is studded with small sessile or pedunculated tumours composed of pure hyaline cartilage, or of bone, or of transition stages between cartilage and bone. They are pearly white in colour, pitted and nodular on the surface, rarely larger than a pea, although when compressed they may cake into masses of considerable size. With the movements of the joint many of the tumours become detached and lie in the serous exudate excited by their presence. They are found also in the diverticula of the synovial membrane, in the shoulder in the downward prolongation along the tendon of the biceps, in the hip in the bursal extension beneath the psoas. The patient complains of increasing disability of the limb, movements of the joint becoming more and more restricted and painful. There is swelling corresponding to the distended capsule of the joint, and on palpation the bodies moving under the fingers yield a sensation as of grains of rice shifting in a bag. If the bodies are so numerous as to be tightly packed together, the impression is that of a plastic mass having the shape of the synovial sac. The stiffness and the cracking on movement may suggest arthritis deformans, but the X-ray appearances make the diagnosis an easy one. We have observed two cases of this affection in the knee-joint of adult women, one in the shoulder-joint of an adult male (Fig. 168), and Caird has observed one in the hip. The treatment consists in opening the joint by free incision and removing the bodies. _Displacement of the menisci_ of the knee is referred to with injuries of that joint. INDEX Abdominal aneurysm, 313 aorta, compression of, 269 embolus of, 93 Abscess, 46 acute circumscribed, 46 of bone, 448 Brodie's, 448 chronic, 139 cold, 139 embolic, 66 formation of, 47 Hilton's method of opening, 50 pointing of, 48 pyaemic, 287 residual, 141 of skin, multiple, 382 stitch, 51 treatment of, 49 tuberculous, 139, 141 peri-articular, 514, 517 Achillo-bursitis, 432 Achillo-dynia, 422 Acidosis, 251 Acromion bursa, 429 Actinomycosis, 126 Active hyperaemia, 39 Acupuncture in aneurysm, 308 Acute arthritis of infants, 440 necrosis of bone, 439 Adductor longus muscle, rupture of, 408 Adenoma, 202 malignant, 209 sebaceous, 393 of skin, 393 varieties of, 202 Adiposus dolorosa, 186 Aerobes, 19 Air embolism, 265 hunger, 276 Albumosuria, 195, 474, 492 Aleppo boil, 129 Alexins, 22 Ambrine, 13, 238 Amputation neuroma, 344 Anaerobes, 19 Anaesthesia, after nerve injuries, 347 Analgesia, 347 Anaphylaxis, 23 Anatomical tubercle, 134 Anatomy. _See_ Surgical Anatomy Anel's operation for aneurysm, 307 Aneurysm, 300. _See also_ Individual Arteries abdominal, 313 acupuncture in, 308 amputation in, 310 by anastomosis, 298 Anel's operation for, 307, 310 arterio-venous, 263 axillary, 318 of bone, 498 brachial, 318 Brasdor's operation for, 308 cirsoid, 299 Colt's method of wiring for, 309 compression for, 308 consolidated, 304, 305 differential diagnosis of, 305 diffused, 302 digital compression in, 308 excision of, 307 of forearm and hand, 318 fusiform, 301 gelatin injections in, 309 Hunter's operation for, 307 iliac, 318 of individual arteries, 312 inguinal, 318 innominate, 314 intracranial, 316 of leg and foot, 320 ligation of artery for, 307 Macewen's acupuncture for, 308 Matas' operation for, 307 Moore-Corradi method, 308 natural cure of, 305 old operation for, 307 of ophthalmic artery, 317 orbital, 317 pathological, 301 pulse in, 304 rupture of, 306 sacculated, 302 suppuration in, 306 thoracic, 312 traumatic, 263, 310 treatment of, 306 varicose, 311 Wardrop's operation for, 308 X-rays in diagnosis of, 304 Aneurysmal varix, 311, 316, 318, 319, 320 Angioma, 284 arterial, 299 capillary, 294 cavernous, 297 racemosum venosum, 287 venous, 294 Angio-neurotic oedema, 348 sarcoma, 199 Angler's elbow, 406 Ankle, cellulitis of, 58 Ankylosis of joints, 503. _See also_ Individual Joints Anoci-association, 253 Anthracaemia, 121 Anthrax, 119 Anti-bacterial sera, 23 -diphtheritic serum, 111 -streptococcic serum, 23, 109 -tetanic serum, 117 Antibodies, 22 Antigens, 22 Antiseptics, 242 Antitoxic sera, 23 Antitoxins, 22 Antivenin, 132 Aorta, abdominal, compression of, 269 aneurysm of, 313 embolism of, 93 ligation of, 314 pulsating, 305, 314 Arborescent lipoma, 423 Arseno-billon, 163 Arteries, anatomy of, 258 compression of individual, 269 contusion of, 260 digital compression of, 269 gangrene following ligation of, 94 gunshot wounds of, 263 Arteries, ligation of, for aneurysm, 307 punctured wounds of, 262 repair of, 266, 268 rupture of, 260 wounds of, 261, 262 Arterio-sclerosis, 282 Arterio-venous aneurysm, 310 Arteritis, varieties of, 282 Arthritis, 501. _See also_ Individual Joints acute, 506 of infants, 440 deformans, 524 gonococcal, 510 neuropathic, 532 ossificans, 503 pneumococcal, 509 pyogenic, 506 rheumatic, 523 rheumatoid, 524 septic, 506 scarlatinal, 508 trade, 525 traumatic, 524 tuberculous, 512 urica, 522 Arthrolysis, 505 Arthropathies, 532 gliomatous, 534 Arthroplasty, 505 Articular caries, 502, 514 Artificial hyperaemia, 39 Ascites, chylous, 325 Asepsis, 18 Asphyxia, local, 97 traumatic, 254 Atheroma, 283 Avulsion of nerves, 375 of tendons, 411 Axilla, cellulitis of, 58 hygroma of, 328 Axillary aneurysm, 318 artery, embolus of, 93 lymph glands, 336 nerve, injuries of, 363 Bacilli, 19 Bacillus aerogenes capsulatus, 99 anthracis, 119 coli communis, 27 diphtheriae 109 drum-stick, 112 of Ducrey, 154 of glanders, 123 Klebs-Loffler, 109 of malignant oedema, 101 mallei, 123 pyocyaneus, 29 of soft sore, 154 of tetanus, 112 tubercle, 133 typhosus, 29, 452 Bacteria, death of, 21 general characters of, 18 pathogenic properties of, 19 pyogenic, 24, 29 Bacterial intoxication, 21 Bacteriology, surgical, 17 Baker's cysts, 539 Bazin's disease, 74, 169 Beck's paste in sinuses, 145 Bed-sores, 73, 103 Bence-Jones on albumosuria, 195, 474, 492 Biceps, bursa under, 430 dislocation of long tendon of, 409 rupture of, 407 Bier's artificial hyperaemia, 38 B.I.P.P., 143 Birth palsies, 362 Biskra button, 129 Bismuth gauze, 247 injections in sinuses, 145 Bites of animals, 223 Black eye, 219 Bleeder's joint, 531 Bleeders, 277 bruises in, 218 Blisters, 376 purulent, 55 Blocking of nerves for shock, 252 Blood, count, 30 cysts, 214, 220 transfusion of, 11, 253 Blood vessels. _See_ Arteries and Veins Bloodless state, treatment of, 276 Blood letting, general, 42 Boil, 379 Aleppo, 129 Delhi, 129 Bone. _See also_ Individual Bones abscess of, 448 aneurysm of, 498 angioma of, 491 atrophy of, 479 bacterial diseases of, 438 Brodie's abscess of, 448 cancer of, secondary, 499 caries of, 437, 438 changes in ulcers of leg, 79 chondroma of, 487 cysts of, 477, 500 diseases of, 434 due to staphylococcus aureus, 438 endothelioma of, 492 exostoses of, 191, 481 fibroma of, 491 fragility of, 479 grafting, 16, 436 gumma of, 464 hydatid disease of, 467 hyperostosis, 435, 464 hypertrophic pulmonary osteo-arthropathy, 480 hypertrophy of, 435 lipoma of, 491 lipping of, 527 malacia of, 473 marrow, function of, 434 myeloma of, 491 myxoma of, 491 necrosis of, 438 neuropathic atrophy of, 479 osteoma of, 481 osteomalacia of, 473 osteomyelitis of, 65, 437, 438, 451, 453, 473 fibrosa, 476 osteoporosis of, 437 osteopsathyrosis, 479 ostitis deformans, 474 Paget's disease of, 474 periosteum, function of, 435 periostitis, 437 pulsating haematoma of, 498 pyogenic diseases of, 438 regeneration of, 436 rickety affections of, 468 sarcoma of, 492 sclerosis of, 435 scurvy affecting, 473 secondary tumours of, 499 surgical anatomy of, 434 staphylococcal diseases of, 438 syphilitic diseases of, 461, 465 transplantation of, 436 tuberculous diseases of, 454 tumours of, 480 malignant, 492, 499 metastatic, 499 thyreoid, 500 typhoid, infection of, 452 X-ray appearances in diseases of, 445, 455, 485, 491, 496 Bovine tuberculosis, 136 Brachial aneurysm, 318 artery, embolus of, 93 compression of, 269 birth-paralysis, 362 fibrositis, 413 neuralgia, 371 plexus, lesions of, 360 Brain, joint affections in lesions of, 537 syphilitic lesions of, 161 Branchial dermoids, 211 Brasdor's operation for aneurysm, 308 Brodie's abscess, 448 Bruises, 218 Bubo, 329 bullet, 153 of soft sores, 155 Bullet bubo, 153 Bullets, embedded, 231 varieties of, 230 Burnol, 238 Burns, 233 classification, of, 234 electrical, 239 pathology of, 233 by X-rays, 239 Bursae. _See also_ Individual Bursae adventitious, 426 affections of, 426 individual, 428 diseases of, 426, 428 haematoma of, 426 hydrops of, 427 hygroma of, 423 inflammation of, 426 injuries of, 426 loose bodies in, 427 syphilis of, 428 tuberculosis of, 428 tumours of, 427, 428 Cachexia, cancerous, 207 Calcanean bursa, 432 Calcification in arteries, 282 in muscles, 416 in tuberculosis, 136 Callosities, 376 Callous ulcers, 79, 84 Cancer, 202 arsenic, 395 of bone, 499 cachexia in, 207 chimney-sweep's, 395 colloid, 210 columnar epithelial, 209 contagiousness of, 205 cystic, 210 definition of, 202 degeneration of, 205 encephaloid, 210 _en cuirasse_, 204 glandular, 210 glandular infection in, 203 increase of, 207 of lymph glands, 340 medullary, 210 melanotic, 210, 341, 397 paraffin, 395 pigmented, 210 radium treatment of, 208 rodent, 210, 395 scirrhous, 210 of skin, 394 spread of, 204 squamous epithelial, 208 ulceration of, 205 varieties of, 208 X-ray, 208 Cancrum oris, 102 Cantharides plaster, 42 Capillaries, anatomy of, 258 Capillary angioma, 294 loops, 3 Carbolic gangrene, 95 Carbon-dioxide snow, 297 Carbuncle, 380 Carcinoma. _See_ Cancer Caries, 437, 438 of articular surfaces, 502, 514 sicca, 438 syphilitic, 462 tuberculous, 455 Carotid aneurysm, 314 artery, compression of, 269 tubercle, 269 Carpal ganglion, 214 Carron oil, 238 Cartilage, grafting of, 16 repair of, 7 ulceration of, 502, 514 Cartilaginous exostosis, 191, 481 Caseation in tuberculosis, 136 Catalepsy, 116 Catgut, infection by, 51 preparation of, 245 Cautery in haemorrhage, 271 Cavernous angioma, 298 lymphangioma, 327 Cellulitis, 52 in different situations, 58 diffuse, 52 Cephalic or Kopf tetanus, 116 Cerebro-spinal meningitis, 115 Cervical adenitis, 332 rib, 360 Chalk stones in gouty joints, 523 Chancre, concealed, 152, 153, 157 erratic, 153 extra-genital, 153 hard, 151 meatal, 152 multiple, 152 relapsing false indurated, 172 soft, 154 urethral, 152 Chancroid, 154 Charcoal poultice, 84 Charcot's disease, 533 Cheloid. _See_ Keloid Chemiotaxis, 32 Chigoe, 130 Chilblain, 378 Chimney-sweep's cancer, 395 Chloroma, 200 Chondroma, 189, 487 multiple, 544 Chondromatosis, 488 Chondro-sarcoma, 189, 200, 487 Chordoma, 200 Choroiditis, syphilitic, 177 Chylorrhoea, 325 Chylo-thorax, 325 Chylous ascites, 325 Cicatrices, varieties of, 400 Cicatricial contraction, 4 tissue, 4 Circumflex nerve. _See_ Axillary Nerve Cirsoid aneurysm, 299 Claw-hand, 369 Cloacae in bone, 443 Cocci, 18 Coeliac artery, aneurysm of, 313 Coley's fluid, 201 Collapse, 254 Collateral circulation, 267 Colles' law, 178 Colloid cancer, 210 Common peroneal nerve, 370 Compound palmar ganglion, 217, 423 Condylomata, 158, 174 Congenital fistulas, 60 telangiectasis, 294 Connective tissue, repair of, 6 Contracture of joints, 502 of muscles, 415 paralytic, 347 Contusions, 218 Cornea, syphilitic ulceration of, 177 Corns, 377 Corpora oryzoidea, 539 Counter-irritants, 37, 42 Craniotabes, 175, 176, 465 Crural fibrositis, 413 Crutch paralysis, 351 Cupping dry, 39 wet, 42 Cutis anserina, 36 Cyanosis, traumatic, 254 Cyst, 212 atheromatous, 389 Baker's, 539 blood 214, 220 of bone, 477, 500 dentigerous, 193 derma, 210 exudation, 212 ganglionic, 215 haemorrhagic, 220 hydatid, 213 implantation, 212 of joints, 538 lymph, 214 lymphatic, 219, 328 omental, 329 parasitic, 213 retention, 212 sebaceous, 212, 389 serous, 219 venous, 289 Cystic adenoma, 202 carcinoma, 210 hygroma of neck, 328 lymphangioma, 327, 328 Dactylitis, syphilitic, 176, 460, 466 tuberculous, 460 Dancer's sprain, 406 Deafness, syphilitic, 178 Deformities. _See_ Individual Regions Delhi boil, 129 Delirium, in surgical patients, 255 traumatic, 257 Delirium tremens, 256 Dentigerous cyst, 193 Dercum on adiposus dolorosa, 186 Derma-cysts, 210 Dermatitis, 239, 292 Dermoids, 210 Diabetic gangrene, 96 Diarsenol, 163 Diapedesis of red corpuscles, 32 Diaphysial aclasis, 483 Diffuse aneurysm, 302 cellulitis, 52 fibromatosis, 194 lipomatosis, 187 neuro-fibromatosis, 355 osteoma, 485 suppuration, 52 Diphtheria, 109 antitoxin in, 111 intubation in, 111 Diplococci, 19 Dislocation of nerves, 351, 369 pathological, 514 of tendons, 408 Double cyanide gauze, 247 Drainage of wounds, 222 Dressings, surgical, 247 Drill-bone, 418 Drop-finger, 411 -foot, 370 -wrist, 365 Drunkard's palsy, 351, 364 Duchenne's paralysis, 361 Ducrey's bacillus, 154 Duodenum, ulceration of, in burns, 236 Dwarf, rickety, 469 syphilitic, 178 Eburnation of articular surfaces, 557 Ecchondroses, 527 Ecchymosis, 218 Echinococcus, 213 Echthyma, 158 Eczema, varicose, 292 Elbow, angler's, 406 cellulitis of, 58 tennis, 406 Electricity, injuries by, 239 Electrolysis in angioma, 297 Elephantiasis, varieties of, 360, 384, 386 Embolism, 281 air, 265 Embolism, fat, 254 of individual arteries, 93 Embolus, 281 Emigration of leucocytes, 32 Emotional shock, 251 Emphysema, 99, 102 Emprosthotonos, 214 Empyema of joints, 501, 518 Encephaloid cancer, 210 Endarteritis obliterans, 282 syphilitic, 161 Endo-aneurysmorrhaphy, 307 Endothelioma, 196 of bone, 492 Epicritic sensibility of nerves, 343 Epidermis, grafting, 12 repair of, 4 Epiphysial cartilage, 434 junction, 434 in rickets, 469 Epiphysiolysis, 440 Epiphysitis, 437 syphilitic, 465 Epithelial tumours, 201 Epithelioma, 208 chimney-sweep's, 395 lupus, 384 paraffin, 395 in scars, 402 sinus, 500 of skin, 394 trade, 395 varieties of, 208 X-ray, 395 Epithelium grafting, 12 repair of, 6 Epulis, 491 Erb's paralysis, 361 Erysipelas, varieties of, 107 Erythema pernio, 378 nodosum, 442 Evaporating lotions, 41 Exfoliation, 438 Exophthalmos, pulsating, 317 Exostosis, 191, 481 bursata, 481 cancellous, 481 cartilaginous, 191, 481 false, 192 ivory, 481 multiple, 483 spongy, 191, 481 subungual, 191, 404, 481 Explosives, wounds by, 231 External iliac artery, embolus of, 93 External popliteal nerve. _See_ Common Peroneal Nerve Extravasation of blood, 259 Exudates, varieties of, 33 Exudation cysts, 212 Eye, syphilitic lesions of, 160, 176, 177 Facial artery, compression of, 269 erysipelas, 107 Fainting, 249 Farcy, 125 Fascia, grafting of, 16 Fat embolism, 254 grafting of, 16 Fatty hernia, 187 tumours, 184 Feet, trench, 96 Femoral aneurysm, 318 artery compression of, 269 embolus of, 93 lymph glands, 323 Fever, 35 Fibro-adenoma, 202 Fibroblasts, 3 Fibroid, recurrent, of Paget, 199, 392, 420 uterine, 195 Fibroma, 194 of bone, 491 diffuse, 194 recurrent, of Paget, 199, 392, 420 of skin, 391 varieties of, 194 Fibromatosis, diffuse, 194 Fibro-myoma, 195 Fibro-sarcoma, 199 Fibrositis, varieties of, 372, 412 Filaria Bancrofti, 326 Filarial disease, 326 Finger, chancre of, 154 drop-, 411 mallet-, 411 Fingers, gouty affections of, 523 whitlow of, 55 Finsen light treatment, 138 Firearms, wounds by, 225, 227, 230 First intention, healing by, 2 Fistula, 60 congenital, 60 lymphatic, 325 varieties of, 60 Fluctuation, 49 Fomentations, 37, 41 Foot, cellulitis of, 58 drop-, 370 Madura, 129 perforating ulcer of, 73 Forci-pressure in haemorrhage, 271 Forearm, aneurysm of, 318 cellulitis of, 58 Foreign bodies, embedded, 6, 231 Fracture, pathological, 444 Fraenkel's pneumococcus, 28 Fragilitas ossium, 479 Friedlander's pneumo-bacillus, 28 Frost-bite, gangrene from, 95 Furunculus orientalis, 129 Galyl, 163 Ganglion, 214, 215, 217 compound palmar, 217, 423 Ganglionic neuroma, 353 Gangrene, 86 acute infective, 99 emphysematous, 102 from angio-sclerosis, 98 bacterial varieties of, 99 from burns and scalds, 95 cancrum oris, 102 carbolic, 95 from chemical agents, 95 clinical types of, 86 varieties of, 88 from constriction of vessels, 94 diabetic, 96 dry, 86 embolic, 92 from ergot, 98 from frost-bite, 95 gas, 102 from interference with circulation, 86 following ligation of arteries, 94 line of demarcation in, 87 malignant oedema, 101 moist, 87 noma, 102 phagedaena, 153 Raynaud's disease, 97 senile, 88 traumatic, 94 from trench feet, 96 white, 93 from whitlow, 99 Gas gangrene, 102 Gasserian ganglion, removal of, 375 Gauze, varieties of, 247 Gauze, sterilisation of, 245 Gelatin, injection of, in aneurysm, 309 in haemophilia, 280 Gelatinous degeneration of joints, 515 Giant cells, 3 Glanders, 123 Glands, lymph. _See_ Lymph Glands Glioma, 196 Gliomatous arthropathies, 534 Glio-sarcoma, 200 Gloves in surgery, 244 Gluteal aneurysm, 319 fibrositis, 372, 413 Glycogen reaction, 30 Glycosuria in perforating ulcer, 73 Golfer's back, 405 Gonorrhoeal bursitis, 428 joint lesions, 510 lymphangitis, 325 myositis, 416 ophthalmia, joint lesions following, 510 rheumatism, 510 teno-synovitis, 423 Gout, joint affections in, 522 Gouty bursitis, 428 joints, 522 teno-synovitis, 422 tophi, 523 ulcers, 77 Grafting of bone, 436 of epithelium, 12 of mucous membrane, 16 of skin, 11 of tissues, 10 Granulation, healing by, 5 tissue, formation of, 2 syphilitic, 146 tuberculous, 136 Granulations, 2 Granuloma, 42 Groin, cellulitis of, 59 filarial disease in lymphatics of, 326 Growing pains, 451 Growth fever, 451 Gumma, 168 of bone, 464 peri-bursal, 521 periosteal, 521 peri-synovial, 521 subcutaneous, 76 syphilitic, 168 Gummatous infiltration, 168 Gunshot wounds, 225, 227, 230 Haematemesis, 259 post-operative, 275 Haematoma, 220 bursal, 426 pulsating, of bone, 498 Haematuria, 259 Haemophilia, 277 Haemophilic joint, 531 Haemoptysis, 259 Haemorrhage, 266 arrest of, 266, 270, 272, 274 arterial, 259 capillary, 260 cautery in, 271 constitutional effects of, 275 digital compression in, 269 external, 259 forci-pressure in, 271 intermediate, 272 internal, 259 ligature in, 270 in operations, 269 prevention of, 269 primary, 266 reactionary, 272 saline infusions in, 276 secondary, 273 styptics in, 271 torsion in, 271 tourniquets in, 270, 272 toxic, 275 from varicose veins, 292 venous, 259 Haemorrhagic diathesis, 277 Haemostatics, 271 Hair, syphilitic lesions of, 159 Hand, claw-, 369 Hands, disinfection of, 244 Hard chancre, 151 Healing by blood-clot, 6 by first intention, 2 by granulation, 5 by primary union, 2 rate of, 9 under scab, 6 by second intention, 5 sore, 69, 81 ulcer, 77 by union of granulating surfaces, 5 Heart, massage of, 265 Heberden's nodes, 529 Hectic fever, 62 Heliotherapy, 139 Hernia, fatty, 187 of muscle, 408 Herpes, syphilitic, 156 Hilton's method of opening abscess, 50 Hodgkin's disease, 377 Horns, varieties of, 389, 391 Housemaid's knee, 426, 431 Hunter's operation for aneurysm, 307 Hutchinson's teeth, 177 Hydatid cysts, 213 of bone, 467 of muscle, 421 thrill, 214 Hydrocele of neck, 328 Hydrophobia, 115, 118 Hydrops, 501, 518 Hygroma of axilla, 328 bursal, 427 of neck, 328 Hyperaemia, 32 active, 39 artificial, 36 passive, 38 in tuberculosis, 138 Hyperostosis, 435 syphilitic, 464 Hypertrophic pulmonary osteo-arthropathy, 480 Hysterical joint affections, 537 Ice-bags, 41 Ichthyma, syphilitic, 158 Igni-puncture in naevus, 297 Iliac aneurysm, 318 Immunity, 22 Imperial drink, 40 Implantation cysts, 212 Infantile scurvy, 473 Infection, accidental, 241 by catgut, 51 mixed, 20 prevention of, 243 of wounds, 241 Inflammation, 31 changes in, 32 chronic, 42 clinical aspects of, 33 constitutional disturbance in, 35 general principles of treatment in, 36, 39 Inflammation, leucocytosis in, 36 stages of, 32 Infusion of saline solution, 276 Ingrowing toe-nail, 403 Inguinal aneurysm, 318 lymph glands, 323 Injuries, 218. _See also_ Individual Tissues and Regions constitutional effects of, 249 Innominate aneurysm, 314 Inoculation tubercle, 382 Insects, poisoning by, 130 Instruments, sterilisation of, 245 Intercostal fibrositis, 413 Intermittent claudication of vessels, 98 Internal popliteal nerve. _See_ Tibial Nerve Interstitial keratitis, 177 Intestine, repair of, 9 Intoxication, bacterial, 21 Intracranial aneurysm, 316 Intra-cystic growths, 202 Intubation of larynx, 111 Involucrum, 443 Iodine, catgut, 246 for disinfection of skin, 245 reaction, 30 Iodoform gauze, 247 injection of, 142 in joint diseases, 519 Iritis, syphilitic, 160 Irrigation, continuous, 54 Irritable ulcers, 79 Ischaemic contracture of muscles, 415 Ischial bursa, 430 Ischias scoliotica, 372 Ivory exostosis, 481 Jaws, actinomycosis of, 127 changes in, in rickets, 470 cystic tumours of, 193 Jigger, 130 Joints. _See also_ Individual Joints ankylosis of, 503 bacterial diseases of, 506 bleeder's, 531 Charcot's disease of, 533 chondromata, multiple, of, 544 contracture of, 502 cysts of, 538 developmental errors of, 505 diseases of, general, 501, 506 disorganisation of, 502 empyema of, 501 gelatinous degeneration of, 515 gliomatous arthropathies, 534 gonococcal affections of, 510 gouty affections of, 522 haemophilic, 531 hydrops of, 501 hysterical affections of, 537 impaired mobility of, 502 iodoform in diseases of, 519 loose bodies in, 529, 539 mimetic affections of, 537 nerve lesions affecting, 532 neuro-arthropathies, 532 osteo-arthritis, 524 pneumococcal infection of, 509 pyaemic affections of, 508 pyogenic diseases of, 506 rheumatic affections of, 523, 524 rigidity of, 502 scarlet fever, infection of, in 508 spinal diseases affecting, 532 starting pains in, 502, 517 synostosis, 503 syphilitic diseases of, 521 tuberculous diseases of, 512 tumours of, 538 typhoid infection of, 508 white swelling of, 515, 518 Jumper's sprain, 406 Keloid, 194, 401 Keratitis, interstitial, in syphilis, 177 Keratoma of nail bed, 391 Kharsivan, 163 Klapp's suction bells, 39 Klebs-Loffler bacillus, 109 Klumpke's paralysis, 361 Knee, cellulitis of, 58 ganglion of, 215 housemaid's, 426, 431 Kopf or cephalic tetanus, 116 Kyphosis, 471 Labourer's back, 405 Larynx, syphilis of, 177 Leeches, 41 Leg ulcer, 72 varicose veins of, 287 Leiter's lead tubes, 41 Leontiasis ossea, 485 Leucocytes, emigration of, 32 varieties of, 29 wandering, 3 Leucocythaemia, 340 Leucocytosis, 22, 29 absence of, 30 digestion, 30 after haemorrhage, 30 local, 32 physiological, 29, 30 post-operative, 30 Leucopenia, 30 Leucoplakia, 167 Lightning stroke, 240 Line of demarcation in gangrene, 87 Lingual dermoids, 211 Lipoma, 184 arborescent, 423 of bone, 187, 491 diffuse, 187 intra-muscular, 188 multiple, 186 nasi, 393 periosteal, 187 subcutaneous, 184, 186 subserous, 187 subsynovial, 187 Lipomatosis, diffuse, 187 Lipping of bone, 527 Liquor epispasticus, 42 puris, 45 Listerian methods of wound treatment, 242 Locking of joints, 505 Lock-jaw, 113 Locomotor ataxia, joint lesions in, 532 Long thoracic nerve, injuries of, 363 Loose bodies in bursae, 427 in joints, 529, 539 in tendon sheaths, 423 varieties of, 539 Lotion, evaporating, 41 Luargol, 163 Luetin, 149 Lumbago, 412 Lumbo-sacral fibrositis, 412 Lupus, 134, 382 epithelioma, 384 syphilitic, 169 tuberculous, 382 varieties of, 383, 393 Lymph, 321 cysts, 214 glands, cancer of, 340 diseases of, 329 functions of, 221 sarcoma of, 341 surgical anatomy of, 321 syphilitic diseases of, 337 tuberculosis of, 331 tumours of, 340 oedema, 325 scrotum, 389 vessels, diseases of, 325 injuries of, 323 Lymphadenitis, 53, 329 Lymphadenoma, 337 Lymphangiectasis, 214, 326 Lymphangioma, varieties of, 327 Lymphangioplasty, 325, 386 Lymphangio-sarcoma, 199 Lymphangitis, 325 septic, 53 varieties of, 325 Lymphatic cyst, 328 fistula, 324 oedema, 325 Lymphatics, 321 Lymphocytosis, 29 Lymphorrhagia, 323 Lympho-sarcoma, 199, 340 Macewen's method of compressing abdominal aorta, 269 Macrophages, 22 Madura foot, 129 _Main en griffe_, 369 Malacia of bones, 473 Malignant adenoma, 209 cachexia, 207 oedema, 101 pustule, 120 tumours, 183 ulcers, 77 Mallein test, 125 Mallet-finger, 411 Malum senile, 524 Marriage and syphilis, 167 Matas' operation for aneurysm, 307 Median nerve, lesions of, 367 Medullary cancer, 210 Melaena, 259 Melanotic cancer, 210, 397 sarcoma, 200 Melon-seed bodies, 539 Meningitis, basal, 115 cerebro-spinal, 115 Mercury in syphilis, administration of, 165 Metchnikoff's cream, 157 Michel's clips, 222 Micrococci, 18 Micrococcus tetragenus, 29 Micro-organisms, 18 Microphages, 22 Mimetic joint affections, 537 Miner's elbow, 426 Mitchell's operation for varicose veins, 294 Mixed infection, 20 naevus, 295 venereal infection, 156 Moist gangrene, 87 Moles, 390 naevoid, 295 Molluscum fibrosum, 194, 359, 391 Moore-Corradi method of treating aneurysm, 308 Mosetig-Moorhof on filling of bone cavities, 447 Mother's mark, 294 Muco-pus, 52 Mucous membrane, grafting of, 16 suppuration in, 51 patches, 160, 174 Multilocular cystic tumours of jaw, 193 Mummification, 86 Muscle, affections of, 405 atrophy of, 412 calcification of, 416 congenital absence of, 411 contracture of, 415 contusion of, 405 diseases of, 411 gonorrhoea of, 416 grafting of, 16 hernia of, 408 hydatid cysts of, 421 inflammation of, 415 injuries of, 405 ossification in, 416 repair of, 8 rheumatism of, 412 rupture of, 405, 406 sprain of, 405 syphilis of, 416 tuberculosis of, 416 tumours of, 420 wounds of, 409 Muscular rheumatism, 412 Musculo-cutaneous nerve, 364 Musculo-spiral nerve. _See_ Radial Nerve Mustard leaves, 42 Mycetoma, 129 Myelitis, syphilitic, 161 Myeloma, 195, 491 of bone, 491 of tendon sheaths, 424 Myoma, 195 Myo-sarcoma, 200 Myositis ossificans, 416, 418 varieties of, 415 Myxo-adenoma, 202 Myxoma, 194 of bone, 491 Myxo-sarcoma, 200 Naevoid mole, 295 Naevus, 294 electrolysis of, 297 operations for, 298 radium treatment of, 297 varieties of, 294 Nail fold, whitlow of, 56 horns, 391 Nails, affections of, 402 ingrowing, 403 regeneration of, 7 syphilitic lesions of, 159, 402 Nasal bones, syphilitic disease of, 188, 462 Naso-pharyngeal polypus, 491 Natal sore, 129 Neck, cystic hygroma of, 328 glands of, diseases, 332 hydrocele of, 328 lipomatosis of, 187 painful stiff-, 413 Necrosis, acute, 439 of bone, 438 quiet, of Paget, 452 syphilitic, 462 Neo-diarsenol, 163 -kharsivan, 163 -salvarsan, 163 Neoplasms, 181 Nerve of Bell. _See_ Long Thoracic Nerve Nerves, 342. _See also_ Individual Nerves alcohol injections of, 374 anatomy of, 342 avulsion of, 375 blocking of, 251, 252 bullet wounds of, 346 contusion of, 345 crushing of, 345 diseases of, 352 dislocation of, 351, 369 effects of division of, 344 gun-shot wounds of, 346 grafting of, 16 implicated in scar tissue, 345 individual, surgery of, 360 injuries of, 344 joint affections in lesions of, 532 reaction of degeneration, 347 regeneration of, 9, 346 in scar tissue, 345 sensibility, forms of, 343 subcutaneous injuries of, 350 suture of, primary, 348 secondary, 349 Tinel's sign, 349 torn, 345 tumours of, 353 ulcers in lesions of, 73, 82 Neuralgia, varieties of, 371 Neurectomy, 375 Neuritis, multiple peripheral, varieties of, 352 traumatic, 352 Neuro-arthropathies, 352. _See also_ Individual Joints Neuro-fibromatosis, 355, 359 Neurolysis, 345 Neuroma, stump, 344 varieties of, 353 "914," 613 Nodes, periosteal, 464 Heberden's 529 Noma, 102 Nose, sebaceous adenoma of, 393 Novo-arseno-billon, 163 Nucleinate of soda, 29 Odontoma, 192 varieties of, 193 O'Dwyer's intubation apparatus, 111 Oedema, 32, 34 angio-neurotic, 348 lymphatic, 325 malignant, 101 persistent, 109 Olecranon bursa, 428 Omental cyst, 329 Onychia, varieties of, 402 Operations during shock, 252 Opisthotonos, 114 Opsonins, 22 Orbital aneurysm, 317 Orthotonos, 114 Ossification in muscles, tendons, and fasciae, 416 Ossifying junction, 434 Osteo-arthritis, 524 syphilitic, 522 Osteo-arthropathy, pulmonary, 480 Osteochondritis dessicans, 544 Osteogenesis imperfecta, 479 Osteoid sarcoma, 200 Osteoma, 191, 481 cancellous, 191 compact, 192 diffuse, 485 ivory, 192 multiple, 544 in muscles and tendons, 416 spongy, 191 subungual, 191, 404, 481 Osteomalacia, varieties of, 473 Osteomyelitis, 65, 437 acute, 65, 438, 451, 453 after amputation, 453 bipolar, 439 fibrosa, 476 gummatous, 462 from infection from soft parts, 453 pyogenic, 438 relapsing, 448 sequelae of, 443 streptococcal, 451 tuberculous, 456, 458 in typhoid fever, 452 Osteophytes, 435 Osteoporosis, 437 Osteopsathyrosis, 479 Osteosarcoma, 200 Osteosclerosis, 435 Ostitis deformans, 474 rarefying, 474 Ovarian dermoids, 211 Ovary, grafting of, 16 Ozoena, 176 Pachydermatocele, 360 Paget's disease of bone, 474 of nipple, 397 recurrent fibroma, 199, 392, 420 Pain, starting, in joint disease, 502, 517 varieties of, 35 Painful subcutaneous nodules, 354, 392 Palate, syphilitic lesions of, 178, 462 Palmar ganglion, compound, 217, 423 Papilloma, varieties of, 201, 392 Paraffin cancer, 395 Paralysis, brachial birth, 362 Erb-Duchenne, 361 Klumpke's, 361 post-anaesthetic, 360 pseudo, of syphilis, 174, 466 Parasitic bacteria, 20 cysts, 213 Paronychia. _See_ Onychia Parotid abscess in pyaemia, 66 lymph glands, 321 tumours, 195 Parotitis, 66 Parrot's nodes, 175, 465 Passive hyperaemia, Bier's, 38 Pasteur's treatment for hydrophobia, 119 Pelvis, rickety changes in, 471 Perforating ulcer, 73, 82 Perichondritis, syphilitic, 465 Peri-lymphangitis, 325 Periosteum, function of, 434 gumma of, 464 in rickets, 469 Periostitis, 437. _See also_ Osteomyelitis syphilitic, 461 tuberculous, 455 Peripheral neuritis, 352 Peroneal nerve, 370 Peronei tendons, dislocation of, 409 Petrifying sarcoma, 200 Phagedaena, 153 Phagedaenic ulcers, 80, 85 Phagocytes, 3, 22 Phagocytosis, 22 Phimosis, with hard chancre, 152 with soft sores, 155 Phlebitis, 285, 292 Phlegmasia alba dolens, 286 Picric acid, 13, 237 Pigeon-breast, 471 Plantaris, rupture of, 408 Pleurodynia, 413 Pleurosthotonos, 114 Pneumo-bacillus, Friedlander's bacteria, 28 Pneumococcal arthritis, 509 Pneumococcus, 28 Polypi, 195 Popliteal aneurysm, 320 artery, embolus of, 93 bursae, 432 lymph glands, 323 nerves. _See_ Common Peroneal Nerve and Tibial Nerve Port-wine stain, 294 Post-anaesthetic paralysis, 360 -anal dimple, 211 Posterior auricular lymph glands, 322 Post-rectal dermoids, 211 Potato-nose, 393 Poultice, 37 charcoal, 84 Pre-auricular lymph glands, 322 Prepatellar bursa, 431 Pressure sores, 70, 82 Primary union of wounds, 2 Protopathic sensibility of nerves, 343 Proud flesh, 79 Psammoma, 200 Pseudo-leucaemia, 337 Pseudo-paralysis of syphilis, 174, 466 Psoas bursa, 430 Pulmonary osteo-arthropathy, 480 Pulsating aorta, 305, 314 exophthalmos, 317 haematoma of bone, 498 Punctured wounds, 222 Purpura, 280 Purulent blister, 55 Pus, 45 varieties of, 46 Pyaemia, 64 abscess in joints in, 508 Pyogenic bacteria, 24, 29 Quadriceps extensor femoris, rupture of, 408 Rabies, 118 Rachitis, 468 adolescentium, 472 Radial nerve, lesions of, 364 Radium, in lupus, 385 in cancer, 208 in naevus, 297 ulceration from, 239 Ranula, 329 Rarefying ostitis, 437 Ray fungus, 126 Raynaud's disease, 97 Reaction of degeneration, 347 Reactionary haemorrhage, 272 Recklinghausen's disease, 355 Recurrent fibroid of Paget, 199, 392, 420 Repair. _See_ Individual Tissues conditions interfering with, 17 after loss of tissue, 4 modifications of, 4 of separated parts, 5 Rest, 17 Rests, foetal, 181 Retention cysts, 212 Retro-pharyngeal lymph glands, 322 Reverdin's method of skin-grafting, 13 Rhabdomyoma, 196 Rheumatic arthritis, 524 fever, 509 gout, 524 torticollis, 413 Rheumatism, acute, 509 chronic, 523 gonorrhoeal, 510 muscular, 412 scarlatinal, 508 Rheumatoid arthritis, 524 Rhinophyma, 393 Rickets, 468 bone lesions in, 469 changes in skeleton in, 470 late, 472 scurvy, 473 Rickety, dwarf, 469 pelvis, 471 rosary, 469 scoliosis, 471 Rider's bone, 418 sprain, 407 Rigidity of joints, 502 Rigor, 36 Risus sardonicus, 114 Rodent cancer, 210, 395 ulcer, 210, 395 Rontgen rays. _See_ X-rays Rose or erysipelas, 107 Roseola, syphilitic, 158 Rupia, syphilitic, 158 Sabre-blade deformity of tibia, 466 Sacculated aneurysm, 302 Saddle-nose deformity, 174 Saline infusions in haemorrhage, 276 Salvarsan in syphilis, 162 Sapraemia, 60 chronic, 62 Saprophytic bacteria, 20 Sarcoma, 197 of bone, 492 inoperable, 201 of joints, 538 of lymph glands, 341 melanotic, 200 periosteal, 493 of skin, 398 of synovial membrane, 538 of tendon sheaths, 424 varieties, 199 Scab, healing under, 6 Scalds, 233 Scapula, winged, 363 Scarlet fever, joint lesions in, 508 Scars. _See_ Cicatrices Sciatic nerve, lesions of, 370 Sciatica, 371 Scirrhous cancer, 210 Sclavo's serum, 123 Scoliosis, rickety, 471 in sciatica, 372 Scorbutic ulcers, 77 Scrotum, elephantiasis of, 389 Sculler's sprain, 406 Scurvy, 473 rickets, 473 Sebaceous adenoma, 393 cysts, 389 horns, 389 Secondary haemorrhage, 273 syphilis, 151, 147 Selenium in malignant tumours, 201, 208 Semilunar ganglion, 375 Semi-membranosus bursa, 432 Sepsis, 18 Septicaemia, 53, 63 Sequestrectomy, 446 Sequestrum of bone, 438 Serratus anterior muscle, paralysis of, 363 Serum, anti-diphtheritic, 109 anti-bacterial, 23 anti-tetanic, 117 disease, 23 in haemophilia, 280 polyvalent, 23 Sclavo's, for anthrax, 123 treatment, 23 Seton, 217 Shell wounds, 231 Shock, 250 delayed, 252 Shoulder, fibrositis of, 413 Sinus, 59 epithelioma, 500 tuberculous, 143 "606," 162 Skewers for prevention of haemorrhage, 270 Skin, 376 abscesses of, 382 actinomycosis of, 126 cancer of, 394, 398 dermoids, 210 grafting of, 11, 14 preparation of, for operation, 244 repair of, 6 sporotrichosis of, 385 structure of, 376 syphilitic lesions of, 157, 166 tuberculosis of, 382, 385 tumours of, 391 Skull, bossing of, 465 craniotabes of, 175, 176, 465 diffuse osteoma of, 485 natiform, 176 Parrot's nodes, 465 syphilitic disease of, 462 unilateral hypertrophy of, 487 Slough, 86 Snake-bites, 131 Snuffles, 173 Soft chancre, 154 corns, 377 sore, 154 Spas, 531 Spasmodic tic, 373 Sphagnum moss, 247 Spinal arthropathies, 532 cord, joint affections in lesions of, 532 repair of, 9 syphilis of, 161 Spine, changes in rickets, 471 Spirilla, 19 Spirochaete pallida, 147 Spironema pallidum, 147 Splenic fever, 119 Spores, 18 Sporotrichosis, 385 Sprain of muscle, 405, 407 Sprinter's sprain, 406 Staphylococci, 19, 24, 438 Staphylococcus albus, 26 aureus, 25 Starting pains in joints, 502, 517 Stasis, 32 Sterilisation, surgical, 243 Sterno-mastoid lymph glands, 322 Stitch abscess, 51 Stitches. _See_ Sutures Streptococci, 19, 24 Streptococcus pyogenes, 26 Streptothrix actinomyces, 126 Strychnin poisoning, 115 Stump neuroma, 344 Styptics, 271 Sub-acromial bursa, 429 Sub-calcanean bursa, 433 Subclavian aneurysm, 317 Sub-crural bursa, 430 Sub-deltoid bursa, 429 Submaxillary lymph glands, 322 Submental lymph glands, 322 Sub-patellar bursa, 431 Subscapularis bursa, 430 Subungual exostosis, 191, 404, 481 Suction bells, 39 Suppuration, 45 chronic, 59 diffuse, 52 in mucous membranes, 52 in wounds, 50 Supra-clavicular lymph glands, 322 Supra-hyoid lymph glands, 322 Supra-scapular nerve, lesions of, 364 Surgery, definition of, 1 Listerian, 242 Surgical anatomy of blood vessels, 258 of bone, 434 of epiphyses, 434 of lymphatics, 321 of nerves, 342 of skin, 376 Surgical bacteriology, 17, 18 shock, 250 Sutures, 221 sterilisation of, 245 Sweat-glands, tumours of, 393 Syncope, 249 local, 97 Synostosis, 503 Synovial membrane, tumours of, 538 Synovitis, 501, 506 gonococcal, 510 septic, 506 serous, 506, 507 suppurative, 507 syphilitic, 521 Syphilis, 147. _See also_ Individual Tissues and Organs Syphilis, acquired, 146, 149 in infants, 179 arsenical preparations in, 162 arteritis in, 282 bones, lesions in, 461, 465 brain, lesions in, 161 of bursae, 428 cirrhosis in, 168 Colles' law, 178 contracture of muscle in, 416 dactylitis in, 176, 460, 466 epiphysitis of infants, 465 extra-genital, 153 in female, 152, 164 gumma, 168, 462 hydrops in, 521 incubation of, 151 in infants, 179 inherited, 146, 172 contagiousness of, 178 diagnosis of, 178 facies of, 174, 175 lesions of bone in, 465 eyes in, 176, 177 joints in, 522 skin in, 173, 174 teeth in, 177 treatment of, 179 insontium, 153 intermediate stage of, 167 interstitial keratitis in, 177 iodides in, 171 iritis in, 166 joint lesions in, 521 of larynx, 177 lupus, 169 lymphadenitis, 153, 337 lymphangitis, 326 in male, 152 malignant, 161 and marriage, 167 mercury in, 164 mixed infection, 156 of mouth, 166 of mucous membranes, 160, 173, 174 mucous patches, 160, 174 of muscle, 416 of nails, 159 of nose, 188 onychia in, 403 osteo-arthritis, 522 of palate, 178, 462 phagedaena, 153 phimosis in, 152 in pregnant women, 164 primary, 151 diagnosis of, 155 lesion of, 146, 151 treatment of, 163 prophylaxis of, 149 pseudo-paralysis of, 174, 466 reminders, 167 second attacks of, 172 secondary, 151, 157 diagnosis of, 161 lesions of eye in, 160 hair in, 159 nails in, 159, 402 skin in, 162 treatment of, 162 serum diagnosis, 149 skin affections in, 157, 166 skull, lesions of, 462 spirochaete pallida in, 147 stages of, 150 stomatitis, 174 synovitis, 521 teeth in, 177 of tendon sheaths, 424 tertiary, 151, 167 diagnosis of, 167 general manifestations of, 167 lesions of mucous membrane in, 171 skin in, 168, 169 treatment of, 171 ulcer, 169 ulcers in, 76, 83, 169 virus of, 147 Wassermann reaction in, 156 Syphiloma, 168 Syringomyelia, joint lesions in, 534 Tabes dorsales, joint lesions in, 532 Taenia echinococcus, 213 Tailor's ankle, 432 Tailor's bottom, 426, 430 Tarsal ganglion, 215 Tarsus, tuberculosis of, 459 Teeth in inherited syphilis, 177 Telangiectasis, congenital, 294 Temperature in surgical diseases, 35, 40 Temporal artery, compression of, 269 Tenderness, 34 Tendinitis, 416 Tendon sheaths, affections of, 421 syphilitic affections of, 424 tuberculosis of, 423, 424 tumours of, 424 whitlow of, 57 Tendons. _See also_ Individual Tendons avulsion of, 411 calcification in, 416 diseases of, 411 dislocation of, 408 ganglion of, 217 grafting of, 16 inflammation of, 416 ossification of, 416 repair of, 8 rupture of, 406, 408 tumours of, 420 wounds of, 409 Tennis-player's elbow, 406 Teno-synovitis, varieties of, 421 Teratoma, 212 Tertiary syphilis, 151, 167 Tetanus, varieties of, 112 Tetany, 116 Thiersch's method of skin-grafting, 12 Thirst, treatment of, 40 Thoracic aneurysm, 312 duct, subcutaneous rupture of, 325 surgical anatomy of, 324 wounds of, 325 Thorax, rickety changes in, 469 Thrombo-phlebitis, 285 Thrombosis, 32, 281, 285, 292 Thyreoid gland, grafting of, 16 secondary tumours derived from, 500 Tibia, sabre-blade deformity of, 466 Tibial nerve, lesions of, 371 Tic, spasmodic, 373 Tinel's sign, 349 Toe-nail, ingrowing, 403 Toes, gouty affections of, 522 syphilitic dactylitis of, 176, 460, 466 tuberculous dactylitis, 460 Tomato tumour, 393 Tophi, gouty, 523 Torsion of blood vessels, 271 Torticollis, rheumatic, 413 Tourniquet, varieties of, 270, 272 Toxaemia, 21 Toxins, 21, 33 Tracheal tug in aneurysm, 312 Tracheotomy, 111 Trade arthritis, 525 bursitis, 426 epithelionia, 395 Transfusion of blood, 276 Transplantation of tissues, 10 Trench feet, 96 Trendelenburg's operation for varicose veins, 293 Treponema pallidum, 147 Trifacial neuralgia, 373 Trigeminal neuralgia, 373 Trismus, 117 Trochanteric bursa, 430 Trophic changes after nerve injuries, 348 ulcer, 73 Tropical elephantiasis, 386 Trunk neuroma, 354 Tubercle, anatomical, 134 bacillus, 133 Tuberculin, 138 Tuberculosis, 133. _See also_ Individual Tissues and Organs bacillus of, 133 of bone, 454, 456, 458 bovine, 136 of bursae, 428 calcification in, 136 caseation in, 136 general, 135 human, 136 of joints, 512 of lymph glands, 331 of lymph vessels, 326 modes of infection, 136 of muscle, 416 of nails, 403 open-air treatment of, 137 passive hyperaemia in, 138 principles of treatment of, 137 of skin, 382, 385 of tendon sheaths, 423, 424 trauma in causation of, 135 vaccine treatment in, 138 Tuberculous abscess, 139 arthritic fever, 516 dactylitis, 460 granulation tissue, 136 lupus, 382 lymphadenitis, 331 lymphangitis, 326 onychia, 403 sinus, 143 Tuberculous ulcers, 73, 83 Tubulo-dermoids, 211 Tumor albus, 518 Tumours, 181. _See also_ Individual Tumours and Tissues Typhoid, joint lesions in, 508 osteomyelitis in, 452 Ulceration, of cartilage, 502, 514 definition of, 68 Ulcers, 68 ambulatory treatment of, 85 Bazin's disease, 74, 169 bone changes in, 79 callous, 79, 84 cancerous, 205 classification of, 70 clinical examination of, 68 conditions of, 77 crateriform, 395 duodenal, in burns, 236 epithelioma in, 500 healing, 77 gouty, 77 due to imperfect circulation, 71, 82 due to imperfect nerve-supply, 73, 82 inflamed, 79, 85 irritable, 79, 85 leg, 72, 169 malignant, 77 perforating, 73, 82 phagedaenic, 80, 85 pressure, 70 from radium, 70 rodent, 395 from Rontgen rays, 70 scorbutic, 77 skin-grafting, 14 spreading, 79 syphilitic, 76, 83, 158, 160, 169 traumatic, 70, 81 treatment of, 80 trophic, 73 tuberculous, 73, 83 varicose, 72 weak, 77, 83 Ulnar nerve, lesions of, 368 Uterine fibroids, 195 Vaccine treatment, 23, 40 Varicose aneurysm, 311 eczema, 292 ulcer, 72 veins, 287 Varix, 287 Veins, anatomy of, 258 entrance of air into, 265 injuries of, 264 repair of, 269 rupture of, 264 thrombosis of, 281 varicose, 287 wounds of, 264 Veldt sores, 382 Venereal disease. _See_ Syphilis soft sore, 154 Venesection, 42 Venous cysts, 289 Verruca, 392 Vibrion septique, 101 Villous papilloma, 201 Volkmann's ischaemic contracture, 415 Vulva, diphtheria of, 111 Wardrop's operation for aneurysm, 308 Wart, 201, 392 venereal, 393 X-ray, 239 Wassermann's reaction, 156, 162 Weaver's bottom, 426, 430 Weir-Mitchell treatment in hysterical joint affections, 538 Wens, 389 Wet-cupping, 42 White swelling of joints, 515, 518 Whitlow, 55 gangrene from, 99 at nail fold, 56 purulent blister, 55 subcutaneous, 56 subperiosteal, 58 of tendon sheaths, 57 thecal, 57 Whitlow, of toes, 55 varieties of, 55 Winged scapula, 363 Wool-sorter's disease, 121 Wounds, 220. _See also_ Individual Tissues and Regions acute suppuration in, 50 bullet, 229 contused, 218, 223 drainage of, 222 by electricity, 239 by explosives, 231 by firearms, 225, 227, 230 incised, 221 infection of, 107 lacerated, 223 open method of treating, 247, 248 pistol-shot, 226 punctured, 222 shell, 231 treatment, 241 in warfare, 225, 230 Wrist, drop-, 365 Wry-neck, rheumatic, 413 Xanthoma, 188 X-rays, burns by, 239 cancer from, 395 dermatitis from, 239 ulcers from, 239 warts from, 239 in diagnosis of aneurysm, 304 arthritis deformans, 530 bone diseases, 445 tumours, 485, 491, 496 tuberculosis, 455 foreign bodies, 233 joint tuberculosis, 516 in treatment of cancer, 208 lupus, 385 sarcoma, 201 tuberculosis, 138 End of the Project Gutenberg EBook of Manual of Surgery, by Alexis Thomson and Alexander Miles *** END OF THIS PROJECT GUTENBERG EBOOK MANUAL OF SURGERY *** ***** This file should be named 17921-8.txt or 17921-8.zip ***** This and all associated files of various formats will be found in: http://www.gutenberg.org/1/7/9/2/17921/ Produced by Jonathan Ingram, Laura Wisewell and the Online Distributed Proofreading Team at http://www.pgdp.net Updated editions will replace the previous one--the old editions will be renamed. Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away--you may do practically ANYTHING with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect the Project Gutenberg-tm mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg-tm License (available with this file or online at http://gutenberg.org/license). Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.org 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.org), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS', WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need, is critical to reaching Project Gutenberg-tm's goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org. Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://pglaf.org/fundraising. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://pglaf.org While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including checks, online payments and credit card donations. To donate, please visit: http://pglaf.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.org This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. *** END: FULL LICENSE *** The Project Gutenberg EBook of War and Peace, by Leo Tolstoy (#9 in our series by Leo Tolstoy) Copyright laws are changing all over the world. Be sure to check the copyright laws for your country before downloading or redistributing this or any other Project Gutenberg eBook. This header should be the first thing seen when viewing this Project Gutenberg file. Please do not remove it. Do not change or edit the header without written permission. Please read the "legal small print," and other information about the eBook and Project Gutenberg at the bottom of this file. Included is important information about your specific rights and restrictions in how the file may be used. You can also find out about how to make a donation to Project Gutenberg, and how to get involved. **Welcome To The World of Free Plain Vanilla Electronic Texts** **eBooks Readable By Both Humans and By Computers, Since 1971** *****These eBooks Were Prepared By Thousands of Volunteers!***** Title: War and Peace Author: Leo Tolstoy Translator: Louise and Aylmer Maude Release Date: April, 2001 [EBook #2600] [This file was first posted on October 7, 2003] [Most recently updated: May 21, 2006] Edition: 11 Language: English Character set encoding: US-ASCII *** START OF THE PROJECT GUTENBERG EBOOK, WAR AND PEACE *** War and Peace by Leo Tolstoy/Tolstoi BOOK ONE: 1805 CHAPTER I "Well, Prince, so Genoa and Lucca are now just family estates of the Buonapartes. But I warn you, if you don't tell me that this means war, if you still try to defend the infamies and horrors perpetrated by that Antichrist--I really believe he is Antichrist--I will have nothing more to do with you and you are no longer my friend, no longer my 'faithful slave,' as you call yourself! But how do you do? I see I have frightened you--sit down and tell me all the news." It was in July, 1805, and the speaker was the well-known Anna Pavlovna Scherer, maid of honor and favorite of the Empress Marya Fedorovna. With these words she greeted Prince Vasili Kuragin, a man of high rank and importance, who was the first to arrive at her reception. Anna Pavlovna had had a cough for some days. She was, as she said, suffering from la grippe; grippe being then a new word in St. Petersburg, used only by the elite. All her invitations without exception, written in French, and delivered by a scarlet-liveried footman that morning, ran as follows: "If you have nothing better to do, Count [or Prince], and if the prospect of spending an evening with a poor invalid is not too terrible, I shall be very charmed to see you tonight between 7 and 10- Annette Scherer." "Heavens! what a virulent attack!" replied the prince, not in the least disconcerted by this reception. He had just entered, wearing an embroidered court uniform, knee breeches, and shoes, and had stars on his breast and a serene expression on his flat face. He spoke in that refined French in which our grandfathers not only spoke but thought, and with the gentle, patronizing intonation natural to a man of importance who had grown old in society and at court. He went up to Anna Pavlovna, kissed her hand, presenting to her his bald, scented, and shining head, and complacently seated himself on the sofa. "First of all, dear friend, tell me how you are. Set your friend's mind at rest," said he without altering his tone, beneath the politeness and affected sympathy of which indifference and even irony could be discerned. "Can one be well while suffering morally? Can one be calm in times like these if one has any feeling?" said Anna Pavlovna. "You are staying the whole evening, I hope?" "And the fete at the English ambassador's? Today is Wednesday. I must put in an appearance there," said the prince. "My daughter is coming for me to take me there." "I thought today's fete had been canceled. I confess all these festivities and fireworks are becoming wearisome." "If they had known that you wished it, the entertainment would have been put off," said the prince, who, like a wound-up clock, by force of habit said things he did not even wish to be believed. "Don't tease! Well, and what has been decided about Novosiltsev's dispatch? You know everything." "What can one say about it?" replied the prince in a cold, listless tone. "What has been decided? They have decided that Buonaparte has burnt his boats, and I believe that we are ready to burn ours." Prince Vasili always spoke languidly, like an actor repeating a stale part. Anna Pavlovna Scherer on the contrary, despite her forty years, overflowed with animation and impulsiveness. To be an enthusiast had become her social vocation and, sometimes even when she did not feel like it, she became enthusiastic in order not to disappoint the expectations of those who knew her. The subdued smile which, though it did not suit her faded features, always played round her lips expressed, as in a spoiled child, a continual consciousness of her charming defect, which she neither wished, nor could, nor considered it necessary, to correct. In the midst of a conversation on political matters Anna Pavlovna burst out: "Oh, don't speak to me of Austria. Perhaps I don't understand things, but Austria never has wished, and does not wish, for war. She is betraying us! Russia alone must save Europe. Our gracious sovereign recognizes his high vocation and will be true to it. That is the one thing I have faith in! Our good and wonderful sovereign has to perform the noblest role on earth, and he is so virtuous and noble that God will not forsake him. He will fulfill his vocation and crush the hydra of revolution, which has become more terrible than ever in the person of this murderer and villain! We alone must avenge the blood of the just one.... Whom, I ask you, can we rely on?... England with her commercial spirit will not and cannot understand the Emperor Alexander's loftiness of soul. She has refused to evacuate Malta. She wanted to find, and still seeks, some secret motive in our actions. What answer did Novosiltsev get? None. The English have not understood and cannot understand the self-abnegation of our Emperor who wants nothing for himself, but only desires the good of mankind. And what have they promised? Nothing! And what little they have promised they will not perform! Prussia has always declared that Buonaparte is invincible, and that all Europe is powerless before him.... And I don't believe a word that Hardenburg says, or Haugwitz either. This famous Prussian neutrality is just a trap. I have faith only in God and the lofty destiny of our adored monarch. He will save Europe!" She suddenly paused, smiling at her own impetuosity. "I think," said the prince with a smile, "that if you had been sent instead of our dear Wintzingerode you would have captured the King of Prussia's consent by assault. You are so eloquent. Will you give me a cup of tea?" "In a moment. A propos," she added, becoming calm again, "I am expecting two very interesting men tonight, le Vicomte de Mortemart, who is connected with the Montmorencys through the Rohans, one of the best French families. He is one of the genuine emigres, the good ones. And also the Abbe Morio. Do you know that profound thinker? He has been received by the Emperor. Had you heard?" "I shall be delighted to meet them," said the prince. "But tell me," he added with studied carelessness as if it had only just occurred to him, though the question he was about to ask was the chief motive of his visit, "is it true that the Dowager Empress wants Baron Funke to be appointed first secretary at Vienna? The baron by all accounts is a poor creature." Prince Vasili wished to obtain this post for his son, but others were trying through the Dowager Empress Marya Fedorovna to secure it for the baron. Anna Pavlovna almost closed her eyes to indicate that neither she nor anyone else had a right to criticize what the Empress desired or was pleased with. "Baron Funke has been recommended to the Dowager Empress by her sister," was all she said, in a dry and mournful tone. As she named the Empress, Anna Pavlovna's face suddenly assumed an expression of profound and sincere devotion and respect mingled with sadness, and this occurred every time she mentioned her illustrious patroness. She added that Her Majesty had deigned to show Baron Funke beaucoup d'estime, and again her face clouded over with sadness. The prince was silent and looked indifferent. But, with the womanly and courtierlike quickness and tact habitual to her, Anna Pavlovna wished both to rebuke him (for daring to speak he had done of a man recommended to the Empress) and at the same time to console him, so she said: "Now about your family. Do you know that since your daughter came out everyone has been enraptured by her? They say she is amazingly beautiful." The prince bowed to signify his respect and gratitude. "I often think," she continued after a short pause, drawing nearer to the prince and smiling amiably at him as if to show that political and social topics were ended and the time had come for intimate conversation--"I often think how unfairly sometimes the joys of life are distributed. Why has fate given you two such splendid children? I don't speak of Anatole, your youngest. I don't like him," she added in a tone admitting of no rejoinder and raising her eyebrows. "Two such charming children. And really you appreciate them less than anyone, and so you don't deserve to have them." And she smiled her ecstatic smile. "I can't help it," said the prince. "Lavater would have said I lack the bump of paternity." "Don't joke; I mean to have a serious talk with you. Do you know I am dissatisfied with your younger son? Between ourselves" (and her face assumed its melancholy expression), "he was mentioned at Her Majesty's and you were pitied...." The prince answered nothing, but she looked at him significantly, awaiting a reply. He frowned. "What would you have me do?" he said at last. "You know I did all a father could for their education, and they have both turned out fools. Hippolyte is at least a quiet fool, but Anatole is an active one. That is the only difference between them." He said this smiling in a way more natural and animated than usual, so that the wrinkles round his mouth very clearly revealed something unexpectedly coarse and unpleasant. "And why are children born to such men as you? If you were not a father there would be nothing I could reproach you with," said Anna Pavlovna, looking up pensively. "I am your faithful slave and to you alone I can confess that my children are the bane of my life. It is the cross I have to bear. That is how I explain it to myself. It can't be helped!" He said no more, but expressed his resignation to cruel fate by a gesture. Anna Pavlovna meditated. "Have you never thought of marrying your prodigal son Anatole?" she asked. "They say old maids have a mania for matchmaking, and though I don't feel that weakness in myself as yet, I know a little person who is very unhappy with her father. She is a relation of yours, Princess Mary Bolkonskaya." Prince Vasili did not reply, though, with the quickness of memory and perception befitting a man of the world, he indicated by a movement of the head that he was considering this information. "Do you know," he said at last, evidently unable to check the sad current of his thoughts, "that Anatole is costing me forty thousand rubles a year? And," he went on after a pause, "what will it be in five years, if he goes on like this?" Presently he added: "That's what we fathers have to put up with.... Is this princess of yours rich?" "Her father is very rich and stingy. He lives in the country. He is the well-known Prince Bolkonski who had to retire from the army under the late Emperor, and was nicknamed 'the King of Prussia.' He is very clever but eccentric, and a bore. The poor girl is very unhappy. She has a brother; I think you know him, he married Lise Meinen lately. He is an aide-de-camp of Kutuzov's and will be here tonight." "Listen, dear Annette," said the prince, suddenly taking Anna Pavlovna's hand and for some reason drawing it downwards. "Arrange that affair for me and I shall always be your most devoted slave- slafe with an f, as a village elder of mine writes in his reports. She is rich and of good family and that's all I want." And with the familiarity and easy grace peculiar to him, he raised the maid of honor's hand to his lips, kissed it, and swung it to and fro as he lay back in his armchair, looking in another direction. "Attendez," said Anna Pavlovna, reflecting, "I'll speak to Lise, young Bolkonski's wife, this very evening, and perhaps the thing can be arranged. It shall be on your family's behalf that I'll start my apprenticeship as old maid." CHAPTER II Anna Pavlovna's drawing room was gradually filling. The highest Petersburg society was assembled there: people differing widely in age and character but alike in the social circle to which they belonged. Prince Vasili's daughter, the beautiful Helene, came to take her father to the ambassador's entertainment; she wore a ball dress and her badge as maid of honor. The youthful little Princess Bolkonskaya, known as la femme la plus seduisante de Petersbourg,* was also there. She had been married during the previous winter, and being pregnant did not go to any large gatherings, but only to small receptions. Prince Vasili's son, Hippolyte, had come with Mortemart, whom he introduced. The Abbe Morio and many others had also come. *The most fascinating woman in Petersburg. To each new arrival Anna Pavlovna said, "You have not yet seen my aunt," or "You do not know my aunt?" and very gravely conducted him or her to a little old lady, wearing large bows of ribbon in her cap, who had come sailing in from another room as soon as the guests began to arrive; and slowly turning her eyes from the visitor to her aunt, Anna Pavlovna mentioned each one's name and then left them. Each visitor performed the ceremony of greeting this old aunt whom not one of them knew, not one of them wanted to know, and not one of them cared about; Anna Pavlovna observed these greetings with mournful and solemn interest and silent approval. The aunt spoke to each of them in the same words, about their health and her own, and the health of Her Majesty, "who, thank God, was better today." And each visitor, though politeness prevented his showing impatience, left the old woman with a sense of relief at having performed a vexatious duty and did not return to her the whole evening. The young Princess Bolkonskaya had brought some work in a gold-embroidered velvet bag. Her pretty little upper lip, on which a delicate dark down was just perceptible, was too short for her teeth, but it lifted all the more sweetly, and was especially charming when she occasionally drew it down to meet the lower lip. As is always the case with a thoroughly attractive woman, her defect--the shortness of her upper lip and her half-open mouth--seemed to be her own special and peculiar form of beauty. Everyone brightened at the sight of this pretty young woman, so soon to become a mother, so full of life and health, and carrying her burden so lightly. Old men and dull dispirited young ones who looked at her, after being in her company and talking to her a little while, felt as if they too were becoming, like her, full of life and health. All who talked to her, and at each word saw her bright smile and the constant gleam of her white teeth, thought that they were in a specially amiable mood that day. The little princess went round the table with quick, short, swaying steps, her workbag on her arm, and gaily spreading out her dress sat down on a sofa near the silver samovar, as if all she was doing was a pleasure to herself and to all around her. "I have brought my work," said she in French, displaying her bag and addressing all present. "Mind, Annette, I hope you have not played a wicked trick on me," she added, turning to her hostess. "You wrote that it was to be quite a small reception, and just see how badly I am dressed." And she spread out her arms to show her short-waisted, lace-trimmed, dainty gray dress, girdled with a broad ribbon just below the breast. "Soyez tranquille, Lise, you will always be prettier than anyone else," replied Anna Pavlovna. "You know," said the princess in the same tone of voice and still in French, turning to a general, "my husband is deserting me? He is going to get himself killed. Tell me what this wretched war is for?" she added, addressing Prince Vasili, and without waiting for an answer she turned to speak to his daughter, the beautiful Helene. "What a delightful woman this little princess is!" said Prince Vasili to Anna Pavlovna. One of the next arrivals was a stout, heavily built young man with close-cropped hair, spectacles, the light-colored breeches fashionable at that time, a very high ruffle, and a brown dress coat. This stout young man was an illegitimate son of Count Bezukhov, a well-known grandee of Catherine's time who now lay dying in Moscow. The young man had not yet entered either the military or civil service, as he had only just returned from abroad where he had been educated, and this was his first appearance in society. Anna Pavlovna greeted him with the nod she accorded to the lowest hierarchy in her drawing room. But in spite of this lowest-grade greeting, a look of anxiety and fear, as at the sight of something too large and unsuited to the place, came over her face when she saw Pierre enter. Though he was certainly rather bigger than the other men in the room, her anxiety could only have reference to the clever though shy, but observant and natural, expression which distinguished him from everyone else in that drawing room. "It is very good of you, Monsieur Pierre, to come and visit a poor invalid," said Anna Pavlovna, exchanging an alarmed glance with her aunt as she conducted him to her. Pierre murmured something unintelligible, and continued to look round as if in search of something. On his way to the aunt he bowed to the little princess with a pleased smile, as to an intimate acquaintance. Anna Pavlovna's alarm was justified, for Pierre turned away from the aunt without waiting to hear her speech about Her Majesty's health. Anna Pavlovna in dismay detained him with the words: "Do you know the Abbe Morio? He is a most interesting man." "Yes, I have heard of his scheme for perpetual peace, and it is very interesting but hardly feasible." "You think so?" rejoined Anna Pavlovna in order to say something and get away to attend to her duties as hostess. But Pierre now committed a reverse act of impoliteness. First he had left a lady before she had finished speaking to him, and now he continued to speak to another who wished to get away. With his head bent, and his big feet spread apart, he began explaining his reasons for thinking the abbe's plan chimerical. "We will talk of it later," said Anna Pavlovna with a smile. And having got rid of this young man who did not know how to behave, she resumed her duties as hostess and continued to listen and watch, ready to help at any point where the conversation might happen to flag. As the foreman of a spinning mill, when he has set the hands to work, goes round and notices here a spindle that has stopped or there one that creaks or makes more noise than it should, and hastens to check the machine or set it in proper motion, so Anna Pavlovna moved about her drawing room, approaching now a silent, now a too-noisy group, and by a word or slight rearrangement kept the conversational machine in steady, proper, and regular motion. But amid these cares her anxiety about Pierre was evident. She kept an anxious watch on him when he approached the group round Mortemart to listen to what was being said there, and again when he passed to another group whose center was the abbe. Pierre had been educated abroad, and this reception at Anna Pavlovna's was the first he had attended in Russia. He knew that all the intellectual lights of Petersburg were gathered there and, like a child in a toyshop, did not know which way to look, afraid of missing any clever conversation that was to be heard. Seeing the self-confident and refined expression on the faces of those present he was always expecting to hear something very profound. At last he came up to Morio. Here the conversation seemed interesting and he stood waiting for an opportunity to express his own views, as young people are fond of doing. CHAPTER III Anna Pavlovna's reception was in full swing. The spindles hummed steadily and ceaselessly on all sides. With the exception of the aunt, beside whom sat only one elderly lady, who with her thin careworn face was rather out of place in this brilliant society, the whole company had settled into three groups. One, chiefly masculine, had formed round the abbe. Another, of young people, was grouped round the beautiful Princess Helene, Prince Vasili's daughter, and the little Princess Bolkonskaya, very pretty and rosy, though rather too plump for her age. The third group was gathered round Mortemart and Anna Pavlovna. The vicomte was a nice-looking young man with soft features and polished manners, who evidently considered himself a celebrity but out of politeness modestly placed himself at the disposal of the circle in which he found himself. Anna Pavlovna was obviously serving him up as a treat to her guests. As a clever maitre d'hotel serves up as a specially choice delicacy a piece of meat that no one who had seen it in the kitchen would have cared to eat, so Anna Pavlovna served up to her guests, first the vicomte and then the abbe, as peculiarly choice morsels. The group about Mortemart immediately began discussing the murder of the Duc d'Enghien. The vicomte said that the Duc d'Enghien had perished by his own magnanimity, and that there were particular reasons for Buonaparte's hatred of him. "Ah, yes! Do tell us all about it, Vicomte," said Anna Pavlovna, with a pleasant feeling that there was something a la Louis XV in the sound of that sentence: "Contez nous cela, Vicomte." The vicomte bowed and smiled courteously in token of his willingness to comply. Anna Pavlovna arranged a group round him, inviting everyone to listen to his tale. "The vicomte knew the duc personally," whispered Anna Pavlovna to of the guests. "The vicomte is a wonderful raconteur," said she to another. "How evidently he belongs to the best society," said she to a third; and the vicomte was served up to the company in the choicest and most advantageous style, like a well-garnished joint of roast beef on a hot dish. The vicomte wished to begin his story and gave a subtle smile. "Come over here, Helene, dear," said Anna Pavlovna to the beautiful young princess who was sitting some way off, the center of another group. The princess smiled. She rose with the same unchanging smile with which she had first entered the room--the smile of a perfectly beautiful woman. With a slight rustle of her white dress trimmed with moss and ivy, with a gleam of white shoulders, glossy hair, and sparkling diamonds, she passed between the men who made way for her, not looking at any of them but smiling on all, as if graciously allowing each the privilege of admiring her beautiful figure and shapely shoulders, back, and bosom--which in the fashion of those days were very much exposed--and she seemed to bring the glamour of a ballroom with her as she moved toward Anna Pavlovna. Helene was so lovely that not only did she not show any trace of coquetry, but on the contrary she even appeared shy of her unquestionable and all too victorious beauty. She seemed to wish, but to be unable, to diminish its effect. "How lovely!" said everyone who saw her; and the vicomte lifted his shoulders and dropped his eyes as if startled by something extraordinary when she took her seat opposite and beamed upon him also with her unchanging smile. "Madame, I doubt my ability before such an audience," said he, smilingly inclining his head. The princess rested her bare round arm on a little table and considered a reply unnecessary. She smilingly waited. All the time the story was being told she sat upright, glancing now at her beautiful round arm, altered in shape by its pressure on the table, now at her still more beautiful bosom, on which she readjusted a diamond necklace. From time to time she smoothed the folds of her dress, and whenever the story produced an effect she glanced at Anna Pavlovna, at once adopted just the expression she saw on the maid of honor's face, and again relapsed into her radiant smile. The little princess had also left the tea table and followed Helene. "Wait a moment, I'll get my work.... Now then, what are you thinking of?" she went on, turning to Prince Hippolyte. "Fetch me my workbag." There was a general movement as the princess, smiling and talking merrily to everyone at once, sat down and gaily arranged herself in her seat. "Now I am all right," she said, and asking the vicomte to begin, she took up her work. Prince Hippolyte, having brought the workbag, joined the circle and moving a chair close to hers seated himself beside her. Le charmant Hippolyte was surprising by his extraordinary resemblance to his beautiful sister, but yet more by the fact that in spite of this resemblance he was exceedingly ugly. His features were like his sister's, but while in her case everything was lit up by a joyous, self-satisfied, youthful, and constant smile of animation, and by the wonderful classic beauty of her figure, his face on the contrary was dulled by imbecility and a constant expression of sullen self-confidence, while his body was thin and weak. His eyes, nose, and mouth all seemed puckered into a vacant, wearied grimace, and his arms and legs always fell into unnatural positions. "It's not going to be a ghost story?" said he, sitting down beside the princess and hastily adjusting his lorgnette, as if without this instrument he could not begin to speak. "Why no, my dear fellow," said the astonished narrator, shrugging his shoulders. "Because I hate ghost stories," said Prince Hippolyte in a tone which showed that he only understood the meaning of his words after he had uttered them. He spoke with such self-confidence that his hearers could not be sure whether what he said was very witty or very stupid. He was dressed in a dark-green dress coat, knee breeches of the color of cuisse de nymphe effrayee, as he called it, shoes, and silk stockings. The vicomte told his tale very neatly. It was an anecdote, then current, to the effect that the Duc d'Enghien had gone secretly to Paris to visit Mademoiselle George; that at her house he came upon Bonaparte, who also enjoyed the famous actress' favors, and that in his presence Napoleon happened to fall into one of the fainting fits to which he was subject, and was thus at the duc's mercy. The latter spared him, and this magnanimity Bonaparte subsequently repaid by death. The story was very pretty and interesting, especially at the point where the rivals suddenly recognized one another; and the ladies looked agitated. "Charming!" said Anna Pavlovna with an inquiring glance at the little princess. "Charming!" whispered the little princess, sticking the needle into her work as if to testify that the interest and fascination of the story prevented her from going on with it. The vicomte appreciated this silent praise and smiling gratefully prepared to continue, but just then Anna Pavlovna, who had kept a watchful eye on the young man who so alarmed her, noticed that he was talking too loudly and vehemently with the abbe, so she hurried to the rescue. Pierre had managed to start a conversation with the abbe about the balance of power, and the latter, evidently interested by the young man's simple-minded eagerness, was explaining his pet theory. Both were talking and listening too eagerly and too naturally, which was why Anna Pavlovna disapproved. "The means are... the balance of power in Europe and the rights of the people," the abbe was saying. "It is only necessary for one powerful nation like Russia--barbaric as she is said to be--to place herself disinterestedly at the head of an alliance having for its object the maintenance of the balance of power of Europe, and it would save the world!" "But how are you to get that balance?" Pierre was beginning. At that moment Anna Pavlovna came up and, looking severely at Pierre, asked the Italian how he stood Russian climate. The Italian's face instantly changed and assumed an offensively affected, sugary expression, evidently habitual to him when conversing with women. "I am so enchanted by the brilliancy of the wit and culture of the society, more especially of the feminine society, in which I have had the honor of being received, that I have not yet had time to think of the climate," said he. Not letting the abbe and Pierre escape, Anna Pavlovna, the more conveniently to keep them under observation, brought them into the larger circle. CHAPTER IV Just then another visitor entered the drawing room: Prince Andrew Bolkonski, the little princess' husband. He was a very handsome young man, of medium height, with firm, clearcut features. Everything about him, from his weary, bored expression to his quiet, measured step, offered a most striking contrast to his quiet, little wife. It was evident that he not only knew everyone in the drawing room, but had found them to be so tiresome that it wearied him to look at or listen to them. And among all these faces that he found so tedious, none seemed to bore him so much as that of his pretty wife. He turned away from her with a grimace that distorted his handsome face, kissed Anna Pavlovna's hand, and screwing up his eyes scanned the whole company. "You are off to the war, Prince?" said Anna Pavlovna. "General Kutuzov," said Bolkonski, speaking French and stressing the last syllable of the general's name like a Frenchman, "has been pleased to take me as an aide-de-camp...." "And Lise, your wife?" "She will go to the country." "Are you not ashamed to deprive us of your charming wife?" "Andre," said his wife, addressing her husband in the same coquettish manner in which she spoke to other men, "the vicomte has been telling us such a tale about Mademoiselle George and Buonaparte!" Prince Andrew screwed up his eyes and turned away. Pierre, who from the moment Prince Andrew entered the room had watched him with glad, affectionate eyes, now came up and took his arm. Before he looked round Prince Andrew frowned again, expressing his annoyance with whoever was touching his arm, but when he saw Pierre's beaming face he gave him an unexpectedly kind and pleasant smile. "There now!... So you, too, are in the great world?" said he to Pierre. "I knew you would be here," replied Pierre. "I will come to supper with you. May I?" he added in a low voice so as not to disturb the vicomte who was continuing his story. "No, impossible!" said Prince Andrew, laughing and pressing Pierre's hand to show that there was no need to ask the question. He wished to say something more, but at that moment Prince Vasili and his daughter got up to go and the two young men rose to let them pass. "You must excuse me, dear Vicomte," said Prince Vasili to the Frenchman, holding him down by the sleeve in a friendly way to prevent his rising. "This unfortunate fete at the ambassador's deprives me of a pleasure, and obliges me to interrupt you. I am very sorry to leave your enchanting party," said he, turning to Anna Pavlovna. His daughter, Princess Helene, passed between the chairs, lightly holding up the folds of her dress, and the smile shone still more radiantly on her beautiful face. Pierre gazed at her with rapturous, almost frightened, eyes as she passed him. "Very lovely," said Prince Andrew. "Very," said Pierre. In passing Prince Vasili seized Pierre's hand and said to Anna Pavlovna: "Educate this bear for me! He has been staying with me a whole month and this is the first time I have seen him in society. Nothing is so necessary for a young man as the society of clever women." Anna Pavlovna smiled and promised to take Pierre in hand. She knew his father to be a connection of Prince Vasili's. The elderly lady who had been sitting with the old aunt rose hurriedly and overtook Prince Vasili in the anteroom. All the affectation of interest she had assumed had left her kindly and tearworn face and it now expressed only anxiety and fear. "How about my son Boris, Prince?" said she, hurrying after him into the anteroom. "I can't remain any longer in Petersburg. Tell me what news I may take back to my poor boy." Although Prince Vasili listened reluctantly and not very politely to the elderly lady, even betraying some impatience, she gave him an ingratiating and appealing smile, and took his hand that he might not go away. "What would it cost you to say a word to the Emperor, and then he would be transferred to the Guards at once?" said she. "Believe me, Princess, I am ready to do all I can," answered Prince Vasili, "but it is difficult for me to ask the Emperor. I should advise you to appeal to Rumyantsev through Prince Golitsyn. That would be the best way." The elderly lady was a Princess Drubetskaya, belonging to one of the best families in Russia, but she was poor, and having long been out of society had lost her former influential connections. She had now come to Petersburg to procure an appointment in the Guards for her only son. It was, in fact, solely to meet Prince Vasili that she had obtained an invitation to Anna Pavlovna's reception and had sat listening to the vicomte's story. Prince Vasili's words frightened her, an embittered look clouded her once handsome face, but only for a moment; then she smiled again and clutched Prince Vasili's arm more tightly. "Listen to me, Prince," said she. "I have never yet asked you for anything and I never will again, nor have I ever reminded you of my father's friendship for you; but now I entreat you for God's sake to do this for my son--and I shall always regard you as a benefactor," she added hurriedly. "No, don't be angry, but promise! I have asked Golitsyn and he has refused. Be the kindhearted man you always were," she said, trying to smile though tears were in her eyes. "Papa, we shall be late," said Princess Helene, turning her beautiful head and looking over her classically molded shoulder as she stood waiting by the door. Influence in society, however, is a capital which has to be economized if it is to last. Prince Vasili knew this, and having once realized that if he asked on behalf of all who begged of him, he would soon be unable to ask for himself, he became chary of using his influence. But in Princess Drubetskaya's case he felt, after her second appeal, something like qualms of conscience. She had reminded him of what was quite true; he had been indebted to her father for the first steps in his career. Moreover, he could see by her manners that she was one of those women--mostly mothers--who, having once made up their minds, will not rest until they have gained their end, and are prepared if necessary to go on insisting day after day and hour after hour, and even to make scenes. This last consideration moved him. "My dear Anna Mikhaylovna," said he with his usual familiarity and weariness of tone, "it is almost impossible for me to do what you ask; but to prove my devotion to you and how I respect your father's memory, I will do the impossible--your son shall be transferred to the Guards. Here is my hand on it. Are you satisfied?" "My dear benefactor! This is what I expected from you--I knew your kindness!" He turned to go. "Wait--just a word! When he has been transferred to the Guards..." she faltered. "You are on good terms with Michael Ilarionovich Kutuzov... recommend Boris to him as adjutant! Then I shall be at rest, and then..." Prince Vasili smiled. "No, I won't promise that. You don't know how Kutuzov is pestered since his appointment as Commander in Chief. He told me himself that all the Moscow ladies have conspired to give him all their sons as adjutants." "No, but do promise! I won't let you go! My dear benefactor..." "Papa," said his beautiful daughter in the same tone as before, "we shall be late." "Well, au revoir! Good-by! You hear her?" "Then tomorrow you will speak to the Emperor?" "Certainly; but about Kutuzov, I don't promise." "Do promise, do promise, Vasili!" cried Anna Mikhaylovna as he went, with the smile of a coquettish girl, which at one time probably came naturally to her, but was now very ill-suited to her careworn face. Apparently she had forgotten her age and by force of habit employed all the old feminine arts. But as soon as the prince had gone her face resumed its former cold, artificial expression. She returned to the group where the vicomte was still talking, and again pretended to listen, while waiting till it would be time to leave. Her task was accomplished. CHAPTER V "And what do you think of this latest comedy, the coronation at Milan?" asked Anna Pavlovna, "and of the comedy of the people of Genoa and Lucca laying their petitions before Monsieur Buonaparte, and Monsieur Buonaparte sitting on a throne and granting the petitions of the nations? Adorable! It is enough to make one's head whirl! It is as if the whole world had gone crazy." Prince Andrew looked Anna Pavlovna straight in the face with a sarcastic smile. "'Dieu me la donne, gare a qui la touche!'* They say he was very fine when he said that," he remarked, repeating the words in Italian: "'Dio mi l'ha dato. Guai a chi la tocchi!'" *God has given it to me, let him who touches it beware! "I hope this will prove the last drop that will make the glass run over," Anna Pavlovna continued. "The sovereigns will not be able to endure this man who is a menace to everything." "The sovereigns? I do not speak of Russia," said the vicomte, polite but hopeless: "The sovereigns, madame... What have they done for Louis XVII, for the Queen, or for Madame Elizabeth? Nothing!" and he became more animated. "And believe me, they are reaping the reward of their betrayal of the Bourbon cause. The sovereigns! Why, they are sending ambassadors to compliment the usurper." And sighing disdainfully, he again changed his position. Prince Hippolyte, who had been gazing at the vicomte for some time through his lorgnette, suddenly turned completely round toward the little princess, and having asked for a needle began tracing the Conde coat of arms on the table. He explained this to her with as much gravity as if she had asked him to do it. "Baton de gueules, engrele de gueules d' azur--maison Conde," said he. The princess listened, smiling. "If Buonaparte remains on the throne of France a year longer," the vicomte continued, with the air of a man who, in a matter with which he is better acquainted than anyone else, does not listen to others but follows the current of his own thoughts, "things will have gone too far. By intrigues, violence, exile, and executions, French society--I mean good French society--will have been forever destroyed, and then..." He shrugged his shoulders and spread out his hands. Pierre wished to make a remark, for the conversation interested him, but Anna Pavlovna, who had him under observation, interrupted: "The Emperor Alexander," said she, with the melancholy which always accompanied any reference of hers to the Imperial family, "has declared that he will leave it to the French people themselves to choose their own form of government; and I believe that once free from the usurper, the whole nation will certainly throw itself into the arms of its rightful king," she concluded, trying to be amiable to the royalist emigrant. "That is doubtful," said Prince Andrew. "Monsieur le Vicomte quite rightly supposes that matters have already gone too far. I think it will be difficult to return to the old regime." "From what I have heard," said Pierre, blushing and breaking into the conversation, "almost all the aristocracy has already gone over to Bonaparte's side." "It is the Buonapartists who say that," replied the vicomte without looking at Pierre. "At the present time it is difficult to know the real state of French public opinion." "Bonaparte has said so," remarked Prince Andrew with a sarcastic smile. It was evident that he did not like the vicomte and was aiming his remarks at him, though without looking at him. "'I showed them the path to glory, but they did not follow it,'" Prince Andrew continued after a short silence, again quoting Napoleon's words. "'I opened my antechambers and they crowded in.' I do not know how far he was justified in saying so." "Not in the least," replied the vicomte. "After the murder of the duc even the most partial ceased to regard him as a hero. If to some people," he went on, turning to Anna Pavlovna, "he ever was a hero, after the murder of the duc there was one martyr more in heaven and one hero less on earth." Before Anna Pavlovna and the others had time to smile their appreciation of the vicomte's epigram, Pierre again broke into the conversation, and though Anna Pavlovna felt sure he would say something inappropriate, she was unable to stop him. "The execution of the Duc d'Enghien," declared Monsieur Pierre, "was a political necessity, and it seems to me that Napoleon showed greatness of soul by not fearing to take on himself the whole responsibility of that deed." "Dieu! Mon Dieu!" muttered Anna Pavlovna in a terrified whisper. "What, Monsieur Pierre... Do you consider that assassination shows greatness of soul?" said the little princess, smiling and drawing her work nearer to her. "Oh! Oh!" exclaimed several voices. "Capital!" said Prince Hippolyte in English, and began slapping his knee with the palm of his hand. The vicomte merely shrugged his shoulders. Pierre looked solemnly at his audience over his spectacles and continued. "I say so," he continued desperately, "because the Bourbons fled from the Revolution leaving the people to anarchy, and Napoleon alone understood the Revolution and quelled it, and so for the general good, he could not stop short for the sake of one man's life." "Won't you come over to the other table?" suggested Anna Pavlovna. But Pierre continued his speech without heeding her. "No," cried he, becoming more and more eager, "Napoleon is great because he rose superior to the Revolution, suppressed its abuses, preserved all that was good in it--equality of citizenship and freedom of speech and of the press--and only for that reason did he obtain power." "Yes, if having obtained power, without availing himself of it to commit murder he had restored it to the rightful king, I should have called him a great man," remarked the vicomte. "He could not do that. The people only gave him power that he might rid them of the Bourbons and because they saw that he was a great man. The Revolution was a grand thing!" continued Monsieur Pierre, betraying by this desperate and provocative proposition his extreme youth and his wish to express all that was in his mind. "What? Revolution and regicide a grand thing?... Well, after that... But won't you come to this other table?" repeated Anna Pavlovna. "Rousseau's Contrat social," said the vicomte with a tolerant smile. "I am not speaking of regicide, I am speaking about ideas." "Yes: ideas of robbery, murder, and regicide," again interjected an ironical voice. "Those were extremes, no doubt, but they are not what is most important. What is important are the rights of man, emancipation from prejudices, and equality of citizenship, and all these ideas Napoleon has retained in full force." "Liberty and equality," said the vicomte contemptuously, as if at last deciding seriously to prove to this youth how foolish his words were, "high-sounding words which have long been discredited. Who does not love liberty and equality? Even our Saviour preached liberty and equality. Have people since the Revolution become happier? On the contrary. We wanted liberty, but Buonaparte has destroyed it." Prince Andrew kept looking with an amused smile from Pierre to the vicomte and from the vicomte to their hostess. In the first moment of Pierre's outburst Anna Pavlovna, despite her social experience, was horror-struck. But when she saw that Pierre's sacrilegious words had not exasperated the vicomte, and had convinced herself that it was impossible to stop him, she rallied her forces and joined the vicomte in a vigorous attack on the orator. "But, my dear Monsieur Pierre," said she, "how do you explain the fact of a great man executing a duc--or even an ordinary man who--is innocent and untried?" "I should like," said the vicomte, "to ask how monsieur explains the 18th Brumaire; was not that an imposture? It was a swindle, and not at all like the conduct of a great man!" "And the prisoners he killed in Africa? That was horrible!" said the little princess, shrugging her shoulders. "He's a low fellow, say what you will," remarked Prince Hippolyte. Pierre, not knowing whom to answer, looked at them all and smiled. His smile was unlike the half-smile of other people. When he smiled, his grave, even rather gloomy, look was instantaneously replaced by another--a childlike, kindly, even rather silly look, which seemed to ask forgiveness. The vicomte who was meeting him for the first time saw clearly that this young Jacobin was not so terrible as his words suggested. All were silent. "How do you expect him to answer you all at once?" said Prince Andrew. "Besides, in the actions of a statesman one has to distinguish between his acts as a private person, as a general, and as an emperor. So it seems to me." "Yes, yes, of course!" Pierre chimed in, pleased at the arrival of this reinforcement. "One must admit," continued Prince Andrew, "that Napoleon as a man was great on the bridge of Arcola, and in the hospital at Jaffa where he gave his hand to the plague-stricken; but... but there are other acts which it is difficult to justify." Prince Andrew, who had evidently wished to tone down the awkwardness of Pierre's remarks, rose and made a sign to his wife that it was time to go. Suddenly Prince Hippolyte started up making signs to everyone to attend, and asking them all to be seated began: "I was told a charming Moscow story today and must treat you to it. Excuse me, Vicomte--I must tell it in Russian or the point will be lost...." And Prince Hippolyte began to tell his story in such Russian as a Frenchman would speak after spending about a year in Russia. Everyone waited, so emphatically and eagerly did he demand their attention to his story. "There is in Moscow a lady, une dame, and she is very stingy. She must have two footmen behind her carriage, and very big ones. That was her taste. And she had a lady's maid, also big. She said..." Here Prince Hippolyte paused, evidently collecting his ideas with difficulty. "She said... Oh yes! She said, 'Girl,' to the maid, 'put on a livery, get up behind the carriage, and come with me while I make some calls.'" Here Prince Hippolyte spluttered and burst out laughing long before his audience, which produced an effect unfavorable to the narrator. Several persons, among them the elderly lady and Anna Pavlovna, did however smile. "She went. Suddenly there was a great wind. The girl lost her hat and her long hair came down...." Here he could contain himself no longer and went on, between gasps of laughter: "And the whole world knew...." And so the anecdote ended. Though it was unintelligible why he had told it, or why it had to be told in Russian, still Anna Pavlovna and the others appreciated Prince Hippolyte's social tact in so agreeably ending Pierre's unpleasant and unamiable outburst. After the anecdote the conversation broke up into insignificant small talk about the last and next balls, about theatricals, and who would meet whom, and when and where. CHAPTER VI Having thanked Anna Pavlovna for her charming soiree, the guests began to take their leave. Pierre was ungainly. Stout, about the average height, broad, with huge red hands; he did not know, as the saying is, how to enter a drawing room and still less how to leave one; that is, how to say something particularly agreeable before going away. Besides this he was absent-minded. When he rose to go, he took up instead of his own, the general's three-cornered hat, and held it, pulling at the plume, till the general asked him to restore it. All his absent-mindedness and inability to enter a room and converse in it was, however, redeemed by his kindly, simple, and modest expression. Anna Pavlovna turned toward him and, with a Christian mildness that expressed forgiveness of his indiscretion, nodded and said: "I hope to see you again, but I also hope you will change your opinions, my dear Monsieur Pierre." When she said this, he did not reply and only bowed, but again everybody saw his smile, which said nothing, unless perhaps, "Opinions are opinions, but you see what a capital, good-natured fellow I am." And everyone, including Anna Pavlovna, felt this. Prince Andrew had gone out into the hall, and, turning his shoulders to the footman who was helping him on with his cloak, listened indifferently to his wife's chatter with Prince Hippolyte who had also come into the hall. Prince Hippolyte stood close to the pretty, pregnant princess, and stared fixedly at her through his eyeglass. "Go in, Annette, or you will catch cold," said the little princess, taking leave of Anna Pavlovna. "It is settled," she added in a low voice. Anna Pavlovna had already managed to speak to Lise about the match she contemplated between Anatole and the little princess' sister-in-law. "I rely on you, my dear," said Anna Pavlovna, also in a low tone. "Write to her and let me know how her father looks at the matter. Au revoir!"--and she left the hall. Prince Hippolyte approached the little princess and, bending his face close to her, began to whisper something. Two footmen, the princess' and his own, stood holding a shawl and a cloak, waiting for the conversation to finish. They listened to the French sentences which to them were meaningless, with an air of understanding but not wishing to appear to do so. The princess as usual spoke smilingly and listened with a laugh. "I am very glad I did not go to the ambassador's," said Prince Hippolyte "-so dull-. It has been a delightful evening, has it not? Delightful!" "They say the ball will be very good," replied the princess, drawing up her downy little lip. "All the pretty women in society will be there." "Not all, for you will not be there; not all," said Prince Hippolyte smiling joyfully; and snatching the shawl from the footman, whom he even pushed aside, he began wrapping it round the princess. Either from awkwardness or intentionally (no one could have said which) after the shawl had been adjusted he kept his arm around her for a long time, as though embracing her. Still smiling, she gracefully moved away, turning and glancing at her husband. Prince Andrew's eyes were closed, so weary and sleepy did he seem. "Are you ready?" he asked his wife, looking past her. Prince Hippolyte hurriedly put on his cloak, which in the latest fashion reached to his very heels, and, stumbling in it, ran out into the porch following the princess, whom a footman was helping into the carriage. "Princesse, au revoir," cried he, stumbling with his tongue as well as with his feet. The princess, picking up her dress, was taking her seat in the dark carriage, her husband was adjusting his saber; Prince Hippolyte, under pretense of helping, was in everyone's way. "Allow me, sir," said Prince Andrew in Russian in a cold, disagreeable tone to Prince Hippolyte who was blocking his path. "I am expecting you, Pierre," said the same voice, but gently and affectionately. The postilion started, the carriage wheels rattled. Prince Hippolyte laughed spasmodically as he stood in the porch waiting for the vicomte whom he had promised to take home. "Well, mon cher," said the vicomte, having seated himself beside Hippolyte in the carriage, "your little princess is very nice, very nice indeed, quite French," and he kissed the tips of his fingers. Hippolyte burst out laughing. "Do you know, you are a terrible chap for all your innocent airs," continued the vicomte. "I pity the poor husband, that little officer who gives himself the airs of a monarch." Hippolyte spluttered again, and amid his laughter said, "And you were saying that the Russian ladies are not equal to the French? One has to know how to deal with them." Pierre reaching the house first went into Prince Andrew's study like one quite at home, and from habit immediately lay down on the sofa, took from the shelf the first book that came to his hand (it was Caesar's Commentaries), and resting on his elbow, began reading it in the middle. "What have you done to Mlle Scherer? She will be quite ill now," said Prince Andrew, as he entered the study, rubbing his small white hands. Pierre turned his whole body, making the sofa creak. He lifted his eager face to Prince Andrew, smiled, and waved his hand. "That abbe is very interesting but he does not see the thing in the right light.... In my opinion perpetual peace is possible but--I do not know how to express it... not by a balance of political power...." It was evident that Prince Andrew was not interested in such abstract conversation. "One can't everywhere say all one thinks, mon cher. Well, have you at last decided on anything? Are you going to be a guardsman or a diplomatist?" asked Prince Andrew after a momentary silence. Pierre sat up on the sofa, with his legs tucked under him. "Really, I don't yet know. I don't like either the one or the other." "But you must decide on something! Your father expects it." Pierre at the age of ten had been sent abroad with an abbe as tutor, and had remained away till he was twenty. When he returned to Moscow his father dismissed the abbe and said to the young man, "Now go to Petersburg, look round, and choose your profession. I will agree to anything. Here is a letter to Prince Vasili, and here is money. Write to me all about it, and I will help you in everything." Pierre had already been choosing a career for three months, and had not decided on anything. It was about this choice that Prince Andrew was speaking. Pierre rubbed his forehead. "But he must be a Freemason," said he, referring to the abbe whom he had met that evening. "That is all nonsense." Prince Andrew again interrupted him, "let us talk business. Have you been to the Horse Guards?" "No, I have not; but this is what I have been thinking and wanted to tell you. There is a war now against Napoleon. If it were a war for freedom I could understand it and should be the first to enter the army; but to help England and Austria against the greatest man in the world is not right." Prince Andrew only shrugged his shoulders at Pierre's childish words. He put on the air of one who finds it impossible to reply to such nonsense, but it would in fact have been difficult to give any other answer than the one Prince Andrew gave to this naive question. "If no one fought except on his own conviction, there would be no wars," he said. "And that would be splendid," said Pierre. Prince Andrew smiled ironically. "Very likely it would be splendid, but it will never come about..." "Well, why are you going to the war?" asked Pierre. "What for? I don't know. I must. Besides that I am going..." He paused. "I am going because the life I am leading here does not suit me!" CHAPTER VII The rustle of a woman's dress was heard in the next room. Prince Andrew shook himself as if waking up, and his face assumed the look it had had in Anna Pavlovna's drawing room. Pierre removed his feet from the sofa. The princess came in. She had changed her gown for a house dress as fresh and elegant as the other. Prince Andrew rose and politely placed a chair for her. "How is it," she began, as usual in French, settling down briskly and fussily in the easy chair, "how is it Annette never got married? How stupid you men all are not to have married her! Excuse me for saying so, but you have no sense about women. What an argumentative fellow you are, Monsieur Pierre!" "And I am still arguing with your husband. I can't understand why he wants to go to the war," replied Pierre, addressing the princess with none of the embarrassment so commonly shown by young men in their intercourse with young women. The princess started. Evidently Pierre's words touched her to the quick. "Ah, that is just what I tell him!" said she. "I don't understand it; I don't in the least understand why men can't live without wars. How is it that we women don't want anything of the kind, don't need it? Now you shall judge between us. I always tell him: Here he is Uncle's aide-de-camp, a most brilliant position. He is so well known, so much appreciated by everyone. The other day at the Apraksins' I heard a lady asking, 'Is that the famous Prince Andrew?' I did indeed." She laughed. "He is so well received everywhere. He might easily become aide-de-camp to the Emperor. You know the Emperor spoke to him most graciously. Annette and I were speaking of how to arrange it. What do you think?" Pierre looked at his friend and, noticing that he did not like the conversation, gave no reply. "When are you starting?" he asked. "Oh, don't speak of his going, don't! I won't hear it spoken of," said the princess in the same petulantly playful tone in which she had spoken to Hippolyte in the drawing room and which was so plainly ill-suited to the family circle of which Pierre was almost a member. "Today when I remembered that all these delightful associations must be broken off... and then you know, Andre..." (she looked significantly at her husband) "I'm afraid, I'm afraid!" she whispered, and a shudder ran down her back. Her husband looked at her as if surprised to notice that someone besides Pierre and himself was in the room, and addressed her in a tone of frigid politeness. "What is it you are afraid of, Lise? I don't understand," said he. "There, what egotists men all are: all, all egotists! Just for a whim of his own, goodness only knows why, he leaves me and locks me up alone in the country." "With my father and sister, remember," said Prince Andrew gently. "Alone all the same, without my friends.... And he expects me not to be afraid." Her tone was now querulous and her lip drawn up, giving her not a joyful, but an animal, squirrel-like expression. She paused as if she felt it indecorous to speak of her pregnancy before Pierre, though the gist of the matter lay in that. "I still can't understand what you are afraid of," said Prince Andrew slowly, not taking his eyes off his wife. The princess blushed, and raised her arms with a gesture of despair. "No, Andrew, I must say you have changed. Oh, how you have..." "Your doctor tells you to go to bed earlier," said Prince Andrew. "You had better go." The princess said nothing, but suddenly her short downy lip quivered. Prince Andrew rose, shrugged his shoulders, and walked about the room. Pierre looked over his spectacles with naive surprise, now at him and now at her, moved as if about to rise too, but changed his mind. "Why should I mind Monsieur Pierre being here?" exclaimed the little princess suddenly, her pretty face all at once distorted by a tearful grimace. "I have long wanted to ask you, Andrew, why you have changed so to me? What have I done to you? You are going to the war and have no pity for me. Why is it?" "Lise!" was all Prince Andrew said. But that one word expressed an entreaty, a threat, and above all conviction that she would herself regret her words. But she went on hurriedly: "You treat me like an invalid or a child. I see it all! Did you behave like that six months ago?" "Lise, I beg you to desist," said Prince Andrew still more emphatically. Pierre, who had been growing more and more agitated as he listened to all this, rose and approached the princess. He seemed unable to bear the sight of tears and was ready to cry himself. "Calm yourself, Princess! It seems so to you because... I assure you I myself have experienced... and so... because... No, excuse me! An outsider is out of place here... No, don't distress yourself... Good-by!" Prince Andrew caught him by the hand. "No, wait, Pierre! The princess is too kind to wish to deprive me of the pleasure of spending the evening with you." "No, he thinks only of himself," muttered the princess without restraining her angry tears. "Lise!" said Prince Andrew dryly, raising his voice to the pitch which indicates that patience is exhausted. Suddenly the angry, squirrel-like expression of the princess' pretty face changed into a winning and piteous look of fear. Her beautiful eyes glanced askance at her husband's face, and her own assumed the timid, deprecating expression of a dog when it rapidly but feebly wags its drooping tail. "Mon Dieu, mon Dieu!" she muttered, and lifting her dress with one hand she went up to her husband and kissed him on the forehead. "Good night, Lise," said he, rising and courteously kissing her hand as he would have done to a stranger. CHAPTER VIII The friends were silent. Neither cared to begin talking. Pierre continually glanced at Prince Andrew; Prince Andrew rubbed his forehead with his small hand. "Let us go and have supper," he said with a sigh, going to the door. They entered the elegant, newly decorated, and luxurious dining room. Everything from the table napkins to the silver, china, and glass bore that imprint of newness found in the households of the newly married. Halfway through supper Prince Andrew leaned his elbows on the table and, with a look of nervous agitation such as Pierre had never before seen on his face, began to talk--as one who has long had something on his mind and suddenly determines to speak out. "Never, never marry, my dear fellow! That's my advice: never marry till you can say to yourself that you have done all you are capable of, and until you have ceased to love the woman of your choice and have seen her plainly as she is, or else you will make a cruel and irrevocable mistake. Marry when you are old and good for nothing--or all that is good and noble in you will be lost. It will all be wasted on trifles. Yes! Yes! Yes! Don't look at me with such surprise. If you marry expecting anything from yourself in the future, you will feel at every step that for you all is ended, all is closed except the drawing room, where you will be ranged side by side with a court lackey and an idiot!... But what's the good?..." and he waved his arm. Pierre took off his spectacles, which made his face seem different and the good-natured expression still more apparent, and gazed at his friend in amazement. "My wife," continued Prince Andrew, "is an excellent woman, one of those rare women with whom a man's honor is safe; but, O God, what would I not give now to be unmarried! You are the first and only one to whom I mention this, because I like you." As he said this Prince Andrew was less than ever like that Bolkonski who had lolled in Anna Pavlovna's easy chairs and with half-closed eyes had uttered French phrases between his teeth. Every muscle of his thin face was now quivering with nervous excitement; his eyes, in which the fire of life had seemed extinguished, now flashed with brilliant light. It was evident that the more lifeless he seemed at ordinary times, the more impassioned he became in these moments of almost morbid irritation. "You don't understand why I say this," he continued, "but it is the whole story of life. You talk of Bonaparte and his career," said he (though Pierre had not mentioned Bonaparte), "but Bonaparte when he worked went step by step toward his goal. He was free, he had nothing but his aim to consider, and he reached it. But tie yourself up with a woman and, like a chained convict, you lose all freedom! And all you have of hope and strength merely weighs you down and torments you with regret. Drawing rooms, gossip, balls, vanity, and triviality--these are the enchanted circle I cannot escape from. I am now going to the war, the greatest war there ever was, and I know nothing and am fit for nothing. I am very amiable and have a caustic wit," continued Prince Andrew, "and at Anna Pavlovna's they listen to me. And that stupid set without whom my wife cannot exist, and those women... If you only knew what those society women are, and women in general! My father is right. Selfish, vain, stupid, trivial in everything--that's what women are when you see them in their true colors! When you meet them in society it seems as if there were something in them, but there's nothing, nothing, nothing! No, don't marry, my dear fellow; don't marry!" concluded Prince Andrew. "It seems funny to me," said Pierre, "that you, you should consider yourself incapable and your life a spoiled life. You have everything before you, everything. And you..." He did not finish his sentence, but his tone showed how highly he thought of his friend and how much he expected of him in the future. "How can he talk like that?" thought Pierre. He considered his friend a model of perfection because Prince Andrew possessed in the highest degree just the very qualities Pierre lacked, and which might be best described as strength of will. Pierre was always astonished at Prince Andrew's calm manner of treating everybody, his extraordinary memory, his extensive reading (he had read everything, knew everything, and had an opinion about everything), but above all at his capacity for work and study. And if Pierre was often struck by Andrew's lack of capacity for philosophical meditation (to which he himself was particularly addicted), he regarded even this not as a defect but as a sign of strength. Even in the best, most friendly and simplest relations of life, praise and commendation are essential, just as grease is necessary to wheels that they may run smoothly. "My part is played out," said Prince Andrew. "What's the use of talking about me? Let us talk about you," he added after a silence, smiling at his reassuring thoughts. That smile was immediately reflected on Pierre's face. "But what is there to say about me?" said Pierre, his face relaxing into a careless, merry smile. "What am I? An illegitimate son!" He suddenly blushed crimson, and it was plain that he had made a great effort to say this. "Without a name and without means... And it really..." But he did not say what "it really" was. "For the present I am free and am all right. Only I haven't the least idea what I am to do; I wanted to consult you seriously." Prince Andrew looked kindly at him, yet his glance--friendly and affectionate as it was--expressed a sense of his own superiority. "I am fond of you, especially as you are the one live man among our whole set. Yes, you're all right! Choose what you will; it's all the same. You'll be all right anywhere. But look here: give up visiting those Kuragins and leading that sort of life. It suits you so badly--all this debauchery, dissipation, and the rest of it!" "What would you have, my dear fellow?" answered Pierre, shrugging his shoulders. "Women, my dear fellow; women!" "I don't understand it," replied Prince Andrew. "Women who are comme il faut, that's a different matter; but the Kuragins' set of women, 'women and wine' I don't understand!" Pierre was staying at Prince Vasili Kuragin's and sharing the dissipated life of his son Anatole, the son whom they were planning to reform by marrying him to Prince Andrew's sister. "Do you know?" said Pierre, as if suddenly struck by a happy thought, "seriously, I have long been thinking of it.... Leading such a life I can't decide or think properly about anything. One's head aches, and one spends all one's money. He asked me for tonight, but I won't go." "You give me your word of honor not to go?" "On my honor!" CHAPTER IX It was past one o'clock when Pierre left his friend. It was a cloudless, northern, summer night. Pierre took an open cab intending to drive straight home. But the nearer he drew to the house the more he felt the impossibility of going to sleep on such a night. It was light enough to see a long way in the deserted street and it seemed more like morning or evening than night. On the way Pierre remembered that Anatole Kuragin was expecting the usual set for cards that evening, after which there was generally a drinking bout, finishing with visits of a kind Pierre was very fond of. "I should like to go to Kuragin's," thought he. But he immediately recalled his promise to Prince Andrew not to go there. Then, as happens to people of weak character, he desired so passionately once more to enjoy that dissipation he was so accustomed to that he decided to go. The thought immediately occurred to him that his promise to Prince Andrew was of no account, because before he gave it he had already promised Prince Anatole to come to his gathering; "besides," thought he, "all such 'words of honor' are conventional things with no definite meaning, especially if one considers that by tomorrow one may be dead, or something so extraordinary may happen to one that honor and dishonor will be all the same!" Pierre often indulged in reflections of this sort, nullifying all his decisions and intentions. He went to Kuragin's. Reaching the large house near the Horse Guards' barracks, in which Anatole lived, Pierre entered the lighted porch, ascended the stairs, and went in at the open door. There was no one in the anteroom; empty bottles, cloaks, and overshoes were lying about; there was a smell of alcohol, and sounds of voices and shouting in the distance. Cards and supper were over, but the visitors had not yet dispersed. Pierre threw off his cloak and entered the first room, in which were the remains of supper. A footman, thinking no one saw him, was drinking on the sly what was left in the glasses. From the third room came sounds of laughter, the shouting of familiar voices, the growling of a bear, and general commotion. Some eight or nine young men were crowding anxiously round an open window. Three others were romping with a young bear, one pulling him by the chain and trying to set him at the others. "I bet a hundred on Stevens!" shouted one. "Mind, no holding on!" cried another. "I bet on Dolokhov!" cried a third. "Kuragin, you part our hands." "There, leave Bruin alone; here's a bet on." "At one draught, or he loses!" shouted a fourth. "Jacob, bring a bottle!" shouted the host, a tall, handsome fellow who stood in the midst of the group, without a coat, and with his fine linen shirt unfastened in front. "Wait a bit, you fellows.... Here is Petya! Good man!" cried he, addressing Pierre. Another voice, from a man of medium height with clear blue eyes, particularly striking among all these drunken voices by its sober ring, cried from the window: "Come here; part the bets!" This was Dolokhov, an officer of the Semenov regiment, a notorious gambler and duelist, who was living with Anatole. Pierre smiled, looking about him merrily. "I don't understand. What's it all about?" "Wait a bit, he is not drunk yet! A bottle here," said Anatole, taking a glass from the table he went up to Pierre. "First of all you must drink!" Pierre drank one glass after another, looking from under his brows at the tipsy guests who were again crowding round the window, and listening to their chatter. Anatole kept on refilling Pierre's glass while explaining that Dolokhov was betting with Stevens, an English naval officer, that he would drink a bottle of rum sitting on the outer ledge of the third floor window with his legs hanging out. "Go on, you must drink it all," said Anatole, giving Pierre the last glass, "or I won't let you go!" "No, I won't," said Pierre, pushing Anatole aside, and he went up to the window. Dolokhov was holding the Englishman's hand and clearly and distinctly repeating the terms of the bet, addressing himself particularly to Anatole and Pierre. Dolokhov was of medium height, with curly hair and light-blue eyes. He was about twenty-five. Like all infantry officers he wore no mustache, so that his mouth, the most striking feature of his face, was clearly seen. The lines of that mouth were remarkably finely curved. The middle of the upper lip formed a sharp wedge and closed firmly on the firm lower one, and something like two distinct smiles played continually round the two corners of the mouth; this, together with the resolute, insolent intelligence of his eyes, produced an effect which made it impossible not to notice his face. Dolokhov was a man of small means and no connections. Yet, though Anatole spent tens of thousands of rubles, Dolokhov lived with him and had placed himself on such a footing that all who knew them, including Anatole himself, respected him more than they did Anatole. Dolokhov could play all games and nearly always won. However much he drank, he never lost his clearheadedness. Both Kuragin and Dolokhov were at that time notorious among the rakes and scapegraces of Petersburg. The bottle of rum was brought. The window frame which prevented anyone from sitting on the outer sill was being forced out by two footmen, who were evidently flurried and intimidated by the directions and shouts of the gentlemen around. Anatole with his swaggering air strode up to the window. He wanted to smash something. Pushing away the footmen he tugged at the frame, but could not move it. He smashed a pane. "You have a try, Hercules," said he, turning to Pierre. Pierre seized the crossbeam, tugged, and wrenched the oak frame out with a crash. "Take it right out, or they'll think I'm holding on," said Dolokhov. "Is the Englishman bragging?... Eh? Is it all right?" said Anatole. "First-rate," said Pierre, looking at Dolokhov, who with a bottle of rum in his hand was approaching the window, from which the light of the sky, the dawn merging with the afterglow of sunset, was visible. Dolokhov, the bottle of rum still in his hand, jumped onto the window sill. "Listen!" cried he, standing there and addressing those in the room. All were silent. "I bet fifty imperials"--he spoke French that the Englishman might understand him, but he did, not speak it very well--"I bet fifty imperials... or do you wish to make it a hundred?" added he, addressing the Englishman. "No, fifty," replied the latter. "All right. Fifty imperials... that I will drink a whole bottle of rum without taking it from my mouth, sitting outside the window on this spot" (he stooped and pointed to the sloping ledge outside the window) "and without holding on to anything. Is that right?" "Quite right," said the Englishman. Anatole turned to the Englishman and taking him by one of the buttons of his coat and looking down at him--the Englishman was short- began repeating the terms of the wager to him in English. "Wait!" cried Dolokhov, hammering with the bottle on the window sill to attract attention. "Wait a bit, Kuragin. Listen! If anyone else does the same, I will pay him a hundred imperials. Do you understand?" The Englishman nodded, but gave no indication whether he intended to accept this challenge or not. Anatole did not release him, and though he kept nodding to show that he understood, Anatole went on translating Dolokhov's words into English. A thin young lad, an hussar of the Life Guards, who had been losing that evening, climbed on the window sill, leaned over, and looked down. "Oh! Oh! Oh!" he muttered, looking down from the window at the stones of the pavement. "Shut up!" cried Dolokhov, pushing him away from the window. The lad jumped awkwardly back into the room, tripping over his spurs. Placing the bottle on the window sill where he could reach it easily, Dolokhov climbed carefully and slowly through the window and lowered his legs. Pressing against both sides of the window, he adjusted himself on his seat, lowered his hands, moved a little to the right and then to the left, and took up the bottle. Anatole brought two candles and placed them on the window sill, though it was already quite light. Dolokhov's back in his white shirt, and his curly head, were lit up from both sides. Everyone crowded to the window, the Englishman in front. Pierre stood smiling but silent. One man, older than the others present, suddenly pushed forward with a scared and angry look and wanted to seize hold of Dolokhov's shirt. "I say, this is folly! He'll be killed," said this more sensible man. Anatole stopped him. "Don't touch him! You'll startle him and then he'll be killed. Eh?... What then?... Eh?" Dolokhov turned round and, again holding on with both hands, arranged himself on his seat. "If anyone comes meddling again," said he, emitting the words separately through his thin compressed lips, "I will throw him down there. Now then!" Saying this he again turned round, dropped his hands, took the bottle and lifted it to his lips, threw back his head, and raised his free hand to balance himself. One of the footmen who had stooped to pick up some broken glass remained in that position without taking his eyes from the window and from Dolokhov's back. Anatole stood erect with staring eyes. The Englishman looked on sideways, pursing up his lips. The man who had wished to stop the affair ran to a corner of the room and threw himself on a sofa with his face to the wall. Pierre hid his face, from which a faint smile forgot to fade though his features now expressed horror and fear. All were still. Pierre took his hands from his eyes. Dolokhov still sat in the same position, only his head was thrown further back till his curly hair touched his shirt collar, and the hand holding the bottle was lifted higher and higher and trembled with the effort. The bottle was emptying perceptibly and rising still higher and his head tilting yet further back. "Why is it so long?" thought Pierre. It seemed to him that more than half an hour had elapsed. Suddenly Dolokhov made a backward movement with his spine, and his arm trembled nervously; this was sufficient to cause his whole body to slip as he sat on the sloping ledge. As he began slipping down, his head and arm wavered still more with the strain. One hand moved as if to clutch the window sill, but refrained from touching it. Pierre again covered his eyes and thought he would never never them again. Suddenly he was aware of a stir all around. He looked up: Dolokhov was standing on the window sill, with a pale but radiant face. "It's empty." He threw the bottle to the Englishman, who caught it neatly. Dolokhov jumped down. He smelt strongly of rum. "Well done!... Fine fellow!... There's a bet for you!... Devil take you!" came from different sides. The Englishman took out his purse and began counting out the money. Dolokhov stood frowning and did not speak. Pierre jumped upon the window sill. "Gentlemen, who wishes to bet with me? I'll do the same thing!" he suddenly cried. "Even without a bet, there! Tell them to bring me a bottle. I'll do it.... Bring a bottle!" "Let him do it, let him do it," said Dolokhov, smiling. "What next? Have you gone mad?... No one would let you!... Why, you go giddy even on a staircase," exclaimed several voices. "I'll drink it! Let's have a bottle of rum!" shouted Pierre, banging the table with a determined and drunken gesture and preparing to climb out of the window. They seized him by his arms; but he was so strong that everyone who touched him was sent flying. "No, you'll never manage him that way," said Anatole. "Wait a bit and I'll get round him.... Listen! I'll take your bet tomorrow, but now we are all going to ----'s." "Come on then," cried Pierre. "Come on!... And we'll take Bruin with us." And he caught the bear, took it in his arms, lifted it from the ground, and began dancing round the room with it. CHAPTER X Prince Vasili kept the promise he had given to Princess Drubetskaya who had spoken to him on behalf of her only son Boris on the evening of Anna Pavlovna's soiree. The matter was mentioned to the Emperor, an exception made, and Boris transferred into the regiment of Semenov Guards with the rank of cornet. He received, however, no appointment to Kutuzov's staff despite all Anna Mikhaylovna's endeavors and entreaties. Soon after Anna Pavlovna's reception Anna Mikhaylovna returned to Moscow and went straight to her rich relations, the Rostovs, with whom she stayed when in the town and where her darling Bory, who had only just entered a regiment of the line and was being at once transferred to the Guards as a cornet, had been educated from childhood and lived for years at a time. The Guards had already left Petersburg on the tenth of August, and her son, who had remained in Moscow for his equipment, was to join them on the march to Radzivilov. It was St. Natalia's day and the name day of two of the Rostovs--the mother and the youngest daughter--both named Nataly. Ever since the morning, carriages with six horses had been coming and going continually, bringing visitors to the Countess Rostova's big house on the Povarskaya, so well known to all Moscow. The countess herself and her handsome eldest daughter were in the drawing-room with the visitors who came to congratulate, and who constantly succeeded one another in relays. The countess was a woman of about forty-five, with a thin Oriental type of face, evidently worn out with childbearing--she had had twelve. A languor of motion and speech, resulting from weakness, gave her a distinguished air which inspired respect. Princess Anna Mikhaylovna Drubetskaya, who as a member of the household was also seated in the drawing room, helped to receive and entertain the visitors. The young people were in one of the inner rooms, not considering it necessary to take part in receiving the visitors. The count met the guests and saw them off, inviting them all to dinner. "I am very, very grateful to you, mon cher," or "ma chere"--he called everyone without exception and without the slightest variation in his tone, "my dear," whether they were above or below him in rank--"I thank you for myself and for our two dear ones whose name day we are keeping. But mind you come to dinner or I shall be offended, ma chere! On behalf of the whole family I beg you to come, mon cher!" These words he repeated to everyone without exception or variation, and with the same expression on his full, cheerful, clean-shaven face, the same firm pressure of the hand and the same quick, repeated bows. As soon as he had seen a visitor off he returned to one of those who were still in the drawing room, drew a chair toward him or her, and jauntily spreading out his legs and putting his hands on his knees with the air of a man who enjoys life and knows how to live, he swayed to and fro with dignity, offered surmises about the weather, or touched on questions of health, sometimes in Russian and sometimes in very bad but self-confident French; then again, like a man weary but unflinching in the fulfillment of duty, he rose to see some visitors off and, stroking his scanty gray hairs over his bald patch, also asked them to dinner. Sometimes on his way back from the anteroom he would pass through the conservatory and pantry into the large marble dining hall, where tables were being set out for eighty people; and looking at the footmen, who were bringing in silver and china, moving tables, and unfolding damask table linen, he would call Dmitri Vasilevich, a man of good family and the manager of all his affairs, and while looking with pleasure at the enormous table would say: "Well, Dmitri, you'll see that things are all as they should be? That's right! The great thing is the serving, that's it." And with a complacent sigh he would return to the drawing room. "Marya Lvovna Karagina and her daughter!" announced the countess' gigantic footman in his bass voice, entering the drawing room. The countess reflected a moment and took a pinch from a gold snuffbox with her husband's portrait on it. "I'm quite worn out by these callers. However, I'll see her and no more. She is so affected. Ask her in," she said to the footman in a sad voice, as if saying: "Very well, finish me off." A tall, stout, and proud-looking woman, with a round-faced smiling daughter, entered the drawing room, their dresses rustling. "Dear Countess, what an age... She has been laid up, poor child... at the Razumovski's ball... and Countess Apraksina... I was so delighted..." came the sounds of animated feminine voices, interrupting one another and mingling with the rustling of dresses and the scraping of chairs. Then one of those conversations began which last out until, at the first pause, the guests rise with a rustle of dresses and say, "I am so delighted... Mamma's health... and Countess Apraksina..." and then, again rustling, pass into the anteroom, put on cloaks or mantles, and drive away. The conversation was on the chief topic of the day: the illness of the wealthy and celebrated beau of Catherine's day, Count Bezukhov, and about his illegitimate son Pierre, the one who had behaved so improperly at Anna Pavlovna's reception. "I am so sorry for the poor count," said the visitor. "He is in such bad health, and now this vexation about his son is enough to kill him!" "What is that?" asked the countess as if she did not know what the visitor alluded to, though she had already heard about the cause of Count Bezukhov's distress some fifteen times. "That's what comes of a modern education," exclaimed the visitor. "It seems that while he was abroad this young man was allowed to do as he liked, now in Petersburg I hear he has been doing such terrible things that he has been expelled by the police." "You don't say so!" replied the countess. "He chose his friends badly," interposed Anna Mikhaylovna. "Prince Vasili's son, he, and a certain Dolokhov have, it is said, been up to heaven only knows what! And they have had to suffer for it. Dolokhov has been degraded to the ranks and Bezukhov's son sent back to Moscow. Anatole Kuragin's father managed somehow to get his son's affair hushed up, but even he was ordered out of Petersburg." "But what have they been up to?" asked the countess. "They are regular brigands, especially Dolokhov," replied the visitor. "He is a son of Marya Ivanovna Dolokhova, such a worthy woman, but there, just fancy! Those three got hold of a bear somewhere, put it in a carriage, and set off with it to visit some actresses! The police tried to interfere, and what did the young men do? They tied a policeman and the bear back to back and put the bear into the Moyka Canal. And there was the bear swimming about with the policeman on his back!" "What a nice figure the policeman must have cut, my dear!" shouted the count, dying with laughter. "Oh, how dreadful! How can you laugh at it, Count?" Yet the ladies themselves could not help laughing. "It was all they could do to rescue the poor man," continued the visitor. "And to think it is Cyril Vladimirovich Bezukhov's son who amuses himself in this sensible manner! And he was said to be so well educated and clever. This is all that his foreign education has done for him! I hope that here in Moscow no one will receive him, in spite of his money. They wanted to introduce him to me, but I quite declined: I have my daughters to consider." "Why do you say this young man is so rich?" asked the countess, turning away from the girls, who at once assumed an air of inattention. "His children are all illegitimate. I think Pierre also is illegitimate." The visitor made a gesture with her hand. "I should think he has a score of them." Princess Anna Mikhaylovna intervened in the conversation, evidently wishing to show her connections and knowledge of what went on in society. "The fact of the matter is," said she significantly, and also in a half whisper, "everyone knows Count Cyril's reputation.... He has lost count of his children, but this Pierre was his favorite." "How handsome the old man still was only a year ago!" remarked the countess. "I have never seen a handsomer man." "He is very much altered now," said Anna Mikhaylovna. "Well, as I was saying, Prince Vasili is the next heir through his wife, but the count is very fond of Pierre, looked after his education, and wrote to the Emperor about him; so that in the case of his death--and he is so ill that he may die at any moment, and Dr. Lorrain has come from Petersburg--no one knows who will inherit his immense fortune, Pierre or Prince Vasili. Forty thousand serfs and millions of rubles! I know it all very well for Prince Vasili told me himself. Besides, Cyril Vladimirovich is my mother's second cousin. He's also my Bory's godfather," she added, as if she attached no importance at all to the fact. "Prince Vasili arrived in Moscow yesterday. I hear he has come on some inspection business," remarked the visitor. "Yes, but between ourselves," said the princess, "that is a pretext. The fact is he has come to see Count Cyril Vladimirovich, hearing how ill he is." "But do you know, my dear, that was a capital joke," said the count; and seeing that the elder visitor was not listening, he turned to the young ladies. "I can just imagine what a funny figure that policeman cut!" And as he waved his arms to impersonate the policeman, his portly form again shook with a deep ringing laugh, the laugh of one who always eats well and, in particular, drinks well. "So do come and dine with us!" he said. CHAPTER XI Silence ensued. The countess looked at her callers, smiling affably, but not concealing the fact that she would not be distressed if they now rose and took their leave. The visitor's daughter was already smoothing down her dress with an inquiring look at her mother, when suddenly from the next room were heard the footsteps of boys and girls running to the door and the noise of a chair falling over, and a girl of thirteen, hiding something in the folds of her short muslin frock, darted in and stopped short in the middle of the room. It was evident that she had not intended her flight to bring her so far. Behind her in the doorway appeared a student with a crimson coat collar, an officer of the Guards, a girl of fifteen, and a plump rosy-faced boy in a short jacket. The count jumped up and, swaying from side to side, spread his arms wide and threw them round the little girl who had run in. "Ah, here she is!" he exclaimed laughing. "My pet, whose name day it is. My dear pet!" "Ma chere, there is a time for everything," said the countess with feigned severity. "You spoil her, Ilya," she added, turning to her husband. "How do you do, my dear? I wish you many happy returns of your name day," said the visitor. "What a charming child," she added, addressing the mother. This black-eyed, wide-mouthed girl, not pretty but full of life- with childish bare shoulders which after her run heaved and shook her bodice, with black curls tossed backward, thin bare arms, little legs in lace-frilled drawers, and feet in low slippers--was just at that charming age when a girl is no longer a child, though the child is not yet a young woman. Escaping from her father she ran to hide her flushed face in the lace of her mother's mantilla--not paying the least attention to her severe remark--and began to laugh. She laughed, and in fragmentary sentences tried to explain about a doll which she produced from the folds of her frock. "Do you see?... My doll... Mimi... You see..." was all Natasha managed to utter (to her everything seemed funny). She leaned against her mother and burst into such a loud, ringing fit of laughter that even the prim visitor could not help joining in. "Now then, go away and take your monstrosity with you," said the mother, pushing away her daughter with pretended sternness, and turning to the visitor she added: "She is my youngest girl." Natasha, raising her face for a moment from her mother's mantilla, glanced up at her through tears of laughter, and again hid her face. The visitor, compelled to look on at this family scene, thought it necessary to take some part in it. "Tell me, my dear," said she to Natasha, "is Mimi a relation of yours? A daughter, I suppose?" Natasha did not like the visitor's tone of condescension to childish things. She did not reply, but looked at her seriously. Meanwhile the younger generation: Boris, the officer, Anna Mikhaylovna's son; Nicholas, the undergraduate, the count's eldest son; Sonya, the count's fifteen-year-old niece, and little Petya, his youngest boy, had all settled down in the drawing room and were obviously trying to restrain within the bounds of decorum the excitement and mirth that shone in all their faces. Evidently in the back rooms, from which they had dashed out so impetuously, the conversation had been more amusing than the drawing-room talk of society scandals, the weather, and Countess Apraksina. Now and then they glanced at one another, hardly able to suppress their laughter. The two young men, the student and the officer, friends from childhood, were of the same age and both handsome fellows, though not alike. Boris was tall and fair, and his calm and handsome face had regular, delicate features. Nicholas was short with curly hair and an open expression. Dark hairs were already showing on his upper lip, and his whole face expressed impetuosity and enthusiasm. Nicholas blushed when he entered the drawing room. He evidently tried to find something to say, but failed. Boris on the contrary at once found his footing, and related quietly and humorously how he had know that doll Mimi when she was still quite a young lady, before her nose was broken; how she had aged during the five years he had known her, and how her head had cracked right across the skull. Having said this he glanced at Natasha. She turned away from him and glanced at her younger brother, who was screwing up his eyes and shaking with suppressed laughter, and unable to control herself any longer, she jumped up and rushed from the room as fast as her nimble little feet would carry her. Boris did not laugh. "You were meaning to go out, weren't you, Mamma? Do you want the carriage?" he asked his mother with a smile. "Yes, yes, go and tell them to get it ready," she answered, returning his smile. Boris quietly left the room and went in search of Natasha. The plump boy ran after them angrily, as if vexed that their program had been disturbed. CHAPTER XII The only young people remaining in the drawing room, not counting the young lady visitor and the countess' eldest daughter (who was four years older than her sister and behaved already like a grown-up person), were Nicholas and Sonya, the niece. Sonya was a slender little brunette with a tender look in her eyes which were veiled by long lashes, thick black plaits coiling twice round her head, and a tawny tint in her complexion and especially in the color of her slender but graceful and muscular arms and neck. By the grace of her movements, by the softness and flexibility of her small limbs, and by a certain coyness and reserve of manner, she reminded one of a pretty, half-grown kitten which promises to become a beautiful little cat. She evidently considered it proper to show an interest in the general conversation by smiling, but in spite of herself her eyes under their thick long lashes watched her cousin who was going to join the army, with such passionate girlish adoration that her smile could not for a single instant impose upon anyone, and it was clear that the kitten had settled down only to spring up with more energy and again play with her cousin as soon as they too could, like Natasha and Boris, escape from the drawing room. "Ah yes, my dear," said the count, addressing the visitor and pointing to Nicholas, "his friend Boris has become an officer, and so for friendship's sake he is leaving the university and me, his old father, and entering the military service, my dear. And there was a place and everything waiting for him in the Archives Department! Isn't that friendship?" remarked the count in an inquiring tone. "But they say that war has been declared," replied the visitor. "They've been saying so a long while," said the count, "and they'll say so again and again, and that will be the end of it. My dear, there's friendship for you," he repeated. "He's joining the hussars." The visitor, not knowing what to say, shook her head. "It's not at all from friendship," declared Nicholas, flaring up and turning away as if from a shameful aspersion. "It is not from friendship at all; I simply feel that the army is my vocation." He glanced at his cousin and the young lady visitor; and they were both regarding him with a smile of approbation. "Schubert, the colonel of the Pavlograd Hussars, is dining with us today. He has been here on leave and is taking Nicholas back with him. It can't be helped!" said the count, shrugging his shoulders and speaking playfully of a matter that evidently distressed him. "I have already told you, Papa," said his son, "that if you don't wish to let me go, I'll stay. But I know I am no use anywhere except in the army; I am not a diplomat or a government clerk.--I don't know how to hide what I feel." As he spoke he kept glancing with the flirtatiousness of a handsome youth at Sonya and the young lady visitor. The little kitten, feasting her eyes on him, seemed ready at any moment to start her gambols again and display her kittenish nature. "All right, all right!" said the old count. "He always flares up! This Buonaparte has turned all their heads; they all think of how he rose from an ensign and became Emperor. Well, well, God grant it," he added, not noticing his visitor's sarcastic smile. The elders began talking about Bonaparte. Julie Karagina turned to young Rostov. "What a pity you weren't at the Arkharovs' on Thursday. It was so dull without you," said she, giving him a tender smile. The young man, flattered, sat down nearer to her with a coquettish smile, and engaged the smiling Julie in a confidential conversation without at all noticing that his involuntary smile had stabbed the heart of Sonya, who blushed and smiled unnaturally. In the midst of his talk he glanced round at her. She gave him a passionately angry glance, and hardly able to restrain her tears and maintain the artificial smile on her lips, she got up and left the room. All Nicholas' animation vanished. He waited for the first pause in the conversation, and then with a distressed face left the room to find Sonya. "How plainly all these young people wear their hearts on their sleeves!" said Anna Mikhaylovna, pointing to Nicholas as he went out. "Cousinage--dangereux voisinage;"* she added. *Cousinhood is a dangerous neighborhood. "Yes," said the countess when the brightness these young people had brought into the room had vanished; and as if answering a question no one had put but which was always in her mind, "and how much suffering, how much anxiety one has had to go through that we might rejoice in them now! And yet really the anxiety is greater now than the joy. One is always, always anxious! Especially just at this age, so dangerous both for girls and boys." "It all depends on the bringing up," remarked the visitor. "Yes, you're quite right," continued the countess. "Till now I have always, thank God, been my children's friend and had their full confidence," said she, repeating the mistake of so many parents who imagine that their children have no secrets from them. "I know I shall always be my daughters' first confidante, and that if Nicholas, with his impulsive nature, does get into mischief (a boy can't help it), he will all the same never be like those Petersburg young men." "Yes, they are splendid, splendid youngsters," chimed in the count, who always solved questions that seemed to him perplexing by deciding that everything was splendid. "Just fancy: wants to be an hussar. What's one to do, my dear?" "What a charming creature your younger girl is," said the visitor; "a little volcano!" "Yes, a regular volcano," said the count. "Takes after me! And what a voice she has; though she's my daughter, I tell the truth when I say she'll be a singer, a second Salomoni! We have engaged an Italian to give her lessons." "Isn't she too young? I have heard that it harms the voice to train it at that age." "Oh no, not at all too young!" replied the count. "Why, our mothers used to be married at twelve or thirteen." "And she's in love with Boris already. Just fancy!" said the countess with a gentle smile, looking at Boris' and went on, evidently concerned with a thought that always occupied her: "Now you see if I were to be severe with her and to forbid it... goodness knows what they might be up to on the sly" (she meant that they would be kissing), "but as it is, I know every word she utters. She will come running to me of her own accord in the evening and tell me everything. Perhaps I spoil her, but really that seems the best plan. With her elder sister I was stricter." "Yes, I was brought up quite differently," remarked the handsome elder daughter, Countess Vera, with a smile. But the smile did not enhance Vera's beauty as smiles generally do; on the contrary it gave her an unnatural, and therefore unpleasant, expression. Vera was good-looking, not at all stupid, quick at learning, was well brought up, and had a pleasant voice; what she said was true and appropriate, yet, strange to say, everyone- the visitors and countess alike--turned to look at her as if wondering why she had said it, and they all felt awkward. "People are always too clever with their eldest children and try to make something exceptional of them," said the visitor. "What's the good of denying it, my dear? Our dear countess was too clever with Vera," said the count. "Well, what of that? She's turned out splendidly all the same," he added, winking at Vera. The guests got up and took their leave, promising to return to dinner. "What manners! I thought they would never go," said the countess, when she had seen her guests out. CHAPTER XIII When Natasha ran out of the drawing room she only went as far as the conservatory. There she paused and stood listening to the conversation in the drawing room, waiting for Boris to come out. She was already growing impatient, and stamped her foot, ready to cry at his not coming at once, when she heard the young man's discreet steps approaching neither quickly nor slowly. At this Natasha dashed swiftly among the flower tubs and hid there. Boris paused in the middle of the room, looked round, brushed a little dust from the sleeve of his uniform, and going up to a mirror examined his handsome face. Natasha, very still, peered out from her ambush, waiting to see what he would do. He stood a little while before the glass, smiled, and walked toward the other door. Natasha was about to call him but changed her mind. "Let him look for me," thought she. Hardly had Boris gone than Sonya, flushed, in tears, and muttering angrily, came in at the other door. Natasha checked her first impulse to run out to her, and remained in her hiding place, watching--as under an invisible cap--to see what went on in the world. She was experiencing a new and peculiar pleasure. Sonya, muttering to herself, kept looking round toward the drawing-room door. It opened and Nicholas came in. "Sonya, what is the matter with you? How can you?" said he, running up to her. "It's nothing, nothing; leave me alone!" sobbed Sonya. "Ah, I know what it is." "Well, if you do, so much the better, and you can go back to her!" "So-o-onya! Look here! How can you torture me and yourself like that, for a mere fancy?" said Nicholas taking her hand. Sonya did not pull it away, and left off crying. Natasha, not stirring and scarcely breathing, watched from her ambush with sparkling eyes. "What will happen now?" thought she. "Sonya! What is anyone in the world to me? You alone are everything!" said Nicholas. "And I will prove it to you." "I don't like you to talk like that." "Well, then, I won't; only forgive me, Sonya!" He drew her to him and kissed her. "Oh, how nice," thought Natasha; and when Sonya and Nicholas had gone out of the conservatory she followed and called Boris to her. "Boris, come here," said she with a sly and significant look. "I have something to tell you. Here, here!" and she led him into the conservatory to the place among the tubs where she had been hiding. Boris followed her, smiling. "What is the something?" asked he. She grew confused, glanced round, and, seeing the doll she had thrown down on one of the tubs, picked it up. "Kiss the doll," said she. Boris looked attentively and kindly at her eager face, but did not reply. "Don't you want to? Well, then, come here," said she, and went further in among the plants and threw down the doll. "Closer, closer!" she whispered. She caught the young officer by his cuffs, and a look of solemnity and fear appeared on her flushed face. "And me? Would you like to kiss me?" she whispered almost inaudibly, glancing up at him from under her brows, smiling, and almost crying from excitement. Boris blushed. "How funny you are!" he said, bending down to her and blushing still more, but he waited and did nothing. Suddenly she jumped up onto a tub to be higher than he, embraced him so that both her slender bare arms clasped him above his neck, and, tossing back her hair, kissed him full on the lips. Then she slipped down among the flowerpots on the other side of the tubs and stood, hanging her head. "Natasha," he said, "you know that I love you, but..." "You are in love with me?" Natasha broke in. "Yes, I am, but please don't let us do like that.... In another four years... then I will ask for your hand." Natasha considered. "Thirteen, fourteen, fifteen, sixteen," she counted on her slender little fingers. "All right! Then it's settled?" A smile of joy and satisfaction lit up her eager face. "Settled!" replied Boris. "Forever?" said the little girl. "Till death itself?" She took his arm and with a happy face went with him into the adjoining sitting room. CHAPTER XIV After receiving her visitors, the countess was so tired that she gave orders to admit no more, but the porter was told to be sure to invite to dinner all who came "to congratulate." The countess wished to have a tete-a-tete talk with the friend of her childhood, Princess Anna Mikhaylovna, whom she had not seen properly since she returned from Petersburg. Anna Mikhaylovna, with her tear-worn but pleasant face, drew her chair nearer to that of the countess. "With you I will be quite frank," said Anna Mikhaylovna. "There are not many left of us old friends! That's why I so value your friendship." Anna Mikhaylovna looked at Vera and paused. The countess pressed her friend's hand. "Vera," she said to her eldest daughter who was evidently not a favorite, "how is it you have so little tact? Don't you see you are not wanted here? Go to the other girls, or..." The handsome Vera smiled contemptuously but did not seem at all hurt. "If you had told me sooner, Mamma, I would have gone," she replied as she rose to go to her own room. But as she passed the sitting room she noticed two couples sitting, one pair at each window. She stopped and smiled scornfully. Sonya was sitting close to Nicholas who was copying out some verses for her, the first he had ever written. Boris and Natasha were at the other window and ceased talking when Vera entered. Sonya and Natasha looked at Vera with guilty, happy faces. It was pleasant and touching to see these little girls in love; but apparently the sight of them roused no pleasant feeling in Vera. "How often have I asked you not to take my things?" she said. "You have a room of your own," and she took the inkstand from Nicholas. "In a minute, in a minute," he said, dipping his pen. "You always manage to do things at the wrong time," continued Vera. "You came rushing into the drawing room so that everyone felt ashamed of you." Though what she said was quite just, perhaps for that very reason no one replied, and the four simply looked at one another. She lingered in the room with the inkstand in her hand. "And at your age what secrets can there be between Natasha and Boris, or between you two? It's all nonsense!" "Now, Vera, what does it matter to you?" said Natasha in defense, speaking very gently. She seemed that day to be more than ever kind and affectionate to everyone. "Very silly," said Vera. "I am ashamed of you. Secrets indeed!" "All have secrets of their own," answered Natasha, getting warmer. "We don't interfere with you and Berg." "I should think not," said Vera, "because there can never be anything wrong in my behavior. But I'll just tell Mamma how you are behaving with Boris." "Natalya Ilynichna behaves very well to me," remarked Boris. "I have nothing to complain of." "Don't, Boris! You are such a diplomat that it is really tiresome," said Natasha in a mortified voice that trembled slightly. (She used the word "diplomat," which was just then much in vogue among the children, in the special sense they attached to it.) "Why does she bother me?" And she added, turning to Vera, "You'll never understand it, because you've never loved anyone. You have no heart! You are a Madame de Genlis and nothing more" (this nickname, bestowed on Vera by Nicholas, was considered very stinging), "and your greatest pleasure is to be unpleasant to people! Go and flirt with Berg as much as you please," she finished quickly. "I shall at any rate not run after a young man before visitors..." "Well, now you've done what you wanted," put in Nicholas--"said unpleasant things to everyone and upset them. Let's go to the nursery." All four, like a flock of scared birds, got up and left the room. "The unpleasant things were said to me," remarked Vera, "I said none to anyone." "Madame de Genlis! Madame de Genlis!" shouted laughing voices through the door. The handsome Vera, who produced such an irritating and unpleasant effect on everyone, smiled and, evidently unmoved by what had been said to her, went to the looking glass and arranged her hair and scarf. Looking at her own handsome face she seemed to become still colder and calmer. In the drawing room the conversation was still going on. "Ah, my dear," said the countess, "my life is not all roses either. Don't I know that at the rate we are living our means won't last long? It's all the Club and his easygoing nature. Even in the country do we get any rest? Theatricals, hunting, and heaven knows what besides! But don't let's talk about me; tell me how you managed everything. I often wonder at you, Annette--how at your age you can rush off alone in a carriage to Moscow, to Petersburg, to those ministers and great people, and know how to deal with them all! It's quite astonishing. How did you get things settled? I couldn't possibly do it." "Ah, my love," answered Anna Mikhaylovna, "God grant you never know what it is to be left a widow without means and with a son you love to distraction! One learns many things then," she added with a certain pride. "That lawsuit taught me much. When I want to see one of those big people I write a note: 'Princess So-and-So desires an interview with So and-So,' and then I take a cab and go myself two, three, or four times--till I get what I want. I don't mind what they think of me." "Well, and to whom did you apply about Bory?" asked the countess. "You see yours is already an officer in the Guards, while my Nicholas is going as a cadet. There's no one to interest himself for him. To whom did you apply?" "To Prince Vasili. He was so kind. He at once agreed to everything, and put the matter before the Emperor," said Princess Anna Mikhaylovna enthusiastically, quite forgetting all the humiliation she had endured to gain her end. "Has Prince Vasili aged much?" asked the countess. "I have not seen him since we acted together at the Rumyantsovs' theatricals. I expect he has forgotten me. He paid me attentions in those days," said the countess, with a smile. "He is just the same as ever," replied Anna Mikhaylovna, "overflowing with amiability. His position has not turned his head at all. He said to me, 'I am sorry I can do so little for you, dear Princess. I am at your command.' Yes, he is a fine fellow and a very kind relation. But, Nataly, you know my love for my son: I would do anything for his happiness! And my affairs are in such a bad way that my position is now a terrible one," continued Anna Mikhaylovna, sadly, dropping her voice. "My wretched lawsuit takes all I have and makes no progress. Would you believe it, I have literally not a penny and don't know how to equip Boris." She took out her handkerchief and began to cry. "I need five hundred rubles, and have only one twenty-five-ruble note. I am in such a state.... My only hope now is in Count Cyril Vladimirovich Bezukhov. If he will not assist his godson--you know he is Bory's godfather--and allow him something for his maintenance, all my trouble will have been thrown away.... I shall not be able to equip him." The countess' eyes filled with tears and she pondered in silence. "I often think, though, perhaps it's a sin," said the princess, "that here lives Count Cyril Vladimirovich Bezukhov so rich, all alone... that tremendous fortune... and what is his life worth? It's a burden to him, and Bory's life is only just beginning...." "Surely he will leave something to Boris," said the countess. "Heaven only knows, my dear! These rich grandees are so selfish. Still, I will take Boris and go to see him at once, and I shall speak to him straight out. Let people think what they will of me, it's really all the same to me when my son's fate is at stake." The princess rose. "It's now two o'clock and you dine at four. There will just be time." And like a practical Petersburg lady who knows how to make the most of time, Anna Mikhaylovna sent someone to call her son, and went into the anteroom with him. "Good-by, my dear," said she to the countess who saw her to the door, and added in a whisper so that her son should not hear, "Wish me good luck." "Are you going to Count Cyril Vladimirovich, my dear?" said the count coming out from the dining hall into the anteroom, and he added: "If he is better, ask Pierre to dine with us. He has been to the house, you know, and danced with the children. Be sure to invite him, my dear. We will see how Taras distinguishes himself today. He says Count Orlov never gave such a dinner as ours will be!" CHAPTER XV "My dear Boris," said Princess Anna Mikhaylovna to her son as Countess Rostova's carriage in which they were seated drove over the straw covered street and turned into the wide courtyard of Count Cyril Vladimirovich Bezukhov's house. "My dear Boris," said the mother, drawing her hand from beneath her old mantle and laying it timidly and tenderly on her son's arm, "be affectionate and attentive to him. Count Cyril Vladimirovich is your godfather after all, your future depends on him. Remember that, my dear, and be nice to him, as you so well know how to be." "If only I knew that anything besides humiliation would come of it..." answered her son coldly. "But I have promised and will do it for your sake." Although the hall porter saw someone's carriage standing at the entrance, after scrutinizing the mother and son (who without asking to be announced had passed straight through the glass porch between the rows of statues in niches) and looking significantly at the lady's old cloak, he asked whether they wanted the count or the princesses, and, hearing that they wished to see the count, said his excellency was worse today, and that his excellency was not receiving anyone. "We may as well go back," said the son in French. "My dear!" exclaimed his mother imploringly, again laying her hand on his arm as if that touch might soothe or rouse him. Boris said no more, but looked inquiringly at his mother without taking off his cloak. "My friend," said Anna Mikhaylovna in gentle tones, addressing the hall porter, "I know Count Cyril Vladimirovich is very ill... that's why I have come... I am a relation. I shall not disturb him, my friend... I only need see Prince Vasili Sergeevich: he is staying here, is he not? Please announce me." The hall porter sullenly pulled a bell that rang upstairs, and turned away. "Princess Drubetskaya to see Prince Vasili Sergeevich," he called to a footman dressed in knee breeches, shoes, and a swallow-tail coat, who ran downstairs and looked over from the halfway landing. The mother smoothed the folds of her dyed silk dress before a large Venetian mirror in the wall, and in her trodden-down shoes briskly ascended the carpeted stairs. "My dear," she said to her son, once more stimulating him by a touch, "you promised me!" The son, lowering his eyes, followed her quietly. They entered the large hall, from which one of the doors led to the apartments assigned to Prince Vasili. Just as the mother and son, having reached the middle of the hall, were about to ask their way of an elderly footman who had sprung up as they entered, the bronze handle of one of the doors turned and Prince Vasili came out--wearing a velvet coat with a single star on his breast, as was his custom when at home--taking leave of a good-looking, dark-haired man. This was the celebrated Petersburg doctor, Lorrain. "Then it is certain?" said the prince. "Prince, humanum est errare,* but..." replied the doctor, swallowing his r's, and pronouncing the Latin words with a French accent. *To err is human. "Very well, very well..." Seeing Anna Mikhaylovna and her son, Prince Vasili dismissed the doctor with a bow and approached them silently and with a look of inquiry. The son noticed that an expression of profound sorrow suddenly clouded his mother's face, and he smiled slightly. "Ah, Prince! In what sad circumstances we meet again! And how is our dear invalid?" said she, as though unaware of the cold offensive look fixed on her. Prince Vasili stared at her and at Boris questioningly and perplexed. Boris bowed politely. Prince Vasili without acknowledging the bow turned to Anna Mikhaylovna, answering her query by a movement of the head and lips indicating very little hope for the patient. "Is it possible?" exclaimed Anna Mikhaylovna. "Oh, how awful! It is terrible to think.... This is my son," she added, indicating Boris. "He wanted to thank you himself." Boris bowed again politely. "Believe me, Prince, a mother's heart will never forget what you have done for us." "I am glad I was able to do you a service, my dear Anna Mikhaylovna," said Prince Vasili, arranging his lace frill, and in tone and manner, here in Moscow to Anna Mikhaylovna whom he had placed under an obligation, assuming an air of much greater importance than he had done in Petersburg at Anna Scherer's reception. "Try to serve well and show yourself worthy," added he, addressing Boris with severity. "I am glad.... Are you here on leave?" he went on in his usual tone of indifference. "I am awaiting orders to join my new regiment, your excellency," replied Boris, betraying neither annoyance at the prince's brusque manner nor a desire to enter into conversation, but speaking so quietly and respectfully that the prince gave him a searching glance. "Are you living with your mother?" "I am living at Countess Rostova's," replied Boris, again adding, "your excellency." "That is, with Ilya Rostov who married Nataly Shinshina," said Anna Mikhaylovna. "I know, I know," answered Prince Vasili in his monotonous voice. "I never could understand how Nataly made up her mind to marry that unlicked bear! A perfectly absurd and stupid fellow, and a gambler too, I am told." "But a very kind man, Prince," said Anna Mikhaylovna with a pathetic smile, as though she too knew that Count Rostov deserved this censure, but asked him not to be too hard on the poor old man. "What do the doctors say?" asked the princess after a pause, her worn face again expressing deep sorrow. "They give little hope," replied the prince. "And I should so like to thank Uncle once for all his kindness to me and Boris. He is his godson," she added, her tone suggesting that this fact ought to give Prince Vasili much satisfaction. Prince Vasili became thoughtful and frowned. Anna Mikhaylovna saw that he was afraid of finding in her a rival for Count Bezukhov's fortune, and hastened to reassure him. "If it were not for my sincere affection and devotion to Uncle," said she, uttering the word with peculiar assurance and unconcern, "I know his character: noble, upright... but you see he has no one with him except the young princesses.... They are still young...." She bent her head and continued in a whisper: "Has he performed his final duty, Prince? How priceless are those last moments! It can make things no worse, and it is absolutely necessary to prepare him if he is so ill. We women, Prince," and she smiled tenderly, "always know how to say these things. I absolutely must see him, however painful it may be for me. I am used to suffering." Evidently the prince understood her, and also understood, as he had done at Anna Pavlovna's, that it would be difficult to get rid of Anna Mikhaylovna. "Would not such a meeting be too trying for him, dear Anna Mikhaylovna?" said he. "Let us wait until evening. The doctors are expecting a crisis." "But one cannot delay, Prince, at such a moment! Consider that the welfare of his soul is at stake. Ah, it is awful: the duties of a Christian..." A door of one of the inner rooms opened and one of the princesses, the count's niece, entered with a cold, stern face. The length of her body was strikingly out of proportion to her short legs. Prince Vasili turned to her. "Well, how is he?" "Still the same; but what can you expect, this noise..." said the princess, looking at Anna Mikhaylovna as at a stranger. "Ah, my dear, I hardly knew you," said Anna Mikhaylovna with a happy smile, ambling lightly up to the count's niece. "I have come, and am at your service to help you nurse my uncle. I imagine what you have gone through," and she sympathetically turned up her eyes. The princess gave no reply and did not even smile, but left the room as Anna Mikhaylovna took off her gloves and, occupying the position she had conquered, settled down in an armchair, inviting Prince Vasili to take a seat beside her. "Boris," she said to her son with a smile, "I shall go in to see the count, my uncle; but you, my dear, had better go to Pierre meanwhile and don't forget to give him the Rostovs' invitation. They ask him to dinner. I suppose he won't go?" she continued, turning to the prince. "On the contrary," replied the prince, who had plainly become depressed, "I shall be only too glad if you relieve me of that young man.... Here he is, and the count has not once asked for him." He shrugged his shoulders. A footman conducted Boris down one flight of stairs and up another, to Pierre's rooms. CHAPTER XVI Pierre, after all, had not managed to choose a career for himself in Petersburg, and had been expelled from there for riotous conduct and sent to Moscow. The story told about him at Count Rostov's was true. Pierre had taken part in tying a policeman to a bear. He had now been for some days in Moscow and was staying as usual at his father's house. Though he expected that the story of his escapade would be already known in Moscow and that the ladies about his father- who were never favorably disposed toward him--would have used it to turn the count against him, he nevertheless on the day of his arrival went to his father's part of the house. Entering the drawing room, where the princesses spent most of their time, he greeted the ladies, two of whom were sitting at embroidery frames while a third read aloud. It was the eldest who was reading--the one who had met Anna Mikhaylovna. The two younger ones were embroidering: both were rosy and pretty and they differed only in that one had a little mole on her lip which made her much prettier. Pierre was received as if he were a corpse or a leper. The eldest princess paused in her reading and silently stared at him with frightened eyes; the second assumed precisely the same expression; while the youngest, the one with the mole, who was of a cheerful and lively disposition, bent over her frame to hide a smile probably evoked by the amusing scene she foresaw. She drew her wool down through the canvas and, scarcely able to refrain from laughing, stooped as if trying to make out the pattern. "How do you do, cousin?" said Pierre. "You don't recognize me?" "I recognize you only too well, too well." "How is the count? Can I see him?" asked Pierre, awkwardly as usual, but unabashed. "The count is suffering physically and mentally, and apparently you have done your best to increase his mental sufferings." "Can I see the count?" Pierre again asked. "Hm.... If you wish to kill him, to kill him outright, you can see him... Olga, go and see whether Uncle's beef tea is ready--it is almost time," she added, giving Pierre to understand that they were busy, and busy making his father comfortable, while evidently he, Pierre, was only busy causing him annoyance. Olga went out. Pierre stood looking at the sisters; then he bowed and said: "Then I will go to my rooms. You will let me know when I can see him." And he left the room, followed by the low but ringing laughter of the sister with the mole. Next day Prince Vasili had arrived and settled in the count's house. He sent for Pierre and said to him: "My dear fellow, if you are going to behave here as you did in Petersburg, you will end very badly; that is all I have to say to you. The count is very, very ill, and you must not see him at all." Since then Pierre had not been disturbed and had spent the whole time in his rooms upstairs. When Boris appeared at his door Pierre was pacing up and down his room, stopping occasionally at a corner to make menacing gestures at the wall, as if running a sword through an invisible foe, and glaring savagely over his spectacles, and then again resuming his walk, muttering indistinct words, shrugging his shoulders and gesticulating. "England is done for," said he, scowling and pointing his finger at someone unseen. "Mr. Pitt, as a traitor to the nation and to the rights of man, is sentenced to..." But before Pierre--who at that moment imagined himself to be Napoleon in person and to have just effected the dangerous crossing of the Straits of Dover and captured London--could pronounce Pitt's sentence, he saw a well-built and handsome young officer entering his room. Pierre paused. He had left Moscow when Boris was a boy of fourteen, and had quite forgotten him, but in his usual impulsive and hearty way he took Boris by the hand with a friendly smile. "Do you remember me?" asked Boris quietly with a pleasant smile. "I have come with my mother to see the count, but it seems he is not well." "Yes, it seems he is ill. People are always disturbing him," answered Pierre, trying to remember who this young man was. Boris felt that Pierre did not recognize him but did not consider it necessary to introduce himself, and without experiencing the least embarrassment looked Pierre straight in the face. "Count Rostov asks you to come to dinner today," said he, after a considerable pause which made Pierre feel uncomfortable. "Ah, Count Rostov!" exclaimed Pierre joyfully. "Then you are his son, Ilya? Only fancy, I didn't know you at first. Do you remember how we went to the Sparrow Hills with Madame Jacquot?... It's such an age..." "You are mistaken," said Boris deliberately, with a bold and slightly sarcastic smile. "I am Boris, son of Princess Anna Mikhaylovna Drubetskaya. Rostov, the father, is Ilya, and his son is Nicholas. I never knew any Madame Jacquot." Pierre shook his head and arms as if attacked by mosquitoes or bees. "Oh dear, what am I thinking about? I've mixed everything up. One has so many relatives in Moscow! So you are Boris? Of course. Well, now we know where we are. And what do you think of the Boulogne expedition? The English will come off badly, you know, if Napoleon gets across the Channel. I think the expedition is quite feasible. If only Villeneuve doesn't make a mess of things!" Boris knew nothing about the Boulogne expedition; he did not read the papers and it was the first time he had heard Villeneuve's name. "We here in Moscow are more occupied with dinner parties and scandal than with politics," said he in his quiet ironical tone. "I know nothing about it and have not thought about it. Moscow is chiefly busy with gossip," he continued. "Just now they are talking about you and your father." Pierre smiled in his good-natured way as if afraid for his companion's sake that the latter might say something he would afterwards regret. But Boris spoke distinctly, clearly, and dryly, looking straight into Pierre's eyes. "Moscow has nothing else to do but gossip," Boris went on. "Everybody is wondering to whom the count will leave his fortune, though he may perhaps outlive us all, as I sincerely hope he will..." "Yes, it is all very horrid," interrupted Pierre, "very horrid." Pierre was still afraid that this officer might inadvertently say something disconcerting to himself. "And it must seem to you," said Boris flushing slightly, but not changing his tone or attitude, "it must seem to you that everyone is trying to get something out of the rich man?" "So it does," thought Pierre. "But I just wish to say, to avoid misunderstandings, that you are quite mistaken if you reckon me or my mother among such people. We are very poor, but for my own part at any rate, for the very reason that your father is rich, I don't regard myself as a relation of his, and neither I nor my mother would ever ask or take anything from him." For a long time Pierre could not understand, but when he did, he jumped up from the sofa, seized Boris under the elbow in his quick, clumsy way, and, blushing far more than Boris, began to speak with a feeling of mingled shame and vexation. "Well, this is strange! Do you suppose I... who could think?... I know very well..." But Boris again interrupted him. "I am glad I have spoken out fully. Perhaps you did not like it? You must excuse me," said he, putting Pierre at ease instead of being put at ease by him, "but I hope I have not offended you. I always make it a rule to speak out... Well, what answer am I to take? Will you come to dinner at the Rostovs'?" And Boris, having apparently relieved himself of an onerous duty and extricated himself from an awkward situation and placed another in it, became quite pleasant again. "No, but I say," said Pierre, calming down, "you are a wonderful fellow! What you have just said is good, very good. Of course you don't know me. We have not met for such a long time... not since we were children. You might think that I... I understand, quite understand. I could not have done it myself, I should not have had the courage, but it's splendid. I am very glad to have made your acquaintance. It's queer," he added after a pause, "that you should have suspected me!" He began to laugh. "Well, what of it! I hope we'll get better acquainted," and he pressed Boris' hand. "Do you know, I have not once been in to see the count. He has not sent for me.... I am sorry for him as a man, but what can one do?" "And so you think Napoleon will manage to get an army across?" asked Boris with a smile. Pierre saw that Boris wished to change the subject, and being of the same mind he began explaining the advantages and disadvantages of the Boulogne expedition. A footman came in to summon Boris--the princess was going. Pierre, in order to make Boris' better acquaintance, promised to come to dinner, and warmly pressing his hand looked affectionately over his spectacles into Boris' eyes. After he had gone Pierre continued pacing up and down the room for a long time, no longer piercing an imaginary foe with his imaginary sword, but smiling at the remembrance of that pleasant, intelligent, and resolute young man. As often happens in early youth, especially to one who leads a lonely life, he felt an unaccountable tenderness for this young man and made up his mind that they would be friends. Prince Vasili saw the princess off. She held a handkerchief to her eyes and her face was tearful. "It is dreadful, dreadful!" she was saying, "but cost me what it may I shall do my duty. I will come and spend the night. He must not be left like this. Every moment is precious. I can't think why his nieces put it off. Perhaps God will help me to find a way to prepare him!... Adieu, Prince! May God support you..." "Adieu, ma bonne," answered Prince Vasili turning away from her. "Oh, he is in a dreadful state," said the mother to her son when they were in the carriage. "He hardly recognizes anybody." "I don't understand, Mamma--what is his attitude to Pierre?" asked the son. "The will will show that, my dear; our fate also depends on it." "But why do you expect that he will leave us anything?" "Ah, my dear! He is so rich, and we are so poor!" "Well, that is hardly a sufficient reason, Mamma..." "Oh, Heaven! How ill he is!" exclaimed the mother. CHAPTER XVII After Anna Mikhaylovna had driven off with her son to visit Count Cyril Vladimirovich Bezukhov, Countess Rostova sat for a long time all alone applying her handkerchief to her eyes. At last she rang. "What is the matter with you, my dear?" she said crossly to the maid who kept her waiting some minutes. "Don't you wish to serve me? Then I'll find you another place." The countess was upset by her friend's sorrow and humiliating poverty, and was therefore out of sorts, a state of mind which with her always found expression in calling her maid "my dear" and speaking to her with exaggerated politeness. "I am very sorry, ma'am," answered the maid. "Ask the count to come to me." The count came waddling in to see his wife with a rather guilty look as usual. "Well, little countess? What a saute of game au madere we are to have, my dear! I tasted it. The thousand rubles I paid for Taras were not ill-spent. He is worth it!" He sat down by his wife, his elbows on his knees and his hands ruffling his gray hair. "What are your commands, little countess?" "You see, my dear... What's that mess?" she said, pointing to his waistcoat. "It's the saute, most likely," she added with a smile. "Well, you see, Count, I want some money." Her face became sad. "Oh, little countess!"... and the count began bustling to get out his pocketbook. "I want a great deal, Count! I want five hundred rubles," and taking out her cambric handkerchief she began wiping her husband's waistcoat. "Yes, immediately, immediately! Hey, who's there?" he called out in a tone only used by persons who are certain that those they call will rush to obey the summons. "Send Dmitri to me!" Dmitri, a man of good family who had been brought up in the count's house and now managed all his affairs, stepped softly into the room. "This is what I want, my dear fellow," said the count to the deferential young man who had entered. "Bring me..." he reflected a moment, "yes, bring me seven hundred rubles, yes! But mind, don't bring me such tattered and dirty notes as last time, but nice clean ones for the countess." "Yes, Dmitri, clean ones, please," said the countess, sighing deeply. "When would you like them, your excellency?" asked Dmitri. "Allow me to inform you... But, don't be uneasy," he added, noticing that the count was beginning to breathe heavily and quickly which was always a sign of approaching anger. "I was forgetting... Do you wish it brought at once?" "Yes, yes; just so! Bring it. Give it to the countess." "What a treasure that Dmitri is," added the count with a smile when the young man had departed. "There is never any 'impossible' with him. That's a thing I hate! Everything is possible." "Ah, money, Count, money! How much sorrow it causes in the world," said the countess. "But I am in great need of this sum." "You, my little countess, are a notorious spendthrift," said the count, and having kissed his wife's hand he went back to his study. When Anna Mikhaylovna returned from Count Bezukhov's the money, all in clean notes, was lying ready under a handkerchief on the countess' little table, and Anna Mikhaylovna noticed that something was agitating her. "Well, my dear?" asked the countess. "Oh, what a terrible state he is in! One would not know him, he is so ill! I was only there a few moments and hardly said a word..." "Annette, for heaven's sake don't refuse me," the countess began, with a blush that looked very strange on her thin, dignified, elderly face, and she took the money from under the handkerchief. Anna Mikhaylovna instantly guessed her intention and stooped to be ready to embrace the countess at the appropriate moment. "This is for Boris from me, for his outfit." Anna Mikhaylovna was already embracing her and weeping. The countess wept too. They wept because they were friends, and because they were kindhearted, and because they--friends from childhood--had to think about such a base thing as money, and because their youth was over.... But those tears were pleasant to them both. CHAPTER XVIII Countess Rostova, with her daughters and a large number of guests, was already seated in the drawing room. The count took the gentlemen into his study and showed them his choice collection of Turkish pipes. From time to time he went out to ask: "Hasn't she come yet?" They were expecting Marya Dmitrievna Akhrosimova, known in society as le terrible dragon, a lady distinguished not for wealth or rank, but for common sense and frank plainness of speech. Marya Dmitrievna was known to the Imperial family as well as to all Moscow and Petersburg, and both cities wondered at her, laughed privately at her rudenesses, and told good stories about her, while none the less all without exception respected and feared her. In the count's room, which was full of tobacco smoke, they talked of war that had been announced in a manifesto, and about the recruiting. None of them had yet seen the manifesto, but they all knew it had appeared. The count sat on the sofa between two guests who were smoking and talking. He neither smoked nor talked, but bending his head first to one side and then to the other watched the smokers with evident pleasure and listened to the conversation of his two neighbors, whom he egged on against each other. One of them was a sallow, clean-shaven civilian with a thin and wrinkled face, already growing old, though he was dressed like a most fashionable young man. He sat with his legs up on the sofa as if quite at home and, having stuck an amber mouthpiece far into his mouth, was inhaling the smoke spasmodically and screwing up his eyes. This was an old bachelor, Shinshin, a cousin of the countess', a man with "a sharp tongue" as they said in Moscow society. He seemed to be condescending to his companion. The latter, a fresh, rosy officer of the Guards, irreproachably washed, brushed, and buttoned, held his pipe in the middle of his mouth and with red lips gently inhaled the smoke, letting it escape from his handsome mouth in rings. This was Lieutenant Berg, an officer in the Semenov regiment with whom Boris was to travel to join the army, and about whom Natasha had, teased her elder sister Vera, speaking of Berg as her "intended." The count sat between them and listened attentively. His favorite occupation when not playing boston, a card game he was very fond of, was that of listener, especially when he succeeded in setting two loquacious talkers at one another. "Well, then, old chap, mon tres honorable Alphonse Karlovich," said Shinshin, laughing ironically and mixing the most ordinary Russian expressions with the choicest French phrases--which was a peculiarity of his speech. "Vous comptez vous faire des rentes sur l'etat;* you want to make something out of your company?" *You expect to make an income out of the government. "No, Peter Nikolaevich; I only want to show that in the cavalry the advantages are far less than in the infantry. Just consider my own position now, Peter Nikolaevich..." Berg always spoke quietly, politely, and with great precision. His conversation always related entirely to himself; he would remain calm and silent when the talk related to any topic that had no direct bearing on himself. He could remain silent for hours without being at all put out of countenance himself or making others uncomfortable, but as soon as the conversation concerned himself he would begin to talk circumstantially and with evident satisfaction. "Consider my position, Peter Nikolaevich. Were I in the cavalry I should get not more than two hundred rubles every four months, even with the rank of lieutenant; but as it is I receive two hundred and thirty," said he, looking at Shinshin and the count with a joyful, pleasant smile, as if it were obvious to him that his success must always be the chief desire of everyone else. "Besides that, Peter Nikolaevich, by exchanging into the Guards I shall be in a more prominent position," continued Berg, "and vacancies occur much more frequently in the Foot Guards. Then just think what can be done with two hundred and thirty rubles! I even manage to put a little aside and to send something to my father," he went on, emitting a smoke ring. "La balance y est...* A German knows how to skin a flint, as the proverb says," remarked Shinshin, moving his pipe to the other side of his mouth and winking at the count. *So that squares matters. The count burst out laughing. The other guests seeing that Shinshin was talking came up to listen. Berg, oblivious of irony or indifference, continued to explain how by exchanging into the Guards he had already gained a step on his old comrades of the Cadet Corps; how in wartime the company commander might get killed and he, as senior in the company, might easily succeed to the post; how popular he was with everyone in the regiment, and how satisfied his father was with him. Berg evidently enjoyed narrating all this, and did not seem to suspect that others, too, might have their own interests. But all he said was so prettily sedate, and the naivete of his youthful egotism was so obvious, that he disarmed his hearers. "Well, my boy, you'll get along wherever you go--foot or horse--that I'll warrant," said Shinshin, patting him on the shoulder and taking his feet off the sofa. Berg smiled joyously. The count, by his guests, went into the drawing room. It was just the moment before a big dinner when the assembled guests, expecting the summons to zakuska,* avoid engaging in any long conversation but think it necessary to move about and talk, in order to show that they are not at all impatient for their food. The host and hostess look toward the door, and now and then glance at one another, and the visitors try to guess from these glances who, or what, they are waiting for--some important relation who has not yet arrived, or a dish that is not yet ready. *Hors d'oeuvres. Pierre had come just at dinnertime and was sitting awkwardly in the middle of the drawing room on the first chair he had come across, blocking the way for everyone. The countess tried to make him talk, but he went on naively looking around through his spectacles as if in search of somebody and answered all her questions in monosyllables. He was in the way and was the only one who did not notice the fact. Most of the guests, knowing of the affair with the bear, looked with curiosity at this big, stout, quiet man, wondering how such a clumsy, modest fellow could have played such a prank on a policeman. "You have only lately arrived?" the countess asked him. "Oui, madame," replied he, looking around him. "You have not yet seen my husband?" "Non, madame." He smiled quite inappropriately. "You have been in Paris recently, I believe? I suppose it's very interesting." "Very interesting." The countess exchanged glances with Anna Mikhaylovna. The latter understood that she was being asked to entertain this young man, and sitting down beside him she began to speak about his father; but he answered her, as he had the countess, only in monosyllables. The other guests were all conversing with one another. "The Razumovskis... It was charming... You are very kind... Countess Apraksina..." was heard on all sides. The countess rose and went into the ballroom. "Marya Dmitrievna?" came her voice from there. "Herself," came the answer in a rough voice, and Marya Dmitrievna entered the room. All the unmarried ladies and even the married ones except the very oldest rose. Marya Dmitrievna paused at the door. Tall and stout, holding high her fifty-year-old head with its gray curls, she stood surveying the guests, and leisurely arranged her wide sleeves as if rolling them up. Marya Dmitrievna always spoke in Russian. "Health and happiness to her whose name day we are keeping and to her children," she said, in her loud, full-toned voice which drowned all others. "Well, you old sinner," she went on, turning to the count who was kissing her hand, "you're feeling dull in Moscow, I daresay? Nowhere to hunt with your dogs? But what is to be done, old man? Just see how these nestlings are growing up," and she pointed to the girls. "You must look for husbands for them whether you like it or not...." "Well," said she, "how's my Cossack?" (Marya Dmitrievna always called Natasha a Cossack) and she stroked the child's arm as she came up fearless and gay to kiss her hand. "I know she's a scamp of a girl, but I like her." She took a pair of pear-shaped ruby earrings from her huge reticule and, having given them to the rosy Natasha, who beamed with the pleasure of her saint's-day fete, turned away at once and addressed herself to Pierre. "Eh, eh, friend! Come here a bit," said she, assuming a soft high tone of voice. "Come here, my friend..." and she ominously tucked up her sleeves still higher. Pierre approached, looking at her in a childlike way through his spectacles. "Come nearer, come nearer, friend! I used to be the only one to tell your father the truth when he was in favor, and in your case it's my evident duty." She paused. All were silent, expectant of what was to follow, for this was dearly only a prelude. "A fine lad! My word! A fine lad!... His father lies on his deathbed and he amuses himself setting a policeman astride a bear! For shame, sir, for shame! It would be better if you went to the war." She turned away and gave her hand to the count, who could hardly keep from laughing. "Well, I suppose it is time we were at table?" said Marya Dmitrievna. The count went in first with Marya Dmitrievna, the countess followed on the arm of a colonel of hussars, a man of importance to them because Nicholas was to go with him to the regiment; then came Anna Mikhaylovna with Shinshin. Berg gave his arm to Vera. The smiling Julie Karagina went in with Nicholas. After them other couples followed, filling the whole dining hall, and last of all the children, tutors, and governesses followed singly. The footmen began moving about, chairs scraped, the band struck up in the gallery, and the guests settled down in their places. Then the strains of the count's household band were replaced by the clatter of knives and forks, the voices of visitors, and the soft steps of the footmen. At one end of the table sat the countess with Marya Dmitrievna on her right and Anna Mikhaylovna on her left, the other lady visitors were farther down. At the other end sat the count, with the hussar colonel on his left and Shinshin and the other male visitors on his right. Midway down the long table on one side sat the grownup young people: Vera beside Berg, and Pierre beside Boris; and on the other side, the children, tutors, and governesses. From behind the crystal decanters and fruit vases the count kept glancing at his wife and her tall cap with its light-blue ribbons, and busily filled his neighbors' glasses, not neglecting his own. The countess in turn, without omitting her duties as hostess, threw significant glances from behind the pineapples at her husband whose face and bald head seemed by their redness to contrast more than usual with his gray hair. At the ladies' end an even chatter of voices was heard all the time, at the men's end the voices sounded louder and louder, especially that of the colonel of hussars who, growing more and more flushed, ate and drank so much that the count held him up as a pattern to the other guests. Berg with tender smiles was saying to Vera that love is not an earthly but a heavenly feeling. Boris was telling his new friend Pierre who the guests were and exchanging glances with Natasha, who was sitting opposite. Pierre spoke little but examined the new faces, and ate a great deal. Of the two soups he chose turtle with savory patties and went on to the game without omitting a single dish or one of the wines. These latter the butler thrust mysteriously forward, wrapped in a napkin, from behind the next man's shoulders and whispered: "Dry Madeira"... "Hungarian"... or "Rhine wine" as the case might be. Of the four crystal glasses engraved with the count's monogram that stood before his plate, Pierre held out one at random and drank with enjoyment, gazing with ever-increasing amiability at the other guests. Natasha, who sat opposite, was looking at Boris as girls of thirteen look at the boy they are in love with and have just kissed for the first time. Sometimes that same look fell on Pierre, and that funny lively little girl's look made him inclined to laugh without knowing why. Nicholas sat at some distance from Sonya, beside Julie Karagina, to whom he was again talking with the same involuntary smile. Sonya wore a company smile but was evidently tormented by jealousy; now she turned pale, now blushed and strained every nerve to overhear what Nicholas and Julie were saying to one another. The governess kept looking round uneasily as if preparing to resent any slight that might be put upon the children. The German tutor was trying to remember all the dishes, wines, and kinds of dessert, in order to send a full description of the dinner to his people in Germany; and he felt greatly offended when the butler with a bottle wrapped in a napkin passed him by. He frowned, trying to appear as if he did not want any of that wine, but was mortified because no one would understand that it was not to quench his thirst or from greediness that he wanted it, but simply from a conscientious desire for knowledge. CHAPTER XIX At the men's end of the table the talk grew more and more animated. The colonel told them that the declaration of war had already appeared in Petersburg and that a copy, which he had himself seen, had that day been forwarded by courier to the commander in chief. "And why the deuce are we going to fight Bonaparte?" remarked Shinshin. "He has stopped Austria's cackle and I fear it will be our turn next." The colonel was a stout, tall, plethoric German, evidently devoted to the service and patriotically Russian. He resented Shinshin's remark. "It is for the reasson, my goot sir," said he, speaking with a German accent, "for the reasson zat ze Emperor knows zat. He declares in ze manifessto zat he cannot fiew wiz indifference ze danger vreatening Russia and zat ze safety and dignity of ze Empire as vell as ze sanctity of its alliances..." he spoke this last word with particular emphasis as if in it lay the gist of the matter. Then with the unerring official memory that characterized him he repeated from the opening words of the manifesto: ... and the wish, which constitutes the Emperor's sole and absolute aim--to establish peace in Europe on firm foundations--has now decided him to despatch part of the army abroad and to create a new condition for the attainment of that purpose. "Zat, my dear sir, is vy..." he concluded, drinking a tumbler of wine with dignity and looking to the count for approval. "Connaissez-vous le Proverbe:* 'Jerome, Jerome, do not roam, but turn spindles at home!'?" said Shinshin, puckering his brows and smiling. "Cela nous convient a merveille.*[2] Suvorov now--he knew what he was about; yet they beat him a plate couture,*[3] and where are we to find Suvorovs now? Je vous demande un peu,"*[4] said he, continually changing from French to Russian. *Do you know the proverb? *[2] That suits us down to the ground. *[3] Hollow. *[4] I just ask you that. "Ve must vight to the last tr-r-op of our plood!" said the colonel, thumping the table; "and ve must tie for our Emperor, and zen all vill pe vell. And ve must discuss it as little as po-o-ossible"... he dwelt particularly on the word possible... "as po-o-ossible," he ended, again turning to the count. "Zat is how ve old hussars look at it, and zere's an end of it! And how do you, a young man and a young hussar, how do you judge of it?" he added, addressing Nicholas, who when he heard that the war was being discussed had turned from his partner with eyes and ears intent on the colonel. "I am quite of your opinion," replied Nicholas, flaming up, turning his plate round and moving his wineglasses about with as much decision and desperation as though he were at that moment facing some great danger. "I am convinced that we Russians must die or conquer," he concluded, conscious--as were others--after the words were uttered that his remarks were too enthusiastic and emphatic for the occasion and were therefore awkward. "What you said just now was splendid!" said his partner Julie. Sonya trembled all over and blushed to her ears and behind them and down to her neck and shoulders while Nicholas was speaking. Pierre listened to the colonel's speech and nodded approvingly. "That's fine," said he. "The young man's a real hussar!" shouted the colonel, again thumping the table. "What are you making such a noise about over there?" Marya Dmitrievna's deep voice suddenly inquired from the other end of the table. "What are you thumping the table for?" she demanded of the hussar, "and why are you exciting yourself? Do you think the French are here?" "I am speaking ze truce," replied the hussar with a smile. "It's all about the war," the count shouted down the table. "You know my son's going, Marya Dmitrievna? My son is going." "I have four sons in the army but still I don't fret. It is all in God's hands. You may die in your bed or God may spare you in a battle," replied Marya Dmitrievna's deep voice, which easily carried the whole length of the table. "That's true!" Once more the conversations concentrated, the ladies' at the one end and the men's at the other. "You won't ask," Natasha's little brother was saying; "I know you won't ask!" "I will," replied Natasha. Her face suddenly flushed with reckless and joyous resolution. She half rose, by a glance inviting Pierre, who sat opposite, to listen to what was coming, and turning to her mother: "Mamma!" rang out the clear contralto notes of her childish voice, audible the whole length of the table. "What is it?" asked the countess, startled; but seeing by her daughter's face that it was only mischief, she shook a finger at her sternly with a threatening and forbidding movement of her head. The conversation was hushed. "Mamma! What sweets are we going to have?" and Natasha's voice sounded still more firm and resolute. The countess tried to frown, but could not. Marya Dmitrievna shook her fat finger. "Cossack!" she said threateningly. Most of the guests, uncertain how to regard this sally, looked at the elders. "You had better take care!" said the countess. "Mamma! What sweets are we going to have?" Natasha again cried boldly, with saucy gaiety, confident that her prank would be taken in good part. Sonya and fat little Petya doubled up with laughter. "You see! I have asked," whispered Natasha to her little brother and to Pierre, glancing at him again. "Ice pudding, but you won't get any," said Marya Dmitrievna. Natasha saw there was nothing to be afraid of and so she braved even Marya Dmitrievna. "Marya Dmitrievna! What kind of ice pudding? I don't like ice cream." "Carrot ices." "No! What kind, Marya Dmitrievna? What kind?" she almost screamed; "I want to know!" Marya Dmitrievna and the countess burst out laughing, and all the guests joined in. Everyone laughed, not at Marya Dmitrievna's answer but at the incredible boldness and smartness of this little girl who had dared to treat Marya Dmitrievna in this fashion. Natasha only desisted when she had been told that there would be pineapple ice. Before the ices, champagne was served round. The band again struck up, the count and countess kissed, and the guests, leaving their seats, went up to "congratulate" the countess, and reached across the table to clink glasses with the count, with the children, and with one another. Again the footmen rushed about, chairs scraped, and in the same order in which they had entered but with redder faces, the guests returned to the drawing room and to the count's study. CHAPTER XX The card tables were drawn out, sets made up for boston, and the count's visitors settled themselves, some in the two drawing rooms, some in the sitting room, some in the library. The count, holding his cards fanwise, kept himself with difficulty from dropping into his usual after-dinner nap, and laughed at everything. The young people, at the countess' instigation, gathered round the clavichord and harp. Julie by general request played first. After she had played a little air with variations on the harp, she joined the other young ladies in begging Natasha and Nicholas, who were noted for their musical talent, to sing something. Natasha, who was treated as though she were grown up, was evidently very proud of this but at the same time felt shy. "What shall we sing?" she said. "'The Brook,'" suggested Nicholas. "Well, then, let's be quick. Boris, come here," said Natasha. "But where is Sonya?" She looked round and seeing that her friend was not in the room ran to look for her. Running into Sonya's room and not finding her there, Natasha ran to the nursery, but Sonya was not there either. Natasha concluded that she must be on the chest in the passage. The chest in the passage was the place of mourning for the younger female generation in the Rostov household. And there in fact was Sonya lying face downward on Nurse's dirty feather bed on the top of the chest, crumpling her gauzy pink dress under her, hiding her face with her slender fingers, and sobbing so convulsively that her bare little shoulders shook. Natasha's face, which had been so radiantly happy all that saint's day, suddenly changed: her eyes became fixed, and then a shiver passed down her broad neck and the corners of her mouth drooped. "Sonya! What is it? What is the matter?... Oo... Oo... Oo...!" And Natasha's large mouth widened, making her look quite ugly, and she began to wail like a baby without knowing why, except that Sonya was crying. Sonya tried to lift her head to answer but could not, and hid her face still deeper in the bed. Natasha wept, sitting on the blue-striped feather bed and hugging her friend. With an effort Sonya sat up and began wiping her eyes and explaining. "Nicholas is going away in a week's time, his... papers... have come... he told me himself... but still I should not cry," and she showed a paper she held in her hand--with the verses Nicholas had written, "still, I should not cry, but you can't... no one can understand... what a soul he has!" And she began to cry again because he had such a noble soul. "It's all very well for you... I am not envious... I love you and Boris also," she went on, gaining a little strength; "he is nice... there are no difficulties in your way.... But Nicholas is my cousin... one would have to... the Metropolitan himself... and even then it can't be done. And besides, if she tells Mamma" (Sonya looked upon the countess as her mother and called her so) "that I am spoiling Nicholas' career and am heartless and ungrateful, while truly... God is my witness," and she made the sign of the cross, "I love her so much, and all of you, only Vera... And what for? What have I done to her? I am so grateful to you that I would willingly sacrifice everything, only I have nothing...." Sonya could not continue, and again hid her face in her hands and in the feather bed. Natasha began consoling her, but her face showed that she understood all the gravity of her friend's trouble. "Sonya," she suddenly exclaimed, as if she had guessed the true reason of her friend's sorrow, "I'm sure Vera has said something to you since dinner? Hasn't she?" "Yes, these verses Nicholas wrote himself and I copied some others, and she found them on my table and said she'd show them to Mamma, and that I was ungrateful, and that Mamma would never allow him to marry me, but that he'll marry Julie. You see how he's been with her all day... Natasha, what have I done to deserve it?..." And again she began to sob, more bitterly than before. Natasha lifted her up, hugged her, and, smiling through her tears, began comforting her. "Sonya, don't believe her, darling! Don't believe her! Do you remember how we and Nicholas, all three of us, talked in the sitting room after supper? Why, we settled how everything was to be. I don't quite remember how, but don't you remember that it could all be arranged and how nice it all was? There's Uncle Shinshin's brother has married his first cousin. And we are only second cousins, you know. And Boris says it is quite possible. You know I have told him all about it. And he is so clever and so good!" said Natasha. "Don't you cry, Sonya, dear love, darling Sonya!" and she kissed her and laughed. "Vera's spiteful; never mind her! And all will come right and she won't say anything to Mamma. Nicholas will tell her himself, and he doesn't care at all for Julie." Natasha kissed her on the hair. Sonya sat up. The little kitten brightened, its eyes shone, and it seemed ready to lift its tail, jump down on its soft paws, and begin playing with the ball of worsted as a kitten should. "Do you think so?... Really? Truly?" she said, quickly smoothing her frock and hair. "Really, truly!" answered Natasha, pushing in a crisp lock that had strayed from under her friend's plaits. Both laughed. "Well, let's go and sing 'The Brook.'" "Come along!" "Do you know, that fat Pierre who sat opposite me is so funny!" said Natasha, stopping suddenly. "I feel so happy!" And she set off at a run along the passage. Sonya, shaking off some down which clung to her and tucking away the verses in the bosom of her dress close to her bony little chest, ran after Natasha down the passage into the sitting room with flushed face and light, joyous steps. At the visitors' request the young people sang the quartette, "The Brook," with which everyone was delighted. Then Nicholas sang a song he had just learned: At nighttime in the moon's fair glow How sweet, as fancies wander free, To feel that in this world there's one Who still is thinking but of thee! That while her fingers touch the harp Wafting sweet music music the lea, It is for thee thus swells her heart, Sighing its message out to thee... A day or two, then bliss unspoilt, But oh! till then I cannot live!... He had not finished the last verse before the young people began to get ready to dance in the large hall, and the sound of the feet and the coughing of the musicians were heard from the gallery. Pierre was sitting in the drawing-room where Shinshin had engaged him, as a man recently returned from abroad, in a political conversation in which several others joined but which bored Pierre. When the music began Natasha came in and walking straight up to Pierre said, laughing and blushing: "Mamma told me to ask you to join the dancers." "I am afraid of mixing the figures," Pierre replied; "but if you will be my teacher..." And lowering his big arm he offered it to the slender little girl. While the couples were arranging themselves and the musicians tuning up, Pierre sat down with his little partner. Natasha was perfectly happy; she was dancing with a grown-up man, who had been abroad. She was sitting in a conspicuous place and talking to him like a grown-up lady. She had a fan in her hand that one of the ladies had given her to hold. Assuming quite the pose of a society woman (heaven knows when and where she had learned it) she talked with her partner, fanning herself and smiling over the fan. "Dear, dear! Just look at her!" exclaimed the countess as she crossed the ballroom, pointing to Natasha. Natasha blushed and laughed. "Well, really, Mamma! Why should you? What is there to be surprised at?" In the midst of the third ecossaise there was a clatter of chairs being pushed back in the sitting room where the count and Marya Dmitrievna had been playing cards with the majority of the more distinguished and older visitors. They now, stretching themselves after sitting so long, and replacing their purses and pocketbooks, entered the ballroom. First came Marya Dmitrievna and the count, both with merry countenances. The count, with playful ceremony somewhat in ballet style, offered his bent arm to Marya Dmitrievna. He drew himself up, a smile of debonair gallantry lit up his face and as soon as the last figure of the ecossaise was ended, he clapped his hands to the musicians and shouted up to their gallery, addressing the first violin: "Semen! Do you know the Daniel Cooper?" This was the count's favorite dance, which he had danced in his youth. (Strictly speaking, Daniel Cooper was one figure of the anglaise.) "Look at Papa!" shouted Natasha to the whole company, and quite forgetting that she was dancing with a grown-up partner she bent her curly head to her knees and made the whole room ring with her laughter. And indeed everybody in the room looked with a smile of pleasure at the jovial old gentleman, who standing beside his tall and stout partner, Marya Dmitrievna, curved his arms, beat time, straightened his shoulders, turned out his toes, tapped gently with his foot, and, by a smile that broadened his round face more and more, prepared the onlookers for what was to follow. As soon as the provocatively gay strains of Daniel Cooper (somewhat resembling those of a merry peasant dance) began to sound, all the doorways of the ballroom were suddenly filled by the domestic serfs--the men on one side and the women on the other--who with beaming faces had come to see their master making merry. "Just look at the master! A regular eagle he is!" loudly remarked the nurse, as she stood in one of the doorways. The count danced well and knew it. But his partner could not and did not want to dance well. Her enormous figure stood erect, her powerful arms hanging down (she had handed her reticule to the countess), and only her stern but handsome face really joined in the dance. What was expressed by the whole of the count's plump figure, in Marya Dmitrievna found expression only in her more and more beaming face and quivering nose. But if the count, getting more and more into the swing of it, charmed the spectators by the unexpectedness of his adroit maneuvers and the agility with which he capered about on his light feet, Marya Dmitrievna produced no less impression by slight exertions--the least effort to move her shoulders or bend her arms when turning, or stamp her foot--which everyone appreciated in view of her size and habitual severity. The dance grew livelier and livelier. The other couples could not attract a moment's attention to their own evolutions and did not even try to do so. All were watching the count and Marya Dmitrievna. Natasha kept pulling everyone by sleeve or dress, urging them to "look at Papa!" though as it was they never took their eyes off the couple. In the intervals of the dance the count, breathing deeply, waved and shouted to the musicians to play faster. Faster, faster, and faster; lightly, more lightly, and yet more lightly whirled the count, flying round Marya Dmitrievna, now on his toes, now on his heels; until, turning his partner round to her seat, he executed the final pas, raising his soft foot backwards, bowing his perspiring head, smiling and making a wide sweep with his arm, amid a thunder of applause and laughter led by Natasha. Both partners stood still, breathing heavily and wiping their faces with their cambric handkerchiefs. "That's how we used to dance in our time, ma chere," said the count. "That was a Daniel Cooper!" exclaimed Marya Dmitrievna, tucking up her sleeves and puffing heavily. CHAPTER XXI While in the Rostovs' ballroom the sixth anglaise was being danced, to a tune in which the weary musicians blundered, and while tired footmen and cooks were getting the supper, Count Bezukhov had a sixth stroke. The doctors pronounced recovery impossible. After a mute confession, communion was administered to the dying man, preparations made for the sacrament of unction, and in his house there was the bustle and thrill of suspense usual at such moments. Outside the house, beyond the gates, a group of undertakers, who hid whenever a carriage drove up, waited in expectation of an important order for an expensive funeral. The Military Governor of Moscow, who had been assiduous in sending aides-de-camp to inquire after the count's health, came himself that evening to bid a last farewell to the celebrated grandee of Catherine's court, Count Bezukhov. The magnificent reception room was crowded. Everyone stood up respectfully when the Military Governor, having stayed about half an hour alone with the dying man, passed out, slightly acknowledging their bows and trying to escape as quickly as from the glances fixed on him by the doctors, clergy, and relatives of the family. Prince Vasili, who had grown thinner and paler during the last few days, escorted him to the door, repeating something to him several times in low tones. When the Military Governor had gone, Prince Vasili sat down all alone on a chair in the ballroom, crossing one leg high over the other, leaning his elbow on his knee and covering his face with his hand. After sitting so for a while he rose, and, looking about him with frightened eyes, went with unusually hurried steps down the long corridor leading to the back of the house, to the room of the eldest princess. Those who were in the dimly lit reception room spoke in nervous whispers, and, whenever anyone went into or came from the dying man's room, grew silent and gazed with eyes full of curiosity or expectancy at his door, which creaked slightly when opened. "The limits of human life... are fixed and may not be o'erpassed," said an old priest to a lady who had taken a seat beside him and was listening naively to his words. "I wonder, is it not too late to administer unction?" asked the lady, adding the priest's clerical title, as if she had no opinion of her own on the subject. "Ah, madam, it is a great sacrament," replied the priest, passing his hand over the thin grizzled strands of hair combed back across his bald head. "Who was that? The Military Governor himself?" was being asked at the other side of the room. "How young-looking he is!" "Yes, and he is over sixty. I hear the count no longer recognizes anyone. They wished to administer the sacrament of unction." "I knew someone who received that sacrament seven times." The second princess had just come from the sickroom with her eyes red from weeping and sat down beside Dr. Lorrain, who was sitting in a graceful pose under a portrait of Catherine, leaning his elbow on a table. "Beautiful," said the doctor in answer to a remark about the weather. "The weather is beautiful, Princess; and besides, in Moscow one feels as if one were in the country." "Yes, indeed," replied the princess with a sigh. "So he may have something to drink?" Lorrain considered. "Has he taken his medicine?" "Yes." The doctor glanced at his watch. "Take a glass of boiled water and put a pinch of cream of tartar," and he indicated with his delicate fingers what he meant by a pinch. "Dere has neffer been a gase," a German doctor was saying to an aide-de-camp, "dat one liffs after de sird stroke." "And what a well-preserved man he was!" remarked the aide-de-camp. "And who will inherit his wealth?" he added in a whisper. "It von't go begging," replied the German with a smile. Everyone again looked toward the door, which creaked as the second princess went in with the drink she had prepared according to Lorrain's instructions. The German doctor went up to Lorrain. "Do you think he can last till morning?" asked the German, addressing Lorrain in French which he pronounced badly. Lorrain, pursing up his lips, waved a severely negative finger before his nose. "Tonight, not later," said he in a low voice, and he moved away with a decorous smile of self-satisfaction at being able clearly to understand and state the patient's condition. Meanwhile Prince Vasili had opened the door into the princess' room. In this room it was almost dark; only two tiny lamps were burning before the icons and there was a pleasant scent of flowers and burnt pastilles. The room was crowded with small pieces of furniture, whatnots, cupboards, and little tables. The quilt of a high, white feather bed was just visible behind a screen. A small dog began to bark. "Ah, is it you, cousin?" She rose and smoothed her hair, which was as usual so extremely smooth that it seemed to be made of one piece with her head and covered with varnish. "Has anything happened?" she asked. "I am so terrified." "No, there is no change. I only came to have a talk about business, Catiche,"* muttered the prince, seating himself wearily on the chair she had just vacated. "You have made the place warm, I must say," he remarked. "Well, sit down: let's have a talk." *Catherine. "I thought perhaps something had happened," she said with her unchanging stonily severe expression; and, sitting down opposite the prince, she prepared to listen. "I wished to get a nap, mon cousin, but I can't." "Well, my dear?" said Prince Vasili, taking her hand and bending it downwards as was his habit. It was plain that this "well?" referred to much that they both understood without naming. The princess, who had a straight, rigid body, abnormally long for her legs, looked directly at Prince Vasili with no sign of emotion in her prominent gray eyes. Then she shook her head and glanced up at the icons with a sigh. This might have been taken as an expression of sorrow and devotion, or of weariness and hope of resting before long. Prince Vasili understood it as an expression of weariness. "And I?" he said; "do you think it is easier for me? I am as worn out as a post horse, but still I must have a talk with you, Catiche, a very serious talk." Prince Vasili said no more and his cheeks began to twitch nervously, now on one side, now on the other, giving his face an unpleasant expression which was never to be seen on it in a drawing room. His eyes too seemed strange; at one moment they looked impudently sly and at the next glanced round in alarm. The princess, holding her little dog on her lap with her thin bony hands, looked attentively into Prince Vasili's eyes evidently resolved not to be the first to break silence, if she had to wait till morning. "Well, you see, my dear princess and cousin, Catherine Semenovna," continued Prince Vasili, returning to his theme, apparently not without an inner struggle; "at such a moment as this one must think of everything. One must think of the future, of all of you... I love you all, like children of my own, as you know." The princess continued to look at him without moving, and with the same dull expression. "And then of course my family has also to be considered," Prince Vasili went on, testily pushing away a little table without looking at her. "You know, Catiche, that we--you three sisters, Mamontov, and my wife--are the count's only direct heirs. I know, I know how hard it is for you to talk or think of such matters. It is no easier for me; but, my dear, I am getting on for sixty and must be prepared for anything. Do you know I have sent for Pierre? The count," pointing to his portrait, "definitely demanded that he should be called." Prince Vasili looked questioningly at the princess, but could not make out whether she was considering what he had just said or whether she was simply looking at him. "There is one thing I constantly pray God to grant, mon cousin," she replied, "and it is that He would be merciful to him and would allow his noble soul peacefully to leave this..." "Yes, yes, of course," interrupted Prince Vasili impatiently, rubbing his bald head and angrily pulling back toward him the little table that he had pushed away. "But... in short, the fact is... you know yourself that last winter the count made a will by which he left all his property, not to us his direct heirs, but to Pierre." "He has made wills enough!" quietly remarked the princess. "But he cannot leave the estate to Pierre. Pierre is illegitimate." "But, my dear," said Prince Vasili suddenly, clutching the little table and becoming more animated and talking more rapidly: "what if a letter has been written to the Emperor in which the count asks for Pierre's legitimation? Do you understand that in consideration of the count's services, his request would be granted?..." The princess smiled as people do who think they know more about the subject under discussion than those they are talking with. "I can tell you more," continued Prince Vasili, seizing her hand, "that letter was written, though it was not sent, and the Emperor knew of it. The only question is, has it been destroyed or not? If not, then as soon as all is over," and Prince Vasili sighed to intimate what he meant by the words all is over, "and the count's papers are opened, the will and letter will be delivered to the Emperor, and the petition will certainly be granted. Pierre will get everything as the legitimate son." "And our share?" asked the princess smiling ironically, as if anything might happen, only not that. "But, my poor Catiche, it is as clear as daylight! He will then be the legal heir to everything and you won't get anything. You must know, my dear, whether the will and letter were written, and whether they have been destroyed or not. And if they have somehow been overlooked, you ought to know where they are, and must find them, because..." "What next?" the princess interrupted, smiling sardonically and not changing the expression of her eyes. "I am a woman, and you think we are all stupid; but I know this: an illegitimate son cannot inherit... un batard!"* she added, as if supposing that this translation of the word would effectively prove to Prince Vasili the invalidity of his contention. *A bastard. "Well, really, Catiche! Can't you understand! You are so intelligent, how is it you don't see that if the count has written a letter to the Emperor begging him to recognize Pierre as legitimate, it follows that Pierre will not be Pierre but will become Count Bezukhov, and will then inherit everything under the will? And if the will and letter are not destroyed, then you will have nothing but the consolation of having been dutiful et tout ce qui s'ensuit!* That's certain." *And all that follows therefrom. "I know the will was made, but I also know that it is invalid; and you, mon cousin, seem to consider me a perfect fool," said the princess with the expression women assume when they suppose they are saying something witty and stinging. "My dear Princess Catherine Semenovna," began Prince Vasili impatiently, "I came here not to wrangle with you, but to talk about your interests as with a kinswoman, a good, kind, true relation. And I tell you for the tenth time that if the letter to the Emperor and the will in Pierre's favor are among the count's papers, then, my dear girl, you and your sisters are not heiresses! If you don't believe me, then believe an expert. I have just been talking to Dmitri Onufrich" (the family solicitor) "and he says the same." At this a sudden change evidently took place in the princess' ideas; her thin lips grew white, though her eyes did not change, and her voice when she began to speak passed through such transitions as she herself evidently did not expect. "That would be a fine thing!" said she. "I never wanted anything and I don't now." She pushed the little dog off her lap and smoothed her dress. "And this is gratitude--this is recognition for those who have sacrificed everything for his sake!" she cried. "It's splendid! Fine! I don't want anything, Prince." "Yes, but you are not the only one. There are your sisters..." replied Prince Vasili. But the princess did not listen to him. "Yes, I knew it long ago but had forgotten. I knew that I could expect nothing but meanness, deceit, envy, intrigue, and ingratitude--the blackest ingratitude--in this house..." "Do you or do you not know where that will is?" insisted Prince Vasili, his cheeks twitching more than ever. "Yes, I was a fool! I still believed in people, loved them, and sacrificed myself. But only the base, the vile succeed! I know who has been intriguing!" The princess wished to rise, but the prince held her by the hand. She had the air of one who has suddenly lost faith in the whole human race. She gave her companion an angry glance. "There is still time, my dear. You must remember, Catiche, that it was all done casually in a moment of anger, of illness, and was afterwards forgotten. Our duty, my dear, is to rectify his mistake, to ease his last moments by not letting him commit this injustice, and not to let him die feeling that he is rendering unhappy those who..." "Who sacrificed everything for him," chimed in the princess, who would again have risen had not the prince still held her fast, "though he never could appreciate it. No, mon cousin," she added with a sigh, "I shall always remember that in this world one must expect no reward, that in this world there is neither honor nor justice. In this world one has to be cunning and cruel." "Now come, come! Be reasonable. I know your excellent heart." "No, I have a wicked heart." "I know your heart," repeated the prince. "I value your friendship and wish you to have as good an opinion of me. Don't upset yourself, and let us talk sensibly while there is still time, be it a day or be it but an hour.... Tell me all you know about the will, and above all where it is. You must know. We will take it at once and show it to the count. He has, no doubt, forgotten it and will wish to destroy it. You understand that my sole desire is conscientiously to carry out his wishes; that is my only reason for being here. I came simply to help him and you." "Now I see it all! I know who has been intriguing--I know!" cried the princess. "That's not the point, my dear." "It's that protege of yours, that sweet Princess Drubetskaya, that Anna Mikhaylovna whom I would not take for a housemaid... the infamous, vile woman!" "Do not let us lose any time..." "Ah, don't talk to me! Last winter she wheedled herself in here and told the count such vile, disgraceful things about us, especially about Sophie--I can't repeat them--that it made the count quite ill and he would not see us for a whole fortnight. I know it was then he wrote this vile, infamous paper, but I thought the thing was invalid." "We've got to it at last--why did you not tell me about it sooner?" "It's in the inlaid portfolio that he keeps under his pillow," said the princess, ignoring his question. "Now I know! Yes; if I have a sin, a great sin, it is hatred of that vile woman!" almost shrieked the princess, now quite changed. "And what does she come worming herself in here for? But I will give her a piece of my mind. The time will come!" CHAPTER XXII While these conversations were going on in the reception room and the princess' room, a carriage containing Pierre (who had been sent for) and Anna Mikhaylovna (who found it necessary to accompany him) was driving into the court of Count Bezukhov's house. As the wheels rolled softly over the straw beneath the windows, Anna Mikhaylovna, having turned with words of comfort to her companion, realized that he was asleep in his corner and woke him up. Rousing himself, Pierre followed Anna Mikhaylovna out of the carriage, and only then began to think of the interview with his dying father which awaited him. He noticed that they had not come to the front entrance but to the back door. While he was getting down from the carriage steps two men, who looked like tradespeople, ran hurriedly from the entrance and hid in the shadow of the wall. Pausing for a moment, Pierre noticed several other men of the same kind hiding in the shadow of the house on both sides. But neither Anna Mikhaylovna nor the footman nor the coachman, who could not help seeing these people, took any notice of them. "It seems to be all right," Pierre concluded, and followed Anna Mikhaylovna. She hurriedly ascended the narrow dimly lit stone staircase, calling to Pierre, who was lagging behind, to follow. Though he did not see why it was necessary for him to go to the count at all, still less why he had to go by the back stairs, yet judging by Anna Mikhaylovna's air of assurance and haste, Pierre concluded that it was all absolutely necessary. Halfway up the stairs they were almost knocked over by some men who, carrying pails, came running downstairs, their boots clattering. These men pressed close to the wall to let Pierre and Anna Mikhaylovna pass and did not evince the least surprise at seeing them there. "Is this the way to the princesses' apartments?" asked Anna Mikhaylovna of one of them. "Yes," replied a footman in a bold loud voice, as if anything were now permissible; "the door to the left, ma'am." "Perhaps the count did not ask for me," said Pierre when he reached the landing. "I'd better go to my own room." Anna Mikhaylovna paused and waited for him to come up. "Ah, my friend!" she said, touching his arm as she had done her son's when speaking to him that afternoon, "believe me I suffer no less than you do, but be a man!" "But really, hadn't I better go away?" he asked, looking kindly at her over his spectacles. "Ah, my dear friend! Forget the wrongs that may have been done you. Think that he is your father... perhaps in the agony of death." She sighed. "I have loved you like a son from the first. Trust yourself to me, Pierre. I shall not forget your interests." Pierre did not understand a word, but the conviction that all this had to be grew stronger, and he meekly followed Anna Mikhaylovna who was already opening a door. This door led into a back anteroom. An old man, a servant of the princesses, sat in a corner knitting a stocking. Pierre had never been in this part of the house and did not even know of the existence of these rooms. Anna Mikhaylovna, addressing a maid who was hurrying past with a decanter on a tray as "my dear" and "my sweet," asked about the princess' health and then led Pierre along a stone passage. The first door on the left led into the princesses' apartments. The maid with the decanter in her haste had not closed the door (everything in the house was done in haste at that time), and Pierre and Anna Mikhaylovna in passing instinctively glanced into the room, where Prince Vasili and the eldest princess were sitting close together talking. Seeing them pass, Prince Vasili drew back with obvious impatience, while the princess jumped up and with a gesture of desperation slammed the door with all her might. This action was so unlike her usual composure and the fear depicted on Prince Vasili's face so out of keeping with his dignity that Pierre stopped and glanced inquiringly over his spectacles at his guide. Anna Mikhaylovna evinced no surprise, she only smiled faintly and sighed, as if to say that this was no more than she had expected. "Be a man, my friend. I will look after your interests," said she in reply to his look, and went still faster along the passage. Pierre could not make out what it was all about, and still less what "watching over his interests" meant, but he decided that all these things had to be. From the passage they went into a large, dimly lit room adjoining the count's reception room. It was one of those sumptuous but cold apartments known to Pierre only from the front approach, but even in this room there now stood an empty bath, and water had been spilled on the carpet. They were met by a deacon with a censer and by a servant who passed out on tiptoe without heeding them. They went into the reception room familiar to Pierre, with two Italian windows opening into the conservatory, with its large bust and full length portrait of Catherine the Great. The same people were still sitting here in almost the same positions as before, whispering to one another. All became silent and turned to look at the pale tear-worn Anna Mikhaylovna as she entered, and at the big stout figure of Pierre who, hanging his head, meekly followed her. Anna Mikhaylovna's face expressed a consciousness that the decisive moment had arrived. With the air of a practical Petersburg lady she now, keeping Pierre close beside her, entered the room even more boldly than that afternoon. She felt that as she brought with her the person the dying man wished to see, her own admission was assured. Casting a rapid glance at all those in the room and noticing the count's confessor there, she glided up to him with a sort of amble, not exactly bowing yet seeming to grow suddenly smaller, and respectfully received the blessing first of one and then of another priest. "God be thanked that you are in time," said she to one of the priests; "all we relatives have been in such anxiety. This young man is the count's son," she added more softly. "What a terrible moment!" Having said this she went up to the doctor. "Dear doctor," said she, "this young man is the count's son. Is there any hope?" The doctor cast a rapid glance upwards and silently shrugged his shoulders. Anna Mikhaylovna with just the same movement raised her shoulders and eyes, almost closing the latter, sighed, and moved away from the doctor to Pierre. To him, in a particularly respectful and tenderly sad voice, she said: "Trust in His mercy!" and pointing out a small sofa for him to sit and wait for her, she went silently toward the door that everyone was watching and it creaked very slightly as she disappeared behind it. Pierre, having made up his mind to obey his monitress implicitly, moved toward the sofa she had indicated. As soon as Anna Mikhaylovna had disappeared he noticed that the eyes of all in the room turned to him with something more than curiosity and sympathy. He noticed that they whispered to one another, casting significant looks at him with a kind of awe and even servility. A deference such as he had never before received was shown him. A strange lady, the one who had been talking to the priests, rose and offered him her seat; an aide-de-camp picked up and returned a glove Pierre had dropped; the doctors became respectfully silent as he passed by, and moved to make way for him. At first Pierre wished to take another seat so as not to trouble the lady, and also to pick up the glove himself and to pass round the doctors who were not even in his way; but all at once he felt that this would not do, and that tonight he was a person obliged to perform some sort of awful rite which everyone expected of him, and that he was therefore bound to accept their services. He took the glove in silence from the aide-de-camp, and sat down in the lady's chair, placing his huge hands symmetrically on his knees in the naive attitude of an Egyptian statue, and decided in his own mind that all was as it should be, and that in order not to lose his head and do foolish things he must not act on his own ideas tonight, but must yield himself up entirely to the will of those who were guiding him. Not two minutes had passed before Prince Vasili with head erect majestically entered the room. He was wearing his long coat with three stars on his breast. He seemed to have grown thinner since the morning; his eyes seemed larger than usual when he glanced round and noticed Pierre. He went up to him, took his hand (a thing he never used to do), and drew it downwards as if wishing to ascertain whether it was firmly fixed on. "Courage, courage, my friend! He has asked to see you. That is well!" and he turned to go. But Pierre thought it necessary to ask: "How is..." and hesitated, not knowing whether it would be proper to call the dying man "the count," yet ashamed to call him "father." "He had another stroke about half an hour ago. Courage, my friend..." Pierre's mind was in such a confused state that the word "stroke" suggested to him a blow from something. He looked at Prince Vasili in perplexity, and only later grasped that a stroke was an attack of illness. Prince Vasili said something to Lorrain in passing and went through the door on tiptoe. He could not walk well on tiptoe and his whole body jerked at each step. The eldest princess followed him, and the priests and deacons and some servants also went in at the door. Through that door was heard a noise of things being moved about, and at last Anna Mikhaylovna, still with the same expression, pale but resolute in the discharge of duty, ran out and touching Pierre lightly on the arm said: "The divine mercy is inexhaustible! Unction is about to be administered. Come." Pierre went in at the door, stepping on the soft carpet, and noticed that the strange lady, the aide-de-camp, and some of the servants, all followed him in, as if there were now no further need for permission to enter that room. CHAPTER XXIII Pierre well knew this large room divided by columns and an arch, its walls hung round with Persian carpets. The part of the room behind the columns, with a high silk-curtained mahogany bedstead on one side and on the other an immense case containing icons, was brightly illuminated with red light like a Russian church during evening service. Under the gleaming icons stood a long invalid chair, and in that chair on snowy-white smooth pillows, evidently freshly changed, Pierre saw--covered to the waist by a bright green quilt--the familiar, majestic figure of his father, Count Bezukhov, with that gray mane of hair above his broad forehead which reminded one of a lion, and the deep characteristically noble wrinkles of his handsome, ruddy face. He lay just under the icons; his large thick hands outside the quilt. Into the right hand, which was lying palm downwards, a wax taper had been thrust between forefinger and thumb, and an old servant, bending over from behind the chair, held it in position. By the chair stood the priests, their long hair falling over their magnificent glittering vestments, with lighted tapers in their hands, slowly and solemnly conducting the service. A little behind them stood the two younger princesses holding handkerchiefs to their eyes, and just in front of them their eldest sister, Catiche, with a vicious and determined look steadily fixed on the icons, as though declaring to all that she could not answer for herself should she glance round. Anna Mikhaylovna, with a meek, sorrowful, and all-forgiving expression on her face, stood by the door near the strange lady. Prince Vasili in front of the door, near the invalid chair, a wax taper in his left hand, was leaning his left arm on the carved back of a velvet chair he had turned round for the purpose, and was crossing himself with his right hand, turning his eyes upward each time he touched his forehead. His face wore a calm look of piety and resignation to the will of God. "If you do not understand these sentiments," he seemed to be saying, "so much the worse for you!" Behind him stood the aide-de-camp, the doctors, and the menservants; the men and women had separated as in church. All were silently crossing themselves, and the reading of the church service, the subdued chanting of deep bass voices, and in the intervals sighs and the shuffling of feet were the only sounds that could be heard. Anna Mikhaylovna, with an air of importance that showed that she felt she quite knew what she was about, went across the room to where Pierre was standing and gave him a taper. He lit it and, distracted by observing those around him, began crossing himself with the hand that held the taper. Sophie, the rosy, laughter-loving, youngest princess with the mole, watched him. She smiled, hid her face in her handkerchief, and remained with it hidden for awhile; then looking up and seeing Pierre she again began to laugh. She evidently felt unable to look at him without laughing, but could not resist looking at him: so to be out of temptation she slipped quietly behind one of the columns. In the midst of the service the voices of the priests suddenly ceased, they whispered to one another, and the old servant who was holding the count's hand got up and said something to the ladies. Anna Mikhaylovna stepped forward and, stooping over the dying man, beckoned to Lorrain from behind her back. The French doctor held no taper; he was leaning against one of the columns in a respectful attitude implying that he, a foreigner, in spite of all differences of faith, understood the full importance of the rite now being performed and even approved of it. He now approached the sick man with the noiseless step of one in full vigor of life, with his delicate white fingers raised from the green quilt the hand that was free, and turning sideways felt the pulse and reflected a moment. The sick man was given something to drink, there was a stir around him, then the people resumed their places and the service continued. During this interval Pierre noticed that Prince Vasili left the chair on which he had been leaning, and--with air which intimated that he knew what he was about and if others did not understand him it was so much the worse for them--did not go up to the dying man, but passed by him, joined the eldest princess, and moved with her to the side of the room where stood the high bedstead with its silken hangings. On leaving the bed both Prince Vasili and the princess passed out by a back door, but returned to their places one after the other before the service was concluded. Pierre paid no more attention to this occurrence than to the rest of what went on, having made up his mind once for all that what he saw happening around him that evening was in some way essential. The chanting of the service ceased, and the voice of the priest was heard respectfully congratulating the dying man on having received the sacrament. The dying man lay as lifeless and immovable as before. Around him everyone began to stir: steps were audible and whispers, among which Anna Mikhaylovna's was the most distinct. Pierre heard her say: "Certainly he must be moved onto the bed; here it will be impossible..." The sick man was so surrounded by doctors, princesses, and servants that Pierre could no longer see the reddish-yellow face with its gray mane--which, though he saw other faces as well, he had not lost sight of for a single moment during the whole service. He judged by the cautious movements of those who crowded round the invalid chair that they had lifted the dying man and were moving him. "Catch hold of my arm or you'll drop him!" he heard one of the servants say in a frightened whisper. "Catch hold from underneath. Here!" exclaimed different voices; and the heavy breathing of the bearers and the shuffling of their feet grew more hurried, as if the weight they were carrying were too much for them. As the bearers, among whom was Anna Mikhaylovna, passed the young man he caught a momentary glimpse between their heads and backs of the dying man's high, stout, uncovered chest and powerful shoulders, raised by those who were holding him under the armpits, and of his gray, curly, leonine head. This head, with its remarkably broad brow and cheekbones, its handsome, sensual mouth, and its cold, majestic expression, was not disfigured by the approach of death. It was the same as Pierre remembered it three months before, when the count had sent him to Petersburg. But now this head was swaying helplessly with the uneven movements of the bearers, and the cold listless gaze fixed itself upon nothing. After a few minutes' bustle beside the high bedstead, those who had carried the sick man dispersed. Anna Mikhaylovna touched Pierre's hand and said, "Come." Pierre went with her to the bed on which the sick man had been laid in a stately pose in keeping with the ceremony just completed. He lay with his head propped high on the pillows. His hands were symmetrically placed on the green silk quilt, the palms downward. When Pierre came up the count was gazing straight at him, but with a look the significance of which could not be understood by mortal man. Either this look meant nothing but that as long as one has eyes they must look somewhere, or it meant too much. Pierre hesitated, not knowing what to do, and glanced inquiringly at his guide. Anna Mikhaylovna made a hurried sign with her eyes, glancing at the sick man's hand and moving her lips as if to send it a kiss. Pierre, carefully stretching his neck so as not to touch the quilt, followed her suggestion and pressed his lips to the large boned, fleshy hand. Neither the hand nor a single muscle of the count's face stirred. Once more Pierre looked questioningly at Anna Mikhaylovna to see what he was to do next. Anna Mikhaylovna with her eyes indicated a chair that stood beside the bed. Pierre obediently sat down, his eyes asking if he were doing right. Anna Mikhaylovna nodded approvingly. Again Pierre fell into the naively symmetrical pose of an Egyptian statue, evidently distressed that his stout and clumsy body took up so much room and doing his utmost to look as small as possible. He looked at the count, who still gazed at the spot where Pierre's face had been before he sat down. Anna Mikhaylovna indicated by her attitude her consciousness of the pathetic importance of these last moments of meeting between the father and son. This lasted about two minutes, which to Pierre seemed an hour. Suddenly the broad muscles and lines of the count's face began to twitch. The twitching increased, the handsome mouth was drawn to one side (only now did Pierre realize how near death his father was), and from that distorted mouth issued an indistinct, hoarse sound. Anna Mikhaylovna looked attentively at the sick man's eyes, trying to guess what he wanted; she pointed first to Pierre, then to some drink, then named Prince Vasili in an inquiring whisper, then pointed to the quilt. The eyes and face of the sick man showed impatience. He made an effort to look at the servant who stood constantly at the head of the bed. "Wants to turn on the other side," whispered the servant, and got up to turn the count's heavy body toward the wall. Pierre rose to help him. While the count was being turned over, one of his arms fell back helplessly and he made a fruitless effort to pull it forward. Whether he noticed the look of terror with which Pierre regarded that lifeless arm, or whether some other thought flitted across his dying brain, at any rate he glanced at the refractory arm, at Pierre's terror-stricken face, and again at the arm, and on his face a feeble, piteous smile appeared, quite out of keeping with his features, that seemed to deride his own helplessness. At sight of this smile Pierre felt an unexpected quivering in his breast and a tickling in his nose, and tears dimmed his eyes. The sick man was turned on to his side with his face to the wall. He sighed. "He is dozing," said Anna Mikhaylovna, observing that one of the princesses was coming to take her turn at watching. "Let us go." Pierre went out. CHAPTER XXIV There was now no one in the reception room except Prince Vasili and the eldest princess, who were sitting under the portrait of Catherine the Great and talking eagerly. As soon as they saw Pierre and his companion they became silent, and Pierre thought he saw the princess hide something as she whispered: "I can't bear the sight of that woman." "Catiche has had tea served in the small drawing room," said Prince Vasili to Anna Mikhaylovna. "Go and take something, my poor Anna Mikhaylovna, or you will not hold out." To Pierre he said nothing, merely giving his arm a sympathetic squeeze below the shoulder. Pierre went with Anna Mikhaylovna into the small drawing room. "There is nothing so refreshing after a sleepless night as a cup of this delicious Russian tea," Lorrain was saying with an air of restrained animation as he stood sipping tea from a delicate Chinese handleless cup before a table on which tea and a cold supper were laid in the small circular room. Around the table all who were at Count Bezukhov's house that night had gathered to fortify themselves. Pierre well remembered this small circular drawing room with its mirrors and little tables. During balls given at the house Pierre, who did not know how to dance, had liked sitting in this room to watch the ladies who, as they passed through in their ball dresses with diamonds and pearls on their bare shoulders, looked at themselves in the brilliantly lighted mirrors which repeated their reflections several times. Now this same room was dimly lighted by two candles. On one small table tea things and supper dishes stood in disorder, and in the middle of the night a motley throng of people sat there, not merrymaking, but somberly whispering, and betraying by every word and movement that they none of them forgot what was happening and what was about to happen in the bedroom. Pierre did not eat anything though he would very much have liked to. He looked inquiringly at his monitress and saw that she was again going on tiptoe to the reception room where they had left Prince Vasili and the eldest princess. Pierre concluded that this also was essential, and after a short interval followed her. Anna Mikhaylovna was standing beside the princess, and they were both speaking in excited whispers. "Permit me, Princess, to know what is necessary and what is not necessary," said the younger of the two speakers, evidently in the same state of excitement as when she had slammed the door of her room. "But, my dear princess," answered Anna Mikhaylovna blandly but impressively, blocking the way to the bedroom and preventing the other from passing, "won't this be too much for poor Uncle at a moment when he needs repose? Worldly conversation at a moment when his soul is already prepared..." Prince Vasili was seated in an easy chair in his familiar attitude, with one leg crossed high above the other. His cheeks, which were so flabby that they looked heavier below, were twitching violently; but he wore the air of a man little concerned in what the two ladies were saying. "Come, my dear Anna Mikhaylovna, let Catiche do as she pleases. You know how fond the count is of her." "I don't even know what is in this paper," said the younger of the two ladies, addressing Prince Vasili and pointing to an inlaid portfolio she held in her hand. "All I know is that his real will is in his writing table, and this is a paper he has forgotten...." She tried to pass Anna Mikhaylovna, but the latter sprang so as to bar her path. "I know, my dear, kind princess," said Anna Mikhaylovna, seizing the portfolio so firmly that it was plain she would not let go easily. "Dear princess, I beg and implore you, have some pity on him! Je vous en conjure..." The princess did not reply. Their efforts in the struggle for the portfolio were the only sounds audible, but it was evident that if the princess did speak, her words would not be flattering to Anna Mikhaylovna. Though the latter held on tenaciously, her voice lost none of its honeyed firmness and softness. "Pierre, my dear, come here. I think he will not be out of place in a family consultation; is it not so, Prince?" "Why don't you speak, cousin?" suddenly shrieked the princess so loud that those in the drawing room heard her and were startled. "Why do you remain silent when heaven knows who permits herself to interfere, making a scene on the very threshold of a dying man's room? Intriguer!" she hissed viciously, and tugged with all her might at the portfolio. But Anna Mikhaylovna went forward a step or two to keep her hold on the portfolio, and changed her grip. Prince Vasili rose. "Oh!" said he with reproach and surprise, "this is absurd! Come, let go I tell you." The princess let go. "And you too!" But Anna Mikhaylovna did not obey him. "Let go, I tell you! I will take the responsibility. I myself will go and ask him, I!... does that satisfy you?" "But, Prince," said Anna Mikhaylovna, "after such a solemn sacrament, allow him a moment's peace! Here, Pierre, tell them your opinion," said she, turning to the young man who, having come quite close, was gazing with astonishment at the angry face of the princess which had lost all dignity, and at the twitching cheeks of Prince Vasili. "Remember that you will answer for the consequences," said Prince Vasili severely. "You don't know what you are doing." "Vile woman!" shouted the princess, darting unexpectedly at Anna Mikhaylovna and snatching the portfolio from her. Prince Vasili bent his head and spread out his hands. At this moment that terrible door, which Pierre had watched so long and which had always opened so quietly, burst noisily open and banged against the wall, and the second of the three sisters rushed out wringing her hands. "What are you doing!" she cried vehemently. "He is dying and you leave me alone with him!" Her sister dropped the portfolio. Anna Mikhaylovna, stooping, quickly caught up the object of contention and ran into the bedroom. The eldest princess and Prince Vasili, recovering themselves, followed her. A few minutes later the eldest sister came out with a pale hard face, again biting her underlip. At sight of Pierre her expression showed an irrepressible hatred. "Yes, now you may be glad!" said she; "this is what you have been waiting for." And bursting into tears she hid her face in her handkerchief and rushed from the room. Prince Vasili came next. He staggered to the sofa on which Pierre was sitting and dropped onto it, covering his face with his hand. Pierre noticed that he was pale and that his jaw quivered and shook as if in an ague. "Ah, my friend!" said he, taking Pierre by the elbow; and there was in his voice a sincerity and weakness Pierre had never observed in it before. "How often we sin, how much we deceive, and all for what? I am near sixty, dear friend... I too... All will end in death, all! Death is awful..." and he burst into tears. Anna Mikhaylovna came out last. She approached Pierre with slow, quiet steps. "Pierre!" she said. Pierre gave her an inquiring look. She kissed the young man on his forehead, wetting him with her tears. Then after a pause she said: "He is no more...." Pierre looked at her over his spectacles. "Come, I will go with you. Try to weep, nothing gives such relief as tears." She led him into the dark drawing room and Pierre was glad no one could see his face. Anna Mikhaylovna left him, and when she returned he was fast asleep with his head on his arm. In the morning Anna Mikhaylovna said to Pierre: "Yes, my dear, this is a great loss for us all, not to speak of you. But God will support you: you are young, and are now, I hope, in command of an immense fortune. The will has not yet been opened. I know you well enough to be sure that this will not turn your head, but it imposes duties on you, and you must be a man." Pierre was silent. "Perhaps later on I may tell you, my dear boy, that if I had not been there, God only knows what would have happened! You know, Uncle promised me only the day before yesterday not to forget Boris. But he had no time. I hope, my dear friend, you will carry out your father's wish?" Pierre understood nothing of all this and coloring shyly looked in silence at Princess Anna Mikhaylovna. After her talk with Pierre, Anna Mikhaylovna returned to the Rostovs' and went to bed. On waking in the morning she told the Rostovs and all her acquaintances the details of Count Bezukhov's death. She said the count had died as she would herself wish to die, that his end was not only touching but edifying. As to the last meeting between father and son, it was so touching that she could not think of it without tears, and did not know which had behaved better during those awful moments--the father who so remembered everything and everybody at last and had spoken such pathetic words to the son, or Pierre, whom it had been pitiful to see, so stricken was he with grief, though he tried hard to hide it in order not to sadden his dying father. "It is painful, but it does one good. It uplifts the soul to see such men as the old count and his worthy son," said she. Of the behavior of the eldest princess and Prince Vasili she spoke disapprovingly, but in whispers and as a great secret. CHAPTER XXV At Bald Hills, Prince Nicholas Andreevich Bolkonski's estate, the arrival of young Prince Andrew and his wife was daily expected, but this expectation did not upset the regular routine of life in the old prince's household. General in Chief Prince Nicholas Andreevich (nicknamed in society, "the King of Prussia") ever since the Emperor Paul had exiled him to his country estate had lived there continuously with his daughter, Princess Mary, and her companion, Mademoiselle Bourienne. Though in the new reign he was free to return to the capitals, he still continued to live in the country, remarking that anyone who wanted to see him could come the hundred miles from Moscow to Bald Hills, while he himself needed no one and nothing. He used to say that there are only two sources of human vice--idleness and superstition, and only two virtues--activity and intelligence. He himself undertook his daughter's education, and to develop these two cardinal virtues in her gave her lessons in algebra and geometry till she was twenty, and arranged her life so that her whole time was occupied. He was himself always occupied: writing his memoirs, solving problems in higher mathematics, turning snuffboxes on a lathe, working in the garden, or superintending the building that was always going on at his estate. As regularity is a prime condition facilitating activity, regularity in his household was carried to the highest point of exactitude. He always came to table under precisely the same conditions, and not only at the same hour but at the same minute. With those about him, from his daughter to his serfs, the prince was sharp and invariably exacting, so that without being a hardhearted man he inspired such fear and respect as few hardhearted men would have aroused. Although he was in retirement and had now no influence in political affairs, every high official appointed to the province in which the prince's estate lay considered it his duty to visit him and waited in the lofty antechamber ante chamber just as the architect, gardener, or Princess Mary did, till the prince appeared punctually to the appointed hour. Everyone sitting in this antechamber experienced the same feeling of respect and even fear when the enormously high study door opened and showed the figure of a rather small old man, with powdered wig, small withered hands, and bushy gray eyebrows which, when he frowned, sometimes hid the gleam of his shrewd, youthfully glittering eyes. On the morning of the day that the young couple were to arrive, Princess Mary entered the antechamber as usual at the time appointed for the morning greeting, crossing herself with trepidation and repeating a silent prayer. Every morning she came in like that, and every morning prayed that the daily interview might pass off well. An old powdered manservant who was sitting in the antechamber rose quietly and said in a whisper: "Please walk in." Through the door came the regular hum of a lathe. The princess timidly opened the door which moved noiselessly and easily. She paused at the entrance. The prince was working at the lathe and after glancing round continued his work. The enormous study was full of things evidently in constant use. The large table covered with books and plans, the tall glass-fronted bookcases with keys in the locks, the high desk for writing while standing up, on which lay an open exercise book, and the lathe with tools laid ready to hand and shavings scattered around--all indicated continuous, varied, and orderly activity. The motion of the small foot shod in a Tartar boot embroidered with silver, and the firm pressure of the lean sinewy hand, showed that the prince still possessed the tenacious endurance and vigor of hardy old age. After a few more turns of the lathe he removed his foot from the pedal, wiped his chisel, dropped it into a leather pouch attached to the lathe, and, approaching the table, summoned his daughter. He never gave his children a blessing, so he simply held out his bristly cheek (as yet unshaven) and, regarding her tenderly and attentively, said severely: "Quite well? All right then, sit down." He took the exercise book containing lessons in geometry written by himself and drew up a chair with his foot. "For tomorrow!" said he, quickly finding the page and making a scratch from one paragraph to another with his hard nail. The princess bent over the exercise book on the table. "Wait a bit, here's a letter for you," said the old man suddenly, taking a letter addressed in a woman's hand from a bag hanging above the table, onto which he threw it. At the sight of the letter red patches showed themselves on the princess' face. She took it quickly and bent her head over it. "From Heloise?" asked the prince with a cold smile that showed his still sound, yellowish teeth. "Yes, it's from Julie," replied the princess with a timid glance and a timid smile. "I'll let two more letters pass, but the third I'll read," said the prince sternly; "I'm afraid you write much nonsense. I'll read the third!" "Read this if you like, Father," said the princess, blushing still more and holding out the letter. "The third, I said the third!" cried the prince abruptly, pushing the letter away, and leaning his elbows on the table he drew toward him the exercise book containing geometrical figures. "Well, madam," he began, stooping over the book close to his daughter and placing an arm on the back of the chair on which she sat, so that she felt herself surrounded on all sides by the acrid scent of old age and tobacco, which she had known so long. "Now, madam, these triangles are equal; please note that the angle ABC..." The princess looked in a scared way at her father's eyes glittering close to her; the red patches on her face came and went, and it was plain that she understood nothing and was so frightened that her fear would prevent her understanding any of her father's further explanations, however clear they might be. Whether it was the teacher's fault or the pupil's, this same thing happened every day: the princess' eyes grew dim, she could not see and could not hear anything, but was only conscious of her stern father's withered face close to her, of his breath and the smell of him, and could think only of how to get away quickly to her own room to make out the problem in peace. The old man was beside himself: moved the chair on which he was sitting noisily backward and forward, made efforts to control himself and not become vehement, but almost always did become vehement, scolded, and sometimes flung the exercise book away. The princess gave a wrong answer. "Well now, isn't she a fool!" shouted the prince, pushing the book aside and turning sharply away; but rising immediately, he paced up and down, lightly touched his daughter's hair and sat down again. He drew up his chair, and continued to explain. "This won't do, Princess; it won't do," said he, when Princess Mary, having taken and closed the exercise book with the next day's lesson, was about to leave: "Mathematics are most important, madam! I don't want to have you like our silly ladies. Get used to it and you'll like it," and he patted her cheek. "It will drive all the nonsense out of your head." She turned to go, but he stopped her with a gesture and took an uncut book from the high desk. "Here is some sort of Key to the Mysteries that your Heloise has sent you. Religious! I don't interfere with anyone's belief... I have looked at it. Take it. Well, now go. Go." He patted her on the shoulder and himself closed the door after her. Princess Mary went back to her room with the sad, scared expression that rarely left her and which made her plain, sickly face yet plainer. She sat down at her writing table, on which stood miniature portraits and which was littered with books and papers. The princess was as untidy as her father was tidy. She put down the geometry book and eagerly broke the seal of her letter. It was from her most intimate friend from childhood; that same Julie Karagina who had been at the Rostovs' name-day party. Julie wrote in French: Dear and precious Friend, How terrible and frightful a thing is separation! Though I tell myself that half my life and half my happiness are wrapped up in you, and that in spite of the distance separating us our hearts are united by indissoluble bonds, my heart rebels against fate and in spite of the pleasures and distractions around me I cannot overcome a certain secret sorrow that has been in my heart ever since we parted. Why are we not together as we were last summer, in your big study, on the blue sofa, the confidential sofa? Why cannot I now, as three months ago, draw fresh moral strength from your look, so gentle, calm, and penetrating, a look I loved so well and seem to see before me as I write? Having read thus far, Princess Mary sighed and glanced into the mirror which stood on her right. It reflected a weak, ungraceful figure and thin face. Her eyes, always sad, now looked with particular hopelessness at her reflection in the glass. "She flatters me," thought the princess, turning away and continuing to read. But Julie did not flatter her friend, the princess' eyes--large, deep and luminous (it seemed as if at times there radiated from them shafts of warm light)--were so beautiful that very often in spite of the plainness of her face they gave her an attraction more powerful than that of beauty. But the princess never saw the beautiful expression of her own eyes--the look they had when she was not thinking of herself. As with everyone, her face assumed a forced unnatural expression as soon as she looked in a glass. She went on reading: All Moscow talks of nothing but war. One of my two brothers is already abroad, the other is with the Guards, who are starting on their march to the frontier. Our dear Emperor has left Petersburg and it is thought intends to expose his precious person to the chances of war. God grant that the Corsican monster who is destroying the peace of Europe may be overthrown by the angel whom it has pleased the Almighty, in His goodness, to give us as sovereign! To say nothing of my brothers, this war has deprived me of one of the associations nearest my heart. I mean young Nicholas Rostov, who with his enthusiasm could not bear to remain inactive and has left the university to join the army. I will confess to you, dear Mary, that in spite of his extreme youth his departure for the army was a great grief to me. This young man, of whom I spoke to you last summer, is so noble-minded and full of that real youthfulness which one seldom finds nowadays among our old men of twenty and, particularly, he is so frank and has so much heart. He is so pure and poetic that my relations with him, transient as they were, have been one of the sweetest comforts to my poor heart, which has already suffered so much. Someday I will tell you about our parting and all that was said then. That is still too fresh. Ah, dear friend, you are happy not to know these poignant joys and sorrows. You are fortunate, for the latter are generally the stronger! I know very well that Count Nicholas is too young ever to be more to me than a friend, but this sweet friendship, this poetic and pure intimacy, were what my heart needed. But enough of this! The chief news, about which all Moscow gossips, is the death of old Count Bezukhov, and his inheritance. Fancy! The three princesses have received very little, Prince Vasili nothing, and it is Monsieur Pierre who has inherited all the property and has besides been recognized as legitimate; so that he is now Count Bezukhov and possessor of the finest fortune in Russia. It is rumored that Prince Vasili played a very despicable part in this affair and that he returned to Petersburg quite crestfallen. I confess I understand very little about all these matters of wills and inheritance; but I do know that since this young man, whom we all used to know as plain Monsieur Pierre, has become Count Bezukhov and the owner of one of the largest fortunes in Russia, I am much amused to watch the change in the tone and manners of the mammas burdened by marriageable daughters, and of the young ladies themselves, toward him, though, between you and me, he always seemed to me a poor sort of fellow. As for the past two years people have amused themselves by finding husbands for me (most of whom I don't even know), the matchmaking chronicles of Moscow now speak of me as the future Countess Bezukhova. But you will understand that I have no desire for the post. A propos of marriages: do you know that a while ago that universal auntie Anna Mikhaylovna told me, under the seal of strict secrecy, of a plan of marriage for you. It is neither more nor less than with Prince Vasili's son Anatole, whom they wish to reform by marrying him to someone rich and distinguee, and it is on you that his relations' choice has fallen. I don't know what you will think of it, but I consider it my duty to let you know of it. He is said to be very handsome and a terrible scapegrace. That is all I have been able to find out about him. But enough of gossip. I am at the end of my second sheet of paper, and Mamma has sent for me to go and dine at the Apraksins'. Read the mystical book I am sending you; it has an enormous success here. Though there are things in it difficult for the feeble human mind to grasp, it is an admirable book which calms and elevates the soul. Adieu! Give my respects to monsieur your father and my compliments to Mademoiselle Bourienne. I embrace you as I love you. JULIE P.S. Let me have news of your brother and his charming little wife. The princess pondered awhile with a thoughtful smile and her luminous eyes lit up so that her face was entirely transformed. Then she suddenly rose and with her heavy tread went up to the table. She took a sheet of paper and her hand moved rapidly over it. This is the reply she wrote, also in French: Dear and precious Friend, Your letter of the 13th has given me great delight. So you still love me, my romantic Julie? Separation, of which you say so much that is bad, does not seem to have had its usual effect on you. You complain of our separation. What then should I say, if I dared complain, I who am deprived of all who are dear to me? Ah, if we had not religion to console us life would be very sad. Why do you suppose that I should look severely on your affection for that young man? On such matters I am only severe with myself. I understand such feelings in others, and if never having felt them I cannot approve of them, neither do I condemn them. Only it seems to me that Christian love, love of one's neighbor, love of one's enemy, is worthier, sweeter, and better than the feelings which the beautiful eyes of a young man can inspire in a romantic and loving young girl like yourself. The news of Count Bezukhov's death reached us before your letter and my father was much affected by it. He says the count was the last representative but one of the great century, and that it is his own turn now, but that he will do all he can to let his turn come as late as possible. God preserve us from that terrible misfortune! I cannot agree with you about Pierre, whom I knew as a child. He always seemed to me to have an excellent heart, and that is the quality I value most in people. As to his inheritance and the part played by Prince Vasili, it is very sad for both. Ah, my dear friend, our divine Saviour's words, that it is easier for a camel to go through the eye of a needle than for a rich man to enter the Kingdom of God, are terribly true. I pity Prince Vasili but am still more sorry for Pierre. So young, and burdened with such riches--to what temptations he will be exposed! If I were asked what I desire most on earth, it would be to be poorer than the poorest beggar. A thousand thanks, dear friend, for the volume you have sent me and which has such success in Moscow. Yet since you tell me that among some good things it contains others which our weak human understanding cannot grasp, it seems to me rather useless to spend time in reading what is unintelligible and can therefore bear no fruit. I never could understand the fondness some people have for confusing their minds by dwelling on mystical books that merely awaken their doubts and excite their imagination, giving them a bent for exaggeration quite contrary to Christian simplicity. Let us rather read the Epistles and Gospels. Let us not seek to penetrate what mysteries they contain; for how can we, miserable sinners that we are, know the terrible and holy secrets of Providence while we remain in this flesh which forms an impenetrable veil between us and the Eternal? Let us rather confine ourselves to studying those sublime rules which our divine Saviour has left for our guidance here below. Let us try to conform to them and follow them, and let us be persuaded that the less we let our feeble human minds roam, the better we shall please God, who rejects all knowledge that does not come from Him; and the less we seek to fathom what He has been pleased to conceal from us, the sooner will He vouchsafe its revelation to us through His divine Spirit. My father has not spoken to me of a suitor, but has only told me that he has received a letter and is expecting a visit from Prince Vasili. In regard to this project of marriage for me, I will tell you, dear sweet friend, that I look on marriage as a divine institution to which we must conform. However painful it may be to me, should the Almighty lay the duties of wife and mother upon me I shall try to perform them as faithfully as I can, without disquieting myself by examining my feelings toward him whom He may give me for husband. I have had a letter from my brother, who announces his speedy arrival at Bald Hills with his wife. This pleasure will be but a brief one, however, for he will leave, us again to take part in this unhappy war into which we have been drawn, God knows how or why. Not only where you are--at the heart of affairs and of the world--is the talk all of war, even here amid fieldwork and the calm of nature--which townsfolk consider characteristic of the country--rumors of war are heard and painfully felt. My father talks of nothing but marches and countermarches, things of which I understand nothing; and the day before yesterday during my daily walk through the village I witnessed a heartrending scene.... It was a convoy of conscripts enrolled from our people and starting to join the army. You should have seen the state of the mothers, wives, and children of the men who were going and should have heard the sobs. It seems as though mankind has forgotten the laws of its divine Saviour, Who preached love and forgiveness of injuries--and that men attribute the greatest merit to skill in killing one another. Adieu, dear and kind friend; may our divine Saviour and His most Holy Mother keep you in their holy and all-powerful care! MARY "Ah, you are sending off a letter, Princess? I have already dispatched mine. I have written to my poor mother," said the smiling Mademoiselle Bourienne rapidly, in her pleasant mellow tones and with guttural r's. She brought into Princess Mary's strenuous, mournful, and gloomy world a quite different atmosphere, careless, lighthearted, and self-satisfied. "Princess, I must warn you," she added, lowering her voice and evidently listening to herself with pleasure, and speaking with exaggerated grasseyement, "the prince has been scolding Michael Ivanovich. He is in a very bad humor, very morose. Be prepared." "Ah, dear friend," replied Princess Mary, "I have asked you never to warn me of the humor my father is in. I do not allow myself to judge him and would not have others do so." The princess glanced at her watch and, seeing that she was five minutes late in starting her practice on the clavichord, went into the sitting room with a look of alarm. Between twelve and two o'clock, as the day was mapped out, the prince rested and the princess played the clavichord. CHAPTER XXVI The gray-haired valet was sitting drowsily listening to the snoring of the prince, who was in his large study. From the far side of the house through the closed doors came the sound of difficult passages--twenty times repeated--of a sonata by Dussek. Just then a closed carriage and another with a hood drove up to the porch. Prince Andrew got out of the carriage, helped his little wife to alight, and let her pass into the house before him. Old Tikhon, wearing a wig, put his head out of the door of the antechamber, reported in a whisper that the prince was sleeping, and hastily closed the door. Tikhon knew that neither the son's arrival nor any other unusual event must be allowed to disturb the appointed order of the day. Prince Andrew apparently knew this as well as Tikhon; he looked at his watch as if to ascertain whether his father's habits had changed since he was at home last, and, having assured himself that they had not, he turned to his wife. "He will get up in twenty minutes. Let us go across to Mary's room," he said. The little princess had grown stouter during this time, but her eyes and her short, downy, smiling lip lifted when she began to speak just as merrily and prettily as ever. "Why, this is a palace!" she said to her husband, looking around with the expression with which people compliment their host at a ball. "Let's come, quick, quick!" And with a glance round, she smiled at Tikhon, at her husband, and at the footman who accompanied them. "Is that Mary practicing? Let's go quietly and take her by surprise." Prince Andrew followed her with a courteous but sad expression. "You've grown older, Tikhon," he said in passing to the old man, who kissed his hand. Before they reached the room from which the sounds of the clavichord came, the pretty, fair haired Frenchwoman, Mademoiselle Bourienne, rushed out apparently beside herself with delight. "Ah! what joy for the princess!" exclaimed she: "At last! I must let her know." "No, no, please not... You are Mademoiselle Bourienne," said the little princess, kissing her. "I know you already through my sister-in-law's friendship for you. She was not expecting us?" They went up to the door of the sitting room from which came the sound of the oft-repeated passage of the sonata. Prince Andrew stopped and made a grimace, as if expecting something unpleasant. The little princess entered the room. The passage broke off in the middle, a cry was heard, then Princess Mary's heavy tread and the sound of kissing. When Prince Andrew went in the two princesses, who had only met once before for a short time at his wedding, were in each other's arms warmly pressing their lips to whatever place they happened to touch. Mademoiselle Bourienne stood near them pressing her hand to her heart, with a beatific smile and obviously equally ready to cry or to laugh. Prince Andrew shrugged his shoulders and frowned, as lovers of music do when they hear a false note. The two women let go of one another, and then, as if afraid of being too late, seized each other's hands, kissing them and pulling them away, and again began kissing each other on the face, and then to Prince Andrew's surprise both began to cry and kissed again. Mademoiselle Bourienne also began to cry. Prince Andrew evidently felt ill at ease, but to the two women it seemed quite natural that they should cry, and apparently it never entered their heads that it could have been otherwise at this meeting. "Ah! my dear!... Ah! Mary!" they suddenly exclaimed, and then laughed. "I dreamed last night..."--"You were not expecting us?..."- "Ah! Mary, you have got thinner?..." "And you have grown stouter!..." "I knew the princess at once," put in Mademoiselle Bourienne. "And I had no idea!..." exclaimed Princess Mary. "Ah, Andrew, I did not see you." Prince Andrew and his sister, hand in hand, kissed one another, and he told her she was still the same crybaby as ever. Princess Mary had turned toward her brother, and through her tears the loving, warm, gentle look of her large luminous eyes, very beautiful at that moment, rested on Prince Andrew's face. The little princess talked incessantly, her short, downy upper lip continually and rapidly touching her rosy nether lip when necessary and drawing up again next moment when her face broke into a smile of glittering teeth and sparkling eyes. She told of an accident they had had on the Spasski Hill which might have been serious for her in her condition, and immediately after that informed them that she had left all her clothes in Petersburg and that heaven knew what she would have to dress in here; and that Andrew had quite changed, and that Kitty Odyntsova had married an old man, and that there was a suitor for Mary, a real one, but that they would talk of that later. Princess Mary was still looking silently at her brother and her beautiful eyes were full of love and sadness. It was plain that she was following a train of thought independent of her sister-in-law's words. In the midst of a description of the last Petersburg fete she addressed her brother: "So you are really going to the war, Andrew?" she said sighing. Lise sighed too. "Yes, and even tomorrow," replied her brother. "He is leaving me here, God knows why, when he might have had promotion..." Princess Mary did not listen to the end, but continuing her train of thought turned to her sister-in-law with a tender glance at her figure. "Is it certain?" she said. The face of the little princess changed. She sighed and said: "Yes, quite certain. Ah! it is very dreadful..." Her lip descended. She brought her face close to her sister-in-law's and unexpectedly again began to cry. "She needs rest," said Prince Andrew with a frown. "Don't you, Lise? Take her to your room and I'll go to Father. How is he? Just the same?" "Yes, just the same. Though I don't know what your opinion will be," answered the princess joyfully. "And are the hours the same? And the walks in the avenues? And the lathe?" asked Prince Andrew with a scarcely perceptible smile which showed that, in spite of all his love and respect for his father, he was aware of his weaknesses. "The hours are the same, and the lathe, and also the mathematics and my geometry lessons," said Princess Mary gleefully, as if her lessons in geometry were among the greatest delights of her life. When the twenty minutes had elapsed and the time had come for the old prince to get up, Tikhon came to call the young prince to his father. The old man made a departure from his usual routine in honor of his son's arrival: he gave orders to admit him to his apartments while he dressed for dinner. The old prince always dressed in old-fashioned style, wearing an antique coat and powdered hair; and when Prince Andrew entered his father's dressing room (not with the contemptuous look and manner he wore in drawing rooms, but with the animated face with which he talked to Pierre), the old man was sitting on a large leather-covered chair, wrapped in a powdering mantle, entrusting his head to Tikhon. "Ah! here's the warrior! Wants to vanquish Buonaparte?" said the old man, shaking his powdered head as much as the tail, which Tikhon was holding fast to plait, would allow. "You at least must tackle him properly, or else if he goes on like this he'll soon have us, too, for his subjects! How are you?" And he held out his cheek. The old man was in a good temper after his nap before dinner. (He used to say that a nap "after dinner was silver--before dinner, golden.") He cast happy, sidelong glances at his son from under his thick, bushy eyebrows. Prince Andrew went up and kissed his father on the spot indicated to him. He made no reply on his father's favorite topic--making fun of the military men of the day, and more particularly of Bonaparte. "Yes, Father, I have come come to you and brought my wife who is pregnant," said Prince Andrew, following every movement of his father's face with an eager and respectful look. "How is your health?" "Only fools and rakes fall ill, my boy. You know me: I am busy from morning till night and abstemious, so of course I am well." "Thank God," said his son smiling. "God has nothing to do with it! Well, go on," he continued, returning to his hobby; "tell me how the Germans have taught you to fight Bonaparte by this new science you call 'strategy.'" Prince Andrew smiled. "Give me time to collect my wits, Father," said he, with a smile that showed that his father's foibles did not prevent his son from loving and honoring him. "Why, I have not yet had time to settle down!" "Nonsense, nonsense!" cried the old man, shaking his pigtail to see whether it was firmly plaited, and grasping his by the hand. "The house for your wife is ready. Princess Mary will take her there and show her over, and they'll talk nineteen to the dozen. That's their woman's way! I am glad to have her. Sit down and talk. About Mikhelson's army I understand--Tolstoy's too... a simultaneous expedition.... But what's the southern army to do? Prussia is neutral... I know that. What about Austria?" said he, rising from his chair and pacing up and down the room followed by Tikhon, who ran after him, handing him different articles of clothing. "What of Sweden? How will they cross Pomerania?" Prince Andrew, seeing that his father insisted, began--at first reluctantly, but gradually with more and more animation, and from habit changing unconsciously from Russian to French as he went on- to explain the plan of operation for the coming campaign. He explained how an army, ninety thousand strong, was to threaten Prussia so as to bring her out of her neutrality and draw her into the war; how part of that army was to join some Swedish forces at Stralsund; how two hundred and twenty thousand Austrians, with a hundred thousand Russians, were to operate in Italy and on the Rhine; how fifty thousand Russians and as many English were to land at Naples, and how a total force of five hundred thousand men was to attack the French from different sides. The old prince did not evince the least interest during this explanation, but as if he were not listening to it continued to dress while walking about, and three times unexpectedly interrupted. Once he stopped it by shouting: "The white one, the white one!" This meant that Tikhon was not handing him the waistcoat he wanted. Another time he interrupted, saying: "And will she soon be confined?" and shaking his head reproachfully said: "That's bad! Go on, go on." The third interruption came when Prince Andrew was finishing his description. The old man began to sing, in the cracked voice of old age: "Malbrook s'en va-t-en guerre. Dieu sait quand reviendra."* *"Marlborough is going to the wars; God knows when he'll return." His son only smiled. "I don't say it's a plan I approve of," said the son; "I am only telling you what it is. Napoleon has also formed his plan by now, not worse than this one." "Well, you've told me nothing new," and the old man repeated, meditatively and rapidly: "Dieu sait quand reviendra. Go to the dining room." CHAPTER XXVII At the appointed hour the prince, powdered and shaven, entered the dining room where his daughter-in-law, Princess Mary, and Mademoiselle Bourienne were already awaiting him together with his architect, who by a strange caprice of his employer's was admitted to table though the position of that insignificant individual was such as could certainly not have caused him to expect that honor. The prince, who generally kept very strictly to social distinctions and rarely admitted even important government officials to his table, had unexpectedly selected Michael Ivanovich (who always went into a corner to blow his nose on his checked handkerchief) to illustrate the theory that all men are equals, and had more than once impressed on his daughter that Michael Ivanovich was "not a whit worse than you or I." At dinner the prince usually spoke to the taciturn Michael Ivanovich more often than to anyone else. In the dining room, which like all the rooms in the house was exceedingly lofty, the members of the household and the footmen--one behind each chair--stood waiting for the prince to enter. The head butler, napkin on arm, was scanning the setting of the table, making signs to the footmen, and anxiously glancing from the clock to the door by which the prince was to enter. Prince Andrew was looking at a large gilt frame, new to him, containing the genealogical tree of the Princes Bolkonski, opposite which hung another such frame with a badly painted portrait (evidently by the hand of the artist belonging to the estate) of a ruling prince, in a crown--an alleged descendant of Rurik and ancestor of the Bolkonskis. Prince Andrew, looking again at that genealogical tree, shook his head, laughing as a man laughs who looks at a portrait so characteristic of the original as to be amusing. "How thoroughly like him that is!" he said to Princess Mary, who had come up to him. Princess Mary looked at her brother in surprise. She did not understand what he was laughing at. Everything her father did inspired her with reverence and was beyond question. "Everyone has his Achilles' heel," continued Prince Andrew. "Fancy, with his powerful mind, indulging in such nonsense!" Princess Mary could not understand the boldness of her brother's criticism and was about to reply, when the expected footsteps were heard coming from the study. The prince walked in quickly and jauntily as was his wont, as if intentionally contrasting the briskness of his manners with the strict formality of his house. At that moment the great clock struck two and another with a shrill tone joined in from the drawing room. The prince stood still; his lively glittering eyes from under their thick, bushy eyebrows sternly scanned all present and rested on the little princess. She felt, as courtiers do when the Tsar enters, the sensation of fear and respect which the old man inspired in all around him. He stroked her hair and then patted her awkwardly on the back of her neck. "I'm glad, glad, to see you," he said, looking attentively into her eyes, and then quickly went to his place and sat down. "Sit down, sit down! Sit down, Michael Ianovich!" He indicated a place beside him to his daughter-in-law. A footman moved the chair for her. "Ho, ho!" said the old man, casting his eyes on her rounded figure. "You've been in a hurry. That's bad!" He laughed in his usual dry, cold, unpleasant way, with his lips only and not with his eyes. "You must walk, walk as much as possible, as much as possible," he said. The little princess did not, or did not wish to, hear his words. She was silent and seemed confused. The prince asked her about her father, and she began to smile and talk. He asked about mutual acquaintances, and she became still more animated and chattered away giving him greetings from various people and retailing the town gossip. "Countess Apraksina, poor thing, has lost her husband and she has cried her eyes out," she said, growing more and more lively. As she became animated the prince looked at her more and more sternly, and suddenly, as if he had studied her sufficiently and had formed a definite idea of her, he turned away and addressed Michael Ivanovich. "Well, Michael Ivanovich, our Bonaparte will be having a bad time of it. Prince Andrew" (he always spoke thus of his son) "has been telling me what forces are being collected against him! While you and I never thought much of him." Michael Ivanovich did not at all know when "you and I" had said such things about Bonaparte, but understanding that he was wanted as a peg on which to hang the prince's favorite topic, he looked inquiringly at the young prince, wondering what would follow. "He is a great tactician!" said the prince to his son, pointing to the architect. And the conversation again turned on the war, on Bonaparte, and the generals and statesmen of the day. The old prince seemed convinced not only that all the men of the day were mere babies who did not know the A B C of war or of politics, and that Bonaparte was an insignificant little Frenchy, successful only because there were no longer any Potemkins or Suvorovs left to oppose him; but he was also convinced that there were no political difficulties in Europe and no real war, but only a sort of puppet show at which the men of the day were playing, pretending to do something real. Prince Andrew gaily bore with his father's ridicule of the new men, and drew him on and listened to him with evident pleasure. "The past always seems good," said he, "but did not Suvorov himself fall into a trap Moreau set him, and from which he did not know how to escape?" "Who told you that? Who?" cried the prince. "Suvorov!" And he jerked away his plate, which Tikhon briskly caught. "Suvorov!... Consider, Prince Andrew. Two... Frederick and Suvorov; Moreau!... Moreau would have been a prisoner if Suvorov had had a free hand; but he had the Hofs-kriegs-wurst-schnapps-Rath on his hands. It would have puzzled the devil himself! When you get there you'll find out what those Hofs-kriegs-wurst-Raths are! Suvorov couldn't manage them so what chance has Michael Kutuzov? No, my dear boy," he continued, "you and your generals won't get on against Buonaparte; you'll have to call in the French, so that birds of a feather may fight together. The German, Pahlen, has been sent to New York in America, to fetch the Frenchman, Moreau," he said, alluding to the invitation made that year to Moreau to enter the Russian service.... "Wonderful!... Were the Potemkins, Suvorovs, and Orlovs Germans? No, lad, either you fellows have all lost your wits, or I have outlived mine. May God help you, but we'll see what will happen. Buonaparte has become a great commander among them! Hm!..." "I don't at all say that all the plans are good," said Prince Andrew, "I am only surprised at your opinion of Bonaparte. You may laugh as much as you like, but all the same Bonaparte is a great general!" "Michael Ivanovich!" cried the old prince to the architect who, busy with his roast meat, hoped he had been forgotten: "Didn't I tell you Buonaparte was a great tactician? Here, he says the same thing." "To be sure, your excellency." replied the architect. The prince again laughed his frigid laugh. "Buonaparte was born with a silver spoon in his mouth. He has got splendid soldiers. Besides he began by attacking Germans. And only idlers have failed to beat the Germans. Since the world began everybody has beaten the Germans. They beat no one--except one another. He made his reputation fighting them." And the prince began explaining all the blunders which, according to him, Bonaparte had made in his campaigns and even in politics. His son made no rejoinder, but it was evident that whatever arguments were presented he was as little able as his father to change his opinion. He listened, refraining from a reply, and involuntarily wondered how this old man, living alone in the country for so many years, could know and discuss so minutely and acutely all the recent European military and political events. "You think I'm an old man and don't understand the present state of affairs?" concluded his father. "But it troubles me. I don't sleep at night. Come now, where has this great commander of yours shown his skill?" he concluded. "That would take too long to tell," answered the son. "Well, then go to your Buonaparte! Mademoiselle Bourienne, here's another admirer of that powder-monkey emperor of yours," he exclaimed in excellent French. "You know, Prince, I am not a Bonapartist!" "Dieu sait quand reviendra..." hummed the prince out of tune and, with a laugh still more so, he quitted the table. The little princess during the whole discussion and the rest of the dinner sat silent, glancing with a frightened look now at her father-in-law and now at Princess Mary. When they left the table she took her sister-in-law's arm and drew her into another room. "What a clever man your father is," said she; "perhaps that is why I am afraid of him." "Oh, he is so kind!" answered Princess Mary. CHAPTER XXVIII Prince Andrew was to leave next evening. The old prince, not altering his routine, retired as usual after dinner. The little princess was in her sister-in-law's room. Prince Andrew in a traveling coat without epaulettes had been packing with his valet in the rooms assigned to him. After inspecting the carriage himself and seeing the trunks put in, he ordered the horses to be harnessed. Only those things he always kept with him remained in his room; a small box, a large canteen fitted with silver plate, two Turkish pistols and a saber--a present from his father who had brought it from the siege of Ochakov. All these traveling effects of Prince Andrew's were in very good order: new, clean, and in cloth covers carefully tied with tapes. When starting on a journey or changing their mode of life, men capable of reflection are generally in a serious frame of mind. At such moments one reviews the past and plans for the future. Prince Andrew's face looked very thoughtful and tender. With his hands behind him he paced briskly from corner to corner of the room, looking straight before him and thoughtfully shaking his head. Did he fear going to the war, or was he sad at leaving his wife?--perhaps both, but evidently he did not wish to be seen in that mood, for hearing footsteps in the passage he hurriedly unclasped his hands, stopped at a table as if tying the cover of the small box, and assumed his usual tranquil and impenetrable expression. It was the heavy tread of Princess Mary that he heard. "I hear you have given orders to harness," she cried, panting (she had apparently been running), "and I did so wish to have another talk with you alone! God knows how long we may again be parted. You are not angry with me for coming? You have changed so, Andrusha," she added, as if to explain such a question. She smiled as she uttered his pet name, "Andrusha." It was obviously strange to her to think that this stern handsome man should be Andrusha--the slender mischievous boy who had been her playfellow in childhood. "And where is Lise?" he asked, answering her question only by a smile. "She was so tired that she has fallen asleep on the sofa in my room. Oh, Andrew! What a treasure of a wife you have," said she, sitting down on the sofa, facing her brother. "She is quite a child: such a dear, merry child. I have grown so fond of her." Prince Andrew was silent, but the princess noticed the ironical and contemptuous look that showed itself on his face. "One must be indulgent to little weaknesses; who is free from them, Andrew? Don't forget that she has grown up and been educated in society, and so her position now is not a rosy one. We should enter into everyone's situation. Tout comprendre, c'est tout pardonner.* Think it must be for her, poor thing, after what she has been used to, to be parted from her husband and be left alone in the country, in her condition! It's very hard." *To understand all is to forgive all. Prince Andrew smiled as he looked at his sister, as we smile at those we think we thoroughly understand. "You live in the country and don't think the life terrible," he replied. "I... that's different. Why speak of me? I don't want any other life, and can't, for I know no other. But think, Andrew: for a young society woman to be buried in the country during the best years of her life, all alone--for Papa is always busy, and I... well, you know what poor resources I have for entertaining a woman used to the best society. There is only Mademoiselle Bourienne...." "I don't like your Mademoiselle Bourienne at all," said Prince Andrew. "No? She is very nice and kind and, above all, she's much to be pitied. She has no one, no one. To tell the truth, I don't need her, and she's even in my way. You know I always was a savage, and now am even more so. I like being alone.... Father likes her very much. She and Michael Ivanovich are the two people to whom he is always gentle and kind, because he has been a benefactor to them both. As Sterne says: 'We don't love people so much for the good they have done us, as for the good we have done them.' Father took her when she was homeless after losing her own father. She is very good-natured, and my father likes her way of reading. She reads to him in the evenings and reads splendidly." "To be quite frank, Mary, I expect Father's character sometimes makes things trying for you, doesn't it?" Prince Andrew asked suddenly. Princess Mary was first surprised and then aghast at this question. "For me? For me?... Trying for me!..." said she. "He always was rather harsh; and now I should think he's getting very trying," said Prince Andrew, apparently speaking lightly of their father in order to puzzle or test his sister. "You are good in every way, Andrew, but you have a kind of intellectual pride," said the princess, following the train of her own thoughts rather than the trend of the conversation--"and that's a great sin. How can one judge Father? But even if one might, what feeling except veneration could such a man as my father evoke? And I am so contented and happy with him. I only wish you were all as happy as I am." Her brother shook his head incredulously. "The only thing that is hard for me... I will tell you the truth, Andrew... is Father's way of treating religious subjects. I don't understand how a man of his immense intellect can fail to see what is as clear as day, and can go so far astray. That is the only thing that makes me unhappy. But even in this I can see lately a shade of improvement. His satire has been less bitter of late, and there was a monk he received and had a long talk with." "Ah! my dear, I am afraid you and your monk are wasting your powder," said Prince Andrew banteringly yet tenderly. "Ah! mon ami, I only pray, and hope that God will hear me. Andrew..." she said timidly after a moment's silence, "I have a great favor to ask of you." "What is it, dear?" "No--promise that you will not refuse! It will give you no trouble and is nothing unworthy of you, but it will comfort me. Promise, Andrusha!..." said she, putting her hand in her reticule but not yet taking out what she was holding inside it, as if what she held were the subject of her request and must not be shown before the request was granted. She looked timidly at her brother. "Even if it were a great deal of trouble..." answered Prince Andrew, as if guessing what it was about. "Think what you please! I know you are just like Father. Think as you please, but do this for my sake! Please do! Father's father, our grandfather, wore it in all his wars." (She still did not take out what she was holding in her reticule.) "So you promise?" "Of course. What is it?" "Andrew, I bless you with this icon and you must promise me you will never take it off. Do you promise?" "If it does not weigh a hundredweight and won't break my neck... To please you..." said Prince Andrew. But immediately, noticing the pained expression his joke had brought to his sister's face, he repented and added: "I am glad; really, dear, I am very glad." "Against your will He will save and have mercy on you and bring you to Himself, for in Him alone is truth and peace," said she in a voice trembling with emotion, solemnly holding up in both hands before her brother a small, oval, antique, dark-faced icon of the Saviour in a gold setting, on a finely wrought silver chain. She crossed herself, kissed the icon, and handed it to Andrew. "Please, Andrew, for my sake!..." Rays of gentle light shone from her large, timid eyes. Those eyes lit up the whole of her thin, sickly face and made it beautiful. Her brother would have taken the icon, but she stopped him. Andrew understood, crossed himself and kissed the icon. There was a look of tenderness, for he was touched, but also a gleam of irony on his face. "Thank you, my dear." She kissed him on the forehead and sat down again on the sofa. They were silent for a while. "As I was saying to you, Andrew, be kind and generous as you always used to be. Don't judge Lise harshly," she began. "She is so sweet, so good-natured, and her position now is a very hard one." "I do not think I have complained of my wife to you, Masha, or blamed her. Why do you say all this to me?" Red patches appeared on Princess Mary's face and she was silent as if she felt guilty. "I have said nothing to you, but you have already been talked to. And I am sorry for that," he went on. The patches grew deeper on her forehead, neck, and cheeks. She tried to say something but could not. Her brother had guessed right: the little princess had been crying after dinner and had spoken of her forebodings about her confinement, and how she dreaded it, and had complained of her fate, her father-in-law, and her husband. After crying she had fallen asleep. Prince Andrew felt sorry for his sister. "Know this, Masha: I can't reproach, have not reproached, and never shall reproach my wife with anything, and I cannot reproach myself with anything in regard to her; and that always will be so in whatever circumstances I may be placed. But if you want to know the truth... if you want to know whether I am happy? No! Is she happy? No! But why this is so I don't know..." As he said this he rose, went to his sister, and, stooping, kissed her forehead. His fine eyes lit up with a thoughtful, kindly, and unaccustomed brightness, but he was looking not at his sister but over her head toward the darkness of the open doorway. "Let us go to her, I must say good-by. Or--go and wake and I'll come in a moment. Petrushka!" he called to his valet: "Come here, take these away. Put this on the seat and this to the right." Princess Mary rose and moved to the door, then stopped and said: "Andrew, if you had faith you would have turned to God and asked Him to give you the love you do not feel, and your prayer would have been answered." "Well, may be!" said Prince Andrew. "Go, Masha; I'll come immediately." On the way to his sister's room, in the passage which connected one wing with the other, Prince Andrew met Mademoiselle Bourienne smiling sweetly. It was the third time that day that, with an ecstatic and artless smile, she had met him in secluded passages. "Oh! I thought you were in your room," she said, for some reason blushing and dropping her eyes. Prince Andrew looked sternly at her and an expression of anger suddenly came over his face. He said nothing to her but looked at her forehead and hair, without looking at her eyes, with such contempt that the Frenchwoman blushed and went away without a word. When he reached his sister's room his wife was already awake and her merry voice, hurrying one word after another, came through the open door. She was speaking as usual in French, and as if after long self-restraint she wished to make up for lost time. "No, but imagine the old Countess Zubova, with false curls and her mouth full of false teeth, as if she were trying to cheat old age.... Ha, ha, ha! Mary!" This very sentence about Countess Zubova and this same laugh Prince Andrew had already heard from his wife in the presence of others some five times. He entered the room softly. The little princess, plump and rosy, was sitting in an easy chair with her work in her hands, talking incessantly, repeating Petersburg reminiscences and even phrases. Prince Andrew came up, stroked her hair, and asked if she felt rested after their journey. She answered him and continued her chatter. The coach with six horses was waiting at the porch. It was an autumn night, so dark that the coachman could not see the carriage pole. Servants with lanterns were bustling about in the porch. The immense house was brilliant with lights shining through its lofty windows. The domestic serfs were crowding in the hall, waiting to bid good-by to the young prince. The members of the household were all gathered in the reception hall: Michael Ivanovich, Mademoiselle Bourienne, Princess Mary, and the little princess. Prince Andrew had been called to his father's study as the latter wished to say good-by to him alone. All were waiting for them to come out. When Prince Andrew entered the study the old man in his old-age spectacles and white dressing gown, in which he received no one but his son, sat at the table writing. He glanced round. "Going?" And he went on writing. "I've come to say good-by." "Kiss me here," and he touched his cheek: "Thanks, thanks!" "What do you thank me for?" "For not dilly-dallying and not hanging to a woman's apron strings. The Service before everything. Thanks, thanks!" And he went on writing, so that his quill spluttered and squeaked. "If you have anything to say, say it. These two things can be done together," he added. "About my wife... I am ashamed as it is to leave her on your hands..." "Why talk nonsense? Say what you want." "When her confinement is due, send to Moscow for an accoucheur.... Let him be here...." The old prince stopped writing and, as if not understanding, fixed his stern eyes on his son. "I know that no one can help if nature does not do her work," said Prince Andrew, evidently confused. "I know that out of a million cases only one goes wrong, but it is her fancy and mine. They have been telling her things. She has had a dream and is frightened." "Hm... Hm..." muttered the old prince to himself, finishing what he was writing. "I'll do it." He signed with a flourish and suddenly turning to his son began to laugh. "It's a bad business, eh?" "What is bad, Father?" "The wife!" said the old prince, briefly and significantly. "I don't understand!" said Prince Andrew. "No, it can't be helped, lad," said the prince. "They're all like that; one can't unmarry. Don't be afraid; I won't tell anyone, but you know it yourself." He seized his son by the hand with small bony fingers, shook it, looked straight into his son's face with keen eyes which seemed to see through him, and again laughed his frigid laugh. The son sighed, thus admitting that his father had understood him. The old man continued to fold and seal his letter, snatching up and throwing down the wax, the seal, and the paper, with his accustomed rapidity. "What's to be done? She's pretty! I will do everything. Make your mind easy," said he in abrupt sentences while sealing his letter. Andrew did not speak; he was both pleased and displeased that his father understood him. The old man got up and gave the letter to his son. "Listen!" said he; "don't worry about your wife: what can be done shall be. Now listen! Give this letter to Michael Ilarionovich.* I have written that he should make use of you in proper places and not keep you long as an adjutant: a bad position! Tell him I remember and like him. Write and tell me how he receives you. If he is all right--serve him. Nicholas Bolkonski's son need not serve under anyone if he is in disfavor. Now come here." *Kutuzov. He spoke so rapidly that he did not finish half his words, but his son was accustomed to understand him. He led him to the desk, raised the lid, drew out a drawer, and took out an exercise book filled with his bold, tall, close handwriting. "I shall probably die before you. So remember, these are my memoirs; hand them to the Emperor after my death. Now here is a Lombard bond and a letter; it is a premium for the man who writes a history of Suvorov's wars. Send it to the Academy. Here are some jottings for you to read when I am gone. You will find them useful." Andrew did not tell his father that he would no doubt live a long time yet. He felt that he must not say it. "I will do it all, Father," he said. "Well, now, good-by!" He gave his son his hand to kiss, and embraced him. "Remember this, Prince Andrew, if they kill you it will hurt me, your old father..." he paused unexpectedly, and then in a querulous voice suddenly shrieked: "but if I hear that you have not behaved like a son of Nicholas Bolkonski, I shall be ashamed!" "You need not have said that to me, Father," said the son with a smile. The old man was silent. "I also wanted to ask you," continued Prince Andrew, "if I'm killed and if I have a son, do not let him be taken away from you- as I said yesterday... let him grow up with you.... Please." "Not let the wife have him?" said the old man, and laughed. They stood silent, facing one another. The old man's sharp eyes were fixed straight on his son's. Something twitched in the lower part of the old prince's face. "We've said good-by. Go!" he suddenly shouted in a loud, angry voice, opening his door. "What is it? What?" asked both princesses when they saw for a moment at the door Prince Andrew and the figure of the old man in a white dressing gown, spectacled and wigless, shouting in an angry voice. Prince Andrew sighed and made no reply. "Well!" he said, turning to his wife. And this "Well!" sounded coldly ironic, as if he were saying,: "Now go through your performance." "Andrew, already!" said the little princess, turning pale and looking with dismay at her husband. He embraced her. She screamed and fell unconscious on his shoulder. He cautiously released the shoulder she leaned on, looked into her face, and carefully placed her in an easy chair. "Adieu, Mary," said he gently to his sister, taking her by the hand and kissing her, and then he left the room with rapid steps. The little princess lay in the armchair, Mademoiselle Bourienne chafing her temples. Princess Mary, supporting her sister-in-law, still looked with her beautiful eyes full of tears at the door through which Prince Andrew had gone and made the sign of the cross in his direction. From the study, like pistol shots, came the frequent sound of the old man angrily blowing his nose. Hardly had Prince Andrew gone when the study door opened quickly and the stern figure of the old man in the white dressing gown looked out. "Gone? That's all right!" said he; and looking angrily at the unconscious little princess, he shook his head reprovingly and slammed the door. BOOK TWO: 1805 CHAPTER I In October, 1805, a Russian army was occupying the villages and towns of the Archduchy of Austria, and yet other regiments freshly arriving from Russia were settling near the fortress of Braunau and burdening the inhabitants on whom they were quartered. Braunau was the headquarters of the commander-in-chief, Kutuzov. On October 11, 1805, one of the infantry regiments that had just reached Braunau had halted half a mile from the town, waiting to be inspected by the commander in chief. Despite the un-Russian appearance of the locality and surroundings--fruit gardens, stone fences, tiled roofs, and hills in the distance--and despite the fact that the inhabitants (who gazed with curiosity at the soldiers) were not Russians, the regiment had just the appearance of any Russian regiment preparing for an inspection anywhere in the heart of Russia. On the evening of the last day's march an order had been received that the commander in chief would inspect the regiment on the march. Though the words of the order were not clear to the regimental commander, and the question arose whether the troops were to be in marching order or not, it was decided at a consultation between the battalion commanders to present the regiment in parade order, on the principle that it is always better to "bow too low than not bow low enough." So the soldiers, after a twenty-mile march, were kept mending and cleaning all night long without closing their eyes, while the adjutants and company commanders calculated and reckoned, and by morning the regiment--instead of the straggling, disorderly crowd it had been on its last march the day before--presented a well-ordered array of two thousand men each of whom knew his place and his duty, had every button and every strap in place, and shone with cleanliness. And not only externally was all in order, but had it pleased the commander in chief to look under the uniforms he would have found on every man a clean shirt, and in every knapsack the appointed number of articles, "awl, soap, and all," as the soldiers say. There was only one circumstance concerning which no one could be at ease. It was the state of the soldiers' boots. More than half the men's boots were in holes. But this defect was not due to any fault of the regimental commander, for in spite of repeated demands boots had not been issued by the Austrian commissariat, and the regiment had marched some seven hundred miles. The commander of the regiment was an elderly, choleric, stout, and thick-set general with grizzled eyebrows and whiskers, and wider from chest to back than across the shoulders. He had on a brand-new uniform showing the creases where it had been folded and thick gold epaulettes which seemed to stand rather than lie down on his massive shoulders. He had the air of a man happily performing one of the most solemn duties of his life. He walked about in front of the line and at every step pulled himself up, slightly arching his back. It was plain that the commander admired his regiment, rejoiced in it, and that his whole mind was engrossed by it, yet his strut seemed to indicate that, besides military matters, social interests and the fair sex occupied no small part of his thoughts. "Well, Michael Mitrich, sir?" he said, addressing one of the battalion commanders who smilingly pressed forward (it was plain that they both felt happy). "We had our hands full last night. However, I think the regiment is not a bad one, eh?" The battalion commander perceived the jovial irony and laughed. "It would not be turned off the field even on the Tsaritsin Meadow." "What?" asked the commander. At that moment, on the road from the town on which signalers had been posted, two men appeared on horse back. They were an aide-de-camp followed by a Cossack. The aide-de-camp was sent to confirm the order which had not been clearly worded the day before, namely, that the commander in chief wished to see the regiment just in the state in which it had been on the march: in their greatcoats, and packs, and without any preparation whatever. A member of the Hofkriegsrath from Vienna had come to Kutuzov the day before with proposals and demands for him to join up with the army of the Archduke Ferdinand and Mack, and Kutuzov, not considering this junction advisable, meant, among other arguments in support of his view, to show the Austrian general the wretched state in which the troops arrived from Russia. With this object he intended to meet the regiment; so the worse the condition it was in, the better pleased the commander in chief would be. Though the aide-de-camp did not know these circumstances, he nevertheless delivered the definite order that the men should be in their greatcoats and in marching order, and that the commander in chief would otherwise be dissatisfied. On hearing this the regimental commander hung his head, silently shrugged his shoulders, and spread out his arms with a choleric gesture. "A fine mess we've made of it!" he remarked. "There now! Didn't I tell you, Michael Mitrich, that if it was said 'on the march' it meant in greatcoats?" said he reproachfully to the battalion commander. "Oh, my God!" he added, stepping resolutely forward. "Company commanders!" he shouted in a voice accustomed to command. "Sergeants major!... How soon will he be here?" he asked the aide-de-camp with a respectful politeness evidently relating to the personage he was referring to. "In an hour's time, I should say." "Shall we have time to change clothes?" "I don't know, General...." The regimental commander, going up to the line himself, ordered the soldiers to change into their greatcoats. The company commanders ran off to their companies, the sergeants major began bustling (the greatcoats were not in very good condition), and instantly the squares that had up to then been in regular order and silent began to sway and stretch and hum with voices. On all sides soldiers were running to and fro, throwing up their knapsacks with a jerk of their shoulders and pulling the straps over their heads, unstrapping their overcoats and drawing the sleeves on with upraised arms. In half an hour all was again in order, only the squares had become gray instead of black. The regimental commander walked with his jerky steps to the front of the regiment and examined it from a distance. "Whatever is this? This!" he shouted and stood still. "Commander of the third company!" "Commander of the third company wanted by the general!... commander to the general... third company to the commander." The words passed along the lines and an adjutant ran to look for the missing officer. When the eager but misrepeated words had reached their destination in a cry of: "The general to the third company," the missing officer appeared from behind his company and, though he was a middle-aged man and not in the habit of running, trotted awkwardly stumbling on his toes toward the general. The captain's face showed the uneasiness of a schoolboy who is told to repeat a lesson he has not learned. Spots appeared on his nose, the redness of which was evidently due to intemperance, and his mouth twitched nervously. The general looked the captain up and down as he came up panting, slackening his pace as he approached. "You will soon be dressing your men in petticoats! What is this?" shouted the regimental commander, thrusting forward his jaw and pointing at a soldier in the ranks of the third company in a greatcoat of bluish cloth, which contrasted with the others. "What have you been after? The commander in chief is expected and you leave your place? Eh? I'll teach you to dress the men in fancy coats for a parade.... Eh...?" The commander of the company, with his eyes fixed on his superior, pressed two fingers more and more rigidly to his cap, as if in this pressure lay his only hope of salvation. "Well, why don't you speak? Whom have you got there dressed up as a Hungarian?" said the commander with an austere gibe. "Your excellency..." "Well, your excellency, what? Your excellency! But what about your excellency?... nobody knows." "Your excellency, it's the officer Dolokhov, who has been reduced to the ranks," said the captain softly. "Well? Has he been degraded into a field marshal, or into a soldier? If a soldier, he should be dressed in regulation uniform like the others." "Your excellency, you gave him leave yourself, on the march." "Gave him leave? Leave? That's just like you young men," said the regimental commander cooling down a little. "Leave indeed.... One says a word to you and you... What?" he added with renewed irritation, "I beg you to dress your men decently." And the commander, turning to look at the adjutant, directed his jerky steps down the line. He was evidently pleased at his own display of anger and walking up to the regiment wished to find a further excuse for wrath. Having snapped at an officer for an unpolished badge, at another because his line was not straight, he reached the third company. "H-o-o-w are you standing? Where's your leg? Your leg?" shouted the commander with a tone of suffering in his voice, while there were still five men between him and Dolokhov with his bluish-gray uniform. Dolokhov slowly straightened his bent knee, looking straight with his clear, insolent eyes in the general's face. "Why a blue coat? Off with it... Sergeant major! Change his coat... the ras..." he did not finish. "General, I must obey orders, but I am not bound to endure..." Dolokhov hurriedly interrupted. "No talking in the ranks!... No talking, no talking!" "Not bound to endure insults," Dolokhov concluded in loud, ringing tones. The eyes of the general and the soldier met. The general became silent, angrily pulling down his tight scarf. "I request you to have the goodness to change your coat," he said as he turned away. CHAPTER II "He's coming!" shouted the signaler at that moment. The regimental commander, flushing, ran to his horse, seized the stirrup with trembling hands, threw his body across the saddle, righted himself, drew his saber, and with a happy and resolute countenance, opening his mouth awry, prepared to shout. The regiment fluttered like a bird preening its plumage and became motionless. "Att-ention!" shouted the regimental commander in a soul-shaking voice which expressed joy for himself, severity for the regiment, and welcome for the approaching chief. Along the broad country road, edged on both sides by trees, came a high, light blue Viennese caleche, slightly creaking on its springs and drawn by six horses at a smart trot. Behind the caleche galloped the suite and a convoy of Croats. Beside Kutuzov sat an Austrian general, in a white uniform that looked strange among the Russian black ones. The caleche stopped in front of the regiment. Kutuzov and the Austrian general were talking in low voices and Kutuzov smiled slightly as treading heavily he stepped down from the carriage just as if those two thousand men breathlessly gazing at him and the regimental commander did not exist. The word of command rang out, and again the regiment quivered, as with a jingling sound it presented arms. Then amidst a dead silence the feeble voice of the commander in chief was heard. The regiment roared, "Health to your ex... len... len... lency!" and again all became silent. At first Kutuzov stood still while the regiment moved; then he and the general in white, accompanied by the suite, walked between the ranks. From the way the regimental commander saluted the commander in chief and devoured him with his eyes, drawing himself up obsequiously, and from the way he walked through the ranks behind the generals, bending forward and hardly able to restrain his jerky movements, and from the way he darted forward at every word or gesture of the commander in chief, it was evident that he performed his duty as a subordinate with even greater zeal than his duty as a commander. Thanks to the strictness and assiduity of its commander the regiment, in comparison with others that had reached Braunau at the same time, was in splendid condition. There were only 217 sick and stragglers. Everything was in good order except the boots. Kutuzov walked through the ranks, sometimes stopping to say a few friendly words to officers he had known in the Turkish war, sometimes also to the soldiers. Looking at their boots he several times shook his head sadly, pointing them out to the Austrian general with an expression which seemed to say that he was not blaming anyone, but could not help noticing what a bad state of things it was. The regimental commander ran forward on each such occasion, fearing to miss a single word of the commander in chief's regarding the regiment. Behind Kutuzov, at a distance that allowed every softly spoken word to be heard, followed some twenty men of his suite. These gentlemen talked among themselves and sometimes laughed. Nearest of all to the commander in chief walked a handsome adjutant. This was Prince Bolkonski. Beside him was his comrade Nesvitski, a tall staff officer, extremely stout, with a kindly, smiling, handsome face and moist eyes. Nesvitski could hardly keep from laughter provoked by a swarthy hussar officer who walked beside him. This hussar, with a grave face and without a smile or a change in the expression of his fixed eyes, watched the regimental commander's back and mimicked his every movement. Each time the commander started and bent forward, the hussar started and bent forward in exactly the same manner. Nesvitski laughed and nudged the others to make them look at the wag. Kutuzov walked slowly and languidly past thousands of eyes which were starting from their sockets to watch their chief. On reaching the third company he suddenly stopped. His suite, not having expected this, involuntarily came closer to him. "Ah, Timokhin!" said he, recognizing the red-nosed captain who had been reprimanded on account of the blue greatcoat. One would have thought it impossible for a man to stretch himself more than Timokhin had done when he was reprimanded by the regimental commander, but now that the commander in chief addressed him he drew himself up to such an extent that it seemed he could not have sustained it had the commander in chief continued to look at him, and so Kutuzov, who evidently understood his case and wished him nothing but good, quickly turned away, a scarcely perceptible smile flitting over his scarred and puffy face. "Another Ismail comrade," said he. "A brave officer! Are you satisfied with him?" he asked the regimental commander. And the latter--unconscious that he was being reflected in the hussar officer as in a looking glass--started, moved forward, and answered: "Highly satisfied, your excellency!" "We all have our weaknesses," said Kutuzov smiling and walking away from him. "He used to have a predilection for Bacchus." The regimental commander was afraid he might be blamed for this and did not answer. The hussar at that moment noticed the face of the red-nosed captain and his drawn-in stomach, and mimicked his expression and pose with such exactitude that Nesvitski could not help laughing. Kutuzov turned round. The officer evidently had complete control of his face, and while Kutuzov was turning managed to make a grimace and then assume a most serious, deferential, and innocent expression. The third company was the last, and Kutuzov pondered, apparently trying to recollect something. Prince Andrew stepped forward from among the suite and said in French: "You told me to remind you of the officer Dolokhov, reduced to the ranks in this regiment." "Where is Dolokhov?" asked Kutuzov. Dolokhov, who had already changed into a soldier's gray greatcoat, did not wait to be called. The shapely figure of the fair-haired soldier, with his clear blue eyes, stepped forward from the ranks, went up to the commander in chief, and presented arms. "Have you a complaint to make?" Kutuzov asked with a slight frown. "This is Dolokhov," said Prince Andrew. "Ah!" said Kutuzov. "I hope this will be a lesson to you. Do your duty. The Emperor is gracious, and I shan't forget you if you deserve well." The clear blue eyes looked at the commander in chief just as boldly as they had looked at the regimental commander, seeming by their expression to tear open the veil of convention that separates a commander in chief so widely from a private. "One thing I ask of your excellency," Dolokhov said in his firm, ringing, deliberate voice. "I ask an opportunity to atone for my fault and prove my devotion to His Majesty the Emperor and to Russia!" Kutuzov turned away. The same smile of the eyes with which he had turned from Captain Timokhin again flitted over his face. He turned away with a grimace as if to say that everything Dolokhov had said to him and everything he could say had long been known to him, that he was weary of it and it was not at all what he wanted. He turned away and went to the carriage. The regiment broke up into companies, which went to their appointed quarters near Braunau, where they hoped to receive boots and clothes and to rest after their hard marches. "You won't bear me a grudge, Prokhor Ignatych?" said the regimental commander, overtaking the third company on its way to its quarters and riding up to Captain Timokhin who was walking in front. (The regimental commander's face now that the inspection was happily over beamed with irrepressible delight.) "It's in the Emperor's service... it can't be helped... one is sometimes a bit hasty on parade... I am the first to apologize, you know me!... He was very pleased!" And he held out his hand to the captain. "Don't mention it, General, as if I'd be so bold!" replied the captain, his nose growing redder as he gave a smile which showed where two front teeth were missing that had been knocked out by the butt end of a gun at Ismail. "And tell Mr. Dolokhov that I won't forget him--he may be quite easy. And tell me, please--I've been meaning to ask--how is to ask- how is he behaving himself, and in general..." "As far as the service goes he is quite punctilious, your excellency; but his character..." said Timokhin. "And what about his character?" asked the regimental commander. "It's different on different days," answered the captain. "One day he is sensible, well educated, and good-natured, and the next he's a wild beast.... In Poland, if you please, he nearly killed a Jew." "Oh, well, well!" remarked the regimental commander. "Still, one must have pity on a young man in misfortune. You know he has important connections... Well, then, you just..." "I will, your excellency," said Timokhin, showing by his smile that he understood his commander's wish. "Well, of course, of course!" The regimental commander sought out Dolokhov in the ranks and, reining in his horse, said to him: "After the next affair... epaulettes." Dolokhov looked round but did not say anything, nor did the mocking smile on his lips change. "Well, that's all right," continued the regimental commander. "A cup of vodka for the men from me," he added so that the soldiers could hear. "I thank you all! God be praised!" and he rode past that company and overtook the next one. "Well, he's really a good fellow, one can serve under him," said Timokhin to the subaltern beside him. "In a word, a hearty one..." said the subaltern, laughing (the regimental commander was nicknamed King of Hearts). The cheerful mood of their officers after the inspection infected the soldiers. The company marched on gaily. The soldiers' voices could be heard on every side. "And they said Kutuzov was blind of one eye?" "And so he is! Quite blind!" "No, friend, he is sharper-eyed than you are. Boots and leg bands... he noticed everything..." "When he looked at my feet, friend... well, thinks I..." "And that other one with him, the Austrian, looked as if he were smeared with chalk--as white as flour! I suppose they polish him up as they do the guns." "I say, Fedeshon!... Did he say when the battles are to begin? You were near him. Everybody said that Buonaparte himself was at Braunau." "Buonaparte himself!... Just listen to the fool, what he doesn't know! The Prussians are up in arms now. The Austrians, you see, are putting them down. When they've been put down, the war with Buonaparte will begin. And he says Buonaparte is in Braunau! Shows you're a fool. You'd better listen more carefully!" "What devils these quartermasters are! See, the fifth company is turning into the village already... they will have their buckwheat cooked before we reach our quarters." "Give me a biscuit, you devil!" "And did you give me tobacco yesterday? That's just it, friend! Ah, well, never mind, here you are." "They might call a halt here or we'll have to do another four miles without eating." "Wasn't it fine when those Germans gave us lifts! You just sit still and are drawn along." "And here, friend, the people are quite beggarly. There they all seemed to be Poles--all under the Russian crown--but here they're all regular Germans." "Singers to the front " came the captain's order. And from the different ranks some twenty men ran to the front. A drummer, their leader, turned round facing the singers, and flourishing his arm, began a long-drawn-out soldiers' song, commencing with the words: "Morning dawned, the sun was rising," and concluding: "On then, brothers, on to glory, led by Father Kamenski." This song had been composed in the Turkish campaign and now being sung in Austria, the only change being that the words "Father Kamenski" were replaced by "Father Kutuzov." Having jerked out these last words as soldiers do and waved his arms as if flinging something to the ground, the drummer--a lean, handsome soldier of forty--looked sternly at the singers and screwed up his eyes. Then having satisfied himself that all eyes were fixed on him, he raised both arms as if carefully lifting some invisible but precious object above his head and, holding it there for some seconds, suddenly flung it down and began: "Oh, my bower, oh, my bower...!" "Oh, my bower new...!" chimed in twenty voices, and the castanet player, in spite of the burden of his equipment, rushed out to the front and, walking backwards before the company, jerked his shoulders and flourished his castanets as if threatening someone. The soldiers, swinging their arms and keeping time spontaneously, marched with long steps. Behind the company the sound of wheels, the creaking of springs, and the tramp of horses' hoofs were heard. Kutuzov and his suite were returning to the town. The commander in chief made a sign that the men should continue to march at ease, and he and all his suite showed pleasure at the sound of the singing and the sight of the dancing soldier and the gay and smartly marching men. In the second file from the right flank, beside which the carriage passed the company, a blue-eyed soldier involuntarily attracted notice. It was Dolokhov marching with particular grace and boldness in time to the song and looking at those driving past as if he pitied all who were not at that moment marching with the company. The hussar cornet of Kutuzov's suite who had mimicked the regimental commander, fell back from the carriage and rode up to Dolokhov. Hussar cornet Zherkov had at one time, in Petersburg, belonged to the wild set led by Dolokhov. Zherkov had met Dolokhov abroad as a private and had not seen fit to recognize him. But now that Kutuzov had spoken to the gentleman ranker, he addressed him with the cordiality of an old friend. "My dear fellow, how are you?" said he through the singing, making his horse keep pace with the company. "How am I?" Dolokhov answered coldly. "I am as you see." The lively song gave a special flavor to the tone of free and easy gaiety with which Zherkov spoke, and to the intentional coldness of Dolokhov's reply. "And how do you get on with the officers?" inquired Zherkov. "All right. They are good fellows. And how have you wriggled onto the staff?" "I was attached; I'm on duty." Both were silent. "She let the hawk fly upward from her wide right sleeve," went the song, arousing an involuntary sensation of courage and cheerfulness. Their conversation would probably have been different but for the effect of that song. "Is it true that Austrians have been beaten?" asked Dolokhov. "The devil only knows! They say so." "I'm glad," answered Dolokhov briefly and clearly, as the song demanded. "I say, come round some evening and we'll have a game of faro!" said Zherkov. "Why, have you too much money?" "Do come." "I can't. I've sworn not to. I won't drink and won't play till I get reinstated." "Well, that's only till the first engagement." "We shall see." They were again silent. "Come if you need anything. One can at least be of use on the staff..." Dolokhov smiled. "Don't trouble. If I want anything, I won't beg- I'll take it!" "Well, never mind; I only..." "And I only..." "Good-by." "Good health..." "It's a long, long way. To my native land..." Zherkov touched his horse with the spurs; it pranced excitedly from foot to foot uncertain with which to start, then settled down, galloped past the company, and overtook the carriage, still keeping time to the song. CHAPTER III On returning from the review, Kutuzov took the Austrian general into his private room and, calling his adjutant, asked for some papers relating to the condition of the troops on their arrival, and the letters that had come from the Archduke Ferdinand, who was in command of the advanced army. Prince Andrew Bolkonski came into the room with the required papers. Kutuzov and the Austrian member of the Hofkriegsrath were sitting at the table on which a plan was spread out. "Ah!..." said Kutuzov glancing at Bolkonski as if by this exclamation he was asking the adjutant to wait, and he went on with the conversation in French. "All I can say, General," said he with a pleasant elegance of expression and intonation that obliged one to listen to each deliberately spoken word. It was evident that Kutuzov himself listened with pleasure to his own voice. "All I can say, General, is that if the matter depended on my personal wishes, the will of His Majesty the Emperor Francis would have been fulfilled long ago. I should long ago have joined the archduke. And believe me on my honour that to me personally it would be a pleasure to hand over the supreme command of the army into the hands of a better informed and more skillful general--of whom Austria has so many--and to lay down all this heavy responsibility. But circumstances are sometimes too strong for us, General." And Kutuzov smiled in a way that seemed to say, "You are quite at liberty not to believe me and I don't even care whether you do or not, but you have no grounds for telling me so. And that is the whole point." The Austrian general looked dissatisfied, but had no option but to reply in the same tone. "On the contrary," he said, in a querulous and angry tone that contrasted with his flattering words, "on the contrary, your excellency's participation in the common action is highly valued by His Majesty; but we think the present delay is depriving the splendid Russian troops and their commander of the laurels they have been accustomed to win in their battles," he concluded his evidently prearranged sentence. Kutuzov bowed with the same smile. "But that is my conviction, and judging by the last letter with which His Highness the Archduke Ferdinand has honored me, I imagine that the Austrian troops, under the direction of so skillful a leader as General Mack, have by now already gained a decisive victory and no longer need our aid," said Kutuzov. The general frowned. Though there was no definite news of an Austrian defeat, there were many circumstances confirming the unfavorable rumors that were afloat, and so Kutuzov's suggestion of an Austrian victory sounded much like irony. But Kutuzov went on blandly smiling with the same expression, which seemed to say that he had a right to suppose so. And, in fact, the last letter he had received from Mack's army informed him of a victory and stated strategically the position of the army was very favorable. "Give me that letter," said Kutuzov turning to Prince Andrew. "Please have a look at it"--and Kutuzov with an ironical smile about the corners of his mouth read to the Austrian general the following passage, in German, from the Archduke Ferdinand's letter: We have fully concentrated forces of nearly seventy thousand men with which to attack and defeat the enemy should he cross the Lech. Also, as we are masters of Ulm, we cannot be deprived of the advantage of commanding both sides of the Danube, so that should the enemy not cross the Lech, we can cross the Danube, throw ourselves on his line of communications, recross the river lower down, and frustrate his intention should he try to direct his whole force against our faithful ally. We shall therefore confidently await the moment when the Imperial Russian army will be fully equipped, and shall then, in conjunction with it, easily find a way to prepare for the enemy the fate he deserves. Kutuzov sighed deeply on finishing this paragraph and looked at the member of the Hofkriegsrath mildly and attentively. "But you know the wise maxim your excellency, advising one to expect the worst," said the Austrian general, evidently wishing to have done with jests and to come to business. He involuntarily looked round at the aide-de-camp. "Excuse me, General," interrupted Kutuzov, also turning to Prince Andrew. "Look here, my dear fellow, get from Kozlovski all the reports from our scouts. Here are two letters from Count Nostitz and here is one from His Highness the Archduke Ferdinand and here are these," he said, handing him several papers, "make a neat memorandum in French out of all this, showing all the news we have had of the movements of the Austrian army, and then give it to his excellency." Prince Andrew bowed his head in token of having understood from the first not only what had been said but also what Kutuzov would have liked to tell him. He gathered up the papers and with a bow to both, stepped softly over the carpet and went out into the waiting room. Though not much time had passed since Prince Andrew had left Russia, he had changed greatly during that period. In the expression of his face, in his movements, in his walk, scarcely a trace was left of his former affected languor and indolence. He now looked like a man who has time to think of the impression he makes on others, but is occupied with agreeable and interesting work. His face expressed more satisfaction with himself and those around him, his smile and glance were brighter and more attractive. Kutuzov, whom he had overtaken in Poland, had received him very kindly, promised not to forget him, distinguished him above the other adjutants, and had taken him to Vienna and given him the more serious commissions. From Vienna Kutuzov wrote to his old comrade, Prince Andrew's father. Your son bids fair to become an officer distinguished by his industry, firmness, and expedition. I consider myself fortunate to have such a subordinate by me. On Kutuzov's staff, among his fellow officers and in the army generally, Prince Andrew had, as he had had in Petersburg society, two quite opposite reputations. Some, a minority, acknowledged him to be different from themselves and from everyone else, expected great things of him, listened to him, admired, and imitated him, and with them Prince Andrew was natural and pleasant. Others, the majority, disliked him and considered him conceited, cold, and disagreeable. But among these people Prince Andrew knew how to take his stand so that they respected and even feared him. Coming out of Kutuzov's room into the waiting room with the papers in his hand Prince Andrew came up to his comrade, the aide-de-camp on duty, Kozlovski, who was sitting at the window with a book. "Well, Prince?" asked Kozlovski. "I am ordered to write a memorandum explaining why we are not advancing." "And why is it?" Prince Andrew shrugged his shoulders. "Any news from Mack?" "No." "If it were true that he has been beaten, news would have come." "Probably," said Prince Andrew moving toward the outer door. But at that instant a tall Austrian general in a greatcoat, with the order of Maria Theresa on his neck and a black bandage round his head, who had evidently just arrived, entered quickly, slamming the door. Prince Andrew stopped short. "Commander in Chief Kutuzov?" said the newly arrived general speaking quickly with a harsh German accent, looking to both sides and advancing straight toward the inner door. "The commander in chief is engaged," said Kozlovski, going hurriedly up to the unknown general and blocking his way to the door. "Whom shall I announce?" The unknown general looked disdainfully down at Kozlovski, who was rather short, as if surprised that anyone should not know him. "The commander in chief is engaged," repeated Kozlovski calmly. The general's face clouded, his lips quivered and trembled. He took out a notebook, hurriedly scribbled something in pencil, tore out the leaf, gave it to Kozlovski, stepped quickly to the window, and threw himself into a chair, gazing at those in the room as if asking, "Why do they look at me?" Then he lifted his head, stretched his neck as if he intended to say something, but immediately, with affected indifference, began to hum to himself, producing a queer sound which immediately broke off. The door of the private room opened and Kutuzov appeared in the doorway. The general with the bandaged head bent forward as though running away from some danger, and, making long, quick strides with his thin legs, went up to Kutuzov. "Vous voyez le malheureux Mack," he uttered in a broken voice. Kutuzov's face as he stood in the open doorway remained perfectly immobile for a few moments. Then wrinkles ran over his face like a wave and his forehead became smooth again, he bowed his head respectfully, closed his eyes, silently let Mack enter his room before him, and closed the door himself behind him. The report which had been circulated that the Austrians had been beaten and that the whole army had surrendered at Ulm proved to be correct. Within half an hour adjutants had been sent in various directions with orders which showed that the Russian troops, who had hitherto been inactive, would also soon have to meet the enemy. Prince Andrew was one of those rare staff officers whose chief interest lay in the general progress of the war. When he saw Mack and heard the details of his disaster he understood that half the campaign was lost, understood all the difficulties of the Russian army's position, and vividly imagined what awaited it and the part he would have to play. Involuntarily he felt a joyful agitation at the thought of the humiliation of arrogant Austria and that in a week's time he might, perhaps, see and take part in the first Russian encounter with the French since Suvorov met them. He feared that Bonaparte's genius might outweigh all the courage of the Russian troops, and at the same time could not admit the idea of his hero being disgraced. Excited and irritated by these thoughts Prince Andrew went toward his room to write to his father, to whom he wrote every day. In the corridor he met Nesvitski, with whom he shared a room, and the wag Zherkov; they were as usual laughing. "Why are you so glum?" asked Nesvitski noticing Prince Andrew's pale face and glittering eyes. "There's nothing to be gay about," answered Bolkonski. Just as Prince Andrew met Nesvitski and Zherkov, there came toward them from the other end of the corridor, Strauch, an Austrian general who on Kutuzov's staff in charge of the provisioning of the Russian army, and the member of the Hofkriegsrath who had arrived the previous evening. There was room enough in the wide corridor for the generals to pass the three officers quite easily, but Zherkov, pushing Nesvitski aside with his arm, said in a breathless voice, "They're coming!... they're coming!... Stand aside, make way, please make way!" The generals were passing by, looking as if they wished to avoid embarrassing attentions. On the face of the wag Zherkov there suddenly appeared a stupid smile of glee which he seemed unable to suppress. "Your excellency," said he in German, stepping forward and addressing the Austrian general, "I have the honor to congratulate you." He bowed his head and scraped first with one foot and then with the other, awkwardly, like a child at a dancing lesson. The member of the Hofkriegsrath looked at him severely but, seeing the seriousness of his stupid smile, could not but give him a moment's attention. He screwed up his eyes showing that he was listening. "I have the honor to congratulate you. General Mack has arrived, quite well, only a little bruised just here," he added, pointing with a beaming smile to his head. The general frowned, turned away, and went on. "Gott, wie naiv!"* said he angrily, after he had gone a few steps. *"Good God, what simplicity!" Nesvitski with a laugh threw his arms round Prince Andrew, but Bolkonski, turning still paler, pushed him away with an angry look and turned to Zherkov. The nervous irritation aroused by the appearance of Mack, the news of his defeat, and the thought of what lay before the Russian army found vent in anger at Zherkov's untimely jest. "If you, sir, choose to make a buffoon of yourself," he said sharply, with a slight trembling of the lower jaw, "I can't prevent your doing so; but I warn you that if you dare to play the fool in my presence, I will teach you to behave yourself." Nesvitski and Zherkov were so surprised by this outburst that they gazed at Bolkonski silently with wide-open eyes. "What's the matter? I only congratulated them," said Zherkov. "I am not jesting with you; please be silent!" cried Bolkonski, and taking Nesvitski's arm he left Zherkov, who did not know what to say. "Come, what's the matter, old fellow?" said Nesvitski trying to soothe him. "What's the matter?" exclaimed Prince Andrew standing still in his excitement. "Don't you understand that either we are officers serving our Tsar and our country, rejoicing in the successes and grieving at the misfortunes of our common cause, or we are merely lackeys who care nothing for their master's business. Quarante mille hommes massacres et l'armee de nos allies detruite, et vous trouvez la le mot pour rire,"* he said, as if strengthening his views by this French sentence. "C'est bien pour un garcon de rein comme cet individu dont vous avez fait un ami, mais pas pour vous, pas pour vous.*[2] Only a hobbledehoy could amuse himself in this way," he added in Russian--but pronouncing the word with a French accent- having noticed that Zherkov could still hear him. *"Forty thousand men massacred and the army of our allies destroyed, and you find that a cause for jesting!" *[2] "It is all very well for that good-for-nothing fellow of whom you have made a friend, but not for you, not for you." He waited a moment to see whether the cornet would answer, but he turned and went out of the corridor. CHAPTER IV The Pavlograd Hussars were stationed two miles from Braunau. The squadron in which Nicholas Rostov served as a cadet was quartered in the German village of Salzeneck. The best quarters in the village were assigned to cavalry-captain Denisov, the squadron commander, known throughout the whole cavalry division as Vaska Denisov. Cadet Rostov, ever since he had overtaken the regiment in Poland, had lived with the squadron commander. On October 11, the day when all was astir at headquarters over the news of Mack's defeat, the camp life of the officers of this squadron was proceeding as usual. Denisov, who had been losing at cards all night, had not yet come home when Rostov rode back early in the morning from a foraging expedition. Rostov in his cadet uniform, with a jerk to his horse, rode up to the porch, swung his leg over the saddle with a supple youthful movement, stood for a moment in the stirrup as if loathe to part from his horse, and at last sprang down and called to his orderly. "Ah, Bondarenko, dear friend!" said he to the hussar who rushed up headlong to the horse. "Walk him up and down, my dear fellow," he continued, with that gay brotherly cordiality which goodhearted young people show to everyone when they are happy. "Yes, your excellency," answered the Ukrainian gaily, tossing his head. "Mind, walk him up and down well!" Another hussar also rushed toward the horse, but Bondarenko had already thrown the reins of the snaffle bridle over the horse's head. It was evident that the cadet was liberal with his tips and that it paid to serve him. Rostov patted the horse's neck and then his flank, and lingered for a moment. "Splendid! What a horse he will be!" he thought with a smile, and holding up his saber, his spurs jingling, he ran up the steps of the porch. His landlord, who in a waistcoat and a pointed cap, pitchfork in hand, was clearing manure from the cowhouse, looked out, and his face immediately brightened on seeing Rostov. "Schon gut Morgen! Schon gut Morgen!"* he said winking with a merry smile, evidently pleased to greet the young man. *"A very good morning! A very good morning!" "Schon fleissig?"* said Rostov with the same gay brotherly smile which did not leave his eager face. "Hoch Oestreicher! Hoch Russen! Kaiser Alexander hoch!"*[2] said he, quoting words often repeated by the German landlord. *"Busy already?" *[2] "Hurrah for the Austrians! Hurrah for the Russians! Hurrah for Emperor Alexander!" The German laughed, came out of the cowshed, pulled off his cap, and waving it above his head cried: "Und die ganze Welt hoch!"* *"And hurrah for the whole world!" Rostov waved his cap above his head like the German and cried laughing, "Und vivat die ganze Welt!" Though neither the German cleaning his cowshed nor Rostov back with his platoon from foraging for hay had any reason for rejoicing, they looked at each other with joyful delight and brotherly love, wagged their heads in token of their mutual affection, and parted smiling, the German returning to his cowshed and Rostov going to the cottage he occupied with Denisov. "What about your master?" he asked Lavrushka, Denisov's orderly, whom all the regiment knew for a rogue. "Hasn't been in since the evening. Must have been losing," answered Lavrushka. "I know by now, if he wins he comes back early to brag about it, but if he stays out till morning it means he's lost and will come back in a rage. Will you have coffee?" "Yes, bring some." Ten minutes later Lavrushka brought the coffee. "He's coming!" said he. "Now for trouble!" Rostov looked out of the window and saw Denisov coming home. Denisov was a small man with a red face, sparkling black eyes, and black tousled mustache and hair. He wore an unfastened cloak, wide breeches hanging down in creases, and a crumpled shako on the back of his head. He came up to the porch gloomily, hanging his head. "Lavwuska!" he shouted loudly and angrily, "take it off, blockhead!" "Well, I am taking it off," replied Lavrushka's voice. "Ah, you're up already," said Denisov, entering the room. "Long ago," answered Rostov, "I have already been for the hay, and have seen Fraulein Mathilde." "Weally! And I've been losing, bwother. I lost yesterday like a damned fool!" cried Denisov, not pronouncing his r's. "Such ill luck! Such ill luck. As soon as you left, it began and went on. Hullo there! Tea!" Puckering up his face though smiling, and showing his short strong teeth, he began with stubby fingers of both hands to ruffle up his thick tangled black hair. "And what devil made me go to that wat?" (an officer nicknamed "the rat") he said, rubbing his forehead and whole face with both hands. "Just fancy, he didn't let me win a single cahd, not one cahd." He took the lighted pipe that was offered to him, gripped it in his fist, and tapped it on the floor, making the sparks fly, while he continued to shout. "He lets one win the singles and collahs it as soon as one doubles it; gives the singles and snatches the doubles!" He scattered the burning tobacco, smashed the pipe, and threw it away. Then he remained silent for a while, and all at once looked cheerfully with his glittering, black eyes at Rostov. "If at least we had some women here; but there's nothing foh one to do but dwink. If we could only get to fighting soon. Hullo, who's there?" he said, turning to the door as he heard a tread of heavy boots and the clinking of spurs that came to a stop, and a respectful cough. "The squadron quartermaster!" said Lavrushka. Denisov's face puckered still more. "Wetched!" he muttered, throwing down a purse with some gold in it. "Wostov, deah fellow, just see how much there is left and shove the purse undah the pillow," he said, and went out to the quartermaster. Rostov took the money and, mechanically arranging the old and new coins in separate piles, began counting them. "Ah! Telyanin! How d'ye do? They plucked me last night," came Denisov's voice from the next room. "Where? At Bykov's, at the rat's... I knew it," replied a piping voice, and Lieutenant Telyanin, a small officer of the same squadron, entered the room. Rostov thrust the purse under the pillow and shook the damp little hand which was offered him. Telyanin for some reason had been transferred from the Guards just before this campaign. He behaved very well in the regiment but was not liked; Rostov especially detested him and was unable to overcome or conceal his groundless antipathy to the man. "Well, young cavalryman, how is my Rook behaving?" he asked. (Rook was a young horse Telyanin had sold to Rostov.) The lieutenant never looked the man he was speaking to straight in the face; his eyes continually wandered from one object to another. "I saw you riding this morning..." he added. "Oh, he's all right, a good horse," answered Rostov, though the horse for which he had paid seven hundred rubbles was not worth half that sum. "He's begun to go a little lame on the left foreleg," he added. "The hoof's cracked! That's nothing. I'll teach you what to do and show you what kind of rivet to use." "Yes, please do," said Rostov. "I'll show you, I'll show you! It's not a secret. And it's a horse you'll thank me for." "Then I'll have it brought round," said Rostov wishing to avoid Telyanin, and he went out to give the order. In the passage Denisov, with a pipe, was squatting on the threshold facing the quartermaster who was reporting to him. On seeing Rostov, Denisov screwed up his face and pointing over his shoulder with his thumb to the room where Telyanin was sitting, he frowned and gave a shudder of disgust. "Ugh! I don't like that fellow," he said, regardless of the quartermaster's presence. Rostov shrugged his shoulders as much as to say: "Nor do I, but what's one to do?" and, having given his order, he returned to Telyanin. Telyanin was sitting in the same indolent pose in which Rostov had left him, rubbing his small white hands. "Well there certainly are disgusting people," thought Rostov as he entered. "Have you told them to bring the horse?" asked Telyanin, getting up and looking carelessly about him. "I have." "Let us go ourselves. I only came round to ask Denisov about yesterday's order. Have you got it, Denisov?" "Not yet. But where are you off to?" "I want to teach this young man how to shoe a horse," said Telyanin. They went through the porch and into the stable. The lieutenant explained how to rivet the hoof and went away to his own quarters. When Rostov went back there was a bottle of vodka and a sausage on the table. Denisov was sitting there scratching with his pen on a sheet of paper. He looked gloomily in Rostov's face and said: "I am witing to her." He leaned his elbows on the table with his pen in his hand and, evidently glad of a chance to say quicker in words what he wanted to write, told Rostov the contents of his letter. "You see, my fwiend," he said, "we sleep when we don't love. We are childwen of the dust... but one falls in love and one is a God, one is pua' as on the first day of cweation... Who's that now? Send him to the devil, I'm busy!" he shouted to Lavrushka, who went up to him not in the least abashed. "Who should it be? You yourself told him to come. It's the quartermaster for the money." Denisov frowned and was about to shout some reply but stopped. "Wetched business," he muttered to himself. "How much is left in the puhse?" he asked, turning to Rostov. "Seven new and three old imperials." "Oh, it's wetched! Well, what are you standing there for, you sca'cwow? Call the quahtehmasteh," he shouted to Lavrushka. "Please, Denisov, let me lend you some: I have some, you know," said Rostov, blushing. "Don't like bowwowing from my own fellows, I don't," growled Denisov. "But if you won't accept money from me like a comrade, you will offend me. Really I have some," Rostov repeated. "No, I tell you." And Denisov went to the bed to get the purse from under the pillow. "Where have you put it, Wostov?" "Under the lower pillow." "It's not there." Denisov threw both pillows on the floor. The purse was not there. "That's a miwacle." "Wait, haven't you dropped it?" said Rostov, picking up the pillows one at a time and shaking them. He pulled off the quilt and shook it. The purse was not there. "Dear me, can I have forgotten? No, I remember thinking that you kept it under your head like a treasure," said Rostov. "I put it just here. Where is it?" he asked, turning to Lavrushka. "I haven't been in the room. It must be where you put it." "But it isn't?..." "You're always like that; you thwow a thing down anywhere and forget it. Feel in your pockets." "No, if I hadn't thought of it being a treasure," said Rostov, "but I remember putting it there." Lavrushka turned all the bedding over, looked under the bed and under the table, searched everywhere, and stood still in the middle of the room. Denisov silently watched Lavrushka's movements, and when the latter threw up his arms in surprise saying it was nowhere to be found Denisov glanced at Rostov. "Wostov, you've not been playing schoolboy twicks..." Rostov felt Denisov's gaze fixed on him, raised his eyes, and instantly dropped them again. All the blood which had seemed congested somewhere below his throat rushed to his face and eyes. He could not draw breath. "And there hasn't been anyone in the room except the lieutenant and yourselves. It must be here somewhere," said Lavrushka. "Now then, you devil's puppet, look alive and hunt for it!" shouted Denisov, suddenly, turning purple and rushing at the man with a threatening gesture. "If the purse isn't found I'll flog you, I'll flog you all." Rostov, his eyes avoiding Denisov, began buttoning his coat, buckled on his saber, and put on his cap. "I must have that purse, I tell you," shouted Denisov, shaking his orderly by the shoulders and knocking him against the wall. "Denisov, let him alone, I know who has taken it," said Rostov, going toward the door without raising his eyes. Denisov paused, thought a moment, and, evidently understanding what Rostov hinted at, seized his arm. "Nonsense!" he cried, and the veins on his forehead and neck stood out like cords. "You are mad, I tell you. I won't allow it. The purse is here! I'll flay this scoundwel alive, and it will be found." "I know who has taken it," repeated Rostov in an unsteady voice, and went to the door. "And I tell you, don't you dahe to do it!" shouted Denisov, rushing at the cadet to restrain him. But Rostov pulled away his arm and, with as much anger as though Denisov were his worst enemy, firmly fixed his eyes directly on his face. "Do you understand what you're saying?" he said in a trembling voice. "There was no one else in the room except myself. So that if it is not so, then..." He could not finish, and ran out of the room. "Ah, may the devil take you and evewybody," were the last words Rostov heard. Rostov went to Telyanin's quarters. "The master is not in, he's gone to headquarters," said Telyanin's orderly. "Has something happened?" he added, surprised at the cadet's troubled face. "No, nothing." "You've only just missed him," said the orderly. The headquarters were situated two miles away from Salzeneck, and Rostov, without returning home, took a horse and rode there. There was an inn in the village which the officers frequented. Rostov rode up to it and saw Telyanin's horse at the porch. In the second room of the inn the lieutenant was sitting over a dish of sausages and a bottle of wine. "Ah, you've come here too, young man!" he said, smiling and raising his eyebrows. "Yes," said Rostov as if it cost him a great deal to utter the word; and he sat down at the nearest table. Both were silent. There were two Germans and a Russian officer in the room. No one spoke and the only sounds heard were the clatter of knives and the munching of the lieutenant. When Telyanin had finished his lunch he took out of his pocket a double purse and, drawing its rings aside with his small, white, turned-up fingers, drew out a gold imperial, and lifting his eyebrows gave it to the waiter. "Please be quick," he said. The coin was a new one. Rostov rose and went up to Telyanin. "Allow me to look at your purse," he said in a low, almost inaudible, voice. With shifting eyes but eyebrows still raised, Telyanin handed him the purse. "Yes, it's a nice purse. Yes, yes," he said, growing suddenly pale, and added, "Look at it, young man." Rostov took the purse in his hand, examined it and the money in it, and looked at Telyanin. The lieutenant was looking about in his usual way and suddenly seemed to grow very merry. "If we get to Vienna I'll get rid of it there but in these wretched little towns there's nowhere to spend it," said he. "Well, let me have it, young man, I'm going." Rostov did not speak. "And you? Are you going to have lunch too? They feed you quite decently here," continued Telyanin. "Now then, let me have it." He stretched out his hand to take hold of the purse. Rostov let go of it. Telyanin took the purse and began carelessly slipping it into the pocket of his riding breeches, with his eyebrows lifted and his mouth slightly open, as if to say, "Yes, yes, I am putting my purse in my pocket and that's quite simple and is no else's business." "Well, young man?" he said with a sigh, and from under his lifted brows he glanced into Rostov's eyes. Some flash as of an electric spark shot from Telyanin's eyes to Rostov's and back, and back again and again in an instant. "Come here," said Rostov, catching hold of Telyanin's arm and almost dragging him to the window. "That money is Denisov's; you took it..." he whispered just above Telyanin's ear. "What? What? How dare you? What?" said Telyanin. But these words came like a piteous, despairing cry and an entreaty for pardon. As soon as Rostov heard them, an enormous load of doubt fell from him. He was glad, and at the same instant began to pity the miserable man who stood before him, but the task he had begun had to be completed. "Heaven only knows what the people here may imagine," muttered Telyanin, taking up his cap and moving toward a small empty room. "We must have an explanation..." "I know it and shall prove it," said Rostov. "I..." Every muscle of Telyanin's pale, terrified face began to quiver, his eyes still shifted from side to side but with a downward look not rising to Rostov's face, and his sobs were audible. "Count!... Don't ruin a young fellow... here is this wretched money, take it..." He threw it on the table. "I have an old father and mother!..." Rostov took the money, avoiding Telyanin's eyes, and went out of the room without a word. But at the door he stopped and then retraced his steps. "O God," he said with tears in his eyes, "how could you do it?" "Count..." said Telyanin drawing nearer to him. "Don't touch me," said Rostov, drawing back. "If you need it, take the money," and he threw the purse to him and ran out of the inn. CHAPTER V That same evening there was an animated discussion among the squadron's officers in Denisov's quarters. "And I tell you, Rostov, that you must apologize to the colonel!" said a tall, grizzly-haired staff captain, with enormous mustaches and many wrinkles on his large features, to Rostov who was crimson with excitement. The staff captain, Kirsten, had twice been reduced to the ranks for affairs of honor and had twice regained his commission. "I will allow no one to call me a liar!" cried Rostov. "He told me I lied, and I told him he lied. And there it rests. He may keep me on duty every day, or may place me under arrest, but no one can make me apologize, because if he, as commander of this regiment, thinks it beneath his dignity to give me satisfaction, then..." "You just wait a moment, my dear fellow, and listen," interrupted the staff captain in his deep bass, calmly stroking his long mustache. "You tell the colonel in the presence of other officers that an officer has stolen..." "I'm not to blame that the conversation began in the presence of other officers. Perhaps I ought not to have spoken before them, but I am not a diplomatist. That's why I joined the hussars, thinking that here one would not need finesse; and he tells me that I am lying--so let him give me satisfaction..." "That's all right. No one thinks you a coward, but that's not the point. Ask Denisov whether it is not out of the question for a cadet to demand satisfaction of his regimental commander?" Denisov sat gloomily biting his mustache and listening to the conversation, evidently with no wish to take part in it. He answered the staff captain's question by a disapproving shake of his head. "You speak to the colonel about this nasty business before other officers," continued the staff captain, "and Bogdanich" (the colonel was called Bogdanich) "shuts you up." "He did not shut me up, he said I was telling an untruth." "Well, have it so, and you talked a lot of nonsense to him and must apologize." "Not on any account!" exclaimed Rostov. "I did not expect this of you," said the staff captain seriously and severely. "You don't wish to apologize, but, man, it's not only to him but to the whole regiment--all of us--you're to blame all round. The case is this: you ought to have thought the matter over and taken advice; but no, you go and blurt it all straight out before the officers. Now what was the colonel to do? Have the officer tried and disgrace the whole regiment? Disgrace the whole regiment because of one scoundrel? Is that how you look at it? We don't see it like that. And Bogdanich was a brick: he told you you were saying what was not true. It's not pleasant, but what's to be done, my dear fellow? You landed yourself in it. And now, when one wants to smooth the thing over, some conceit prevents your apologizing, and you wish to make the whole affair public. You are offended at being put on duty a bit, but why not apologize to an old and honorable officer? Whatever Bogdanich may be, anyway he is an honorable and brave old colonel! You're quick at taking offense, but you don't mind disgracing the whole regiment!" The staff captain's voice began to tremble. "You have been in the regiment next to no time, my lad, you're here today and tomorrow you'll be appointed adjutant somewhere and can snap your fingers when it is said 'There are thieves among the Pavlograd officers!' But it's not all the same to us! Am I not right, Denisov? It's not the same!" Denisov remained silent and did not move, but occasionally looked with his glittering black eyes at Rostov. "You value your own pride and don't wish to apologize," continued the staff captain, "but we old fellows, who have grown up in and, God willing, are going to die in the regiment, we prize the honor of the regiment, and Bogdanich knows it. Oh, we do prize it, old fellow! And all this is not right, it's not right! You may take offense or not but I always stick to mother truth. It's not right!" And the staff captain rose and turned away from Rostov. "That's twue, devil take it!" shouted Denisov, jumping up. "Now then, Wostov, now then!" Rostov, growing red and pale alternately, looked first at one officer and then at the other. "No, gentlemen, no... you mustn't think... I quite understand. You're wrong to think that of me... I... for me... for the honor of the regiment I'd... Ah well, I'll show that in action, and for me the honor of the flag... Well, never mind, it's true I'm to blame, to blame all round. Well, what else do you want?..." "Come, that's right, Count!" cried the staff captain, turning round and clapping Rostov on the shoulder with his big hand. "I tell you," shouted Denisov, "he's a fine fellow." "That's better, Count," said the staff captain, beginning to address Rostov by his title, as if in recognition of his confession. "Go and apologize, your excellency. Yes, go!" "Gentlemen, I'll do anything. No one shall hear a word from me," said Rostov in an imploring voice, "but I can't apologize, by God I can't, do what you will! How can I go and apologize like a little boy asking forgiveness?" Denisov began to laugh. "It'll be worse for you. Bogdanich is vindictive and you'll pay for your obstinacy," said Kirsten. "No, on my word it's not obstinacy! I can't describe the feeling. I can't..." "Well, it's as you like," said the staff captain. "And what has become of that scoundrel?" he asked Denisov. "He has weported himself sick, he's to be stwuck off the list tomowwow," muttered Denisov. "It is an illness, there's no other way of explaining it," said the staff captain. "Illness or not, he'd better not cwoss my path. I'd kill him!" shouted Denisov in a bloodthirsty tone. Just then Zherkov entered the room. "What brings you here?" cried the officers turning to the newcomer. "We're to go into action, gentlemen! Mack has surrendered with his whole army." "It's not true!" "I've seen him myself!" "What? Saw the real Mack? With hands and feet?" "Into action! Into action! Bring him a bottle for such news! But how did you come here?" "I've been sent back to the regiment all on account of that devil, Mack. An Austrian general complained of me. I congratulated him on Mack's arrival... What's the matter, Rostov? You look as if you'd just come out of a hot bath." "Oh, my dear fellow, we're in such a stew here these last two days." The regimental adjutant came in and confirmed the news brought by Zherkov. They were under orders to advance next day. "We're going into action, gentlemen!" "Well, thank God! We've been sitting here too long!" CHAPTER VI Kutuzov fell back toward Vienna, destroying behind him the bridges over the rivers Inn (at Braunau) and Traun (near Linz). On October 23 the Russian troops were crossing the river Enns. At midday the Russian baggage train, the artillery, and columns of troops were defiling through the town of Enns on both sides of the bridge. It was a warm, rainy, autumnal day. The wide expanse that opened out before the heights on which the Russian batteries stood guarding the bridge was at times veiled by a diaphanous curtain of slanting rain, and then, suddenly spread out in the sunlight, far-distant objects could be clearly seen glittering as though freshly varnished. Down below, the little town could be seen with its white, red-roofed houses, its cathedral, and its bridge, on both sides of which streamed jostling masses of Russian troops. At the bend of the Danube, vessels, an island, and a castle with a park surrounded by the waters of the confluence of the Enns and the Danube became visible, and the rocky left bank of the Danube covered with pine forests, with a mystic background of green treetops and bluish gorges. The turrets of a convent stood out beyond a wild virgin pine forest, and far away on the other side of the Enns the enemy's horse patrols could be discerned. Among the field guns on the brow of the hill the general in command of the rearguard stood with a staff officer, scanning the country through his fieldglass. A little behind them Nesvitski, who had been sent to the rearguard by the commander in chief, was sitting on the trail of a gun carriage. A Cossack who accompanied him had handed him a knapsack and a flask, and Nesvitski was treating some officers to pies and real doppelkummel. The officers gladly gathered round him, some on their knees, some squatting Turkish fashion on the wet grass. "Yes, the Austrian prince who built that castle was no fool. It's a fine place! Why are you not eating anything, gentlemen?" Nesvitski was saying. "Thank you very much, Prince," answered one of the officers, pleased to be talking to a staff officer of such importance. "It's a lovely place! We passed close to the park and saw two deer... and what a splendid house!" "Look, Prince," said another, who would have dearly liked to take another pie but felt shy, and therefore pretended to be examining the countryside--"See, our infantrymen have already got there. Look there in the meadow behind the village, three of them are dragging something. They'll ransack that castle," he remarked with evident approval. "So they will," said Nesvitski. "No, but what I should like," added he, munching a pie in his moist-lipped handsome mouth, "would be to slip in over there." He pointed with a smile to a turreted nunnery, and his eyes narrowed and gleamed. "That would be fine, gentlemen!" The officers laughed. "Just to flutter the nuns a bit. They say there are Italian girls among them. On my word I'd give five years of my life for it!" "They must be feeling dull, too," said one of the bolder officers, laughing. Meanwhile the staff officer standing in front pointed out something to the general, who looked through his field glass. "Yes, so it is, so it is," said the general angrily, lowering the field glass and shrugging his shoulders, "so it is! They'll be fired on at the crossing. And why are they dawdling there?" On the opposite side the enemy could be seen by the naked eye, and from their battery a milk-white cloud arose. Then came the distant report of a shot, and our troops could be seen hurrying to the crossing. Nesvitski rose, puffing, and went up to the general, smiling. "Would not your excellency like a little refreshment?" he said. "It's a bad business," said the general without answering him, "our men have been wasting time." "Hadn't I better ride over, your excellency?" asked Nesvitski. "Yes, please do," answered the general, and he repeated the order that had already once been given in detail: "and tell the hussars that they are to cross last and to fire the bridge as I ordered; and the inflammable material on the bridge must be reinspected." "Very good," answered Nesvitski. He called the Cossack with his horse, told him to put away the knapsack and flask, and swung his heavy person easily into the saddle. "I'll really call in on the nuns," he said to the officers who watched him smilingly, and he rode off by the winding path down the hill. "Now then, let's see how far it will carry, Captain. Just try!" said the general, turning to an artillery officer. "Have a little fun to pass the time." "Crew, to your guns!" commanded the officer. In a moment the men came running gaily from their campfires and began loading. "One!" came the command. Number one jumped briskly aside. The gun rang out with a deafening metallic roar, and a whistling grenade flew above the heads of our troops below the hill and fell far short of the enemy, a little smoke showing the spot where it burst. The faces of officers and men brightened up at the sound. Everyone got up and began watching the movements of our troops below, as plainly visible as if but a stone's throw away, and the movements of the approaching enemy farther off. At the same instant the sun came fully out from behind the clouds, and the clear sound of the solitary shot and the brilliance of the bright sunshine merged in a single joyous and spirited impression. CHAPTER VII Two of the enemy's shots had already flown across the bridge, where there was a crush. Halfway across stood Prince Nesvitski, who had alighted from his horse and whose big body was jammed against the railings. He looked back laughing to the Cossack who stood a few steps behind him holding two horses by their bridles. Each time Prince Nesvitski tried to move on, soldiers and carts pushed him back again and pressed him against the railings, and all he could do was to smile. "What a fine fellow you are, friend!" said the Cossack to a convoy soldier with a wagon, who was pressing onto the infantrymen who were crowded together close to his wheels and his horses. "What a fellow! You can't wait a moment! Don't you see the general wants to pass?" But the convoyman took no notice of the word "general" and shouted at the soldiers who were blocking his way. "Hi there, boys! Keep to the left! Wait a bit." But the soldiers, crowded together shoulder to shoulder, their bayonets interlocking, moved over the bridge in a dense mass. Looking down over the rails Prince Nesvitski saw the rapid, noisy little waves of the Enns, which rippling and eddying round the piles of the bridge chased each other along. Looking on the bridge he saw equally uniform living waves of soldiers, shoulder straps, covered shakos, knapsacks, bayonets, long muskets, and, under the shakos, faces with broad cheekbones, sunken cheeks, and listless tired expressions, and feet that moved through the sticky mud that covered the planks of the bridge. Sometimes through the monotonous waves of men, like a fleck of white foam on the waves of the Enns, an officer, in a cloak and with a type of face different from that of the men, squeezed his way along; sometimes like a chip of wood whirling in the river, an hussar on foot, an orderly, or a townsman was carried through the waves of infantry; and sometimes like a log floating down the river, an officers' or company's baggage wagon, piled high, leather covered, and hemmed in on all sides, moved across the bridge. "It's as if a dam had burst," said the Cossack hopelessly. "Are there many more of you to come?" "A million all but one!" replied a waggish soldier in a torn coat, with a wink, and passed on followed by another, an old man. "If he" (he meant the enemy) "begins popping at the bridge now," said the old soldier dismally to a comrade, "you'll forget to scratch yourself." That soldier passed on, and after him came another sitting on a cart. "Where the devil have the leg bands been shoved to?" said an orderly, running behind the cart and fumbling in the back of it. And he also passed on with the wagon. Then came some merry soldiers who had evidently been drinking. "And then, old fellow, he gives him one in the teeth with the butt end of his gun..." a soldier whose greatcoat was well tucked up said gaily, with a wide swing of his arm. "Yes, the ham was just delicious..." answered another with a loud laugh. And they, too, passed on, so that Nesvitski did not learn who had been struck on the teeth, or what the ham had to do with it. "Bah! How they scurry. He just sends a ball and they think they'll all be killed," a sergeant was saying angrily and reproachfully. "As it flies past me, Daddy, the ball I mean," said a young soldier with an enormous mouth, hardly refraining from laughing, "I felt like dying of fright. I did, 'pon my word, I got that frightened!" said he, as if bragging of having been frightened. That one also passed. Then followed a cart unlike any that had gone before. It was a German cart with a pair of horses led by a German, and seemed loaded with a whole houseful of effects. A fine brindled cow with a large udder was attached to the cart behind. A woman with an unweaned baby, an old woman, and a healthy German girl with bright red cheeks were sitting on some feather beds. Evidently these fugitives were allowed to pass by special permission. The eyes of all the soldiers turned toward the women, and while the vehicle was passing at foot pace all the soldiers' remarks related to the two young ones. Every face bore almost the same smile, expressing unseemly thoughts about the women. "Just see, the German sausage is making tracks, too!" "Sell me the missis," said another soldier, addressing the German, who, angry and frightened, strode energetically along with downcast eyes. "See how smart she's made herself! Oh, the devils!" "There, Fedotov, you should be quartered on them!" "I have seen as much before now, mate!" "Where are you going?" asked an infantry officer who was eating an apple, also half smiling as he looked at the handsome girl. The German closed his eyes, signifying that he did not understand. "Take it if you like," said the officer, giving the girl an apple. The girl smiled and took it. Nesvitski like the rest of the men on the bridge did not take his eyes off the women till they had passed. When they had gone by, the same stream of soldiers followed, with the same kind of talk, and at last all stopped. As often happens, the horses of a convoy wagon became restive at the end of the bridge, and the whole crowd had to wait. "And why are they stopping? There's no proper order!" said the soldiers. "Where are you shoving to? Devil take you! Can't you wait? It'll be worse if he fires the bridge. See, here's an officer jammed in too"--different voices were saying in the crowd, as the men looked at one another, and all pressed toward the exit from the bridge. Looking down at the waters of the Enns under the bridge, Nesvitski suddenly heard a sound new to him, of something swiftly approaching... something big, that splashed into the water. "Just see where it carries to!" a soldier near by said sternly, looking round at the sound. "Encouraging us to get along quicker," said another uneasily. The crowd moved on again. Nesvitski realized that it was a cannon ball. "Hey, Cossack, my horse!" he said. "Now, then, you there! get out of the way! Make way!" With great difficulty he managed to get to his horse, and shouting continually he moved on. The soldiers squeezed themselves to make way for him, but again pressed on him so that they jammed his leg, and those nearest him were not to blame for they were themselves pressed still harder from behind. "Nesvitski, Nesvitski! you numskull!" came a hoarse voice from behind him. Nesvitski looked round and saw, some fifteen paces away but separated by the living mass of moving infantry, Vaska Denisov, red and shaggy, with his cap on the back of his black head and a cloak hanging jauntily over his shoulder. "Tell these devils, these fiends, to let me pass!" shouted Denisov evidently in a fit of rage, his coal-black eyes with their bloodshot whites glittering and rolling as he waved his sheathed saber in a small bare hand as red as his face. "Ah, Vaska!" joyfully replied Nesvitski. "What's up with you?" "The squadwon can't pass," shouted Vaska Denisov, showing his white teeth fiercely and spurring his black thoroughbred Arab, which twitched its ears as the bayonets touched it, and snorted, spurting white foam from his bit, tramping the planks of the bridge with his hoofs, and apparently ready to jump over the railings had his rider let him. "What is this? They're like sheep! Just like sheep! Out of the way!... Let us pass!... Stop there, you devil with the cart! I'll hack you with my saber!" he shouted, actually drawing his saber from its scabbard and flourishing it. The soldiers crowded against one another with terrified faces, and Denisov joined Nesvitski. "How's it you're not drunk today?" said Nesvitski when the other had ridden up to him. "They don't even give one time to dwink!" answered Vaska Denisov. "They keep dwagging the wegiment to and fwo all day. If they mean to fight, let's fight. But the devil knows what this is." "What a dandy you are today!" said Nesvitski, looking at Denisov's new cloak and saddlecloth. Denisov smiled, took out of his sabretache a handkerchief that diffused a smell of perfume, and put it to Nesvitski's nose. "Of course. I'm going into action! I've shaved, bwushed my teeth, and scented myself." The imposing figure of Nesvitski followed by his Cossack, and the determination of Denisov who flourished his sword and shouted frantically, had such an effect that they managed to squeeze through to the farther side of the bridge and stopped the infantry. Beside the bridge Nesvitski found the colonel to whom he had to deliver the order, and having done this he rode back. Having cleared the way Denisov stopped at the end of the bridge. Carelessly holding in his stallion that was neighing and pawing the ground, eager to rejoin its fellows, he watched his squadron draw nearer. Then the clang of hoofs, as of several horses galloping, resounded on the planks of the bridge, and the squadron, officers in front and men four abreast, spread across the bridge and began to emerge on his side of it. The infantry who had been stopped crowded near the bridge in the trampled mud and gazed with that particular feeling of ill-will, estrangement, and ridicule with which troops of different arms usually encounter one another at the clean, smart hussars who moved past them in regular order. "Smart lads! Only fit for a fair!" said one. "What good are they? They're led about just for show!" remarked another. "Don't kick up the dust, you infantry!" jested an hussar whose prancing horse had splashed mud over some foot soldiers. "I'd like to put you on a two days' march with a knapsack! Your fine cords would soon get a bit rubbed," said an infantryman, wiping the mud off his face with his sleeve. "Perched up there, you're more like a bird than a man." "There now, Zikin, they ought to put you on a horse. You'd look fine," said a corporal, chaffing a thin little soldier who bent under the weight of his knapsack. "Take a stick between your legs, that'll suit you for a horse!" the hussar shouted back. CHAPTER VIII The last of the infantry hurriedly crossed the bridge, squeezing together as they approached it as if passing through a funnel. At last the baggage wagons had all crossed, the crush was less, and the last battalion came onto the bridge. Only Denisov's squadron of hussars remained on the farther side of the bridge facing the enemy, who could be seen from the hill on the opposite bank but was not yet visible from the bridge, for the horizon as seen from the valley through which the river flowed was formed by the rising ground only half a mile away. At the foot of the hill lay wasteland over which a few groups of our Cossack scouts were moving. Suddenly on the road at the top of the high ground, artillery and troops in blue uniform were seen. These were the French. A group of Cossack scouts retired down the hill at a trot. All the officers and men of Denisov's squadron, though they tried to talk of other things and to look in other directions, thought only of what was there on the hilltop, and kept constantly looking at the patches appearing on the skyline, which they knew to be the enemy's troops. The weather had cleared again since noon and the sun was descending brightly upon the Danube and the dark hills around it. It was calm, and at intervals the bugle calls and the shouts of the enemy could be heard from the hill. There was no one now between the squadron and the enemy except a few scattered skirmishers. An empty space of some seven hundred yards was all that separated them. The enemy ceased firing, and that stern, threatening, inaccessible, and intangible line which separates two hostile armies was all the more clearly felt. "One step beyond that boundary line which resembles the line dividing the living from the dead lies uncertainty, suffering, and death. And what is there? Who is there?--there beyond that field, that tree, that roof lit up by the sun? No one knows, but one wants to know. You fear and yet long to cross that line, and know that sooner or later it must be crossed and you will have to find out what is there, just as you will inevitably have to learn what lies the other side of death. But you are strong, healthy, cheerful, and excited, and are surrounded by other such excitedly animated and healthy men." So thinks, or at any rate feels, anyone who comes in sight of the enemy, and that feeling gives a particular glamour and glad keenness of impression to everything that takes place at such moments. On the high ground where the enemy was, the smoke of a cannon rose, and a ball flew whistling over the heads of the hussar squadron. The officers who had been standing together rode off to their places. The hussars began carefully aligning their horses. Silence fell on the whole squadron. All were looking at the enemy in front and at the squadron commander, awaiting the word of command. A second and a third cannon ball flew past. Evidently they were firing at the hussars, but the balls with rapid rhythmic whistle flew over the heads of the horsemen and fell somewhere beyond them. The hussars did not look round, but at the sound of each shot, as at the word of command, the whole squadron with its rows of faces so alike yet so different, holding its breath while the ball flew past, rose in the stirrups and sank back again. The soldiers without turning their heads glanced at one another, curious to see their comrades' impression. Every face, from Denisov's to that of the bugler, showed one common expression of conflict, irritation, and excitement, around chin and mouth. The quartermaster frowned, looking at the soldiers as if threatening to punish them. Cadet Mironov ducked every time a ball flew past. Rostov on the left flank, mounted on his Rook--a handsome horse despite its game leg--had the happy air of a schoolboy called up before a large audience for an examination in which he feels sure he will distinguish himself. He was glancing at everyone with a clear, bright expression, as if asking them to notice how calmly he sat under fire. But despite himself, on his face too that same indication of something new and stern showed round the mouth. "Who's that curtseying there? Cadet Miwonov! That's not wight! Look at me," cried Denisov who, unable to keep still on one spot, kept turning his horse in front of the squadron. The black, hairy, snub-nosed face of Vaska Denisov, and his whole short sturdy figure with the sinewy hairy hand and stumpy fingers in which he held the hilt of his naked saber, looked just as it usually did, especially toward evening when he had emptied his second bottle; he was only redder than usual. With his shaggy head thrown back like birds when they drink, pressing his spurs mercilessly into the sides of his good horse, Bedouin, and sitting as though falling backwards in the saddle, he galloped to the other flank of the squadron and shouted in a hoarse voice to the men to look to their pistols. He rode up to Kirsten. The staff captain on his broad-backed, steady mare came at a walk to meet him. His face with its long mustache was serious as always, only his eyes were brighter than usual. "Well, what about it?" said he to Denisov. "It won't come to a fight. You'll see--we shall retire." "The devil only knows what they're about!" muttered Denisov. "Ah, Wostov," he cried noticing the cadet's bright face, "you've got it at last." And he smiled approvingly, evidently pleased with the cadet. Rostov felt perfectly happy. Just then the commander appeared on the bridge. Denisov galloped up to him. "Your excellency! Let us attack them! I'll dwive them off." "Attack indeed!" said the colonel in a bored voice, puckering up his face as if driving off a troublesome fly. "And why are you stopping here? Don't you see the skirmishers are retreating? Lead the squadron back." The squadron crossed the bridge and drew out of range of fire without having lost a single man. The second squadron that had been in the front line followed them across and the last Cossacks quitted the farther side of the river. The two Pavlograd squadrons, having crossed the bridge, retired up the hill one after the other. Their colonel, Karl Bogdanich Schubert, came up to Denisov's squadron and rode at a footpace not far from Rostov, without taking any notice of him although they were now meeting for the first time since their encounter concerning Telyanin. Rostov, feeling that he was at the front and in the power of a man toward whom he now admitted that he had been to blame, did not lift his eyes from the colonel's athletic back, his nape covered with light hair, and his red neck. It seemed to Rostov that Bogdanich was only pretending not to notice him, and that his whole aim now was to test the cadet's courage, so he drew himself up and looked around him merrily; then it seemed to him that Bogdanich rode so near in order to show him his courage. Next he thought that his enemy would send the squadron on a desperate attack just to punish him--Rostov. Then he imagined how, after the attack, Bogdanich would come up to him as he lay wounded and would magnanimously extend the hand of reconciliation. The high-shouldered figure of Zherkov, familiar to the Pavlograds as he had but recently left their regiment, rode up to the colonel. After his dismissal from headquarters Zherkov had not remained in the regiment, saying he was not such a fool as to slave at the front when he could get more rewards by doing nothing on the staff, and had succeeded in attaching himself as an orderly officer to Prince Bagration. He now came to his former chief with an order from the commander of the rear guard. "Colonel," he said, addressing Rostov's enemy with an air of gloomy gravity and glancing round at his comrades, "there is an order to stop and fire the bridge." "An order to who?" asked the colonel morosely. "I don't myself know 'to who,'" replied the cornet in a serious tone, "but the prince told me to 'go and tell the colonel that the hussars must return quickly and fire the bridge.'" Zherkov was followed by an officer of the suite who rode up to the colonel of hussars with the same order. After him the stout Nesvitski came galloping up on a Cossack horse that could scarcely carry his weight. "How's this, Colonel?" he shouted as he approached. "I told you to fire the bridge, and now someone has gone and blundered; they are all beside themselves over there and one can't make anything out." The colonel deliberately stopped the regiment and turned to Nesvitski. "You spoke to me of inflammable material," said he, "but you said nothing about firing it." "But, my dear sir," said Nesvitski as he drew up, taking off his cap and smoothing his hair wet with perspiration with his plump hand, "wasn't I telling you to fire the bridge, when inflammable material had been put in position?" "I am not your 'dear sir,' Mr. Staff Officer, and you did not tell me to burn the bridge! I know the service, and it is my habit orders strictly to obey. You said the bridge would be burned, but who would it burn, I could not know by the holy spirit!" "Ah, that's always the way!" said Nesvitski with a wave of the hand. "How did you get here?" said he, turning to Zherkov. "On the same business. But you are damp! Let me wring you out!" "You were saying, Mr. Staff Officer..." continued the colonel in an offended tone. "Colonel," interrupted the officer of the suite, "You must be quick or the enemy will bring up his guns to use grapeshot." The colonel looked silently at the officer of the suite, at the stout staff officer, and at Zherkov, and he frowned. "I will the bridge fire," he said in a solemn tone as if to announce that in spite of all the unpleasantness he had to endure he would still do the right thing. Striking his horse with his long muscular legs as if it were to blame for everything, the colonel moved forward and ordered the second squadron, that in which Rostov was serving under Denisov, to return to the bridge. "There, it's just as I thought," said Rostov to himself. "He wishes to test me!" His heart contracted and the blood rushed to his face. "Let him see whether I am a coward!" he thought. Again on all the bright faces of the squadron the serious expression appeared that they had worn when under fire. Rostov watched his enemy, the colonel, closely--to find in his face confirmation of his own conjecture, but the colonel did not once glance at Rostov, and looked as he always did when at the front, solemn and stern. Then came the word of command. "Look sharp! Look sharp!" several voices repeated around him. Their sabers catching in the bridles and their spurs jingling, the hussars hastily dismounted, not knowing what they were to do. The men were crossing themselves. Rostov no longer looked at the colonel, he had no time. He was afraid of falling behind the hussars, so much afraid that his heart stood still. His hand trembled as he gave his horse into an orderly's charge, and he felt the blood rush to his heart with a thud. Denisov rode past him, leaning back and shouting something. Rostov saw nothing but the hussars running all around him, their spurs catching and their sabers clattering. "Stretchers!" shouted someone behind him. Rostov did not think what this call for stretchers meant; he ran on, trying only to be ahead of the others; but just at the bridge, not looking at the ground, he came on some sticky, trodden mud, stumbled, and fell on his hands. The others outstripped him. "At boss zides, Captain," he heard the voice of the colonel, who, having ridden ahead, had pulled up his horse near the bridge, with a triumphant, cheerful face. Rostov wiping his muddy hands on his breeches looked at his enemy and was about to run on, thinking that the farther he went to the front the better. But Bogdanich, without looking at or recognizing Rostov, shouted to him: "Who's that running on the middle of the bridge? To the right! Come back, Cadet!" he cried angrily; and turning to Denisov, who, showing off his courage, had ridden on to the planks of the bridge: "Why run risks, Captain? You should dismount," he said. "Oh, every bullet has its billet," answered Vaska Denisov, turning in his saddle. Meanwhile Nesvitski, Zherkov, and the officer of the suite were standing together out of range of the shots, watching, now the small group of men with yellow shakos, dark-green jackets braided with cord, and blue riding breeches, who were swarming near the bridge, and then at what was approaching in the distance from the opposite side- the blue uniforms and groups with horses, easily recognizable as artillery. "Will they burn the bridge or not? Who'll get there first? Will they get there and fire the bridge or will the French get within grapeshot range and wipe them out?" These were the questions each man of the troops on the high ground above the bridge involuntarily asked himself with a sinking heart--watching the bridge and the hussars in the bright evening light and the blue tunics advancing from the other side with their bayonets and guns. "Ugh. The hussars will get it hot!" said Nesvitski; "they are within grapeshot range now." "He shouldn't have taken so many men," said the officer of the suite. "True enough," answered Nesvitski; "two smart fellows could have done the job just as well." "Ah, your excellency," put in Zherkov, his eyes fixed on the hussars, but still with that naive air that made it impossible to know whether he was speaking in jest or in earnest. "Ah, your excellency! How you look at things! Send two men? And who then would give us the Vladimir medal and ribbon? But now, even if they do get peppered, the squadron may be recommended for honors and he may get a ribbon. Our Bogdanich knows how things are done." "There now!" said the officer of the suite, "that's grapeshot." He pointed to the French guns, the limbers of which were being detached and hurriedly removed. On the French side, amid the groups with cannon, a cloud of smoke appeared, then a second and a third almost simultaneously, and at the moment when the first report was heard a fourth was seen. Then two reports one after another, and a third. "Oh! Oh!" groaned Nesvitski as if in fierce pain, seizing the officer of the suite by the arm. "Look! A man has fallen! Fallen, fallen!" "Two, I think." "If I were Tsar I would never go to war," said Nesvitski, turning away. The French guns were hastily reloaded. The infantry in their blue uniforms advanced toward the bridge at a run. Smoke appeared again but at irregular intervals, and grapeshot cracked and rattled onto the bridge. But this time Nesvitski could not see what was happening there, as a dense cloud of smoke arose from it. The hussars had succeeded in setting it on fire and the French batteries were now firing at them, no longer to hinder them but because the guns were trained and there was someone to fire at. The French had time to fire three rounds of grapeshot before the hussars got back to their horses. Two were misdirected and the shot went too high, but the last round fell in the midst of a group of hussars and knocked three of them over. Rostov, absorbed by his relations with Bogdanich, had paused on the bridge not knowing what to do. There was no one to hew down (as he had always imagined battles to himself), nor could he help to fire the bridge because he had not brought any burning straw with him like the other soldiers. He stood looking about him, when suddenly he heard a rattle on the bridge as if nuts were being spilt, and the hussar nearest to him fell against the rails with a groan. Rostov ran up to him with the others. Again someone shouted, "Stretchers!" Four men seized the hussar and began lifting him. "Oooh! For Christ's sake let me alone!" cried the wounded man, but still he was lifted and laid on the stretcher. Nicholas Rostov turned away and, as if searching for something, gazed into the distance, at the waters of the Danube, at the sky, and at the sun. How beautiful the sky looked; how blue, how calm, and how deep! How bright and glorious was the setting sun! With what soft glitter the waters of the distant Danube shone. And fairer still were the faraway blue mountains beyond the river, the nunnery, the mysterious gorges, and the pine forests veiled in the mist of their summits... There was peace and happiness... "I should wishing for nothing else, nothing, if only I were there," thought Rostov. "In myself alone and in that sunshine there is so much happiness; but here... groans, suffering, fear, and this uncertainty and hurry... There--they are shouting again, and again are all running back somewhere, and I shall run with them, and it, death, is here above me and around... Another instant and I shall never again see the sun, this water, that gorge!..." At that instant the sun began to hide behind the clouds, and other stretchers came into view before Rostov. And the fear of death and of the stretchers, and love of the sun and of life, all merged into one feeling of sickening agitation. "O Lord God! Thou who art in that heaven, save, forgive, and protect me!" Rostov whispered. The hussars ran back to the men who held their horses; their voices sounded louder and calmer, the stretchers disappeared from sight. "Well, fwiend? So you've smelt powdah!" shouted Vaska Denisov just above his ear. "It's all over; but I am a coward--yes, a coward!" thought Rostov, and sighing deeply he took Rook, his horse, which stood resting one foot, from the orderly and began to mount. "Was that grapeshot?" he asked Denisov. "Yes and no mistake!" cried Denisov. "You worked like wegular bwicks and it's nasty work! An attack's pleasant work! Hacking away at the dogs! But this sort of thing is the very devil, with them shooting at you like a target." And Denisov rode up to a group that had stopped near Rostov, composed of the colonel, Nesvitski, Zherkov, and the officer from the suite. "Well, it seems that no one has noticed," thought Rostov. And this was true. No one had taken any notice, for everyone knew the sensation which the cadet under fire for the first time had experienced. "Here's something for you to report," said Zherkov. "See if I don't get promoted to a sublieutenancy." "Inform the prince that I the bridge fired!" said the colonel triumphantly and gaily. "And if he asks about the losses?" "A trifle," said the colonel in his bass voice: "two hussars wounded, and one knocked out," he added, unable to restrain a happy smile, and pronouncing the phrase "knocked out" with ringing distinctness. CHAPTER IX Pursued by the French army of a hundred thousand men under the command of Bonaparte, encountering a population that was unfriendly to it, losing confidence in its allies, suffering from shortness of supplies, and compelled to act under conditions of war unlike anything that had been foreseen, the Russian army of thirty-five thousand men commanded by Kutuzov was hurriedly retreating along the Danube, stopping where overtaken by the enemy and fighting rearguard actions only as far as necessary to enable it to retreat without losing its heavy equipment. There had been actions at Lambach, Amstetten, and Melk; but despite the courage and endurance--acknowledged even by the enemy--with which the Russians fought, the only consequence of these actions was a yet more rapid retreat. Austrian troops that had escaped capture at Ulm and had joined Kutuzov at Braunau now separated from the Russian army, and Kutuzov was left with only his own weak and exhausted forces. The defense of Vienna was no longer to be thought of. Instead of an offensive, the plan of which, carefully prepared in accord with the modern science of strategics, had been handed to Kutuzov when he was in Vienna by the Austrian Hofkriegsrath, the sole and almost unattainable aim remaining for him was to effect a junction with the forces that were advancing from Russia, without losing his army as Mack had done at Ulm. On the twenty-eighth of October Kutuzov with his army crossed to the left bank of the Danube and took up a position for the first time with the river between himself and the main body of the French. On the thirtieth he attacked Mortier's division, which was on the left bank, and broke it up. In this action for the first time trophies were taken: banners, cannon, and two enemy generals. For the first time, after a fortnight's retreat, the Russian troops had halted and after a fight had not only held the field but had repulsed the French. Though the troops were ill-clad, exhausted, and had lost a third of their number in killed, wounded, sick, and stragglers; though a number of sick and wounded had been abandoned on the other side of the Danube with a letter in which Kutuzov entrusted them to the humanity of the enemy; and though the big hospitals and the houses in Krems converted into military hospitals could no longer accommodate all the sick and wounded, yet the stand made at Krems and the victory over Mortier raised the spirits of the army considerably. Throughout the whole army and at headquarters most joyful though erroneous rumors were rife of the imaginary approach of columns from Russia, of some victory gained by the Austrians, and of the retreat of the frightened Bonaparte. Prince Andrew during the battle had been in attendance on the Austrian General Schmidt, who was killed in the action. His horse had been wounded under him and his own arm slightly grazed by a bullet. As a mark of the commander in chief's special favor he was sent with the news of this victory to the Austrian court, now no longer at Vienna (which was threatened by the French) but at Brunn. Despite his apparently delicate build Prince Andrew could endure physical fatigue far better than many very muscular men, and on the night of the battle, having arrived at Krems excited but not weary, with dispatches from Dokhturov to Kutuzov, he was sent immediately with a special dispatch to Brunn. To be so sent meant not only a reward but an important step toward promotion. The night was dark but starry, the road showed black in the snow that had fallen the previous day--the day of the battle. Reviewing his impressions of the recent battle, picturing pleasantly to himself the impression his news of a victory would create, or recalling the send-off given him by the commander in chief and his fellow officers, Prince Andrew was galloping along in a post chaise enjoying the feelings of a man who has at length begun to attain a long-desired happiness. As soon as he closed his eyes his ears seemed filled with the rattle of the wheels and the sensation of victory. Then he began to imagine that the Russians were running away and that he himself was killed, but he quickly roused himself with a feeling of joy, as if learning afresh that this was not so but that on the contrary the French had run away. He again recalled all the details of the victory and his own calm courage during the battle, and feeling reassured he dozed off.... The dark starry night was followed by a bright cheerful morning. The snow was thawing in the sunshine, the horses galloped quickly, and on both sides of the road were forests of different kinds, fields, and villages. At one of the post stations he overtook a convoy of Russian wounded. The Russian officer in charge of the transport lolled back in the front cart, shouting and scolding a soldier with coarse abuse. In each of the long German carts six or more pale, dirty, bandaged men were being jolted over the stony road. Some of them were talking (he heard Russian words), others were eating bread; the more severely wounded looked silently, with the languid interest of sick children, at the envoy hurrying past them. Prince Andrew told his driver to stop, and asked a soldier in what action they had been wounded. "Day before yesterday, on the Danube," answered the soldier. Prince Andrew took out his purse and gave the soldier three gold pieces. "That's for them all," he said to the officer who came up. "Get well soon, lads!" he continued, turning to the soldiers. "There's plenty to do still." "What news, sir?" asked the officer, evidently anxious to start a conversation. "Good news!... Go on!" he shouted to the driver, and they galloped on. It was already quite dark when Prince Andrew rattled over the paved streets of Brunn and found himself surrounded by high buildings, the lights of shops, houses, and street lamps, fine carriages, and all that atmosphere of a large and active town which is always so attractive to a soldier after camp life. Despite his rapid journey and sleepless night, Prince Andrew when he drove up to the palace felt even more vigorous and alert than he had done the day before. Only his eyes gleamed feverishly and his thoughts followed one another with extraordinary clearness and rapidity. He again vividly recalled the details of the battle, no longer dim, but definite and in the concise form in which he imagined himself stating them to the Emperor Francis. He vividly imagined the casual questions that might be put to him and the answers he would give. He expected to be at once presented to the Emperor. At the chief entrance to the palace, however, an official came running out to meet him, and learning that he was a special messenger led him to another entrance. "To the right from the corridor, Euer Hochgeboren! There you will find the adjutant on duty," said the official. "He will conduct you to the Minister of War." The adjutant on duty, meeting Prince Andrew, asked him to wait, and went in to the Minister of War. Five minutes later he returned and bowing with particular courtesy ushered Prince Andrew before him along a corridor to the cabinet where the Minister of War was at work. The adjutant by his elaborate courtesy appeared to wish to ward off any attempt at familiarity on the part of the Russian messenger. Prince Andrew's joyous feeling was considerably weakened as he approached the door of the minister's room. He felt offended, and without his noticing it the feeling of offense immediately turned into one of disdain which was quite uncalled for. His fertile mind instantly suggested to him a point of view which gave him a right to despise the adjutant and the minister. "Away from the smell of powder, they probably think it easy to gain victories!" he thought. His eyes narrowed disdainfully, he entered the room of the Minister of War with peculiarly deliberate steps. This feeling of disdain was heightened when he saw the minister seated at a large table reading some papers and making pencil notes on them, and for the first two or three minutes taking no notice of his arrival. A wax candle stood at each side of the minister's bent bald head with its gray temples. He went on reading to the end, without raising his eyes at the opening of the door and the sound of footsteps. "Take this and deliver it," said he to his adjutant, handing him the papers and still taking no notice of the special messenger. Prince Andrew felt that either the actions of Kutuzov's army interested the Minister of War less than any of the other matters he was concerned with, or he wanted to give the Russian special messenger that impression. "But that is a matter of perfect indifference to me," he thought. The minister drew the remaining papers together, arranged them evenly, and then raised his head. He had an intellectual and distinctive head, but the instant he turned to Prince Andrew the firm, intelligent expression on his face changed in a way evidently deliberate and habitual to him. His face took on the stupid artificial smile (which does not even attempt to hide its artificiality) of a man who is continually receiving many petitioners one after another. "From General Field Marshal Kutuzov?" he asked. "I hope it is good news? There has been an encounter with Mortier? A victory? It was high time!" He took the dispatch which was addressed to him and began to read it with a mournful expression. "Oh, my God! My God! Schmidt!" he exclaimed in German. "What a calamity! What a calamity!" Having glanced through the dispatch he laid it on the table and looked at Prince Andrew, evidently considering something. "Ah what a calamity! You say the affair was decisive? But Mortier is not captured." Again he pondered. "I am very glad you have brought good news, though Schmidt's death is a heavy price to pay for the victory. His Majesty will no doubt wish to see you, but not today. I thank you! You must have a rest. Be at the levee tomorrow after the parade. However, I will let you know." The stupid smile, which had left his face while he was speaking, reappeared. "Au revoir! Thank you very much. His Majesty will probably desire to see you," he added, bowing his head. When Prince Andrew left the palace he felt that all the interest and happiness the victory had afforded him had been now left in the indifferent hands of the Minister of War and the polite adjutant. The whole tenor of his thoughts instantaneously changed; the battle seemed the memory of a remote event long past. CHAPTER X Prince Andrew stayed at Brunn with Bilibin, a Russian acquaintance of his in the diplomatic service. "Ah, my dear prince! I could not have a more welcome visitor," said Bilibin as he came out to meet Prince Andrew. "Franz, put the prince's things in my bedroom," said he to the servant who was ushering Bolkonski in. "So you're a messenger of victory, eh? Splendid! And I am sitting here ill, as you see." After washing and dressing, Prince Andrew came into the diplomat's luxurious study and sat down to the dinner prepared for him. Bilibin settled down comfortably beside the fire. After his journey and the campaign during which he had been deprived of all the comforts of cleanliness and all the refinements of life, Prince Andrew felt a pleasant sense of repose among luxurious surroundings such as he had been accustomed to from childhood. Besides it was pleasant, after his reception by the Austrians, to speak if not in Russian (for they were speaking French) at least with a Russian who would, he supposed, share the general Russian antipathy to the Austrians which was then particularly strong. Bilibin was a man of thirty-five, a bachelor, and of the same circle as Prince Andrew. They had known each other previously in Petersburg, but had become more intimate when Prince Andrew was in Vienna with Kutuzov. Just as Prince Andrew was a young man who gave promise of rising high in the military profession, so to an even greater extent Bilibin gave promise of rising in his diplomatic career. He still a young man but no longer a young diplomat, as he had entered the service at the age of sixteen, had been in Paris and Copenhagen, and now held a rather important post in Vienna. Both the foreign minister and our ambassador in Vienna knew him and valued him. He was not one of those many diplomats who are esteemed because they have certain negative qualities, avoid doing certain things, and speak French. He was one of those, who, liking work, knew how to do it, and despite his indolence would sometimes spend a whole night at his writing table. He worked well whatever the import of his work. It was not the question "What for?" but the question "How?" that interested him. What the diplomatic matter might be he did not care, but it gave him great pleasure to prepare a circular, memorandum, or report, skillfully, pointedly, and elegantly. Bilibin's services were valued not only for what he wrote, but also for his skill in dealing and conversing with those in the highest spheres. Bilibin liked conversation as he liked work, only when it could be made elegantly witty. In society he always awaited an opportunity to say something striking and took part in a conversation only when that was possible. His conversation was always sprinkled with wittily original, finished phrases of general interest. These sayings were prepared in the inner laboratory of his mind in a portable form as if intentionally, so that insignificant society people might carry them from drawing room to drawing room. And, in fact, Bilibin's witticisms were hawked about in the Viennese drawing rooms and often had an influence on matters considered important. His thin, worn, sallow face was covered with deep wrinkles, which always looked as clean and well washed as the tips of one's fingers after a Russian bath. The movement of these wrinkles formed the principal play of expression on his face. Now his forehead would pucker into deep folds and his eyebrows were lifted, then his eyebrows would descend and deep wrinkles would crease his cheeks. His small, deep-set eyes always twinkled and looked out straight. "Well, now tell me about your exploits," said he. Bolkonski, very modestly without once mentioning himself, described the engagement and his reception by the Minister of War. "They received me and my news as one receives a dog in a game of skittles," said he in conclusion. Bilibin smiled and the wrinkles on his face disappeared. "Cependant, mon cher," he remarked, examining his nails from a distance and puckering the skin above his left eye, "malgre la haute estime que je professe pour the Orthodox Russian army, j'avoue que votre victoire n'est pas des plus victorieuses."* *"But my dear fellow, with all my respect for the Orthodox Russian army, I must say that your victory was not particularly victorious." He went on talking in this way in French, uttering only those words in Russian on which he wished to put a contemptuous emphasis. "Come now! You with all your forces fall on the unfortunate Mortier and his one division, and even then Mortier slips through your fingers! Where's the victory?" "But seriously," said Prince Andrew, "we can at any rate say without boasting that it was a little better than at Ulm..." "Why didn't you capture one, just one, marshal for us?" "Because not everything happens as one expects or with the smoothness of a parade. We had expected, as I told you, to get at their rear by seven in the morning but had not reached it by five in the afternoon." "And why didn't you do it at seven in the morning? You ought to have been there at seven in the morning," returned Bilibin with a smile. "You ought to have been there at seven in the morning." "Why did you not succeed in impressing on Bonaparte by diplomatic methods that he had better leave Genoa alone?" retorted Prince Andrew in the same tone. "I know," interrupted Bilibin, "you're thinking it's very easy to take marshals, sitting on a sofa by the fire! That is true, but still why didn't you capture him? So don't be surprised if not only the Minister of War but also his Most August Majesty the Emperor and King Francis is not much delighted by your victory. Even I, a poor secretary of the Russian Embassy, do not feel any need in token of my joy to give my Franz a thaler, or let him go with his Liebchen to the Prater... True, we have no Prater here..." He looked straight at Prince Andrew and suddenly unwrinkled his forehead. "It is now my turn to ask you 'why?' mon cher," said Bolkonski. "I confess I do not understand: perhaps there are diplomatic subtleties here beyond my feeble intelligence, but I can't make it out. Mack loses a whole army, the Archduke Ferdinand and the Archduke Karl give no signs of life and make blunder after blunder. Kutuzov alone at last gains a real victory, destroying the spell of the invincibility of the French, and the Minister of War does not even care to hear the details." "That's just it, my dear fellow. You see it's hurrah for the Tsar, for Russia, for the Orthodox Greek faith! All that is beautiful, but what do we, I mean the Austrian court, care for your victories? Bring us nice news of a victory by the Archduke Karl or Ferdinand (one archduke's as good as another, as you know) and even if it is only over a fire brigade of Bonaparte's, that will be another story and we'll fire off some cannon! But this sort of thing seems done on purpose to vex us. The Archduke Karl does nothing, the Archduke Ferdinand disgraces himself. You abandon Vienna, give up its defense--as much as to say: 'Heaven is with us, but heaven help you and your capital!' The one general whom we all loved, Schmidt, you expose to a bullet, and then you congratulate us on the victory! Admit that more irritating news than yours could not have been conceived. It's as if it had been done on purpose, on purpose. Besides, suppose you did gain a brilliant victory, if even the Archduke Karl gained a victory, what effect would that have on the general course of events? It's too late now when Vienna is occupied by the French army!" "What? Occupied? Vienna occupied?" "Not only occupied, but Bonaparte is at Schonbrunn, and the count, our dear Count Vrbna, goes to him for orders." After the fatigues and impressions of the journey, his reception, and especially after having dined, Bolkonski felt that he could not take in the full significance of the words he heard. "Count Lichtenfels was here this morning," Bilibin continued, "and showed me a letter in which the parade of the French in Vienna was fully described: Prince Murat et tout le tremblement... You see that your victory is not a matter for great rejoicing and that you can't be received as a savior." "Really I don't care about that, I don't care at all," said Prince Andrew, beginning to understand that his news of the battle before Krems was really of small importance in view of such events as the fall of Austria's capital. "How is it Vienna was taken? What of the bridge and its celebrated bridgehead and Prince Auersperg? We heard reports that Prince Auersperg was defending Vienna?" he said. "Prince Auersperg is on this, on our side of the river, and is defending us--doing it very badly, I think, but still he is defending us. But Vienna is on the other side. No, the bridge has not yet been taken and I hope it will not be, for it is mined and orders have been given to blow it up. Otherwise we should long ago have been in the mountains of Bohemia, and you and your army would have spent a bad quarter of an hour between two fires." "But still this does not mean that the campaign is over," said Prince Andrew. "Well, I think it is. The bigwigs here think so too, but they daren't say so. It will be as I said at the beginning of the campaign, it won't be your skirmishing at Durrenstein, or gunpowder at all, that will decide the matter, but those who devised it," said Bilibin quoting one of his own mots, releasing the wrinkles on his forehead, and pausing. "The only question is what will come of the meeting between the Emperor Alexander and the King of Prussia in Berlin? If Prussia joins the Allies, Austria's hand will be forced and there will be war. If not it is merely a question of settling where the preliminaries of the new Campo Formio are to be drawn up." "What an extraordinary genius!" Prince Andrew suddenly exclaimed, clenching his small hand and striking the table with it, "and what luck the man has!" "Buonaparte?" said Bilibin inquiringly, puckering up his forehead to indicate that he was about to say something witty. "Buonaparte?" he repeated, accentuating the u: "I think, however, now that he lays down laws for Austria at Schonbrunn, il faut lui faire grace de l'u!* I shall certainly adopt an innovation and call him simply Bonaparte!" *"We must let him off the u!" "But joking apart," said Prince Andrew, "do you really think the campaign is over?" "This is what I think. Austria has been made a fool of, and she is not used to it. She will retaliate. And she has been fooled in the first place because her provinces have been pillaged--they say the Holy Russian army loots terribly--her army is destroyed, her capital taken, and all this for the beaux yeux* of His Sardinian Majesty. And therefore--this is between ourselves--I instinctively feel that we are being deceived, my instinct tells me of negotiations with France and projects for peace, a secret peace concluded separately." *Fine eyes. "Impossible!" cried Prince Andrew. "That would be too base." "If we live we shall see," replied Bilibin, his face again becoming smooth as a sign that the conversation was at an end. When Prince Andrew reached the room prepared for him and lay down in a clean shirt on the feather bed with its warmed and fragrant pillows, he felt that the battle of which he had brought tidings was far, far away from him. The alliance with Prussia, Austria's treachery, Bonaparte's new triumph, tomorrow's levee and parade, and the audience with the Emperor Francis occupied his thoughts. He closed his eyes, and immediately a sound of cannonading, of musketry and the rattling of carriage wheels seemed to fill his ears, and now again drawn out in a thin line the musketeers were descending the hill, the French were firing, and he felt his heart palpitating as he rode forward beside Schmidt with the bullets merrily whistling all around, and he experienced tenfold the joy of living, as he had not done since childhood. He woke up... "Yes, that all happened!" he said, and, smiling happily to himself like a child, he fell into a deep, youthful slumber. CHAPTER XI Next day he woke late. Recalling his recent impressions, the first thought that came into his mind was that today he had to be presented to the Emperor Francis; he remembered the Minister of War, the polite Austrian adjutant, Bilibin, and last night's conversation. Having dressed for his attendance at court in full parade uniform, which he had not worn for a long time, he went into Bilibin's study fresh, animated, and handsome, with his hand bandaged. In the study were four gentlemen of the diplomatic corps. With Prince Hippolyte Kuragin, who was a secretary to the embassy, Bolkonski was already acquainted. Bilibin introduced him to the others. The gentlemen assembled at Bilibin's were young, wealthy, gay society men, who here, as in Vienna, formed a special set which Bilibin, their leader, called les notres.* This set, consisting almost exclusively of diplomats, evidently had its own interests which had nothing to do with war or politics but related to high society, to certain women, and to the official side of the service. These gentlemen received Prince Andrew as one of themselves, an honor they did not extend to many. From politeness and to start conversation, they asked him a few questions about the army and the battle, and then the talk went off into merry jests and gossip. *Ours. "But the best of it was," said one, telling of the misfortune of a fellow diplomat, "that the Chancellor told him flatly that his appointment to London was a promotion and that he was so to regard it. Can you fancy the figure he cut?..." "But the worst of it, gentlemen--I am giving Kuragin away to you--is that that man suffers, and this Don Juan, wicked fellow, is taking advantage of it!" Prince Hippolyte was lolling in a lounge chair with his legs over its arm. He began to laugh. "Tell me about that!" he said. "Oh, you Don Juan! You serpent!" cried several voices. "You, Bolkonski, don't know," said Bilibin turning to Prince Andrew, "that all the atrocities of the French army (I nearly said of the Russian army) are nothing compared to what this man has been doing among the women!" "La femme est la compagne de l'homme,"* announced Prince Hippolyte, and began looking through a lorgnette at his elevated legs. *"Woman is man's companion." Bilibin and the rest of "ours" burst out laughing in Hippolyte's face, and Prince Andrew saw that Hippolyte, of whom--he had to admit--he had almost been jealous on his wife's account, was the butt of this set. "Oh, I must give you a treat," Bilibin whispered to Bolkonski. "Kuragin is exquisite when he discusses politics--you should see his gravity!" He sat down beside Hippolyte and wrinkling his forehead began talking to him about politics. Prince Andrew and the others gathered round these two. "The Berlin cabinet cannot express a feeling of alliance," began Hippolyte gazing round with importance at the others, "without expressing... as in its last note... you understand... Besides, unless His Majesty the Emperor derogates from the principle of our alliance... "Wait, I have not finished..." he said to Prince Andrew, seizing him by the arm, "I believe that intervention will be stronger than nonintervention. And..." he paused. "Finally one cannot impute the nonreceipt of our dispatch of November 18. That is how it will end." And he released Bolkonski's arm to indicate that he had now quite finished. "Demosthenes, I know thee by the pebble thou secretest in thy golden mouth!" said Bilibin, and the mop of hair on his head moved with satisfaction. Everybody laughed, and Hippolyte louder than anyone. He was evidently distressed, and breathed painfully, but could not restrain the wild laughter that convulsed his usually impassive features. "Well now, gentlemen," said Bilibin, "Bolkonski is my guest in this house and in Brunn itself. I want to entertain him as far as I can, with all the pleasures of life here. If we were in Vienna it would be easy, but here, in this wretched Moravian hole, it is more difficult, and I beg you all to help me. Brunn's attractions must be shown him. You can undertake the theater, I society, and you, Hippolyte, of course the women." "We must let him see Amelie, she's exquisite!" said one of "ours," kissing his finger tips. "In general we must turn this bloodthirsty soldier to more humane interests," said Bilibin. "I shall scarcely be able to avail myself of your hospitality, gentlemen, it is already time for me to go," replied Prince Andrew looking at his watch. "Where to?" "To the Emperor." "Oh! Oh! Oh! Well, au revoir, Bolkonski! Au revoir, Prince! Come back early to dinner," cried several voices. "We'll take you in hand." "When speaking to the Emperor, try as far as you can to praise the way that provisions are supplied and the routes indicated," said Bilibin, accompanying him to the hall. "I should like to speak well of them, but as far as I the facts, I can't," replied Bolkonski, smiling. "Well, talk as much as you can, anyway. He has a passion for giving audiences, but he does not like talking himself and can't do it, as you will see." CHAPTER XII At the levee Prince Andrew stood among the Austrian officers as he had been told to, and the Emperor Francis merely looked fixedly into his face and just nodded to him with to him with his long head. But after it was over, the adjutant he had seen the previous day ceremoniously informed Bolkonski that the Emperor desired to give him an audience. The Emperor Francis received him standing in the middle of the room. Before the conversation began Prince Andrew was struck by the fact that the Emperor seemed confused and blushed as if not knowing what to say. "Tell me, when did the battle begin?" he asked hurriedly. Prince Andrew replied. Then followed other questions just as simple: "Was Kutuzov well? When had he left Krems?" and so on. The Emperor spoke as if his sole aim were to put a given number of questions- the answers to these questions, as was only too evident, did not interest him. "At what o'clock did the battle begin?" asked the Emperor. "I cannot inform Your Majesty at what o'clock the battle began at the front, but at Durrenstein, where I was, our attack began after five in the afternoon," replied Bolkonski growing more animated and expecting that he would have a chance to give a reliable account, which he had ready in his mind, of all he knew and had seen. But the Emperor smiled and interrupted him. "How many miles?" "From where to where, Your Majesty?" "From Durrenstein to Krems." "Three and a half miles, Your Majesty." "The French have abandoned the left bank?" "According to the scouts the last of them crossed on rafts during the night." "Is there sufficient forage in Krems?" "Forage has not been supplied to the extent..." The Emperor interrupted him. "At what o'clock was General Schmidt killed?" "At seven o'clock, I believe." "At seven o'clock? It's very sad, very sad!" The Emperor thanked Prince Andrew and bowed. Prince Andrew withdrew and was immediately surrounded by courtiers on all sides. Everywhere he saw friendly looks and heard friendly words. Yesterday's adjutant reproached him for not having stayed at the palace, and offered him his own house. The Minister of War came up and congratulated him on the Maria Theresa Order of the third grade, which the Emperor was conferring on him. The Empress' chamberlain invited him to see Her Majesty. The archduchess also wished to see him. He did not know whom to answer, and for a few seconds collected his thoughts. Then the Russian ambassador took him by the shoulder, led him to the window, and began to talk to him. Contrary to Bilibin's forecast the news he had brought was joyfully received. A thanksgiving service was arranged, Kutuzov was awarded the Grand Cross of Maria Theresa, and the whole army received rewards. Bolkonski was invited everywhere, and had to spend the whole morning calling on the principal Austrian dignitaries. Between four and five in the afternoon, having made all his calls, he was returning to Bilibin's house thinking out a letter to his father about the battle and his visit to Brunn. At the door he found a vehicle half full of luggage. Franz, Bilibin's man, was dragging a portmanteau with some difficulty out of the front door. Before returning to Bilibin's Prince Andrew had gone to bookshop to provide himself with some books for the campaign, and had spent some time in the shop. "What is it?" he asked. "Oh, your excellency!" said Franz, with difficulty rolling the portmanteau into the vehicle, "we are to move on still farther. The scoundrel is again at our heels!" "Eh? What?" asked Prince Andrew. Bilibin came out to meet him. His usually calm face showed excitement. "There now! Confess that this is delightful," said he. "This affair of the Thabor Bridge, at Vienna.... They have crossed without striking a blow!" Prince Andrew could not understand. "But where do you come from not to know what every coachman in the town knows?" "I come from the archduchess'. I heard nothing there." "And you didn't see that everybody is packing up?" "I did not... What is it all about?" inquired Prince Andrew impatiently. "What's it all about? Why, the French have crossed the bridge that Auersperg was defending, and the bridge was not blown up: so Murat is now rushing along the road to Brunn and will be here in a day or two." "What? Here? But why did they not blow up the bridge, if it was mined?" "That is what I ask you. No one, not even Bonaparte, knows why." Bolkonski shrugged his shoulders. "But if the bridge is crossed it means that the army too is lost? It will be cut off," said he. "That's just it," answered Bilibin. "Listen! The French entered Vienna as I told you. Very well. Next day, which was yesterday, those gentlemen, messieurs les marechaux,* Murat, Lannes,and Belliard, mount and ride to bridge. (Observe that all three are Gascons.) 'Gentlemen,' says one of them, 'you know the Thabor Bridge is mined and doubly mined and that there are menacing fortifications at its head and an army of fifteen thousand men has been ordered to blow up the bridge and not let us cross? But it will please our sovereign the Emperor Napoleon if we take this bridge, so let us three go and take it!' 'Yes, let's!' say the others. And off they go and take the bridge, cross it, and now with their whole army are on this side of the Danube, marching on us, you, and your lines of communication." *The marshalls. "Stop jesting," said Prince Andrew sadly and seriously. This news grieved him and yet he was pleased. As soon as he learned that the Russian army was in such a hopeless situation it occurred to him that it was he who was destined to lead it out of this position; that here was the Toulon that would lift him from the ranks of obscure officers and offer him the first step to fame! Listening to Bilibin he was already imagining how on reaching the army he would give an opinion at the war council which would be the only one that could save the army, and how he alone would be entrusted with the executing of the plan. "Stop this jesting," he said "I am not jesting," Bilibin went on. "Nothing is truer or sadder. These gentlemen ride onto the bridge alone and wave white handkerchiefs; they assure the officer on duty that they, the marshals, are on their way to negotiate with Prince Auersperg. He lets them enter the tete-de-pont.* They spin him a thousand gasconades, saying that the war is over, that the Emperor Francis is arranging a meeting with Bonaparte, that they desire to see Prince Auersperg, and so on. The officer sends for Auersperg; these gentlemen embrace the officers, crack jokes, sit on the cannon, and meanwhile a French battalion gets to the bridge unobserved, flings the bags of incendiary material into the water, and approaches the tete-de-pont. At length appears the lieutenant general, our dear Prince Auersperg von Mautern himself. 'Dearest foe! Flower of the Austrian army, hero of the Turkish wars Hostilities are ended, we can shake one another's hand.... The Emperor Napoleon burns with impatience to make Prince Auersperg's acquaintance.' In a word, those gentlemen, Gascons indeed, so bewildered him with fine words, and he is so flattered by his rapidly established intimacy with the French marshals, and so dazzled by the sight of Murat's mantle and ostrich plumes, qu'il n'y voit que du feu, et oublie celui qu'il devait faire faire sur l'ennemi!"*[2] In spite of the animation of his speech, Bilibin did not forget to pause after this mot to give time for its due appreciation. "The French battalion rushes to the bridgehead, spikes the guns, and the bridge is taken! But what is best of all," he went on, his excitement subsiding under the delightful interest of his own story, "is that the sergeant in charge of the cannon which was to give the signal to fire the mines and blow up the bridge, this sergeant, seeing that the French troops were running onto the bridge, was about to fire, but Lannes stayed his hand. The sergeant, who was evidently wiser than his general, goes up to Auersperg and says: 'Prince, you are being deceived, here are the French!' Murat, seeing that all is lost if the sergeant is allowed to speak, turns to Auersperg with feigned astonishment (he is a true Gascon) and says: 'I don't recognize the world-famous Austrian discipline, if you allow a subordinate to address you like that!' It was a stroke of genius. Prince Auersperg feels his dignity at stake and orders the sergeant to be arrested. Come, you must own that this affair of the Thabor Bridge is delightful! It is not exactly stupidity, nor rascality...." *Bridgehead. *[2] That their fire gets into his eyes and he forgets that he ought to be firing at the enemy. "It may be treachery," said Prince Andrew, vividly imagining the gray overcoats, wounds, the smoke of gunpowder, the sounds of firing, and the glory that awaited him. "Not that either. That puts the court in too bad a light," replied Bilibin. "It's not treachery nor rascality nor stupidity: it is just as at Ulm... it is..."--he seemed to be trying to find the right expression. "C'est... c'est du Mack. Nous sommes mackes [It is... it is a bit of Mack. We are Macked]," he concluded, feeling that he had produced a good epigram, a fresh one that would be repeated. His hitherto puckered brow became smooth as a sign of pleasure, and with a slight smile he began to examine his nails. "Where are you off to?" he said suddenly to Prince Andrew who had risen and was going toward his room. "I am going away." "Where to?" "To the army." "But you meant to stay another two days?" "But now I am off at once." And Prince Andrew after giving directions about his departure went to his room. "Do you know, mon cher," said Bilibin following him, "I have been thinking about you. Why are you going?" And in proof of the conclusiveness of his opinion all the wrinkles vanished from his face. Prince Andrew looked inquiringly at him and gave no reply. "Why are you going? I know you think it your duty to gallop back to the army now that it is in danger. I understand that. Mon cher, it is heroism!" "Not at all," said Prince Andrew. "But as you are a philosopher, be a consistent one, look at the other side of the question and you will see that your duty, on the contrary, is to take care of yourself. Leave it to those who are no longer fit for anything else.... You have not been ordered to return and have not been dismissed from here; therefore, you can stay and go with us wherever our ill luck takes us. They say we are going to Olmutz, and Olmutz is a very decent town. You and I will travel comfortably in my caleche." "Do stop joking, Bilibin," cried Bolkonski. "I am speaking sincerely as a friend! Consider! Where and why are you going, when you might remain here? You are faced by one of two things," and the skin over his left temple puckered, "either you will not reach your regiment before peace is concluded, or you will share defeat and disgrace with Kutuzov's whole army." And Bilibin unwrinkled his temple, feeling that the dilemma was insoluble. "I cannot argue about it," replied Prince Andrew coldly, but he thought: "I am going to save the army." "My dear fellow, you are a hero!" said Bilibin. CHAPTER XIII That same night, having taken leave of the Minister of War, Bolkonski set off to rejoin the army, not knowing where he would find it and fearing to be captured by the French on the way to Krems. In Brunn everybody attached to the court was packing up, and the heavy baggage was already being dispatched to Olmutz. Near Hetzelsdorf Prince Andrew struck the high road along which the Russian army was moving with great haste and in the greatest disorder. The road was so obstructed with carts that it was impossible to get by in a carriage. Prince Andrew took a horse and a Cossack from a Cossack commander, and hungry and weary, making his way past the baggage wagons, rode in search of the commander in chief and of his own luggage. Very sinister reports of the position of the army reached him as he went along, and the appearance of the troops in their disorderly flight confirmed these rumors. "Cette armee russe que l'or de l'Angleterre a transportee des extremites de l'univers, nous allons lui faire eprouver le meme sort--(le sort de l'armee d'Ulm)."* He remembered these words in Bonaparte's address to his army at the beginning of the campaign, and they awoke in him astonishment at the genius of his hero, a feeling of wounded pride, and a hope of glory. "And should there be nothing left but to die?" he thought. "Well, if need be, I shall do it no worse than others." *"That Russian army which has been brought from the ends of the earth by English gold, we shall cause to share the same fate--(the fate of the army at Ulm)." He looked with disdain at the endless confused mass of detachments, carts, guns, artillery, and again baggage wagons and vehicles of all kinds overtaking one another and blocking the muddy road, three and sometimes four abreast. From all sides, behind and before, as far as ear could reach, there were the rattle of wheels, the creaking of carts and gun carriages, the tramp of horses, the crack of whips, shouts, the urging of horses, and the swearing of soldiers, orderlies, and officers. All along the sides of the road fallen horses were to be seen, some flayed, some not, and broken-down carts beside which solitary soldiers sat waiting for something, and again soldiers straggling from their companies, crowds of whom set off to the neighboring villages, or returned from them dragging sheep, fowls, hay, and bulging sacks. At each ascent or descent of the road the crowds were yet denser and the din of shouting more incessant. Soldiers floundering knee-deep in mud pushed the guns and wagons themselves. Whips cracked, hoofs slipped, traces broke, and lungs were strained with shouting. The officers directing the march rode backward and forward between the carts. Their voices were but feebly heard amid the uproar and one saw by their faces that they despaired of the possibility of checking this disorder. "Here is our dear Orthodox Russian army," thought Bolkonski, recalling Bilibin's words. Wishing to find out where the commander in chief was, he rode up to a convoy. Directly opposite to him came a strange one-horse vehicle, evidently rigged up by soldiers out of any available materials and looking like something between a cart, a cabriolet, and a caleche. A soldier was driving, and a woman enveloped in shawls sat behind the apron under the leather hood of the vehicle. Prince Andrew rode up and was just putting his question to a soldier when his attention was diverted by the desperate shrieks of the woman in the vehicle. An officer in charge of transport was beating the soldier who was driving the woman's vehicle for trying to get ahead of others, and the strokes of his whip fell on the apron of the equipage. The woman screamed piercingly. Seeing Prince Andrew she leaned out from behind the apron and, waving her thin arms from under the woolen shawl, cried: "Mr. Aide-de-camp! Mr. Aide-de-camp!... For heaven's sake... Protect me! What will become of us? I am the wife of the doctor of the Seventh Chasseurs.... They won't let us pass, we are left behind and have lost our people..." "I'll flatten you into a pancake!" shouted the angry officer to the soldier. "Turn back with your slut!" "Mr. Aide-de-camp! Help me!... What does it all mean?" screamed the doctor's wife. "Kindly let this cart pass. Don't you see it's a woman?" said Prince Andrew riding up to the officer. The officer glanced at him, and without replying turned again to the soldier. "I'll teach you to push on!... Back!" "Let them pass, I tell you!" repeated Prince Andrew, compressing his lips. "And who are you?" cried the officer, turning on him with tipsy rage, "who are you? Are you in command here? Eh? I am commander here, not you! Go back or I'll flatten you into a pancake," repeated he. This expression evidently pleased him. "That was a nice snub for the little aide-de-camp," came a voice from behind. Prince Andrew saw that the officer was in that state of senseless, tipsy rage when a man does not know what he is saying. He saw that his championship of the doctor's wife in her queer trap might expose him to what he dreaded more than anything in the world--to ridicule; but his instinct urged him on. Before the officer finished his sentence Prince Andrew, his face distorted with fury, rode up to him and raised his riding whip. "Kind...ly let--them--pass!" The officer flourished his arm and hastily rode away. "It's all the fault of these fellows on the staff that there's this disorder," he muttered. "Do as you like." Prince Andrew without lifting his eyes rode hastily away from the doctor's wife, who was calling him her deliverer, and recalling with a sense of disgust the minutest details of this humiliating scene he galloped on to the village where he was told that the commander in chief was. On reaching the village he dismounted and went to the nearest house, intending to rest if but for a moment, eat something, and try to sort out the stinging and tormenting thoughts that confused his mind. "This is a mob of scoundrels and not an army," he was thinking as he went up to the window of the first house, when a familiar voice called him by name. He turned round. Nesvitski's handsome face looked out of the little window. Nesvitski, moving his moist lips as he chewed something, and flourishing his arm, called him to enter. "Bolkonski! Bolkonski!... Don't you hear? Eh? Come quick..." he shouted. Entering the house, Prince Andrew saw Nesvitski and another adjutant having something to eat. They hastily turned round to him asking if he had any news. On their familiar faces he read agitation and alarm. This was particularly noticeable on Nesvitski's usually laughing countenance. "Where is the commander in chief?" asked Bolkonski. "Here, in that house," answered the adjutant. "Well, is it true that it's peace and capitulation?" asked Nesvitski. "I was going to ask you. I know nothing except that it was all I could do to get here." "And we, my dear boy! It's terrible! I was wrong to laugh at Mack, we're getting it still worse," said Nesvitski. "But sit down and have something to eat." "You won't be able to find either your baggage or anything else now, Prince. And God only knows where your man Peter is," said the other adjutant. "Where are headquarters?" "We are to spend the night in Znaim." "Well, I have got all I need into packs for two horses," said Nesvitski. "They've made up splendid packs for me--fit to cross the Bohemian mountains with. It's a bad lookout, old fellow! But what's the matter with you? You must be ill to shiver like that," he added, noticing that Prince Andrew winced as at an electric shock. "It's nothing," replied Prince Andrew. He had just remembered his recent encounter with the doctor's wife and the convoy officer. "What is the commander in chief doing here?" he asked. "I can't make out at all," said Nesvitski. "Well, all I can make out is that everything is abominable, abominable, quite abominable!" said Prince Andrew, and he went off to the house where the commander in chief was. Passing by Kutuzov's carriage and the exhausted saddle horses of his suite, with their Cossacks who were talking loudly together, Prince Andrew entered the passage. Kutuzov himself, he was told, was in the house with Prince Bagration and Weyrother. Weyrother was the Austrian general who had succeeded Schmidt. In the passage little Kozlovski was squatting on his heels in front of a clerk. The clerk, with cuffs turned up, was hastily writing at a tub turned bottom upwards. Kozlovski's face looked worn--he too had evidently not slept all night. He glanced at Prince Andrew and did not even nod to him. "Second line... have you written it?" he continued dictating to the clerk. "The Kiev Grenadiers, Podolian..." "One can't write so fast, your honor," said the clerk, glancing angrily and disrespectfully at Kozlovski. Through the door came the sounds of Kutuzov's voice, excited and dissatisfied, interrupted by another, an unfamiliar voice. From the sound of these voices, the inattentive way Kozlovski looked at him, the disrespectful manner of the exhausted clerk, the fact that the clerk and Kozlovski were squatting on the floor by a tub so near to the commander in chief, and from the noisy laughter of the Cossacks holding the horses near the window, Prince Andrew felt that something important and disastrous was about to happen. He turned to Kozlovski with urgent questions. "Immediately, Prince," said Kozlovski. "Dispositions for Bagration." "What about capitulation?" "Nothing of the sort. Orders are issued for a battle." Prince Andrew moved toward the door from whence voices were heard. Just as he was going to open it the sounds ceased, the door opened, and Kutuzov with his eagle nose and puffy face appeared in the doorway. Prince Andrew stood right in front of Kutuzov but the expression of the commander in chief's one sound eye showed him to be so preoccupied with thoughts and anxieties as to be oblivious of his presence. He looked straight at his adjutant's face without recognizing him. "Well, have you finished?" said he to Kozlovski. "One moment, your excellency." Bagration, a gaunt middle-aged man of medium height with a firm, impassive face of Oriental type, came out after the commander in chief. "I have the honor to present myself," repeated Prince Andrew rather loudly, handing Kutuzov an envelope. "Ah, from Vienna? Very good. Later, later!" Kutuzov went out into the porch with Bagration. "Well, good-by, Prince," said he to Bagration. "My blessing, and may Christ be with you in your great endeavor!" His face suddenly softened and tears came into his eyes. With his left hand he drew Bagration toward him, and with his right, on which he wore a ring, he made the sign of the cross over him with a gesture evidently habitual, offering his puffy cheek, but Bagration kissed him on the neck instead. "Christ be with you!" Kutuzov repeated and went toward his carriage. "Get in with me," said he to Bolkonski. "Your excellency, I should like to be of use here. Allow me to remain with Prince Bagration's detachment." "Get in," said Kutuzov, and noticing that Bolkonski still delayed, he added: "I need good officers myself, need them myself!" They got into the carriage and drove for a few minutes in silence. "There is still much, much before us," he said, as if with an old man's penetration he understood all that was passing in Bolkonski's mind. "If a tenth part of his detachment returns I shall thank God," he added as if speaking to himself. Prince Andrew glanced at Kutuzov's face only a foot distant from him and involuntarily noticed the carefully washed seams of the scar near his temple, where an Ismail bullet had pierced his skull, and the empty eye socket. "Yes, he has a right to speak so calmly of those men's death," thought Bolkonski. "That is why I beg to be sent to that detachment," he said. Kutuzov did not reply. He seemed to have forgotten what he had been saying, and sat plunged in thought. Five minutes later, gently swaying on the soft springs of the carriage, he turned to Prince Andrew. There was not a trace of agitation on his face. With delicate irony he questioned Prince Andrew about the details of his interview with the Emperor, about the remarks he had heard at court concerning the Krems affair, and about some ladies they both knew. CHAPTER XIV On November 1 Kutuzov had received, through a spy, news that the army he commanded was in an almost hopeless position. The spy reported that the French, after crossing the bridge at Vienna, were advancing in immense force upon Kutuzov's line of communication with the troops that were arriving from Russia. If Kutuzov decided to remain at Krems, Napoleon's army of one hundred and fifty thousand men would cut him off completely and surround his exhausted army of forty thousand, and he would find himself in the position of Mack at Ulm. If Kutuzov decided to abandon the road connecting him with the troops arriving from Russia, he would have to march with no road into unknown parts of the Bohemian mountains, defending himself against superior forces of the enemy and abandoning all hope of a junction with Buxhowden. If Kutuzov decided to retreat along the road from Krems to Olmutz, to unite with the troops arriving from Russia, he risked being forestalled on that road by the French who had crossed the Vienna bridge, and encumbered by his baggage and transport, having to accept battle on the march against an enemy three times as strong, who would hem him in from two sides. Kutuzov chose this latter course. The French, the spy reported, having crossed the Vienna bridge, were advancing by forced marches toward Znaim, which lay sixty-six miles off on the line of Kutuzov's retreat. If he reached Znaim before the French, there would be great hope of saving the army; to let the French forestall him at Znaim meant the exposure of his whole army to a disgrace such as that of Ulm, or to utter destruction. But to forestall the French with his whole army was impossible. The road for the French from Vienna to Znaim was shorter and better than the road for the Russians from Krems to Znaim. The night he received the news, Kutuzov sent Bagration's vanguard, four thousand strong, to the right across the hills from the Krems-Znaim to the Vienna-Znaim road. Bagration was to make this march without resting, and to halt facing Vienna with Znaim to his rear, and if he succeeded in forestalling the French he was to delay them as long as possible. Kutuzov himself with all his transport took the road to Znaim. Marching thirty miles that stormy night across roadless hills, with his hungry, ill-shod soldiers, and losing a third of his men as stragglers by the way, Bagration came out on the Vienna-Znaim road at Hollabrunn a few hours ahead of the French who were approaching Hollabrunn from Vienna. Kutuzov with his transport had still to march for some days before he could reach Znaim. Hence Bagration with his four thousand hungry, exhausted men would have to detain for days the whole enemy army that came upon him at Hollabrunn, which was clearly impossible. But a freak of fate made the impossible possible. The success of the trick that had placed the Vienna bridge in the hands of the French without a fight led Murat to try to deceive Kutuzov in a similar way. Meeting Bagration's weak detachment on the Znaim road he supposed it to be Kutuzov's whole army. To be able to crush it absolutely he awaited the arrival of the rest of the troops who were on their way from Vienna, and with this object offered a three days' truce on condition that both armies should remain in position without moving. Murat declared that negotiations for peace were already proceeding, and that he therefore offered this truce to avoid unnecessary bloodshed. Count Nostitz, the Austrian general occupying the advanced posts, believed Murat's emissary and retired, leaving Bagration's division exposed. Another emissary rode to the Russian line to announce the peace negotiations and to offer the Russian army the three days' truce. Bagration replied that he was not authorized either to accept or refuse a truce and sent his adjutant to Kutuzov to report the offer he had received. A truce was Kutuzov's sole chance of gaining time, giving Bagration's exhausted troops some rest, and letting the transport and heavy convoys (whose movements were concealed from the French) advance if but one stage nearer Znaim. The offer of a truce gave the only, and a quite unexpected, chance of saving the army. On receiving the news he immediately dispatched Adjutant General Wintzingerode, who was in attendance on him, to the enemy camp. Wintzingerode was not merely to agree to the truce but also to offer terms of capitulation, and meanwhile Kutuzov sent his adjutants back to hasten to the utmost the movements of the baggage trains of the entire army along the Krems-Znaim road. Bagration's exhausted and hungry detachment, which alone covered this movement of the transport and of the whole army, had to remain stationary in face of an enemy eight times as strong as itself. Kutuzov's expectations that the proposals of capitulation (which were in no way binding) might give time for part of the transport to pass, and also that Murat's mistake would very soon be discovered, proved correct. As soon as Bonaparte (who was at Schonbrunn, sixteen miles from Hollabrunn) received Murat's dispatch with the proposal of a truce and a capitulation, he detected a ruse and wrote the following letter to Murat: Schonbrunn, 25th Brumaire, 1805, at eight o'clock in the morning To PRINCE MURAT, I cannot find words to express to you my displeasure. You command only my advance guard, and have no right to arrange an armistice without my order. You are causing me to lose the fruits of a campaign. Break the armistice immediately and march on the enemy. Inform him that the general who signed that capitulation had no right to do so, and that no one but the Emperor of Russia has that right. If, however, the Emperor of Russia ratifies that convention, I will ratify it; but it is only a trick. March on, destroy the Russian army.... You are in a position to seize its baggage and artillery. The Russian Emperor's aide-de-camp is an impostor. Officers are nothing when they have no powers; this one had none.... The Austrians let themselves be tricked at the crossing of the Vienna bridge, you are letting yourself be tricked by an aide-de-camp of the Emperor. NAPOLEON Bonaparte's adjutant rode full gallop with this menacing letter to Murat. Bonaparte himself, not trusting to his generals, moved with all the Guards to the field of battle, afraid of letting a ready victim escape, and Bagration's four thousand men merrily lighted campfires, dried and warmed themselves, cooked their porridge for the first time for three days, and not one of them knew or imagined what was in store for him. CHAPTER XV Between three and four o'clock in the afternoon Prince Andrew, who had persisted in his request to Kutuzov, arrived at Grunth and reported himself to Bagration. Bonaparte's adjutant had not yet reached Murat's detachment and the battle had not yet begun. In Bagration's detachment no one knew anything of the general position of affairs. They talked of peace but did not believe in its possibility; others talked of a battle but also disbelieved in the nearness of an engagement. Bagration, knowing Bolkonski to be a favorite and trusted adjutant, received him with distinction and special marks of favor, explaining to him that there would probably be an engagement that day or the next, and giving him full liberty to remain with him during the battle or to join the rearguard and have an eye on the order of retreat, "which is also very important." "However, there will hardly be an engagement today," said Bagration as if to reassure Prince Andrew. "If he is one of the ordinary little staff dandies sent to earn a medal he can get his reward just as well in the rearguard, but if he wishes to stay with me, let him... he'll be of use here if he's a brave officer," thought Bagration. Prince Andrew, without replying, asked the prince's permission to ride round the position to see the disposition of the forces, so as to know his bearings should he be sent to execute an order. The officer on duty, a handsome, elegantly dressed man with a diamond ring on his forefinger, who was fond of speaking French though he spoke it badly, offered to conduct Prince Andrew. On all sides they saw rain-soaked officers with dejected faces who seemed to be seeking something, and soldiers dragging doors, benches, and fencing from the village. "There now, Prince! We can't stop those fellows," said the staff officer pointing to the soldiers. "The officers don't keep them in hand. And there," he pointed to a sutler's tent, "they crowd in and sit. This morning I turned them all out and now look, it's full again. I must go there, Prince, and scare them a bit. It won't take a moment." "Yes, let's go in and I will get myself a roll and some cheese," said Prince Andrew who had not yet had time to eat anything. "Why didn't you mention it, Prince? I would have offered you something." They dismounted and entered the tent. Several officers, with flushed and weary faces, were sitting at the table eating and drinking. "Now what does this mean, gentlemen?" said the staff officer, in the reproachful tone of a man who has repeated the same thing more than once. "You know it won't do to leave your posts like this. The prince gave orders that no one should leave his post. Now you, Captain," and he turned to a thin, dirty little artillery officer who without his boots (he had given them to the canteen keeper to dry), in only his stockings, rose when they entered, smiling not altogether comfortably. "Well, aren't you ashamed of yourself, Captain Tushin?" he continued. "One would think that as an artillery officer you would set a good example, yet here you are without your boots! The alarm will be sounded and you'll be in a pretty position without your boots!" (The staff officer smiled.) "Kindly return to your posts, gentlemen, all of you, all!" he added in a tone of command. Prince Andrew smiled involuntarily as he looked at the artillery officer Tushin, who silent and smiling, shifting from one stockinged foot to the other, glanced inquiringly with his large, intelligent, kindly eyes from Prince Andrew to the staff officer. "The soldiers say it feels easier without boots," said Captain Tushin smiling shyly in his uncomfortable position, evidently wishing to adopt a jocular tone. But before he had finished he felt that his jest was unacceptable and had not come off. He grew confused. "Kindly return to your posts," said the staff officer trying to preserve his gravity. Prince Andrew glanced again at the artillery officer's small figure. There was something peculiar about it, quite unsoldierly, rather comic, but extremely attractive. The staff officer and Prince Andrew mounted their horses and rode on. Having ridden beyond the village, continually meeting and overtaking soldiers and officers of various regiments, they saw on their left some entrenchments being thrown up, the freshly dug clay of which showed up red. Several battalions of soldiers, in their shirt sleeves despite the cold wind, swarmed in these earthworks like a host of white ants; spadefuls of red clay were continually being thrown up from behind the bank by unseen hands. Prince Andrew and the officer rode up, looked at the entrenchment, and went on again. Just behind it they came upon some dozens of soldiers, continually replaced by others, who ran from the entrenchment. They had to hold their noses and put their horses to a trot to escape from the poisoned atmosphere of these latrines. "Voila l'agrement des camps, monsieur le Prince,"* said the staff officer. *"This is a pleasure one gets in camp, Prince." They rode up the opposite hill. From there the French could already be seen. Prince Andrew stopped and began examining the position. "That's our battery," said the staff officer indicating the highest point. "It's in charge of the queer fellow we saw without his boots. You can see everything from there; let's go there, Prince." "Thank you very much, I will go on alone," said Prince Andrew, wishing to rid himself of this staff officer's company, "please don't trouble yourself further." The staff officer remained behind and Prince Andrew rode on alone. The farther forward and nearer the enemy he went, the more orderly and cheerful were the troops. The greatest disorder and depression had been in the baggage train he had passed that morning on the Znaim road seven miles away from the French. At Grunth also some apprehension and alarm could be felt, but the nearer Prince Andrew came to the French lines the more confident was the appearance of our troops. The soldiers in their greatcoats were ranged in lines, the sergeants major and company officers were counting the men, poking the last man in each section in the ribs and telling him to hold his hand up. Soldiers scattered over the whole place were dragging logs and brushwood and were building shelters with merry chatter and laughter; around the fires sat others, dressed and undressed, drying their shirts and leg bands or mending boots or overcoats and crowding round the boilers and porridge cookers. In one company dinner was ready, and the soldiers were gazing eagerly at the steaming boiler, waiting till the sample, which a quartermaster sergeant was carrying in a wooden bowl to an officer who sat on a log before his shelter, had been tasted. Another company, a lucky one for not all the companies had vodka, crowded round a pock-marked, broad-shouldered sergeant major who, tilting a keg, filled one after another the canteen lids held out to him. The soldiers lifted the canteen lids to their lips with reverential faces, emptied them, rolling the vodka in their mouths, and walked away from the sergeant major with brightened expressions, licking their lips and wiping them on the sleeves of their greatcoats. All their faces were as serene as if all this were happening at home awaiting peaceful encampment, and not within sight of the enemy before an action in which at least half of them would be left on the field. After passing a chasseur regiment and in the lines of the Kiev grenadiers--fine fellows busy with similar peaceful affairs--near the shelter of the regimental commander, higher than and different from the others, Prince Andrew came out in front of a platoon of grenadiers before whom lay a naked man. Two soldiers held him while two others were flourishing their switches and striking him regularly on his bare back. The man shrieked unnaturally. A stout major was pacing up and down the line, and regardless of the screams kept repeating: "It's a shame for a soldier to steal; a soldier must be honest, honorable, and brave, but if he robs his fellows there is no honor in him, he's a scoundrel. Go on! Go on!" So the swishing sound of the strokes, and the desperate but unnatural screams, continued. "Go on, go on!" said the major. A young officer with a bewildered and pained expression on his face stepped away from the man and looked round inquiringly at the adjutant as he rode by. Prince Andrew, having reached the front line, rode along it. Our front line and that of the enemy were far apart on the right and left flanks, but in the center where the men with a flag of truce had passed that morning, the lines were so near together that the men could see one another's faces and speak to one another. Besides the soldiers who formed the picket line on either side, there were many curious onlookers who, jesting and laughing, stared at their strange foreign enemies. Since early morning--despite an injunction not to approach the picket line--the officers had been unable to keep sight-seers away. The soldiers forming the picket line, like showmen exhibiting a curiosity, no longer looked at the French but paid attention to the sight-seers and grew weary waiting to be relieved. Prince Andrew halted to have a look at the French. "Look! Look there!" one soldier was saying to another, pointing to a Russian musketeer who had gone up to the picket line with an officer and was rapidly and excitedly talking to a French grenadier. "Hark to him jabbering! Fine, isn't it? It's all the Frenchy can do to keep up with him. There now, Sidorov!" "Wait a bit and listen. It's fine!" answered Sidorov, who was considered an adept at French. The soldier to whom the laughers referred was Dolokhov. Prince Andrew recognized him and stopped to listen to what he was saying. Dolokhov had come from the left flank where their regiment was stationed, with his captain. "Now then, go on, go on!" incited the officer, bending forward and trying not to lose a word of the speech which was incomprehensible to him. "More, please: more! What's he saying?" Dolokhov did not answer the captain; he had been drawn into a hot dispute with the French grenadier. They were naturally talking about the campaign. The Frenchman, confusing the Austrians with the Russians, was trying to prove that the Russians had surrendered and had fled all the way from Ulm, while Dolokhov maintained that the Russians had not surrendered but had beaten the French. "We have orders to drive you off here, and we shall drive you off," said Dolokhov. "Only take care you and your Cossacks are not all captured!" said the French grenadier. The French onlookers and listeners laughed. "We'll make you dance as we did under Suvorov...,"* said Dolokhov. *"On vous fera danser." "Qu' est-ce qu'il chante?"* asked a Frenchman. *"What's he singing about?" "It's ancient history," said another, guessing that it referred to a former war. "The Emperor will teach your Suvara as he has taught the others..." "Bonaparte..." began Dolokhov, but the Frenchman interrupted him. "Not Bonaparte. He is the Emperor! Sacre nom...!" cried he angrily. "The devil skin your Emperor." And Dolokhov swore at him in coarse soldier's Russian and shouldering his musket walked away. "Let us go, Ivan Lukich," he said to the captain. "Ah, that's the way to talk French," said the picket soldiers. "Now, Sidorov, you have a try!" Sidorov, turning to the French, winked, and began to jabber meaningless sounds very fast: "Kari, mala, tafa, safi, muter, Kaska," he said, trying to give an expressive intonation to his voice. "Ho! ho! ho! Ha! ha! ha! ha! Ouh! ouh!" came peals of such healthy and good-humored laughter from the soldiers that it infected the French involuntarily, so much so that the only thing left to do seemed to be to unload the muskets, muskets, explode the ammunition, and all return home as quickly as possible. But the guns remained loaded, the loopholes in blockhouses and entrenchments looked out just as menacingly, and the unlimbered cannon confronted one another as before. CHAPTER XVI Having ridden round the whole line from right flank to left, Prince Andrew made his way up to the battery from which the staff officer had told him the whole field could be seen. Here he dismounted, and stopped beside the farthest of the four unlimbered cannon. Before the guns an artillery sentry was pacing up and down; he stood at attention when the officer arrived, but at a sign resumed his measured, monotonous pacing. Behind the guns were their limbers and still farther back picket ropes and artillerymen's bonfires. To the left, not far from the farthest cannon, was a small, newly constructed wattle shed from which came the sound of officers' voices in eager conversation. It was true that a view over nearly the whole Russian position and the greater part of the enemy's opened out from this battery. Just facing it, on the crest of the opposite hill, the village of Schon Grabern could be seen, and in three places to left and right the French troops amid the smoke of their campfires, the greater part of whom were evidently in the village itself and behind the hill. To the left from that village, amid the smoke, was something resembling a battery, but it was impossible to see it clearly with the naked eye. Our right flank was posted on a rather steep incline which dominated the French position. Our infantry were stationed there, and at the farthest point the dragoons. In the center, where Tushin's battery stood and from which Prince Andrew was surveying the position, was the easiest and most direct descent and ascent to the brook separating us from Schon Grabern. On the left our troops were close to a copse, in which smoked the bonfires of our infantry who were felling wood. The French line was wider than ours, and it was plain that they could easily outflank us on both sides. Behind our position was a steep and deep dip, making it difficult for artillery and cavalry to retire. Prince Andrew took out his notebook and, leaning on the cannon, sketched a plan of the position. He made some notes on two points, intending to mention them to Bagration. His idea was, first, to concentrate all the artillery in the center, and secondly, to withdraw the cavalry to the other side of the dip. Prince Andrew, being always near the commander in chief, closely following the mass movements and general orders, and constantly studying historical accounts of battles, involuntarily pictured to himself the course of events in the forthcoming action in broad outline. He imagined only important possibilities: "If the enemy attacks the right flank," he said to himself, "the Kiev grenadiers and the Podolsk chasseurs must hold their position till reserves from the center come up. In that case the dragoons could successfully make a flank counterattack. If they attack our center we, having the center battery on this high ground, shall withdraw the left flank under its cover, and retreat to the dip by echelons." So he reasoned.... All the time he had been beside the gun, he had heard the voices of the officers distinctly, but as often happens had not understood a word of what they were saying. Suddenly, however, he was struck by a voice coming from the shed, and its tone was so sincere that he could not but listen. "No, friend," said a pleasant and, as it seemed to Prince Andrew, a familiar voice, "what I say is that if it were possible to know what is beyond death, none of us would be afraid of it. That's so, friend." Another, a younger voice, interrupted him: "Afraid or not, you can't escape it anyhow." "All the same, one is afraid! Oh, you clever people," said a third manly voice interrupting them both. "Of course you artillery men are very wise, because you can take everything along with you--vodka and snacks." And the owner of the manly voice, evidently an infantry officer, laughed. "Yes, one is afraid," continued the first speaker, he of the familiar voice. "One is afraid of the unknown, that's what it is. Whatever we may say about the soul going to the sky... we know there is no sky but only an atmosphere." The manly voice again interrupted the artillery officer. "Well, stand us some of your herb vodka, Tushin," it said. "Why," thought Prince Andrew, "that's the captain who stood up in the sutler's hut without his boots." He recognized the agreeable, philosophizing voice with pleasure. "Some herb vodka? Certainly!" said Tushin. "But still, to conceive a future life..." He did not finish. Just then there was a whistle in the air; nearer and nearer, faster and louder, louder and faster, a cannon ball, as if it had not finished saying what was necessary, thudded into the ground near the shed with super human force, throwing up a mass of earth. The ground seemed to groan at the terrible impact. And immediately Tushin, with a short pipe in the corner of his mouth and his kind, intelligent face rather pale, rushed out of the shed followed by the owner of the manly voice, a dashing infantry officer who hurried off to his company, buttoning up his coat as he ran. CHAPTER XVII Mounting his horse again Prince Andrew lingered with the battery, looking at the puff from the gun that had sent the ball. His eyes ran rapidly over the wide space, but he only saw that the hitherto motionless masses of the French now swayed and that there really was a battery to their left. The smoke above it had not yet dispersed. Two mounted Frenchmen, probably adjutants, were galloping up the hill. A small but distinctly visible enemy column was moving down the hill, probably to strengthen the front line. The smoke of the first shot had not yet dispersed before another puff appeared, followed by a report. The battle had begun! Prince Andrew turned his horse and galloped back to Grunth to find Prince Bagration. He heard the cannonade behind him growing louder and more frequent. Evidently our guns had begun to reply. From the bottom of the slope, where the parleys had taken place, came the report of musketry. Lemarrois had just arrived at a gallop with Bonaparte's stern letter, and Murat, humiliated and anxious to expiate his fault, had at once moved his forces to attack the center and outflank both the Russian wings, hoping before evening and before the arrival of the Emperor to crush the contemptible detachment that stood before him. "It has begun. Here it is!" thought Prince Andrew, feeling the blood rush to his heart. "But where and how will my Toulon present itself?" Passing between the companies that had been eating porridge and drinking vodka a quarter of an hour before, he saw everywhere the same rapid movement of soldiers forming ranks and getting their muskets ready, and on all their faces he recognized the same eagerness that filled his heart. "It has begun! Here it is, dreadful but enjoyable!" was what the face of each soldier and each officer seemed to say. Before he had reached the embankments that were being thrown up, he saw, in the light of the dull autumn evening, mounted men coming toward him. The foremost, wearing a Cossack cloak and lambskin cap and riding a white horse, was Prince Bagration. Prince Andrew stopped, waiting for him to come up; Prince Bagration reined in his horse and recognizing Prince Andrew nodded to him. He still looked ahead while Prince Andrew told him what he had seen. The feeling, "It has begun! Here it is!" was seen even on Prince Bagration's hard brown face with its half-closed, dull, sleepy eyes. Prince Andrew gazed with anxious curiosity at that impassive face and wished he could tell what, if anything, this man was thinking and feeling at that moment. "Is there anything at all behind that impassive face?" Prince Andrew asked himself as he looked. Prince Bagration bent his head in sign of agreement with what Prince Andrew told him, and said, "Very good!" in a tone that seemed to imply that everything that took place and was reported to him was exactly what he had foreseen. Prince Andrew, out of breath with his rapid ride, spoke quickly. Prince Bagration, uttering his words with an Oriental accent, spoke particularly slowly, as if to impress the fact that there was no need to hurry. However, he put his horse to a trot in the direction of Tushin's battery. Prince Andrew followed with the suite. Behind Prince Bagration rode an officer of the suite, the prince's personal adjutant, Zherkov, an orderly officer, the staff officer on duty, riding a fine bobtailed horse, and a civilian--an accountant who had asked permission to be present at the battle out of curiosity. The accountant, a stout, full-faced man, looked around him with a naive smile of satisfaction and presented a strange appearance among the hussars, Cossacks, and adjutants, in his camlet coat, as he jolted on his horse with a convoy officer's saddle. "He wants to see a battle," said Zherkov to Bolkonski, pointing to the accountant, "but he feels a pain in the pit of his stomach already." "Oh, leave off!" said the accountant with a beaming but rather cunning smile, as if flattered at being made the subject of Zherkov's joke, and purposely trying to appear stupider than he really was. "It is very strange, mon Monsieur Prince," said the staff officer. (He remembered that in French there is some peculiar way of addressing a prince, but could not get it quite right.) By this time they were all approaching Tushin's battery, and a ball struck the ground in front of them. "What's that that has fallen?" asked the accountant with a naive smile. "A French pancake," answered Zherkov. "So that's what they hit with?" asked the accountant. "How awful!" He seemed to swell with satisfaction. He had hardly finished speaking when they again heard an unexpectedly violent whistling which suddenly ended with a thud into something soft... f-f-flop! and a Cossack, riding a little to their right and behind the accountant, crashed to earth with his horse. Zherkov and the staff officer bent over their saddles and turned their horses away. The accountant stopped, facing the Cossack, and examined him with attentive curiosity. The Cossack was dead, but the horse still struggled. Prince Bagration screwed up his eyes, looked round, and, seeing the cause of the confusion, turned away with indifference, as if to say, "Is it worth while noticing trifles?" He reined in his horse with the case of a skillful rider and, slightly bending over, disengaged his saber which had caught in his cloak. It was an old-fashioned saber of a kind no longer in general use. Prince Andrew remembered the story of Suvorov giving his saber to Bagration in Italy, and the recollection was particularly pleasant at that moment. They had reached the battery at which Prince Andrew had been when he examined the battlefield. "Whose company?" asked Prince Bagration of an artilleryman standing by the ammunition wagon. He asked, "Whose company?" but he really meant, "Are you frightened here?" and the artilleryman understood him. "Captain Tushin's, your excellency!" shouted the red-haired, freckled gunner in a merry voice, standing to attention. "Yes, yes," muttered Bagration as if considering something, and he rode past the limbers to the farthest cannon. As he approached, a ringing shot issued from it deafening him and his suite, and in the smoke that suddenly surrounded the gun they could see the gunners who had seized it straining to roll it quickly back to its former position. A huge, broad-shouldered gunner, Number One, holding a mop, his legs far apart, sprang to the wheel; while Number Two with a trembling hand placed a charge in the cannon's mouth. The short, round-shouldered Captain Tushin, stumbling over the tail of the gun carriage, moved forward and, not noticing the general, looked out shading his eyes with his small hand. "Lift it two lines more and it will be just right," cried he in a feeble voice to which he tried to impart a dashing note, ill suited to his weak figure. "Number Two!" he squeaked. "Fire, Medvedev!" Bagration called to him, and Tushin, raising three fingers to his cap with a bashful and awkward gesture not at all like a military salute but like a priest's benediction, approached the general. Though Tushin's guns had been intended to cannonade the valley, he was firing incendiary balls at the village of Schon Grabern visible just opposite, in front of which large masses of French were advancing. No one had given Tushin orders where and at what to fire, but after consulting his sergeant major, Zakharchenko, for whom he had great respect, he had decided that it would be a good thing to set fire to the village. "Very good!" said Bagration in reply to the officer's report, and began deliberately to examine the whole battlefield extended before him. The French had advanced nearest on our right. Below the height on which the Kiev regiment was stationed, in the hollow where the rivulet flowed, the soul-stirring rolling and crackling of musketry was heard, and much farther to the right beyond the dragoons, the officer of the suite pointed out to Bagration a French column that was outflanking us. To the left the horizon bounded by the adjacent wood. Prince Bagration ordered two battalions from the center to be sent to reinforce the right flank. The officer of the suite ventured to remark to the prince that if these battalions went away, the guns would remain without support. Prince Bagration turned to the officer and with his dull eyes looked at him in silence. It seemed to Prince Andrew that the officer's remark was just and that really no answer could be made to it. But at that moment an adjutant galloped up with a message from the commander of the regiment in the hollow and news that immense masses of the French were coming down upon them and that his regiment was in disorder and was retreating upon the Kiev grenadiers. Prince Bagration bowed his head in sign of assent and approval. He rode off at a walk to the right and sent an adjutant to the dragoons with orders to attack the French. But this adjutant returned half an hour later with the news that the commander of the dragoons had already retreated beyond the dip in the ground, as a heavy fire had been opened on him and he was losing men uselessly, and so had hastened to throw some sharpshooters into the wood. "Very good!" said Bagration. As he was leaving the battery, firing was heard on the left also, and as it was too far to the left flank for him to have time to go there himself, Prince Bagration sent Zherkov to tell the general in command (the one who had paraded his regiment before Kutuzov at Braunau) that he must retreat as quickly as possible behind the hollow in the rear, as the right flank would probably not be able to withstand the enemy's attack very long. About Tushin and the battalion that had been in support of his battery all was forgotten. Prince Andrew listened attentively to Bagration's colloquies with the commanding officers and the orders he gave them and, to his surprise, found that no orders were really given, but that Prince Bagration tried to make it appear that everything done by necessity, by accident, or by the will of subordinate commanders was done, if not by his direct command, at least in accord with his intentions. Prince Andrew noticed, however, that though what happened was due to chance and was independent of the commander's will, owing to the tact Bagration showed, his presence was very valuable. Officers who approached him with disturbed countenances became calm; soldiers and officers greeted him gaily, grew more cheerful in his presence, and were evidently anxious to display their courage before him. CHAPTER XVIII Prince Bagration, having reached the highest point of our right flank, began riding downhill to where the roll of musketry was heard but where on account of the smoke nothing could be seen. The nearer they got to the hollow the less they could see but the more they felt the nearness of the actual battlefield. They began to meet wounded men. One with a bleeding head and no cap was being dragged along by two soldiers who supported him under the arms. There was a gurgle in his throat and he was spitting blood. A bullet had evidently hit him in the throat or mouth. Another was walking sturdily by himself but without his musket, groaning aloud and swinging his arm which had just been hurt, while blood from it was streaming over his greatcoat as from a bottle. He had that moment been wounded and his face showed fear rather than suffering. Crossing a road they descended a steep incline and saw several men lying on the ground; they also met a crowd of soldiers some of whom were unwounded. The soldiers were ascending the hill breathing heavily, and despite the general's presence were talking loudly and gesticulating. In front of them rows of gray cloaks were already visible through the smoke, and an officer catching sight of Bagration rushed shouting after the crowd of retreating soldiers, ordering them back. Bagration rode up to the ranks along which shots crackled now here and now there, drowning the sound of voices and the shouts of command. The whole air reeked with smoke. The excited faces of the soldiers were blackened with it. Some were using their ramrods, others putting powder on the touchpans or taking charges from their pouches, while others were firing, though who they were firing at could not be seen for the smoke which there was no wind to carry away. A pleasant humming and whistling of bullets were often heard. "What is this?" thought Prince Andrew approaching the crowd of soldiers. "It can't be an attack, for they are not moving; it can't be a square--for they are not drawn up for that." The commander of the regiment, a thin, feeble-looking old man with a pleasant smile--his eyelids drooping more than half over his old eyes, giving him a mild expression, rode up to Bagration and welcomed him as a host welcomes an honored guest. He reported that his regiment had been attacked by French cavalry and that, though the attack had been repulsed, he had lost more than half his men. He said the attack had been repulsed, employing this military term to describe what had occurred to his regiment, but in reality he did not himself know what had happened during that half-hour to the troops entrusted to him, and could not say with certainty whether the attack had been repulsed or his regiment had been broken up. All he knew was that at the commencement of the action balls and shells began flying all over his regiment and hitting men and that afterwards someone had shouted "Cavalry!" and our men had begun firing. They were still firing, not at the cavalry which had disappeared, but at French infantry who had come into the hollow and were firing at our men. Prince Bagration bowed his head as a sign that this was exactly what he had desired and expected. Turning to his adjutant he ordered him to bring down the two battalions of the Sixth Chasseurs whom they had just passed. Prince Andrew was struck by the changed expression on Prince Bagration's face at this moment. It expressed the concentrated and happy resolution you see on the face of a man who on a hot day takes a final run before plunging into the water. The dull, sleepy expression was no longer there, nor the affectation of profound thought. The round, steady, hawk's eyes looked before him eagerly and rather disdainfully, not resting on anything although his movements were still slow and measured. The commander of the regiment turned to Prince Bagration, entreating him to go back as it was too dangerous to remain where they were. "Please, your excellency, for God's sake!" he kept saying, glancing for support at an officer of the suite who turned away from him. "There, you see!" and he drew attention to the bullets whistling, singing, and hissing continually around them. He spoke in the tone of entreaty and reproach that a carpenter uses to a gentleman who has picked up an ax: "We are used to it, but you, sir, will blister your hands." He spoke as if those bullets could not kill him, and his half-closed eyes gave still more persuasiveness to his words. The staff officer joined in the colonel's appeals, but Bagration did not reply; he only gave an order to cease firing and re-form, so as to give room for the two approaching battalions. While he was speaking, the curtain of smoke that had concealed the hollow, driven by a rising wind, began to move from right to left as if drawn by an invisible hand, and the hill opposite, with the French moving about on it, opened out before them. All eyes fastened involuntarily on this French column advancing against them and winding down over the uneven ground. One could already see the soldiers' shaggy caps, distinguish the officers from the men, and see the standard flapping against its staff. "They march splendidly," remarked someone in Bagration's suite. The head of the column had already descended into the hollow. The clash would take place on this side of it... The remains of our regiment which had been in action rapidly formed up and moved to the right; from behind it, dispersing the laggards, came two battalions of the Sixth Chasseurs in fine order. Before they had reached Bagration, the weighty tread of the mass of men marching in step could be heard. On their left flank, nearest to Bagration, marched a company commander, a fine round-faced man, with a stupid and happy expression--the same man who had rushed out of the wattle shed. At that moment he was clearly thinking of nothing but how dashing a fellow he would appear as he passed the commander. With the self-satisfaction of a man on parade, he stepped lightly with his muscular legs as if sailing along, stretching himself to his full height without the smallest effort, his ease contrasting with the heavy tread of the soldiers who were keeping step with him. He carried close to his leg a narrow unsheathed sword (small, curved, and not like a real weapon) and looked now at the superior officers and now back at the men without losing step, his whole powerful body turning flexibly. It was as if all the powers of his soul were concentrated on passing the commander in the best possible manner, and feeling that he was doing it well he was happy. "Left... left... left..." he seemed to repeat to himself at each alternate step; and in time to this, with stern but varied faces, the wall of soldiers burdened with knapsacks and muskets marched in step, and each one of these hundreds of soldiers seemed to be repeating to himself at each alternate step, "Left... left... left..." A fat major skirted a bush, puffing and falling out of step; a soldier who had fallen behind, his face showing alarm at his defection, ran at a trot, panting to catch up with his company. A cannon ball, cleaving the air, flew over the heads of Bagration and his suite, and fell into the column to the measure of "Left... left!" "Close up!" came the company commander's voice in jaunty tones. The soldiers passed in a semicircle round something where the ball had fallen, and an old trooper on the flank, a noncommissioned officer who had stopped beside the dead men, ran to catch up his line and, falling into step with a hop, looked back angrily, and through the ominous silence and the regular tramp of feet beating the ground in unison, one seemed to hear left... left... left. "Well done, lads!" said Prince Bagration. "Glad to do our best, your ex'len-lency!" came a confused shout from the ranks. A morose soldier marching on the left turned his eyes on Bagration as he shouted, with an expression that seemed to say: "We know that ourselves!" Another, without looking round, as though fearing to relax, shouted with his mouth wide open and passed on. The order was given to halt and down knapsacks. Bagration rode round the ranks that had marched past him and dismounted. He gave the reins to a Cossack, took off and handed over his felt coat, stretched his legs, and set his cap straight. The head of the French column, with its officers leading, appeared from below the hill. "Forward, with God!" said Bagration, in a resolute, sonorous voice, turning for a moment to the front line, and slightly swinging his arms, he went forward uneasily over the rough field with the awkward gait of a cavalryman. Prince Andrew felt that an invisible power was leading him forward, and experienced great happiness. The French were already near. Prince Andrew, walking beside Bagration, could clearly distinguish their bandoliers, red epaulets, and even their faces. (He distinctly saw an old French officer who, with gaitered legs and turned-out toes, climbed the hill with difficulty.) Prince Bagration gave no further orders and silently continued to walk on in front of the ranks. Suddenly one shot after another rang out from the French, smoke appeared all along their uneven ranks, and musket shots sounded. Several of our men fell, among them the round-faced officer who had marched so gaily and complacently. But at the moment the first report was heard, Bagration looked round and shouted, "Hurrah!" "Hurrah--ah!--ah!" rang a long-drawn shout from our ranks, and passing Bagration and racing one another they rushed in an irregular but joyous and eager crowd down the hill at their disordered foe. CHAPTER XIX The attack of the Sixth Chasseurs secured the retreat of our right flank. In the center Tushin's forgotten battery, which had managed to set fire to the Schon Grabern village, delayed the French advance. The French were putting out the fire which the wind was spreading, and thus gave us time to retreat. The retirement of the center to the other side of the dip in the ground at the rear was hurried and noisy, but the different companies did not get mixed. But our left--which consisted of the Azov and Podolsk infantry and the Pavlograd hussars--was simultaneously attacked and outflanked by superior French forces under Lannes and was thrown into confusion. Bagration had sent Zherkov to the general commanding that left flank with orders to retreat immediately. Zherkov, not removing his hand from his cap, turned his horse about and galloped off. But no sooner had he left Bagration than his courage failed him. He was seized by panic and could not go where it was dangerous. Having reached the left flank, instead of going to the front where the firing was, he began to look for the general and his staff where they could not possibly be, and so did not deliver the order. The command of the left flank belonged by seniority to the commander of the regiment Kutuzov had reviewed at Braunau and in which Dolokhov was serving as a private. But the command of the extreme left flank had been assigned to the commander of the Pavlograd regiment in which Rostov was serving, and a misunderstanding arose. The two commanders were much exasperated with one another and, long after the action had begun on the right flank and the French were already advancing, were engaged in discussion with the sole object of offending one another. But the regiments, both cavalry and infantry, were by no means ready for the impending action. From privates to general they were not expecting a battle and were engaged in peaceful occupations, the cavalry feeding the horses and the infantry collecting wood. "He higher iss dan I in rank," said the German colonel of the hussars, flushing and addressing an adjutant who had ridden up, "so let him do what he vill, but I cannot sacrifice my hussars... Bugler, sount ze retreat!" But haste was becoming imperative. Cannon and musketry, mingling together, thundered on the right and in the center, while the capotes of Lannes' sharpshooters were already seen crossing the milldam and forming up within twice the range of a musket shot. The general in command of the infantry went toward his horse with jerky steps, and having mounted drew himself up very straight and tall and rode to the Pavlograd commander. The commanders met with polite bows but with secret malevolence in their hearts. "Once again, Colonel," said the general, "I can't leave half my men in the wood. I beg of you, I beg of you," he repeated, "to occupy the position and prepare for an attack." "I peg of you yourself not to mix in vot is not your business!" suddenly replied the irate colonel. "If you vere in the cavalry..." "I am not in the cavalry, Colonel, but I am a Russian general and if you are not aware of the fact..." "Quite avare, your excellency," suddenly shouted the colonel, touching his horse and turning purple in the face. "Vill you be so goot to come to ze front and see dat zis position iss no goot? I don't vish to destroy my men for your pleasure!" "You forget yourself, Colonel. I am not considering my own pleasure and I won't allow it to be said!" Taking the colonel's outburst as a challenge to his courage, the general expanded his chest and rode, frowning, beside him to the front line, as if their differences would be settled there amongst the bullets. They reached the front, several bullets sped over them, and they halted in silence. There was nothing fresh to be seen from the line, for from where they had been before it had been evident that it was impossible for cavalry to act among the bushes and broken ground, as well as that the French were outflanking our left. The general and colonel looked sternly and significantly at one another like two fighting cocks preparing for battle, each vainly trying to detect signs of cowardice in the other. Both passed the examination successfully. As there was nothing to said, and neither wished to give occasion for it to be alleged that he had been the first to leave the range of fire, they would have remained there for a long time testing each other's courage had it not been that just then they heard the rattle of musketry and a muffled shout almost behind them in the wood. The French had attacked the men collecting wood in the copse. It was no longer possible for the hussars to retreat with the infantry. They were cut off from the line of retreat on the left by the French. However inconvenient the position, it was now necessary to attack in order to cut away through for themselves. The squadron in which Rostov was serving had scarcely time to mount before it was halted facing the enemy. Again, as at the Enns bridge, there was nothing between the squadron and the enemy, and again that terrible dividing line of uncertainty and fear- resembling the line separating the living from the dead--lay between them. All were conscious of this unseen line, and the question whether they would cross it or not, and how they would cross it, agitated them all. The colonel rode to the front, angrily gave some reply to questions put to him by the officers, and, like a man desperately insisting on having his own way, gave an order. No one said anything definite, but the rumor of an attack spread through the squadron. The command to form up rang out and the sabers whizzed as they were drawn from their scabbards. Still no one moved. The troops of the left flank, infantry and hussars alike, felt that the commander did not himself know what to do, and this irresolution communicated itself to the men. "If only they would be quick!" thought Rostov, feeling that at last the time had come to experience the joy of an attack of which he had so often heard from his fellow hussars. "Fo'ward, with God, lads!" rang out Denisov's voice. "At a twot fo'ward!" The horses' croups began to sway in the front line. Rook pulled at the reins and started of his own accord. Before him, on the right, Rostov saw the front lines of his hussars and still farther ahead a dark line which he could not see distinctly but took to be the enemy. Shots could be heard, but some way off. "Faster!" came the word of command, and Rostov felt Rook's flanks drooping as he broke into a gallop. Rostov anticipated his horse's movements and became more and more elated. He had noticed a solitary tree ahead of him. This tree had been in the middle of the line that had seemed so terrible--and now he had crossed that line and not only was there nothing terrible, but everything was becoming more and more happy and animated. "Oh, how I will slash at him!" thought Rostov, gripping the hilt of his saber. "Hur-a-a-a-ah!" came a roar of voices. "Let anyone come my way now," thought Rostov driving his spurs into Rook and letting him go at a full gallop so that he outstripped the others. Ahead, the enemy was already visible. Suddenly something like a birch broom seemed to sweep over the squadron. Rostov raised his saber, ready to strike, but at that instant the trooper Nikitenko, who was galloping ahead, shot away from him, and Rostov felt as in a dream that he continued to be carried forward with unnatural speed but yet stayed on the same spot. From behind him Bondarchuk, an hussar he knew, jolted against him and looked angrily at him. Bondarchuk's horse swerved and galloped past. "How is it I am not moving? I have fallen, I am killed!" Rostov asked and answered at the same instant. He was alone in the middle of a field. Instead of the moving horses and hussars' backs, he saw nothing before him but the motionless earth and the stubble around him. There was warm blood under his arm. "No, I am wounded and the horse is killed." Rook tried to rise on his forelegs but fell back, pinning his rider's leg. Blood was flowing from his head; he struggled but could not rise. Rostov also tried to rise but fell back, his sabretache having become entangled in the saddle. Where our men were, and where the French, he did not know. There was no one near. Having disentangled his leg, he rose. "Where, on which side, was now the line that had so sharply divided the two armies?" he asked himself and could not answer. "Can something bad have happened to me?" he wondered as he got up: and at that moment he felt that something superfluous was hanging on his benumbed left arm. The wrist felt as if it were not his. He examined his hand carefully, vainly trying to find blood on it. "Ah, here are people coming," he thought joyfully, seeing some men running toward him. "They will help me!" In front came a man wearing a strange shako and a blue cloak, swarthy, sunburned, and with a hooked nose. Then came two more, and many more running behind. One of them said something strange, not in Russian. In among the hindmost of these men wearing similar shakos was a Russian hussar. He was being held by the arms and his horse was being led behind him. "It must be one of ours, a prisoner. Yes. Can it be that they will take me too? Who are these men?" thought Rostov, scarcely believing his eyes. "Can they be French?" He looked at the approaching Frenchmen, and though but a moment before he had been galloping to get at them and hack them to pieces, their proximity now seemed so awful that he could not believe his eyes. "Who are they? Why are they running? Can they be coming at me? And why? To kill me? Me whom everyone is so fond of?" He remembered his mother's love for him, and his family's, and his friends', and the enemy's intention to kill him seemed impossible. "But perhaps they may do it!" For more than ten seconds he stood not moving from the spot or realizing the situation. The foremost Frenchman, the one with the hooked nose, was already so close that the expression of his face could be seen. And the excited, alien face of that man, his bayonet hanging down, holding his breath, and running so lightly, frightened Rostov. He seized his pistol and, instead of firing it, flung it at the Frenchman and ran with all his might toward the bushes. He did not now run with the feeling of doubt and conflict with which he had trodden the Enns bridge, but with the feeling of a hare fleeing from the hounds. One single sentiment, that of fear for his young and happy life, possessed his whole being. Rapidly leaping the furrows, he fled across the field with the impetuosity he used to show at catchplay, now and then turning his good-natured, pale, young face to look back. A shudder of terror went through him: "No, better not look," he thought, but having reached the bushes he glanced round once more. The French had fallen behind, and just as he looked round the first man changed his run to a walk and, turning, shouted something loudly to a comrade farther back. Rostov paused. "No, there's some mistake," thought he. "They can't have wanted to kill me." But at the same time, his left arm felt as heavy as if a seventy-pound weight were tied to it. He could run no more. The Frenchman also stopped and took aim. Rostov closed his eyes and stooped down. One bullet and then another whistled past him. He mustered his last remaining strength, took hold of his left hand with his right, and reached the bushes. Behind these were some Russian sharpshooters. CHAPTER XX The infantry regiments that had been caught unawares in the outskirts of the wood ran out of it, the different companies getting mixed, and retreated as a disorderly crowd. One soldier, in his fear, uttered the senseless cry, "Cut off!" that is so terrible in battle, and that word infected the whole crowd with a feeling of panic. "Surrounded! Cut off? We're lost!" shouted the fugitives. The moment he heard the firing and the cry from behind, the general realized that something dreadful had happened to his regiment, and the thought that he, an exemplary officer of many years' service who had never been to blame, might be held responsible at headquarters for negligence or inefficiency so staggered him that, forgetting the recalcitrant cavalry colonel, his own dignity as a general, and above all quite forgetting the danger and all regard for self-preservation, he clutched the crupper of his saddle and, spurring his horse, galloped to the regiment under a hail of bullets which fell around, but fortunately missed him. His one desire was to know what was happening and at any cost correct, or remedy, the mistake if he had made one, so that he, an exemplary officer of twenty-two years' service, who had never been censured, should not be held to blame. Having galloped safely through the French, he reached a field behind the copse across which our men, regardless of orders, were running and descending the valley. That moment of moral hesitation which decides the fate of battles had arrived. Would this disorderly crowd of soldiers attend to the voice of their commander, or would they, disregarding him, continue their flight? Despite his desperate shouts that used to seem so terrible to the soldiers, despite his furious purple countenance distorted out of all likeness to his former self, and the flourishing of his saber, the soldiers all continued to run, talking, firing into the air, and disobeying orders. The moral hesitation which decided the fate of battles was evidently culminating in a panic. The general had a fit of coughing as a result of shouting and of the powder smoke and stopped in despair. Everything seemed lost. But at that moment the French who were attacking, suddenly and without any apparent reason, ran back and disappeared from the outskirts, and Russian sharpshooters showed themselves in the copse. It was Timokhin's company, which alone had maintained its order in the wood and, having lain in ambush in a ditch, now attacked the French unexpectedly. Timokhin, armed only with a sword, had rushed at the enemy with such a desperate cry and such mad, drunken determination that, taken by surprise, the French had thrown down their muskets and run. Dolokhov, running beside Timokhin, killed a Frenchman at close quarters and was the first to seize the surrendering French officer by his collar. Our fugitives returned, the battalions re-formed, and the French who had nearly cut our left flank in half were for the moment repulsed. Our reserve units were able to join up, and the fight was at an end. The regimental commander and Major Ekonomov had stopped beside a bridge, letting the retreating companies pass by them, when a soldier came up and took hold of the commander's stirrup, almost leaning against him. The man was wearing a bluish coat of broadcloth, he had no knapsack or cap, his head was bandaged, and over his shoulder a French munition pouch was slung. He had an officer's sword in his hand. The soldier was pale, his blue eyes looked impudently into the commander's face, and his lips were smiling. Though the commander was occupied in giving instructions to Major Ekonomov, he could not help taking notice of the soldier. "Your excellency, here are two trophies," said Dolokhov, pointing to the French sword and pouch. "I have taken an officer prisoner. I stopped the company." Dolokhov breathed heavily from weariness and spoke in abrupt sentences. "The whole company can bear witness. I beg you will remember this, your excellency!" "All right, all right," replied the commander, and turned to Major Ekonomov. But Dolokhov did not go away; he untied the handkerchief around his head, pulled it off, and showed the blood congealed on his hair. "A bayonet wound. I remained at the front. Remember, your excellency!" Tushin's battery had been forgotten and only at the very end of the action did Prince Bagration, still hearing the cannonade in the center, send his orderly staff officer, and later Prince Andrew also, to order the battery to retire as quickly as possible. When the supports attached to Tushin's battery had been moved away in the middle of the action by someone's order, the battery had continued firing and was only not captured by the French because the enemy could not surmise that anyone could have the effrontery to continue firing from four quite undefended guns. On the contrary, the energetic action of that battery led the French to suppose that here--in the center- the main Russian forces were concentrated. Twice they had attempted to attack this point, but on each occasion had been driven back by grapeshot from the four isolated guns on the hillock. Soon after Prince Bagration had left him, Tushin had succeeded in setting fire to Schon Grabern. "Look at them scurrying! It's burning! Just see the smoke! Fine! Grand! Look at the smoke, the smoke!" exclaimed the artillerymen, brightening up. All the guns, without waiting for orders, were being fired in the direction of the conflagration. As if urging each other on, the soldiers cried at each shot: "Fine! That's good! Look at it... Grand!" The fire, fanned by the breeze, was rapidly spreading. The French columns that had advanced beyond the village went back; but as though in revenge for this failure, the enemy placed ten guns to the right of the village and began firing them at Tushin's battery. In their childlike glee, aroused by the fire and their luck in successfully cannonading the French, our artillerymen only noticed this battery when two balls, and then four more, fell among our guns, one knocking over two horses and another tearing off a munition-wagon driver's leg. Their spirits once roused were, however, not diminished, but only changed character. The horses were replaced by others from a reserve gun carriage, the wounded were carried away, and the four guns were turned against the ten-gun battery. Tushin's companion officer had been killed at the beginning of the engagement and within an hour seventeen of the forty men of the guns' crews had been disabled, but the artillerymen were still as merry and lively as ever. Twice they noticed the French appearing below them, and then they fired grapeshot at them. Little Tushin, moving feebly and awkwardly, kept telling his orderly to "refill my pipe for that one!" and then, scattering sparks from it, ran forward shading his eyes with his small hand to look at the French. "Smack at 'em, lads!" he kept saying, seizing the guns by the wheels and working the screws himself. Amid the smoke, deafened by the incessant reports which always made him jump, Tushin not taking his pipe from his mouth ran from gun to gun, now aiming, now counting the charges, now giving orders about replacing dead or wounded horses and harnessing fresh ones, and shouting in his feeble voice, so high pitched and irresolute. His face grew more and more animated. Only when a man was killed or wounded did he frown and turn away from the sight, shouting angrily at the men who, as is always the case, hesitated about lifting the injured or dead. The soldiers, for the most part handsome fellows and, as is always the case in an artillery company, a head and shoulders taller and twice as broad as their officer--all looked at their commander like children in an embarrassing situation, and the expression on his face was invariably reflected on theirs. Owing to the terrible uproar and the necessity for concentration and activity, Tushin did not experience the slightest unpleasant sense of fear, and the thought that he might be killed or badly wounded never occurred to him. On the contrary, he became more and more elated. It seemed to him that it was a very long time ago, almost a day, since he had first seen the enemy and fired the first shot, and that the corner of the field he stood on was well-known and familiar ground. Though he thought of everything, considered everything, and did everything the best of officers could do in his position, he was in a state akin to feverish delirium or drunkenness. From the deafening sounds of his own guns around him, the whistle and thud of the enemy's cannon balls, from the flushed and perspiring faces of the crew bustling round the guns, from the sight of the blood of men and horses, from the little puffs of smoke on the enemy's side (always followed by a ball flying past and striking the earth, a man, a gun, a horse), from the sight of all these things a fantastic world of his own had taken possession of his brain and at that moment afforded him pleasure. The enemy's guns were in his fancy not guns but pipes from which occasional puffs were blown by an invisible smoker. "There... he's puffing again," muttered Tushin to himself, as a small cloud rose from the hill and was borne in a streak to the left by the wind. "Now look out for the ball... we'll throw it back." "What do you want, your honor?" asked an artilleryman, standing close by, who heard him muttering. "Nothing... only a shell..." he answered. "Come along, our Matvevna!" he said to himself. "Matvevna"* was the name his fancy gave to the farthest gun of the battery, which was large and of an old pattern. The French swarming round their guns seemed to him like ants. In that world, the handsome drunkard Number One of the second gun's crew was "uncle"; Tushin looked at him more often than at anyone else and took delight in his every movement. The sound of musketry at the foot of the hill, now diminishing, now increasing, seemed like someone's breathing. He listened intently to the ebb and flow of these sounds. *Daughter of Matthew. "Ah! Breathing again, breathing!" he muttered to himself. He imagined himself as an enormously tall, powerful man who was throwing cannon balls at the French with both hands. "Now then, Matvevna, dear old lady, don't let me down!" he was saying as he moved from the gun, when a strange, unfamiliar voice called above his head: "Captain Tushin! Captain!" Tushin turned round in dismay. It was the staff officer who had turned him out of the booth at Grunth. He was shouting in a gasping voice: "Are you mad? You have twice been ordered to retreat, and you..." "Why are they down on me?" thought Tushin, looking in alarm at his superior. "I... don't..." he muttered, holding up two fingers to his cap. "I..." But the staff officer did not finish what he wanted to say. A cannon ball, flying close to him, caused him to duck and bend over his horse. He paused, and just as he was about to say something more, another ball stopped him. He turned his horse and galloped off. "Retire! All to retire!" he shouted from a distance. The soldiers laughed. A moment later, an adjutant arrived with the same order. It was Prince Andrew. The first thing he saw on riding up to the space where Tushin's guns were stationed was an unharnessed horse with a broken leg, that lay screaming piteously beside the harnessed horses. Blood was gushing from its leg as from a spring. Among the limbers lay several dead men. One ball after another passed over as he approached and he felt a nervous shudder run down his spine. But the mere thought of being afraid roused him again. "I cannot be afraid," thought he, and dismounted slowly among the guns. He delivered the order and did not leave the battery. He decided to have the guns removed from their positions and withdrawn in his presence. Together with Tushin, stepping across the bodies and under a terrible fire from the French, he attended to the removal of the guns. "A staff officer was here a minute ago, but skipped off," said an artilleryman to Prince Andrew. "Not like your honor!" Prince Andrew said nothing to Tushin. They were both so busy as to seem not to notice one another. When having limbered up the only two cannon that remained uninjured out of the four, they began moving down the hill (one shattered gun and one unicorn were left behind), Prince Andrew rode up to Tushin. "Well, till we meet again..." he said, holding out his hand to Tushin. "Good-by, my dear fellow," said Tushin. "Dear soul! Good-by, my dear fellow!" and for some unknown reason tears suddenly filled his eyes. CHAPTER XXI The wind had fallen and black clouds, merging with the powder smoke, hung low over the field of battle on the horizon. It was growing dark and the glow of two conflagrations was the more conspicuous. The cannonade was dying down, but the rattle of musketry behind and on the right sounded oftener and nearer. As soon as Tushin with his guns, continually driving round or coming upon wounded men, was out of range of fire and had descended into the dip, he was met by some of the staff, among them the staff officer and Zherkov, who had been twice sent to Tushin's battery but had never reached it. Interrupting one another, they all gave, and transmitted, orders as to how to proceed, reprimanding and reproaching him. Tushin gave no orders, and, silently--fearing to speak because at every word he felt ready to weep without knowing why--rode behind on his artillery nag. Though the orders were to abandon the wounded, many of them dragged themselves after troops and begged for seats on the gun carriages. The jaunty infantry officer who just before the battle had rushed out of Tushin's wattle shed was laid, with a bullet in his stomach, on "Matvevna's" carriage. At the foot of the hill, a pale hussar cadet, supporting one hand with the other, came up to Tushin and asked for a seat. "Captain, for God's sake! I've hurt my arm," he said timidly. "For God's sake... I can't walk. For God's sake!" It was plain that this cadet had already repeatedly asked for a lift and been refused. He asked in a hesitating, piteous voice. "Tell them to give me a seat, for God's sake!" "Give him a seat," said Tushin. "Lay a cloak for him to sit on, lad," he said, addressing his favorite soldier. "And where is the wounded officer?" "He has been set down. He died," replied someone. "Help him up. Sit down, dear fellow, sit down! Spread out the cloak, Antonov." The cadet was Rostov. With one hand he supported the other; he was pale and his jaw trembled, shivering feverishly. He was placed on "Matvevna," the gun from which they had removed the dead officer. The cloak they spread under him was wet with blood which stained his breeches and arm. "What, are you wounded, my lad?" said Tushin, approaching the gun on which Rostov sat. "No, it's a sprain." "Then what is this blood on the gun carriage?" inquired Tushin. "It was the officer, your honor, stained it," answered the artilleryman, wiping away the blood with his coat sleeve, as if apologizing for the state of his gun. It was all that they could do to get the guns up the rise aided by the infantry, and having reached the village of Gruntersdorf they halted. It had grown so dark that one could not distinguish the uniforms ten paces off, and the firing had begun to subside. Suddenly, near by on the right, shouting and firing were again heard. Flashes of shot gleamed in the darkness. This was the last French attack and was met by soldiers who had sheltered in the village houses. They all rushed out of the village again, but Tushin's guns could not move, and the artillerymen, Tushin, and the cadet exchanged silent glances as they awaited their fate. The firing died down and soldiers, talking eagerly, streamed out of a side street. "Not hurt, Petrov?" asked one. "We've given it 'em hot, mate! They won't make another push now," said another. "You couldn't see a thing. How they shot at their own fellows! Nothing could be seen. Pitch-dark, brother! Isn't there something to drink?" The French had been repulsed for the last time. And again and again in the complete darkness Tushin's guns moved forward, surrounded by the humming infantry as by a frame. In the darkness, it seemed as though a gloomy unseen river was flowing always in one direction, humming with whispers and talk and the sound of hoofs and wheels. Amid the general rumble, the groans and voices of the wounded were more distinctly heard than any other sound in the darkness of the night. The gloom that enveloped the army was filled with their groans, which seemed to melt into one with the darkness of the night. After a while the moving mass became agitated, someone rode past on a white horse followed by his suite, and said something in passing: "What did he say? Where to, now? Halt, is it? Did he thank us?" came eager questions from all sides. The whole moving mass began pressing closer together and a report spread that they were ordered to halt: evidently those in front had halted. All remained where they were in the middle of the muddy road. Fires were lighted and the talk became more audible. Captain Tushin, having given orders to his company, sent a soldier to find a dressing station or a doctor for the cadet, and sat down by a bonfire the soldiers had kindled on the road. Rostov, too, dragged himself to the fire. From pain, cold, and damp, a feverish shivering shook his whole body. Drowsiness was irresistibly mastering him, but he kept awake by an excruciating pain in his arm, for which he could find no satisfactory position. He kept closing his eyes and then again looking at the fire, which seemed to him dazzlingly red, and at the feeble, round-shouldered figure of Tushin who was sitting cross-legged like a Turk beside him. Tushin's large, kind, intelligent eyes were fixed with sympathy and commiseration on Rostov, who saw that Tushin with his whole heart wished to help him but could not. From all sides were heard the footsteps and talk of the infantry, who were walking, driving past, and settling down all around. The sound of voices, the tramping feet, the horses' hoofs moving in mud, the crackling of wood fires near and afar, merged into one tremulous rumble. It was no longer, as before, a dark, unseen river flowing through the gloom, but a dark sea swelling and gradually subsiding after a storm. Rostov looked at and listened listlessly to what passed before and around him. An infantryman came to the fire, squatted on his heels, held his hands to the blaze, and turned away his face. "You don't mind your honor?" he asked Tushin. "I've lost my company, your honor. I don't know where... such bad luck!" With the soldier, an infantry officer with a bandaged cheek came up to the bonfire, and addressing Tushin asked him to have the guns moved a trifle to let a wagon go past. After he had gone, two soldiers rushed to the campfire. They were quarreling and fighting desperately, each trying to snatch from the other a boot they were both holding on to. "You picked it up?... I dare say! You're very smart!" one of them shouted hoarsely. Then a thin, pale soldier, his neck bandaged with a bloodstained leg band, came up and in angry tones asked the artillerymen for water. "Must one die like a dog?" said he. Tushin told them to give the man some water. Then a cheerful soldier ran up, begging a little fire for the infantry. "A nice little hot torch for the infantry! Good luck to you, fellow countrymen. Thanks for the fire--we'll return it with interest," said he, carrying away into the darkness a glowing stick. Next came four soldiers, carrying something heavy on a cloak, and passed by the fire. One of them stumbled. "Who the devil has put the logs on the road?" snarled he. "He's dead--why carry him?" said another. "Shut up!" And they disappeared into the darkness with with their load. "Still aching?" Tushin asked Rostov in a whisper. "Yes." "Your honor, you're wanted by the general. He is in the hut here," said a gunner, coming up to Tushin. "Coming, friend." Tushin rose and, buttoning his greatcoat and pulling it straight, walked away from the fire. Not far from the artillery campfire, in a hut that had been prepared for him, Prince Bagration sat at dinner, talking with some commanding officers who had gathered at his quarters. The little old man with the half-closed eyes was there greedily gnawing a mutton bone, and the general who had served blamelessly for twenty-two years, flushed by a glass of vodka and the dinner; and the staff officer with the signet ring, and Zherkov, uneasily glancing at them all, and Prince Andrew, pale, with compressed lips and feverishly glittering eyes. In a corner of the hut stood a standard captured from the French, and the accountant with the naive face was feeling its texture, shaking his head in perplexity--perhaps because the banner really interested him, perhaps because it was hard for him, hungry as he was, to look on at a dinner where there was no place for him. In the next hut there was a French colonel who had been taken prisoner by our dragoons. Our officers were flocking in to look at him. Prince Bagration was thanking the individual commanders and inquiring into details of the action and our losses. The general whose regiment had been inspected at Braunau was informing the prince that as soon as the action began he had withdrawn from the wood, mustered the men who were woodcutting, and, allowing the French to pass him, had made a bayonet charge with two battalions and had broken up the French troops. "When I saw, your excellency, that their first battalion was disorganized, I stopped in the road and thought: 'I'll let them come on and will meet them with the fire of the whole battalion'--and that's what I did." The general had so wished to do this and was so sorry he had not managed to do it that it seemed to him as if it had really happened. Perhaps it might really have been so? Could one possibly make out amid all that confusion what did or did not happen? "By the way, your excellency, I should inform you," he continued- remembering Dolokhov's conversation with Kutuzov and his last interview with the gentleman-ranker--"that Private Dolokhov, who was reduced to the ranks, took a French officer prisoner in my presence and particularly distinguished himself." "I saw the Pavlograd hussars attack there, your excellency," chimed in Zherkov, looking uneasily around. He had not seen the hussars all that day, but had heard about them from an infantry officer. "They broke up two squares, your excellency." Several of those present smiled at Zherkov's words, expecting one of his usual jokes, but noticing that what he was saying redounded to the glory of our arms and of the day's work, they assumed a serious expression, though many of them knew that what he was saying was a lie devoid of any foundation. Prince Bagration turned to the old colonel: "Gentlemen, I thank you all; all arms have behaved heroically: infantry, cavalry, and artillery. How was it that two guns were abandoned in the center?" he inquired, searching with his eyes for someone. (Prince Bagration did not ask about the guns on the left flank; he knew that all the guns there had been abandoned at the very beginning of the action.) "I think I sent you?" he added, turning to the staff officer on duty. "One was damaged," answered the staff officer, "and the other I can't understand. I was there all the time giving orders and had only just left.... It is true that it was hot there," he added, modestly. Someone mentioned that Captain Tushin was bivouacking close to the village and had already been sent for. "Oh, but you were there?" said Prince Bagration, addressing Prince Andrew. "Of course, we only just missed one another," said the staff officer, with a smile to Bolkonski. "I had not the pleasure of seeing you," said Prince Andrew, coldly and abruptly. All were silent. Tushin appeared at the threshold and made his way timidly from behind the backs of the generals. As he stepped past the generals in the crowded hut, feeling embarrassed as he always was by the sight of his superiors, he did not notice the staff of the banner and stumbled over it. Several of those present laughed. "How was it a gun was abandoned?" asked Bagration, frowning, not so much at the captain as at those who were laughing, among whom Zherkov laughed loudest. Only now, when he was confronted by the stern authorities, did his guilt and the disgrace of having lost two guns and yet remaining alive present themselves to Tushin in all their horror. He had been so excited that he had not thought about it until that moment. The officers' laughter confused him still more. He stood before Bagration with his lower jaw trembling and was hardly able to mutter: "I don't know... your excellency... I had no men... your excellency." "You might have taken some from the covering troops." Tushin did not say that there were no covering troops, though that was perfectly true. He was afraid of getting some other officer into trouble, and silently fixed his eyes on Bagration as a schoolboy who has blundered looks at an examiner. The silence lasted some time. Prince Bagration, apparently not wishing to be severe, found nothing to say; the others did not venture to intervene. Prince Andrew looked at Tushin from under his brows and his fingers twitched nervously. "Your excellency!" Prince Andrew broke the silence with his abrupt voice," you were pleased to send me to Captain Tushin's battery. I went there and found two thirds of the men and horses knocked out, two guns smashed, and no supports at all." Prince Bagration and Tushin looked with equal intentness at Bolkonski, who spoke with suppressed agitation. "And, if your excellency will allow me to express my opinion," he continued, "we owe today's success chiefly to the action of that battery and the heroic endurance of Captain Tushin and his company," and without awaiting a reply, Prince Andrew rose and left the table. Prince Bagration looked at Tushin, evidently reluctant to show distrust in Bolkonski's emphatic opinion yet not feeling able fully to credit it, bent his head, and told Tushin that he could go. Prince Andrew went out with him. "Thank you; you saved me, my dear fellow!" said Tushin. Prince Andrew gave him a look, but said nothing and went away. He felt sad and depressed. It was all so strange, so unlike what he had hoped. "Who are they? Why are they here? What do they want? And when will all this end?" thought Rostov, looking at the changing shadows before him. The pain in his arm became more and more intense. Irresistible drowsiness overpowered him, red rings danced before his eyes, and the impression of those voices and faces and a sense of loneliness merged with the physical pain. It was they, these soldiers- wounded and unwounded--it was they who were crushing, weighing down, and twisting the sinews and scorching the flesh of his sprained arm and shoulder. To rid himself of them he closed his eyes. For a moment he dozed, but in that short interval innumerable things appeared to him in a dream: his mother and her large white hand, Sonya's thin little shoulders, Natasha's eyes and laughter, Denisov with his voice and mustache, and Telyanin and all that affair with Telyanin and Bogdanich. That affair was the same thing as this soldier with the harsh voice, and it was that affair and this soldier that were so agonizingly, incessantly pulling and pressing his arm and always dragging it in one direction. He tried to get away from them, but they would not for an instant let his shoulder move a hair's breadth. It would not ache--it would be well--if only they did not pull it, but it was impossible to get rid of them. He opened his eyes and looked up. The black canopy of night hung less than a yard above the glow of the charcoal. Flakes of falling snow were fluttering in that light. Tushin had not returned, the doctor had not come. He was alone now, except for a soldier who was sitting naked at the other side of the fire, warming his thin yellow body. "Nobody wants me!" thought Rostov. "There is no one to help me or pity me. Yet I was once at home, strong, happy, and loved." He sighed and, doing so, groaned involuntarily. "Eh, is anything hurting you?" asked the soldier, shaking his shirt out over the fire, and not waiting for an answer he gave a grunt and added: "What a lot of men have been crippled today--frightful!" Rostov did not listen to the soldier. He looked at the snowflakes fluttering above the fire and remembered a Russian winter at his warm, bright home, his fluffy fur coat, his quickly gliding sleigh, his healthy body, and all the affection and care of his family. "And why did I come here?" he wondered. Next day the French army did not renew their attack, and the remnant of Bagration's detachment was reunited to Kutuzov's army. BOOK THREE: 1805 CHAPTER I Prince Vasili was not a man who deliberately thought out his plans. Still less did he think of injuring anyone for his own advantage. He was merely a man of the world who had got on and to whom getting on had become a habit. Schemes and devices for which he never rightly accounted to himself, but which formed the whole interest of his life, were constantly shaping themselves in his mind, arising from the circumstances and persons he met. Of these plans he had not merely one or two in his head but dozens, some only beginning to form themselves, some approaching achievement, and some in course of disintegration. He did not, for instance, say to himself: "This man now has influence, I must gain his confidence and friendship and through him obtain a special grant." Nor did he say to himself: "Pierre is a rich man, I must entice him to marry my daughter and lend me the forty thousand rubles I need." But when he came across a man of position his instinct immediately told him that this man could be useful, and without any premeditation Prince Vasili took the first opportunity to gain his confidence, flatter him, become intimate with him, and finally make his request. He had Pierre at hand in Moscow and procured for him an appointment as Gentleman of the Bedchamber, which at that time conferred the status of Councilor of State, and insisted on the young man accompanying him to Petersburg and staying at his house. With apparent absent-mindedness, yet with unhesitating assurance that he was doing the right thing, Prince Vasili did everything to get Pierre to marry his daughter. Had he thought out his plans beforehand he could not have been so natural and shown such unaffected familiarity in intercourse with everybody both above and below him in social standing. Something always drew him toward those richer and more powerful than himself and he had rare skill in seizing the most opportune moment for making use of people. Pierre, on unexpectedly becoming Count Bezukhov and a rich man, felt himself after his recent loneliness and freedom from cares so beset and preoccupied that only in bed was he able to be by himself. He had to sign papers, to present himself at government offices, the purpose of which was not clear to him, to question his chief steward, to visit his estate near Moscow, and to receive many people who formerly did not even wish to know of his existence but would now have been offended and grieved had he chosen not to see them. These different people--businessmen, relations, and acquaintances alike--were all disposed to treat the young heir in the most friendly and flattering manner: they were all evidently firmly convinced of Pierre's noble qualities. He was always hearing such words as: "With your remarkable kindness," or, "With your excellent heart," "You are yourself so honorable Count," or, "Were he as clever as you," and so on, till he began sincerely to believe in his own exceptional kindness and extraordinary intelligence, the more so as in the depth of his heart it had always seemed to him that he really was very kind and intelligent. Even people who had formerly been spiteful toward him and evidently unfriendly now became gentle and affectionate. The angry eldest princess, with the long waist and hair plastered down like a doll's, had come into Pierre's room after the funeral. With drooping eyes and frequent blushes she told him she was very sorry about their past misunderstandings and did not now feel she had a right to ask him for anything, except only for permission, after the blow she had received, to remain for a few weeks longer in the house she so loved and where she had sacrificed so much. She could not refrain from weeping at these words. Touched that this statuesque princess could so change, Pierre took her hand and begged her forgiveness, without knowing what for. From that day the eldest princess quite changed toward Pierre and began knitting a striped scarf for him. "Do this for my sake, mon cher; after all, she had to put up with a great deal from the deceased," said Prince Vasili to him, handing him a deed to sign for the princess' benefit. Prince Vasili had come to the conclusion that it was necessary to throw this bone--a bill for thirty thousand rubles--to the poor princess that it might not occur to her to speak of his share in the affair of the inlaid portfolio. Pierre signed the deed and after that the princess grew still kinder. The younger sisters also became affectionate to him, especially the youngest, the pretty one with the mole, who often made him feel confused by her smiles and her own confusion when meeting him. It seemed so natural to Pierre that everyone should like him, and it would have seemed so unnatural had anyone disliked him, that he could not but believe in the sincerity of those around him. Besides, he had no time to ask himself whether these people were sincere or not. He was always busy and always felt in a state of mild and cheerful intoxication. He felt as though he were the center of some important and general movement; that something was constantly expected of him, that if he did not do it he would grieve and disappoint many people, but if he did this and that, all would be well; and he did what was demanded of him, but still that happy result always remained in the future. More than anyone else, Prince Vasili took possession of Pierre's affairs and of Pierre himself in those early days. From the death of Count Bezukhov he did not let go his hold of the lad. He had the air of a man oppressed by business, weary and suffering, who yet would not, for pity's sake, leave this helpless youth who, after all, was the son of his old friend and the possessor of such enormous wealth, to the caprice of fate and the designs of rogues. During the few days he spent in Moscow after the death of Count Bezukhov, he would call Pierre, or go to him himself, and tell him what ought to be done in a tone of weariness and assurance, as if he were adding every time: "You know I am overwhelmed with business and it is purely out of charity that I trouble myself about you, and you also know quite well that what I propose is the only thing possible." "Well, my dear fellow, tomorrow we are off at last," said Prince Vasili one day, closing his eyes and fingering Pierre's elbow, speaking as if he were saying something which had long since been agreed upon and could not now be altered. "We start tomorrow and I'm giving you a place in my carriage. I am very glad. All our important business here is now settled, and I ought to have been off long ago. Here is something I have received from the chancellor. I asked him for you, and you have been entered in the diplomatic corps and made a Gentleman of the Bedchamber. The diplomatic career now lies open before you." Notwithstanding the tone of wearied assurance with which these words were pronounced, Pierre, who had so long been considering his career, wished to make some suggestion. But Prince Vasili interrupted him in the special deep cooing tone, precluding the possibility of interrupting his speech, which he used in extreme cases when special persuasion was needed. "Mais, mon cher, I did this for my own sake, to satisfy my conscience, and there is nothing to thank me for. No one has ever complained yet of being too much loved; and besides, you are free, you could throw it up tomorrow. But you will see everything for yourself when you get to Petersburg. It is high time for you to get away from these terrible recollections." Prince Vasili sighed. "Yes, yes, my boy. And my valet can go in your carriage. Ah! I was nearly forgetting," he added. "You know, mon cher, your father and I had some accounts to settle, so I have received what was due from the Ryazan estate and will keep it; you won't require it. We'll go into the accounts later." By "what was due from the Ryazan estate" Prince Vasili meant several thousand rubles quitrent received from Pierre's peasants, which the prince had retained for himself. In Petersburg, as in Moscow, Pierre found the same atmosphere of gentleness and affection. He could not refuse the post, or rather the rank (for he did nothing), that Prince Vasili had procured for him, and acquaintances, invitations, and social occupations were so numerous that, even more than in Moscow, he felt a sense of bewilderment, bustle, and continual expectation of some good, always in front of him but never attained. Of his former bachelor acquaintances many were no longer in Petersburg. The Guards had gone to the front; Dolokhov had been reduced to the ranks; Anatole was in the army somewhere in the provinces; Prince Andrew was abroad; so Pierre had not the opportunity to spend his nights as he used to like to spend them, or to open his mind by intimate talks with a friend older than himself and whom he respected. His whole time was taken up with dinners and balls and was spent chiefly at Prince Vasili's house in the company of the stout princess, his wife, and his beautiful daughter Helene. Like the others, Anna Pavlovna Scherer showed Pierre the change of attitude toward him that had taken place in society. Formerly in Anna Pavlovna's presence, Pierre had always felt that what he was saying was out of place, tactless and unsuitable, that remarks which seemed to him clever while they formed in his mind became foolish as soon as he uttered them, while on the contrary Hippolyte's stupidest remarks came out clever and apt. Now everything Pierre said was charmant. Even if Anna Pavlovna did not say so, he could see that she wished to and only refrained out of regard for his modesty. In the beginning of the winter of 1805-6 Pierre received one of Anna Pavlovna's usual pink notes with an invitation to which was added: "You will find the beautiful Helene here, whom it is always delightful to see." When he read that sentence, Pierre felt for the first time that some link which other people recognized had grown up between himself and Helene, and that thought both alarmed him, as if some obligation were being imposed on him which he could not fulfill, and pleased him as an entertaining supposition. Anna Pavlovna's "At Home" was like the former one, only the novelty she offered her guests this time was not Mortemart, but a diplomatist fresh from Berlin with the very latest details of the Emperor Alexander's visit to Potsdam, and of how the two august friends had pledged themselves in an indissoluble alliance to uphold the cause of justice against the enemy of the human race. Anna Pavlovna received Pierre with a shade of melancholy, evidently relating to the young man's recent loss by the death of Count Bezukhov (everyone constantly considered it a duty to assure Pierre that he was greatly afflicted by the death of the father he had hardly known), and her melancholy was just like the august melancholy she showed at the mention of her most august Majesty the Empress Marya Fedorovna. Pierre felt flattered by this. Anna Pavlovna arranged the different groups in her drawing room with her habitual skill. The large group, in which were Prince Vasili and the generals, had the benefit of the diplomat. Another group was at the tea table. Pierre wished to join the former, but Anna Pavlovna--who was in the excited condition of a commander on a battlefield to whom thousands of new and brilliant ideas occur which there is hardly time to put in action--seeing Pierre, touched his sleeve with her finger, saying: "Wait a bit, I have something in view for you this evening." (She glanced at Helene and smiled at her.) "My dear Helene, be charitable to my poor aunt who adores you. Go and keep her company for ten minutes. And that it will not be too dull, here is the dear count who will not refuse to accompany you." The beauty went to the aunt, but Anna Pavlovna detained Pierre, looking as if she had to give some final necessary instructions. "Isn't she exquisite?" she said to Pierre, pointing to the stately beauty as she glided away. "And how she carries herself! For so young a girl, such tact, such masterly perfection of manner! It comes from her heart. Happy the man who wins her! With her the least worldly of men would occupy a most brilliant position in society. Don't you think so? I only wanted to know your opinion," and Anna Pavlovna let Pierre go. Pierre, in reply, sincerely agreed with her as to Helene's perfection of manner. If he ever thought of Helene, it was just of her beauty and her remarkable skill in appearing silently dignified in society. The old aunt received the two young people in her corner, but seemed desirous of hiding her adoration for Helene and inclined rather to show her fear of Anna Pavlovna. She looked at her niece, as if inquiring what she was to do with these people. On leaving them, Anna Pavlovna again touched Pierre's sleeve, saying: "I hope you won't say that it is dull in my house again," and she glanced at Helene. Helene smiled, with a look implying that she did not admit the possibility of anyone seeing her without being enchanted. The aunt coughed, swallowed, and said in French that she was very pleased to see Helene, then she turned to Pierre with the same words of welcome and the same look. In the middle of a dull and halting conversation, Helene turned to Pierre with the beautiful bright smile that she gave to everyone. Pierre was so used to that smile, and it had so little meaning for him, that he paid no attention to it. The aunt was just speaking of a collection of snuffboxes that had belonged to Pierre's father, Count Bezukhov, and showed them her own box. Princess Helene asked to see the portrait of the aunt's husband on the box lid. "That is probably the work of Vinesse," said Pierre, mentioning a celebrated miniaturist, and he leaned over the table to take the snuffbox while trying to hear what was being said at the other table. He half rose, meaning to go round, but the aunt handed him the snuffbox, passing it across Helene's back. Helene stooped forward to make room, and looked round with a smile. She was, as always at evening parties, wearing a dress such as was then fashionable, cut very low at front and back. Her bust, which had always seemed like marble to Pierre, was so close to him that his shortsighted eyes could not but perceive the living charm of her neck and shoulders, so near to his lips that he need only have bent his head a little to have touched them. He was conscious of the warmth of her body, the scent of perfume, and the creaking of her corset as she moved. He did not see her marble beauty forming a complete whole with her dress, but all the charm of her body only covered by her garments. And having once seen this he could not help being aware it, just as we cannot renew an illusion we have once seen through. "So you have never noticed before how beautiful I am?" Helene seemed to say. "You had not noticed that I am a woman? Yes, I am a woman who may belong to anyone--to you too," said her glance. And at that moment Pierre felt that Helene not only could, but must, be his wife, and that it could not be otherwise. He knew this at that moment as surely as if he had been standing at the altar with her. How and when this would be he did not know, he did not even know if it would be a good thing (he even felt, he knew not why, that it would be a bad thing), but he knew it would happen. Pierre dropped his eyes, lifted them again, and wished once more to see her as a distant beauty far removed from him, as he had seen her every day until then, but he could no longer do it. He could not, any more than a man who has been looking at a tuft of steppe grass through the mist and taking it for a tree can again take it for a tree after he has once recognized it to be a tuft of grass. She was terribly close to him. She already had power over him, and between them there was no longer any barrier except the barrier of his own will. "Well, I will leave you in your little corner," came Anna Pavlovna's voice, "I see you are all right there." And Pierre, anxiously trying to remember whether he had done anything reprehensible, looked round with a blush. It seemed to him that everyone knew what had happened to him as he knew it himself. A little later when he went up to the large circle, Anna Pavlovna said to him: "I hear you are refitting your Petersburg house?" This was true. The architect had told him that it was necessary, and Pierre, without knowing why, was having his enormous Petersburg house done up. "That's a good thing, but don't move from Prince Vasili's. It is good to have a friend like the prince," she said, smiling at Prince Vasili. "I know something about that. Don't I? And you are still so young. You need advice. Don't be angry with me for exercising an old woman's privilege." She paused, as women always do, expecting something after they have mentioned their age. "If you marry it will be a different thing," she continued, uniting them both in one glance. Pierre did not look at Helene nor she at him. But she was just as terribly close to him. He muttered something and colored. When he got home he could not sleep for a long time for thinking of what had happened. What had happened? Nothing. He had merely understood that the woman he had known as a child, of whom when her beauty was mentioned he had said absent-mindedly: "Yes, she's good looking," he had understood that this woman might belong to him. "But she's stupid. I have myself said she is stupid," he thought. "There is something nasty, something wrong, in the feeling she excites in me. I have been told that her brother Anatole was in love with her and she with him, that there was quite a scandal and that that's why he was sent away. Hippolyte is her brother... Prince Vasili is her father... It's bad...." he reflected, but while he was thinking this (the reflection was still incomplete), he caught himself smiling and was conscious that another line of thought had sprung up, and while thinking of her worthlessness he was also dreaming of how she would be his wife, how she would love him become quite different, and how all he had thought and heard of her might be false. And he again saw her not as the daughter of Prince Vasili, but visualized her whole body only veiled by its gray dress. "But no! Why did this thought never occur to me before?" and again he told himself that it was impossible, that there would be something unnatural, and as it seemed to him dishonorable, in this marriage. He recalled her former words and looks and the words and looks of those who had seen them together. He recalled Anna Pavlovna's words and looks when she spoke to him about his house, recalled thousands of such hints from Prince Vasili and others, and was seized by terror lest he had already, in some way, bound himself to do something that was evidently wrong and that he ought not to do. But at the very time he was expressing this conviction to himself, in another part of his mind her image rose in all its womanly beauty. CHAPTER II In November, 1805, Prince Vasili had to go on a tour of inspection in four different provinces. He had arranged this for himself so as to visit his neglected estates at the same time and pick up his son Anatole where his regiment was stationed, and take him to visit Prince Nicholas Bolkonski in order to arrange a match for him with the daughter of that rich old man. But before leaving home and undertaking these new affairs, Prince Vasili had to settle matters with Pierre, who, it is true, had latterly spent whole days at home, that is, in Prince Vasili's house where he was staying, and had been absurd, excited, and foolish in Helene's presence (as a lover should be), but had not yet proposed to her. "This is all very fine, but things must be settled," said Prince Vasili to himself, with a sorrowful sigh, one morning, feeling that Pierre who was under such obligations to him ("But never mind that") was not behaving very well in this matter. "Youth, frivolity... well, God be with him," thought he, relishing his own goodness of heart, "but it must be brought to a head. The day after tomorrow will be Lelya's name day. I will invite two or three people, and if he does not understand what he ought to do then it will be my affair- yes, my affair. I am her father." Six weeks after Anna Pavlovna's "At Home" and after the sleepless night when he had decided that to marry Helene would be a calamity and that he ought to avoid her and go away, Pierre, despite that decision, had not left Prince Vasili's and felt with terror that in people's eyes he was every day more and more connected with her, that it was impossible for him to return to his former conception of her, that he could not break away from her, and that though it would be a terrible thing he would have to unite his fate with hers. He might perhaps have been able to free himself but that Prince Vasili (who had rarely before given receptions) now hardly let a day go by without having an evening party at which Pierre had to be present unless he wished to spoil the general pleasure and disappoint everyone's expectation. Prince Vasili, in the rare moments when he was at home, would take Pierre's hand in passing and draw it downwards, or absent-mindedly hold out his wrinkled, clean-shaven cheek for Pierre to kiss and would say: "Till tomorrow," or, "Be in to dinner or I shall not see you," or, "I am staying in for your sake," and so on. And though Prince Vasili, when he stayed in (as he said) for Pierre's sake, hardly exchanged a couple of words with him, Pierre felt unable to disappoint him. Every day he said to himself one and the same thing: "It is time I understood her and made up my mind what she really is. Was I mistaken before, or am I mistaken now? No, she is not stupid, she is an excellent girl," he sometimes said to himself "she never makes a mistake, never says anything stupid. She says little, but what she does say is always clear and simple, so she is not stupid. She never was abashed and is not abashed now, so she cannot be a bad woman!" He had often begun to make reflections or think aloud in her company, and she had always answered him either by a brief but appropriate remark--showing that it did not interest her--or by a silent look and smile which more palpably than anything else showed Pierre her superiority. She was right in regarding all arguments as nonsense in comparison with that smile. She always addressed him with a radiantly confiding smile meant for him alone, in which there was something more significant than in the general smile that usually brightened her face. Pierre knew that everyone was waiting for him to say a word and cross a certain line, and he knew that sooner or later he would step across it, but an incomprehensible terror seized him at the thought of that dreadful step. A thousand times during that month and a half while he felt himself drawn nearer and nearer to that dreadful abyss, Pierre said to himself: "What am I doing? I need resolution. Can it be that I have none?" He wished to take a decision, but felt with dismay that in this matter he lacked that strength of will which he had known in himself and really possessed. Pierre was one of those who are only strong when they feel themselves quite innocent, and since that day when he was overpowered by a feeling of desire while stooping over the snuffbox at Anna Pavlovna's, an unacknowledged sense of the guilt of that desire paralyzed his will. On Helene's name day, a small party of just their own people--as his wife said--met for supper at Prince Vasili's. All these friends and relations had been given to understand that the fate of the young girl would be decided that evening. The visitors were seated at supper. Princess Kuragina, a portly imposing woman who had once been handsome, was sitting at the head of the table. On either side of her sat the more important guests--an old general and his wife, and Anna Pavlovna Scherer. At the other end sat the younger and less important guests, and there too sat the members of the family, and Pierre and Helene, side by side. Prince Vasili was not having any supper: he went round the table in a merry mood, sitting down now by one, now by another, of the guests. To each of them he made some careless and agreeable remark except to Pierre and Helene, whose presence he seemed not to notice. He enlivened the whole party. The wax candles burned brightly, the silver and crystal gleamed, so did the ladies' toilets and the gold and silver of the men's epaulets; servants in scarlet liveries moved round the table, the clatter of plates, knives, and glasses mingled with the animated hum of several conversations. At one end of the table, the old chamberlain was heard assuring an old baroness that he loved her passionately, at which she laughed; at the other could be heard the story of the misfortunes of some Mary Viktorovna or other. At the center of the table, Prince Vasili attracted everybody's attention. With a facetious smile on his face, he was telling the ladies about last Wednesday's meeting of the Imperial Council, at which Sergey Kuzmich Vyazmitinov, the new military governor general of Petersburg, had received and read the then famous rescript of the Emperor Alexander from the army to Sergey Kuzmich, in which the Emperor said that he was receiving from all sides declarations of the people's loyalty, that the declaration from Petersburg gave him particular pleasure, and that he was proud to be at the head of such a nation and would endeavor to be worthy of it. This rescript began with the words: "Sergey Kuzmich, From all sides reports reach me," etc. "Well, and so he never got farther than: 'Sergey Kuzmich'?" asked one of the ladies. "Exactly, not a hair's breadth farther," answered Prince Vasili, laughing, "'Sergey Kuzmich... From all sides... From all sides... Sergey Kuzmich...' Poor Vyazmitinov could not get any farther! He began the rescript again and again, but as soon as he uttered 'Sergey' he sobbed, 'Kuz-mi-ch,' tears, and 'From all sides' was smothered in sobs and he could get no farther. And again his handkerchief, and again: 'Sergey Kuzmich, From all sides,'... and tears, till at last somebody else was asked to read it." "Kuzmich... From all sides... and then tears," someone repeated laughing. "Don't be unkind," cried Anna Pavlovna from her end of the table holding up a threatening finger. "He is such a worthy and excellent man, our dear Vyazmitinov...." Everybody laughed a great deal. At the head of the table, where the honored guests sat, everyone seemed to be in high spirits and under the influence of a variety of exciting sensations. Only Pierre and Helene sat silently side by side almost at the bottom of the table, a suppressed smile brightening both their faces, a smile that had nothing to do with Sergey Kuzmich--a smile of bashfulness at their own feelings. But much as all the rest laughed, talked, and joked, much as they enjoyed their Rhine wine, saute, and ices, and however they avoided looking at the young couple, and heedless and unobservant as they seemed of them, one could feel by the occasional glances they gave that the story about Sergey Kuzmich, the laughter, and the food were all a pretense, and that the whole attention of that company was directed to--Pierre and Helene. Prince Vasili mimicked the sobbing of Sergey Kuzmich and at the same time his eyes glanced toward his daughter, and while he laughed the expression on his face clearly said: "Yes... it's getting on, it will all be settled today." Anna Pavlovna threatened him on behalf of "our dear Vyazmitinov," and in her eyes, which, for an instant, glanced at Pierre, Prince Vasili read a congratulation on his future son-in-law and on his daughter's happiness. The old princess sighed sadly as she offered some wine to the old lady next to her and glanced angrily at her daughter, and her sigh seemed to say: "Yes, there's nothing left for you and me but to sip sweet wine, my dear, now that the time has come for these young ones to be thus boldly, provocatively happy." "And what nonsense all this is that I am saying!" thought a diplomatist, glancing at the happy faces of the lovers. "That's happiness!" Into the insignificant, trifling, and artificial interests uniting that society had entered the simple feeling of the attraction of a healthy and handsome young man and woman for one another. And this human feeling dominated everything else and soared above all their affected chatter. Jests fell flat, news was not interesting, and the animation was evidently forced. Not only the guests but even the footmen waiting at table seemed to feel this, and they forgot their duties as they looked at the beautiful Helene with her radiant face and at the red, broad, and happy though uneasy face of Pierre. It seemed as if the very light of the candles was focused on those two happy faces alone. Pierre felt that he was the center of it all, and this both pleased and embarrassed him. He was like a man entirely absorbed in some occupation. He did not see, hear, or understand anything clearly. Only now and then detached ideas and impressions from the world of reality shot unexpectedly through his mind. "So it is all finished!" he thought. "And how has it all happened? How quickly! Now I know that not because of her alone, nor of myself alone, but because of everyone, it must inevitably come about. They are all expecting it, they are so sure that it will happen that I cannot, I cannot, disappoint them. But how will it be? I do not know, but it will certainly happen!" thought Pierre, glancing at those dazzling shoulders close to his eyes. Or he would suddenly feel ashamed of he knew not what. He felt it awkward to attract everyone's attention and to be considered a lucky man and, with his plain face, to be looked on as a sort of Paris possessed of a Helen. "But no doubt it always is and must be so!" he consoled himself. "And besides, what have I done to bring it about? How did it begin? I traveled from Moscow with Prince Vasili. Then there was nothing. So why should I not stay at his house? Then I played cards with her and picked up her reticule and drove out with her. How did it begin, when did it all come about?" And here he was sitting by her side as her betrothed, seeing, hearing, feeling her nearness, her breathing, her movements, her beauty. Then it would suddenly seem to him that it was not she but he was so unusually beautiful, and that that was why they all looked so at him, and flattered by this general admiration he would expand his chest, raise his head, and rejoice at his good fortune. Suddenly he heard a familiar voice repeating something to him a second time. But Pierre was so absorbed that he did not understand what was said. "I am asking you when you last heard from Bolkonski," repeated Prince Vasili a third time. "How absent-minded you are, my dear fellow." Prince Vasili smiled, and Pierre noticed that everyone was smiling at him and Helene. "Well, what of it, if you all know it?" thought Pierre. "What of it? It's the truth!" and he himself smiled his gentle childlike smile, and Helene smiled too. "When did you get the letter? Was it from Olmutz?" repeated Prince Vasili, who pretended to want to know this in order to settle a dispute. "How can one talk or think of such trifles?" thought Pierre. "Yes, from Olmutz," he answered, with a sigh. After supper Pierre with his partner followed the others into the drawing room. The guests began to disperse, some without taking leave of Helene. Some, as if unwilling to distract her from an important occupation, came up to her for a moment and made haste to go away, refusing to let her see them off. The diplomatist preserved a mournful silence as he left the drawing room. He pictured the vanity of his diplomatic career in comparison with Pierre's happiness. The old general grumbled at his wife when she asked how his leg was. "Oh, the old fool," he thought. "That Princess Helene will be beautiful still when she's fifty." "I think I may congratulate you," whispered Anna Pavlovna to the old princess, kissing her soundly. "If I hadn't this headache I'd have stayed longer." The old princess did not reply, she was tormented by jealousy of her daughter's happiness. While the guests were taking their leave Pierre remained for a long time alone with Helene in the little drawing room where they were sitting. He had often before, during the last six weeks, remained alone with her, but had never spoken to her of love. Now he felt that it was inevitable, but he could not make up his mind to take the final step. He felt ashamed; he felt that he was occupying someone else's place here beside Helene. "This happiness is not for you," some inner voice whispered to him. "This happiness is for those who have not in them what there is in you." But, as he had to say something, he began by asking her whether she was satisfied with the party. She replied in her usual simple manner that this name day of hers had been one of the pleasantest she had ever had. Some of the nearest relatives had not yet left. They were sitting in the large drawing room. Prince Vasili came up to Pierre with languid footsteps. Pierre rose and said it was getting late. Prince Vasili gave him a look of stern inquiry, as though what Pierre had just said was so strange that one could not take it in. But then the expression of severity changed, and he drew Pierre's hand downwards, made him sit down, and smiled affectionately. "Well, Lelya?" he asked, turning instantly to his daughter and addressing her with the careless tone of habitual tenderness natural to parents who have petted their children from babyhood, but which Prince Vasili had only acquired by imitating other parents. And he again turned to Pierre. "Sergey Kuzmich--From all sides-" he said, unbuttoning the top button of his waistcoat. Pierre smiled, but his smile showed that he knew it was not the story about Sergey Kuzmich that interested Prince Vasili just then, and Prince Vasili saw that Pierre knew this. He suddenly muttered something and went away. It seemed to Pierre that even the prince was disconcerted. The sight of the discomposure of that old man of the world touched Pierre: he looked at Helene and she too seemed disconcerted, and her look seemed to say: "Well, it is your own fault." "The step must be taken but I cannot, I cannot!" thought Pierre, and he again began speaking about indifferent matters, about Sergey Kuzmich, asking what the point of the story was as he had not heard it properly. Helene answered with a smile that she too had missed it. When Prince Vasili returned to the drawing room, the princess, his wife, was talking in low tones to the elderly lady about Pierre. "Of course, it is a very brilliant match, but happiness, my dear..." "Marriages are made in heaven," replied the elderly lady. Prince Vasili passed by, seeming not to hear the ladies, and sat down on a sofa in a far corner of the room. He closed his eyes and seemed to be dozing. His head sank forward and then he roused himself. "Aline," he said to his wife, "go and see what they are about." The princess went up to the door, passed by it with a dignified and indifferent air, and glanced into the little drawing room. Pierre and Helene still sat talking just as before. "Still the same," she said to her husband. Prince Vasili frowned, twisting his mouth, his cheeks quivered and his face assumed the coarse, unpleasant expression peculiar to him. Shaking himself, he rose, threw back his head, and with resolute steps went past the ladies into the little drawing room. With quick steps he went joyfully up to Pierre. His face was so unusually triumphant that Pierre rose in alarm on seeing it. "Thank God!" said Prince Vasili. "My wife has told me everything!" (He put one arm around Pierre and the other around his daughter.)--"My dear boy... Lelya... I am very pleased." (His voice trembled.) "I loved your father... and she will make you a good wife... God bless you!..." He embraced his daughter, and then again Pierre, and kissed him with his malodorous mouth. Tears actually moistened his cheeks. "Princess, come here!" he shouted. The old princess came in and also wept. The elderly lady was using her handkerchief too. Pierre was kissed, and he kissed the beautiful Helene's hand several times. After a while they were left alone again. "All this had to be and could not be otherwise," thought Pierre, "so it is useless to ask whether it is good or bad. It is good because it's definite and one is rid of the old tormenting doubt." Pierre held the hand of his betrothed in silence, looking at her beautiful bosom as it rose and fell. "Helene!" he said aloud and paused. "Something special is always said in such cases," he thought, but could not remember what it was that people say. He looked at her face. She drew nearer to him. Her face flushed. "Oh, take those off... those..." she said, pointing to his spectacles. Pierre took them off, and his eyes, besides the strange look eyes have from which spectacles have just been removed, had also a frightened and inquiring look. He was about to stoop over her hand and kiss it, but with a rapid, almost brutal movement of her head, she intercepted his lips and met them with her own. Her face struck Pierre, by its altered, unpleasantly excited expression. "It is too late now, it's done; besides I love her," thought Pierre. "Je vous aime!"* he said, remembering what has to be said at such moments: but his words sounded so weak that he felt ashamed of himself. *"I love you." Six weeks later he was married, and settled in Count Bezukhov's large, newly furnished Petersburg house, the happy possessor, as people said, of a wife who was a celebrated beauty and of millions of money. CHAPTER III Old Prince Nicholas Bolkonski received a letter from Prince Vasili in November, 1805, announcing that he and his son would be paying him a visit. "I am starting on a journey of inspection, and of course I shall think nothing of an extra seventy miles to come and see you at the same time, my honored benefactor," wrote Prince Vasili. "My son Anatole is accompanying me on his way to the army, so I hope you will allow him personally to express the deep respect that, emulating his father, he feels for you." "It seems that there will be no need to bring Mary out, suitors are coming to us of their own accord," incautiously remarked the little princess on hearing the news. Prince Nicholas frowned, but said nothing. A fortnight after the letter Prince Vasili's servants came one evening in advance of him, and he and his son arrived next day. Old Bolkonski had always had a poor opinion of Prince Vasili's character, but more so recently, since in the new reigns of Paul and Alexander Prince Vasili had risen to high position and honors. And now, from the hints contained in his letter and given by the little princess, he saw which way the wind was blowing, and his low opinion changed into a feeling of contemptuous ill will. He snorted whenever he mentioned him. On the day of Prince Vasili's arrival, Prince Bolkonski was particularly discontented and out of temper. Whether he was in a bad temper because Prince Vasili was coming, or whether his being in a bad temper made him specially annoyed at Prince Vasili's visit, he was in a bad temper, and in the morning Tikhon had already advised the architect not to go to the prince with his report. "Do you hear how he's walking?" said Tikhon, drawing the architect's attention to the sound of the prince's footsteps. "Stepping flat on his heels--we know what that means...." However, at nine o'clock the prince, in his velvet coat with a sable collar and cap, went out for his usual walk. It had snowed the day before and the path to the hothouse, along which the prince was in the habit of walking, had been swept: the marks of the broom were still visible in the snow and a shovel had been left sticking in one of the soft snowbanks that bordered both sides of the path. The prince went through the conservatories, the serfs' quarters, and the outbuildings, frowning and silent. "Can a sleigh pass?" he asked his overseer, a venerable man, resembling his master in manners and looks, who was accompanying him back to the house. "The snow is deep. I am having the avenue swept, your honor." The prince bowed his head and went up to the porch. "God be thanked," thought the overseer, "the storm has blown over!" "It would have been hard to drive up, your honor," he added. "I heard, your honor, that a minister is coming to visit your honor." The prince turned round to the overseer and fixed his eyes on him, frowning. "What? A minister? What minister? Who gave orders?" he said in his shrill, harsh voice. "The road is not swept for the princess my daughter, but for a minister! For me, there are no ministers!" "Your honor, I thought..." "You thought!" shouted the prince, his words coming more and more rapidly and indistinctly. "You thought!... Rascals! Blackgaurds!... I'll teach you to think!" and lifting his stick he swung it and would have hit Alpatych, the overseer, had not the latter instinctively avoided the blow. "Thought... Blackguards..." shouted the prince rapidly. But although Alpatych, frightened at his own temerity in avoiding the stroke, came up to the prince, bowing his bald head resignedly before him, or perhaps for that very reason, the prince, though he continued to shout: "Blackgaurds!... Throw the snow back on the road!" did not lift his stick again but hurried into the house. Before dinner, Princess Mary and Mademoiselle Bourienne, who knew that the prince was in a bad humor, stood awaiting him; Mademoiselle Bourienne with a radiant face that said: "I know nothing, I am the same as usual," and Princess Mary pale, frightened, and with downcast eyes. What she found hardest to bear was to know that on such occasions she ought to behave like Mademoiselle Bourienne, but could not. She thought: "If I seem not to notice he will think that I do not sympathize with him; if I seem sad and out of spirits myself, he will say (as he has done before) that I'm in the dumps." The prince looked at his daughter's frightened face and snorted. "Fool... or dummy!" he muttered. "And the other one is not here. They've been telling tales," he thought--referring to the little princess who was not in the dining room. "Where is the princess?" he asked. "Hiding?" "She is not very well," answered Mademoiselle Bourienne with a bright smile, "so she won't come down. It is natural in her state." "Hm! Hm!" muttered the prince, sitting down. His plate seemed to him not quite clean, and pointing to a spot he flung it away. Tikhon caught it and handed it to a footman. The little princess was not unwell, but had such an overpowering fear of the prince that, hearing he was in a bad humor, she had decided not to appear. "I am afraid for the baby," she said to Mademoiselle Bourienne: "Heaven knows what a fright might do." In general at Bald Hills the little princess lived in constant fear, and with a sense of antipathy to the old prince which she did not realize because the fear was so much the stronger feeling. The prince reciprocated this antipathy, but it was overpowered by his contempt for her. When the little princess had grown accustomed to life at Bald Hills, she took a special fancy to Mademoiselle Bourienne, spent whole days with her, asked her to sleep in her room, and often talked with her about the old prince and criticized him. "So we are to have visitors, mon prince?" remarked Mademoiselle Bourienne, unfolding her white napkin with her rosy fingers. "His Excellency Prince Vasili Kuragin and his son, I understand?" she said inquiringly. "Hm!--his excellency is a puppy.... I got him his appointment in the service," said the prince disdainfully. "Why his son is coming I don't understand. Perhaps Princess Elizabeth and Princess Mary know. I don't want him." (He looked at his blushing daughter.) "Are you unwell today? Eh? Afraid of the 'minister' as that idiot Alpatych called him this morning?" "No, mon pere." Though Mademoiselle Bourienne had been so unsuccessful in her choice of a subject, she did not stop talking, but chattered about the conservatories and the beauty of a flower that had just opened, and after the soup the prince became more genial. After dinner, he went to see his daughter-in-law. The little princess was sitting at a small table, chattering with Masha, her maid. She grew pale on seeing her father-in-law. She was much altered. She was now plain rather than pretty. Her cheeks had sunk, her lip was drawn up, and her eyes drawn down. "Yes, I feel a kind of oppression," she said in reply to the prince's question as to how she felt. "Do you want anything?" "No, merci, mon pere." "Well, all right, all right." He left the room and went to the waiting room where Alpatych stood with bowed head. "Has the snow been shoveled back?" "Yes, your excellency. Forgive me for heaven's sake... It was only my stupidity." "All right, all right," interrupted the prince, and laughing his unnatural way, he stretched out his hand for Alpatych to kiss, and then proceeded to his study. Prince Vasili arrived that evening. He was met in the avenue by coachmen and footmen, who, with loud shouts, dragged his sleighs up to one of the lodges over the road purposely laden with snow. Prince Vasili and Anatole had separate rooms assigned to them. Anatole, having taken off his overcoat, sat with arms akimbo before a table on a corner of which he smilingly and absent-mindedly fixed his large and handsome eyes. He regarded his whole life as a continual round of amusement which someone for some reason had to provide for him. And he looked on this visit to a churlish old man and a rich and ugly heiress in the same way. All this might, he thought, turn out very well and amusingly. "And why not marry her if she really has so much money? That never does any harm," thought Anatole. He shaved and scented himself with the care and elegance which had become habitual to him and, his handsome head held high, entered his father's room with the good-humored and victorious air natural to him. Prince Vasili's two valets were busy dressing him, and he looked round with much animation and cheerfully nodded to his son as the latter entered, as if to say: "Yes, that's how I want you to look." "I say, Father, joking apart, is she very hideous?" Anatole asked, as if continuing a conversation the subject of which had often been mentioned during the journey. "Enough! What nonsense! Above all, try to be respectful and cautious with the old prince." "If he starts a row I'll go away," said Prince Anatole. "I can't bear those old men! Eh?" "Remember, for you everything depends on this." In the meantime, not only was it known in the maidservants' rooms that the minister and his son had arrived, but the appearance of both had been minutely described. Princess Mary was sitting alone in her room, vainly trying to master her agitation. "Why did they write, why did Lise tell me about it? It can never happen!" she said, looking at herself in the glass. "How shall I enter the drawing room? Even if I like him I can't now be myself with him." The mere thought of her father's look filled her with terror. The little princess and Mademoiselle Bourienne had already received from Masha, the lady's maid, the necessary report of how handsome the minister's son was, with his rosy cheeks and dark eyebrows, and with what difficulty the father had dragged his legs upstairs while the son had followed him like an eagle, three steps at a time. Having received this information, the little princess and Mademoiselle Bourienne, whose chattering voices had reached her from the corridor, went into Princess Mary's room. "You know they've come, Marie?" said the little princess, waddling in, and sinking heavily into an armchair. She was no longer in the loose gown she generally wore in the morning, but had on one of her best dresses. Her hair was carefully done and her face was animated, which, however, did not conceal its sunken and faded outlines. Dressed as she used to be in Petersburg society, it was still more noticeable how much plainer she had become. Some unobtrusive touch had been added to Mademoiselle Bourienne's toilet which rendered her fresh and pretty face yet more attractive. "What! Are you going to remain as you are, dear princess?" she began. "They'll be announcing that the gentlemen are in the drawing room and we shall have to go down, and you have not smartened yourself up at all!" The little princess got up, rang for the maid, and hurriedly and merrily began to devise and carry out a plan of how Princess Mary should be dressed. Princess Mary's self-esteem was wounded by the fact that the arrival of a suitor agitated her, and still more so by both her companions' not having the least conception that it could be otherwise. To tell them that she felt ashamed for herself and for them would be to betray her agitation, while to decline their offers to dress her would prolong their banter and insistence. She flushed, her beautiful eyes grew dim, red blotches came on her face, and it took on the unattractive martyrlike expression it so often wore, as she submitted herself to Mademoiselle Bourienne and Lise. Both these women quite sincerely tried to make her look pretty. She was so plain that neither of them could think of her as a rival, so they began dressing her with perfect sincerity, and with the naive and firm conviction women have that dress can make a face pretty. "No really, my dear, this dress is not pretty," said Lise, looking sideways at Princess Mary from a little distance. "You have a maroon dress, have it fetched. Really! You know the fate of your whole life may be at stake. But this one is too light, it's not becoming!" It was not the dress, but the face and whole figure of Princess Mary that was not pretty, but neither Mademoiselle Bourienne nor the little princess felt this; they still thought that if a blue ribbon were placed in the hair, the hair combed up, and the blue scarf arranged lower on the best maroon dress, and so on, all would be well. They forgot that the frightened face and the figure could not be altered, and that however they might change the setting and adornment of that face, it would still remain piteous and plain. After two or three changes to which Princess Mary meekly submitted, just as her hair had been arranged on the top of her head (a style that quite altered and spoiled her looks) and she had put on a maroon dress with a pale-blue scarf, the little princess walked twice round her, now adjusting a fold of the dress with her little hand, now arranging the scarf and looking at her with her head bent first on one side and then on the other. "No, it will not do," she said decidedly, clasping her hands. "No, Mary, really this dress does not suit you. I prefer you in your little gray everyday dress. Now please, do it for my sake. Katie," she said to the maid, "bring the princess her gray dress, and you'll see, Mademoiselle Bourienne, how I shall arrange it," she added, smiling with a foretaste of artistic pleasure. But when Katie brought the required dress, Princess Mary remained sitting motionless before the glass, looking at her face, and saw in the mirror her eyes full of tears and her mouth quivering, ready to burst into sobs. "Come, dear princess," said Mademoiselle Bourienne, "just one more little effort." The little princess, taking the dress from the maid, came up to Princess Mary. "Well, now we'll arrange something quite simple and becoming," she said. The three voices, hers, Mademoiselle Bourienne's, and Katie's, who was laughing at something, mingled in a merry sound, like the chirping of birds. "No, leave me alone," said Princess Mary. Her voice sounded so serious and so sad that the chirping of the birds was silenced at once. They looked at the beautiful, large, thoughtful eyes full of tears and of thoughts, gazing shiningly and imploringly at them, and understood that it was useless and even cruel to insist. "At least, change your coiffure," said the little princess. "Didn't I tell you," she went on, turning reproachfully to Mademoiselle Bourienne, "Mary's is a face which such a coiffure does not suit in the least. Not in the least! Please change it." "Leave me alone, please leave me alone! It is all quite the same to me," answered a voice struggling with tears. Mademoiselle Bourienne and the little princess had to own to themselves that Princess Mary in this guise looked very plain, worse than usual, but it was too late. She was looking at them with an expression they both knew, an expression thoughtful and sad. This expression in Princess Mary did not frighten them (she never inspired fear in anyone), but they knew that when it appeared on her face, she became mute and was not to be shaken in her determination. "You will change it, won't you?" said Lise. And as Princess Mary gave no answer, she left the room. Princess Mary was left alone. She did not comply with Lise's request, she not only left her hair as it was, but did not even look in her glass. Letting her arms fall helplessly, she sat with downcast eyes and pondered. A husband, a man, a strong dominant and strangely attractive being rose in her imagination, and carried her into a totally different happy world of his own. She fancied a child, her own--such as she had seen the day before in the arms of her nurse's daughter--at her own breast, the husband standing by and gazing tenderly at her and the child. "But no, it is impossible, I am too ugly," she thought. "Please come to tea. The prince will be out in a moment," came the maid's voice at the door. She roused herself, and felt appalled at what she had been thinking, and before going down she went into the room where the icons hung and, her eyes fixed on the dark face of a large icon of the Saviour lit by a lamp, she stood before it with folded hands for a few moments. A painful doubt filled her soul. Could the joy of love, of earthly love for a man, be for her? In her thoughts of marriage Princess Mary dreamed of happiness and of children, but her strongest, most deeply hidden longing was for earthly love. The more she tried to hide this feeling from others and even from herself, the stronger it grew. "O God," she said, "how am I to stifle in my heart these temptations of the devil? How am I to renounce forever these vile fancies, so as peacefully to fulfill Thy will?" And scarcely had she put that question than God gave her the answer in her own heart. "Desire nothing for thyself, seek nothing, be not anxious or envious. Man's future and thy own fate must remain hidden from thee, but live so that thou mayest be ready for anything. If it be God's will to prove thee in the duties of marriage, be ready to fulfill His will." With this consoling thought (but yet with a hope for the fulfillment of her forbidden earthly longing) Princess Mary sighed, and having crossed herself went down, thinking neither of her gown and coiffure nor of how she would go in nor of what she would say. What could all that matter in comparison with the will of God, without Whose care not a hair of man's head can fall? CHAPTER IV When Princess Mary came down, Prince Vasili and his son were already in the drawing room, talking to the little princess and Mademoiselle Bourienne. When she entered with her heavy step, treading on her heels, the gentlemen and Mademoiselle Bourienne rose and the little princess, indicating her to the gentlemen, said: "Voila Marie!" Princess Mary saw them all and saw them in detail. She saw Prince Vasili's face, serious for an instant at the sight of her, but immediately smiling again, and the little princess curiously noting the impression "Marie" produced on the visitors. And she saw Mademoiselle Bourienne, with her ribbon and pretty face, and her unusually animated look which was fixed on him, but him she could not see, she only saw something large, brilliant, and handsome moving toward her as she entered the room. Prince Vasili approached first, and she kissed the bold forehead that bent over her hand and answered his question by saying that, on the contrary, she remembered him quite well. Then Anatole came up to her. She still could not see him. She only felt a soft hand taking hers firmly, and she touched with her lips a white forehead, over which was beautiful light-brown hair smelling of pomade. When she looked up at him she was struck by his beauty. Anatole stood with his right thumb under a button of his uniform, his chest expanded and his back drawn in, slightly swinging one foot, and, with his head a little bent, looked with beaming face at the princess without speaking and evidently not thinking about her at all. Anatole was not quick-witted, nor ready or eloquent in conversation, but he had the faculty, so invaluable in society, of composure and imperturbable self-possession. If a man lacking in self-confidence remains dumb on a first introduction and betrays a consciousness of the impropriety of such silence and an anxiety to find something to say, the effect is bad. But Anatole was dumb, swung his foot, and smilingly examined the princess' hair. It was evident that he could be silent in this way for a very long time. "If anyone finds this silence inconvenient, let him talk, but I don't want to," he seemed to say. Besides this, in his behavior to women Anatole had a manner which particularly inspires in them curiosity, awe, and even love--a supercilious consciousness of his own superiority. It was was as if he said to them: "I know you, I know you, but why should I bother about you? You'd be only too glad, of course." Perhaps he did not really think this when he met women- even probably he did not, for in general he thought very little--but his looks and manner gave that impression. The princess felt this, and as if wishing to show him that she did not even dare expect to interest him, she turned to his father. The conversation was general and animated, thanks to Princess Lise's voice and little downy lip that lifted over her white teeth. She met Prince Vasili with that playful manner often employed by lively chatty people, and consisting in the assumption that between the person they so address and themselves there are some semi-private, long-established jokes and amusing reminiscences, though no such reminiscences really exist--just as none existed in this case. Prince Vasili readily adopted her tone and the little princess also drew Anatole, whom she hardly knew, into these amusing recollections of things that had never occurred. Mademoiselle Bourienne also shared them and even Princess Mary felt herself pleasantly made to share in these merry reminiscences. "Here at least we shall have the benefit of your company all to ourselves, dear prince," said the little princess (of course, in French) to Prince Vasili. "It's not as at Annette's* receptions where you always ran away; you remember cette chere Annette!" *Anna Pavlovna. "Ah, but you won't talk politics to me like Annette!" "And our little tea table?" "Oh, yes!" "Why is it you were never at Annette's?" the little princess asked Anatole. "Ah, I know, I know," she said with a sly glance, "your brother Hippolyte told me about your goings on. Oh!" and she shook her finger at him, "I have even heard of your doings in Paris!" "And didn't Hippolyte tell you?" asked Prince Vasili, turning to his son and seizing the little princess' arm as if she would have run away and he had just managed to catch her, "didn't he tell you how he himself was pining for the dear princess, and how she showed him the door? Oh, she is a pearl among women, Princess," he added, turning to Princess Mary. When Paris was mentioned, Mademoiselle Bourienne for her part seized the opportunity of joining in the general current of recollections. She took the liberty of inquiring whether it was long since Anatole had left Paris and how he had liked that city. Anatole answered the Frenchwoman very readily and, looking at her with a smile, talked to her about her native land. When he saw the pretty little Bourienne, Anatole came to the conclusion that he would not find Bald Hills dull either. "Not at all bad!" he thought, examining her, "not at all bad, that little companion! I hope she will bring her along with her when we're married, la petite est gentille."* *The little one is charming. The old prince dressed leisurely in his study, frowning and considering what he was to do. The coming of these visitors annoyed him. "What are Prince Vasili and that son of his to me? Prince Vasili is a shallow braggart and his son, no doubt, is a fine specimen," he grumbled to himself. What angered him was that the coming of these visitors revived in his mind an unsettled question he always tried to stifle, one about which he always deceived himself. The question was whether he could ever bring himself to part from his daughter and give her to a husband. The prince never directly asked himself that question, knowing beforehand that he would have to answer it justly, and justice clashed not only with his feelings but with the very possibility of life. Life without Princess Mary, little as he seemed to value her, was unthinkable to him. "And why should she marry?" he thought. "To be unhappy for certain. There's Lise, married to Andrew--a better husband one would think could hardly be found nowadays--but is she contented with her lot? And who would marry Marie for love? Plain and awkward! They'll take her for her connections and wealth. Are there no women living unmarried, and even the happier for it?" So thought Prince Bolkonski while dressing, and yet the question he was always putting off demanded an immediate answer. Prince Vasili had brought his son with the evident intention of proposing, and today or tomorrow he would probably ask for an answer. His birth and position in society were not bad. "Well, I've nothing against it," the prince said to himself, "but he must be worthy of her. And that is what we shall see." "That is what we shall see! That is what we shall see!" he added aloud. He entered the drawing room with his usual alert step, glancing rapidly round the company. He noticed the change in the little princess' dress, Mademoiselle Bourienne's ribbon, Princess Mary's unbecoming coiffure, Mademoiselle Bourienne's and Anatole's smiles, and the loneliness of his daughter amid the general conversation. "Got herself up like a fool!" he thought, looking irritably at her. "She is shameless, and he ignores her!" He went straight up to Prince Vasili. "Well! How d'ye do? How d'ye do? Glad to see you!" "Friendship laughs at distance," began Prince Vasili in his usual rapid, self-confident, familiar tone. "Here is my second son; please love and befriend him." Prince Bolkonski surveyed Anatole. "Fine young fellow! Fine young fellow!" he said. "Well, come and kiss me," and he offered his cheek. Anatole kissed the old man, and looked at him with curiosity and perfect composure, waiting for a display of the eccentricities his father had told him to expect. Prince Bolkonski sat down in his usual place in the corner of the sofa and, drawing up an armchair for Prince Vasili, pointed to it and began questioning him about political affairs and news. He seemed to listen attentively to what Prince Vasili said, but kept glancing at Princess Mary. "And so they are writing from Potsdam already?" he said, repeating Prince Vasili's last words. Then rising, he suddenly went up to his daughter. "Is it for visitors you've got yourself up like that, eh?" said he. "Fine, very fine! You have done up your hair in this new way for the visitors, and before the visitors I tell you that in future you are never to dare to change your way of dress without my consent." "It was my fault, mon pere," interceded the little princess, with a blush. "You must do as you please," said Prince Bolkonski, bowing to his daughter-in-law, "but she need not make a fool of herself, she's plain enough as it is." And he sat down again, paying no more attention to his daughter, who was reduced to tears. "On the contrary, that coiffure suits the princess very well," said Prince Vasili. "Now you, young prince, what's your name?" said Prince Bolkonski, turning to Anatole, "come here, let us talk and get acquainted." "Now the fun begins," thought Anatole, sitting down with a smile beside the old prince. "Well, my dear boy, I hear you've been educated abroad, not taught to read and write by the deacon, like your father and me. Now tell me, my dear boy, are you serving in the Horse Guards?" asked the old man, scrutinizing Anatole closely and intently. "No, I have been transferred to the line," said Anatole, hardly able to restrain his laughter. "Ah! That's a good thing. So, my dear boy, you wish to serve the Tsar and the country? It is wartime. Such a fine fellow must serve. Well, are you off to the front?" "No, Prince, our regiment has gone to the front, but I am attached... what is it I am attached to, Papa?" said Anatole, turning to his father with a laugh. "A splendid soldier, splendid! 'What am I attached to!' Ha, ha, ha!" laughed Prince Bolkonski, and Anatole laughed still louder. Suddenly Prince Bolkonski frowned. "You may go," he said to Anatole. Anatole returned smiling to the ladies. "And so you've had him educated abroad, Prince Vasili, haven't you?" said the old prince to Prince Vasili. "I have done my best for him, and I can assure you the education there is much better than ours." "Yes, everything is different nowadays, everything is changed. The lad's a fine fellow, a fine fellow! Well, come with me now." He took Prince Vasili's arm and led him to his study. As soon as they were alone together, Prince Vasili announced his hopes and wishes to the old prince. "Well, do you think I shall prevent her, that I can't part from her?" said the old prince angrily. "What an idea! I'm ready for it tomorrow! Only let me tell you, I want to know my son-in-law better. You know my principles--everything aboveboard? I will ask her tomorrow in your presence; if she is willing, then he can stay on. He can stay and I'll see." The old prince snorted. "Let her marry, it's all the same to me!" he screamed in the same piercing tone as when parting from his son. "I will tell you frankly," said Prince Vasili in the tone of a crafty man convinced of the futility of being cunning with so keen-sighted companion. "You know, you see right through people. Anatole is no genius, but he is an honest, goodhearted lad; an excellent son or kinsman." "All right, all right, we'll see!" As always happens when women lead lonely lives for any length of time without male society, on Anatole's appearance all the three women of Prince Bolkonski's household felt that their life had not been real till then. Their powers of reasoning, feeling, and observing immediately increased tenfold, and their life, which seemed to have been passed in darkness, was suddenly lit up by a new brightness, full of significance. Princess Mary grew quite unconscious of her face and coiffure. The handsome open face of the man who might perhaps be her husband absorbed all her attention. He seemed to her kind, brave, determined, manly, and magnanimous. She felt convinced of that. Thousands of dreams of a future family life continually rose in her imagination. She drove them away and tried to conceal them. "But am I not too cold with him?" thought the princess. "I try to be reserved because in the depth of my soul I feel too near to him already, but then he cannot know what I think of him and may imagine that I do not like him." And Princess Mary tried, but could not manage, to be cordial to her new guest. "Poor girl, she's devilish ugly!" thought Anatole. Mademoiselle Bourienne, also roused to great excitement by Anatole's arrival, thought in another way. Of course, she, a handsome young woman without any definite position, without relations or even a country, did not intend to devote her life to serving Prince Bolkonski, to reading aloud to him and being friends with Princess Mary. Mademoiselle Bourienne had long been waiting for a Russian prince who, able to appreciate at a glance her superiority to the plain, badly dressed, ungainly Russian princesses, would fall in love with her and carry her off; and here at last was a Russian prince. Mademoiselle Bourienne knew a story, heard from her aunt but finished in her own way, which she liked to repeat to herself. It was the story of a girl who had been seduced, and to whom her poor mother (sa pauvre mere) appeared, and reproached her for yielding to a man without being married. Mademoiselle Bourienne was often touched to tears as in imagination she told this story to him, her seducer. And now he, a real Russian prince, had appeared. He would carry her away and then sa pauvre mere would appear and he would marry her. So her future shaped itself in Mademoiselle Bourienne's head at the very time she was talking to Anatole about Paris. It was not calculation that guided her (she did not even for a moment consider what she should do), but all this had long been familiar to her, and now that Anatole had appeared it just grouped itself around him and she wished and tried to please him as much as possible. The little princess, like an old war horse that hears the trumpet, unconsciously and quite forgetting her condition, prepared for the familiar gallop of coquetry, without any ulterior motive or any struggle, but with naive and lighthearted gaiety. Although in female society Anatole usually assumed the role of a man tired of being run after by women, his vanity was flattered by the spectacle of his power over these three women. Besides that, he was beginning to feel for the pretty and provocative Mademoiselle Bourienne that passionate animal feeling which was apt to master him with great suddenness and prompt him to the coarsest and most reckless actions. After tea, the company went into the sitting room and Princess Mary was asked to play on the clavichord. Anatole, laughing and in high spirits, came and leaned on his elbows, facing her and beside Mademoiselle Bourienne. Princess Mary felt his look with a painfully joyous emotion. Her favorite sonata bore her into a most intimately poetic world and the look she felt upon her made that world still more poetic. But Anatole's expression, though his eyes were fixed on her, referred not to her but to the movements of Mademoiselle Bourienne's little foot, which he was then touching with his own under the clavichord. Mademoiselle Bourienne was also looking at Princess Mary, and in her lovely eyes there was a look of fearful joy and hope that was also new to the princess. "How she loves me!" thought Princess Mary. "How happy I am now, and how happy I may be with such a friend and such a husband! Husband? Can it be possible?" she thought, not daring to look at his face, but still feeling his eyes gazing at her. In the evening, after supper, when all were about to retire, Anatole kissed Princess Mary's hand. She did not know how she found the courage, but she looked straight into his handsome face as it came near to her shortsighted eyes. Turning from Princess Mary he went up and kissed Mademoiselle Bourienne's hand. (This was not etiquette, but then he did everything so simply and with such assurance!) Mademoiselle Bourienne flushed, and gave the princess a frightened look. "What delicacy!" thought the princess. "Is it possible that Amelie" (Mademoiselle Bourienne) "thinks I could be jealous of her, and not value her pure affection and devotion to me?" She went up to her and kissed her warmly. Anatole went up to kiss the little princess' hand. "No! No! No! When your father writes to tell me that you are behaving well I will give you my hand to kiss. Not till then!" she said. And smilingly raising a finger at him, she left the room. CHAPTER V They all separated, but, except Anatole who fell asleep as soon as he got into bed, all kept awake a long time that night. "Is he really to be my husband, this stranger who is so kind--yes, kind, that is the chief thing," thought Princess Mary; and fear, which she had seldom experienced, came upon her. She feared to look round, it seemed to her that someone was there standing behind the screen in the dark corner. And this someone was he--the devil--and he was also this man with the white forehead, black eyebrows, and red lips. She rang for her maid and asked her to sleep in her room. Mademoiselle Bourienne walked up and down the conservatory for a long time that evening, vainly expecting someone, now smiling at someone, now working herself up to tears with the imaginary words of her pauvre mere rebuking her for her fall. The little princess grumbled to her maid that her bed was badly made. She could not lie either on her face or on her side. Every position was awkward and uncomfortable, and her burden oppressed her now more than ever because Anatole's presence had vividly recalled to her the time when she was not like that and when everything was light and gay. She sat in an armchair in her dressing jacket and nightcap and Katie, sleepy and disheveled, beat and turned the heavy feather bed for the third time, muttering to herself. "I told you it was all lumps and holes!" the little princess repeated. "I should be glad enough to fall asleep, so it's not my fault!" and her voice quivered like that of a child about to cry. The old prince did not sleep either. Tikhon, half asleep, heard him pacing angrily about and snorting. The old prince felt as though he had been insulted through his daughter. The insult was the more pointed because it concerned not himself but another, his daughter, whom he loved more than himself. He kept telling himself that he would consider the whole matter and decide what was right and how he should act, but instead of that he only excited himself more and more. "The first man that turns up--she forgets her father and everything else, runs upstairs and does up her hair and wags her tail and is unlike herself! Glad to throw her father over! And she knew I should notice it. Fr... fr... fr! And don't I see that that idiot had eyes only for Bourienne--I shall have to get rid of her. And how is it she has not pride enough to see it? If she has no pride for herself she might at least have some for my sake! She must be shown that the blockhead thinks nothing of her and looks only at Bourienne. No, she has no pride... but I'll let her see...." The old prince knew that if he told his daughter she was making a mistake and that Anatole meant to flirt with Mademoiselle Bourienne, Princess Mary's self-esteem would be wounded and his point (not to be parted from her) would be gained, so pacifying himself with this thought, he called Tikhon and began to undress. "What devil brought them here?" thought he, while Tikhon was putting the nightshirt over his dried-up old body and gray-haired chest. "I never invited them. They came to disturb my life--and there is not much of it left." "Devil take 'em!" he muttered, while his head was still covered by the shirt. Tikhon knew his master's habit of sometimes thinking aloud, and therefore met with unaltered looks the angrily inquisitive expression of the face that emerged from the shirt. "Gone to bed?" asked the prince. Tikhon, like all good valets, instinctively knew the direction of his master's thoughts. He guessed that the question referred to Prince Vasili and his son. "They have gone to bed and put out their lights, your excellency." "No good... no good..." said the prince rapidly, and thrusting his feet into his slippers and his arms into the sleeves of his dressing gown, he went to the couch on which he slept. Though no words had passed between Anatole and Mademoiselle Bourienne, they quite understood one another as to the first part of their romance, up to the appearance of the pauvre mere; they understood that they had much to say to one another in private and so they had been seeking an opportunity since morning to meet one another alone. When Princess Mary went to her father's room at the usual hour, Mademoiselle Bourienne and Anatole met in the conservatory. Princess Mary went to the door of the study with special trepidation. It seemed to her that not only did everybody know that her fate would be decided that day, but that they also knew what she thought about it. She read this in Tikhon's face and in that of Prince Vasili's valet, who made her a low bow when she met him in the corridor carrying hot water. The old prince was very affectionate and careful in his treatment of his daughter that morning. Princess Mary well knew this painstaking expression of her father's. His face wore that expression when his dry hands clenched with vexation at her not understanding a sum in arithmetic, when rising from his chair he would walk away from her, repeating in a low voice the same words several times over. He came to the point at once, treating her ceremoniously. "I have had a proposition made me concerning you," he said with an unnatural smile. "I expect you have guessed that Prince Vasili has not come and brought his pupil with him" (for some reason Prince Bolkonski referred to Anatole as a "pupil") "for the sake of my beautiful eyes. Last night a proposition was made me on your account and, as you know my principles, I refer it to you." "How am I to understand you, mon pere?" said the princess, growing pale and then blushing. "How understand me!" cried her father angrily. "Prince Vasili finds you to his taste as a daughter-in-law and makes a proposal to you on his pupil's behalf. That's how it's to be understood! 'How understand it'!... And I ask you!" "I do not know what you think, Father," whispered the princess. "I? I? What of me? Leave me out of the question. I'm not going to get married. What about you? That's what I want to know." The princess saw that her father regarded the matter with disapproval, but at that moment the thought occurred to her that her fate would be decided now or never. She lowered her eyes so as not to see the gaze under which she felt that she could not think, but would only be able to submit from habit, and she said: "I wish only to do your will, but if I had to express my own desire..." She had no time to finish. The old prince interrupted her. "That's admirable!" he shouted. "He will take you with your dowry and take Mademoiselle Bourienne into the bargain. She'll be the wife, while you..." The prince stopped. He saw the effect these words had produced on his daughter. She lowered her head and was ready to burst into tears. "Now then, now then, I'm only joking!" he said. "Remember this, Princess, I hold to the principle that a maiden has a full right to choose. I give you freedom. Only remember that your life's happiness depends on your decision. Never mind me!" "But I do not know, Father!" "There's no need to talk! He receives his orders and will marry you or anybody; but you are free to choose.... Go to your room, think it over, and come back in an hour and tell me in his presence: yes or no. I know you will pray over it. Well, pray if you like, but you had better think it over. Go! Yes or no, yes or no, yes or no!" he still shouted when the princess, as if lost in a fog, had already staggered out of the study. Her fate was decided and happily decided. But what her father had said about Mademoiselle Bourienne was dreadful. It was untrue to be sure, but still it was terrible, and she could not help thinking of it. She was going straight on through the conservatory, neither seeing nor hearing anything, when suddenly the well-known whispering of Mademoiselle Bourienne aroused her. She raised her eyes, and two steps away saw Anatole embracing the Frenchwoman and whispering something to her. With a horrified expression on his handsome face, Anatole looked at Princess Mary, but did not at once take his arm from the waist of Mademoiselle Bourienne who had not yet seen her. "Who's that? Why? Wait a moment!" Anatole's face seemed to say. Princess Mary looked at them in silence. She could not understand it. At last Mademoiselle Bourienne gave a scream and ran away. Anatole bowed to Princess Mary with a gay smile, as if inviting her to join in a laugh at this strange incident, and then shrugging his shoulders went to the door that led to his own apartments. An hour later, Tikhon came to call Princess Mary to the old prince; he added that Prince Vasili was also there. When Tikhon came to her Princess Mary was sitting on the sofa in her room, holding the weeping Mademoiselle Bourienne in her arms and gently stroking her hair. The princess' beautiful eyes with all their former calm radiance were looking with tender affection and pity at Mademoiselle Bourienne's pretty face. "No, Princess, I have lost your affection forever!" said Mademoiselle Bourienne. "Why? I love you more than ever," said Princess Mary, "and I will try to do all I can for your happiness." "But you despise me. You who are so pure can never understand being so carried away by passion. Oh, only my poor mother..." "I quite understand," answered Princess Mary, with a sad smile. "Calm yourself, my dear. I will go to my father," she said, and went out. Prince Vasili, with one leg thrown high over the other and a snuffbox in his hand, was sitting there with a smile of deep emotion on his face, as if stirred to his heart's core and himself regretting and laughing at his own sensibility, when Princess Mary entered. He hurriedly took a pinch of snuff. "Ah, my dear, my dear!" he began, rising and taking her by both hands. Then, sighing, he added: "My son's fate is in your hands. Decide, my dear, good, gentle Marie, whom I have always loved as a daughter!" He drew back and a real tear appeared in his eye. "Fr... fr..." snorted Prince Bolkonski. "The prince is making a proposition to you in his pupil's--I mean, his son's--name. Do you wish or not to be Prince Anatole Kuragin's wife? Reply: yes or no," he shouted, "and then I shall reserve the right to state my opinion also. Yes, my opinion, and only my opinion," added Prince Bolkonski, turning to Prince Vasili and answering his imploring look. "Yes, or no?" "My desire is never to leave you, Father, never to separate my life from yours. I don't wish to marry," she answered positively, glancing at Prince Vasili and at her father with her beautiful eyes. "Humbug! Nonsense! Humbug, humbug, humbug!" cried Prince Bolkonski, frowning and taking his daughter's hand; he did not kiss her, but only bending his forehead to hers just touched it, and pressed her hand so that she winced and uttered a cry. Prince Vasili rose. "My dear, I must tell you that this is a moment I shall never, never forget. But, my dear, will you not give us a little hope of touching this heart, so kind and generous? Say 'perhaps'... The future is so long. Say 'perhaps.'" "Prince, what I have said is all there is in my heart. I thank you for the honor, but I shall never be your son's wife." "Well, so that's finished, my dear fellow! I am very glad to have seen you. Very glad! Go back to your rooms, Princess. Go!" said the old prince. "Very, very glad to have seen you," repeated he, embracing Prince Vasili. "My vocation is a different one," thought Princess Mary. "My vocation is to be happy with another kind of happiness, the happiness of love and self-sacrifice. And cost what it may, I will arrange poor Amelie's happiness, she loves him so passionately, and so passionately repents. I will do all I can to arrange the match between them. If he is not rich I will give her the means; I will ask my father and Andrew. I shall be so happy when she is his wife. She is so unfortunate, a stranger, alone, helpless! And, oh God, how passionately she must love him if she could so far forget herself! Perhaps I might have done the same!..." thought Princess Mary. CHAPTER VI It was long since the Rostovs had news of Nicholas. Not till midwinter was the count at last handed a letter addressed in his son's handwriting. On receiving it, he ran on tiptoe to his study in alarm and haste, trying to escape notice, closed the door, and began to read the letter. Anna Mikhaylovna, who always knew everything that passed in the house, on hearing of the arrival of the letter went softly into the room and found the count with it in his hand, sobbing and laughing at the same time. Anna Mikhaylovna, though her circumstances had improved, was still living with the Rostovs. "My dear friend?" said she, in a tone of pathetic inquiry, prepared to sympathize in any way. The count sobbed yet more. "Nikolenka... a letter... wa... a... s... wounded... my darling boy... the countess... promoted to be an officer... thank God... How tell the little countess!" Anna Mikhaylovna sat down beside him, with her own handkerchief wiped the tears from his eyes and from the letter, then having dried her own eyes she comforted the count, and decided that at dinner and till teatime she would prepare the countess, and after tea, with God's help, would inform her. At dinner Anna Mikhaylovna talked the whole time about the war news and about Nikolenka, twice asked when the last letter had been received from him, though she knew that already, and remarked that they might very likely be getting a letter from him that day. Each time that these hints began to make the countess anxious and she glanced uneasily at the count and at Anna Mikhaylovna, the latter very adroitly turned the conversation to insignificant matters. Natasha, who, of the whole family, was the most gifted with a capacity to feel any shades of intonation, look, and expression, pricked up her ears from the beginning of the meal and was certain that there was some secret between her father and Anna Mikhaylovna, that it had something to do with her brother, and that Anna Mikhaylovna was preparing them for it. Bold as she was, Natasha, who knew how sensitive her mother was to anything relating to Nikolenka, did not venture to ask any questions at dinner, but she was too excited to eat anything and kept wriggling about on her chair regardless of her governess' remarks. After dinner, she rushed head long after Anna Mikhaylovna and, dashing at her, flung herself on her neck as soon as she overtook her in the sitting room. "Auntie, darling, do tell me what it is!" "Nothing, my dear." "No, dearest, sweet one, honey, I won't give up--I know you know something." Anna Mikhaylovna shook her head. "You are a little slyboots," she said. "A letter from Nikolenka! I'm sure of it!" exclaimed Natasha, reading confirmation in Anna Mikhaylovna's face. "But for God's sake, be careful, you know how it may affect your mamma." "I will, I will, only tell me! You won't? Then I will go and tell at once." Anna Mikhaylovna, in a few words, told her the contents of the letter, on condition that she should tell no one. "No, on my true word of honor," said Natasha, crossing herself, "I won't tell anyone!" and she ran off at once to Sonya. "Nikolenka... wounded... a letter," she announced in gleeful triumph. "Nicholas!" was all Sonya said, instantly turning white. Natasha, seeing the impression the of her brother's wound produced on Sonya, felt for the first time the sorrowful side of the news. She rushed to Sonya, hugged her, and began to cry. "A little wound, but he has been made an officer; he is well now, he wrote himself," said she through her tears. "There now! It's true that all you women are crybabies," remarked Petya, pacing the room with large, resolute strides. "Now I'm very glad, very glad indeed, that my brother has distinguished himself so. You are all blubberers and understand nothing." Natasha smiled through her tears. "You haven't read the letter?" asked Sonya. "No, but she said that it was all over and that he's now an officer." "Thank God!" said Sonya, crossing herself. "But perhaps she deceived you. Let us go to Mamma." Petya paced the room in silence for a time. "If I'd been in Nikolenka's place I would have killed even more of those Frenchmen," he said. "What nasty brutes they are! I'd have killed so many that there'd have been a heap of them." "Hold your tongue, Petya, what a goose you are!" "I'm not a goose, but they are who cry about trifles," said Petya. "Do you remember him?" Natasha suddenly asked, after a moment's silence. Sonya smiled. "Do I remember Nicholas?" "No, Sonya, but do you remember so that you remember him perfectly, remember everything?" said Natasha, with an expressive gesture, evidently wishing to give her words a very definite meaning. "I remember Nikolenka too, I remember him well," she said. "But I don't remember Boris. I don't remember him a bit." "What! You don't remember Boris?" asked Sonya in surprise. "It's not that I don't remember--I know what he is like, but not as I remember Nikolenka. Him--I just shut my eyes and remember, but Boris... No!" (She shut her eyes.)"No! there's nothing at all." "Oh, Natasha!" said Sonya, looking ecstatically and earnestly at her friend as if she did not consider her worthy to hear what she meant to say and as if she were saying it to someone else, with whom joking was out of the question, "I am in love with your brother once for all and, whatever may happen to him or to me, shall never cease to love him as long as I live." Natasha looked at Sonya with wondering and inquisitive eyes, and said nothing. She felt that Sonya was speaking the truth, that there was such love as Sonya was speaking of. But Natasha had not yet felt anything like it. She believed it could be, but did not understand it. "Shall you write to him?" she asked. Sonya became thoughtful. The question of how to write to Nicholas, and whether she ought to write, tormented her. Now that he was already an officer and a wounded hero, would it be right to remind him of herself and, as it might seem, of the obligations to her he had taken on himself? "I don't know. I think if he writes, I will write too," she said, blushing. "And you won't feel ashamed to write to him?" Sonya smiled. "No." "And I should be ashamed to write to Boris. I'm not going to." "Why should you be ashamed?" "Well, I don't know. It's awkward and would make me ashamed." "And I know why she'd be ashamed," said Petya, offended by Natasha's previous remark. "It's because she was in love with that fat one in spectacles" (that was how Petya described his namesake, the new Count Bezukhov) "and now she's in love with that singer" (he meant Natasha's Italian singing master), "that's why she's ashamed!" "Petya, you're a stupid!" said Natasha. "Not more stupid than you, madam," said the nine-year-old Petya, with the air of an old brigadier. The countess had been prepared by Anna Mikhaylovna's hints at dinner. On retiring to her own room, she sat in an armchair, her eyes fixed on a miniature portrait of her son on the lid of a snuffbox, while the tears kept coming into her eyes. Anna Mikhaylovna, with the letter, came on tiptoe to the countess' door and paused. "Don't come in," she said to the old count who was following her. "Come later." And she went in, closing the door behind her. The count put his ear to the keyhole and listened. At first he heard the sound of indifferent voices, then Anna Mikhaylovna's voice alone in a long speech, then a cry, then silence, then both voices together with glad intonations, and then footsteps. Anna Mikhaylovna opened the door. Her face wore the proud expression of a surgeon who has just performed a difficult operation and admits the public to appreciate his skill. "It is done!" she said to the count, pointing triumphantly to the countess, who sat holding in one hand the snuffbox with its portrait and in the other the letter, and pressing them alternately to her lips. When she saw the count, she stretched out her arms to him, embraced his bald head, over which she again looked at the letter and the portrait, and in order to press them again to her lips, she slightly pushed away the bald head. Vera, Natasha, Sonya, and Petya now entered the room, and the reading of the letter began. After a brief description of the campaign and the two battles in which he had taken part, and his promotion, Nicholas said that he kissed his father's and mother's hands asking for their blessing, and that he kissed Vera, Natasha, and Petya. Besides that, he sent greetings to Monsieur Schelling, Madame Schoss, and his old nurse, and asked them to kiss for him "dear Sonya, whom he loved and thought of just the same as ever." When she heard this Sonya blushed so that tears came into her eyes and, unable to bear the looks turned upon her, ran away into the dancing hall, whirled round it at full speed with her dress puffed out like a balloon, and, flushed and smiling, plumped down on the floor. The countess was crying. "Why are you crying, Mamma?" asked Vera. "From all he says one should be glad and not cry." This was quite true, but the count, the countess, and Natasha looked at her reproachfully. "And who is it she takes after?" thought the countess. Nicholas' letter was read over hundreds of times, and those who were considered worthy to hear it had to come to the countess, for she did not let it out of her hands. The tutors came, and the nurses, and Dmitri, and several acquaintances, and the countess reread the letter each time with fresh pleasure and each time discovered in it fresh proofs of Nikolenka's virtues. How strange, how extraordinary, how joyful it seemed, that her son, the scarcely perceptible motion of whose tiny limbs she had felt twenty years ago within her, that son about whom she used to have quarrels with the too indulgent count, that son who had first learned to say "pear" and then "granny," that this son should now be away in a foreign land amid strange surroundings, a manly warrior doing some kind of man's work of his own, without help or guidance. The universal experience of ages, showing that children do grow imperceptibly from the cradle to manhood, did not exist for the countess. Her son's growth toward manhood, at each of its stages, had seemed as extraordinary to her as if there had never existed the millions of human beings who grew up in the same way. As twenty years before, it seemed impossible that the little creature who lived somewhere under her heart would ever cry, suck her breast, and begin to speak, so now she could not believe that that little creature could be this strong, brave man, this model son and officer that, judging by this letter, he now was. "What a style! How charmingly he describes!" said she, reading the descriptive part of the letter. "And what a soul! Not a word about himself.... Not a word! About some Denisov or other, though he himself, I dare say, is braver than any of them. He says nothing about his sufferings. What a heart! How like him it is! And how he has remembered everybody! Not forgetting anyone. I always said when he was only so high--I always said...." For more than a week preparations were being made, rough drafts of letters to Nicholas from all the household were written and copied out, while under the supervision of the countess and the solicitude of the count, money and all things necessary for the uniform and equipment of the newly commissioned officer were collected. Anna Mikhaylovna, practical woman that she was, had even managed by favor with army authorities to secure advantageous means of communication for herself and her son. She had opportunities of sending her letters to the Grand Duke Constantine Pavlovich, who commanded the Guards. The Rostovs supposed that The Russian Guards, Abroad, was quite a definite address, and that if a letter reached the Grand Duke in command of the Guards there was no reason why it should not reach the Pavlograd regiment, which was presumably somewhere in the same neighborhood. And so it was decided to send the letters and money by the Grand Duke's courier to Boris and Boris was to forward them to Nicholas. The letters were from the old count, the countess, Petya, Vera, Natasha, and Sonya, and finally there were six thousand rubles for his outfit and various other things the old count sent to his son. CHAPTER VII On the twelfth of November, Kutuzov's active army, in camp before Olmutz, was preparing to be reviewed next day by the two Emperors--the Russian and the Austrian. The Guards, just arrived from Russia, spent the night ten miles from Olmutz and next morning were to come straight to the review, reaching the field at Olmutz by ten o'clock. That day Nicholas Rostov received a letter from Boris, telling him that the Ismaylov regiment was quartered for the night ten miles from Olmutz and that he wanted to see him as he had a letter and money for him. Rostov was particularly in need of money now that the troops, after their active service, were stationed near Olmutz and the camp swarmed with well-provisioned sutlers and Austrian Jews offering all sorts of tempting wares. The Pavlograds held feast after feast, celebrating awards they had received for the campaign, and made expeditions to Olmutz to visit a certain Caroline the Hungarian, who had recently opened a restaurant there with girls as waitresses. Rostov, who had just celebrated his promotion to a cornetcy and bought Denisov's horse, Bedouin, was in debt all round, to his comrades and the sutlers. On receiving Boris' letter he rode with a fellow officer to Olmutz, dined there, drank a bottle of wine, and then set off alone to the Guards' camp to find his old playmate. Rostov had not yet had time to get his uniform. He had on a shabby cadet jacket, decorated with a soldier's cross, equally shabby cadet's riding breeches lined with worn leather, and an officer's saber with a sword knot. The Don horse he was riding was one he had bought from a Cossack during the campaign, and he wore a crumpled hussar cap stuck jauntily back on one side of his head. As he rode up to the camp he thought how he would impress Boris and all his comrades of the Guards by his appearance--that of a fighting hussar who had been under fire. The Guards had made their whole march as if on a pleasure trip, parading their cleanliness and discipline. They had come by easy stages, their knapsacks conveyed on carts, and the Austrian authorities had provided excellent dinners for the officers at every halting place. The regiments had entered and left the town with their bands playing, and by the Grand Duke's orders the men had marched all the way in step (a practice on which the Guards prided themselves), the officers on foot and at their proper posts. Boris had been quartered, and had marched all the way, with Berg who was already in command of a company. Berg, who had obtained his captaincy during the campaign, had gained the confidence of his superiors by his promptitude and accuracy and had arranged his money matters very satisfactorily. Boris, during the campaign, had made the acquaintance of many persons who might prove useful to him, and by a letter of recommendation he had brought from Pierre had become acquainted with Prince Andrew Bolkonski, through whom he hoped to obtain a post on the commander in chief's staff. Berg and Boris, having rested after yesterday's march, were sitting, clean and neatly dressed, at a round table in the clean quarters allotted to them, playing chess. Berg held a smoking pipe between his knees. Boris, in the accurate way characteristic of him, was building a little pyramid of chessmen with his delicate white fingers while awaiting Berg's move, and watched his opponent's face, evidently thinking about the game as he always thought only of whatever he was engaged on. "Well, how are you going to get out of that?" he remarked. "We'll try to," replied Berg, touching a pawn and then removing his hand. At that moment the door opened. "Here he is at last!" shouted Rostov. "And Berg too! Oh, you petisenfans, allay cushay dormir!" he exclaimed, imitating his Russian nurse's French, at which he and Boris used to laugh long ago. "Dear me, how you have changed!" Boris rose to meet Rostov, but in doing so did not omit to steady and replace some chessmen that were falling. He was about to embrace his friend, but Nicholas avoided him. With that peculiar feeling of youth, that dread of beaten tracks, and wish to express itself in a manner different from that of its elders which is often insincere, Nicholas wished to do something special on meeting his friend. He wanted to pinch him, push him, do anything but kiss him--a thing everybody did. But notwithstanding this, Boris embraced him in a quiet, friendly way and kissed him three times. They had not met for nearly half a year and, being at the age when young men take their first steps on life's road, each saw immense changes in the other, quite a new reflection of the society in which they had taken those first steps. Both had changed greatly since they last met and both were in a hurry to show the changes that had taken place in them. "Oh, you damned dandies! Clean and fresh as if you'd been to a fete, not like us sinners of the line," cried Rostov, with martial swagger and with baritone notes in his voice, new to Boris, pointing to his own mud-bespattered breeches. The German landlady, hearing Rostov's loud voice, popped her head in at the door. "Eh, is she pretty?" he asked with a wink. "Why do you shout so? You'll frighten them!" said Boris. "I did not expect you today," he added. "I only sent you the note yesterday by Bolkonski--an adjutant of Kutuzov's, who's a friend of mine. I did not think he would get it to you so quickly.... Well, how are you? Been under fire already?" asked Boris. Without answering, Rostov shook the soldier's Cross of St. George fastened to the cording of his uniform and, indicating a bandaged arm, glanced at Berg with a smile. "As you see," he said. "Indeed? Yes, yes!" said Boris, with a smile. "And we too have had a splendid march. You know, of course, that His Imperial Highness rode with our regiment all the time, so that we had every comfort and every advantage. What receptions we had in Poland! What dinners and balls! I can't tell you. And the Tsarevich was very gracious to all our officers." And the two friends told each other of their doings, the one of his hussar revels and life in the fighting line, the other of the pleasures and advantages of service under members of the Imperial family. "Oh, you Guards!" said Rostov. "I say, send for some wine." Boris made a grimace. "If you really want it," said he. He went to his bed, drew a purse from under the clean pillow, and sent for wine. "Yes, and I have some money and a letter to give you," he added. Rostov took the letter and, throwing the money on the sofa, put both arms on the table and began to read. After reading a few lines, he glanced angrily at Berg, then, meeting his eyes, hid his face behind the letter. "Well, they've sent you a tidy sum," said Berg, eying the heavy purse that sank into the sofa. "As for us, Count, we get along on our pay. I can tell you for myself..." "I say, Berg, my dear fellow," said Rostov, "when you get a letter from home and meet one of your own people whom you want to talk everything over with, and I happen to be there, I'll go at once, to be out of your way! Do go somewhere, anywhere... to the devil!" he exclaimed, and immediately seizing him by the shoulder and looking amiably into his face, evidently wishing to soften the rudeness of his words, he added, "Don't be hurt, my dear fellow; you know I speak from my heart as to an old acquaintance." "Oh, don't mention it, Count! I quite understand," said Berg, getting up and speaking in a muffled and guttural voice. "Go across to our hosts: they invited you," added Boris. Berg put on the cleanest of coats, without a spot or speck of dust, stood before a looking glass and brushed the hair on his temples upwards, in the way affected by the Emperor Alexander, and, having assured himself from the way Rostov looked at it that his coat had been noticed, left the room with a pleasant smile. "Oh dear, what a beast I am!" muttered Rostov, as he read the letter. "Why?" "Oh, what a pig I am, not to have written and to have given them such a fright! Oh, what a pig I am!" he repeated, flushing suddenly. "Well, have you sent Gabriel for some wine? All right let's have some!" In the letter from his parents was enclosed a letter of recommendation to Bagration which the old countess at Anna Mikhaylovna's advice had obtained through an acquaintance and sent to her son, asking him to take it to its destination and make use of it. "What nonsense! Much I need it!" said Rostov, throwing the letter under the table. "Why have you thrown that away?" asked Boris. "It is some letter of recommendation... what the devil do I want it for!" "Why 'What the devil'?" said Boris, picking it up and reading the address. "This letter would be of great use to you." "I want nothing, and I won't be anyone's adjutant." "Why not?" inquired Boris. "It's a lackey's job!" "You are still the same dreamer, I see," remarked Boris, shaking his head. "And you're still the same diplomatist! But that's not the point... Come, how are you?" asked Rostov. "Well, as you see. So far everything's all right, but I confess I should much like to be an adjutant and not remain at the front." "Why?" "Because when once a man starts on military service, he should try to make as successful a career of it as possible." "Oh, that's it!" said Rostov, evidently thinking of something else. He looked intently and inquiringly into his friend's eyes, evidently trying in vain to find the answer to some question. Old Gabriel brought in the wine. "Shouldn't we now send for Berg?" asked Boris. "He would drink with you. I can't." "Well, send for him... and how do you get on with that German?" asked Rostov, with a contemptuous smile. "He is a very, very nice, honest, and pleasant fellow," answered Boris. Again Rostov looked intently into Boris' eyes and sighed. Berg returned, and over the bottle of wine conversation between the three officers became animated. The Guardsmen told Rostov of their march and how they had been made much of in Russia, Poland, and abroad. They spoke of the sayings and doings of their commander, the Grand Duke, and told stories of his kindness and irascibility. Berg, as usual, kept silent when the subject did not relate to himself, but in connection with the stories of the Grand Duke's quick temper he related with gusto how in Galicia he had managed to deal with the Grand Duke when the latter made a tour of the regiments and was annoyed at the irregularity of a movement. With a pleasant smile Berg related how the Grand Duke had ridden up to him in a violent passion, shouting: "Arnauts!" ("Arnauts" was the Tsarevich's favorite expression when he was in a rage) and called for the company commander. "Would you believe it, Count, I was not at all alarmed, because I knew I was right. Without boasting, you know, I may say that I know the Army Orders by heart and know the Regulations as well as I do the Lord's Prayer. So, Count, there never is any negligence in my company, and so my conscience was at ease. I came forward...." (Berg stood up and showed how he presented himself, with his hand to his cap, and really it would have been difficult for a face to express greater respect and self-complacency than his did.) "Well, he stormed at me, as the saying is, stormed and stormed and stormed! It was not a matter of life but rather of death, as the saying is. 'Albanians!' and 'devils!' and 'To Siberia!'" said Berg with a sagacious smile. "I knew I was in the right so I kept silent; was not that best, Count?... 'Hey, are you dumb?' he shouted. Still I remained silent. And what do you think, Count? The next day it was not even mentioned in the Orders of the Day. That's what keeping one's head means. That's the way, Count," said Berg, lighting his pipe and emitting rings of smoke. "Yes, that was fine," said Rostov, smiling. But Boris noticed that he was preparing to make fun of Berg, and skillfully changed the subject. He asked him to tell them how and where he got his wound. This pleased Rostov and he began talking about it, and as he went on became more and more animated. He told them of his Schon Grabern affair, just as those who have taken part in a battle generally do describe it, that is, as they would like it to have been, as they have heard it described by others, and as sounds well, but not at all as it really was. Rostov was a truthful young man and would on no account have told a deliberate lie. He began his story meaning to tell everything just as it happened, but imperceptibly, involuntarily, and inevitably he lapsed into falsehood. If he had told the truth to his hearers--who like himself had often heard stories of attacks and had formed a definite idea of what an attack was and were expecting to hear just such a story--they would either not have believed him or, still worse, would have thought that Rostov was himself to blame since what generally happens to the narrators of cavalry attacks had not happened to him. He could not tell them simply that everyone went at a trot and that he fell off his horse and sprained his arm and then ran as hard as he could from a Frenchman into the wood. Besides, to tell everything as it really happened, it would have been necessary to make an effort of will to tell only what happened. It is very difficult to tell the truth, and young people are rarely capable of it. His hearers expected a story of how beside himself and all aflame with excitement, he had flown like a storm at the square, cut his way in, slashed right and left, how his saber had tasted flesh and he had fallen exhausted, and so on. And so he told them all that. In the middle of his story, just as he was saying: "You cannot imagine what a strange frenzy one experiences during an attack," Prince Andrew, whom Boris was expecting, entered the room. Prince Andrew, who liked to help young men, was flattered by being asked for his assistance and being well disposed toward Boris, who had managed to please him the day before, he wished to do what the young man wanted. Having been sent with papers from Kutuzov to the Tsarevich, he looked in on Boris, hoping to find him alone. When he came in and saw an hussar of the line recounting his military exploits (Prince Andrew could not endure that sort of man), he gave Boris a pleasant smile, frowned as with half-closed eyes he looked at Rostov, bowed slightly and wearily, and sat down languidly on the sofa: he felt it unpleasant to have dropped in on bad company. Rostov flushed up on noticing this, but he did not care, this was a mere stranger. Glancing, however, at Boris, he saw that he too seemed ashamed of the hussar of the line. In spite of Prince Andrew's disagreeable, ironical tone, in spite of the contempt with which Rostov, from his fighting army point of view, regarded all these little adjutants on the staff of whom the newcomer was evidently one, Rostov felt confused, blushed, and became silent. Boris inquired what news there might be on the staff, and what, without indiscretion, one might ask about our plans. "We shall probably advance," replied Bolkonski, evidently reluctant to say more in the presence of a stranger. Berg took the opportunity to ask, with great politeness, whether, as was rumored, the allowance of forage money to captains of companies would be doubled. To this Prince Andrew answered with a smile that he could give no opinion on such an important government order, and Berg laughed gaily. "As to your business," Prince Andrew continued, addressing Boris, "we will talk of it later" (and he looked round at Rostov). "Come to me after the review and we will do what is possible." And, having glanced round the room, Prince Andrew turned to Rostov, whose state of unconquerable childish embarrassment now changing to anger he did not condescend to notice, and said: "I think you were talking of the Schon Grabern affair? Were you there?" "I was there," said Rostov angrily, as if intending to insult the aide-de-camp. Bolkonski noticed the hussar's state of mind, and it amused him. With a slightly contemptuous smile, he said: "Yes, there are many stories now told about that affair!" "Yes, stories!" repeated Rostov loudly, looking with eyes suddenly grown furious, now at Boris, now at Bolkonski. "Yes, many stories! But our stories are the stories of men who have been under the enemy's fire! Our stories have some weight, not like the stories of those fellows on the staff who get rewards without doing anything!" "Of whom you imagine me to be one?" said Prince Andrew, with a quiet and particularly amiable smile. A strange feeling of exasperation and yet of respect for this man's self-possession mingled at that moment in Rostov's soul. "I am not talking about you," he said, "I don't know you and, frankly, I don't want to. I am speaking of the staff in general." "And I will tell you this," Prince Andrew interrupted in a tone of quiet authority, "you wish to insult me, and I am ready to agree with you that it would be very easy to do so if you haven't sufficient self-respect, but admit that the time and place are very badly chosen. In a day or two we shall all have to take part in a greater and more serious duel, and besides, Drubetskoy, who says he is an old friend of yours, is not at all to blame that my face has the misfortune to displease you. However," he added rising, "you know my name and where to find me, but don't forget that I do not regard either myself or you as having been at all insulted, and as a man older than you, my advice is to let the matter drop. Well then, on Friday after the review I shall expect you, Drubetskoy. Au revoir!" exclaimed Prince Andrew, and with a bow to them both he went out. Only when Prince Andrew was gone did Rostov think of what he ought to have said. And he was still more angry at having omitted to say it. He ordered his horse at once and, coldly taking leave of Boris, rode home. Should he go to headquarters next day and challenge that affected adjutant, or really let the matter drop, was the question that worried him all the way. He thought angrily of the pleasure he would have at seeing the fright of that small and frail but proud man when covered by his pistol, and then he felt with surprise that of all the men he knew there was none he would so much like to have for a friend as that very adjutant whom he so hated. CHAPTER VIII The day after Rostov had been to see Boris, a review was held of the Austrian and Russian troops, both those freshly arrived from Russia and those who had been campaigning under Kutuzov. The two Emperors, the Russian with his heir the Tsarevich, and the Austrian with the Archduke, inspected the allied army of eighty thousand men. From early morning the smart clean troops were on the move, forming up on the field before the fortress. Now thousands of feet and bayonets moved and halted at the officers' command, turned with banners flying, formed up at intervals, and wheeled round other similar masses of infantry in different uniforms; now was heard the rhythmic beat of hoofs and the jingling of showy cavalry in blue, red, and green braided uniforms, with smartly dressed bandsmen in front mounted on black, roan, or gray horses; then again, spreading out with the brazen clatter of the polished shining cannon that quivered on the gun carriages and with the smell of linstocks, came the artillery which crawled between the infantry and cavalry and took up its appointed position. Not only the generals in full parade uniforms, with their thin or thick waists drawn in to the utmost, their red necks squeezed into their stiff collars, and wearing scarves and all their decorations, not only the elegant, pomaded officers, but every soldier with his freshly washed and shaven face and his weapons clean and polished to the utmost, and every horse groomed till its coat shone like satin and every hair of its wetted mane lay smooth- felt that no small matter was happening, but an important and solemn affair. Every general and every soldier was conscious of his own insignificance, aware of being but a drop in that ocean of men, and yet at the same time was conscious of his strength as a part of that enormous whole. From early morning strenuous activities and efforts had begun and by ten o'clock all had been brought into due order. The ranks were drown up on the vast field. The whole army was extended in three lines: the cavalry in front, behind it the artillery, and behind that again the infantry. A space like a street was left between each two lines of troops. The three parts of that army were sharply distinguished: Kutuzov's fighting army (with the Pavlograds on the right flank of the front); those recently arrived from Russia, both Guards and regiments of the line; and the Austrian troops. But they all stood in the same lines, under one command, and in a like order. Like wind over leaves ran an excited whisper: "They're coming! They're coming!" Alarmed voices were heard, and a stir of final preparation swept over all the troops. From the direction of Olmutz in front of them, a group was seen approaching. And at that moment, though the day was still, a light gust of wind blowing over the army slightly stirred the streamers on the lances and the unfolded standards fluttered against their staffs. It looked as if by that slight motion the army itself was expressing its joy at the approach of the Emperors. One voice was heard shouting: "Eyes front!" Then, like the crowing of cocks at sunrise, this was repeated by others from various sides and all became silent. In the deathlike stillness only the tramp of horses was heard. This was the Emperors' suites. The Emperors rode up to the flank, and the trumpets of the first cavalry regiment played the general march. It seemed as though not the trumpeters were playing, but as if the army itself, rejoicing at the Emperors' approach, had naturally burst into music. Amid these sounds, only the youthful kindly voice of the Emperor Alexander was clearly heard. He gave the words of greeting, and the first regiment roared "Hurrah!" so deafeningly, continuously, and joyfully that the men themselves were awed by their multitude and the immensity of the power they constituted. Rostov, standing in the front lines of Kutuzov's army which the Tsar approached first, experienced the same feeling as every other man in that army: a feeling of self-forgetfulness, a proud consciousness of might, and a passionate attraction to him who was the cause of this triumph. He felt that at a single word from that man all this vast mass (and he himself an insignificant atom in it) would go through fire and water, commit crime, die, or perform deeds of highest heroism, and so he could not but tremble and his heart stand still at the imminence of that word. "Hurrah! Hurrah! Hurrah!" thundered from all sides, one regiment after another greeting the Tsar with the strains of the march, and then "Hurrah!"... Then the general march, and again "Hurrah! Hurrah!" growing ever stronger and fuller and merging into a deafening roar. Till the Tsar reached it, each regiment in its silence and immobility seemed like a lifeless body, but as soon as he came up it became alive, its thunder joining the roar of the whole line along which he had already passed. Through the terrible and deafening roar of those voices, amid the square masses of troops standing motionless as if turned to stone, hundreds of riders composing the suites moved carelessly but symmetrically and above all freely, and in front of them two men--the Emperors. Upon them the undivided, tensely passionate attention of that whole mass of men was concentrated. The handsome young Emperor Alexander, in the uniform of the Horse Guards, wearing a cocked hat with its peaks front and back, with his pleasant face and resonant though not loud voice, attracted everyone's attention. Rostov was not far from the trumpeters, and with his keen sight had recognized the Tsar and watched his approach. When he was within twenty paces, and Nicholas could clearly distinguish every detail of his handsome, happy young face, he experienced a feeling tenderness and ecstasy such as he had never before known. Every trait and every movement of the Tsar's seemed to him enchanting. Stopping in front of the Pavlograds, the Tsar said something in French to the Austrian Emperor and smiled. Seeing that smile, Rostov involuntarily smiled himself and felt a still stronger flow of love for his sovereign. He longed to show that love in some way and knowing that this was impossible was ready to cry. The Tsar called the colonel of the regiment and said a few words to him. "Oh God, what would happen to me if the Emperor spoke to me?" thought Rostov. "I should die of happiness!" The Tsar addressed the officers also: "I thank you all, gentlemen, I thank you with my whole heart." To Rostov every word sounded like a voice from heaven. How gladly would he have died at once for his Tsar! "You have earned the St. George's standards and will be worthy of them." "Oh, to die, to die for him," thought Rostov. The Tsar said something more which Rostov did not hear, and the soldiers, straining their lungs, shouted "Hurrah!" Rostov too, bending over his saddle, shouted "Hurrah!" with all his might, feeling that he would like to injure himself by that shout, if only to express his rapture fully. The Tsar stopped a few minutes in front of the hussars as if undecided. "How can the Emperor be undecided?" thought Rostov, but then even this indecision appeared to him majestic and enchanting, like everything else the Tsar did. That hesitation lasted only an instant. The Tsar's foot, in the narrow pointed boot then fashionable, touched the groin of the bobtailed bay mare he rode, his hand in a white glove gathered up the reins, and he moved off accompanied by an irregularly swaying sea of aides-de-camp. Farther and farther he rode away, stopping at other regiments, till at last only his white plumes were visible to Rostov from amid the suites that surrounded the Emperors. Among the gentlemen of the suite, Rostov noticed Bolkonski, sitting his horse indolently and carelessly. Rostov recalled their quarrel of yesterday and the question presented itself whether he ought or ought not to challenge Bolkonski. "Of course not!" he now thought. "Is it worth thinking or speaking of it at such a moment? At a time of such love, such rapture, and such self-sacrifice, what do any of our quarrels and affronts matter? I love and forgive everybody now." When the Emperor had passed nearly all the regiments, the troops began a ceremonial march past him, and Rostov on Bedouin, recently purchased from Denisov, rode past too, at the rear of his squadron- that is, alone and in full view of the Emperor. Before he reached him, Rostov, who was a splendid horseman, spurred Bedouin twice and successfully put him to the showy trot in which the animal went when excited. Bending his foaming muzzle to his chest, his tail extended, Bedouin, as if also conscious of the Emperor's eye upon him, passed splendidly, lifting his feet with a high and graceful action, as if flying through the air without touching the ground. Rostov himself, his legs well back and his stomach drawn in and feeling himself one with his horse, rode past the Emperor with a frowning but blissful face "like a vewy devil," as Denisov expressed it. "Fine fellows, the Pavlograds!" remarked the Emperor. "My God, how happy I should be if he ordered me to leap into the fire this instant!" thought Rostov. When the review was over, the newly arrived officers, and also Kutuzov's, collected in groups and began to talk about the awards, about the Austrians and their uniforms, about their lines, about Bonaparte, and how badly the latter would fare now, especially if the Essen corps arrived and Prussia took our side. But the talk in every group was chiefly about the Emperor Alexander. His every word and movement was described with ecstasy. They all had but one wish: to advance as soon as possible against the enemy under the Emperor's command. Commanded by the Emperor himself they could not fail to vanquish anyone, be it whom it might: so thought Rostov and most of the officers after the review. All were then more confident of victory than the winning of two battles would have made them. CHAPTER IX The day after the review, Boris, in his best uniform and with his comrade Berg's best wishes for success, rode to Olmutz to see Bolkonski, wishing to profit by his friendliness and obtain for himself the best post he could--preferably that of adjutant to some important personage, a position in the army which seemed to him most attractive. "It is all very well for Rostov, whose father sends him ten thousand rubles at a time, to talk about not wishing to cringe to anybody and not be anyone's lackey, but I who have nothing but my brains have to make a career and must not miss opportunities, but must avail myself of them!" he reflected. He did not find Prince Andrew in Olmutz that day, but the appearance of the town where the headquarters and the diplomatic corps were stationed and the two Emperors were living with their suites, households, and courts only strengthened his desire to belong to that higher world. He knew no one, and despite his smart Guardsman's uniform, all these exalted personages passing in the streets in their elegant carriages with their plumes, ribbons, and medals, both courtiers and military men, seemed so immeasurably above him, an insignificant officer of the Guards, that they not only did not wish to, but simply could not, be aware of his existence. At the quarters of the commander in chief, Kutuzov, where he inquired for Bolkonski, all the adjutants and even the orderlies looked at him as if they wished to impress on him that a great many officers like him were always coming there and that everybody was heartily sick of them. In spite of this, or rather because of it, next day, November 15, after dinner he again went to Olmutz and, entering the house occupied by Kutuzov, asked for Bolkonski. Prince Andrew was in and Boris was shown into a large hall probably formerly used for dancing, but in which five beds now stood, and furniture of various kinds: a table, chairs, and a clavichord. One adjutant, nearest the door, was sitting at the table in a Persian dressing gown, writing. Another, the red, stout Nesvitski, lay on a bed with his arms under his head, laughing with an officer who had sat down beside him. A third was playing a Viennese waltz on the clavichord, while a fourth, lying on the clavichord, sang the tune. Bolkonski was not there. None of these gentlemen changed his position on seeing Boris. The one who was writing and whom Boris addressed turned round crossly and told him Bolkonski was on duty and that he should go through the door on the left into the reception room if he wished to see him. Boris thanked him and went to the reception room, where he found some ten officers and generals. When he entered, Prince Andrew, his eyes drooping contemptuously (with that peculiar expression of polite weariness which plainly says, "If it were not my duty I would not talk to you for a moment"), was listening to an old Russian general with decorations, who stood very erect, almost on tiptoe, with a soldier's obsequious expression on his purple face, reporting something. "Very well, then, be so good as to wait," said Prince Andrew to the general, in Russian, speaking with the French intonation he affected when he wished to speak contemptuously, and noticing Boris, Prince Andrew, paying no more heed to the general who ran after him imploring him to hear something more, nodded and turned to him with a cheerful smile. At that moment Boris clearly realized what he had before surmised, that in the army, besides the subordination and discipline prescribed in the military code, which he and the others knew in the regiment, there was another, more important, subordination, which made this tight-laced, purple-faced general wait respectfully while Captain Prince Andrew, for his own pleasure, chose to chat with Lieutenant Drubetskoy. More than ever was Boris resolved to serve in future not according to the written code, but under this unwritten law. He felt now that merely by having been recommended to Prince Andrew he had already risen above the general who at the front had the power to annihilate him, a lieutenant of the Guards. Prince Andrew came up to him and took his hand. "I am very sorry you did not find me in yesterday. I was fussing about with Germans all day. We went with Weyrother to survey the dispositions. When Germans start being accurate, there's no end to it!" Boris smiled, as if he understood what Prince Andrew was alluding to as something generally known. But it the first time he had heard Weyrother's name, or even the term "dispositions." "Well, my dear fellow, so you still want to be an adjutant? I have been thinking about you." "Yes, I was thinking"--for some reason Boris could not help blushing--"of asking the commander in chief. He has had a letter from Prince Kuragin about me. I only wanted to ask because I fear the Guards won't be in action," he added as if in apology. "All right, all right. We'll talk it over," replied Prince Andrew. "Only let me report this gentleman's business, and I shall be at your disposal." While Prince Andrew went to report about the purple-faced general, that gentleman--evidently not sharing Boris' conception of the advantages of the unwritten code of subordination--looked so fixedly at the presumptuous lieutenant who had prevented his finishing what he had to say to the adjutant that Boris felt uncomfortable. He turned away and waited impatiently for Prince Andrew's return from the commander in chief's room. "You see, my dear fellow, I have been thinking about you," said Prince Andrew when they had gone into the large room where the clavichord was. "It's no use your going to the commander in chief. He would say a lot of pleasant things, ask you to dinner" ("That would not be bad as regards the unwritten code," thought Boris), "but nothing more would come of it. There will soon be a battalion of us aides-de-camp and adjutants! But this is what we'll do: I have a good friend, an adjutant general and an excellent fellow, Prince Dolgorukov; and though you may not know it, the fact is that now Kutuzov with his staff and all of us count for nothing. Everything is now centered round the Emperor. So we will go to Dolgorukov; I have to go there anyhow and I have already spoken to him about you. We shall see whether he cannot attach you to himself or find a place for you somewhere nearer the sun." Prince Andrew always became specially keen when he had to guide a young man and help him to worldly success. Under cover of obtaining help of this kind for another, which from pride he would never accept for himself, he kept in touch with the circle which confers success and which attracted him. He very readily took up Boris' cause and went with him to Dolgorukov. It was late in the evening when they entered the palace at Olmutz occupied by the Emperors and their retinues. That same day a council of war had been held in which all the members of the Hofkriegsrath and both Emperors took part. At that council, contrary to the views of the old generals Kutuzov and Prince Schwartzenberg, it had been decided to advance immediately and give battle to Bonaparte. The council of war was just over when Prince Andrew accompanied by Boris arrived at the palace to find Dolgorukov. Everyone at headquarters was still under the spell of the day's council, at which the party of the young had triumphed. The voices of those who counseled delay and advised waiting for something else before advancing had been so completely silenced and their arguments confuted by such conclusive evidence of the advantages of attacking that what had been discussed at the council--the coming battle and the victory that would certainly result from it--no longer seemed to be in the future but in the past. All the advantages were on our side. Our enormous forces, undoubtedly superior to Napoleon's, were concentrated in one place, the troops inspired by the Emperors' presence were eager for action. The strategic position where the operations would take place was familiar in all its details to the Austrian General Weyrother: a lucky accident had ordained that the Austrian army should maneuver the previous year on the very fields where the French had now to be fought; the adjacent locality was known and shown in every detail on the maps, and Bonaparte, evidently weakened, was undertaking nothing. Dolgorukov, one of the warmest advocates of an attack, had just returned from the council, tired and exhausted but eager and proud of the victory that had been gained. Prince Andrew introduced his protege, but Prince Dolgorukov politely and firmly pressing his hand said nothing to Boris and, evidently unable to suppress the thoughts which were uppermost in his mind at that moment, addressed Prince Andrew in French. "Ah, my dear fellow, what a battle we have gained! God grant that the one that will result from it will be as victorious! However, dear fellow," he said abruptly and eagerly, "I must confess to having been unjust to the Austrians and especially to Weyrother. What exactitude, what minuteness, what knowledge of the locality, what foresight for every eventuality, every possibility even to the smallest detail! No, my dear fellow, no conditions better than our present ones could have been devised. This combination of Austrian precision with Russian valor--what more could be wished for?" "So the attack is definitely resolved on?" asked Bolkonski. "And do you know, my dear fellow, it seems to me that Bonaparte has decidedly lost bearings, you know that a letter was received from him today for the Emperor." Dolgorukov smiled significantly. "Is that so? And what did he say?" inquired Bolkonski. "What can he say? Tra-di-ri-di-ra and so on... merely to gain time. I tell you he is in our hands, that's certain! But what was most amusing," he continued, with a sudden, good-natured laugh, "was that we could not think how to address the reply! If not as 'Consul' and of course not as 'Emperor,' it seemed to me it should be to 'General Bonaparte.'" "But between not recognizing him as Emperor and calling him General Bonaparte, there is a difference," remarked Bolkonski. "That's just it," interrupted Dolgorukov quickly, laughing. "You know Bilibin--he's a very clever fellow. He suggested addressing him as 'Usurper and Enemy of Mankind.'" Dolgorukov laughed merrily. "Only that?" said Bolkonski. "All the same, it was Bilibin who found a suitable form for the address. He is a wise and clever fellow." "What was it?" "To the Head of the French Government... Au chef du gouvernement francais," said Dolgorukov, with grave satisfaction. "Good, wasn't it?" "Yes, but he will dislike it extremely," said Bolkonski. "Oh yes, very much! My brother knows him, he's dined with him--the present Emperor--more than once in Paris, and tells me he never met a more cunning or subtle diplomatist--you know, a combination of French adroitness and Italian play-acting! Do you know the tale about him and Count Markov? Count Markov was the only man who knew how to handle him. You know the story of the handkerchief? It is delightful!" And the talkative Dolgorukov, turning now to Boris, now to Prince Andrew, told how Bonaparte wishing to test Markov, our ambassador, purposely dropped a handkerchief in front of him and stood looking at Markov, probably expecting Markov to pick it up for him, and how Markov immediately dropped his own beside it and picked it up without touching Bonaparte's. "Delightful!" said Bolkonski. "But I have come to you, Prince, as a petitioner on behalf of this young man. You see..." but before Prince Andrew could finish, an aide-de-camp came in to summon Dolgorukov to the Emperor. "Oh, what a nuisance," said Dolgorukov, getting up hurriedly and pressing the hands of Prince Andrew and Boris. "You know I should be very glad to do all in my power both for you and for this dear young man." Again he pressed the hand of the latter with an expression of good-natured, sincere, and animated levity. "But you see... another time!" Boris was excited by the thought of being so close to the higher powers as he felt himself to be at that moment. He was conscious that here he was in contact with the springs that set in motion the enormous movements of the mass of which in his regiment he felt himself a tiny, obedient, and insignificant atom. They followed Prince Dolgorukov out into the corridor and met--coming out of the door of the Emperor's room by which Dolgorukov had entered--a short man in civilian clothes with a clever face and sharply projecting jaw which, without spoiling his face, gave him a peculiar vivacity and shiftiness of expression. This short man nodded to Dolgorukov as to an intimate friend and stared at Prince Andrew with cool intensity, walking straight toward him and evidently expecting him to bow or to step out of his way. Prince Andrew did neither: a look of animosity appeared on his face and the other turned away and went down the side of the corridor. "Who was that?" asked Boris. "He is one of the most remarkable, but to me most unpleasant of men- the Minister of Foreign Affairs, Prince Adam Czartoryski.... It is such men as he who decide the fate of nations," added Bolkonski with a sigh he could not suppress, as they passed out of the palace. Next day, the army began its campaign, and up to the very battle of Austerlitz, Boris was unable to see either Prince Andrew or Dolgorukov again and remained for a while with the Ismaylov regiment. CHAPTER X At dawn on the sixteenth of November, Denisov's squadron, in which Nicholas Rostov served and which was in Prince Bagration's detachment, moved from the place where it had spent the night, advancing into action as arranged, and after going behind other columns for about two thirds of a mile was stopped on the highroad. Rostov saw the Cossacks and then the first and second squadrons of hussars and infantry battalions and artillery pass by and go forward and then Generals Bagration and Dolgorukov ride past with their adjutants. All the fear before action which he had experienced as previously, all the inner struggle to conquer that fear, all his dreams of distinguishing himself as a true hussar in this battle, had been wasted. Their squadron remained in reserve and Nicholas Rostov spent that day in a dull and wretched mood. At nine in the morning, he heard firing in front and shouts of hurrah, and saw wounded being brought back (there were not many of them), and at last he saw how a whole detachment of French cavalry was brought in, convoyed by a sontnya of Cossacks. Evidently the affair was over and, though not big, had been a successful engagement. The men and officers returning spoke of a brilliant victory, of the occupation of the town of Wischau and the capture of a whole French squadron. The day was bright and sunny after a sharp night frost, and the cheerful glitter of that autumn day was in keeping with the news of victory which was conveyed, not only by the tales of those who had taken part in it, but also by the joyful expression on the faces of soldiers, officers, generals, and adjutants, as they passed Rostov going or coming. And Nicholas, who had vainly suffered all the dread that precedes a battle and had spent that happy day in inactivity, was all the more depressed. "Come here, Wostov. Let's dwink to dwown our gwief!" shouted Denisov, who had settled down by the roadside with a flask and some food. The officers gathered round Denisov's canteen, eating and talking. "There! They are bringing another!" cried one of the officers, indicating a captive French dragoon who was being brought in on foot by two Cossacks. One of them was leading by the bridle a fine large French horse he had taken from the prisoner. "Sell us that horse!" Denisov called out to the Cossacks. "If you like, your honor!" The officers got up and stood round the Cossacks and their prisoner. The French dragoon was a young Alsatian who spoke French with a German accent. He was breathless with agitation, his face was red, and when he heard some French spoken he at once began speaking to the officers, addressing first one, then another. He said he would not have been taken, it was not his fault but the corporal's who had sent him to seize some horsecloths, though he had told him the Russians were there. And at every word he added: "But don't hurt my little horse!" and stroked the animal. It was plain that he did not quite grasp where he was. Now he excused himself for having been taken prisoner and now, imagining himself before his own officers, insisted on his soldierly discipline and zeal in the service. He brought with him into our rearguard all the freshness of atmosphere of the French army, which was so alien to us. The Cossacks sold the horse for two gold pieces, and Rostov, being the richest of the officers now that he had received his money, bought it. "But don't hurt my little horse!" said the Alsatian good-naturedly to Rostov when the animal was handed over to the hussar. Rostov smilingly reassured the dragoon and gave him money. "Alley! Alley!" said the Cossack, touching the prisoner's arm to make him go on. "The Emperor! The Emperor!" was suddenly heard among the hussars. All began to run and bustle, and Rostov saw coming up the road behind him several riders with white plumes in their hats. In a moment everyone was in his place, waiting. Rostov did not know or remember how he ran to his place and mounted. Instantly his regret at not having been in action and his dejected mood amid people of whom he was weary had gone, instantly every thought of himself had vanished. He was filled with happiness at his nearness to the Emperor. He felt that this nearness by itself made up to him for the day he had lost. He was happy as a lover when the longed-for moment of meeting arrives. Not daring to look round and without looking round, he was ecstatically conscious of his approach. He felt it not only from the sound of the hoofs of the approaching cavalcade, but because as he drew near everything grew brighter, more joyful, more significant, and more festive around him. Nearer and nearer to Rostov came that sun shedding beams of mild and majestic light around, and already he felt himself enveloped in those beams, he heard his voice, that kindly, calm, and majestic voice that was yet so simple! And as if in accord with Rostov's feeling, there was a deathly stillness amid which was heard the Emperor's voice. "The Pavlograd hussars?" he inquired. "The reserves, sire!" replied a voice, a very human one compared to that which had said: "The Pavlograd hussars?" The Emperor drew level with Rostov and halted. Alexander's face was even more beautiful than it had been three days before at the review. It shone with such gaiety and youth, such innocent youth, that it suggested the liveliness of a fourteen-year-old boy, and yet it was the face of the majestic Emperor. Casually, while surveying the squadron, the Emperor's eyes met Rostov's and rested on them for not more than two seconds. Whether or no the Emperor understood what was going on in Rostov's soul (it seemed to Rostov that he understood everything), at any rate his light-blue eyes gazed for about two seconds into Rostov's face. A gentle, mild light poured from them. Then all at once he raised his eyebrows, abruptly touched his horse with his left foot, and galloped on. The younger Emperor could not restrain his wish to be present at the battle and, in spite of the remonstrances of his courtiers, at twelve o'clock left the third column with which he had been and galloped toward the vanguard. Before he came up with the hussars, several adjutants met him with news of the successful result of the action. This battle, which consisted in the capture of a French squadron, was represented as a brilliant victory over the French, and so the Emperor and the whole army, especially while the smoke hung over the battlefield, believed that the French had been defeated and were retreating against their will. A few minutes after the Emperor had passed, the Pavlograd division was ordered to advance. In Wischau itself, a petty German town, Rostov saw the Emperor again. In the market place, where there had been some rather heavy firing before the Emperor's arrival, lay several killed and wounded soldiers whom there had not been time to move. The Emperor, surrounded by his suite of officers and courtiers, was riding a bobtailed chestnut mare, a different one from that which he had ridden at the review, and bending to one side he gracefully held a gold lorgnette to his eyes and looked at a soldier who lay prone, with blood on his uncovered head. The wounded soldier was so dirty, coarse, and revolting that his proximity to the Emperor shocked Rostov. Rostov saw how the Emperor's rather round shoulders shuddered as if a cold shiver had run down them, how his left foot began convulsively tapping the horse's side with the spur, and how the well-trained horse looked round unconcerned and did not stir. An adjutant, dismounting, lifted the soldier under the arms to place him on a stretcher that had been brought. The soldier groaned. "Gently, gently! Can't you do it more gently?" said the Emperor apparently suffering more than the dying soldier, and he rode away. Rostov saw tears filling the Emperor's eyes and heard him, as he was riding away, say to Czartoryski: "What a terrible thing war is: what a terrible thing! Quelle terrible chose que la guerre!" The troops of the vanguard were stationed before Wischau, within sight of the enemy's lines, which all day long had yielded ground to us at the least firing. The Emperor's gratitude was announced to the vanguard, rewards were promised, and the men received a double ration of vodka. The campfires crackled and the soldiers' songs resounded even more merrily than on the previous night. Denisov celebrated his promotion to the rank of major, and Rostov, who had already drunk enough, at the end of the feast proposed the Emperor's health. "Not 'our Sovereign, the Emperor,' as they say at official dinners," said he, "but the health of our Sovereign, that good, enchanting, and great man! Let us drink to his health and to the certain defeat of the French!" "If we fought before," he said, "not letting the French pass, as at Schon Grabern, what shall we not do now when he is at the front? We will all die for him gladly! Is it not so, gentlemen? Perhaps I am not saying it right, I have drunk a good deal--but that is how I feel, and so do you too! To the health of Alexander the First! Hurrah!" "Hurrah!" rang the enthusiastic voices of the officers. And the old cavalry captain, Kirsten, shouted enthusiastically and no less sincerely than the twenty-year-old Rostov. When the officers had emptied and smashed their glasses, Kirsten filled others and, in shirt sleeves and breeches, went glass in hand to the soldiers' bonfires and with his long gray mustache, his white chest showing under his open shirt, he stood in a majestic pose in the light of the campfire, waving his uplifted arm. "Lads! here's to our Sovereign, the Emperor, and victory over our enemies! Hurrah!" he exclaimed in his dashing, old, hussar's baritone. The hussars crowded round and responded heartily with loud shouts. Late that night, when all had separated, Denisov with his short hand patted his favorite, Rostov, on the shoulder. "As there's no one to fall in love with on campaign, he's fallen in love with the Tsar," he said. "Denisov, don't make fun of it!" cried Rostov. "It is such a lofty, beautiful feeling, such a..." "I believe it, I believe it, fwiend, and I share and appwove..." "No, you don't understand!" And Rostov got up and went wandering among the campfires, dreaming of what happiness it would be to die--not in saving the Emperor's life (he did not even dare to dream of that), but simply to die before his eyes. He really was in love with the Tsar and the glory of the Russian arms and the hope of future triumph. And he was not the only man to experience that feeling during those memorable days preceding the battle of Austerlitz: nine tenths of the men in the Russian army were then in love, though less ecstatically, with their Tsar and the glory of the Russian arms. CHAPTER XI The next day the Emperor stopped at Wischau, and Villier, his physician, was repeatedly summoned to see him. At headquarters and among the troops near by the news spread that the Emperor was unwell. He ate nothing and had slept badly that night, those around him reported. The cause of this indisposition was the strong impression made on his sensitive mind by the sight of the killed and wounded. At daybreak on the seventeenth, a French officer who had come with a flag of truce, demanding an audience with the Russian Emperor, was brought into Wischau from our outposts. This officer was Savary. The Emperor had only just fallen asleep and so Savary had to wait. At midday he was admitted to the Emperor, and an hour later he rode off with Prince Dolgorukov to the advanced post of the French army. It was rumored that Savary had been sent to propose to Alexander a meeting with Napoleon. To the joy and pride of the whole army, a personal interview was refused, and instead of the Sovereign, Prince Dolgorukov, the victor at Wischau, was sent with Savary to negotiate with Napoleon if, contrary to expectations, these negotiations were actuated by a real desire for peace. Toward evening Dolgorukov came back, went straight to the Tsar, and remained alone with him for a long time. On the eighteenth and nineteenth of November, the army advanced two days' march and the enemy's outposts after a brief interchange of shots retreated. In the highest army circles from midday on the nineteenth, a great, excitedly bustling activity began which lasted till the morning of the twentieth, when the memorable battle of Austerlitz was fought. Till midday on the nineteenth, the activity--the eager talk, running to and fro, and dispatching of adjutants--was confined to the Emperor's headquarters. But on the afternoon of that day, this activity reached Kutuzov's headquarters and the staffs of the commanders of columns. By evening, the adjutants had spread it to all ends and parts of the army, and in the night from the nineteenth to the twentieth, the whole eighty thousand allied troops rose from their bivouacs to the hum of voices, and the army swayed and started in one enormous mass six miles long. The concentrated activity which had begun at the Emperor's headquarters in the morning and had started the whole movement that followed was like the first movement of the main wheel of a large tower clock. One wheel slowly moved, another was set in motion, and a third, and wheels began to revolve faster and faster, levers and cogwheels to work, chimes to play, figures to pop out, and the hands to advance with regular motion as a result of all that activity. Just as in the mechanism of a clock, so in the mechanism of the military machine, an impulse once given leads to the final result; and just as indifferently quiescent till the moment when motion is transmitted to them are the parts of the mechanism which the impulse has not yet reached. Wheels creak on their axles as the cogs engage one another and the revolving pulleys whirr with the rapidity of their movement, but a neighboring wheel is as quiet and motionless as though it were prepared to remain so for a hundred years; but the moment comes when the lever catches it and obeying the impulse that wheel begins to creak and joins in the common motion the result and aim of which are beyond its ken. Just as in a clock, the result of the complicated motion of innumerable wheels and pulleys is merely a slow and regular movement of the hands which show the time, so the result of all the complicated human activities of 160,000 Russians and French--all their passions, desires, remorse, humiliations, sufferings, outbursts of pride, fear, and enthusiasm--was only the loss of the battle of Austerlitz, the so-called battle of the three Emperors--that is to say, a slow movement of the hand on the dial of human history. Prince Andrew was on duty that day and in constant attendance on the commander in chief. At six in the evening, Kutuzov went to the Emperor's headquarters and after staying but a short time with the Tsar went to see the grand marshal of the court, Count Tolstoy. Bolkonski took the opportunity to go in to get some details of the coming action from Dolgorukov. He felt that Kutuzov was upset and dissatisfied about something and that at headquarters they were dissatisfied with him, and also that at the Emperor's headquarters everyone adopted toward him the tone of men who know something others do not know: he therefore wished to speak to Dolgorukov. "Well, how d'you do, my dear fellow?" said Dolgorukov, who was sitting at tea with Bilibin. "The fete is for tomorrow. How is your old fellow? Out of sorts?" "I won't say he is out of sorts, but I fancy he would like to be heard." "But they heard him at the council of war and will hear him when he talks sense, but to temporize and wait for something now when Bonaparte fears nothing so much as a general battle is impossible." "Yes, you have seen him?" said Prince Andrew. "Well, what is Bonaparte like? How did he impress you?" "Yes, I saw him, and am convinced that he fears nothing so much as a general engagement," repeated Dolgorukov, evidently prizing this general conclusion which he had arrived at from his interview with Napoleon. "If he weren't afraid of a battle why did he ask for that interview? Why negotiate, and above all why retreat, when to retreat is so contrary to his method of conducting war? Believe me, he is afraid, afraid of a general battle. His hour has come! Mark my words!" "But tell me, what is he like, eh?" said Prince Andrew again. "He is a man in a gray overcoat, very anxious that I should call him 'Your Majesty,' but who, to his chagrin, got no title from me! That's the sort of man he is, and nothing more," replied Dolgorukov, looking round at Bilibin with a smile. "Despite my great respect for old Kutuzov," he continued, "we should be a nice set of fellows if we were to wait about and so give him a chance to escape, or to trick us, now that we certainly have him in our hands! No, we mustn't forget Suvorov and his rule--not to put yourself in a position to be attacked, but yourself to attack. Believe me in war the energy of young men often shows the way better than all the experience of old Cunctators." "But in what position are we going to attack him? I have been at the outposts today and it is impossible to say where his chief forces are situated," said Prince Andrew. He wished to explain to Dolgorukov a plan of attack he had himself formed. "Oh, that is all the same," Dolgorukov said quickly, and getting up he spread a map on the table. "All eventualities have been foreseen. If he is standing before Brunn..." And Prince Dolgorukov rapidly but indistinctly explained Weyrother's plan of a flanking movement. Prince Andrew began to reply and to state his own plan, which might have been as good as Weyrother's, but for the disadvantage that Weyrother's had already been approved. As soon as Prince Andrew began to demonstrate the defects of the latter and the merits of his own plan, Prince Dolgorukov ceased to listen to him and gazed absent-mindedly not at the map, but at Prince Andrew's face. "There will be a council of war at Kutuzov's tonight, though; you can say all this there," remarked Dolgorukov. "I will do so," said Prince Andrew, moving away from the map. "Whatever are you bothering about, gentlemen?" said Bilibin, who, till then, had listened with an amused smile to their conversation and now was evidently ready with a joke. "Whether tomorrow brings victory or defeat, the glory of our Russian arms is secure. Except your Kutuzov, there is not a single Russian in command of a column! The commanders are: Herr General Wimpfen, le Comte de Langeron, le Prince de Lichtenstein, le Prince, de Hohenlohe, and finally Prishprish, and so on like all those Polish names." "Be quiet, backbiter!" said Dolgorukov. "It is not true; there are now two Russians, Miloradovich, and Dokhturov, and there would be a third, Count Arakcheev, if his nerves were not too weak." "However, I think General Kutuzov has come out," said Prince Andrew. "I wish you good luck and success, gentlemen!" he added and went out after shaking hands with Dolgorukov and Bilibin. On the way home, Prince Andrew could not refrain from asking Kutuzov, who was sitting silently beside him, what he thought of tomorrow's battle. Kutuzov looked sternly at his adjutant and, after a pause, replied: "I think the battle will be lost, and so I told Count Tolstoy and asked him to tell the Emperor. What do you think he replied? 'But, my dear general, I am engaged with rice and cutlets, look after military matters yourself!' Yes... That was the answer I got!" CHAPTER XII Shortly after nine o'clock that evening, Weyrother drove with his plans to Kutuzov's quarters where the council of war was to be held. All the commanders of columns were summoned to the commander in chief's and with the exception of Prince Bagration, who declined to come, were all there at the appointed time. Weyrother, who was in full control of the proposed battle, by his eagerness and briskness presented a marked contrast to the dissatisfied and drowsy Kutuzov, who reluctantly played the part of chairman and president of the council of war. Weyrother evidently felt himself to be at the head of a movement that had already become unrestrainable. He was like a horse running downhill harnessed to a heavy cart. Whether he was pulling it or being pushed by it he did not know, but rushed along at headlong speed with no time to consider what this movement might lead to. Weyrother had been twice that evening to the enemy's picket line to reconnoiter personally, and twice to the Emperors, Russian and Austrian, to report and explain, and to his headquarters where he had dictated the dispositions in German, and now, much exhausted, he arrived at Kutuzov's. He was evidently so busy that he even forgot to be polite to the commander in chief. He interrupted him, talked rapidly and indistinctly, without looking at the man he was addressing, and did not reply to questions put to him. He was bespattered with mud and had a pitiful, weary, and distracted air, though at the same time he was haughty and self-confident. Kutuzov was occupying a nobleman's castle of modest dimensions near Ostralitz. In the large drawing room which had become the commander in chief's office were gathered Kutuzov himself, Weyrother, and the members of the council of war. They were drinking tea, and only awaited Prince Bagration to begin the council. At last Bagration's orderly came with the news that the prince could not attend. Prince Andrew came in to inform the commander in chief of this and, availing himself of permission previously given him by Kutuzov to be present at the council, he remained in the room. "Since Prince Bagration is not coming, we may begin," said Weyrother, hurriedly rising from his seat and going up to the table on which an enormous map of the environs of Brunn was spread out. Kutuzov, with his uniform unbuttoned so that his fat neck bulged over his collar as if escaping, was sitting almost asleep in a low chair, with his podgy old hands resting symmetrically on its arms. At the sound of Weyrother's voice, he opened his one eye with an effort. "Yes, yes, if you please! It is already late," said he, and nodding his head he let it droop and again closed his eye. If at first the members of the council thought that Kutuzov was pretending to sleep, the sounds his nose emitted during the reading that followed proved that the commander in chief at that moment was absorbed by a far more serious matter than a desire to show his contempt for the dispositions or anything else--he was engaged in satisfying the irresistible human need for sleep. He really was asleep. Weyrother, with the gesture of a man too busy to lose a moment, glanced at Kutuzov and, having convinced himself that he was asleep, took up a paper and in a loud, monotonous voice began to read out the dispositions for the impending battle, under a heading which he also read out: "Dispositions for an attack on the enemy position behind Kobelnitz and Sokolnitz, November 30, 1805." The dispositions were very complicated and difficult. They began as follows: "As the enemy's left wing rests on wooded hills and his right extends along Kobelnitz and Sokolnitz behind the ponds that are there, while we, on the other hand, with our left wing by far outflank his right, it is advantageous to attack the enemy's latter wing especially if we occupy the villages of Sokolnitz and Kobelnitz, whereby we can both fall on his flank and pursue him over the plain between Schlappanitz and the Thuerassa forest, avoiding the defiles of Schlappanitz and Bellowitz which cover the enemy's front. For this object it is necessary that... The first column marches... The second column marches... The third column marches..." and so on, read Weyrother. The generals seemed to listen reluctantly to the difficult dispositions. The tall, fair-haired General Buxhowden stood, leaning his back against the wall, his eyes fixed on a burning candle, and seemed not to listen or even to wish to be thought to listen. Exactly opposite Weyrother, with his glistening wide-open eyes fixed upon him and his mustache twisted upwards, sat the ruddy Miloradovich in a military pose, his elbows turned outwards, his hands on his knees, and his shoulders raised. He remained stubbornly silent, gazing at Weyrother's face, and only turned away his eyes when the Austrian chief of staff finished reading. Then Miloradovich looked round significantly at the other generals. But one could not tell from that significant look whether he agreed or disagreed and was satisfied or not with the arrangements. Next to Weyrother sat Count Langeron who, with a subtle smile that never left his typically southern French face during the whole time of the reading, gazed at his delicate fingers which rapidly twirled by its corners a gold snuffbox on which was a portrait. In the middle of one of the longest sentences, he stopped the rotary motion of the snuffbox, raised his head, and with inimical politeness lurking in the corners of his thin lips interrupted Weyrother, wishing to say something. But the Austrian general, continuing to read, frowned angrily and jerked his elbows, as if to say: "You can tell me your views later, but now be so good as to look at the map and listen." Langeron lifted his eyes with an expression of perplexity, turned round to Miloradovich as if seeking an explanation, but meeting the latter's impressive but meaningless gaze drooped his eyes sadly and again took to twirling his snuffbox. "A geography lesson!" he muttered as if to himself, but loud enough to be heard. Przebyszewski, with respectful but dignified politeness, held his hand to his ear toward Weyrother, with the air of a man absorbed in attention. Dohkturov, a little man, sat opposite Weyrother, with an assiduous and modest mien, and stooping over the outspread map conscientiously studied the dispositions and the unfamiliar locality. He asked Weyrother several times to repeat words he had not clearly heard and the difficult names of villages. Weyrother complied and Dohkturov noted them down. When the reading which lasted more than an hour was over, Langeron again brought his snuffbox to rest and, without looking at Weyrother or at anyone in particular, began to say how difficult it was to carry out such a plan in which the enemy's position was assumed to be known, whereas it was perhaps not known, since the enemy was in movement. Langeron's objections were valid but it was obvious that their chief aim was to show General Weyrother--who had read his dispositions with as much self-confidence as if he were addressing school children- that he had to do, not with fools, but with men who could teach him something in military matters. When the monotonous sound of Weyrother's voice ceased, Kutuzov opened his eye as a miller wakes up when the soporific drone of the mill wheel is interrupted. He listened to what Langeron said, as if remarking, "So you are still at that silly business!" quickly closed his eye again, and let his head sink still lower. Langeron, trying as virulently as possible to sting Weyrother's vanity as author of the military plan, argued that Bonaparte might easily attack instead of being attacked, and so render the whole of this plan perfectly worthless. Weyrother met all objections with a firm and contemptuous smile, evidently prepared beforehand to meet all objections be they what they might. "If he could attack us, he would have done so today," said he. "So you think he is powerless?" said Langeron. "He has forty thousand men at most," replied Weyrother, with the smile of a doctor to whom an old wife wishes to explain the treatment of a case. "In that case he is inviting his doom by awaiting our attack," said Langeron, with a subtly ironical smile, again glancing round for support to Miloradovich who was near him. But Miloradovich was at that moment evidently thinking of anything rather than of what the generals were disputing about. "Ma foi!" said he, "tomorrow we shall see all that on the battlefield." Weyrother again gave that smile which seemed to say that to him it was strange and ridiculous to meet objections from Russian generals and to have to prove to them what he had not merely convinced himself of, but had also convinced the sovereign Emperors of. "The enemy has quenched his fires and a continual noise is heard from his camp," said he. "What does that mean? Either he is retreating, which is the only thing we need fear, or he is changing his position." (He smiled ironically.) "But even if he also took up a position in the Thuerassa, he merely saves us a great deal of trouble and all our arrangements to the minutest detail remain the same." "How is that?..." began Prince Andrew, who had for long been waiting an opportunity to express his doubts. Kutuzov here woke up, coughed heavily, and looked round at the generals. "Gentlemen, the dispositions for tomorrow--or rather for today, for it is past midnight--cannot now be altered," said he. "You have heard them, and we shall all do our duty. But before a battle, there is nothing more important..." he paused, "than to have a good sleep." He moved as if to rise. The generals bowed and retired. It was past midnight. Prince Andrew went out. The council of war, at which Prince Andrew had not been able to express his opinion as he had hoped to, left on him a vague and uneasy impression. Whether Dolgorukov and Weyrother, or Kutuzov, Langeron, and the others who did not approve of the plan of attack, were right--he did not know. "But was it really not possible for Kutuzov to state his views plainly to the Emperor? Is it possible that on account of court and personal considerations tens of thousands of lives, and my life, my life," he thought, "must be risked?" "Yes, it is very likely that I shall be killed tomorrow," he thought. And suddenly, at this thought of death, a whole series of most distant, most intimate, memories rose in his imagination: he remembered his last parting from his father and his wife; he remembered the days when he first loved her. He thought of her pregnancy and felt sorry for her and for himself, and in a nervously emotional and softened mood he went out of the hut in which he was billeted with Nesvitski and began to walk up and down before it. The night was foggy and through the fog the moonlight gleamed mysteriously. "Yes, tomorrow, tomorrow!" he thought. "Tomorrow everything may be over for me! All these memories will be no more, none of them will have any meaning for me. Tomorrow perhaps, even certainly, I have a presentiment that for the first time I shall have to show all I can do." And his fancy pictured the battle, its loss, the concentration of fighting at one point, and the hesitation of all the commanders. And then that happy moment, that Toulon for which he had so long waited, presents itself to him at last. He firmly and clearly expresses his opinion to Kutuzov, to Weyrother, and to the Emperors. All are struck by the justness of his views, but no one undertakes to carry them out, so he takes a regiment, a division- stipulates that no one is to interfere with his arrangements--leads his division to the decisive point, and gains the victory alone. "But death and suffering?" suggested another voice. Prince Andrew, however, did not answer that voice and went on dreaming of his triumphs. The dispositions for the next battle are planned by him alone. Nominally he is only an adjutant on Kutuzov's staff, but he does everything alone. The next battle is won by him alone. Kutuzov is removed and he is appointed... "Well and then?" asked the other voice. "If before that you are not ten times wounded, killed, or betrayed, well... what then?..." "Well then," Prince Andrew answered himself, "I don't know what will happen and don't want to know, and can't, but if I want this--want glory, want to be known to men, want to be loved by them, it is not my fault that I want it and want nothing but that and live only for that. Yes, for that alone! I shall never tell anyone, but, oh God! what am I to do if I love nothing but fame and men's esteem? Death, wounds, the loss of family--I fear nothing. And precious and dear as many persons are to me--father, sister, wife- those dearest to me--yet dreadful and unnatural as it seems, I would give them all at once for a moment of glory, of triumph over men, of love from men I don't know and never shall know, for the love of these men here," he thought, as he listened to voices in Kutuzov's courtyard. The voices were those of the orderlies who were packing up; one voice, probably a coachman's, was teasing Kutuzov's old cook whom Prince Andrew knew, and who was called Tit. He was saying, "Tit, I say, Tit!" "Well?" returned the old man. "Go, Tit, thresh a bit!" said the wag. "Oh, go to the devil!" called out a voice, drowned by the laughter of the orderlies and servants. "All the same, I love and value nothing but triumph over them all, I value this mystic power and glory that is floating here above me in this mist!" CHAPTER XIII That same night, Rostov was with a platoon on skirmishing duty in front of Bagration's detachment. His hussars were placed along the line in couples and he himself rode along the line trying to master the sleepiness that kept coming over him. An enormous space, with our army's campfires dimly glowing in the fog, could be seen behind him; in front of him was misty darkness. Rostov could see nothing, peer as he would into that foggy distance: now something gleamed gray, now there was something black, now little lights seemed to glimmer where the enemy ought to be, now he fancied it was only something in his own eyes. His eyes kept closing, and in his fancy appeared--now the Emperor, now Denisov, and now Moscow memories--and he again hurriedly opened his eyes and saw close before him the head and ears of the horse he was riding, and sometimes, when he came within six paces of them, the black figures of hussars, but in the distance was still the same misty darkness. "Why not?... It might easily happen," thought Rostov, "that the Emperor will meet me and give me an order as he would to any other officer; he'll say: 'Go and find out what's there.' There are many stories of his getting to know an officer in just such a chance way and attaching him to himself! What if he gave me a place near him? Oh, how I would guard him, how I would tell him the truth, how I would unmask his deceivers!" And in order to realize vividly his love devotion to the sovereign, Rostov pictured to himself an enemy or a deceitful German, whom he would not only kill with pleasure but whom he would slap in the face before the Emperor. Suddenly a distant shout aroused him. He started and opened his eyes. "Where am I? Oh yes, in the skirmishing line... pass and watchword--shaft, Olmutz. What a nuisance that our squadron will be in reserve tomorrow," he thought. "I'll ask leave to go to the front, this may be my only chance of seeing the Emperor. It won't be long now before I am off duty. I'll take another turn and when I get back I'll go to the general and ask him." He readjusted himself in the saddle and touched up his horse to ride once more round his hussars. It seemed to him that it was getting lighter. To the left he saw a sloping descent lit up, and facing it a black knoll that seemed as steep as a wall. On this knoll there was a white patch that Rostov could not at all make out: was it a glade in the wood lit up by the moon, or some unmelted snow, or some white houses? He even thought something moved on that white spot. "I expect it's snow... that spot... a spot--une tache," he thought. "There now... it's not a tache... Natasha... sister, black eyes... Na... tasha... (Won't she be surprised when I tell her how I've seen the Emperor?) Natasha... take my sabretache..."--"Keep to the right, your honor, there are bushes here," came the voice of an hussar, past whom Rostov was riding in the act of falling asleep. Rostov lifted his head that had sunk almost to his horse's mane and pulled up beside the hussar. He was succumbing to irresistible, youthful, childish drowsiness. "But what was I thinking? I mustn't forget. How shall I speak to the Emperor? No, that's not it--that's tomorrow. Oh yes! Natasha... sabretache... saber them...Whom? The hussars... Ah, the hussars with mustaches. Along the Tverskaya Street rode the hussar with mustaches... I thought about him too, just opposite Guryev's house... Old Guryev.... Oh, but Denisov's a fine fellow. But that's all nonsense. The chief thing is that the Emperor is here. How he looked at me and wished to say something, but dared not.... No, it was I who dared not. But that's nonsense, the chief thing is not to forget the important thing I was thinking of. Yes, Na-tasha, sabretache, oh, yes, yes! That's right!" And his head once more sank to his horse's neck. All at once it seemed to him that he was being fired at. "What? What? What?... Cut them down! What?..." said Rostov, waking up. At the moment he opened his eyes he heard in front of him, where the enemy was, the long-drawn shouts of thousands of voices. His horse and the horse of the hussar near him pricked their ears at these shouts. Over there, where the shouting came from, a fire flared up and went out again, then another, and all along the French line on the hill fires flared up and the shouting grew louder and louder. Rostov could hear the sound of French words but could not distinguish them. The din of many voices was too great; all he could hear was: "ahahah!" and "rrrr!" "What's that? What do you make of it?" said Rostov to the hussar beside him. "That must be the enemy's camp!" The hussar did not reply. "Why, don't you hear it?" Rostov asked again, after waiting for a reply. "Who can tell, your honor?" replied the hussar reluctantly. "From the direction, it must be the enemy," repeated Rostov. "It may be he or it may be nothing," muttered the hussar. "It's dark... Steady!" he cried to his fidgeting horse. Rostov's horse was also getting restive: it pawed the frozen ground, pricking its ears at the noise and looking at the lights. The shouting grew still louder and merged into a general roar that only an army of several thousand men could produce. The lights spread farther and farther, probably along the line of the French camp. Rostov no longer wanted to sleep. The gay triumphant shouting of the enemy army had a stimulating effect on him. "Vive l'Empereur! L'Empereur!" he now heard distinctly. "They can't be far off, probably just beyond the stream," he said to the hussar beside him. The hussar only sighed without replying and coughed angrily. The sound of horse's hoofs approaching at a trot along the line of hussars was heard, and out of the foggy darkness the figure of a sergeant of hussars suddenly appeared, looming huge as an elephant. "Your honor, the generals!" said the sergeant, riding up to Rostov. Rostov, still looking round toward the fires and the shouts, rode with the sergeant to meet some mounted men who were riding along the line. One was on a white horse. Prince Bagration and Prince Dolgorukov with their adjutants had come to witness the curious phenomenon of the lights and shouts in the enemy's camp. Rostov rode up to Bagration, reported to him, and then joined the adjutants listening to what the generals were saying. "Believe me," said Prince Dolgorukov, addressing Bagration, "it is nothing but a trick! He has retreated and ordered the rearguard to kindle fires and make a noise to deceive us." "Hardly," said Bagration. "I saw them this evening on that knoll; if they had retreated they would have withdrawn from that too.... Officer!" said Bagration to Rostov, "are the enemy's skirmishers still there?" "They were there this evening, but now I don't know, your excellency. Shall I go with some of my hussars to see?" replied Rostov. Bagration stopped and, before replying, tried to see Rostov's face in the mist. "Well, go and see," he said, after a pause. "Yes, sir." Rostov spurred his horse, called to Sergeant Fedchenko and two other hussars, told them to follow him, and trotted downhill in the direction from which the shouting came. He felt both frightened and pleased to be riding alone with three hussars into that mysterious and dangerous misty distance where no one had been before him. Bagration called to him from the hill not to go beyond the stream, but Rostov pretended not to hear him and did not stop but rode on and on, continually mistaking bushes for trees and gullies for men and continually discovering his mistakes. Having descended the hill at a trot, he no longer saw either our own or the enemy's fires, but heard the shouting of the French more loudly and distinctly. In the valley he saw before him something like a river, but when he reached it he found it was a road. Having come out onto the road he reined in his horse, hesitating whether to ride along it or cross it and ride over the black field up the hillside. To keep to the road which gleamed white in the mist would have been safer because it would be easier to see people coming along it. "Follow me!" said he, crossed the road, and began riding up the hill at a gallop toward the point where the French pickets had been standing that evening. "Your honor, there he is!" cried one of the hussars behind him. And before Rostov had time to make out what the black thing was that had suddenly appeared in the fog, there was a flash, followed by a report, and a bullet whizzing high up in the mist with a plaintive sound passed out of hearing. Another musket missed fire but flashed in the pan. Rostov turned his horse and galloped back. Four more reports followed at intervals, and the bullets passed somewhere in the fog singing in different tones. Rostov reined in his horse, whose spirits had risen, like his own, at the firing, and went back at a footpace. "Well, some more! Some more!" a merry voice was saying in his soul. But no more shots came. Only when approaching Bagration did Rostov let his horse gallop again, and with his hand at the salute rode up to the general. Dolgorukov was still insisting that the French had retreated and had only lit fires to deceive us. "What does that prove?" he was saying as Rostov rode up. "They might retreat and leave the pickets." "It's plain that they have not all gone yet, Prince," said Bagration. "Wait till tomorrow morning, we'll find out everything tomorrow." "The picket is still on the hill, your excellency, just where it was in the evening," reported Rostov, stooping forward with his hand at the salute and unable to repress the smile of delight induced by his ride and especially by the sound of the bullets. "Very good, very good," said Bagration. "Thank you, officer." "Your excellency," said Rostov, "may I ask a favor?" "What is it?" "Tomorrow our squadron is to be in reserve. May I ask to be attached to the first squadron?" "What's your name?" "Count Rostov." "Oh, very well, you may stay in attendance on me." "Count Ilya Rostov's son?" asked Dolgorukov. But Rostov did not reply. "Then I may reckon on it, your excellency?" "I will give the order." "Tomorrow very likely I may be sent with some message to the Emperor," thought Rostov. "Thank God!" The fires and shouting in the enemy's army were occasioned by the fact that while Napoleon's proclamation was being read to the troops the Emperor himself rode round his bivouacs. The soldiers, on seeing him, lit wisps of straw and ran after him, shouting, "Vive l'Empereur!" Napoleon's proclamation was as follows: Soldiers! The Russian army is advancing against you to avenge the Austrian army of Ulm. They are the same battalions you broke at Hollabrunn and have pursued ever since to this place. The position we occupy is a strong one, and while they are marching to go round me on the right they will expose a flank to me. Soldiers! I will myself direct your battalions. I will keep out of fire if you with your habitual valor carry disorder and confusion into the enemy's ranks, but should victory be in doubt, even for a moment, you will see your Emperor exposing himself to the first blows of the enemy, for there must be no doubt of victory, especially on this day when what is at stake is the honor of the French infantry, so necessary to the honor of our nation. Do not break your ranks on the plea of removing the wounded! Let every man be fully imbued with the thought that we must defeat these hirelings of England, inspired by such hatred of our nation! This victory will conclude our campaign and we can return to winter quarters, where fresh French troops who are being raised in France will join us, and the peace I shall conclude will be worthy of my people, of you, and of myself. NAPOLEON CHAPTER XIV At five in the morning it was still quite dark. The troops of the center, the reserves, and Bagration's right flank had not yet moved, but on the left flank the columns of infantry, cavalry, and artillery, which were to be the first to descend the heights to attack the French right flank and drive it into the Bohemian mountains according to plan, were already up and astir. The smoke of the campfires, into which they were throwing everything superfluous, made the eyes smart. It was cold and dark. The officers were hurriedly drinking tea and breakfasting, the soldiers, munching biscuit and beating a tattoo with their feet to warm themselves, gathering round the fires throwing into the flames the remains of sheds, chairs, tables, wheels, tubs, and everything that they did not want or could not carry away with them. Austrian column guides were moving in and out among the Russian troops and served as heralds of the advance. As soon as an Austrian officer showed himself near a commanding officer's quarters, the regiment began to move: the soldiers ran from the fires, thrust their pipes into their boots, their bags into the carts, got their muskets ready, and formed rank. The officers buttoned up their coats, buckled on their swords and pouches, and moved along the ranks shouting. The train drivers and orderlies harnessed and packed the wagons and tied on the loads. The adjutants and battalion and regimental commanders mounted, crossed themselves, gave final instructions, orders, and commissions to the baggage men who remained behind, and the monotonous tramp of thousands of feet resounded. The column moved forward without knowing where and unable, from the masses around them, the smoke and the increasing fog, to see either the place they were leaving or that to which they were going. A soldier on the march is hemmed in and borne along by his regiment as much as a sailor is by his ship. However far he has walked, whatever strange, unknown, and dangerous places he reaches, just as a sailor is always surrounded by the same decks, masts, and rigging of his ship, so the soldier always has around him the same comrades, the same ranks, the same sergeant major Ivan Mitrich, the same company dog Jack, and the same commanders. The sailor rarely cares to know the latitude in which his ship is sailing, but on the day of battle--heaven knows how and whence--a stern note of which all are conscious sounds in the moral atmosphere of an army, announcing the approach of something decisive and solemn, and awakening in the men an unusual curiosity. On the day of battle the soldiers excitedly try to get beyond the interests of their regiment, they listen intently, look about, and eagerly ask concerning what is going on around them. The fog had grown so dense that though it was growing light they could not see ten paces ahead. Bushes looked like gigantic trees and level ground like cliffs and slopes. Anywhere, on any side, one might encounter an enemy invisible ten paces off. But the columns advanced for a long time, always in the same fog, descending and ascending hills, avoiding gardens and enclosures, going over new and unknown ground, and nowhere encountering the enemy. On the contrary, the soldiers became aware that in front, behind, and on all sides, other Russian columns were moving in the same direction. Every soldier felt glad to know that to the unknown place where he was going, many more of our men were going too. "There now, the Kurskies have also gone past," was being said in the ranks. "It's wonderful what a lot of our troops have gathered, lads! Last night I looked at the campfires and there was no end of them. A regular Moscow!" Though none of the column commanders rode up to the ranks or talked to the men (the commanders, as we saw at the council of war, were out of humor and dissatisfied with the affair, and so did not exert themselves to cheer the men but merely carried out the orders), yet the troops marched gaily, as they always do when going into action, especially to an attack. But when they had marched for about an hour in the dense fog, the greater part of the men had to halt and an unpleasant consciousness of some dislocation and blunder spread through the ranks. How such a consciousness is communicated is very difficult to define, but it certainly is communicated very surely, and flows rapidly, imperceptibly, and irrepressibly, as water does in a creek. Had the Russian army been alone without any allies, it might perhaps have been a long time before this consciousness of mismanagement became a general conviction, but as it was, the disorder was readily and naturally attributed to the stupid Germans, and everyone was convinced that a dangerous muddle had been occasioned by the sausage eaters. "Why have we stopped? Is the way blocked? Or have we already come up against the French?" "No, one can't hear them. They'd be firing if we had." "They were in a hurry enough to start us, and now here we stand in the middle of a field without rhyme or reason. It's all those damned Germans' muddling! What stupid devils!" "Yes, I'd send them on in front, but no fear, they're crowding up behind. And now here we stand hungry." "I say, shall we soon be clear? They say the cavalry are blocking the way," said an officer. "Ah, those damned Germans! They don't know their own country!" said another. "What division are you?" shouted an adjutant, riding up. "The Eighteenth." "Then why are you here? You should have gone on long ago, now you won't get there till evening." "What stupid orders! They don't themselves know what they are doing!" said the officer and rode off. Then a general rode past shouting something angrily, not in Russian. "Tafa-lafa! But what he's jabbering no one can make out," said a soldier, mimicking the general who had ridden away. "I'd shoot them, the scoundrels!" "We were ordered to be at the place before nine, but we haven't got halfway. Fine orders!" was being repeated on different sides. And the feeling of energy with which the troops had started began to turn into vexation and anger at the stupid arrangements and at the Germans. The cause of the confusion was that while the Austrian cavalry was moving toward our left flank, the higher command found that our center was too far separated from our right flank and the cavalry were all ordered to turn back to the right. Several thousand cavalry crossed in front of the infantry, who had to wait. At the front an altercation occurred between an Austrian guide and a Russian general. The general shouted a demand that the cavalry should be halted, the Austrian argued that not he, but the higher command, was to blame. The troops meanwhile stood growing listless and dispirited. After an hour's delay they at last moved on, descending the hill. The fog that was dispersing on the hill lay still more densely below, where they were descending. In front in the fog a shot was heard and then another, at first irregularly at varying intervals--trata... tat--and then more and more regularly and rapidly, and the action at the Goldbach Stream began. Not expecting to come on the enemy down by the stream, and having stumbled on him in the fog, hearing no encouraging word from their commanders, and with a consciousness of being too late spreading through the ranks, and above all being unable to see anything in front or around them in the thick fog, the Russians exchanged shots with the enemy lazily and advanced and again halted, receiving no timely orders from the officers or adjutants who wandered about in the fog in those unknown surroundings unable to find their own regiments. In this way the action began for the first, second, and third columns, which had gone down into the valley. The fourth column, with which Kutuzov was, stood on the Pratzen Heights. Below, where the fight was beginning, there was still thick fog; on the higher ground it was clearing, but nothing could be seen of what was going on in front. Whether all the enemy forces were, as we supposed, six miles away, or whether they were near by in that sea of mist, no one knew till after eight o'clock. It was nine o'clock in the morning. The fog lay unbroken like a sea down below, but higher up at the village of Schlappanitz where Napoleon stood with his marshals around him, it was quite light. Above him was a clear blue sky, and the sun's vast orb quivered like a huge hollow, crimson float on the surface of that milky sea of mist. The whole French army, and even Napoleon himself with his staff, were not on the far side of the streams and hollows of Sokolnitz and Schlappanitz beyond which we intended to take up our position and begin the action, but were on this side, so close to our own forces that Napoleon with the naked eye could distinguish a mounted man from one on foot. Napoleon, in the blue cloak which he had worn on his Italian campaign, sat on his small gray Arab horse a little in front of his marshals. He gazed silently at the hills which seemed to rise out of the sea of mist and on which the Russian troops were moving in the distance, and he listened to the sounds of firing in the valley. Not a single muscle of his face--which in those days was still thin--moved. His gleaming eyes were fixed intently on one spot. His predictions were being justified. Part of the Russian force had already descended into the valley toward the ponds and lakes and part were leaving these Pratzen Heights which he intended to attack and regarded as the key to the position. He saw over the mist that in a hollow between two hills near the village of Pratzen, the Russian columns, their bayonets glittering, were moving continuously in one direction toward the valley and disappearing one after another into the mist. From information he had received the evening before, from the sound of wheels and footsteps heard by the outposts during the night, by the disorderly movement of the Russian columns, and from all indications, he saw clearly that the allies believed him to be far away in front of them, and that the columns moving near Pratzen constituted the center of the Russian army, and that that center was already sufficiently weakened to be successfully attacked. But still he did not begin the engagement. Today was a great day for him--the anniversary of his coronation. Before dawn he had slept for a few hours, and refreshed, vigorous, and in good spirits, he mounted his horse and rode out into the field in that happy mood in which everything seems possible and everything succeeds. He sat motionless, looking at the heights visible above the mist, and his cold face wore that special look of confident, self-complacent happiness that one sees on the face of a boy happily in love. The marshals stood behind him not venturing to distract his attention. He looked now at the Pratzen Heights, now at the sun floating up out of the mist. When the sun had entirely emerged from the fog, and fields and mist were aglow with dazzling light--as if he had only awaited this to begin the action--he drew the glove from his shapely white hand, made a sign with it to the marshals, and ordered the action to begin. The marshals, accompanied by adjutants, galloped off in different directions, and a few minutes later the chief forces of the French army moved rapidly toward those Pratzen Heights which were being more and more denuded by Russian troops moving down the valley to their left. CHAPTER XV At eight o'clock Kutuzov rode to Pratzen at the head of the fourth column, Miloradovich's, the one that was to take the place of Przebyszewski's and Langeron's columns which had already gone down into the valley. He greeted the men of the foremost regiment and gave them the order to march, thereby indicating that he intended to lead that column himself. When he had reached the village of Pratzen he halted. Prince Andrew was behind, among the immense number forming the commander in chief's suite. He was in a state of suppressed excitement and irritation, though controlledly calm as a man is at the approach of a long-awaited moment. He was firmly convinced that this was the day of his Toulon, or his bridge of Arcola. How it would come about he did not know, but he felt sure it would do so. The locality and the position of our troops were known to him as far as they could be known to anyone in our army. His own strategic plan, which obviously could not now be carried out, was forgotten. Now, entering into Weyrother's plan, Prince Andrew considered possible contingencies and formed new projects such as might call for his rapidity of perception and decision. To the left down below in the mist, the musketry fire of unseen forces could be heard. It was there Prince Andrew thought the fight would concentrate. "There we shall encounter difficulties, and there," thought he, "I shall be sent with a brigade or division, and there, standard in hand, I shall go forward and break whatever is in front of me." He could not look calmly at the standards of the passing battalions. Seeing them he kept thinking, "That may be the very standard with which I shall lead the army." In the morning all that was left of the night mist on the heights was a hoar frost now turning to dew, but in the valleys it still lay like a milk-white sea. Nothing was visible in the valley to the left into which our troops had descended and from whence came the sounds of firing. Above the heights was the dark clear sky, and to the right the vast orb of the sun. In front, far off on the farther shore of that sea of mist, some wooded hills were discernible, and it was there the enemy probably was, for something could be descried. On the right the Guards were entering the misty region with a sound of hoofs and wheels and now and then a gleam of bayonets; to the left beyond the village similar masses of cavalry came up and disappeared in the sea of mist. In front and behind moved infantry. The commander in chief was standing at the end of the village letting the troops pass by him. That morning Kutuzov seemed worn and irritable. The infantry passing before him came to a halt without any command being given, apparently obstructed by something in front. "Do order them to form into battalion columns and go round the village!" he said angrily to a general who had ridden up. "Don't you understand, your excellency, my dear sir, that you must not defile through narrow village streets when we are marching against the enemy?" "I intended to re-form them beyond the village, your excellency," answered the general. Kutuzov laughed bitterly. "You'll make a fine thing of it, deploying in sight of the enemy! Very fine!" "The enemy is still far away, your excellency. According to the dispositions..." "The dispositions!" exclaimed Kutuzov bitterly. "Who told you that?... Kindly do as you are ordered." "Yes, sir." "My dear fellow," Nesvitski whispered to Prince Andrew, "the old man is as surly as a dog." An Austrian officer in a white uniform with green plumes in his hat galloped up to Kutuzov and asked in the Emperor's name had the fourth column advanced into action. Kutuzov turned round without answering and his eye happened to fall upon Prince Andrew, who was beside him. Seeing him, Kutuzov's malevolent and caustic expression softened, as if admitting that what was being done was not his adjutant's fault, and still not answering the Austrian adjutant, he addressed Bolkonski. "Go, my dear fellow, and see whether the third division has passed the village. Tell it to stop and await my orders." Hardly had Prince Andrew started than he stopped him. "And ask whether sharpshooters have been posted," he added. "What are they doing? What are they doing?" he murmured to himself, still not replying to the Austrian. Prince Andrew galloped off to execute the order. Overtaking the battalions that continued to advance, he stopped the third division and convinced himself that there really were no sharpshooters in front of our columns. The colonel at the head of the regiment was much surprised at the commander in chief's order to throw out skirmishers. He had felt perfectly sure that there were other troops in front of him and that the enemy must be at least six miles away. There was really nothing to be seen in front except a barren descent hidden by dense mist. Having given orders in the commander in chief's name to rectify this omission, Prince Andrew galloped back. Kutuzov still in the same place, his stout body resting heavily in the saddle with the lassitude of age, sat yawning wearily with closed eyes. The troops were no longer moving, but stood with the butts of their muskets on the ground. "All right, all right!" he said to Prince Andrew, and turned to a general who, watch in hand, was saying it was time they started as all the left-flank columns had already descended. "Plenty of time, your excellency," muttered Kutuzov in the midst of a yawn. "Plenty of time," he repeated. Just then at a distance behind Kutuzov was heard the sound of regiments saluting, and this sound rapidly came nearer along the whole extended line of the advancing Russian columns. Evidently the person they were greeting was riding quickly. When the soldiers of the regiment in front of which Kutuzov was standing began to shout, he rode a little to one side and looked round with a frown. Along the road from Pratzen galloped what looked like a squadron of horsemen in various uniforms. Two of them rode side by side in front, at full gallop. One in a black uniform with white plumes in his hat rode a bobtailed chestnut horse, the other who was in a white uniform rode a black one. These were the two Emperors followed by their suites. Kutuzov, affecting the manners of an old soldier at the front, gave the command "Attention!" and rode up to the Emperors with a salute. His whole appearance and manner were suddenly transformed. He put on the air of a subordinate who obeys without reasoning. With an affectation of respect which evidently struck Alexander unpleasantly, he rode up and saluted. This unpleasant impression merely flitted over the young and happy face of the Emperor like a cloud of haze across a clear sky and vanished. After his illness he looked rather thinner that day than on the field of Olmutz where Bolkonski had seen him for the first time abroad, but there was still the same bewitching combination of majesty and mildness in his fine gray eyes, and on his delicate lips the same capacity for varying expression and the same prevalent appearance of goodhearted innocent youth. At the Olmutz review he had seemed more majestic; here he seemed brighter and more energetic. He was slightly flushed after galloping two miles, and reining in his horse he sighed restfully and looked round at the faces of his suite, young and animated as his own. Czartoryski, Novosiltsev, Prince Volkonsky, Strogonov, and the others, all richly dressed gay young men on splendid, well-groomed, fresh, only slightly heated horses, exchanging remarks and smiling, had stopped behind the Emperor. The Emperor Francis, a rosy, long faced young man, sat very erect on his handsome black horse, looking about him in a leisurely and preoccupied manner. He beckoned to one of his white adjutants and asked some question--"Most likely he is asking at what o'clock they started," thought Prince Andrew, watching his old acquaintance with a smile he could not repress as he recalled his reception at Brunn. In the Emperors' suite were the picked young orderly officers of the Guard and line regiments, Russian and Austrian. Among them were grooms leading the Tsar's beautiful relay horses covered with embroidered cloths. As when a window is opened a whiff of fresh air from the fields enters a stuffy room, so a whiff of youthfulness, energy, and confidence of success reached Kutuzov's cheerless staff with the galloping advent of all these brilliant young men. "Why aren't you beginning, Michael Ilarionovich?" said the Emperor Alexander hurriedly to Kutuzov, glancing courteously at the same time at the Emperor Francis. "I am waiting, Your Majesty," answered Kutuzov, bending forward respectfully. The Emperor, frowning slightly, bent his ear forward as if he had not quite heard. "Waiting, Your Majesty," repeated Kutuzov. (Prince Andrew noted that Kutuzov's upper lip twitched unnaturally as he said the word "waiting.") "Not all the columns have formed up yet, Your Majesty." The Tsar heard but obviously did not like the reply; he shrugged his rather round shoulders and glanced at Novosiltsev who was near him, as if complaining of Kutuzov. "You know, Michael Ilarionovich, we are not on the Empress' Field where a parade does not begin till all the troops are assembled," said the Tsar with another glance at the Emperor Francis, as if inviting him if not to join in at least to listen to what he was saying. But the Emperor Francis continued to look about him and did not listen. "That is just why I do not begin, sire," said Kutuzov in a resounding voice, apparently to preclude the possibility of not being heard, and again something in his face twitched--"That is just why I do not begin, sire, because we are not on parade and not on the Empress' Field." said clearly and distinctly. In the Emperor's suite all exchanged rapid looks that expressed dissatisfaction and reproach. "Old though he may be, he should not, he certainly should not, speak like that," their glances seemed to say. The Tsar looked intently and observantly into Kutuzov's eye waiting to hear whether he would say anything more. But Kutuzov, with respectfully bowed head, seemed also to be waiting. The silence lasted for about a minute. "However, if you command it, Your Majesty," said Kutuzov, lifting his head and again assuming his former tone of a dull, unreasoning, but submissive general. He touched his horse and having called Miloradovich, the commander of the column, gave him the order to advance. The troops again began to move, and two battalions of the Novgorod and one of the Apsheron regiment went forward past the Emperor. As this Apsheron battalion marched by, the red-faced Miloradovich, without his greatcoat, with his Orders on his breast and an enormous tuft of plumes in his cocked hat worn on one side with its corners front and back, galloped strenuously forward, and with a dashing salute reined in his horse before the Emperor. "God be with you, general!" said the Emperor. "Ma foi, sire, nous ferons ce qui sera dans notre possibilite, sire,"* he answered gaily, raising nevertheless ironic smiles among the gentlemen of the Tsar's suite by his poor French. *"Indeed, Sire, we shall do everything it is possible to do, Sire." Miloradovich wheeled his horse sharply and stationed himself a little behind the Emperor. The Apsheron men, excited by the Tsar's presence, passed in step before the Emperors and their suites at a bold, brisk pace. "Lads!" shouted Miloradovich in a loud, self-confident, and cheery voice, obviously so elated by the sound of firing, by the prospect of battle, and by the sight of the gallant Apsherons, his comrades in Suvorov's time, now passing so gallantly before the Emperors, that he forgot the sovereigns' presence. "Lads, it's not the first village you've had to take," cried he. "Glad to do our best!" shouted the soldiers. The Emperor's horse started at the sudden cry. This horse that had carried the sovereign at reviews in Russia bore him also here on the field of Austerlitz, enduring the heedless blows of his left foot and pricking its ears at the sound of shots just as it had done on the Empress' Field, not understanding the significance of the firing, nor of the nearness of the Emperor Francis' black cob, nor of all that was being said, thought, and felt that day by its rider. The Emperor turned with a smile to one of his followers and made a remark to him, pointing to the gallant Apsherons. CHAPTER XVI Kutuzov accompanied by his adjutants rode at a walking pace behind the carabineers. When he had gone less than half a mile in the rear of the column he stopped at a solitary, deserted house that had probably once been an inn, where two roads parted. Both of them led downhill and troops were marching along both. The fog had begun to clear and enemy troops were already dimly visible about a mile and a half off on the opposite heights. Down below, on the left, the firing became more distinct. Kutuzov had stopped and was speaking to an Austrian general. Prince Andrew, who was a little behind looking at them, turned to an adjutant to ask him for a field glass. "Look, look!" said this adjutant, looking not at the troops in the distance, but down the hill before him. "It's the French!" The two generals and the adjutant took hold of the field glass, trying to snatch it from one another. The expression on all their faces suddenly changed to one of horror. The French were supposed to be a mile and a half away, but had suddenly and unexpectedly appeared just in front of us. "It's the enemy?... No!... Yes, see it is!... for certain.... But how is that?" said different voices. With the naked eye Prince Andrew saw below them to the right, not more than five hundred paces from where Kutuzov was standing, a dense French column coming up to meet the Apsherons. "Here it is! The decisive moment has arrived. My turn has come," thought Prince Andrew, and striking his horse he rode up to Kutuzov. "The Apsherons must be stopped, your excellency," cried he. But at that very instant a cloud of smoke spread all round, firing was heard quite close at hand, and a voice of naive terror barely two steps from Prince Andrew shouted, "Brothers! All's lost!" And at this as if at a command, everyone began to run. Confused and ever-increasing crowds were running back to where five minutes before the troops had passed the Emperors. Not only would it have been difficult to stop that crowd, it was even impossible not to be carried back with it oneself. Bolkonski only tried not to lose touch with it, and looked around bewildered and unable to grasp what was happening in front of him. Nesvitski with an angry face, red and unlike himself, was shouting to Kutuzov that if he did not ride away at once he would certainly be taken prisoner. Kutuzov remained in the same place and without answering drew out a handkerchief. Blood was flowing from his cheek. Prince Andrew forced his way to him. "You are wounded?" he asked, hardly able to master the trembling of his lower jaw. "The wound is not here, it is there!" said Kutuzov, pressing the handkerchief to his wounded cheek and pointing to the fleeing soldiers. "Stop them!" he shouted, and at the same moment, probably realizing that it was impossible to stop them, spurred his horse and rode to the right. A fresh wave of the flying mob caught him and bore him back with it. The troops were running in such a dense mass that once surrounded by them it was difficult to get out again. One was shouting, "Get on! Why are you hindering us?" Another in the same place turned round and fired in the air; a third was striking the horse Kutuzov himself rode. Having by a great effort got away to the left from that flood of men, Kutuzov, with his suite diminished by more than half, rode toward a sound of artillery fire near by. Having forced his way out of the crowd of fugitives, Prince Andrew, trying to keep near Kutuzov, saw on the slope of the hill amid the smoke a Russian battery that was still firing and Frenchmen running toward it. Higher up stood some Russian infantry, neither moving forward to protect the battery nor backward with the fleeing crowd. A mounted general separated himself from the infantry and approached Kutuzov. Of Kutuzov's suite only four remained. They were all pale and exchanged looks in silence. "Stop those wretches!" gasped Kutuzov to the regimental commander, pointing to the flying soldiers; but at that instant, as if to punish him for those words, bullets flew hissing across the regiment and across Kutuzov's suite like a flock of little birds. The French had attacked the battery and, seeing Kutuzov, were firing at him. After this volley the regimental commander clutched at his leg; several soldiers fell, and a second lieutenant who was holding the flag let it fall from his hands. It swayed and fell, but caught on the muskets of the nearest soldiers. The soldiers started firing without orders. "Oh! Oh! Oh!" groaned Kutuzov despairingly and looked around.... "Bolkonski!" he whispered, his voice trembling from a consciousness of the feebleness of age, "Bolkonski!" he whispered, pointing to the disordered battalion and at the enemy, "what's that?" But before he had finished speaking, Prince Andrew, feeling tears of shame and anger choking him, had already leapt from his horse and run to the standard. "Forward, lads!" he shouted in a voice piercing as a child's. "Here it is!" thought he, seizing the staff of the standard and hearing with pleasure the whistle of bullets evidently aimed at him. Several soldiers fell. "Hurrah!" shouted Prince Andrew, and, scarcely able to hold up the heavy standard, he ran forward with full confidence that the whole battalion would follow him. And really he only ran a few steps alone. One soldier moved and then another and soon the whole battalion ran forward shouting "Hurrah!" and overtook him. A sergeant of the battalion ran up and took the flag that was swaying from its weight in Prince Andrew's hands, but he was immediately killed. Prince Andrew again seized the standard and, dragging it by the staff, ran on with the battalion. In front he saw our artillerymen, some of whom were fighting, while others, having abandoned their guns, were running toward him. He also saw French infantry soldiers who were seizing the artillery horses and turning the guns round. Prince Andrew and the battalion were already within twenty paces of the cannon. He heard the whistle of bullets above him unceasingly and to right and left of him soldiers continually groaned and dropped. But he did not look at them: he looked only at what was going on in front of him--at the battery. He now saw clearly the figure of a red-haired gunner with his shako knocked awry, pulling one end of a mop while a French soldier tugged at the other. He could distinctly see the distraught yet angry expression on the faces of these two men, who evidently did not realize what they were doing. "What are they about?" thought Prince Andrew as he gazed at them. "Why doesn't the red-haired gunner run away as he is unarmed? Why doesn't the Frenchman stab him? He will not get away before the Frenchman remembers his bayonet and stabs him...." And really another French soldier, trailing his musket, ran up to the struggling men, and the fate of the red-haired gunner, who had triumphantly secured the mop and still did not realize what awaited him, was about to be decided. But Prince Andrew did not see how it ended. It seemed to him as though one of the soldiers near him hit him on the head with the full swing of a bludgeon. It hurt a little, but the worst of it was that the pain distracted him and prevented his seeing what he had been looking at. "What's this? Am I falling? My legs are giving way," thought he, and fell on his back. He opened his eyes, hoping to see how the struggle of the Frenchmen with the gunners ended, whether the red-haired gunner had been killed or not and whether the cannon had been captured or saved. But he saw nothing. Above him there was now nothing but the sky--the lofty sky, not clear yet still immeasurably lofty, with gray clouds gliding slowly across it. "How quiet, peaceful, and solemn; not at all as I ran," thought Prince Andrew--"not as we ran, shouting and fighting, not at all as the gunner and the Frenchman with frightened and angry faces struggled for the mop: how differently do those clouds glide across that lofty infinite sky! How was it I did not see that lofty sky before? And how happy I am to have found it at last! Yes! All is vanity, all falsehood, except that infinite sky. There is nothing, nothing, but that. But even it does not exist, there is nothing but quiet and peace. Thank God!..." CHAPTER XVII On our right flank commanded by Bagration, at nine o'clock the battle had not yet begun. Not wishing to agree to Dolgorukov's demand to commence the action, and wishing to avert responsibility from himself, Prince Bagration proposed to Dolgorukov to send to inquire of the commander in chief. Bagration knew that as the distance between the two flanks was more than six miles, even if the messenger were not killed (which he very likely would be), and found the commander in chief (which would be very difficult), he would not be able to get back before evening. Bagration cast his large, expressionless, sleepy eyes round his suite, and the boyish face Rostov, breathless with excitement and hope, was the first to catch his eye. He sent him. "And if I should meet His Majesty before I meet the commander in chief, your excellency?" said Rostov, with his hand to his cap. "You can give the message to His Majesty," said Dolgorukov, hurriedly interrupting Bagration. On being relieved from picket duty Rostov had managed to get a few hours' sleep before morning and felt cheerful, bold, and resolute, with elasticity of movement, faith in his good fortune, and generally in that state of mind which makes everything seem possible, pleasant, and easy. All his wishes were being fulfilled that morning: there was to be a general engagement in which he was taking part, more than that, he was orderly to the bravest general, and still more, he was going with a message to Kutuzov, perhaps even to the sovereign himself. The morning was bright, he had a good horse under him, and his heart was full of joy and happiness. On receiving the order he gave his horse the rein and galloped along the line. At first he rode along the line of Bagration's troops, which had not yet advanced into action but were standing motionless; then he came to the region occupied by Uvarov's cavalry and here he noticed a stir and signs of preparation for battle; having passed Uvarov's cavalry he clearly heard the sound of cannon and musketry ahead of him. The firing grew louder and louder. In the fresh morning air were now heard, not two or three musket shots at irregular intervals as before, followed by one or two cannon shots, but a roll of volleys of musketry from the slopes of the hill before Pratzen, interrupted by such frequent reports of cannon that sometimes several of them were not separated from one another but merged into a general roar. He could see puffs of musketry smoke that seemed to chase one another down the hillsides, and clouds of cannon smoke rolling, spreading, and mingling with one another. He could also, by the gleam of bayonets visible through the smoke, make out moving masses of infantry and narrow lines of artillery with green caissons. Rostov stopped his horse for a moment on a hillock to see what was going on, but strain his attention as he would he could not understand or make out anything of what was happening: there in the smoke men of some sort were moving about, in front and behind moved lines of troops; but why, whither, and who they were, it was impossible to make out. These sights and sounds had no depressing or intimidating effect on him; on the contrary, they stimulated his energy and determination. "Go on! Go on! Give it them!" he mentally exclaimed at these sounds, and again proceeded to gallop along the line, penetrating farther and farther into the region where the army was already in action. "How it will be there I don't know, but all will be well!" thought Rostov. After passing some Austrian troops he noticed that the next part of the line (the Guards) was already in action. "So much the better! I shall see it close," he thought. He was riding almost along the front line. A handful of men came galloping toward him. They were our Uhlans who with disordered ranks were returning from the attack. Rostov got out of their way, involuntarily noticed that one of them was bleeding, and galloped on. "That is no business of mine," he thought. He had not ridden many hundred yards after that before he saw to his left, across the whole width of the field, an enormous mass of cavalry in brilliant white uniforms, mounted on black horses, trotting straight toward him and across his path. Rostov put his horse to full gallop to get out of the way of these men, and he would have got clear had they continued at the same speed, but they kept increasing their pace, so that some of the horses were already galloping. Rostov heard the thud of their hoofs and the jingle of their weapons and saw their horses, their figures, and even their faces, more and more distinctly. They were our Horse Guards, advancing to attack the French cavalry that was coming to meet them. The Horse Guards were galloping, but still holding in their horses. Rostov could already see their faces and heard the command: "Charge!" shouted by an officer who was urging his thoroughbred to full speed. Rostov, fearing to be crushed or swept into the attack on the French, galloped along the front as hard as his horse could go, but still was not in time to avoid them. The last of the Horse Guards, a huge pockmarked fellow, frowned angrily on seeing Rostov before him, with whom he would inevitably collide. This Guardsman would certainly have bowled Rostov and his Bedouin over (Rostov felt himself quite tiny and weak compared to these gigantic men and horses) had it not occurred to Rostov to flourish his whip before the eyes of the Guardsman's horse. The heavy black horse, sixteen hands high, shied, throwing back its ears; but the pockmarked Guardsman drove his huge spurs in violently, and the horse, flourishing its tail and extending its neck, galloped on yet faster. Hardly had the Horse Guards passed Rostov before he heard them shout, "Hurrah!" and looking back saw that their foremost ranks were mixed up with some foreign cavalry with red epaulets, probably French. He could see nothing more, for immediately afterwards cannon began firing from somewhere and smoke enveloped everything. At that moment, as the Horse Guards, having passed him, disappeared in the smoke, Rostov hesitated whether to gallop after them or to go where he was sent. This was the brilliant charge of the Horse Guards that amazed the French themselves. Rostov was horrified to hear later that of all that mass of huge and handsome men, of all those brilliant, rich youths, officers and cadets, who had galloped past him on their thousand-ruble horses, only eighteen were left after the charge. "Why should I envy them? My chance is not lost, and maybe I shall see the Emperor immediately!" thought Rostov and galloped on. When he came level with the Foot Guards he noticed that about them and around them cannon balls were flying, of which he was aware not so much because he heard their sound as because he saw uneasiness on the soldiers' faces and unnatural warlike solemnity on those of the officers. Passing behind one of the lines of a regiment of Foot Guards he heard a voice calling him by name. "Rostov!" "What?" he answered, not recognizing Boris. "I say, we've been in the front line! Our regiment attacked!" said Boris with the happy smile seen on the faces of young men who have been under fire for the first time. Rostov stopped. "Have you?" he said. "Well, how did it go?" "We drove them back!" said Boris with animation, growing talkative. "Can you imagine it?" and he began describing how the Guards, having taken up their position and seeing troops before them, thought they were Austrians, and all at once discovered from the cannon balls discharged by those troops that they were themselves in the front line and had unexpectedly to go into action. Rostov without hearing Boris to the end spurred his horse. "Where are you off to?" asked Boris. "With a message to His Majesty." "There he is!" said Boris, thinking Rostov had said "His Highness," and pointing to the Grand Duke who with his high shoulders and frowning brows stood a hundred paces away from them in his helmet and Horse Guards' jacket, shouting something to a pale, white uniformed Austrian officer. "But that's the Grand Duke, and I want the commander in chief or the Emperor," said Rostov, and was about to spur his horse. "Count! Count!" shouted Berg who ran up from the other side as eager as Boris. "Count! I am wounded in my right hand" (and he showed his bleeding hand with a handkerchief tied round it) "and I remained at the front. I held my sword in my left hand, Count. All our family--the von Bergs--have been knights!" He said something more, but Rostov did not wait to hear it and rode away. Having passed the Guards and traversed an empty space, Rostov, to avoid again getting in front of the first line as he had done when the Horse Guards charged, followed the line of reserves, going far round the place where the hottest musket fire and cannonade were heard. Suddenly he heard musket fire quite close in front of him and behind our troops, where he could never have expected the enemy to be. "What can it be?" he thought. "The enemy in the rear of our army? Impossible!" And suddenly he was seized by a panic of fear for himself and for the issue of the whole battle. "But be that what it may," he reflected, "there is no riding round it now. I must look for the commander in chief here, and if all is lost it is for me to perish with the rest." The foreboding of evil that had suddenly come over Rostov was more and more confirmed the farther he rode into the region behind the village of Pratzen, which was full of troops of all kinds. "What does it mean? What is it? Whom are they firing at? Who is firing?" Rostov kept asking as he came up to Russian and Austrian soldiers running in confused crowds across his path. "The devil knows! They've killed everybody! It's all up now!" he was told in Russian, German, and Czech by the crowd of fugitives who understood what was happening as little as he did. "Kill the Germans!" shouted one. "May the devil take them--the traitors!" "Zum Henker diese Russen!"* muttered a German. *"Hang these Russians!" Several wounded men passed along the road, and words of abuse, screams, and groans mingled in a general hubbub, then the firing died down. Rostov learned later that Russian and Austrian soldiers had been firing at one another. "My God! What does it all mean?" thought he. "And here, where at any moment the Emperor may see them.... But no, these must be only a handful of scoundrels. It will soon be over, it can't be that, it can't be! Only to get past them quicker, quicker!" The idea of defeat and flight could not enter Rostov's head. Though he saw French cannon and French troops on the Pratzen Heights just where he had been ordered to look for the commander in chief, he could not, did not wish to, believe that. CHAPTER XVIII Rostov had been ordered to look for Kutuzov and the Emperor near the village of Pratzen. But neither they nor a single commanding officer were there, only disorganized crowds of troops of various kinds. He urged on his already weary horse to get quickly past these crowds, but the farther he went the more disorganized they were. The highroad on which he had come out was thronged with caleches, carriages of all sorts, and Russian and Austrian soldiers of all arms, some wounded and some not. This whole mass droned and jostled in confusion under the dismal influence of cannon balls flying from the French batteries stationed on the Pratzen Heights. "Where is the Emperor? Where is Kutuzov?" Rostov kept asking everyone he could stop, but got no answer from anyone. At last seizing a soldier by his collar he forced him to answer. "Eh, brother! They've all bolted long ago!" said the soldier, laughing for some reason and shaking himself free. Having left that soldier who was evidently drunk, Rostov stopped the horse of a batman or groom of some important personage and began to question him. The man announced that the Tsar had been driven in a carriage at full speed about an hour before along that very road and that he was dangerously wounded. "It can't be!" said Rostov. "It must have been someone else." "I saw him myself." replied the man with a self-confident smile of derision. "I ought to know the Emperor by now, after the times I've seen him in Petersburg. I saw him just as I see you.... There he sat in the carriage as pale as anything. How they made the four black horses fly! Gracious me, they did rattle past! It's time I knew the Imperial horses and Ilya Ivanych. I don't think Ilya drives anyone except the Tsar!" Rostov let go of the horse and was about to ride on, when a wounded officer passing by addressed him: "Who is it you want?" he asked. "The commander in chief? He was killed by a cannon ball--struck in the breast before our regiment." "Not killed--wounded!" another officer corrected him. "Who? Kutuzov?" asked Rostov. "Not Kutuzov, but what's his name--well, never mind... there are not many left alive. Go that way, to that village, all the commanders are there," said the officer, pointing to the village of Hosjeradek, and he walked on. Rostov rode on at a footpace not knowing why or to whom he was now going. The Emperor was wounded, the battle lost. It was impossible to doubt it now. Rostov rode in the direction pointed out to him, in which he saw turrets and a church. What need to hurry? What was he now to say to the Tsar or to Kutuzov, even if they were alive and unwounded? "Take this road, your honor, that way you will be killed at once!" a soldier shouted to him. "They'd kill you there!" "Oh, what are you talking about?" said another. "Where is he to go? That way is nearer." Rostov considered, and then went in the direction where they said he would be killed. "It's all the same now. If the Emperor is wounded, am I to try to save myself?" he thought. He rode on to the region where the greatest number of men had perished in fleeing from Pratzen. The French had not yet occupied that region, and the Russians--the uninjured and slightly wounded--had left it long ago. All about the field, like heaps of manure on well-kept plowland, lay from ten to fifteen dead and wounded to each couple of acres. The wounded crept together in twos and threes and one could hear their distressing screams and groans, sometimes feigned--or so it seemed to Rostov. He put his horse to a trot to avoid seeing all these suffering men, and he felt afraid--afraid not for his life, but for the courage he needed and which he knew would not stand the sight of these unfortunates. The French, who had ceased firing at this field strewn with dead and wounded where there was no one left to fire at, on seeing an adjutant riding over it trained a gun on him and fired several shots. The sensation of those terrible whistling sounds and of the corpses around him merged in Rostov's mind into a single feeling of terror and pity for himself. He remembered his mother's last letter. "What would she feel," thought he, "if she saw me here now on this field with the cannon aimed at me?" In the village of Hosjeradek there were Russian troops retiring from the field of battle, who though still in some confusion were less disordered. The French cannon did not reach there and the musketry fire sounded far away. Here everyone clearly saw and said that the battle was lost. No one whom Rostov asked could tell him where the Emperor or Kutuzov was. Some said the report that the Emperor was wounded was correct, others that it was not, and explained the false rumor that had spread by the fact that the Emperor's carriage had really galloped from the field of battle with the pale and terrified Ober-Hofmarschal Count Tolstoy, who had ridden out to the battlefield with others in the Emperor's suite. One officer told Rostov that he had seen someone from headquarters behind the village to the left, and thither Rostov rode, not hoping to find anyone but merely to ease his conscience. When he had ridden about two miles and had passed the last of the Russian troops, he saw, near a kitchen garden with a ditch round it, two men on horseback facing the ditch. One with a white plume in his hat seemed familiar to Rostov; the other on a beautiful chestnut horse (which Rostov fancied he had seen before) rode up to the ditch, struck his horse with his spurs, and giving it the rein leaped lightly over. Only a little earth crumbled from the bank under the horse's hind hoofs. Turning the horse sharply, he again jumped the ditch, and deferentially addressed the horseman with the white plumes, evidently suggesting that he should do the same. The rider, whose figure seemed familiar to Rostov and involuntarily riveted his attention, made a gesture of refusal with his head and hand and by that gesture Rostov instantly recognized his lamented and adored monarch. "But it can't be he, alone in the midst of this empty field!" thought Rostov. At that moment Alexander turned his head and Rostov saw the beloved features that were so deeply engraved on his memory. The Emperor was pale, his cheeks sunken and his eyes hollow, but the charm, the mildness of his features, was all the greater. Rostov was happy in the assurance that the rumors about the Emperor being wounded were false. He was happy to be seeing him. He knew that he might and even ought to go straight to him and give the message Dolgorukov had ordered him to deliver. But as a youth in love trembles, is unnerved, and dares not utter the thoughts he has dreamed of for nights, but looks around for help or a chance of delay and flight when the longed-for moment comes and he is alone with her, so Rostov, now that he had attained what he had longed for more than anything else in the world, did not know how to approach the Emperor, and a thousand reasons occurred to him why it would be inconvenient, unseemly, and impossible to do so. "What! It is as if I were glad of a chance to take advantage of his being alone and despondent! A strange face may seem unpleasant or painful to him at this moment of sorrow; besides, what can I say to him now, when my heart fails me and my mouth feels dry at the mere sight of him?" Not one of the innumerable speeches addressed to the Emperor that he had composed in his imagination could he now recall. Those speeches were intended for quite other conditions, they were for the most part to be spoken at a moment of victory and triumph, generally when he was dying of wounds and the sovereign had thanked him for heroic deeds, and while dying he expressed the love his actions had proved. "Besides how can I ask the Emperor for his instructions for the right flank now that it is nearly four o'clock and the battle is lost? No, certainly I must not approach him, I must not intrude on his reflections. Better die a thousand times than risk receiving an unkind look or bad opinion from him," Rostov decided; and sorrowfully and with a heart full despair he rode away, continually looking back at the Tsar, who still remained in the same attitude of indecision. While Rostov was thus arguing with himself and riding sadly away, Captain von Toll chanced to ride to the same spot, and seeing the Emperor at once rode up to him, offered his services, and assisted him to cross the ditch on foot. The Emperor, wishing to rest and feeling unwell, sat down under an apple tree and von Toll remained beside him. Rostov from a distance saw with envy and remorse how von Toll spoke long and warmly to the Emperor and how the Emperor, evidently weeping, covered his eyes with his hand and pressed von Toll's hand. "And I might have been in his place!" thought Rostov, and hardly restraining his tears of pity for the Emperor, he rode on in utter despair, not knowing where to or why he was now riding. His despair was all the greater from feeling that his own weakness was the cause his grief. He might... not only might but should, have gone up to the sovereign. It was a unique chance to show his devotion to the Emperor and he had not made use of it.... "What have I done?" thought he. And he turned round and galloped back to the place where he had seen the Emperor, but there was no one beyond the ditch now. Only some carts and carriages were passing by. From one of the drivers he learned that Kutuzov's staff were not far off, in the village the vehicles were going to. Rostov followed them. In front of him walked Kutuzov's groom leading horses in horsecloths. Then came a cart, and behind that walked an old, bandy-legged domestic serf in a peaked cap and sheepskin coat. "Tit! I say, Tit!" said the groom. "What?" answered the old man absent-mindedly. "Go, Tit! Thresh a bit!" "Oh, you fool!" said the old man, spitting angrily. Some time passed in silence, and then the same joke was repeated. Before five in the evening the battle had been lost at all points. More than a hundred cannon were already in the hands of the French. Przebyszewski and his corps had laid down their arms. Other columns after losing half their men were retreating in disorderly confused masses. The remains of Langeron's and Dokhturov's mingled forces were crowding around the dams and banks of the ponds near the village of Augesd. After five o'clock it was only at the Augesd Dam that a hot cannonade (delivered by the French alone) was still to be heard from numerous batteries ranged on the slopes of the Pratzen Heights, directed at our retreating forces. In the rearguard, Dokhturov and others rallying some battalions kept up a musketry fire at the French cavalry that was pursuing our troops. It was growing dusk. On the narrow Augesd Dam where for so many years the old miller had been accustomed to sit in his tasseled cap peacefully angling, while his grandson, with shirt sleeves rolled up, handled the floundering silvery fish in the watering can, on that dam over which for so many years Moravians in shaggy caps and blue jackets had peacefully driven their two-horse carts loaded with wheat and had returned dusty with flour whitening their carts--on that narrow dam amid the wagons and the cannon, under the horses' hoofs and between the wagon wheels, men disfigured by fear of death now crowded together, crushing one another, dying, stepping over the dying and killing one another, only to move on a few steps and be killed themselves in the same way. Every ten seconds a cannon ball flew compressing the air around, or a shell burst in the midst of that dense throng, killing some and splashing with blood those near them. Dolokhov--now an officer--wounded in the arm, and on foot, with the regimental commander on horseback and some ten men of his company, represented all that was left of that whole regiment. Impelled by the crowd, they had got wedged in at the approach to the dam and, jammed in on all sides, had stopped because a horse in front had fallen under a cannon and the crowd were dragging it out. A cannon ball killed someone behind them, another fell in front and splashed Dolokhov with blood. The crowd, pushing forward desperately, squeezed together, moved a few steps, and again stopped. "Move on a hundred yards and we are certainly saved, remain here another two minutes and it is certain death," thought each one. Dolokhov who was in the midst of the crowd forced his way to the edge of the dam, throwing two soldiers off their feet, and ran onto the slippery ice that covered the millpool. "Turn this way!" he shouted, jumping over the ice which creaked under him; "turn this way!" he shouted to those with the gun. "It bears!..." The ice bore him but it swayed and creaked, and it was plain that it would give way not only under a cannon or a crowd, but very soon even under his weight alone. The men looked at him and pressed to the bank, hesitating to step onto the ice. The general on horseback at the entrance to the dam raised his hand and opened his mouth to address Dolokhov. Suddenly a cannon ball hissed so low above the crowd that everyone ducked. It flopped into something moist, and the general fell from his horse in a pool of blood. Nobody gave him a look or thought of raising him. "Get onto the ice, over the ice! Go on! Turn! Don't you hear? Go on!" innumerable voices suddenly shouted after the ball had struck the general, the men themselves not knowing what, or why, they were shouting. One of the hindmost guns that was going onto the dam turned off onto the ice. Crowds of soldiers from the dam began running onto the frozen pond. The ice gave way under one of the foremost soldiers, and one leg slipped into the water. He tried to right himself but fell in up to his waist. The nearest soldiers shrank back, the gun driver stopped his horse, but from behind still came the shouts: "Onto the ice, why do you stop? Go on! Go on!" And cries of horror were heard in the crowd. The soldiers near the gun waved their arms and beat the horses to make them turn and move on. The horses moved off the bank. The ice, that had held under those on foot, collapsed in a great mass, and some forty men who were on it dashed, some forward and some back, drowning one another. Still the cannon balls continued regularly to whistle and flop onto the ice and into the water and oftenest of all among the crowd that covered the dam, the pond, and the bank. CHAPTER XIX On the Pratzen Heights, where he had fallen with the flagstaff in his hand, lay Prince Andrew Bolkonski bleeding profusely and unconsciously uttering a gentle, piteous, and childlike moan. Toward evening he ceased moaning and became quite still. He did not know how long his unconsciousness lasted. Suddenly he again felt that he was alive and suffering from a burning, lacerating pain in his head. "Where is it, that lofty sky that I did not know till now, but saw today?" was his first thought. "And I did not know this suffering either," he thought. "Yes, I did not know anything, anything at all till now. But where am I?" He listened and heard the sound of approaching horses, and voices speaking French. He opened his eyes. Above him again was the same lofty sky with clouds that had risen and were floating still higher, and between them gleamed blue infinity. He did not turn his head and did not see those who, judging by the sound of hoofs and voices, had ridden up and stopped near him. It was Napoleon accompanied by two aides-de-camp. Bonaparte riding over the battlefield had given final orders to strengthen the batteries firing at the Augesd Dam and was looking at the killed and wounded left on the field. "Fine men!" remarked Napoleon, looking at a dead Russian grenadier, who, with his face buried in the ground and a blackened nape, lay on his stomach with an already stiffened arm flung wide. "The ammunition for the guns in position is exhausted, Your Majesty," said an adjutant who had come from the batteries that were firing at Augesd. "Have some brought from the reserve," said Napoleon, and having gone on a few steps he stopped before Prince Andrew, who lay on his back with the flagstaff that had been dropped beside him. (The flag had already been taken by the French as a trophy.) "That's a fine death!" said Napoleon as he gazed at Bolkonski. Prince Andrew understood that this was said of him and that it was Napoleon who said it. He heard the speaker addressed as Sire. But he heard the words as he might have heard the buzzing of a fly. Not only did they not interest him, but he took no notice of them and at once forgot them. His head was burning, he felt himself bleeding to death, and he saw above him the remote, lofty, and everlasting sky. He knew it was Napoleon--his hero--but at that moment Napoleon seemed to him such a small, insignificant creature compared with what was passing now between himself and that lofty infinite sky with the clouds flying over it. At that moment it meant nothing to him who might be standing over him, or what was said of him; he was only glad that people were standing near him and only wished that they would help him and bring him back to life, which seemed to him so beautiful now that he had today learned to understand it so differently. He collected all his strength, to stir and utter a sound. He feebly moved his leg and uttered a weak, sickly groan which aroused his own pity. "Ah! He is alive," said Napoleon. "Lift this young man up and carry him to the dressing station." Having said this, Napoleon rode on to meet Marshal Lannes, who, hat in hand, rode up smiling to the Emperor to congratulate him on the victory. Prince Andrew remembered nothing more: he lost consciousness from the terrible pain of being lifted onto the stretcher, the jolting while being moved, and the probing of his wound at the dressing station. He did not regain consciousness till late in the day, when with other wounded and captured Russian officers he was carried to the hospital. During this transfer he felt a little stronger and was able to look about him and even speak. The first words he heard on coming to his senses were those of a French convoy officer, who said rapidly: "We must halt here: the Emperor will pass here immediately; it will please him to see these gentlemen prisoners." "There are so many prisoners today, nearly the whole Russian army, that he is probably tired of them," said another officer. "All the same! They say this one is the commander of all the Emperor Alexander's Guards," said the first one, indicating a Russian officer in the white uniform of the Horse Guards. Bolkonski recognized Prince Repnin whom he had met in Petersburg society. Beside him stood a lad of nineteen, also a wounded officer of the Horse Guards. Bonaparte, having come up at a gallop, stopped his horse. "Which is the senior?" he asked, on seeing the prisoners. They named the colonel, Prince Repnin. "You are the commander of the Emperor Alexander's regiment of Horse Guards?" asked Napoleon. "I commanded a squadron," replied Repnin. "Your regiment fulfilled its duty honorably," said Napoleon. "The praise of a great commander is a soldier's highest reward," said Repnin. "I bestow it with pleasure," said Napoleon. "And who is that young man beside you?" Prince Repnin named Lieutenant Sukhtelen. After looking at him Napoleon smiled. "He's very young to come to meddle with us." "Youth is no hindrance to courage," muttered Sukhtelen in a failing voice. "A splendid reply!" said Napoleon. "Young man, you will go far!" Prince Andrew, who had also been brought forward before the Emperor's eyes to complete the show of prisoners, could not fail to attract his attention. Napoleon apparently remembered seeing him on the battlefield and, addressing him, again used the epithet "young man" that was connected in his memory with Prince Andrew. "Well, and you, young man," said he. "How do you feel, mon brave?" Though five minutes before, Prince Andrew had been able to say a few words to the soldiers who were carrying him, now with his eyes fixed straight on Napoleon, he was silent.... So insignificant at that moment seemed to him all the interests that engrossed Napoleon, so mean did his hero himself with his paltry vanity and joy in victory appear, compared to the lofty, equitable, and kindly sky which he had seen and understood, that he could not answer him. Everything seemed so futile and insignificant in comparison with the stern and solemn train of thought that weakness from loss of blood, suffering, and the nearness of death aroused in him. Looking into Napoleon's eyes Prince Andrew thought of the insignificance of greatness, the unimportance of life which no one could understand, and the still greater unimportance of death, the meaning of which no one alive could understand or explain. The Emperor without waiting for an answer turned away and said to one of the officers as he went: "Have these gentlemen attended to and taken to my bivouac; let my doctor, Larrey, examine their wounds. Au revoir, Prince Repnin!" and he spurred his horse and galloped away. His face shone with self-satisfaction and pleasure. The soldiers who had carried Prince Andrew had noticed and taken the little gold icon Princess Mary had hung round her brother's neck, but seeing the favor the Emperor showed the prisoners, they now hastened to return the holy image. Prince Andrew did not see how and by whom it was replaced, but the little icon with its thin gold chain suddenly appeared upon his chest outside his uniform. "It would be good," thought Prince Andrew, glancing at the icon his sister had hung round his neck with such emotion and reverence, "it would be good if everything were as clear and simple as it seems to Mary. How good it would be to know where to seek for help in this life, and what to expect after it beyond the grave! How happy and calm I should be if I could now say: 'Lord, have mercy on me!'... But to whom should I say that? Either to a Power indefinable, incomprehensible, which I not only cannot address but which I cannot even express in words--the Great All or Nothing-" said he to himself, "or to that God who has been sewn into this amulet by Mary! There is nothing certain, nothing at all except the unimportance of everything I understand, and the greatness of something incomprehensible but all-important." The stretchers moved on. At every jolt he again felt unendurable pain; his feverishness increased and he grew delirious. Visions of his father, wife, sister, and future son, and the tenderness he had felt the night before the battle, the figure of the insignificant little Napoleon, and above all this the lofty sky, formed the chief subjects of his delirious fancies. The quiet home life and peaceful happiness of Bald Hills presented itself to him. He was already enjoying that happiness when that little Napoleon had suddenly appeared with his unsympathizing look of shortsighted delight at the misery of others, and doubts and torments had followed, and only the heavens promised peace. Toward morning all these dreams melted and merged into the chaos and darkness of unconciousness and oblivion which in the opinion of Napoleon's doctor, Larrey, was much more likely to end in death than in convalescence. "He is a nervous, bilious subject," said Larrey, "and will not recover." And Prince Andrew, with others fatally wounded, was left to the care of the inhabitants of the district. BOOK FOUR: 1806 CHAPTER I Early in the year 1806 Nicholas Rostov returned home on leave. Denisov was going home to Voronezh and Rostov persuaded him to travel with him as far as Moscow and to stay with him there. Meeting a comrade at the last post station but one before Moscow, Denisov had drunk three bottles of wine with him and, despite the jolting ruts across the snow-covered road, did not once wake up on the way to Moscow, but lay at the bottom of the sleigh beside Rostov, who grew more and more impatient the nearer they got to Moscow. "How much longer? How much longer? Oh, these insufferable streets, shops, bakers' signboards, street lamps, and sleighs!" thought Rostov, when their leave permits had been passed at the town gate and they had entered Moscow. "Denisov! We're here! He's asleep," he added, leaning forward with his whole body as if in that position he hoped to hasten the speed of the sleigh. Denisov gave no answer. "There's the corner at the crossroads, where the cabman, Zakhar, has his stand, and there's Zakhar himself and still the same horse! And here's the little shop where we used to buy gingerbread! Can't you hurry up? Now then!" "Which house is it?" asked the driver. "Why, that one, right at the end, the big one. Don't you see? That's our house," said Rostov. "Of course, it's our house! Denisov, Denisov! We're almost there!" Denisov raised his head, coughed, and made no answer. "Dmitri," said Rostov to his valet on the box, "those lights are in our house, aren't they?" "Yes, sir, and there's a light in your father's study." "Then they've not gone to bed yet? What do you think? Mind now, don't forget to put out my new coat," added Rostov, fingering his new mustache. "Now then, get on," he shouted to the driver. "Do wake up, Vaska!" he went on, turning to Denisov, whose head was again nodding. "Come, get on! You shall have three rubles for vodka--get on!" Rostov shouted, when the sleigh was only three houses from his door. It seemed to him the horses were not moving at all. At last the sleigh bore to the right, drew up at an entrance, and Rostov saw overhead the old familiar cornice with a bit of plaster broken off, the porch, and the post by the side of the pavement. He sprang out before the sleigh stopped, and ran into the hall. The house stood cold and silent, as if quite regardless of who had come to it. There was no one in the hall. "Oh God! Is everyone all right?" he thought, stopping for a moment with a sinking heart, and then immediately starting to run along the hall and up the warped steps of the familiar staircase. The well-known old door handle, which always angered the countess when it was not properly cleaned, turned as loosely as ever. A solitary tallow candle burned in the anteroom. Old Michael was asleep on the chest. Prokofy, the footman, who was so strong that he could lift the back of the carriage from behind, sat plaiting slippers out of cloth selvedges. He looked up at the opening door and his expression of sleepy indifference suddenly changed to one of delighted amazement. "Gracious heavens! The young count!" he cried, recognizing his young master. "Can it be? My treasure!" and Prokofy, trembling with excitement, rushed toward the drawing-room door, probably in order to announce him, but, changing his mind, came back and stooped to kiss the young man's shoulder. "All well?" asked Rostov, drawing away his arm. "Yes, God be thanked! Yes! They've just finished supper. Let me have a look at you, your excellency." "Is everything quite all right?" "The Lord be thanked, yes!" Rostov, who had completely forgotten Denisov, not wishing anyone to forestall him, threw off his fur coat and ran on tiptoe through the large dark ballroom. All was the same: there were the same old card tables and the same chandelier with a cover over it; but someone had already seen the young master, and, before he had reached the drawing room, something flew out from a side door like a tornado and began hugging and kissing him. Another and yet another creature of the same kind sprang from a second door and a third; more hugging, more kissing, more outcries, and tears of joy. He could not distinguish which was Papa, which Natasha, and which Petya. Everyone shouted, talked, and kissed him at the same time. Only his mother was not there, he noticed that. "And I did not know... Nicholas... My darling!..." "Here he is... our own... Kolya,* dear fellow... How he has changed!... Where are the candles?... Tea!..." *Nicholas. "And me, kiss me!" "Dearest... and me!" Sonya, Natasha, Petya, Anna Mikhaylovna, Vera, and the old count were all hugging him, and the serfs, men and maids, flocked into the room, exclaiming and oh-ing and ah-ing. Petya, clinging to his legs, kept shouting, "And me too!" Natasha, after she had pulled him down toward her and covered his face with kisses, holding him tight by the skirt of his coat, sprang away and pranced up and down in one place like a goat and shrieked piercingly. All around were loving eyes glistening with tears of joy, and all around were lips seeking a kiss. Sonya too, all rosy red, clung to his arm and, radiant with bliss, looked eagerly toward his eyes, waiting for the look for which she longed. Sonya now was sixteen and she was very pretty, especially at this moment of happy, rapturous excitement. She gazed at him, not taking her eyes off him, and smiling and holding her breath. He gave her a grateful look, but was still expectant and looking for someone. The old countess had not yet come. But now steps were heard at the door, steps so rapid that they could hardly be his mother's. Yet it was she, dressed in a new gown which he did not know, made since he had left. All the others let him go, and he ran to her. When they met, she fell on his breast, sobbing. She could not lift her face, but only pressed it to the cold braiding of his hussar's jacket. Denisov, who had come into the room unnoticed by anyone, stood there and wiped his eyes at the sight. "Vasili Denisov, your son's friend," he said, introducing himself to the count, who was looking inquiringly at him. "You are most welcome! I know, I know," said the count, kissing and embracing Denisov. "Nicholas wrote us... Natasha, Vera, look! Here is Denisov!" The same happy, rapturous faces turned to the shaggy figure of Denisov. "Darling Denisov!" screamed Natasha, beside herself with rapture, springing to him, putting her arms round him, and kissing him. This escapade made everybody feel confused. Denisov blushed too, but smiled and, taking Natasha's hand, kissed it. Denisov was shown to the room prepared for him, and the Rostovs all gathered round Nicholas in the sitting room. The old countess, not letting go of his hand and kissing it every moment, sat beside him: the rest, crowding round him, watched every movement, word, or look of his, never taking their blissfully adoring eyes off him. His brother and sisters struggled for the places nearest to him and disputed with one another who should bring him his tea, handkerchief, and pipe. Rostov was very happy in the love they showed him; but the first moment of meeting had been so beatific that his present joy seemed insufficient, and he kept expecting something more, more and yet more. Next morning, after the fatigues of their journey, the travelers slept till ten o'clock. In the room next their bedroom there was a confusion of sabers, satchels, sabretaches, open portmanteaus, and dirty boots. Two freshly cleaned pairs with spurs had just been placed by the wall. The servants were bringing in jugs and basins, hot water for shaving, and their well-brushed clothes. There was a masculine odor and a smell of tobacco. "Hallo, Gwiska--my pipe!" came Vasili Denisov's husky voice. "Wostov, get up!" Rostov, rubbing his eyes that seemed glued together, raised his disheveled head from the hot pillow. "Why, is it late?" "Late! It's nearly ten o'clock," answered Natasha's voice. A rustle of starched petticoats and the whispering and laughter of girls' voices came from the adjoining room. The door was opened a crack and there was a glimpse of something blue, of ribbons, black hair, and merry faces. It was Natasha, Sonya, and Petya, who had come to see whether they were getting up. "Nicholas! Get up!" Natasha's voice was again heard at the door. "Directly!" Meanwhile, Petya, having found and seized the sabers in the outer room, with the delight boys feel at the sight of a military elder brother, and forgetting that it was unbecoming for the girls to see men undressed, opened the bedroom door. "Is this your saber?" he shouted. The girls sprang aside. Denisov hid his hairy legs under the blanket, looking with a scared face at his comrade for help. The door, having let Petya in, closed again. A sound of laughter came from behind it. "Nicholas! Come out in your dressing gown!" said Natasha's voice. "Is this your saber?" asked Petya. "Or is it yours?" he said, addressing the black-mustached Denisov with servile deference. Rostov hurriedly put something on his feet, drew on his dressing gown, and went out. Natasha had put on one spurred boot and was just getting her foot into the other. Sonya, when he came in, was twirling round and was about to expand her dresses into a balloon and sit down. They were dressed alike, in new pale-blue frocks, and were both fresh, rosy, and bright. Sonya ran away, but Natasha, taking her brother's arm, led him into the sitting room, where they began talking. They hardly gave one another time to ask questions and give replies concerning a thousand little matters which could not interest anyone but themselves. Natasha laughed at every word he said or that she said herself, not because what they were saying was amusing, but because she felt happy and was unable to control her joy which expressed itself by laughter. "Oh, how nice, how splendid!" she said to everything. Rostov felt that, under the influence of the warm rays of love, that childlike smile which had not once appeared on his face since he left home now for the first time after eighteen months again brightened his soul and his face. "No, but listen," she said, "now you are quite a man, aren't you? I'm awfully glad you're my brother." She touched his mustache. "I want to know what you men are like. Are you the same as we? No?" "Why did Sonya run away?" asked Rostov. "Ah, yes! That's a whole long story! How are you going to speak to her--thou or you?" "As may happen," said Rostov. "No, call her you, please! I'll tell you all about it some other time. No, I'll tell you now. You know Sonya's my dearest friend. Such a friend that I burned my arm for her sake. Look here!" She pulled up her muslin sleeve and showed him a red scar on her long, slender, delicate arm, high above the elbow on that part that is covered even by a ball dress. "I burned this to prove my love for her. I just heated a ruler in the fire and pressed it there!" Sitting on the sofa with the little cushions on its arms, in what used to be his old schoolroom, and looking into Natasha's wildly bright eyes, Rostov re-entered that world of home and childhood which had no meaning for anyone else, but gave him some of the best joys of his life; and the burning of an arm with a ruler as a proof of love did not seem to him senseless, he understood and was not surprised at it. "Well, and is that all?" he asked. "We are such friends, such friends! All that ruler business was just nonsense, but we are friends forever. She, if she loves anyone, does it for life, but I don't understand that, I forget quickly." "Well, what then?" "Well, she loves me and you like that." Natasha suddenly flushed. "Why, you remember before you went away?... Well, she says you are to forget all that.... She says: 'I shall love him always, but let him be free.' Isn't that lovely and noble! Yes, very noble? Isn't it?" asked Natasha, so seriously and excitedly that it was evident that what she was now saying she had talked of before, with tears. Rostov became thoughtful. "I never go back on my word," he said. "Besides, Sonya is so charming that only a fool would renounce such happiness." "No, no!" cried Natasha, "she and I have already talked it over. We knew you'd say so. But it won't do, because you see, if you say that--if you consider yourself bound by your promise--it will seem as if she had not meant it seriously. It makes it as if you were marrying her because you must, and that wouldn't do at all." Rostov saw that it had been well considered by them. Sonya had already struck him by her beauty on the preceding day. Today, when he had caught a glimpse of her, she seemed still more lovely. She was a charming girl of sixteen, evidently passionately in love with him (he did not doubt that for an instant). Why should he not love her now, and even marry her, Rostov thought, but just now there were so many other pleasures and interests before him! "Yes, they have taken a wise decision," he thought, "I must remain free." "Well then, that's excellent," said he. "We'll talk it over later on. Oh, how glad I am to have you!" "Well, and are you still true to Boris?" he continued. "Oh, what nonsense!" cried Natasha, laughing. "I don't think about him or anyone else, and I don't want anything of the kind." "Dear me! Then what are you up now?" "Now?" repeated Natasha, and a happy smile lit up her face. "Have you seen Duport?" "No." "Not seen Duport--the famous dancer? Well then, you won't understand. That's what I'm up to." Curving her arms, Natasha held out her skirts as dancers do, ran back a few steps, turned, cut a caper, brought her little feet sharply together, and made some steps on the very tips of her toes. "See, I'm standing! See!" she said, but could not maintain herself on her toes any longer. "So that's what I'm up to! I'll never marry anyone, but will be a dancer. Only don't tell anyone." Rostov laughed so loud and merrily that Denisov, in his bedroom, felt envious and Natasha could not help joining in. "No, but don't you think it's nice?" she kept repeating. "Nice! And so you no longer wish to marry Boris?" Natasha flared up. "I don't want to marry anyone. And I'll tell him so when I see him!" "Dear me!" said Rostov. "But that's all rubbish," Natasha chattered on. "And is Denisov nice?" she asked. "Yes, indeed!" "Oh, well then, good-by: go and dress. Is he very terrible, Denisov?" "Why terrible?" asked Nicholas. "No, Vaska is a splendid fellow." "You call him Vaska? That's funny! And is he very nice?" "Very." "Well then, be quick. We'll all have breakfast together." And Natasha rose and went out of the room on tiptoe, like a ballet dancer, but smiling as only happy girls of fifteen can smile. When Rostov met Sonya in the drawing room, he reddened. He did not know how to behave with her. The evening before, in the first happy moment of meeting, they had kissed each other, but today they felt it could not be done; he felt that everybody, including his mother and sisters, was looking inquiringly at him and watching to see how he would behave with her. He kissed her hand and addressed her not as thou but as you- Sonya. But their eyes met and said thou, and exchanged tender kisses. Her looks asked him to forgive her for having dared, by Natasha's intermediacy, to remind him of his promise, and then thanked him for his love. His looks thanked her for offering him his freedom and told her that one way or another he would never cease to love her, for that would be impossible. "How strange it is," said Vera, selecting a moment when all were silent, "that Sonya and Nicholas now say you to one another and meet like strangers." Vera's remark was correct, as her remarks always were, but, like most of her observations, it made everyone feel uncomfortable, not only Sonya, Nicholas, and Natasha, but even the old countess, who- dreading this love affair which might hinder Nicholas from making a brilliant match--blushed like a girl. Denisov, to Rostov's surprise, appeared in the drawing room with pomaded hair, perfumed, and in a new uniform, looking just as smart as he made himself when going into battle, and he was more amiable to the ladies and gentlemen than Rostov had ever expected to see him. CHAPTER II On his return to Moscow from the army, Nicholas Rostov was welcomed by his home circle as the best of sons, a hero, and their darling Nikolenka; by his relations as a charming, attractive, and polite young man; by his acquaintances as a handsome lieutenant of hussars, a good dancer, and one of the best matches in the city. The Rostovs knew everybody in Moscow. The old count had money enough that year, as all his estates had been remortgaged, and so Nicholas, acquiring a trotter of his own, very stylish riding breeches of the latest cut, such as no one else yet had in Moscow, and boots of the latest fashion, with extremely pointed toes and small silver spurs, passed his time very gaily. After a short period of adapting himself to the old conditions of life, Nicholas found it very pleasant to be at home again. He felt that he had grown up and matured very much. His despair at failing in a Scripture examination, his borrowing money from Gavril to pay a sleigh driver, his kissing Sonya on the sly--he now recalled all this as childishness he had left immeasurably behind. Now he was a lieutenant of hussars, in a jacket laced with silver, and wearing the Cross of St. George, awarded to soldiers for bravery in action, and in the company of well-known, elderly, and respected racing men was training a trotter of his own for a race. He knew a lady on one of the boulevards whom he visited of an evening. He led the mazurka at the Arkharovs' ball, talked about the war with Field Marshal Kamenski, visited the English Club, and was on intimate terms with a colonel of forty to whom Denisov had introduced him. His passion for the Emperor had cooled somewhat in Moscow. But still, as he did not see him and had no opportunity of seeing him, he often spoke about him and about his love for him, letting it be understood that he had not told all and that there was something in his feelings for the Emperor not everyone could understand, and with his whole soul he shared the adoration then common in Moscow for the Emperor, who was spoken of as the "angel incarnate." During Rostov's short stay in Moscow, before rejoining the army, he did not draw closer to Sonya, but rather drifted away from her. She was very pretty and sweet, and evidently deeply in love with him, but he was at the period of youth when there seems so much to do that there is no time for that sort of thing and a young man fears to bind himself and prizes his freedom which he needs for so many other things. When he thought of Sonya, during this stay in Moscow, he said to himself, "Ah, there will be, and there are, many more such girls somewhere whom I do not yet know. There will be time enough to think about love when I want to, but now I have no time." Besides, it seemed to him that the society of women was rather derogatory to his manhood. He went to balls and into ladies' society with an affectation of doing so against his will. The races, the English Club, sprees with Denisov, and visits to a certain house--that was another matter and quite the thing for a dashing young hussar! At the beginning of March, old Count Ilya Rostov was very busy arranging a dinner in honor of Prince Bagration at the English Club. The count walked up and down the hall in his dressing gown, giving orders to the club steward and to the famous Feoktist, the Club's head cook, about asparagus, fresh cucumbers, strawberries, veal, and fish for this dinner. The count had been a member and on the committee of the Club from the day it was founded. To him the Club entrusted the arrangement of the festival in honor of Bagration, for few men knew so well how to arrange a feast on an open-handed, hospitable scale, and still fewer men would be so well able and willing to make up out of their own resources what might be needed for the success of the fete. The club cook and the steward listened to the count's orders with pleased faces, for they knew that under no other management could they so easily extract a good profit for themselves from a dinner costing several thousand rubles. "Well then, mind and have cocks' comb in the turtle soup, you know!" "Shall we have three cold dishes then?" asked the cook. The count considered. "We can't have less--yes, three... the mayonnaise, that's one," said he, bending down a finger. "Then am I to order those large sterlets?" asked the steward. "Yes, it can't be helped if they won't take less. Ah, dear me! I was forgetting. We must have another entree. Ah, goodness gracious!" he clutched at his head. "Who is going to get me the flowers? Dmitri! Eh, Dmitri! Gallop off to our Moscow estate," he said to the factotum who appeared at his call. "Hurry off and tell Maksim, the gardener, to set the serfs to work. Say that everything out of the hothouses must be brought here well wrapped up in felt. I must have two hundred pots here on Friday." Having given several more orders, he was about to go to his "little countess" to have a rest, but remembering something else of importance, he returned again, called back the cook and the club steward, and again began giving orders. A light footstep and the clinking of spurs were heard at the door, and the young count, handsome, rosy, with a dark little mustache, evidently rested and made sleeker by his easy life in Moscow, entered the room. "Ah, my boy, my head's in a whirl!" said the old man with a smile, as if he felt a little confused before his son. "Now, if you would only help a bit! I must have singers too. I shall have my own orchestra, but shouldn't we get the gypsy singers as well? You military men like that sort of thing." "Really, Papa, I believe Prince Bagration worried himself less before the battle of Schon Grabern than you do now," said his son with a smile. The old count pretended to be angry. "Yes, you talk, but try it yourself!" And the count turned to the cook, who, with a shrewd and respectful expression, looked observantly and sympathetically at the father and son. "What have the young people come to nowadays, eh, Feoktist?" said he. "Laughing at us old fellows!" "That's so, your excellency, all they have to do is to eat a good dinner, but providing it and serving it all up, that's not their business!" "That's it, that's it!" exclaimed the count, and gaily seizing his son by both hands, he cried, "Now I've got you, so take the sleigh and pair at once, and go to Bezukhob's, and tell him 'Count Ilya has sent you to ask for strawberries and fresh pineapples.' We can't get them from anyone else. He's not there himself, so you'll have to go in and ask the princesses; and from there go on to the Rasgulyay--the coachman Ipatka knows--and look up the gypsy Ilyushka, the one who danced at Count Orlov's, you remember, in a white Cossack coat, and bring him along to me." "And am I to bring the gypsy girls along with him?" asked Nicholas, laughing. "Dear, dear!..." At that moment, with noiseless footsteps and with the businesslike, preoccupied, yet meekly Christian look which never left her face, Anna Mikhaylovna entered the hall. Though she came upon the count in his dressing gown every day, he invariably became confused and begged her to excuse his costume. "No matter at all, my dear count," she said, meekly closing her eyes. "But I'll go to Bezukhov's myself. Pierre has arrived, and now we shall get anything we want from his hothouses. I have to see him in any case. He has forwarded me a letter from Boris. Thank God, Boris is now on the staff." The count was delighted at Anna Mikhaylovna's taking upon herself one of his commissions and ordered the small closed carriage for her. "Tell Bezukhov to come. I'll put his name down. Is his wife with him?" he asked. Anna Mikhaylovna turned up her eyes, and profound sadness was depicted on her face. "Ah, my dear friend, he is very unfortunate," she said. "If what we hear is true, it is dreadful. How little we dreamed of such a thing when we were rejoicing at his happiness! And such a lofty angelic soul as young Bezukhov! Yes, I pity him from my heart, and shall try to give him what consolation I can." "Wh-what is the matter?" asked both the young and old Rostov. Anna Mikhaylovna sighed deeply. "Dolokhov, Mary Ivanovna's son," she said in a mysterious whisper, "has compromised her completely, they say. Pierre took him up, invited him to his house in Petersburg, and now... she has come here and that daredevil after her!" said Anna Mikhaylovna, wishing to show her sympathy for Pierre, but by involuntary intonations and a half smile betraying her sympathy for the "daredevil," as she called Dolokhov. "They say Pierre is quite broken by his misfortune." "Dear, dear! But still tell him to come to the Club--it will all blow over. It will be a tremendous banquet." Next day, the third of March, soon after one o'clock, two hundred and fifty members of the English Club and fifty guests were awaiting the guest of honor and hero of the Austrian campaign, Prince Bagration, to dinner. On the first arrival of the news of the battle of Austerlitz, Moscow had been bewildered. At that time, the Russians were so used to victories that on receiving news of the defeat some would simply not believe it, while others sought some extraordinary explanation of so strange an event. In the English Club, where all who were distinguished, important, and well informed forgathered when the news began to arrive in December, nothing was said about the war and the last battle, as though all were in a conspiracy of silence. The men who set the tone in conversation--Count Rostopchin, Prince Yuri Dolgorukov, Valuev, Count Markov, and Prince Vyazemski--did not show themselves at the Club, but met in private houses in intimate circles, and the Moscovites who took their opinions from others--Ilya Rostov among them--remained for a while without any definite opinion on the subject of the war and without leaders. The Moscovites felt that something was wrong and that to discuss the bad news was difficult, and so it was best to be silent. But after a while, just as a jury comes out of its room, the bigwigs who guided the Club's opinion reappeared, and everybody began speaking clearly and definitely. Reasons were found for the incredible, unheard-of, and impossible event of a Russian defeat, everything became clear, and in all corners of Moscow the same things began to be said. These reasons were the treachery of the Austrians, a defective commissariat, the treachery of the Pole Przebyszewski and of the Frenchman Langeron, Kutuzov's incapacity, and (it was whispered) the youth and inexperience of the sovereign, who had trusted worthless and insignificant people. But the army, the Russian army, everyone declared, was extraordinary and had achieved miracles of valor. The soldiers, officers, and generals were heroes. But the hero of heroes was Prince Bagration, distinguished by his Schon Grabern affair and by the retreat from Austerlitz, where he alone had withdrawn his column unbroken and had all day beaten back an enemy force twice as numerous as his own. What also conduced to Bagration's being selected as Moscow's hero was the fact that he had no connections in the city and was a stranger there. In his person, honor was shown to a simple fighting Russian soldier without connections and intrigues, and to one who was associated by memories of the Italian campaign with the name of Suvorov. Moreover, paying such honor to Bagration was the best way of expressing disapproval and dislike of Kutuzov. "Had there been no Bagration, it would have been necessary to invent him," said the wit Shinshin, parodying the words of Voltaire. Kutuzov no one spoke of, except some who abused him in whispers, calling him a court weathercock and an old satyr. All Moscow repeated Prince Dolgorukov's saying: "If you go on modeling and modeling you must get smeared with clay," suggesting consolation for our defeat by the memory of former victories; and the words of Rostopchin, that French soldiers have to be incited to battle by highfalutin words, and Germans by logical arguments to show them that it is more dangerous to run away than to advance, but that Russian soldiers only need to be restrained and held back! On all sides, new and fresh anecdotes were heard of individual examples of heroism shown by our officers and men at Austerlitz. One had saved a standard, another had killed five Frenchmen, a third had loaded five cannon singlehanded. Berg was mentioned, by those who did not know him, as having, when wounded in the right hand, taken his sword in the left, and gone forward. Of Bolkonski, nothing was said, and only those who knew him intimately regretted that he had died so young, leaving a pregnant wife with his eccentric father. CHAPTER III On that third of March, all the rooms in the English Club were filled with a hum of conversation, like the hum of bees swarming in springtime. The members and guests of the Club wandered hither and thither, sat, stood, met, and separated, some in uniform and some in evening dress, and a few here and there with powdered hair and in Russian kaftans. Powdered footmen, in livery with buckled shoes and smart stockings, stood at every door anxiously noting visitors' every movement in order to offer their services. Most of those present were elderly, respected men with broad, self-confident faces, fat fingers, and resolute gestures and voices. This class of guests and members sat in certain habitual places and met in certain habitual groups. A minority of those present were casual guests--chiefly young men, among whom were Denisov, Rostov, and Dolokhov--who was now again an officer in the Semenov regiment. The faces of these young people, especially those who were militarymen, bore that expression of condescending respect for their elders which seems to say to the older generation, "We are prepared to respect and honor you, but all the same remember that the future belongs to us." Nesvitski was there as an old member of the Club. Pierre, who at his wife's command had let his hair grow and abandoned his spectacles, went about the rooms fashionably dressed but looking sad and dull. Here, as elsewhere, he was surrounded by an atmosphere of subservience to his wealth, and being in the habit of lording it over these people, he treated them with absent-minded contempt. By his age he should have belonged to the younger men, but by his wealth and connections he belonged to the groups old and honored guests, and so he went from one group to another. Some of the most important old men were the center of groups which even strangers approached respectfully to hear the voices of well-known men. The largest circles formed round Count Rostopchin, Valuev, and Naryshkin. Rostopchin was describing how the Russians had been overwhelmed by flying Austrians and had had to force their way through them with bayonets. Valuev was confidentially telling that Uvarov had been sent from Petersburg to ascertain what Moscow was thinking about Austerlitz. In the third circle, Naryshkin was speaking of the meeting of the Austrian Council of War at which Suvorov crowed like a cock in reply to the nonsense talked by the Austrian generals. Shinshin, standing close by, tried to make a joke, saying that Kutuzov had evidently failed to learn from Suvorov even so simple a thing as the art of crowing like a cock, but the elder members glanced severely at the wit, making him feel that in that place and on that day, it was improper to speak so of Kutuzov. Count Ilya Rostov, hurried and preoccupied, went about in his soft boots between the dining and drawing rooms, hastily greeting the important and unimportant, all of whom he knew, as if they were all equals, while his eyes occasionally sought out his fine well-set-up young son, resting on him and winking joyfully at him. Young Rostov stood at a window with Dolokhov, whose acquaintance he had lately made and highly valued. The old count came up to them and pressed Dolokhov's hand. "Please come and visit us... you know my brave boy... been together out there... both playing the hero... Ah, Vasili Ignatovich... How d'ye do, old fellow?" he said, turning to an old man who was passing, but before he had finished his greeting there was a general stir, and a footman who had run in announced, with a frightened face: "He's arrived!" Bells rang, the stewards rushed forward, and--like rye shaken together in a shovel--the guests who had been scattered about in different rooms came together and crowded in the large drawing room by the door of the ballroom. Bagration appeared in the doorway of the anteroom without hat or sword, which, in accord with the Club custom, he had given up to the hall porter. He had no lambskin cap on his head, nor had he a loaded whip over his shoulder, as when Rostov had seen him on the eve of the battle of Austerlitz, but wore a tight new uniform with Russian and foreign Orders, and the Star of St. George on his left breast. Evidently just before coming to the dinner he had had his hair and whiskers trimmed, which changed his appearance for the worse. There was something naively festive in his air, which, in conjunction with his firm and virile features, gave him a rather comical expression. Bekleshev and Theodore Uvarov, who had arrived with him, paused at the doorway to allow him, as the guest of honor, to enter first. Bagration was embarrassed, not wishing to avail himself of their courtesy, and this caused some delay at the doors, but after all he did at last enter first. He walked shyly and awkwardly over the parquet floor of the reception room, not knowing what to do with his hands; he was more accustomed to walk over a plowed field under fire, as he had done at the head of the Kursk regiment at Schon Grabern--and he would have found that easier. The committeemen met him at the first door and, expressing their delight at seeing such a highly honored guest, took possession of him as it were, without waiting for his reply, surrounded him, and led him to the drawing room. It was at first impossible to enter the drawing-room door for the crowd of members and guests jostling one another and trying to get a good look at Bagration over each other's shoulders, as if he were some rare animal. Count Ilya Rostov, laughing and repeating the words, "Make way, dear boy! Make way, make way!" pushed through the crowd more energetically than anyone, led the guests into the drawing room, and seated them on the center sofa. The bigwigs, the most respected members of the Club, beset the new arrivals. Count Ilya, again thrusting his way through the crowd, went out of the drawing room and reappeared a minute later with another committeeman, carrying a large silver salver which he presented to Prince Bagration. On the salver lay some verses composed and printed in the hero's honor. Bagration, on seeing the salver, glanced around in dismay, as though seeking help. But all eyes demanded that he should submit. Feeling himself in their power, he resolutely took the salver with both hands and looked sternly and reproachfully at the count who had presented it to him. Someone obligingly took the dish from Bagration (or he would, it seemed, have held it till evening and have gone in to dinner with it) and drew his attention to the verses. "Well, I will read them, then!" Bagration seemed to say, and, fixing his weary eyes on the paper, began to read them with a fixed and serious expression. But the author himself took the verses and began reading them aloud. Bagration bowed his bead and listened: Bring glory then to Alexander's reign And on the throne our Titus shield. A dreaded foe be thou, kindhearted as a man, A Rhipheus at home, a Caesar in the field! E'en fortunate Napoleon Knows by experience, now, Bagration, And dare not Herculean Russians trouble... But before he had finished reading, a stentorian major-domo announced that dinner was ready! The door opened, and from the dining room came the resounding strains of the polonaise: Conquest's joyful thunder waken, Triumph, valiant Russians, now!... and Count Rostov, glancing angrily at the author who went on reading his verses, bowed to Bagration. Everyone rose, feeling that dinner was more important than verses, and Bagration, again preceding all the rest, went in to dinner. He was seated in the place of honor between two Alexanders--Bekleshev and Naryshkin--which was a significant allusion to the name of the sovereign. Three hundred persons took their seats in the dining room, according to their rank and importance: the more important nearer to the honored guest, as naturally as water flows deepest where the land lies lowest. Just before dinner, Count Ilya Rostov presented his son to Bagration, who recognized him and said a few words to him, disjointed and awkward, as were all the words he spoke that day, and Count Ilya looked joyfully and proudly around while Bagration spoke to his son. Nicholas Rostov, with Denisov and his new acquaintance, Dolokhov, sat almost at the middle of the table. Facing them sat Pierre, beside Prince Nesvitski. Count Ilya Rostov with the other members of the committee sat facing Bagration and, as the very personification of Moscow hospitality, did the honors to the prince. His efforts had not been in vain. The dinner, both the Lenten and the other fare, was splendid, yet he could not feel quite at ease till the end of the meal. He winked at the butler, whispered directions to the footmen, and awaited each expected dish with some anxiety. Everything was excellent. With the second course, a gigantic sterlet (at sight of which Ilya Rostov blushed with self-conscious pleasure), the footmen began popping corks and filling the champagne glasses. After the fish, which made a certain sensation, the count exchanged glances with the other committeemen. "There will be many toasts, it's time to begin," he whispered, and taking up his glass, he rose. All were silent, waiting for what he would say. "To the health of our Sovereign, the Emperor!" he cried, and at the same moment his kindly eyes grew moist with tears of joy and enthusiasm. The band immediately struck up "Conquest's joyful thunder waken..." All rose and cried "Hurrah!" Bagration also rose and shouted "Hurrah!" in exactly the same voice in which he had shouted it on the field at Schon Grabern. Young Rostov's ecstatic voice could be heard above the three hundred others. He nearly wept. "To the health of our Sovereign, the Emperor!" he roared, "Hurrah!" and emptying his glass at one gulp he dashed it to the floor. Many followed his example, and the loud shouting continued for a long time. When the voices subsided, the footmen cleared away the broken glass and everybody sat down again, smiling at the noise they had made and exchanging remarks. The old count rose once more, glanced at a note lying beside his plate, and proposed a toast, "To the health of the hero of our last campaign, Prince Peter Ivanovich Bagration!" and again his blue eyes grew moist. "Hurrah!" cried the three hundred voices again, but instead of the band a choir began singing a cantata composed by Paul Ivanovich Kutuzov: Russians! O'er all barriers on! Courage conquest guarantees; Have we not Bagration? He brings foe men to their knees,... etc. As soon as the singing was over, another and another toast was proposed and Count Ilya Rostov became more and more moved, more glass was smashed, and the shouting grew louder. They drank to Bekleshev, Naryshkin, Uvarov, Dolgorukov, Apraksin, Valuev, to the committee, to all the Club members and to all the Club guests, and finally to Count Ilya Rostov separately, as the organizer of the banquet. At that toast, the count took out his handkerchief and, covering his face, wept outright. CHAPTER IV Pierre sat opposite Dolokhov and Nicholas Rostov. As usual, he ate and drank much, and eagerly. But those who knew him intimately noticed that some great change had come over him that day. He was silent all through dinner and looked about, blinking and scowling, or, with fixed eyes and a look of complete absent-mindedness, kept rubbing the bridge of his nose. His face was depressed and gloomy. He seemed to see and hear nothing of what was going on around him and to be absorbed by some depressing and unsolved problem. The unsolved problem that tormented him was caused by hints given by the princess, his cousin, at Moscow, concerning Dolokhov's intimacy with his wife, and by an anonymous letter he had received that morning, which in the mean jocular way common to anonymous letters said that he saw badly through his spectacles, but that his wife's connection with Dolokhov was a secret to no one but himself. Pierre absolutely disbelieved both the princess' hints and the letter, but he feared now to look at Dolokhov, who was sitting opposite him. Every time he chanced to meet Dolokhov's handsome insolent eyes, Pierre felt something terrible and monstrous rising in his soul and turned quickly away. Involuntarily recalling his wife's past and her relations with Dolokhov, Pierre saw clearly that what was said in the letter might be true, or might at least seem to be true had it not referred to his wife. He involuntarily remembered how Dolokhov, who had fully recovered his former position after the campaign, had returned to Petersburg and come to him. Availing himself of his friendly relations with Pierre as a boon companion, Dolokhov had come straight to his house, and Pierre had put him up and lent him money. Pierre recalled how Helene had smilingly expressed disapproval of Dolokhov's living at their house, and how cynically Dolokhov had praised his wife's beauty to him and from that time till they came to Moscow had not left them for a day. "Yes, he is very handsome," thought Pierre, "and I know him. It would be particularly pleasant to him to dishonor my name and ridicule me, just because I have exerted myself on his behalf, befriended him, and helped him. I know and understand what a spice that would add to the pleasure of deceiving me, if it really were true. Yes, if it were true, but I do not believe it. I have no right to, and can't, believe it." He remembered the expression Dolokhov's face assumed in his moments of cruelty, as when tying the policeman to the bear and dropping them into the water, or when he challenged a man to a duel without any reason, or shot a post-boy's horse with a pistol. That expression was often on Dolokhov's face when looking at him. "Yes, he is a bully," thought Pierre, "to kill a man means nothing to him. It must seem to him that everyone is afraid of him, and that must please him. He must think that I, too, am afraid of him--and in fact I am afraid of him," he thought, and again he felt something terrible and monstrous rising in his soul. Dolokhov, Denisov, and Rostov were now sitting opposite Pierre and seemed very gay. Rostov was talking merrily to his two friends, one of whom was a dashing hussar and the other a notorious duelist and rake, and every now and then he glanced ironically at Pierre, whose preoccupied, absent-minded, and massive figure was a very noticeable one at the dinner. Rostov looked inimically at Pierre, first because Pierre appeared to his hussar eyes as a rich civilian, the husband of a beauty, and in a word--an old woman; and secondly because Pierre in his preoccupation and absent-mindedness had not recognized Rostov and had not responded to his greeting. When the Emperor's health was drunk, Pierre, lost in thought, did not rise or lift his glass. "What are you about?" shouted Rostov, looking at him in an ecstasy of exasperation. "Don't you hear it's His Majesty the Emperor's health?" Pierre sighed, rose submissively, emptied his glass, and, waiting till all were seated again, turned with his kindly smile to Rostov. "Why, I didn't recognize you!" he said. But Rostov was otherwise engaged; he was shouting "Hurrah!" "Why don't you renew the acquaintance?" said Dolokhov to Rostov. "Confound him, he's a fool!" said Rostov. "One should make up to the husbands of pretty women," said Denisov. Pierre did not catch what they were saying, but knew they were talking about him. He reddened and turned away. "Well, now to the health of handsome women!" said Dolokhov, and with a serious expression, but with a smile lurking at the corners of his mouth, he turned with his glass to Pierre. "Here's to the health of lovely women, Peterkin--and their lovers!" he added. Pierre, with downcast eyes, drank out of his glass without looking at Dolokhov or answering him. The footman, who was distributing leaflets with Kutuzov's cantata, laid one before Pierre as one of the principal guests. He was just going to take it when Dolokhov, leaning across, snatched it from his hand and began reading it. Pierre looked at Dolokhov and his eyes dropped, the something terrible and monstrous that had tormented him all dinnertime rose and took possession of him. He leaned his whole massive body across the table. "How dare you take it?" he shouted. Hearing that cry and seeing to whom it was addressed, Nesvitski and the neighbor on his right quickly turned in alarm to Bezukhov. "Don't! Don't! What are you about?" whispered their frightened voices. Dolokhov looked at Pierre with clear, mirthful, cruel eyes, and that smile of his which seemed to say, "Ah! This is what I like!" "You shan't have it!" he said distinctly. Pale, with quivering lips, Pierre snatched the copy. "You...! you... scoundrel! I challenge you!" he ejaculated, and, pushing back his chair, he rose from the table. At the very instant he did this and uttered those words, Pierre felt that the question of his wife's guilt which had been tormenting him the whole day was finally and indubitably answered in the affirmative. He hated her and was forever sundered from her. Despite Denisov's request that he would take no part in the matter, Rostov agreed to be Dolokhov's second, and after dinner he discussed the arrangements for the duel with Nesvitski, Bezukhov's second. Pierre went home, but Rostov with Dolokhov and Denisov stayed on at the Club till late, listening to the gypsies and other singers. "Well then, till tomorrow at Sokolniki," said Dolokhov, as he took leave of Rostov in the Club porch. "And do you feel quite calm?" Rostov asked. Dolokhov paused. "Well, you see, I'll tell you the whole secret of dueling in two words. If you are going to fight a duel, and you make a will and write affectionate letters to your parents, and if you think you may be killed, you are a fool and are lost for certain. But go with the firm intention of killing your man as quickly and surely as possible, and then all will be right, as our bear huntsman at Kostroma used to tell me. 'Everyone fears a bear,' he says, 'but when you see one your fear's all gone, and your only thought is not to let him get away!' And that's how it is with me. A demain, mon cher."* *Till tomorrow, my dear fellow. Next day, at eight in the morning, Pierre and Nesvitski drove to the Sokolniki forest and found Dolokhov, Denisov, and Rostov already there. Pierre had the air of a man preoccupied with considerations which had no connection with the matter in hand. His haggard face was yellow. He had evidently not slept that night. He looked about distractedly and screwed up his eyes as if dazzled by the sun. He was entirely absorbed by two considerations: his wife's guilt, of which after his sleepless night he had not the slightest doubt, and the guiltlessness of Dolokhov, who had no reason to preserve the honor of a man who was nothing to him.... "I should perhaps have done the same thing in his place," thought Pierre. "It's even certain that I should have done the same, then why this duel, this murder? Either I shall kill him, or he will hit me in the head, or elbow, or knee. Can't I go away from here, run away, bury myself somewhere?" passed through his mind. But just at moments when such thoughts occurred to him, he would ask in a particularly calm and absent-minded way, which inspired the respect of the onlookers, "Will it be long? Are things ready?" When all was ready, the sabers stuck in the snow to mark the barriers, and the pistols loaded, Nesvitski went up to Pierre. "I should not be doing my duty, Count," he said in timid tones, "and should not justify your confidence and the honor you have done me in choosing me for your second, if at this grave, this very grave, moment I did not tell you the whole truth. I think there is no sufficient ground for this affair, or for blood to be shed over it.... You were not right, not quite in the right, you were impetuous..." "Oh yes, it is horribly stupid," said Pierre. "Then allow me to express your regrets, and I am sure your opponent will accept them," said Nesvitski (who like the others concerned in the affair, and like everyone in similar cases, did not yet believe that the affair had come to an actual duel). "You know, Count, it is much more honorable to admit one's mistake than to let matters become irreparable. There was no insult on either side. Allow me to convey...." "No! What is there to talk about?" said Pierre. "It's all the same.... Is everything ready?" he added. "Only tell me where to go and where to shoot," he said with an unnaturally gentle smile. He took the pistol in his hand and began asking about the working of the trigger, as he had not before held a pistol in his hand--a fact that he did not to confess. "Oh yes, like that, I know, I only forgot," said he. "No apologies, none whatever," said Dolokhov to Denisov (who on his side had been attempting a reconciliation), and he also went up to the appointed place. The spot chosen for the duel was some eighty paces from the road, where the sleighs had been left, in a small clearing in the pine forest covered with melting snow, the frost having begun to break up during the last few days. The antagonists stood forty paces apart at the farther edge of the clearing. The seconds, measuring the paces, left tracks in the deep wet snow between the place where they had been standing and Nesvitski's and Dolokhov's sabers, which were stuck intothe ground ten paces apart to mark the barrier. It was thawing and misty; at forty paces' distance nothing could be seen. For three minutes all had been ready, but they still delayed and all were silent. CHAPTER V "Well begin!" said Dolokhov. "All right," said Pierre, still smiling in the same way. A feeling of dread was in the air. It was evident that the affair so lightly begun could no longer be averted but was taking its course independently of men's will. Denisov first went to the barrier and announced: "As the adve'sawies have wefused a weconciliation, please pwoceed. Take your pistols, and at the word thwee begin to advance. "O-ne! T-wo! Thwee!" he shouted angrily and stepped aside. The combatants advanced along the trodden tracks, nearer and nearer to one another, beginning to see one another through the mist. They had the right to fire when they liked as they approached the barrier. Dolokhov walked slowly without raising his pistol, looking intently with his bright, sparkling blue eyes into his antagonist's face. His mouth wore its usual semblance of a smile. "So I can fire when I like!" said Pierre, and at the word "three," he went quickly forward, missing the trodden path and stepping into the deep snow. He held the pistol in his right hand at arm's length, apparently afraid of shooting himself with it. His left hand he held carefully back, because he wished to support his right hand with it and knew he must not do so. Having advanced six paces and strayed off the track into the snow, Pierre looked down at his feet, then quickly glanced at Dolokhov and, bending his finger as he had been shown, fired. Not at all expecting so loud a report, Pierre shuddered at the sound and then, smiling at his own sensations, stood still. The smoke, rendered denser by the mist, prevented him from seeing anything for an instant, but there was no second report as he had expected. He only heard Dolokhov's hurried steps, and his figure came in view through the smoke. He was pressing one hand to his left side, while the other clutched his drooping pistol. His face was pale. Rostov ran toward him and said something. "No-o-o!" muttered Dolokhov through his teeth, "no, it's not over." And after stumbling a few staggering steps right up to the saber, he sank on the snow beside it. His left hand was bloody; he wiped it on his coat and supported himself with it. His frowning face was pallid and quivered. "Plea..." began Dolokhov, but could not at first pronounce the word. "Please," he uttered with an effort. Pierre, hardly restraining his sobs, began running toward Dolokhov and was about to cross the space between the barriers, when Dolokhov cried: "To your barrier!" and Pierre, grasping what was meant, stopped by his saber. Only ten paces divided them. Dolokhov lowered his head to the snow, greedily bit at it, again raised his head, adjusted himself, drew in his legs and sat up, seeking a firm center of gravity. He sucked and swallowed the cold snow, his lips quivered but his eyes, still smiling, glittered with effort and exasperation as he mustered his remaining strength. He raised his pistol and aimed. "Sideways! Cover yourself with your pistol!" ejaculated Nesvitski. "Cover yourself!" even Denisov cried to his adversary. Pierre, with a gentle smile of pity and remorse, his arms and legs helplessly spread out, stood with his broad chest directly facing Dolokhov looked sorrowfully at him. Denisov, Rostov, and Nesvitski closed their eyes. At the same instant they heard a report and Dolokhov's angry cry. "Missed!" shouted Dolokhov, and he lay helplessly, face downwards on the snow. Pierre clutched his temples, and turning round went into the forest, trampling through the deep snow, and muttering incoherent words: "Folly... folly! Death... lies..." he repeated, puckering his face. Nesvitski stopped him and took him home. Rostov and Denisov drove away with the wounded Dolokhov. The latter lay silent in the sleigh with closed eyes and did not answer a word to the questions addressed to him. But on entering Moscow he suddenly came to and, lifting his head with an effort, took Rostov, who was sitting beside him, by the hand. Rostov was struck by the totally altered and unexpectedly rapturous and tender expression on Dolokhov's face. "Well? How do you feel?" he asked. "Bad! But it's not that, my friend-" said Dolokhov with a gasping voice. "Where are we? In Moscow, I know. I don't matter, but I have killed her, killed... She won't get over it! She won't survive...." "Who?" asked Rostov. "My mother! My mother, my angel, my adored angel mother," and Dolokhov pressed Rostov's hand and burst into tears. When he had become a little quieter, he explained to Rostov that he was living with his mother, who, if she saw him dying, would not survive it. He implored Rostov to go on and prepare her. Rostov went on ahead to do what was asked, and to his great surprise learned that Dolokhov the brawler, Dolokhov the bully, lived in Moscow with an old mother and a hunchback sister, and was the most affectionate of sons and brothers. CHAPTER VI Pierre had of late rarely seen his wife alone. Both in Petersburg and in Moscow their house was always full of visitors. The night after the duel he did not go to his bedroom but, as he often did, remained in his father's room, that huge room in which Count Bezukhov had died. He lay down on the sofa meaning to fall asleep and forget all that had happened to him, but could not do so. Such a storm of feelings, thoughts, and memories suddenly arose within him that he could not fall asleep, nor even remain in one place, but had to jump up and pace the room with rapid steps. Now he seemed to see her in the early days of their marriage, with bare shoulders and a languid, passionate look on her face, and then immediately he saw beside her Dolokhov's handsome, insolent, hard, and mocking face as he had seen it at the banquet, and then that same face pale, quivering, and suffering, as it had been when he reeled and sank on the snow. "What has happened?" he asked himself. "I have killed her lover, yes, killed my wife's lover. Yes, that was it! And why? How did I come to do it?"--"Because you married her," answered an inner voice. "But in what was I to blame?" he asked. "In marrying her without loving her; in deceiving yourself and her." And he vividly recalled that moment after supper at Prince Vasili's, when he spoke those words he had found so difficult to utter: "I love you." "It all comes from that! Even then I felt it," he thought. "I felt then that it was not so, that I had no right to do it. And so it turns out." He remembered his honeymoon and blushed at the recollection. Particularly vivid, humiliating, and shameful was the recollection of how one day soon after his marriage he came out of the bedroom into his study a little before noon in his silk dressing gown and found his head steward there, who, bowing respectfully, looked into his face and at his dressing gown and smiled slightly, as if expressing respectful understanding of his employer's happiness. "But how often I have felt proud of her, proud of her majestic beauty and social tact," thought he; "been proud of my house, in which she received all Petersburg, proud of her unapproachability and beauty. So this is what I was proud of! I then thought that I did not understand her. How often when considering her character I have told myself that I was to blame for not understanding her, for not understanding that constant composure and complacency and lack of all interests or desires, and the whole secret lies in the terrible truth that she is a depraved woman. Now I have spoken that terrible word to myself all has become clear. "Anatole used to come to borrow money from her and used to kiss her naked shoulders. She did not give him the money, but let herself be kissed. Her father in jest tried to rouse her jealousy, and she replied with a calm smile that she was not so stupid as to be jealous: 'Let him do what he pleases,' she used to say of me. One day I asked her if she felt any symptoms of pregnancy. She laughed contemptuously and said she was not a fool to want to have children, and that she was not going to have any children by me." Then he recalled the coarseness and bluntness of her thoughts and the vulgarity of the expressions that were natural to her, though she had been brought up in the most aristocratic circles. "I'm not such a fool.... Just you try it on.... Allez-vous promener,"* she used to say. Often seeing the success she had with young and old men and women Pierre could not understand why he did not love her. *"You clear out of this." "Yes, I never loved her," said he to himself; "I knew she was a depraved woman," he repeated, "but dared not admit it to myself. And now there's Dolokhov sitting in the snow with a forced smile and perhaps dying, while meeting my remorse with some forced bravado!" Pierre was one of those people who, in spite of an appearance of what is called weak character, do not seek a confidant in their troubles. He digested his sufferings alone. "It is all, all her fault," he said to himself; "but what of that? Why did I bind myself to her? Why did I say 'Je vous aime'* to her, which was a lie, and worse than a lie? I am guilty and must endure... what? A slur on my name? A misfortune for life? Oh, that's nonsense," he thought. "The slur on my name and honor--that's all apart from myself. *I love you. "Louis XVI was executed because they said he was dishonorable and a criminal," came into Pierre's head, "and from their point of view they were right, as were those too who canonized him and died a martyr's death for his sake. Then Robespierre was beheaded for being a despot. Who is right and who is wrong? No one! But if you are alive- live: tomorrow you'll die as I might have died an hour ago. And is it worth tormenting oneself, when one has only a moment of life in comparison with eternity?" But at the moment when he imagined himself calmed by such reflections, she suddenly came into his mind as she was at the moments when he had most strongly expressed his insincere love for her, and he felt the blood rush to his heart and had again to get up and move about and break and tear whatever came to his hand. "Why did I tell her that 'Je vous aime'?" he kept repeating to himself. And when he had said it for the tenth time, Molibre's words: "Mais que diable alloit-il faire dans cette galere?" occurred to him, and he began to laugh at himself. In the night he called his valet and told him to pack up to go to Petersburg. He could not imagine how he could speak to her now. He resolved to go away next day and leave a letter informing her of his intention to part from her forever. Next morning when the valet came into the room with his coffee, Pierre was lying asleep on the ottoman with an open book in his hand. He woke up and looked round for a while with a startled expression, unable to realize where he was. "The countess told me to inquire whether your excellency was at home," said the valet. But before Pierre could decide what answer he would send, the countess herself in a white satin dressing gown embroidered with silver and with simply dressed hair (two immense plaits twice round her lovely head like a coronet) entered the room, calm and majestic, except that there was a wrathful wrinkle on her rather prominent marble brow. With her imperturbable calm she did not begin to speak in front of the valet. She knew of the duel and had come to speak about it. She waited till the valet had set down the coffee things and left the room. Pierre looked at her timidly over his spectacles, and like a hare surrounded by hounds who lays back her ears and continues to crouch motionless before her enemies, he tried to continue reading. But feeling this to be senseless and impossible, he again glanced timidly at her. She did not sit down but looked at him with a contemptuous smile, waiting for the valet to go. "Well, what's this now? What have you been up to now, I should like to know?" she asked sternly. "I? What have I...?" stammered Pierre. "So it seems you're a hero, eh? Come now, what was this duel about? What is it meant to prove? What? I ask you." Pierre turned over heavily on the ottoman and opened his mouth, but could not reply. "If you won't answer, I'll tell you..." Helene went on. "You believe everything you're told. You were told..." Helene laughed, "that Dolokhov was my lover," she said in French with her coarse plainness of speech, uttering the word amant as casually as any other word, "and you believed it! Well, what have you proved? What does this duel prove? That you're a fool, que vous etes un sot, but everybody knew that. What will be the result? That I shall be the laughingstock of all Moscow, that everyone will say that you, drunk and not knowing what you were about, challenged a man you are jealous of without cause." Helene raised her voice and became more and more excited, "A man who's a better man than you in every way..." "Hm... Hm...!" growled Pierre, frowning without looking at her, and not moving a muscle. "And how could you believe he was my lover? Why? Because I like his company? If you were cleverer and more agreeable, I should prefer yours." "Don't speak to me... I beg you," muttered Pierre hoarsely. "Why shouldn't I speak? I can speak as I like, and I tell you plainly that there are not many wives with husbands such as you who would not have taken lovers (des amants), but I have not done so," said she. Pierre wished to say something, looked at her with eyes whose strange expression she did not understand, and lay down again. He was suffering physically at that moment, there was a weight on his chest and he could not breathe. He knew that he must do something to put an end to this suffering, but what he wanted to do was too terrible. "We had better separate," he muttered in a broken voice. "Separate? Very well, but only if you give me a fortune," said Helene. "Separate! That's a thing to frighten me with!" Pierre leaped up from the sofa and rushed staggering toward her. "I'll kill you!" he shouted, and seizing the marble top of a table with a strength he had never before felt, he made a step toward her brandishing the slab. Helene's face became terrible, she shrieked and sprang aside. His father's nature showed itself in Pierre. He felt the fascination and delight of frenzy. He flung down the slab, broke it, and swooping down on her with outstretched hands shouted, "Get out!" in such a terrible voice that the whole house heard it with horror. God knows what he would have done at that moment had Helene not fled from the room. A week later Pierre gave his wife full power to control all his estates in Great Russia, which formed the larger part of his property, and left for Petersburg alone. CHAPTER VII Two months had elapsed since the news of the battle of Austerlitz and the loss of Prince Andrew had reached Bald Hills, and in spite of the letters sent through the embassy and all the searches made, his body had not been found nor was he on the list of prisoners. What was worst of all for his relations was the fact that there was still a possibility of his having been picked up on the battlefield by the people of the place and that he might now be lying, recovering or dying, alone among strangers and unable to send news of himself. The gazettes from which the old prince first heard of the defeat at Austerlitz stated, as usual very briefly and vaguely, that after brilliant engagements the Russians had had to retreat and had made their withdrawal in perfect order. The old prince understood from this official report that our army had been defeated. A week after the gazette report of the battle of Austerlitz came a letter from Kutuzov informing the prince of the fate that had befallen his son. "Your son," wrote Kutuzov, "fell before my eyes, a standard in his hand and at the head of a regiment--he fell as a hero, worthy of his father and his fatherland. To the great regret of myself and of the whole army it is still uncertain whether he is alive or not. I comfort myself and you with the hope that your son is alive, for otherwise he would have been mentioned among the officers found on the field of battle, a list of whom has been sent me under flag of truce." After receiving this news late in the evening, when he was alone in his study, the old prince went for his walk as usual next morning, but he was silent with his steward, the gardener, and the architect, and though he looked very grim he said nothing to anyone. When Princess Mary went to him at the usual hour he was working at his lathe and, as usual, did not look round at her. "Ah, Princess Mary!" he said suddenly in an unnatural voice, throwing down his chisel. (The wheel continued to revolve by its own impetus, and Princess Mary long remembered the dying creak of that wheel, which merged in her memory with what followed.) She approached him, saw his face, and something gave way within her. Her eyes grew dim. By the expression of her father's face, not sad, not crushed, but angry and working unnaturally, she saw that hanging over her and about to crush her was some terrible misfortune, the worst in life, one she had not yet experienced, irreparable and incomprehensible--the death of one she loved. "Father! Andrew!"--said the ungraceful, awkward princess with such an indescribable charm of sorrow and self-forgetfulness that her father could not bear her look but turned away with a sob. "Bad news! He's not among the prisoners nor among the killed! Kutuzov writes..." and he screamed as piercingly as if he wished to drive the princess away by that scream... "Killed!" The princess did not fall down or faint. She was already pale, but on hearing these words her face changed and something brightened in her beautiful, radiant eyes. It was as if joy--a supreme joy apart from the joys and sorrows of this world--overflowed the great grief within her. She forgot all fear of her father, went up to him, took his hand, and drawing him down put her arm round his thin, scraggy neck. "Father," she said, "do not turn away from me, let us weep together." "Scoundrels! Blackguards!" shrieked the old man, turning his face away from her. "Destroying the army, destroying the men! And why? Go, go and tell Lise." The princess sank helplessly into an armchair beside her father and wept. She saw her brother now as he had been at the moment when he took leave of her and of Lise, his look tender yet proud. She saw him tender and amused as he was when he put on the little icon. "Did he believe? Had he repented of his unbelief? Was he now there? There in the realms of eternal peace and blessedness?" she thought. "Father, tell me how it happened," she asked through her tears. "Go! Go! Killed in battle, where the best of Russian men and Russia's glory were led to destruction. Go, Princess Mary. Go and tell Lise. I will follow." When Princess Mary returned from her father, the little princess sat working and looked up with that curious expression of inner, happy calm peculiar to pregnant women. It was evident that her eyes did not see Princess Mary but were looking within... into herself... at something joyful and mysterious taking place within her. "Mary," she said, moving away from the embroidery frame and lying back, "give me your hand." She took her sister-in-law's hand and held it below her waist. Her eyes were smiling expectantly, her downy lip rose and remained lifted in childlike happiness. Princess Mary knelt down before her and hid her face in the folds of her sister-in-law's dress. "There, there! Do you feel it? I feel so strange. And do you know, Mary, I am going to love him very much," said Lise, looking with bright and happy eyes at her sister-in-law. Princess Mary could not lift her head, she was weeping. "What is the matter, Mary?" "Nothing... only I feel sad... sad about Andrew," she said, wiping away her tears on her sister-in-law's knee. Several times in the course of the morning Princess Mary began trying to prepare her sister-in-law, and every time began to cry. Unobservant as was the little princess, these tears, the cause of which she did not understand, agitated her. She said nothing but looked about uneasily as if in search of something. Before dinner the old prince, of whom she was always afraid, came into her room with a peculiarly restless and malign expression and went out again without saying a word. She looked at Princess Mary, then sat thinking for a while with that expression of attention to something within her that is only seen in pregnant women, and suddenly began to cry. "Has anything come from Andrew?" she asked. "No, you know it's too soon for news. But my father is anxious and I feel afraid." "So there's nothing?" "Nothing," answered Princess Mary, looking firmly with her radiant eyes at her sister-in-law. She had determined not to tell her and persuaded her father to hide the terrible news from her till after her confinement, which was expected within a few days. Princess Mary and the old prince each bore and hid their grief in their own way. The old prince would not cherish any hope: he made up his mind that Prince Andrew had been killed, and though he sent an official to Austria to seek for traces of his son, he ordered a monument from Moscow which he intended to erect in his own garden to his memory, and he told everybody that his son had been killed. He tried not to change his former way of life, but his strength failed him. He walked less, ate less, slept less, and became weaker every day. Princess Mary hoped. She prayed for her brother as living and was always awaiting news of his return. CHAPTER VIII "Dearest," said the little princess after breakfast on the morning of the nineteenth March, and her downy little lip rose from old habit, but as sorrow was manifest in every smile, the sound of every word, and even every footstep in that house since the terrible news had come, so now the smile of the little princess--influenced by the general mood though without knowing its cause--was such as to remind one still more of the general sorrow. "Dearest, I'm afraid this morning's fruschtique*--as Foka the cook calls it--has disagreed with me." *Fruhstuck: breakfast. "What is the matter with you, my darling? You look pale. Oh, you are very pale!" said Princess Mary in alarm, running with her soft, ponderous steps up to her sister-in-law. "Your excellency, should not Mary Bogdanovna be sent for?" said one of the maids who was present. (Mary Bogdanovna was a midwife from the neighboring town, who had been at Bald Hills for the last fortnight.) "Oh yes," assented Princess Mary, "perhaps that's it. I'll go. Courage, my angel." She kissed Lise and was about to leave the room. "Oh, no, no!" And besides the pallor and the physical suffering on the little princess' face, an expression of childish fear of inevitable pain showed itself. "No, it's only indigestion?... Say it's only indigestion, say so, Mary! Say..." And the little princess began to cry capriciously like a suffering child and to wring her little hands even with some affectation. Princess Mary ran out of the room to fetch Mary Bogdanovna. "Mon Dieu! Mon Dieu! Oh!" she heard as she left the room. The midwife was already on her way to meet her, rubbing her small, plump white hands with an air of calm importance. "Mary Bogdanovna, I think it's beginning!" said Princess Mary looking at the midwife with wide-open eyes of alarm. "Well, the Lord be thanked, Princess," said Mary Bogdanovna, not hastening her steps. "You young ladies should not know anything about it." "But how is it the doctor from Moscow is not here yet?" said the princess. (In accordance with Lise's and Prince Andrew's wishes they had sent in good time to Moscow for a doctor and were expecting him at any moment.) "No matter, Princess, don't be alarmed," said Mary Bogdanovna. "We'll manage very well without a doctor." Five minutes later Princess Mary from her room heard something heavy being carried by. She looked out. The men servants were carrying the large leather sofa from Prince Andrew's study into the bedroom. On their faces was a quiet and solemn look. Princess Mary sat alone in her room listening to the sounds in the house, now and then opening her door when someone passed and watching what was going on in the passage. Some women passing with quiet steps in and out of the bedroom glanced at the princess and turned away. She did not venture to ask any questions, and shut the door again, now sitting down in her easy chair, now taking her prayer book, now kneeling before the icon stand. To her surprise and distress she found that her prayers did not calm her excitement. Suddenly her door opened softly and her old nurse, Praskovya Savishna, who hardly ever came to that room as the old prince had forbidden it, appeared on the threshold with a shawl round her head. "I've come to sit with you a bit, Masha," said the nurse, "and here I've brought the prince's wedding candles to light before his saint, my angel," she said with a sigh. "Oh, nurse, I'm so glad!" "God is merciful, birdie." The nurse lit the gilt candles before the icons and sat down by the door with her knitting. Princess Mary took a book and began reading. Only when footsteps or voices were heard did they look at one another, the princess anxious and inquiring, the nurse encouraging. Everyone in the house was dominated by the same feeling that Princess Mary experienced as she sat in her room. But owing to the superstition that the fewer the people who know of it the less a woman in travail suffers, everyone tried to pretend not to know; no one spoke of it, but apart from the ordinary staid and respectful good manners habitual in the prince's household, a common anxiety, a softening of the heart, and a consciousness that something great and mysterious was being accomplished at that moment made itself felt. There was no laughter in the maids' large hall. In the men servants' hall all sat waiting, silently and alert. In the outlying serfs' quarters torches and candles were burning and no one slept. The old prince, stepping on his heels, paced up and down his study and sent Tikhon to ask Mary Bogdanovna what news.--"Say only that 'the prince told me to ask,' and come and tell me her answer." "Inform the prince that labor has begun," said Mary Bogdanovna, giving the messenger a significant look. Tikhon went and told the prince. "Very good!" said the prince closing the door behind him, and Tikhon did not hear the slightest sound from the study after that. After a while he re-entered it as if to snuff the candles, and, seeing the prince was lying on the sofa, looked at him, noticed his perturbed face, shook his head, and going up to him silently kissed him on the shoulder and left the room without snuffing the candles or saying why he had entered. The most solemn mystery in the world continued its course. Evening passed, night came, and the feeling of suspense and softening of heart in the presence of the unfathomable did not lessen but increased. No one slept. It was one of those March nights when winter seems to wish to resume its sway and scatters its last snows and storms with desperate fury. A relay of horses had been sent up the highroad to meet the German doctor from Moscow who was expected every moment, and men on horseback with lanterns were sent to the crossroads to guide him over the country road with its hollows and snow-covered pools of water. Princess Mary had long since put aside her book: she sat silent, her luminous eyes fixed on her nurse's wrinkled face (every line of which she knew so well), on the lock of gray hair that escaped from under the kerchief, and the loose skin that hung under her chin. Nurse Savishna, knitting in hand, was telling in low tones, scarcely hearing or understanding her own words, what she had told hundreds of times before: how the late princess had given birth to Princess Mary in Kishenev with only a Moldavian peasant woman to help instead of a midwife. "God is merciful, doctors are never needed," she said. Suddenly a gust of wind beat violently against the casement of the window, from which the double frame had been removed (by order of the prince, one window frame was removed in each room as soon as the larks returned), and, forcing open a loosely closed latch, set the damask curtain flapping and blew out the candle with its chill, snowy draft. Princess Mary shuddered; her nurse, putting down the stocking she was knitting, went to the window and leaning out tried to catch the open casement. The cold wind flapped the ends of her kerchief and her loose locks of gray hair. "Princess, my dear, there's someone driving up the avenue!" she said, holding the casement and not closing it. "With lanterns. Most likely the doctor." "Oh, my God! thank God!" said Princess Mary. "I must go and meet him, he does not know Russian." Princess Mary threw a shawl over her head and ran to meet the newcomer. As she was crossing the anteroom she saw through the window a carriage with lanterns, standing at the entrance. She went out on the stairs. On a banister post stood a tallow candle which guttered in the draft. On the landing below, Philip, the footman, stood looking scared and holding another candle. Still lower, beyond the turn of the staircase, one could hear the footstep of someone in thick felt boots, and a voice that seemed familiar to Princess Mary was saying something. "Thank God!" said the voice. "And Father?" "Gone to bed," replied the voice of Demyan the house steward, who was downstairs. Then the voice said something more, Demyan replied, and the steps in the felt boots approached the unseen bend of the staircase more rapidly. "It's Andrew!" thought Princess Mary. "No it can't be, that would be too extraordinary," and at the very moment she thought this, the face and figure of Prince Andrew, in a fur cloak the deep collar of which covered with snow, appeared on the landing where the footman stood with the candle. Yes, it was he, pale, thin, with a changed and strangely softened but agitated expression on his face. He came up the stairs and embraced his sister. "You did not get my letter?" he asked, and not waiting for a reply--which he would not have received, for the princess was unable to speak--he turned back, rapidly mounted the stairs again with the doctor who had entered the hall after him (they had met at the last post station), and again embraced his sister. "What a strange fate, Masha darling!" And having taken off his cloak and felt boots, he went to the little princess' apartment. CHAPTER IX The little princess lay supported by pillows, with a white cap on her head (the pains had just left her). Strands of her black hair lay round her inflamed and perspiring cheeks, her charming rosy mouth with its downy lip was open and she was smiling joyfully. Prince Andrew entered and paused facing her at the foot of the sofa on which she was lying. Her glittering eyes, filled with childlike fear and excitement, rested on him without changing their expression. "I love you all and have done no harm to anyone; why must I suffer so? Help me!" her look seemed to say. She saw her husband, but did not realize the significance of his appearance before her now. Prince Andrew went round the sofa and kissed her forehead. "My darling!" he said--a word he had never used to her before. "God is merciful...." She looked at him inquiringly and with childlike reproach. "I expected help from you and I get none, none from you either!" said her eyes. She was not surprised at his having come; she did not realize that he had come. His coming had nothing to do with her sufferings or with their relief. The pangs began again and Mary Bogdanovna advised Prince Andrew to leave the room. The doctor entered. Prince Andrew went out and, meeting Princess Mary, again joined her. They began talking in whispers, but their talk broke off at every moment. They waited and listened. "Go, dear," said Princess Mary. Prince Andrew went again to his wife and sat waiting in the room next to hers. A woman came from the bedroom with a frightened face and became confused when she saw Prince Andrew. He covered his face with his hands and remained so for some minutes. Piteous, helpless, animal moans came through the door. Prince Andrew got up, went to the door, and tried to open it. Someone was holding it shut. "You can't come in! You can't!" said a terrified voice from within. He began pacing the room. The screaming ceased, and a few more seconds went by. Then suddenly a terrible shriek--it could not be hers, she could not scream like that--came from the bedroom. Prince Andrew ran to the door; the scream ceased and he heard the wail of an infant. "What have they taken a baby in there for?" thought Prince Andrew in the first second. "A baby? What baby...? Why is there a baby there? Or is the baby born?" Then suddenly he realized the joyful significance of that wail; tears choked him, and leaning his elbows on the window sill be began to cry, sobbing like a child. The door opened. The doctor with his shirt sleeves tucked up, without a coat, pale and with a trembling jaw, came out of the room. Prince Andrew turned to him, but the doctor gave him a bewildered look and passed by without a word. A woman rushed out and seeing Prince Andrew stopped, hesitating on the threshold. He went into his wife's room. She was lying dead, in the same position he had seen her in five minutes before and, despite the fixed eyes and the pallor of the cheeks, the same expression was on her charming childlike face with its upper lip covered with tiny black hair. "I love you all, and have done no harm to anyone; and what have you done to me?"--said her charming, pathetic, dead face. In a corner of the room something red and tiny gave a grunt and squealed in Mary Bogdanovna's trembling white hands. Two hours later Prince Andrew, stepping softly, went into his father's room. The old man already knew everything. He was standing close to the door and as soon as it opened his rough old arms closed like a vise round his son's neck, and without a word he began to sob like a child. Three days later the little princess was buried, and Prince Andrew went up the steps to where the coffin stood, to give her the farewell kiss. And there in the coffin was the same face, though with closed eyes. "Ah, what have you done to me?" it still seemed to say, and Prince Andrew felt that something gave way in his soul and that he was guilty of a sin he could neither remedy nor forget. He could not weep. The old man too came up and kissed the waxen little hands that lay quietly crossed one on the other on her breast, and to him, too, her face seemed to say: "Ah, what have you done to me, and why?" And at the sight the old man turned angrily away. Another five days passed, and then the young Prince Nicholas Andreevich was baptized. The wet nurse supported the coverlet with her while the priest with a goose feather anointed the boy's little red and wrinkled soles and palms. His grandfather, who was his godfather, trembling and afraid of dropping him, carried the infant round the battered tin font and handed him over to the godmother, Princess Mary. Prince Andrew sat in another room, faint with fear lest the baby should be drowned in the font, and awaited the termination of the ceremony. He looked up joyfully at the baby when the nurse brought it to him and nodded approval when she told him that the wax with the baby's hair had not sunk in the font but had floated. CHAPTER X Rostov's share in Dolokhov's duel with Bezukhov was hushed up by the efforts of the old count, and instead of being degraded to the ranks as he expected he was appointed an adjutant to the governor general of Moscow. As a result he could not go to the country with the rest of the family, but was kept all summer in Moscow by his new duties. Dolokhov recovered, and Rostov became very friendly with him during his convalescence. Dolokhov lay ill at his mother's who loved him passionately and tenderly, and old Mary Ivanovna, who had grown fond of Rostov for his friendship to her Fedya, often talked to him about her son. "Yes, Count," she would say, "he is too noble and pure-souled for our present, depraved world. No one now loves virtue; it seems like a reproach to everyone. Now tell me, Count, was it right, was it honorable, of Bezukhov? And Fedya, with his noble spirit, loved him and even now never says a word against him. Those pranks in Petersburg when they played some tricks on a policeman, didn't they do it together? And there! Bezukhov got off scotfree, while Fedya had to bear the whole burden on his shoulders. Fancy what he had to go through! It's true he has been reinstated, but how could they fail to do that? I think there were not many such gallant sons of the fatherland out there as he. And now--this duel! Have these people no feeling, or honor? Knowing him to be an only son, to challenge him and shoot so straight! It's well God had mercy on us. And what was it for? Who doesn't have intrigues nowadays? Why, if he was so jealous, as I see things he should have shown it sooner, but he lets it go on for months. And then to call him out, reckoning on Fedya not fighting because he owed him money! What baseness! What meanness! I know you understand Fedya, my dear count; that, believe me, is why I am so fond of you. Few people do understand him. He is such a lofty, heavenly soul!" Dolokhov himself during his convalescence spoke to Rostov in a way no one would have expected of him. "I know people consider me a bad man!" he said. "Let them! I don't care a straw about anyone but those I love; but those I love, I love so that I would give my life for them, and the others I'd throttle if they stood in my way. I have an adored, a priceless mother, and two or three friends--you among them--and as for the rest I only care about them in so far as they are harmful or useful. And most of them are harmful, especially the women. Yes, dear boy," he continued, "I have met loving, noble, high-minded men, but I have not yet met any women--countesses or cooks--who were not venal. I have not yet met that divine purity and devotion I look for in women. If I found such a one I'd give my life for her! But those!..." and he made a gesture of contempt. "And believe me, if I still value my life it is only because I still hope to meet such a divine creature, who will regenerate, purify, and elevate me. But you don't understand it." "Oh, yes, I quite understand," answered Rostov, who was under his new friend's influence. In the autumn the Rostovs returned to Moscow. Early in the winter Denisov also came back and stayed with them. The first half of the winter of 1806, which Nicholas Rostov spent in Moscow, was one of the happiest, merriest times for him and the whole family. Nicholas brought many young men to his parents' house. Vera was a handsome girl of twenty; Sonya a girl of sixteen with all the charm of an opening flower; Natasha, half grown up and half child, was now childishly amusing, now girlishly enchanting. At that time in the Rostovs' house there prevailed an amorous atmosphere characteristic of homes where there are very young and very charming girls. Every young man who came to the house--seeing those impressionable, smiling young faces (smiling probably at their own happiness), feeling the eager bustle around him, and hearing the fitful bursts of song and music and the inconsequent but friendly prattle of young girls ready for anything and full of hope- experienced the same feeling; sharing with the young folk of the Rostovs' household a readiness to fall in love and an expectation of happiness. Among the young men introduced by Rostov one of the first was Dolokhov, whom everyone in the house liked except Natasha. She almost quarreled with her brother about him. She insisted that he was a bad man, and that in the duel with Bezukhov, Pierre was right and Dolokhov wrong, and further that he was disagreeable and unnatural. "There's nothing for me to understand," cried out with resolute self-will, "he is wicked and heartless. There now, I like your Denisov though he is a rake and all that, still I like him; so you see I do understand. I don't know how to put it... with this one everything is calculated, and I don't like that. But Denisov..." "Oh, Denisov is quite different," replied Nicholas, implying that even Denisov was nothing compared to Dolokhov--"you must understand what a soul there is in Dolokhov, you should see him with his mother. What a heart!" "Well, I don't know about that, but I am uncomfortable with him. And do you know he has fallen in love with Sonya?" "What nonsense..." "I'm certain of it; you'll see." Natasha's prediction proved true. Dolokhov, who did not usually care for the society of ladies, began to come often to the house, and the question for whose sake he came (though no one spoke of it) was soon settled. He came because of Sonya. And Sonya, though she would never have dared to say so, knew it and blushed scarlet every time Dolokhov appeared. Dolokhov often dined at the Rostovs', never missed a performance at which they were present, and went to Iogel's balls for young people which the Rostovs always attended. He was pointedly attentive to Sonya and looked at her in such a way that not only could she not bear his glances without coloring, but even the old countess and Natasha blushed when they saw his looks. It was evident that this strange, strong man was under the irresistible influence of the dark, graceful girl who loved another. Rostov noticed something new in Dolokhov's relations with Sonya, but he did not explain to himself what these new relations were. "They're always in love with someone," he thought of Sonya and Natasha. But he was not as much at ease with Sonya and Dolokhov as before and was less frequently at home. In the autumn of 1806 everybody had again begun talking of the war with Napoleon with even greater warmth than the year before. Orders were given to raise recruits, ten men in every thousand for the regular army, and besides this, nine men in every thousand for the militia. Everywhere Bonaparte was anathematized and in Moscow nothing but the coming war was talked of. For the Rostov family the whole interest of these preparations for war lay in the fact that Nicholas would not hear of remaining in Moscow, and only awaited the termination of Denisov's furlough after Christmas to return with him to their regiment. His approaching departure did not prevent his amusing himself, but rather gave zest to his pleasures. He spent the greater part of his time away from home, at dinners, parties, and balls. CHAPTER XI On the third day after Christmas Nicholas dined at home, a thing he had rarely done of late. It was a grand farewell dinner, as he and Denisov were leaving to join their regiment after Epiphany. About twenty people were present, including Dolokhov and Denisov. Never had love been so much in the air, and never had the amorous atmosphere made itself so strongly felt in the Rostovs' house as at this holiday time. "Seize the moments of happiness, love and be loved! That is the only reality in the world, all else is folly. It is the one thing we are interested in here," said the spirit of the place. Nicholas, having as usual exhausted two pairs of horses, without visiting all the places he meant to go to and where he had been invited, returned home just before dinner. As soon as he entered he noticed and felt the tension of the amorous air in the house, and also noticed a curious embarrassment among some of those present. Sonya, Dolokhov, and the old countess were especially disturbed, and to a lesser degree Natasha. Nicholas understood that something must have happened between Sonya and Dolokhov before dinner, and with the kindly sensitiveness natural to him was very gentle and wary with them both at dinner. On that same evening there was to be one of the balls that Iogel (the dancing master) gave for his pupils durings the holidays. "Nicholas, will you come to Iogel's? Please do!" said Natasha. "He asked you, and Vasili Dmitrich* is also going." *Denisov. "Where would I not go at the countess' command!" said Denisov, who at the Rostovs' had jocularly assumed the role of Natasha's knight. "I'm even weady to dance the pas de chale." "If I have time," answered Nicholas. "But I promised the Arkharovs; they have a party." "And you?" he asked Dolokhov, but as soon as he had asked the question he noticed that it should not have been put. "Perhaps," coldly and angrily replied Dolokhov, glancing at Sonya, and, scowling, he gave Nicholas just such a look as he had given Pierre at the Club dinner. "There is something up," thought Nicholas, and he was further confirmed in this conclusion by the fact that Dolokhov left immediately after dinner. He called Natasha and asked her what was the matter. "And I was looking for you," said Natasha running out to him. "I told you, but you would not believe it," she said triumphantly. "He has proposed to Sonya!" Little as Nicholas had occupied himself with Sonya of late, something seemed to give way within him at this news. Dolokhov was a suitable and in some respects a brilliant match for the dowerless, orphan girl. From the point of view of the old countess and of society it was out of the question for her to refuse him. And therefore Nicholas' first feeling on hearing the news was one of anger with Sonya.... He tried to say, "That's capital; of course she'll forget her childish promises and accept the offer," but before he had time to say it Natasha began again. "And fancy! she refused him quite definitely!" adding, after a pause, "she told him she loved another." "Yes, my Sonya could not have done otherwise!" thought Nicholas. "Much as Mamma pressed her, she refused, and I know she won't change once she has said..." "And Mamma pressed her!" said Nicholas reproachfully. "Yes," said Natasha. "Do you know, Nicholas--don't be angry--but I know you will not marry her. I know, heaven knows how, but I know for certain that you won't marry her." "Now don't know that at all!" said Nicholas. "But I must talk to her. What a darling Sonya is!" he added with a smile. "Ah, she is indeed a darling! I'll send her to you." And Natasha kissed her brother and ran away. A minute later Sonya came in with a frightened, guilty, and scared look. Nicholas went up to her and kissed her hand. This was the first time since his return that they had talked alone and about their love. "Sophie," he began, timidly at first and then more and more boldly, "if you wish to refuse one who is not only a brilliant and advantageous match but a splendid, noble fellow... he is my friend..." Sonya interrupted him. "I have already refused," she said hurriedly. "If you are refusing for my sake, I am afraid that I..." Sonya again interrupted. She gave him an imploring, frightened look. "Nicholas, don't tell me that!" she said. "No, but I must. It may be arrogant of me, but still it is best to say it. If you refuse him on my account, I must tell you the whole truth. I love you, and I think I love you more than anyone else...." "That is enough for me," said Sonya, blushing. "No, but I have been in love a thousand times and shall fall in love again, though for no one have I such a feeling of friendship, confidence, and love as I have for you. Then I am young. Mamma does not wish it. In a word, I make no promise. And I beg you to consider Dolokhov's offer," he said, articulating his friend's name with difficulty. "Don't say that to me! I want nothing. I love you as a brother and always shall, and I want nothing more." "You are an angel: I am not worthy of you, but I am afraid of misleading you." And Nicholas again kissed her hand. CHAPTER XII Iogel's were the most enjoyable balls in Moscow. So said the mothers as they watched their young people executing their newly learned steps, and so said the youths and maidens themselves as they danced till they were ready to drop, and so said the grown-up young men and women who came to these balls with an air of condescension and found them most enjoyable. That year two marriages had come of these balls. The two pretty young Princesses Gorchakov met suitors there and were married and so further increased the fame of these dances. What distinguished them from others was the absence of host or hostess and the presence of the good-natured Iogel, flying about like a feather and bowing according to the rules of his art, as he collected the tickets from all his visitors. There was the fact that only those came who wished to dance and amuse themselves as girls of thirteen and fourteen do who are wearing long dresses for the first time. With scarcely any exceptions they all were, or seemed to be, pretty--so rapturous were their smiles and so sparkling their eyes. Sometimes the best of the pupils, of whom Natasha, who was exceptionally graceful, was first, even danced the pas de chale, but at this last ball only the ecossaise, the anglaise, and the mazurka, which was just coming into fashion, were danced. Iogel had taken a ballroom in Bezukhov's house, and the ball, as everyone said, was a great success. There were many pretty girls and the Rostov girls were among the prettiest. They were both particularly happy and gay. That evening, proud of Dolokhov's proposal, her refusal, and her explanation with Nicholas, Sonya twirled about before she left home so that the maid could hardly get her hair plaited, and she was transparently radiant with impulsive joy. Natasha no less proud of her first long dress and of being at a real ball was even happier. They were both dressed in white muslin with pink ribbons. Natasha fell in love the very moment she entered the ballroom. She was not in love with anyone in particular, but with everyone. Whatever person she happened to look at she was in love with for that moment. "Oh, how delightful it is!" she kept saying, running up to Sonya. Nicholas and Denisov were walking up and down, looking with kindly patronage at the dancers. "How sweet she is--she will be a weal beauty!" said Denisov. "Who?" "Countess Natasha," answered Denisov. "And how she dances! What gwace!" he said again after a pause. "Who are you talking about?" "About your sister," ejaculated Denisov testily. Rostov smiled. "My dear count, you were one of my best pupils--you must dance," said little Iogel coming up to Nicholas. "Look how many charming young ladies-" He turned with the same request to Denisov who was also a former pupil of his. "No, my dear fellow, I'll be a wallflower," said Denisov. "Don't you wecollect what bad use I made of your lessons?" "Oh no!" said Iogel, hastening to reassure him. "You were only inattentive, but you had talent--oh yes, you had talent!" The band struck up the newly introduced mazurka. Nicholas could not refuse Iogel and asked Sonya to dance. Denisov sat down by the old ladies and, leaning on his saber and beating time with his foot, told them something funny and kept them amused, while he watched the young people dancing, Iogel with Natasha, his pride and his best pupil, were the first couple. Noiselessly, skillfully stepping with his little feet in low shoes, Iogel flew first across the hall with Natasha, who, though shy, went on carefully executing her steps. Denisov did not take his eyes off her and beat time with his saber in a way that clearly indicated that if he was not dancing it was because he would not and not because he could not. In the middle of a figure he beckoned to Rostov who was passing: "This is not at all the thing," he said. "What sort of Polish mazuwka is this? But she does dance splendidly." Knowing that Denisov had a reputation even in Poland for the masterly way in which he danced the mazurka, Nicholas ran up to Natasha: "Go and choose Denisov. He is a real dancer, a wonder!" he said. When it came to Natasha's turn to choose a partner, she rose and, tripping rapidly across in her little shoes trimmed with bows, ran timidly to the corner where Denisov sat. She saw that everybody was looking at her and waiting. Nicholas saw that Denisov was refusing though he smiled delightedly. He ran up to them. "Please, Vasili Dmitrich," Natasha was saying, "do come!" "Oh no, let me off, Countess," Denisov replied. "Now then, Vaska," said Nicholas. "They coax me as if I were Vaska the cat!" said Denisov jokingly. "I'll sing for you a whole evening," said Natasha. "Oh, the faiwy! She can do anything with me!" said Denisov, and he unhooked his saber. He came out from behind the chairs, clasped his partner's hand firmly, threw back his head, and advanced his foot, waiting for the beat. Only on horse back and in the mazurka was Denisov's short stature not noticeable and he looked the fine fellow he felt himself to be. At the right beat of the music he looked sideways at his partner with a merry and triumphant air, suddenly stamped with one foot, bounded from the floor like a ball, and flew round the room taking his partner with him. He glided silently on one foot half across the room, and seeming not to notice the chairs was dashing straight at them, when suddenly, clinking his spurs and spreading out his legs, he stopped short on his heels, stood so a second, stamped on the spot clanking his spurs, whirled rapidly round, and, striking his left heel against his right, flew round again in a circle. Natasha guessed what he meant to do, and abandoning herself to him followed his lead hardly knowing how. First he spun her round, holding her now with his left, now with his right hand, then falling on one knee he twirled her round him, and again jumping up, dashed so impetuously forward that it seemed as if he would rush through the whole suite of rooms without drawing breath, and then he suddenly stopped and performed some new and unexpected steps. When at last, smartly whirling his partner round in front of her chair, he drew up with a click of his spurs and bowed to her, Natasha did not even make him a curtsy. She fixed her eyes on him in amazement, smiling as if she did not recognize him. "What does this mean?" she brought out. Although Iogel did not acknowledge this to be the real mazurka, everyone was delighted with Denisov's skill, he was asked again and again as a partner, and the old men began smilingly to talk about Poland and the good old days. Denisov, flushed after the mazurka and mopping himself with his handkerchief, sat down by Natasha and did not leave her for the rest of the evening. CHAPTER XIII For two days after that Rostov did not see Dolokhov at his own or at Dolokhov's home: on the third day he received a note from him: As I do not intend to be at your house again for reasons you know of, and am going to rejoin my regiment, I am giving a farewell supper tonight to my friends--come to the English Hotel. About ten o'clock Rostov went to the English Hotel straight from the theater, where he had been with his family and Denisov. He was at once shown to the best room, which Dolokhov had taken for that evening. Some twenty men were gathered round a table at which Dolokhov sat between two candles. On the table was a pile of gold and paper money, and he was keeping the bank. Rostov had not seen him since his proposal and Sonya's refusal and felt uncomfortable at the thought of how they would meet. Dolokhov's clear, cold glance met Rostov as soon as he entered the door, as though he had long expected him. "It's a long time since we met," he said. "Thanks for coming. I'll just finish dealing, and then Ilyushka will come with his chorus." "I called once or twice at your house," said Rostov, reddening. Dolokhov made no reply. "You may punt," he said. Rostov recalled at that moment a strange conversation he had once had with Dolokhov. "None but fools trust to luck in play," Dolokhov had then said. "Or are you afraid to play with me?" Dolokhov now asked as if guessing Rostov's thought. Beneath his smile Rostov saw in him the mood he had shown at the Club dinner and at other times, when as if tired of everyday life he had felt a need to escape from it by some strange, and usually cruel, action. Rostov felt ill at ease. He tried, but failed, to find some joke with which to reply to Dolokhov's words. But before he had thought of anything, Dolokhov, looking straight in his face, said slowly and deliberately so that everyone could hear: "Do you remember we had a talk about cards... 'He's a fool who trusts to luck, one should make certain,' and I want to try." "To try his luck or the certainty?" Rostov asked himself. "Well, you'd better not play," Dolokhov added, and springing a new pack of cards said: "Bank, gentlemen!" Moving the money forward he prepared to deal. Rostov sat down by his side and at first did not play. Dolokhov kept glancing at him. "Why don't you play?" he asked. And strange to say Nicholas felt that he could not help taking up a card, putting a small stake on it, and beginning to play. "I have no money with me," he said. "I'll trust you." Rostov staked five rubles on a card and lost, staked again, and again lost. Dolokhov "killed," that is, beat, ten cards of Rostov's running. "Gentlemen," said Dolokhov after he had dealt for some time. "Please place your money on the cards or I may get muddled in the reckoning." One of the players said he hoped he might be trusted. "Yes, you might, but I am afraid of getting the accounts mixed. So I ask you to put the money on your cards," replied Dolokhov. "Don't stint yourself, we'll settle afterwards," he added, turning to Rostov. The game continued; a waiter kept handing round champagne. All Rostov's cards were beaten and he had eight hundred rubles scored up against him. He wrote "800 rubles" on a card, but while the waiter filled his glass he changed his mind and altered it to his usual stake of twenty rubles. "Leave it," said Dolokhov, though he did not seem to be even looking at Rostov, "you'll win it back all the sooner. I lose to the others but win from you. Or are you afraid of me?" he asked again. Rostov submitted. He let the eight hundred remain and laid down a seven of hearts with a torn corner, which he had picked up from the floor. He well remembered that seven afterwards. He laid down the seven of hearts, on which with a broken bit of chalk he had written "800 rubles" in clear upright figures; he emptied the glass of warm champagne that was handed him, smiled at Dolokhov's words, and with a sinking heart, waiting for a seven to turn up, gazed at Dolokhov's hands which held the pack. Much depended on Rostov's winning or losing on that seven of hearts. On the previous Sunday the old count had given his son two thousand rubles, and though he always disliked speaking of money difficulties had told Nicholas that this was all he could let him have till May, and asked him to be more economical this time. Nicholas had replied that it would be more than enough for him and that he gave his word of honor not to take anything more till the spring. Now only twelve hundred rubles was left of that money, so that this seven of hearts meant for him not only the loss of sixteen hundred rubles, but the necessity of going back on his word. With a sinking heart he watched Dolokhov's hands and thought, "Now then, make haste and let me have this card and I'll take my cap and drive home to supper with Denisov, Natasha, and Sonya, and will certainly never touch a card again." At that moment his home life, jokes with Petya, talks with Sonya, duets with Natasha, piquet with his father, and even his comfortable bed in the house on the Povarskaya rose before him with such vividness, clearness, and charm that it seemed as if it were all a lost and unappreciated bliss, long past. He could not conceive that a stupid chance, letting the seven be dealt to the right rather than to the left, might deprive him of all this happiness, newly appreciated and newly illumined, and plunge him into the depths of unknown and undefined misery. That could not be, yet he awaited with a sinking heart the movement of Dolokhov's hands. Those broad, reddish hands, with hairy wrists visible from under the shirt cuffs, laid down the pack and took up a glass and a pipe that were handed him. "So you are not afraid to play with me?" repeated Dolokhov, and as if about to tell a good story he put down the cards, leaned back in his chair, and began deliberately with a smile: "Yes, gentlemen, I've been told there's a rumor going about Moscow that I'm a sharper, so I advise you to be careful." "Come now, deal!" exclaimed Rostov. "Oh, those Moscow gossips!" said Dolokhov, and he took up the cards with a smile. "Aah!" Rostov almost screamed lifting both hands to his head. The seven he needed was lying uppermost, the first card in the pack. He had lost more than he could pay. "Still, don't ruin yourself!" said Dolokhov with a side glance at Rostov as he continued to deal. CHAPTER XIV An hour and a half later most of the players were but little interested in their own play. The whole interest was concentrated on Rostov. Instead of sixteen hundred rubles he had a long column of figures scored against him, which he had reckoned up to ten thousand, but that now, as he vaguely supposed, must have risen to fifteen thousand. In reality it already exceeded twenty thousand rubles. Dolokhov was no longer listening to stories or telling them, but followed every movement of Rostov's hands and occasionally ran his eyes over the score against him. He had decided to play until that score reached forty-three thousand. He had fixed on that number because forty-three was the sum of his and Sonya's joint ages. Rostov, leaning his head on both hands, sat at the table which was scrawled over with figures, wet with spilled wine, and littered with cards. One tormenting impression did not leave him: that those broad-boned reddish hands with hairy wrists visible from under the shirt sleeves, those hands which he loved and hated, held him in their power. "Six hundred rubles, ace, a corner, a nine... winning it back's impossible... Oh, how pleasant it was at home!... The knave, double or quits... it can't be!... And why is he doing this to me?" Rostov pondered. Sometimes he staked a large sum, but Dolokhov refused to accept it and fixed the stake himself. Nicholas submitted to him, and at one moment prayed to God as he had done on the battlefield at the bridge over the Enns, and then guessed that the card that came first to hand from the crumpled heap under the table would save him, now counted the cords on his coat and took a card with that number and tried staking the total of his losses on it, then he looked round for aid from the other players, or peered at the now cold face of Dolokhov and tried to read what was passing in his mind. "He knows of course what this loss means to me. He can't want my ruin. Wasn't he my friend? Wasn't I fond of him? But it's not his fault. What's he to do if he has such luck?... And it's not my fault either," he thought to himself, "I have done nothing wrong. Have I killed anyone, or insulted or wished harm to anyone? Why such a terrible misfortune? And when did it begin? Such a little while ago I came to this table with the thought of winning a hundred rubles to buy that casket for Mamma's name day and then going home. I was so happy, so free, so lighthearted! And I did not realize how happy I was! When did that end and when did this new, terrible state of things begin? What marked the change? I sat all the time in this same place at this table, chose and placed cards, and watched those broad-boned agile hands in the same way. When did it happen and what has happened? I am well and strong and still the same and in the same place. No, it can't be! Surely it will all end in nothing!" He was flushed and bathed in perspiration, though the room was not hot. His face was terrible and piteous to see, especially from its helpless efforts to seem calm. The score against him reached the fateful sum of forty-three thousand. Rostov had just prepared a card, by bending the corner of which he meant to double the three thousand just put down to his score, when Dolokhov, slamming down the pack of cards, put it aside and began rapidly adding up the total of Rostov's debt, breaking the chalk as he marked the figures in his clear, bold hand. "Supper, it's time for supper! And here are the gypsies!" Some swarthy men and women were really entering from the cold outside and saying something in their gypsy accents. Nicholas understood that it was all over; but he said in an indifferent tone: "Well, won't you go on? I had a splendid card all ready," as if it were the fun of the game which interested him most. "It's all up! I'm lost!" thought he. "Now a bullet through my brain- that's all that's left me!" And at the same time he said in a cheerful voice: "Come now, just this one more little card!" "All right!" said Dolokhov, having finished the addition. "All right! Twenty-one rubles," he said, pointing to the figure twenty-one by which the total exceeded the round sum of forty-three thousand; and taking up a pack he prepared to deal. Rostov submissively unbent the corner of his card and, instead of the six thousand he had intended, carefully wrote twenty-one. "It's all the same to me," he said. "I only want to see whether you will let me win this ten, or beat it." Dolokhov began to deal seriously. Oh, how Rostov detested at that moment those hands with their short reddish fingers and hairy wrists, which held him in their power.... The ten fell to him. "You owe forty-three thousand, Count," said Dolokhov, and stretching himself he rose from the table. "One does get tired sitting so long," he added. "Yes, I'm tired too," said Rostov. Dolokhov cut him short, as if to remind him that it was not for him to jest. "When am I to receive the money, Count?" Rostov, flushing, drew Dolokhov into the next room. "I cannot pay it all immediately. Will you take an I.O.U.?" he said. "I say, Rostov," said Dolokhov clearly, smiling and looking Nicholas straight in the eyes, "you know the saying, 'Lucky in love, unlucky at cards.' Your cousin is in love with you, I know." "Oh, it's terrible to feel oneself so in this man's power," thought Rostov. He knew what a shock he would inflict on his father and mother by the news of this loss, he knew what a relief it would be to escape it all, and felt that Dolokhov knew that he could save him from all this shame and sorrow, but wanted now to play with him as a cat does with a mouse. "Your cousin..." Dolokhov started to say, but Nicholas interrupted him. "My cousin has nothing to do with this and it's not necessary to mention her!" he exclaimed fiercely. "Then when am I to have it?" "Tomorrow," replied Rostov and left the room. CHAPTER XV To say "tomorrow" and keep up a dignified tone was not difficult, but to go home alone, see his sisters, brother, mother, and father, confess and ask for money he had no right to after giving his word of honor, was terrible. At home, they had not yet gone to bed. The young people, after returning from the theater, had had supper and were grouped round the clavichord. As soon as Nicholas entered, he was enfolded in that poetic atmosphere of love which pervaded the Rostov household that winter and, now after Dolokhov's proposal and Iogel's ball, seemed to have grown thicker round Sonya and Natasha as the air does before a thunderstorm. Sonya and Natasha, in the light-blue dresses they had worn at the theater, looking pretty and conscious of it, were standing by the clavichord, happy and smiling. Vera was playing chess with Shinshin in the drawing room. The old countess, waiting for the return of her husband and son, sat playing patience with the old gentlewoman who lived in their house. Denisov, with sparkling eyes and ruffled hair, sat at the clavichord striking chords with his short fingers, his legs thrown back and his eyes rolling as he sang, with his small, husky, but true voice, some verses called "Enchantress," which he had composed, and to which he was trying to fit music: Enchantress, say, to my forsaken lyre What magic power is this recalls me still? What spark has set my inmost soul on fire, What is this bliss that makes my fingers thrill? He was singing in passionate tones, gazing with his sparkling black-agate eyes at the frightened and happy Natasha. "Splendid! Excellent!" exclaimed Natasha. "Another verse," she said, without noticing Nicholas. "Everything's still the same with them," thought Nicholas, glancing into the drawing room, where he saw Vera and his mother with the old lady. "Ah, and here's Nicholas!" cried Natasha, running up to him. "Is Papa at home?" he asked. "I am so glad you've come!" said Natasha, without answering him. "We are enjoying ourselves! Vasili Dmitrich is staying a day longer for my sake! Did you know?" "No, Papa is not back yet," said Sonya. "Nicholas, have you come? Come here, dear!" called the old countess from the drawing room. Nicholas went to her, kissed her hand, and sitting down silently at her table began to watch her hands arranging the cards. From the dancing room, they still heard the laughter and merry voices trying to persuade Natasha to sing. "All wight! All wight!" shouted Denisov. "It's no good making excuses now! It's your turn to sing the ba'cawolla--I entweat you!" The countess glanced at her silent son. "What is the matter?" she asked. "Oh, nothing," said he, as if weary of being continually asked the same question. "Will Papa be back soon?" "I expect so." "Everything's the same with them. They know nothing about it! Where am I to go?" thought Nicholas, and went again into the dancing room where the clavichord stood. Sonya was sitting at the clavichord, playing the prelude to Denisov's favorite barcarolle. Natasha was preparing to sing. Denisov was looking at her with enraptured eyes. Nicholas began pacing up and down the room. "Why do they want to make her sing? How can she sing? There's nothing to be happy about!" thought he. Sonya struck the first chord of the prelude. "My God, I'm a ruined and dishonored man! A bullet through my brain is the only thing left me--not singing!" his thoughts ran on. "Go away? But where to? It's one--let them sing!" He continued to pace the room, looking gloomily at Denisov and the girls and avoiding their eyes. "Nikolenka, what is the matter?" Sonya's eyes fixed on him seemed to ask. She noticed at once that something had happened to him. Nicholas turned away from her. Natasha too, with her quick instinct, had instantly noticed her brother's condition. But, though she noticed it, she was herself in such high spirits at that moment, so far from sorrow, sadness, or self-reproach, that she purposely deceived herself as young people often do. "No, I am too happy now to spoil my enjoyment by sympathy with anyone's sorrow," she felt, and she said to herself: "No, I must be mistaken, he must be feeling happy, just as I am." "Now, Sonya!" she said, going to the very middle of the room, where she considered the resonance was best. Having lifted her head and let her arms droop lifelessly, as ballet dancers do, Natasha, rising energetically from her heels to her toes, stepped to the middle of the room and stood still. "Yes, that's me!" she seemed to say, answering the rapt gaze with which Denisov followed her. "And what is she so pleased about?" thought Nicholas, looking at his sister. "Why isn't she dull and ashamed?" Natasha took the first note, her throat swelled, her chest rose, her eyes became serious. At that moment she was oblivious of her surroundings, and from her smiling lips flowed sounds which anyone may produce at the same intervals hold for the same time, but which leave you cold a thousand times and the thousand and first time thrill you and make you weep. Natasha, that winter, had for the first time begun to sing seriously, mainly because Denisov so delighted in her singing. She no longer sang as a child, there was no longer in her singing that comical, childish, painstaking effect that had been in it before; but she did not yet sing well, as all the connoisseurs who heard her said: "It is not trained, but it is a beautiful voice that must be trained." Only they generally said this some time after she had finished singing. While that untrained voice, with its incorrect breathing and labored transitions, was sounding, even the connoisseurs said nothing, but only delighted in it and wished to hear it again. In her voice there was a virginal freshness, an unconsciousness of her own powers, and an as yet untrained velvety softness, which so mingled with her lack of art in singing that it seemed as if nothing in that voice could be altered without spoiling it. "What is this?" thought Nicholas, listening to her with widely opened eyes. "What has happened to her? How she is singing today!" And suddenly the whole world centered for him on anticipation of the next note, the next phrase, and everything in the world was divided into three beats: "Oh mio crudele affetto."... One, two, three... one, two, three... One... "Oh mio crudele affetto."... One, two, three... One. "Oh, this senseless life of ours!" thought Nicholas. "All this misery, and money, and Dolokhov, and anger, and honor--it's all nonsense... but this is real.... Now then, Natasha, now then, dearest! Now then, darling! How will she take that si? She's taken it! Thank God!" And without noticing that he was singing, to strengthen the si he sung a second, a third below the high note. "Ah, God! How fine! Did I really take it? How fortunate!" he thought. Oh, how that chord vibrated, and how moved was something that was finest in Rostov's soul! And this something was apart from everything else in the world and above everything in the world. "What were losses, and Dolokhov, and words of honor?... All nonsense! One might kill and rob and yet be happy..." CHAPTER XVI It was long since Rostov had felt such enjoyment from music as he did that day. But no sooner had Natasha finished her barcarolle than reality again presented itself. He got up without saying a word and went downstairs to his own room. A quarter of an hour later the old count came in from his Club, cheerful and contented. Nicholas, hearing him drive up, went to meet him. "Well--had a good time?" said the old count, smiling gaily and proudly at his son. Nicholas tried to say "Yes," but could not: and he nearly burst into sobs. The count was lighting his pipe and did not notice his son's condition. "Ah, it can't be avoided!" thought Nicholas, for the first and last time. And suddenly, in the most casual tone, which made him feel ashamed of himself, he said, as if merely asking his father to let him have the carriage to drive to town: "Papa, I have come on a matter of business. I was nearly forgetting. I need some money." "Dear me!" said his father, who was in a specially good humor. "I told you it would not be enough. How much?" "Very much," said Nicholas flushing, and with a stupid careless smile, for which he was long unable to forgive himself, "I have lost a little, I mean a good deal, a great deal--forty three thousand." "What! To whom?... Nonsense!" cried the count, suddenly reddening with an apoplectic flush over neck and nape as old people do. "I promised to pay tomorrow," said Nicholas. "Well!..." said the old count, spreading out his arms and sinking helplessly on the sofa. "It can't be helped It happens to everyone!" said the son, with a bold, free, and easy tone, while in his soul he regarded himself as a worthless scoundrel whose whole life could not atone for his crime. He longed to kiss his father's hands and kneel to beg his forgiveness, but said, in a careless and even rude voice, that it happens to everyone! The old count cast down his eyes on hearing his son's words and began bustlingly searching for something. "Yes, yes," he muttered, "it will be difficult, I fear, difficult to raise... happens to everybody! Yes, who has not done it?" And with a furtive glance at his son's face, the count went out of the room.... Nicholas had been prepared for resistance, but had not at all expected this. "Papa! Pa-pa!" he called after him, sobbing, "forgive me!" And seizing his father's hand, he pressed it to his lips and burst into tears. While father and son were having their explanation, the mother and daughter were having one not less important. Natasha came running to her mother, quite excited. "Mamma!... Mamma!... He has made me..." "Made what?" "Made, made me an offer, Mamma! Mamma!" she exclaimed. The countess did not believe her ears. Denisov had proposed. To whom? To this chit of a girl, Natasha, who not so long ago was playing with dolls and who was still having lessons. "Don't, Natasha! What nonsense!" she said, hoping it was a joke. "Nonsense, indeed! I am telling you the fact," said Natasha indignantly. "I come to ask you what to do, and you call it 'nonsense!'" The countess shrugged her shoulders. "If it true that Monsieur Denisov has made you a proposal, tell him he is a fool, that's all!" "No, he's not a fool!" replied Natasha indignantly and seriously. "Well then, what do you want? You're all in love nowadays. Well, if you are in love, marry him!" said the countess, with a laugh of annoyance. "Good luck to you!" "No, Mamma, I'm not in love with him, I suppose I'm not in love with him." "Well then, tell him so." "Mamma, are you cross? Don't be cross, dear! Is it my fault?" "No, but what is it, my dear? Do you want me to go and tell him?" said the countess smiling. "No, I will do it myself, only tell me what to say. It's all very well for you," said Natasha, with a responsive smile. "You should have seen how he said it! I know he did not mean to say it, but it came out accidently." "Well, all the same, you must refuse him." "No, I mustn't. I am so sorry for him! He's so nice." "Well then, accept his offer. It's high time for you to be married," answered the countess sharply and sarcastically. "No, Mamma, but I'm so sorry for him. I don't know how I'm to say it." "And there's nothing for you to say. I shall speak to him myself," said the countess, indignant that they should have dared to treat this little Natasha as grown up. "No, not on any account! I will tell him myself, and you'll listen at the door," and Natasha ran across the drawing room to the dancing hall, where Denisov was sitting on the same chair by the clavichord with his face in his hands. He jumped up at the sound of her light step. "Nataly," he said, moving with rapid steps toward her, "decide my fate. It is in your hands." "Vasili Dmitrich, I'm so sorry for you!... No, but you are so nice... but it won't do...not that... but as a friend, I shall always love you." Denisov bent over her hand and she heard strange sounds she did not understand. She kissed his rough curly black head. At this instant, they heard the quick rustle of the countess' dress. She came up to them. "Vasili Dmitrich, I thank you for the honor," she said, with an embarrassed voice, though it sounded severe to Denisov--"but my daughter is so young, and I thought that, as my son's friend, you would have addressed yourself first to me. In that case you would not have obliged me to give this refusal." "Countess..." said Denisov, with downcast eyes and a guilty face. He tried to say more, but faltered. Natasha could not remain calm, seeing him in such a plight. She began to sob aloud. "Countess, I have done w'ong," Denisov went on in an unsteady voice, "but believe me, I so adore your daughter and all your family that I would give my life twice over..." He looked at the countess, and seeing her severe face said: "Well, good-by, Countess," and kissing her hand, he left the room with quick resolute strides, without looking at Natasha. Next day Rostov saw Denisov off. He not wish to stay another day in Moscow. All Denisov's Moscow friends gave him a farewell entertainment at the gypsies', with the result that he had no recollection of how he was put in the sleigh or of the first three stages of his journey. After Denisov's departure, Rostov spent another fortnight in Moscow, without going out of the house, waiting for the money his father could not at once raise, and he spent most of his time in the girls' room. Sonya was more tender and devoted to him than ever. It was as if she wanted to show him that his losses were an achievement that made her love him all the more, but Nicholas now considered himself unworthy of her. He filled the girls' albums with verses and music, and having at last sent Dolokhov the whole forty-three thousand rubles and received his receipt, he left at the end of November, without taking leave of any of his acquaintances, to overtake his regiment which was already in Poland. BOOK FIVE: 1806 --07 CHAPTER I After his interview with his wife Pierre left for Petersburg. At the Torzhok post station, either there were no horses or the postmaster would not supply them. Pierre was obliged to wait. Without undressing, he lay down on the leather sofa in front of a round table, put his big feet in their overboots on the table, and began to reflect. "Will you have the portmanteaus brought in? And a bed got ready, and tea?" asked his valet. Pierre gave no answer, for he neither heard nor saw anything. He had begun to think of the last station and was still pondering on the same question--one so important that he took no notice of what went on around him. Not only was he indifferent as to whether he got to Petersburg earlier or later, or whether he secured accommodation at this station, but compared to the thoughts that now occupied him it was a matter of indifference whether he remained there for a few hours or for the rest of his life. The postmaster, his wife, the valet, and a peasant woman selling Torzhok embroidery came into the room offering their services. Without changing his careless attitude, Pierre looked at them over his spectacles unable to understand what they wanted or how they could go on living without having solved the problems that so absorbed him. He had been engrossed by the same thoughts ever since the day he returned from Sokolniki after the duel and had spent that first agonizing, sleepless night. But now, in the solitude of the journey, they seized him with special force. No matter what he thought about, he always returned to these same questions which he could not solve and yet could not cease to ask himself. It was as if the thread of the chief screw which held his life together were stripped, so that the screw could not get in or out, but went on turning uselessly in the same place. The postmaster came in and began obsequiously to beg his excellency to wait only two hours, when, come what might, he would let his excellency have the courier horses. It was plain that he was lying and only wanted to get more money from the traveler. "Is this good or bad?" Pierre asked himself. "It is good for me, bad for another traveler, and for himself it's unavoidable, because he needs money for food; the man said an officer had once given him a thrashing for letting a private traveler have the courier horses. But the officer thrashed him because he had to get on as quickly as possible. And I," continued Pierre, "shot Dolokhov because I considered myself injured, and Louis XVI was executed because they considered him a criminal, and a year later they executed those who executed him--also for some reason. What is bad? What is good? What should one love and what hate? What does one live for? And what am I? What is life, and what is death? What power governs all?" There was no answer to any of these questions, except one, and that not a logical answer and not at all a reply to them. The answer was: "You'll die and all will end. You'll die and know all, or cease asking." But dying was also dreadful. The Torzhok peddler woman, in a whining voice, went on offering her wares, especially a pair of goatskin slippers. "I have hundreds of rubles I don't know what to do with, and she stands in her tattered cloak looking timidly at me," he thought. "And what does she want the money for? As if that money could add a hair's breadth to happiness or peace of mind. Can anything in the world make her or me less a prey to evil and death?--death which ends all and must come today or tomorrow--at any rate, in an instant as compared with eternity." And again he twisted the screw with the stripped thread, and again it turned uselessly in the same place. His servant handed him a half-cut novel, in the form of letters, by Madame de Souza. He began reading about the sufferings and virtuous struggles of a certain Emilie de Mansfeld. "And why did she resist her seducer when she loved him?" he thought. "God could not have put into her heart an impulse that was against His will. My wife--as she once was--did not struggle, and perhaps she was right. Nothing has been found out, nothing discovered," Pierre again said to himself. "All we can know is that we know nothing. And that's the height of human wisdom." Everything within and around him seemed confused, senseless, and repellent. Yet in this very repugnance to all his circumstances Pierre found a kind of tantalizing satisfaction. "I make bold to ask your excellency to move a little for this gentleman," said the postmaster, entering the room followed by another traveler, also detained for lack of horses. The newcomer was a short, large-boned, yellow-faced, wrinkled old man, with gray bushy eyebrows overhanging bright eyes of an indefinite grayish color. Pierre took his feet off the table, stood up, and lay down on a bed that had been got ready for him, glancing now and then at the newcomer, who, with a gloomy and tired face, was wearily taking off his wraps with the aid of his servant, and not looking at Pierre. With a pair of felt boots on his thin bony legs, and keeping on a worn, nankeen-covered, sheepskin coat, the traveler sat down on the sofa, leaned back his big head with its broad temples and close-cropped hair, and looked at Bezukhov. The stern, shrewd, and penetrating expression of that look struck Pierre. He felt a wish to speak to the stranger, but by the time he had made up his mind to ask him a question about the roads, the traveler had closed his eyes. His shriveled old hands were folded and on the finger of one of them Pierre noticed a large cast iron ring with a seal representing a death's head. The stranger sat without stirring, either resting or, as it seemed to Pierre, sunk in profound and calm meditation. His servant was also a yellow, wrinkled old man, without beard or mustache, evidently not because he was shaven but because they had never grown. This active old servant was unpacking the traveler's canteen and preparing tea. He brought in a boiling samovar. When everything was ready, the stranger opened his eyes, moved to the table, filled a tumbler with tea for himself and one for the beardless old man to whom he passed it. Pierre began to feel a sense of uneasiness, and the need, even the inevitability, of entering into conversation with this stranger. The servant brought back his tumbler turned upside down,* with an unfinished bit of nibbled sugar, and asked if anything more would be wanted. *To indicate he did not want more tea. "No. Give me the book," said the stranger. The servant handed him a book which Pierre took to be a devotional work, and the traveler became absorbed in it. Pierre looked at him. All at once the stranger closed the book, putting in a marker, and again, leaning with his arms on the back of the sofa, sat in his former position with his eyes shut. Pierre looked at him and had not time to turn away when the old man, opening his eyes, fixed his steady and severe gaze straight on Pierre's face. Pierre felt confused and wished to avoid that look, but the bright old eyes attracted him irresistibly. CHAPTER II "I have the pleasure of addressing Count Bezukhov, if I am not mistaken," said the stranger in a deliberate and loud voice. Pierre looked silently and inquiringly at him over his spectacles. "I have heard of you, my dear sir," continued the stranger, "and of your misfortune." He seemed to emphasize the last word, as if to say--"Yes, misfortune! Call it what you please, I know that what happened to you in Moscow was a misfortune."--"I regret it very much, my dear sir." Pierre flushed and, hurriedly putting his legs down from the bed, bent forward toward the old man with a forced and timid smile. "I have not referred to this out of curiosity, my dear sir, but for greater reasons." He paused, his gaze still on Pierre, and moved aside on the sofa by way of inviting the other to take a seat beside him. Pierre felt reluctant to enter into conversation with this old man, but, submitting to him involuntarily, came up and sat down beside him. "You are unhappy, my dear sir," the stranger continued. "You are young and I am old. I should like to help you as far as lies in my power." "Oh, yes!" said Pierre, with a forced smile. "I am very grateful to you. Where are you traveling from?" The stranger's face was not genial, it was even cold and severe, but in spite of this, both the face and words of his new acquaintance were irresistibly attractive to Pierre. "But if for reason you don't feel inclined to talk to me," said the old man, "say so, my dear sir." And he suddenly smiled, in an unexpected and tenderly paternal way. "Oh no, not at all! On the contrary, I am very glad to make your acquaintance," said Pierre. And again, glancing at the stranger's hands, he looked more closely at the ring, with its skull--a Masonic sign. "Allow me to ask," he said, "are you a Mason?" "Yes, I belong to the Brotherhood of the Freemasons," said the stranger, looking deeper and deeper into Pierre's eyes. "And in their name and my own I hold out a brotherly hand to you." "I am afraid," said Pierre, smiling, and wavering between the confidence the personality of the Freemason inspired in him and his own habit of ridiculing the Masonic beliefs--"I am afraid I am very far from understanding--how am I to put it?--I am afraid my way of looking at the world is so opposed to yours that we shall not understand one another." "I know your outlook," said the Mason, "and the view of life you mention, and which you think is the result of your own mental efforts, is the one held by the majority of people, and is the invariable fruit of pride, indolence, and ignorance. Forgive me, my dear sir, but if I had not known it I should not have addressed you. Your view of life is a regrettable delusion." "Just as I may suppose you to be deluded," said Pierre, with a faint smile. "I should never dare to say that I know the truth," said the Mason, whose words struck Pierre more and more by their precision and firmness. "No one can attain to truth by himself. Only by laying stone on stone with the cooperation of all, by the millions of generations from our forefather Adam to our own times, is that temple reared which is to be a worthy dwelling place of the Great God," he added, and closed his eyes. "I ought to tell you that I do not believe... do not believe in God," said Pierre, regretfully and with an effort, feeling it essential to speak the whole truth. The Mason looked intently at Pierre and smiled as a rich man with millions in hand might smile at a poor fellow who told him that he, poor man, had not the five rubles that would make him happy. "Yes, you do not know Him, my dear sir," said the Mason. "You cannot know Him. You do not know Him and that is why you are unhappy." "Yes, yes, I am unhappy," assented Pierre. "But what am I to do?" "You know Him not, my dear sir, and so you are very unhappy. You do not know Him, but He is here, He is in me, He is in my words, He is in thee, and even in those blasphemous words thou hast just uttered!" pronounced the Mason in a stern and tremulous voice. He paused and sighed, evidently trying to calm himself. "If He were not," he said quietly, "you and I would not be speaking of Him, my dear sir. Of what, of whom, are we speaking? Whom hast thou denied?" he suddenly asked with exulting austerity and authority in his voice. "Who invented Him, if He did not exist? Whence came thy conception of the existence of such an incomprehensible Being? didst thou, and why did the whole world, conceive the idea of the existence of such an incomprehensible Being, a Being all-powerful, eternal, and infinite in all His attributes?..." He stopped and remained silent for a long time. Pierre could not and did not wish to break this silence. "He exists, but to understand Him is hard," the Mason began again, looking not at Pierre but straight before him, and turning the leaves of his book with his old hands which from excitement he could not keep still. "If it were a man whose existence thou didst doubt I could bring him to thee, could take him by the hand and show him to thee. But how can I, an insignificant mortal, show His omnipotence, His infinity, and all His mercy to one who is blind, or who shuts his eyes that he may not see or understand Him and may not see or understand his own vileness and sinfulness?" He paused again. "Who art thou? Thou dreamest that thou art wise because thou couldst utter those blasphemous words," he went on, with a somber and scornful smile. "And thou art more foolish and unreasonable than a little child, who, playing with the parts of a skillfully made watch, dares to say that, as he does not understand its use, he does not believe in the master who made it. To know Him is hard.... For ages, from our forefather Adam to our own day, we labor to attain that knowledge and are still infinitely far from our aim; but in our lack of understanding we see only our weakness and His greatness...." Pierre listened with swelling heart, gazing into the Mason's face with shining eyes, not interrupting or questioning him, but believing with his whole soul what the stranger said. Whether he accepted the wise reasoning contained in the Mason's words, or believed as a child believes, in the speaker's tone of conviction and earnestness, or the tremor of the speaker's voice--which sometimes almost broke--or those brilliant aged eyes grown old in this conviction, or the calm firmness and certainty of his vocation, which radiated from his whole being (and which struck Pierre especially by contrast with his own dejection and hopelessness)--at any rate, Pierre longed with his whole soul to believe and he did believe, and felt a joyful sense of comfort, regeneration, and return to life. "He is not to be apprehended by reason, but by life," said the Mason. "I do not understand," said Pierre, feeling with dismay doubts reawakening. He was afraid of any want of clearness, any weakness, in the Mason's arguments; he dreaded not to be able to believe in him. "I don't understand," he said, "how it is that the mind of man cannot attain the knowledge of which you speak." The Mason smiled with his gentle fatherly smile. "The highest wisdom and truth are like the purest liquid we may wish to imbibe," he said. "Can I receive that pure liquid into an impure vessel and judge of its purity? Only by the inner purification of myself can I retain in some degree of purity the liquid I receive." "Yes, yes, that is so," said Pierre joyfully. "The highest wisdom is not founded on reason alone, not on those worldly sciences of physics, history, chemistry, and the like, into which intellectual knowledge is divided. The highest wisdom is one. The highest wisdom has but one science--the science of the whole- the science explaining the whole creation and man's place in it. To receive that science it is necessary to purify and renew one's inner self, and so before one can know, it is necessary to believe and to perfect one's self. And to attain this end, we have the light called conscience that God has implanted in our souls." "Yes, yes," assented Pierre. "Look then at thy inner self with the eyes of the spirit, and ask thyself whether thou art content with thyself. What hast thou attained relying on reason only? What art thou? You are young, you are rich, you are clever, you are well educated. And what have you done with all these good gifts? Are you content with yourself and with your life?" "No, I hate my life," Pierre muttered, wincing. "Thou hatest it. Then change it, purify thyself; and as thou art purified, thou wilt gain wisdom. Look at your life, my dear sir. How have you spent it? In riotous orgies and debauchery, receiving everything from society and giving nothing in return. You have become the possessor of wealth. How have you used it? What have you done for your neighbor? Have you ever thought of your tens of thousands of slaves? Have you helped them physically and morally? No! You have profited by their toil to lead a profligate life. That is what you have done. Have you chosen a post in which you might be of service to your neighbor? No! You have spent your life in idleness. Then you married, my dear sir--took on yourself responsibility for the guidance of a young woman; and what have you done? You have not helped her to find the way of truth, my dear sir, but have thrust her into an abyss of deceit and misery. A man offended you and you shot him, and you say you do not know God and hate your life. There is nothing strange in that, my dear sir!" After these words, the Mason, as if tired by his long discourse, again leaned his arms on the back of the sofa and closed his eyes. Pierre looked at that aged, stern, motionless, almost lifeless face and moved his lips without uttering a sound. He wished to say, "Yes, a vile, idle, vicious life!" but dared not break the silence. The Mason cleared his throat huskily, as old men do, and called his servant. "How about the horses?" he asked, without looking at Pierre. "The exchange horses have just come," answered the servant. "Will you not rest here?" "No, tell them to harness." "Can he really be going away leaving me alone without having told me all, and without promising to help me?" thought Pierre, rising with downcast head; and he began to pace the room, glancing occasionally at the Mason. "Yes, I never thought of it, but I have led a contemptible and profligate life, though I did not like it and did not want to," thought Pierre. "But this man knows the truth and, if he wished to, could disclose it to me." Pierre wished to say this to the Mason, but did not dare to. The traveler, having packed his things with his practiced hands, began fastening his coat. When he had finished, he turned to Bezukhov, and said in a tone of indifferent politeness: "Where are you going to now, my dear sir?" "I?... I'm going to Petersburg," answered Pierre, in a childlike, hesitating voice. "I thank you. I agree with all you have said. But do not suppose me to be so bad. With my whole soul I wish to be what you would have me be, but I have never had help from anyone.... But it is I, above all, who am to blame for everything. Help me, teach me, and perhaps I may..." Pierre could not go on. He gulped and turned away. The Mason remained silent for a long time, evidently considering. "Help comes from God alone," he said, "but such measure of help as our Order can bestow it will render you, my dear sir. You are going to Petersburg. Hand this to Count Willarski" (he took out his notebook and wrote a few words on a large sheet of paper folded in four). "Allow me to give you a piece of advice. When you reach the capital, first of all devote some time to solitude and self-examination and do not resume your former way of life. And now I wish you a good journey, my dear sir," he added, seeing that his servant had entered... "and success." The traveler was Joseph Alexeevich Bazdeev, as Pierre saw from the postmaster's book. Bazdeev had been one of the best-known Freemasons and Martinists, even in Novikov's time. For a long while after he had gone, Pierre did not go to bed or order horses but paced up and down the room, pondering over his vicious past, and with a rapturous sense of beginning anew pictured to himself the blissful, irreproachable, virtuous future that seemed to him so easy. It seemed to him that he had been vicious only because he had somehow forgotten how good it is to be virtuous. Not a trace of his former doubts remained in his soul. He firmly believed in the possibility of the brotherhood of men united in the aim of supporting one another in the path of virtue, and that is how Freemasonry presented itself to him. CHAPTER III On reaching Petersburg Pierre did not let anyone know of his arrival, he went nowhere and spent whole days in reading Thomas a Kempis, whose book had been sent him by someone unknown. One thing he continually realized as he read that book: the joy, hitherto unknown to him, of believing in the possibility of attaining perfection, and in the possibility of active brotherly love among men, which Joseph Alexeevich had revealed to him. A week after his arrival, the young Polish count, Willarski, whom Pierre had known slightly in Petersburg society, came into his room one evening in the official and ceremonious manner in which Dolokhov's second had called on him, and, having closed the door behind him and satisfied himself that there was nobody else in the room, addressed Pierre. "I have come to you with a message and an offer, Count," he said without sitting down. "A person of very high standing in our Brotherhood has made application for you to be received into our Order before the usual term and has proposed to me to be your sponsor. I consider it a sacred duty to fulfill that person's wishes. Do you wish to enter the Brotherhood of Freemasons under my sponsorship?" The cold, austere tone of this man, whom he had almost always before met at balls, amiably smiling in the society of the most brilliant women, surprised Pierre. "Yes, I do wish it," said he. Willarski bowed his head. "One more question, Count," he said, "which beg you to answer in all sincerity--not as a future Mason but as an honest man: have you renounced your former convictions--do you believe in God?" Pierre considered. "Yes... yes, I believe in God," he said. "In that case..." began Willarski, but Pierre interrupted him. "Yes, I do believe in God," he repeated. "In that case we can go," said Willarski. "My carriage is at your service." Willarski was silent throughout the drive. To Pierre's inquiries as to what he must do and how he should answer, Willarski only replied that brothers more worthy than he would test him and that Pierre had only to tell the truth. Having entered the courtyard of a large house where the Lodge had its headquarters, and having ascended a dark staircase, they entered a small well-lit anteroom where they took off their cloaks without the aid of a servant. From there they passed into another room. A man in strange attire appeared at the door. Willarski, stepping toward him, said something to him in French in an undertone and then went up to a small wardrobe in which Pierre noticed garments such as he had never seen before. Having taken a kerchief from the cupboard, Willarski bound Pierre's eyes with it and tied it in a knot behind, catching some hairs painfully in the knot. Then he drew his face down, kissed him, and taking him by the hand led him forward. The hairs tied in the knot hurt Pierre and there were lines of pain on his face and a shamefaced smile. His huge figure, with arms hanging down and with a puckered, though smiling face, moved after Willarski with uncertain, timid steps. Having led him about ten paces, Willarski stopped. "Whatever happens to you," he said, "you must bear it all manfully if you have firmly resolved to join our Brotherhood." (Pierre nodded affirmatively.) "When you hear a knock at the door, you will uncover your eyes," added Willarski. "I wish you courage and success," and, pressing Pierre's hand, he went out. Left alone, Pierre went on smiling in the same way. Once or twice he shrugged his and raised his hand to the kerchief, as if wishing to take it off, but let it drop again. The five minutes spent with his eyes bandaged seemed to him an hour. His arms felt numb, his legs almost gave way, it seemed to him that he was tired out. He experienced a variety of most complex sensations. He felt afraid of what would happen to him and still more afraid of showing his fear. He felt curious to know what was going to happen and what would be revealed to him; but most of all, he felt joyful that the moment had come when he would at last start on that path of regeneration and on the actively virtuous life of which he had been dreaming since he met Joseph Alexeevich. Loud knocks were heard at the door. Pierre took the bandage off his eyes and glanced around him. The room was in black darkness, only a small lamp was burning inside something white. Pierre went nearer and saw that the lamp stood on a black table on which lay an open book. The book was the Gospel, and the white thing with the lamp inside was a human skull with its cavities and teeth. After reading the first words of the Gospel: "In the beginning was the Word and the Word was with God," Pierre went round the table and saw a large open box filled with something. It was a coffin with bones inside. He was not at all surprised by what he saw. Hoping to enter on an entirely new life quite unlike the old one, he expected everything to be unusual, even more unusual than what he was seeing. A skull, a coffin, the Gospel--it seemed to him that he had expected all this and even more. Trying to stimulate his emotions he looked around. "God, death, love, the brotherhood of man," he kept saying to himself, associating these words with vague yet joyful ideas. The door opened and someone came in. By the dim light, to which Pierre had already become accustomed, he saw rather short man. Having evidently come from the light into the darkness, the man paused, then moved with cautious steps toward the table and placed on it his small leather-gloved hands. This short man had on a white leather apron which covered his chest and part of his legs; he had on a kind of necklace above which rose a high white ruffle, outlining his rather long face which was lit up from below. "For what have you come hither?" asked the newcomer, turning in Pierre's direction at a slight rustle made by the latter. "Why have you, who do not believe in the truth of the light and who have not seen the light, come here? What do you seek from us? Wisdom, virtue, enlightenment?" At the moment the door opened and the stranger came in, Pierre felt a sense of awe and veneration such as he had experienced in his boyhood at confession; he felt himself in the presence of one socially a complete stranger, yet nearer to him through the brotherhood of man. With bated breath and beating heart he moved toward the Rhetor (by which name the brother who prepared a seeker for entrance into the Brotherhood was known). Drawing nearer, he recognized in the Rhetor a man he knew, Smolyaninov, and it mortified him to think that the newcomer was an acquaintance--he wished him simply a brother and a virtuous instructor. For a long time he could not utter a word, so that the Rhetor had to repeat his question. "Yes... I... I... desire regeneration," Pierre uttered with difficulty. "Very well," said Smolyaninov, and went on at once: "Have you any idea of the means by which our holy Order will help you to reach your aim?" said he quietly and quickly. "I... hope... for guidance... help... in regeneration," said Pierre, with a trembling voice and some difficulty in utterance due to his excitement and to being unaccustomed to speak of abstract matters in Russian. "What is your conception of Freemasonry?" "I imagine that Freemasonry is the fraternity and equality of men who have virtuous aims," said Pierre, feeling ashamed of the inadequacy of his words for the solemnity of the moment, as he spoke. "I imagine..." "Good!" said the Rhetor quickly, apparently satisfied with this answer. "Have you sought for means of attaining your aim in religion?" "No, I considered it erroneous and did not follow it," said Pierre, so softly that the Rhetor did not hear him and asked him what he was saying. "I have been an atheist," answered Pierre. "You are seeking for truth in order to follow its laws in your life, therefore you seek wisdom and virtue. Is that not so?" said the Rhetor, after a moment's pause. "Yes, yes," assented Pierre. The Rhetor cleared his throat, crossed his gloved hands on his breast, and began to speak. "Now I must disclose to you the chief aim of our Order," he said, "and if this aim coincides with yours, you may enter our Brotherhood with profit. The first and chief object of our Order, the foundation on which it rests and which no human power can destroy, is the preservation and handing on to posterity of a certain important mystery... which has come down to us from the remotest ages, even from the first man--a mystery on which perhaps the fate of mankind depends. But since this mystery is of such a nature that nobody can know or use it unless he be prepared by long and diligent self-purification, not everyone can hope to attain it quickly. Hence we have a secondary aim, that of preparing our members as much as possible to reform their hearts, to purify and enlighten their minds, by means handed on to us by tradition from those who have striven to attain this mystery, and thereby to render them capable of receiving it. "By purifying and regenerating our members we try, thirdly, to improve the whole human race, offering it in our members an example of piety and virtue, and thereby try with all our might to combat the evil which sways the world. Think this over and I will come to you again." "To combat the evil which sways the world..." Pierre repeated, and a mental image of his future activity in this direction rose in his mind. He imagined men such as he had himself been a fortnight ago, and he addressed an edifying exhortation to them. He imagined to himself vicious and unfortunate people whom he would assist by word and deed, imagined oppressors whose victims he would rescue. Of the three objects mentioned by the Rhetor, this last, that of improving mankind, especially appealed to Pierre. The important mystery mentioned by the Rhetor, though it aroused his curiosity, did not seem to him essential, and the second aim, that of purifying and regenerating himself, did not much interest him because at that moment he felt with delight that he was already perfectly cured of his former faults and was ready for all that was good. Half an hour later, the Rhetor returned to inform the seeker of the seven virtues, corresponding to the seven steps of Solomon's temple, which every Freemason should cultivate in himself. These virtues were: 1. Discretion, the keeping of the secrets of the Order. 2. Obedience to those of higher ranks in the Order. 3. Morality. 4. Love of mankind. 5. Courage. 6. Generosity. 7. The love of death. "In the seventh place, try, by the frequent thought of death," the Rhetor said, "to bring yourself to regard it not as a dreaded foe, but as a friend that frees the soul grown weary in the labors of virtue from this distressful life, and leads it to its place of recompense and peace." "Yes, that must be so," thought Pierre, when after these words the Rhetor went away, leaving him to solitary meditation. "It must be so, but I am still so weak that I love my life, the meaning of which is only now gradually opening before me." But five of the other virtues which Pierre recalled, counting them on his fingers, he felt already in his soul: courage, generosity, morality, love of mankind, and especially obedience--which did not even seem to him a virtue, but a joy. (He now felt so glad to be free from his own lawlessness and to submit his will to those who knew the indubitable truth.) He forgot what the seventh virtue was and could not recall it. The third time the Rhetor came back more quickly and asked Pierre whether he was still firm in his intention and determined to submit to all that would be required of him. "I am ready for everything," said Pierre. "I must also inform you," said the Rhetor, "that our Order delivers its teaching not in words only but also by other means, which may perhaps have a stronger effect on the sincere seeker after wisdom and virtue than mere words. This chamber with what you see therein should already have suggested to your heart, if it is sincere, more than words could do. You will perhaps also see in your further initiation a like method of enlightenment. Our Order imitates the ancient societies that explained their teaching by hieroglyphics. A hieroglyph," said the Rhetor, "is an emblem of something not cognizable by the senses but which possesses qualities resembling those of the symbol." Pierre knew very well what a hieroglyph was, but dared not speak. He listened to the Rhetor in silence, feeling from all he said that his ordeal was about to begin. "If you are resolved, I must begin your initiation," said the Rhetor coming closer to Pierre. "In token of generosity I ask you to give me all your valuables." "But I have nothing here," replied Pierre, supposing that he was asked to give up all he possessed. "What you have with you: watch, money, rings...." Pierre quickly took out his purse and watch, but could not manage for some time to get the wedding ring off his fat finger. When that had been done, the Rhetor said: "In token of obedience, I ask you to undress." Pierre took off his coat, waistcoat, and left boot according to the Rhetor's instructions. The Mason drew the shirt back from Pierre's left breast, and stooping down pulled up the left leg of his trousers to above the knee. Pierre hurriedly began taking off his right boot also and was going to tuck up the other trouser leg to save this stranger the trouble, but the Mason told him that was not necessary and gave him a slipper for his left foot. With a childlike smile of embarrassment, doubt, and self-derision, which appeared on his face against his will, Pierre stood with his arms hanging down and legs apart, before his brother Rhetor, and awaited his further commands. "And now, in token of candor, I ask you to reveal to me your chief passion," said the latter. "My passion! I have had so many," replied Pierre. "That passion which more than all others caused you to waver on the path of virtue," said the Mason. Pierre paused, seeking a reply. "Wine? Gluttony? Idleness? Laziness? Irritability? Anger? Women?" He went over his vices in his mind, not knowing to which of them to give the pre-eminence. "Women," he said in a low, scarcely audible voice. The Mason did not move and for a long time said nothing after this answer. At last he moved up to Pierre and, taking the kerchief that lay on the table, again bound his eyes. "For the last time I say to you--turn all your attention upon yourself, put a bridle on your senses, and seek blessedness, not in passion but in your own heart. The source of blessedness is not without us but within...." Pierre had already long been feeling in himself that refreshing source of blessedness which now flooded his heart with glad emotion. CHAPTER IV Soon after this there came into the dark chamber to fetch Pierre, not the Rhetor but Pierre's sponsor, Willarski, whom he recognized by his voice. To fresh questions as to the firmness of his resolution Pierre replied: "Yes, yes, I agree," and with a beaming, childlike smile, his fat chest uncovered, stepping unevenly and timidly in one slippered and one booted foot, he advanced, while Willarski held a sword to his bare chest. He was conducted from that room along passages that turned backwards and forwards and was at last brought to the doors of the Lodge. Willarski coughed, he was answered by the Masonic knock with mallets, the doors opened before them. A bass voice (Pierre was still blindfold) questioned him as to who he was, when and where he was born, and so on. Then he was again led somewhere still blindfold, and as they went along he was told allegories of the toils of his pilgrimage, of holy friendship, of the Eternal Architect of the universe, and of the courage with which he should endure toils and dangers. During these wanderings, Pierre noticed that he was spoken of now as the "Seeker," now as the "Sufferer," and now as the "Postulant," to the accompaniment of various knockings with mallets and swords. As he was being led up to some object he noticed a hesitation and uncertainty among his conductors. He heard those around him disputing in whispers and one of them insisting that he should be led along a certain carpet. After that they took his right hand, placed it on something, and told him to hold a pair of compasses to his left breast with the other hand and to repeat after someone who read aloud an oath of fidelity to the laws of the Order. The candles were then extinguished and some spirit lighted, as Pierre knew by the smell, and he was told that he would now see the lesser light. The bandage was taken off his eyes and, by the faint light of the burning spirit, Pierre, as in a dream, saw several men standing before him, wearing aprons like the Rhetor's and holding swords in their hands pointed at his breast. Among them stood a man whose white shirt was stained with blood. On seeing this, Pierre moved forward with his breast toward the swords, meaning them to pierce it. But the swords were drawn back from him and he was at once blindfolded again. "Now thou hast seen the lesser light," uttered a voice. Then the candles were relit and he was told that he would see the full light; the bandage was again removed and more than ten voices said together: "Sic transit gloria mundi." Pierre gradually began to recover himself and looked about at the room and at the people in it. Round a long table covered with black sat some twelve men in garments like those he had already seen. Some of them Pierre had met in Petersburg society. In the President's chair sat a young man he did not know, with a peculiar cross hanging from his neck. On his right sat the Italian abbe whom Pierre had met at Anna Pavlovna's two years before. There were also present a very distinguished dignitary and a Swiss who had formerly been tutor at the Kuragins'. All maintained a solemn silence, listening to the words of the President, who held a mallet in his hand. Let into the wall was a star-shaped light. At one side of the table was a small carpet with various figures worked upon it, at the other was something resembling an altar on which lay a Testament and a skull. Round it stood seven large candlesticks like those used in churches. Two of the brothers led Pierre up to the altar, placed his feet at right angles, and bade him lie down, saying that he must prostrate himself at the Gates of the Temple. "He must first receive the trowel," whispered one of the brothers. "Oh, hush, please!" said another. Pierre, perplexed, looked round with his shortsighted eyes without obeying, and suddenly doubts arose in his mind. "Where am I? What am I doing? Aren't they laughing at me? Shan't I be ashamed to remember this?" But these doubts only lasted a moment. Pierre glanced at the serious faces of those around, remembered all he had already gone through, and realized that he could not stop halfway. He was aghast at his hesitation and, trying to arouse his former devotional feeling, prostrated himself before the Gates of the Temple. And really, the feeling of devotion returned to him even more strongly than before. When he had lain there some time, he was told to get up, and a white leather apron, such as the others wore, was put on him: he was given a trowel and three pairs of gloves, and then the Grand Master addressed him. He told him that he should try to do nothing to stain the whiteness of that apron, which symbolized strength and purity; then of the unexplained trowel, he told him to toil with it to cleanse his own heart from vice, and indulgently to smooth with it the heart of his neighbor. As to the first pair of gloves, a man's, he said that Pierre could not know their meaning but must keep them. The second pair of man's gloves he was to wear at the meetings, and finally of the third, a pair of women's gloves, he said: "Dear brother, these woman's gloves are intended for you too. Give them to the woman whom you shall honor most of all. This gift will be a pledge of your purity of heart to her whom you select to be your worthy helpmeet in Masonry." And after a pause, he added: "But beware, dear brother, that these gloves do not deck hands that are unclean." While the Grand Master said these last words it seemed to Pierre that he grew embarrassed. Pierre himself grew still more confused, blushed like a child till tears came to his eyes, began looking about him uneasily, and an awkward pause followed. This silence was broken by one of the brethren, who led Pierre up to the rug and began reading to him from a manuscript book an explanation of all the figures on it: the sun, the moon, a hammer, a plumb line, a trowel, a rough stone and a squared stone, a pillar, three windows, and so on. Then a place was assigned to Pierre, he was shown the signs of the Lodge, told the password, and at last was permitted to sit down. The Grand Master began reading the statutes. They were very long, and Pierre, from joy, agitation, and embarrassment, was not in a state to understand what was being read. He managed to follow only the last words of the statutes and these remained in his mind. "In our temples we recognize no other distinctions," read the Grand Master, "but those between virtue and vice. Beware of making any distinctions which may infringe equality. Fly to a brother's aid whoever he may be, exhort him who goeth astray, raise him that falleth, never bear malice or enmity toward thy brother. Be kindly and courteous. Kindle in all hearts the flame of virtue. Share thy happiness with thy neighbor, and may envy never dim the purity of that bliss. Forgive thy enemy, do not avenge thyself except by doing him good. Thus fulfilling the highest law thou shalt regain traces of the ancient dignity which thou hast lost." He finished and, getting up, embraced and kissed Pierre, who, with tears of joy in his eyes, looked round him, not knowing how to answer the congratulations and greetings from acquaintances that met him on all sides. He acknowledged no acquaintances but saw in all these men only brothers, and burned with impatience to set to work with them. The Grand Master rapped with his mallet. All the Masons sat down in their places, and one of them read an exhortation on the necessity of humility. The Grand Master proposed that the last duty should be performed, and the distinguished dignitary who bore the title of "Collector of Alms" went round to all the brothers. Pierre would have liked to subscribe all he had, but fearing that it might look like pride subscribed the same amount as the others. The meeting was at an end, and on reaching home Pierre felt as if he had returned from a long journey on which he had spent dozens of years, had become completely changed, and had quite left behind his former habits and way of life. CHAPTER V The day after he had been received into the Lodge, Pierre was sitting at home reading a book and trying to fathom the significance of the Square, one side of which symbolized God, another moral things, a third physical things, and the fourth a combination of these. Now and then his attention wandered from the book and the Square and he formed in imagination a new plan of life. On the previous evening at the Lodge, he had heard that a rumor of his duel had reached the Emperor and that it would be wiser for him to leave Petersburg. Pierre proposed going to his estates in the south and there attending to the welfare of his serfs. He was joyfully planning this new life, when Prince Vasili suddenly entered the room. "My dear fellow, what have you been up to in Moscow? Why have you quarreled with Helene, mon cher? You are under a delusion," said Prince Vasili, as he entered. "I know all about it, and I can tell you positively that Helene is as innocent before you as Christ was before the Jews." Pierre was about to reply, but Prince Vasili interrupted him. "And why didn't you simply come straight to me as to a friend? I know all about it and understand it all," he said. "You behaved as becomes a man values his honor, perhaps too hastily, but we won't go into that. But consider the position in which you are placing her and me in the eyes of society, and even of the court," he added, lowering his voice. "She is living in Moscow and you are here. Remember, dear boy," and he drew Pierre's arm downwards, "it is simply a misunderstanding. I expect you feel it so yourself. Let us write her a letter at once, and she'll come here and all will be explained, or else, my dear boy, let me tell you it's quite likely you'll have to suffer for it." Prince Vasili gave Pierre a significant look. "I know from reliable sources that the Dowager Empress is taking a keen interest in the whole affair. You know she is very gracious to Helene." Pierre tried several times to speak, but, on one hand, Prince Vasili did not let him and, on the other, Pierre himself feared to begin to speak in the tone of decided refusal and disagreement in which he had firmly resolved to answer his father-in-law. Moreover, the words of the Masonic statutes, "be kindly and courteous," recurred to him. He blinked, went red, got up and sat down again, struggling with himself to do what was for him the most difficult thing in life--to say an unpleasant thing to a man's face, to say what the other, whoever he might be, did not expect. He was so used to submitting to Prince Vasili's tone of careless self-assurance that he felt he would be unable to withstand it now, but he also felt that on what he said now his future depended--whether he would follow the same old road, or that new path so attractively shown him by the Masons, on which he firmly believed he would be reborn to a new life. "Now, dear boy," said Prince Vasili playfully, "say 'yes,' and I'll write to her myself, and we will kill the fatted calf." But before Prince Vasili had finished his playful speech, Pierre, without looking at him, and with a kind of fury that made him like his father, muttered in a whisper: "Prince, I did not ask you here. Go, please go!" And he jumped up and opened the door for him. "Go!" he repeated, amazed at himself and glad to see the look of confusion and fear that showed itself on Prince Vasili's face. "What's the matter with you? Are you ill?" "Go!" the quivering voice repeated. And Prince Vasili had to go without receiving any explanation. A week later, Pierre, having taken leave of his new friends, the Masons, and leaving large sums of money with them for alms, went away to his estates. His new brethren gave him letters to the Kiev and Odessa Masons and promised to write to him and guide him in his new activity. CHAPTER VI The duel between Pierre and Dolokhov was hushed up and, in spite of the Emperor's severity regarding duels at that time, neither the principals nor their seconds suffered for it. But the story of the duel, confirmed by Pierre's rupture with his wife, was the talk of society. Pierre who had been regarded with patronizing condescension when he was an illegitimate son, and petted and extolled when he was the best match in Russia, had sunk greatly in the esteem of society after his marriage--when the marriageable daughters and their mothers had nothing to hope from him--especially as he did not know how, and did not wish, to court society's favor. Now he alone was blamed for what had happened, he was said to be insanely jealous and subject like his father to fits of bloodthirsty rage. And when after Pierre's departure Helene returned to Petersburg, she was received by all her acquaintances not only cordially, but even with a shade of deference due to her misfortune. When conversation turned on her husband Helene assumed a dignified expression, which with characteristic tact she had acquired though she did not understand its significance. This expression suggested that she had resolved to endure her troubles uncomplainingly and that her husband was a cross laid upon her by God. Prince Vasili expressed his opinion more openly. He shrugged his shoulders when Pierre was mentioned and, pointing to his forehead, remarked: "A bit touched--I always said so." "I said from the first," declared Anna Pavlovna referring to Pierre, "I said at the time and before anyone else" (she insisted on her priority) "that that senseless young man was spoiled by the depraved ideas of these days. I said so even at the time when everybody was in raptures about him, when he had just returned from abroad, and when, if you remember, he posed as a sort of Marat at one of my soirees. And how has it ended? I was against this marriage even then and foretold all that has happened." Anna Pavlovna continued to give on free evenings the same kind of soirees as before--such as she alone had the gift of arranging--at which was to be found "the cream of really good society, the bloom of the intellectual essence of Petersburg," as she herself put it. Besides this refined selection of society Anna Pavlovna's receptions were also distinguished by the fact that she always presented some new and interesting person to the visitors and that nowhere else was the state of the political thermometer of legitimate Petersburg court society so dearly and distinctly indicated. Toward the end of 1806, when all the sad details of Napoleon's destruction of the Prussian army at Jena and Auerstadt and the surrender of most of the Prussian fortresses had been received, when our troops had already entered Prussia and our second war with Napoleon was beginning, Anna Pavlovna gave one of her soirees. The "cream of really good society" consisted of the fascinating Helene, forsaken by her husband, Mortemart, the delightful Prince Hippolyte who had just returned from Vienna, two diplomatists, the old aunt, a young man referred to in that drawing room as "a man of great merit" (un homme de beaucoup de merite), a newly appointed maid of honor and her mother, and several other less noteworthy persons. The novelty Anna Pavlovna was setting before her guests that evening was Boris Drubetskoy, who had just arrived as a special messenger from the Prussian army and was aide-de-camp to a very important personage. The temperature shown by the political thermometer to the company that evening was this: "Whatever the European sovereigns and commanders may do to countenance Bonaparte, and to cause me, and us in general, annoyance and mortification, our opinion of Bonaparte cannot alter. We shall not cease to express our sincere views on that subject, and can only say to the King Prussia and others: 'So much the worse for you. Tu l'as voulu, George Dandin,' that's all we have to say about it!" When Boris, who was to be served up to the guests, entered the drawing room, almost all the company had assembled, and the conversation, guided by Anna Pavlovna, was about our diplomatic relations with Austria and the hope of an alliance with her. Boris, grown more manly and looking fresh, rosy and self-possessed, entered the drawing room elegantly dressed in the uniform of an aide-de-camp and was duly conducted to pay his respects to the aunt and then brought back to the general circle. Anna Pavlovna gave him her shriveled hand to kiss and introduced him to several persons whom he did not know, giving him a whispered description of each. "Prince Hippolyte Kuragin, M. Krug, the charge d'affaires from Copenhagen--a profound intellect," and simply, "Mr. Shitov--a man of great merit"--this of the man usually so described. Thanks to Anna Mikhaylovna's efforts, his own tastes, and the peculiarities of his reserved nature, Boris had managed during his service to place himself very advantageously. He was aide-de-camp to a very important personage, had been sent on a very important mission to Prussia, and had just returned from there as a special messenger. He had become thoroughly conversant with that unwritten code with which he had been so pleased at Olmutz and according to which an ensign might rank incomparably higher than a general, and according to which what was needed for success in the service was not effort or work, or courage, or perseverance, but only the knowledge of how to get on with those who can grant rewards, and he was himself often surprised at the rapidity of his success and at the inability of others to understand these things. In consequence of this discovery his whole manner of life, all his relations with old friends, all his plans for his future, were completely altered. He was not rich, but would spend his last groat to be better dressed than others, and would rather deprive himself of many pleasures than allow himself to be seen in a shabby equipage or appear in the streets of Petersburg in an old uniform. He made friends with and sought the acquaintance of only those above him in position and who could therefore be of use to him. He liked Petersburg and despised Moscow. The remembrance of the Rostovs' house and of his childish love for Natasha was unpleasant to him and he had not once been to see the Rostovs since the day of his departure for the army. To be in Anna Pavlovna's drawing room he considered an important step up in the service, and he at once understood his role, letting his hostess make use of whatever interest he had to offer. He himself carefully scanned each face, appraising the possibilities of establishing intimacy with each of those present, and the advantages that might accrue. He took the seat indicated to him beside the fair Helene and listened to the general conversation. "Vienna considers the bases of the proposed treaty so unattainable that not even a continuity of most brilliant successes would secure them, and she doubts the means we have of gaining them. That is the actual phrase used by the Vienna cabinet," said the Danish charge d'affaires. "The doubt is flattering," said "the man of profound intellect," with a subtle smile. "We must distinguish between the Vienna cabinet and the Emperor of Austria," said Mortemart. "The Emperor of Austria can never have thought of such a thing, it is only the cabinet that says it." "Ah, my dear vicomte," put in Anna Pavlovna, "L'Urope" (for some reason she called it Urope as if that were a specially refined French pronunciation which she could allow herself when conversing with a Frenchman), "L'Urope ne sera jamais notre alliee sincere."* *"Europe will never be our sincere ally." After that Anna Pavlovna led up to the courage and firmness of the King of Prussia, in order to draw Boris into the conversation. Boris listened attentively to each of the speakers, awaiting his turn, but managed meanwhile to look round repeatedly at his neighbor, the beautiful Helene, whose eyes several times met those of the handsome young aide-de-camp with a smile. Speaking of the position of Prussia, Anna Pavlovna very naturally asked Boris to tell them about his journey to Glogau and in what state he found the Prussian army. Boris, speaking with deliberation, told them in pure, correct French many interesting details about the armies and the court, carefully abstaining from expressing an opinion of his own about the facts he was recounting. For some time he engrossed the general attention, and Anna Pavlovna felt that the novelty she had served up was received with pleasure by all her visitors. The greatest attention of all to Boris' narrative was shown by Helene. She asked him several questions about his journey and seemed greatly interested in the state of the Prussian army. As soon as he had finished she turned to him with her usual smile. "You absolutely must come and see me," she said in a tone that implied that, for certain considerations he could not know of, this was absolutely necessary. "On Tuesday between eight and nine. It will give me great pleasure." Boris promised to fulfill her wish and was about to begin a conversation with her, when Anna Pavlovna called him away on the pretext that her aunt wished to hear him. "You know her husband, of course?" said Anna Pavlovna, closing her eyes and indicating Helene with a sorrowful gesture. "Ah, she is such an unfortunate and charming woman! Don't mention him before her--please don't! It is too painful for her!" CHAPTER VII When Boris and Anna Pavlovna returned to the others Prince Hippolyte had the ear of the company. Bending forward in his armchair he said: "Le Roi de Prusse!" and having said this laughed. Everyone turned toward him. "Le Roi de Prusse?" Hippolyte said interrogatively, again laughing, and then calmly and seriously sat back in his chair. Anna Pavlovna waited for him to go on, but as he seemed quite decided to say no more she began to tell of how at Potsdam the impious Bonaparte had stolen the sword of Frederick the Great. "It is the sword of Frederick the Great which I..." she began, but Hippolyte interrupted her with the words: "Le Roi de Prusse..." and again, as soon as all turned toward him, excused himself and said no more. Anna Pavlovna frowned. Mortemart, Hippolyte's friend, addressed him firmly. "Come now, what about your Roi de Prusse?" Hippolyte laughed as if ashamed of laughing. "Oh, it's nothing. I only wished to say..." (he wanted to repeat a joke he had heard in Vienna and which he had been trying all that evening to get in) "I only wished to say that we are wrong to fight pour le Roi de Prusse!" Boris smiled circumspectly, so that it might be taken as ironical or appreciative according to the way the joke was received. Everybody laughed. "Your joke is too bad, it's witty but unjust," said Anna Pavlovna, shaking her little shriveled finger at him. "We are not fighting pour le Roi de Prusse, but for right principles. Oh, that wicked Prince Hippolyte!" she said. The conversation did not flag all evening and turned chiefly on the political news. It became particularly animated toward the end of the evening when the rewards bestowed by the Emperor were mentioned. "You know N--N--received a snuffbox with the portrait last year?" said "the man of profound intellect." "Why shouldn't S--S--get the same distinction?" "Pardon me! A snuffbox with the Emperor's portrait is a reward but not a distinction," said the diplomatist--"a gift, rather." "There are precedents, I may mention Schwarzenberg." "It's impossible," replied another. "Will you bet? The ribbon of the order is a different matter...." When everybody rose to go, Helene who had spoken very little all the evening again turned to Boris, asking him in a tone of caressing significant command to come to her on Tuesday. "It is of great importance to me," she said, turning with a smile toward Anna Pavlovna, and Anna Pavlovna, with the same sad smile with which she spoke of her exalted patroness, supported Helene's wish. It seemed as if from some words Boris had spoken that evening about the Prussian army, Helene had suddenly found it necessary to see him. She seemed to promise to explain that necessity to him when he came on Tuesday. But on Tuesday evening, having come to Helene's splendid salon, Boris received no clear explanation of why it had been necessary for him to come. There were other guests and the countess talked little to him, and only as he kissed her hand on taking leave said unexpectedly and in a whisper, with a strangely unsmiling face: "Come to dinner tomorrow... in the evening. You must come.... Come!" During that stay in Petersburg, Boris became an intimate in the countess' house. CHAPTER VIII The war was flaming up and nearing the Russian frontier. Everywhere one heard curses on Bonaparte, "the enemy of mankind." Militiamen and recruits were being enrolled in the villages, and from the seat of war came contradictory news, false as usual and therefore variously interpreted. The life of old Prince Bolkonski, Prince Andrew, and Princess Mary had greatly changed since 1805. In 1806 the old prince was made one of the eight commanders in chief then appointed to supervise the enrollment decreed throughout Russia. Despite the weakness of age, which had become particularly noticeable since the time when he thought his son had been killed, he did not think it right to refuse a duty to which he had been appointed by the Emperor himself, and this fresh opportunity for action gave him new energy and strength. He was continually traveling through the three provinces entrusted to him, was pedantic in the fulfillment of his duties, severe to cruelty with his subordinates, and went into everything down to the minutest details himself. Princess Mary had ceased taking lessons in mathematics from her father, and when the old prince was at home went to his study with the wet nurse and little Prince Nicholas (as his grandfather called him). The baby Prince Nicholas lived with his wet nurse and nurse Savishna in the late princess' rooms and Princess Mary spent most of the day in the nursery, taking a mother's place to her little nephew as best she could. Mademoiselle Bourienne, too, seemed passionately fond of the boy, and Princess Mary often deprived herself to give her friend the pleasure of dandling the little angel--as she called her nephew--and playing with him. Near the altar of the church at Bald Hills there was a chapel over the tomb of the little princess, and in this chapel was a marble monument brought from Italy, representing an angel with outspread wings ready to fly upwards. The angel's upper lip was slightly raised as though about to smile, and once on coming out of the chapel Prince Andrew and Princess Mary admitted to one another that the angel's face reminded them strangely of the little princess. But what was still stranger, though of this Prince Andrew said nothing to his sister, was that in the expression the sculptor had happened to give the angel's face, Prince Andrew read the same mild reproach he had read on the face of his dead wife: "Ah, why have you done this to me?" Soon after Prince Andrew's return the old prince made over to him a large estate, Bogucharovo, about twenty-five miles from Bald Hills. Partly because of the depressing memories associated with Bald Hills, partly because Prince Andrew did not always feel equal to bearing with his father's peculiarities, and partly because he needed solitude, Prince Andrew made use of Bogucharovo, began building and spent most of his time there. After the Austerlitz campaign Prince Andrew had firmly resolved not to continue his military service, and when the war recommenced and everybody had to serve, he took a post under his father in the recruitment so as to avoid active service. The old prince and his son seemed to have changed roles since the campaign of 1805. The old man, roused by activity, expected the best results from the new campaign, while Prince Andrew on the contrary, taking no part in the war and secretly regretting this, saw only the dark side. On February 26, 1807, the old prince set off on one of his circuits. Prince Andrew remained at Bald Hills as usual during his father's absence. Little Nicholas had been unwell for four days. The coachman who had driven the old prince to town returned bringing papers and letters for Prince Andrew. Not finding the young prince in his study the valet went with the letters to Princess Mary's apartments, but did not find him there. He was told that the prince had gone to the nursery. "If you please, your excellency, Petrusha has brought some papers," said one of the nursemaids to Prince Andrew who was sitting on a child's little chair while, frowning and with trembling hands, he poured drops from a medicine bottle into a wineglass half full of water. "What is it?" he said crossly, and, his hand shaking unintentionally, he poured too many drops into the glass. He threw the mixture onto the floor and asked for some more water. The maid brought it. There were in the room a child's cot, two boxes, two armchairs, a table, a child's table, and the little chair on which Prince Andrew was sitting. The curtains were drawn, and a single candle was burning on the table, screened by a bound music book so that the light did not fall on the cot. "My dear," said Princess Mary, addressing her brother from beside the cot where she was standing, "better wait a bit... later..." "Oh, leave off, you always talk nonsense and keep putting things off--and this is what comes of it!" said Prince Andrew in an exasperated whisper, evidently meaning to wound his sister. "My dear, really... it's better not to wake him... he's asleep," said the princess in a tone of entreaty. Prince Andrew got up and went on tiptoe up to the little bed, wineglass in hand. "Perhaps we'd really better not wake him," he said hesitating. "As you please... really... I think so... but as you please," said Princess Mary, evidently intimidated and confused that her opinion had prevailed. She drew her brother's attention to the maid who was calling him in a whisper. It was the second night that neither of them had slept, watching the boy who was in a high fever. These last days, mistrusting their household doctor and expecting another for whom they had sent to town, they had been trying first one remedy and then another. Worn out by sleeplessness and anxiety they threw their burden of sorrow on one another and reproached and disputed with each other. "Petrusha has come with papers from your father," whispered the maid. Prince Andrew went out. "Devil take them!" he muttered, and after listening to the verbal instructions his father had sent and taking the correspondence and his father's letter, he returned to the nursery. "Well?" he asked. "Still the same. Wait, for heaven's sake. Karl Ivanich always says that sleep is more important than anything," whispered Princess Mary with a sigh. Prince Andrew went up to the child and felt him. He was burning hot. "Confound you and your Karl Ivanich!" He took the glass with the drops and again went up to the cot. "Andrew, don't!" said Princess Mary. But he scowled at her angrily though also with suffering in his eyes, and stooped glass in hand over the infant. "But I wish it," he said. "I beg you--give it him!" Princess Mary shrugged her shoulders but took the glass submissively and calling the nurse began giving the medicine. The child screamed hoarsely. Prince Andrew winced and, clutching his head, went out and sat down on a sofa in the next room. He still had all the letters in his hand. Opening them mechanically he began reading. The old prince, now and then using abbreviations, wrote in his large elongated hand on blue paper as follows: Have just this moment received by special messenger very joyful news--if it's not false. Bennigsen seems to have obtained a complete victory over Buonaparte at Eylau. In Petersburg everyone is rejoicing, and the rewards sent to the army are innumerable. Though he is a German--I congratulate him! I can't make out what the commander at Korchevo--a certain Khandrikov--is up to; till now the additional men and provisions have not arrived. Gallop off to him at once and say I'll have his head off if everything is not here in a week. Have received another letter about the Preussisch-Eylau battle from Petenka--he took part in it--and it's all true. When mischief-makers don't meddle even a German beats Buonaparte. He is said to be fleeing in great disorder. Mind you gallop off to Korchevo without delay and carry out instructions! Prince Andrew sighed and broke the seal of another envelope. It was a closely written letter of two sheets from Bilibin. He folded it up without reading it and reread his father's letter, ending with the words: "Gallop off to Korchevo and carry out instructions!" "No, pardon me, I won't go now till the child is better," thought he, going to the door and looking into the nursery. Princess Mary was still standing by the cot, gently rocking the baby. "Ah yes, and what else did he say that's unpleasant?" thought Prince Andrew, recalling his father's letter. "Yes, we have gained a victory over Bonaparte, just when I'm not serving. Yes, yes, he's always poking fun at me.... Ah, well! Let him!" And he began reading Bilibin's letter which was written in French. He read without understanding half of it, read only to forget, if but for a moment, what he had too long been thinking of so painfully to the exclusion of all else. CHAPTER IX Bilibin was now at army headquarters in a diplomatic capacity, and though he wrote in French and used French jests and French idioms, he described the whole campaign with a fearless self-censure and self-derision genuinely Russian. Bilibin wrote that the obligation of diplomatic discretion tormented him, and he was happy to have in Prince Andrew a reliable correspondent to whom he could pour out the bile he had accumulated at the sight of all that was being done in the army. The letter was old, having been written before the battle at Preussisch-Eylau. "Since the day of our brilliant success at Austerlitz," wrote Bilibin, "as you know, my dear prince, I never leave headquarters. I have certainly acquired a taste for war, and it is just as well for me; what I have seen during these last three months is incredible. "I begin ab ovo. 'The enemy of the human race,' as you know, attacks the Prussians. The Prussians are our faithful allies who have only betrayed us three times in three years. We take up their cause, but it turns out that 'the enemy of the human race' pays no heed to our fine speeches and in his rude and savage way throws himself on the Prussians without giving them time to finish the parade they had begun, and in two twists of the hand he breaks them to smithereens and installs himself in the palace at Potsdam. "'I most ardently desire,' writes the King of Prussia to Bonaparte, 'that Your Majesty should be received and treated in my palace in a manner agreeable to yourself, and in so far as circumstances allowed, I have hastened to take all steps to that end. May I have succeeded!' The Prussian generals pride themselves on being polite to the French and lay down their arms at the first demand. "The head of the garrison at Glogau, with ten thousand men, asks the King of Prussia what he is to do if he is summoned to surrender.... All this is absolutely true. "In short, hoping to settle matters by taking up a warlike attitude, it turns out that we have landed ourselves in war, and what is more, in war on our own frontiers, with and for the King of Prussia. We have everything in perfect order, only one little thing is lacking, namely, a commander in chief. As it was considered that the Austerlitz success might have been more decisive had the commander in chief not been so young, all our octogenarians were reviewed, and of Prozorovski and Kamenski the latter was preferred. The general comes to us, Suvorov-like, in a kibitka, and is received with acclamations of joy and triumph. "On the 4th, the first courier arrives from Petersburg. The mails are taken to the field marshal's room, for he likes to do everything himself. I am called in to help sort the letters and take those meant for us. The field marshal looks on and waits for letters addressed to him. We search, but none are to be found. The field marshal grows impatient and sets to work himself and finds letters from the Emperor to Count T., Prince V., and others. Then he bursts into one of his wild furies and rages at everyone and everything, seizes the letters, opens them, and reads those from the Emperor addressed to others. 'Ah! So that's the way they treat me! No confidence in me! Ah, ordered to keep an eye on me! Very well then! Get along with you!' So he writes the famous order of the day to General Bennigsen: 'I am wounded and cannot ride and consequently cannot command the army. You have brought your army corps to Pultusk, routed: here it is exposed, and without fuel or forage, so something must be done, and, as you yourself reported to Count Buxhowden yesterday, you must think of retreating to our frontier--which do today.' "'From all my riding,' he writes to the Emperor, 'I have got a saddle sore which, coming after all my previous journeys, quite prevents my riding and commanding so vast an army, so I have passed on the command to the general next in seniority, Count Buxhowden, having sent him my whole staff and all that belongs to it, advising him if there is a lack of bread, to move farther into the interior of Prussia, for only one day's ration of bread remains, and in some regiments none at all, as reported by the division commanders, Ostermann and Sedmoretzki, and all that the peasants had has been eaten up. I myself will remain in hospital at Ostrolenka till I recover. In regard to which I humbly submit my report, with the information that if the army remains in its present bivouac another fortnight there will not be a healthy man left in it by spring. "'Grant leave to retire to his country seat to an old man who is already in any case dishonored by being unable to fulfill the great and glorious task for which he was chosen. I shall await your most gracious permission here in hospital, that I may not have to play the part of a secretary rather than commander in the army. My removal from the army does not produce the slightest stir--a blind man has left it. There are thousands such as I in Russia.' "The field marshal is angry with the Emperor and he punishes us all, isn't it logical? "This is the first act. Those that follow are naturally increasingly interesting and entertaining. After the field marshal's departure it appears that we are within sight of the enemy and must give battle. Buxhowden is commander in chief by seniority, but General Bennigsen does not quite see it; more particularly as it is he and his corps who are within sight of the enemy and he wishes to profit by the opportunity to fight a battle 'on his own hand' as the Germans say. He does so. This is the battle of Pultusk, which is considered a great victory but in my opinion was nothing of the kind. We civilians, as you know, have a very bad way of deciding whether a battle was won or lost. Those who retreat after a battle have lost it is what we say; and according to that it is we who lost the battle of Pultusk. In short, we retreat after the battle but send a courier to Petersburg with news of a victory, and General Bennigsen, hoping to receive from Petersburg the post of commander in chief as a reward for his victory, does not give up the command of the army to General Buxhowden. During this interregnum we begin a very original and interesting series of maneuvers. Our aim is no longer, as it should be, to avoid or attack the enemy, but solely to avoid General Buxhowden who by right of seniority should be our chief. So energetically do we pursue this aim that after crossing an unfordable river we burn the bridges to separate ourselves from our enemy, who at the moment is not Bonaparte but Buxhowden. General Buxhowden was all but attacked and captured by a superior enemy force as a result of one of these maneuvers that enabled us to escape him. Buxhowden pursues us--we scuttle. He hardly crosses the river to our side before we recross to the other. At last our enemy. Buxhowden, catches us and attacks. Both generals are angry, and the result is a challenge on Buxhowden's part and an epileptic fit on Bennigsen's. But at the critical moment the courier who carried the news of our victory at Pultusk to Petersburg returns bringing our appointment as commander in chief, and our first foe, Buxhowden, is vanquished; we can now turn our thoughts to the second, Bonaparte. But as it turns out, just at that moment a third enemy rises before us- namely the Orthodox Russian soldiers, loudly demanding bread, meat, biscuits, fodder, and whatnot! The stores are empty, the roads impassable. The Orthodox begin looting, and in a way of which our last campaign can give you no idea. Half the regiments form bands and scour the countryside and put everything to fire and sword. The inhabitants are totally ruined, the hospitals overflow with sick, and famine is everywhere. Twice the marauders even attack our headquarters, and the commander in chief has to ask for a battalion to disperse them. During one of these attacks they carried off my empty portmanteau and my dressing gown. The Emperor proposes to give all commanders of divisions the right to shoot marauders, but I much fear this will oblige one half the army to shoot the other." At first Prince Andrew read with his eyes only, but after a while, in spite of himself (although he knew how far it was safe to trust Bilibin), what he had read began to interest him more and more. When he had read thus far, he crumpled the letter up and threw it away. It was not what he had read that vexed him, but the fact that the life out there in which he had now no part could perturb him. He shut his eyes, rubbed his forehead as if to rid himself of all interest in what he had read, and listened to what was passing in the nursery. Suddenly he thought he heard a strange noise through the door. He was seized with alarm lest something should have happened to the child while he was reading the letter. He went on tiptoe to the nursery door and opened it. Just as he went in he saw that the nurse was hiding something from him with a scared look and that Princess Mary was no longer by the cot. "My dear," he heard what seemed to him her despairing whisper behind him. As often happens after long sleeplessness and long anxiety, he was seized by an unreasoning panic--it occurred to him that the child was dead. All that he saw and heard seemed to confirm this terror. "All is over," he thought, and a cold sweat broke out on his forehead. He went to the cot in confusion, sure that he would find it empty and that the nurse had been hiding the dead baby. He drew the curtain aside and for some time his frightened, restless eyes could not find the baby. At last he saw him: the rosy boy had tossed about till he lay across the bed with his head lower than the pillow, and was smacking his lips in his sleep and breathing evenly. Prince Andrew was as glad to find the boy like that, as if he had already lost him. He bent over him and, as his sister had taught him, tried with his lips whether the child was still feverish. The soft forehead was moist. Prince Andrew touched the head with his hand; even the hair was wet, so profusely had the child perspired. He was not dead, but evidently the crisis was over and he was convalescent. Prince Andrew longed to snatch up, to squeeze, to hold to his heart, this helpless little creature, but dared not do so. He stood over him, gazing at his head and at the little arms and legs which showed under the blanket. He heard a rustle behind him and a shadow appeared under the curtain of the cot. He did not look round, but still gazing at the infant's face listened to his regular breathing. The dark shadow was Princess Mary, who had come up to the cot with noiseless steps, lifted the curtain, and dropped it again behind her. Prince Andrew recognized her without looking and held out his hand to her. She pressed it. "He has perspired," said Prince Andrew. "I was coming to tell you so." The child moved slightly in his sleep, smiled, and rubbed his forehead against the pillow. Prince Andrew looked at his sister. In the dim shadow of the curtain her luminous eyes shone more brightly than usual from the tears of joy that were in them. She leaned over to her brother and kissed him, slightly catching the curtain of the cot. Each made the other a warning gesture and stood still in the dim light beneath the curtain as if not wishing to leave that seclusion where they three were shut off from all the world. Prince Andrew was the first to move away, ruffling his hair against the muslin of the curtain. "Yes, this is the one thing left me now," he said with a sigh. CHAPTER X Soon after his admission to the Masonic Brotherhood, Pierre went to the Kiev province, where he had the greatest number of serfs, taking with him full directions which he had written down for his own guidance as to what he should do on his estates. When he reached Kiev he sent for all his stewards to the head office and explained to them his intentions and wishes. He told them that steps would be taken immediately to free his serfs--and that till then they were not to be overburdened with labor, women while nursing their babies were not to be sent to work, assistance was to be given to the serfs, punishments were to be admonitory and not corporal, and hospitals, asylums, and schools were to be established on all the estates. Some of the stewards (there were semiliterate foremen among them) listened with alarm, supposing these words to mean that the young count was displeased with their management and embezzlement of money, some after their first fright were amused by Pierre's lisp and the new words they had not heard before, others simply enjoyed hearing how the master talked, while the cleverest among them, including the chief steward, understood from this speech how they could best handle the master for their own ends. The chief steward expressed great sympathy with Pierre's intentions, but remarked that besides these changes it would be necessary to go into the general state of affairs which was far from satisfactory. Despite Count Bezukhov's enormous wealth, since he had come into an income which was said to amount to five hundred thousand rubles a year, Pierre felt himself far poorer than when his father had made him an allowance of ten thousand rubles. He had a dim perception of the following budget: About 80,000 went in payments on all the estates to the Land Bank, about 30,000 went for the upkeep of the estate near Moscow, the town house, and the allowance to the three princesses; about 15,000 was given in pensions and the same amount for asylums; 150,000 alimony was sent to the countess; about 70,00 went for interest on debts. The building of a new church, previously begun, had cost about 10,000 in each of the last two years, and he did not know how the rest, about 100,000 rubles, was spent, and almost every year he was obliged to borrow. Besides this the chief steward wrote every year telling him of fires and bad harvests, or of the necessity of rebuilding factories and workshops. So the first task Pierre had to face was one for which he had very little aptitude or inclination--practical business. He discussed estate affairs every day with his chief steward. But he felt that this did not forward matters at all. He felt that these consultations were detached from real affairs and did not link up with them or make them move. On the one hand, the chief steward put the state of things to him in the very worst light, pointing out the necessity of paying off the debts and undertaking new activities with serf labor, to which Pierre did not agree. On the other hand, Pierre demanded that steps should be taken to liberate the serfs, which the steward met by showing the necessity of first paying off the loans from the Land Bank, and the consequent impossibility of a speedy emancipation. The steward did not say it was quite impossible, but suggested selling the forests in the province of Kostroma, the land lower down the river, and the Crimean estate, in order to make it possible: all of which operations according to him were connected with such complicated measures--the removal of injunctions, petitions, permits, and so on--that Pierre became quite bewildered and only replied: "Yes, yes, do so." Pierre had none of the practical persistence that would have enabled him to attend to the business himself and so he disliked it and only tried to pretend to the steward that he was attending to it. The steward for his part tried to pretend to the count that he considered these consultations very valuable for the proprietor and troublesome to himself. In Kiev Pierre found some people he knew, and strangers hastened to make his acquaintance and joyfully welcomed the rich newcomer, the largest landowner of the province. Temptations to Pierre's greatest weakness--the one to which he had confessed when admitted to the Lodge--were so strong that he could not resist them. Again whole days, weeks, and months of his life passed in as great a rush and were as much occupied with evening parties, dinners, lunches, and balls, giving him no time for reflection, as in Petersburg. Instead of the new life he had hoped to lead he still lived the old life, only in new surroundings. Of the three precepts of Freemasonry Pierre realized that he did not fulfill the one which enjoined every Mason to set an example of moral life, and that of the seven virtues he lacked two--morality and the love of death. He consoled himself with the thought that he fulfilled another of the precepts--that of reforming the human race- and had other virtues--love of his neighbor, and especially generosity. In the spring of 1807 he decided to return to Petersburg. On the way he intended to visit all his estates and see for himself how far his orders had been carried out and in what state were the serfs whom God had entrusted to his care and whom he intended to benefit. The chief steward, who considered the young count's attempts almost insane--unprofitable to himself, to the count, and to the serfs--made some concessions. Continuing to represent the liberation of the serfs as impracticable, he arranged for the erection of large buildings--schools, hospitals, and asylums--on all the estates before the master arrived. Everywhere preparations were made not for ceremonious welcomes (which he knew Pierre would not like), but for just such gratefully religious ones, with offerings of icons and the bread and salt of hospitality, as, according to his understanding of his master, would touch and delude him. The southern spring, the comfortable rapid traveling in a Vienna carriage, and the solitude of the road, all had a gladdening effect on Pierre. The estates he had not before visited were each more picturesque than the other; the serfs everywhere seemed thriving and touchingly grateful for the benefits conferred on them. Everywhere were receptions, which though they embarrassed Pierre awakened a joyful feeling in the depth of his heart. In one place the peasants presented him with bread and salt and an icon of Saint Peter and Saint Paul, asking permission, as a mark of their gratitude for the benefits he had conferred on them, to build a new chantry to the church at their own expense in honor of Peter and Paul, his patron saints. In another place the women with infants in arms met him to thank him for releasing them from hard work. On a third estate the priest, bearing a cross, came to meet him surrounded by children whom, by the count's generosity, he was instructing in reading, writing, and religion. On all his estates Pierre saw with his own eyes brick buildings erected or in course of erection, all on one plan, for hospitals, schools, and almshouses, which were soon to be opened. Everywhere he saw the stewards' accounts, according to which the serfs' manorial labor had been diminished, and heard the touching thanks of deputations of serfs in their full-skirted blue coats. What Pierre did not know was that the place where they presented him with bread and salt and wished to build a chantry in honor of Peter and Paul was a market village where a fair was held on St. Peter's day, and that the richest peasants (who formed the deputation) had begun the chantry long before, but that nine tenths of the peasants in that villages were in a state of the greatest poverty. He did not know that since the nursing mothers were no longer sent to work on his land, they did still harder work on their own land. He did not know that the priest who met him with the cross oppressed the peasants by his exactions, and that the pupils' parents wept at having to let him take their children and secured their release by heavy payments. He did not know that the brick buildings, built to plan, were being built by serfs whose manorial labor was thus increased, though lessened on paper. He did not know that where the steward had shown him in the accounts that the serfs' payments had been diminished by a third, their obligatory manorial work had been increased by a half. And so Pierre was delighted with his visit to his estates and quite recovered the philanthropic mood in which he had left Petersburg, and wrote enthusiastic letters to his "brother-instructor" as he called the Grand Master. "How easy it is, how little effort it needs, to do so much good," thought Pierre, "and how little attention we pay to it!" He was pleased at the gratitude he received, but felt abashed at receiving it. This gratitude reminded him of how much more he might do for these simple, kindly people. The chief steward, a very stupid but cunning man who saw perfectly through the naive and intelligent count and played with him as with a toy, seeing the effect these prearranged receptions had on Pierre, pressed him still harder with proofs of the impossibility and above all the uselessness of freeing the serfs, who were quite happy as it was. Pierre in his secret soul agreed with the steward that it would be difficult to imagine happier people, and that God only knew what would happen to them when they were free, but he insisted, though reluctantly, on what he thought right. The steward promised to do all in his power to carry out the count's wishes, seeing clearly that not only would the count never be able to find out whether all measures had been taken for the sale of the land and forests and to release them from the Land Bank, but would probably never even inquire and would never know that the newly erected buildings were standing empty and that the serfs continued to give in money and work all that other people's serfs gave--that is to say, all that could be got out of them. CHAPTER XI Returning from his journey through South Russia in the happiest state of mind, Pierre carried out an intention he had long had of visiting his friend Bolkonski, whom he had not seen for two years. Bogucharovo lay in a flat uninteresting part of the country among fields and forests of fir and birch, which were partly cut down. The house lay behind a newly dug pond filled with water to the brink and with banks still bare of grass. It was at the end of a village that stretched along the highroad in the midst of a young copse in which were a few fir trees. The homestead consisted of a threshing floor, outhouses, stables, a bathhouse, a lodge, and a large brick house with semicircular facade still in course of construction. Round the house was a garden newly laid out. The fences and gates were new and solid; two fire pumps and a water cart, painted green, stood in a shed; the paths were straight, the bridges were strong and had handrails. Everything bore an impress of tidiness and good management. Some domestic serfs Pierre met, in reply to inquiries as to where the prince lived, pointed out a small newly built lodge close to the pond. Anton, a man who had looked after Prince Andrew in his boyhood, helped Pierre out of his carriage, said that the prince was at home, and showed him into a clean little anteroom. Pierre was struck by the modesty of the small though clean house after the brilliant surroundings in which he had last met his friend in Petersburg. He quickly entered the small reception room with its still-unplastered wooden walls redolent of pine, and would have gone farther, but Anton ran ahead on tiptoe and knocked at a door. "Well, what is it?" came a sharp, unpleasant voice. "A visitor," answered Anton. "Ask him to wait," and the sound was heard of a chair being pushed back. Pierre went with rapid steps to the door and suddenly came face to face with Prince Andrew, who came out frowning and looking old. Pierre embraced him and lifting his spectacles kissed his friend on the cheek and looked at him closely. "Well, I did not expect you, I am very glad," said Prince Andrew. Pierre said nothing; he looked fixedly at his friend with surprise. He was struck by the change in him. His words were kindly and there was a smile on his lips and face, but his eyes were dull and lifeless and in spite of his evident wish to do so he could not give them a joyous and glad sparkle. Prince Andrew had grown thinner, paler, and more manly-looking, but what amazed and estranged Pierre till he got used to it were his inertia and a wrinkle on his brow indicating prolonged concentration on some one thought. As is usually the case with people meeting after a prolonged separation, it was long before their conversation could settle on anything. They put questions and gave brief replies about things they knew ought to be talked over at length. At last the conversation gradually settled on some of the topics at first lightly touched on: their past life, plans for the future, Pierre's journeys and occupations, the war, and so on. The preoccupation and despondency which Pierre had noticed in his friend's look was now still more clearly expressed in the smile with which he listened to Pierre, especially when he spoke with joyful animation of the past or the future. It was as if Prince Andrew would have liked to sympathize with what Pierre was saying, but could not. The latter began to feel that it was in bad taste to speak of his enthusiasms, dreams, and hopes of happiness or goodness, in Prince Andrew's presence. He was ashamed to express his new Masonic views, which had been particularly revived and strengthened by his late tour. He checked himself, fearing to seem naive, yet he felt an irresistible desire to show his friend as soon as possible that he was now a quite different, and better, Pierre than he had been in Petersburg. "I can't tell you how much I have lived through since then. I hardly know myself again." "Yes, we have altered much, very much, since then," said Prince Andrew. "Well, and you? What are your plans?" "Plans!" repeated Prince Andrew ironically. "My plans?" he said, as if astonished at the word. "Well, you see, I'm building. I mean to settle here altogether next year...." Pierre looked silently and searchingly into Prince Andrew's face, which had grown much older. "No, I meant to ask..." Pierre began, but Prince Andrew interrupted him. "But why talk of me?... Talk to me, yes, tell me about your travels and all you have been doing on your estates." Pierre began describing what he had done on his estates, trying as far as possible to conceal his own part in the improvements that had been made. Prince Andrew several times prompted Pierre's story of what he had been doing, as though it were all an old-time story, and he listened not only without interest but even as if ashamed of what Pierre was telling him. Pierre felt uncomfortable and even depressed in his friend's company and at last became silent. "I'll tell you what, my dear fellow," said Prince Andrew, who evidently also felt depressed and constrained with his visitor, "I am only bivouacking here and have just come to look round. I am going back to my sister today. I will introduce you to her. But of course you know her already," he said, evidently trying to entertain a visitor with whom he now found nothing in common. "We will go after dinner. And would you now like to look round my place?" They went out and walked about till dinnertime, talking of the political news and common acquaintances like people who do not know each other intimately. Prince Andrew spoke with some animation and interest only of the new homestead he was constructing and its buildings, but even here, while on the scaffolding, in the midst of a talk explaining the future arrangements of the house, he interrupted himself: "However, this is not at all interesting. Let us have dinner, and then we'll set off." At dinner, conversation turned on Pierre's marriage. "I was very much surprised when I heard of it," said Prince Andrew. Pierre blushed, as he always did when it was mentioned, and said hurriedly: "I will tell you some time how it all happened. But you know it is all over, and forever." "Forever?" said Prince Andrew. "Nothing's forever." "But you know how it all ended, don't you? You heard of the duel?" "And so you had to go through that too!" "One thing I thank God for is that I did not kill that man," said Pierre. "Why so?" asked Prince Andrew. "To kill a vicious dog is a very good thing really." "No, to kill a man is bad--wrong." "Why is it wrong?" urged Prince Andrew. "It is not given to man to know what is right and what is wrong. Men always did and always will err, and in nothing more than in what they consider right and wrong." "What does harm to another is wrong," said Pierre, feeling with pleasure that for the first time since his arrival Prince Andrew was roused, had begun to talk, and wanted to express what had brought him to his present state. "And who has told you what is bad for another man?" he asked. "Bad! Bad!" exclaimed Pierre. "We all know what is bad for ourselves." "Yes, we know that, but the harm I am conscious of in myself is something I cannot inflict on others," said Prince Andrew, growing more and more animated and evidently wishing to express his new outlook to Pierre. He spoke in French. "I only know two very real evils in life: remorse and illness. The only good is the absence of those evils. To live for myself avoiding those two evils is my whole philosophy now." "And love of one's neighbor, and self-sacrifice?" began Pierre. "No, I can't agree with you! To live only so as not to do evil and not to have to repent is not enough. I lived like that, I lived for myself and ruined my life. And only now when I am living, or at least trying" (Pierre's modesty made him correct himself) "to live for others, only now have I understood all the happiness of life. No, I shall not agree with you, and you do not really believe what you are saying." Prince Andrew looked silently at Pierre with an ironic smile. "When you see my sister, Princess Mary, you'll get on with her," he said. "Perhaps you are right for yourself," he added after a short pause, "but everyone lives in his own way. You lived for yourself and say you nearly ruined your life and only found happiness when you began living for others. I experienced just the reverse. I lived for glory.--And after all what is glory? The same love of others, a desire to do something for them, a desire for their approval.--So I lived for others, and not almost, but quite, ruined my life. And I have become calmer since I began to live only for myself." "But what do you mean by living only for yourself?" asked Pierre, growing excited. "What about your son, your sister, and your father?" "But that's just the same as myself--they are not others," explained Prince Andrew. "The others, one's neighbors, le prochain, as you and Princess Mary call it, are the chief source of all error and evil. Le prochain--your Kiev peasants to whom you want to do good." And he looked at Pierre with a mocking, challenging expression. He evidently wished to draw him on. "You are joking," replied Pierre, growing more and more excited. "What error or evil can there be in my wishing to do good, and even doing a little--though I did very little and did it very badly? What evil can there be in it if unfortunate people, our serfs, people like ourselves, were growing up and dying with no idea of God and truth beyond ceremonies and meaningless prayers and are now instructed in a comforting belief in future life, retribution, recompense, and consolation? What evil and error are there in it, if people were dying of disease without help while material assistance could so easily be rendered, and I supplied them with a doctor, a hospital, and an asylum for the aged? And is it not a palpable, unquestionable good if a peasant, or a woman with a baby, has no rest day or night and I give them rest and leisure?" said Pierre, hurrying and lisping. "And I have done that though badly and to a small extent; but I have done something toward it and you cannot persuade me that it was not a good action, and more than that, you can't make me believe that you do not think so yourself. And the main thing is," he continued, "that I know, and know for certain, that the enjoyment of doing this good is the only sure happiness in life." "Yes, if you put it like that it's quite a different matter," said Prince Andrew. "I build a house and lay out a garden, and you build hospitals. The one and the other may serve as a pastime. But what's right and what's good must be judged by one who knows all, but not by us. Well, you want an argument," he added, "come on then." They rose from the table and sat down in the entrance porch which served as a veranda. "Come, let's argue then," said Prince Andrew, "You talk of schools," he went on, crooking a finger, "education and so forth; that is, you want to raise him" (pointing to a peasant who passed by them taking off his cap) "from his animal condition and awaken in him spiritual needs, while it seems to me that animal happiness is the only happiness possible, and that is just what you want to deprive him of. I envy him, but you want to make him what I am, without giving him my means. Then you say, 'lighten his toil.' But as I see it, physical labor is as essential to him, as much a condition of his existence, as mental activity is to you or me. You can't help thinking. I go to bed after two in the morning, thoughts come and I can't sleep but toss about till dawn, because I think and can't help thinking, just as he can't help plowing and mowing; if he didn't, he would go to the drink shop or fall ill. Just as I could not stand his terrible physical labor but should die of it in a week, so he could not stand my physical idleness, but would grow fat and die. The third thing--what else was it you talked about?" and Prince Andrew crooked a third finger. "Ah, yes, hospitals, medicine. He has a fit, he is dying, and you come and bleed him and patch him up. He will drag about as a cripple, a burden to everybody, for another ten years. It would be far easier and simpler for him to die. Others are being born and there are plenty of them as it is. It would be different if you grudged losing a laborer--that's how I regard him--but you want to cure him from love of him. And he does not want that. And besides, what a notion that medicine ever cured anyone! Killed them, yes!" said he, frowning angrily and turning away from Pierre. Prince Andrew expressed his ideas so clearly and distinctly that it was evident he had reflected on this subject more than once, and he spoke readily and rapidly like a man who has not talked for a long time. His glance became more animated as his conclusions became more hopeless. "Oh, that is dreadful, dreadful!" said Pierre. "I don't understand how one can live with such ideas. I had such moments myself not long ago, in Moscow and when traveling, but at such times I collapsed so that I don't live at all--everything seems hateful to me... myself most of all. Then I don't eat, don't wash... and how is it with you?..." "Why not wash? That is not cleanly," said Prince Andrew; "on the contrary one must try to make one's life as pleasant as possible. I'm alive, that is not my fault, so I must live out my life as best I can without hurting others." "But with such ideas what motive have you for living? One would sit without moving, undertaking nothing...." "Life as it is leaves one no peace. I should be thankful to do nothing, but here on the one hand the local nobility have done me the honor to choose me to be their marshal; it was all I could do to get out of it. They could not understand that I have not the necessary qualifications for it--the kind of good-natured, fussy shallowness necessary for the position. Then there's this house, which must be built in order to have a nook of one's own in which to be quiet. And now there's this recruiting." "Why aren't you serving in the army?" "After Austerlitz!" said Prince Andrew gloomily. "No, thank you very much! I have promised myself not to serve again in the active Russian army. And I won't--not even if Bonaparte were here at Smolensk threatening Bald Hills--even then I wouldn't serve in the Russian army! Well, as I was saying," he continued, recovering his composure, "now there's this recruiting. My father is chief in command of the Third District, and my only way of avoiding active service is to serve under him." "Then you are serving?" "I am." He paused a little while. "And why do you serve?" "Why, for this reason! My father is one of the most remarkable men of his time. But he is growing old, and though not exactly cruel he has too energetic a character. He is so accustomed to unlimited power that he is terrible, and now he has this authority of a commander in chief of the recruiting, granted by the Emperor. If I had been two hours late a fortnight ago he would have had a paymaster's clerk at Yukhnovna hanged," said Prince Andrew with a smile. "So I am serving because I alone have any influence with my father, and now and then can save him from actions which would torment him afterwards." "Well, there you see!" "Yes, but it is not as you imagine," Prince Andrew continued. "I did not, and do not, in the least care about that scoundrel of a clerk who had stolen some boots from the recruits; I should even have been very glad to see him hanged, but I was sorry for my father--that again is for myself." Prince Andrew grew more and more animated. His eyes glittered feverishly while he tried to prove to Pierre that in his actions there was no desire to do good to his neighbor. "There now, you wish to liberate your serfs," he continued; "that is a very good thing, but not for you--I don't suppose you ever had anyone flogged or sent to Siberia--and still less for your serfs. If they are beaten, flogged, or sent to Siberia, I don't suppose they are any the worse off. In Siberia they lead the same animal life, and the stripes on their bodies heal, and they are happy as before. But it is a good thing for proprietors who perish morally, bring remorse upon themselves, stifle this remorse and grow callous, as a result of being able to inflict punishments justly and unjustly. It is those people I pity, and for their sake I should like to liberate the serfs. You may not have seen, but I have seen, how good men brought up in those traditions of unlimited power, in time when they grow more irritable, become cruel and harsh, are conscious of it, but cannot restrain themselves and grow more and more miserable." Prince Andrew spoke so earnestly that Pierre could not help thinking that these thoughts had been suggested to Prince Andrew by his father's case. He did not reply. "So that's what I'm sorry for--human dignity, peace of mind, purity, and not the serfs' backs and foreheads, which, beat and shave as you may, always remain the same backs and foreheads." "No, no! A thousand times no! I shall never agree with you," said Pierre. CHAPTER XII In the evening Andrew and Pierre got into the open carriage and drove to Bald Hills. Prince Andrew, glancing at Pierre, broke the silence now and then with remarks which showed that he was in a good temper. Pointing to the fields, he spoke of the improvements he was making in his husbandry. Pierre remained gloomily silent, answering in monosyllables and apparently immersed in his own thoughts. He was thinking that Prince Andrew was unhappy, had gone astray, did not see the true light, and that he, Pierre, ought to aid, enlighten, and raise him. But as soon as he thought of what he should say, he felt that Prince Andrew with one word, one argument, would upset all his teaching, and he shrank from beginning, afraid of exposing to possible ridicule what to him was precious and sacred. "No, but why do you think so?" Pierre suddenly began, lowering his head and looking like a bull about to charge, "why do you think so? You should not think so." "Think? What about?" asked Prince Andrew with surprise. "About life, about man's destiny. It can't be so. I myself thought like that, and do you know what saved me? Freemasonry! No, don't smile. Freemasonry is not a religious ceremonial sect, as I thought it was: Freemasonry is the best expression of the best, the eternal, aspects of humanity." And he began to explain Freemasonry as he understood it to Prince Andrew. He said that Freemasonry is the teaching of Christianity freed from the bonds of State and Church, a teaching of equality, brotherhood, and love. "Only our holy brotherhood has the real meaning of life, all the rest is a dream," said Pierre. "Understand, my dear fellow, that outside this union all is filled with deceit and falsehood and I agree with you that nothing is left for an intelligent and good man but to live out his life, like you, merely trying not to harm others. But make our fundamental convictions your own, join our brotherhood, give yourself up to us, let yourself be guided, and you will at once feel yourself, as I have felt myself, a part of that vast invisible chain the beginning of which is hidden in heaven," said Pierre. Prince Andrew, looking straight in front of him, listened in silence to Pierre's words. More than once, when the noise of the wheels prevented his catching what Pierre said, he asked him to repeat it, and by the peculiar glow that came into Prince Andrew's eyes and by his silence, Pierre saw that his words were not in vain and that Prince Andrew would not interrupt him or laugh at what he said. They reached a river that had overflowed its banks and which they had to cross by ferry. While the carriage and horses were being placed on it, they also stepped on the raft. Prince Andrew, leaning his arms on the raft railing, gazed silently at the flooding waters glittering in the setting sun. "Well, what do you think about it?" Pierre asked. "Why are you silent?" "What do I think about it? I am listening to you. It's all very well.... You say: join our brotherhood and we will show you the aim of life, the destiny of man, and the laws which govern the world. But who are we? Men. How is it you know everything? Why do I alone not see what you see? You see a reign of goodness and truth on earth, but I don't see it." Pierre interrupted him. "Do you believe in a future life?" he asked. "A future life?" Prince Andrew repeated, but Pierre, giving him no time to reply, took the repetition for a denial, the more readily as he knew Prince Andrew's former atheistic convictions. "You say you can't see a reign of goodness and truth on earth. Nor could I, and it cannot be seen if one looks on our life here as the end of everything. On earth, here on this earth" (Pierre pointed to the fields), "there is no truth, all is false and evil; but in the universe, in the whole universe there is a kingdom of truth, and we who are now the children of earth are--eternally--children of the whole universe. Don't I feel in my soul that I am part of this vast harmonious whole? Don't I feel that I form one link, one step, between the lower and higher beings, in this vast harmonious multitude of beings in whom the Deity--the Supreme Power if you prefer the term--is manifest? If I see, clearly see, that ladder leading from plant to man, why should I suppose it breaks off at me and does not go farther and farther? I feel that I cannot vanish, since nothing vanishes in this world, but that I shall always exist and always have existed. I feel that beyond me and above me there are spirits, and that in this world there is truth." "Yes, that is Herder's theory," said Prince Andrew, "but it is not that which can convince me, dear friend--life and death are what convince. What convinces is when one sees a being dear to one, bound up with one's own life, before whom one was to blame and had hoped to make it right" (Prince Andrew's voice trembled and he turned away), "and suddenly that being is seized with pain, suffers, and ceases to exist.... Why? It cannot be that there is no answer. And I believe there is.... That's what convinces, that is what has convinced me," said Prince Andrew. "Yes, yes, of course," said Pierre, "isn't that what I'm saying?" "No. All I say is that it is not argument that convinces me of the necessity of a future life, but this: when you go hand in hand with someone and all at once that person vanishes there, into nowhere, and you yourself are left facing that abyss, and look in. And I have looked in...." "Well, that's it then! You know that there is a there and there is a Someone? There is the future life. The Someone is--God." Prince Andrew did not reply. The carriage and horses had long since been taken off, onto the farther bank, and reharnessed. The sun had sunk half below the horizon and an evening frost was starring the puddles near the ferry, but Pierre and Andrew, to the astonishment of the footmen, coachmen, and ferrymen, still stood on the raft and talked. "If there is a God and future life, there is truth and good, and man's highest happiness consists in striving to attain them. We must live, we must love, and we must believe that we live not only today on this scrap of earth, but have lived and shall live forever, there, in the Whole," said Pierre, and he pointed to the sky. Prince Andrew stood leaning on the railing of the raft listening to Pierre, and he gazed with his eyes fixed on the red reflection of the sun gleaming on the blue waters. There was perfect stillness. Pierre became silent. The raft had long since stopped and only the waves of the current beat softly against it below. Prince Andrew felt as if the sound of the waves kept up a refrain to Pierre's words, whispering: "It is true, believe it." He sighed, and glanced with a radiant, childlike, tender look at Pierre's face, flushed and rapturous, but yet shy before his superior friend. "Yes, if it only were so!" said Prince Andrew. "However, it is time to get on," he added, and, stepping off the raft, he looked up at the sky to which Pierre had pointed, and for the first time since Austerlitz saw that high, everlasting sky he had seen while lying on that battlefield; and something that had long been slumbering, something that was best within him, suddenly awoke, joyful and youthful, in his soul. It vanished as soon as he returned to the customary conditions of his life, but he knew that this feeling which he did not know how to develop existed within him. His meeting with Pierre formed an epoch in Prince Andrew's life. Though outwardly he continued to live in the same old way, inwardly he began a new life. CHAPTER XIII It was getting dusk when Prince Andrew and Pierre drove up to the front entrance of the house at Bald Hills. As they approached the house, Prince Andrew with a smile drew Pierre's attention to a commotion going on at the back porch. A woman, bent with age, with a wallet on her back, and a short, long-haired, young man in a black garment had rushed back to the gate on seeing the carriage driving up. Two women ran out after them, and all four, looking round at the carriage, ran in dismay up the steps of the back porch. "Those are Mary's 'God's folk,'" said Prince Andrew. "They have mistaken us for my father. This is the one matter in which she disobeys him. He orders these pilgrims to be driven away, but she receives them." "But what are 'God's folk'?" asked Pierre. Prince Andrew had no time to answer. The servants came out to meet them, and he asked where the old prince was and whether he was expected back soon. The old prince had gone to the town and was expected back any minute. Prince Andrew led Pierre to his own apartments, which were always kept in perfect order and readiness for him in his father's house; he himself went to the nursery. "Let us go and see my sister," he said to Pierre when he returned. "I have not found her yet, she is hiding now, sitting with her 'God's folk.' It will serve her right, she will be confused, but you will see her 'God's folk.' It's really very curious." "What are 'God's folk'?" asked Pierre. "Come, and you'll see for yourself." Princess Mary really was disconcerted and red patches came on her face when they went in. In her snug room, with lamps burning before the icon stand, a young lad with a long nose and long hair, wearing a monk's cassock, sat on the sofa beside her, behind a samovar. Near them, in an armchair, sat a thin, shriveled, old woman, with a meek expression on her childlike face. "Andrew, why didn't you warn me?" said the princess, with mild reproach, as she stood before her pilgrims like a hen before her chickens. "Charmee de vous voir. Je suis tres contente de vous voir,"* she said to Pierre as he kissed her hand. She had known him as a child, and now his friendship with Andrew, his misfortune with his wife, and above all his kindly, simple face disposed her favorably toward him. She looked at him with her beautiful radiant eyes and seemed to say, "I like you very much, but please don't laugh at my people." After exchanging the first greetings, they sat down. *"Delighted to see you. I am very glad to see you." "Ah, and Ivanushka is here too!" said Prince Andrew, glancing with a smile at the young pilgrim. "Andrew!" said Princess Mary, imploringly. "Il faut que vous sachiez que c'est une femme,"* said Prince Andrew to Pierre. "Andrew, au nom de Dieu!"*[2] Princess Mary repeated. *"You must know that this is a woman." *[2] "For heaven's sake." It was evident that Prince Andrew's ironical tone toward the pilgrims and Princess Mary's helpless attempts to protect them were their customary long-established relations on the matter. "Mais, ma bonne amie," said Prince Andrew, "vous devriez au contraire m'etre reconnaissante de ce que j'explique a Pierre votre intimite avec ce jeune homme."* *"But, my dear, you ought on the contrary to be grateful to me for explaining to Pierre your intimacy with this young man." "Really?" said Pierre, gazing over his spectacles with curiosity and seriousness (for which Princess Mary was specially grateful to him) into Ivanushka's face, who, seeing that she was being spoken about, looked round at them all with crafty eyes. Princess Mary's embarrassment on her people's account was quite unnecessary. They were not in the least abashed. The old woman, lowering her eyes but casting side glances at the newcomers, had turned her cup upside down and placed a nibbled bit of sugar beside it, and sat quietly in her armchair, though hoping to be offered another cup of tea. Ivanushka, sipping out of her saucer, looked with sly womanish eyes from under her brows at the young men. "Where have you been? To Kiev?" Prince Andrew asked the old woman. "I have, good sir," she answered garrulously. "Just at Christmastime I was deemed worthy to partake of the holy and heavenly sacrament at the shrine of the saint. And now I'm from Kolyazin, master, where a great and wonderful blessing has been revealed." "And was Ivanushka with you?" "I go by myself, benefactor," said Ivanushka, trying to speak in a bass voice. "I only came across Pelageya in Yukhnovo..." Pelageya interrupted her companion; she evidently wished to tell what she had seen. "In Kolyazin, master, a wonderful blessing has been revealed." "What is it? Some new relics?" asked Prince Andrew. "Andrew, do leave off," said Princess Mary. "Don't tell him, Pelageya." "No... why not, my dear, why shouldn't I? I like him. He is kind, he is one of God's chosen, he's a benefactor, he once gave me ten rubles, I remember. When I was in Kiev, Crazy Cyril says to me (he's one of God's own and goes barefoot summer and winter), he says, 'Why are you not going to the right place? Go to Kolyazin where a wonder-working icon of the Holy Mother of God has been revealed.' On hearing those words I said good-by to the holy folk and went." All were silent, only the pilgrim woman went on in measured tones, drawing in her breath. "So I come, master, and the people say to me: 'A great blessing has been revealed, holy oil trickles from the cheeks of our blessed Mother, the Holy Virgin Mother of God'...." "All right, all right, you can tell us afterwards," said Princess Mary, flushing. "Let me ask her," said Pierre. "Did you see it yourselves?" he inquired. "Oh, yes, master, I was found worthy. Such a brightness on the face like the light of heaven, and from the blessed Mother's cheek it drops and drops...." "But, dear me, that must be a fraud!" said Pierre, naively, who had listened attentively to the pilgrim. "Oh, master, what are you saying?" exclaimed the horrified Pelageya, turning to Princess Mary for support. "They impose on the people," he repeated. "Lord Jesus Christ!" exclaimed the pilgrim woman, crossing herself. "Oh, don't speak so, master! There was a general who did not believe, and said, 'The monks cheat,' and as soon as he'd said it he went blind. And he dreamed that the Holy Virgin Mother of the Kiev catacombs came to him and said, 'Believe in me and I will make you whole.' So he begged: 'Take me to her, take me to her.' It's the real truth I'm telling you, I saw it myself. So he was brought, quite blind, straight to her, and he goes up to her and falls down and says, 'Make me whole,' says he, 'and I'll give thee what the Tsar bestowed on me.' I saw it myself, master, the star is fixed into the icon. Well, and what do you think? He received his sight! It's a sin to speak so. God will punish you," she said admonishingly, turning to Pierre. "How did the star get into the icon?" Pierre asked. "And was the Holy Mother promoted to the rank of general?" said Prince Andrew, with a smile. Pelageya suddenly grew quite pale and clasped her hands. "Oh, master, master, what a sin! And you who have a son!" she began, her pallor suddenly turning to a vivid red. "Master, what have you said? God forgive you!" And she crossed herself. "Lord forgive him! My dear, what does it mean?..." she asked, turning to Princess Mary. She got up and, almost crying, began to arrange her wallet. She evidently felt frightened and ashamed to have accepted charity in a house where such things could be said, and was at the same time sorry to have now to forgo the charity of this house. "Now, why need you do it?" said Princess Mary. "Why did you come to me?..." "Come, Pelageya, I was joking," said Pierre. "Princesse, ma parole, je n'ai pas voulu l'offenser.* I did not mean anything, I was only joking," he said, smiling shyly and trying to efface his offense. "It was all my fault, and Andrew was only joking." *"Princess, on my word, I did not wish to offend her." Pelageya stopped doubtfully, but in Pierre's face there was such a look of sincere penitence, and Prince Andrew glanced so meekly now at her and now at Pierre, that she was gradually reassured. CHAPTER XIV The pilgrim woman was appeased and, being encouraged to talk, gave a long account of Father Amphilochus, who led so holy a life that his hands smelled of incense, and how on her last visit to Kiev some monks she knew let her have the keys of the catacombs, and how she, taking some dried bread with her, had spent two days in the catacombs with the saints. "I'd pray awhile to one, ponder awhile, then go on to another. I'd sleep a bit and then again go and kiss the relics, and there was such peace all around, such blessedness, that one don't want to come out, even into the light of heaven again." Pierre listened to her attentively and seriously. Prince Andrew went out of the room, and then, leaving "God's folk" to finish their tea, Princess Mary took Pierre into the drawing room. "You are very kind," she said to him. "Oh, I really did not mean to hurt her feelings. I understand them so well and have the greatest respect for them." Princess Mary looked at him silently and smiled affectionately. "I have known you a long time, you see, and am as fond of you as of a brother," she said. "How do you find Andrew?" she added hurriedly, not giving him time to reply to her affectionate words. "I am very anxious about him. His health was better in the winter, but last spring his wound reopened and the doctor said he ought to go away for a cure. And I am also very much afraid for him spiritually. He has not a character like us women who, when we suffer, can weep away our sorrows. He keeps it all within him. Today he is cheerful and in good spirits, but that is the effect of your visit--he is not often like that. If you could persuade him to go abroad. He needs activity, and this quiet regular life is very bad for him. Others don't notice it, but I see it." Toward ten o'clock the men servants rushed to the front door, hearing the bells of the old prince's carriage approaching. Prince Andrew and Pierre also went out into the porch. "Who's that?" asked the old prince, noticing Pierre as he got out of, the carriage. "Ah! Very glad! Kiss me," he said, having learned who the young stranger was. The old prince was in a good temper and very gracious to Pierre. Before supper, Prince Andrew, coming back to his father's study, found him disputing hotly with his visitor. Pierre was maintaining that a time would come when there would be no more wars. The old prince disputed it chaffingly, but without getting angry. "Drain the blood from men's veins and put in water instead, then there will be no more war! Old women's nonsense--old women's nonsense!" he repeated, but still he patted Pierre affectionately on the shoulder, and then went up to the table where Prince Andrew, evidently not wishing to join in the conversation, was looking over the papers his father had brought from town. The old prince went up to him and began to talk business. "The marshal, a Count Rostov, hasn't sent half his contingent. He came to town and wanted to invite me to dinner--I gave him a pretty dinner!... And there, look at this.... Well, my boy," the old prince went on, addressing his son and patting Pierre on the shoulder. "A fine fellow--your friend--I like him! He stirs me up. Another says clever things and one doesn't care to listen, but this one talks rubbish yet stirs an old fellow up. Well, go! Get along! Perhaps I'll come and sit with you at supper. We'll have another dispute. Make friends with my little fool, Princess Mary," he shouted after Pierre, through the door. Only now, on his visit to Bald Hills, did Pierre fully realize the strength and charm of his friendship with Prince Andrew. That charm was not expressed so much in his relations with him as with all his family and with the household. With the stern old prince and the gentle, timid Princess Mary, though he had scarcely known them, Pierre at once felt like an old friend. They were all fond of him already. Not only Princess Mary, who had been won by his gentleness with the pilgrims, gave him her most radiant looks, but even the one-year-old "Prince Nicholas" (as his grandfather called him) smiled at Pierre and let himself be taken in his arms, and Michael Ivanovich and Mademoiselle Bourienne looked at him with pleasant smiles when he talked to the old prince. The old prince came in to supper; this was evidently on Pierre's account. And during the two days of the young man's visit he was extremely kind to him and told him to visit them again. When Pierre had gone and the members of the household met together, they began to express their opinions of him as people always do after a new acquaintance has left, but as seldom happens, no one said anything but what was good of him. CHAPTER XV When returning from his leave, Rostov felt, for the first time, how close was the bond that united him to Denisov and and the whole regiment. On approaching it, Rostov felt as he had done when approaching his home in Moscow. When he saw the first hussar with the unbuttoned uniform of his regiment, when he recognized red-haired Dementyev and saw the picket ropes of the roan horses, when Lavrushka gleefully shouted to his master, "The count has come!" and Denisov, who had been asleep on his bed, ran all disheveled out of the mud hut to embrace him, and the officers collected round to greet the new arrival, Rostov experienced the same feeling his mother, his father, and his sister had embraced him, and tears of joy choked him so that he could not speak. The regiment was also a home, and as unalterably dear and precious as his parents' house. When he had reported himself to the commander of the regiment and had been reassigned to his former squadron, had been on duty and had gone out foraging, when he had again entered into all the little interests of the regiment and felt himself deprived of liberty and bound in one narrow, unchanging frame, he experienced the same sense of peace, of moral support, and the same sense being at home here in his own place, as he had felt under the parental roof. But here was none of all that turmoil of the world at large, where he did not know his right place and took mistaken decisions; here was no Sonya with whom he ought, or ought not, to have an explanation; here was no possibility of going there or not going there; here there were not twenty-four hours in the day which could be spent in such a variety of ways; there was not that innumerable crowd of people of whom not one was nearer to him or farther from him than another; there were none of those uncertain and undefined money relations with his father, and nothing to recall that terrible loss to Dolokhov. Here, in the regiment, all was clear and simple. The whole world was divided into two unequal parts: one, our Pavlograd regiment; the other, all the rest. And the rest was no concern of his. In the regiment, everything was definite: who was lieutenant, who captain, who was a good fellow, who a bad one, and most of all, who was a comrade. The canteenkeeper gave one credit, one's pay came every four months, there was nothing to think out or decide, you had only to do nothing that was considered bad in the Pavlograd regiment and, when given an order, to do what was clearly, distinctly, and definitely ordered--and all would be well. Having once more entered into the definite conditions of this regimental life, Rostov felt the joy and relief a tired man feels on lying down to rest. Life in the regiment, during this campaign, was all the pleasanter for him, because, after his loss to Dolokhov (for which, in spite of all his family's efforts to console him, he could not forgive himself), he had made up his mind to atone for his fault by serving, not as he had done before, but really well, and by being a perfectly first-rate comrade and officer--in a word, a splendid man altogether, a thing which seemed so difficult out in the world, but so possible in the regiment. After his losses, he had determined to pay back his debt to his parents in five years. He received ten thousand rubles a year, but now resolved to take only two thousand and leave the rest to repay the debt to his parents. Our army, after repeated retreats and advances and battles at Pultusk and Preussisch-Eylau, was concentrated near Bartenstein. It was awaiting the Emperor's arrival and the beginning of a new campaign. The Pavlograd regiment, belonging to that part of the army which had served in the 1805 campaign, had been recruiting up to strength in Russia, and arrived too late to take part in the first actions of the campaign. It had been neither at Pultusk nor at Preussisch-Eylau and, when it joined the army in the field in the second half of the campaign, was attached to Platov's division. Platov's division was acting independently of the main army. Several times parts of the Pavlograd regiment had exchanged shots with the enemy, had taken prisoners, and once had even captured Marshal Oudinot's carriages. In April the Pavlograds were stationed immovably for some weeks near a totally ruined and deserted German village. A thaw had set in, it was muddy and cold, the ice on the river broke, and the roads became impassable. For days neither provisions for the men nor fodder for the horses had been issued. As no transports could arrive, the men dispersed about the abandoned and deserted villages, searching for potatoes, but found few even of these. Everything had been eaten up and the inhabitants had all fled--if any remained, they were worse than beggars and nothing more could be taken from them; even the soldiers, usually pitiless enough, instead of taking anything from them, often gave them the last of their rations. The Pavlograd regiment had had only two men wounded in action, but had lost nearly half its men from hunger and sickness. In the hospitals, death was so certain that soldiers suffering from fever, or the swelling that came from bad food, preferred to remain on duty, and hardly able to drag their legs went to the front rather than to the hospitals. When spring came on, the soldiers found a plant just showing out of the ground that looked like asparagus, which, for some reason, they called "Mashka's sweet root." It was very bitter, but they wandered about the fields seeking it and dug it out with their sabers and ate it, though they were ordered not to do so, as it was a noxious plant. That spring a new disease broke out among the soldiers, a swelling of the arms, legs, and face, which the doctors attributed to eating this root. But in spite of all this, the soldiers of Denisov's squadron fed chiefly on "Mashka's sweet root," because it was the second week that the last of the biscuits were being doled out at the rate of half a pound a man and the last potatoes received had sprouted and frozen. The horses also had been fed for a fortnight on straw from the thatched roofs and had become terribly thin, though still covered with tufts of felty winter hair. Despite this destitution, the soldiers and officers went on living just as usual. Despite their pale swollen faces and tattered uniforms, the hussars formed line for roll call, kept things in order, groomed their horses, polished their arms, brought in straw from the thatched roofs in place of fodder, and sat down to dine round the caldrons from which they rose up hungry, joking about their nasty food and their hunger. As usual, in their spare time, they lit bonfires, steamed themselves before them naked; smoked, picked out and baked sprouting rotten potatoes, told and listened to stories of Potemkin's and Suvorov's campaigns, or to legends of Alesha the Sly, or the priest's laborer Mikolka. The officers, as usual, lived in twos and threes in the roofless, half-ruined houses. The seniors tried to collect straw and potatoes and, in general, food for the men. The younger ones occupied themselves as before, some playing cards (there was plenty of money, though there was no food), some with more innocent games, such as quoits and skittles. The general trend of the campaign was rarely spoken of, partly because nothing certain was known about it, partly because there was a vague feeling that in the main it was going badly. Rostov lived, as before, with Denisov, and since their furlough they had become more friendly than ever. Denisov never spoke of Rostov's family, but by the tender friendship his commander showed him, Rostov felt that the elder hussar's luckless love for Natasha played a part in strengthening their friendship. Denisov evidently tried to expose Rostov to danger as seldom as possible, and after an action greeted his safe return with evident joy. On one of his foraging expeditions, in a deserted and ruined village to which he had come in search of provisions, Rostov found a family consisting of an old Pole and his daughter with an infant in arms. They were half clad, hungry, too weak to get away on foot and had no means of obtaining a conveyance. Rostov brought them to his quarters, placed them in his own lodging, and kept them for some weeks while the old man was recovering. One of his comrades, talking of women, began chaffing Rostov, saying that he was more wily than any of them and that it would not be a bad thing if he introduced to them the pretty Polish girl he had saved. Rostov took the joke as an insult, flared up, and said such unpleasant things to the officer that it was all Denisov could do to prevent a duel. When the officer had gone away, Denisov, who did not himself know what Rostov's relations with the Polish girl might be, began to upbraid him for his quickness of temper, and Rostov replied: "Say what you like.... She is like a sister to me, and I can't tell you how it offended me... because... well, for that reason...." Denisov patted him on the shoulder and began rapidly pacing the room without looking at Rostov, as was his way at moments of deep feeling. "Ah, what a mad bweed you Wostovs are!" he muttered, and Rostov noticed tears in his eyes. CHAPTER XVI In April the troops were enlivened by news of the Emperor's arrival, but Rostov had no chance of being present at the review he held at Bartenstein, as the Pavlograds were at the outposts far beyond that place. They were bivouacking. Denisov and Rostov were living in an earth hut, dug out for them by the soldiers and roofed with branches and turf. The hut was made in the following manner, which had then come into vogue. A trench was dug three and a half feet wide, four feet eight inches deep, and eight feet long. At one end of the trench, steps were cut out and these formed the entrance and vestibule. The trench itself was the room, in which the lucky ones, such as the squadron commander, had a board, lying on piles at the end opposite the entrance, to serve as a table. On each side of the trench, the earth was cut out to a breadth of about two and a half feet, and this did duty for bedsteads and couches. The roof was so constructed that one could stand up in the middle of the trench and could even sit up on the beds if one drew close to the table. Denisov, who was living luxuriously because the soldiers of his squadron liked him, had also a board in the roof at the farther end, with a piece of (broken but mended) glass in it for a window. When it was very cold, embers from the soldiers' campfire were placed on a bent sheet of iron on the steps in the "reception room"--as Denisov called that part of the hut- and it was then so warm that the officers, of whom there were always some with Denisov and Rostov, sat in their shirt sleeves. In April, Rostov was on orderly duty. One morning, between seven and eight, returning after a sleepless night, he sent for embers, changed his rain-soaked underclothes, said his prayers, drank tea, got warm, then tidied up the things on the table and in his own corner, and, his face glowing from exposure to the wind and with nothing on but his shirt, lay down on his back, putting his arms under his head. He was pleasantly considering the probability of being promoted in a few days for his last reconnoitering expedition, and was awaiting Denisov, who had gone out somewhere and with whom he wanted a talk. Suddenly he heard Denisov shouting in a vibrating voice behind the hut, evidently much excited. Rostov moved to the window to see whom he was speaking to, and saw the quartermaster, Topcheenko. "I ordered you not to let them eat that Mashka woot stuff!" Denisov was shouting. "And I saw with my own eyes how Lazarchuk bwought some fwom the fields." "I have given the order again and again, your honor, but they don't obey," answered the quartermaster. Rostov lay down again on his bed and thought complacently: "Let him fuss and bustle now, my job's done and I'm lying down--capitally!" He could hear that Lavrushka--that sly, bold orderly of Denisov's--was talking, as well as the quartermaster. Lavrushka was saying something about loaded wagons, biscuits, and oxen he had seen when he had gone out for provisions. Then Denisov's voice was heard shouting farther and farther away. "Saddle! Second platoon!" "Where are they off to now?" thought Rostov. Five minutes later, Denisov came into the hut, climbed with muddy boots on the bed, lit his pipe, furiously scattered his things about, took his leaded whip, buckled on his saber, and went out again. In answer to Rostov's inquiry where he was going, he answered vaguely and crossly that he had some business. "Let God and our gweat monarch judge me afterwards!" said Denisov going out, and Rostov heard the hoofs of several horses splashing through the mud. He did not even trouble to find out where Denisov had gone. Having got warm in his corner, he fell asleep and did not leave the hut till toward evening. Denisov had not yet returned. The weather had cleared up, and near the next hut two officers and a cadet were playing svayka, laughing as they threw their missiles which buried themselves in the soft mud. Rostov joined them. In the middle of the game, the officers saw some wagons approaching with fifteen hussars on their skinny horses behind them. The wagons escorted by the hussars drew up to the picket ropes and a crowd of hussars surrounded them. "There now, Denisov has been worrying," said Rostov, "and here are the provisions." "So they are!" said the officers. "Won't the soldiers be glad!" A little behind the hussars came Denisov, accompanied by two infantry officers with whom he was talking. Rostov went to meet them. "I warn you, Captain," one of the officers, a short thin man, evidently very angry, was saying. "Haven't I told you I won't give them up?" replied Denisov. "You will answer for it, Captain. It is mutiny--seizing the transport of one's own army. Our men have had nothing to eat for two days." "And mine have had nothing for two weeks," said Denisov. "It is robbery! You'll answer for it, sir!" said the infantry officer, raising his voice. "Now, what are you pestewing me for?" cried Denisov, suddenly losing his temper. "I shall answer for it and not you, and you'd better not buzz about here till you get hurt. Be off! Go!" he shouted at the officers. "Very well, then!" shouted the little officer, undaunted and not riding away. "If you are determined to rob, I'll..." "Go to the devil! quick ma'ch, while you're safe and sound!" and Denisov turned his horse on the officer. "Very well, very well!" muttered the officer, threateningly, and turning his horse he trotted away, jolting in his saddle. "A dog astwide a fence! A weal dog astwide a fence!" shouted Denisov after him (the most insulting expression a cavalryman can address to a mounted infantryman) and riding up to Rostov, he burst out laughing. "I've taken twansports from the infantwy by force!" he said. "After all, can't let our men starve." The wagons that had reached the hussars had been consigned to an infantry regiment, but learning from Lavrushka that the transport was unescorted, Denisov with his hussars had seized it by force. The soldiers had biscuits dealt out to them freely, and they even shared them with the other squadrons. The next day the regimental commander sent for Denisov, and holding his fingers spread out before his eyes said: "This is how I look at this affair: I know nothing about it and won't begin proceedings, but I advise you to ride over to the staff and settle the business there in the commissariat department and if possible sign a receipt for such and such stores received. If not, as the demand was booked against an infantry regiment, there will be a row and the affair may end badly." From the regimental commander's, Denisov rode straight to the staff with a sincere desire to act on this advice. In the evening he came back to his dugout in a state such as Rostov had never yet seen him in. Denisov could not speak and gasped for breath. When Rostov asked what was the matter, he only uttered some incoherent oaths and threats in a hoarse, feeble voice. Alarmed at Denisov's condition, Rostov suggested that he should undress, drink some water, and send for the doctor. "Twy me for wobbewy... oh! Some more water... Let them twy me, but I'll always thwash scoundwels... and I'll tell the Empewo'... Ice..." he muttered. The regimental doctor, when he came, said it was absolutely necessary to bleed Denisov. A deep saucer of black blood was taken from his hairy arm and only then was he able to relate what had happened to him. "I get there," began Denisov. "'Now then, where's your chief's quarters?' They were pointed out. 'Please to wait.' 'I've widden twenty miles and have duties to attend to and no time to wait. Announce me.' Vewy well, so out comes their head chief--also took it into his head to lecture me: 'It's wobbewy!'--'Wobbewy,' I say, 'is not done by man who seizes pwovisions to feed his soldiers, but by him who takes them to fill his own pockets!' 'Will you please be silent?' 'Vewy good!' Then he says: 'Go and give a weceipt to the commissioner, but your affair will be passed on to headquarters.' I go to the commissioner. I enter, and at the table... who do you think? No, but wait a bit!... Who is it that's starving us?" shouted Denisov, hitting the table with the fist of his newly bled arm so violently that the table nearly broke down and the tumblers on it jumped about. "Telyanin! 'What? So it's you who's starving us to death! Is it? Take this and this!' and I hit him so pat, stwaight on his snout... 'Ah, what a... what...!' and I sta'ted fwashing him... Well, I've had a bit of fun I can tell you!" cried Denisov, gleeful and yet angry, his showing under his black mustache. "I'd have killed him if they hadn't taken him away!" "But what are you shouting for? Calm yourself," said Rostov. "You've set your arm bleeding afresh. Wait, we must tie it up again." Denisov was bandaged up again and put to bed. Next day he woke calm and cheerful. But at noon the adjutant of the regiment came into Rostov's and Denisov's dugout with a grave and serious face and regretfully showed them a paper addressed to Major Denisov from the regimental commander in which inquiries were made about yesterday's occurrence. The adjutant told them that the affair was likely to take a very bad turn: that a court-martial had been appointed, and that in view of the severity with which marauding and insubordination were now regarded, degradation to the ranks would be the best that could be hoped for. The case, as represented by the offended parties, was that, after seizing the transports, Major Denisov, being drunk, went to the chief quartermaster and without any provocation called him a thief, threatened to strike him, and on being led out had rushed into the office and given two officials a thrashing, and dislocated the arm of one of them. In answer to Rostov's renewed questions, Denisov said, laughing, that he thought he remembered that some other fellow had got mixed up in it, but that it was all nonsense and rubbish, and he did not in the least fear any kind of trial, and that if those scoundrels dared attack him he would give them an answer that they would not easily forget. Denisov spoke contemptuously of the whole matter, but Rostov knew him too well not to detect that (while hiding it from others) at heart he feared a court-martial and was worried over the affair, which was evidently taking a bad turn. Every day, letters of inquiry and notices from the court arrived, and on the first of May, Denisov was ordered to hand the squadron over to the next in seniority and appear before the staff of his division to explain his violence at the commissariat office. On the previous day Platov reconnoitered with two Cossack regiments and two squadrons of hussars. Denisov, as was his wont, rode out in front of the outposts, parading his courage. A bullet fired by a French sharpshooter hit him in the fleshy part of his leg. Perhaps at another time Denisov would not have left the regiment for so slight a wound, but now he took advantage of it to excuse himself from appearing at the staff and went into hospital. CHAPTER XVII In June the battle of Friedland was fought, in which the Pavlograds did not take part, and after that an armistice was proclaimed. Rostov, who felt his friend's absence very much, having no news of him since he left and feeling very anxious about his wound and the progress of his affairs, took advantage of the armistice to get leave to visit Denisov in hospital. The hospital was in a small Prussian town that had been twice devastated by Russian and French troops. Because it was summer, when it is so beautiful out in the fields, the little town presented a particularly dismal appearance with its broken roofs and fences, its foul streets, tattered inhabitants, and the sick and drunken soldiers wandering about. The hospital was in a brick building with some of the window frames and panes broken and a courtyard surrounded by the remains of a wooden fence that had been pulled to pieces. Several bandaged soldiers, with pale swollen faces, were sitting or walking about in the sunshine in the yard. Directly Rostov entered the door he was enveloped by a smell of putrefaction and hospital air. On the stairs he met a Russian army doctor smoking a cigar. The doctor was followed by a Russian assistant. "I can't tear myself to pieces," the doctor was saying. "Come to Makar Alexeevich in the evening. I shall be there." The assistant asked some further questions. "Oh, do the best you can! Isn't it all the same?" The doctor noticed Rostov coming upstairs. "What do you want, sir?" said the doctor. "What do you want? The bullets having spared you, do you want to try typhus? This is a pesthouse, sir." "How so?" asked Rostov. "Typhus, sir. It's death to go in. Only we two, Makeev and I" (he pointed to the assistant), "keep on here. Some five of us doctors have died in this place.... When a new one comes he is done for in a week," said the doctor with evident satisfaction. "Prussian doctors have been invited here, but our allies don't like it at all." Rostov explained that he wanted to see Major Denisov of the hussars, who was wounded. "I don't know. I can't tell you, sir. Only think! I am alone in charge of three hospitals with more than four hundred patients! It's well that the charitable Prussian ladies send us two pounds of coffee and some lint each month or we should be lost!" he laughed. "Four hundred, sir, and they're always sending me fresh ones. There are four hundred? Eh?" he asked, turning to the assistant. The assistant looked fagged out. He was evidently vexed and impatient for the talkative doctor to go. "Major Denisov," Rostov said again. "He was wounded at Molliten." "Dead, I fancy. Eh, Makeev?" queried the doctor, in a tone of indifference. The assistant, however, did not confirm the doctor's words. "Is he tall and with reddish hair?" asked the doctor. Rostov described Denisov's appearance. "There was one like that," said the doctor, as if pleased. "That one is dead, I fancy. However, I'll look up our list. We had a list. Have you got it, Makeev?" "Makar Alexeevich has the list," answered the assistant. "But if you'll step into the officers' wards you'll see for yourself," he added, turning to Rostov. "Ah, you'd better not go, sir," said the doctor, "or you may have to stay here yourself." But Rostov bowed himself away from the doctor and asked the assistant to show him the way. "Only don't blame me!" the doctor shouted up after him. Rostov and the assistant went into the dark corridor. The smell was so strong there that Rostov held his nose and had to pause and collect his strength before he could go on. A door opened to the right, and an emaciated sallow man on crutches, barefoot and in underclothing, limped out and, leaning against the doorpost, looked with glittering envious eyes at those who were passing. Glancing in at the door, Rostov saw that the sick and wounded were lying on the floor on straw and overcoats. "May I go in and look?" "What is there to see?" said the assistant. But, just because the assistant evidently did not want him to go in, Rostov entered the soldiers' ward. The foul air, to which he had already begun to get used in the corridor, was still stronger here. It was a little different, more pungent, and one felt that this was where it originated. In the long room, brightly lit up by the sun through the large windows, the sick and wounded lay in two rows with their heads to the walls, and leaving a passage in the middle. Most of them were unconscious and paid no attention to the newcomers. Those who were conscious raised themselves or lifted their thin yellow faces, and all looked intently at Rostov with the same expression of hope, of relief, reproach, and envy of another's health. Rostov went to the middle of the room and looking through the open doors into the two adjoining rooms saw the same thing there. He stood still, looking silently around. He had not at all expected such a sight. Just before him, almost across the middle of the passage on the bare floor, lay a sick man, probably a Cossack to judge by the cut of his hair. The man lay on his back, his huge arms and legs outstretched. His face was purple, his eyes were rolled back so that only the whites were seen, and on his bare legs and arms which were still red, the veins stood out like cords. He was knocking the back of his head against the floor, hoarsely uttering some word which he kept repeating. Rostov listened and made out the word. It was "drink, drink, a drink!" Rostov glanced round, looking for someone who would put this man back in his place and bring him water. "Who looks after the sick here?" he asked the assistant. Just then a commissariat soldier, a hospital orderly, came in from the next room, marching stiffly, and drew up in front of Rostov. "Good day, your honor!" he shouted, rolling his eyes at Rostov and evidently mistaking him for one of the hospital authorities. "Get him to his place and give him some water," said Rostov, pointing to the Cossack. "Yes, your honor," the soldier replied complacently, and rolling his eyes more than ever he drew himself up still straighter, but did not move. "No, it's impossible to do anything here," thought Rostov, lowering his eyes, and he was going out, but became aware of an intense look fixed on him on his right, and he turned. Close to the corner, on an overcoat, sat an old, unshaven, gray-bearded soldier as thin as a skeleton, with a stern sallow face and eyes intently fixed on Rostov. The man's neighbor on one side whispered something to him, pointing at Rostov, who noticed that the old man wanted to speak to him. He drew nearer and saw that the old man had only one leg bent under him, the other had been amputated above the knee. His neighbor on the other side, who lay motionless some distance from him with his head thrown back, was a young soldier with a snub nose. His pale waxen face was still freckled and his eyes were rolled back. Rostov looked at the young soldier and a cold chill ran down his back. "Why, this one seems..." he began, turning to the assistant. "And how we've been begging, your honor," said the old soldier, his jaw quivering. "He's been dead since morning. After all we're men, not dogs." "I'll send someone at once. He shall be taken away--taken away at once," said the assistant hurriedly. "Let us go, your honor." "Yes, yes, let us go," said Rostov hastily, and lowering his eyes and shrinking, he tried to pass unnoticed between the rows of reproachful envious eyes that were fixed upon him, and went out of the room. CHAPTER XVIII Going along the corridor, the assistant led Rostov to the officers' wards, consisting of three rooms, the doors of which stood open. There were beds in these rooms and the sick and wounded officers were lying or sitting on them. Some were walking about the rooms in hospital dressing gowns. The first person Rostov met in the officers' ward was a thin little man with one arm, who was walking about the first room in a nightcap and hospital dressing gown, with a pipe between his teeth. Rostov looked at him, trying to remember where he had seen him before. "See where we've met again!" said the little man. "Tushin, Tushin, don't you remember, who gave you a lift at Schon Grabern? And I've had a bit cut off, you see..." he went on with a smile, pointing to the empty sleeve of his dressing gown. "Looking for Vasili Dmitrich Denisov? My neighbor," he added, when he heard who Rostov wanted. "Here, here," and Tushin led him into the next room, from whence came sounds of several laughing voices. "How can they laugh, or even live at all here?" thought Rostov, still aware of that smell of decomposing flesh that had been so strong in the soldiers' ward, and still seeming to see fixed on him those envious looks which had followed him out from both sides, and the face of that young soldier with eyes rolled back. Denisov lay asleep on his bed with his head under the blanket, though it was nearly noon. "Ah, Wostov? How are you, how are you?" he called out, still in the same voice as in the regiment, but Rostov noticed sadly that under this habitual ease and animation some new, sinister, hidden feeling showed itself in the expression of Denisov's face and the intonations of his voice. His wound, though a slight one, had not yet healed even now, six weeks after he had been hit. His face had the same swollen pallor as the faces of the other hospital patients, but it was not this that struck Rostov. What struck him was that Denisov did not seem glad to see him, and smiled at him unnaturally. He did not ask about the regiment, nor about the general state of affairs, and when Rostov spoke of these matters did not listen. Rostov even noticed that Denisov did not like to be reminded of the regiment, or in general of that other free life which was going on outside the hospital. He seemed to try to forget that old life and was only interested in the affair with the commissariat officers. On Rostov's inquiry as to how the matter stood, he at once produced from under his pillow a paper he had received from the commission and the rough draft of his answer to it. He became animated when he began reading his paper and specially drew Rostov's attention to the stinging rejoinders he made to his enemies. His hospital companions, who had gathered round Rostov--a fresh arrival from the world outside- gradually began to disperse as soon as Denisov began reading his answer. Rostov noticed by their faces that all those gentlemen had already heard that story more than once and were tired of it. Only the man who had the next bed, a stout Uhlan, continued to sit on his bed, gloomily frowning and smoking a pipe, and little one-armed Tushin still listened, shaking his head disapprovingly. In the middle of the reading, the Uhlan interrupted Denisov. "But what I say is," he said, turning to Rostov, "it would be best simply to petition the Emperor for pardon. They say great rewards will now be distributed, and surely a pardon would be granted...." "Me petition the Empewo'!" exclaimed Denisov, in a voice to which he tried hard to give the old energy and fire, but which sounded like an expression of irritable impotence. "What for? If I were a wobber I would ask mercy, but I'm being court-martialed for bwinging wobbers to book. Let them twy me, I'm not afwaid of anyone. I've served the Tsar and my countwy honowably and have not stolen! And am I to be degwaded?... Listen, I'm w'iting to them stwaight. This is what I say: 'If I had wobbed the Tweasuwy...'" "It's certainly well written," said Tushin, "but that's not the point, Vasili Dmitrich," and he also turned to Rostov. "One has to submit, and Vasili Dmitrich doesn't want to. You know the auditor told you it was a bad business." "Well, let it be bad," said Denisov. "The auditor wrote out a petition for you," continued Tushin, "and you ought to sign it and ask this gentleman to take it. No doubt he" (indicating Rostov) "has connections on the staff. You won't find a better opportunity." "Haven't I said I'm not going to gwovel?" Denisov interrupted him, went on reading his paper. Rostov had not the courage to persuade Denisov, though he instinctively felt that the way advised by Tushin and the other officers was the safest, and though he would have been glad to be of service to Denisov. He knew his stubborn will and straightforward hasty temper. When the reading of Denisov's virulent reply, which took more than an hour, was over, Rostov said nothing, and he spent the rest of the day in a most dejected state of mind amid Denisov's hospital comrades, who had round him, telling them what he knew and listening to their stories. Denisov was moodily silent all the evening. Late in the evening, when Rostov was about to leave, he asked Denisov whether he had no commission for him. "Yes, wait a bit," said Denisov, glancing round at the officers, and taking his papers from under his pillow he went to the window, where he had an inkpot, and sat down to write. "It seems it's no use knocking one's head against a wall!" he said, coming from the window and giving Rostov a large envelope. In it was the petition to the Emperor drawn up by the auditor, in which Denisov, without alluding to the offenses of the commissariat officials, simply asked for pardon. "Hand it in. It seems..." He did not finish, but gave a painfully unnatural smile. CHAPTER XIX Having returned to the regiment and told the commander the state of Denisov's affairs, Rostov rode to Tilsit with the letter to the Emperor. On the thirteenth of June the French and Russian Emperors arrived in Tilsit. Boris Drubetskoy had asked the important personage on whom he was in attendance, to include him in the suite appointed for the stay at Tilsit. "I should like to see the great man," he said, alluding to Napoleon, whom hitherto he, like everyone else, had always called Buonaparte. "You are speaking of Buonaparte?" asked the general, smiling. Boris looked at his general inquiringly and immediately saw that he was being tested. "I am speaking, Prince, of the Emperor Napoleon," he replied. The general patted him on the shoulder, with a smile. "You will go far," he said, and took him to Tilsit with him. Boris was among the few present at the Niemen on the day the two Emperors met. He saw the raft, decorated with monograms, saw Napoleon pass before the French Guards on the farther bank of the river, saw the pensive face of the Emperor Alexander as he sat in silence in a tavern on the bank of the Niemen awaiting Napoleon's arrival, saw both Emperors get into boats, and saw how Napoleon- reaching the raft first--stepped quickly forward to meet Alexander and held out his hand to him, and how they both retired into the pavilion. Since he had begun to move in the highest circles Boris had made it his habit to watch attentively all that went on around him and to note it down. At the time of the meeting at Tilsit he asked the names of those who had come with Napoleon and about the uniforms they wore, and listened attentively to words spoken by important personages. At the moment the Emperors went into the pavilion he looked at his watch, and did not forget to look at it again when Alexander came out. The interview had lasted an hour and fifty-three minutes. He noted this down that same evening, among other facts he felt to be of historic importance. As the Emperor's suite was a very small one, it was a matter of great importance, for a man who valued his success in the service, to be at Tilsit on the occasion of this interview between the two Emperors, and having succeeded in this, Boris felt that henceforth his position was fully assured. He had not only become known, but people had grown accustomed to him and accepted him. Twice he had executed commissions to the Emperor himself, so that the latter knew his face, and all those at court, far from cold-shouldering him as at first when they considered him a newcomer, would now have been surprised had he been absent. Boris lodged with another adjutant, the Polish Count Zhilinski. Zhilinski, a Pole brought up in Paris, was rich, and passionately fond of the French, and almost every day of the stay at Tilsit, French officers of the Guard and from French headquarters were dining and lunching with him and Boris. On the evening of the twenty-fourth of June, Count Zhilinski arranged a supper for his French friends. The guest of honor was an aide-de-camp of Napoleon's, there were also several French officers of the Guard, and a page of Napoleon's, a young lad of an old aristocratic French family. That same day, Rostov, profiting by the darkness to avoid being recognized in civilian dress, came to Tilsit and went to the lodging occupied by Boris and Zhilinski. Rostov, in common with the whole army from which he came, was far from having experienced the change of feeling toward Napoleon and the French--who from being foes had suddenly become friends--that had taken place at headquarters and in Boris. In the army, Bonaparte and the French were still regarded with mingled feelings of anger, contempt, and fear. Only recently, talking with one of Platov's Cossack officers, Rostov had argued that if Napoleon were taken prisoner he would be treated not as a sovereign, but as a criminal. Quite lately, happening to meet a wounded French colonel on the road, Rostov had maintained with heat that peace was impossible between a legitimate sovereign and the criminal Bonaparte. Rostov was therefore unpleasantly struck by the presence of French officers in Boris' lodging, dressed in uniforms he had been accustomed to see from quite a different point of view from the outposts of the flank. As soon as he noticed a French officer, who thrust his head out of the door, that warlike feeling of hostility which he always experienced at the sight of the enemy suddenly seized him. He stopped at the threshold and asked in Russian whether Drubetskoy lived there. Boris, hearing a strange voice in the anteroom, came out to meet him. An expression of annoyance showed itself for a moment on his face on first recognizing Rostov. "Ah, it's you? Very glad, very glad to see you," he said, however, coming toward him with a smile. But Rostov had noticed his first impulse. "I've come at a bad time I think. I should not have come, but I have business," he said coldly. "No, I only wonder how you managed to get away from your regiment. Dans un moment je suis a vous,"* he said, answering someone who called him. *"In a minute I shall be at your disposal." "I see I'm intruding," Rostov repeated. The look of annoyance had already disappeared from Boris' face: having evidently reflected and decided how to act, he very quietly took both Rostov's hands and led him into the next room. His eyes, looking serenely and steadily at Rostov, seemed to be veiled by something, as if screened by blue spectacles of conventionality. So it seemed to Rostov. "Oh, come now! As if you could come at a wrong time!" said Boris, and he led him into the room where the supper table was laid and introduced him to his guests, explaining that he was not a civilian, but an hussar officer, and an old friend of his. "Count Zhilinski--le Comte N. N.--le Capitaine S. S.," said he, naming his guests. Rostov looked frowningly at the Frenchmen, bowed reluctantly, and remained silent. Zhilinski evidently did not receive this new Russian person very willingly into his circle and did not speak to Rostov. Boris did not appear to notice the constraint the newcomer produced and, with the same pleasant composure and the same veiled look in his eyes with which he had met Rostov, tried to enliven the conversation. One of the Frenchmen, with the politeness characteristic of his countrymen, addressed the obstinately taciturn Rostov, saying that the latter had probably come to Tilsit to see the Emperor. "No, I came on business," replied Rostov, briefly. Rostov had been out of humor from the moment he noticed the look of dissatisfaction on Boris' face, and as always happens to those in a bad humor, it seemed to him that everyone regarded him with aversion and that he was in everybody's way. He really was in their way, for he alone took no part in the conversation which again became general. The looks the visitors cast on him seemed to say: "And what is he sitting here for?" He rose and went up to Boris. "Anyhow, I'm in your way," he said in a low tone. "Come and talk over my business and I'll go away." "Oh, no, not at all," said Boris. "But if you are tired, come and lie down in my room and have a rest." "Yes, really..." They went into the little room where Boris slept. Rostov, without sitting down, began at once, irritably (as if Boris were to blame in some way) telling him about Denisov's affair, asking him whether, through his general, he could and would intercede with the Emperor on Denisov's behalf and get Denisov's petition handed in. When he and Boris were alone, Rostov felt for the first time that he could not look Boris in the face without a sense of awkwardness. Boris, with one leg crossed over the other and stroking his left hand with the slender fingers of his right, listened to Rostov as a general listens to the report of a subordinate, now looking aside and now gazing straight into Rostov's eyes with the same veiled look. Each time this happened Rostov felt uncomfortable and cast down his eyes. "I have heard of such cases and know that His Majesty is very severe in such affairs. I think it would be best not to bring it before the Emperor, but to apply to the commander of the corps.... But in general, I think..." "So you don't want to do anything? Well then, say so!" Rostov almost shouted, not looking Boris in the face. Boris smiled. "On the contrary, I will do what I can. Only I thought..." At that moment Zhilinski's voice was heard calling Boris. "Well then, go, go, go..." said Rostov, and refusing supper and remaining alone in the little room, he walked up and down for a long time, hearing the lighthearted French conversation from the next room. CHAPTER XX Rostov had come to Tilsit the day least suitable for a petition on Denisov's behalf. He could not himself go to the general in attendance as he was in mufti and had come to Tilsit without permission to do so, and Boris, even had he wished to, could not have done so on the following day. On that day, June 27, the preliminaries of peace were signed. The Emperors exchanged decorations: Alexander received the Cross of the Legion of Honor and Napoleon the Order of St. Andrew of the First Degree, and a dinner had been arranged for the evening, given by a battalion of the French Guards to the Preobrazhensk battalion. The Emperors were to be present at that banquet. Rostov felt so ill at ease and uncomfortable with Boris that, when the latter looked in after supper, he pretended to be asleep, and early next morning went away, avoiding Boris. In his civilian clothes and a round hat, he wandered about the town, staring at the French and their uniforms and at the streets and houses where the Russian and French Emperors were staying. In a square he saw tables being set up and preparations made for the dinner; he saw the Russian and French colors draped from side to side of the streets, with hugh monograms A and N. In the windows of the houses also flags and bunting were displayed. "Boris doesn't want to help me and I don't want to ask him. That's settled," thought Nicholas. "All is over between us, but I won't leave here without having done all I can for Denisov and certainly not without getting his letter to the Emperor. The Emperor!... He is here!" thought Rostov, who had unconsciously returned to the house where Alexander lodged. Saddled horses were standing before the house and the suite were assembling, evidently preparing for the Emperor to come out. "I may see him at any moment," thought Rostov. "If only I were to hand the letter direct to him and tell him all... could they really arrest me for my civilian clothes? Surely not! He would understand on whose side justice lies. He understands everything, knows everything. Who can be more just, more magnanimous than he? And even if they did arrest me for being here, what would it matter?" thought he, looking at an officer who was entering the house the Emperor occupied. "After all, people do go in.... It's all nonsense! I'll go in and hand the letter to the Emperor myself so much the worse for Drubetskoy who drives me to it!" And suddenly with a determination he himself did not expect, Rostov felt for the letter in his pocket and went straight to the house. "No, I won't miss my opportunity now, as I did after Austerlitz," he thought, expecting every moment to meet the monarch, and conscious of the blood that rushed to his heart at the thought. "I will fall at his feet and beseech him. He will lift me up, will listen, and will even thank me. 'I am happy when I can do good, but to remedy injustice is the greatest happiness,'" Rostov fancied the sovereign saying. And passing people who looked after him with curiosity, he entered the porch of the Emperor's house. A broad staircase led straight up from the entry, and to the right he saw a closed door. Below, under the staircase, was a door leading to the lower floor. "Whom do you want?" someone inquired. "To hand in a letter, a petition, to His Majesty," said Nicholas, with a tremor in his voice. "A petition? This way, to the officer on duty" (he was shown the door leading downstairs), "only it won't be accepted." On hearing this indifferent voice, Rostov grew frightened at what he was doing; the thought of meeting the Emperor at any moment was so fascinating and consequently so alarming that he was ready to run away, but the official who had questioned him opened the door, and Rostov entered. A short stout man of about thirty, in white breeches and high boots and a batiste shirt that he had evidently only just put on, standing in that room, and his valet was buttoning on to the back of his breeches a new pair of handsome silk-embroidered braces that, for some reason, attracted Rostov's attention. This man was was speaking to someone in the adjoining room. "A good figure and in her first bloom," he was saying, but on seeing Rostov, he stopped short and frowned. "What is it? A petition?" "What is it?" asked the person in the other room. "Another petitioner," answered the man with the braces. "Tell him to come later. He'll be coming out directly, we must go." "Later... later! Tomorrow. It's too late..." Rostov turned and was about to go, but the man in the braces stopped him. "Whom have you come from? Who are you?" "I come from Major Denisov," answered Rostov. "Are you an officer?" "Lieutenant Count Rostov." "What audacity! Hand it in through your commander. And go along with you... go," and he continued to put on the uniform the valet handed him. Rostov went back into the hall and noticed that in the porch there were many officers and generals in full parade uniform, whom he had to pass. Cursing his temerity, his heart sinking at the thought of finding himself at any moment face to face with the Emperor and being put to shame and arrested in his presence, fully alive now to the impropriety of his conduct and repenting of it, Rostov, with downcast eyes, was making his way out of the house through the brilliant suite when a familiar voice called him and a hand detained him. "What are you doing here, sir, in civilian dress?" asked a deep voice. It was a cavalry general who had obtained the Emperor's special favor during this campaign, and who had formerly commanded the division in which Rostov was serving. Rostov, in dismay, began justifying himself, but seeing the kindly, jocular face of the general, he took him aside and in an excited voice told him the whole affair, asking him to intercede for Denisov, whom the general knew. Having heard Rostov to the end, the general shook his head gravely. "I'm sorry, sorry for that fine fellow. Give me the letter." Hardly had Rostov handed him the letter and finished explaining Denisov's case, when hasty steps and the jingling of spurs were heard on the stairs, and the general, leaving him, went to the porch. The gentlemen of the Emperor's suite ran down the stairs and went to their horses. Hayne, the same groom who had been at Austerlitz, led up the Emperor's horse, and the faint creak of a footstep Rostov knew at once was heard on the stairs. Forgetting the danger of being recognized, Rostov went close to the porch, together with some inquisitive civilians, and again, after two years, saw those features he adored: that same face and same look and step, and the same union of majesty and mildness.... And the feeling of enthusiasm and love for his sovereign rose again in Rostov's soul in all its old force. In the uniform of the Preobrazhensk regiment--white chamois-leather breeches and high boots--and wearing a star Rostov did not know (it was that of the Legion d'honneur), the monarch came out into the porch, putting on his gloves and carrying his hat under his arm. He stopped and looked about him, brightening everything around by his glance. He spoke a few words to some of the generals, and, recognizing the former commander of Rostov's division, smiled and beckoned to him. All the suite drew back and Rostov saw the general talking for some time to the Emperor. The Emperor said a few words to him and took a step toward his horse. Again the crowd of members of the suite and street gazers (among whom was Rostov) moved nearer to the Emperor. Stopping beside his horse, with his hand on the saddle, the Emperor turned to the cavalry general and said in a loud voice, evidently wishing to be heard by all: "I cannot do it, General. I cannot, because the law is stronger than I," and he raised his foot to the stirrup. The general bowed his head respectfully, and the monarch mounted and rode down the street at a gallop. Beside himself with enthusiasm, Rostov ran after him with the crowd. CHAPTER XXI The Emperor rode to the square where, facing one another, a battalion of the Preobrazhensk regiment stood on the right and a battalion of the French Guards in their bearskin caps on the left. As the Tsar rode up to one flank of the battalions, which presented arms, another group of horsemen galloped up to the opposite flank, and at the head of them Rostov recognized Napoleon. It could be no one else. He came at a gallop, wearing a small hat, a blue uniform open over a white vest, and the St. Andrew ribbon over his shoulder. He was riding a very fine thoroughbred gray Arab horse with a crimson gold-embroidered saddlecloth. On approaching Alexander he raised his hat, and as he did so, Rostov, with his cavalryman's eye, could not help noticing that Napoleon did not sit well or firmly in the saddle. The battalions shouted "Hurrah!" and "Vive l'Empereur!" Napoleon said something to Alexander, and both Emperors dismounted and took each other's hands. Napoleon's face wore an unpleasant and artificial smile. Alexander was saying something affable to him. In spite of the trampling of the French gendarmes' horses, which were pushing back the crowd, Rostov kept his eyes on every movement of Alexander and Bonaparte. It struck him as a surprise that Alexander treated Bonaparte as an equal and that the latter was quite at ease with the Tsar, as if such relations with an Emperor were an everyday matter to him. Alexander and Napoleon, with the long train of their suites, approached the right flank of the Preobrazhensk battalion and came straight up to the crowd standing there. The crowd unexpectedly found itself so close to the Emperors that Rostov, standing in the front row, was afraid he might be recognized. "Sire, I ask your permission to present the Legion of Honor to the bravest of your soldiers," said a sharp, precise voice, articulating every letter. This was said by the undersized Napoleon, looking up straight into Alexander's eyes. Alexander listened attentively to what was said to him and, bending his head, smiled pleasantly. "To him who has borne himself most bravely in this last war," added Napoleon, accentuating each syllable, as with a composure and assurance exasperating to Rostov, he ran his eyes over the Russian ranks drawn up before him, who all presented arms with their eyes fixed on their Emperor. "Will Your Majesty allow me to consult the colonel?" said Alexander and took a few hasty steps toward Prince Kozlovski, the commander of the battalion. Bonaparte meanwhile began taking the glove off his small white hand, tore it in doing so, and threw it away. An aide-de-camp behind him rushed forward and picked it up. "To whom shall it be given?" the Emperor Alexander asked Koslovski, in Russian in a low voice. "To whomever Your Majesty commands." The Emperor knit his brows with dissatisfaction and, glancing back, remarked: "But we must give him an answer." Kozlovski scanned the ranks resolutely and included Rostov in his scrutiny. "Can it be me?" thought Rostov. "Lazarev!" the colonel called, with a frown, and Lazarev, the first soldier in the rank, stepped briskly forward. "Where are you off to? Stop here!" voices whispered to Lazarev who did not know where to go. Lazarev stopped, casting a sidelong look at his colonel in alarm. His face twitched, as often happens to soldiers called before the ranks. Napoleon slightly turned his head, and put his plump little hand out behind him as if to take something. The members of his suite, guessing at once what he wanted, moved about and whispered as they passed something from one to another, and a page--the same one Rostov had seen the previous evening at Boris'--ran forward and, bowing respectfully over the outstretched hand and not keeping it waiting a moment, laid in it an Order on a red ribbon. Napoleon, without looking, pressed two fingers together and the badge was between them. Then he approached Lazarev (who rolled his eyes and persistently gazed at his own monarch), looked round at the Emperor Alexander to imply that what he was now doing was done for the sake of his ally, and the small white hand holding the Order touched one of Lazarev's buttons. It was as if Napoleon knew that it was only necessary for his hand to deign to touch that soldier's breast for the soldier to be forever happy, rewarded, and distinguished from everyone else in the world. Napoleon merely laid the cross on Lazarev's breast and, dropping his hand, turned toward Alexander as though sure that the cross would adhere there. And it really did. Officious hands, Russian and French, immediately seized the cross and fastened it to the uniform. Lazarev glanced morosely at the little man with white hands who was doing something to him and, still standing motionless presenting arms, looked again straight into Alexander's eyes, as if asking whether he should stand there, or go away, or do something else. But receiving no orders, he remained for some time in that rigid position. The Emperors remounted and rode away. The Preobrazhensk battalion, breaking rank, mingled with the French Guards and sat down at the tables prepared for them. Lazarev sat in the place of honor. Russian and French officers embraced him, congratulated him, and pressed his hands. Crowds of officers and civilians drew near merely to see him. A rumble of Russian and French voices and laughter filled the air round the tables in the square. Two officers with flushed faces, looking cheerful and happy, passed by Rostov. "What d'you think of the treat? All on silver plate," one of them was saying. "Have you seen Lazarev?" "I have." "Tomorrow, I hear, the Preobrazhenskis will give them a dinner." "Yes, but what luck for Lazarev! Twelve hundred francs' pension for life." "Here's a cap, lads!" shouted a Preobrazhensk soldier, donning a shaggy French cap. "It's a fine thing! First-rate!" "Have you heard the password?" asked one Guards' officer of another. "The day before yesterday it was 'Napoleon, France, bravoure'; yesterday, 'Alexandre, Russie, grandeur.' One day our Emperor gives it and next day Napoleon. Tomorrow our Emperor will send a St. George's Cross to the bravest of the French Guards. It has to be done. He must respond in kind." Boris, too, with his friend Zhilinski, came to see the Preobrazhensk banquet. On his way back, he noticed Rostov standing by the corner of a house. "Rostov! How d'you do? We missed one another," he said, and could not refrain from asking what was the matter, so strangely dismal and troubled was Rostov's face. "Nothing, nothing," replied Rostov. "You'll call round?" "Yes, I will." Rostov stood at that corner for a long time, watching the feast from a distance. In his mind, a painful process was going on which he could not bring to a conclusion. Terrible doubts rose in his soul. Now he remembered Denisov with his changed expression, his submission, and the whole hospital, with arms and legs torn off and its dirt and disease. So vividly did he recall that hospital stench of dead flesh that he looked round to see where the smell came from. Next he thought of that self-satisfied Bonaparte, with his small white hand, who was now an Emperor, liked and respected by Alexander. Then why those severed arms and legs and those dead men?... Then again he thought of Lazarev rewarded and Denisov punished and unpardoned. He caught himself harboring such strange thoughts that he was frightened. The smell of the food the Preobrazhenskis were eating and a sense of hunger recalled him from these reflections; he had to get something to eat before going away. He went to a hotel he had noticed that morning. There he found so many people, among them officers who, like himself, had come in civilian clothes, that he had difficulty in getting a dinner. Two officers of his own division joined him. The conversation naturally turned on the peace. The officers, his comrades, like most of the army, were dissatisfied with the peace concluded after the battle of Friedland. They said that had we held out a little longer Napoleon would have been done for, as his troops had neither provisions nor ammunition. Nicholas ate and drank (chiefly the latter) in silence. He finished a couple of bottles of wine by himself. The process in his mind went on tormenting him without reaching a conclusion. He feared to give way to his thoughts, yet could not get rid of them. Suddenly, on one of the officers' saying that it was humiliating to look at the French, Rostov began shouting with uncalled-for wrath, and therefore much to the surprise of the officers: "How can you judge what's best?" he cried, the blood suddenly rushing to his face. "How can you judge the Emperor's actions? What right have we to argue? We cannot comprehend either the Emperor's or his actions!" "But I never said a word about the Emperor!" said the officer, justifying himself, and unable to understand Rostov's outburst, except on the supposition that he was drunk. But Rostov did not listen to him. "We are not diplomatic officials, we are soldiers and nothing more," he went on. "If we are ordered to die, we must die. If we're punished, it means that we have deserved it, it's not for us to judge. If the Emperor pleases to recognize Bonaparte as Emperor and to conclude an alliance with him, it means that that is the right thing to do. If once we begin judging and arguing about everything, nothing sacred will be left! That way we shall be saying there is no God--nothing!" shouted Nicholas, banging the table--very little to the point as it seemed to his listeners, but quite relevantly to the course of his own thoughts. "Our business is to do our duty, to fight and not to think! That's all...." said he. "And to drink," said one of the officers, not wishing to quarrel. "Yes, and to drink," assented Nicholas. "Hullo there! Another bottle!" he shouted. In 1808 the Emperor Alexander went to Erfurt for a fresh interview with the Emperor Napoleon, and in the upper circles of Petersburg there was much talk of the grandeur of this important meeting. CHAPTER XXII In 1809 the intimacy between "the world's two arbiters," as Napoleon and Alexander were called, was such that when Napoleon declared war on Austria a Russian corps crossed the frontier to co-operate with our old enemy Bonaparte against our old ally the Emperor of Austria, and in court circles the possibility of marriage between Napoleon and one of Alexander's sisters was spoken of. But besides considerations of foreign policy, the attention of Russian society was at that time keenly directed on the internal changes that were being undertaken in all the departments of government. Life meanwhile--real life, with its essential interests of health and sickness, toil and rest, and its intellectual interests in thought, science, poetry, music, love, friendship, hatred, and passions--went on as usual, independently of and apart from political friendship or enmity with Napoleon Bonaparte and from all the schemes of reconstruction. BOOK SIX: 1808 --10 CHAPTER I Prince Andrew had spent two years continuously in the country. All the plans Pierre had attempted on his estates--and constantly changing from one thing to another had never accomplished--were carried out by Prince Andrew without display and without perceptible difficulty. He had in the highest degree a practical tenacity which Pierre lacked, and without fuss or strain on his part this set things going. On one of his estates the three hundred serfs were liberated and became free agricultural laborers--this being one of the first examples of the kind in Russia. On other estates the serfs' compulsory labor was commuted for a quitrent. A trained midwife was engaged for Bogucharovo at his expense, and a priest was paid to teach reading and writing to the children of the peasants and household serfs. Prince Andrew spent half his time at Bald Hills with his father and his son, who was still in the care of nurses. The other half he spent in "Bogucharovo Cloister," as his father called Prince Andrew's estate. Despite the indifference to the affairs of the world he had expressed to Pierre, he diligently followed all that went on, received many books, and to his surprise noticed that when he or his father had visitors from Petersburg, the very vortex of life, these people lagged behind himself--who never left the country--in knowledge of what was happening in home and foreign affairs. Besides being occupied with his estates and reading a great variety of books, Prince Andrew was at this time busy with a critical of survey our last two unfortunate campaigns, and with drawing up a proposal for a reform of the army rules and regulations. In the spring of 1809 he went to visit the Ryazan estates which had been inherited by his son, whose guardian he was. Warmed by the spring sunshine he sat in the caleche looking at the new grass, the first leaves on the birches, and the first puffs of white spring clouds floating across the clear blue sky. He was not thinking of anything, but looked absent-mindedly and cheerfully from side to side. They crossed the ferry where he had talked with Pierre the year before. They went through the muddy village, past threshing floors and green fields of winter rye, downhill where snow still lodged near the bridge, uphill where the clay had been liquefied by the rain, past strips of stubble land and bushes touched with green here and there, and into a birch forest growing on both sides of the road. In the forest it was almost hot, no wind could be felt. The birches with their sticky green leaves were motionless, and lilac-colored flowers and the first blades of green grass were pushing up and lifting last year's leaves. The coarse evergreen color of the small fir trees scattered here and there among the birches was an unpleasant reminder of winter. On entering the forest the horses began to snort and sweated visibly. Peter the footman made some remark to the coachman; the latter assented. But apparently the coachman's sympathy was not enough for Peter, and he turned on the box toward his master. "How pleasant it is, your excellency!" he said with a respectful smile. "What?" "It's pleasant, your excellency!" "What is he talking about?" thought Prince Andrew. "Oh, the spring, I suppose," he thought as he turned round. "Yes, really everything is green already.... How early! The birches and cherry and alders too are coming out.... But the oaks show no sign yet. Ah, here is one oak!" At the edge of the road stood an oak. Probably ten times the age of the birches that formed the forest, it was ten times as thick and twice as tall as they. It was an enormous tree, its girth twice as great as a man could embrace, and evidently long ago some of its branches had been broken off and its bark scarred. With its huge ungainly limbs sprawling unsymmetrically, and its gnarled hands and fingers, it stood an aged, stern, and scornful monster among the smiling birch trees. Only the dead-looking evergreen firs dotted about in the forest, and this oak, refused to yield to the charm of spring or notice either the spring or the sunshine. "Spring, love, happiness!" this oak seemed to say. "Are you not weary of that stupid, meaningless, constantly repeated fraud? Always the same and always a fraud? There is no spring, no sun, no happiness! Look at those cramped dead firs, ever the same, and at me too, sticking out my broken and barked fingers just where they have grown, whether from my back or my sides: as they have grown so I stand, and I do not believe in your hopes and your lies." As he passed through the forest Prince Andrew turned several times to look at that oak, as if expecting something from it. Under the oak, too, were flowers and grass, but it stood among them scowling, rigid, misshapen, and grim as ever. "Yes, the oak is right, a thousand times right," thought Prince Andrew. "Let others--the young--yield afresh to that fraud, but we know life, our life is finished!" A whole sequence of new thoughts, hopeless but mournfully pleasant, rose in his soul in connection with that tree. During this journey he, as it were, considered his life afresh and arrived at his old conclusion, restful in its hopelessness: that it was not for him to begin anything anew--but that he must live out his life, content to do no harm, and not disturbing himself or desiring anything. CHAPTER II Prince Andrew had to see the Marshal of the Nobility for the district in connection with the affairs of the Ryazan estate of which he was trustee. This Marshal was Count Ilya Rostov, and in the middle of May Prince Andrew went to visit him. It was now hot spring weather. The whole forest was already clothed in green. It was dusty and so hot that on passing near water one longed to bathe. Prince Andrew, depressed and preoccupied with the business about which he had to speak to the Marshal, was driving up the avenue in the grounds of the Rostovs' house at Otradnoe. He heard merry girlish cries behind some trees on the right and saw a group of girls running to cross the path of his caleche. Ahead of the rest and nearer to him ran a dark-haired, remarkably slim, pretty girl in a yellow chintz dress, with a white handkerchief on her head from under which loose locks of hair escaped. The girl was shouting something but, seeing that he was a stranger, ran back laughing without looking at him. Suddenly, he did not know why, he felt a pang. The day was so beautiful, the sun so bright, everything around so gay, but that slim pretty girl did not know, or wish to know, of his existence and was contented and cheerful in her own separate--probably foolish- but bright and happy life. "What is she so glad about? What is she thinking of? Not of the military regulations or of the arrangement of the Ryazan serfs' quitrents. Of what is she thinking? Why is she so happy?" Prince Andrew asked himself with instinctive curiosity. In 1809 Count Ilya Rostov was living at Otradnoe just as he had done in former years, that is, entertaining almost the whole province with hunts, theatricals, dinners, and music. He was glad to see Prince Andrew, as he was to see any new visitor, and insisted on his staying the night. During the dull day, in the course of which he was entertained by his elderly hosts and by the more important of the visitors (the old count's house was crowded on account of an approaching name day), Prince Andrew repeatedly glanced at Natasha, gay and laughing among the younger members of the company, and asked himself each time, "What is she thinking about? Why is she so glad?" That night, alone in new surroundings, he was long unable to sleep. He read awhile and then put out his candle, but relit it. It was hot in the room, the inside shutters of which were closed. He was cross with the stupid old man (as he called Rostov), who had made him stay by assuring him that some necessary documents had not yet arrived from town, and he was vexed with himself for having stayed. He got up and went to the window to open it. As soon as he opened the shutters the moonlight, as if it had long been watching for this, burst into the room. He opened the casement. The night was fresh, bright, and very still. Just before the window was a row of pollard trees, looking black on one side and with a silvery light on the other. Beneath the trees grewsome kind of lush, wet, bushy vegetation with silver-lit leaves and stems here and there. Farther back beyond the dark trees a roof glittered with dew, to the right was a leafy tree with brilliantly white trunk and branches, and above it shone the moon, nearly at its full, in a pale, almost starless, spring sky. Prince Andrew leaned his elbows on the window ledge and his eyes rested on that sky. His room was on the first floor. Those in the rooms above were also awake. He heard female voices overhead. "Just once more," said a girlish voice above him which Prince Andrew recognized at once. "But when are you coming to bed?" replied another voice. "I won't, I can't sleep, what's the use? Come now for the last time." Two girlish voices sang a musical passage--the end of some song. "Oh, how lovely! Now go to sleep, and there's an end of it." "You go to sleep, but I can't," said the first voice, coming nearer to the window. She was evidently leaning right out, for the rustle of her dress and even her breathing could be heard. Everything was stone-still, like the moon and its light and the shadows. Prince Andrew, too, dared not stir, for fear of betraying his unintentional presence. "Sonya! Sonya!" he again heard the first speaker. "Oh, how can you sleep? Only look how glorious it is! Ah, how glorious! Do wake up, Sonya!" she said almost with tears in her voice. "There never, never was such a lovely night before!" Sonya made some reluctant reply. "Do just come and see what a moon!... Oh, how lovely! Come here.... Darling, sweetheart, come here! There, you see? I feel like sitting down on my heels, putting my arms round my knees like this, straining tight, as tight as possible, and flying away! Like this...." "Take care, you'll fall out." He heard the sound of a scuffle and Sonya's disapproving voice: "It's past one o'clock." "Oh, you only spoil things for me. All right, go, go!" Again all was silent, but Prince Andrew knew she was still sitting there. From time to time he heard a soft rustle and at times a sigh. "O God, O God! What does it mean?" she suddenly exclaimed. "To bed then, if it must be!" and she slammed the casement. "For her I might as well not exist!" thought Prince Andrew while he listened to her voice, for some reason expecting yet fearing that she might say something about him. "There she is again! As if it were on purpose," thought he. In his soul there suddenly arose such an unexpected turmoil of youthful thoughts and hopes, contrary to the whole tenor of his life, that unable to explain his condition to himself he lay down and fell asleep at once. CHAPTER III Next morning, having taken leave of no one but the count, and not waiting for the ladies to appear, Prince Andrew set off for home. It was already the beginning of June when on his return journey he drove into the birch forest where the gnarled old oak had made so strange and memorable an impression on him. In the forest the harness bells sounded yet more muffled than they had done six weeks before, for now all was thick, shady, and dense, and the young firs dotted about in the forest did not jar on the general beauty but, lending themselves to the mood around, were delicately green with fluffy young shoots. The whole day had been hot. Somewhere a storm was gathering, but only a small cloud had scattered some raindrops lightly, sprinkling the road and the sappy leaves. The left side of the forest was dark in the shade, the right side glittered in the sunlight, wet and shiny and scarcely swayed by the breeze. Everything was in blossom, the nightingales trilled, and their voices reverberated now near, now far away. "Yes, here in this forest was that oak with which I agreed," thought Prince Andrew. "But where is it?" he again wondered, gazing at the left side of the road, and without recognizing it he looked with admiration at the very oak he sought. The old oak, quite transfigured, spreading out a canopy of sappy dark-green foliage, stood rapt and slightly trembling in the rays of the evening sun. Neither gnarled fingers nor old scars nor old doubts and sorrows were any of them in evidence now. Through the hard century-old bark, even where there were no twigs, leaves had sprouted such as one could hardly believe the old veteran could have produced. "Yes, it is the same oak," thought Prince Andrew, and all at once he was seized by an unreasoning springtime feeling of joy and renewal. All the best moments of his life suddenly rose to his memory. Austerlitz with the lofty heavens, his wife's dead reproachful face, Pierre at the ferry, that girl thrilled by the beauty of the night, and that night itself and the moon, and.... all this rushed suddenly to his mind. "No, life is not over at thirty-one!" Prince Andrew suddenly decided finally and decisively. "It is not enough for me to know what I have in me--everyone must know it: Pierre, and that young girl who wanted to fly away into the sky, everyone must know me, so that my life may not be lived for myself alone while others live so apart from it, but so that it may be reflected in them all, and they and I may live in harmony!" On reaching home Prince Andrew decided to go to Petersburg that autumn and found all sorts of reasons for this decision. A whole serics of sensible and logical considerations showing it to be essential for him to go to Petersburg, and even to re-enter the service, kept springing up in his mind. He could not now understand how he could ever even have doubted the necessity of taking an active share in life, just as a month before he had not understood how the idea of leaving the quiet country could ever enter his head. It now seemed clear to him that all his experience of life must be senselessly wasted unless he applied it to some kind of work and again played an active part in life. He did not even remember how formerly, on the strength of similar wretched logical arguments, it had seemed obvious that he would be degrading himself if he now, after the lessons he had had in life, allowed himself to believe in the possibility of being useful and in the possibility of happiness or love. Now reason suggested quite the opposite. After that journey to Ryazan he found the country dull; his former pursuits no longer interested him, and often when sitting alone in his study he got up, went to the mirror, and gazed a long time at his own face. Then he would turn away to the portrait of his dead Lise, who with hair curled a la grecque looked tenderly and gaily at him out of the gilt frame. She did not now say those former terrible words to him, but looked simply, merrily, and inquisitively at him. And Prince Andrew, crossing his arms behind him, long paced the room, now frowning, now smiling, as he reflected on those irrational, inexpressible thoughts, secret as a crime, which altered his whole life and were connected with Pierre, with fame, with the girl at the window, the oak, and woman's beauty and love. And if anyone came into his room at such moments he was particularly cold, stern, and above all unpleasantly logical. "My dear," Princess Mary entering at such a moment would say, "little Nicholas can't go out today, it's very cold." "If it were hot," Prince Andrew would reply at such times very dryly to his sister, "he could go out in his smock, but as it is cold he must wear warm clothes, which were designed for that purpose. That is what follows from the fact that it is cold; and not that a child who needs fresh air should remain at home," he would add with extreme logic, as if punishing someone for those secret illogical emotions that stirred within him. At such moments Princess Mary would think how intellectual work dries men up. CHAPTER IV Prince Andrew arrived in Petersburg in August, 1809. It was the time when the youthful Speranski was at the zenith of his fame and his reforms were being pushed forward with the greatest energy. That same August the Emperor was thrown from his caleche, injured his leg, and remained three weeks at Peterhof, receiving Speranski every day and no one else. At that time the two famous decrees were being prepared that so agitated society--abolishing court ranks and introducing examinations to qualify for the grades of Collegiate Assessor and State Councilor--and not merely these but a whole state constitution, intended to change the existing order of government in Russia: legal, administrative, and financial, from the Council of State down to the district tribunals. Now those vague liberal dreams with which the Emperor Alexander had ascended the throne, and which he had tried to put into effect with the aid of his associates, Czartoryski, Novosiltsev, Kochubey, and Strogonov--whom he himself in jest had called his Comite de salut public--were taking shape and being realized. Now all these men were replaced by Speranski on the civil side, and Arakcheev on the military. Soon after his arrival Prince Andrew, as a gentleman of the chamber, presented himself at court and at a levee. The Emperor, though he met him twice, did not favor him with a single word. It had always seemed to Prince Andrew before that he was antipathetic to the Emperor and that the latter disliked his face and personality generally, and in the cold, repellent glance the Emperor gave him, he now found further confirmation of this surmise. The courtiers explained the Emperor's neglect of him by His Majesty's displeasure at Bolkonski's not having served since 1805. "I know myself that one cannot help one's sympathies and antipathies," thought Prince Andrew, "so it will not do to present my proposal for the reform of the army regulations to the Emperor personally, but the project will speak for itself." He mentioned what he had written to an old field marshal, a friend of his father's. The field marshal made an appointment to see him, received him graciously, and promised to inform the Emperor. A few days later Prince Andrew received notice that he was to go to see the Minister of War, Count Arakcheev. On the appointed day Prince Andrew entered Count Arakcheev's waiting room at nine in the morning. He did not know Arakcheev personally, had never seen him, and all he had heard of him inspired him with but little respect for the man. "He is Minister of War, a man trusted by the Emperor, and I need not concern myself about his personal qualities: he has been commissioned to consider my project, so he alone can get it adopted," thought Prince Andrew as he waited among a number of important and unimportant people in Count Arakcheev's waiting room. During his service, chiefly as an adjutant, Prince Andrew had seen the anterooms of many important men, and the different types of such rooms were well known to him. Count Arakcheev's anteroom had quite a special character. The faces of the unimportant people awaiting their turn for an audience showed embarrassment and servility; the faces of those of higher rank expressed a common feeling of awkwardness, covered by a mask of unconcern and ridicule of themselves, their situation, and the person for whom they were waiting. Some walked thoughtfully up and down, others whispered and laughed. Prince Andrew heard the nickname "Sila Andreevich" and the words, "Uncle will give it to us hot," in reference to Count Arakcheev. One general (an important personage), evidently feeling offended at having to wait so long, sat crossing and uncrossing his legs and smiling contemptuously to himself. But the moment the door opened one feeling alone appeared on all faces--that of fear. Prince Andrew for the second time asked the adjutant on duty to take in his name, but received an ironical look and was told that his turn would come in due course. After some others had been shown in and out of the minister's room by the adjutant on duty, an officer who struck Prince Andrew by his humiliated and frightened air was admitted at that terrible door. This officer's audience lasted a long time. Then suddenly the grating sound of a harsh voice was heard from the other side of the door, and the officer--with pale face and trembling lips--came out and passed through the waiting room, clutching his head. After this Prince Andrew was conducted to the door and the officer on duty said in a whisper, "To the right, at the window." Prince Andrew entered a plain tidy room and saw at the table a man of forty with a long waist, a long closely cropped head, deep wrinkles, scowling brows above dull greenish-hazel eyes and an overhanging red nose. Arakcheev turned his head toward him without looking at him. "What is your petition?" asked Arakcheev. "I am not petitioning, your excellency," returned Prince Andrew quietly. Arakcheev's eyes turned toward him. "Sit down," said he. "Prince Bolkonski?" "I am not petitioning about anything. His Majesty the Emperor has deigned to send your excellency a project submitted by me..." "You see, my dear sir, I have read your project," interrupted Arakcheev, uttering only the first words amiably and then--again without looking at Prince Andrew--relapsing gradually into a tone of grumbling contempt. "You are proposing new military laws? There are many laws but no one to carry out the old ones. Nowadays everybody designs laws, it is easier writing than doing." "I came at His Majesty the Emperor's wish to learn from your excellency how you propose to deal with the memorandum I have presented," said Prince Andrew politely. "I have endorsed a resolution on your memorandum and sent it to the committee. I do not approve of it," said Arakcheev, rising and taking a paper from his writing table. "Here!" and he handed it to Prince Andrew. Across the paper was scrawled in pencil, without capital letters, misspelled, and without punctuation: "Unsoundly constructed because resembles an imitation of the French military code and from the Articles of War needlessly deviating." "To what committee has the memorandum been referred?" inquired Prince Andrew. "To the Committee on Army Regulations, and I have recommended that your honor should be appointed a member, but without a salary." Prince Andrew smiled. "I don't want one." "A member without salary," repeated Arakcheev. "I have the honor... Eh! Call the next one! Who else is there?" he shouted, bowing to Prince Andrew. CHAPTER V While waiting for the announcement of his appointment to the committee Prince Andrew looked up his former acquaintances, particularly those he knew to be in power and whose aid he might need. In Petersburg he now experienced the same feeling he had had on the eve of a battle, when troubled by anxious curiosity and irresistibly attracted to the ruling circles where the future, on which the fate of millions depended, was being shaped. From the irritation of the older men, the curiosity of the uninitiated, the reserve of the initiated, the hurry and preoccupation of everyone, and the innumerable committees and commissions of whose existence he learned every day, he felt that now, in 1809, here in Petersburg a vast civil conflict was in preparation, the commander in chief of which was a mysterious person he did not know, but who was supposed to be a man of genius--Speranski. And this movement of reconstruction of which Prince Andrew had a vague idea, and Speranski its chief promoter, began to interest him so keenly that the question of the army regulations quickly receded to a secondary place in his consciousness. Prince Andrew was most favorably placed to secure good reception in the highest and most diverse Petersburg circles of the day. The reforming party cordially welcomed and courted him, the first place because he was reputed to be clever and very well read, and secondly because by liberating his serfs he had obtained the reputation of being a liberal. The party of the old and dissatisfied, who censured the innovations, turned to him expecting his sympathy in their disapproval of the reforms, simply because he was the son of his father. The feminine society world welcomed him gladly, because he was rich, distinguished, a good match, and almost a newcomer, with a halo of romance on account of his supposed death and the tragic loss of his wife. Besides this the general opinion of all who had known him previously was that he had greatly improved during these last five years, having softened and grown more manly, lost his former affectation, pride, and contemptuous irony, and acquired the serenity that comes with years. People talked about him, were interested in him, and wanted to meet him. The day after his interview with Count Arakcheev, Prince Andrew spent the evening at Count Kochubey's. He told the count of his interview with Sila Andreevich (Kochubey spoke of Arakcheev by that nickname with the same vague irony Prince Andrew had noticed in the Minister of War's anteroom). "Mon cher, even in this case you can't do without Michael Mikhaylovich Speranski. He manages everything. I'll speak to him. He has promised to come this evening." "What has Speranski to do with the army regulations?" asked Prince Andrew. Kochubey shook his head smilingly, as if surprised at Bolkonski's simplicity. "We were talking to him about you a few days ago," Kochubey continued, "and about your freed plowmen." "Oh, is it you, Prince, who have freed your serfs?" said an old man of Catherine's day, turning contemptuously toward Bolkonski. "It was a small estate that brought in no profit," replied Prince Andrew, trying to extenuate his action so as not to irritate the old man uselessly. "Afraid of being late..." said the old man, looking at Kochubey. "There's one thing I don't understand," he continued. "Who will plow the land if they are set free? It is easy to write laws, but difficult to rule.... Just the same as now--I ask you, Count--who will be heads of the departments when everybody has to pass examinations?" "Those who pass the examinations, I suppose," replied Kochubey, crossing his legs and glancing round. "Well, I have Pryanichnikov serving under me, a splendid man, a priceless man, but he's sixty. Is he to go up for examination?" "Yes, that's a difficulty, as education is not at all general, but..." Count Kochubey did not finish. He rose, took Prince Andrew by the arm, and went to meet a tall, bald, fair man of about forty with a large open forehead and a long face of unusual and peculiar whiteness, who was just entering. The newcomer wore a blue swallow-tail coat with a cross suspended from his neck and a star on his left breast. It was Speranski. Prince Andrew recognized him at once, and felt a throb within him, as happens at critical moments of life. Whether it was from respect, envy, or anticipation, he did not know. Speranski's whole figure was of a peculiar type that made him easily recognizable. In the society in which Prince Andrew lived he had never seen anyone who together with awkward and clumsy gestures possessed such calmness and self-assurance; he had never seen so resolute yet gentle an expression as that in those half-closed, rather humid eyes, or so firm a smile that expressed nothing; nor had he heard such a refined, smooth, soft voice; above all he had never seen such delicate whiteness of face or hands--hands which were broad, but very plump, soft, and white. Such whiteness and softness Prince Andrew had only seen on the faces of soldiers who had been long in hospital. This was Speranski, Secretary of State, reporter to the Emperor and his companion at Erfurt, where he had more than once met and talked with Napoleon. Speranski did not shift his eyes from one face to another as people involuntarily do on entering a large company and was in no hurry to speak. He spoke slowly, with assurance that he would be listened to, and he looked only at the person with whom he was conversing. Prince Andrew followed Speranski's every word and movement with particular attention. As happens to some people, especially to men who judge those near to them severely, he always on meeting anyone new- especially anyone whom, like Speranski, he knew by reputation- expected to discover in him the perfection of human qualities. Speranski told Kochubey he was sorry he had been unable to come sooner as he had been detained at the palace. He did not say that the Emperor had kept him, and Prince Andrew noticed this affectation of modesty. When Kochubey introduced Prince Andrew, Speranski slowly turned his eyes to Bolkonski with his customary smile and looked at him in silence. "I am very glad to make your acquaintance. I had heard of you, as everyone has," he said after a pause. Kochubey said a few words about the reception Arakcheev had given Bolkonski. Speranski smiled more markedly. "The chairman of the Committee on Army Regulations is my good friend Monsieur Magnitski," he said, fully articulating every word and syllable, "and if you like I can put you in touch with him." He paused at the full stop. "I hope you will find him sympathetic and ready to co-operate in promoting all that is reasonable." A circle soon formed round Speranski, and the old man who had talked about his subordinate Pryanichnikov addressed a question to him. Prince Andrew without joining in the conversation watched every movement of Speranski's: this man, not long since an insignificant divinity student, who now, Bolkonski thought, held in his hands--those plump white hands--the fate of Russia. Prince Andrew was struck by the extraordinarily disdainful composure with which Speranski answered the old man. He appeared to address condescending words to him from an immeasurable height. When the old man began to speak too loud, Speranski smiled and said he could not judge of the advantage or disadvantage of what pleased the sovereign. Having talked for a little while in the general circle, Speranski rose and coming up to Prince Andrew took him along to the other end of the room. It was clear that he thought it necessary to interest himself in Bolkonski. "I had no chance to talk with you, Prince, during the animated conversation in which that venerable gentleman involved me," he said with a mildly contemptuous smile, as if intimating by that smile that he and Prince Andrew understood the insignificance of the people with whom he had just been talking. This flattered Prince Andrew. "I have known of you for a long time: first from your action with regard to your serfs, a first example, of which it is very desirable that there should be more imitators; and secondly because you are one of those gentlemen of the chamber who have not considered themselves offended by the new decree concerning the ranks allotted to courtiers, which is causing so much gossip and tittle-tattle." "No," said Prince Andrew, "my father did not wish me to take advantage of the privilege. I began the service from the lower grade." "Your father, a man of the last century, evidently stands above our contemporaries who so condemn this measure which merely reestablishes natural justice." "I think, however, that these condemnations have some ground," returned Prince Andrew, trying to resist Speranski's influence, of which he began to be conscious. He did not like to agree with him in everything and felt a wish to contradict. Though he usually spoke easily and well, he felt a difficulty in expressing himself now while talking with Speranski. He was too much absorbed in observing the famous man's personality. "Grounds of personal ambition maybe," Speranski put in quietly. "And of state interest to some extent," said Prince Andrew. "What do you mean?" asked Speranski quietly, lowering his eyes. "I am an admirer of Montesquieu," replied Prince Andrew, "and his idea that le principe des monarchies est l'honneur me parait incontestable. Certains droits et privileges de la noblesse me paraissent etre des moyens de soutenir ce sentiment."* *"The principle of monarchies is honor seems to me incontestable. Certain rights and privileges for the aristocracy appear to me a means of maintaining that sentiment." The smile vanished from Speranski's white face, which was much improved by the change. Probably Prince Andrew's thought interested him. "Si vous envisagez la question sous ce point de vue,"* he began, pronouncing French with evident difficulty, and speaking even slower than in Russian but quite calmly. *"If you regard the question from that point of view." Speranski went on to say that honor, l'honeur, cannot be upheld by privileges harmful to the service; that honor, l'honneur, is either a negative concept of not doing what is blameworthy or it is a source of emulation in pursuit of commendation and rewards, which recognize it. His arguments were concise, simple, and clear. "An institution upholding honor, the source of emulation, is one similar to the Legion d'honneur of the great Emperor Napoleon, not harmful but helpful to the success of the service, but not a class or court privilege." "I do not dispute that, but it cannot be denied that court privileges have attained the same end," returned Prince Andrew. "Every courtier considers himself bound to maintain his position worthily." "Yet you do not care to avail yourself of the privilege, Prince," said Speranski, indicating by a smile that he wished to finish amiably an argument which was embarrassing for his companion. "If you will do me the honor of calling on me on Wednesday," he added, "I will, after talking with Magnitski, let you know what may interest you, and shall also have the pleasure of a more detailed chat with you." Closing his eyes, he bowed a la francaise, without taking leave, and trying to attract as little attention as possible, he left the room. CHAPTER VI During the first weeks of his stay in Petersburg Prince Andrew felt the whole trend of thought he had formed during his life of seclusion quite overshadowed by the trifling cares that engrossed him in that city. On returning home in the evening he would jot down in his notebook four or five necessary calls or appointments for certain hours. The mechanism of life, the arrangement of the day so as to be in time everywhere, absorbed the greater part of his vital energy. He did nothing, did not even think or find time to think, but only talked, and talked successfully, of what he had thought while in the country. He sometimes noticed with dissatisfaction that he repeated the same remark on the same day in different circles. But he was so busy for whole days together that he had no time to notice that he was thinking of nothing. As he had done on their first meeting at Kochubey's, Speranski produced a strong impression on Prince Andrew on the Wednesday, when he received him tete-a-tate at his own house and talked to him long and confidentially. To Bolkonski so many people appeared contemptible and insignificant creatures, and he so longed to find in someone the living ideal of that perfection toward which he strove, that he readily believed that in Speranski he had found this ideal of a perfectly rational and virtuous man. Had Speranski sprung from the same class as himself and possessed the same breeding and traditions, Bolkonski would soon have discovered his weak, human, unheroic sides; but as it was, Speranski's strange and logical turn of mind inspired him with respect all the more because he did not quite understand him. Moreover, Speranski, either because he appreciated the other's capacity or because he considered it necessary to win him to his side, showed off his dispassionate calm reasonableness before Prince Andrew and flattered him with that subtle flattery which goes hand in hand with self-assurance and consists in a tacit assumption that one's companion is the only man besides oneself capable of understanding the folly of the rest of mankind and the reasonableness and profundity of one's own ideas. During their long conversation on Wednesday evening, Speranski more than once remarked: "We regard everything that is above the common level of rooted custom..." or, with a smile: "But we want the wolves to be fed and the sheep to be safe..." or: "They cannot understand this..." and all in a way that seemed to say: "We, you and I, understand what they are and who we are." This first long conversation with Speranski only strengthened in Prince Andrew the feeling he had experienced toward him at their first meeting. He saw in him a remarkable, clear-thinking man of vast intellect who by his energy and persistence had attained power, which he was using solely for the welfare of Russia. In Prince Andrew's eyes Speranski was the man he would himself have wished to be--one who explained all the facts of life reasonably, considered important only what was rational, and was capable of applying the standard of reason to everything. Everything seemed so simple and clear in Speranski's exposition that Prince Andrew involuntarily agreed with him about everything. If he replied and argued, it was only because he wished to maintain his independence and not submit to Speranski's opinions entirely. Everything was right and everything was as it should be: only one thing disconcerted Prince Andrew. This was Speranski's cold, mirrorlike look, which did not allow one to penetrate to his soul, and his delicate white hands, which Prince Andrew involuntarily watched as one does watch the hands of those who possess power. This mirrorlike gaze and those delicate hands irritated Prince Andrew, he knew not why. He was unpleasantly struck, too, by the excessive contempt for others that he observed in Speranski, and by the diversity of lines of argument he used to support his opinions. He made use of every kind of mental device, except analogy, and passed too boldly, it seemed to Prince Andrew, from one to another. Now he would take up the position of a practical man and condemn dreamers; now that of a satirist, and laugh ironically at his opponents; now grow severely logical, or suddenly rise to the realm of metaphysics. (This last resource was one he very frequently employed.) He would transfer a question to metaphysical heights, pass on to definitions of space, time, and thought, and, having deduced the refutation he needed, would again descend to the level of the original discussion. In general the trait of Speranski's mentality which struck Prince Andrew most was his absolute and unshakable belief in the power and authority of reason. It was evident that the thought could never occur to him which to Prince Andrew seemed so natural, namely, that it is after all impossible to express all one thinks; and that he had never felt the doubt, "Is not all I think and believe nonsense?" And it was just this peculiarity of Speranski's mind that particularly attracted Prince Andrew. During the first period of their acquaintance Bolkonski felt a passionate admiration for him similar to that which he had once felt for Bonaparte. The fact that Speranski was the son of a village priest, and that stupid people might meanly despise him on account of his humble origin (as in fact many did), caused Prince Andrew to cherish his sentiment for him the more, and unconsciously to strengthen it. On that first evening Bolkonski spent with him, having mentioned the Commission for the Revision of the Code of Laws, Speranski told him sarcastically that the Commission had existed for a hundred and fifty years, had cost millions, and had done nothing except that Rosenkampf had stuck labels on the corresponding paragraphs of the different codes. "And that is all the state has for the millions it has spent," said he. "We want to give the Senate new juridical powers, but we have no laws. That is why it is a sin for men like you, Prince, not to serve in these times!" Prince Andrew said that for that work an education in jurisprudence was needed which he did not possess. "But nobody possesses it, so what would you have? It is a vicious circle from which we must break a way out." A week later Prince Andrew was a member of the Committee on Army Regulations and--what he had not at all expected--was chairman of a section of the committee for the revision of the laws. At Speranski's request he took the first part of the Civil Code that was being drawn up and, with the aid of the Code Napoleon and the Institutes of Justinian, he worked at formulating the section on Personal Rights. CHAPTER VII Nearly two years before this, in 1808, Pierre on returning to Petersburg after visiting his estates had involuntarily found himself in a leading position among the Petersburg Freemasons. He arranged dining and funeral lodge meetings, enrolled new members, and busied himself uniting various lodges and acquiring authentic charters. He gave money for the erection of temples and supplemented as far as he could the collection of alms, in regard to which the majority of members were stingy and irregular. He supported almost singlehanded a poorhouse the order had founded in Petersburg. His life meanwhile continued as before, with the same infatuations and dissipations. He liked to dine and drink well, and though he considered it immoral and humiliating could not resist the temptations of the bachelor circles in which he moved. Amid the turmoil of his activities and distractions, however, Pierre at the end of a year began to feel that the more firmly he tried to rest upon it, the more Masonic ground on which he stood gave way under him. At the same time he felt that the deeper the ground sank under him the closer bound he involuntarily became to the order. When he had joined the Freemasons he had experienced the feeling of one who confidently steps onto the smooth surface of a bog. When he put his foot down it sank in. To make quite sure of the firmness the ground, he put his other foot down and sank deeper still, became stuck in it, and involuntarily waded knee-deep in the bog. Joseph Alexeevich was not in Petersburg--he had of late stood aside from the affairs of the Petersburg lodges, and lived almost entirely in Moscow. All the members of the lodges were men Pierre knew in ordinary life, and it was difficult for him to regard them merely as Brothers in Freemasonry and not as Prince B. or Ivan Vasilevich D., whom he knew in society mostly as weak and insignificant men. Under the Masonic aprons and insignia he saw the uniforms and decorations at which they aimed in ordinary life. Often after collecting alms, and reckoning up twenty to thirty rubles received for the most part in promises from a dozen members, of whom half were as well able to pay as himself, Pierre remembered the Masonic vow in which each Brother promised to devote all his belongings to his neighbor, and doubts on which he tried not to dwell arose in his soul. He divided the Brothers he knew into four categories. In the first he put those who did not take an active part in the affairs of the lodges or in human affairs, but were exclusively occupied with the mystical science of the order: with questions of the threefold designation of God, the three primordial elements--sulphur, mercury, and salt--or the meaning of the square and all the various figures of the temple of Solomon. Pierre respected this class of Brothers to which the elder ones chiefly belonged, including, Pierre thought, Joseph Alexeevich himself, but he did not share their interests. His heart was not in the mystical aspect of Freemasonry. In the second category Pierre reckoned himself and others like him, seeking and vacillating, who had not yet found in Freemasonry a straight and comprehensible path, but hoped to do so. In the third category he included those Brothers (the majority) who saw nothing in Freemasonry but the external forms and ceremonies, and prized the strict performance of these forms without troubling about their purport or significance. Such were Willarski and even the Grand Master of the principal lodge. Finally, to the fourth category also a great many Brothers belonged, particularly those who had lately joined. These according to Pierre's observations were men who had no belief in anything, nor desire for anything, but joined the Freemasons merely to associate with the wealthy young Brothers who were influential through their connections or rank, and of whom there were very many in the lodge. Pierre began to feel dissatisfied with what he was doing. Freemasonry, at any rate as he saw it here, sometimes seemed to him based merely on externals. He did not think of doubting Freemasonry itself, but suspected that Russian Masonry had taken a wrong path and deviated from its original principles. And so toward the end of the year he went abroad to be initiated into the higher secrets of the order. In the summer of 1809 Pierre returned to Petersburg. Our Freemasons knew from correspondence with those abroad that Bezukhov had obtained the confidence of many highly placed persons, had been initiated into many mysteries, had been raised to a higher grade, and was bringing back with him much that might conduce to the advantage of the Masonic cause in Russia. The Petersburg Freemasons all came to see him, tried to ingratiate themselves with him, and it seemed to them all that he was preparing something for them and concealing it. A solemn meeting of the lodge of the second degree was convened, at which Pierre promised to communicate to the Petersburg Brothers what he had to deliver to them from the highest leaders of their order. The meeting was a full one. After the usual ceremonies Pierre rose and began his address. "Dear Brothers," he began, blushing and stammering, with a written speech in his hand, "it is not sufficient to observe our mysteries in the seclusion of our lodge--we must act--act! We are drowsing, but we must act." Pierre raised his notebook and began to read. "For the dissemination of pure truth and to secure the triumph of virtue," he read, "we must cleanse men from prejudice, diffuse principles in harmony with the spirit of the times, undertake the education of the young, unite ourselves in indissoluble bonds with the wisest men, boldly yet prudently overcome superstitions, infidelity, and folly, and form of those devoted to us a body linked together by unity of purpose and possessed of authority and power. "To attain this end we must secure a preponderance of virtue over vice and must endeavor to secure that the honest man may, even in this world, receive a lasting reward for his virtue. But in these great endeavors we are gravely hampered by the political institutions of today. What is to be done in these circumstances? To favor revolutions, overthrow everything, repel force by force?... No! We are very far from that. Every violent reform deserves censure, for it quite fails to remedy evil while men remain what they are, and also because wisdom needs no violence. "The whole plan of our order should be based on the idea of preparing men of firmness and virtue bound together by unity of conviction--aiming at the punishment of vice and folly, and patronizing talent and virtue: raising worthy men from the dust and attaching them to our Brotherhood. Only then will our order have the power unobtrusively to bind the hands of the protectors of disorder and to control them without their being aware of it. In a word, we must found a form of government holding universal sway, which should be diffused over the whole world without destroying the bonds of citizenship, and beside which all other governments can continue in their customary course and do everything except what impedes the great aim of our order, which is to obtain for virtue the victory over vice. This aim was that of Christianity itself. It taught men to be wise and good and for their own benefit to follow the example and instruction of the best and wisest men. "At that time, when everything was plunged in darkness, preaching alone was of course sufficient. The novelty of Truth endowed her with special strength, but now we need much more powerful methods. It is now necessary that man, governed by his senses, should find in virtue a charm palpable to those senses. It is impossible to eradicate the passions; but we must strive to direct them to a noble aim, and it is therefore necessary that everyone should be able to satisfy his passions within the limits of virtue. Our order should provide means to that end. "As soon as we have a certain number of worthy men in every state, each of them again training two others and all being closely united, everything will be possible for our order, which has already in secret accomplished much for the welfare of mankind." This speech not only made a strong impression, but created excitement in the lodge. The majority of the Brothers, seeing in it dangerous designs of Illuminism,* met it with a coldness that surprised Pierre. The Grand Master began answering him, and Pierre began developing his views with more and more warmth. It was long since there had been so stormy a meeting. Parties were formed, some accusing Pierre of Illuminism, others supporting him. At that meeting he was struck for the first time by the endless variety of men's minds, which prevents a truth from ever presenting itself identically to two persons. Even those members who seemed to be on his side understood him in their own way with limitations and alterations he could not agree to, as what he always wanted most was to convey his thought to others just as he himself understood it. *The Illuminati sought to substitute republican for monarchical institutions. At the end of the meeting the Grand Master with irony and ill-will reproved Bezukhov for his vehemence and said it was not love of virtue alone, but also a love of strife that had moved him in the dispute. Pierre did not answer him and asked briefly whether his proposal would be accepted. He was told that it would not, and without waiting for the usual formalities he left the lodge and went home. CHAPTER VIII Again Pierre was overtaken by the depression he so dreaded. For three days after the delivery of his speech at the lodge he lay on a sofa at home receiving no one and going nowhere. It was just then that he received a letter from his wife, who implored him to see her, telling him how grieved she was about him and how she wished to devote her whole life to him. At the end of the letter she informed him that in a few days she would return to Petersburg from abroad. Following this letter one of the Masonic Brothers whom Pierre respected less than the others forced his way in to see him and, turning the conversation upon Pierre's matrimonial affairs, by way of fraternal advice expressed the opinion that his severity to his wife was wrong and that he was neglecting one of the first rules of Freemasonry by not forgiving the penitent. At the same time his mother-in-law, Prince Vasili's wife, sent to him imploring him to come if only for a few minutes to discuss a most important matter. Pierre saw that there was a conspiracy against him and that they wanted to reunite him with his wife, and in the mood he then was, this was not even unpleasant to him. Nothing mattered to him. Nothing in life seemed to him of much importance, and under the influence of the depression that possessed him he valued neither his liberty nor his resolution to punish his wife. "No one is right and no one is to blame; so she too is not to blame," he thought. If he did not at once give his consent to a reunion with his wife, it was only because in his state of depression he did not feel able to take any step. Had his wife come to him, he would not have turned her away. Compared to what preoccupied him, was it not a matter of indifference whether he lived with his wife or not? Without replying either to his wife or his mother-in-law, Pierre late one night prepared for a journey and started for Moscow to see Joseph Alexeevich. This is what he noted in his diary: Moscow, 17th November I have just returned from my benefactor, and hasten to write down what I have experienced. Joseph Alexeevich is living poorly and has for three years been suffering from a painful disease of the bladder. No one has ever heard him utter a groan or a word of complaint. From morning till late at night, except when he eats his very plain food, he is working at science. He received me graciously and made me sit down on the bed on which he lay. I made the sign of the Knights of the East and of Jerusalem, and he responded in the same manner, asking me with a mild smile what I had learned and gained in the Prussian and Scottish lodges. I told him everything as best I could, and told him what I had proposed to our Petersburg lodge, of the bad reception I had encountered, and of my rupture with the Brothers. Joseph Alexeevich, having remained silent and thoughtful for a good while, told me his view of the matter, which at once lit up for me my whole past and the future path I should follow. He surprised me by asking whether I remembered the threefold aim of the order: (1) The preservation and study of the mystery. (2) The purification and reformation of oneself for its reception, and (3) The improvement of the human race by striving for such purification. Which is the principal aim of these three? Certainly self-reformation and self-purification. Only to this aim can we always strive independently of circumstances. But at the same time just this aim demands the greatest efforts of us; and so, led astray by pride, losing sight of this aim, we occupy ourselves either with the mystery which in our impurity we are unworthy to receive, or seek the reformation of the human race while ourselves setting an example of baseness and profligacy. Illuminism is not a pure doctrine, just because it is attracted by social activity and puffed up by pride. On this ground Joseph Alexeevich condemned my speech and my whole activity, and in the depth of my soul I agreed with him. Talking of my family affairs he said to me, "the chief duty of a true Mason, as I have told you, lies in perfecting himself. We often think that by removing all the difficulties of our life we shall more quickly reach our aim, but on the contrary, my dear sir, it is only in the midst of worldly cares that we can attain our three chief aims: (1) Self-knowledge--for man can only know himself by comparison, (2) Self-perfecting, which can only be attained by conflict, and (3) The attainment of the chief virtue--love of death. Only the vicissitudes of life can show us its vanity and develop our innate love of death or of rebirth to a new life." These words are all the more remarkable because, in spite of his great physical sufferings, Joseph Alexeevich is never weary of life though he loves death, for which--in spite of the purity and loftiness of his inner man--he does not yet feel himself sufficiently prepared. My benefactor then explained to me fully the meaning of the Great Square of creation and pointed out to me that the numbers three and seven are the basis of everything. He advised me not to avoid intercourse with the Petersburg Brothers, but to take up only second-grade posts in the lodge, to try, while diverting the Brothers from pride, to turn them toward the true path self-knowledge and self-perfecting. Besides this he advised me for myself personally above all to keep a watch over myself, and to that end he gave me a notebook, the one I am now writing in and in which I will in future note down all my actions. Petersburg, 23rd November I am again living with my wife. My mother-in-law came to me in tears and said that Helene was here and that she implored me to hear her; that she was innocent and unhappy at my desertion, and much more. I knew that if I once let myself see her I should not have strength to go on refusing what she wanted. In my perplexity I did not know whose aid and advice to seek. Had my benefactor been here he would have told me what to do. I went to my room and reread Joseph Alexeevich's letters and recalled my conversations with him, and deduced from it all that I ought not to refuse a suppliant, and ought to reach a helping hand to everyone--especially to one so closely bound to me--and that I must bear my cross. But if I forgive her for the sake of doing right, then let union with her have only a spiritual aim. That is what I decided, and what I wrote to Joseph Alexeevich. I told my wife that I begged her to forget the past, to forgive me whatever wrong I may have done her, and that I had nothing to forgive. It gave me joy to tell her this. She need not know how hard it was for me to see her again. I have settled on the upper floor of this big house and am experiencing a happy feeling of regeneration. CHAPTER IX At that time, as always happens, the highest society that met at court and at the grand balls was divided into several circles, each with its own particular tone. The largest of these was the French circle of the Napoleonic alliance, the circle of Count Rumyantsev and Caulaincourt. In this group Helene, as soon as she had settled in Petersburg with her husband, took a very prominent place. She was visited by the members of the French embassy and by many belonging to that circle and noted for their intellect and polished manners. Helene had been at Erfurt during the famous meeting of the Emperors and had brought from there these connections with the Napoleonic notabilities. At Erfurt her success had been brilliant. Napoleon himself had noticed her in the theater and said of her: "C'est un superbe animal."* Her success as a beautiful and elegant woman did not surprise Pierre, for she had become even handsomer than before. What did surprise him was that during these last two years his wife had succeeded in gaining the reputation "d' une femme charmante, aussi spirituelle que belle."*[2] The distinguished Prince de Ligne wrote her eight-page letters. Bilibin saved up his epigrams to produce them in Countess Bezukhova's presence. To be received in the Countess Bezukhova's salon was regarded as a diploma of intellect. Young men read books before attending Helene's evenings, to have something to say in her salon, and secretaries of the embassy, and even ambassadors, confided diplomatic secrets to her, so that in a way Helene was a power. Pierre, who knew she was very stupid, sometimes attended, with a strange feeling of perplexity and fear, her evenings and dinner parties, where politics, poetry, and philosophy were discussed. At these parties his feelings were like those of a conjuror who always expects his trick to be found out at any moment. But whether because stupidity was just what was needed to run such a salon, or because those who were deceived found pleasure in the deception, at any rate it remained unexposed and Helene Bezukhova's reputation as a lovely and clever woman became so firmly established that she could say the emptiest and stupidest things and everybody would go into raptures over every word of hers and look for a profound meaning in it of which she herself had no conception. *"That's a superb animal." *[2] "Of a charming woman, as witty as she is lovely." Pierre was just the husband needed for a brilliant society woman. He was that absent-minded crank, a grand seigneur husband who was in no one's way, and far from spoiling the high tone and general impression of the drawing room, he served, by the contrast he presented to her, as an advantageous background to his elegant and tactful wife. Pierre during the last two years, as a result of his continual absorption in abstract interests and his sincere contempt for all else, had acquired in his wife's circle, which did not interest him, that air of unconcern, indifference, and benevolence toward all, which cannot be acquired artificially and therefore inspires involuntary respect. He entered his wife's drawing room as one enters a theater, was acquainted with everybody, equally pleased to see everyone, and equally indifferent to them all. Sometimes he joined in a conversation which interested him and, regardless of whether any "gentlemen of the embassy" were present or not, lispingly expressed his views, which were sometimes not at all in accord with the accepted tone of the moment. But the general opinion concerning the queer husband of "the most distinguished woman in Petersburg" was so well established that no one took his freaks seriously. Among the many young men who frequented her house every day, Boris Drubetskoy, who had already achieved great success in the service, was the most intimate friend of the Bezukhov household since Helene's return from Erfurt. Helene spoke of him as "mon page" and treated him like a child. Her smile for him was the same as for everybody, but sometimes that smile made Pierre uncomfortable. Toward him Boris behaved with a particularly dignified and sad deference. This shade of deference also disturbed Pierre. He had suffered so painfully three years before from the mortification to which his wife had subjected him that he now protected himself from the danger of its repetition, first by not being a husband to his wife, and secondly by not allowing himself to suspect. "No, now that she has become a bluestocking she has finally renounced her former infatuations," he told himself. "There has never been an instance of a bluestocking being carried away by affairs of the heart"--a statement which, though gathered from an unknown source, he believed implicitly. Yet strange to say Boris' presence in his wife's drawing room (and he was almost always there) had a physical effect upon Pierre; it constricted his limbs and destroyed the unconsciousness and freedom of his movements. "What a strange antipathy," thought Pierre, "yet I used to like him very much." In the eyes of the world Pierre was a great gentleman, the rather blind and absurd husband of a distinguished wife, a clever crank who did nothing but harmed nobody and was a first-rate, good-natured fellow. But a complex and difficult process of internal development was taking place all this time in Pierre's soul, revealing much to him and causing him many spiritual doubts and joys. CHAPTER X Pierre went on with his diary, and this is what he wrote in it during that time: 24th November Got up at eight, read the Scriptures, then went to my duties. [By Joseph Alexeevich's advice Pierre had entered the service of the state and served on one of the committees.] Returned home for dinner and dined alone--the countess had many visitors I do not like. I ate and drank moderately and after dinner copied out some passages for the Brothers. In the evening I went down to the countess and told a funny story about B., and only remembered that I ought not to have done so when everybody laughed loudly at it. I am going to bed with a happy and tranquil mind. Great God, help me to walk in Thy paths, (1) to conquer anger by calmness and deliberation, (2) to vanquish lust by self-restraint and repulsion, (3) to withdraw from worldliness, but not avoid (a) the service of the state, (b) family duties, (c) relations with my friends, and the management of my affairs. 27th November I got up late. On waking I lay long in bed yielding to sloth. O God, help and strengthen me that I may walk in Thy ways! Read the Scriptures, but without proper feeling. Brother Urusov came and we talked about worldly vanities. He told me of the Emperor's new projects. I began to criticize them, but remembered my rules and my benefactor's words--that a true Freemason should be a zealous worker for the state when his aid is required and a quiet onlooker when not called on to assist. My tongue is my enemy. Brothers G. V. and O. visited me and we had a preliminary talk about the reception of a new Brother. They laid on me the duty of Rhetor. I feel myself weak and unworthy. Then our talk turned to the interpretation of the seven pillars and steps of the Temple, the seven sciences, the seven virtues, the seven vices, and the seven gifts of the Holy Spirit. Brother O. was very eloquent. In the evening the admission took place. The new decoration of the Premises contributed much to the magnificence of the spectacle. It was Boris Drubetskoy who was admitted. I nominated him and was the Rhetor. A strange feeling agitated me all the time I was alone with him in the dark chamber. I caught myself harboring a feeling of hatred toward him which I vainly tried to overcome. That is why I should really like to save him from evil and lead him into the path of truth, but evil thoughts of him did not leave me. It seemed to me that his object in entering the Brotherhood was merely to be intimate and in favor with members of our lodge. Apart from the fact that he had asked me several times whether N. and S. were members of our lodge (a question to which I could not reply) and that according to my observation he is incapable of feeling respect for our holy order and is too preoccupied and satisfied with the outer man to desire spiritual improvement, I had no cause to doubt him, but he seemed to me insincere, and all the time I stood alone with him in the dark temple it seemed to me that he was smiling contemptuously at my words, and I wished really to stab his bare breast with the sword I held to it. I could not be eloquent, nor could I frankly mention my doubts to the Brothers and to the Grand Master. Great Architect of Nature, help me to find the true path out of the labyrinth of lies! After this, three pages were left blank in the diary, and then the following was written: I have had a long and instructive talk alone with Brother V., who advised me to hold fast by brother A. Though I am unworthy, much was revealed to me. Adonai is the name of the creator of the world. Elohim is the name of the ruler of all. The third name is the name unutterable which means the All. Talks with Brother V. strengthen, refresh, and support me in the path of virtue. In his presence doubt has no place. The distinction between the poor teachings of mundane science and our sacred all-embracing teaching is clear to me. Human sciences dissect everything to comprehend it, and kill everything to examine it. In the holy science of our order all is one, all is known in its entirety and life. The Trinity--the three elements of matter--are sulphur, mercury, and salt. Sulphur is of an oily and fiery nature; in combination with salt by its fiery nature it arouses a desire in the latter by means of which it attracts mercury, seizes it, holds it, and in combination produces other bodies. Mercury is a fluid, volatile, spiritual essence. Christ, the Holy Spirit, Him!... 3rd December Awoke late, read the Scriptures but was apathetic. Afterwards went and paced up and down the large hall. I wished to meditate, but instead my imagination pictured an occurrence of four years ago, when Dolokhov, meeting me in Moscow after our duel, said he hoped I was enjoying perfect peace of mind in spite of my wife's absence. At the time I gave him no answer. Now I recalled every detail of that meeting and in my mind gave him the most malevolent and bitter replies. I recollected myself and drove away that thought only when I found myself glowing with anger, but I did not sufficiently repent. Afterwards Boris Drubetskoy came and began relating various adventures. His coming vexed me from the first, and I said something disagreeable to him. He replied. I flared up and said much that was unpleasant and even rude to him. He became silent, and I recollected myself only when it was too late. My God, I cannot get on with him at all. The cause of this is my egotism. I set myself above him and so become much worse than he, for he is lenient to my rudeness while I on the contrary nourish contempt for him. O God, grant that in his presence I may rather see my own vileness, and behave so that he too may benefit. After dinner I fell asleep and as I was drowsing off I clearly heard a voice saying in my left ear, "Thy day!" I dreamed that I was walking in the dark and was suddenly surrounded by dogs, but I went on undismayed. Suddenly a smallish dog seized my left thigh with its teeth and would not let go. I began to throttle it with my hands. Scarcely had I torn it off before another, a bigger one, began biting me. I lifted it up, but the higher I lifted it the bigger and heavier it grew. And suddenly Brother A. came and, taking my arm, led me to a building to enter which we had to pass along a narrow plank. I stepped on it, but it bent and gave way and I began to clamber up a fence which I could scarcely reach with my hands. After much effort I dragged myself up, so that my leg hung down on one side and my body on the other. I looked round and saw Brother A. standing on the fence and pointing me to a broad avenue and garden, and in the garden was a large and beautiful building. I woke up. O Lord, great Architect of Nature, help me to tear from myself these dogs--my passions especially the last, which unites in itself the strength of all the former ones, and aid me to enter that temple of virtue to a vision of which I attained in my dream. 7th December I dreamed that Joseph Alexeevich was sitting in my house, and that I was very glad and wished to entertain him. It seemed as if I chattered incessantly with other people and suddenly remembered that this could not please him, and I wished to come close to him and embrace him. But as soon as I drew near I saw that his face had changed and grown young, and he was quietly telling me something about the teaching of our order, but so softly that I could not hear it. Then it seemed that we all left the room and something strange happened. We were sitting or lying on the floor. He was telling me something, and I wished to show him my sensibility, and not listening to what he was saying I began picturing to myself the condition of my inner man and the grace of God sanctifying me. And tears came into my eyes, and I was glad he noticed this. But he looked at me with vexation and jumped up, breaking off his remarks. I felt abashed and asked whether what he had been saying did not concern me; but he did not reply, gave me a kind look, and then we suddenly found ourselves in my bedroom where there is a double bed. He lay down on the edge of it and I burned with longing to caress him and lie down too. And he said, "Tell me frankly what is your chief temptation? Do you know it? I think you know it already." Abashed by this question, I replied that sloth was my chief temptation. He shook his head incredulously; and even more abashed, I said that though I was living with my wife as he advised, I was not living with her as her husband. To this he replied that one should not deprive a wife of one's embraces and gave me to understand that that was my duty. But I replied that I should be ashamed to do it, and suddenly everything vanished. And I awoke and found in my mind the text from the Gospel: "The life was the light of men. And the light shineth in darkness; and the darkness comprehended it not." Joseph Alexeevich's face had looked young and bright. That day I received a letter from my benefactor in which he wrote about "conjugal duties." 9th December I had a dream from which I awoke with a throbbing heart. I saw that I was in Moscow in my house, in the big sitting room, and Joseph Alexeevich came in from the drawing room. I seemed to know at once that the process of regeneration had already taken place in him, and I rushed to meet him. I embraced him and kissed his hands, and he said, "Hast thou noticed that my face is different?" I looked at him, still holding him in my arms, and saw that his face was young, but that he had no hair on his head and his features were quite changed. And I said, "I should have known you had I met you by chance," and I thought to myself, "Am I telling the truth?" And suddenly I saw him lying like a dead body; then he gradually recovered and went with me into my study carrying a large book of sheets of drawing paper; I said, "I drew that," and he answered by bowing his head. I opened the book, and on all the pages there were excellent drawings. And in my dream I knew that these drawings represented the love adventures of the soul with its beloved. And on its pages I saw a beautiful representation of a maiden in transparent garments and with a transparent body, flying up to the clouds. And I seemed to know that this maiden was nothing else than a representation of the Song of Songs. And looking at those drawings I dreamed I felt that I was doing wrong, but could not tear myself away from them. Lord, help me! My God, if Thy forsaking me is Thy doing, Thy will be done; but if I am myself the cause, teach me what I should do! I shall perish of my debauchery if Thou utterly desertest me! CHAPTER XI The Rostovs' monetary affairs had not improved during the two years they had spent in the country. Though Nicholas Rostov had kept firmly to his resolution and was still serving modestly in an obscure regiment, spending comparatively little, the way of life at Otradnoe--Mitenka's management of affairs, in particular--was such that the debts inevitably increased every year. The only resource obviously presenting itself to the old count was to apply for an official post, so he had come to Petersburg to look for one and also, as he said, to let the lassies enjoy themselves for the last time. Soon after their arrival in Petersburg Berg proposed to Vera and was accepted. Though in Moscow the Rostovs belonged to the best society without themselves giving it a thought, yet in Petersburg their circle of acquaintances was a mixed and indefinite one. In Petersburg they were provincials, and the very people they had entertained in Moscow without inquiring to what set they belonged, here looked down on them. The Rostovs lived in the same hospitable way in Petersburg as in Moscow, and the most diverse people met at their suppers. Country neighbors from Otradnoe, impoverished old squires and their daughters, Peronskaya a maid of honor, Pierre Bezukhov, and the son of their district postmaster who had obtained a post in Petersburg. Among the men who very soon became frequent visitors at the Rostovs' house in Petersburg were Boris, Pierre whom the count had met in the street and dragged home with him, and Berg who spent whole days at the Rostovs' and paid the eldest daughter, Countess Vera, the attentions a young man pays when he intends to propose. Not in vain had Berg shown everybody his right hand wounded at Austerlitz and held a perfectly unnecessary sword in his left. He narrated that episode so persistently and with so important an air that everyone believed in the merit and usefulness of his deed, and he had obtained two decorations for Austerlitz. In the Finnish war he also managed to distinguish himself. He had picked up the scrap of a grenade that had killed an aide-de-camp standing near the commander in chief and had taken it to his commander. Just as he had done after Austerlitz, he related this occurrence at such length and so insistently that everyone again believed it had been necessary to do this, and he received two decorations for the Finnish war also. In 1809 he was a captain in the Guards, wore medals, and held some special lucrative posts in Petersburg. Though some skeptics smiled when told of Berg's merits, it could not be denied that he was a painstaking and brave officer, on excellent terms with his superiors, and a moral young man with a brilliant career before him and an assured position in society. Four years before, meeting a German comrade in the stalls of a Moscow theater, Berg had pointed out Vera Rostova to him and had said in German, "das soll mein Weib werden,"* and from that moment had made up his mind to marry her. Now in Petersburg, having considered the Rostovs' position and his own, he decided that the time had come to propose. *"That girl shall be my wife." Berg's proposal was at first received with a perplexity that was not flattering to him. At first it seemed strange that the son of an obscure Livonian gentleman should propose marriage to a Countess Rostova; but Berg's chief characteristic was such a naive and good natured egotism that the Rostovs involuntarily came to think it would be a good thing, since he himself was so firmly convinced that it was good, indeed excellent. Moreover, the Rostovs' affairs were seriously embarrassed, as the suitor could not but know; and above all, Vera was twenty-four, had been taken out everywhere, and though she was certainly good-looking and sensible, no one up to now had proposed to her. So they gave their consent. "You see," said Berg to his comrade, whom he called "friend" only because he knew that everyone has friends, "you see, I have considered it all, and should not marry if I had not thought it all out or if it were in any way unsuitable. But on the contrary, my papa and mamma are now provided for--I have arranged that rent for them in the Baltic Provinces--and I can live in Petersburg on my pay, and with her fortune and my good management we can get along nicely. I am not marrying for money--I consider that dishonorable--but a wife should bring her share and a husband his. I have my position in the service, she has connections and some means. In our times that is worth something, isn't it? But above all, she is a handsome, estimable girl, and she loves me..." Berg blushed and smiled. "And I love her, because her character is sensible and very good. Now the other sister, though they are the same family, is quite different--an unpleasant character and has not the same intelligence. She is so... you know?... Unpleasant... But my fiancee!... Well, you will be coming," he was going to say, "to dine," but changed his mind and said "to take tea with us," and quickly doubling up his tongue he blew a small round ring of tobacco smoke, perfectly embodying his dream of happiness. After the first feeling of perplexity aroused in the parents by Berg's proposal, the holiday tone of joyousness usual at such times took possession of the family, but the rejoicing was external and insincere. In the family's feeling toward this wedding a certain awkwardness and constraint was evident, as if they were ashamed of not having loved Vera sufficiently and of being so ready to get her off their hands. The old count felt this most. He would probably have been unable to state the cause of his embarrassment, but it resulted from the state of his affairs. He did not know at all how much he had, what his debts amounted to, or what dowry he could give Vera. When his daughters were born he had assigned to each of them, for her dowry, an estate with three hundred serfs; but one of these estates had already been sold, and the other was mortgaged and the interest so much in arrears that it would have to be sold, so that it was impossible to give it to Vera. Nor had he any money. Berg had already been engaged a month, and only a week remained before the wedding, but the count had not yet decided in his own mind the question of the dowry, nor spoken to his wife about it. At one time the count thought of giving her the Ryazan estate or of selling a forest, at another time of borrowing money on a note of hand. A few days before the wedding Berg entered the count's study early one morning and, with a pleasant smile, respectfully asked his future father-in-law to let him know what Vera's dowry would be. The count was so disconcerted by this long-foreseen inquiry that without consideration he gave the first reply that came into his head. "I like your being businesslike about it.... I like it. You shall be satisfied...." And patting Berg on the shoulder he got up, wishing to end the conversation. But Berg, smiling pleasantly, explained that if he did not know for certain how much Vera would have and did not receive at least part of the dowry in advance, he would have to break matters off. "Because, consider, Count--if I allowed myself to marry now without having definite means to maintain my wife, I should be acting badly...." The conversation ended by the count, who wished to be generous and to avoid further importunity, saying that he would give a note of hand for eighty thousand rubles. Berg smiled meekly, kissed the count on the shoulder, and said that he was very grateful, but that it was impossible for him to arrange his new life without receiving thirty thousand in ready money. "Or at least twenty thousand, Count," he added, "and then a note of hand for only sixty thousand." "Yes, yes, all right!" said the count hurriedly. "Only excuse me, my dear fellow, I'll give you twenty thousand and a note of hand for eighty thousand as well. Yes, yes! Kiss me." CHAPTER XII Natasha was sixteen and it was the year 1809, the very year to which she had counted on her fingers with Boris after they had kissed four years ago. Since then she had not seen him. Before Sonya and her mother, if Boris happened to be mentioned, she spoke quite freely of that episode as of some childish, long-forgotten matter that was not worth mentioning. But in the secret depths of her soul the question whether her engagement to Boris was a jest or an important, binding promise tormented her. Since Boris left Moscow in 1805 to join the army he had had not seen the Rostovs. He had been in Moscow several times, and had passed near Otradnoe, but had never been to see them. Sometimes it occurred to Natasha that he not wish to see her, and this conjecture was confirmed by the sad tone in which her elders spoke of him. "Nowadays old friends are not remembered," the countess would say when Boris was mentioned. Anna Mikhaylovna also had of late visited them less frequently, seemed to hold herself with particular dignity, and always spoke rapturously and gratefully of the merits of her son and the brilliant career on which he had entered. When the Rostovs came to Petersburg Boris called on them. He drove to their house in some agitation. The memory of Natasha was his most poetic recollection. But he went with the firm intention of letting her and her parents feel that the childish relations between himself and Natasha could not be binding either on her or on him. He had a brilliant position in society thanks to his intimacy with Countess Bezukhova, a brilliant position in the service thanks to the patronage of an important personage whose complete confidence he enjoyed, and he was beginning to make plans for marrying one of the richest heiresses in Petersburg, plans which might very easily be realized. When he entered the Rostovs' drawing room Natasha was in her own room. When she heard of his arrival she almost ran into the drawing room, flushed and beaming with a more than cordial smile. Boris remembered Natasha in a short dress, with dark eyes shining from under her curls and boisterous, childish laughter, as he had known her four years before; and so he was taken aback when quite a different Natasha entered, and his face expressed rapturous astonishment. This expression on his face pleased Natasha. "Well, do you recognize your little madcap playmate?" asked the countess. Boris kissed Natasha's hand and said that he was astonished at the change in her. "How handsome you have grown!" "I should think so!" replied Natasha's laughing eyes. "And is Papa older?" she asked. Natasha sat down and, without joining in Boris' conversation with the countess, silently and minutely studied her childhood's suitor. He felt the weight of that resolute and affectionate scrutiny and glanced at her occasionally. Boris' uniform, spurs, tie, and the way his hair was brushed were all comme il faut and in the latest fashion. This Natasha noticed at once. He sat rather sideways in the armchair next to the countess, arranging with his right hand the cleanest of gloves that fitted his left hand like a skin, and he spoke with a particularly refined compression of his lips about the amusements of the highest Petersburg society, recalling with mild irony old times in Moscow and Moscow acquaintances. It was not accidentally, Natasha felt, that he alluded, when speaking of the highest aristocracy, to an ambassador's ball he had attended, and to invitations he had received from N.N. and S.S. All this time Natasha sat silent, glancing up at him from under her brows. This gaze disturbed and confused Boris more and more. He looked round more frequently toward her, and broke off in what he was saying. He did not stay more than ten minutes, then rose and took his leave. The same inquisitive, challenging, and rather mocking eyes still looked at him. After his first visit Boris said to himself that Natasha attracted him just as much as ever, but that he must not yield to that feeling, because to marry her, a girl almost without fortune, would mean ruin to his career, while to renew their former relations without intending to marry her would be dishonorable. Boris made up his mind to avoid meeting Natasha, but despite that resolution he called again a few days later and began calling often and spending whole days at the Rostovs'. It seemed to him that he ought to have an explanation with Natasha and tell her that the old times must be forgotten, that in spite of everything... she could not be his wife, that he had no means, and they would never let her marry him. But he failed to do so and felt awkward about entering on such an explanation. From day to day he became more and more entangled. It seemed to her mother and Sonya that Natasha was in love with Boris as of old. She sang him his favorite songs, showed him her album, making him write in it, did not allow him to allude to the past, letting it be understood how was the present; and every day he went away in a fog, without having said what he meant to, and not knowing what he was doing or why he came, or how it would all end. He left off visiting Helene and received reproachful notes from her every day, and yet he continued to spend whole days with the Rostovs. CHAPTER XIII One night when the old countess, in nightcap and dressing jacket, without her false curls, and with her poor little knob of hair showing under her white cotton cap, knelt sighing and groaning on a rug and bowing to the ground in prayer, her door creaked and Natasha, also in a dressing jacket with slippers on her bare feet and her hair in curlpapers, ran in. The countess--her prayerful mood dispelled--looked round and frowned. She was finishing her last prayer: "Can it be that this couch will be my grave?" Natasha, flushed and eager, seeing her mother in prayer, suddenly checked her rush, half sat down, and unconsciously put out her tongue as if chiding herself. Seeing that her mother was still praying she ran on tiptoe to the bed and, rapidly slipping one little foot against the other, pushed off her slippers and jumped onto the bed the countess had feared might become her grave. This couch was high, with a feather bed and five pillows each smaller than the one below. Natasha jumped on it, sank into the feather bed, rolled over to the wall, and began snuggling up the bedclothes as she settled down, raising her knees to her chin, kicking out and laughing almost inaudibly, now covering herself up head and all, and now peeping at her mother. The countess finished her prayers and came to the bed with a stern face, but seeing, that Natasha's head was covered, she smiled in her kind, weak way. "Now then, now then!" said she. "Mamma, can we have a talk? Yes?" said Natasha. "Now, just one on your throat and another... that'll do!" And seizing her mother round the neck, she kissed her on the throat. In her behavior to her mother Natasha seemed rough, but she was so sensitive and tactful that however she clasped her mother she always managed to do it without hurting her or making her feel uncomfortable or displeased. "Well, what is it tonight?" said the mother, having arranged her pillows and waited until Natasha, after turning over a couple of times, had settled down beside her under the quilt, spread out her arms, and assumed a serious expression. These visits of Natasha's at night before the count returned from his club were one of the greatest pleasures of both mother, and daughter. "What is it tonight?--But I have to tell you..." Natasha put her hand on her mother's mouth. "About Boris... I know," she said seriously; "that's what I have come about. Don't say it--I know. No, do tell me!" and she removed her hand. "Tell me, Mamma! He's nice?" "Natasha, you are sixteen. At your age I was married. You say Boris is nice. He is very nice, and I love him like a son. But what then?... What are you thinking about? You have quite turned his head, I can see that...." As she said this the countess looked round at her daughter. Natasha was lying looking steadily straight before her at one of the mahogany sphinxes carved on the corners of the bedstead, so that the countess only saw her daughter's face in profile. That face struck her by its peculiarly serious and concentrated expression. Natasha was listening and considering. "Well, what then?" said she. "You have quite turned his head, and why? What do you want of him? You know you can't marry him." "Why not?" said Natasha, without changing her position. "Because he is young, because he is poor, because he is a relation... and because you yourself don't love him." "How do you know?" "I know. It is not right, darling!" "But if I want to..." said Natasha. "Leave off talking nonsense," said the countess. "But if I want to..." "Natasha, I am in earnest..." Natasha did not let her finish. She drew the countess' large hand to her, kissed it on the back and then on the palm, then again turned it over and began kissing first one knuckle, then the space between the knuckles, then the next knuckle, whispering, "January, February, March, April, May. Speak, Mamma, why don't you say anything? Speak!" said she, turning to her mother, who was tenderly gazing at her daughter and in that contemplation seemed to have forgotten all she had wished to say. "It won't do, my love! Not everyone will understand this friendship dating from your childish days, and to see him so intimate with you may injure you in the eyes of other young men who visit us, and above all it torments him for nothing. He may already have found a suitable and wealthy match, and now he's half crazy." "Crazy?" repeated Natasha. "I'll tell you some things about myself. I had a cousin..." "I know! Cyril Matveich... but he is old." "He was not always old. But this is what I'll do, Natasha, I'll have a talk with Boris. He need not come so often...." "Why not, if he likes to?" "Because I know it will end in nothing...." "How can you know? No, Mamma, don't speak to him! What nonsense!" said Natasha in the tone of one being deprived of her property. "Well, I won't marry, but let him come if he enjoys it and I enjoy it." Natasha smiled and looked at her mother. "Not to marry, but just so," she added. "How so, my pet?" "Just so. There's no need for me to marry him. But... just so." "Just so, just so," repeated the countess, and shaking all over, she went off into a good humored, unexpected, elderly laugh. "Don't laugh, stop!" cried Natasha. "You're shaking the whole bed! You're awfully like me, just such another giggler.... Wait..." and she seized the countess' hands and kissed a knuckle of the little finger, saying, "June," and continued, kissing, "July, August," on the other hand. "But, Mamma, is he very much in love? What do you think? Was anybody ever so much in love with you? And he's very nice, very, very nice. Only not quite my taste--he is so narrow, like the dining-room clock.... Don't you understand? Narrow, you know--gray, light gray..." "What rubbish you're talking!" said the countess. Natasha continued: "Don't you really understand? Nicholas would understand.... Bezukhov, now, is blue, dark-blue and red, and he is square." "You flirt with him too," said the countess, laughing. "No, he is a Freemason, I have found out. He is fine, dark-blue and red.... How can I explain it to you?" "Little countess!" the count's voice called from behind the door. "You're not asleep?" Natasha jumped up, snatched up her slippers, and ran barefoot to her own room. It was a long time before she could sleep. She kept thinking that no one could understand all that she understood and all there was in her. "Sonya?" she thought, glancing at that curled-up, sleeping little kitten with her enormous plait of hair. "No, how could she? She's virtuous. She fell in love with Nicholas and does not wish to know anything more. Even Mamma does not understand. It is wonderful how clever I am and how... charming she is," she went on, speaking of herself in the third person, and imagining it was some very wise man--the wisest and best of men--who was saying it of her. "There is everything, everything in her," continued this man. "She is unusually intelligent, charming... and then she is pretty, uncommonly pretty, and agile--she swims and rides splendidly... and her voice! One can really say it's a wonderful voice!" She hummed a scrap from her favorite opera by Cherubini, threw herself on her bed, laughed at the pleasant thought that she would immediately fall asleep, called Dunyasha the maid to put out the candle, and before Dunyasha had left the room had already passed into yet another happier world of dreams, where everything was as light and beautiful as in reality, and even more so because it was different. Next day the countess called Boris aside and had a talk with him, after which he ceased coming to the Rostovs'. CHAPTER XIV On the thirty-first of December, New Year's Eve, 1809 --10 an old grandee of Catherine's day was giving a ball and midnight supper. The diplomatic corps and the Emperor himself were to be present. The grandee's well-known mansion on the English Quay glittered with innumerable lights. Police were stationed at the brightly lit entrance which was carpeted with red baize, and not only gendarmes but dozens of police officers and even the police master himself stood at the porch. Carriages kept driving away and fresh ones arriving, with red-liveried footmen and footmen in plumed hats. From the carriages emerged men wearing uniforms, stars, and ribbons, while ladies in satin and ermine cautiously descended the carriage steps which were let down for them with a clatter, and then walked hurriedly and noiselessly over the baize at the entrance. Almost every time a new carriage drove up a whisper ran through the crowd and caps were doffed. "The Emperor?... No, a minister.... prince... ambassador. Don't you see the plumes?..." was whispered among the crowd. One person, better dressed than the rest, seemed to know everyone and mentioned by name the greatest dignitaries of the day. A third of the visitors had already arrived, but the Rostovs, who were to be present, were still hurrying to get dressed. There had been many discussions and preparations for this ball in the Rostov family, many fears that the invitation would not arrive, that the dresses would not be ready, or that something would not be arranged as it should be. Marya Ignatevna Peronskaya, a thin and shallow maid of honor at the court of the Dowager Empress, who was a friend and relation of the countess and piloted the provincial Rostovs in Petersburg high society, was to accompany them to the ball. They were to call for her at her house in the Taurida Gardens at ten o'clock, but it was already five minutes to ten, and the girls were not yet dressed. Natasha was going to her first grand ball. She had got up at eight that morning and had been in a fever of excitement and activity all day. All her powers since morning had been concentrated on ensuring that they all--she herself, Mamma, and Sonya--should be as well dressed as possible. Sonya and her mother put themselves entirely in her hands. The countess was to wear a claret-colored velvet dress, and the two girls white gauze over pink silk slips, with roses on their bodices and their hair dressed a la grecque. Everything essential had already been done; feet, hands, necks, and ears washed, perfumed, and powdered, as befits a ball; the openwork silk stockings and white satin shoes with ribbons were already on; the hairdressing was almost done. Sonya was finishing dressing and so was the countess, but Natasha, who had bustled about helping them all, was behindhand. She was still sitting before a looking-glass with a dressing jacket thrown over her slender shoulders. Sonya stood ready dressed in the middle of the room and, pressing the head of a pin till it hurt her dainty finger, was fixing on a last ribbon that squeaked as the pin went through it. "That's not the way, that's not the way, Sonya!" cried Natasha turning her head and clutching with both hands at her hair which the maid who was dressing it had not time to release. "That bow is not right. Come here!" Sonya sat down and Natasha pinned the ribbon on differently. "Allow me, Miss! I can't do it like that," said the maid who was holding Natasha's hair. "Oh, dear! Well then, wait. That's right, Sonya." "Aren't you ready? It is nearly ten," came the countess' voice. "Directly! Directly! And you, Mamma?" "I have only my cap to pin on." "Don't do it without me!" called Natasha. "You won't do it right." "But it's already ten." They had decided to be at the ball by half past ten, and Natasha had still to get dressed and they had to call at the Taurida Gardens. When her hair was done, Natasha, in her short petticoat from under which her dancing shoes showed, and in her mother's dressing jacket, ran up to Sonya, scrutinized her, and then ran to her mother. Turning her mother's head this way and that, she fastened on the cap and, hurriedly kissing her gray hair, ran back to the maids who were turning up the hem of her skirt. The cause of the delay was Natasha's skirt, which was too long. Two maids were turning up the hem and hurriedly biting off the ends of thread. A third with pins in her mouth was running about between the countess and Sonya, and a fourth held the whole of the gossamer garment up high on one uplifted hand. "Mavra, quicker, darling!" "Give me my thimble, Miss, from there..." "Whenever will you be ready?" asked the count coming to the door. "Here is here is some scent. Peronskaya must be tired of waiting." "It's ready, Miss," said the maid, holding up the shortened gauze dress with two fingers, and blowing and shaking something off it, as if by this to express a consciousness of the airiness and purity of what she held. Natasha began putting on the dress. "In a minute! In a minute! Don't come in, Papa!" she cried to her father as he opened the door--speaking from under the filmy skirt which still covered her whole face. Sonya slammed the door to. A minute later they let the count in. He was wearing a blue swallow-tail coat, shoes and stockings, and was perfumed and his hair pomaded. "Oh, Papa! how nice you look! Charming!" cried Natasha, as she stood in the middle of the room smoothing out the folds of the gauze. "If you please, Miss! allow me," said the maid, who on her knees was pulling the skirt straight and shifting the pins from one side of her mouth to the other with her tongue. "Say what you like," exclaimed Sonya, in a despairing voice as she looked at Natasha, "say what you like, it's still too long." Natasha stepped back to look at herself in the pier glass. The dress was too long. "Really, madam, it is not at all too long," said Mavra, crawling on her knees after her young lady. "Well, if it's too long we'll take it up... we'll tack it up in one minute," said the resolute Dunyasha taking a needle that was stuck on the front of her little shawl and, still kneeling on the floor, set to work once more. At that moment, with soft steps, the countess came in shyly, in her cap and velvet gown. "Oo-oo, my beauty!" exclaimed the count, "she looks better than any of you!" He would have embraced her but, blushing, she stepped aside fearing to be rumpled. "Mamma, your cap, more to this side," said Natasha. "I'll arrange it," and she rushed forward so that the maids who were tacking up her skirt could not move fast enough and a piece of gauze was torn off. "Oh goodness! What has happened? Really it was not my fault!" "Never mind, I'll run it up, it won't show," said Dunyasha. "What a beauty--a very queen!" said the nurse as she came to the door. "And Sonya! They are lovely!" At a quarter past ten they at last got into their carriages and started. But they had still to call at the Taurida Gardens. Peronskaya was quite ready. In spite of her age and plainness she had gone through the same process as the Rostovs, but with less flurry--for to her it was a matter of routine. Her ugly old body was washed, perfumed, and powdered in just the same way. She had washed behind her ears just as carefully, and when she entered her drawing room in her yellow dress, wearing her badge as maid of honor, her old lady's maid was as full of rapturous admiration as the Rostovs' servants had been. She praised the Rostovs' toilets. They praised her taste and toilet, and at eleven o'clock, careful of their coiffures and dresses, they settled themselves in their carriages and drove off. CHAPTER XV Natasha had not had a moment free since early morning and had not once had time to think of what lay before her. In the damp chill air and crowded closeness of the swaying carriage, she for the first time vividly imagined what was in store for her there at the ball, in those brightly lighted rooms--with music, flowers, dances, the Emperor, and all the brilliant young people of Petersburg. The prospect was so splendid that she hardly believed it would come true, so out of keeping was it with the chill darkness and closeness of the carriage. She understood all that awaited her only when, after stepping over the red baize at the entrance, she entered the hall, took off her fur cloak, and, beside Sonya and in front of her mother, mounted the brightly illuminated stairs between the flowers. Only then did she remember how she must behave at a ball, and tried to assume the majestic air she considered indispensable for a girl on such an occasion. But, fortunately for her, she felt her eyes growing misty, she saw nothing clearly, her pulse beat a hundred to the minute, and the blood throbbed at her heart. She could not assume that pose, which would have made her ridiculous, and she moved on almost fainting from excitement and trying with all her might to conceal it. And this was the very attitude that became her best. Before and behind them other visitors were entering, also talking in low tones and wearing ball dresses. The mirrors on the landing reflected ladies in white, pale-blue, and pink dresses, with diamonds and pearls on their bare necks and arms. Natasha looked in the mirrors and could not distinguish her reflection from the others. All was blended into one brilliant procession. On entering the ballroom the regular hum of voices, footsteps, and greetings deafened Natasha, and the light and glitter dazzled her still more. The host and hostess, who had already been standing at the door for half an hour repeating the same words to the various arrivals, "Charme de vous voir,"* greeted the Rostovs and Peronskaya in the same manner. *"Delighted to see you." The two girls in their white dresses, each with a rose in her black hair, both curtsied in the same way, but the hostess' eye involuntarily rested longer on the slim Natasha. She looked at her and gave her alone a special smile in addition to her usual smile as hostess. Looking at her she may have recalled the golden, irrecoverable days of her own girlhood and her own first ball. The host also followed Natasha with his eyes and asked the count which was his daughter. "Charming!" said he, kissing the tips of his fingers. In the ballroom guests stood crowding at the entrance doors awaiting the Emperor. The countess took up a position in one of the front rows of that crowd. Natasha heard and felt that several people were asking about her and looking at her. She realized that those noticing her liked her, and this observation helped to calm her. "There are some like ourselves and some worse," she thought. Peronskaya was pointing out to the countess the most important people at the ball. "That is the Dutch ambassador, do you see? That gray-haired man," she said, indicating an old man with a profusion of silver-gray curly hair, who was surrounded by ladies laughing at something he said. "Ah, here she is, the Queen of Petersburg, Countess Bezukhova," said Peronskaya, indicating Helene who had just entered. "How lovely! She is quite equal to Marya Antonovna. See how the men, young and old, pay court to her. Beautiful and clever... they say Prince--is quite mad about her. But see, those two, though not good-looking, are even more run after." She pointed to a lady who was crossing the room followed by a very plain daughter. "She is a splendid match, a millionairess," said Peronskaya. "And look, here come her suitors." "That is Bezukhova's brother, Anatole Kuragin," she said, indicating a handsome officer of the Horse Guards who passed by them with head erect, looking at something over the heads of the ladies. "He's handsome, isn't he? I hear they will marry him to that rich girl. But your cousin, Drubetskoy, is also very attentive to her. They say she has millions. Oh yes, that's the French ambassador himself!" she replied to the countess' inquiry about Caulaincourt. "Looks as if he were a king! All the same, the French are charming, very charming. No one more charming in society. Ah, here she is! Yes, she is still the most beautiful of them all, our Marya Antonovna! And how simply she is dressed! Lovely! And that stout one in spectacles is the universal Freemason," she went on, indicating Pierre. "Put him beside his wife and he looks a regular buffoon!" Pierre, swaying his stout body, advanced, making way through the crowd and nodding to right and left as casually and good-naturedly as if he were passing through a crowd at a fair. He pushed through, evidently looking for someone. Natasha looked joyfully at the familiar face of Pierre, "the buffoon," as Peronskaya had called him, and knew he was looking for them, and for her in particular. He had promised to be at the ball and introduce partners to her. But before he reached them Pierre stopped beside a very handsome, dark man of middle height, and in a white uniform, who stood by a window talking to a tall man wearing stars and a ribbon. Natasha at once recognized the shorter and younger man in the white uniform: it was Bolkonski, who seemed to her to have grown much younger, happier, and better-looking. "There's someone else we know--Bolkonski, do you see, Mamma?" said Natasha, pointing out Prince Andrew. "You remember, he stayed a night with us at Otradnoe." "Oh, you know him?" said Peronskaya. "I can't bear him. Il fait a present la pluie et le beau temps.* He's too proud for anything. Takes after his father. And he's hand in glove with Speranski, writing some project or other. Just look how he treats the ladies! There's one talking to him and he has turned away," she said, pointing at him. "I'd give it to him if he treated me as he does those ladies." *"He is all the rage just now. CHAPTER XVI Suddenly everybody stirred, began talking, and pressed forward and then back, and between the two rows, which separated, the Emperor entered to the sounds of music that had immediately struck up. Behind him walked his host and hostess. He walked in rapidly, bowing to right and left as if anxious to get the first moments of the reception over. The band played the polonaise in vogue at that time on account of the words that had been set to it, beginning: "Alexander, Elisaveta, all our hearts you ravish quite..." The Emperor passed on to the drawing room, the crowd made a rush for the doors, and several persons with excited faces hurried there and back again. Then the crowd hastily retired from the drawing-room door, at which the Emperor reappeared talking to the hostess. A young man, looking distraught, pounced down on the ladies, asking them to move aside. Some ladies, with faces betraying complete forgetfulness of all the rules of decorum, pushed forward to the detriment of their toilets. The men began to choose partners and take their places for the polonaise. Everyone moved back, and the Emperor came smiling out of the drawing room leading his hostess by the hand but not keeping time to the music. The host followed with Marya Antonovna Naryshkina; then came ambassadors, ministers, and various generals, whom Peronskaya diligently named. More than half the ladies already had partners and were taking up, or preparing to take up, their positions for the polonaise. Natasha felt that she would be left with her mother and Sonya among a minority of women who crowded near the wall, not having been invited to dance. She stood with her slender arms hanging down, her scarcely defined bosom rising and falling regularly, and with bated breath and glittering, frightened eyes gazed straight before her, evidently prepared for the height of joy or misery. She was not concerned about the Emperor or any of those great people whom Peronskaya was pointing out--she had but one thought: "Is it possible no one will ask me, that I shall not be among the first to dance? Is it possible that not one of all these men will notice me? They do not even seem to see me, or if they do they look as if they were saying, 'Ah, she's not the one I'm after, so it's not worth looking at her!' No, it's impossible," she thought. "They must know how I long to dance, how splendidly I dance, and how they would enjoy dancing with me." The strains of the polonaise, which had continued for a considerable time, had begun to sound like a sad reminiscence to Natasha's ears. She wanted to cry. Peronskaya had left them. The count was at the other end of the room. She and the countess and Sonya were standing by themselves as in the depths of a forest amid that crowd of strangers, with no one interested in them and not wanted by anyone. Prince Andrew with a lady passed by, evidently not recognizing them. The handsome Anatole was smilingly talking to a partner on his arm and looked at Natasha as one looks at a wall. Boris passed them twice and each time turned away. Berg and his wife, who were not dancing, came up to them. This family gathering seemed humiliating to Natasha--as if there were nowhere else for the family to talk but here at the ball. She did not listen to or look at Vera, who was telling her something about her own green dress. At last the Emperor stopped beside his last partner (he had danced with three) and the music ceased. A worried aide-de-camp ran up to the Rostovs requesting them to stand farther back, though as it was they were already close to the wall, and from the gallery resounded the distinct, precise, enticingly rhythmical strains of a waltz. The Emperor looked smilingly down the room. A minute passed but no one had yet begun dancing. An aide-de-camp, the Master of Ceremonies, went up to Countess Bezukhova and asked her to dance. She smilingly raised her hand and laid it on his shoulder without looking at him. The aide-de-camp, an adept in his art, grasping his partner firmly round her waist, with confident deliberation started smoothly, gliding first round the edge of the circle, then at the corner of the room he caught Helene's left hand and turned her, the only sound audible, apart from the ever-quickening music, being the rhythmic click of the spurs on his rapid, agile feet, while at every third beat his partner's velvet dress spread out and seemed to flash as she whirled round. Natasha gazed at them and was ready to cry because it was not she who was dancing that first turn of the waltz. Prince Andrew, in the white uniform of a cavalry colonel, wearing stockings and dancing shoes, stood looking animated and bright in the front row of the circle not far from the Rostovs. Baron Firhoff was talking to him about the first sitting of the Council of State to be held next day. Prince Andrew, as one closely connected with Speranski and participating in the work of the legislative commission, could give reliable information about that sitting, concerning which various rumors were current. But not listening to what Firhoff was saying, he was gazing now at the sovereign and now at the men intending to dance who had not yet gathered courage to enter the circle. Prince Andrew was watching these men abashed by the Emperor's presence, and the women who were breathlessly longing to be asked to dance. Pierre came up to him and caught him by the arm. "You always dance. I have a protegee, the young Rostova, here. Ask her," he said. "Where is she?" asked Bolkonski. "Excuse me!" he added, turning to the baron, "we will finish this conversation elsewhere--at a ball one must dance." He stepped forward in the direction Pierre indicated. The despairing, dejected expression of Natasha's face caught his eye. He recognized her, guessed her feelings, saw that it was her debut, remembered her conversation at the window, and with an expression of pleasure on his face approached Countess Rostova. "Allow me to introduce you to my daughter," said the countess, with heightened color. "I have the pleasure of being already acquainted, if the countess remembers me," said Prince Andrew with a low and courteous bow quite belying Peronskaya's remarks about his rudeness, and approaching Natasha he held out his arm to grasp her waist before he had completed his invitation. He asked her to waltz. That tremulous expression on Natasha's face, prepared either for despair or rapture, suddenly brightened into a happy, grateful, childlike smile. "I have long been waiting for you," that frightened happy little girl seemed to say by the smile that replaced the threatened tears, as she raised her hand to Prince Andrew's shoulder. They were the second couple to enter the circle. Prince Andrew was one of the best dancers of his day and Natasha danced exquisitely. Her little feet in their white satin dancing shoes did their work swiftly, lightly, and independently of herself, while her face beamed with ecstatic happiness. Her slender bare arms and neck were not beautiful--compared to Helene's her shoulders looked thin and her bosom undeveloped. But Helene seemed, as it were, hardened by a varnish left by the thousands of looks that had scanned her person, while Natasha was like a girl exposed for the first time, who would have felt very much ashamed had she not been assured that this was absolutely necessary. Prince Andrew liked dancing, and wishing to escape as quickly as possible from the political and clever talk which everyone addressed to him, wishing also to break up the circle of restraint he disliked, caused by the Emperor's presence, he danced, and had chosen Natasha because Pierre pointed her out to him and because she was the first pretty girl who caught his eye; but scarcely had he embraced that slender supple figure and felt her stirring so close to him and smiling so near him than the wine of her charm rose to his head, and he felt himself revived and rejuvenated when after leaving her he stood breathing deeply and watching the other dancers. CHAPTER XVII After Prince Andrew, Boris came up to ask Natasha for dance, and then the aide-de-camp who had opened the ball, and several other young men, so that, flushed and happy, and passing on her superfluous partners to Sonya, she did not cease dancing all the evening. She noticed and saw nothing of what occupied everyone else. Not only did she fail to notice that the Emperor talked a long time with the French ambassador, and how particularly gracious he was to a certain lady, or that Prince So-and-so and So-and-so did and said this and that, and that Helene had great success and was honored was by the special attention of So-and-so, but she did not even see the Emperor, and only noticed that he had gone because the ball became livelier after his departure. For one of the merry cotillions before supper Prince Andrew was again her partner. He reminded her of their first encounter in the Otradnoe avenue, and how she had been unable to sleep that moonlight night, and told her how he had involuntarily overheard her. Natasha blushed at that recollection and tried to excuse herself, as if there had been something to be ashamed of in what Prince Andrew had overheard. Like all men who have grown up in society, Prince Andrew liked meeting someone there not of the conventional society stamp. And such was Natasha, with her surprise, her delight, her shyness, and even her mistakes in speaking French. With her he behaved with special care and tenderness, sitting beside her and talking of the simplest and most unimportant matters; he admired her shy grace. In the middle of the cotillion, having completed one of the figures, Natasha, still out of breath, was returning to her seat when another dancer chose her. She was tired and panting and evidently thought of declining, but immediately put her hand gaily on the man's shoulder, smiling at Prince Andrew. "I'd be glad to sit beside you and rest: I'm tired; but you see how they keep asking me, and I'm glad of it, I'm happy and I love everybody, and you and I understand it all," and much, much more was said in her smile. When her partner left her Natasha ran across the room to choose two ladies for the figure. "If she goes to her cousin first and then to another lady, she will be my wife," said Prince Andrew to himself quite to his own surprise, as he watched her. She did go first to her cousin. "What rubbish sometimes enters one's head!" thought Prince Andrew, "but what is certain is that that girl is so charming, so original, that she won't be dancing here a month before she will be married.... Such as she are rare here," he thought, as Natasha, readjusting a rose that was slipping on her bodice, settled herself beside him. When the cotillion was over the old count in his blue coat came up to the dancers. He invited Prince Andrew to come and see them, and asked his daughter whether she was enjoying herself. Natasha did not answer at once but only looked up with a smile that said reproachfully: "How can you ask such a question?" "I have never enjoyed myself so much before!" she said, and Prince Andrew noticed how her thin arms rose quickly as if to embrace her father and instantly dropped again. Natasha was happier than she had ever been in her life. She was at that height of bliss when one becomes completely kind and good and does not believe in the possibility of evil, unhappiness, or sorrow. At that ball Pierre for the first time felt humiliated by the position his wife occupied in court circles. He was gloomy and absent-minded. A deep furrow ran across his forehead, and standing by a window he stared over his spectacles seeing no one. On her way to supper Natasha passed him. Pierre's gloomy, unhappy look struck her. She stopped in front of him. She wished to help him, to bestow on him the superabundance of her own happiness. "How delightful it is, Count!" said she. "Isn't it?" Pierre smiled absent-mindedly, evidently not grasping what she said. "Yes, I am very glad," he said. "How can people be dissatisfied with anything?" thought Natasha. "Especially such a capital fellow as Bezukhov!" In Natasha's eyes all the people at the ball alike were good, kind, and splendid people, loving one another; none of them capable of injuring another--and so they ought all to be happy. CHAPTER XVIII Next day Prince Andrew thought of the ball, but his mind did not dwell on it long. "Yes, it was a very brilliant ball," and then... "Yes, that little Rostova is very charming. There's something fresh, original, un-Petersburg-like about her that distinguishes her." That was all he thought about yesterday's ball, and after his morning tea he set to work. But either from fatigue or want of sleep he was ill-disposed for work and could get nothing done. He kept criticizing his own work, as he often did, and was glad when he heard someone coming. The visitor was Bitski, who served on various committees, frequented all the societies in Petersburg, and a passionate devotee of the new ideas and of Speranski, and a diligent Petersburg newsmonger--one of those men who choose their opinions like their clothes according to the fashion, but who for that very reason appear to be the warmest partisans. Hardly had he got rid of his hat before he ran into Prince Andrew's room with a preoccupied air and at once began talking. He had just heard particulars of that morning's sitting of the Council of State opened by the Emperor, and he spoke of it enthusiastically. The Emperor's speech had been extraordinary. It had been a speech such as only constitutional monarchs deliver. "The Sovereign plainly said that the Council and Senate are estates of the realm, he said that the government must rest not on authority but on secure bases. The Emperor said that the fiscal system must be reorganized and the accounts published," recounted Bitski, emphasizing certain words and opening his eyes significantly. "Ah, yes! Today's events mark an epoch, the greatest epoch in our history," he concluded. Prince Andrew listened to the account of the opening of the Council of State, which he had so impatiently awaited and to which he had attached such importance, and was surprised that this event, now that it had taken place, did not affect him, and even seemed quite insignificant. He listened with quiet irony to Bitski's enthusiastic account of it. A very simple thought occurred to him: "What does it matter to me or to Bitski what the Emperor was pleased to say at the Council? Can all that make me any happier or better?" And this simple reflection suddenly destroyed all the interest Prince Andrew had felt in the impending reforms. He was going to dine that evening at Speranski's, "with only a few friends," as the host had said when inviting him. The prospect of that dinner in the intimate home circle of the man he so admired had greatly interested Prince Andrew, especially as he had not yet seen Speranski in his domestic surroundings, but now he felt disinclined to go to it. At the appointed hour, however, he entered the modest house Speranski owned in the Taurida Gardens. In the parqueted dining room this small house, remarkable for its extreme cleanliness (suggesting that of a monastery), Prince Andrew, who was rather late, found the friendly gathering of Speranski's intimate acquaintances already assembled at five o'clock. There were no ladies present except Speranski's little daughter (long-faced like her father) and her governess. The other guests were Gervais, Magnitski, and Stolypin. While still in the anteroom Prince Andrew heard loud voices and a ringing staccato laugh--a laugh such as one hears on the stage. Someone--it sounded like Speranski--was distinctly ejaculating ha-ha-ha. Prince Andrew had never before heard Speranski's famous laugh, and this ringing, high pitched laughter from a statesman made a strange impression on him. He entered the dining room. The whole company were standing between two windows at a small table laid with hors-d'oeuvres. Speranski, wearing a gray swallow-tail coat with a star on the breast, and evidently still the same waistcoat and high white stock he had worn at the meeting of the Council of State, stood at the table with a beaming countenance. His guests surrounded him. Magnitski, addressing himself to Speranski, was relating an anecdote, and Speranski was laughing in advance at what Magnitski was going to say. When Prince Andrew entered the room Magnitski's words were again crowned by laughter. Stolypin gave a deep bass guffaw as he munched a piece of bread and cheese. Gervais laughed softly with a hissing chuckle, and Speranski in a high-pitched staccato manner. Still laughing, Speranski held out his soft white hand to Prince Andrew. "Very pleased to see you, Prince," he said. "One moment..." he went on, turning to Magnitski and interrupting his story. "We have agreed that this is a dinner for recreation, with not a word about business!" and turning again to the narrator he began to laugh afresh. Prince Andrew looked at the laughing Speranski with astonishment, regret, and disillusionment. It seemed to him that this was not Speranski but someone else. Everything that had formerly appeared mysterious and fascinating in Speranski suddenly became plain and unattractive. At dinner the conversation did not cease for a moment and seemed to consist of the contents of a book of funny anecdotes. Before Magnitski had finished his story someone else was anxious to relate something still funnier. Most of the anecdotes, if not relating to the state service, related to people in the service. It seemed that in this company the insignificance of those people was so definitely accepted that the only possible attitude toward them was one of good humored ridicule. Speranski related how at the Council that morning a deaf dignitary, when asked his opinion, replied that he thought so too. Gervais gave a long account of an official revision, remarkable for the stupidity of everybody concerned. Stolypin, stuttering, broke into the conversation and began excitedly talking of the abuses that existed under the former order of things--threatening to give a serious turn to the conversation. Magnitski starting quizzing Stolypin about his vehemence. Gervais intervened with a joke, and the talk reverted to its former lively tone. Evidently Speranski liked to rest after his labors and find amusement in a circle of friends, and his guests, understanding his wish, tried to enliven him and amuse themselves. But their gaiety seemed to Prince Andrew mirthless and tiresome. Speranski's high-pitched voice struck him unpleasantly, and the incessant laughter grated on him like a false note. Prince Andrew did not laugh and feared that he would be a damper on the spirits of the company, but no one took any notice of his being out of harmony with the general mood. They all seemed very gay. He tried several times to join in the conversation, but his remarks were tossed aside each time like a cork thrown out of the water, and he could not jest with them. There was nothing wrong or unseemly in what they said, it was witty and might have been funny, but it lacked just that something which is the salt of mirth, and they were not even aware that such a thing existed. After dinner Speranski's daughter and her governess rose. He patted the little girl with his white hand and kissed her. And that gesture, too, seemed unnatural to Prince Andrew. The men remained at table over their port--English fashion. In the midst of a conversation that was started about Napoleon's Spanish affairs, which they all agreed in approving, Prince Andrew began to express a contrary opinion. Speranski smiled and, with an evident wish to prevent the conversation from taking an unpleasant course, told a story that had no connection with the previous conversation. For a few moments all were silent. Having sat some time at table, Speranski corked a bottle of wine and, remarking, "Nowadays good wine rides in a carriage and pair," passed it to the servant and got up. All rose and continuing to talk loudly went into the drawing room. Two letters brought by a courier were handed to Speranski and he took them to his study. As soon as he had left the room the general merriment stopped and the guests began to converse sensibly and quietly with one another. "Now for the recitation!" said Speranski on returning from his study. "A wonderful talent!" he said to Prince Andrew, and Magnitski immediately assumed a pose and began reciting some humorous verses in French which he had composed about various well-known Petersburg people. He was interrupted several times by applause. When the verses were finished Prince Andrew went up to Speranski and took his leave. "Where are you off to so early?" asked Speranski. "I promised to go to a reception." They said no more. Prince Andrew looked closely into those mirrorlike, impenetrable eyes, and felt that it had been ridiculous of him to have expected anything from Speranski and from any of his own activities connected with him, or ever to have attributed importance to what Speranski was doing. That precise, mirthless laughter rang in Prince Andrew's ears long after he had left the house. When he reached home Prince Andrew began thinking of his life in Petersburg during those last four months as if it were something new. He recalled his exertions and solicitations, and the history of his project of army reform, which had been accepted for consideration and which they were trying to pass over in silence simply because another, a very poor one, had already been prepared and submitted to the Emperor. He thought of the meetings of a committee of which Berg was a member. He remembered how carefully and at what length everything relating to form and procedure was discussed at those meetings, and how sedulously and promptly all that related to the gist of the business was evaded. He recalled his labors on the Legal Code, and how painstakingly he had translated the articles of the Roman and French codes into Russian, and he felt ashamed of himself. Then he vividly pictured to himself Bogucharovo, his occupations in the country, his journey to Ryazan; he remembered the peasants and Dron the village elder, and mentally applying to them the Personal Rights he had divided into paragraphs, he felt astonished that he could have spent so much time on such useless work. CHAPTER XIX Next day Prince Andrew called at a few houses he had not visited before, and among them at the Rostovs' with whom he had renewed acquaintance at the ball. Apart from considerations of politeness which demanded the call, he wanted to see that original, eager girl who had left such a pleasant impression on his mind, in her own home. Natasha was one of the first to meet him. She was wearing a dark-blue house dress in which Prince Andrew thought her even prettier than in her ball dress. She and all the Rostov family welcomed him as an old friend, simply and cordially. The whole family, whom he had formerly judged severely, now seemed to him to consist of excellent, simple, and kindly people. The old count's hospitality and good nature, which struck one especially in Petersburg as a pleasant surprise, were such that Prince Andrew could not refuse to stay to dinner. "Yes," he thought, "they are capital people, who of course have not the slightest idea what a treasure they possess in Natasha; but they are kindly folk and form the best possible setting for this strikingly poetic, charming girl, overflowing with life!" In Natasha Prince Andrew was conscious of a strange world completely alien to him and brimful of joys unknown to him, a different world, that in the Otradnoe avenue and at the window that moonlight night had already begun to disconcert him. Now this world disconcerted him no longer and was no longer alien to him, but he himself having entered it found in it a new enjoyment. After dinner Natasha, at Prince Andrew's request, went to the clavichord and began singing. Prince Andrew stood by a window talking to the ladies and listened to her. In the midst of a phrase he ceased speaking and suddenly felt tears choking him, a thing he had thought impossible for him. He looked at Natasha as she sang, and something new and joyful stirred in his soul. He felt happy and at the same time sad. He had absolutely nothing to weep about yet he was ready to weep. What about? His former love? The little princess? His disillusionments?... His hopes for the future?... Yes and no. The chief reason was a sudden, vivid sense of the terrible contrast between something infinitely great and illimitable within him and that limited and material something that he, and even she, was. This contrast weighed on and yet cheered him while she sang. As soon as Natasha had finished she went up to him and asked how he liked her voice. She asked this and then became confused, feeling that she ought not to have asked it. He smiled, looking at her, and said he liked her singing as he liked everything she did. Prince Andrew left the Rostovs' late in the evening. He went to bed from habit, but soon realized that he could not sleep. Having lit his candle he sat up in bed, then got up, then lay down again not at all troubled by his sleeplessness: his soul was as fresh and joyful as if he had stepped out of a stuffy room into God's own fresh air. It did not enter his head that he was in love with Natasha; he was not thinking about her, but only picturing her to himself, and in consequence all life appeared in a new light. "Why do I strive, why do I toil in this narrow, confined frame, when life, all life with all its joys, is open to me?" said he to himself. And for the first time for a very long while he began making happy plans for the future. He decided that he must attend to his son's education by finding a tutor and putting the boy in his charge, then he ought to retire from the service and go abroad, and see England, Switzerland and Italy. "I must use my freedom while I feel so much strength and youth in me," he said to himself. "Pierre was right when he said one must believe in the possibility of happiness in order to be happy, and now I do believe in it. Let the dead bury their dead, but while one has life one must live and be happy!" thought he. CHAPTER XX One morning Colonel Berg, whom Pierre knew as he knew everybody in Moscow and Petersburg, came to see him. Berg arrived in an immaculate brand-new uniform, with his hair pomaded and brushed forward over his temples as the Emperor Alexander wore his hair. "I have just been to see the countess, your wife. Unfortunately she could not grant my request, but I hope, Count, I shall be more fortunate with you," he said with a smile. "What is it you wish, Colonel? I am at your service." "I have now quite settled in my new rooms, Count" (Berg said this with perfect conviction that this information could not but be agreeable), "and so I wish to arrange just a small party for my own and my wife's friends." (He smiled still more pleasantly.) "I wished to ask the countess and you to do me the honor of coming to tea and to supper." Only Countess Helene, considering the society of such people as the Bergs beneath her, could be cruel enough to refuse such an invitation. Berg explained so clearly why he wanted to collect at his house a small but select company, and why this would give him pleasure, and why though he grudged spending money on cards or anything harmful, he was prepared to run into some expense for the sake of good society--that Pierre could not refuse, and promised to come. "But don't be late, Count, if I may venture to ask; about ten minutes to eight, please. We shall make up a rubber. Our general is coming. He is very good to me. We shall have supper, Count. So you will do me the favor." Contrary to his habit of being late, Pierre on that day arrived at the Bergs' house, not at ten but at fifteen minutes to eight. Having prepared everything necessary for the party, the Bergs were ready for their guests' arrival. In their new, clean, and light study with its small busts and pictures and new furniture sat Berg and his wife. Berg, closely buttoned up in his new uniform, sat beside his wife explaining to her that one always could and should be acquainted with people above one, because only then does one get satisfaction from acquaintances. "You can get to know something, you can ask for something. See how I managed from my first promotion." (Berg measured his life not by years but by promotions.) "My comrades are still nobodies, while I am only waiting for a vacancy to command a regiment, and have the happiness to be your husband." (He rose and kissed Vera's hand, and on the way to her straightened out a turned-up corner of the carpet.) "And how have I obtained all this? Chiefly by knowing how to choose my aquaintances. It goes without saying that one must be conscientious and methodical." Berg smiled with a sense of his superiority over a weak woman, and paused, reflecting that this dear wife of his was after all but a weak woman who could not understand all that constitutes a man's dignity, what it was ein Mann zu sein.* Vera at the same time smiling with a sense of superiority over her good, conscientious husband, who all the same understood life wrongly, as according to Vera all men did. Berg, judging by his wife, thought all women weak and foolish. Vera, judging only by her husband and generalizing from that observation, supposed that all men, though they understand nothing and are conceited and selfish, ascribe common sense to themselves alone. *To be a man. Berg rose and embraced his wife carefully, so as not to crush her lace fichu for which he had paid a good price, kissing her straight on the lips. "The only thing is, we mustn't have children too soon," he continued, following an unconscious sequence of ideas. "Yes," answered Vera, "I don't at all want that. We must live for society." "Princess Yusupova wore one exactly like this," said Berg, pointing to the fichu with a happy and kindly smile. Just then Count Bezukhov was announced. Husband and wife glanced at one another, both smiling with self-satisfaction, and each mentally claiming the honor of this visit. "This is what what comes of knowing how to make acquaintances," thought Berg. "This is what comes of knowing how to conduct oneself." "But please don't interrupt me when I am entertaining the guests," said Vera, "because I know what interests each of them and what to say to different people." Berg smiled again. "It can't be helped: men must sometimes have masculine conversation," said he. They received Pierre in their small, new drawing-room, where it was impossible to sit down anywhere without disturbing its symmetry, neatness, and order; so it was quite comprehensible and not strange that Berg, having generously offered to disturb the symmetry of an armchair or of the sofa for his dear guest, but being apparently painfully undecided on the matter himself, eventually left the visitor to settle the question of selection. Pierre disturbed the symmetry by moving a chair for himself, and Berg and Vera immediately began their evening party, interrupting each other in their efforts to entertain their guest. Vera, having decided in her own mind that Pierre ought to be entertained with conversation about the French embassy, at once began accordingly. Berg, having decided that masculine conversation was required, interrupted his wife's remarks and touched on the question of the war with Austria, and unconsciously jumped from the general subject to personal considerations as to the proposals made him to take part in the Austrian campaign and the reasons why he had declined them. Though the conversation was very incoherent and Vera was angry at the intrusion of the masculine element, both husband and wife felt with satisfaction that, even if only one guest was present, their evening had begun very well and was as like as two peas to every other evening party with its talk, tea, and lighted candles. Before long Boris, Berg's old comrade, arrived. There was a shade of condescension and patronage in his treatment of Berg and Vera. After Boris came a lady with the colonel, then the general himself, then the Rostovs, and the party became unquestionably exactly like all other evening parties. Berg and Vera could not repress their smiles of satisfaction at the sight of all this movement in their drawing room, at the sound of the disconnected talk, the rustling of dresses, and the bowing and scraping. Everything was just as everybody always has it, especially so the general, who admired the apartment, patted Berg on the shoulder, and with parental authority superintended the setting out of the table for boston. The general sat down by Count Ilya Rostov, who was next to himself the most important guest. The old people sat with the old, the young with the young, and the hostess at the tea table, on which stood exactly the same kind of cakes in a silver cake basket as the Panins had at their party. Everything was just as it was everywhere else. CHAPTER XXI Pierre, as one of the principal guests, had to sit down to boston with Count Rostov, the general, and the colonel. At the card table he happened to be directly facing Natasha, and was struck by a curious change that had come over her since the ball. She was silent, and not only less pretty than at the ball, but only redeemed from plainness by her look of gentle indifference to everything around. "What's the matter with her?" thought Pierre, glancing at her. She was sitting by her sister at the tea table, and reluctantly, without looking at him, made some reply to Boris who sat down beside her. After playing out a whole suit and to his partner's delight taking five tricks, Pierre, hearing greetings and the steps of someone who had entered the room while he was picking up his tricks, glanced again at Natasha. "What has happened to her?" he asked himself with still greater surprise. Prince Andrew was standing before her, saying something to her with a look of tender solicitude. She, having raised her head, was looking up at him, flushed and evidently trying to master her rapid breathing. And the bright glow of some inner fire that had been suppressed was again alight in her. She was completely transformed and from a plain girl had again become what she had been at the ball. Prince Andrew went up to Pierre, and the latter noticed a new and youthful expression in his friend's face. Pierre changed places several times during the game, sitting now with his back to Natasha and now facing her, but during the whole of the six rubbers he watched her and his friend. "Something very important is happening between them," thought Pierre, and a feeling that was both joyful and painful agitated him and made him neglect the game. After six rubbers the general got up, saying that it was no use playing like that, and Pierre was released. Natasha on one side was talking with Sonya and Boris, and Vera with a subtle smile was saying something to Prince Andrew. Pierre went up to his friend and, asking whether they were talking secrets, sat down beside them. Vera, having noticed Prince Andrew's attentions to Natasha, decided that at a party, a real evening party, subtle allusions to the tender passion were absolutely necessary and, seizing a moment when Prince Andrew was alone, began a conversation with him about feelings in general and about her sister. With so intellectual a guest as she considered Prince Andrew to be, she felt that she had to employ her diplomatic tact. When Pierre went up to them he noticed that Vera was being carried away by her self-satisfied talk, but that Prince Andrew seemed embarrassed, a thing that rarely happened with him. "What do you think?" Vera was saying with an arch smile. "You are so discerning, Prince, and understand people's characters so well at a glance. What do you think of Natalie? Could she be constant in her attachments? Could she, like other women" (Vera meant herself), "love a man once for all and remain true to him forever? That is what I consider true love. What do you think, Prince?" "I know your sister too little," replied Prince Andrew, with a sarcastic smile under which he wished to hide his embarrassment, "to be able to solve so delicate a question, and then I have noticed that the less attractive a woman is the more constant she is likely to be," he added, and looked up Pierre who was just approaching them. "Yes, that is true, Prince. In our days," continued Vera--mentioning "our days" as people of limited intelligence are fond of doing, imagining that they have discovered and appraised the peculiarities of "our days" and that human characteristics change with the times--"in our days a girl has so much freedom that the pleasure of being courted often stifles real feeling in her. And it must be confessed that Natalie is very susceptible." This return to the subject of Natalie caused Prince Andrew to knit his brows with discomfort: he was about to rise, but Vera continued with a still more subtle smile: "I think no one has been more courted than she," she went on, "but till quite lately she never cared seriously for anyone. Now you know, Count," she said to Pierre, "even our dear cousin Boris, who, between ourselves, was very far gone in the land of tenderness..." (alluding to a map of love much in vogue at that time). Prince Andrew frowned and remained silent. "You are friendly with Boris, aren't you?" asked Vera. "Yes, I know him..." "I expect he has told you of his childish love for Natasha?" "Oh, there was childish love?" suddenly asked Prince Andrew, blushing unexpectedly. "Yes, you know between cousins intimacy often leads to love. Le cousinage est un dangereux voisinage.* Don't you think so?" *"Cousinhood is a dangerous neighborhood." "Oh, undoubtedly!" said Prince Andrew, and with sudden and unnatural liveliness he began chaffing Pierre about the need to be very careful with his fifty-year-old Moscow cousins, and in the midst of these jesting remarks he rose, taking Pierre by the arm, and drew him aside. "Well?" asked Pierre, seeing his friend's strange animation with surprise, and noticing the glance he turned on Natasha as he rose. "I must... I must have a talk with you," said Prince Andrew. "You know that pair of women's gloves?" (He referred to the Masonic gloves given to a newly initiated Brother to present to the woman he loved.) "I... but no, I will talk to you later on," and with a strange light in his eyes and restlessness in his movements, Prince Andrew approached Natasha and sat down beside her. Pierre saw how Prince Andrew asked her something and how she flushed as she replied. But at that moment Berg came to Pierre and began insisting that he should take part in an argument between the general and the colonel on the affairs in Spain. Berg was satisfied and happy. The smile of pleasure never left his face. The party was very successful and quite like other parties he had seen. Everything was similar: the ladies' subtle talk, the cards, the general raising his voice at the card table, and the samovar and the tea cakes; only one thing was lacking that he had always seen at the evening parties he wished to imitate. They had not yet had a loud conversation among the men and a dispute about something important and clever. Now the general had begun such a discussion and so Berg drew Pierre to it. CHAPTER XXII Next day, having been invited by the count, Prince Andrew dined with the Rostovs and spent the rest of the day there. Everyone in the house realized for whose sake Prince Andrew came, and without concealing it he tried to be with Natasha all day. Not only in the soul of the frightened yet happy and enraptured Natasha, but in the whole house, there was a feeling of awe at something important that was bound to happen. The countess looked with sad and sternly serious eyes at Prince Andrew when he talked to Natasha and timidly started some artificial conversation about trifles as soon as he looked her way. Sonya was afraid to leave Natasha and afraid of being in the way when she was with them. Natasha grew pale, in a panic of expectation, when she remained alone with him for a moment. Prince Andrew surprised her by his timidity. She felt that he wanted to say something to her but could not bring himself to do so. In the evening, when Prince Andrew had left, the countess went up to Natasha and whispered: "Well, what?" "Mamma! For heaven's sake don't ask me anything now! One can't talk about that," said Natasha. But all the same that night Natasha, now agitated and now frightened, lay a long time in her mother's bed gazing straight before her. She told her how he had complimented her, how he told her he was going abroad, asked her where they were going to spend the summer, and then how he had asked her about Boris. "But such a... such a... never happened to me before!" she said. "Only I feel afraid in his presence. I am always afraid when I'm with him. What does that mean? Does it mean that it's the real thing? Yes? Mamma, are you asleep?" "No, my love; I am frightened myself," answered her mother. "Now go!" "All the same I shan't sleep. What silliness, to sleep! Mummy! Mummy! such a thing never happened to me before," she said, surprised and alarmed at the feeling she was aware of in herself. "And could we ever have thought!..." It seemed to Natasha that even at the time she first saw Prince Andrew at Otradnoe she had fallen in love with him. It was as if she feared this strange, unexpected happiness of meeting again the very man she had then chosen (she was firmly convinced she had done so) and of finding him, as it seemed, not indifferent to her. "And it had to happen that he should come specially to Petersburg while we are here. And it had to happen that we should meet at that ball. It is fate. Clearly it is fate that everything led up to this! Already then, directly I saw him I felt something peculiar." "What else did he say to you? What are those verses? Read them..." said her mother, thoughtfully, referring to some verses Prince Andrew had written in Natasha's album. "Mamma, one need not be ashamed of his being a widower?" "Don't, Natasha! Pray to God. 'Marriages are made in heaven,'" said her mother. "Darling Mummy, how I love you! How happy I am!" cried Natasha, shedding tears of joy and excitement and embracing her mother. At that very time Prince Andrew was sitting with Pierre and telling him of his love for Natasha and his firm resolve to make her his wife. That day Countess Helene had a reception at her house. The French ambassador was there, and a foreign prince of the blood who had of late become a frequent visitor of hers, and many brilliant ladies and gentlemen. Pierre, who had come downstairs, walked through the rooms and struck everyone by his preoccupied, absent-minded, and morose air. Since the ball he had felt the approach of a fit of nervous depression and had made desperate efforts to combat it. Since the intimacy of his wife with the royal prince, Pierre had unexpectedly been made a gentleman of the bedchamber, and from that time he had begun to feel oppressed and ashamed in court society, and dark thoughts of the vanity of all things human came to him oftener than before. At the same time the feeling he had noticed between his protegee Natasha and Prince Andrew accentuated his gloom by the contrast between his own position and his friend's. He tried equally to avoid thinking about his wife, and about Natasha and Prince Andrew; and again everything seemed to him insignificant in comparison with eternity; again the question: for what? presented itself; and he forced himself to work day and night at Masonic labors, hoping to drive away the evil spirit that threatened him. Toward midnight, after he had left the countess' apartments, he was sitting upstairs in a shabby dressing gown, copying out the original transaction of the Scottish lodge of Freemasons at a table in his low room cloudy with tobacco smoke, when someone came in. It was Prince Andrew. "Ah, it's you!" said Pierre with a preoccupied, dissatisfied air. "And I, you see, am hard at it." He pointed to his manuscript book with that air of escaping from the ills of life with which unhappy people look at their work. Prince Andrew, with a beaming, ecstatic expression of renewed life on his face, paused in front of Pierre and, not noticing his sad look, smiled at him with the egotism of joy. "Well, dear heart," said he, "I wanted to tell you about it yesterday and I have come to do so today. I never experienced anything like it before. I am in love, my friend!" Suddenly Pierre heaved a deep sigh and dumped his heavy person down on the sofa beside Prince Andrew. "With Natasha Rostova, yes?" said he. "Yes, yes! Who else should it be? I should never have believed it, but the feeling is stronger than I. Yesterday I tormented myself and suffered, but I would not exchange even that torment for anything in the world, I have not lived till now. At last I live, but I can't live without her! But can she love me?... I am too old for her.... Why don't you speak?" "I? I? What did I tell you?" said Pierre suddenly, rising and beginning to pace up and down the room. "I always thought it.... That girl is such a treasure... she is a rare girl.... My dear friend, I entreat you, don't philosophize, don't doubt, marry, marry, marry.... And I am sure there will not be a happier man than you." "But what of her?" "She loves you." "Don't talk rubbish..." said Prince Andrew, smiling and looking into Pierre's eyes. "She does, I know," Pierre cried fiercely. "But do listen," returned Prince Andrew, holding him by the arm. "Do you know the condition I am in? I must talk about it to someone." "Well, go on, go on. I am very glad," said Pierre, and his face really changed, his brow became smooth, and he listened gladly to Prince Andrew. Prince Andrew seemed, and really was, quite a different, quite a new man. Where was his spleen, his contempt for life, his disillusionment? Pierre was the only person to whom he made up his mind to speak openly; and to him he told all that was in his soul. Now he boldly and lightly made plans for an extended future, said he could not sacrifice his own happiness to his father's caprice, and spoke of how he would either make his father consent to this marriage and love her, or would do without his consent; then he marveled at the feeling that had mastered him as at something strange, apart from and independent of himself. "I should not have believed anyone who told me that I was capable of such love," said Prince Andrew. "It is not at all the same feeling that I knew in the past. The whole world is now for me divided into two halves: one half is she, and there all is joy, hope, light: the other half is everything where she is not, and there is all gloom and darkness...." "Darkness and gloom," reiterated Pierre: "yes, yes, I understand that." "I cannot help loving the light, it is not my fault. And I am very happy! You understand me? I know you are glad for my sake." "Yes, yes," Pierre assented, looking at his friend with a touched and sad expression in his eyes. The brighter Prince Andrew's lot appeared to him, the gloomier seemed his own. CHAPTER XXIII Prince Andrew needed his father's consent to his marriage, and to obtain this he started for the country next day. His father received his son's communication with external composure, but inward wrath. He could not comprehend how anyone could wish to alter his life or introduce anything new into it, when his own life was already ending. "If only they would let me end my days as I want to," thought the old man, "then they might do as they please." With his son, however, he employed the diplomacy he reserved for important occasions and, adopting a quiet tone, discussed the whole matter. In the first place the marriage was not a brilliant one as regards birth, wealth, or rank. Secondly, Prince Andrew was no longer as young as he had been and his health was poor (the old man laid special stress on this), while she was very young. Thirdly, he had a son whom it would be a pity to entrust to a chit of a girl. "Fourthly and finally," the father said, looking ironically at his son, "I beg you to put it off for a year: go abroad, take a cure, look out as you wanted to for a German tutor for Prince Nicholas. Then if your love or passion or obstinacy--as you please--is still as great, marry! And that's my last word on it. Mind, the last..." concluded the prince, in a tone which showed that nothing would make him alter his decision. Prince Andrew saw clearly that the old man hoped that his feelings, or his fiancee's, would not stand a year's test, or that he (the old prince himself) would die before then, and he decided to conform to his father's wish--to propose, and postpone the wedding for a year. Three weeks after the last evening he had spent with the Rostovs, Prince Andrew returned to Petersburg. Next day after her talk with her mother Natasha expected Bolkonski all day, but he did not come. On the second and third day it was the same. Pierre did not come either and Natasha, not knowing that Prince Andrew had gone to see his father, could not explain his absence to herself. Three weeks passed in this way. Natasha had no desire to go out anywhere and wandered from room to room like a shadow, idle and listless; she wept secretly at night and did not go to her mother in the evenings. She blushed continually and was irritable. It seemed to her that everybody knew about her disappointment and was laughing at her and pitying her. Strong as was her inward grief, this wound to her vanity intensified her misery. Once she came to her mother, tried to say something, and suddenly began to cry. Her tears were those of an offended child who does not know why it is being punished. The countess began to soothe Natasha, who after first listening to her mother's words, suddenly interrupted her: "Leave off, Mamma! I don't think, and don't want to think about it! He just came and then left off, left off..." Her voice trembled, and she again nearly cried, but recovered and went on quietly: "And I don't at all want to get married. And I am afraid of him; I have now become quite calm, quite calm." The day after this conversation Natasha put on the old dress which she knew had the peculiar property of conducing to cheerfulness in the mornings, and that day she returned to the old way of life which she had abandoned since the ball. Having finished her morning tea she went to the ballroom, which she particularly liked for its loud resonance, and began singing her solfeggio. When she had finished her first exercise she stood still in the middle of the room and sang a musical phrase that particularly pleased her. She listened joyfully (as though she had not expected it) to the charm of the notes reverberating, filling the whole empty ballroom, and slowly dying away; and all at once she felt cheerful. "What's the good of making so much of it? Things are nice as it is," she said to herself, and she began walking up and down the room, not stepping simply on the resounding parquet but treading with each step from the heel to the toe (she had on a new and favorite pair of shoes) and listening to the regular tap of the heel and creak of the toe as gladly as she had to the sounds of her own voice. Passing a mirror she glanced into it. "There, that's me!" the expression of her face seemed to say as she caught sight of herself. "Well, and very nice too! I need nobody." A footman wanted to come in to clear away something in the room but she would not let him, and having closed the door behind him continued her walk. That morning she had returned to her favorite mood--love of, and delight in, herself. "How charming that Natasha is!" she said again, speaking as some third, collective, male person. "Pretty, a good voice, young, and in nobody's way if only they leave her in peace." But however much they left her in peace she could not now be at peace, and immediately felt this. In the hall the porch door opened, and someone asked, "At home?" and then footsteps were heard. Natasha was looking at the mirror, but did not see herself. She listened to the sounds in the hall. When she saw herself, her face was pale. It was he. She knew this for certain, though she hardly heard his voice through the closed doors. Pale and agitated, Natasha ran into the drawing room. "Mamma! Bolkonski has come!" she said. "Mamma, it is awful, it is unbearable! I don't want... to be tormented? What am I to do?..." Before the countess could answer, Prince Andrew entered the room with an agitated and serious face. As soon as he saw Natasha his face brightened. He kissed the countess' hand and Natasha's, and sat down beside the sofa. "It is long since we had the pleasure..." began the countess, but Prince Andrew interrupted her by answering her intended question, obviously in haste to say what he had to. "I have not been to see all this time because I have been at my father's. I had to talk over a very important matter with him. I only got back last night," he said glancing at Natasha; "I want to have a talk with you, Countess," he added after a moment's pause. The countess lowered her eyes, sighing deeply. "I am at your disposal," she murmured. Natasha knew that she ought to go away, but was unable to do so: something gripped her throat, and regardless of manners she stared straight at Prince Andrew with wide-open eyes. "At once? This instant!... No, it can't be!" she thought. Again he glanced at her, and that glance convinced her that she was not mistaken. Yes, at once, that very instant, her fate would be decided. "Go, Natasha! I will call you," said the countess in a whisper. Natasha glanced with frightened imploring eyes at Prince Andrew and at her mother and went out. "I have come, Countess, to ask for your daughter's hand," said Prince Andrew. The countess' face flushed hotly, but she said nothing. "Your offer..." she began at last sedately. He remained silent, looking into her eyes. "Your offer..." (she grew confused) "is agreeable to us, and I accept your offer. I am glad. And my husband... I hope... but it will depend on her...." "I will speak to her when I have your consent.... Do you give it to me?" said Prince Andrew. "Yes," replied the countess. She held out her hand to him, and with a mixed feeling of estrangement and tenderness pressed her lips to his forehead as he stooped to kiss her hand. She wished to love him as a son, but felt that to her he was a stranger and a terrifying man. "I am sure my husband will consent," said the countess, "but your father..." "My father, to whom I have told my plans, has made it an express condition of his consent that the wedding is not to take place for a year. And I wished to tell you of that," said Prince Andrew. "It is true that Natasha is still young, but--so long as that?..." "It is unavoidable," said Prince Andrew with a sigh. "I will send her to you," said the countess, and left the room. "Lord have mercy upon us!" she repeated while seeking her daughter. Sonya said that Natasha was in her bedroom. Natasha was sitting on the bed, pale and dry eyed, and was gazing at the icons and whispering something as she rapidly crossed herself. Seeing her mother she jumped up and flew to her. "Well, Mamma?... Well?..." "Go, go to him. He is asking for your hand," said the countess, coldly it seemed to Natasha. "Go... go," said the mother, sadly and reproachfully, with a deep sigh, as her daughter ran away. Natasha never remembered how she entered the drawing room. When she came in and saw him she paused. "Is it possible that this stranger has now become everything to me?" she asked herself, and immediately answered, "Yes, everything! He alone is now dearer to me than everything in the world." Prince Andrew came up to her with downcast eyes. "I have loved you from the very first moment I saw you. May I hope?" He looked at her and was struck by the serious impassioned expression of her face. Her face said: "Why ask? Why doubt what you cannot but know? Why speak, when words cannot express what one feels?" She drew near to him and stopped. He took her hand and kissed it. "Do you love me?" "Yes, yes!" Natasha murmured as if in vexation. Then she sighed loudly and, catching her breath more and more quickly, began to sob. "What is it? What's the matter?" "Oh, I am so happy!" she replied, smiled through her tears, bent over closer to him, paused for an instant as if asking herself whether she might, and then kissed him. Prince Andrew held her hands, looked into her eyes, and did not find in his heart his former love for her. Something in him had suddenly changed; there was no longer the former poetic and mystic charm of desire, but there was pity for her feminine and childish weakness, fear at her devotion and trustfulness, and an oppressive yet joyful sense of the duty that now bound him to her forever. The present feeling, though not so bright and poetic as the former, was stronger and more serious. "Did your mother tell you that it cannot be for a year?" asked Prince Andrew, still looking into her eyes. "Is it possible that I--the 'chit of a girl,' as everybody called me," thought Natasha--"is it possible that I am now to be the wife and the equal of this strange, dear, clever man whom even my father looks up to? Can it be true? Can it be true that there can be no more playing with life, that now I am grown up, that on me now lies a responsibility for my every word and deed? Yes, but what did he ask me?" "No," she replied, but she had not understood his question. "Forgive me!" he said. "But you are so young, and I have already been through so much in life. I am afraid for you, you do not yet know yourself." Natasha listened with concentrated attention, trying but failing to take in the meaning of his words. "Hard as this year which delays my happiness will be," continued Prince Andrew, "it will give you time to be sure of yourself. I ask you to make me happy in a year, but you are free: our engagement shall remain a secret, and should you find that you do not love me, or should you come to love..." said Prince Andrew with an unnatural smile. "Why do you say that?" Natasha interrupted him. "You know that from the very day you first came to Otradnoe I have loved you," she cried, quite convinced that she spoke the truth. "In a year you will learn to know yourself...." "A whole year!" Natasha repeated suddenly, only now realizing that the marriage was to be postponed for a year. "But why a year? Why a year?..." Prince Andrew began to explain to her the reasons for this delay. Natasha did not hear him. "And can't it be helped?" she asked. Prince Andrew did not reply, but his face expressed the impossibility of altering that decision. "It's awful! Oh, it's awful! awful!" Natasha suddenly cried, and again burst into sobs. "I shall die, waiting a year: it's impossible, it's awful!" She looked into her lover's face and saw in it a look of commiseration and perplexity. "No, no! I'll do anything!" she said, suddenly checking her tears. "I am so happy." The father and mother came into the room and gave the betrothed couple their blessing. From that day Prince Andrew began to frequent the Rostovs' as Natasha's affianced lover. CHAPTER XXIV No betrothal ceremony took place and Natasha's engagement to Bolkonski was not announced; Prince Andrew insisted on that. He said that as he was responsible for the delay he ought to bear the whole burden of it; that he had given his word and bound himself forever, but that he did not wish to bind Natasha and gave her perfect freedom. If after six months she felt that she did not love him she would have full right to reject him. Naturally neither Natasha nor her parents wished to hear of this, but Prince Andrew was firm. He came every day to the Rostovs', but did not behave to Natasha as an affianced lover: he did not use the familiar thou, but said you to her, and kissed only her hand. After their engagement, quite different, intimate, and natural relations sprang up between them. It was as if they had not known each other till now. Both liked to recall how they had regarded each other when as yet they were nothing to one another; they felt themselves now quite different beings: then they were artificial, now natural and sincere. At first the family felt some constraint in intercourse with Prince Andrew; he seemed a man from another world, and for a long time Natasha trained the family to get used to him, proudly assuring them all that he only appeared to be different, but was really just like all of them, and that she was not afraid of him and no one else ought to be. After a few days they grew accustomed to him, and without restraint in his presence pursued their usual way of life, in which he took his part. He could talk about rural economy with the count, fashions with the countess and Natasha, and about albums and fancywork with Sonya. Sometimes the household both among themselves and in his presence expressed their wonder at how it had all happened, and at the evident omens there had been of it: Prince Andrew's coming to Otradnoe and their coming to Petersburg, and the likeness between Natasha and Prince Andrew which her nurse had noticed on his first visit, and Andrew's encounter with Nicholas in 1805, and many other incidents betokening that it had to be. In the house that poetic dullness and quiet reigned which always accompanies the presence of a betrothed couple. Often when all sitting together everyone kept silent. Sometimes the others would get up and go away and the couple, left alone, still remained silent. They rarely spoke of their future life. Prince Andrew was afraid and ashamed to speak of it. Natasha shared this as she did all his feelings, which she constantly divined. Once she began questioning him about his son. Prince Andrew blushed, as he often did now--Natasha particularly liked it in him--and said that his son would not live with them. "Why not?" asked Natasha in a frightened tone. "I cannot take him away from his grandfather, and besides..." "How I should have loved him!" said Natasha, immediately guessing his thought; "but I know you wish to avoid any pretext for finding fault with us." Sometimes the old count would come up, kiss Prince Andrew, and ask his advice about Petya's education or Nicholas' service. The old countess sighed as she looked at them; Sonya was always getting frightened lest she should be in the way and tried to find excuses for leaving them alone, even when they did not wish it. When Prince Andrew spoke (he could tell a story very well), Natasha listened to him with pride; when she spoke she noticed with fear and joy that he gazed attentively and scrutinizingly at her. She asked herself in perplexity: "What does he look for in me? He is trying to discover something by looking at me! What if what he seeks in me is not there?" Sometimes she fell into one of the mad, merry moods characteristic of her, and then she particularly loved to hear and see how Prince Andrew laughed. He seldom laughed, but when he did he abandoned himself entirely to his laughter, and after such a laugh she always felt nearer to him. Natasha would have been completely happy if the thought of the separation awaiting her and drawing near had not terrified her, just as the mere thought of it made him turn pale and cold. On the eve of his departure from Petersburg Prince Andrew brought with him Pierre, who had not been to the Rostovs' once since the ball. Pierre seemed disconcerted and embarrassed. He was talking to the countess, and Natasha sat down beside a little chess table with Sonya, thereby inviting Prince Andrew to come too. He did so. "You have known Bezukhov a long time?" he asked. "Do you like him?" "Yes, he's a dear, but very absurd." And as usual when speaking of Pierre, she began to tell anecdotes of his absent-mindedness, some of which had even been invented about him. "Do you know I have entrusted him with our secret? I have known him from childhood. He has a heart of gold. I beg you, Natalie," Prince Andrew said with sudden seriousness--"I am going away and heaven knows what may happen. You may cease to... all right, I know I am not to say that. Only this, then: whatever may happen to you when I am not here..." "What can happen?" "Whatever trouble may come," Prince Andrew continued, "I beg you, Mademoiselle Sophie, whatever may happen, to turn to him alone for advice and help! He is a most absent-minded and absurd fellow, but he has a heart of gold." Neither her father, nor her mother, nor Sonya, nor Prince Andrew himself could have foreseen how the separation from her lover would act on Natasha. Flushed and agitated she went about the house all that day, dry-eyed, occupied with most trivial matters as if not understanding what awaited her. She did not even cry when, on taking leave, he kissed her hand for the last time. "Don't go!" she said in a tone that made him wonder whether he really ought not to stay and which he remembered long afterwards. Nor did she cry when he was gone; but for several days she sat in her room dry-eyed, taking no interest in anything and only saying now and then, "Oh, why did he go away?" But a fortnight after his departure, to the surprise of those around her, she recovered from her mental sickness just as suddenly and became her old self again, but with a change in her moral physiognomy, as a child gets up after a long illness with a changed expression of face. CHAPTER XXV During that year after his son's departure, Prince Nicholas Bolkonski's health and temper became much worse. He grew still more irritable, and it was Princess Mary who generally bore the brunt of his frequent fits of unprovoked anger. He seemed carefully to seek out her tender spots so as to torture her mentally as harshly as possible. Princess Mary had two passions and consequently two joys--her nephew, little Nicholas, and religion--and these were the favorite subjects of the prince's attacks and ridicule. Whatever was spoken of he would bring round to the superstitiousness of old maids, or the petting and spoiling of children. "You want to make him"--little Nicholas--"into an old maid like yourself! A pity! Prince Andrew wants a son and not an old maid," he would say. Or, turning to Mademoiselle Bourienne, he would ask her in Princess Mary's presence how she liked our village priests and icons and would joke about them. He continually hurt Princess Mary's feelings and tormented her, but it cost her no effort to forgive him. Could he be to blame toward her, or could her father, whom she knew loved her in spite of it all, be unjust? And what is justice? The princess never thought of that proud word "justice." All the complex laws of man centered for her in one clear and simple law--the law of love and self-sacrifice taught us by Him who lovingly suffered for mankind though He Himself was God. What had she to do with the justice or injustice of other people? She had to endure and love, and that she did. During the winter Prince Andrew had come to Bald Hills and had been gay, gentle, and more affectionate than Princess Mary had known him for a long time past. She felt that something had happened to him, but he said nothing to her about his love. Before he left he had a long talk with his father about something, and Princess Mary noticed that before his departure they were dissatisfied with one another. Soon after Prince Andrew had gone, Princess Mary wrote to her friend Julie Karagina in Petersburg, whom she had dreamed (as all girls dream) of marrying to her brother, and who was at that time in mourning for her own brother, killed in Turkey. Sorrow, it seems, is our common lot, my dear, tender friend Julie. Your loss is so terrible that I can only explain it to myself as a special providence of God who, loving you, wishes to try you and your excellent mother. Oh, my friend! Religion, and religion alone, can--I will not say comfort us--but save us from despair. Religion alone can explain to us what without its help man cannot comprehend: why, for what cause, kind and noble beings able to find happiness in life--not merely harming no one but necessary to the happiness of others--are called away to God, while cruel, useless, harmful persons, or such as are a burden to themselves and to others, are left living. The first death I saw, and one I shall never forget--that of my dear sister-in-law--left that impression on me. Just as you ask destiny why your splendid brother had to die, so I asked why that angel Lise, who not only never wronged anyone, but in whose soul there were never any unkind thoughts, had to die. And what do you think, dear friend? Five years have passed since then, and already I, with my petty understanding, begin to see clearly why she had to die, and in what way that death was but an expression of the infinite goodness of the Creator, whose every action, though generally incomprehensible to us, is but a manifestation of His infinite love for His creatures. Perhaps, I often think, she was too angelically innocent to have the strength to perform all a mother's duties. As a young wife she was irreproachable; perhaps she could not have been so as a mother. As it is, not only has she left us, and particularly Prince Andrew, with the purest regrets and memories, but probably she will there receive a place I dare not hope for myself. But not to speak of her alone, that early and terrible death has had the most beneficent influence on me and on my brother in spite of all our grief. Then, at the moment of our loss, these thoughts could not occur to me; I should then have dismissed them with horror, but now they are very clear and certain. I write all this to you, dear friend, only to convince you of the Gospel truth which has become for me a principle of life: not a single hair of our heads will fall without His will. And His will is governed only by infinite love for us, and so whatever befalls us is for our good. You ask whether we shall spend next winter in Moscow. In spite of my wish to see you, I do not think so and do not want to do so. You will be surprised to hear that the reason for this is Buonaparte! The case is this: my father's health is growing noticeably worse, he cannot stand any contradiction and is becoming irritable. This irritability is, as you know, chiefly directed to political questions. He cannot endure the notion that Buonaparte is negotiating on equal terms with all the sovereigns of Europe and particularly with our own, the grandson of the Great Catherine! As you know, I am quite indifferent to politics, but from my father's remarks and his talks with Michael Ivanovich I know all that goes on in the world and especially about the honors conferred on Buonaparte, who only at Bald Hills in the whole world, it seems, is not accepted as a great man, still less as Emperor of France. And my father cannot stand this. It seems to me that it is chiefly because of his political views that my father is reluctant to speak of going to Moscow; for he foresees the encounters that would result from his way of expressing his views regardless of anybody. All the benefit he might derive from a course of treatment he would lose as a result of the disputes about Buonaparte which would be inevitable. In any case it will be decided very shortly. Our family life goes on in the old way except for my brother Andrew's absence. He, as I wrote you before, has changed very much of late. After his sorrow he only this year quite recovered his spirits. He has again become as I used to know him when a child: kind, affectionate, with that heart of gold to which I know no equal. He has realized, it seems to me, that life is not over for him. But together with this mental change he has grown physically much weaker. He has become thinner and more nervous. I am anxious about him and glad he is taking this trip abroad which the doctors recommended long ago. I hope it will cure him. You write that in Petersburg he is spoken of as one of the most active, cultivated, and capable of the young men. Forgive my vanity as a relation, but I never doubted it. The good he has done to everybody here, from his peasants up to the gentry, is incalculable. On his arrival in Petersburg he received only his due. I always wonder at the way rumors fly from Petersburg to Moscow, especially such false ones as that you write about--I mean the report of my brother's betrothal to the little Rostova. I do not think my brother will ever marry again, and certainly not her; and this is why: first, I know that though he rarely speaks about the wife he has lost, the grief of that loss has gone too deep in his heart for him ever to decide to give her a successor and our little angel a stepmother. Secondly because, as far as I know, that girl is not the kind of girl who could please Prince Andrew. I do not think he would choose her for a wife, and frankly I do not wish it. But I am running on too long and am at the end of my second sheet. Good-by, my dear friend. May God keep you in His holy and mighty care. My dear friend, Mademoiselle Bourienne, sends you kisses. MARY CHAPTER XXVI In the middle of the summer Princess Mary received an unexpected letter from Prince Andrew in Switzerland in which he gave her strange and surprising news. He informed her of his engagement to Natasha Rostova. The whole letter breathed loving rapture for his betrothed and tender and confiding affection for his sister. He wrote that he had never loved as he did now and that only now did he understand and know what life was. He asked his sister to forgive him for not having told her of his resolve when he had last visited Bald Hills, though he had spoken of it to his father. He had not done so for fear Princess Mary should ask her father to give his consent, irritating him and having to bear the brunt of his displeasure without attaining her object. "Besides," he wrote, "the matter was not then so definitely settled as it is now. My father then insisted on a delay of a year and now already six months, half of that period, have passed, and my resolution is firmer than ever. If the doctors did not keep me here at the spas I should be back in Russia, but as it is I have to postpone my return for three months. You know me and my relations with Father. I want nothing from him. I have been and always shall be independent; but to go against his will and arouse his anger, now that he may perhaps remain with us such a short time, would destroy half my happiness. I am now writing to him about the same question, and beg you to choose a good moment to hand him the letter and to let me know how he looks at the whole matter and whether there is hope that he may consent to reduce the term by four months." After long hesitations, doubts, and prayers, Princess Mary gave the letter to her father. The next day the old prince said to her quietly: "Write and tell your brother to wait till I am dead.... It won't be long--I shall soon set him free." The princess was about to reply, but her father would not let her speak and, raising his voice more and more, cried: "Marry, marry, my boy!... A good family!... Clever people, eh? Rich, eh? Yes, a nice stepmother little Nicholas will have! Write and tell him that he may marry tomorrow if he likes. She will be little Nicholas' stepmother and I'll marry Bourienne!... Ha, ha, ha! He mustn't be without a stepmother either! Only one thing, no more women are wanted in my house--let him marry and live by himself. Perhaps you will go and live with him too?" he added, turning to Princess Mary. "Go in heavens name! Go out into the frost... the frost... the frost! After this outburst the prince did not speak any more about the matter. But repressed vexation at his son's poor-spirited behavior found expression in his treatment of his daughter. To his former pretexts for irony a fresh one was now added--allusions to stepmothers and amiabilities to Mademoiselle Bourienne. "Why shouldn't I marry her?" he asked his daughter. "She'll make a splendid princess!" And latterly, to her surprise and bewilderment, Princess Mary noticed that her father was really associating more and more with the Frenchwoman. She wrote to Prince Andrew about the reception of his letter, but comforted him with hopes of reconciling their father to the idea. Little Nicholas and his education, her brother Andrew, and religion were Princess Mary's joys and consolations; but besides that, since everyone must have personal hopes, Princess Mary in the profoundest depths of her heart had a hidden dream and hope that supplied the chief consolation of her life. This comforting dream and hope were given her by God's folk--the half-witted and other pilgrims who visited her without the prince's knowledge. The longer she lived, the more experience and observation she had of life, the greater was her wonder at the short-sightedness of men who seek enjoyment and happiness here on earth: toiling, suffering, struggling, and harming one another, to obtain that impossible, visionary, sinful happiness. Prince Andrew had loved his wife, she died, but that was not enough: he wanted to bind his happiness to another woman. Her father objected to this because he wanted a more distinguished and wealthier match for Andrew. And they all struggled and suffered and tormented one another and injured their souls, their eternal souls, for the attainment of benefits which endure but for an instant. Not only do we know this ourselves, but Christ, the Son of God, came down to earth and told us that this life is but for a moment and is a probation; yet we cling to it and think to find happiness in it. "How is it that no one realizes this?" thought Princess Mary. "No one except these despised God's folk who, wallet on back, come to me by the back door, afraid of being seen by the prince, not for fear of ill-usage by him but for fear of causing him to sin. To leave family, home, and all the cares of worldly welfare, in order without clinging to anything to wander in hempen rags from place to place under an assumed name, doing no one any harm but praying for all- for those who drive one away as well as for those who protect one: higher than that life and truth there is no life or truth!" There was one pilgrim, a quiet pockmarked little woman of fifty called Theodosia, who for over thirty years had gone about barefoot and worn heavy chains. Princess Mary was particularly fond of her. Once, when in a room with a lamp dimly lit before the icon Theodosia was talking of her life, the thought that Theodosia alone had found the true path of life suddenly came to Princess Mary with such force that she resolved to become a pilgrim herself. When Theodosia had gone to sleep Princess Mary thought about this for a long time, and at last made up her mind that, strange as it might seem, she must go on a pilgrimage. She disclosed this thought to no one but to her confessor, Father Akinfi, the monk, and he approved of her intention. Under guise of a present for the pilgrims, Princess Mary prepared a pilgrim's complete costume for herself: a coarse smock, bast shoes, a rough coat, and a black kerchief. Often, approaching the chest of drawers containing this secret treasure, Princess Mary paused, uncertain whether the time had not already come to put her project into execution. Often, listening to the pilgrims' tales, she was so stimulated by their simple speech, mechanical to them but to her so full of deep meaning, that several times she was on the point of abandoning everything and running away from home. In imagination she already pictured herself by Theodosia's side, dressed in coarse rags, walking with a staff, a wallet on her back, along the dusty road, directing her wanderings from one saint's shrine to another, free from envy, earthly love, or desire, and reaching at last the place where there is no more sorrow or sighing, but eternal joy and bliss. "I shall come to a place and pray there, and before having time to get used to it or getting to love it, I shall go farther. I will go on till my legs fail, and I'll lie down and die somewhere, and shall at last reach that eternal, quiet haven, where there is neither sorrow nor sighing..." thought Princess Mary. But afterwards, when she saw her father and especially little Koko (Nicholas), her resolve weakened. She wept quietly, and felt that she was a sinner who loved her father and little nephew more than God. BOOK SEVEN: 1810 --11 CHAPTER I The Bible legend tells us that the absence of labor--idleness--was a condition of the first man's blessedness before the Fall. Fallen man has retained a love of idleness, but the curse weighs on the race not only because we have to seek our bread in the sweat of our brows, but because our moral nature is such that we cannot be both idle and at ease. An inner voice tells us we are in the wrong if we are idle. If man could find a state in which he felt that though idle he was fulfilling his duty, he would have found one of the conditions of man's primitive blessedness. And such a state of obligatory and irreproachable idleness is the lot of a whole class- the military. The chief attraction of military service has consisted and will consist in this compulsory and irreproachable idleness. Nicholas Rostov experienced this blissful condition to the full when, after 1807, he continued to serve in the Pavlograd regiment, in which he already commanded the squadron he had taken over from Denisov. Rostov had become a bluff, good-natured fellow, whom his Moscow acquaintances would have considered rather bad form, but who was liked and respected by his comrades, subordinates, and superiors, and was well contented with his life. Of late, in 1809, he found in letters from home more frequent complaints from his mother that their affairs were falling into greater and greater disorder, and that it was time for him to come back to gladden and comfort his old parents. Reading these letters, Nicholas felt a dread of their wanting to take him away from surroundings in which, protected from all the entanglements of life, he was living so calmly and quietly. He felt that sooner or later he would have to re-enter that whirlpool of life, with its embarrassments and affairs to be straightened out, its accounts with stewards, quarrels, and intrigues, its ties, society, and with Sonya's love and his promise to her. It was all dreadfully difficult and complicated; and he replied to his mother in cold, formal letters in French, beginning: "My dear Mamma," and ending: "Your obedient son," which said nothing of when he would return. In 1810 he received letters from his parents, in which they told him of Natasha's engagement to Bolkonski, and that the wedding would be in a year's time because the old prince made difficulties. This letter grieved and mortified Nicholas. In the first place he was sorry that Natasha, for whom he cared more than for anyone else in the family, should be lost to the home; and secondly, from his hussar point of view, he regretted not to have been there to show that fellow Bolkonski that connection with him was no such great honor after all, and that if he loved Natasha he might dispense with permission from his dotard father. For a moment he hesitated whether he should not apply for leave in order to see Natasha before she was married, but then came the maneuvers, and considerations about Sonya and about the confusion of their affairs, and Nicholas again put it off. But in the spring of that year, he received a letter from his mother, written without his father's knowledge, and that letter persuaded him to return. She wrote that if he did not come and take matters in hand, their whole property would be sold by auction and they would all have to go begging. The count was so weak, and trusted Mitenka so much, and was so good-natured, that everybody took advantage of him and things were going from bad to worse. "For God's sake, I implore you, come at once if you do not wish to make me and the whole family wretched," wrote the countess. This letter touched Nicholas. He had that common sense of a matter-of-fact man which showed him what he ought to do. The right thing now was, if not to retire from the service, at any rate to go home on leave. Why he had to go he did not know; but after his after-dinner nap he gave orders to saddle Mars, an extremely vicious gray stallion that had not been ridden for a long time, and when he returned with the horse all in a lather, he informed Lavrushka (Denisov's servant who had remained with him) and his comrades who turned up in the evening that he was applying for leave and was going home. Difficult and strange as it was for him to reflect that he would go away without having heard from the staff--and this interested him extremely--whether he was promoted to a captaincy or would receive the Order of St. Anne for the last maneuvers; strange as it was to think that he would go away without having sold his three roans to the Polish Count Golukhovski, who was bargaining for the horses Rostov had betted he would sell for two thousand rubles; incomprehensible as it seemed that the ball the hussars were giving in honor of the Polish Mademoiselle Przazdziecka (out of rivalry to the Uhlans who had given one in honor of their Polish Mademoiselle Borzozowska) would take place without him--he knew he must go away from this good, bright world to somewhere where everything was stupid and confused. A week later he obtained his leave. His hussar comrades--not only those of his own regiment, but the whole brigade--gave Rostov a dinner to which the subscription was fifteen rubles a head, and at which there were two bands and two choirs of singers. Rostov danced the Trepak with Major Basov; the tipsy officers tossed, embraced, and dropped Rostov; the soldiers of the third squadron tossed him too, and shouted "hurrah!" and then they put him in his sleigh and escorted him as far as the first post station. During the first half of the journey--from Kremenchug to Kiev--all Rostov's thoughts, as is usual in such cases, were behind him, with the squadron; but when he had gone more than halfway he began to forget his three roans and Dozhoyveyko, his quartermaster, and to wonder anxiously how things would be at Otradnoe and what he would find there. Thoughts of home grew stronger the nearer he approached it--far stronger, as though this feeling of his was subject to the law by which the force of attraction is in inverse proportion to the square of the distance. At the last post station before Otradnoe he gave the driver a three-ruble tip, and on arriving he ran breathlessly, like a boy, up the steps of his home. After the rapture of meeting, and after that odd feeling of unsatisfied expectation--the feeling that "everything is just the same, so why did I hurry?"--Nicholas began to settle down in his old home world. His father and mother were much the same, only a little older. What was new in them was a certain uneasiness and occasional discord, which there used not to be, and which, as Nicholas soon found out, was due to the bad state of their affairs. Sonya was nearly twenty; she had stopped growing prettier and promised nothing more than she was already, but that was enough. She exhaled happiness and love from the time Nicholas returned, and the faithful, unalterable love of this girl had a gladdening effect on him. Petya and Natasha surprised Nicholas most. Petya was a big handsome boy of thirteen, merry, witty, and mischievous, with a voice that was already breaking. As for Natasha, for a long while Nicholas wondered and laughed whenever he looked at her. "You're not the same at all," he said. "How? Am I uglier?" "On the contrary, but what dignity? A princess!" he whispered to her. "Yes, yes, yes!" cried Natasha, joyfully. She told him about her romance with Prince Andrew and of his visit to Otradnoe and showed him his last letter. "Well, are you glad?" Natasha asked. "I am so tranquil and happy now." "Very glad," answered Nicholas. "He is an excellent fellow.... And are you very much in love?" "How shall I put it?" replied Natasha. "I was in love with Boris, with my teacher, and with Denisov, but this is quite different. I feel at peace and settled. I know that no better man than he exists, and I am calm and contented now. Not at all as before." Nicholas expressed his disapproval of the postponement of the marriage for a year; but Natasha attacked her brother with exasperation, proving to him that it could not be otherwise, and that it would be a bad thing to enter a family against the father's will, and that she herself wished it so. "You don't at all understand," she said. Nicholas was silent and agreed with her. Her brother often wondered as he looked at her. She did not seem at all like a girl in love and parted from her affianced husband. She was even-tempered and calm and quite as cheerful as of old. This amazed Nicholas and even made him regard Bolkonski's courtship skeptically. He could not believe that her fate was sealed, especially as he had not seen her with Prince Andrew. It always seemed to him that there was something not quite right about this intended marriage. "Why this delay? Why no betrothal?" he thought. Once, when he had touched on this topic with his mother, he discovered, to his surprise and somewhat to his satisfaction, that in the depth of her soul she too had doubts about this marriage. "You see he writes," said she, showing her son a letter of Prince Andrew's, with that latent grudge a mother always has in regard to a daughter's future married happiness, "he writes that he won't come before December. What can be keeping him? Illness, probably! His health is very delicate. Don't tell Natasha. And don't attach importance to her being so bright: that's because she's living through the last days of her girlhood, but I know what she is like every time we receive a letter from him! However, God grant that everything turns out well!" (She always ended with these words.) "He is an excellent man!" CHAPTER II After reaching home Nicholas was at first serious and even dull. He was worried by the impending necessity of interfering in the stupid business matters for which his mother had called him home. To throw off this burden as quickly as possible, on the third day after his arrival he went, angry and scowling and without answering questions as to where he was going, to Mitenka's lodge and demanded an account of everything. But what an account of everything might be Nicholas knew even less than the frightened and bewildered Mitenka. The conversation and the examination of the accounts with Mitenka did not last long. The village elder, a peasant delegate, and the village clerk, who were waiting in the passage, heard with fear and delight first the young count's voice roaring and snapping and rising louder and louder, and then words of abuse, dreadful words, ejaculated one after the other. "Robber!... Ungrateful wretch!... I'll hack the dog to pieces! I'm not my father!... Robbing us!..." and so on. Then with no less fear and delight they saw how the young count, red in the face and with bloodshot eyes, dragged Mitenka out by the scruff of the neck and applied his foot and knee to his behind with great agility at convenient moments between the words, shouting, "Be off! Never let me see your face here again, you villain!" Mitenka flew headlong down the six steps and ran away into the shrubbery. (This shrubbery was a well-known haven of refuge for culprits at Otradnoe. Mitenka himself, returning tipsy from the town, used to hide there, and many of the residents at Otradnoe, hiding from Mitenka, knew of its protective qualities.) Mitenka's wife and sisters-in-law thrust their heads and frightened faces out of the door of a room where a bright samovar was boiling and where the steward's high bedstead stood with its patchwork quilt. The young count paid no heed to them, but, breathing hard, passed by with resolute strides and went into the house. The countess, who heard at once from the maids what had happened at the lodge, was calmed by the thought that now their affairs would certainly improve, but on the other hand felt anxious as to the effect this excitement might have on her son. She went several times to his door on tiptoe and listened, as he lighted one pipe after another. Next day the old count called his son aside and, with an embarrassed smile, said to him: "But you know, my dear boy, it's a pity you got excited! Mitenka has told me all about it." "I knew," thought Nicholas, "that I should never understand anything in this crazy world." "You were angry that he had not entered those 700 rubles. But they were carried forward--and you did not look at the other page." "Papa, he is a blackguard and a thief! I know he is! And what I have done, I have done; but, if you like, I won't speak to him again." "No, my dear boy" (the count, too, felt embarrassed. He knew he had mismanaged his wife's property and was to blame toward his children, but he did not know how to remedy it). "No, I beg you to attend to the business. I am old. I..." "No, Papa. Forgive me if I have caused you unpleasantness. I understand it all less than you do." "Devil take all these peasants, and money matters, and carryings forward from page to page," he thought. "I used to understand what a 'corner' and the stakes at cards meant, but carrying forward to another page I don't understand at all," said he to himself, and after that he did not meddle in business affairs. But once the countess called her son and informed him that she had a promissory note from Anna Mikhaylovna for two thousand rubles, and asked him what he thought of doing with it. "This," answered Nicholas. "You say it rests with me. Well, I don't like Anna Mikhaylovna and I don't like Boris, but they were our friends and poor. Well then, this!" and he tore up the note, and by so doing caused the old countess to weep tears of joy. After that, young Rostov took no further part in any business affairs, but devoted himself with passionate enthusiasm to what was to him a new pursuit--the chase--for which his father kept a large establishment. CHAPTER III The weather was already growing wintry and morning frosts congealed an earth saturated by autumn rains. The verdure had thickened and its bright green stood out sharply against the brownish strips of winter rye trodden down by the cattle, and against the pale-yellow stubble of the spring buckwheat. The wooded ravines and the copses, which at the end of August had still been green islands amid black fields and stubble, had become golden and bright-red islands amid the green winter rye. The hares had already half changed their summer coats, the fox cubs were beginning to scatter, and the young wolves were bigger than dogs. It was the best time of the year for the chase. The hounds of that ardent young sportsman Rostov had not merely reached hard winter condition, but were so jaded that at a meeting of the huntsmen it was decided to give them a three days' rest and then, on the sixteenth of September, to go on a distant expedition, starting from the oak grove where there was an undisturbed litter of wolf cubs. All that day the hounds remained at home. It was frosty and the air was sharp, but toward evening the sky became overcast and it began to thaw. On the fifteenth, when young Rostov, in his dressing gown, looked out of the window, he saw it was an unsurpassable morning for hunting: it was as if the sky were melting and sinking to the earth without any wind. The only motion in the air was that of the dripping, microscopic particles of drizzling mist. The bare twigs in the garden were hung with transparent drops which fell on the freshly fallen leaves. The earth in the kitchen garden looked wet and black and glistened like poppy seed and at a short distance merged into the dull, moist veil of mist. Nicholas went out into the wet and muddy porch. There was a smell of decaying leaves and of dog. Milka, a black-spotted, broad-haunched bitch with prominent black eyes, got up on seeing her master, stretched her hind legs, lay down like a hare, and then suddenly jumped up and licked him right on his nose and mustache. Another borzoi, a dog, catching sight of his master from the garden path, arched his back and, rushing headlong toward the porch with lifted tail, began rubbing himself against his legs. "O-hoy!" came at that moment, that inimitable huntsman's call which unites the deepest bass with the shrillest tenor, and round the corner came Daniel the head huntsman and head kennelman, a gray, wrinkled old man with hair cut straight over his forehead, Ukrainian fashion, a long bent whip in his hand, and that look of independence and scorn of everything that is only seen in huntsmen. He doffed his Circassian cap to his master and looked at him scornfully. This scorn was not offensive to his master. Nicholas knew that this Daniel, disdainful of everybody and who considered himself above them, was all the same his serf and huntsman. "Daniel!" Nicholas said timidly, conscious at the sight of the weather, the hounds, and the huntsman that he was being carried away by that irresistible passion for sport which makes a man forget all his previous resolutions, as a lover forgets in the presence of his mistress. "What orders, your excellency?" said the huntsman in his deep bass, deep as a proto-deacon's and hoarse with hallooing--and two flashing black eyes gazed from under his brows at his master, who was silent. "Can you resist it?" those eyes seemed to be asking. "It's a good day, eh? For a hunt and a gallop, eh?" asked Nicholas, scratching Milka behind the ears. Daniel did not answer, but winked instead. "I sent Uvarka at dawn to listen," his bass boomed out after a minute's pause. "He says she's moved them into the Otradnoe enclosure. They were howling there." (This meant that the she-wolf, about whom they both knew, had moved with her cubs to the Otradnoe copse, a small place a mile and a half from the house.) "We ought to go, don't you think so?" said Nicholas. "Come to me with Uvarka." "As you please." "Then put off feeding them." "Yes, sir." Five minutes later Daniel and Uvarka were standing in Nicholas' big study. Though Daniel was not a big man, to see him in a room was like seeing a horse or a bear on the floor among the furniture and surroundings of human life. Daniel himself felt this, and as usual stood just inside the door, trying to speak softly and not move, for fear of breaking something in the master's apartment, and he hastened to say all that was necessary so as to get from under that ceiling, out into the open under the sky once more. Having finished his inquiries and extorted from Daniel an opinion that the hounds were fit (Daniel himself wished to go hunting), Nicholas ordered the horses to be saddled. But just as Daniel was about to go Natasha came in with rapid steps, not having done up her hair or finished dressing and with her old nurse's big shawl wrapped round her. Petya ran in at the same time. "You are going?" asked Natasha. "I knew you would! Sonya said you wouldn't go, but I knew that today is the sort of day when you couldn't help going." "Yes, we are going," replied Nicholas reluctantly, for today, as he intended to hunt seriously, he did not want to take Natasha and Petya. "We are going, but only wolf hunting: it would be dull for you." "You know it is my greatest pleasure," said Natasha. "It's not fair; you are going by yourself, are having the horses saddled and said nothing to us about it." "'No barrier bars a Russian's path'--we'll go!" shouted Petya. "But you can't. Mamma said you mustn't," said Nicholas to Natasha. "Yes, I'll go. I shall certainly go," said Natasha decisively. "Daniel, tell them to saddle for us, and Michael must come with my dogs," she added to the huntsman. It seemed to Daniel irksome and improper to be in a room at all, but to have anything to do with a young lady seemed to him impossible. He cast down his eyes and hurried out as if it were none of his business, careful as he went not to inflict any accidental injury on the young lady. CHAPTER IV The old count, who had always kept up an enormous hunting establishment but had now handed it all completely over to his son's care, being in very good spirits on this fifteenth of September, prepared to go out with the others. In an hour's time the whole hunting party was at the porch. Nicholas, with a stern and serious air which showed that now was no time for attending to trifles, went past Natasha and Petya who were trying to tell him something. He had a look at all the details of the hunt, sent a pack of hounds and huntsmen on ahead to find the quarry, mounted his chestnut Donets, and whistling to his own leash of borzois, set off across the threshing ground to a field leading to the Otradnoe wood. The old count's horse, a sorrel gelding called Viflyanka, was led by the groom in attendance on him, while the count himself was to drive in a small trap straight to a spot reserved for him. They were taking fifty-four hounds, with six hunt attendants and whippers-in. Besides the family, there were eight borzoi kennelmen and more than forty borzois, so that, with the borzois on the leash belonging to members of the family, there were about a hundred and thirty dogs and twenty horsemen. Each dog knew its master and its call. Each man in the hunt knew his business, his place, what he had to do. As soon as they had passed the fence they all spread out evenly and quietly, without noise or talk, along the road and field leading to the Otradnoe covert. The horses stepped over the field as over a thick carpet, now and then splashing into puddles as they crossed a road. The misty sky still seemed to descend evenly and imperceptibly toward the earth, the air was still, warm, and silent. Occasionally the whistle of a huntsman, the snort of a horse, the crack of a whip, or the whine of a straggling hound could be heard. When they had gone a little less than a mile, five more riders with dogs appeared out of the mist, approaching the Rostovs. In front rode a fresh-looking, handsome old man with a large gray mustache. "Good morning, Uncle!" said Nicholas, when the old man drew near. "That's it. Come on!... I was sure of it," began "Uncle." (He was a distant relative of the Rostovs', a man of small means, and their neighbor.) "I knew you wouldn't be able to resist it and it's a good thing you're going. That's it! Come on! (This was "Uncle's" favorite expression.) "Take the covert at once, for my Girchik says the Ilagins are at Korniki with their hounds. That's it. Come on!... They'll take the cubs from under your very nose." "That's where I'm going. Shall we join up our packs?" asked Nicholas. The hounds were joined into one pack, and "Uncle" and Nicholas rode on side by side. Natasha, muffled up in shawls which did not hide her eager face and shining eyes, galloped up to them. She was followed by Petya who always kept close to her, by Michael, a huntsman, and by a groom appointed to look after her. Petya, who was laughing, whipped and pulled at his horse. Natasha sat easily and confidently on her black Arabchik and reined him in without effort with a firm hand. "Uncle" looked round disapprovingly at Petya and Natasha. He did not like to combine frivolity with the serious business of hunting. "Good morning, Uncle! We are going too!" shouted Petya. "Good morning, good morning! But don't go overriding the hounds," said "Uncle" sternly. "Nicholas, what a fine dog Trunila is! He knew me," said Natasha, referring to her favorite hound. "In the first place, Trunila is not a 'dog,' but a harrier," thought Nicholas, and looked sternly at his sister, trying to make her feel the distance that ought to separate them at that moment. Natasha understood it. "You mustn't think we'll be in anyone's way, Uncle," she said. "We'll go to our places and won't budge." "A good thing too, little countess," said "Uncle," "only mind you don't fall off your horse," he added, "because--that's it, come on!- you've nothing to hold on to." The oasis of the Otradnoe covert came in sight a few hundred yards off, the huntsmen were already nearing it. Rostov, having finally settled with "Uncle" where they should set on the hounds, and having shown Natasha where she was to stand--a spot where nothing could possibly run out--went round above the ravine. "Well, nephew, you're going for a big wolf," said "Uncle." "Mind and don't let her slip!" "That's as may happen," answered Rostov. "Karay, here!" he shouted, answering "Uncle's" remark by this call to his borzoi. Karay was a shaggy old dog with a hanging jowl, famous for having tackled a big wolf unaided. They all took up their places. The old count, knowing his son's ardor in the hunt, hurried so as not to be late, and the huntsmen had not yet reached their places when Count Ilya Rostov, cheerful, flushed, and with quivering cheeks, drove up with his black horses over the winter rye to the place reserved for him, where a wolf might come out. Having straightened his coat and fastened on his hunting knives and horn, he mounted his good, sleek, well-fed, and comfortable horse, Viflyanka, which was turning gray, like himself. His horses and trap were sent home. Count Ilya Rostov, though not at heart a keen sportsman, knew the rules of the hunt well, and rode to the bushy edge of the road where he was to stand, arranged his reins, settled himself in the saddle, and, feeling that he was ready, looked about with a smile. Beside him was Simon Chekmar, his personal attendant, an old horseman now somewhat stiff in the saddle. Chekmar held in leash three formidable wolfhounds, who had, however, grown fat like their master and his horse. Two wise old dogs lay down unleashed. Some hundred paces farther along the edge of the wood stood Mitka, the count's other groom, a daring horseman and keen rider to hounds. Before the hunt, by old custom, the count had drunk a silver cupful of mulled brandy, taken a snack, and washed it down with half a bottle of his favorite Bordeaux. He was somewhat flushed with the wine and the drive. His eyes were rather moist and glittered more than usual, and as he sat in his saddle, wrapped up in his fur coat, he looked like a child taken out for an outing. The thin, hollow-cheeked Chekmar, having got everything ready, kept glancing at his master with whom he had lived on the best of terms for thirty years, and understanding the mood he was in expected a pleasant chat. A third person rode up circumspectly through the wood (it was plain that he had had a lesson) and stopped behind the count. This person was a gray-bearded old man in a woman's cloak, with a tall peaked cap on his head. He was the buffoon, who went by a woman's name, Nastasya Ivanovna. "Well, Nastasya Ivanovna!" whispered the count, winking at him. "If you scare away the beast, Daniel'll give it you!" "I know a thing or two myself!" said Nastasya Ivanovna. "Hush!" whispered the count and turned to Simon. "Have you seen the young countess?" he asked. "Where is she?" "With young Count Peter, by the Zharov rank grass," answered Simon, smiling. "Though she's a lady, she's very fond of hunting." "And you're surprised at the way she rides, Simon, eh?" said the count. "She's as good as many a man!" "Of course! It's marvelous. So bold, so easy!" "And Nicholas? Where is he? By the Lyadov upland, isn't he?" "Yes, sir. He knows where to stand. He understands the matter so well that Daniel and I are often quite astounded," said Simon, well knowing what would please his master. "Rides well, eh? And how well he looks on his horse, eh?" "A perfect picture! How he chased a fox out of the rank grass by the Zavarzinsk thicket the other day! Leaped a fearful place; what a sight when they rushed from the covert... the horse worth a thousand rubles and the rider beyond all price! Yes, one would have to search far to find another as smart." "To search far..." repeated the count, evidently sorry Simon had not said more. "To search far," he said, turning back the skirt of his coat to get at his snuffbox. "The other day when he came out from Mass in full uniform, Michael Sidorych..." Simon did not finish, for on the still air he had distinctly caught the music of the hunt with only two or three hounds giving tongue. He bent down his head and listened, shaking a warning finger at his master. "They are on the scent of the cubs..." he whispered, "straight to the Lyadov uplands." The count, forgetting to smooth out the smile on his face, looked into the distance straight before him, down the narrow open space, holding the snuffbox in his hand but not taking any. After the cry of the hounds came the deep tones of the wolf call from Daniel's hunting horn; the pack joined the first three hounds and they could be heard in full cry, with that peculiar lift in the note that indicates that they are after a wolf. The whippers-in no longer set on the hounds, but changed to the cry of ulyulyu, and above the others rose Daniel's voice, now a deep bass, now piercingly shrill. His voice seemed to fill the whole wood and carried far beyond out into the open field. After listening a few moments in silence, the count and his attendant convinced themselves that the hounds had separated into two packs: the sound of the larger pack, eagerly giving tongue, began to die away in the distance, the other pack rushed by the wood past the count, and it was with this that Daniel's voice was heard calling ulyulyu. The sounds of both packs mingled and broke apart again, but both were becoming more distant. Simon sighed and stooped to straighten the leash a young borzoi had entangled; the count too sighed and, noticing the snuffbox in his hand, opened it and took a pinch. "Back!" cried Simon to a borzoi that was pushing forward out of the wood. The count started and dropped the snuffbox. Nastasya Ivanovna dismounted to pick it up. The count and Simon were looking at him. Then, unexpectedly, as often happens, the sound of the hunt suddenly approached, as if the hounds in full cry and Daniel ulyulyuing were just in front of them. The count turned and saw on his right Mitka staring at him with eyes starting out of his head, raising his cap and pointing before him to the other side. "Look out!" he shouted, in a voice plainly showing that he had long fretted to utter that word, and letting the borzois slip he galloped toward the count. The count and Simon galloped out of the wood and saw on their left a wolf which, softly swaying from side to side, was coming at a quiet lope farther to the left to the very place where they were standing. The angry borzois whined and getting free of the leash rushed past the horses' feet at the wolf. The wolf paused, turned its heavy forehead toward the dogs awkwardly, like a man suffering from the quinsy, and, still slightly swaying from side to side, gave a couple of leaps and with a swish of its tail disappeared into the skirt of the wood. At the same instant, with a cry like a wail, first one hound, then another, and then another, sprang helter-skelter from the wood opposite and the whole pack rushed across the field toward the very spot where the wolf had disappeared. The hazel bushes parted behind the hounds and Daniel's chestnut horse appeared, dark with sweat. On its long back sat Daniel, hunched forward, capless, his disheveled gray hair hanging over his flushed, perspiring face. "Ulyulyulyu! ulyulyu!..." he cried. When he caught sight of the count his eyes flashed lightning. "Blast you!" he shouted, holding up his whip threateningly at the count. "You've let the wolf go!... What sportsmen!" and as if scorning to say more to the frightened and shamefaced count, he lashed the heaving flanks of his sweating chestnut gelding with all the anger the count had aroused and flew off after the hounds. The count, like a punished schoolboy, looked round, trying by a smile to win Simon's sympathy for his plight. But Simon was no longer there. He was galloping round by the bushes while the field was coming up on both sides, all trying to head the wolf, but it vanished into the wood before they could do so. CHAPTER V Nicholas Rostov meanwhile remained at his post, waiting for the wolf. By the way the hunt approached and receded, by the cries of the dogs whose notes were familiar to him, by the way the voices of the huntsmen approached, receded, and rose, he realized what was happening at the copse. He knew that young and old wolves were there, that the hounds had separated into two packs, that somewhere a wolf was being chased, and that something had gone wrong. He expected the wolf to come his way any moment. He made thousands of different conjectures as to where and from what side the beast would come and how he would set upon it. Hope alternated with despair. Several times he addressed a prayer to God that the wolf should come his way. He prayed with that passionate and shame-faced feeling with which men pray at moments of great excitement arising from trivial causes. "What would it be to Thee to do this for me?" he said to God. "I know Thou art great, and that it is a sin to ask this of Thee, but for God's sake do let the old wolf come my way and let Karay spring at it--in sight of 'Uncle' who is watching from over there--and seize it by the throat in a death grip!" A thousand times during that half-hour Rostov cast eager and restless glances over the edge of the wood, with the two scraggy oaks rising above the aspen undergrowth and the gully with its water-worn side and "Uncle's" cap just visible above the bush on his right. "No, I shan't have such luck," thought Rostov, "yet what wouldn't it be worth! It is not to be! Everywhere, at cards and in war, I am always unlucky." Memories of Austerlitz and of Dolokhov flashed rapidly and clearly through his mind. "Only once in my life to get an old wolf, I want only that!" thought he, straining eyes and ears and looking to the left and then to the right and listening to the slightest variation of note in the cries of the dogs. Again he looked to the right and saw something running toward him across the deserted field. "No, it can't be!" thought Rostov, taking a deep breath, as a man does at the coming of something long hoped for. The height of happiness was reached--and so simply, without warning, or noise, or display, that Rostov could not believe his eyes and remained in doubt for over a second. The wolf ran forward and jumped heavily over a gully that lay in her path. She was an old animal with a gray back and big reddish belly. She ran without hurry, evidently feeling sure that no one saw her. Rostov, holding his breath, looked round at the borzois. They stood or lay not seeing the wolf or understanding the situation. Old Karay had turned his head and was angrily searching for fleas, baring his yellow teeth and snapping at his hind legs. "Ulyulyulyu!" whispered Rostov, pouting his lips. The borzois jumped up, jerking the rings of the leashes and pricking their ears. Karay finished scratching his hindquarters and, cocking his ears, got up with quivering tail from which tufts of matted hair hung down. "Shall I loose them or not?" Nicholas asked himself as the wolf approached him coming from the copse. Suddenly the wolf's whole physiognomy changed: she shuddered, seeing what she had probably never seen before--human eyes fixed upon her--and turning her head a little toward Rostov, she paused. "Back or forward? Eh, no matter, forward..." the wolf seemed to say to herself, and she moved forward without again looking round and with a quiet, long, easy yet resolute lope. "Ulyulyu!" cried Nicholas, in a voice not his own, and of its own accord his good horse darted headlong downhill, leaping over gullies to head off the wolf, and the borzois passed it, running faster still. Nicholas did not hear his own cry nor feel that he was galloping, nor see the borzois, nor the ground over which he went: he saw only the wolf, who, increasing her speed, bounded on in the same direction along the hollow. The first to come into view was Milka, with her black markings and powerful quarters, gaining upon the wolf. Nearer and nearer... now she was ahead of it; but the wolf turned its head to face her, and instead of putting on speed as she usually did Milka suddenly raised her tail and stiffened her forelegs. "Ulyulyulyulyu!" shouted Nicholas. The reddish Lyubim rushed forward from behind Milka, sprang impetuously at the wolf, and seized it by its hindquarters, but immediately jumped aside in terror. The wolf crouched, gnashed her teeth, and again rose and bounded forward, followed at the distance of a couple of feet by all the borzois, who did not get any closer to her. "She'll get away! No, it's impossible!" thought Nicholas, still shouting with a hoarse voice. "Karay, ulyulyu!..." he shouted, looking round for the old borzoi who was now his only hope. Karay, with all the strength age had left him, stretched himself to the utmost and, watching the wolf, galloped heavily aside to intercept it. But the quickness of the wolf's lope and the borzoi's slower pace made it plain that Karay had miscalculated. Nicholas could already see not far in front of him the wood where the wolf would certainly escape should she reach it. But, coming toward him, he saw hounds and a huntsman galloping almost straight at the wolf. There was still hope. A long, yellowish young borzoi, one Nicholas did not know, from another leash, rushed impetuously at the wolf from in front and almost knocked her over. But the wolf jumped up more quickly than anyone could have expected and, gnashing her teeth, flew at the yellowish borzoi, which, with a piercing yelp, fell with its head on the ground, bleeding from a gash in its side. "Karay? Old fellow!..." wailed Nicholas. Thanks to the delay caused by this crossing of the wolf's path, the old dog with its felted hair hanging from its thigh was within five paces of it. As if aware of her danger, the wolf turned her eyes on Karay, tucked her tail yet further between her legs, and increased her speed. But here Nicholas only saw that something happened to Karay--the borzoi was suddenly on the wolf, and they rolled together down into a gully just in front of them. That instant, when Nicholas saw the wolf struggling in the gully with the dogs, while from under them could be seen her gray hair and outstretched hind leg and her frightened choking head, with her ears laid back (Karay was pinning her by the throat), was the happiest moment of his life. With his hand on his saddlebow, he was ready to dismount and stab the wolf, when she suddenly thrust her head up from among that mass of dogs, and then her forepaws were on the edge of the gully. She clicked her teeth (Karay no longer had her by the throat), leaped with a movement of her hind legs out of the gully, and having disengaged herself from the dogs, with tail tucked in again, went forward. Karay, his hair bristling, and probably bruised or wounded, climbed with difficulty out of the gully. "Oh my God! Why?" Nicholas cried in despair. "Uncle's" huntsman was galloping from the other side across the wolf's path and his borzois once more stopped the animal's advance. She was again hemmed in. Nicholas and his attendant, with "Uncle" and his huntsman, were all riding round the wolf, crying "ulyulyu!" shouting and preparing to dismount each moment that the wolf crouched back, and starting forward again every time she shook herself and moved toward the wood where she would be safe. Already, at the beginning of this chase, Daniel, hearing the ulyulyuing, had rushed out from the wood. He saw Karay seize the wolf, and checked his horse, supposing the affair to be over. But when he saw that the horsemen did not dismount and that the wolf shook herself and ran for safety, Daniel set his chestnut galloping, not at the wolf but straight toward the wood, just as Karay had run to cut the animal off. As a result of this, he galloped up to the wolf just when she had been stopped a second time by "Uncle's" borzois. Daniel galloped up silently, holding a naked dagger in his left hand and thrashing the laboring sides of his chestnut horse with his whip as if it were a flail. Nicholas neither saw nor heard Daniel until the chestnut, breathing heavily, panted past him, and he heard the fall of a body and saw Daniel lying on the wolf's back among the dogs, trying to seize her by the ears. It was evident to the dogs, the hunters, and to the wolf herself that all was now over. The terrified wolf pressed back her ears and tried to rise, but the borzois stuck to her. Daniel rose a little, took a step, and with his whole weight, as if lying down to rest, fell on the wolf, seizing her by the ears. Nicholas was about to stab her, but Daniel whispered, "Don't! We'll gag her!" and, changing his position, set his foot on the wolf's neck. A stick was thrust between her jaws and she was fastened with a leash, as if bridled, her legs were bound together, and Daniel rolled her over once or twice from side to side. With happy, exhausted faces, they laid the old wolf, alive, on a shying and snorting horse and, accompanied by the dogs yelping at her, took her to the place where they were all to meet. The hounds had killed two of the cubs and the borzois three. The huntsmen assembled with their booty and their stories, and all came to look at the wolf, which, with her broad-browed head hanging down and the bitten stick between her jaws, gazed with great glassy eyes at this crowd of dogs and men surrounding her. When she was touched, she jerked her bound legs and looked wildly yet simply at everybody. Old Count Rostov also rode up and touched the wolf. "Oh, what a formidable one!" said he. "A formidable one, eh?" he asked Daniel, who was standing near. "Yes, your excellency," answered Daniel, quickly doffing his cap. The count remembered the wolf he had let slip and his encounter with Daniel. "Ah, but you are a crusty fellow, friend!" said the count. For sole reply Daniel gave him a shy, childlike, meek, and amiable smile. CHAPTER VI The old count went home, and Natasha and Petya promised to return very soon, but as it was still early the hunt went farther. At midday they put the hounds into a ravine thickly overgrown with young trees. Nicholas standing in a fallow field could see all his whips. Facing him lay a field of winter rye, there his own huntsman stood alone in a hollow behind a hazel bush. The hounds had scarcely been loosed before Nicholas heard one he knew, Voltorn, giving tongue at intervals; other hounds joined in, now pausing and now again giving tongue. A moment later he heard a cry from the wooded ravine that a fox had been found, and the whole pack, joining together, rushed along the ravine toward the ryefield and away from Nicholas. He saw the whips in their red caps galloping along the edge of the ravine, he even saw the hounds, and was expecting a fox to show itself at any moment on the ryefield opposite. The huntsman standing in the hollow moved and loosed his borzois, and Nicholas saw a queer, short-legged red fox with a fine brush going hard across the field. The borzois bore down on it.... Now they drew close to the fox which began to dodge between the field in sharper and sharper curves, trailing its brush, when suddenly a strange white borzoi dashed in followed by a black one, and everything was in confusion; the borzois formed a star-shaped figure, scarcely swaying their bodies and with tails turned away from the center of the group. Two huntsmen galloped up to the dogs; one in a red cap, the other, a stranger, in a green coat. "What's this?" thought Nicholas. "Where's that huntsman from? He is not 'Uncle's' man." The huntsmen got the fox, but stayed there a long time without strapping it to the saddle. Their horses, bridled and with high saddles, stood near them and there too the dogs were lying. The huntsmen waved their arms and did something to the fox. Then from that spot came the sound of a horn, with the signal agreed on in case of a fight. "That's Ilagin's huntsman having a row with our Ivan," said Nicholas' groom. Nicholas sent the man to call Natasha and Petya to him, and rode at a footpace to the place where the whips were getting the hounds together. Several of the field galloped to the spot where the fight was going on. Nicholas dismounted, and with Natasha and Petya, who had ridden up, stopped near the hounds, waiting to see how the matter would end. Out of the bushes came the huntsman who had been fighting and rode toward his young master, with the fox tied to his crupper. While still at a distance he took off his cap and tried to speak respectfully, but he was pale and breathless and his face was angry. One of his eyes was black, but he probably was not even aware of it. "What has happened?" asked Nicholas. "A likely thing, killing a fox our dogs had hunted! And it was my gray bitch that caught it! Go to law, indeed!... He snatches at the fox! I gave him one with the fox. Here it is on my saddle! Do you want a taste of this?..." said the huntsman, pointing to his dagger and probably imagining himself still speaking to his foe. Nicholas, not stopping to talk to the man, asked his sister and Petya to wait for him and rode to the spot where the enemy's, Ilagin's, hunting party was. The victorious huntsman rode off to join the field, and there, surrounded by inquiring sympathizers, recounted his exploits. The facts were that Ilagin, with whom the Rostovs had a quarrel and were at law, hunted over places that belonged by custom to the Rostovs, and had now, as if purposely, sent his men to the very woods the Rostovs were hunting and let his man snatch a fox their dogs had chased. Nicholas, though he had never seen Ilagin, with his usual absence of moderation in judgment, hated him cordially from reports of his arbitrariness and violence, and regarded him as his bitterest foe. He rode in angry agitation toward him, firmly grasping his whip and fully prepared to take the most resolute and desperate steps to punish his enemy. Hardly had he passed an angle of the wood before a stout gentleman in a beaver cap came riding toward him on a handsome raven-black horse, accompanied by two hunt servants. Instead of an enemy, Nicholas found in Ilagin a stately and courteous gentleman who was particularly anxious to make the young count's acquaintance. Having ridden up to Nicholas, Ilagin raised his beaver cap and said he much regretted what had occurred and would have the man punished who had allowed himself to seize a fox hunted by someone else's borzois. He hoped to become better acquainted with the count and invited him to draw his covert. Natasha, afraid that her brother would do something dreadful, had followed him in some excitement. Seeing the enemies exchanging friendly greetings, she rode up to them. Ilagin lifted his beaver cap still higher to Natasha and said, with a pleasant smile, that the young countess resembled Diana in her passion for the chase as well as in her beauty, of which he had heard much. To expiate his huntsman's offense, Ilagin pressed the Rostovs to come to an upland of his about a mile away which he usually kept for himself and which, he said, swarmed with hares. Nicholas agreed, and the hunt, now doubled, moved on. The way to Iligin's upland was across the fields. The hunt servants fell into line. The masters rode together. "Uncle," Rostov, and Ilagin kept stealthily glancing at one another's dogs, trying not to be observed by their companions and searching uneasily for rivals to their own borzois. Rostov was particularly struck by the beauty of a small, pure-bred, red-spotted bitch on Ilagin's leash, slender but with muscles like steel, a delicate muzzle, and prominent black eyes. He had heard of the swiftness of Ilagin's borzois, and in that beautiful bitch saw a rival to his own Milka. In the middle of a sober conversation begun by Ilagin about the year's harvest, Nicholas pointed to the red-spotted bitch. "A fine little bitch, that!" said he in a careless tone. "Is she swift?" "That one? Yes, she's a good dog, gets what she's after," answered Ilagin indifferently, of the red-spotted bitch Erza, for which, a year before, he had given a neighbor three families of house serfs. "So in your parts, too, the harvest is nothing to boast of, Count?" he went on, continuing the conversation they had begun. And considering it polite to return the young count's compliment, Ilagin looked at his borzois and picked out Milka who attracted his attention by her breadth. "That black-spotted one of yours is fine--well shaped!" said he. "Yes, she's fast enough," replied Nicholas, and thought: "If only a full-grown hare would cross the field now I'd show you what sort of borzoi she is," and turning to his groom, he said he would give a ruble to anyone who found a hare. "I don't understand," continued Ilagin, "how some sportsmen can be so jealous about game and dogs. For myself, I can tell you, Count, I enjoy riding in company such as this... what could be better?" (he again raised his cap to Natasha) "but as for counting skins and what one takes, I don't care about that." "Of course not!" "Or being upset because someone else's borzoi and not mine catches something. All I care about is to enjoy seeing the chase, is it not so, Count? For I consider that..." "A-tu!" came the long-drawn cry of one of the borzoi whippers-in, who had halted. He stood on a knoll in the stubble, holding his whip aloft, and again repeated his long-drawn cry, "A-tu!" (This call and the uplifted whip meant that he saw a sitting hare.) "Ah, he has found one, I think," said Ilagin carelessly. "Yes, we must ride up.... Shall we both course it?" answered Nicholas, seeing in Erza and "Uncle's" red Rugay two rivals he had never yet had a chance of pitting against his own borzois. "And suppose they outdo my Milka at once!" he thought as he rode with "Uncle" and Ilagin toward the hare. "A full-grown one?" asked Ilagin as he approached the whip who had sighted the hare--and not without agitation he looked round and whistled to Erza. "And you, Michael Nikanorovich?" he said, addressing "Uncle." The latter was riding with a sullen expression on his face. "How can I join in? Why, you've given a village for each of your borzois! That's it, come on! Yours are worth thousands. Try yours against one another, you two, and I'll look on!" "Rugay, hey, hey!" he shouted. "Rugayushka!" he added, involuntarily by this diminutive expressing his affection and the hopes he placed on this red borzoi. Natasha saw and felt the agitation the two elderly men and her brother were trying to conceal, and was herself excited by it. The huntsman stood halfway up the knoll holding up his whip and the gentlefolk rode up to him at a footpace; the hounds that were far off on the horizon turned away from the hare, and the whips, but not the gentlefolk, also moved away. All were moving slowly and sedately. "How is it pointing?" asked Nicholas, riding a hundred paces toward the whip who had sighted the hare. But before the whip could reply, the hare, scenting the frost coming next morning, was unable to rest and leaped up. The pack on leash rushed downhill in full cry after the hare, and from all sides the borzois that were not on leash darted after the hounds and the hare. All the hunt, who had been moving slowly, shouted, "Stop!" calling in the hounds, while the borzoi whips, with a cry of "A-tu!" galloped across the field setting the borzois on the hare. The tranquil Ilagin, Nicholas, Natasha, and "Uncle" flew, reckless of where and how they went, seeing only the borzois and the hare and fearing only to lose sight even for an instant of the chase. The hare they had started was a strong and swift one. When he jumped up he did not run at once, but pricked his ears listening to the shouting and trampling that resounded from all sides at once. He took a dozen bounds, not very quickly, letting the borzois gain on him, and, finally having chosen his direction and realized his danger, laid back his ears and rushed off headlong. He had been lying in the stubble, but in front of him was the autumn sowing where the ground was soft. The two borzois of the huntsman who had sighted him, having been the nearest, were the first to see and pursue him, but they had not gone far before Ilagin's red-spotted Erza passed them, got within a length, flew at the hare with terrible swiftness aiming at his scut, and, thinking she had seized him, rolled over like a ball. The hare arched his back and bounded off yet more swiftly. From behind Erza rushed the broad-haunched, black-spotted Milka and began rapidly gaining on the hare. "Milashka, dear!" rose Nicholas' triumphant cry. It looked as if Milka would immediately pounce on the hare, but she overtook him and flew past. The hare had squatted. Again the beautiful Erza reached him, but when close to the hare's scut paused as if measuring the distance, so as not to make a mistake this time but seize his hind leg. "Erza, darling!" Ilagin wailed in a voice unlike his own. Erza did not hearken to his appeal. At the very moment when she would have seized her prey, the hare moved and darted along the balk between the winter rye and the stubble. Again Erza and Milka were abreast, running like a pair of carriage horses, and began to overtake the hare, but it was easier for the hare to run on the balk and the borzois did not overtake him so quickly. "Rugay, Rugayushka! That's it, come on!" came a third voice just then, and "Uncle's" red borzoi, straining and curving its back, caught up with the two foremost borzois, pushed ahead of them regardless of the terrible strain, put on speed close to the hare, knocked it off the balk onto the ryefield, again put on speed still more viciously, sinking to his knees in the muddy field, and all one could see was how, muddying his back, he rolled over with the hare. A ring of borzois surrounded him. A moment later everyone had drawn up round the crowd of dogs. Only the delighted "Uncle" dismounted, and cut off a pad, shaking the hare for the blood to drip off, and anxiously glancing round with restless eyes while his arms and legs twitched. He spoke without himself knowing whom to or what about. "That's it, come on! That's a dog!... There, it has beaten them all, the thousand-ruble as well as the one-ruble borzois. That's it, come on!" said he, panting and looking wrathfully around as if he were abusing someone, as if they were all his enemies and had insulted him, and only now had he at last succeeded in justifying himself. "There are your thousand-ruble ones.... That's it, come on!..." "Rugay, here's a pad for you!" he said, throwing down the hare's muddy pad. "You've deserved it, that's it, come on!" "She'd tired herself out, she'd run it down three times by herself," said Nicholas, also not listening to anyone and regardless of whether he were heard or not. "But what is there in running across it like that?" said Ilagin's groom. "Once she had missed it and turned it away, any mongrel could take it," Ilagin was saying at the same time, breathless from his gallop and his excitement. At the same moment Natasha, without drawing breath, screamed joyously, ecstatically, and so piercingly that it set everyone's ear tingling. By that shriek she expressed what the others expressed by all talking at once, and it was so strange that she must herself have been ashamed of so wild a cry and everyone else would have been amazed at it at any other time. "Uncle" himself twisted up the hare, threw it neatly and smartly across his horse's back as if by that gesture he meant to rebuke everybody, and, with an air of not wishing to speak to anyone, mounted his bay and rode off. The others all followed, dispirited and shamefaced, and only much later were they able to regain their former affectation of indifference. For a long time they continued to look at red Rugay who, his arched back spattered with mud and clanking the ring of his leash, walked along just behind "Uncle's" horse with the serene air of a conqueror. "Well, I am like any other dog as long as it's not a question of coursing. But when it is, then look out!" his appearance seemed to Nicholas to be saying. When, much later, "Uncle" rode up to Nicholas and began talking to him, he felt flattered that, after what had happened, "Uncle" deigned to speak to him. CHAPTER VII Toward evening Ilagin took leave of Nicholas, who found that they were so far from home that he accepted "Uncle's" offer that the hunting party should spend the night in his little village of Mikhaylovna. "And if you put up at my house that will be better still. That's it, come on!" said "Uncle." "You see it's damp weather, and you could rest, and the little countess could be driven home in a trap." "Uncle's" offer was accepted. A huntsman was sent to Otradnoe for a trap, while Nicholas rode with Natasha and Petya to "Uncle's" house. Some five male domestic serfs, big and little, rushed out to the front porch to meet their master. A score of women serfs, old and young, as well as children, popped out from the back entrance to have a look at the hunters who were arriving. The presence of Natasha- a woman, a lady, and on horseback--raised the curiosity of the serfs to such a degree that many of them came up to her, stared her in the face, and unabashed by her presence made remarks about her as though she were some prodigy on show and not a human being able to hear or understand what was said about her. "Arinka! Look, she sits sideways! There she sits and her skirt dangles.... See, she's got a little hunting horn!" "Goodness gracious! See her knife?..." "Isn't she a Tartar!" "How is it you didn't go head over heels?" asked the boldest of all, addressing Natasha directly. "Uncle" dismounted at the porch of his little wooden house which stood in the midst of an overgrown garden and, after a glance at his retainers, shouted authoritatively that the superfluous ones should take themselves off and that all necessary preparations should be made to receive the guests and the visitors. The serfs all dispersed. "Uncle" lifted Natasha off her horse and taking her hand led her up the rickety wooden steps of the porch. The house, with its bare, unplastered log walls, was not overclean--it did not seem that those living in it aimed at keeping it spotless--but neither was it noticeably neglected. In the entry there was a smell of fresh apples, and wolf and fox skins hung about. "Uncle" led the visitors through the anteroom into a small hall with a folding table and red chairs, then into the drawing room with a round birchwood table and a sofa, and finally into his private room where there was a tattered sofa, a worn carpet, and portraits of Suvorov, of the host's father and mother, and of himself in military uniform. The study smelt strongly of tobacco and dogs. "Uncle" asked his visitors to sit down and make themselves at home, and then went out of the room. Rugay, his back still muddy, came into the room and lay down on the sofa, cleaning himself with his tongue and teeth. Leading from the study was a passage in which a partition with ragged curtains could be seen. From behind this came women's laughter and whispers. Natasha, Nicholas, and Petya took off their wraps and sat down on the sofa. Petya, leaning on his elbow, fell asleep at once. Natasha and Nicholas were silent. Their faces glowed, they were hungry and very cheerful. They looked at one another (now that the hunt was over and they were in the house, Nicholas no longer considered it necessary to show his manly superiority over his sister), Natasha gave him a wink, and neither refrained long from bursting into a peal of ringing laughter even before they had a pretext ready to account for it. After a while "Uncle" came in, in a Cossack coat, blue trousers, and small top boots. And Natasha felt that this costume, the very one she had regarded with surprise and amusement at Otradnoe, was just the right thing and not at all worse than a swallow-tail or frock coat. "Uncle" too was in high spirits and far from being offended by the brother's and sister's laughter (it could never enter his head that they might be laughing at his way of life) he himself joined in the merriment. "That's right, young countess, that's it, come on! I never saw anyone like her!" said he, offering Nicholas a pipe with a long stem and, with a practiced motion of three fingers, taking down another that had been cut short. "She's ridden all day like a man, and is as fresh as ever!" Soon after "Uncle's" reappearance the door was opened, evidently from the sound by a barefooted girl, and a stout, rosy, good-looking woman of about forty, with a double chin and full red lips, entered carrying a large loaded tray. With hospitable dignity and cordiality in her glance and in every motion, she looked at the visitors and, with a pleasant smile, bowed respectfully. In spite of her exceptional stoutness, which caused her to protrude her chest and stomach and throw back her head, this woman (who was "Uncle's" housekeeper) trod very lightly. She went to the table, set down the tray, and with her plump white hands deftly took from it the bottles and various hors d'oeuvres and dishes and arranged them on the table. When she had finished, she stepped aside and stopped at the door with a smile on her face. "Here I am. I am she! Now do you understand 'Uncle'?" her expression said to Rostov. How could one help understanding? Not only Nicholas, but even Natasha understood the meaning of his puckered brow and the happy complacent smile that slightly puckered his lips when Anisya Fedorovna entered. On the tray was a bottle of herb wine, different kinds of vodka, pickled mushrooms, rye cakes made with buttermilk, honey in the comb, still mead and sparkling mead, apples, nuts (raw and roasted), and nut-and-honey sweets. Afterwards she brought a freshly roasted chicken, ham, preserves made with honey, and preserves made with sugar. All this was the fruit of Anisya Fedorovna's housekeeping, gathered and prepared by her. The smell and taste of it all had a smack of Anisya Fedorovna herself: a savor of juiciness, cleanliness, whiteness, and pleasant smiles. "Take this, little Lady-Countess!" she kept saying, as she offered Natasha first one thing and then another. Natasha ate of everything and thought she had never seen or eaten such buttermilk cakes, such aromatic jam, such honey-and-nut sweets, or such a chicken anywhere. Anisya Fedorovna left the room. After supper, over their cherry brandy, Rostov and "Uncle" talked of past and future hunts, of Rugay and Ilagin's dogs, while Natasha sat upright on the sofa and listened with sparkling eyes. She tried several times to wake Petya that he might eat something, but he only muttered incoherent words without waking up. Natasha felt so lighthearted and happy in these novel surroundings that she only feared the trap would come for her too soon. After a casual pause, such as often occurs when receiving friends for the first time in one's own house, "Uncle," answering a thought that was in his visitors' mind, said: "This, you see, is how I am finishing my days... Death will come. That's it, come on! Nothing will remain. Then why harm anyone?" "Uncle's" face was very significant and even handsome as he said this. Involuntarily Rostov recalled all the good he had heard about him from his father and the neighbors. Throughout the whole province "Uncle" had the reputation of being the most honorable and disinterested of cranks. They called him in to decide family disputes, chose him as executor, confided secrets to him, elected him to be a justice and to other posts; but he always persistently refused public appointments, passing the autumn and spring in the fields on his bay gelding, sitting at home in winter, and lying in his overgrown garden in summer. "Why don't you enter the service, Uncle?" "I did once, but gave it up. I am not fit for it. That's it, come on! I can't make head or tail of it. That's for you--I haven't brains enough. Now, hunting is another matter--that's it, come on! Open the door, there!" he shouted. "Why have you shut it?" The door at the end of the passage led to the huntsmen's room, as they called the room for the hunt servants. There was a rapid patter of bare feet, and an unseen hand opened the door into the huntsmen's room, from which came the clear sounds of a balalayka on which someone, who was evidently a master of the art, was playing. Natasha had been listening to those strains for some time and now went out into the passage to hear better. "That's Mitka, my coachman.... I have got him a good balalayka. I'm fond of it," said "Uncle." It was the custom for Mitka to play the balalayka in the huntsmen's room when "Uncle" returned from the chase. "Uncle" was fond of such music. "How good! Really very good!" said Nicholas with some unintentional superciliousness, as if ashamed to confess that the sounds pleased him very much. "Very good?" said Natasha reproachfully, noticing her brother's tone. "Not 'very good' it's simply delicious!" Just as "Uncle's" pickled mushrooms, honey, and cherry brandy had seemed to her the best in the world, so also that song, at that moment, seemed to her the acme of musical delight. "More, please, more!" cried Natasha at the door as soon as the balalayka ceased. Mitka tuned up afresh, and recommenced thrumming the balalayka to the air of My Lady, with trills and variations. "Uncle" sat listening, slightly smiling, with his head on one side. The air was repeated a hundred times. The balalayka was retuned several times and the same notes were thrummed again, but the listeners did not grow weary of it and wished to hear it again and again. Anisya Fedorovna came in and leaned her portly person against the doorpost. "You like listening?" she said to Natasha, with a smile extremely like "Uncle's." "That's a good player of ours," she added. "He doesn't play that part right!" said "Uncle" suddenly, with an energetic gesture. "Here he ought to burst out--that's it, come on!- ought to burst out." "Do you play then?" asked Natasha. "Uncle" did not answer, but smiled. "Anisya, go and see if the strings of my guitar are all right. I haven't touched it for a long time. That's it--come on! I've given it up." Anisya Fedorovna, with her light step, willingly went to fulfill her errand and brought back the guitar. Without looking at anyone, "Uncle" blew the dust off it and, tapping the case with his bony fingers, tuned the guitar and settled himself in his armchair. He took the guitar a little above the fingerboard, arching his left elbow with a somewhat theatrical gesture, and, with a wink at Anisya Fedorovna, struck a single chord, pure and sonorous, and then quietly, smoothly, and confidently began playing in very slow time, not My Lady, but the well-known song: Came a maiden down the street. The tune, played with precision and in exact time, began to thrill in the hearts of Nicholas and Natasha, arousing in them the same kind of sober mirth as radiated from Anisya Fedorovna's whole being. Anisya Fedorovna flushed, and drawing her kerchief over her face went laughing out of the room. "Uncle" continued to play correctly, carefully, with energetic firmness, looking with a changed and inspired expression at the spot where Anisya Fedorovna had just stood. Something seemed to be laughing a little on one side of his face under his gray mustaches, especially as the song grew brisker and the time quicker and when, here and there, as he ran his fingers over the strings, something seemed to snap. "Lovely, lovely! Go on, Uncle, go on!" shouted Natasha as soon as he had finished. She jumped up and hugged and kissed him. "Nicholas, Nicholas!" she said, turning to her brother, as if asking him: "What is it moves me so?" Nicholas too was greatly pleased by "Uncle's" playing, and "Uncle" played the piece over again. Anisya Fedorovna's smiling face reappeared in the doorway and behind hers other faces... Fetching water clear and sweet, Stop, dear maiden, I entreat- played "Uncle" once more, running his fingers skillfully over the strings, and then he stopped short and jerked his shoulders. "Go on, Uncle dear," Natasha wailed in an imploring tone as if her life depended on it. "Uncle" rose, and it was as if there were two men in him: one of them smiled seriously at the merry fellow, while the merry fellow struck a naive and precise attitude preparatory to a folk dance. "Now then, niece!" he exclaimed, waving to Natasha the hand that had just struck a chord. Natasha threw off the shawl from her shoulders, ran forward to face "Uncle," and setting her arms akimbo also made a motion with her shoulders and struck an attitude. Where, how, and when had this young countess, educated by an emigree French governess, imbibed from the Russian air she breathed that spirit and obtained that manner which the pas de chale* would, one would have supposed, long ago have effaced? But the spirit and the movements were those inimitable and unteachable Russian ones that "Uncle" had expected of her. As soon as she had struck her pose, and smiled triumphantly, proudly, and with sly merriment, the fear that had at first seized Nicholas and the others that she might not do the right thing was at an end, and they were already admiring her. *The French shawl dance. She did the right thing with such precision, such complete precision, that Anisya Fedorovna, who had at once handed her the handkerchief she needed for the dance, had tears in her eyes, though she laughed as she watched this slim, graceful countess, reared in silks and velvets and so different from herself, who yet was able to understand all that was in Anisya and in Anisya's father and mother and aunt, and in every Russian man and woman. "Well, little countess; that's it--come on!" cried "Uncle," with a joyous laugh, having finished the dance. "Well done, niece! Now a fine young fellow must be found as husband for you. That's it--come on!" "He's chosen already," said Nicholas smiling. "Oh?" said "Uncle" in surprise, looking inquiringly at Natasha, who nodded her head with a happy smile. "And such a one!" she said. But as soon as she had said it a new train of thoughts and feelings arose in her. "What did Nicholas' smile mean when he said 'chosen already'? Is he glad of it or not? It is as if he thought my Bolkonski would not approve of or understand our gaiety. But he would understand it all. Where is he now?" she thought, and her face suddenly became serious. But this lasted only a second. "Don't dare to think about it," she said to herself, and sat down again smilingly beside "Uncle," begging him to play something more. "Uncle" played another song and a valse; then after a pause he cleared his throat and sang his favorite hunting song: As 'twas growing dark last night Fell the snow so soft and light... "Uncle" sang as peasants sing, with full and naive conviction that the whole meaning of a song lies in the words and that the tune comes of itself, and that apart from the words there is no tune, which exists only to give measure to the words. As a result of this the unconsidered tune, like the song of a bird, was extraordinarily good. Natasha was in ecstasies over "Uncle's" singing. She resolved to give up learning the harp and to play only the guitar. She asked "Uncle" for his guitar and at once found the chords of the song. After nine o'clock two traps and three mounted men, who had been sent to look for them, arrived to fetch Natasha and Petya. The count and countess did not know where they were and were very anxious, said one of the men. Petya was carried out like a log and laid in the larger of the two traps. Natasha and Nicholas got into the other. "Uncle" wrapped Natasha up warmly and took leave of her with quite a new tenderness. He accompanied them on foot as far as the bridge that could not be crossed, so that they had to go round by the ford, and he sent huntsmen to ride in front with lanterns. "Good-by, dear niece," his voice called out of the darkness--not the voice Natasha had known previously, but the one that had sung As 'twas growing dark last night. In the village through which they passed there were red lights and a cheerful smell of smoke. "What a darling Uncle is!" said Natasha, when they had come out onto the highroad. "Yes," returned Nicholas. "You're not cold?" "No. I'm quite, quite all right. I feel so comfortable!" answered Natasha, almost perplexed by her feelings. They remained silent a long while. The night was dark and damp. They could not see the horses, but only heard them splashing through the unseen mud. What was passing in that receptive childlike soul that so eagerly caught and assimilated all the diverse impressions of life? How did they all find place in her? But she was very happy. As they were nearing home she suddenly struck up the air of As 'twas growing dark last night--the tune of which she had all the way been trying to get and had at last caught. "Got it?" said Nicholas. "What were you thinking about just now, Nicholas?" inquired Natasha. They were fond of asking one another that question. "I?" said Nicholas, trying to remember. "Well, you see, first I thought that Rugay, the red hound, was like Uncle, and that if he were a man he would always keep Uncle near him, if not for his riding, then for his manner. What a good fellow Uncle is! Don't you think so?... Well, and you?" "I? Wait a bit, wait.... Yes, first I thought that we are driving along and imagining that we are going home, but that heaven knows where we are really going in the darkness, and that we shall arrive and suddenly find that we are not in Otradnoe, but in Fairyland. And then I thought... No, nothing else." "I know, I expect you thought of him," said Nicholas, smiling as Natasha knew by the sound of his voice. "No," said Natasha, though she had in reality been thinking about Prince Andrew at the same time as of the rest, and of how he would have liked "Uncle." "And then I was saying to myself all the way, 'How well Anisya carried herself, how well!'" And Nicholas heard her spontaneous, happy, ringing laughter. "And do you know," she suddenly said, "I know that I shall never again be as happy and tranquil as I am now." "Rubbish, nonsense, humbug!" exclaimed Nicholas, and he thought: "How charming this Natasha of mine is! I have no other friend like her and never shall have. Why should she marry? We might always drive about together!" "What a darling this Nicholas of mine is!" thought Natasha. "Ah, there are still lights in the drawingroom!" she said, pointing to the windows of the house that gleamed invitingly in the moist velvety darkness of the night. CHAPTER VIII Count Ilya Rostov had resigned the position of Marshal of the Nobility because it involved him in too much expense, but still his affairs did not improve. Natasha and Nicholas often noticed their parents conferring together anxiously and privately and heard suggestions of selling the fine ancestral Rostov house and estate near Moscow. It was not necessary to entertain so freely as when the count had been Marshal, and life at Otradnoe was quieter than in former years, but still the enormous house and its lodges were full of people and more than twenty sat down to table every day. These were all their own people who had settled down in the house almost as members of the family, or persons who were, it seemed, obliged to live in the count's house. Such were Dimmler the musician and his wife, Vogel the dancing master and his family, Belova, an old maiden lady, an inmate of the house, and many others such as Petya's tutors, the girls' former governess, and other people who simply found it preferable and more advantageous to live in the count's house than at home. They had not as many visitors as before, but the old habits of life without which the count and countess could not conceive of existence remained unchanged. There was still the hunting establishment which Nicholas had even enlarged, the same fifty horses and fifteen grooms in the stables, the same expensive presents and dinner parties to the whole district on name days; there were still the count's games of whist and boston, at which- spreading out his cards so that everybody could see them--he let himself be plundered of hundreds of rubles every day by his neighbors, who looked upon an opportunity to play a rubber with Count Rostov as a most profitable source of income. The count moved in his affairs as in a huge net, trying not to believe that he was entangled but becoming more and more so at every step, and feeling too feeble to break the meshes or to set to work carefully and patiently to disentangle them. The countess, with her loving heart, felt that her children were being ruined, that it was not the count's fault for he could not help being what he was--that (though he tried to hide it) he himself suffered from the consciousness of his own and his children's ruin, and she tried to find means of remedying the position. From her feminine point of view she could see only one solution, namely, for Nicholas to marry a rich heiress. She felt this to be their last hope and that if Nicholas refused the match she had found for him, she would have to abandon the hope of ever getting matters right. This match was with Julie Karagina, the daughter of excellent and virtuous parents, a girl the Rostovs had known from childhood, and who had now become a wealthy heiress through the death of the last of her brothers. The countess had written direct to Julie's mother in Moscow suggesting a marriage between their children and had received a favorable answer from her. Karagina had replied that for her part she was agreeable, and everything depend on her daughter's inclination. She invited Nicholas to come to Moscow. Several times the countess, with tears in her eyes, told her son that now both her daughters were settled, her only wish was to see him married. She said she could lie down in her grave peacefully if that were accomplished. Then she told him that she knew of a splendid girl and tried to discover what he thought about marriage. At other times she praised Julie to him and advised him to go to Moscow during the holidays to amuse himself. Nicholas guessed what his mother's remarks were leading to and during one of these conversations induced her to speak quite frankly. She told him that her only hope of getting their affairs disentangled now lay in his marrying Julie Karagina. "But, Mamma, suppose I loved a girl who has no fortune, would you expect me to sacrifice my feelings and my honor for the sake of money?" he asked his mother, not realizing the cruelty of his question and only wishing to show his noble-mindedness. "No, you have not understood me," said his mother, not knowing how to justify herself. "You have not understood me, Nikolenka. It is your happiness I wish for," she added, feeling that she was telling an untruth and was becoming entangled. She began to cry. "Mamma, don't cry! Only tell me that you wish it, and you know I will give my life, anything, to put you at ease," said Nicholas. "I would sacrifice anything for you--even my feelings." But the countess did not want the question put like that: she did not want a sacrifice from her son, she herself wished to make a sacrifice for him. "No, you have not understood me, don't let us talk about it," she replied, wiping away her tears. "Maybe I do love a poor girl," said Nicholas to himself. "Am I to sacrifice my feelings and my honor for money? I wonder how Mamma could speak so to me. Because Sonya is poor I must not love her," he thought, "must not respond to her faithful, devoted love? Yet I should certainly be happier with her than with some doll-like Julie. I can always sacrifice my feelings for my family's welfare," he said to himself, "but I can't coerce my feelings. If I love Sonya, that feeling is for me stronger and higher than all else." Nicholas did not go to Moscow, and the countess did not renew the conversation with him about marriage. She saw with sorrow, and sometimes with exasperation, symptoms of a growing attachment between her son and the portionless Sonya. Though she blamed herself for it, she could not refrain from grumbling at and worrying Sonya, often pulling her up without reason, addressing her stiffly as "my dear," and using the formal "you" instead of the intimate "thou" in speaking to her. The kindhearted countess was the more vexed with Sonya because that poor, dark-eyed niece of hers was so meek, so kind, so devotedly grateful to her benefactors, and so faithfully, unchangingly, and unselfishly in love with Nicholas, that there were no grounds for finding fault with her. Nicholas was spending the last of his leave at home. A fourth letter had come from Prince Andrew, from Rome, in which he wrote that he would have been on his way back to Russia long ago had not his wound unexpectedly reopened in the warm climate, which obliged him to defer his return till the beginning of the new year. Natasha was still as much in love with her betrothed, found the same comfort in that love, and was still as ready to throw herself into all the pleasures of life as before; but at the end of the fourth month of their separation she began to have fits of depression which she could not master. She felt sorry for herself: sorry that she was being wasted all this time and of no use to anyone--while she felt herself so capable of loving and being loved. Things were not cheerful in the Rostovs' home. CHAPTER IX Christmas came and except for the ceremonial Mass, the solemn and wearisome Christmas congratulations from neighbors and servants, and the new dresses everyone put on, there were no special festivities, though the calm frost of twenty degrees Reaumur, the dazzling sunshine by day, and the starlight of the winter nights seemed to call for some special celebration of the season. On the third day of Christmas week, after the midday dinner, all the inmates of the house dispersed to various rooms. It was the dullest time of the day. Nicholas, who had been visiting some neighbors that morning, was asleep on the sitting-room sofa. The old count was resting in his study. Sonya sat in the drawing room at the round table, copying a design for embroidery. The countess was playing patience. Nastasya Ivanovna the buffoon sat with a sad face at the window with two old ladies. Natasha came into the room, went up to Sonya, glanced at what she was doing, and then went up to her mother and stood without speaking. "Why are you wandering about like an outcast?" asked her mother. "What do you want?" "Him... I want him... now, this minute! I want him!" said Natasha, with glittering eyes and no sign of a smile. The countess lifted her head and looked attentively at her daughter. "Don't look at me, Mamma! Don't look; I shall cry directly." "Sit down with me a little," said the countess. "Mamma, I want him. Why should I be wasted like this, Mamma?" Her voice broke, tears gushed from her eyes, and she turned quickly to hide them and left the room. She passed into the sitting room, stood there thinking awhile, and then went into the maids' room. There an old maidservant was grumbling at a young girl who stood panting, having just run in through the cold from the serfs' quarters. "Stop playing--there's a time for everything," said the old woman. "Let her alone, Kondratevna," said Natasha. "Go, Mavrushka, go." Having released Mavrushka, Natasha crossed the dancing hall and went to the vestibule. There an old footman and two young ones were playing cards. They broke off and rose as she entered. "What can I do with them?" thought Natasha. "Oh, Nikita, please go... where can I send him?... Yes, go to the yard and fetch a fowl, please, a cock, and you, Misha, bring me some oats." "Just a few oats?" said Misha, cheerfully and readily. "Go, go quickly," the old man urged him. "And you, Theodore, get me a piece of chalk." On her way past the butler's pantry she told them to set a samovar, though it was not at all the time for tea. Foka, the butler, was the most ill-tempered person in the house. Natasha liked to test her power over him. He distrusted the order and asked whether the samovar was really wanted. "Oh dear, what a young lady!" said Foka, pretending to frown at Natasha. No one in the house sent people about or gave them as much trouble as Natasha did. She could not see people unconcernedly, but had to send them on some errand. She seemed to be trying whether any of them would get angry or sulky with her; but the serfs fulfilled no one's orders so readily as they did hers. "What can I do, where can I go?" thought she, as she went slowly along the passage. "Nastasya Ivanovna, what sort of children shall I have?" she asked the buffoon, who was coming toward her in a woman's jacket. "Why, fleas, crickets, grasshoppers," answered the buffoon. "O Lord, O Lord, it's always the same! Oh, where am I to go? What am I to do with myself?" And tapping with her heels, she ran quickly upstairs to see Vogel and his wife who lived on the upper story. Two governesses were sitting with the Vogels at a table, on which were plates of raisins, walnuts, and almonds. The governesses were discussing whether it was cheaper to live in Moscow or Odessa. Natasha sat down, listened to their talk with a serious and thoughtful air, and then got up again. "The island of Madagascar," she said, "Ma-da-gas-car," she repeated, articulating each syllable distinctly, and, not replying to Madame Schoss who asked her what she was saying, she went out of the room. Her brother Petya was upstairs too; with the man in attendance on him he was preparing fireworks to let off that night. "Petya! Petya!" she called to him. "Carry me downstairs." Petya ran up and offered her his back. She jumped on it, putting her arms round his neck, and he pranced along with her. "No, don't... the island of Madagascar!" she said, and jumping off his back she went downstairs. Having as it were reviewed her kingdom, tested her power, and made sure that everyone was submissive, but that all the same it was dull, Natasha betook herself to the ballroom, picked up her guitar, sat down in a dark corner behind a bookcase, and began to run her fingers over the strings in the bass, picking out a passage she recalled from an opera she had heard in Petersburg with Prince Andrew. What she drew from the guitar would have had no meaning for other listeners, but in her imagination a whole series of reminiscences arose from those sounds. She sat behind the bookcase with her eyes fixed on a streak of light escaping from the pantry door and listened to herself and pondered. She was in a mood for brooding on the past. Sonya passed to the pantry with a glass in her hand. Natasha glanced at her and at the crack in the pantry door, and it seemed to her that she remembered the light failing through that crack once before and Sonya passing with a glass in her hand. "Yes it was exactly the same," thought Natasha. "Sonya, what is this?" she cried, twanging a thick string. "Oh, you are there!" said Sonya with a start, and came near and listened. "I don't know. A storm?" she ventured timidly, afraid of being wrong. "There! That's just how she started and just how she came up smiling timidly when all this happened before," thought Natasha, "and in just the same way I thought there was something lacking in her." "No, it's the chorus from The Water-Carrier, listen!" and Natasha sang the air of the chorus so that Sonya should catch it. "Where were you going?" she asked. "To change the water in this glass. I am just finishing the design." "You always find something to do, but I can't," said Natasha. "And where's Nicholas?" "Asleep, I think." "Sonya, go and wake him," said Natasha. "Tell him I want him to come and sing." She sat awhile, wondering what the meaning of it all having happened before could be, and without solving this problem, or at all regretting not having done so, she again passed in fancy to the time when she was with him and he was looking at her with a lover's eyes. "Oh, if only he would come quicker! I am so afraid it will never be! And, worst of all, I am growing old--that's the thing! There won't then be in me what there is now. But perhaps he'll come today, will come immediately. Perhaps he has come and is sitting in the drawing room. Perhaps he came yesterday and I have forgotten it." She rose, put down the guitar, and went to the drawing room. All the domestic circle, tutors, governesses, and guests, were already at the tea table. The servants stood round the table--but Prince Andrew was not there and life was going on as before. "Ah, here she is!" said the old count, when he saw Natasha enter. "Well, sit down by me." But Natasha stayed by her mother and glanced round as if looking for something. "Mamma!" she muttered, "give him to me, give him, Mamma, quickly, quickly!" and she again had difficulty in repressing her sobs. She sat down at the table and listened to the conversation between the elders and Nicholas, who had also come to the table. "My God, my God! The same faces, the same talk, Papa holding his cup and blowing in the same way!" thought Natasha, feeling with horror a sense of repulsion rising up in her for the whole household, because they were always the same. After tea, Nicholas, Sonya, and Natasha went to the sitting room, to their favorite corner where their most intimate talks always began. CHAPTER X "Does it ever happen to you," said Natasha to her brother, when they settled down in the sitting room, "does it ever happen to you to feel as if there were nothing more to come--nothing; that everything good is past? And to feel not exactly dull, but sad?" "I should think so!" he replied. "I have felt like that when everything was all right and everyone was cheerful. The thought has come into my mind that I was already tired of it all, and that we must all die. Once in the regiment I had not gone to some merrymaking where there was music... and suddenly I felt so depressed..." "Oh yes, I know, I know, I know!" Natasha interrupted him. "When I was quite little that used to be so with me. Do you remember when I was punished once about some plums? You were all dancing, and I sat sobbing in the schoolroom? I shall never forget it: I felt sad and sorry for everyone, for myself, and for everyone. And I was innocent--that was the chief thing," said Natasha. "Do you remember?" "I remember," answered Nicholas. "I remember that I came to you afterwards and wanted to comfort you, but do you know, I felt ashamed to. We were terribly absurd. I had a funny doll then and wanted to give it to you. Do you remember?" "And do you remember," Natasha asked with a pensive smile, "how once, long, long ago, when we were quite little, Uncle called us into the study--that was in the old house--and it was dark--we went in and suddenly there stood..." "A Negro," chimed in Nicholas with a smile of delight. "Of course I remember. Even now I don't know whether there really was a Negro, or if we only dreamed it or were told about him." "He was gray, you remember, and had white teeth, and stood and looked at us..." "Sonya, do you remember?" asked Nicholas. "Yes, yes, I do remember something too," Sonya answered timidly. "You know I have asked Papa and Mamma about that Negro," said Natasha, "and they say there was no Negro at all. But you see, you remember!" "Of course I do, I remember his teeth as if I had just seen them." "How strange it is! It's as if it were a dream! I like that." "And do you remember how we rolled hard-boiled eggs in the ballroom, and suddenly two old women began spinning round on the carpet? Was that real or not? Do you remember what fun it was?" "Yes, and you remember how Papa in his blue overcoat fired a gun in the porch?" So they went through their memories, smiling with pleasure: not the sad memories of old age, but poetic, youthful ones--those impressions of one's most distant past in which dreams and realities blend--and they laughed with quiet enjoyment. Sonya, as always, did not quite keep pace with them, though they shared the same reminiscences. Much that they remembered had slipped from her mind, and what she recalled did not arouse the same poetic feeling as they experienced. She simply enjoyed their pleasure and tried to fit in with it. She only really took part when they recalled Sonya's first arrival. She told them how afraid she had been of Nicholas because he had on a corded jacket and her nurse had told her that she, too, would be sewn up with cords. "And I remember their telling me that you had been born under a cabbage," said Natasha, "and I remember that I dared not disbelieve it then, but knew that it was not true, and I felt so uncomfortable." While they were talking a maid thrust her head in at the other door of the sitting room. "They have brought the cock, Miss," she said in a whisper. "It isn't wanted, Petya. Tell them to take it away," replied Natasha. In the middle of their talk in the sitting room, Dimmler came in and went up to the harp that stood there in a corner. He took off its cloth covering, and the harp gave out a jarring sound. "Mr. Dimmler, please play my favorite nocturne by Field," came the old countess' voice from the drawing room. Dimmler struck a chord and, turning to Natasha, Nicholas, and Sonya, remarked: "How quiet you young people are!" "Yes, we're philosophizing," said Natasha, glancing round for a moment and then continuing the conversation. They were now discussing dreams. Dimmler began to play; Natasha went on tiptoe noiselessly to the table, took up a candle, carried it out, and returned, seating herself quietly in her former place. It was dark in the room especially where they were sitting on the sofa, but through the big windows the silvery light of the full moon fell on the floor. Dimmler had finished the piece but still sat softly running his fingers over the strings, evidently uncertain whether to stop or to play something else. "Do you know," said Natasha in a whisper, moving closer to Nicholas and Sonya, "that when one goes on and on recalling memories, one at last begins to remember what happened before one was in the world..." "That is metempsychosis," said Sonya, who had always learned well, and remembered everything. "The Egyptians believed that our souls have lived in animals, and will go back into animals again." "No, I don't believe we ever were in animals," said Natasha, still in a whisper though the music had ceased. "But I am certain that we were angels somewhere there, and have been here, and that is why we remember...." "May I join you?" said Dimmler who had come up quietly, and he sat down by them. "If we have been angels, why have we fallen lower?" said Nicholas. "No, that can't be!" "Not lower, who said we were lower?... How do I know what I was before?" Natasha rejoined with conviction. "The soul is immortal--well then, if I shall always live I must have lived before, lived for a whole eternity." "Yes, but it is hard for us to imagine eternity," remarked Dimmler, who had joined the young folk with a mildly condescending smile but now spoke as quietly and seriously as they. "Why is it hard to imagine eternity?" said Natasha. "It is now today, and it will be tomorrow, and always; and there was yesterday, and the day before..." "Natasha! Now it's your turn. Sing me something," they heard the countess say. "Why are you sitting there like conspirators?" "Mamma, I don't at all want to," replied Natasha, but all the same she rose. None of them, not even the middle-aged Dimmler, wanted to break off their conversation and quit that corner in the sitting room, but Natasha got up and Nicholas sat down at the clavichord. Standing as usual in the middle of the hall and choosing the place where the resonance was best, Natasha began to sing her mother's favorite song. She had said she did not want to sing, but it was long since she had sung, and long before she again sang, as she did that evening. The count, from his study where he was talking to Mitenka, heard her and, like a schoolboy in a hurry to run out to play, blundered in his talk while giving orders to the steward, and at last stopped, while Mitenka stood in front of him also listening and smiling. Nicholas did not take his eyes off his sister and drew breath in time with her. Sonya, as she listened, thought of the immense difference there was between herself and her friend, and how impossible it was for her to be anything like as bewitching as her cousin. The old countess sat with a blissful yet sad smile and with tears in her eyes, occasionally shaking her head. She thought of Natasha and of her own youth, and of how there was something unnatural and dreadful in this impending marriage of Natasha and Prince Andrew. Dimmler, who had seated himself beside the countess, listened with closed eyes. "Ah, Countess," he said at last, "that's a European talent, she has nothing to learn--what softness, tenderness, and strength...." "Ah, how afraid I am for her, how afraid I am!" said the countess, not realizing to whom she was speaking. Her maternal instinct told her that Natasha had too much of something, and that because of this she would not be happy. Before Natasha had finished singing, fourteen-year-old Petya rushed in delightedly, to say that some mummers had arrived. Natasha stopped abruptly. "Idiot!" she screamed at her brother and, running to a chair, threw herself on it, sobbing so violently that she could not stop for a long time. "It's nothing, Mamma, really it's nothing; only Petya startled me," she said, trying to smile, but her tears still flowed and sobs still choked her. The mummers (some of the house serfs) dressed up as bears, Turks, innkeepers, and ladies--frightening and funny--bringing in with them the cold from outside and a feeling of gaiety, crowded, at first timidly, into the anteroom, then hiding behind one another they pushed into the ballroom where, shyly at first and then more and more merrily and heartily, they started singing, dancing, and playing Christmas games. The countess, when she had identified them and laughed at their costumes, went into the drawing room. The count sat in the ballroom, smiling radiantly and applauding the players. The young people had disappeared. Half an hour later there appeared among the other mummers in the ballroom an old lady in a hooped skirt--this was Nicholas. A Turkish girl was Petya. A clown was Dimmler. An hussar was Natasha, and a Circassian was Sonya with burnt-cork mustache and eyebrows. After the condescending surprise, nonrecognition, and praise, from those who were not themselves dressed up, the young people decided that their costumes were so good that they ought to be shown elsewhere. Nicholas, who, as the roads were in splendid condition, wanted to take them all for a drive in his troyka, proposed to take with them about a dozen of the serf mummers and drive to "Uncle's." "No, why disturb the old fellow?" said the countess. "Besides, you wouldn't have room to turn round there. If you must go, go to the Melyukovs'." Melyukova was a widow, who, with her family and their tutors and governesses, lived three miles from the Rostovs. "That's right, my dear," chimed in the old count, thoroughly aroused. "I'll dress up at once and go with them. I'll make Pashette open her eyes." But the countess would not agree to his going; he had had a bad leg all these last days. It was decided that the count must not go, but that if Louisa Ivanovna (Madame Schoss) would go with them, the young ladies might go to the Melyukovs', Sonya, generally so timid and shy, more urgently than anyone begging Louisa Ivanovna not to refuse. Sonya's costume was the best of all. Her mustache and eyebrows were extraordinarily becoming. Everyone told her she looked very handsome, and she was in a spirited and energetic mood unusual with her. Some inner voice told her that now or never her fate would be decided, and in her male attire she seemed quite a different person. Louisa Ivanovna consented to go, and in half an hour four troyka sleighs with large and small bells, their runners squeaking and whistling over the frozen snow, drove up to the porch. Natasha was foremost in setting a merry holiday tone, which, passing from one to another, grew stronger and reached its climax when they all came out into the frost and got into the sleighs, talking, calling to one another, laughing, and shouting. Two of the troykas were the usual household sleighs, the third was the old count's with a trotter from the Orlov stud as shaft horse, the fourth was Nicholas' own with a short shaggy black shaft horse. Nicholas, in his old lady's dress over which he had belted his hussar overcoat, stood in the middle of the sleigh, reins in hand. It was so light that he could see the moonlight reflected from the metal harness disks and from the eyes of the horses, who looked round in alarm at the noisy party under the shadow of the porch roof. Natasha, Sonya, Madame Schoss, and two maids got into Nicholas' sleigh; Dimmler, his wife, and Petya, into the old count's, and the rest of the mummers seated themselves in the other two sleighs. "You go ahead, Zakhar!" shouted Nicholas to his father's coachman, wishing for a chance to race past him. The old count's troyka, with Dimmler and his party, started forward, squeaking on its runners as though freezing to the snow, its deep-toned bell clanging. The side horses, pressing against the shafts of the middle horse, sank in the snow, which was dry and glittered like sugar, and threw it up. Nicholas set off, following the first sleigh; behind him the others moved noisily, their runners squeaking. At first they drove at a steady trot along the narrow road. While they drove past the garden the shadows of the bare trees often fell across the road and hid the brilliant moonlight, but as soon as they were past the fence, the snowy plain bathed in moonlight and motionless spread out before them glittering like diamonds and dappled with bluish shadows. Bang, bang! went the first sleigh over a cradle hole in the snow of the road, and each of the other sleighs jolted in the same way, and rudely breaking the frost-bound stillness, the troykas began to speed along the road, one after the other. "A hare's track, a lot of tracks!" rang out Natasha's voice through the frost-bound air. "How light it is, Nicholas!" came Sonya's voice. Nicholas glanced round at Sonya, and bent down to see her face closer. Quite a new, sweet face with black eyebrows and mustaches peeped up at him from her sable furs--so close and yet so distant- in the moonlight. "That used to be Sonya," thought he, and looked at her closer and smiled. "What is it, Nicholas?" "Nothing," said he and turned again to the horses. When they came out onto the beaten highroad--polished by sleigh runners and cut up by rough-shod hoofs, the marks of which were visible in the moonlight--the horses began to tug at the reins of their own accord and increased their pace. The near side horse, arching his head and breaking into a short canter, tugged at his traces. The shaft horse swayed from side to side, moving his ears as if asking: "Isn't it time to begin now?" In front, already far ahead the deep bell of the sleigh ringing farther and farther off, the black horses driven by Zakhar could be clearly seen against the white snow. From that sleigh one could hear the shouts, laughter, and voices of the mummers. "Gee up, my darlings!" shouted Nicholas, pulling the reins to one side and flourishing the whip. It was only by the keener wind that met them and the jerks given by the side horses who pulled harder--ever increasing their gallop- that one noticed how fast the troyka was flying. Nicholas looked back. With screams squeals, and waving of whips that caused even the shaft horses to gallop--the other sleighs followed. The shaft horse swung steadily beneath the bow over its head, with no thought of slackening pace and ready to put on speed when required. Nicholas overtook the first sleigh. They were driving downhill and coming out upon a broad trodden track across a meadow, near a river. "Where are we?" thought he. "It's the Kosoy meadow, I suppose. But no--this is something new I've never seen before. This isn't the Kosoy meadow nor the Demkin hill, and heaven only knows what it is! It is something new and enchanted. Well, whatever it may be..." And shouting to his horses, he began to pass the first sleigh. Zakhar held back his horses and turned his face, which was already covered with hoarfrost to his eyebrows. Nicholas gave the horses the rein, and Zakhar, stretching out his arms, clucked his tongue and let his horses go. "Now, look out, master!" he cried. Faster still the two troykas flew side by side, and faster moved the feet of the galloping side horses. Nicholas began to draw ahead. Zakhar, while still keeping his arms extended, raised one hand with the reins. "No you won't, master!" he shouted. Nicholas put all his horses to a gallop and passed Zakhar. The horses showered the fine dry snow on the faces of those in the sleigh- beside them sounded quick ringing bells and they caught confused glimpses of swiftly moving legs and the shadows of the troyka they were passing. The whistling sound of the runners on the snow and the voices of girls shrieking were heard from different sides. Again checking his horses, Nicholas looked around him. They were still surrounded by the magic plain bathed in moonlight and spangled with stars. "Zakhar is shouting that I should turn to the left, but why to the left?" thought Nicholas. "Are we getting to the Melyukovs'? Is this Melyukovka? Heaven only knows where we are going, and heaven knows what is happening to us--but it is very strange and pleasant whatever it is." And he looked round in the sleigh. "Look, his mustache and eyelashes are all white!" said one of the strange, pretty, unfamiliar people--the one with fine eyebrows and mustache. "I think this used to be Natasha," thought Nicholas, "and that was Madame Schoss, but perhaps it's not, and this Circassian with the mustache I don't know, but I love her." "Aren't you cold?" he asked. They did not answer but began to laugh. Dimmler from the sleigh behind shouted something--probably something funny--but they could not make out what he said. "Yes, yes!" some voices answered, laughing. "But here was a fairy forest with black moving shadows, and a glitter of diamonds and a flight of marble steps and the silver roofs of fairy buildings and the shrill yells of some animals. And if this is really Melyukovka, it is still stranger that we drove heaven knows where and have come to Melyukovka," thought Nicholas. It really was Melyukovka, and maids and footmen with merry faces came running, out to the porch carrying candles. "Who is it?" asked someone in the porch. "The mummers from the count's. I know by the horses," replied some voices. CHAPTER XI Pelageya Danilovna Melyukova, a broadly built, energetic woman wearing spectacles, sat in the drawing room in a loose dress, surrounded by her daughters whom she was trying to keep from feeling dull. They were quietly dropping melted wax into snow and looking at the shadows the wax figures would throw on the wall, when they heard the steps and voices of new arrivals in the vestibule. Hussars, ladies, witches, clowns, and bears, after clearing their throats and wiping the hoarfrost from their faces in the vestibule, came into the ballroom where candles were hurriedly lighted. The clown--Dimmler--and the lady--Nicholas--started a dance. Surrounded by the screaming children the mummers, covering their faces and disguising their voices, bowed to their hostess and arranged themselves about the room. "Dear me! there's no recognizing them! And Natasha! See whom she looks like! She really reminds me of somebody. But Herr Dimmler--isn't he good! I didn't know him! And how he dances. Dear me, there's a Circassian. Really, how becoming it is to dear Sonya. And who is that? Well, you have cheered us up! Nikita and Vanya--clear away the tables! And we were sitting so quietly. Ha, ha, ha!... The hussar, the hussar! Just like a boy! And the legs!... I can't look at him..." different voices were saying. Natasha, the young Melyukovs' favorite, disappeared with them into the back rooms where a cork and various dressing gowns and male garments were called for and received from the footman by bare girlish arms from behind the door. Ten minutes later, all the young Melyukovs joined the mummers. Pelageya Danilovna, having given orders to clear the rooms for the visitors and arranged about refreshments for the gentry and the serfs, went about among the mummers without removing her spectacles, peering into their faces with a suppressed smile and failing to recognize any of them. It was not merely Dimmler and the Rostovs she failed to recognize, she did not even recognize her own daughters, or her late husband's, dressing gowns and uniforms, which they had put on. "And who is is this?" she asked her governess, peering into the face of her own daughter dressed up as a Kazan-Tartar. "I suppose it is one of the Rostovs! Well, Mr. Hussar, and what regiment do you serve in?" she asked Natasha. "Here, hand some fruit jelly to the Turk!" she ordered the butler who was handing things round. "That's not forbidden by his law." Sometimes, as she looked at the strange but amusing capers cut by the dancers, who--having decided once for all that being disguised, no one would recognize them--were not at all shy, Pelageya Danilovna hid her face in her handkerchief, and her whole stout body shook with irrepressible, kindly, elderly laughter. "My little Sasha! Look at Sasha!" she said. After Russian country dances and chorus dances, Pelageya Danilovna made the serfs and gentry join in one large circle: a ring, a string, and a silver ruble were fetched and they all played games together. In an hour, all the costumes were crumpled and disordered. The corked eyebrows and mustaches were smeared over the perspiring, flushed, and merry faces. Pelageya Danilovna began to recognize the mummers, admired their cleverly contrived costumes, and particularly how they suited the young ladies, and she thanked them all for having entertained her so well. The visitors were invited to supper in the drawing room, and the serfs had something served to them in the ballroom. "Now to tell one's fortune in the empty bathhouse is frightening!" said an old maid who lived with the Melyukovs, during supper. "Why?" said the eldest Melyukov girl. "You wouldn't go, it takes courage..." "I'll go," said Sonya. "Tell what happened to the young lady!" said the second Melyukov girl. "Well," began the old maid, "a young lady once went out, took a cock, laid the table for two, all properly, and sat down. After sitting a while, she suddenly hears someone coming... a sleigh drives up with harness bells; she hears him coming! He comes in, just in the shape of a man, like an officer--comes in and sits down to table with her." "Ah! ah!" screamed Natasha, rolling her eyes with horror. "Yes? And how... did he speak?" "Yes, like a man. Everything quite all right, and he began persuading her; and she should have kept him talking till cockcrow, but she got frightened, just got frightened and hid her face in her hands. Then he caught her up. It was lucky the maids ran in just then..." "Now, why frighten them?" said Pelageya Danilovna. "Mamma, you used to try your fate yourself..." said her daughter. "And how does one do it in a barn?" inquired Sonya. "Well, say you went to the barn now, and listened. It depends on what you hear; hammering and knocking--that's bad; but a sound of shifting grain is good and one sometimes hears that, too." "Mamma, tell us what happened to you in the barn." Pelageya Danilovna smiled. "Oh, I've forgotten..." she replied. "But none of you would go?" "Yes, I will; Pelageya Danilovna, let me! I'll go," said Sonya. "Well, why not, if you're not afraid?" "Louisa Ivanovna, may I?" asked Sonya. Whether they were playing the ring and string game or the ruble game or talking as now, Nicholas did not leave Sonya's side, and gazed at her with quite new eyes. It seemed to him that it was only today, thanks to that burnt-cork mustache, that he had fully learned to know her. And really, that evening, Sonya was brighter, more animated, and prettier than Nicholas had ever seen her before. "So that's what she is like; what a fool I have been!" he thought gazing at her sparkling eyes, and under the mustache a happy rapturous smile dimpled her cheeks, a smile he had never seen before. "I'm not afraid of anything," said Sonya. "May I go at once?" She got up. They told her where the barn was and how she should stand and listen, and they handed her a fur cloak. She threw this over her head and shoulders and glanced at Nicholas. "What a darling that girl is!" thought he. "And what have I been thinking of till now?" Sonya went out into the passage to go to the barn. Nicholas went hastily to the front porch, saying he felt too hot. The crowd of people really had made the house stuffy. Outside, there was the same cold stillness and the same moon, but even brighter than before. The light was so strong and the snow sparkled with so many stars that one did not wish to look up at the sky and the real stars were unnoticed. The sky was black and dreary, while the earth was gay. "I am a fool, a fool! what have I been waiting for?" thought Nicholas, and running out from the porch he went round the corner of the house and along the path that led to the back porch. He knew Sonya would pass that way. Halfway lay some snow-covered piles of firewood and across and along them a network of shadows from the bare old lime trees fell on the snow and on the path. This path led to the barn. The log walls of the barn and its snow-covered roof, that looked as if hewn out of some precious stone, sparkled in the moonlight. A tree in the garden snapped with the frost, and then all was again perfectly silent. His bosom seemed to inhale not air but the strength of eternal youth and gladness. From the back porch came the sound of feet descending the steps, the bottom step upon which snow had fallen gave a ringing creak and he heard the voice of an old maidservant saying, "Straight, straight, along the path, Miss. Only, don't look back." "I am not afraid," answered Sonya's voice, and along the path toward Nicholas came the crunching, whistling sound of Sonya's feet in her thin shoes. Sonya came along, wrapped in her cloak. She was only a couple of paces away when she saw him, and to her too he was not the Nicholas she had known and always slightly feared. He was in a woman's dress, with tousled hair and a happy smile new to Sonya. She ran rapidly toward him. "Quite different and yet the same," thought Nicholas, looking at her face all lit up by the moonlight. He slipped his arms under the cloak that covered her head, embraced her, pressed her to him, and kissed her on the lips that wore a mustache and had a smell of burnt cork. Sonya kissed him full on the lips, and disengaging her little hands pressed them to his cheeks. "Sonya!... Nicholas!"... was all they said. They ran to the barn and then back again, re-entering, he by the front and she by the back porch. CHAPTER XII When they all drove back from Pelageya Danilovna's, Natasha, who always saw and noticed everything, arranged that she and Madame Schoss should go back in the sleigh with Dimmler, and Sonya with Nicholas and the maids. On the way back Nicholas drove at a steady pace instead of racing and kept peering by that fantastic all-transforming light into Sonya's face and searching beneath the eyebrows and mustache for his former and his present Sonya from whom he had resolved never to be parted again. He looked and recognizing in her both the old and the new Sonya, and being reminded by the smell of burnt cork of the sensation of her kiss, inhaled the frosty air with a full breast and, looking at the ground flying beneath him and at the sparkling sky, felt himself again in fairyland. "Sonya, is it well with thee?" he asked from time to time. "Yes!" she replied. "And with thee?" When halfway home Nicholas handed the reins to the coachman and ran for a moment to Natasha's sleigh and stood on its wing. "Natasha!" he whispered in French, "do you know I have made up my mind about Sonya?" "Have you told her?" asked Natasha, suddenly beaming all over with joy. "Oh, how strange you are with that mustache and those eyebrows!... Natasha--are you glad?" "I am so glad, so glad! I was beginning to be vexed with you. I did not tell you, but you have been treating her badly. What a heart she has, Nicholas! I am horrid sometimes, but I was ashamed to be happy while Sonya was not," continued Natasha. "Now I am so glad! Well, run back to her." "No, wait a bit.... Oh, how funny you look!" cried Nicholas, peering into her face and finding in his sister too something new, unusual, and bewitchingly tender that he had not seen in her before. "Natasha, it's magical, isn't it?" "Yes," she replied. "You have done splendidly." "Had I seen her before as she is now," thought Nicholas, "I should long ago have asked her what to do and have done whatever she told me, and all would have been well." "So you are glad and I have done right?" "Oh, quite right! I had a quarrel with Mamma some time ago about it. Mamma said she was angling for you. How could she say such a thing! I nearly stormed at Mamma. I will never let anyone say anything bad of Sonya, for there is nothing but good in her." "Then it's all right?" said Nicholas, again scrutinizing the expression of his sister's face to see if she was in earnest. Then he jumped down and, his boots scrunching the snow, ran back to his sleigh. The same happy, smiling Circassian, with mustache and beaming eyes looking up from under a sable hood, was still sitting there, and that Circassian was Sonya, and that Sonya was certainly his future happy and loving wife. When they reached home and had told their mother how they had spent the evening at the Melyukovs', the girls went to their bedroom. When they had undressed, but without washing off the cork mustaches, they sat a long time talking of their happiness. They talked of how they would live when they were married, how their husbands would be friends, and how happy they would be. On Natasha's table stood two looking glasses which Dunyasha had prepared beforehand. "Only when will all that be? I am afraid never.... It would be too good!" said Natasha, rising and going to the looking glasses. "Sit down, Natasha; perhaps you'll see him," said Sonya. Natasha lit the candles, one on each side of one of the looking glasses, and sat down. "I see someone with a mustache," said Natasha, seeing her own face. "You mustn't laugh, Miss," said Dunyasha. With Sonya's help and the maid's, Natasha got the glass she held into the right position opposite the other; her face assumed a serious expression and she sat silent. She sat a long time looking at the receding line of candles reflected in the glasses and expecting (from tales she had heard) to see a coffin, or him, Prince Andrew, in that last dim, indistinctly outlined square. But ready as she was to take the smallest speck for the image of a man or of a coffin, she saw nothing. She began blinking rapidly and moved away from the looking glasses. "Why is it others see things and I don't?" she said. "You sit down now, Sonya. You absolutely must, tonight! Do it for me.... Today I feel so frightened!" Sonya sat down before the glasses, got the right position, and began looking. "Now, Miss Sonya is sure to see something," whispered Dunyasha; "while you do nothing but laugh." Sonya heard this and Natasha's whisper: "I know she will. She saw something last year." For about three minutes all were silent. "Of course she will!" whispered Natasha, but did not finish... suddenly Sonya pushed away the glass she was holding and covered her eyes with her hand. "Oh, Natasha!" she cried. "Did you see? Did you? What was it?" exclaimed Natasha, holding up the looking glass. Sonya had not seen anything, she was just wanting to blink and to get up when she heard Natasha say, "Of course she will!" She did not wish to disappoint either Dunyasha or Natasha, but it was hard to sit still. She did not herself know how or why the exclamation escaped her when she covered her eyes. "You saw him?" urged Natasha, seizing her hand. "Yes. Wait a bit... I... saw him," Sonya could not help saying, not yet knowing whom Natasha meant by him, Nicholas or Prince Andrew. "But why shouldn't I say I saw something? Others do see! Besides who can tell whether I saw anything or not?" flashed through Sonya's mind. "Yes, I saw him," she said. "How? Standing or lying?" "No, I saw... At first there was nothing, then I saw him lying down." "Andrew lying? Is he ill?" asked Natasha, her frightened eyes fixed on her friend. "No, on the contrary, on the contrary! His face was cheerful, and he turned to me." And when saying this she herself fancied she had really seen what she described. "Well, and then, Sonya?..." "After that, I could not make out what there was; something blue and red..." "Sonya! When will he come back? When shall I see him! O, God, how afraid I am for him and for myself and about everything!..." Natasha began, and without replying to Sonya's words of comfort she got into bed, and long after her candle was out lay open-eyed and motionless, gazing at the moonlight through the frosty windowpanes. CHAPTER XIII Soon after the Christmas holidays Nicholas told his mother of his love for Sonya and of his firm resolve to marry her. The countess, who had long noticed what was going on between them and was expecting this declaration, listened to him in silence and then told her son that he might marry whom he pleased, but that neither she nor his father would give their blessing to such a marriage. Nicholas, for the first time, felt that his mother was displeased with him and that, despite her love for him, she would not give way. Coldly, without looking at her son, she sent for her husband and, when he came, tried briefly and coldly to inform him of the facts, in her son's presence, but unable to restrain herself she burst into tears of vexation and left the room. The old count began irresolutely to admonish Nicholas and beg him to abandon his purpose. Nicholas replied that he could not go back on his word, and his father, sighing and evidently disconcerted, very soon became silent and went in to the countess. In all his encounters with his son, the count was always conscious of his own guilt toward him for having wasted the family fortune, and so he could not be angry with him for refusing to marry an heiress and choosing the dowerless Sonya. On this occasion, he was only more vividly conscious of the fact that if his affairs had not been in disorder, no better wife for Nicholas than Sonya could have been wished for, and that no one but himself with his Mitenka and his uncomfortable habits was to blame for the condition of the family finances. The father and mother did not speak of the matter to their son again, but a few days later the countess sent for Sonya and, with a cruelty neither of them expected, reproached her niece for trying to catch Nicholas and for ingratitude. Sonya listened silently with downcast eyes to the countess' cruel words, without understanding what was required of her. She was ready to sacrifice everything for her benefactors. Self-sacrifice was her most cherished idea but in this case she could not see what she ought to sacrifice, or for whom. She could not help loving the countess and the whole Rostov family, but neither could she help loving Nicholas and knowing that his happiness depended on that love. She was silent and sad and did not reply. Nicholas felt the situation to be intolerable and went to have an explanation with his mother. He first implored her to forgive him and Sonya and consent to their marriage, then he threatened that if she molested Sonya he would at once marry her secretly. The countess, with a coldness her son had never seen in her before, replied that he was of age, that Prince Andrew was marrying without his father's consent, and he could do the same, but that she would never receive that intriguer as her daughter. Exploding at the word intriguer, Nicholas, raising his voice, told his mother he had never expected her to try to force him to sell his feelings, but if that were so, he would say for the last time.... But he had no time to utter the decisive word which the expression of his face caused his mother to await with terror, and which would perhaps have forever remained a cruel memory to them both. He had not time to say it, for Natasha, with a pale and set face, entered the room from the door at which she had been listening. "Nicholas, you are talking nonsense! Be quiet, be quiet, be quiet, I tell you!..." she almost screamed, so as to drown his voice. "Mamma darling, it's not at all so... my poor, sweet darling," she said to her mother, who conscious that they had been on the brink of a rupture gazed at her son with terror, but in the obstinacy and excitement of the conflict could not and would not give way. "Nicholas, I'll explain to you. Go away! Listen, Mamma darling," said Natasha. Her words were incoherent, but they attained the purpose at which she was aiming. The countess, sobbing heavily, hid her face on her daughter's breast, while Nicholas rose, clutching his head, and left the room. Natasha set to work to effect a reconciliation, and so far succeeded that Nicholas received a promise from his mother that Sonya should not be troubled, while he on his side promised not to undertake anything without his parents' knowledge. Firmly resolved, after putting his affairs in order in the regiment, to retire from the army and return and marry Sonya, Nicholas, serious, sorrowful, and at variance with his parents, but, as it seemed to him, passionately in love, left at the beginning of January to rejoin his regiment. After Nicholas had gone things in the Rostov household were more depressing than ever, and the countess fell ill from mental agitation. Sonya was unhappy at the separation from Nicholas and still more so on account of the hostile tone the countess could not help adopting toward her. The count was more perturbed than ever by the condition of his affairs, which called for some decisive action. Their town house and estate near Moscow had inevitably to be sold, and for this they had to go to Moscow. But the countess' health obliged them to delay their departure from day to day. Natasha, who had borne the first period of separation from her betrothed lightly and even cheerfully, now grew more agitated and impatient every day. The thought that her best days, which she would have employed in loving him, were being vainly wasted, with no advantage to anyone, tormented her incessantly. His letters for the most part irritated her. It hurt her to think that while she lived only in the thought of him, he was living a real life, seeing new places and new people that interested him. The more interesting his letters were the more vexed she felt. Her letters to him, far from giving her any comfort, seemed to her a wearisome and artificial obligation. She could not write, because she could not conceive the possibility of expressing sincerely in a letter even a thousandth part of what she expressed by voice, smile, and glance. She wrote to him formal, monotonous, and dry letters, to which she attached no importance herself, and in the rough copies of which the countess corrected her mistakes in spelling. There was still no improvement in the countess' health, but it was impossible to defer the journey to Moscow any longer. Natasha's trousseau had to be ordered and the house sold. Moreover, Prince Andrew was expected in Moscow, where old Prince Bolkonski was spending the winter, and Natasha felt sure he had already arrived. So the countess remained in the country, and the count, taking Sonya and Natasha with him, went to Moscow at the end of January. BOOK EIGHT: 1811 --12 CHAPTER I After Prince Andrews engagement to Natasha, Pierre without any apparent cause suddenly felt it impossible to go on living as before. Firmly convinced as he was of the truths revealed to him by his benefactor, and happy as he had been in perfecting his inner man, to which he had devoted himself with such ardor--all the zest of such a life vanished after the engagement of Andrew and Natasha and the death of Joseph Alexeevich, the news of which reached him almost at the same time. Only the skeleton of life remained: his house, a brilliant wife who now enjoyed the favors of a very important personage, acquaintance with all Petersburg, and his court service with its dull formalities. And this life suddenly seemed to Pierre unexpectedly loathsome. He ceased keeping a diary, avoided the company of the Brothers, began going to the Club again, drank a great deal, and came once more in touch with the bachelor sets, leading such a life that the Countess Helene thought it necessary to speak severely to him about it. Pierre felt that she right, and to avoid compromising her went away to Moscow. In Moscow as soon as he entered his huge house in which the faded and fading princesses still lived, with its enormous retinue; as soon as, driving through the town, he saw the Iberian shrine with innumerable tapers burning before the golden covers of the icons, the Kremlin Square with its snow undisturbed by vehicles, the sleigh drivers and hovels of the Sivtsev Vrazhok, those old Moscovites who desired nothing, hurried nowhere, and were ending their days leisurely; when he saw those old Moscow ladies, the Moscow balls, and the English Club, he felt himself at home in a quiet haven. In Moscow he felt at peace, at home, warm and dirty as in an old dressing gown. Moscow society, from the old women down to the children, received Pierre like a long-expected guest whose place was always ready awaiting him. For Moscow society Pierre was the nicest, kindest, most intellectual, merriest, and most magnanimous of cranks, a heedless, genial nobleman of the old Russian type. His purse was always empty because it was open to everyone. Benefit performances, poor pictures, statues, benevolent societies, gypsy choirs, schools, subscription dinners, sprees, Freemasons, churches, and books--no one and nothing met with a refusal from him, and had it not been for two friends who had borrowed large sums from him and taken him under their protection, he would have given everything away. There was never a dinner or soiree at the Club without him. As soon as he sank into his place on the sofa after two bottles of Margaux he was surrounded, and talking, disputing, and joking began. When there were quarrels, his kindly smile and well-timed jests reconciled the antagonists. The Masonic dinners were dull and dreary when he was not there. When after a bachelor supper he rose with his amiable and kindly smile, yielding to the entreaties of the festive company to drive off somewhere with them, shouts of delight and triumph arose among the young men. At balls he danced if a partner was needed. Young ladies, married and unmarried, liked him because without making love to any of them, he was equally amiable to all, especially after supper. "Il est charmant; il n'a pas de sexe,"* they said of him. *"He is charming; he has no sex." Pierre was one of those retired gentlemen-in-waiting of whom there were hundreds good-humoredly ending their days in Moscow. How horrified he would have been seven years before, when he first arrived from abroad, had he been told that there was no need for him to seek or plan anything, that his rut had long been shaped, eternally predetermined, and that wriggle as he might, he would be what all in his position were. He could not have believed it! Had he not at one time longed with all his heart to establish a republic in Russia; then himself to be a Napoleon; then to be a philosopher; and then a strategist and the conqueror of Napoleon? Had he not seen the possibility of, and passionately desired, the regeneration of the sinful human race, and his own progress to the highest degree of perfection? Had he not established schools and hospitals and liberated his serfs? But instead of all that--here he was, the wealthy husband of an unfaithful wife, a retired gentleman-in-waiting, fond of eating and drinking and, as he unbuttoned his waistcoat, of abusing the government a bit, a member of the Moscow English Club, and a universal favorite in Moscow society. For a long time he could not reconcile himself to the idea that he was one of those same retired Moscow gentlemen-in-waiting he had so despised seven years before. Sometimes he consoled himself with the thought that he was only living this life temporarily; but then he was shocked by the thought of how many, like himself, had entered that life and that Club temporarily, with all their teeth and hair, and had only left it when not a single tooth or hair remained. In moments of pride, when he thought of his position it seemed to him that he was quite different and distinct from those other retired gentlemen-in-waiting he had formerly despised: they were empty, stupid, contented fellows, satisfied with their position, "while I am still discontented and want to do something for mankind. But perhaps all these comrades of mine struggled just like me and sought something new, a path in life of their own, and like me were brought by force of circumstances, society, and race--by that elemental force against which man is powerless--to the condition I am in," said he to himself in moments of humility; and after living some time in Moscow he no longer despised, but began to grow fond of, to respect, and to pity his comrades in destiny, as he pitied himself. Pierre longer suffered moments of despair, hypochondria, and disgust with life, but the malady that had formerly found expression in such acute attacks was driven inwards and never left him for a moment. "What for? Why? What is going on in the world?" he would ask himself in perplexity several times a day, involuntarily beginning to reflect anew on the meaning of the phenomena of life; but knowing by experience that there were no answers to these questions he made haste to turn away from them, and took up a book, or hurried of to the Club or to Apollon Nikolaevich's, to exchange the gossip of the town. "Helene, who has never cared for anything but her own body and is one of the stupidest women in the world," thought Pierre, "is regarded by people as the acme of intelligence and refinement, and they pay homage to her. Napoleon Bonaparte was despised by all as long as he was great, but now that he has become a wretched comedian the Emperor Francis wants to offer him his daughter in an illegal marriage. The Spaniards, through the Catholic clergy, offer praise to God for their victory over the French on the fourteenth of June, and the French, also through the Catholic clergy, offer praise because on that same fourteenth of June they defeated the Spaniards. My brother Masons swear by the blood that they are ready to sacrifice everything for their neighbor, but they do not give a ruble each to the collections for the poor, and they intrigue, the Astraea Lodge against the Manna Seekers, and fuss about an authentic Scotch carpet and a charter that nobody needs, and the meaning of which the very man who wrote it does not understand. We all profess the Christian law of forgiveness of injuries and love of our neighbors, the law in honor of which we have built in Moscow forty times forty churches--but yesterday a deserter was knouted to death and a minister of that same law of love and forgiveness, a priest, gave the soldier a cross to kiss before his execution." So thought Pierre, and the whole of this general deception which everyone accepts, accustomed as he was to it, astonished him each time as if it were something new. "I understand the deception and confusion," he thought, "but how am I to tell them all that I see? I have tried, and have always found that they too in the depths of their souls understand it as I do, and only try not to see it. So it appears that it must be so! But I- what is to become of me?" thought he. He had the unfortunate capacity many men, especially Russians, have of seeing and believing in the possibility of goodness and truth, but of seeing the evil and falsehood of life too clearly to be able to take a serious part in it. Every sphere of work was connected, in his eyes, with evil and deception. Whatever he tried to be, whatever he engaged in, the evil and falsehood of it repulsed him and blocked every path of activity. Yet he had to live and to find occupation. It was too dreadful to be under the burden of these insoluble problems, so he abandoned himself to any distraction in order to forget them. He frequented every kind of society, drank much, bought pictures, engaged in building, and above all--read. He read, and read everything that came to hand. On coming home, while his valets were still taking off his things, he picked up a book and began to read. From reading he passed to sleeping, from sleeping to gossip in drawing rooms of the Club, from gossip to carousals and women; from carousals back to gossip, reading, and wine. Drinking became more and more a physical and also a moral necessity. Though the doctors warned him that with his corpulence wine was dangerous for him, he drank a great deal. He was only quite at ease when having poured several glasses of wine mechanically into his large mouth he felt a pleasant warmth in his body, an amiability toward all his fellows, and a readiness to respond superficially to every idea without probing it deeply. Only after emptying a bottle or two did he feel dimly that the terribly tangled skein of life which previously had terrified him was not as dreadful as he had thought. He was always conscious of some aspect of that skein, as with a buzzing in his head after dinner or supper he chatted or listened to conversation or read. But under the influence of wine he said to himself: "It doesn't matter. I'll get it unraveled. I have a solution ready, but have no time now--I'll think it all out later on!" But the later on never came. In the morning, on an empty stomach, all the old questions appeared as insoluble and terrible as ever, and Pierre hastily picked up a book, and if anyone came to see him he was glad. Sometimes he remembered how he had heard that soldiers in war when entrenched under the enemy's fire, if they have nothing to do, try hard to find some occupation the more easily to bear the danger. To Pierre all men seemed like those soldiers, seeking refuge from life: some in ambition, some in cards, some in framing laws, some in women, some in toys, some in horses, some in politics, some in sport, some in wine, and some in governmental affairs. "Nothing is trivial, and nothing is important, it's all the same--only to save oneself from it as best one can," thought Pierre. "Only not to see it, that dreadful it!" CHAPTER II At the beginning of winter Prince Nicholas Bolkonski and his daughter moved to Moscow. At that time enthusiasm for the Emperor Alexander's regime had weakened and a patriotic and anti-French tendency prevailed there, and this, together with his past and his intellect and his originality, at once made Prince Nicholas Bolkonski an object of particular respect to the Moscovites and the center of the Moscow opposition to the government. The prince had aged very much that year. He showed marked signs of senility by a tendency to fall asleep, forgetfulness of quite recent events, remembrance of remote ones, and the childish vanity with which he accepted the role of head of the Moscow opposition. In spite of this the old man inspired in all his visitors alike a feeling of respectful veneration--especially of an evening when he came in to tea in his old-fashioned coat and powdered wig and, aroused by anyone, told his abrupt stories of the past, or uttered yet more abrupt and scathing criticisms of the present. For them all, that old-fashioned house with its gigantic mirrors, pre-Revolution furniture, powdered footmen, and the stern shrewd old man (himself a relic of the past century) with his gentle daughter and the pretty Frenchwoman who were reverently devoted to him presented a majestic and agreeable spectacle. But the visitors did not reflect that besides the couple of hours during which they saw their host, there were also twenty-two hours in the day during which the private and intimate life of the house continued. Latterly that private life had become very trying for Princess Mary. There in Moscow she was deprived of her greatest pleasures--talks with the pilgrims and the solitude which refreshed her at Bald Hills--and she had none of the advantages and pleasures of city life. She did not go out into society; everyone knew that her father would not let her go anywhere without him, and his failing health prevented his going out himself, so that she was not invited to dinners and evening parties. She had quite abandoned the hope of getting married. She saw the coldness and malevolence with which the old prince received and dismissed the young men, possible suitors, who sometimes appeared at their house. She had no friends: during this visit to Moscow she had been disappointed in the two who had been nearest to her. Mademoiselle Bourienne, with whom she had never been able to be quite frank, had now become unpleasant to her, and for various reasons Princess Mary avoided her. Julie, with whom she had corresponded for the last five years, was in Moscow, but proved to be quite alien to her when they met. Just then Julie, who by the death of her brothers had become one of the richest heiresses in Moscow, was in the full whirl of society pleasures. She was surrounded by young men who, she fancied, had suddenly learned to appreciate her worth. Julie was at that stage in the life of a society woman when she feels that her last chance of marrying has come and that her fate must be decided now or never. On Thursdays Princess Mary remembered with a mournful smile that she now had no one to write to, since Julie--whose presence gave her no pleasure was here and they met every week. Like the old emigre who declined to marry the lady with whom he had spent his evenings for years, she regretted Julie's presence and having no one to write to. In Moscow Princess Mary had no one to talk to, no one to whom to confide her sorrow, and much sorrow fell to her lot just then. The time for Prince Andrew's return and marriage was approaching, but his request to her to prepare his father for it had not been carried out; in fact, it seemed as if matters were quite hopeless, for at every mention of the young Countess Rostova the old prince (who apart from that was usually in a bad temper) lost control of himself. Another lately added sorrow arose from the lessons she gave her six year-old nephew. To her consternation she detected in herself in relation to little Nicholas some symptoms of her father's irritability. However often she told herself that she must not get irritable when teaching her nephew, almost every time that, pointer in hand, she sat down to show him the French alphabet, she so longed to pour her own knowledge quickly and easily into the child--who was already afraid that Auntie might at any moment get angry--that at his slightest inattention she trembled, became flustered and heated, raised her voice, and sometimes pulled him by the arm and put him in the corner. Having put him in the corner she would herself begin to cry over her cruel, evil nature, and little Nicholas, following her example, would sob, and without permission would leave his corner, come to her, pull her wet hands from her face, and comfort her. But what distressed the princess most of all was her father's irritability, which was always directed against her and had of late amounted to cruelty. Had he forced her to prostrate herself to the ground all night, had he beaten her or made her fetch wood or water, it would never have entered her mind to think her position hard; but this loving despot--the more cruel because he loved her and for that reason tormented himself and her--knew how not merely to hurt and humiliate her deliberately, but to show her that she was always to blame for everything. Of late he had exhibited a new trait that tormented Princess Mary more than anything else; this was his ever-increasing intimacy with Mademoiselle Bourienne. The idea that at the first moment of receiving the news of his son's intentions had occurred to him in jest--that if Andrew got married he himself would marry Bourienne--had evidently pleased him, and latterly he had persistently, and as it seemed to Princess Mary merely to offend her, shown special endearments to the companion and expressed his dissatisfaction with his daughter by demonstrations of love of Bourienne. One day in Moscow in Princess Mary's presence (she thought her father did it purposely when she was there) the old prince kissed Mademoiselle Bourienne's hand and, drawing her to him, embraced her affectionately. Princess Mary flushed and ran out of the room. A few minutes later Mademoiselle Bourienne came into Princess Mary's room smiling and making cheerful remarks in her agreeable voice. Princess Mary hastily wiped away her tears, went resolutely up to Mademoiselle Bourienne, and evidently unconscious of what she was doing began shouting in angry haste at the Frenchwoman, her voice breaking: "It's horrible, vile, inhuman, to take advantage of the weakness..." She did not finish. "Leave my room," she exclaimed, and burst into sobs. Next day the prince did not say a word to his daughter, but she noticed that at dinner he gave orders that Mademoiselle Bourienne should be served first. After dinner, when the footman handed coffee and from habit began with the princess, the prince suddenly grew furious, threw his stick at Philip, and instantly gave instructions to have him conscripted for the army. "He doesn't obey... I said it twice... and he doesn't obey! She is the first person in this house; she's my best friend," cried the prince. "And if you allow yourself," he screamed in a fury, addressing Princess Mary for the first time, "to forget yourself again before her as you dared to do yesterday, I will show you who is master in this house. Go! Don't let me set eyes on you; beg her pardon!" Princess Mary asked Mademoiselle Bourienne's pardon, and also her father's pardon for herself and for Philip the footman, who had begged for her intervention. At such moments something like a pride of sacrifice gathered in her soul. And suddenly that father whom she had judged would look for his spectacles in her presence, fumbling near them and not seeing them, or would forget something that had just occurred, or take a false step with his failing legs and turn to see if anyone had noticed his feebleness, or, worst of all, at dinner when there were no visitors to excite him would suddenly fall asleep, letting his napkin drop and his shaking head sink over his plate. "He is old and feeble, and I dare to condemn him!" she thought at such moments, with a feeling of revulsion against herself. CHAPTER III In 1811 there was living in Moscow a French doctor--Metivier--who had rapidly become the fashion. He was enormously tall, handsome, amiable as Frenchmen are, and was, as all Moscow said, an extraordinarily clever doctor. He was received in the best houses not merely as a doctor, but as an equal. Prince Nicholas had always ridiculed medicine, but latterly on Mademoiselle Bourienne's advice had allowed this doctor to visit him and had grown accustomed to him. Metivier came to see the prince about twice a week. On December 6--St. Nicholas' Day and the prince's name day--all Moscow came to the prince's front door but he gave orders to admit no one and to invite to dinner only a small number, a list of whom he gave to Princess Mary. Metivier, who came in the morning with his felicitations, considered it proper in his quality of doctor de forcer la consigne,* as he told Princess Mary, and went in to see the prince. It happened that on that morning of his name day the prince was in one of his worst moods. He had been going about the house all the morning finding fault with everyone and pretending not to understand what was said to him and not to be understood himself. Princess Mary well knew this mood of quiet absorbed querulousness, which generally culminated in a burst of rage, and she went about all that morning as though facing a cocked and loaded gun and awaited the inevitable explosion. Until the doctor's arrival the morning had passed off safely. After admitting the doctor, Princess Mary sat down with a book in the drawing room near the door through which she could hear all that passed in the study. *To force the guard. At first she heard only Metivier's voice, then her father's, then both voices began speaking at the same time, the door was flung open, and on the threshold appeared the handsome figure of the terrified Metivier with his shock of black hair, and the prince in his dressing gown and fez, his face distorted with fury and the pupils of his eyes rolled downwards. "You don't understand?" shouted the prince, "but I do! French spy, slave of Buonaparte, spy, get out of my house! Be off, I tell you..." Metivier, shrugging his shoulders, went up to Mademoiselle Bourienne who at the sound of shouting had run in from an adjoining room. "The prince is not very well: bile and rush of blood to the head. Keep calm, I will call again tomorrow," said Metivier; and putting his fingers to his lips he hastened away. Through the study door came the sound of slippered feet and the cry: "Spies, traitors, traitors everywhere! Not a moment's peace in my own house!" After Metivier's departure the old prince called his daughter in, and the whole weight of his wrath fell on her. She was to blame that a spy had been admitted. Had he not told her, yes, told her to make a list, and not to admit anyone who was not on that list? Then why was that scoundrel admitted? She was the cause of it all. With her, he said, he could not have a moment's peace and could not die quietly. "No, ma'am! We must part, we must part! Understand that, understand it! I cannot endure any more," he said, and left the room. Then, as if afraid she might find some means of consolation, he returned and trying to appear calm added: "And don't imagine I have said this in a moment of anger. I am calm. I have thought it over, and it will be carried out--we must part; so find some place for yourself...." But he could not restrain himself and with the virulence of which only one who loves is capable, evidently suffering himself, he shook his fists at her and screamed: "If only some fool would marry her!" Then he slammed the door, sent for Mademoiselle Bourienne, and subsided into his study. At two o'clock the six chosen guests assembled for dinner. These guests--the famous Count Rostopchin, Prince Lopukhin with his nephew, General Chatrov an old war comrade of the prince's, and of the younger generation Pierre and Boris Drubetskoy--awaited the prince in the drawing room. Boris, who had come to Moscow on leave a few days before, had been anxious to be presented to Prince Nicholas Bolkonski, and had contrived to ingratiate himself so well that the old prince in his case made an exception to the rule of not receiving bachelors in his house. The prince's house did not belong to what is known as fashionable society, but his little circle--though not much talked about in town--was one it was more flattering to be received in than any other. Boris had realized this the week before when the commander in chief in his presence invited Rostopchin to dinner on St. Nicholas' Day, and Rostopchin had replied that he could not come: "On that day I always go to pay my devotions to the relics of Prince Nicholas Bolkonski." "Oh, yes, yes!" replied the commander in chief. "How is he?..." The small group that assembled before dinner in the lofty old-fashioned drawing room with its old furniture resembled the solemn gathering of a court of justice. All were silent or talked in low tones. Prince Nicholas came in serious and taciturn. Princess Mary seemed even quieter and more diffident than usual. The guests were reluctant to address her, feeling that she was in no mood for their conversation. Count Rostopchin alone kept the conversation going, now relating the latest town news, and now the latest political gossip. Lopukhin and the old general occasionally took part in the conversation. Prince Bolkonski listened as a presiding judge receives a report, only now and then, silently or by a brief word, showing that he took heed of what was being reported to him. The tone of the conversation was such as indicated that no one approved of what was being done in the political world. Incidents were related evidently confirming the opinion that everything was going from bad to worse, but whether telling a story or giving an opinion the speaker always stopped, or was stopped, at the point beyond which his criticism might touch the sovereign himself. At dinner the talk turned on the latest political news: Napoleon's seizure of the Duke of Oldenburg's territory, and the Russian Note, hostile to Napoleon, which had been sent to all the European courts. "Bonaparte treats Europe as a pirate does a captured vessel," said Count Rostopchin, repeating a phrase he had uttered several times before. "One only wonders at the long-suffering or blindness of the crowned heads. Now the Pope's turn has come and Bonaparte doesn't scruple to depose the head of the Catholic Church--yet all keep silent! Our sovereign alone has protested against the seizure of the Duke of Oldenburg's territory, and even..." Count Rostopchin paused, feeling that he had reached the limit beyond which censure was impossible. "Other territories have been offered in exchange for the Duchy of Oldenburg," said Prince Bolkonski. "He shifts the Dukes about as I might move my serfs from Bald Hills to Bogucharovo or my Ryazan estates." "The Duke of Oldenburg bears his misfortunes with admirable strength of character and resignation," remarked Boris, joining in respectfully. He said this because on his journey from Petersburg he had had the honor of being presented to the Duke. Prince Bolkonski glanced at the young man as if about to say something in reply, but changed his mind, evidently considering him too young. "I have read our protests about the Oldenburg affair and was surprised how badly the Note was worded," remarked Count Rostopchin in the casual tone of a man dealing with a subject quite familiar to him. Pierre looked at Rostopchin with naive astonishment, not understanding why he should be disturbed by the bad composition of the Note. "Does it matter, Count, how the Note is worded," he asked, "so long as its substance is forcible?" "My dear fellow, with our five hundred thousand troops it should be easy to have a good style," returned Count Rostopchin. Pierre now understood the count's dissatisfaction with the wording of the Note. "One would have thought quill drivers enough had sprung up," remarked the old prince. "There in Petersburg they are always writing- not notes only but even new laws. My Andrew there has written a whole volume of laws for Russia. Nowadays they are always writing!" and he laughed unnaturally. There was a momentary pause in the conversation; the old general cleared his throat to draw attention. "Did you hear of the last event at the review in Petersburg? The figure cut by the new French ambassador." "Eh? Yes, I heard something: he said something awkward in His Majesty's presence." "His Majesty drew attention to the Grenadier division and to the march past," continued the general, "and it seems the ambassador took no notice and allowed himself to reply that: 'We in France pay no attention to such trifles!' The Emperor did not condescend to reply. At the next review, they say, the Emperor did not once deign to address him." All were silent. On this fact relating to the Emperor personally, it was impossible to pass any judgment. "Impudent fellows!" said the prince. "You know Metivier? I turned him out of my house this morning. He was here; they admitted him spite of my request that they should let no one in," he went on, glancing angrily at his daughter. And he narrated his whole conversation with the French doctor and the reasons that convinced him that Metivier was a spy. Though these reasons were very insufficient and obscure, no one made any rejoinder. After the roast, champagne was served. The guests rose to congratulate the old prince. Princess Mary, too, went round to him. He gave her a cold, angry look and offered her his wrinkled, clean-shaven cheek to kiss. The whole expression of his face told her that he had not forgotten the morning's talk, that his decision remained in force, and only the presence of visitors hindered his speaking of it to her now. When they went into the drawing room where coffee was served, the old men sat together. Prince Nicholas grew more animated and expressed his views on the impending war. He said that our wars with Bonaparte would be disastrous so long as we sought alliances with the Germans and thrust ourselves into European affairs, into which we had been drawn by the Peace of Tilsit. "We ought not to fight either for or against Austria. Our political interests are all in the East, and in regard to Bonaparte the only thing is to have an armed frontier and a firm policy, and he will never dare to cross the Russian frontier, as was the case in 1807!" "How can we fight the French, Prince?" said Count Rostopchin. "Can we arm ourselves against our teachers and divinities? Look at our youths, look at our ladies! The French are our Gods: Paris is our Kingdom of Heaven." He began speaking louder, evidently to be heard by everyone. "French dresses, French ideas, French feelings! There now, you turned Metivier out by the scruff of his neck because he is a Frenchman and a scoundrel, but our ladies crawl after him on their knees. I went to a party last night, and there out of five ladies three were Roman Catholics and had the Pope's indulgence for doing woolwork on Sundays. And they themselves sit there nearly naked, like the signboards at our Public Baths if I may say so. Ah, when one looks at our young people, Prince, one would like to take Peter the Great's old cudgel out of the museum and belabor them in the Russian way till all the nonsense jumps out of them." All were silent. The old prince looked at Rostopchin with a smile and wagged his head approvingly. "Well, good-by, your excellency, keep well!" said Rostopchin, getting up with characteristic briskness and holding out his hand to the prince. "Good-by, my dear fellow.... His words are music, I never tire of hearing him!" said the old prince, keeping hold of the hand and offering his cheek to be kissed. Following Rostopchin's example the others also rose. CHAPTER IV Princess Mary as she sat listening to the old men's talk and faultfinding, understood nothing of what she heard; she only wondered whether the guests had all observed her father's hostile attitude toward her. She did not even notice the special attentions and amiabilities shown her during dinner by Boris Drubetskoy, who was visiting them for the third time already. Princess Mary turned with absent-minded questioning look to Pierre, who hat in hand and with a smile on his face was the last of the guests to approach her after the old prince had gone out and they were left alone in the drawing room. "May I stay a little longer?" he said, letting his stout body sink into an armchair beside her. "Oh yes," she answered. "You noticed nothing?" her look asked. Pierre was in an agreeable after-dinner mood. He looked straight before him and smiled quietly. "Have you known that young man long, Princess?" he asked. "Who?" "Drubetskoy." "No, not long..." "Do you like him?" "Yes, he is an agreeable young man.... Why do you ask me that?" said Princess Mary, still thinking of that morning's conversation with her father. "Because I have noticed that when a young man comes on leave from Petersburg to Moscow it is usually with the object of marrying an heiress." "You have observed that?" said Princess Mary. "Yes," returned Pierre with a smile, "and this young man now manages matters so that where there is a wealthy heiress there he is too. I can read him like a book. At present he is hesitating whom to lay siege to--you or Mademoiselle Julie Karagina. He is very attentive to her." "He visits them?" "Yes, very often. And do you know the new way of courting?" said Pierre with an amused smile, evidently in that cheerful mood of good humored raillery for which he so often reproached himself in his diary. "No," replied Princess Mary. "To please Moscow girls nowadays one has to be melancholy. He is very melancholy with Mademoiselle Karagina," said Pierre. "Really?" asked Princess Mary, looking into Pierre's kindly face and still thinking of her own sorrow. "It would be a relief," thought she, "if I ventured to confide what I am feeling to someone. I should like to tell everything to Pierre. He is kind and generous. It would be a relief. He would give me advice." "Would you marry him?" "Oh, my God, Count, there are moments when I would marry anybody!" she cried suddenly to her own surprise and with tears in her voice. "Ah, how bitter it is to love someone near to you and to feel that..." she went on in a trembling voice, "that you can do nothing for him but grieve him, and to know that you cannot alter this. Then there is only one thing left--to go away, but where could I go?" "What is wrong? What is it, Princess?" But without finishing what she was saying, Princess Mary burst into tears. "I don't know what is the matter with me today. Don't take any notice--forget what I have said!" Pierre's gaiety vanished completely. He anxiously questioned the princess, asked her to speak out fully and confide her grief to him; but she only repeated that she begged him to forget what she had said, that she did not remember what she had said, and that she had no trouble except the one he knew of--that Prince Andrew's marriage threatened to cause a rupture between father and son. "Have you any news of the Rostovs?" she asked, to change the subject. "I was told they are coming soon. I am also expecting Andrew any day. I should like them to meet here." "And how does he now regard the matter?" asked Pierre, referring to the old prince. Princess Mary shook her head. "What is to be done? In a few months the year will be up. The thing is impossible. I only wish I could spare my brother the first moments. I wish they would come sooner. I hope to be friends with her. You have known them a long time," said Princess Mary. "Tell me honestly the whole truth: what sort of girl is she, and what do you think of her?--The real truth, because you know Andrew is risking so much doing this against his father's will that I should like to know..." An undefined instinct told Pierre that these explanations, and repeated requests to be told the whole truth, expressed ill-will on the princess' part toward her future sister-in-law and a wish that he should disapprove of Andrew's choice; but in reply he said what he felt rather than what he thought. "I don't know how to answer your question," he said, blushing without knowing why. "I really don't know what sort of girl she is; I can't analyze her at all. She is enchanting, but what makes her so I don't know. That is all one can say about her." Princess Mary sighed, and the expression on her face said: "Yes, that's what I expected and feared." "Is she clever?" she asked. Pierre considered. "I think not," he said, "and yet--yes. She does not deign to be clever.... Oh no, she is simply enchanting, and that is all." Princess Mary again shook her head disapprovingly. "Ah, I so long to like her! Tell her so if you see her before I do." "I hear they are expected very soon," said Pierre. Princess Mary told Pierre of her plan to become intimate with her future sister-in-law as soon as the Rostovs arrived and to try to accustom the old prince to her. CHAPTER V Boris had not succeeded in making a wealthy match in Petersburg, so with the same object in view he came to Moscow. There he wavered between the two richest heiresses, Julie and Princess Mary. Though Princess Mary despite her plainness seemed to him more attractive than Julie, he, without knowing why, felt awkward about paying court to her. When they had last met on the old prince's name day, she had answered at random all his attempts to talk sentimentally, evidently not listening to what he was saying. Julie on the contrary accepted his attentions readily, though in a manner peculiar to herself. She was twenty-seven. After the death of her brothers she had become very wealthy. She was by now decidedly plain, but thought herself not merely as good-looking as before but even far more attractive. She was confirmed in this delusion by the fact that she had become a very wealthy heiress and also by the fact that the older she grew the less dangerous she became to men, and the more freely they could associate with her and avail themselves of her suppers, soirees, and the animated company that assembled at her house, without incurring any obligation. A man who would have been afraid ten years before of going every day to the house when there was a girl of seventeen there, for fear of compromising her and committing himself, would now go boldly every day and treat her not as a marriageable girl but as a sexless acquaintance. That winter the Karagins' house was the most agreeable and hospitable in Moscow. In addition to the formal evening and dinner parties, a large company, chiefly of men, gathered there every day, supping at midnight and staying till three in the morning. Julie never missed a ball, a promenade, or a play. Her dresses were always of the latest fashion. But in spite of that she seemed to be disillusioned about everything and told everyone that she did not believe either in friendship or in love, or any of the joys of life, and expected peace only "yonder." She adopted the tone of one who has suffered a great disappointment, like a girl who has either lost the man she loved or been cruelly deceived by him. Though nothing of the kind had happened to her she was regarded in that light, and had even herself come to believe that she had suffered much in life. This melancholy, which did not prevent her amusing herself, did not hinder the young people who came to her house from passing the time pleasantly. Every visitor who came to the house paid his tribute to the melancholy mood of the hostess, and then amused himself with society gossip, dancing, intellectual games, and bouts rimes, which were in vogue at the Karagins'. Only a few of these young men, among them Boris, entered more deeply into Julie's melancholy, and with these she had prolonged conversations in private on the vanity of all worldly things, and to them she showed her albums filled with mournful sketches, maxims, and verses. To Boris, Julie was particularly gracious: she regretted his early disillusionment with life, offered him such consolation of friendship as she who had herself suffered so much could render, and showed him her album. Boris sketched two trees in the album and wrote: "Rustic trees, your dark branches shed gloom and melancholy upon me." On another page he drew a tomb, and wrote: La mort est secourable et la mort est tranquille. Ah! contre les douleurs il n'y a pas d'autre asile.* *Death gives relief and death is peaceful. Ah! from suffering there is no other refuge. Julia said this was charming "There is something so enchanting in the smile of melancholy," she said to Boris, repeating word for word a passage she had copied from a book. "It is a ray of light in the darkness, a shade between sadness and despair, showing the possibility of consolation." In reply Boris wrote these lines: Aliment de poison d'une ame trop sensible, Toi, sans qui le bonheur me serait impossible, Tendre melancholie, ah, viens me consoler, Viens calmer les tourments de ma sombre retraite, Et mele une douceur secrete A ces pleurs que je sens couler.* *Poisonous nourishment of a too sensitive soul, Thou, without whom happiness would for me be impossible, Tender melancholy, ah, come to console me, Come to calm the torments of my gloomy retreat, And mingle a secret sweetness With these tears that I feel to be flowing. For Boris, Julie played most doleful nocturnes on her harp. Boris read Poor Liza aloud to her, and more than once interrupted the reading because of the emotions that choked him. Meeting at large gatherings Julie and Boris looked on one another as the only souls who understood one another in a world of indifferent people. Anna Mikhaylovna, who often visited the Karagins, while playing cards with the mother made careful inquiries as to Julie's dowry (she was to have two estates in Penza and the Nizhegorod forests). Anna Mikhaylovna regarded the refined sadness that united her son to the wealthy Julie with emotion, and resignation to the Divine will. "You are always charming and melancholy, my dear Julie," she said to the daughter. "Boris says his soul finds repose at your house. He has suffered so many disappointments and is so sensitive," said she to the mother. "Ah, my dear, I can't tell you how fond I have grown of Julie latterly," she said to her son. "But who could help loving her? She is an angelic being! Ah, Boris, Boris!"--she paused. "And how I pity her mother," she went on; "today she showed me her accounts and letters from Penza (they have enormous estates there), and she, poor thing, has no one to help her, and they do cheat her so!" Boris smiled almost imperceptibly while listening to his mother. He laughed blandly at her naive diplomacy but listened to what she had to say, and sometimes questioned her carefully about the Penza and Nizhegorod estates. Julie had long been expecting a proposal from her melancholy adorer and was ready to accept it; but some secret feeling of repulsion for her, for her passionate desire to get married, for her artificiality, and a feeling of horror at renouncing the possibility of real love still restrained Boris. His leave was expiring. He spent every day and whole days at the Karagins', and every day on thinking the matter over told himself that he would propose tomorrow. But in Julie's presence, looking at her red face and chin (nearly always powdered), her moist eyes, and her expression of continual readiness to pass at once from melancholy to an unnatural rapture of married bliss, Boris could not utter the decisive words, though in imagination he had long regarded himself as the possessor of those Penza and Nizhegorod estates and had apportioned the use of the income from them. Julie saw Boris' indecision, and sometimes the thought occurred to her that she was repulsive to him, but her feminine self-deception immediately supplied her with consolation, and she told herself that he was only shy from love. Her melancholy, however, began to turn to irritability, and not long before Boris' departure she formed a definite plan of action. Just as Boris' leave of absence was expiring, Anatole Kuragin made his appearance in Moscow, and of course in the Karagins' drawing room, and Julie, suddenly abandoning her melancholy, became cheerful and very attentive to Kuragin. "My dear," said Anna Mikhaylovna to her son, "I know from a reliable source that Prince Vasili has sent his son to Moscow to get him married to Julie. I am so fond of Julie that I should be sorry for her. What do you think of it, my dear?" The idea of being made a fool of and of having thrown away that whole month of arduous melancholy service to Julie, and of seeing all the revenue from the Penza estates which he had already mentally apportioned and put to proper use fall into the hands of another, and especially into the hands of that idiot Anatole, pained Boris. He drove to the Karagins' with the firm intention of proposing. Julie met him in a gay, careless manner, spoke casually of how she had enjoyed yesterday's ball, and asked when he was leaving. Though Boris had come intentionally to speak of his love and therefore meant to be tender, he began speaking irritably of feminine inconstancy, of how easily women can turn from sadness to joy, and how their moods depend solely on who happens to be paying court to them. Julie was offended and replied that it was true that a woman needs variety, and the same thing over and over again would weary anyone. "Then I should advise you..." Boris began, wishing to sting her; but at that instant the galling thought occurred to him that he might have to leave Moscow without having accomplished his aim, and have vainly wasted his efforts--which was a thing he never allowed to happen. He checked himself in the middle of the sentence, lowered his eyes to avoid seeing her unpleasantly irritated and irresolute face, and said: "I did not come here at all to quarrel with you. On the contrary..." He glanced at her to make sure that he might go on. Her irritability had suddenly quite vanished, and her anxious, imploring eyes were fixed on him with greedy expectation. "I can always arrange so as not to see her often," thought Boris. "The affair has been begun and must be finished!" He blushed hotly, raised his eyes to hers, and said: "You know my feelings for you!" There was no need to say more: Julie's face shone with triumph and self-satisfaction; but she forced Boris to say all that is said on such occasions--that he loved her and had never loved any other woman more than her. She knew that for the Penza estates and Nizhegorod forests she could demand this, and she received what she demanded. The affianced couple, no longer alluding to trees that shed gloom and melancholy upon them, planned the arrangements of a splendid house in Petersburg, paid calls, and prepared everything for a brilliant wedding. CHAPTER VI At the end of January old Count Rostov went to Moscow with Natasha and Sonya. The countess was still unwell and unable to travel but it was impossible to wait for her recovery. Prince Andrew was expected in Moscow any day, the trousseau had to be ordered and the estate near Moscow had to be sold, besides which the opportunity of presenting his future daughter-in-law to old Prince Bolkonski while he was in Moscow could not be missed. The Rostovs' Moscow house had not been heated that winter and, as they had come only for a short time and the countess was not with them, the count decided to stay with Marya Dmitrievna Akhrosimova, who had long been pressing her hospitality on them. Late one evening the Rostovs' four sleighs drove into Marya Dmitrievna's courtyard in the old Konyusheny street. Marya Dmitrievna lived alone. She had already married off her daughter, and her sons were all in the service. She held herself as erect, told everyone her opinion as candidly, loudly, and bluntly as ever, and her whole bearing seemed a reproach to others for any weakness, passion, or temptation--the possibility of which she did not admit. From early in the morning, wearing a dressing jacket, she attended to her household affairs, and then she drove out: on holy days to church and after the service to jails and prisons on affairs of which she never spoke to anyone. On ordinary days, after dressing, she received petitioners of various classes, of whom there were always some. Then she had dinner, a substantial and appetizing meal at which there were always three or four guests; after dinner she played a game of boston, and at night she had the newspapers or a new book read to her while she knitted. She rarely made an exception and went out to pay visits, and then only to the most important persons in the town. She had not yet gone to bed when the Rostovs arrived and the pulley of the hall door squeaked from the cold as it let in the Rostovs and their servants. Marya Dmitrievna, with her spectacles hanging down on her nose and her head flung back, stood in the hall doorway looking with a stern, grim face at the new arrivals. One might have thought she was angry with the travelers and would immediately turn them out, had she not at the same time been giving careful instructions to the servants for the accommodation of the visitors and their belongings. "The count's things? Bring them here," she said, pointing to the portmanteaus and not greeting anyone. "The young ladies'? There to the left. Now what are you dawdling for?" she cried to the maids. "Get the samovar ready!... You've grown plumper and prettier," she remarked, drawing Natasha (whose cheeks were glowing from the cold) to her by the hood. "Foo! You are cold! Now take off your things, quick!" she shouted to the count who was going to kiss her hand. "You're half frozen, I'm sure! Bring some rum for tea!... Bonjour, Sonya dear!" she added, turning to Sonya and indicating by this French greeting her slightly contemptuous though affectionate attitude toward her. When they came in to tea, having taken off their outdoor things and tidied themselves up after their journey, Marya Dmitrievna kissed them all in due order. "I'm heartily glad you have come and are staying with me. It was high time," she said, giving Natasha a significant look. "The old man is here and his son's expected any day. You'll have to make his acquaintance. But we'll speak of that later on," she added, glancing at Sonya with a look that showed she did not want to speak of it in her presence. "Now listen," she said to the count. "What do you want tomorrow? Whom will you send for? Shinshin?" she crooked one of her fingers. "The sniveling Anna Mikhaylovna? That's two. She's here with her son. The son is getting married! Then Bezukhov, eh? He is here too, with his wife. He ran away from her and she came galloping after him. He dined with me on Wednesday. As for them"--and she pointed to the girls--"tomorrow I'll take them first to the Iberian shrine of the Mother of God, and then we'll drive to the Super-Rogue's. I suppose you'll have everything new. Don't judge by me: sleeves nowadays are this size! The other day young Princess Irina Vasilevna came to see me; she was an awful sight--looked as if she had put two barrels on her arms. You know not a day passes now without some new fashion.... And what have you to do yourself?" she asked the count sternly. "One thing has come on top of another: her rags to buy, and now a purchaser has turned up for the Moscow estate and for the house. If you will be so kind, I'll fix a time and go down to the estate just for a day, and leave my lassies with you." "All right. All right. They'll be safe with me, as safe as in Chancery! I'll take them where they must go, scold them a bit, and pet them a bit," said Marya Dmitrievna, touching her goddaughter and favorite, Natasha, on the cheek with her large hand. Next morning Marya Dmitrievna took the young ladies to the Iberian shrine of the Mother of God and to Madame Suppert-Roguet, who was so afraid of Marya Dmitrievna that she always let her have costumes at a loss merely to get rid of her. Marya Dmitrievna ordered almost the whole trousseau. When they got home she turned everybody out of the room except Nataisha, and then called her pet to her armchair. "Well, now we'll talk. I congratulate you on your betrothed. You've hooked a fine fellow! I am glad for your sake and I've known him since he was so high." She held her hand a couple of feet from the ground. Natasha blushed happily. "I like him and all his family. Now listen! You know that old Prince Nicholas much dislikes his son's marrying. The old fellow's crotchety! Of course Prince Andrew is not a child and can shift without him, but it's not nice to enter a family against a father's will. One wants to do it peacefully and lovingly. You're a clever girl and you'll know how to manage. Be kind, and use your wits. Then all will be well." Natasha remained silent, from shyness Marya Dmitrievna supposed, but really because she disliked anyone interfering in what touched her love of Prince Andrew, which seemed to her so apart from all human affairs that no one could understand it. She loved and knew Prince Andrew, he loved her only, and was to come one of these days and take her. She wanted nothing more. "You see I have known him a long time and am also fond of Mary, your future sister-in-law. 'Husbands' sisters bring up blisters,' but this one wouldn't hurt a fly. She has asked me to bring you two together. Tomorrow you'll go with your father to see her. Be very nice and affectionate to her: you're younger than she. When he comes, he'll find you already know his sister and father and are liked by them. Am I right or not? Won't that be best?" "Yes, it will," Natasha answered reluctantly. CHAPTER VII Next day, by Marya Dmitrievna's advice, Count Rostov took Natasha to call on Prince Nicholas Bolkonski. The count did not set out cheerfully on this visit, at heart he felt afraid. He well remembered the last interview he had had with the old prince at the time of the enrollment, when in reply to an invitation to dinner he had had to listen to an angry reprimand for not having provided his full quota of men. Natasha, on the other hand, having put on her best gown, was in the highest spirits. "They can't help liking me," she thought. "Everybody always has liked me, and I am so willing to do anything they wish, so ready to be fond of him--for being his father--and of her--for being his sister--that there is no reason for them not to like me..." They drove up to the gloomy old house on the Vozdvizhenka and entered the vestibule. "Well, the Lord have mercy on us!" said the count, half in jest, half in earnest; but Natasha noticed that her father was flurried on entering the anteroom and inquired timidly and softly whether the prince and princess were at home. When they had been announced a perturbation was noticeable among the servants. The footman who had gone to announce them was stopped by another in the large hall and they whispered to one another. Then a maidservant ran into the hall and hurriedly said something, mentioning the princess. At last an old, cross looking footman came and announced to the Rostovs that the prince was not receiving, but that the princess begged them to walk up. The first person who came to meet the visitors was Mademoiselle Bourienne. She greeted the father and daughter with special politeness and showed them to the princess' room. The princess, looking excited and nervous, her face flushed in patches, ran in to meet the visitors, treading heavily, and vainly trying to appear cordial and at ease. From the first glance Princess Mary did not like Natasha. She thought her too fashionably dressed, frivolously gay and vain. She did not at all realize that before having seen her future sister-in-law she was prejudiced against her by involuntary envy of her beauty, youth, and happiness, as well as by jealousy of her brother's love for her. Apart from this insuperable antipathy to her, Princess Mary was agitated just then because on the Rostovs' being announced, the old prince had shouted that he did not wish to see them, that Princess Mary might do so if she chose, but they were not to be admitted to him. She had decided to receive them, but feared lest the prince might at any moment indulge in some freak, as he seemed much upset by the Rostovs' visit. "There, my dear princess, I've brought you my songstress," said the count, bowing and looking round uneasily as if afraid the old prince might appear. "I am so glad you should get to know one another... very sorry the prince is still ailing," and after a few more commonplace remarks he rose. "If you'll allow me to leave my Natasha in your hands for a quarter of an hour, Princess, I'll drive round to see Anna Semenovna, it's quite near in the Dogs' Square, and then I'll come back for her." The count had devised this diplomatic ruse (as he afterwards told his daughter) to give the future sisters-in-law an opportunity to talk to one another freely, but another motive was to avoid the danger of encountering the old prince, of whom he was afraid. He did not mention this to his daughter, but Natasha noticed her father's nervousness and anxiety and felt mortified by it. She blushed for him, grew still angrier at having blushed, and looked at the princess with a bold and defiant expression which said that she was not afraid of anybody. The princess told the count that she would be delighted, and only begged him to stay longer at Anna Semenovna's, and he departed. Despite the uneasy glances thrown at her by Princess Mary--who wished to have a tete-a-tete with Natasha--Mademoiselle Bourienne remained in the room and persistently talked about Moscow amusements and theaters. Natasha felt offended by the hesitation she had noticed in the anteroom, by her father's nervousness, and by the unnatural manner of the princess who--she thought--was making a favor of receiving her, and so everything displeased her. She did not like Princess Mary, whom she thought very plain, affected, and dry. Natasha suddenly shrank into herself and involuntarily assumed an offhand air which alienated Princess Mary still more. After five minutes of irksome, constrained conversation, they heard the sound of slippered feet rapidly approaching. Princess Mary looked frightened. The door opened and the old prince, in a dress, ing gown and a white nightcap, came in. "Ah, madam!" he began. "Madam, Countess... Countess Rostova, if I am not mistaken... I beg you to excuse me, to excuse me... I did not know, madam. God is my witness, I did not know you had honored us with a visit, and I came in such a costume only to see my daughter. I beg you to excuse me... God is my witness, I didn't know-" he repeated, stressing the word "God" so unnaturally and so unpleasantly that Princess Mary stood with downcast eyes not daring to look either at her father or at Natasha. Nor did the latter, having risen and curtsied, know what to do. Mademoiselle Bourienne alone smiled agreeably. "I beg you to excuse me, excuse me! God is my witness, I did not know," muttered the old man, and after looking Natasha over from head to foot he went out. Mademoiselle Bourienne was the first to recover herself after this apparition and began speaking about the prince's indisposition. Natasha and Princess Mary looked at one another in silence, and the longer they did so without saying what they wanted to say, the greater grew their antipathy to one another. When the count returned, Natasha was impolitely pleased and hastened to get away: at that moment she hated the stiff, elderly princess, who could place her in such an embarrassing position and had spent half an hour with her without once mentioning Prince Andrew. "I couldn't begin talking about him in the presence of that Frenchwoman," thought Natasha. The same thought was meanwhile tormenting Princess Mary. She knew what she ought to have said to Natasha, but she had been unable to say it because Mademoiselle Bourienne was in the way, and because, without knowing why, she felt it very difficult to speak of the marriage. When the count was already leaving the room, Princess Mary went up hurriedly to Natasha, took her by the hand, and said with a deep sigh: "Wait, I must..." Natasha glanced at her ironically without knowing why. "Dear Natalie," said Princess Mary, "I want you to know that I am glad my brother has found happiness...." She paused, feeling that she was not telling the truth. Natasha noticed this and guessed its reason. "I think, Princess, it is not convenient to speak of that now," she said with external dignity and coldness, though she felt the tears choking her. "What have I said and what have I done?" thought she, as soon as she was out of the room. They waited a long time for Natasha to come to dinner that day. She sat in her room crying like a child, blowing her nose and sobbing. Sonya stood beside her, kissing her hair. "Natasha, what is it about?" she asked. "What do they matter to you? It will all pass, Natasha." "But if you only knew how offensive it was... as if I..." "Don't talk about it, Natasha. It wasn't your fault so why should you mind? Kiss me," said Sonya. Natasha raised her head and, kissing her friend on the lips, pressed her wet face against her. "I can't tell you, I don't know. No one's to blame," said Natasha- "It's my fault. But it all hurts terribly. Oh, why doesn't he come?..." She came in to dinner with red eyes. Marya Dmitrievna, who knew how the prince had received the Rostovs, pretended not to notice how upset Natasha was and jested resolutely and loudly at table with the count and the other guests. CHAPTER VIII That evening the Rostovs went to the Opera, for which Marya Dmitrievna had taken a box. Natasha did not want to go, but could not refuse Marya Dmitrievna's kind offer which was intended expressly for her. When she came ready dressed into the ballroom to await her father, and looking in the large mirror there saw that she was pretty, very pretty, she felt even more sad, but it was a sweet, tender sadness. "O God, if he were here now I would not behave as I did then, but differently. I would not be silly and afraid of things, I would simply embrace him, cling to him, and make him look at me with those searching inquiring eyes with which he has so often looked at me, and then I would make him laugh as he used to laugh. And his eyes--how I see those eyes!" thought Natasha. "And what do his father and sister matter to me? I love him alone, him, him, with that face and those eyes, with his smile, manly and yet childlike.... No, I had better not think of him; not think of him but forget him, quite forget him for the present. I can't bear this waiting and I shall cry in a minute!" and she turned away from the glass, making an effort not to cry. "And how can Sonya love Nicholas so calmly and quietly and wait so long and so patiently?" thought she, looking at Sonya, who also came in quite ready, with a fan in her hand. "No, she's altogether different. I can't!" Natasha at that moment felt so softened and tender that it was not enough for her to love and know she was beloved, she wanted now, at once, to embrace the man she loved, to speak and hear from him words of love such as filled her heart. While she sat in the carriage beside her father, pensively watching the lights of the street lamps flickering on the frozen window, she felt still sadder and more in love, and forgot where she was going and with whom. Having fallen into the line of carriages, the Rostovs' carriage drove up to the theater, its wheels squeaking over the snow. Natasha and Sonya, holding up their dresses, jumped out quickly. The count got out helped by the footmen, and, passing among men and women who were entering and the program sellers, they all three went along the corridor to the first row of boxes. Through the closed doors the music was already audible. "Natasha, your hair!..." whispered Sonya. An attendant deferentially and quickly slipped before the ladies and opened the door of their box. The music sounded louder and through the door rows of brightly lit boxes in which ladies sat with bare arms and shoulders, and noisy stalls brilliant with uniforms, glittered before their eyes. A lady entering the next box shot a glance of feminine envy at Natasha. The curtain had not yet risen and the overture was being played. Natasha, smoothing her gown, went in with Sonya and sat down, scanning the brilliant tiers of boxes opposite. A sensation she had not experienced for a long time--that of hundreds of eyes looking at her bare arms and neck--suddenly affected her both agreeably and disagreeably and called up a whole crowd of memories, desires and emotions associated with that feeling. The two remarkably pretty girls, Natasha and Sonya, with Count Rostov who had not been seen in Moscow for a long time, attracted general attention. Moreover, everybody knew vaguely of Natasha's engagement to Prince Andrew, and knew that the Rostovs had lived in the country ever since, and all looked with curiosity at a fiancee who was making one of the best matches in Russia. Natasha's looks, as everyone told her, had improved in the country, and that evening thanks to her agitation she was particularly pretty. She struck those who saw her by her fullness of life and beauty, combined with her indifference to everything about her. Her black eyes looked at the crowd without seeking anyone, and her delicate arm, bare to above the elbow, lay on the velvet edge of the box, while, evidently unconsciously, she opened and closed her hand in time to the music, crumpling her program. "Look, there's Alenina," said Sonya, "with her mother, isn't it?" "Dear me, Michael Kirilovich has grown still stouter!" remarked the count. "Look at our Anna Mikhaylovna--what a headdress she has on!" "The Karagins, Julie--and Boris with them. One can see at once that they're engaged...." "Drubetskoy has proposed?" "Oh yes, I heard it today," said Shinshin, coming into the Rostovs' box. Natasha looked in the direction in which her father's eyes were turned and saw Julie sitting beside her mother with a happy look on her face and a string of pearls round her thick red neck--which Natasha knew was covered with powder. Behind them, wearing a smile and leaning over with an ear to Julie's mouth, was Boris' handsome smoothly brushed head. He looked the Rostovs from under his brows and said something, smiling, to his betrothed. "They are talking about us, about me and him!" thought Natasha. "And he no doubt is calming her jealousy of me. They needn't trouble themselves! If only they knew how little I am concerned about any of them." Behind them sat Anna Mikhaylovna wearing a green headdress and with a happy look of resignation to the will of God on her face. Their box was pervaded by that atmosphere of an affianced couple which Natasha knew so well and liked so much. She turned away and suddenly remembered all that had been so humiliating in her morning's visit. "What right has he not to wish to receive me into his family? Oh, better not think of it--not till he comes back!" she told herself, and began looking at the faces, some strange and some familiar, in the stalls. In the front, in the very center, leaning back against the orchestra rail, stood Dolokhov in a Persian dress, his curly hair brushed up into a huge shock. He stood in full view of the audience, well aware that he was attracting everyone's attention, yet as much at ease as though he were in his own room. Around him thronged Moscow's most brilliant young men, whom he evidently dominated. The count, laughing, nudged the blushing Sonya and pointed to her former adorer. "Do you recognize him?" said he. "And where has he sprung from?" he asked, turning to Shinshin. "Didn't he vanish somewhere?" "He did," replied Shinshin. "He was in the Caucasus and ran away from there. They say he has been acting as minister to some ruling prince in Persia, where he killed the Shah's brother. Now all the Moscow ladies are mad about him! It's 'Dolokhov the Persian' that does it! We never hear a word but Dolokhov is mentioned. They swear by him, they offer him to you as they would a dish of choice sterlet. Dolokhov and Anatole Kuragin have turned all our ladies' heads." A tall, beautiful woman with a mass of plaited hair and much exposed plump white shoulders and neck, round which she wore a double string of large pearls, entered the adjoining box rustling her heavy silk dress and took a long time settling into her place. Natasha involuntarily gazed at that neck, those shoulders, and pearls and coiffure, and admired the beauty of the shoulders and the pearls. While Natasha was fixing her gaze on her for the second time the lady looked round and, meeting the count's eyes, nodded to him and smiled. She was the Countess Bezukhova, Pierre's wife, and the count, who knew everyone in society, leaned over and spoke to her. "Have you been here long, Countess?" he inquired. "I'll call, I'll call to kiss your hand. I'm here on business and have brought my girls with me. They say Semenova acts marvelously. Count Pierre never used to forget us. Is he here?" "Yes, he meant to look in," answered Helene, and glanced attentively at Natasha. Count Rostov resumed his seat. "Handsome, isn't she?" he whispered to Natasha. "Wonderful!" answered Natasha. "She's a woman one could easily fall in love with." Just then the last chords of the overture were heard and the conductor tapped with his stick. Some latecomers took their seats in the stalls, and the curtain rose. As soon as it rose everyone in the boxes and stalls became silent, and all the men, old and young, in uniform and evening dress, and all the women with gems on their bare flesh, turned their whole attention with eager curiosity to the stage. Natasha too began to look at it. CHAPTER IX The floor of the stage consisted of smooth boards, at the sides was some painted cardboard representing trees, and at the back was a cloth stretched over boards. In the center of the stage sat some girls in red bodices and white skirts. One very fat girl in a white silk dress sat apart on a low bench, to the back of which a piece of green cardboard was glued. They all sang something. When they had finished their song the girl in white went up to the prompter's box and a man with tight silk trousers over his stout legs, and holding a plume and a dagger, went up to her and began singing, waving his arms about. First the man in the tight trousers sang alone, then she sang, then they both paused while the orchestra played and the man fingered the hand of the girl in white, obviously awaiting the beat to start singing with her. They sang together and everyone in the theater began clapping and shouting, while the man and woman on the stage--who represented lovers--began smiling, spreading out their arms, and bowing. After her life in the country, and in her present serious mood, all this seemed grotesque and amazing to Natasha. She could not follow the opera nor even listen to the music; she saw only the painted cardboard and the queerly dressed men and women who moved, spoke, and sang so strangely in that brilliant light. She knew what it was all meant to represent, but it was so pretentiously false and unnatural that she first felt ashamed for the actors and then amused at them. She looked at the faces of the audience, seeking in them the same sense of ridicule and perplexity she herself experienced, but they all seemed attentive to what was happening on the stage, and expressed delight which to Natasha seemed feigned. "I suppose it has to be like this!" she thought. She kept looking round in turn at the rows of pomaded heads in the stalls and then at the seminude women in the boxes, especially at Helene in the next box, who--apparently quite unclothed--sat with a quiet tranquil smile, not taking her eyes off the stage. And feeling the bright light that flooded the whole place and the warm air heated by the crowd, Natasha little by little began to pass into a state of intoxication she had not experienced for a long while. She did not realize who and where she was, nor what was going on before her. As she looked and thought, the strangest fancies unexpectedly and disconnectedly passed through her mind: the idea occurred to her of jumping onto the edge of the box and singing the air the actress was singing, then she wished to touch with her fan an old gentleman sitting not far from her, then to lean over to Helene and tickle her. At a moment when all was quiet before the commencement of a song, a door leading to the stalls on the side nearest the Rostovs' box creaked, and the steps of a belated arrival were heard. "There's Kuragin!" whispered Shinshin. Countess Bezukhova turned smiling to the newcomer, and Natasha, following the direction of that look, saw an exceptionally handsome adjutant approaching their box with a self-assured yet courteous bearing. This was Anatole Kuragin whom she had seen and noticed long ago at the ball in Petersburg. He was now in an adjutant's uniform with one epaulet and a shoulder knot. He moved with a restrained swagger which would have been ridiculous had he not been so good-looking and had his handsome face not worn such an expression of good-humored complacency and gaiety. Though the performance was proceeding, he walked deliberately down the carpeted gangway, his sword and spurs slightly jingling and his handsome perfumed head held high. Having looked at Natasha he approached his sister, laid his well gloved hand on the edge of her box, nodded to her, and leaning forward asked a question, with a motion toward Natasha. "Mais charmante!" said he, evidently referring to Natasha, who did not exactly hear his words but understood them from the movement of his lips. Then he took his place in the first row of the stalls and sat down beside Dolokhov, nudging with his elbow in a friendly and offhand way that Dolokhov whom others treated so fawningly. He winked at him gaily, smiled, and rested his foot against the orchestra screen. "How like the brother is to the sister," remarked the count. "And how handsome they both are!" Shinshin, lowering his voice, began to tell the count of some intrigue of Kuragin's in Moscow, and Natasha tried to overhear it just because he had said she was "charmante." The first act was over. In the stalls everyone began moving about, going out and coming in. Boris came to the Rostovs' box, received their congratulations very simply, and raising his eyebrows with an absent-minded smile conveyed to Natasha and Sonya his fiancee's invitation to her wedding, and went away. Natasha with a gay, coquettish smile talked to him, and congratulated on his approaching wedding that same Boris with whom she had formerly been in love. In the state of intoxication she was in, everything seemed simple and natural. The scantily clad Helene smiled at everyone in the same way, and Natasha gave Boris a similar smile. Helene's box was filled and surrounded from the stalls by the most distinguished and intellectual men, who seemed to vie with one another in their wish to let everyone see that they knew her. During the whole of that entr'acte Kuragin stood with Dolokhov in front of the orchestra partition, looking at the Rostovs' box. Natasha knew he was talking about her and this afforded her pleasure. She even turned so that he should see her profile in what she thought was its most becoming aspect. Before the beginning of the second act Pierre appeared in the stalls. The Rostovs had not seen him since their arrival. His face looked sad, and he had grown still stouter since Natasha last saw him. He passed up to the front rows, not noticing anyone. Anatole went up to him and began speaking to him, looking at and indicating the Rostovs' box. On seeing Natasha Pierre grew animated and, hastily passing between the rows, came toward their box. When he got there he leaned on his elbows and, smiling, talked to her for a long time. While conversing with Pierre, Natasha heard a man's voice in Countess Bezukhova's box and something told her it was Kuragin. She turned and their eyes met. Almost smiling, he gazed straight into her eyes with such an enraptured caressing look that it seemed strange to be so near him, to look at him like that, to be so sure he admired her, and not to be acquainted with him. In the second act there was scenery representing tombstones, there was a round hole in the canvas to represent the moon, shades were raised over the footlights, and from horns and contrabass came deep notes while many people appeared from right and left wearing black cloaks and holding things like daggers in their hands. They began waving their arms. Then some other people ran in and began dragging away the maiden who had been in white and was now in light blue. They did not drag her away at once, but sang with her for a long time and then at last dragged her off, and behind the scenes something metallic was struck three times and everyone knelt down and sang a prayer. All these things were repeatedly interrupted by the enthusiastic shouts of the audience. During this act every time Natasha looked toward the stalls she saw Anatole Kuragin with an arm thrown across the back of his chair, staring at her. She was pleased to see that he was captivated by her and it did not occur to her that there was anything wrong in it. When the second act was over Countess Bezukhova rose, turned to the Rostovs' box--her whole bosom completely exposed--beckoned the old count with a gloved finger, and paying no attention to those who had entered her box began talking to him with an amiable smile. "Do make me acquainted with your charming daughters," said she. "The whole town is singing their praises and I don't even know then!" Natasha rose and curtsied to the splendid countess. She was so pleased by praise from this brilliant beauty that she blushed with pleasure. "I want to become a Moscovite too, now," said Helene. "How is it you're not ashamed to bury such pearls in the country?" Countess Bezukhova quite deserved her reputation of being a fascinating woman. She could say what she did not think--especially what was flattering--quite simply and naturally. "Dear count, you must let me look after your daughters! Though I am not staying here long this time--nor are you--I will try to amuse them. I have already heard much of you in Petersburg and wanted to get to know you," said she to Natasha with her stereotyped and lovely smile. "I had heard about you from my page, Drubetskoy. Have you heard he is getting married? And also from my husband's friend Bolkonski, Prince Andrew Bolkonski," she went on with special emphasis, implying that she knew of his relation to Natasha. To get better acquainted she asked that one of the young ladies should come into her box for the rest of the performance, and Natasha moved over to it. The scene of the third act represented a palace in which many candles were burning and pictures of knights with short beards hung on the walls. In the middle stood what were probably a king and a queen. The king waved his right arm and, evidently nervous, sang something badly and sat down on a crimson throne. The maiden who had been first in white and then in light blue, now wore only a smock, and stood beside the throne with her hair down. She sang something mournfully, addressing the queen, but the king waved his arm severely, and men and women with bare legs came in from both sides and began dancing all together. Then the violins played very shrilly and merrily and one of the women with thick bare legs and thin arms, separating from the others, went behind the wings, adjusted her bodice, returned to the middle of the stage, and began jumping and striking one foot rapidly against the other. In the stalls everyone clapped and shouted "bravo!" Then one of the men went into a corner of the stage. The cymbals and horns in the orchestra struck up more loudly, and this man with bare legs jumped very high and waved his feet about very rapidly. (He was Duport, who received sixty thousand rubles a year for this art.) Everybody in the stalls, boxes, and galleries began clapping and shouting with all their might, and the man stopped and began smiling and bowing to all sides. Then other men and women danced with bare legs. Then the king again shouted to the sound of music, and they all began singing. But suddenly a storm came on, chromatic scales and diminished sevenths were heard in the orchestra, everyone ran off, again dragging one of their number away, and the curtain dropped. Once more there was a terrible noise and clatter among the audience, and with rapturous faces everyone began shouting: "Duport! Duport! Duport!" Natasha no longer thought this strange. She look about with pleasure, smiling joyfully. "Isn't Duport delightful?" Helene asked her. "Oh, yes," replied Natasha. CHAPTER X During the entr'acte a whiff of cold air came into Helene's box, the door opened, and Anatole entered, stooping and trying not to brush against anyone. "Let me introduce my brother to you," said Helene, her eyes shifting uneasily from Natasha to Anatole. Natasha turned her pretty little head toward the elegant young officer and smiled at him over her bare shoulder. Anatole, who was as handsome at close quarters as at a distance, sat down beside her and told her he had long wished to have this happiness--ever since the Naryshkins' ball in fact, at which he had had the well-remembered pleasure of seeing her. Kuragin was much more sensible and simple with women than among men. He talked boldly and naturally, and Natasha was strangely and agreeably struck by the fact that there was nothing formidable in this man about whom there was so much talk, but that on the contrary his smile was most naive, cheerful, and good-natured. Kuragin asked her opinion of the performance and told her how at a previous performance Semenova had fallen down on the stage. "And do you know, Countess," he said, suddenly addressing her as an old, familiar acquaintance, "we are getting up a costume tournament; you ought to take part in it! It will be great fun. We shall all meet at the Karagins'! Please come! No! Really, eh?" said he. While saying this he never removed his smiling eyes from her face, her neck, and her bare arms. Natasha knew for certain that he was enraptured by her. This pleased her, yet his presence made her feel constrained and oppressed. When she was not looking at him she felt that he was looking at her shoulders, and she involuntarily caught his eye so that he should look into hers rather than this. But looking into his eyes she was frightened, realizing that there was not that barrier of modesty she had always felt between herself and other men. She did not know how it was that within five minutes she had come to feel herself terribly near to this man. When she turned away she feared he might seize her from behind by her bare arm and kiss her on the neck. They spoke of most ordinary things, yet she felt that they were closer to one another than she had ever been to any man. Natasha kept turning to Helene and to her father, as if asking what it all meant, but Helene was engaged in conversation with a general and did not answer her look, and her father's eyes said nothing but what they always said: "Having a good time? Well, I'm glad of it!" During one of these moments of awkward silence when Anatole's prominent eyes were gazing calmly and fixedly at her, Natasha, to break the silence, asked him how he liked Moscow. She asked the question and blushed. She felt all the time that by talking to him she was doing something improper. Anatole smiled as though to encourage her. "At first I did not like it much, because what makes a town pleasant ce sont les jolies femmes,* isn't that so? But now I like it very much indeed," he said, looking at her significantly. "You'll come to the costume tournament, Countess? Do come!" and putting out his hand to her bouquet and dropping his voice, he added, "You will be the prettiest there. Do come, dear countess, and give me this flower as a pledge!" *Are the pretty women. Natasha did not understand what he was saying any more than he did himself, but she felt that his incomprehensible words had an improper intention. She did not know what to say and turned away as if she had not heard his remark. But as soon as she had turned away she felt that he was there, behind, so close behind her. "How is he now? Confused? Angry? Ought I to put it right?" she asked herself, and she could not refrain from turning round. She looked straight into his eyes, and his nearness, self-assurance, and the good-natured tenderness of his smile vanquished her. She smiled just as he was doing, gazing straight into his eyes. And again she felt with horror that no barrier lay between him and her. The curtain rose again. Anatole left the box, serene and gay. Natasha went back to her father in the other box, now quite submissive to the world she found herself in. All that was going on before her now seemed quite natural, but on the other hand all her previous thoughts of her betrothed, of Princess Mary, or of life in the country did not once recur to her mind and were as if belonging to a remote past. In the fourth act there was some sort of devil who sang waving his arm about, till the boards were withdrawn from under him and he disappeared down below. That was the only part of the fourth act that Natasha saw. She felt agitated and tormented, and the cause of this was Kuragin whom she could not help watching. As they were leaving the theater Anatole came up to them, called their carriage, and helped them in. As he was putting Natasha in he pressed her arm above the elbow. Agitated and flushed she turned round. He was looking at her with glittering eyes, smiling tenderly. Only after she had reached home was Natasha able clearly to think over what had happened to her, and suddenly remembering Prince Andrew she was horrified, and at tea to which all had sat down after the opera, she gave a loud exclamation, flushed, and ran out of the room. "O God! I am lost!" she said to herself. "How could I let him?" She sat for a long time hiding her flushed face in her hands trying to realize what had happened to her, but was unable either to understand what had happened or what she felt. Everything seemed dark, obscure, and terrible. There in that enormous, illuminated theater where the bare-legged Duport, in a tinsel-decorated jacket, jumped about to the music on wet boards, and young girls and old men, and the nearly naked Helene with her proud, calm smile, rapturously cried "bravo!"--there in the presence of that Helene it had all seemed clear and simple; but now, alone by herself, it was incomprehensible. "What is it? What was that terror I felt of him? What is this gnawing of conscience I am feeling now?" she thought. Only to the old countess at night in bed could Natasha have told all she was feeling. She knew that Sonya with her severe and simple views would either not understand it at all or would be horrified at such a confession. So Natasha tried to solve what was torturing her by herself. "Am I spoiled for Andrew's love or not?" she asked herself, and with soothing irony replied: "What a fool I am to ask that! What did happen to me? Nothing! I have done nothing, I didn't lead him on at all. Nobody will know and I shall never see him again," she told herself. "So it is plain that nothing has happened and there is nothing to repent of, and Andrew can love me still. But why 'still?' O God, why isn't he here?" Natasha quieted herself for a moment, but again some instinct told her that though all this was true, and though nothing had happened, yet the former purity of her love for Prince Andrew had perished. And again in imagination she went over her whole conversation with Kuragin, and again saw the face, gestures, and tender smile of that bold handsome man when he pressed her arm. CHAPTER XI Anatole Kuragin was staying in Moscow because his father had sent him away from Petersburg, where he had been spending twenty thousand rubles a year in cash, besides running up debts for as much more, which his creditors demanded from his father. His father announced to him that he would now pay half his debts for the last time, but only on condition that he went to Moscow as adjutant to the commander in chief--a post his father had procured for him--and would at last try to make a good match there. He indicated to him Princess Mary and Julie Karagina. Anatole consented and went to Moscow, where he put up at Pierre's house. Pierre received him unwillingly at first, but got used to him after a while, sometimes even accompanied him on his carousals, and gave him money under the guise of loans. As Shinshin had remarked, from the time of his arrival Anatole had turned the heads of the Moscow ladies, especially by the fact that he slighted them and plainly preferred the gypsy girls and French actresses--with the chief of whom, Mademoiselle George, he was said to be on intimate relations. He had never missed a carousal at Danilov's or other Moscow revelers', drank whole nights through, outvying everyone else, and was at all the balls and parties of the best society. There was talk of his intrigues with some of the ladies, and he flirted with a few of them at the balls. But he did not run after the unmarried girls, especially the rich heiresses who were most of them plain. There was a special reason for this, as he had got married two years before--a fact known only to his most intimate friends. At that time while with his regiment in Poland, a Polish landowner of small means had forced him to marry his daughter. Anatole had very soon abandoned his wife and, for a payment which he agreed to send to his father-in-law, had arranged to be free to pass himself off as a bachelor. Anatole was always content with his position, with himself, and with others. He was instinctively and thoroughly convinced that was impossible for him to live otherwise than as he did and that he had never in his life done anything base. He was incapable of considering how his actions might affect others or what the consequences of this or that action of his might be. He was convinced that, as a duck is so made that it must live in water, so God had made him such that he must spend thirty thousand rubles a year and always occupy a prominent position in society. He believed this so firmly that others, looking at him, were persuaded of it too and did not refuse him either a leading place in society or money, which he borrowed from anyone and everyone and evidently would not repay. He was not a gambler, at any rate he did not care about winning. He was not vain. He did not mind what people thought of him. Still less could he be accused of ambition. More than once he had vexed his father by spoiling his own career, and he laughed at distinctions of all kinds. He was not mean, and did not refuse anyone who asked of him. All he cared about was gaiety and women, and as according to his ideas there was nothing dishonorable in these tastes, and he was incapable of considering what the gratification of his tastes entailed for others, he honestly considered himself irreproachable, sincerely despised rogues and bad people, and with a tranquil conscience carried his head high. Rakes, those male Magdalenes, have a secret feeling of innocence similar to that which female Magdalenes have, based on the same hope of forgiveness. "All will be forgiven her, for she loved much; and all will be forgiven him, for he enjoyed much." Dolokhov, who had reappeared that year in Moscow after his exile and his Persian adventures, and was leading a life of luxury, gambling, and dissipation, associated with his old Petersburg comrade Kuragin and made use of him for his own ends. Anatole was sincerely fond of Dolokhov for his cleverness and audacity. Dolokhov, who needed Anatole Kuragin's name, position, and connections as a bait to draw rich young men into his gambling set, made use of him and amused himself at his expense without letting the other feel it. Apart from the advantage he derived from Anatole, the very process of dominating another's will was in itself a pleasure, a habit, and a necessity to Dolokhov. Natasha had made a strong impression on Kuragin. At supper after the opera he described to Dolokhov with the air of a connoisseur the attractions of her arms, shoulders, feet, and hair and expressed his intention of making love to her. Anatole had no notion and was incapable of considering what might come of such love-making, as he never had any notion of the outcome of any of his actions. "She's first-rate, my dear fellow, but not for us," replied Dolokhov. "I will tell my sister to ask her to dinner," said Anatole. "Eh?" "You'd better wait till she's married...." "You know, I adore little girls, they lose their heads at once," pursued Anatole. "You have been caught once already by a 'little girl,'" said Dolokhov who knew of Kuragin's marriage. "Take care!" "Well, that can't happen twice! Eh?" said Anatole, with a good-humored laugh. CHAPTER XII The day after the opera the Rostovs went nowhere and nobody came to see them. Marya Dmitrievna talked to the count about something which they concealed from Natasha. Natasha guessed they were talking about the old prince and planning something, and this disquieted and offended her. She was expecting Prince Andrew any moment and twice that day sent a manservant to the Vozdvizhenka to ascertain whether he had come. He had not arrived. She suffered more now than during her first days in Moscow. To her impatience and pining for him were now added the unpleasant recollection of her interview with Princess Mary and the old prince, and a fear and anxiety of which she did not understand the cause. She continually fancied that either he would never come or that something would happen to her before he came. She could no longer think of him by herself calmly and continuously as she had done before. As soon as she began to think of him, the recollection of the old prince, of Princess Mary, of the theater, and of Kuragin mingled with her thoughts. The question again presented itself whether she was not guilty, whether she had not already broken faith with Prince Andrew, and again she found herself recalling to the minutest detail every word, every gesture, and every shade in the play of expression on the face of the man who had been able to arouse in her such an incomprehensible and terrifying feeling. To the family Natasha seemed livelier than usual, but she was far less tranquil and happy than before. On Sunday morning Marya Dmitrievna invited her visitors to Mass at her parish church--the Church of the Assumption built over the graves of victims of the plague. "I don't like those fashionable churches," she said, evidently priding herself on her independence of thought. "God is the same every where. We have an excellent priest, he conducts the service decently and with dignity, and the deacon is the same. What holiness is there in giving concerts in the choir? I don't like it, it's just self-indulgence!" Marya Dmitrievna liked Sundays and knew how to keep them. Her whole house was scrubbed and cleaned on Saturdays; neither she nor the servants worked, and they all wore holiday dress and went to church. At her table there were extra dishes at dinner, and the servants had vodka and roast goose or suckling pig. But in nothing in the house was the holiday so noticeable as in Marya Dmitrievna's broad, stern face, which on that day wore an invariable look of solemn festivity. After Mass, when they had finished their coffee in the dining room where the loose covers had been removed from the furniture, a servant announced that the carriage was ready, and Marya Dmitrievna rose with a stern air. She wore her holiday shawl, in which she paid calls, and announced that she was going to see Prince Nicholas Bolkonski to have an explanation with him about Natasha. After she had gone, a dressmaker from Madame Suppert-Roguet waited on the Rostovs, and Natasha, very glad of this diversion, having shut herself into a room adjoining the drawing room, occupied herself trying on the new dresses. Just as she had put on a bodice without sleeves and only tacked together, and was turning her head to see in the glass how the back fitted, she heard in the drawing room the animated sounds of her father's voice and another's--a woman's- that made her flush. It was Helene. Natasha had not time to take off the bodice before the door opened and Countess Bezukhova, dressed in a purple velvet gown with a high collar, came into the room beaming with good-humored amiable smiles. "Oh, my enchantress!" she cried to the blushing Natasha. "Charming! No, this is really beyond anything, my dear count," said she to Count Rostov who had followed her in. "How can you live in Moscow and go nowhere? No, I won't let you off! Mademoiselle George will recite at my house tonight and there'll be some people, and if you don't bring your lovely girls--who are prettier than Mademoiselle George--I won't know you! My husband is away in Tver or I would send him to fetch you. You must come. You positively must! Between eight and nine." She nodded to the dressmaker, whom she knew and who had curtsied respectfully to her, and seated herself in an armchair beside the looking glass, draping the folds of her velvet dress picturesquely. She did not cease chattering good-naturedly and gaily, continually praising Natasha's beauty. She looked at Natasha's dresses and praised them, as well as a new dress of her own made of "metallic gauze," which she had received from Paris, and advised Natasha to have one like it. "But anything suits you, my charmer!" she remarked. A smile of pleasure never left Natasha's face. She felt happy and as if she were blossoming under the praise of this dear Countess Bezukhova who had formerly seemed to her so unapproachable and important and was now so kind to her. Natasha brightened up and felt almost in love with this woman, who was so beautiful and so kind. Helene for her part was sincerely delighted with Natasha and wished to give her a good time. Anatole had asked her to bring him and Natasha together, and she was calling on the Rostovs for that purpose. The idea of throwing her brother and Natasha together amused her. Though at one time, in Petersburg, she had been annoyed with Natasha for drawing Boris away, she did not think of that now, and in her own way heartily wished Natasha well. As she was leaving the Rostovs she called her protegee aside. "My brother dined with me yesterday--we nearly died of laughter- he ate nothing and kept sighing for you, my charmer! He is madly, quite madly, in love with you, my dear." Natasha blushed scarlet when she heard this. "How she blushes, how she blushes, my pretty!" said Helene. "You must certainly come. If you love somebody, my charmer, that is not a reason to shut yourself up. Even if you are engaged, I am sure your fiance would wish you to go into society rather than be bored to death." "So she knows I am engaged, and she and her husband Pierre--that good Pierre--have talked and laughed about this. So it's all right." And again, under Helene's influence, what had seemed terrible now seemed simple and natural. "And she is such a grande dame, so kind, and evidently likes me so much. And why not enjoy myself?" thought Natasha, gazing at Helene with wide-open, wondering eyes. Marya Dmitrievna came back to dinner taciturn and serious, having evidently suffered a defeat at the old prince's. She was still too agitated by the encounter to be able to talk of the affair calmly. In answer to the count's inquiries she replied that things were all right and that she would tell about it next day. On hearing of Countess Bezukhova's visit and the invitation for that evening, Marya Dmitrievna remarked: "I don't care to have anything to do with Bezukhova and don't advise you to; however, if you've promised--go. It will divert your thoughts," she added, addressing Natasha. CHAPTER XIII Count Rostov took the girls to Countess Bezukhova's. There were a good many people there, but nearly all strangers to Natasha. Count Rostov was displeased to see that the company consisted almost entirely of men and women known for the freedom of their conduct. Mademoiselle George was standing in a corner of the drawing room surrounded by young men. There were several Frenchmen present, among them Metivier who from the time Helene reached Moscow had been an intimate in her house. The count decided not to sit down to cards or let his girls out of his sight and to get away as soon as Mademoiselle George's performance was over. Anatole was at the door, evidently on the lookout for the Rostovs. Immediately after greeting the count he went up to Natasha and followed her. As soon as she saw him she was seized by the same feeling she had had at the opera--gratified vanity at his admiration of her and fear at the absence of a moral barrier between them. Helene welcomed Natasha delightedly and was loud in admiration of her beauty and her dress. Soon after their arrival Mademoiselle George went out of the room to change her costume. In the drawing room people began arranging the chairs and taking their seats. Anatole moved a chair for Natasha and was about to sit down beside her, but the count, who never lost sight of her, took the seat himself. Anatole sat down behind her. Mademoiselle George, with her bare, fat, dimpled arms, and a red shawl draped over one shoulder, came into the space left vacant for her, and assumed an unnatural pose. Enthusiastic whispering was audible. Mademoiselle George looked sternly and gloomily at the audience and began reciting some French verses describing her guilty love for her son. In some places she raised her voice, in others she whispered, lifting her head triumphantly; sometimes she paused and uttered hoarse sounds, rolling her eyes. "Adorable! divine! delicious!" was heard from every side. Natasha looked at the fat actress, but neither saw nor heard nor understood anything of what went on before her. She only felt herself again completely borne away into this strange senseless world- so remote from her old world--a world in which it was impossible to know what was good or bad, reasonable or senseless. Behind her sat Anatole, and conscious of his proximity she experienced a frightened sense of expectancy. After the first monologue the whole company rose and surrounded Mademoiselle George, expressing their enthusiasm. "How beautiful she is!" Natasha remarked to her father who had also risen and was moving through the crowd toward the actress. "I don't think so when I look at you!" said Anatole, following Natasha. He said this at a moment when she alone could hear him. "You are enchanting... from the moment I saw you I have never ceased..." "Come, come, Natasha!" said the count, as he turned back for his daughter. "How beautiful she is!" Natasha without saying anything stepped up to her father and looked at him with surprised inquiring eyes. After giving several recitations, Mademoiselle George left, and Countess Bezukhova asked her visitors into the ballroom. The count wished to go home, but Helene entreated him not to spoil her improvised ball, and the Rostovs stayed on. Anatole asked Natasha for a valse and as they danced he pressed her waist and hand and told her she was bewitching and that he loved her. During the ecossaise, which she also danced with him, Anatole said nothing when they happened to be by themselves, but merely gazed at her. Natasha lifted her frightened eyes to him, but there was such confident tenderness in his affectionate look and smile that she could not, whilst looking at him, say what she had to say. She lowered her eyes. "Don't say such things to me. I am betrothed and love another," she said rapidly.... She glanced at him. Anatole was not upset or pained by what she had said. "Don't speak to me of that! What can I do?" said he. "I tell you I am madly, madly, in love with you! Is it my fault that you are enchanting?... It's our turn to begin." Natasha, animated and excited, looked about her with wide-open frightened eyes and seemed merrier than usual. She understood hardly anything that went on that evening. They danced the ecossaise and the Grossvater. Her father asked her to come home, but she begged to remain. Wherever she went and whomever she was speaking to, she felt his eyes upon her. Later on she recalled how she had asked her father to let her go to the dressing room to rearrange her dress, that Helene had followed her and spoken laughingly of her brother's love, and that she again met Anatole in the little sitting room. Helene had disappeared leaving them alone, and Anatole had taken her hand and said in a tender voice: "I cannot come to visit you but is it possible that I shall never see you? I love you madly. Can I never...?" and, blocking her path, he brought his face close to hers. His large, glittering, masculine eyes were so close to hers that she saw nothing but them. "Natalie?" he whispered inquiringly while she felt her hands being painfully pressed. "Natalie?" "I don't understand. I have nothing to say," her eyes replied. Burning lips were pressed to hers, and at the same instant she felt herself released, and Helene's footsteps and the rustle of her dress were heard in the room. Natasha looked round at her, and then, red and trembling, threw a frightened look of inquiry at Anatole and moved toward the door. "One word, just one, for God's sake!" cried Anatole. She paused. She so wanted a word from him that would explain to her what had happened and to which she could find no answer. "Natalie, just a word, only one!" he kept repeating, evidently not knowing what to say and he repeated it till Helene came up to them. Helene returned with Natasha to the drawing room. The Rostovs went away without staying for supper. After reaching home Natasha did not sleep all night. She was tormented by the insoluble question whether she loved Anatole or Prince Andrew. She loved Prince Andrew--she remembered distinctly how deeply she loved him. But she also loved Anatole, of that there was no doubt. "Else how could all this have happened?" thought she. "If, after that, I could return his smile when saying good-by, if I was able to let it come to that, it means that I loved him from the first. It means that he is kind, noble, and splendid, and I could not help loving him. What am I to do if I love him and the other one too?" she asked herself, unable to find an answer to these terrible questions. CHAPTER XIV Morning came with its cares and bustle. Everyone got up and began to move about and talk, dressmakers came again. Marya Dmitrievna appeared, and they were called to breakfast. Natasha kept looking uneasily at everybody with wide-open eyes, as if wishing to intercept every glance directed toward her, and tried to appear the same as usual. After breakfast, which was her best time, Marya Dmitrievna sat down in her armchair and called Natasha and the count to her. "Well, friends, I have now thought the whole matter over and this is my advice," she began. "Yesterday, as you know, I went to see Prince Bolkonski. Well, I had a talk with him.... He took it into his head to begin shouting, but I am not one to be shouted down. I said what I had to say!" "Well, and he?" asked the count. "He? He's crazy... he did not want to listen. But what's the use of talking? As it is we have worn the poor girl out," said Marya Dmitrievna. "My advice to you is finish your business and go back home to Otradnoe... and wait there." "Oh, no!" exclaimed Natasha. "Yes, go back," said Marya Dmitrievna, "and wait there. If your betrothed comes here now--there will be no avoiding a quarrel; but alone with the old man he will talk things over and then come on to you." Count Rostov approved of this suggestion, appreciating its reasonableness. If the old man came round it would be all the better to visit him in Moscow or at Bald Hills later on; and if not, the wedding, against his wishes, could only be arranged at Otradnoe. "That is perfectly true. And I am sorry I went to see him and took her," said the old count. "No, why be sorry? Being here, you had to pay your respects. But if he won't--that's his affair," said Marya Dmitrievna, looking for something in her reticule. "Besides, the trousseau is ready, so there is nothing to wait for; and what is not ready I'll send after you. Though I don't like letting you go, it is the best way. So go, with God's blessing!" Having found what she was looking for in the reticule she handed it to Natasha. It was a letter from Princess Mary. "She has written to you. How she torments herself, poor thing! She's afraid you might think that she does not like you." "But she doesn't like me," said Natasha. "Don't talk nonsense!" cried Marya Dmitrievna. "I shan't believe anyone, I know she doesn't like me," replied Natasha boldly as she took the letter, and her face expressed a cold and angry resolution that caused Marya Dmitrievna to look at her more intently and to frown. "Don't answer like that, my good girl!" she said. "What I say is true! Write an answer!" Natasha did not reply and went to her own room to read Princess Mary's letter. Princess Mary wrote that she was in despair at the misunderstanding that had occurred between them. Whatever her father's feelings might be, she begged Natasha to believe that she could not help loving her as the one chosen by her brother, for whose happiness she was ready to sacrifice everything. "Do not think, however," she wrote, "that my father is ill-disposed toward you. He is an invalid and an old man who must be forgiven; but he is good and magnanimous and will love her who makes his son happy." Princess Mary went on to ask Natasha to fix a time when she could see her again. After reading the letter Natasha sat down at the writing table to answer it. "Dear Princess," she wrote in French quickly and mechanically, and then paused. What more could she write after all that had happened the evening before? "Yes, yes! All that has happened, and now all is changed," she thought as she sat with the letter she had begun before her. "Must I break off with him? Must I really? That's awful..." and to escape from these dreadful thoughts she went to Sonya and began sorting patterns with her. After dinner Natasha went to her room and again took up Princess Mary's letter. "Can it be that it is all over?" she thought. "Can it be that all this has happened so quickly and has destroyed all that went before?" She recalled her love for Prince Andrew in all its former strength, and at the same time felt that she loved Kuragin. She vividly pictured herself as Prince Andrew's wife, and the scenes of happiness with him she had so often repeated in her imagination, and at the same time, aglow with excitement, recalled every detail of yesterday's interview with Anatole. "Why could that not be as well?" she sometimes asked herself in complete bewilderment. "Only so could I be completely happy; but now I have to choose, and I can't be happy without either of them. Only," she thought, "to tell Prince Andrew what has happened or to hide it from him are both equally impossible. But with that one nothing is spoiled. But am I really to abandon forever the joy of Prince Andrew's love, in which I have lived so long?" "Please, Miss!" whispered a maid entering the room with a mysterious air. "A man told me to give you this-" and she handed Natasha a letter. "Only, for Christ's sake..." the girl went on, as Natasha, without thinking, mechanically broke the seal and read a love letter from Anatole, of which, without taking in a word, she understood only that it was a letter from him--from the man she loved. Yes, she loved him, or else how could that have happened which had happened? And how could she have a love letter from him in her hand? With trembling hands Natasha held that passionate love letter which Dolokhov had composed for Anatole, and as she read it she found in it an echo of all that she herself imagined she was feeling. "Since yesterday evening my fate has been sealed; to be loved by you or to die. There is no other way for me," the letter began. Then he went on to say that he knew her parents would not give her to him--for this there were secret reasons he could reveal only to her--but that if she loved him she need only say the word yes, and no human power could hinder their bliss. Love would conquer all. He would steal her away and carry her off to the ends of the earth. "Yes, yes! I love him!" thought Natasha, reading the letter for the twentieth time and finding some peculiarly deep meaning in each word of it. That evening Marya Dmitrievna was going to the Akharovs' and proposed to take the girls with her. Natasha, pleading a headache, remained at home. CHAPTER XV On returning late in the evening Sonya went to Natasha's room, and to her surprise found her still dressed and asleep on the sofa. Open on the table, beside her lay Anatole's letter. Sonya picked it up and read it. As she read she glanced at the sleeping Natasha, trying to find in her face an explanation of what she was reading, but did not find it. Her face was calm, gentle, and happy. Clutching her breast to keep herself from choking, Sonya, pale and trembling with fear and agitation, sat down in an armchair and burst into tears. "How was it I noticed nothing? How could it go so far? Can she have left off loving Prince Andrew? And how could she let Kuragin go to such lengths? He is a deceiver and a villain, that's plain! What will Nicholas, dear noble Nicholas, do when he hears of it? So this is the meaning of her excited, resolute, unnatural look the day before yesterday, yesterday, and today," thought Sonya. "But it can't be that she loves him! She probably opened the letter without knowing who it was from. Probably she is offended by it. She could not do such a thing!" Sonya wiped away her tears and went up to Natasha, again scanning her face. "Natasha!" she said, just audibly. Natasha awoke and saw Sonya. "Ah, you're back?" And with the decision and tenderness that often come at the moment of awakening, she embraced her friend, but noticing Sonya's look of embarrassment, her own face expressed confusion and suspicion. "Sonya, you've read that letter?" she demanded. "Yes," answered Sonya softly. Natasha smiled rapturously. "No, Sonya, I can't any longer!" she said. "I can't hide it from you any longer. You know, we love one another! Sonya, darling, he writes... Sonya..." Sonya stared open-eyed at Natasha, unable to believe her ears. "And Bolkonski?" she asked. "Ah, Sonya, if you only knew how happy I am!" cried Natasha. "You don't know what love is...." "But, Natasha, can that be all over?" Natasha looked at Sonya with wide-open eyes as if she could not grasp the question. "Well, then, are you refusing Prince Andrew?" said Sonya. "Oh, you don't understand anything! Don't talk nonsense, just listen!" said Natasha, with momentary vexation. "But I can't believe it," insisted Sonya. "I don't understand. How is it you have loved a man for a whole year and suddenly... Why, you have only seen him three times! Natasha, I don't believe you, you're joking! In three days to forget everything and so..." "Three days?" said Natasha. "It seems to me I've loved him a hundred years. It seems to me that I have never loved anyone before. You can't understand it.... Sonya, wait a bit, sit here," and Natasha embraced and kissed her. "I had heard that it happens like this, and you must have heard it too, but it's only now that I feel such love. It's not the same as before. As soon as I saw him I felt he was my master and I his slave, and that I could not help loving him. Yes, his slave! Whatever he orders I shall do. You don't understand that. What can I do? What can I do, Sonya?" cried Natasha with a happy yet frightened expression. "But think what you are doing," cried Sonya. "I can't leave it like this. This secret correspondence... How could you let him go so far?" she went on, with a horror and disgust she could hardly conceal. "I told you that I have no will," Natasha replied. "Why can't you understand? I love him!" "Then I won't let it come to that... I shall tell!" cried Sonya, bursting into tears. "What do you mean? For God's sake... If you tell, you are my enemy!" declared Natasha. "You want me to be miserable, you want us to be separated...." When she saw Natasha's fright, Sonya shed tears of shame and pity for her friend. "But what has happened between you?" she asked. "What has he said to you? Why doesn't he come to the house?" Natasha did not answer her questions. "For God's sake, Sonya, don't tell anyone, don't torture me," Natasha entreated. "Remember no one ought to interfere in such matters! I have confided in you...." "But why this secrecy? Why doesn't he come to the house?" asked Sonya. "Why doesn't he openly ask for your hand? You know Prince Andrew gave you complete freedom--if it is really so; but I don't believe it! Natasha, have you considered what these secret reasons can be?" Natasha looked at Sonya with astonishment. Evidently this question presented itself to her mind for the first time and she did not know how to answer it. "I don't know what the reasons are. But there must be reasons!" Sonya sighed and shook her head incredulously. "If there were reasons..." she began. But Natasha, guessing her doubts, interrupted her in alarm. "Sonya, one can't doubt him! One can't, one can't! Don't you understand?" she cried. "Does he love you?" "Does he love me?" Natasha repeated with a smile of pity at her friend's lack of comprehension. "Why, you have read his letter and you have seen him." "But if he is dishonorable?" "He! dishonorable? If you only knew!" exclaimed Natasha. "If he is an honorable man he should either declare his intentions or cease seeing you; and if you won't do this, I will. I will write to him, and I will tell Papa!" said Sonya resolutely. "But I can't live without him!" cried Natasha. "Natasha, I don't understand you. And what are you saying! Think of your father and of Nicholas." "I don't want anyone, I don't love anyone but him. How dare you say he is dishonorable? Don't you know that I love him?" screamed Natasha. "Go away, Sonya! I don't want to quarrel with you, but go, for God's sake go! You see how I am suffering!" Natasha cried angrily, in a voice of despair and repressed irritation. Sonya burst into sobs and ran from the room. Natasha went to the table and without a moment's reflection wrote that answer to Princess Mary which she had been unable to write all the morning. In this letter she said briefly that all their misunderstandings were at an end; that availing herself of the magnanimity of Prince Andrew who when he went abroad had given her her freedom, she begged Princess Mary to forget everything and forgive her if she had been to blame toward her, but that she could not be his wife. At that moment this all seemed quite easy, simple, and clear to Natasha. On Friday the Rostovs were to return to the country, but on Wednesday the count went with the prospective purchaser to his estate near Moscow. On the day the count left, Sonya and Natasha were invited to a big dinner party at the Karagins', and Marya Dmitrievna took them there. At that party Natasha again met Anatole, and Sonya noticed that she spoke to him, trying not to be overheard, and that all through dinner she was more agitated than ever. When they got home Natasha was the first to begin the explanation Sonya expected. "There, Sonya, you were talking all sorts of nonsense about him," Natasha began in a mild voice such as children use when they wish to be praised. "We have had an explanation today." "Well, what happened? What did he say? Natasha, how glad I am you're not angry with me! Tell me everything--the whole truth. What did he say?" Natasha became thoughtful. "Oh, Sonya, if you knew him as I do! He said... He asked me what I had promised Bolkonski. He was glad I was free to refuse him." Sonya sighed sorrowfully. "But you haven't refused Bolkonski?" said she. "Perhaps I have. Perhaps all is over between me and Bolkonski. Why do you think so badly of me?" "I don't think anything, only I don't understand this..." "Wait a bit, Sonya, you'll understand everything. You'll see what a man he is! Now don't think badly of me or of him. I don't think badly of anyone: I love and pity everybody. But what am I to do?" Sonya did not succumb to the tender tone Natasha used toward her. The more emotional and ingratiating the expression of Natasha's face became, the more serious and stern grew Sonya's. "Natasha," said she, "you asked me not to speak to you, and I haven't spoken, but now you yourself have begun. I don't trust him, Natasha. Why this secrecy?" "Again, again!" interrupted Natasha. "Natasha, I am afraid for you!" "Afraid of what?" "I am afraid you're going to your ruin," said Sonya resolutely, and was herself horrified at what she had said. Anger again showed in Natasha's face. "And I'll go to my ruin, I will, as soon as possible! It's not your business! It won't be you, but I, who'll suffer. Leave me alone, leave me alone! I hate you!" "Natasha!" moaned Sonya, aghast. "I hate you, I hate you! You're my enemy forever!" And Natasha ran out of the room. Natasha did not speak to Sonya again and avoided her. With the same expression of agitated surprise and guilt she went about the house, taking up now one occupation, now another, and at once abandoning them. Hard as it was for Sonya, she watched her friend and did not let her out of her sight. The day before the count was to return, Sonya noticed that Natasha sat by the drawingroom window all the morning as if expecting something and that she made a sign to an officer who drove past, whom Sonya took to be Anatole. Sonya began watching her friend still more attentively and noticed that at dinner and all that evening Natasha was in a strange and unnatural state. She answered questions at random, began sentences she did not finish, and laughed at everything. After tea Sonya noticed a housemaid at Natasha's door timidly waiting to let her pass. She let the girl go in, and then listening at the door learned that another letter had been delivered. Then suddenly it became clear to Sonya that Natasha had some dreadful plan for that evening. Sonya knocked at her door. Natasha did not let her in. "She will run away with him!" thought Sonya. "She is capable of anything. There was something particularly pathetic and resolute in her face today. She cried as she said good-by to Uncle," Sonya remembered. "Yes, that's it, she means to elope with him, but what am I to do?" thought she, recalling all the signs that clearly indicated that Natasha had some terrible intention. "The count is away. What am I to do? Write to Kuragin demanding an explanation? But what is there to oblige him to reply? Write to Pierre, as Prince Andrew asked me to in case of some misfortune?... But perhaps she really has already refused Bolkonski--she sent a letter to Princess Mary yesterday. And Uncle is away...." To tell Marya Dmitrievna who had such faith in Natasha seemed to Sonya terrible. "Well, anyway," thought Sonya as she stood in the dark passage, "now or never I must prove that I remember the family's goodness to me and that I love Nicholas. Yes! If I don't sleep for three nights I'll not leave this passage and will hold her back by force and will and not let the family be disgraced," thought she. CHAPTER XVI Anatole had lately moved to Dolokhov's. The plan for Natalie Rostova's abduction had been arranged and the preparations made by Dolokhov a few days before, and on the day that Sonya, after listening at Natasha's door, resolved to safeguard her, it was to have been put into execution. Natasha had promised to come out to Kuragin at the back porch at ten that evening. Kuragin was to put her into a troyka he would have ready and to drive her forty miles to the village of Kamenka, where an unfrocked priest was in readiness to perform a marriage ceremony over them. At Kamenka a relay of horses was to wait which would take them to the Warsaw highroad, and from there they would hasten abroad with post horses. Anatole had a passport, an order for post horses, ten thousand rubles he had taken from his sister and another ten thousand borrowed with Dolokhov's help. Two witnesses for the mock marriage--Khvostikov, a retired petty official whom Dolokhov made use of in his gambling transactions, and Makarin, a retired hussar, a kindly, weak fellow who had an unbounded affection for Kuragin--were sitting at tea in Dolokhov's front room. In his large study, the walls of which were hung to the ceiling with Persian rugs, bearskins, and weapons, sat Dolokhov in a traveling cloak and high boots, at an open desk on which lay abacus and some bundles of paper money. Anatole, with uniform unbuttoned, walked to and fro from the room where the witnesses were sitting, through the study to the room behind, where his French valet and others were packing the last of his things. Dolokhov was counting the money and noting something down. "Well," he said, "Khvostikov must have two thousand." "Give it to him, then," said Anatole. "Makarka" (their name for Makarin) "will go through fire and water for you for nothing. So here are our accounts all settled," said Dolokhov, showing him the memorandum. "Is that right?" "Yes, of course," returned Anatole, evidently not listening to Dolokhov and looking straight before him with a smile that did not leave his face. Dolokhov banged down the or of his and turned to Anatole with an ironic smile: "Do you know? You'd really better drop it all. There's still time!" "Fool," retorted Anatole. "Don't talk nonsense! If you only knew... it's the devil knows what!" "No, really, give it up!" said Dolokhov. "I am speaking seriously. It's no joke, this plot you've hatched." "What, teasing again? Go to the devil! Eh?" said Anatole, making a grimace. "Really it's no time for your stupid jokes," and he left the room. Dolokhov smiled contemptuously and condescendingly when Anatole had gone out. "You wait a bit," he called after him. "I'm not joking, I'm talking sense. Come here, come here!" Anatole returned and looked at Dolokhov, trying to give him his attention and evidently submitting to him involuntarily. "Now listen to me. I'm telling you this for the last time. Why should I joke about it? Did I hinder you? Who arranged everything for you? Who found the priest and got the passport? Who raised the money? I did it all." "Well, thank you for it. Do you think I am not grateful?" And Anatole sighed and embraced Dolokhov. "I helped you, but all the same I must tell you the truth; it is a dangerous business, and if you think about it--a stupid business. Well, you'll carry her off--all right! Will they let it stop at that? It will come out that you're already married. Why, they'll have you in the criminal court...." "Oh, nonsense, nonsense!" Anatole ejaculated and again made a grimace. "Didn't I explain to you? What?" And Anatole, with the partiality dull-witted people have for any conclusion they have reached by their own reasoning, repeated the argument he had already put to Dolokhov a hundred times. "Didn't I explain to you that I have come to this conclusion: if this marriage is invalid," he went on, crooking one finger, "then I have nothing to answer for; but if it is valid, no matter! Abroad no one will know anything about it. Isn't that so? And don't talk to me, don't, don't." "Seriously, you'd better drop it! You'll only get yourself into a mess!" "Go to the devil!" cried Anatole and, clutching his hair, left the room, but returned at once and dropped into an armchair in front of Dolokhov with his feet turned under him. "It's the very devil! What? Feel how it beats!" He took Dolokhov's hand and put it on his heart. "What a foot, my dear fellow! What a glance! A goddess!" he added in French. "What?" Dolokhov with a cold smile and a gleam in his handsome insolent eyes looked at him--evidently wishing to get some more amusement out of him. "Well and when the money's gone, what then?" "What then? Eh?" repeated Anatole, sincerely perplexed by a thought of the future. "What then?... Then, I don't know.... But why talk nonsense!" He glanced at his watch. "It's time!" Anatole went into the back room. "Now then! Nearly ready? You're dawdling!" he shouted to the servants. Dolokhov put away the money, called a footman whom he ordered to bring something for them to eat and drink before the journey, and went into the room where Khvostikov and Makarin were sitting. Anatole lay on the sofa in the study leaning on his elbow and smiling pensively, while his handsome lips muttered tenderly to himself. "Come and eat something. Have a drink!" Dolokhov shouted to him from the other room. "I don't want to," answered Anatole continuing to smile. "Come! Balaga is here." Anatole rose and went into the dining room. Balaga was a famous troyka driver who had known Dolokhov and Anatole some six years and had given them good service with his troykas. More than once when Anatole's regiment was stationed at Tver he had taken him from Tver in the evening, brought him to Moscow by daybreak, and driven him back again the next night. More than once he had enabled Dolokhov to escape when pursued. More than once he had driven them through the town with gypsies and "ladykins" as he called the cocottes. More than once in their service he had run over pedestrians and upset vehicles in the streets of Moscow and had always been protected from the consequences by "my gentlemen" as he called them. He had ruined more than one horse in their service. More than once they had beaten him, and more than once they had made him drunk on champagne and Madeira, which he loved; and he knew more than one thing about each of them which would long ago have sent an ordinary man to Siberia. They often called Balaga into their orgies and made him drink and dance at the gypsies', and more than one thousand rubles of their money had passed through his hands. In their service he risked his skin and his life twenty times a year, and in their service had lost more horses than the money he had from them would buy. But he liked them; liked that mad driving at twelve miles an hour, liked upsetting a driver or running down a pedestrian, and flying at full gallop through the Moscow streets. He liked to hear those wild, tipsy shouts behind him: "Get on! Get on!" when it was impossible to go any faster. He liked giving a painful lash on the neck to some peasant who, more dead than alive, was already hurrying out of his way. "Real gentlemen!" he considered them. Anatole and Dolokhov liked Balaga too for his masterly driving and because he liked the things they liked. With others Balaga bargained, charging twenty-five rubles for a two hours' drive, and rarely drove himself, generally letting his young men do so. But with "his gentlemen" he always drove himself and never demanded anything for his work. Only a couple of times a year--when he knew from their valets that they had money in hand--he would turn up of a morning quite sober and with a deep bow would ask them to help him. The gentlemen always made him sit down. "Do help me out, Theodore Ivanych, sir," or "your excellency," he would say. "I am quite out of horses. Let me have what you can to go to the fair." And Anatole and Dolokhov, when they had money, would give him a thousand or a couple of thousand rubles. Balaga was a fair-haired, short, and snub-nosed peasant of about twenty-seven; red-faced, with a particularly red thick neck, glittering little eyes, and a small beard. He wore a fine, dark-blue, silk-lined cloth coat over a sheepskin. On entering the room now he crossed himself, turning toward the front corner of the room, and went up to Dolokhov, holding out a small, black hand. "Theodore Ivanych!" he said, bowing. "How d'you do, friend? Well, here he is!" "Good day, your excellency!" he said, again holding out his hand to Anatole who had just come in. "I say, Balaga," said Anatole, putting his hands on the man's shoulders, "do you care for me or not? Eh? Now, do me a service.... What horses have you come with? Eh?" "As your messenger ordered, your special beasts," replied Balaga. "Well, listen, Balaga! Drive all three to death but get me there in three hours. Eh?" "When they are dead, what shall I drive?" said Balaga with a wink. "Mind, I'll smash your face in! Don't make jokes!" cried Anatole, suddenly rolling his eyes. "Why joke?" said the driver, laughing. "As if I'd grudge my gentlemen anything! As fast as ever the horses can gallop, so fast we'll go!" "Ah!" said Anatole. "Well, sit down." "Yes, sit down!" said Dolokhov. "I'll stand, Theodore Ivanych." "Sit down; nonsense! Have a drink!" said Anatole, and filled a large glass of Madeira for him. The driver's eyes sparkled at the sight of the wine. After refusing it for manners' sake, he drank it and wiped his mouth with a red silk handkerchief he took out of his cap. "And when are we to start, your excellency?" "Well..." Anatole looked at his watch. "We'll start at once. Mind, Balaga! You'll get there in time? Eh?" "That depends on our luck in starting, else why shouldn't we be there in time?" replied Balaga. "Didn't we get you to Tver in seven hours? I think you remember that, your excellency?" "Do you know, one Christmas I drove from Tver," said Anatole, smilingly at the recollection and turning to Makarin who gazed rapturously at him with wide-open eyes. "Will you believe it, Makarka, it took one's breath away, the rate we flew. We came across a train of loaded sleighs and drove right over two of them. Eh?" "Those were horses!" Balaga continued the tale. "That time I'd harnessed two young side horses with the bay in the shafts," he went on, turning to Dolokhov. "Will you believe it, Theodore Ivanych, those animals flew forty miles? I couldn't hold them in, my hands grew numb in the sharp frost so that I threw down the reins--'Catch hold yourself, your excellency!' says I, and I just tumbled on the bottom of the sleigh and sprawled there. It wasn't a case of urging them on, there was no holding them in till we reached the place. The devils took us there in three hours! Only the near one died of it." CHAPTER XVII Anatole went out of the room and returned a few minutes later wearing a fur coat girt with a silver belt, and a sable cap jauntily set on one side and very becoming to his handsome face. Having looked in a mirror, and standing before Dolokhov in the same pose he had assumed before it, he lifted a glass of wine. "Well, good-by, Theodore. Thank you for everything and farewell!" said Anatole. "Well, comrades and friends..." he considered for a moment "...of my youth, farewell!" he said, turning to Makarin and the others. Though they were all going with him, Anatole evidently wished to make something touching and solemn out of this address to his comrades. He spoke slowly in a loud voice and throwing out his chest slightly swayed one leg. "All take glasses; you too, Balaga. Well, comrades and friends of my youth, we've had our fling and lived and reveled. Eh? And now, when shall we meet again? I am going abroad. We have had a good time--now farewell, lads! To our health! Hurrah!..." he cried, and emptying his glass flung it on the floor. "To your health!" said Balaga who also emptied his glass, and wiped his mouth with his handkerchief. Makarin embraced Anatole with tears in his eyes. "Ah, Prince, how sorry I am to part from you! "Let's go. Let's go!" cried Anatole. Balaga was about to leave the room. "No, stop!" said Anatole. "Shut the door; we have first to sit down. That's the way." They shut the door and all sat down. "Now, quick march, lads!" said Anatole, rising. Joseph, his valet, handed him his sabretache and saber, and they all went out into the vestibule. "And where's the fur cloak?" asked Dolokhov. "Hey, Ignatka! Go to Matrena Matrevna and ask her for the sable cloak. I have heard what elopements are like," continued Dolokhov with a wink. "Why, she'll rush out more dead than alive just in the things she is wearing; if you delay at all there'll be tears and 'Papa' and 'Mamma,' and she's frozen in a minute and must go back--but you wrap the fur cloak round her first thing and carry her to the sleigh." The valet brought a woman's fox-lined cloak. "Fool, I told you the sable one! Hey, Matrena, the sable!" he shouted so that his voice rang far through the rooms. A handsome, slim, and pale-faced gypsy girl with glittering black eyes and curly blue-black hair, wearing a red shawl, ran out with a sable mantle on her arm. "Here, I don't grudge it--take it!" she said, evidently afraid of her master and yet regretful of her cloak. Dolokhov, without answering, took the cloak, threw it over Matrena, and wrapped her up in it. "That's the way," said Dolokhov, "and then so!" and he turned the collar up round her head, leaving only a little of the face uncovered. "And then so, do you see?" and he pushed Anatole's head forward to meet the gap left by the collar, through which Matrena's brilliant smile was seen. "Well, good-by, Matrena," said Anatole, kissing her. "Ah, my revels here are over. Remember me to Steshka. There, good-by! Good-by, Matrena, wish me luck!" "Well, Prince, may God give you great luck!" said Matrena in her gypsy accent. Two troykas were standing before the porch and two young drivers were holding the horses. Balaga took his seat in the front one and holding his elbows high arranged the reins deliberately. Anatole and Dolokhov got in with him. Makarin, Khvostikov, and a valet seated themselves in the other sleigh. "Well, are you ready?" asked Balaga. "Go!" he cried, twisting the reins round his hands, and the troyka tore down the Nikitski Boulevard. "Tproo! Get out of the way! Hi!... Tproo!..." The shouting of Balaga and of the sturdy young fellow seated on the box was all that could be heard. On the Arbat Square the troyka caught against a carriage; something cracked, shouts were heard, and the troyka flew along the Arbat Street. After taking a turn along the Podnovinski Boulevard, Balaga began to rein in, and turning back drew up at the crossing of the old Konyusheny Street. The young fellow on the box jumped down to hold the horses and Anatole and Dolokhov went along the pavement. When they reached the gate Dolokhov whistled. The whistle was answered, and a maidservant ran out. "Come into the courtyard or you'll be seen; she'll come out directly," said she. Dolokhov stayed by the gate. Anatole followed the maid into the courtyard, turned the corner, and ran up into the porch. He was met by Gabriel, Marya Dmitrievna's gigantic footman. "Come to the mistress, please," said the footman in his deep bass, intercepting any retreat. "To what Mistress? Who are you?" asked Anatole in a breathless whisper. "Kindly step in, my orders are to bring you in." "Kuragin! Come back!" shouted Dolokhov. "Betrayed! Back!" Dolokhov, after Anatole entered, had remained at the wicket gate and was struggling with the yard porter who was trying to lock it. With a last desperate effort Dolokhov pushed the porter aside, and when Anatole ran back seized him by the arm, pulled him through the wicket, and ran back with him to the troyka. CHAPTER XVIII Marya Dmitrievna, having found Sonya weeping in the corridor, made her confess everything, and intercepting the note to Natasha she read it and went into Natasha's room with it in her hand. "You shameless good-for-nothing!" said she. "I won't hear a word." Pushing back Natasha who looked at her with astonished but tearless eyes, she locked her in; and having given orders to the yard porter to admit the persons who would be coming that evening, but not to let them out again, and having told the footman to bring them up to her, she seated herself in the drawing room to await the abductors. When Gabriel came to inform her that the men who had come had run away again, she rose frowning, and clasping her hands behind her paced through the rooms a long time considering what she should do. Toward midnight she went to Natasha's room fingering the key in her pocket. Sonya was sitting sobbing in the corridor. "Marya Dmitrievna, for God's sake let me in to her!" she pleaded, but Marya Dmitrievna unlocked the door and went in without giving her an answer.... "Disgusting, abominable... In my house... horrid girl, hussy! I'm only sorry for her father!" thought she, trying to restrain her wrath. "Hard as it may be, I'll tell them all to hold their tongues and will hide it from the count." She entered the room with resolute steps. Natasha lying on the sofa, her head hidden in her hands, and she did not stir. She was in just the same position in which Marya Dmitrievna had left her. "A nice girl! Very nice!" said Marya Dmitrievna. "Arranging meetings with lovers in my house! It's no use pretending: you listen when I speak to you!" And Marya Dmitrievna touched her arm. "Listen when when I speak! You've disgraced yourself like the lowest of hussies. I'd treat you differently, but I'm sorry for your father, so I will conceal it." Natasha did not change her position, but her whole body heaved with noiseless, convulsive sobs which choked her. Marya Dmitrievna glanced round at Sonya and seated herself on the sofa beside Natasha. "It's lucky for him that he escaped me; but I'll find him!" she said in her rough voice. "Do you hear what I am saying or not?" she added. She put her large hand under Natasha's face and turned it toward her. Both Marya Dmitrievna and Sonya were amazed when they saw how Natasha looked. Her eyes were dry and glistening, her lips compressed, her cheeks sunken. "Let me be!... What is it to me?... I shall die!" she muttered, wrenching herself from Marya Dmitrievna's hands with a vicious effort and sinking down again into her former position. "Natalie!" said Marya Dmitrievna. "I wish for your good. Lie still, stay like that then, I won't touch you. But listen. I won't tell you how guilty you are. You know that yourself. But when your father comes back tomorrow what am I to tell him? Eh?" Again Natasha's body shook with sobs. "Suppose he finds out, and your brother, and your betrothed?" "I have no betrothed: I have refused him!" cried Natasha. "That's all the same," continued Dmitrievna. "If they hear of this, will they let it pass? He, your father, I know him... if he challenges him to a duel will that be all right? Eh?" "Oh, let me be! Why have you interfered at all? Why? Why? Who asked you to?" shouted Natasha, raising herself on the sofa and looking malignantly at Marya Dmitrievna. "But what did you want?" cried Marya Dmitrievna, growing angry again. "Were you kept under lock and key? Who hindered his coming to the house? Why carry you off as if you were some gypsy singing girl?... Well, if he had carried you off... do you think they wouldn't have found him? Your father, or brother, or your betrothed? And he's a scoundrel, a wretch--that's a fact!" "He is better than any of you!" exclaimed Natasha getting up. "If you hadn't interfered... Oh, my God! What is it all? What is it? Sonya, why?... Go away!" And she burst into sobs with the despairing vehemence with which people bewail disasters they feel they have themselves occasioned. Marya Dmitrievna was to speak again but Natasha cried out: "Go away! Go away! You all hate and despise me!" and she threw herself back on the sofa. Marya Dmitrievna went on admonishing her for some time, enjoining on her that it must all be kept from her father and assuring her that nobody would know anything about it if only Natasha herself would undertake to forget it all and not let anyone see that something had happened. Natasha did not reply, nor did she sob any longer, but she grew cold and had a shivering fit. Marya Dmitrievna put a pillow under her head, covered her with two quilts, and herself brought her some lime-flower water, but Natasha did not respond to her. "Well, let her sleep," said Marya Dmitrievna as she went of the room supposing Natasha to be asleep. But Natasha was not asleep; with pale face and fixed wide-open eyes she looked straight before her. All that night she did not sleep or weep and did not speak to Sonya who got up and went to her several times. Next day Count Rostov returned from his estate near Moscow in time for lunch as he had promised. He was in very good spirits; the affair with the purchaser was going on satisfactorily, and there was nothing to keep him any longer in Moscow, away from the countess whom he missed. Marya Dmitrievna met him and told him that Natasha had been very unwell the day before and that they had sent for the doctor, but that she was better now. Natasha had not left her room that morning. With compressed and parched lips and dry fixed eyes, she sat at the window, uneasily watching the people who drove past and hurriedly glancing round at anyone who entered the room. She was evidently expecting news of him and that he would come or would write to her. When the count came to see her she turned anxiously round at the sound of a man's footstep, and then her face resumed its cold and malevolent expression. She did not even get up to greet him. "What is the matter with you, my angel? Are you ill?" asked the count. After a moment's silence Natasha answered: "Yes, ill." In reply to the count's anxious inquiries as to why she was so dejected and whether anything had happened to her betrothed, she assured him that nothing had happened and asked him not to worry. Marya Dmitrievna confirmed Natasha's assurances that nothing had happened. From the pretense of illness, from his daughter's distress, and by the embarrassed faces of Sonya and Marya Dmitrievna, the count saw clearly that something had gone wrong during his absence, but it was so terrible for him to think that anything disgraceful had happened to his beloved daughter, and he so prized his own cheerful tranquillity, that he avoided inquiries and tried to assure himself that nothing particularly had happened; and he was only dissatisfied that her indisposition delayed their return to the country. CHAPTER XIX From the day his wife arrived in Moscow Pierre had been intending to go away somewhere, so as not to be near her. Soon after the Rostovs came to Moscow the effect Natasha had on him made him hasten to carry out his intention. He went to Tver to see Joseph Alexeevich's widow, who had long since promised to hand over to him some papers of her deceased husband's. When he returned to Moscow Pierre was handed a letter from Marya Dmitrievna asking him to come and see her on a matter of great importance relating to Andrew Bolkonski and his betrothed. Pierre had been avoiding Natasha because it seemed to him that his feeling for her was stronger than a married man's should be for his friend's fiancee. Yet some fate constantly threw them together. "What can have happened? And what can they want with me?" thought he as he dressed to go to Marya Dmitrievna's. "If only Prince Andrew would hurry up and come and marry her!" thought he on his way to the house. On the Tverskoy Boulevard a familiar voice called to him. "Pierre! Been back long?" someone shouted. Pierre raised his head. In a sleigh drawn by two gray trotting-horses that were bespattering the dashboard with snow, Anatole and his constant companion Makarin dashed past. Anatole was sitting upright in the classic pose of military dandies, the lower part of his face hidden by his beaver collar and his head slightly bent. His face was fresh and rosy, his white-plumed hat, tilted to one side, disclosed his curled and pomaded hair besprinkled with powdery snow. "Yes, indeed, that's a true sage," thought Pierre. "He sees nothing beyond the pleasure of the moment, nothing troubles him and so he is always cheerful, satisfied, and serene. What wouldn't I give to be like him!" he thought enviously. In Marya Dmitrievna's anteroom the footman who helped him off with his fur coat said that the mistress asked him to come to her bedroom. When he opened the ballroom door Pierre saw Natasha sitting at the window, with a thin, pale, and spiteful face. She glanced round at him, frowned, and left the room with an expression of cold dignity. "What has happened?" asked Pierre, entering Marya Dmitrievna's room. "Fine doings!" answered Dmitrievna. "For fifty-eight years have I lived in this world and never known anything so disgraceful!" And having put him on his honor not to repeat anything she told him, Marya Dmitrievna informed him that Natasha had refused Prince Andrew without her parents' knowledge and that the cause of this was Anatole Kuragin into whose society Pierre's wife had thrown her and with whom Natasha had tried to elope during her father's absence, in order to be married secretly. Pierre raised his shoulders and listened open-mouthed to what was told him, scarcely able to believe his own ears. That Prince Andrew's deeply loved affianced wife--the same Natasha Rostova who used to be so charming--should give up Bolkonski for that fool Anatole who was already secretly married (as Pierre knew), and should be so in love with him as to agree to run away with him, was something Pierre could not conceive and could not imagine. He could not reconcile the charming impression he had of Natasha, whom he had known from a child, with this new conception of her baseness, folly, and cruelty. He thought of his wife. "They are all alike!" he said to himself, reflecting that he was not the only man unfortunate enough to be tied to a bad woman. But still he pitied Prince Andrew to the point of tears and sympathized with his wounded pride, and the more he pitied his friend the more did he think with contempt and even with disgust of that Natasha who had just passed him in the ballroom with such a look of cold dignity. He did not know that Natasha's soul was overflowing with despair, shame, and humiliation, and that it was not her fault that her face happened to assume an expression of calm dignity and severity. "But how get married?" said Pierre, in answer to Marya Dmitrievna. "He could not marry--he is married!" "Things get worse from hour to hour!" ejaculated Marya Dmitrievna. "A nice youth! What a scoundrel! And she's expecting him--expecting him since yesterday. She must be told! Then at least she won't go on expecting him." After hearing the details of Anatole's marriage from Pierre, and giving vent to her anger against Anatole in words of abuse, Marya Dmitrievna told Pierre why she had sent for him. She was afraid that the count or Bolkonski, who might arrive at any moment, if they knew of this affair (which she hoped to hide from them) might challenge Anatole to a duel, and she therefore asked Pierre to tell his brother-in-law in her name to leave Moscow and not dare to let her set eyes on him again. Pierre--only now realizing the danger to the old count, Nicholas, and Prince Andrew--promised to do as she wished. Having briefly and exactly explained her wishes to him, she let him go to the drawing room. "Mind, the count knows nothing. Behave as if you know nothing either," she said. "And I will go and tell her it is no use expecting him! And stay to dinner if you care to!" she called after Pierre. Pierre met the old count, who seemed nervous and upset. That morning Natasha had told him that she had rejected Bolkonski. "Troubles, troubles, my dear fellow!" he said to Pierre. "What troubles one has with these girls without their mother! I do so regret having come here.... I will be frank with you. Have you heard she has broken off her engagement without consulting anybody? It's true this engagement never was much to my liking. Of course he is an excellent man, but still, with his father's disapproval they wouldn't have been happy, and Natasha won't lack suitors. Still, it has been going on so long, and to take such a step without father's or mother's consent! And now she's ill, and God knows what! It's hard, Count, hard to manage daughters in their mother's absence...." Pierre saw that the count was much upset and tried to change the subject, but the count returned to his troubles. Sonya entered the room with an agitated face. "Natasha is not quite well; she's in her room and would like to see you. Marya Dmitrievna is with her and she too asks you to come." "Yes, you are a great friend of Bolkonski's, no doubt she wants to send him a message," said the count. "Oh dear! Oh dear! How happy it all was!" And clutching the spare gray locks on his temples the count left the room. When Marya Dmitrievna told Natasha that Anatole was married, Natasha did not wish to believe it and insisted on having it confirmed by Pierre himself. Sonya told Pierre this as she led him along the corridor to Natasha's room. Natasha, pale and stern, was sitting beside Marya Dmitrievna, and her eyes, glittering feverishly, met Pierre with a questioning look the moment he entered. She did not smile or nod, but only gazed fixedly at him, and her look asked only one thing: was he a friend, or like the others an enemy in regard to Anatole? As for Pierre, he evidently did not exist for her. "He knows all about it," said Marya Dmitrievna pointing to Pierre and addressing Natasha. "Let him tell you whether I have told the truth." Natasha looked from one to the other as a hunted and wounded animal looks at the approaching dogs and sportsmen. "Natalya Ilynichna," Pierre began, dropping his eyes with a feeling of pity for her and loathing for the thing he had to do, "whether it is true or not should make no difference to you, because..." "Then it is not true that he's married!" "Yes, it is true." "Has he been married long?" she asked. "On your honor?..." Pierre gave his word of honor. "Is he still here?" she asked, quickly. "Yes, I have just seen him." She was evidently unable to speak and made a sign with her hands that they should leave her alone. CHAPTER XX Pierre did not stay for dinner, but left the room and went away at once. He drove through the town seeking Anatole Kuragin, at the thought of whom now the blood rushed to his heart and he felt a difficulty in breathing. He was not at the ice hills, nor at the gypsies', nor at Komoneno's. Pierre drove to the Club. In the Club all was going on as usual. The members who were assembling for dinner were sitting about in groups; they greeted Pierre and spoke of the town news. The footman having greeted him, knowing his habits and his acquaintances, told him there was a place left for him in the small dining room and that Prince Michael Zakharych was in the library, but Paul Timofeevich had not yet arrived. One of Pierre's acquaintances, while they were talking about the weather, asked if he had heard of Kuragin's abduction of Rostova which was talked of in the town, and was it true? Pierre laughed and said it was nonsense for he had just come from the Rostovs'. He asked everyone about Anatole. One man told him he had not come yet, and another that he was coming to dinner. Pierre felt it strange to see this calm, indifferent crowd of people unaware of what was going on in his soul. He paced through the ballroom, waited till everyone had come, and as Anatole had not turned up did not stay for dinner but drove home. Anatole, for whom Pierre was looking, dined that day with Dolokhov, consulting him as to how to remedy this unfortunate affair. It seemed to him essential to see Natasha. In the evening he drove to his sister's to discuss with her how to arrange a meeting. When Pierre returned home after vainly hunting all over Moscow, his valet informed him that Prince Anatole was with the countess. The countess' drawing room was full of guests. Pierre without greeting his wife whom he had not seen since his return--at that moment she was more repulsive to him than ever- entered the drawing room and seeing Anatole went up to him. "Ah, Pierre," said the countess going up to her husband. "You don't know what a plight our Anatole..." She stopped, seeing in the forward thrust of her husband's head, in his glowing eyes and his resolute gait, the terrible indications of that rage and strength which she knew and had herself experienced after his duel with Dolokhov. "Where you are, there is vice and evil!" said Pierre to his wife. "Anatole, come with me! I must speak to you," he added in French. Anatole glanced round at his sister and rose submissively, ready to follow Pierre. Pierre, taking him by the arm, pulled him toward himself and was leading him from the room. "If you allow yourself in my drawing room..." whispered Helene, but Pierre did not reply and went out of the room. Anatole followed him with his usual jaunty step but his face betrayed anxiety. Having entered his study Pierre closed the door and addressed Anatole without looking at him. "You promised Countess Rostova to marry her and were about to elope with her, is that so?" "Mon cher," answered Anatole (their whole conversation was in French), "I don't consider myself bound to answer questions put to me in that tone." Pierre's face, already pale, became distorted by fury. He seized Anatole by the collar of his uniform with his big hand and shook him from side to side till Anatole's face showed a sufficient degree of terror. "When I tell you that I must talk to you!..." repeated Pierre. "Come now, this is stupid. What?" said Anatole, fingering a button of his collar that had been wrenched loose with a bit of the cloth. "You're a scoundrel and a blackguard, and I don't know what deprives me from the pleasure of smashing your head with this!" said Pierre, expressing himself so artificially because he was talking French. He took a heavy paperweight and lifted it threateningly, but at once put it back in its place. "Did you promise to marry her?" "I... I didn't think of it. I never promised, because..." Pierre interrupted him. "Have you any letters of hers? Any letters?" he said, moving toward Anatole. Anatole glanced at him and immediately thrust his hand into his pocket and drew out his pocketbook. Pierre took the letter Anatole handed him and, pushing aside a table that stood in his way, threw himself on the sofa. "I shan't be violent, don't be afraid!" said Pierre in answer to a frightened gesture of Anatole's. "First, the letters," said he, as if repeating a lesson to himself. "Secondly," he continued after a short pause, again rising and again pacing the room, "tomorrow you must get out of Moscow." "But how can I?..." "Thirdly," Pierre continued without listening to him, "you must never breathe a word of what has passed between you and Countess Rostova. I know I can't prevent your doing so, but if you have a spark of conscience..." Pierre paced the room several times in silence. Anatole sat at a table frowning and biting his lips. "After all, you must understand that besides your pleasure there is such a thing as other people's happiness and peace, and that you are ruining a whole life for the sake of amusing yourself! Amuse yourself with women like my wife--with them you are within your rights, for they know what you want of them. They are armed against you by the same experience of debauchery; but to promise a maid to marry her... to deceive, to kidnap.... Don't you understand that it is as mean as beating an old man or a child?..." Pierre paused and looked at Anatole no longer with an angry but with a questioning look. "I don't know about that, eh?" said Anatole, growing more confident as Pierre mastered his wrath. "I don't know that and don't want to," he said, not looking at Pierre and with a slight tremor of his lower jaw, "but you have used such words to me--'mean' and so on--which as a man of honor I can't allow anyone to use." Pierre glanced at him with amazement, unable to understand what he wanted. "Though it was tete-a-tete," Anatole continued, "still I can't..." "Is it satisfaction you want?" said Pierre ironically. "You could at least take back your words. What? If you want me to do as you wish, eh?" "I take them back, I take them back!" said Pierre, "and I ask you to forgive me." Pierre involuntarily glanced at the loose button. "And if you require money for your journey..." Anatole smiled. The expression of that base and cringing smile, which Pierre knew so well in his wife, revolted him. "Oh, vile and heartless brood!" he exclaimed, and left the room. Next day Anatole left for Petersburg. CHAPTER XXI Pierre drove to Marya Dmitrievna's to tell her of the fulfillment of her wish that Kuragin should be banished from Moscow. The whole house was in a state of alarm and commotion. Natasha was very ill, having, as Marya Dmitrievna told him in secret, poisoned herself the night after she had been told that Anatole was married, with some arsenic she had stealthily procured. After swallowing a little she had been so frightened that she woke Sonya and told her what she had done. The necessary antidotes had been administered in time and she was now out of danger, though still so weak that it was out of the question to move her to the country, and so the countess had been sent for. Pierre saw the distracted count, and Sonya, who had a tear-stained face, but he could not see Natasha. Pierre dined at the club that day and heard on all sides gossip about the attempted abduction of Rostova. He resolutely denied these rumors, assuring everyone that nothing had happened except that his brother-in-law had proposed to her and been refused. It seemed to Pierre that it was his duty to conceal the whole affair and re-establish Natasha's reputation. He was awaiting Prince Andrew's return with dread and went every day to the old prince's for news of him. Old Prince Bolkonski heard all the rumors current in the town from Mademoiselle Bourienne and had read the note to Princess Mary in which Natasha had broken off her engagement. He seemed in better spirits than usual and awaited his son with great impatience. Some days after Anatole's departure Pierre received a note from Prince Andrew, informing him of his arrival and asking him to come to see him. As soon as he reached Moscow, Prince Andrew had received from his father Natasha's note to Princess Mary breaking off her engagement (Mademoiselle Bourienne had purloined it from Princess Mary and given it to the old prince), and he heard from him the story of Natasha's elopement, with additions. Prince Andrew had arrived in the evening and Pierre came to see him next morning. Pierre expected to find Prince Andrew in almost the same state as Natasha and was therefore surprised on entering the drawing room to hear him in the study talking in a loud animated voice about some intrigue going on in Petersburg. The old prince's voice and another now and then interrupted him. Princess Mary came out to meet Pierre. She sighed, looking toward the door of the room where Prince Andrew was, evidently intending to express her sympathy with his sorrow, but Pierre saw by her face that she was glad both at what had happened and at the way her brother had taken the news of Natasha's faithlessness. "He says he expected it," she remarked. "I know his pride will not let him express his feelings, but still he has taken it better, far better, than I expected. Evidently it had to be...." "But is it possible that all is really ended?" asked Pierre. Princess Mary looked at him with astonishment. She did not understand how he could ask such a question. Pierre went into the study. Prince Andrew, greatly changed and plainly in better health, but with a fresh horizontal wrinkle between his brows, stood in civilian dress facing his father and Prince Meshcherski, warmly disputing and vigorously gesticulating. The conversation was about Speranski--the news of whose sudden exile and alleged treachery had just reached Moscow. "Now he is censured and accused by all who were enthusiastic about him a month ago," Prince Andrew was saying, "and by those who were unable to understand his aims. To judge a man who is in disfavor and to throw on him all the blame of other men's mistakes is very easy, but I maintain that if anything good has been accomplished in this reign it was done by him, by him alone." He paused at the sight of Pierre. His face quivered and immediately assumed a vindictive expression. "Posterity will do him justice," he concluded, and at once turned to Pierre. "Well, how are you? Still getting stouter?" he said with animation, but the new wrinkle on his forehead deepened. "Yes, I am well," he said in answer to Pierre's question, and smiled. To Pierre that smile said plainly: "I am well, but my health is now of no use to anyone." After a few words to Pierre about the awful roads from the Polish frontier, about people he had met in Switzerland who knew Pierre, and about M. Dessalles, whom he had brought from abroad to be his son's tutor, Prince Andrew again joined warmly in the conversation about Speranski which was still going on between the two old men. "If there were treason, or proofs of secret relations with Napoleon, they would have been made public," he said with warmth and haste. "I do not, and never did, like Speranski personally, but I like justice!" Pierre now recognized in his friend a need with which he was only too familiar, to get excited and to have arguments about extraneous matters in order to stifle thoughts that were too oppressive and too intimate. When Prince Meshcherski had left, Prince Andrew took Pierre's arm and asked him into the room that had been assigned him. A bed had been made up there, and some open portmanteaus and trunks stood about. Prince Andrew went to one and took out a small casket, from which he drew a packet wrapped in paper. He did it all silently and very quickly. He stood up and coughed. His face was gloomy and his lips compressed. "Forgive me for troubling you..." Pierre saw that Prince Andrew was going to speak of Natasha, and his broad face expressed pity and sympathy. This expression irritated Prince Andrew, and in a determined, ringing, and unpleasant tone he continued: "I have received a refusal from Countess Rostova and have heard reports of your brother-in-law having sought her hand, or something of that kind. Is that true?" "Both true and untrue," Pierre began; but Prince Andrew interrupted him. "Here are her letters and her portrait," said he. He took the packet from the table and handed it to Pierre. "Give this to the countess... if you see her." "She is very ill," said Pierre. "Then she is here still?" said Prince Andrew. "And Prince Kuragin?" he added quickly. "He left long ago. She has been at death's door." "I much regret her illness," said Prince Andrew; and he smiled like his father, coldly, maliciously, and unpleasantly. "So Monsieur Kuragin has not honored Countess Rostova with his hand?" said Prince Andrew, and he snorted several times. "He could not marry, for he was married already," said Pierre. Prince Andrew laughed disagreeably, again reminding one of his father. "And where is your brother-in-law now, if I may ask?" he said. "He has gone to Peters... But I don't know," said Pierre. "Well, it doesn't matter," said Prince Andrew. "Tell Countess Rostova that she was and is perfectly free and that I wish her all that is good." Pierre took the packet. Prince Andrew, as if trying to remember whether he had something more to say, or waiting to see if Pierre would say anything, looked fixedly at him. "I say, do you remember our discussion in Petersburg?" asked Pierre, "about..." "Yes," returned Prince Andrew hastily. "I said that a fallen woman should be forgiven, but I didn't say I could forgive her. I can't." "But can this be compared...?" said Pierre. Prince Andrew interrupted him and cried sharply: "Yes, ask her hand again, be magnanimous, and so on?... Yes, that would be very noble, but I am unable to follow in that gentleman's footsteps. If you wish to be my friend never speak to me of that... of all that! Well, good-by. So you'll give her the packet?" Pierre left the room and went to the old prince and Princess Mary. The old man seemed livelier than usual. Princess Mary was the same as always, but beneath her sympathy for her brother, Pierre noticed her satisfaction that the engagement had been broken off. Looking at them Pierre realized what contempt and animosity they all felt for the Rostovs, and that it was impossible in their presence even to mention the name of her who could give up Prince Andrew for anyone else. At dinner the talk turned on the war, the approach of which was becoming evident. Prince Andrew talked incessantly, arguing now with his father, now with the Swiss tutor Dessalles, and showing an unnatural animation, the cause of which Pierre so well understood. CHAPTER XXII That same evening Pierre went to the Rostovs' to fulfill the commission entrusted to him. Natasha was in bed, the count at the Club, and Pierre, after giving the letters to Sonya, went to Marya Dmitrievna who was interested to know how Prince Andrew had taken the news. Ten minutes later Sonya came to Marya Dmitrievna. "Natasha insists on seeing Count Peter Kirilovich," said she. "But how? Are we to take him up to her? The room there has not been tidied up." "No, she has dressed and gone into the drawing room," said Sonya. Marya Dmitrievna only shrugged her shoulders. "When will her mother come? She has worried me to death! Now mind, don't tell her everything!" said she to Pierre. "One hasn't the heart to scold her, she is so much to be pitied, so much to be pitied." Natasha was standing in the middle of the drawing room, emaciated, with a pale set face, but not at all shamefaced as Pierre expected to find her. When he appeared at the door she grew flurried, evidently undecided whether to go to meet him or to wait till he came up. Pierre hastened to her. He thought she would give him her hand as usual; but she, stepping up to him, stopped, breathing heavily, her arms hanging lifelessly just in the pose she used to stand in when she went to the middle of the ballroom to sing, but with quite a different expression of face. "Peter Kirilovich," she began rapidly, "Prince Bolkonski was your friend--is your friend," she corrected herself. (It seemed to her that everything that had once been must now be different.) "He told me once to apply to you..." Pierre sniffed as he looked at her, but did not speak. Till then he had reproached her in his heart and tried to despise her, but he now felt so sorry for her that there was no room in his soul for reproach. "He is here now: tell him... to for... forgive me!" She stopped and breathed still more quickly, but did not shed tears. "Yes... I will tell him," answered Pierre; "but..." He did not know what to say. Natasha was evidently dismayed at the thought of what he might think she had meant. "No, I know all is over," she said hurriedly. "No, that can never be. I'm only tormented by the wrong I have done him. Tell him only that I beg him to forgive, forgive, forgive me for everything...." She trembled all over and sat down on a chair. A sense of pity he had never before known overflowed Pierre's heart. "I will tell him, I will tell him everything once more," said Pierre. "But... I should like to know one thing...." "Know what?" Natasha's eyes asked. "I should like to know, did you love..." Pierre did not know how to refer to Anatole and flushed at the thought of him--"did you love that bad man?" "Don't call him bad!" said Natasha. "But I don't know, don't know at all...." She began to cry and a still greater sense of pity, tenderness, and love welled up in Pierre. He felt the tears trickle under his spectacles and hoped they would not be noticed. "We won't speak of it any more, my dear," said Pierre, and his gentle, cordial tone suddenly seemed very strange to Natasha. "We won't speak of it, my dear--I'll tell him everything; but one thing I beg of you, consider me your friend and if you want help, advice, or simply to open your heart to someone--not now, but when your mind is clearer think of me!" He took her hand and kissed it. "I shall be happy if it's in my power..." Pierre grew confused. "Don't speak to me like that. I am not worth it!" exclaimed Natasha and turned to leave the room, but Pierre held her hand. He knew he had something more to say to her. But when he said it he was amazed at his own words. "Stop, stop! You have your whole life before you," said he to her. "Before me? No! All is over for me," she replied with shame and self-abasement. "All over?" he repeated. "If I were not myself, but the handsomest, cleverest, and best man in the world, and were free, I would this moment ask on my knees for your hand and your love!" For the first time for many days Natasha wept tears of gratitude and tenderness, and glancing at Pierre she went out of the room. Pierre too when she had gone almost ran into the anteroom, restraining tears of tenderness and joy that choked him, and without finding the sleeves of his fur cloak threw it on and got into his sleigh. "Where to now, your excellency?" asked the coachman. "Where to?" Pierre asked himself. "Where can I go now? Surely not to the Club or to pay calls?" All men seemed so pitiful, so poor, in comparison with this feeling of tenderness and love he experienced: in comparison with that softened, grateful, last look she had given him through her tears. "Home!" said Pierre, and despite twenty-two degrees of frost Fahrenheit he threw open the bearskin cloak from his broad chest and inhaled the air with joy. It was clear and frosty. Above the dirty, ill-lit streets, above the black roofs, stretched the dark starry sky. Only looking up at the sky did Pierre cease to feel how sordid and humiliating were all mundane things compared with the heights to which his soul had just been raised. At the entrance to the Arbat Square an immense expanse of dark starry sky presented itself to his eyes. Almost in the center of it, above the Prechistenka Boulevard, surrounded and sprinkled on all sides by stars but distinguished from them all by its nearness to the earth, its white light, and its long uplifted tail, shone the enormous and brilliant comet of 1812--the comet which was said to portend all kinds of woes and the end of the world. In Pierre, however, that comet with its long luminous tail aroused no feeling of fear. On the contrary he gazed joyfully, his eyes moist with tears, at this bright comet which, having traveled in its orbit with inconceivable velocity through immeasurable space, seemed suddenly- like an arrow piercing the earth--to remain fixed in a chosen spot, vigorously holding its tail erect, shining and displaying its white light amid countless other scintillating stars. It seemed to Pierre that this comet fully responded to what was passing in his own softened and uplifted soul, now blossoming into a new life. BOOK NINE: 1812 CHAPTER I From the close of the year 1811 intensified arming and concentrating of the forces of Western Europe began, and in 1812 these forces- millions of men, reckoning those transporting and feeding the army- moved from the west eastwards to the Russian frontier, toward which since 1811 Russian forces had been similarly drawn. On the twelfth of June, 1812, the forces of Western Europe crossed the Russian frontier and war began, that is, an event took place opposed to human reason and to human nature. Millions of men perpetrated against one another such innumerable crimes, frauds, treacheries, thefts, forgeries, issues of false money, burglaries, incendiarisms, and murders as in whole centuries are not recorded in the annals of all the law courts of the world, but which those who committed them did not at the time regard as being crimes. What produced this extraordinary occurrence? What were its causes? The historians tell us with naive assurance that its causes were the wrongs inflicted on the Duke of Oldenburg, the nonobservance of the Continental System, the ambition of Napoleon, the firmness of Alexander, the mistakes of the diplomatists, and so on. Consequently, it would only have been necessary for Metternich, Rumyantsev, or Talleyrand, between a levee and an evening party, to have taken proper pains and written a more adroit note, or for Napoleon to have written to Alexander: "My respected Brother, I consent to restore the duchy to the Duke of Oldenburg"--and there would have been no war. We can understand that the matter seemed like that to contemporaries. It naturally seemed to Napoleon that the war was caused by England's intrigues (as in fact he said on the island of St. Helena). It naturally seemed to members of the English Parliament that the cause of the war was Napoleon's ambition; to the Duke of Oldenburg, that the cause of the war was the violence done to him; to businessmen that the cause of the way was the Continental System which was ruining Europe; to the generals and old soldiers that the chief reason for the war was the necessity of giving them employment; to the legitimists of that day that it was the need of re-establishing les bons principes, and to the diplomatists of that time that it all resulted from the fact that the alliance between Russia and Austria in 1809 had not been sufficiently well concealed from Napoleon, and from the awkward wording of Memorandum No. 178. It is natural that these and a countless and infinite quantity of other reasons, the number depending on the endless diversity of points of view, presented themselves to the men of that day; but to us, to posterity who view the thing that happened in all its magnitude and perceive its plain and terrible meaning, these causes seem insufficient. To us it is incomprehensible that millions of Christian men killed and tortured each other either because Napoleon was ambitious or Alexander was firm, or because England's policy was astute or the Duke of Oldenburg wronged. We cannot grasp what connection such circumstances have with the actual fact of slaughter and violence: why because the Duke was wronged, thousands of men from the other side of Europe killed and ruined the people of Smolensk and Moscow and were killed by them. To us, their descendants, who are not historians and are not carried away by the process of research and can therefore regard the event with unclouded common sense, an incalculable number of causes present themselves. The deeper we delve in search of these causes the more of them we find; and each separate cause or whole series of causes appears to us equally valid in itself and equally false by its insignificance compared to the magnitude of the events, and by its impotence--apart from the cooperation of all the other coincident causes--to occasion the event. To us, the wish or objection of this or that French corporal to serve a second term appears as much a cause as Napoleon's refusal to withdraw his troops beyond the Vistula and to restore the duchy of Oldenburg; for had he not wished to serve, and had a second, a third, and a thousandth corporal and private also refused, there would have been so many less men in Napoleon's army and the war could not have occurred. Had Napoleon not taken offense at the demand that he should withdraw beyond the Vistula, and not ordered his troops to advance, there would have been no war; but had all his sergeants objected to serving a second term then also there could have been no war. Nor could there have been a war had there been no English intrigues and no Duke of Oldenburg, and had Alexander not felt insulted, and had there not been an autocratic government in Russia, or a Revolution in France and a subsequent dictatorship and Empire, or all the things that produced the French Revolution, and so on. Without each of these causes nothing could have happened. So all these causes--myriads of causes--coincided to bring it about. And so there was no one cause for that occurrence, but it had to occur because it had to. Millions of men, renouncing their human feelings and reason, had to go from west to east to slay their fellows, just as some centuries previously hordes of men had come from the east to the west, slaying their fellows. The actions of Napoleon and Alexander, on whose words the event seemed to hang, were as little voluntary as the actions of any soldier who was drawn into the campaign by lot or by conscription. This could not be otherwise, for in order that the will of Napoleon and Alexander (on whom the event seemed to depend) should be carried out, the concurrence of innumerable circumstances was needed without any one of which the event could not have taken place. It was necessary that millions of men in whose hands lay the real power- the soldiers who fired, or transported provisions and guns--should consent to carry out the will of these weak individuals, and should have been induced to do so by an infinite number of diverse and complex causes. We are forced to fall back on fatalism as an explanation of irrational events (that is to say, events the reasonableness of which we do not understand). The more we try to explain such events in history reasonably, the more unreasonable and incomprehensible do they become to us. Each man lives for himself, using his freedom to attain his personal aims, and feels with his whole being that he can now do or abstain from doing this or that action; but as soon as he has done it, that action performed at a certain moment in time becomes irrevocable and belongs to history, in which it has not a free but a predestined significance. There are two sides to the life of every man, his individual life, which is the more free the more abstract its interests, and his elemental hive life in which he inevitably obeys laws laid down for him. Man lives consciously for himself, but is an unconscious instrument in the attainment of the historic, universal, aims of humanity. A deed done is irrevocable, and its result coinciding in time with the actions of millions of other men assumes an historic significance. The higher a man stands on the social ladder, the more people he is connected with and the more power he has over others, the more evident is the predestination and inevitability of his every action. "The king's heart is in the hands of the Lord." A king is history's slave. History, that is, the unconscious, general, hive life of mankind, uses every moment of the life of kings as a tool for its own purposes. Though Napoleon at that time, in 1812, was more convinced than ever that it depended on him, verser (ou ne pas verser) le sang de ses peuples*--as Alexander expressed it in the last letter he wrote him- he had never been so much in the grip of inevitable laws, which compelled him, while thinking that he was acting on his own volition, to perform for the hive life--that is to say, for history- whatever had to be performed. *"To shed (or not to shed) the blood of his peoples." The people of the west moved eastwards to slay their fellow men, and by the law of coincidence thousands of minute causes fitted in and co-ordinated to produce that movement and war: reproaches for the nonobservance of the Continental System, the Duke of Oldenburg's wrongs, the movement of troops into Prussia--undertaken (as it seemed to Napoleon) only for the purpose of securing an armed peace, the French Emperor's love and habit of war coinciding with his people's inclinations, allurement by the grandeur of the preparations, and the expenditure on those preparations and the need of obtaining advantages to compensate for that expenditure, the intoxicating honors he received in Dresden, the diplomatic negotiations which, in the opinion of contemporaries, were carried on with a sincere desire to attain peace, but which only wounded the self-love of both sides, and millions of other causes that adapted themselves to the event that was happening or coincided with it. When an apple has ripened and falls, why does it fall? Because of its attraction to the earth, because its stalk withers, because it is dried by the sun, because it grows heavier, because the wind shakes it, or because the boy standing below wants to eat it? Nothing is the cause. All this is only the coincidence of conditions in which all vital organic and elemental events occur. And the botanist who finds that the apple falls because the cellular tissue decays and so forth is equally right with the child who stands under the tree and says the apple fell because he wanted to eat it and prayed for it. Equally right or wrong is he who says that Napoleon went to Moscow because he wanted to, and perished because Alexander desired his destruction, and he who says that an undermined hill weighing a million tons fell because the last navvy struck it for the last time with his mattock. In historic events the so-called great men are labels giving names to events, and like labels they have but the smallest connection with the event itself. Every act of theirs, which appears to them an act of their own will, is in an historical sense involuntary and is related to the whole course of history and predestined from eternity. CHAPTER II On the twenty-ninth of May Napoleon left Dresden, where he had spent three weeks surrounded by a court that included princes, dukes, kings, and even an emperor. Before leaving, Napoleon showed favor to the emperor, kings, and princes who had deserved it, reprimanded the kings and princes with whom he was dissatisfied, presented pearls and diamonds of his own--that is, which he had taken from other kings- to the Empress of Austria, and having, as his historian tells us, tenderly embraced the Empress Marie Louise--who regarded him as her husband, though he had left another wife in Paris--left her grieved by the parting which she seemed hardly able to bear. Though the diplomatists still firmly believed in the possibility of peace and worked zealously to that end, and though the Emperor Napoleon himself wrote a letter to Alexander, calling him Monsieur mon frere, and sincerely assured him that he did not want war and would always love and honor him--yet he set off to join his army, and at every station gave fresh orders to accelerate the movement of his troops from west to east. He went in a traveling coach with six horses, surrounded by pages, aides-de-camp, and an escort, along the road to Posen, Thorn, Danzig, and Konigsberg. At each of these towns thousands of people met him with excitement and enthusiasm. The army was moving from west to east, and relays of six horses carried him in the same direction. On the tenth of June,* coming up with the army, he spent the night in apartments prepared for him on the estate of a Polish count in the Vilkavisski forest. *Old style. Next day, overtaking the army, he went in a carriage to the Niemen, and, changing into a Polish uniform, he drove to the riverbank in order to select a place for the crossing. Seeing, on the other side, some Cossacks (les Cosaques) and the wide-spreading steppes in the midst of which lay the holy city of Moscow (Moscou, la ville sainte), the capital of a realm such as the Scythia into which Alexander the Great had marched--Napoleon unexpectedly, and contrary alike to strategic and diplomatic considerations, ordered an advance, and the next day his army began to cross the Niemen. Early in the morning of the twelfth of June he came out of his tent, which was pitched that day on the steep left bank of the Niemen, and looked through a spyglass at the streams of his troops pouring out of the Vilkavisski forest and flowing over the three bridges thrown across the river. The troops, knowing of the Emperor's presence, were on the lookout for him, and when they caught sight of a figure in an overcoat and a cocked hat standing apart from his suite in front of his tent on the hill, they threw up their caps and shouted: "Vive l'Empereur!" and one after another poured in a ceaseless stream out of the vast forest that had concealed them and, separating, flowed on and on by the three bridges to the other side. "Now we'll go into action. Oh, when he takes it in hand himself, things get hot... by heaven!... There he is!... Vive l'Empereur! So these are the steppes of Asia! It's a nasty country all the same. Au revoir, Beauche; I'll keep the best palace in Moscow for you! Au revoir. Good luck!... Did you see the Emperor? Vive l'Empereur!... preur!--If they make me Governor of India, Gerard, I'll make you Minister of Kashmir--that's settled. Vive l'Empereur! Hurrah! hurrah! hurrah! The Cossacks--those rascals--see how they run! Vive l'Empereur! There he is, do you see him? I've seen him twice, as I see you now. The little corporal... I saw him give the cross to one of the veterans.... Vive l'Empereur!" came the voices of men, old and young, of most diverse characters and social positions. On the faces of all was one common expression of joy at the commencement of the long-expected campaign and of rapture and devotion to the man in the gray coat who was standing on the hill. On the thirteenth of June a rather small, thoroughbred Arab horse was brought to Napoleon. He mounted it and rode at a gallop to one of the bridges over the Niemen, deafened continually by incessant and rapturous acclamations which he evidently endured only because it was impossible to forbid the soldiers to express their love of him by such shouting, but the shouting which accompanied him everywhere disturbed him and distracted him from the military cares that had occupied him from the time he joined the army. He rode across one of the swaying pontoon bridges to the farther side, turned sharply to the left, and galloped in the direction of Kovno, preceded by enraptured, mounted chasseurs of the Guard who, breathless with delight, galloped ahead to clear a path for him through the troops. On reaching the broad river Viliya, he stopped near a regiment of Polish Uhlans stationed by the river. "Vivat!" shouted the Poles, ecstatically, breaking their ranks and pressing against one another to see him. Napoleon looked up and down the river, dismounted, and sat down on a log that lay on the bank. At a mute sign from him, a telescope was handed him which he rested on the back of a happy page who had run up to him, and he gazed at the opposite bank. Then he became absorbed in a map laid out on the logs. Without lifting his head he said something, and two of his aides-de-camp galloped off to the Polish Uhlans. "What? What did he say?" was heard in the ranks of the Polish Uhlans when one of the aides-de-camp rode up to them. The order was to find a ford and to cross the river. The colonel of the Polish Uhlans, a handsome old man, flushed and, fumbling in his speech from excitement, asked the aide-de-camp whether he would be permitted to swim the river with his Uhlans instead of seeking a ford. In evident fear of refusal, like a boy asking for permission to get on a horse, he begged to be allowed to swim across the river before the Emperor's eyes. The aide-de-camp replied that probably the Emperor would not be displeased at this excess of zeal. As soon as the aide-de-camp had said this, the old mustached officer, with happy face and sparkling eyes, raised his saber, shouted "Vivat!" and, commanding the Uhlans to follow him, spurred his horse and galloped into the river. He gave an angry thrust to his horse, which had grown restive under him, and plunged into the water, heading for the deepest part where the current was swift. Hundreds of Uhlans galloped in after him. It was cold and uncanny in the rapid current in the middle of the stream, and the Uhlans caught hold of one another as they fell off their horses. Some of the horses were drowned and some of the men; the others tried to swim on, some in the saddle and some clinging to their horses' manes. They tried to make their way forward to the opposite bank and, though there was a ford one third of a mile away, were proud that they were swimming and drowning in this river under the eyes of the man who sat on the log and was not even looking at what they were doing. When the aide-de-camp, having returned and choosing an opportune moment, ventured to draw the Emperor's attention to the devotion of the Poles to his person, the little man in the gray overcoat got up and, having summoned Berthier, began pacing up and down the bank with him, giving him instructions and occasionally glancing disapprovingly at the drowning Uhlans who distracted his attention. For him it was no new conviction that his presence in any part of the world, from Africa to the steppes of Muscovy alike, was enough to dumfound people and impel them to insane self-oblivion. He called for his horse and rode to his quarters. Some forty Uhlans were drowned in the river, though boats were sent to their assistance. The majority struggled back to the bank from which they had started. The colonel and some of his men got across and with difficulty clambered out on the further bank. And as soon as they had got out, in their soaked and streaming clothes, they shouted "Vivat!" and looked ecstatically at the spot where Napoleon had been but where he no longer was and at that moment considered themselves happy. That evening, between issuing one order that the forged Russian paper money prepared for use in Russia should be delivered as quickly as possible and another that a Saxon should be shot, on whom a letter containing information about the orders to the French army had been found, Napoleon also gave instructions that the Polish colonel who had needlessly plunged into the river should be enrolled in the Legion d'honneur of which Napoleon was himself the head. Quos vult perdere dementat.* *Those whom (God) wishes to destroy he drives mad. CHAPTER III The Emperor of Russia had, meanwhile, been in Vilna for more than a month, reviewing troops and holding maneuvers. Nothing was ready for the war that everyone expected and to prepare for which the Emperor had come from Petersburg. There was no general plan of action. The vacillation between the various plans that were proposed had even increased after the Emperor had been at headquarters for a month. Each of the three armies had its own commander in chief, but there was no supreme commander of all the forces, and the Emperor did not assume that responsibility himself. The longer the Emperor remained in Vilna the less did everybody- tired of waiting--prepare for the war. All the efforts of those who surrounded the sovereign seemed directed merely to making him spend his time pleasantly and forget that war was impending. In June, after many balls and fetes given by the Polish magnates, by the courtiers, and by the Emperor himself, it occurred to one of the Polish aides-de-camp in attendance that a dinner and ball should be given for the Emperor by his aides-de-camp. This idea was eagerly received. The Emperor gave his consent. The aides-de-camp collected money by subscription. The lady who was thought to be most pleasing to the Emperor was invited to act as hostess. Count Bennigsen, being a landowner in the Vilna province, offered his country house for the fete, and the thirteenth of June was fixed for a ball, dinner, regatta, and fireworks at Zakret, Count Bennigsen's country seat. The very day that Napoleon issued the order to cross the Niemen, and his vanguard, driving off the Cossacks, crossed the Russian frontier, Alexander spent the evening at the entertainment given by his aides-de-camp at Bennigsen's country house. It was a gay and brilliant fete. Connoisseurs of such matters declared that rarely had so many beautiful women been assembled in one place. Countess Bezukhova was present among other Russian ladies who had followed the sovereign from Petersburg to Vilna and eclipsed the refined Polish ladies by her massive, so called Russian type of beauty. The Emperor noticed her and honored her with a dance. Boris Drubetskoy, having left his wife in Moscow and being for the present en garcon (as he phrased it), was also there and, though not an aide-de-camp, had subscribed a large sum toward the expenses. Boris was now a rich man who had risen to high honors and no longer sought patronage but stood on an equal footing with the highest of those of his own age. He was meeting Helene in Vilna after not having seen her for a long time and did not recall the past, but as Helene was enjoying the favors of a very important personage and Boris had only recently married, they met as good friends of long standing. At midnight dancing was still going on. Helene, not having a suitable partner, herself offered to dance the mazurka with Boris. They were the third couple. Boris, coolly looking at Helene's dazzling bare shoulders which emerged from a dark, gold-embroidered, gauze gown, talked to her of old acquaintances and at the same time, unaware of it himself and unnoticed by others, never for an instant ceased to observe the Emperor who was in the same room. The Emperor was not dancing, he stood in the doorway, stopping now one pair and now another with gracious words which he alone knew how to utter. As the mazurka began, Boris saw that Adjutant General Balashev, one of those in closest attendance on the Emperor, went up to him and contrary to court etiquette stood near him while he was talking to a Polish lady. Having finished speaking to her, the Emperor looked inquiringly at Balashev and, evidently understanding that he only acted thus because there were important reasons for so doing, nodded slightly to the lady and turned to him. Hardly had Balashev begun to speak before a look of amazement appeared on the Emperor's face. He took Balashev by the arm and crossed the room with him, unconsciously clearing a path seven yards wide as the people on both sides made way for him. Boris noticed Arakcheev's excited face when the sovereign went out with Balashev. Arakcheev looked at the Emperor from under his brow and, sniffing with his red nose, stepped forward from the crowd as if expecting the Emperor to address him. (Boris understood that Arakcheev envied Balashev and was displeased that evidently important news had reached the Emperor otherwise than through himself.) But the Emperor and Balashev passed out into the illuminated garden without noticing Arakcheev who, holding his sword and glancing wrathfully around, followed some twenty paces behind them. All the time Boris was going through the figures of the mazurka, he was worried by the question of what news Balashev had brought and how he could find it out before others. In the figure in which he had to choose two ladies, he whispered to Helene that he meant to choose Countess Potocka who, he thought, had gone out onto the veranda, and glided over the parquet to the door opening into the garden, where, seeing Balashev and the Emperor returning to the veranda, he stood still. They were moving toward the door. Boris, fluttering as if he had not had time to withdraw, respectfully pressed close to the doorpost with bowed head. The Emperor, with the agitation of one who has been personally affronted, was finishing with these words: "To enter Russia without declaring war! I will not make peace as long as a single armed enemy remains in my country!" It seemed to Boris that it gave the Emperor pleasure to utter these words. He was satisfied with the form in which he had expressed his thoughts, but displeased that Boris had overheard it. "Let no one know of it!" the Emperor added with a frown. Boris understood that this was meant for him and, closing his eyes, slightly bowed his head. The Emperor re-entered the ballroom and remained there about another half-hour. Boris was thus the first to learn the news that the French army had crossed the Niemen and, thanks to this, was able to show certain important personages that much that was concealed from others was usually known to him, and by this means he rose higher in their estimation. The unexpected news of the French having crossed the Niemen was particularly startling after a month of unfulfilled expectations, and at a ball. On first receiving the news, under the influence of indignation and resentment the Emperor had found a phrase that pleased him, fully expressed his feelings, and has since become famous. On returning home at two o'clock that night he sent for his secretary, Shishkov, and told him to write an order to the troops and a rescript to Field Marshal Prince Saltykov, in which he insisted on the words being inserted that he would not make peace so long as a single armed Frenchman remained on Russian soil. Next day the following letter was sent to Napoleon: Monsieur mon frere, Yesterday I learned that, despite the loyalty which I have kept my engagements with Your Majesty, your troops have crossed the Russian frontier, and I have this moment received from Petersburg a note, in which Count Lauriston informs me, as a reason for this aggression, that Your Majesty has considered yourself to be in a state of war with me from the time Prince Kuragin asked for his passports. The reasons on which the Duc de Bassano based his refusal to deliver them to him would never have led me to suppose that that could serve as a pretext for aggression. In fact, the ambassador, as he himself has declared, was never authorized to make that demand, and as soon as I was informed of it I let him know how much I disapproved of it and ordered him to remain at his post. If Your Majesty does not intend to shed the blood of our peoples for such a misunderstanding, and consents to withdraw your troops from Russian territory, I will regard what has passed as not having occurred and an understanding between us will be possible. In the contrary case, Your Majesty, I shall see myself forced to repel an attack that nothing on my part has provoked. It still depends on Your Majesty to preserve humanity from the calamity of another war. I am, etc., (signed) Alexander CHAPTER IV At two in the morning of the fourteenth of June, the Emperor, having sent for Balashev and read him his letter to Napoleon, ordered him to take it and hand it personally to the French Emperor. When dispatching Balashev, the Emperor repeated to him the words that he would not make peace so long as a single armed enemy remained on Russian soil and told him to transmit those words to Napoleon. Alexander did not insert them in his letter to Napoleon, because with his characteristic tact he felt it would be injudicious to use them at a moment when a last attempt at reconciliation was being made, but he definitely instructed Balashev to repeat them personally to Napoleon. Having set off in the small hours of the fourteenth, accompanied by a bugler and two Cossacks, Balashev reached the French outposts at the village of Rykonty, on the Russian side of the Niemen, by dawn. There he was stopped by French cavalry sentinels. A French noncommissioned officer of hussars, in crimson uniform and a shaggy cap, shouted to the approaching Balashev to halt. Balashev did not do so at once, but continued to advance along the road at a walking pace. The noncommissioned officer frowned and, muttering words of abuse, advanced his horse's chest against Balashev, put his hand to his saber, and shouted rudely at the Russian general, asking: was he deaf that he did not do as he was told? Balashev mentioned who he was. The noncommissioned officer began talking with his comrades about regimental matters without looking at the Russian general. After living at the seat of the highest authority and power, after conversing with the Emperor less than three hours before, and in general being accustomed to the respect due to his rank in the service, Balashev found it very strange here on Russian soil to encounter this hostile, and still more this disrespectful, application of brute force to himself. The sun was only just appearing from behind the clouds, the air was fresh and dewy. A herd of cattle was being driven along the road from the village, and over the fields the larks rose trilling, one after another, like bubbles rising in water. Balashev looked around him, awaiting the arrival of an officer from the village. The Russian Cossacks and bugler and the French hussars looked silently at one another from time to time. A French colonel of hussars, who had evidently just left his bed, came riding from the village on a handsome sleek gray horse, accompanied by two hussars. The officer, the soldiers, and their horses all looked smart and well kept. It was that first period of a campaign when troops are still in full trim, almost like that of peacetime maneuvers, but with a shade of martial swagger in their clothes, and a touch of the gaiety and spirit of enterprise which always accompany the opening of a campaign. The French colonel with difficulty repressed a yawn, but was polite and evidently understood Balashev's importance. He led him past his soldiers and behind the outposts and told him that his wish to be presented to the Emperor would most likely be satisfied immediately, as the Emperor's quarters were, he believed, not far off. They rode through the village of Rykonty, past tethered French hussar horses, past sentinels and men who saluted their colonel and stared with curiosity at a Russian uniform, and came out at the other end of the village. The colonel said that the commander of the division was a mile and a quarter away and would receive Balashev and conduct him to his destination. The sun had by now risen and shone gaily on the bright verdure. They had hardly ridden up a hill, past a tavern, before they saw a group of horsemen coming toward them. In front of the group, on a black horse with trappings that glittered in the sun, rode a tall man with plumes in his hat and black hair curling down to his shoulders. He wore a red mantle, and stretched his long legs forward in French fashion. This man rode toward Balashev at a gallop, his plumes flowing and his gems and gold lace glittering in the bright June sunshine. Balashev was only two horses' length from the equestrian with the bracelets, plunies, necklaces, and gold embroidery, who was galloping toward him with a theatrically solemn countenance, when Julner, the French colonel, whispered respectfully: "The King of Naples!" It was, in fact, Murat, now called "King of Naples." Though it was quite incomprehensible why he should be King of Naples, he was called so, and was himself convinced that he was so, and therefore assumed a more solemn and important air than formerly. He was so sure that he really was the King of Naples that when, on the eve of his departure from that city, while walking through the streets with his wife, some Italians called out to him: "Viva il re!"* he turned to his wife with a pensive smile and said: "Poor fellows, they don't know that I am leaving them tomorrow!" *"Long live the king." But though he firmly believed himself to be King of Naples and pitied the grief felt by the subjects he was abandoning, latterly, after he had been ordered to return to military service--and especially since his last interview with Napoleon in Danzig, when his august brother-in-law had told him: "I made you King that you should reign in my way, but not in yours!"--he had cheerfully taken up his familiar business, and--like a well-fed but not overfat horse that feels himself in harness and grows skittish between the shafts--he dressed up in clothes as variegated and expensive as possible, and gaily and contentedly galloped along the roads of Poland, without himself knowing why or whither. On seeing the Russian general he threw back his head, with its long hair curling to his shoulders, in a majestically royal manner, and looked inquiringly at the French colonel. The colonel respectfully informed His Majesty of Balashev's mission, whose name he could not pronounce. "De Bal-macheve!" said the King (overcoming by his assurance the difficulty that had presented itself to the colonel). "Charmed to make your acquaintance, General!" he added, with a gesture of kingly condescension. As soon as the King began to speak loud and fast his royal dignity instantly forsook him, and without noticing it he passed into his natural tone of good-natured familiarity. He laid his hand on the withers of Balashev's horse and said: "Well, General, it all looks like war," as if regretting a circumstance of which he was unable to judge. "Your Majesty," replied Balashev, "my master, the Emperor, does not desire war and as Your Majesty sees..." said Balashev, using the words Your Majesty at every opportunity, with the affectation unavoidable in frequently addressing one to whom the title was still a novelty. Murat's face beamed with stupid satisfaction as he listened to "Monsieur de Bal-macheve." But royaute oblige!* and he felt it incumbent on him, as a king and an ally, to confer on state affairs with Alexander's envoy. He dismounted, took Balashev's arm, and moving a few steps away from his suite, which waited respectfully, began to pace up and down with him, trying to speak significantly. He referred to the fact that the Emperor Napoleon had resented the demand that he should withdraw his troops from Prussia, especially when that demand became generally known and the dignity of France was thereby offended. *"Royalty has its obligations." Balashev replied that there was "nothing offensive in the demand, because..." but Murat interrupted him. "Then you don't consider the Emperor Alexander the aggressor?" he asked unexpectedly, with a kindly and foolish smile. Balashev told him why he considered Napoleon to be the originator of the war. "Oh, my dear general!" Murat again interrupted him, "with all my heart I wish the Emperors may arrange the affair between them, and that the war begun by no wish of mine may finish as quickly as possible!" said he, in the tone of a servant who wants to remain good friends with another despite a quarrel between their masters. And he went on to inquiries about the Grand Duke and the state of his health, and to reminiscences of the gay and amusing times he had spent with him in Naples. Then suddenly, as if remembering his royal dignity, Murat solemnly drew himself up, assumed the pose in which he had stood at his coronation, and, waving his right arm, said: "I won't detain you longer, General. I wish success to your mission," and with his embroidered red mantle, his flowing feathers, and his glittering ornaments, he rejoined his suite who were respectfully awaiting him. Balashev rode on, supposing from Murat's words that he would very soon be brought before Napoleon himself. But instead of that, at the next village the sentinels of Davout's infantry corps detained him as the pickets of the vanguard had done, and an adjutant of the corps commander, who was fetched, conducted him into the village to Marshal Davout. CHAPTER V Davout was to Napoleon what Arakcheev was to Alexander--though not a coward like Arakcheev, he was as precise, as cruel, and as unable to express his devotion to his monarch except by cruelty. In the organism of states such men are necessary, as wolves are necessary in the organism of nature, and they always exist, always appear and hold their own, however incongruous their presence and their proximity to the head of the government may be. This inevitability alone can explain how the cruel Arakcheev, who tore out a grenadier's mustache with his own hands, whose weak nerves rendered him unable to face danger, and who was neither an educated man nor a courtier, was able to maintain his powerful position with Alexander, whose own character was chivalrous, noble, and gentle. Balashev found Davout seated on a barrel in the shed of a peasant's hut, writing--he was auditing accounts. Better quarters could have been found him, but Marshal Davout was one of those men who purposely put themselves in most depressing conditions to have a justification for being gloomy. For the same reason they are always hard at work and in a hurry. "How can I think of the bright side of life when, as you see, I am sitting on a barrel and working in a dirty shed?" the expression of his face seemed to say. The chief pleasure and necessity of such men, when they encounter anyone who shows animation, is to flaunt their own dreary, persistent activity. Davout allowed himself that pleasure when Balashev was brought in. He became still more absorbed in his task when the Russian general entered, and after glancing over his spectacles at Balashev's face, which was animated by the beauty of the morning and by his talk with Murat, he did not rise or even stir, but scowled still more and sneered malevolently. When he noticed in Balashev's face the disagreeable impression this reception produced, Davout raised his head and coldly asked what he wanted. Thinking he could have been received in such a manner only because Davout did not know that he was adjutant general to the Emperor Alexander and even his envoy to Napoleon, Balashev hastened to inform him of his rank and mission. Contrary to his expectation, Davout, after hearing him, became still surlier and ruder. "Where is your dispatch?" he inquired. "Give it to me. I will send it to the Emperor." Balashev replied that he had been ordered to hand it personally to the Emperor. "Your Emperor's orders are obeyed in your army, but here," said Davout, "you must do as you're told." And, as if to make the Russian general still more conscious of his dependence on brute force, Davout sent an adjutant to call the officer on duty. Balashev took out the packet containing the Emperor's letter and laid it on the table (made of a door with its hinges still hanging on it, laid across two barrels). Davout took the packet and read the inscription. "You are perfectly at liberty to treat me with respect or not," protested Balashev, "but permit me to observe that I have the honor to be adjutant general to His Majesty...." Davout glanced at him silently and plainly derived pleasure from the signs of agitation and confusion which appeared on Balashev's face. "You will be treated as is fitting," said he and, putting the packet in his pocket, left the shed. A minute later the marshal's adjutant, de Castres, came in and conducted Balashev to the quarters assigned him. That day he dined with the marshal, at the same board on the barrels. Next day Davout rode out early and, after asking Balashev to come to him, peremptorily requested him to remain there, to move on with the baggage train should orders come for it to move, and to talk to no one except Monsieur de Castres. After four days of solitude, ennui, and consciousness of his impotence and insignificance--particularly acute by contrast with the sphere of power in which he had so lately moved--and after several marches with the marshal's baggage and the French army, which occupied the whole district, Balashev was brought to Vilna--now occupied by the French--through the very gate by which he had left it four days previously. Next day the imperial gentleman-in-waiting, the Comte de Turenne, came to Balashev and informed him of the Emperor Napoleon's wish to honor him with an audience. Four days before, sentinels of the Preobrazhensk regiment had stood in front of the house to which Balashev was conducted, and now two French grenadiers stood there in blue uniforms unfastened in front and with shaggy caps on their heads, and an escort of hussars and Uhlans and a brilliant suite of aides-de-camp, pages, and generals, who were waiting for Napoleon to come out, were standing at the porch, round his saddle horse and his Mameluke, Rustan. Napoleon received Balashev in the very house in Vilna from which Alexander had dispatched him on his mission. CHAPTER VI Though Balashev was used to imperial pomp, he was amazed at the luxury and magnificence of Napoleon's court. The Comte de Turenne showed him into a big reception room where many generals, gentlemen-in-waiting, and Polish magnates--several of whom Balashev had seen at the court of the Emperor of Russia--were waiting. Duroc said that Napoleon would receive the Russian general before going for his ride. After some minutes, the gentleman-in-waiting who was on duty came into the great reception room and, bowing politely, asked Balashev to follow him. Balashev went into a small reception room, one door of which led into a study, the very one from which the Russian Emperor had dispatched him on his mission. He stood a minute or two, waiting. He heard hurried footsteps beyond the door, both halves of it were opened rapidly; all was silent and then from the study the sound was heard of other steps, firm and resolute--they were those of Napoleon. He had just finished dressing for his ride, and wore a blue uniform, opening in front over a white waistcoat so long that it covered his rotund stomach, white leather breeches tightly fitting the fat thighs of his short legs, and Hessian boots. His short hair had evidently just been brushed, but one lock hung down in the middle of his broad forehead. His plump white neck stood out sharply above the black collar of his uniform, and he smelled of Eau de Cologne. His full face, rather young-looking, with its prominent chin, wore a gracious and majestic expression of imperial welcome. He entered briskly, with a jerk at every step and his head slightly thrown back. His whole short corpulent figure with broad thick shoulders, and chest and stomach involuntarily protruding, had that imposing and stately appearance one sees in men of forty who live in comfort. It was evident, too, that he was in the best of spirits that day. He nodded in answer to Balashav's low and respectful bow, and coming up to him at once began speaking like a man who values every moment of his time and does not condescend to prepare what he has to say but is sure he will always say the right thing and say it well. "Good day, General!" said he. "I have received the letter you brought from the Emperor Alexander and am very glad to see you." He glanced with his large eyes into Balashav's face and immediately looked past him. It was plain that Balashev's personality did not interest him at all. Evidently only what took place within his own mind interested him. Nothing outside himself had any significance for him, because everything in the world, it seemed to him, depended entirely on his will. "I do not, and did not, desire war," he continued, "but it has been forced on me. Even now" (he emphasized the word) "I am ready to receive any explanations you can give me." And he began clearly and concisely to explain his reasons for dissatisfaction with the Russian government. Judging by the calmly moderate and amicable tone in which the French Emperor spoke, Balashev was firmly persuaded that he wished for peace and intended to enter into negotiations. When Napoleon, having finished speaking, looked inquiringly at the Russian envoy, Balashev began a speech he had prepared long before: "Sire! The Emperor, my master..." but the sight of the Emperor's eyes bent on him confused him. "You are flurried--compose yourself!" Napoleon seemed to say, as with a scarcely perceptible smile he looked at Balashev's uniform and sword. Balashev recovered himself and began to speak. He said that the Emperor Alexander did not consider Kurakin's demand for his passports a sufficient cause for war; that Kurakin had acted on his own initiative and without his sovereign's assent, that the Emperor Alexander did not desire war, and had no relations with England. "Not yet!" interposed Napoleon, and, as if fearing to give vent to his feelings, he frowned and nodded slightly as a sign that Balashev might proceed. After saying all he had been instructed to say, Balashev added that the Emperor Alexander wished for peace, but would not enter into negotiations except on condition that... Here Balashev hesitated: he remembered the words the Emperor Alexander had not written in his letter, but had specially inserted in the rescript to Saltykov and had told Balashev to repeat to Napoleon. Balashev remembered these words, "So long as a single armed foe remains on Russian soil," but some complex feeling restrained him. He could not utter them, though he wished to do so. He grew confused and said: "On condition that the French army retires beyond the Niemen." Napoleon noticed Balashev's embarrassment when uttering these last words; his face twitched and the calf of his left leg began to quiver rhythmically. Without moving from where he stood he began speaking in a louder tone and more hurriedly than before. During the speech that followed, Balashev, who more than once lowered his eyes, involuntarily noticed the quivering of Napoleon's left leg which increased the more Napoleon raised his voice. "I desire peace, no less than the Emperor Alexander," he began. "Have I not for eighteen months been doing everything to obtain it? I have waited eighteen months for explanations. But in order to begin negotiations, what is demanded of me?" he said, frowning and making an energetic gesture of inquiry with his small white plump hand. "The withdrawal of your army beyond the Niemen, sire," replied Balashev. "The Niemen?" repeated Napoleon. "So now you want me to retire beyond the Niemen--only the Niemen?" repeated Napoleon, looking straight at Balashev. The latter bowed his head respectfully. Instead of the demand of four months earlier to withdraw from Pomerania, only a withdrawal beyond the Niemen was now demanded. Napoleon turned quickly and began to pace the room. "You say the demand now is that I am to withdraw beyond the Niemen before commencing negotiations, but in just the same way two months ago the demand was that I should withdraw beyond the Vistula and the Oder, and yet you are willing to negotiate." He went in silence from one corner of the room to the other and again stopped in front of Balashev. Balashev noticed that his left leg was quivering faster than before and his face seemed petrified in its stern expression. This quivering of his left leg was a thing Napoleon was conscious of. "The vibration of my left calf is a great sign with me," he remarked at a later date. "Such demands as to retreat beyond the Vistula and Oder may be made to a Prince of Baden, but not to me!" Napoleon almost screamed, quite to his own surprise. "If you gave me Petersburg and Moscow I could not accept such conditions. You say I have begun this war! But who first joined his army? The Emperor Alexander, not I! And you offer me negotiations when I have expended millions, when you are in alliance with England, and when your position is a bad one. You offer me negotiations! But what is the aim of your alliance with England? What has she given you?" he continued hurriedly, evidently no longer trying to show the advantages of peace and discuss its possibility, but only to prove his own rectitude and power and Alexander's errors and duplicity. The commencement of his speech had obviously been made with the intention of demonstrating the advantages of his position and showing that he was nevertheless willing to negotiate. But he had begun talking, and the more he talked the less could he control his words. The whole purport of his remarks now was evidently to exalt himself and insult Alexander--just what he had least desired at the commencement of the interview. "I hear you have made peace with Turkey?" Balashev bowed his head affirmatively. "Peace has been concluded..." he began. But Napoleon did not let him speak. He evidently wanted to do all the talking himself, and continued to talk with the sort of eloquence and unrestrained irritability to which spoiled people are so prone. "Yes, I know you have made peace with the Turks without obtaining Moldavia and Wallachia; I would have given your sovereign those provinces as I gave him Finland. Yes," he went on, "I promised and would have given the Emperor Alexander Moldavia and Wallachia, and now he won't have those splendid provinces. Yet he might have united them to his empire and in a single reign would have extended Russia from the Gulf of Bothnia to the mouths of the Danube. Catherine the Great could not have done more," said Napoleon, growing more and more excited as he paced up and down the room, repeating to Balashev almost the very words he had used to Alexander himself at Tilsit. "All that, he would have owed to my friendship. Oh, what a splendid reign!" he repeated several times, then paused, drew from his pocket a gold snuffbox, lifted it to his nose, and greedily sniffed at it. "What a splendid reign the Emperor Alexander's might have been!" He looked compassionately at Balashev, and as soon as the latter tried to make some rejoinder hastily interrupted him. "What could he wish or look for that he would not have obtained through my friendship?" demanded Napoleon, shrugging his shoulders in perplexity. "But no, he has preferred to surround himself with my enemies, and with whom? With Steins, Armfeldts, Bennigsens, and Wintzingerodes! Stein, a traitor expelled from his own country; Armfeldt, a rake and an intriguer; Wintzingerode, a fugitive French subject; Bennigsen, rather more of a soldier than the others, but all the same an incompetent who was unable to do anything in 1807 and who should awaken terrible memories in the Emperor Alexander's mind.... Granted that were they competent they might be made use of," continued Napoleon--hardly able to keep pace in words with the rush of thoughts that incessantly sprang up, proving how right and strong he was (in his perception the two were one and the same)- "but they are not even that! They are neither fit for war nor peace! Barclay is said to be the most capable of them all, but I cannot say so, judging by his first movements. And what are they doing, all these courtiers? Pfuel proposes, Armfeldt disputes, Bennigsen considers, and Barclay, called on to act, does not know what to decide on, and time passes bringing no result. Bagration alone is a military man. He's stupid, but he has experience, a quick eye, and resolution.... And what role is your young monarch playing in that monstrous crowd? They compromise him and throw on him the responsibility for all that happens. A sovereign should not be with the army unless he is a general!" said Napoleon, evidently uttering these words as a direct challenge to the Emperor. He knew how Alexander desired to be a military commander. "The campaign began only a week ago, and you haven't even been able to defend Vilna. You are cut in two and have been driven out of the Polish provinces. Your army is grumbling." "On the contrary, Your Majesty," said Balashev, hardly able to remember what had been said to him and following these verbal fireworks with difficulty, "the troops are burning with eagerness..." "I know everything!" Napoleon interrupted him. "I know everything. I know the number of your battalions as exactly as I know my own. You have not two hundred thousand men, and I have three times that number. I give you my word of honor," said Napoleon, forgetting that his word of honor could carry no weight--"I give you my word of honor that I have five hundred and thirty thousand men this side of the Vistula. The Turks will be of no use to you; they are worth nothing and have shown it by making peace with you. As for the Swedes--it is their fate to be governed by mad kings. Their king was insane and they changed him for another--Bernadotte, who promptly went mad--for no Swede would ally himself with Russia unless he were mad." Napoleon grinned maliciously and again raised his snuffbox to his nose. Balashev knew how to reply to each of Napoleon's remarks, and would have done so; he continually made the gesture of a man wishing to say something, but Napoleon always interrupted him. To the alleged insanity of the Swedes, Balashev wished to reply that when Russia is on her side Sweden is practically an island: but Napoleon gave an angry exclamation to drown his voice. Napoleon was in that state of irritability in which a man has to talk, talk, and talk, merely to convince himself that he is in the right. Balashev began to feel uncomfortable: as envoy he feared to demean his dignity and felt the necessity of replying; but, as a man, he shrank before the transport of groundless wrath that had evidently seized Napoleon. He knew that none of the words now uttered by Napoleon had any significance, and that Napoleon himself would be ashamed of them when he came to his senses. Balashev stood with downcast eyes, looking at the movements of Napoleon's stout legs and trying to avoid meeting his eyes. "But what do I care about your allies?" said Napoleon. "I have allies--the Poles. There are eighty thousand of them and they fight like lions. And there will be two hundred thousand of them." And probably still more perturbed by the fact that he had uttered this obvious falsehood, and that Balashev still stood silently before him in the same attitude of submission to fate, Napoleon abruptly turned round, drew close to Balashev's face, and, gesticulating rapidly and energetically with his white hands, almost shouted: "Know that if you stir up Prussia against me, I'll wipe it off the map of Europe!" he declared, his face pale and distorted by anger, and he struck one of his small hands energetically with the other. "Yes, I will throw you back beyond the Dvina and beyond the Dnieper, and will re-erect against you that barrier which it was criminal and blind of Europe to allow to be destroyed. Yes, that is what will happen to you. That is what you have gained by alienating me!" And he walked silently several times up and down the room, his fat shoulders twitching. He put his snuffbox into his waistcoat pocket, took it out again, lifted it several times to his nose, and stopped in front of Balashev. He paused, looked ironically straight into Balashev's eyes, and said in a quiet voice: "And yet what a splendid reign your master might have had!" Balashev, feeling it incumbent on him to reply, said that from the Russian side things did not appear in so gloomy a light. Napoleon was silent, still looking derisively at him and evidently not listening to him. Balashev said that in Russia the best results were expected from the war. Napoleon nodded condescendingly, as if to say, "I know it's your duty to say that, but you don't believe it yourself. I have convinced you." When Balashev had ended, Napoleon again took out his snuffbox, sniffed at it, and stamped his foot twice on the floor as a signal. The door opened, a gentleman-in-waiting, bending respectfully, handed the Emperor his hat and gloves; another brought him a pocket handkerchief. Napoleon, without giving them a glance, turned to Balashev: "Assure the Emperor Alexander from me," said he, taking his hat, "that I am as devoted to him as before: I know him thoroughly and very highly esteem his lofty qualities. I will detain you no longer, General; you shall receive my letter to the Emperor." And Napoleon went quickly to the door. Everyone in the reception room rushed forward and descended the staircase. CHAPTER VII After all that Napoleon had said to him--those bursts of anger and the last dryly spoken words: "I will detain you no longer, General; you shall receive my letter," Balashev felt convinced that Napoleon would not wish to see him, and would even avoid another meeting with him--an insulted envoy--especially as he had witnessed his unseemly anger. But, to his surprise, Balashev received, through Duroc, an invitation to dine with the Emperor that day. Bessieres, Caulaincourt, and Berthier were present at that dinner. Napoleon met Balashev cheerfully and amiably. He not only showed no sign of constraint or self-reproach on account of his outburst that morning, but, on the contrary, tried to reassure Balashev. It was evident that he had long been convinced that it was impossible for him to make a mistake, and that in his perception whatever he did was right, not because it harmonized with any idea of right and wrong, but because he did it. The Emperor was in very good spirits after his ride through Vilna, where crowds of people had rapturously greeted and followed him. From all the windows of the streets through which he rode, rugs, flags, and his monogram were displayed, and the Polish ladies, welcoming him, waved their handkerchiefs to him. At dinner, having placed Balashev beside him, Napoleon not only treated him amiably but behaved as if Balashev were one of his own courtiers, one of those who sympathized with his plans and ought to rejoice at his success. In the course of conversation he mentioned Moscow and questioned Balashev about the Russian capital, not merely as an interested traveler asks about a new city he intends to visit, but as if convinced that Balashev, as a Russian, must be flattered by his curiosity. "How many inhabitants are there in Moscow? How many houses? Is it true that Moscow is called 'Holy Moscow'? How many churches are there in Moscow?" he asked. And receiving the reply that there were more than two hundred churches, he remarked: "Why such a quantity of churches?" "The Russians are very devout," replied Balashev. "But a large number of monasteries and churches is always a sign of the backwardness of a people," said Napoleon, turning to Caulaincourt for appreciation of this remark. Balashev respectfully ventured to disagree with the French Emperor. "Every country has its own character," said he. "But nowhere in Europe is there anything like that," said Napoleon. "I beg your Majesty's pardon," returned Balashev, "besides Russia there is Spain, where there are also many churches and monasteries." This reply of Balashev's, which hinted at the recent defeats of the French in Spain, was much appreciated when he related it at Alexander's court, but it was not much appreciated at Napoleon's dinner, where it passed unnoticed. The uninterested and perplexed faces of the marshals showed that they were puzzled as to what Balashev's tone suggested. "If there is a point we don't see it, or it is not at all witty," their expressions seemed to say. So little was his rejoinder appreciated that Napoleon did not notice it at all and naively asked Balashev through what towns the direct road from there to Moscow passed. Balashev, who was on the alert all through the dinner, replied that just as "all roads lead to Rome," so all roads lead to Moscow: there were many roads, and "among them the road through Poltava, which Charles XII chose." Balashev involuntarily flushed with pleasure at the aptitude of this reply, but hardly had he uttered the word Poltava before Caulaincourt began speaking of the badness of the road from Petersburg to Moscow and of his Petersburg reminiscences. After dinner they went to drink coffee in Napoleon's study, which four days previously had been that of the Emperor Alexander. Napoleon sat down, toying with his Sevres coffee cup, and motioned Balashev to a chair beside him. Napoleon was in that well-known after-dinner mood which, more than any reasoned cause, makes a man contented with himself and disposed to consider everyone his friend. It seemed to him that he was surrounded by men who adored him: and he felt convinced that, after his dinner, Balashev too was his friend and worshiper. Napoleon turned to him with a pleasant, though slightly ironic, smile. "They tell me this is the room the Emperor Alexander occupied? Strange, isn't it, General?" he said, evidently not doubting that this remark would be agreeable to his hearer since it went to prove his, Napoleon's, superiority to Alexander. Balashev made no reply and bowed his head in silence. "Yes. Four days ago in this room, Wintzingerode and Stein were deliberating," continued Napoleon with the same derisive and self-confident smile. "What I can't understand," he went on, "is that the Emperor Alexander has surrounded himself with my personal enemies. That I do not... understand. Has he not thought that I may the same?" and he turned inquiringly to Balashev, and evidently this thought turned him back on to the track of his morning's anger, which was still fresh in him. "And let him know that I will do so!" said Napoleon, rising and pushing his cup away with his hand. "I'll drive all his Wurttemberg, Baden, and Weimar relations out of Germany.... Yes. I'll drive them out. Let him prepare an asylum for them in Russia!" Balashev bowed his head with an air indicating that he would like to make his bow and leave, and only listened because he could not help hearing what was said to him. Napoleon did not notice this expression; he treated Balashev not as an envoy from his enemy, but as a man now fully devoted to him and who must rejoice at his former master's humiliation. "And why has the Emperor Alexander taken command of the armies? What is the good of that? War is my profession, but his business is to reign and not to command armies! Why has he taken on himself such a responsibility?" Again Napoleon brought out his snuffbox, paced several times up and down the room in silence, and then, suddenly and unexpectedly, went up to Balashev and with a slight smile, as confidently, quickly, and simply as if he were doing something not merely important but pleasing to Balashev, he raised his hand to the forty-year-old Russian general's face and, taking him by the ear, pulled it gently, smiling with his lips only. To have one's ear pulled by the Emperor was considered the greatest honor and mark of favor at the French court. "Well, adorer and courtier of the Emperor Alexander, why don't you say anything?" said he, as if it was ridiculous, in his presence, to be the adorer and courtier of anyone but himself, Napoleon. "Are the horses ready for the general?" he added, with a slight inclination of his head in reply to Balashev's bow. "Let him have mine, he has a long way to go!" The letter taken by Balashev was the last Napoleon sent to Alexander. Every detail of the interview was communicated to the Russian monarch, and the war began... CHAPTER VIII After his interview with Pierre in Moscow, Prince Andrew went to Petersburg, on business as he told his family, but really to meet Anatole Kuragin whom he felt it necessary to encounter. On reaching Petersburg he inquired for Kuragin but the latter had already left the city. Pierre had warned his brother-in-law that Prince Andrew was on his track. Anatole Kuragin promptly obtained an appointment from the Minister of War and went to join the army in Moldavia. While in Petersburg Prince Andrew met Kutuzov, his former commander who was always well disposed toward him, and Kutuzov suggested that he should accompany him to the army in Moldavia, to which the old general had been appointed commander in chief. So Prince Andrew, having received an appointment on the headquarters staff, left for Turkey. Prince Andrew did not think it proper to write and challenge Kuragin. He thought that if he challenged him without some fresh cause it might compromise the young Countess Rostova and so he wanted to meet Kuragin personally in order to find a fresh pretext for a duel. But he again failed to meet Kuragin in Turkey, for soon after Prince Andrew arrived, the latter returned to Russia. In a new country, amid new conditions, Prince Andrew found life easier to bear. After his betrothed had broken faith with him--which he felt the more acutely the more he tried to conceal its effects--the surroundings in which he had been happy became trying to him, and the freedom and independence he had once prized so highly were still more so. Not only could he no longer think the thoughts that had first come to him as he lay gazing at the sky on the field of Austerlitz and had later enlarged upon with Pierre, and which had filled his solitude at Bogucharovo and then in Switzerland and Rome, but he even dreaded to recall them and the bright and boundless horizons they had revealed. He was now concerned only with the nearest practical matters unrelated to his past interests, and he seized on these the more eagerly the more those past interests were closed to him. It was as if that lofty, infinite canopy of heaven that had once towered above him had suddenly turned into a low, solid vault that weighed him down, in which all was clear, but nothing eternal or mysterious. Of the activities that presented themselves to him, army service was the simplest and most familiar. As a general on duty on Kutuzov's staff, he applied himself to business with zeal and perseverance and surprised Kutuzov by his willingness and accuracy in work. Not having found Kuragin in Turkey, Prince Andrew did not think it necessary to rush back to Russia after him, but all the same he knew that however long it might be before he met Kuragin, despite his contempt for him and despite all the proofs he deduced to convince himself that it was not worth stooping to a conflict with him--he knew that when he did meet him he would not be able to resist calling him out, any more than a ravenous man can help snatching at food. And the consciousness that the insult was not yet avenged, that his rancor was still unspent, weighed on his heart and poisoned the artificial tranquillity which he managed to obtain in Turkey by means of restless, plodding, and rather vainglorious and ambitious activity. In the year 1812, when news of the war with Napoleon reached Bucharest--where Kutuzov had been living for two months, passing his days and nights with a Wallachian woman--Prince Andrew asked Kutuzov to transfer him to the Western Army. Kutuzov, who was already weary of Bolkonski's activity which seemed to reproach his own idleness, very readily let him go and gave him a mission to Barclay de Tolly. Before joining the Western Army which was then, in May, encamped at Drissa, Prince Andrew visited Bald Hills which was directly on his way, being only two miles off the Smolensk highroad. During the last three years there had been so many changes in his life, he had thought, felt, and seen so much (having traveled both in the east and the west), that on reaching Bald Hills it struck him as strange and unexpected to find the way of life there unchanged and still the same in every detail. He entered through the gates with their stone pillars and drove up the avenue leading to the house as if he were entering an enchanted, sleeping castle. The same old stateliness, the same cleanliness, the same stillness reigned there, and inside there was the same furniture, the same walls, sounds, and smell, and the same timid faces, only somewhat older. Princess Mary was still the same timid, plain maiden getting on in years, uselessly and joylessly passing the best years of her life in fear and constant suffering. Mademoiselle Bourienne was the same coquettish, self-satisfied girl, enjoying every moment of her existence and full of joyous hopes for the future. She had merely become more self-confident, Prince Andrew thought. Dessalles, the tutor he had brought from Switzerland, was wearing a coat of Russian cut and talking broken Russian to the servants, but was still the same narrowly intelligent, conscientious, and pedantic preceptor. The old prince had changed in appearance only by the loss of a tooth, which left a noticeable gap on one side of his mouth; in character he was the same as ever, only showing still more irritability and skepticism as to what was happening in the world. Little Nicholas alone had changed. He had grown, become rosier, had curly dark hair, and, when merry and laughing, quite unconsciously lifted the upper lip of his pretty little mouth just as the little princess used to do. He alone did not obey the law of immutability in the enchanted, sleeping castle. But though externally all remained as of old, the inner relations of all these people had changed since Prince Andrew had seen them last. The household was divided into two alien and hostile camps, who changed their habits for his sake and only met because he was there. To the one camp belonged the old prince, Madmoiselle Bourienne, and the architect; to the other Princess Mary, Dessalles, little Nicholas, and all the old nurses and maids. During his stay at Bald Hills all the family dined together, but they were ill at ease and Prince Andrew felt that he was a visitor for whose sake an exception was being made and that his presence made them all feel awkward. Involuntarily feeling this at dinner on the first day, he was taciturn, and the old prince noticing this also became morosely dumb and retired to his apartments directly after dinner. In the evening, when Prince Andrew went to him and, trying to rouse him, began to tell him of the young Count Kamensky's campaign, the old prince began unexpectedly to talk about Princess Mary, blaming her for her superstitions and her dislike of Mademoiselle Bourienne, who, he said, was the only person really attached to him. The old prince said that if he was ill it was only because of Princess Mary: that she purposely worried and irritated him, and that by indulgence and silly talk she was spoiling little Prince Nicholas. The old prince knew very well that he tormented his daughter and that her life was very hard, but he also knew that he could not help tormenting her and that she deserved it. "Why does Prince Andrew, who sees this, say nothing to me about his sister? Does he think me a scoundrel, or an old fool who, without any reason, keeps his own daughter at a distance and attaches this Frenchwoman to himself? He doesn't understand, so I must explain it, and he must hear me out," thought the old prince. And he began explaining why he could not put up with his daughter's unreasonable character. "If you ask me," said Prince Andrew, without looking up (he was censuring his father for the first time in his life), "I did not wish to speak about it, but as you ask me I will give you my frank opinion. If there is any misunderstanding and discord between you and Mary, I can't blame her for it at all. I know how she loves and respects you. Since you ask me," continued Prince Andrew, becoming irritable--as he was always liable to do of late--"I can only say that if there are any misunderstandings they are caused by that worthless woman, who is not fit to be my sister's companion." The old man at first stared fixedly at his son, and an unnatural smile disclosed the fresh gap between his teeth to which Prince Andrew could not get accustomed. "What companion, my dear boy? Eh? You've already been talking it over! Eh?" "Father, I did not want to judge," said Prince Andrew, in a hard and bitter tone, "but you challenged me, and I have said, and always shall say, that Mary is not to blame, but those to blame--the one to blame--is that Frenchwoman." "Ah, he has passed judgment... passed judgement!" said the old man in a low voice and, as it seemed to Prince Andrew, with some embarrassment, but then he suddenly jumped up and cried: "Be off, be off! Let not a trace of you remain here!..." Prince Andrew wished to leave at once, but Princess Mary persuaded him to stay another day. That day he did not see his father, who did not leave his room and admitted no one but Mademoiselle Bourienne and Tikhon, but asked several times whether his son had gone. Next day, before leaving, Prince Andrew went to his son's rooms. The boy, curly-headed like his mother and glowing with health, sat on his knee, and Prince Andrew began telling him the story of Bluebeard, but fell into a reverie without finishing the story. He thought not of this pretty child, his son whom he held on his knee, but of himself. He sought in himself either remorse for having angered his father or regret at leaving home for the first time in his life on bad terms with him, and was horrified to find neither. What meant still more to him was that he sought and did not find in himself the former tenderness for his son which he had hoped to reawaken by caressing the boy and taking him on his knee. "Well, go on!" said his son. Prince Andrew, without replying, put him down from his knee and went out of the room. As soon as Prince Andrew had given up his daily occupations, and especially on returning to the old conditions of life amid which he had been happy, weariness of life overcame him with its former intensity, and he hastened to escape from these memories and to find some work as soon as possible. "So you've decided to go, Andrew?" asked his sister. "Thank God that I can," replied Prince Andrew. "I am very sorry you can't." "Why do you say that?" replied Princess Mary. "Why do you say that, when you are going to this terrible war, and he is so old? Mademoiselle Bourienne says he has been asking about you...." As soon as she began to speak of that, her lips trembled and her tears began to fall. Prince Andrew turned away and began pacing the room. "Ah, my God! my God! When one thinks who and what--what trash--can cause people misery!" he said with a malignity that alarmed Princess Mary. She understood that when speaking of "trash" he referred not only to Mademoiselle Bourienne, the cause of her misery, but also to the man who had ruined his own happiness. "Andrew! One thing I beg, I entreat of you!" she said, touching his elbow and looking at him with eyes that shone through her tears. "I understand you" (she looked down). "Don't imagine that sorrow is the work of men. Men are His tools." She looked a little above Prince Andrew's head with the confident, accustomed look with which one looks at the place where a familiar portrait hangs. "Sorrow is sent by Him, not by men. Men are His instruments, they are not to blame. If you think someone has wronged you, forget it and forgive! We have no right to punish. And then you will know the happiness of forgiving." "If I were a woman I would do so, Mary. That is a woman's virtue. But a man should not and cannot forgive and forget," he replied, and though till that moment he had not been thinking of Kuragin, all his unexpended anger suddenly swelled up in his heart. "If Mary is already persuading me forgive, it means that I ought long ago to have punished him," he thought. And giving her no further reply, he began thinking of the glad vindictive moment when he would meet Kuragin who he knew was now in the army. Princess Mary begged him to stay one day more, saying that she knew how unhappy her father would be if Andrew left without being reconciled to him, but Prince Andrew replied that he would probably soon be back again from the army and would certainly write to his father, but that the longer he stayed now the more embittered their differences would become. "Good-by, Andrew! Remember that misfortunes come from God, and men are never to blame," were the last words he heard from his sister when he took leave of her. "Then it must be so!" thought Prince Andrew as he drove out of the avenue from the house at Bald Hills. "She, poor innocent creature, is left to be victimized by an old man who has outlived his wits. The old man feels he is guilty, but cannot change himself. My boy is growing up and rejoices in life, in which like everybody else he will deceive or be deceived. And I am off to the army. Why? I myself don't know. I want to meet that man whom I despise, so as to give him a chance to kill and laugh at me!" These conditions of life had been the same before, but then they were all connected, while now they had all tumbled to pieces. Only senseless things, lacking coherence, presented themselves one after another to Prince Andrew's mind. CHAPTER IX Prince Andrew reached the general headquarters of the army at the end of June. The first army, with which was the Emperor, occupied the fortified camp at Drissa; the second army was retreating, trying to effect a junction with the first one from which it was said to be cut off by large French forces. Everyone was dissatisfied with the general course of affairs in the Russian army, but no one anticipated any danger of invasion of the Russian provinces, and no one thought the war would extend farther than the western, the Polish, provinces. Prince Andrew found Barclay de Tolly, to whom he had been assigned, on the bank of the Drissa. As there was not a single town or large village in the vicinity of the camp, the immense number of generals and courtiers accompanying the army were living in the best houses of the villages on both sides of the river, over a radius of six miles. Barclay de Tolly was quartered nearly three miles from the Emperor. He received Bolkonski stiffly and coldly and told him in his foreign accent that he would mention him to the Emperor for a decision as to his employment, but asked him meanwhile to remain on his staff. Anatole Kuragin, whom Prince Andrew had hoped to find with the army, was not there. He had gone to Petersburg, but Prince Andrew was glad to hear this. His mind was occupied by the interests of the center that was conducting a gigantic war, and he was glad to be free for a while from the distraction caused by the thought of Kuragin. During the first four days, while no duties were required of him, Prince Andrew rode round the whole fortified camp and, by the aid of his own knowledge and by talks with experts, tried to form a definite opinion about it. But the question whether the camp was advantageous or disadvantageous remained for him undecided. Already from his military experience and what he had seen in the Austrian campaign, he had come to the conclusion that in war the most deeply considered plans have no significance and that all depends on the way unexpected movements of the enemy--that cannot be foreseen- are met, and on how and by whom the whole matter is handled. To clear up this last point for himself, Prince Andrew, utilizing his position and acquaintances, tried to fathom the character of the control of the army and of the men and parties engaged in it, and he deduced for himself the following of the state of affairs. While the Emperor had still been at Vilna, the forces had been divided into three armies. First, the army under Barclay de Tolly, secondly, the army under Bagration, and thirdly, the one commanded by Tormasov. The Emperor was with the first army, but not as commander in chief. In the orders issued it was stated, not that the Emperor would take command, but only that he would be with the army. The Emperor, moreover, had with him not a commander in chief's staff but the imperial headquarters staff. In attendance on him was the head of the imperial staff, Quartermaster General Prince Volkonski, as well as generals, imperial aides-de-camp, diplomatic officials, and a large number of foreigners, but not the army staff. Besides these, there were in attendance on the Emperor without any definite appointments: Arakcheev, the ex-Minister of War; Count Bennigsen, the senior general in rank; the Grand Duke Tsarevich Constantine Pavlovich; Count Rumyantsev, the Chancellor; Stein, a former Prussian minister; Armfeldt, a Swedish general; Pfuel, the chief author of the plan of campaign; Paulucci, an adjutant general and Sardinian emigre; Wolzogen--and many others. Though these men had no military appointment in the army, their position gave them influence, and often a corps commander, or even the commander in chief, did not know in what capacity he was questioned by Bennigsen, the Grand Duke, Arakcheev, or Prince Volkonski, or was given this or that advice and did not know whether a certain order received in the form of advice emanated from the man who gave it or from the Emperor and whether it had to be executed or not. But this was only the external condition; the essential significance of the presence of the Emperor and of all these people, from a courtier's point of view (and in an Emperor's vicinity all became courtiers), was clear to everyone. It was this: the Emperor did not assume the title of commander in chief, but disposed of all the armies; the men around him were his assistants. Arakcheev was a faithful custodian to enforce order and acted as the sovereign's bodyguard. Bennigsen was a landlord in the Vilna province who appeared to be doing the honors of the district, but was in reality a good general, useful as an adviser and ready at hand to replace Barclay. The Grand Duke was there because it suited him to be. The ex-Minister Stein was there because his advice was useful and the Emperor Alexander held him in high esteem personally. Armfeldt virulently hated Napoleon and was a general full of self-confidence, a quality that always influenced Alexander. Paulucci was there because he was bold and decided in speech. The adjutants general were there because they always accompanied the Emperor, and lastly and chiefly Pfuel was there because he had drawn up the plan of campaign against Napoleon and, having induced Alexander to believe in the efficacy of that plan, was directing the whole business of the war. With Pfuel was Wolzogen, who expressed Pfuel's thoughts in a more comprehensible way than Pfuel himself (who was a harsh, bookish theorist, self-confident to the point of despising everyone else) was able to do. Besides these Russians and foreigners who propounded new and unexpected ideas every day--especially the foreigners, who did so with a boldness characteristic of people employed in a country not their own--there were many secondary personages accompanying the army because their principals were there. Among the opinions and voices in this immense, restless, brilliant, and proud sphere, Prince Andrew noticed the following sharply defined subdivisions of and parties: The first party consisted of Pfuel and his adherents--military theorists who believed in a science of war with immutable laws--laws of oblique movements, outflankings, and so forth. Pfuel and his adherents demanded a retirement into the depths of the country in accordance with precise laws defined by a pseudo-theory of war, and they saw only barbarism, ignorance, or evil intention in every deviation from that theory. To this party belonged the foreign nobles, Wolzogen, Wintzingerode, and others, chiefly Germans. The second party was directly opposed to the first; one extreme, as always happens, was met by representatives of the other. The members of this party were those who had demanded an advance from Vilna into Poland and freedom from all prearranged plans. Besides being advocates of bold action, this section also represented nationalism, which made them still more one-sided in the dispute. They were Russians: Bagration, Ermolov (who was beginning to come to the front), and others. At that time a famous joke of Ermolov's was being circulated, that as a great favor he had petitioned the Emperor to make him a German. The men of that party, remembering Suvorov, said that what one had to do was not to reason, or stick pins into maps, but to fight, beat the enemy, keep him out of Russia, and not let the army get discouraged. To the third party--in which the Emperor had most confidence- belonged the courtiers who tried to arrange compromises between the other two. The members of this party, chiefly civilians and to whom Arakcheev belonged, thought and said what men who have no convictions but wish to seem to have some generally say. They said that undoubtedly war, particularly against such a genius as Bonaparte (they called him Bonaparte now), needs most deeply devised plans and profound scientific knowledge and in that respect Pfuel was a genius, but at the same time it had to be acknowledged that the theorists are often one sided, and therefore one should not trust them absolutely, but should also listen to what Pfuel's opponents and practical men of experience in warfare had to say, and then choose a middle course. They insisted on the retention of the camp at Drissa, according to Pfuel's plan, but on changing the movements of the other armies. Though, by this course, neither one aim nor the other could be attained, yet it seemed best to the adherents of this third party. Of a fourth opinion the most conspicuous representative was the Tsarevich, who could not forget his disillusionment at Austerlitz, where he had ridden out at the head of the Guards, in his casque and cavalry uniform as to a review, expecting to crush the French gallantly; but unexpectedly finding himself in the front line had narrowly escaped amid the general confusion. The men of this party had both the quality and the defect of frankness in their opinions. They feared Napoleon, recognized his strength and their own weakness, and frankly said so. They said: "Nothing but sorrow, shame, and ruin will come of all this! We have abandoned Vilna and Vitebsk and shall abandon Drissa. The only reasonable thing left to do is to conclude peace as soon as possible, before we are turned out of Petersburg." This view was very general in the upper army circles and found support also in Petersburg and from the chancellor, Rumyantsev, who, for other reasons of state, was in favor of peace. The fifth party consisted of those who were adherents of Barclay de Tolly, not so much as a man but as minister of war and commander in chief. "Be he what he may" (they always began like that), "he is an honest, practical man and we have nobody better. Give him real power, for war cannot be conducted successfully without unity of command, and he will show what he can do, as he did in Finland. If our army is well organized and strong and has withdrawn to Drissa without suffering any defeats, we owe this entirely to Barclay. If Barclay is now to be superseded by Bennigsen all will be lost, for Bennigsen showed his incapacity already in 1807." The sixth party, the Bennigsenites, said, on the contrary, that at any rate there was no one more active and experienced than Bennigsen: "and twist about as you may, you will have to come to Bennigsen eventually. Let the others make mistakes now!" said they, arguing that our retirement to Drissa was a most shameful reverse and an unbroken series of blunders. "The more mistakes that are made the better. It will at any rate be understood all the sooner that things cannot go on like this. What is wanted is not some Barclay or other, but a man like Bennigsen, who made his mark in 1807, and to whom Napoleon himself did justice--a man whose authority would be willingly recognized, and Bennigsen is the only such man." The seventh party consisted of the sort of people who are always to be found, especially around young sovereigns, and of whom there were particularly many round Alexander--generals and imperial aides-de-camp passionately devoted to the Emperor, not merely as a monarch but as a man, adoring him sincerely and disinterestedly, as Rostov had done in 1805, and who saw in him not only all the virtues but all human capabilities as well. These men, though enchanted with the sovereign for refusing the command of the army, yet blamed him for such excessive modesty, and only desired and insisted that their adored sovereign should abandon his diffidence and openly announce that he would place himself at the head of the army, gather round him a commander in chief's staff, and, consulting experienced theoreticians and practical men where necessary, would himself lead the troops, whose spirits would thereby be raised to the highest pitch. The eighth and largest group, which in its enormous numbers was to the others as ninety-nine to one, consisted of men who desired neither peace nor war, neither an advance nor a defensive camp at the Drissa or anywhere else, neither Barclay nor the Emperor, neither Pfuel nor Bennigsen, but only the one most essential thing--as much advantage and pleasure for themselves as possible. In the troubled waters of conflicting and intersecting intrigues that eddied about the Emperor's headquarters, it was possible to succeed in many ways unthinkable at other times. A man who simply wished to retain his lucrative post would today agree with Pfuel, tomorrow with his opponent, and the day after, merely to avoid responsibility or to please the Emperor, would declare that he had no opinion at all on the matter. Another who wished to gain some advantage would attract the Emperor's attention by loudly advocating the very thing the Emperor had hinted at the day before, and would dispute and shout at the council, beating his breast and challenging those who did not agree with him to duels, thereby proving that he was prepared to sacrifice himself for the common good. A third, in the absence of opponents, between two councils would simply solicit a special gratuity for his faithful services, well knowing that at that moment people would be too busy to refuse him. A fourth while seemingly overwhelmed with work would often come accidentally under the Emperor's eye. A fifth, to achieve his long-cherished aim of dining with the Emperor, would stubbornly insist on the correctness or falsity of some newly emerging opinion and for this object would produce arguments more or less forcible and correct. All the men of this party were fishing for rubles, decorations, and promotions, and in this pursuit watched only the weathercock of imperial favor, and directly they noticed it turning in any direction, this whole drone population of the army began blowing hard that way, so that it was all the harder for the Emperor to turn it elsewhere. Amid the uncertainties of the position, with the menace of serious danger giving a peculiarly threatening character to everything, amid this vortex of intrigue, egotism, conflict of views and feelings, and the diversity of race among these people--this eighth and largest party of those preoccupied with personal interests imparted great confusion and obscurity to the common task. Whatever question arose, a swarm of these drones, without having finished their buzzing on a previous theme, flew over to the new one and by their hum drowned and obscured the voices of those who were disputing honestly. From among all these parties, just at the time Prince Andrew reached the army, another, a ninth party, was being formed and was beginning to raise its voice. This was the party of the elders, reasonable men experienced and capable in state affairs, who, without sharing any of those conflicting opinions, were able to take a detached view of what was going on at the staff at headquarters and to consider means of escape from this muddle, indecision, intricacy, and weakness. The men of this party said and thought that what was wrong resulted chiefly from the Emperor's presence in the army with his military court and from the consequent presence there of an indefinite, conditional, and unsteady fluctuation of relations, which is in place at court but harmful in an army; that a sovereign should reign but not command the army, and that the only way out of the position would be for the Emperor and his court to leave the army; that the mere presence of the Emperor paralyzed the action of fifty thousand men required to secure his personal safety, and that the worst commander in chief if independent would be better than the very best one trammeled by the presence and authority of the monarch. Just at the time Prince Andrew was living unoccupied at Drissa, Shishkov, the Secretary of State and one of the chief representatives of this party, wrote a letter to the Emperor which Arakcheev and Balashev agreed to sign. In this letter, availing himself of permission given him by the Emperor to discuss the general course of affairs, he respectfully suggested--on the plea that it was necessary for the sovereign to arouse a warlike spirit in the people of the capital--that the Emperor should leave the army. That arousing of the people by their sovereign and his call to them to defend their country--the very incitement which was the chief cause of Russia's triumph in so far as it was produced by the Tsar's personal presence in Moscow--was suggested to the Emperor, and accepted by him, as a pretext for quitting the army. CHAPTER X This letter had not yet been presented to the Emperor when Barclay, one day at dinner, informed Bolkonski that the sovereign wished to see him personally, to question him about Turkey, and that Prince Andrew was to present himself at Bennigsen's quarters at six that evening. News was received at the Emperor's quarters that very day of a fresh movement by Napoleon which might endanger the army--news subsequently found to be false. And that morning Colonel Michaud had ridden round the Drissa fortifications with the Emperor and had pointed out to him that this fortified camp constructed by Pfuel, and till then considered a chef-d'oeuvre of tactical science which would ensure Napoleon's destruction, was an absurdity, threatening the destruction of the Russian army. Prince Andrew arrived at Bennigsen's quarters--a country gentleman's house of moderate size, situated on the very banks of the river. Neither Bennigsen nor the Emperor was there, but Chernyshev, the Emperor's aide-de-camp, received Bolkonski and informed him that the Emperor, accompanied by General Bennigsen and Marquis Paulucci, had gone a second time that day to inspect the fortifications of the Drissa camp, of the suitability of which serious doubts were beginning to be felt. Chernyshev was sitting at a window in the first room with a French novel in his hand. This room had probably been a music room; there was still an organ in it on which some rugs were piled, and in one corner stood the folding bedstead of Bennigsen's adjutant. This adjutant was also there and sat dozing on the rolled-up bedding, evidently exhausted by work or by feasting. Two doors led from the room, one straight on into what had been the drawing room, and another, on the right, to the study. Through the first door came the sound of voices conversing in German and occasionally in French. In that drawing room were gathered, by the Emperor's wish, not a military council (the Emperor preferred indefiniteness), but certain persons whose opinions he wished to know in view of the impending difficulties. It was not a council of war, but, as it were, a council to elucidate certain questions for the Emperor personally. To this semicouncil had been invited the Swedish General Armfeldt, Adjutant General Wolzogen, Wintzingerode (whom Napoleon had referred to as a renegade French subject), Michaud, Toll, Count Stein who was not a military man at all, and Pfuel himself, who, as Prince Andrew had heard, was the mainspring of the whole affair. Prince Andrew had an opportunity of getting a good look at him, for Pfuel arrived soon after himself and, in passing through to the drawing room, stopped a minute to speak to Chernyshev. At first sight, Pfuel, in his ill-made uniform of a Russian general, which fitted him badly like a fancy costume, seemed familiar to Prince Andrew, though he saw him now for the first time. There was about him something of Weyrother, Mack, and Schmidt, and many other German theorist-generals whom Prince Andrew had seen in 1805, but he was more typical than any of them. Prince Andrew had never yet seen a German theorist in whom all the characteristics of those others were united to such an extent. Pfuel was short and very thin but broad-boned, of coarse, robust build, broad in the hips, and with prominent shoulder blades. His face was much wrinkled and his eyes deep set. His hair had evidently been hastily brushed smooth in front of the temples, but stuck up behind in quaint little tufts. He entered the room, looking restlessly and angrily around, as if afraid of everything in that large apartment. Awkwardly holding up his sword, he addressed Chernyshev and asked in German where the Emperor was. One could see that he wished to pass through the rooms as quickly as possible, finish with the bows and greetings, and sit down to business in front of a map, where he would feel at home. He nodded hurriedly in reply to Chernyshev, and smiled ironically on hearing that the sovereign was inspecting the fortifications that he, Pfuel, had planned in accord with his theory. He muttered something to himself abruptly and in a bass voice, as self-assured Germans do--it might have been "stupid fellow"... or "the whole affair will be ruined," or "something absurd will come of it."... Prince Andrew did not catch what he said and would have passed on, but Chernyshev introduced him to Pfuel, remarking that Prince Andrew was just back from Turkey where the war had terminated so fortunately. Pfuel barely glanced--not so much at Prince Andrew as past him--and said, with a laugh: "That must have been a fine tactical war"; and, laughing contemptuously, went on into the room from which the sound of voices was heard. Pfuel, always inclined to be irritably sarcastic, was particularly disturbed that day, evidently by the fact that they had dared to inspect and criticize his camp in his absence. From this short interview with Pfuel, Prince Andrew, thanks to his Austerlitz experiences, was able to form a clear conception of the man. Pfuel was one of those hopelessly and immutably self-confident men, self-confident to the point of martyrdom as only Germans are, because only Germans are self-confident on the basis of an abstract notion--science, that is, the supposed knowledge of absolute truth. A Frenchman is self-assured because he regards himself personally, both in mind and body, as irresistibly attractive to men and women. An Englishman is self-assured, as being a citizen of the best-organized state in the world, and therefore as an Englishman always knows what he should do and knows that all he does as an Englishman is undoubtedly correct. An Italian is self-assured because he is excitable and easily forgets himself and other people. A Russian is self-assured just because he knows nothing does not want to know anything, since he does not believe that anything can be known. The German's self-assurance is worst of all, stronger and more repulsive than any other, because he imagines that he knows the truth- science--which he himself has invented but which is for him the absolute truth. Pfuel was evidently of that sort. He had a science--the theory of oblique movements deduced by him from the history of Frederick the Great's wars, and all he came across in the history of more recent warfare seemed to him absurd and barbarous--monstrous collisions in which so many blunders were committed by both sides that these wars could not be called wars, they did not accord with the theory, and therefore could not serve as material for science. In 1806 Pfuel had been one of those responsible, for the plan of campaign that ended in Jena and Auerstadt, but he did not see the least proof of the fallibility of his theory in the disasters of that war. On the contrary, the deviations made from his theory were, in his opinion, the sole cause of the whole disaster, and with characteristically gleeful sarcasm he would remark, "There, I said the whole affair would go to the devil!" Pfuel was one of those theoreticians who so love their theory that they lose sight of the theory's object--its practical application. His love of theory made him hate everything practical, and he would not listen to it. He was even pleased by failures, for failures resulting from deviations in practice from the theory only proved to him the accuracy of his theory. He said a few words to Prince Andrew and Chernyshev about the present war, with the air of a man who knows beforehand that all will go wrong, and who is not displeased that it should be so. The unbrushed tufts of hair sticking up behind and the hastily brushed hair on his temples expressed this most eloquently. He passed into the next room, and the deep, querulous sounds of his voice were at once heard from there. CHAPTER XI Prince Andrew's eyes were still following Pfuel out of the room when Count Bennigsen entered hurriedly, and nodding to Bolkonski, but not pausing, went into the study, giving instructions to his adjutant as he went. The Emperor was following him, and Bennigsen had hastened on to make some preparations and to be ready to receive the sovereign. Chernyshev and Prince Andrew went out into the porch, where the Emperor, who looked fatigued, was dismounting. Marquis Paulucci was talking to him with particular warmth and the Emperor, with his head bent to the left, was listening with a dissatisfied air. The Emperor moved forward evidently wishing to end the conversation, but the flushed and excited Italian, oblivious of decorum, followed him and continued to speak. "And as for the man who advised forming this camp--the Drissa camp," said Paulucci, as the Emperor mounted the steps and noticing Prince Andrew scanned his unfamiliar face, "as to that person, sire..." continued Paulucci, desperately, apparently unable to restrain himself, "the man who advised the Drissa camp--I see no alternative but the lunatic asylum or the gallows!" Without heeding the end of the Italian's remarks, and as though not hearing them, the Emperor, recognizing Bolkonski, addressed him graciously. "I am very glad to see you! Go in there where they are meeting, and wait for me." The Emperor went into the study. He was followed by Prince Peter Mikhaylovich Volkonski and Baron Stein, and the door closed behind them. Prince Andrew, taking advantage of the Emperor's permission, accompanied Paulucci, whom he had known in Turkey, into the drawing room where the council was assembled. Prince Peter Mikhaylovich Volkonski occupied the position, as it were, of chief of the Emperor's staff. He came out of the study into the drawing room with some maps which he spread on a table, and put questions on which he wished to hear the opinion of the gentlemen present. What had happened was that news (which afterwards proved to be false) had been received during the night of a movement by the French to outflank the Drissa camp. The first to speak was General Armfeldt who, to meet the difficulty that presented itself, unexpectedly proposed a perfectly new position away from the Petersburg and Moscow roads. The reason for this was inexplicable (unless he wished to show that he, too, could have an opinion), but he urged that at this point the army should unite and there await the enemy. It was plain that Armfeldt had thought out that plan long ago and now expounded it not so much to answer the questions put--which, in fact, his plan did not answer- as to avail himself of the opportunity to air it. It was one of the millions of proposals, one as good as another, that could be made as long as it was quite unknown what character the war would take. Some disputed his arguments, others defended them. Young Count Toll objected to the Swedish general's views more warmly than anyone else, and in the course of the dispute drew from his side pocket a well-filled notebook, which he asked permission to read to them. In these voluminous notes Toll suggested another scheme, totally different from Armfeldt's or Pfuel's plan of campaign. In answer to Toll, Paulucci suggested an advance and an attack, which, he urged, could alone extricate us from the present uncertainty and from the trap (as he called the Drissa camp) in which we were situated. During all these discussions Pfuel and his interpreter, Wolzogen (his "bridge" in court relations), were silent. Pfuel only snorted contemptuously and turned away, to show that he would never demean himself by replying to such nonsense as he was now hearing. So when Prince Volkonski, who was in the chair, called on him to give his opinion, he merely said: "Why ask me? General Armfeldt has proposed a splendid position with an exposed rear, or why not this Italian gentleman's attack--very fine, or a retreat, also good! Why ask me?" said he. "Why, you yourselves know everything better than I do." But when Volkonski said, with a frown, that it was in the Emperor's name that he asked his opinion, Pfuel rose and, suddenly growing animated, began to speak: "Everything has been spoiled, everything muddled, everybody thought they knew better than I did, and now you come to me! How mend matters? There is nothing to mend! The principles laid down by me must be strictly adhered to," said he, drumming on the table with his bony fingers. "What is the difficulty? Nonsense, childishness!" He went up to the map and speaking rapidly began proving that no eventuality could alter the efficiency of the Drissa camp, that everything had been foreseen, and that if the enemy were really going to outflank it, the enemy would inevitably be destroyed. Paulucci, who did not know German, began questioning him in French. Wolzogen came to the assistance of his chief, who spoke French badly, and began translating for him, hardly able to keep pace with Pfuel, who was rapidly demonstrating that not only all that had happened, but all that could happen, had been foreseen in his scheme, and that if there were now any difficulties the whole fault lay in the fact that his plan had not been precisely executed. He kept laughing sarcastically, he demonstrated, and at last contemptuously ceased to demonstrate, like a mathematician who ceases to prove in various ways the accuracy of a problem that has already been proved. Wolzogen took his place and continued to explain his views in French, every now and then turning to Pfuel and saying, "Is it not so, your excellency?" But Pfuel, like a man heated in a fight who strikes those on his own side, shouted angrily at his own supporter, Wolzogen: "Well, of course, what more is there to explain?" Paulucci and Michaud both attacked Wolzogen simultaneously in French. Armfeldt addressed Pfuel in German. Toll explained to Volkonski in Russian. Prince Andrew listened and observed in silence. Of all these men Prince Andrew sympathized most with Pfuel, angry, determined, and absurdly self-confident as he was. Of all those present, evidently he alone was not seeking anything for himself, nursed no hatred against anyone, and only desired that the plan, formed on a theory arrived at by years of toil, should be carried out. He was ridiculous, and unpleasantly sarcastic, but yet he inspired involuntary respect by his boundless devotion to an idea. Besides this, the remarks of all except Pfuel had one common trait that had not been noticeable at the council of war in 1805: there was now a panic fear of Napoleon's genius, which, though concealed, was noticeable in every rejoinder. Everything was assumed to be possible for Napoleon, they expected him from every side, and invoked his terrible name to shatter each other's proposals. Pfuel alone seemed to consider Napoleon a barbarian like everyone else who opposed his theory. But besides this feeling of respect, Pfuel evoked pity in Prince Andrew. From the tone in which the courtiers addressed him and the way Paulucci had allowed himself to speak of him to the Emperor, but above all from a certain desperation in Pfuel's own expressions, it was clear that the others knew, and Pfuel himself felt, that his fall was at hand. And despite his self-confidence and grumpy German sarcasm he was pitiable, with his hair smoothly brushed on the temples and sticking up in tufts behind. Though he concealed the fact under a show of irritation and contempt, he was evidently in despair that the sole remaining chance of verifying his theory by a huge experiment and proving its soundness to the whole world was slipping away from him. The discussions continued a long time, and the longer they lasted the more heated became the disputes, culminating in shouts and personalities, and the less was it possible to arrive at any general conclusion from all that had been said. Prince Andrew, listening to this polyglot talk and to these surmises, plans, refutations, and shouts, felt nothing but amazement at what they were saying. A thought that had long since and often occurred to him during his military activities--the idea that there is not and cannot be any science of war, and that therefore there can be no such thing as a military genius--now appeared to him an obvious truth. "What theory and science is possible about a matter the conditions and circumstances of which are unknown and cannot be defined, especially when the strength of the acting forces cannot be ascertained? No one was or is able to foresee in what condition our or the enemy's armies will be in a day's time, and no one can gauge the force of this or that detachment. Sometimes--when there is not a coward at the front to shout, 'We are cut off!' and start running, but a brave and jolly lad who shouts, 'Hurrah!'--a detachment of five thousand is worth thirty thousand, as at Schon Grabern, while at times fifty thousand run from eight thousand, as at Austerlitz. What science can there be in a matter in which, as in all practical matters, nothing can be defined and everything depends on innumerable conditions, the significance of which is determined at a particular moment which arrives no one knows when? Armfeldt says our army is cut in half, and Paulucci says we have got the French army between two fires; Michaud says that the worthlessness of the Drissa camp lies in having the river behind it, and Pfuel says that is what constitutes its strength; Toll proposes one plan, Armfeldt another, and they are all good and all bad, and the advantages of any suggestions can be seen only at the moment of trial. And why do they all speak of a 'military genius'? Is a man a genius who can order bread to be brought up at the right time and say who is to go to the right and who to the left? It is only because military men are invested with pomp and power and crowds of sychophants flatter power, attributing to it qualities of genius it does not possess. The best generals I have known were, on the contrary, stupid or absent-minded men. Bagration was the best, Napoleon himself admitted that. And of Bonaparte himself! I remember his limited, self-satisfied face on the field of Austerlitz. Not only does a good army commander not need any special qualities, on the contrary he needs the absence of the highest and best human attributes--love, poetry, tenderness, and philosophic inquiring doubt. He should be limited, firmly convinced that what he is doing is very important (otherwise he will not have sufficient patience), and only then will he be a brave leader. God forbid that he should be humane, should love, or pity, or think of what is just and unjust. It is understandable that a theory of their 'genius' was invented for them long ago because they have power! The success of a military action depends not on them, but on the man in the ranks who shouts, 'We are lost!' or who shouts, 'Hurrah!' And only in the ranks can one serve with assurance of being useful." So thought Prince Andrew as he listened to the talking, and he roused himself only when Paulucci called him and everyone was leaving. At the review next day the Emperor asked Prince Andrew where he would like to serve, and Prince Andrew lost his standing in court circles forever by not asking to remain attached to the sovereign's person, but for permission to serve in the army. CHAPTER XII Before the beginning of the campaign, Rostov had received a letter from his parents in which they told him briefly of Natasha's illness and the breaking off of her engagement to Prince Andrew (which they explained by Natasha's having rejected him) and again asked Nicholas to retire from the army and return home. On receiving this letter, Nicholas did not even make any attempt to get leave of absence or to retire from the army, but wrote to his parents that he was sorry Natasha was ill and her engagement broken off, and that he would do all he could to meet their wishes. To Sonya he wrote separately. "Adored friend of my soul!" he wrote. "Nothing but honor could keep me from returning to the country. But now, at the commencement of the campaign, I should feel dishonored, not only in my comrades' eyes but in my own, if I preferred my own happiness to my love and duty to the Fatherland. But this shall be our last separation. Believe me, directly the war is over, if I am still alive and still loved by you, I will throw up everything and fly to you, to press you forever to my ardent breast." It was, in fact, only the commencement of the campaign that prevented Rostov from returning home as he had promised and marrying Sonya. The autumn in Otradnoe with the hunting, and the winter with the Christmas holidays and Sonya's love, had opened out to him a vista of tranquil rural joys and peace such as he had never known before, and which now allured him. "A splendid wife, children, a good pack of hounds, a dozen leashes of smart borzois, agriculture, neighbors, service by election..." thought he. But now the campaign was beginning, and he had to remain with his regiment. And since it had to be so, Nicholas Rostov, as was natural to him, felt contented with the life he led in the regiment and was able to find pleasure in that life. On his return from his furlough Nicholas, having been joyfully welcomed by his comrades, was sent to obtain remounts and brought back from the Ukraine excellent horses which pleased him and earned him commendation from his commanders. During his absence he had been promoted captain, and when the regiment was put on war footing with an increase in numbers, he was again allotted his old squadron. The campaign began, the regiment was moved into Poland on double pay, new officers arrived, new men and horses, and above all everybody was infected with the merrily excited mood that goes with the commencement of a war, and Rostov, conscious of his advantageous position in the regiment, devoted himself entirely to the pleasures and interests of military service, though he knew that sooner or later he would have to relinquish them. The troops retired from Vilna for various complicated reasons of state, political and strategic. Each step of the retreat was accompanied by a complicated interplay of interests, arguments, and passions at headquarters. For the Pavlograd hussars, however, the whole of this retreat during the finest period of summer and with sufficient supplies was a very simple and agreeable business. It was only at headquarters that there was depression, uneasiness, and intriguing; in the body of the army they did not ask themselves where they were going or why. If they regretted having to retreat, it was only because they had to leave billets they had grown accustomed to, or some pretty young Polish lady. If the thought that things looked bad chanced to enter anyone's head, he tried to be as cheerful as befits a good soldier and not to think of the general trend of affairs, but only of the task nearest to hand. First they camped gaily before Vilna, making acquaintance with the Polish landowners, preparing for reviews and being reviewed by the Emperor and other high commanders. Then came an order to retreat to Sventsyani and destroy any provisions they could not carry away with them. Sventsyani was remembered by the hussars only as the drunken camp, a name the whole army gave to their encampment there, and because many complaints were made against the troops, who, taking advantage of the order to collect provisions, took also horses, carriages, and carpets from the Polish proprietors. Rostov remembered Sventsyani, because on the first day of their arrival at that small town he changed his sergeant major and was unable to manage all the drunken men of his squadron who, unknown to him, had appropriated five barrels of old beer. From Sventsyani they retired farther and farther to Drissa, and thence again beyond Drissa, drawing near to the frontier of Russia proper. On the thirteenth of July the Pavlograds took part in a serious action for the first time. On the twelfth of July, on the eve of that action, there was a heavy storm of rain and hail. In general, the summer of 1812 was remarkable for its storms. The two Pavlograd squadrons were bivouacking on a field of rye, which was already in ear but had been completely trodden down by cattle and horses. The rain was descending in torrents, and Rostov, with a young officer named Ilyin, his protege, was sitting in a hastily constructed shelter. An officer of their regiment, with long mustaches extending onto his cheeks, who after riding to the staff had been overtaken by the rain, entered Rostov's shelter. "I have come from the staff, Count. Have you heard of Raevski's exploit?" And the officer gave them details of the Saltanov battle, which he had heard at the staff. Rostov, smoking his pipe and turning his head about as the water trickled down his neck, listened inattentively, with an occasional glance at Ilyin, who was pressing close to him. This officer, a lad of sixteen who had recently joined the regiment, was now in the same relation to Nicholas that Nicholas had been to Denisov seven years before. Ilyin tried to imitate Rostov in everything and adored him as a girl might have done. Zdrzhinski, the officer with the long mustache, spoke grandiloquently of the Saltanov dam being "a Russian Thermopylae," and of how a deed worthy of antiquity had been performed by General Raevski. He recounted how Raevski had led his two sons onto the dam under terrific fire and had charged with them beside him. Rostov heard the story and not only said nothing to encourage Zdrzhinski's enthusiasm but, on the contrary, looked like a man ashamed of what he was hearing, though with no intention of contradicting it. Since the campaigns of Austerlitz and of 1807 Rostov knew by experience that men always lie when describing military exploits, as he himself had done when recounting them; besides that, he had experience enough to know that nothing happens in war at all as we can imagine or relate it. And so he did not like Zdrzhinski's tale, nor did he like Zdrzhinski himself who, with his mustaches extending over his cheeks, bent low over the face of his hearer, as was his habit, and crowded Rostov in the narrow shanty. Rostov looked at him in silence. "In the first place, there must have been such a confusion and crowding on the dam that was being attacked that if Raevski did lead his sons there, it could have had no effect except perhaps on some dozen men nearest to him," thought he, "the rest could not have seen how or with whom Raevski came onto the dam. And even those who did see it would not have been much stimulated by it, for what had they to do with Raevski's tender paternal feelings when their own skins were in danger? And besides, the fate of the Fatherland did not depend on whether they took the Saltanov dam or not, as we are told was the case at Thermopylae. So why should he have made such a sacrifice? And why expose his own children in the battle? I would not have taken my brother Petya there, or even Ilyin, who's a stranger to me but a nice lad, but would have tried to put them somewhere under cover," Nicholas continued to think, as he listened to Zdrzhinski. But he did not express his thoughts, for in such matters, too, he had gained experience. He knew that this tale redounded to the glory of our arms and so one had to pretend not to doubt it. And he acted accordingly. "I can't stand this any more," said Ilyin, noticing that Rostov did not relish Zdrzhinski's conversation. "My stockings and shirt... and the water is running on my seat! I'll go and look for shelter. The rain seems less heavy." Ilyin went out and Zdrzhinski rode away. Five minutes later Ilyin, splashing through the mud, came running back to the shanty. "Hurrah! Rostov, come quick! I've found it! About two hundred yards away there's a tavern where ours have already gathered. We can at least get dry there, and Mary Hendrikhovna's there." Mary Hendrikhovna was the wife of the regimental doctor, a pretty young German woman he had married in Poland. The doctor, whether from lack of means or because he did not like to part from his young wife in the early days of their marriage, took her about with him wherever the hussar regiment went and his jealousy had become a standing joke among the hussar officers. Rostov threw his cloak over his shoulders, shouted to Lavrushka to follow with the things, and--now slipping in the mud, now splashing right through it--set off with Ilyin in the lessening rain and the darkness that was occasionally rent by distant lightning. "Rostov, where are you?" "Here. What lightning!" they called to one another. CHAPTER XIII In the tavern, before which stood the doctor's covered cart, there were already some five officers. Mary Hendrikhovna, a plump little blonde German, in a dressing jacket and nightcap, was sitting on a broad bench in the front corner. Her husband, the doctor, lay asleep behind her. Rostov and Ilyin, on entering the room, were welcomed with merry shouts and laughter. "Dear me, how jolly we are!" said Rostov laughing. "And why do you stand there gaping?" "What swells they are! Why, the water streams from them! Don't make our drawing room so wet." "Don't mess Mary Hendrikhovna's dress!" cried other voices. Rostov and Ilyin hastened to find a corner where they could change into dry clothes without offending Mary Hendrikhovna's modesty. They were going into a tiny recess behind a partition to change, but found it completely filled by three officers who sat playing cards by the light of a solitary candle on an empty box, and these officers would on no account yield their position. Mary Hendrikhovna obliged them with the loan of a petticoat to be used as a curtain, and behind that screen Rostov and Ilyin, helped by Lavrushka who had brought their kits, changed their wet things for dry ones. A fire was made up in the dilapidated brick stove. A board was found, fixed on two saddles and covered with a horsecloth, a small samovar was produced and a cellaret and half a bottle of rum, and having asked Mary Hendrikhovna to preside, they all crowded round her. One offered her a clean handkerchief to wipe her charming hands, another spread a jacket under her little feet to keep them from the damp, another hung his coat over the window to keep out the draft, and yet another waved the flies off her husband's face, lest he should wake up. "Leave him alone," said Mary Hendrikhovna, smiling timidly and happily. "He is sleeping well as it is, after a sleepless night." "Oh, no, Mary Hendrikhovna," replied the officer, "one must look after the doctor. Perhaps he'll take pity on me someday, when it comes to cutting off a leg or an arm for me." There were only three tumblers, the water was so muddy that one could not make out whether the tea was strong or weak, and the samovar held only six tumblers of water, but this made it all the pleasanter to take turns in order of seniority to receive one's tumbler from Mary Hendrikhovna's plump little hands with their short and not overclean nails. All the officers appeared to be, and really were, in love with her that evening. Even those playing cards behind the partition soon left their game and came over to the samovar, yielding to the general mood of courting Mary Hendrikhovna. She, seeing herself surrounded by such brilliant and polite young men, beamed with satisfaction, try as she might to hide it, and perturbed as she evidently was each time her husband moved in his sleep behind her. There was only one spoon, sugar was more plentiful than anything else, but it took too long to dissolve, so it was decided that Mary Hendrikhovna should stir the sugar for everyone in turn. Rostov received his tumbler, and adding some rum to it asked Mary Hendrikhovna to stir it. "But you take it without sugar?" she said, smiling all the time, as if everything she said and everything the others said was very amusing and had a double meaning. "It is not the sugar I want, but only that your little hand should stir my tea." Mary Hendrikhovna assented and began looking for the spoon which someone meanwhile had pounced on. "Use your finger, Mary Hendrikhovna, it will be still nicer," said Rostov. "Too hot!" she replied, blushing with pleasure. Ilyin put a few drops of rum into the bucket of water and brought it to Mary Hendrikhovna, asking her to stir it with her finger. "This is my cup," said he. "Only dip your finger in it and I'll drink it all up." When they had emptied the samovar, Rostov took a pack of cards and proposed that they should play "Kings" with Mary Hendrikhovna. They drew lots to settle who should make up her set. At Rostov's suggestion it was agreed that whoever became "King" should have the right to kiss Mary Hendrikhovna's hand, and that the "Booby" should go to refill and reheat the samovar for the doctor when the latter awoke. "Well, but supposing Mary Hendrikhovna is 'King'?" asked Ilyin. "As it is, she is Queen, and her word is law!" They had hardly begun to play before the doctor's disheveled head suddenly appeared from behind Mary Hendrikhovna. He had been awake for some time, listening to what was being said, and evidently found nothing entertaining or amusing in what was going on. His face was sad and depressed. Without greeting the officers, he scratched himself and asked to be allowed to pass as they were blocking the way. As soon as he had left the room all the officers burst into loud laughter and Mary Hendrikhovna blushed till her eyes filled with tears and thereby became still more attractive to them. Returning from the yard, the doctor told his wife (who had ceased to smile so happily, and looked at him in alarm, awaiting her sentence) that the rain had ceased and they must go to sleep in their covered cart, or everything in it would be stolen. "But I'll send an orderly.... Two of them!" said Rostov. "What an idea, doctor!" "I'll stand guard on it myself!" said Ilyin. "No, gentlemen, you have had your sleep, but I have not slept for two nights," replied the doctor, and he sat down morosely beside his wife, waiting for the game to end. Seeing his gloomy face as he frowned at his wife, the officers grew still merrier, and some of them could not refrain from laughter, for which they hurriedly sought plausible pretexts. When he had gone, taking his wife with him, and had settled down with her in their covered cart, the officers lay down in the tavern, covering themselves with their wet cloaks, but they did not sleep for a long time; now they exchanged remarks, recalling the doctor's uneasiness and his wife's delight, now they ran out into the porch and reported what was taking place in the covered trap. Several times Rostov, covering his head, tried to go to sleep, but some remark would arouse him and conversation would be resumed, to the accompaniment of unreasoning, merry, childlike laughter. CHAPTER XIV It was nearly three o'clock but no one was yet asleep, when the quartermaster appeared with an order to move on to the little town of Ostrovna. Still laughing and talking, the officers began hurriedly getting ready and again boiled some muddy water in the samovar. But Rostov went off to his squadron without waiting for tea. Day was breaking, the rain had ceased, and the clouds were dispersing. It felt damp and cold, especially in clothes that were still moist. As they left the tavern in the twilight of the dawn, Rostov and Ilyin both glanced under the wet and glistening leather hood of the doctor's cart, from under the apron of which his feet were sticking out, and in the middle of which his wife's nightcap was visible and her sleepy breathing audible. "She really is a dear little thing," said Rostov to Ilyin, who was following him. "A charming woman!" said Ilyin, with all the gravity of a boy of sixteen. Half an hour later the squadron was lined up on the road. The command was heard to "mount" and the soldiers crossed themselves and mounted. Rostov riding in front gave the order "Forward!" and the hussars, with clanking sabers and subdued talk, their horses' hoofs splashing in the mud, defiled in fours and moved along the broad road planted with birch trees on each side, following the infantry and a battery that had gone on in front. Tattered, blue-purple clouds, reddening in the east, were scudding before the wind. It was growing lighter and lighter. That curly grass which always grows by country roadsides became clearly visible, still wet with the night's rain; the drooping branches of the birches, also wet, swayed in the wind and flung down bright drops of water to one side. The soldiers' faces were more and more clearly visible. Rostov, always closely followed by Ilyin, rode along the side of the road between two rows of birch trees. When campaigning, Rostov allowed himself the indulgence of riding not a regimental but a Cossack horse. A judge of horses and a sportsman, he had lately procured himself a large, fine, mettlesome, Donets horse, dun-colored, with light mane and tail, and when he rode it no one could outgallop him. To ride this horse was a pleasure to him, and he thought of the horse, of the morning, of the doctor's wife, but not once of the impending danger. Formerly, when going into action, Rostov had felt afraid; now he had not the least feeling of fear. He was fearless, not because he had grown used to being under fire (one cannot grow used to danger), but because he had learned how to manage his thoughts when in danger. He had grown accustomed when going into action to think about anything but what would seem most likely to interest him--the impending danger. During the first period of his service, hard as he tried and much as he reproached himself with cowardice, he had not been able to do this, but with time it had come of itself. Now he rode beside Ilyin under the birch trees, occasionally plucking leaves from a branch that met his hand, sometimes touching his horse's side with his foot, or, without turning round, handing a pipe he had finished to an hussar riding behind him, with as calm and careless an air as though he were merely out for a ride. He glanced with pity at the excited face of Ilyin, who talked much and in great agitation. He knew from experience the tormenting expectation of terror and death the cornet was suffering and knew that only time could help him. As soon as the sun appeared in a clear strip of sky beneath the clouds, the wind fell, as if it dared not spoil the beauty of the summer morning after the storm; drops still continued to fall, but vertically now, and all was still. The whole sun appeared on the horizon and disappeared behind a long narrow cloud that hung above it. A few minutes later it reappeared brighter still from behind the top of the cloud, tearing its edge. Everything grew bright and glittered. And with that light, and as if in reply to it, came the sound of guns ahead of them. Before Rostov had had time to consider and determine the distance of that firing, Count Ostermann-Tolstoy's adjutant came galloping from Vitebsk with orders to advance at a trot along the road. The squadron overtook and passed the infantry and the battery--which had also quickened their pace--rode down a hill, and passing through an empty and deserted village again ascended. The horses began to lather and the men to flush. "Halt! Dress your ranks!" the order of the regimental commander was heard ahead. "Forward by the left. Walk, march!" came the order from in front. And the hussars, passing along the line of troops on the left flank of our position, halted behind our Uhlans who were in the front line. To the right stood our infantry in a dense column: they were the reserve. Higher up the hill, on the very horizon, our guns were visible through the wonderfully clear air, brightly illuminated by slanting morning sunbeams. In front, beyond a hollow dale, could be seen the enemy's columns and guns. Our advanced line, already in action, could be heard briskly exchanging shots with the enemy in the dale. At these sounds, long unheard, Rostov's spirits rose, as at the strains of the merriest music. Trap-ta-ta-tap! cracked the shots, now together, now several quickly one after another. Again all was silent and then again it sounded as if someone were walking on detonators and exploding them. The hussars remained in the same place for about an hour. A cannonade began. Count Ostermann with his suite rode up behind the squadron, halted, spoke to the commander of the regiment, and rode up the hill to the guns. After Ostermann had gone, a command rang out to the Uhlans. "Form column! Prepare to charge!" The infantry in front of them parted into platoons to allow the cavalry to pass. The Uhlans started, the streamers on their spears fluttering, and trotted downhill toward the French cavalry which was seen below to the left. As soon as the Uhlans descended the hill, the hussars were ordered up the hill to support the battery. As they took the places vacated by the Uhlans, bullets came from the front, whining and whistling, but fell spent without taking effect. The sounds, which he had not heard for so long, had an even more pleasurable and exhilarating effect on Rostov than the previous sounds of firing. Drawing himself up, he viewed the field of battle opening out before him from the hill, and with his whole soul followed the movement of the Uhlans. They swooped down close to the French dragoons, something confused happened there amid the smoke, and five minutes later our Uhlans were galloping back, not to the place they had occupied but more to the left, and among the orange-colored Uhlans on chestnut horses and behind them, in a large group, blue French dragoons on gray horses could be seen. CHAPTER XV Rostov, with his keen sportsman's eye, was one of the first to catch sight of these blue French dragoons pursuing our Uhlans. Nearer and nearer in disorderly crowds came the Uhlans and the French dragoons pursuing them. He could already see how these men, who looked so small at the foot of the hill, jostled and overtook one another, waving their arms and their sabers in the air. Rostov gazed at what was happening before him as at a hunt. He felt instinctively that if the hussars struck at the French dragoons now, the latter could not withstand them, but if a charge was to be made it must be done now, at that very moment, or it would be too late. He looked around. A captain, standing beside him, was gazing like himself with eyes fixed on the cavalry below them. "Andrew Sevastyanych!" said Rostov. "You know, we could crush them...." "A fine thing too!" replied the captain, "and really..." Rostov, without waiting to hear him out, touched his horse, galloped to the front of his squadron, and before he had time to finish giving the word of command, the whole squadron, sharing his feeling, was following him. Rostov himself did not know how or why he did it. He acted as he did when hunting, without reflecting or considering. He saw the dragoons near and that they were galloping in disorder; he knew they could not withstand an attack--knew there was only that moment and that if he let it slip it would not return. The bullets were whining and whistling so stimulatingly around him and his horse was so eager to go that he could not restrain himself. He touched his horse, gave the word of command, and immediately, hearing behind him the tramp of the horses of his deployed squadron, rode at full trot downhill toward the dragoons. Hardly had they reached the bottom of the hill before their pace instinctively changed to a gallop, which grew faster and faster as they drew nearer to our Uhlans and the French dragoons who galloped after them. The dragoons were now close at hand. On seeing the hussars, the foremost began to turn, while those behind began to halt. With the same feeling with which he had galloped across the path of a wolf, Rostov gave rein to his Donets horse and galloped to intersect the path of the dragoons' disordered lines. One Uhlan stopped, another who was on foot flung himself to the ground to avoid being knocked over, and a riderless horse fell in among the hussars. Nearly all the French dragoons were galloping back. Rostov, picking out one on a gray horse, dashed after him. On the way he came upon a bush, his gallant horse cleared it, and almost before he had righted himself in his saddle he saw that he would immediately overtake the enemy he had selected. That Frenchman, by his uniform an officer, was going at a gallop, crouching on his gray horse and urging it on with his saber. In another moment Rostov's horse dashed its breast against the hindquarters of the officer's horse, almost knocking it over, and at the same instant Rostov, without knowing why, raised his saber and struck the Frenchman with it. The instant he had done this, all Rostov's animation vanished. The officer fell, not so much from the blow--which had but slightly cut his arm above the elbow--as from the shock to his horse and from fright. Rostov reined in his horse, and his eyes sought his foe to see whom he had vanquished. The French dragoon officer was hopping with one foot on the ground, the other being caught in the stirrup. His eyes, screwed up with fear as if he every moment expected another blow, gazed up at Rostov with shrinking terror. His pale and mud-stained face--fair and young, with a dimple in the chin and light-blue eyes--was not an enemy's face at all suited to a battlefield, but a most ordinary, homelike face. Before Rostov had decided what to do with him, the officer cried, "I surrender!" He hurriedly but vainly tried to get his foot out of the stirrup and did not remove his frightened blue eyes from Rostov's face. Some hussars who galloped up disengaged his foot and helped him into the saddle. On all sides, the hussars were busy with the dragoons; one was wounded, but though his face was bleeding, he would not give up his horse; another was perched up behind an hussar with his arms round him; a third was being helped by an hussar to mount his horse. In front, the French infantry were firing as they ran. The hussars galloped hastily back with their prisoners. Rostov galloped back with the rest, aware of an unpleasant feeling of depression in his heart. Something vague and confused, which he could not at all account for, had come over him with the capture of that officer and the blow he had dealt him. Count Ostermann-Tolstoy met the returning hussars, sent for Rostov, thanked him, and said he would report his gallant deed to the Emperor and would recommend him for a St. George's Cross. When sent for by Count Ostermann, Rostov, remembering that he had charged without orders, felt sure his commander was sending for him to punish him for breach of discipline. Ostermann's flattering words and promise of a reward should therefore have struck him all the more pleasantly, but he still felt that same vaguely disagreeable feeling of moral nausea. "But what on earth is worrying me?" he asked himself as he rode back from the general. "Ilyin? No, he's safe. Have I disgraced myself in any way? No, that's not it." Something else, resembling remorse, tormented him. "Yes, oh yes, that French officer with the dimple. And I remember how my arm paused when I raised it." Rostov saw the prisoners being led away and galloped after them to have a look at his Frenchman with the dimple on his chin. He was sitting in his foreign uniform on an hussar packhorse and looked anxiously about him; The sword cut on his arm could scarcely be called a wound. He glanced at Rostov with a feigned smile and waved his hand in greeting. Rostov still had the same indefinite feeling, as of shame. All that day and the next his friends and comrades noticed that Rostov, without being dull or angry, was silent, thoughtful, and preoccupied. He drank reluctantly, tried to remain alone, and kept turning something over in his mind. Rostov was always thinking about that brilliant exploit of his, which to his amazement had gained him the St. George's Cross and even given him a reputation for bravery, and there was something he could not at all understand. "So others are even more afraid than I am!" he thought. "So that's all there is in what is called heroism! And heroism! And did I do it for my country's sake? And how was he to blame, with his dimple and blue eyes? And how frightened he was! He thought that I should kill him. Why should I kill him? My hand trembled. And they have given me a St. George's Cross.... I can't make it out at all." But while Nicholas was considering these questions and still could reach no clear solution of what puzzled him so, the wheel of fortune in the service, as often happens, turned in his favor. After the affair at Ostrovna he was brought into notice, received command of an hussar battalion, and when a brave officer was needed he was chosen. CHAPTER XVI On receiving news of Natasha's illness, the countess, though not quite well yet and still weak, went to Moscow with Petya and the rest of the household, and the whole family moved from Marya Dmitrievna's house to their own and settled down in town. Natasha's illness was so serious that, fortunately for her and for her parents, the consideration of all that had caused the illness, her conduct and the breaking off of her engagement, receded into the background. She was so ill that it was impossible for them to consider in how far she was to blame for what had happened. She could not eat or sleep, grew visibly thinner, coughed, and, as the doctors made them feel, was in danger. They could not think of anything but how to help her. Doctors came to see her singly and in consultation, talked much in French, German, and Latin, blamed one another, and prescribed a great variety of medicines for all the diseases known to them, but the simple idea never occurred to any of them that they could not know the disease Natasha was suffering from, as no disease suffered by a live man can be known, for every living person has his own peculiarities and always has his own peculiar, personal, novel, complicated disease, unknown to medicine--not a disease of the lungs, liver, skin, heart, nerves, and so on mentioned in medical books, but a disease consisting of one of the innumerable combinations of the maladies of those organs. This simple thought could not occur to the doctors (as it cannot occur to a wizard that he is unable to work his charms) because the business of their lives was to cure, and they received money for it and had spent the best years of their lives on that business. But, above all, that thought was kept out of their minds by the fact that they saw they were really useful, as in fact they were to the whole Rostov family. Their usefulness did not depend on making the patient swallow substances for the most part harmful (the harm was scarcely perceptible, as they were given in small doses), but they were useful, necessary, and indispensable because they satisfied a mental need of the invalid and of those who loved her--and that is why there are, and always will be, pseudo-healers, wise women, homeopaths, and allopaths. They satisfied that eternal human need for hope of relief, for sympathy, and that something should be done, which is felt by those who are suffering. They satisfied the need seen in its most elementary form in a child, when it wants to have a place rubbed that has been hurt. A child knocks itself and runs at once to the arms of its mother or nurse to have the aching spot rubbed or kissed, and it feels better when this is done. The child cannot believe that the strongest and wisest of its people have no remedy for its pain, and the hope of relief and the expression of its mother's sympathy while she rubs the bump comforts it. The doctors were of use to Natasha because they kissed and rubbed her bump, assuring her that it would soon pass if only the coachman went to the chemist's in the Arbat and got a powder and some pills in a pretty box of a ruble and seventy kopeks, and if she took those powders in boiled water at intervals of precisely two hours, neither more nor less. What would Sonya and the count and countess have done, how would they have looked, if nothing had been done, if there had not been those pills to give by the clock, the warm drinks, the chicken cutlets, and all the other details of life ordered by the doctors, the carrying out of which supplied an occupation and consolation to the family circle? How would the count have borne his dearly loved daughter's illness had he not known that it was costing him a thousand rubles, and that he would not grudge thousands more to benefit her, or had he not known that if her illness continued he would not grudge yet other thousands and would take her abroad for consultations there, and had he not been able to explain the details of how Metivier and Feller had not understood the symptoms, but Frise had, and Mudrov had diagnosed them even better? What would the countess have done had she not been able sometimes to scold the invalid for not strictly obeying the doctor's orders? "You'll never get well like that," she would say, forgetting her grief in her vexation, "if you won't obey the doctor and take your medicine at the right time! You mustn't trifle with it, you know, or it may turn to pneumonia," she would go on, deriving much comfort from the utterance of that foreign word, incomprehensible to others as well as to herself. What would Sonya have done without the glad consciousness that she had not undressed during the first three nights, in order to be ready to carry out all the doctor's injunctions with precision, and that she still kept awake at night so as not to miss the proper time when the slightly harmful pills in the little gilt box had to be administered? Even to Natasha herself it was pleasant to see that so many sacrifices were being made for her sake, and to know that she had to take medicine at certain hours, though she declared that no medicine would cure her and that it was all nonsense. And it was even pleasant to be able to show, by disregarding the orders, that she did not believe in medical treatment and did not value her life. The doctor came every day, felt her pulse, looked at her tongue, and regardless of her grief-stricken face joked with her. But when he had gone into another room, to which the countess hurriedly followed him, he assumed a grave air and thoughtfully shaking his head said that though there was danger, he had hopes of the effect of this last medicine and one must wait and see, that the malady was chiefly mental, but... And the countess, trying to conceal the action from herself and from him, slipped a gold coin into his hand and always returned to the patient with a more tranquil mind. The symptoms of Natasha's illness were that she ate little, slept little, coughed, and was always low-spirited. The doctors said that she could not get on without medical treatment, so they kept her in the stifling atmosphere of the town, and the Rostovs did not move to the country that summer of 1812. In spite of the many pills she swallowed and the drops and powders out of the little bottles and boxes of which Madame Schoss who was fond of such things made a large collection, and in spite of being deprived of the country life to which she was accustomed, youth prevailed. Natasha's grief began to be overlaid by the impressions of daily life, it ceased to press so painfully on her heart, it gradually faded into the past, and she began to recover physically. CHAPTER XVII Natasha was calmer but no happier. She not merely avoided all external forms of pleasure--balls, promenades, concerts, and theaters- but she never laughed without a sound of tears in her laughter. She could not sing. As soon as she began to laugh, or tried to sing by herself, tears choked her: tears of remorse, tears at the recollection of those pure times which could never return, tears of vexation that she should so uselessly have ruined her young life which might have been so happy. Laughter and singing in particular seemed to her like a blasphemy, in face of her sorrow. Without any need of self-restraint, no wish to coquet ever entered her head. She said and felt at that time that no man was more to her than Nastasya Ivanovna, the buffoon. Something stood sentinel within her and forbade her every joy. Besides, she had lost all the old interests of her carefree girlish life that had been so full of hope. The previous autumn, the hunting, "Uncle," and the Christmas holidays spent with Nicholas at Otradnoe were what she recalled oftenest and most painfully. What would she not have given to bring back even a single day of that time! But it was gone forever. Her presentiment at the time had not deceived her--that that state of freedom and readiness for any enjoyment would not return again. Yet it was necessary to live on. It comforted her to reflect that she was not better as she had formerly imagined, but worse, much worse, than anybody else in the world. But this was not enough. She knew that, and asked herself, "What next?" But there was nothing to come. There was no joy in life, yet life was passing. Natasha apparently tried not to be a burden or a hindrance to anyone, but wanted nothing for herself. She kept away from everyone in the house and felt at ease only with her brother Petya. She liked to be with him better than with the others, and when alone with him she sometimes laughed. She hardly ever left the house and of those who came to see them was glad to see only one person, Pierre. It would have been impossible to treat her with more delicacy, greater care, and at the same time more seriously than did Count Bezukhov. Natasha unconsciously felt this delicacy and so found great pleasure in his society. But she was not even grateful to him for it; nothing good on Pierre's part seemed to her to be an effort, it seemed so natural for him to be kind to everyone that there was no merit in his kindness. Sometimes Natasha noticed embarrassment and awkwardness on his part in her presence, especially when he wanted to do something to please her, or feared that something they spoke of would awaken memories distressing to her. She noticed this and attributed it to his general kindness and shyness, which she imagined must be the same toward everyone as it was to her. After those involuntary words--that if he were free he would have asked on his knees for her hand and her love--uttered at a moment when she was so strongly agitated, Pierre never spoke to Natasha of his feelings; and it seemed plain to her that those words, which had then so comforted her, were spoken as all sorts of meaningless words are spoken to comfort a crying child. It was not because Pierre was a married man, but because Natasha felt very strongly with him that moral barrier the absence of which she had experienced with Kuragin that it never entered her head that the relations between him and herself could lead to love on her part, still less on his, or even to the kind of tender, self-conscious, romantic friendship between a man and a woman of which she had known several instances. Before the end of the fast of St. Peter, Agrafena Ivanovna Belova, a country neighbor of the Rostovs, came to Moscow to pay her devotions at the shrines of the Moscow saints. She suggested that Natasha should fast and prepare for Holy Communion, and Natasha gladly welcomed the idea. Despite the doctor's orders that she should not go out early in the morning, Natasha insisted on fasting and preparing for the sacrament, not as they generally prepared for it in the Rostov family by attending three services in their own house, but as Agrafena Ivanovna did, by going to church every day for a week and not once missing Vespers, Matins, or Mass. The countess was pleased with Natasha's zeal; after the poor results of the medical treatment, in the depths of her heart she hoped that prayer might help her daughter more than medicines and, though not without fear and concealing it from the doctor, she agreed to Natasha's wish and entrusted her to Belova. Agrafena Ivanovna used to come to wake Natasha at three in the morning, but generally found her already awake. She was afraid of being late for Matins. Hastily washing, and meekly putting on her shabbiest dress and an old mantilla, Natasha, shivering in the fresh air, went out into the deserted streets lit by the clear light of dawn. By Agrafena Ivanovna's advice Natasha prepared herself not in their own parish, but at a church where, according to the devout Agrafena Ivanovna, the priest was a man of very severe and lofty life. There were never many people in the church; Natasha always stood beside Belova in the customary place before an icon of the Blessed Virgin, let into the screen before the choir on the left side, and a feeling, new to her, of humility before something great and incomprehensible, seized her when at that unusual morning hour, gazing at the dark face of the Virgin illuminated by the candles burning before it and by the morning light falling from the window, she listened to the words of the service which she tried to follow with understanding. When she understood them her personal feeling became interwoven in the prayers with shades of its own. When she did not understand, it was sweeter still to think that the wish to understand everything is pride, that it is impossible to understand all, that it is only necessary to believe and to commit oneself to God, whom she felt guiding her soul at those moments. She crossed herself, bowed low, and when she did not understand, in horror at her own vileness, simply asked God to forgive her everything, everything, to have mercy upon her. The prayers to which she surrendered herself most of all were those of repentance. On her way home at an early hour when she met no one but bricklayers going to work or men sweeping the street, and everybody within the houses was still asleep, Natasha experienced a feeling new to her, a sense of the possibility of correcting her faults, the possibility of a new, clean life, and of happiness. During the whole week she spent in this way, that feeling grew every day. And the happiness of taking communion, or "communing" as Agrafena Ivanovna, joyously playing with the word, called it, seemed to Natasha so great that she felt she should never live till that blessed Sunday. But the happy day came, and on that memorable Sunday, when, dressed in white muslin, she returned home after communion, for the first time for many months she felt calm and not oppressed by the thought of the life that lay before her. The doctor who came to see her that day ordered her to continue the powders he had prescribed a fortnight previously. "She must certainly go on taking them morning and evening," said he, evidently sincerely satisfied with his success. "Only, please be particular about it. "Be quite easy," he continued playfully, as he adroitly took the gold coin in his palm. "She will soon be singing and frolicking about. The last medicine has done her a very great deal of good. She has freshened up very much." The countess, with a cheerful expression on her face, looked down at her nails and spat a little for luck as she returned to the drawing room. CHAPTER XVIII At the beginning of July more and more disquieting reports about the war began to spread in Moscow; people spoke of an appeal by the Emperor to the people, and of his coming himself from the army to Moscow. And as up to the eleventh of July no manifesto or appeal had been received, exaggerated reports became current about them and about the position of Russia. It was said that the Emperor was leaving the army because it was in danger, it was said that Smolensk had surrendered, that Napoleon had an army of a million and only a miracle could save Russia. On the eleventh of July, which was Saturday, the manifesto was received but was not yet in print, and Pierre, who was at the Rostovs', promised to come to dinner next day, Sunday, and bring a copy of the manifesto and appeal, which he would obtain from Count Rostopchin. That Sunday, the Rostovs went to Mass at the Razumovskis' private chapel as usual. It was a hot July day. Even at ten o'clock, when the Rostovs got out of their carriage at the chapel, the sultry air, the shouts of hawkers, the light and gay summer clothes of the crowd, the dusty leaves of the trees on the boulevard, the sounds of the band and the white trousers of a battalion marching to parade, the rattling of wheels on the cobblestones, and the brilliant, hot sunshine were all full of that summer languor, that content and discontent with the present, which is most strongly felt on a bright, hot day in town. All the Moscow notabilities, all the Rostovs' acquaintances, were at the Razumovskis' chapel, for, as if expecting something to happen, many wealthy families who usually left town for their country estates had not gone away that summer. As Natasha, at her mother's side, passed through the crowd behind a liveried footman who cleared the way for them, she heard a young man speaking about her in too loud a whisper. "That's Rostova, the one who..." "She's much thinner, but all the same she's pretty!" She heard, or thought she heard, the names of Kuragin and Bolkonski. But she was always imagining that. It always seemed to her that everyone who looked at her was thinking only of what had happened to her. With a sinking heart, wretched as she always was now when she found herself in a crowd, Natasha in her lilac silk dress trimmed with black lace walked--as women can walk--with the more repose and stateliness the greater the pain and shame in her soul. She knew for certain that she was pretty, but this no longer gave her satisfaction as it used to. On the contrary it tormented her more than anything else of late, and particularly so on this bright, hot summer day in town. "It's Sunday again--another week past," she thought, recalling that she had been here the Sunday before, "and always the same life that is no life, and the same surroundings in which it used to be so easy to live. I'm pretty, I'm young, and I know that now I am good. I used to be bad, but now I know I am good," she thought, "but yet my best years are slipping by and are no good to anyone." She stood by her mother's side and exchanged nods with acquaintances near her. From habit she scrutinized the ladies' dresses, condemned the bearing of a lady standing close by who was not crossing herself properly but in a cramped manner, and again she thought with vexation that she was herself being judged and was judging others, and suddenly, at the sound of the service, she felt horrified at her own vileness, horrified that the former purity of her soul was again lost to her. A comely, fresh-looking old man was conducting the service with that mild solemnity which has so elevating and soothing an effect on the souls of the worshipers. The gates of the sanctuary screen were closed, the curtain was slowly drawn, and from behind it a soft mysterious voice pronounced some words. Tears, the cause of which she herself did not understand, made Natasha's breast heave, and a joyous but oppressive feeling agitated her. "Teach me what I should do, how to live my life, how I may grow good forever, forever!" she pleaded. The deacon came out onto the raised space before the altar screen and, holding his thumb extended, drew his long hair from under his dalmatic and, making the sign of the cross on his breast, began in a loud and solemn voice to recite the words of the prayer... "In peace let us pray unto the Lord." "As one community, without distinction of class, without enmity, united by brotherly love--let us pray!" thought Natasha. "For the peace that is from above, and for the salvation of our souls." "For the world of angels and all the spirits who dwell above us," prayed Natasha. When they prayed for the warriors, she thought of her brother and Denisov. When they prayed for all traveling by land and sea, she remembered Prince Andrew, prayed for him, and asked God to forgive her all the wrongs she had done him. When they prayed for those who love us, she prayed for the members of her own family, her father and mother and Sonya, realizing for the first time how wrongly she had acted toward them, and feeling all the strength of her love for them. When they prayed for those who hate us, she tried to think of her enemies and people who hated her, in order to pray for them. She included among her enemies the creditors and all who had business dealings with her father, and always at the thought of enemies and those who hated her she remembered Anatole who had done her so much harm--and though he did not hate her she gladly prayed for him as for an enemy. Only at prayer did she feel able to think clearly and calmly of Prince Andrew and Anatole, as men for whom her feelings were as nothing compared with her awe and devotion to God. When they prayed for the Imperial family and the Synod, she bowed very low and made the sign of the cross, saying to herself that even if she did not understand, still she could not doubt, and at any rate loved the governing Synod and prayed for it. When he had finished the Litany the deacon crossed the stole over his breast and said, "Let us commit ourselves and our whole lives to Christ the Lord!" "Commit ourselves to God," Natasha inwardly repeated. "Lord God, I submit myself to Thy will!" she thought. "I want nothing, wish for nothing; teach me what to do and how to use my will! Take me, take me!" prayed Natasha, with impatient emotion in her heart, not crossing herself but letting her slender arms hang down as if expecting some invisible power at any moment to take her and deliver her from herself, from her regrets, desires, remorse, hopes, and sins. The countess looked round several times at her daughter's softened face and shining eyes and prayed God to help her. Unexpectedly, in the middle of the service, and not in the usual order Natasha knew so well, the deacon brought out a small stool, the one he knelt on when praying on Trinity Sunday, and placed it before the doors of the sanctuary screen. The priest came out with his purple velvet biretta on his head, adjusted his hair, and knelt down with an effort. Everybody followed his example and they looked at one another in surprise. Then came the prayer just received from the Synod--a prayer for the deliverance of Russia from hostile invasion. "Lord God of might, God of our salvation!" began the priest in that voice, clear, not grandiloquent but mild, in which only the Slav clergy read and which acts so irresistibly on a Russian heart. "Lord God of might, God of our salvation! Look this day in mercy and blessing on Thy humble people, and graciously hear us, spare us, and have mercy upon us! This foe confounding Thy land, desiring to lay waste the whole world, rises against us; these lawless men are gathered together to overthrow Thy kingdom, to destroy Thy dear Jerusalem, Thy beloved Russia; to defile Thy temples, to overthrow Thine altars, and to desecrate our holy shrines. How long, O Lord, how long shall the wicked triumph? How long shall they wield unlawful power? "Lord God! Hear us when we pray to Thee; strengthen with Thy might our most gracious sovereign lord, the Emperor Alexander Pavlovich; be mindful of his uprightness and meekness, reward him according to his righteousness, and let it preserve us, Thy chosen Israel! Bless his counsels, his undertakings, and his work; strengthen his kingdom by Thine almighty hand, and give him victory over his enemy, even as Thou gavest Moses the victory over Amalek, Gideon over Midian, and David over Goliath. Preserve his army, put a bow of brass in the hands of those who have armed themselves in Thy Name, and gird their loins with strength for the fight. Take up the spear and shield and arise to help us; confound and put to shame those who have devised evil against us, may they be before the faces of Thy faithful warriors as dust before the wind, and may Thy mighty Angel confound them and put them to flight; may they be ensnared when they know it not, and may the plots they have laid in secret be turned against them; let them fall before Thy servants' feet and be laid low by our hosts! Lord, Thou art able to save both great and small; Thou art God, and man cannot prevail against Thee! "God of our fathers! Remember Thy bounteous mercy and loving-kindness which are from of old; turn not Thy face from us, but be gracious to our unworthiness, and in Thy great goodness and Thy many mercies regard not our transgressions and iniquities! Create in us a clean heart and renew a right spirit within us, strengthen us all in Thy faith, fortify our hope, inspire us with true love one for another, arm us with unity of spirit in the righteous defense of the heritage Thou gavest to us and to our fathers, and let not the scepter of the wicked be exalted against the destiny of those Thou hast sanctified. "O Lord our God, in whom we believe and in whom we put our trust, let us not be confounded in our hope of Thy mercy, and give us a token of Thy blessing, that those who hate us and our Orthodox faith may see it and be put to shame and perish, and may all the nations know that Thou art the Lord and we are Thy people. Show Thy mercy upon us this day, O Lord, and grant us Thy salvation; make the hearts of Thy servants to rejoice in Thy mercy; smite down our enemies and destroy them swiftly beneath the feet of Thy faithful servants! For Thou art the defense, the succor, and the victory of them that put their trust in Thee, and to Thee be all glory, to Father, Son, and Holy Ghost, now and forever, world without end. Amen." In Natasha's receptive condition of soul this prayer affected her strongly. She listened to every word about the victory of Moses over Amalek, of Gideon over Midian, and of David over Goliath, and about the destruction of "Thy Jerusalem," and she prayed to God with the tenderness and emotion with which her heart was overflowing, but without fully understanding what she was asking of God in that prayer. She shared with all her heart in the prayer for the spirit of righteousness, for the strengthening of the heart by faith and hope, and its animation by love. But she could not pray that her enemies might be trampled under foot when but a few minutes before she had been wishing she had more of them that she might pray for them. But neither could she doubt the righteousness of the prayer that was being read on bended knees. She felt in her heart a devout and tremulous awe at the thought of the punishment that overtakes men for their sins, and especially of her own sins, and she prayed to God to forgive them all, and her too, and to give them all, and her too, peace and happiness. And it seemed to her that God heard her prayer. CHAPTER XIX From the day when Pierre, after leaving the Rostovs' with Natasha's grateful look fresh in his mind, had gazed at the comet that seemed to be fixed in the sky and felt that something new was appearing on his own horizon--from that day the problem of the vanity and uselessness of all earthly things, that had incessantly tormented him, no longer presented itself. That terrible question "Why?" "Wherefore?" which had come to him amid every occupation, was now replaced, not by another question or by a reply to the former question, but by her image. When he listened to, or himself took part in, trivial conversations, when he read or heard of human baseness or folly, he was not horrified as formerly, and did not ask himself why men struggled so about these things when all is so transient and incomprehensible--but he remembered her as he had last seen her, and all his doubts vanished--not because she had answered the questions that had haunted him, but because his conception of her transferred him instantly to another, a brighter, realm of spiritual activity in which no one could be justified or guilty--a realm of beauty and love which it was worth living for. Whatever worldly baseness presented itself to him, he said to himself: "Well, supposing N. N. swindled the country and the Tsar, and the country and the Tsar confer honors upon him, what does that matter? She smiled at me yesterday and asked me to come again, and I love her, and no one will ever know it." And his soul felt calm and peaceful. Pierre still went into society, drank as much and led the same idle and dissipated life, because besides the hours he spent at the Rostovs' there were other hours he had to spend somehow, and the habits and acquaintances he had made in Moscow formed a current that bore him along irresistibly. But latterly, when more and more disquieting reports came from the seat of war and Natasha's health began to improve and she no longer aroused in him the former feeling of careful pity, an ever-increasing restlessness, which he could not explain, took possession of him. He felt that the condition he was in could not continue long, that a catastrophe was coming which would change his whole life, and he impatiently sought everywhere for signs of that approaching catastrophe. One of his brother Masons had revealed to Pierre the following prophecy concerning Napoleon, drawn from the Revelation of St. John. In chapter 13, verse 18, of the Apocalypse, it is said: Here is wisdom. Let him that hath understanding count the number of the beast: for it is the number of a man; and his number is Six hundred threescore and six. And in the fifth verse of the same chapter: And there was given unto him a mouth speaking great things and blasphemies; and power was given unto him to continue forty and two months. The French alphabet, written out with the same numerical values as the Hebrew, in which the first nine letters denote units and the others tens, will have the following significance: a b c d e f g h i k 1 2 3 4 5 6 7 8 9 10 l m n o p q r s 20 30 40 50 60 70 80 90 t u v w x y 100 110 120 130 140 150 z 160 Writing the words L'Empereur Napoleon in numbers, it appears that the sum of them is 666, and that Napoleon therefore the beast foretold in the Apocalypse. Moreover, by applying the same system to the words quarante-deux,* which was the term allowed to the beast that "spoke great things and blasphemies," the same number 666 was obtained; from which it followed that the limit fixed for Napoleon's power had come in the year 1812 when the French emperor was forty-two. This prophecy pleased Pierre very much and he often asked himself what would put an end to the power of the beast, that is, of Napoleon, and tried by the same system of using letters as numbers and adding them up, to find an answer to the question that engrossed him. He wrote the words L'Empereur Alexandre, La nation russe and added up their numbers, but the sums were either more or less than 666. Once when making such calculations he wrote down his own name in French, Comte Pierre Besouhoff, but the sum of the numbers did not come right. Then he changed the spelling, substituting a z for the s and adding de and the article le, still without obtaining the desired result. Then it occurred to him: if the answer to the question were contained in his name, his nationality would also be given in the answer. So he wrote Le russe Besuhof and adding up the numbers got 671. This was only five too much, and five was represented by e, the very letter elided from the article le before the word Empereur. By omitting the e, though incorrectly, Pierre got the answer he sought. L'russe Besuhof made 666. This discovery excited him. How, or by what means, he was connected with the great event foretold in the Apocalypse he did not know, but he did not doubt that connection for a moment. His love for Natasha, Antichrist, Napoleon, the invasion, the comet, 666, L'Empereur Napoleon, and L'russe Besuhof--all this had to mature and culminate, to lift him out of that spellbound, petty sphere of Moscow habits in which he felt himself held captive and lead him to a great achievement and great happiness. *Forty-two. On the eve of the Sunday when the special prayer was read, Pierre had promised the Rostovs to bring them, from Count Rostopchin whom he knew well, both the appeal to the people and the news from the army. In the morning, when he went to call at Rostopchin's he met there a courier fresh from the army, an acquaintance of his own, who often danced at Moscow balls. "Do, please, for heaven's sake, relieve me of something!" said the courier. "I have a sackful of letters to parents." Among these letters was one from Nicholas Rostov to his father. Pierre took that letter, and Rostopchin also gave him the Emperor's appeal to Moscow, which had just been printed, the last army orders, and his own most recent bulletin. Glancing through the army orders, Pierre found in one of them, in the lists of killed, wounded, and rewarded, the name of Nicholas Rostov, awarded a St. George's Cross of the Fourth Class for courage shown in the Ostrovna affair, and in the same order the name of Prince Andrew Bolkonski, appointed to the command of a regiment of Chasseurs. Though he did not want to remind the Rostovs of Bolkonski, Pierre could not refrain from making them happy by the news of their son's having received a decoration, so he sent that printed army order and Nicholas' letter to the Rostovs, keeping the appeal, the bulletin, and the other orders to take with him when he went to dinner. His conversation with Count Rostopchin and the latter's tone of anxious hurry, the meeting with the courier who talked casually of how badly things were going in the army, the rumors of the discovery of spies in Moscow and of a leaflet in circulation stating that Napoleon promised to be in both the Russian capitals by the autumn, and the talk of the Emperor's being expected to arrive next day--all aroused with fresh force that feeling of agitation and expectation in Pierre which he had been conscious of ever since the appearance of the comet, and especially since the beginning of the war. He had long been thinking of entering the army and would have done so had he not been hindered, first, by his membership of the Society of Freemasons to which he was bound by oath and which preached perpetual peace and the abolition of war, and secondly, by the fact that when he saw the great mass of Muscovites who had donned uniform and were talking patriotism, he somehow felt ashamed to take the step. But the chief reason for not carrying out his intention to enter the army lay in the vague idea that he was L'russe Besuhof who had the number of the beast, 666; that his part in the great affair of setting a limit to the power of the beast that spoke great and blasphemous things had been predestined from eternity, and that therefore he ought not to undertake anything, but wait for what was bound to come to pass. CHAPTER XX A few intimate friends were dining with the Rostovs that day, as usual on Sundays. Pierre came early so as to find them alone. He had grown so stout this year that he would have been abnormal had he not been so tall, so broad of limb, and so strong that he carried his bulk with evident ease. He went up the stairs, puffing and muttering something. His coachman did not even ask whether he was to wait. He knew that when his master was at the Rostovs' he stayed till midnight. The Rostovs' footman rushed eagerly forward to help him off with his cloak and take his hat and stick. Pierre, from club habit, always left both hat and stick in the anteroom. The first person he saw in the house was Natasha. Even before he saw her, while taking off his cloak, he heard her. She was practicing solfa exercises in the music room. He knew that she had not sung since her illness, and so the sound of her voice surprised and delighted him. He opened the door softly and saw her, in the lilac dress she had worn at church, walking about the room singing. She had her back to him when he opened the door, but when, turning quickly, she saw his broad, surprised face, she blushed and came rapidly up to him. "I want to try to sing again," she said, adding as if by way of excuse, "it is, at least, something to do." "That's capital!" "How glad I am you've come! I am so happy today," she said, with the old animation Pierre had not seen in her for along time. "You know Nicholas has received a St. George's Cross? I am so proud of him." "Oh yes, I sent that announcement. But I don't want to interrupt you," he added, and was about to go to the drawing room. Natasha stopped him. "Count, is it wrong of me to sing?" she said blushing, and fixing her eyes inquiringly on him. "No... Why should it be? On the contrary... But why do you ask me?" "I don't know myself," Natasha answered quickly, "but I should not like to do anything you disapproved of. I believe in you completely. You don't know how important you are to me, how much you've done for me...." She spoke rapidly and did not notice how Pierre flushed at her words. "I saw in that same army order that he, Bolkonski" (she whispered the name hastily), "is in Russia, and in the army again. What do you think?"--she was speaking hurriedly, evidently afraid her strength might fail her--"Will he ever forgive me? Will he not always have a bitter feeling toward me? What do you think? What do you think?" "I think..." Pierre replied, "that he has nothing to forgive.... If I were in his place..." By association of ideas, Pierre was at once carried back to the day when, trying to comfort her, he had said that if he were not himself but the best man in the world and free, he would ask on his knees for her hand; and the same feeling of pity, tenderness, and love took possession of him and the same words rose to his lips. But she did not give him time to say them. "Yes, you... you..." she said, uttering the word you rapturously- "that's a different thing. I know no one kinder, more generous, or better than you; nobody could be! Had you not been there then, and now too, I don't know what would have become of me, because..." Tears suddenly rose in her eyes, she turned away, lifted her music before her eyes, began singing again, and again began walking up and down the room. Just then Petya came running in from the drawing room. Petya was now a handsome rosy lad of fifteen with full red lips and resembled Natasha. He was preparing to enter the university, but he and his friend Obolenski had lately, in secret, agreed to join the hussars. Petya had come rushing out to talk to his namesake about this affair. He had asked Pierre to find out whether he would be accepted in the hussars. Pierre walked up and down the drawing room, not listening to what Petya was saying. Petya pulled him by the arm to attract his attention. "Well, what about my plan? Peter Kirilych, for heaven's sake! You are my only hope," said Petya. "Oh yes, your plan. To join the hussars? I'll mention it, I'll bring it all up today." "Well, mon cher, have you got the manifesto?" asked the old count. "The countess has been to Mass at the Razumovskis' and heard the new prayer. She says it's very fine." "Yes, I've got it," said Pierre. "The Emperor is to be here tomorrow... there's to be an Extraordinary Meeting of the nobility, and they are talking of a levy of ten men per thousand. Oh yes, let me congratulate you!" "Yes, yes, thank God! Well, and what news from the army?" "We are again retreating. They say we're already near Smolensk," replied Pierre. "O Lord, O Lord!" exclaimed the count. "Where is the manifesto?" "The Emperor's appeal? Oh yes!" Pierre began feeling in his pockets for the papers, but could not find them. Still slapping his pockets, he kissed the hand of the countess who entered the room and glanced uneasily around, evidently expecting Natasha, who had left off singing but had not yet come into the drawing room. "On my word, I don't know what I've done with it," he said. "There he is, always losing everything!" remarked the countess. Natasha entered with a softened and agitated expression of face and sat down looking silently at Pierre. As soon as she entered, Pierre's features, which had been gloomy, suddenly lighted up, and while still searching for the papers he glanced at her several times. "No, really! I'll drive home, I must have left them there. I'll certainly..." "But you'll be late for dinner." "Oh! And my coachman has gone." But Sonya, who had gone to look for the papers in the anteroom, had found them in Pierre's hat, where he had carefully tucked them under the lining. Pierre was about to begin reading. "No, after dinner," said the old count, evidently expecting much enjoyment from that reading. At dinner, at which champagne was drunk to the health of the new chevalier of St. George, Shinshin told them the town news, of the illness of the old Georgian princess, of Metivier's disappearance from Moscow, and of how some German fellow had been brought to Rostopchin and accused of being a French "spyer" (so Count Rostopchin had told the story), and how Rostopchin let him go and assured the people that he was "not a spire at all, but only an old German ruin." "People are being arrested..." said the count. "I've told the countess she should not speak French so much. It's not the time for it now." "And have you heard?" Shinshin asked. "Prince Golitsyn has engaged a master to teach him Russian. It is becoming dangerous to speak French in the streets." "And how about you, Count Peter Kirilych? If they call up the militia, you too will have to mount a horse," remarked the old count, addressing Pierre. Pierre had been silent and preoccupied all through dinner, seeming not to grasp what was said. He looked at the count. "Oh yes, the war," he said. "No! What sort of warrior should I make? And yet everything is so strange, so strange! I can't make it out. I don't know, I am very far from having military tastes, but in these times no one can answer for himself." After dinner the count settled himself comfortably in an easy chair and with a serious face asked Sonya, who was considered an excellent reader, to read the appeal. "To Moscow, our ancient Capital! "The enemy has entered the borders of Russia with immense forces. He comes to despoil our beloved country," Sonya read painstakingly in her high-pitched voice. The count listened with closed eyes, heaving abrupt sighs at certain passages. Natasha sat erect, gazing with a searching look now at her father and now at Pierre. Pierre felt her eyes on him and tried not to look round. The countess shook her head disapprovingly and angrily at every solemn expression in the manifesto. In all these words she saw only that the danger threatening her son would not soon be over. Shinshin, with a sarcastic smile on his lips, was evidently preparing to make fun of anything that gave him the opportunity: Sonya's reading, any remark of the count's, or even the manifesto itself should no better pretext present itself. After reading about the dangers that threatened Russia, the hopes the Emperor placed on Moscow and especially on its illustrious nobility, Sonya, with a quiver in her voice due chiefly to the attention that was being paid to her, read the last words: "We ourselves will not delay to appear among our people in that Capital and in others parts of our realm for consultation, and for the direction of all our levies, both those now barring the enemy's path and those freshly formed to defeat him wherever he may appear. May the ruin he hopes to bring upon us recoil on his own head, and may Europe delivered from bondage glorify the name of Russia!" "Yes, that's it!" cried the count, opening his moist eyes and sniffing repeatedly, as if a strong vinaigrette had been held to his nose; and he added, "Let the Emperor but say the word and we'll sacrifice everything and begrudge nothing." Before Shinshin had time to utter the joke he was ready to make on the count's patriotism, Natasha jumped up from her place and ran to her father. "What a darling our Papa is!" she cried, kissing him, and she again looked at Pierre with the unconscious coquetry that had returned to her with her better spirits. "There! Here's a patriot for you!" said Shinshin. "Not a patriot at all, but simply..." Natasha replied in an injured tone. "Everything seems funny to you, but this isn't at all a joke...." "A joke indeed!" put in the count. "Let him but say the word and we'll all go.... We're not Germans!" "But did you notice, it says, 'for consultation'?" said Pierre. "Never mind what it's for...." At this moment, Petya, to whom nobody was paying any attention, came up to his father with a very flushed face and said in his breaking voice that was now deep and now shrill: "Well, Papa, I tell you definitely, and Mamma too, it's as you please, but I say definitely that you must let me enter the army, because I can't... that's all...." The countess, in dismay, looked up to heaven, clasped her hands, and turned angrily to her husband. "That comes of your talking!" said she. But the count had already recovered from his excitement. "Come, come!" said he. "Here's a fine warrior! No! Nonsense! You must study." "It's not nonsense, Papa. Fedya Obolenski is younger than I, and he's going too. Besides, all the same I can't study now when..." Petya stopped short, flushed till he perspired, but still got out the words, "when our Fatherland is in danger." "That'll do, that'll do--nonsense...." "But you said yourself that we would sacrifice everything." "Petya! Be quiet, I tell you!" cried the count, with a glance at his wife, who had turned pale and was staring fixedly at her son. "And I tell you--Peter Kirilych here will also tell you..." "Nonsense, I tell you. Your mother's milk has hardly dried on your lips and you want to go into the army! There, there, I tell you," and the count moved to go out of the room, taking the papers, probably to reread them in his study before having a nap. "Well, Peter Kirilych, let's go and have a smoke," he said. Pierre was agitated and undecided. Natasha's unwontedly brilliant eyes, continually glancing at him with a more than cordial look, had reduced him to this condition. "No, I think I'll go home." "Home? Why, you meant to spend the evening with us.... You don't often come nowadays as it is, and this girl of mine," said the count good-naturedly, pointing to Natasha, "only brightens up when you're here." "Yes, I had forgotten... I really must go home... business..." said Pierre hurriedly. "Well, then, au revoir!" said the count, and went out of the room. "Why are you going? Why are you upset?" asked Natasha, and she looked challengingly into Pierre's eyes. "Because I love you!" was what he wanted to say, but he did not say it, and only blushed till the tears came, and lowered his eyes. "Because it is better for me to come less often... because... No, simply I have business...." "Why? No, tell me!" Natasha began resolutely and suddenly stopped. They looked at each other with dismayed and embarrassed faces. He tried to smile but could not: his smile expressed suffering, and he silently kissed her hand and went out. Pierre made up his mind not to go to the Rostovs' any more. CHAPTER XXI After the definite refusal he had received, Petya went to his room and there locked himself in and wept bitterly. When he came in to tea, silent, morose, and with tear-stained face, everybody pretended not to notice anything. Next day the Emperor arrived in Moscow, and several of the Rostovs' domestic serfs begged permission to go to have a look at him. That morning Petya was a long time dressing and arranging his hair and collar to look like a grown-up man. He frowned before his looking glass, gesticulated, shrugged his shoulders, and finally, without saying a word to anyone, took his cap and left the house by the back door, trying to avoid notice. Petya decided to go straight to where the Emperor was and to explain frankly to some gentleman-in-waiting (he imagined the Emperor to be always surrounded by gentlemen-in-waiting) that he, Count Rostov, in spite of his youth wished to serve his country; that youth could be no hindrance to loyalty, and that he was ready to... While dressing, Petya had prepared many fine things he meant to say to the gentleman-in-waiting. It was on the very fact of being so young that Petya counted for success in reaching the Emperor--he even thought how surprised everyone would be at his youthfulness--and yet in the arrangement of his collar and hair and by his sedate deliberate walk he wished to appear a grown-up man. But the farther he went and the more his attention was diverted by the ever-increasing crowds moving toward the Kremlin, the less he remembered to walk with the sedateness and deliberation of a man. As he approached the Kremlin he even began to avoid being crushed and resolutely stuck out his elbows in a menacing way. But within the Trinity Gateway he was so pressed to the wall by people who probably were unaware of the patriotic intentions with which he had come that in spite of all his determination he had to give in, and stop while carriages passed in, rumbling beneath the archway. Beside Petya stood a peasant woman, a footman, two tradesmen, and a discharged soldier. After standing some time in the gateway, Petya tried to move forward in front of the others without waiting for all the carriages to pass, and he began resolutely working his way with his elbows, but the woman just in front of him, who was the first against whom he directed his efforts, angrily shouted at him: "What are you shoving for, young lordling? Don't you see we're all standing still? Then why push?" "Anybody can shove," said the footman, and also began working his elbows to such effect that he pushed Petya into a very filthy corner of the gateway. Petya wiped his perspiring face with his hands and pulled up the damp collar which he had arranged so well at home to seem like a man's. He felt that he no longer looked presentable, and feared that if he were now to approach the gentlemen-in-waiting in that plight he would not be admitted to the Emperor. But it was impossible to smarten oneself up or move to another place, because of the crowd. One of the generals who drove past was an acquaintance of the Rostovs', and Petya thought of asking his help, but came to the conclusion that that would not be a manly thing to do. When the carriages had all passed in, the crowd, carrying Petya with it, streamed forward into the Kremlin Square which was already full of people. There were people not only in the square, but everywhere--on the slopes and on the roofs. As soon as Petya found himself in the square he clearly heard the sound of bells and the joyous voices of the crowd that filled the whole Kremlin. For a while the crowd was less dense, but suddenly all heads were bared, and everyone rushed forward in one direction. Petya was being pressed so that he could scarcely breathe, and everybody shouted, "Hurrah! hurrah! hurrah!" Petya stood on tiptoe and pushed and pinched, but could see nothing except the people about him. All the faces bore the same expression of excitement and enthusiasm. A tradesman's wife standing beside Petya sobbed, and the tears ran down her cheeks. "Father! Angel! Dear one!" she kept repeating, wiping away her tears with her fingers. "Hurrah!" was heard on all sides. For a moment the crowd stood still, but then it made another rush forward. Quite beside himself, Petya, clinching his teeth and rolling his eyes ferociously, pushed forward, elbowing his way and shouting "hurrah!" as if he were prepared that instant to kill himself and everyone else, but on both sides of him other people with similarly ferocious faces pushed forward and everybody shouted "hurrah!" "So this is what the Emperor is!" thought Petya. "No, I can't petition him myself--that would be too bold." But in spite of this he continued to struggle desperately forward, and from between the backs of those in front he caught glimpses of an open space with a strip of red cloth spread out on it; but just then the crowd swayed back--the police in front were pushing back those who had pressed too close to the procession: the Emperor was passing from the palace to the Cathedral of the Assumption--and Petya unexpectedly received such a blow on his side and ribs and was squeezed so hard that suddenly everything grew dim before his eyes and he lost consciousness. When he came to himself, a man of clerical appearance with a tuft of gray hair at the back of his head and wearing a shabby blue cassock--probably a church clerk and chanter--was holding him under the arm with one hand while warding off the pressure of the crowd with the other. "You've crushed the young gentleman!" said the clerk. "What are you up to? Gently!... They've crushed him, crushed him!" The Emperor entered the Cathedral of the Assumption. The crowd spread out again more evenly, and the clerk led Petya--pale and breathless--to the Tsar-cannon. Several people were sorry for Petya, and suddenly a crowd turned toward him and pressed round him. Those who stood nearest him attended to him, unbuttoned his coat, seated him on the raised platform of the cannon, and reproached those others (whoever they might be) who had crushed him. "One might easily get killed that way! What do they mean by it? Killing people! Poor dear, he's as white as a sheet!"--various voices were heard saying. Petya soon came to himself, the color returned to his face, the pain had passed, and at the cost of that temporary unpleasantness he had obtained a place by the cannon from where he hoped to see the Emperor who would be returning that way. Petya no longer thought of presenting his petition. If he could only see the Emperor he would be happy! While the service was proceeding in the Cathedral of the Assumption- it was a combined service of prayer on the occasion of the Emperor's arrival and of thanksgiving for the conclusion of peace with the Turks--the crowd outside spread out and hawkers appeared, selling kvas, gingerbread, and poppyseed sweets (of which Petya was particularly fond), and ordinary conversation could again be heard. A tradesman's wife was showing a rent in her shawl and telling how much the shawl had cost; another was saying that all silk goods had now got dear. The clerk who had rescued Petya was talking to a functionary about the priests who were officiating that day with the bishop. The clerk several times used the word "plenary" (of the service), a word Petya did not understand. Two young citizens were joking with some serf girls who were cracking nuts. All these conversations, especially the joking with the girls, were such as might have had a particular charm for Petya at his age, but they did not interest him now. He sat on his elevation--the pedestal of the cannon--still agitated as before by the thought of the Emperor and by his love for him. The feeling of pain and fear he had experienced when he was being crushed, together with that of rapture, still further intensified his sense of the importance of the occasion. Suddenly the sound of a firing of cannon was heard from the embankment, to celebrate the signing of peace with the Turks, and the crowd rushed impetuously toward the embankment to watch the firing. Petya too would have run there, but the clerk who had taken the young gentleman under his protection stopped him. The firing was still proceeding when officers, generals, and gentlemen-in-waiting came running out of the cathedral, and after them others in a more leisurely manner: caps were again raised, and those who had run to look at the cannon ran back again. At last four men in uniforms and sashes emerged from the cathedral doors. "Hurrah! hurrah!" shouted the crowd again. "Which is he? Which?" asked Petya in a tearful voice, of those around him, but no one answered him, everybody was too excited; and Petya, fixing on one of those four men, whom he could not clearly see for the tears of joy that filled his eyes, concentrated all his enthusiasm on him--though it happened not to be the Emperor- frantically shouted "Hurrah!" and resolved that tomorrow, come what might, he would join the army. The crowd ran after the Emperor, followed him to the palace, and began to disperse. It was already late, and Petya had not eaten anything and was drenched with perspiration, yet he did not go home but stood with that diminishing, but still considerable, crowd before the palace while the Emperor dined--looking in at the palace windows, expecting he knew not what, and envying alike the notables he saw arriving at the entrance to dine with the Emperor and the court footmen who served at table, glimpses of whom could be seen through the windows. While the Emperor was dining, Valuev, looking out of the window, said: "The people are still hoping to see Your Majesty again." The dinner was nearly over, and the Emperor, munching a biscuit, rose and went out onto the balcony. The people, with Petya among them, rushed toward the balcony. "Angel! Dear one! Hurrah! Father!..." cried the crowd, and Petya with it, and again the women and men of weaker mold, Petya among them, wept with joy. A largish piece of the biscuit the Emperor was holding in his hand broke off, fell on the balcony parapet, and then to the ground. A coachman in a jerkin, who stood nearest, sprang forward and snatched it up. Several people in the crowd rushed at the coachman. Seeing this the Emperor had a plateful of biscuits brought him and began throwing them down from the balcony. Petya's eyes grew bloodshot, and still more excited by the danger of being crushed, he rushed at the biscuits. He did not know why, but he had to have a biscuit from the Tsar's hand and he felt that he must not give way. He sprang forward and upset an old woman who was catching at a biscuit; the old woman did not consider herself defeated though she was lying on the ground--she grabbed at some biscuits but her hand did not reach them. Petya pushed her hand away with his knee, seized a biscuit, and as if fearing to be too late, again shouted "Hurrah!" with a voice already hoarse. The Emperor went in, and after that the greater part of the crowd began to disperse. "There! I said if only we waited--and so it was!" was being joyfully said by various people. Happy as Petya was, he felt sad at having to go home knowing that all the enjoyment of that day was over. He did not go straight home from the Kremlin, but called on his friend Obolenski, who was fifteen and was also entering the regiment. On returning home Petya announced resolutely and firmly that if he was not allowed to enter the service he would run away. And next day, Count Ilya Rostov--though he had not yet quite yielded--went to inquire how he could arrange for Petya to serve where there would be least danger. CHAPTER XXII Two days later, on the fifteenth of July, an immense number of carriages were standing outside the Sloboda Palace. The great halls were full. In the first were the nobility and gentry in their uniforms, in the second bearded merchants in full-skirted coats of blue cloth and wearing medals. In the noblemen's hall there was an incessant movement and buzz of voices. The chief magnates sat on high-backed chairs at a large table under the portrait of the Emperor, but most of the gentry were strolling about the room. All these nobles, whom Pierre met every day at the Club or in their own houses, were in uniform--some in that of Catherine's day, others in that of Emperor Paul, others again in the new uniforms of Alexander's time or the ordinary uniform of the nobility, and the general characteristic of being in uniform imparted something strange and fantastic to these diverse and familiar personalities, both old and young. The old men, dim-eyed, toothless, bald, sallow, and bloated, or gaunt and wrinkled, were especially striking. For the most part they sat quietly in their places and were silent, or, if they walked about and talked, attached themselves to someone younger. On all these faces, as on the faces of the crowd Petya had seen in the Square, there was a striking contradiction: the general expectation of a solemn event, and at the same time the everyday interests in a boston card party, Peter the cook, Zinaida Dmitrievna's health, and so on. Pierre was there too, buttoned up since early morning in a nobleman's uniform that had become too tight for him. He was agitated; this extraordinary gathering not only of nobles but also of the merchant-class--les etats generaux (States-General)--evoked in him a whole series of ideas he had long laid aside but which were deeply graven in his soul: thoughts of the Contrat social and the French Revolution. The words that had struck him in the Emperor's appeal- that the sovereign was coming to the capital for consultation with his people--strengthened this idea. And imagining that in this direction something important which he had long awaited was drawing near, he strolled about watching and listening to conversations, but nowhere finding any confirmation of the ideas that occupied him. The Emperor's manifesto was read, evoking enthusiasm, and then all moved about discussing it. Besides the ordinary topics of conversation, Pierre heard questions of where the marshals of the nobility were to stand when the Emperor entered, when a ball should be given in the Emperor's honor, whether they should group themselves by districts or by whole provinces... and so on; but as soon as the war was touched on, or what the nobility had been convened for, the talk became undecided and indefinite. Then all preferred listening to speaking. A middle-aged man, handsome and virile, in the uniform of a retired naval officer, was speaking in one of the rooms, and a small crowd was pressing round him. Pierre went up to the circle that had formed round the speaker and listened. Count Ilya Rostov, in a military uniform of Catherine's time, was sauntering with a pleasant smile among the crowd, with all of whom he was acquainted. He too approached that group and listened with a kindly smile and nods of approval, as he always did, to what the speaker was saying. The retired naval man was speaking very boldly, as was evident from the expression on the faces of the listeners and from the fact that some people Pierre knew as the meekest and quietest of men walked away disapprovingly or expressed disagreement with him. Pierre pushed his way into the middle of the group, listened, and convinced himself that the man was indeed a liberal, but of views quite different from his own. The naval officer spoke in a particularly sonorous, musical, and aristocratic baritone voice, pleasantly swallowing his r's and generally slurring his consonants: the voice of a man calling out to his servant, "Heah! Bwing me my pipe!" It was indicative of dissipation and the exercise of authority. "What if the Smolensk people have offahd to waise militia for the Empewah? Ah we to take Smolensk as our patte'n? If the noble awistocwacy of the pwovince of Moscow thinks fit, it can show its loyalty to our sov'weign the Empewah in other ways. Have we fo'gotten the waising of the militia in the yeah 'seven? All that did was to enwich the pwiests' sons and thieves and wobbahs...." Count Ilya Rostov smiled blandly and nodded approval. "And was our militia of any use to the Empia? Not at all! It only wuined our farming! Bettah have another conscwiption... o' ou' men will wetu'n neithah soldiers no' peasants, and we'll get only depwavity fwom them. The nobility don't gwudge theah lives--evewy one of us will go and bwing in more wecwuits, and the sov'weign" (that was the way he referred to the Emperor) "need only say the word and we'll all die fo' him!" added the orator with animation. Count Rostov's mouth watered with pleasure and he nudged Pierre, but Pierre wanted to speak himself. He pushed forward, feeling stirred, but not yet sure what stirred him or what he would say. Scarcely had he opened his mouth when one of the senators, a man without a tooth in his head, with a shrewd though angry expression, standing near the first speaker, interrupted him. Evidently accustomed to managing debates and to maintaining an argument, he began in low but distinct tones: "I imagine, sir," said he, mumbling with his toothless mouth, "that we have been summoned here not to discuss whether it's best for the empire at the present moment to adopt conscription or to call out the militia. We have been summoned to reply to the appeal with which our sovereign the Emperor has honored us. But to judge what is best--conscription or the militia--we can leave to the supreme authority...." Pierre suddenly saw an outlet for his excitement. He hardened his heart against the senator who was introducing this set and narrow attitude into the deliberations of the nobility. Pierre stepped forward and interrupted him. He himself did not yet know what he would say, but he began to speak eagerly, occasionally lapsing into French or expressing himself in bookish Russian. "Excuse me, your excellency," he began. (He was well acquainted with the senator, but thought it necessary on this occasion to address him formally.) "Though I don't agree with the gentleman..." (he hesitated: he wished to say, "Mon tres honorable preopinant"--"My very honorable opponent") "with the gentleman... whom I have not the honor of knowing, I suppose that the nobility have been summoned not merely to express their sympathy and enthusiasm but also to consider the means by which we can assist our Fatherland! I imagine," he went on, warming to his subject, "that the Emperor himself would not be satisfied to find in us merely owners of serfs whom we are willing to devote to his service, and chair a canon* we are ready to make of ourselves--and not to obtain from us any co-co-counsel." *"Food for cannon." Many persons withdrew from the circle, noticing the senator's sarcastic smile and the freedom of Pierre's remarks. Only Count Rostov was pleased with them as he had been pleased with those of the naval officer, the senator, and in general with whatever speech he had last heard. "I think that before discussing these questions," Pierre continued, "we should ask the Emperor--most respectfully ask His Majesty--to let us know the number of our troops and the position in which our army and our forces now are, and then..." But scarcely had Pierre uttered these words before he was attacked from three sides. The most vigorous attack came from an old acquaintance, a boston player who had always been well disposed toward him, Stepan Stepanovich Adraksin. Adraksin was in uniform, and whether as a result of the uniform or from some other cause Pierre saw before him quite a different man. With a sudden expression of malevolence on his aged face, Adraksin shouted at Pierre: "In the first place, I tell you we have no right to question the Emperor about that, and secondly, if the Russian nobility had that right, the Emperor could not answer such a question. The troops are moved according to the enemy's movements and the number of men increases and decreases..." Another voice, that of a nobleman of medium height and about forty years of age, whom Pierre had formerly met at the gypsies' and knew as a bad cardplayer, and who, also transformed by his uniform, came up to Pierre, interrupted Adraksin. "Yes, and this is not a time for discussing," he continued, "but for acting: there is war in Russia! The enemy is advancing to destroy Russia, to desecrate the tombs of our fathers, to carry off our wives and children." The nobleman smote his breast. "We will all arise, every one of us will go, for our father the Tsar!" he shouted, rolling his bloodshot eyes. Several approving voices were heard in the crowd. "We are Russians and will not grudge our blood in defense of our faith, the throne, and the Fatherland! We must cease raving if we are sons of our Fatherland! We will show Europe how Russia rises to the defense of Russia!" Pierre wished to reply, but could not get in a word. He felt that his words, apart from what meaning they conveyed, were less audible than the sound of his opponent's voice. Count Rostov at the back of the crowd was expressing approval; several persons, briskly turning a shoulder to the orator at the end of a phrase, said: "That's right, quite right! Just so!" Pierre wished to say that he was ready to sacrifice his money, his serfs, or himself, only one ought to know the state of affairs in order to be able to improve it, but he was unable to speak. Many voices shouted and talked at the same time, so that Count Rostov had not time to signify his approval of them all, and the group increased, dispersed, re-formed, and then moved with a hum of talk into the largest hall and to the big table. Not only was Pierre's attempt to speak unsuccessful, but he was rudely interrupted, pushed aside, and people turned away from him as from a common enemy. This happened not because they were displeased by the substance of his speech, which had even been forgotten after the many subsequent speeches, but to animate it the crowd needed a tangible object to love and a tangible object to hate. Pierre became the latter. Many other orators spoke after the excited nobleman, and all in the same tone. Many spoke eloquently and with originality. Glinka, the editor of the Russian Messenger, who was recognized (cries of "author! author!" were heard in the crowd), said that "hell must be repulsed by hell," and that he had seen a child smiling at lightning flashes and thunderclaps, but "we will not be that child." "Yes, yes, at thunderclaps!" was repeated approvingly in the back rows of the crowd. The crowd drew up to the large table, at which sat gray-haired or bald seventy-year-old magnates, uniformed and besashed almost all of whom Pierre had seen in their own homes with their buffoons, or playing boston at the clubs. With an incessant hum of voices the crowd advanced to the table. Pressed by the throng against the high backs of the chairs, the orators spoke one after another and sometimes two together. Those standing behind noticed what a speaker omitted to say and hastened to supply it. Others in that heat and crush racked their brains to find some thought and hastened to utter it. The old magnates, whom Pierre knew, sat and turned to look first at one and then at another, and their faces for the most part only expressed the fact that they found it very hot. Pierre, however, felt excited, and the general desire to show that they were ready to go to all lengths--which found expression in the tones and looks more than in the substance of the speeches--infected him too. He did not renounce his opinions, but felt himself in some way to blame and wished to justify himself. "I only said that it would be more to the purpose to make sacrifices when we know what is needed!" said he, trying to be heard above the other voices. One of the old men nearest to him looked round, but his attention was immediately diverted by an exclamation at the other side of the table. "Yes, Moscow will be surrendered! She will be our expiation!" shouted one man. "He is the enemy of mankind!" cried another. "Allow me to speak...." "Gentlemen, you are crushing me!..." CHAPTER XXIII At that moment Count Rostopchin with his protruding chin and alert eyes, wearing the uniform of a general with sash over his shoulder, entered the room, stepping briskly to the front of the crowd of gentry. "Our sovereign the Emperor will be here in a moment," said Rostopchin. "I am straight from the palace. Seeing the position we are in, I think there is little need for discussion. The Emperor has deigned to summon us and the merchants. Millions will pour forth from there"--he pointed to the merchants' hall--"but our business is to supply men and not spare ourselves... That is the least we can do!" A conference took place confined to the magnates sitting at the table. The whole consultation passed more than quietly. After all the preceding noise the sound of their old voices saying one after another, "I agree," or for variety, "I too am of that opinion," and so on had even a mournful effect. The secretary was told to write down the resolution of the Moscow nobility and gentry, that they would furnish ten men, fully equipped, out of every thousand serfs, as the Smolensk gentry had done. Their chairs made a scraping noise as the gentlemen who had conferred rose with apparent relief, and began walking up and down, arm in arm, to stretch their legs and converse in couples. "The Emperor! The Emperor!" a sudden cry resounded through the halls and the whole throng hurried to the entrance. The Emperor entered the hall through a broad path between two lines of nobles. Every face expressed respectful, awe-struck curiosity. Pierre stood rather far off and could not hear all that the Emperor said. From what he did hear he understood that the Emperor spoke of the danger threatening the empire and of the hopes he placed on the Moscow nobility. He was answered by a voice which informed him of the resolution just arrived at. "Gentlemen!" said the Emperor with a quivering voice. There was a rustling among the crowd and it again subsided, so that Pierre distinctly heard the pleasantly human voice of the Emperor saying with emotion: "I never doubted the devotion of the Russian nobles, but today it has surpassed my expectations. I thank you in the name of the Fatherland! Gentlemen, let us act! Time is most precious..." The Emperor ceased speaking, the crowd began pressing round him, and rapturous exclamations were heard from all sides. "Yes, most precious... a royal word," said Count Rostov, with a sob. He stood at the back, and, though he had heard hardly anything, understood everything in his own way. From the hall of the nobility the Emperor went to that of the merchants. There he remained about ten minutes. Pierre was among those who saw him come out from the merchants' hall with tears of emotion in his eyes. As became known later, he had scarcely begun to address the merchants before tears gushed from his eyes and he concluded in a trembling voice. When Pierre saw the Emperor he was coming out accompanied by two merchants, one of whom Pierre knew, a fat otkupshchik. The other was the mayor, a man with a thin sallow face and narrow beard. Both were weeping. Tears filled the thin man's eyes, and the fat otkupshchik sobbed outright like a child and kept repeating: "Our lives and property--take them, Your Majesty!" Pierre's one feeling at the moment was a desire to show that he was ready to go all lengths and was prepared to sacrifice everything. He now felt ashamed of his speech with its constitutional tendency and sought an opportunity of effacing it. Having heard that Count Mamonov was furnishing a regiment, Bezukhov at once informed Rostopchin that he would give a thousand men and their maintenance. Old Rostov could not tell his wife of what had passed without tears, and at once consented to Petya's request and went himself to enter his name. Next day the Emperor left Moscow. The assembled nobles all took off their uniforms and settled down again in their homes and clubs, and not without some groans gave orders to their stewards about the enrollment, feeling amazed themselves at what they had done. BOOK TEN: 1812 CHAPTER I Napoleon began the war with Russia because he could not resist going to Dresden, could not help having his head turned by the homage he received, could not help donning a Polish uniform and yielding to the stimulating influence of a June morning, and could not refrain from bursts of anger in the presence of Kurakin and then of Balashev. Alexander refused negotiations because he felt himself to be personally insulted. Barclay de Tolly tried to command the army in the best way, because he wished to fulfill his duty and earn fame as a great commander. Rostov charged the French because he could not restrain his wish for a gallop across a level field; and in the same way the innumerable people who took part in the war acted in accord with their personal characteristics, habits, circumstances, and aims. They were moved by fear or vanity, rejoiced or were indignant, reasoned, imagining that they knew what they were doing and did it of their own free will, but they all were involuntary tools of history, carrying on a work concealed from them but comprehensible to us. Such is the inevitable fate of men of action, and the higher they stand in the social hierarchy the less are they free. The actors of 1812 have long since left the stage, their personal interests have vanished leaving no trace, and nothing remains of that time but its historic results. Providence compelled all these men, striving to attain personal aims, to further the accomplishment of a stupendous result no one of them at all expected--neither Napoleon, nor Alexander, nor still less any of those who did the actual fighting. The cause of the destruction of the French army in 1812 is clear to us now. No one will deny that that cause was, on the one hand, its advance into the heart of Russia late in the season without any preparation for a winter campaign and, on the other, the character given to the war by the burning of Russian towns and the hatred of the foe this aroused among the Russian people. But no one at the time foresaw (what now seems so evident) that this was the only way an army of eight hundred thousand men--the best in the world and led by the best general--could be destroyed in conflict with a raw army of half its numerical strength, and led by inexperienced commanders as the Russian army was. Not only did no one see this, but on the Russian side every effort was made to hinder the only thing that could save Russia, while on the French side, despite Napoleon's experience and so-called military genius, every effort was directed to pushing on to Moscow at the end of the summer, that is, to doing the very thing that was bound to lead to destruction. In historical works on the year 1812 French writers are very fond of saying that Napoleon felt the danger of extending his line, that he sought a battle and that his marshals advised him to stop at Smolensk, and of making similar statements to show that the danger of the campaign was even then understood. Russian authors are still fonder of telling us that from the commencement of the campaign a Scythian war plan was adopted to lure Napoleon into the depths of Russia, and this plan some of them attribute to Pfuel, others to a certain Frenchman, others to Toll, and others again to Alexander himself- pointing to notes, projects, and letters which contain hints of such a line of action. But all these hints at what happened, both from the French side and the Russian, are advanced only because they fit in with the event. Had that event not occurred these hints would have been forgotten, as we have forgotten the thousands and millions of hints and expectations to the contrary which were current then but have now been forgotten because the event falsified them. There are always so many conjectures as to the issue of any event that however it may end there will always be people to say: "I said then that it would be so," quite forgetting that amid their innumerable conjectures many were to quite the contrary effect. Conjectures as to Napoleon's awareness of the danger of extending his line, and (on the Russian side) as to luring the enemy into the depths of Russia, are evidently of that kind, and only by much straining can historians attribute such conceptions to Napoleon and his marshals, or such plans to the Russian commanders. All the facts are in flat contradiction to such conjectures. During the whole period of the war not only was there no wish on the Russian side to draw the French into the heart of the country, but from their first entry into Russia everything was done to stop them. And not only was Napoleon not afraid to extend his line, but he welcomed every step forward as a triumph and did not seek battle as eagerly as in former campaigns, but very lazily. At the very beginning of the war our armies were divided, and our sole aim was to unite them, though uniting the armies was no advantage if we meant to retire and lure the enemy into the depths of the country. Our Emperor joined the army to encourage it to defend every inch of Russian soil and not to retreat. The enormous Drissa camp was formed on Pfuel's plan, and there was no intention of retiring farther. The Emperor reproached the commanders in chief for every step they retired. He could not bear the idea of letting the enemy even reach Smolensk, still less could he contemplate the burning of Moscow, and when our armies did unite he was displeased that Smolensk was abandoned and burned without a general engagement having been fought under its walls. So thought the Emperor, and the Russian commanders and people were still more provoked at the thought that our forces were retreating into the depths of the country. Napoleon having cut our armies apart advanced far into the country and missed several chances of forcing an engagement. In August he was at Smolensk and thought only of how to advance farther, though as we now see that advance was evidently ruinous to him. The facts clearly show that Napoleon did not foresee the danger of the advance on Moscow, nor did Alexander and the Russian commanders then think of luring Napoleon on, but quite the contrary. The luring of Napoleon into the depths of the country was not the result of any plan, for no one believed it to be possible; it resulted from a most complex interplay of intrigues, aims, and wishes among those who took part in the war and had no perception whatever of the inevitable, or of the one way of saving Russia. Everything came about fortuitously. The armies were divided at the commencement of the campaign. We tried to unite them, with the evident intention of giving battle and checking the enemy's advance, and by this effort to unite them while avoiding battle with a much stronger enemy, and necessarily withdrawing the armies at an acute angle--we led the French on to Smolensk. But we withdrew at an acute angle not only because the French advanced between our two armies; the angle became still more acute and we withdrew still farther, because Barclay de Tolly was an unpopular foreigner disliked by Bagration (who would come his command), and Bagration--being in command of the second army--tried to postpone joining up and coming under Barclay's command as long as he could. Bagration was slow in effecting the junction--though that was the chief aim of all at headquarters--because, as he alleged, he exposed his army to danger on this march, and it was best for him to retire more to the left and more to the south, worrying the enemy from flank and rear and securing from the Ukraine recruits for his army; and it looks as if he planned this in order not to come under the command of the detested foreigner Barclay, whose rank was inferior to his own. The Emperor was with the army to encourage it, but his presence and ignorance of what steps to take, and the enormous number of advisers and plans, destroyed the first army's energy and it retired. The intention was to make a stand at the Drissa camp, but Paulucci, aiming at becoming commander in chief, unexpectedly employed his energy to influence Alexander, and Pfuel's whole plan was abandoned and the command entrusted to Barclay. But as Barclay did not inspire confidence his power was limited. The armies were divided, there was no unity of command, and Barclay was unpopular; but from this confusion, division, and the unpopularity of the foreign commander in chief, there resulted on the one hand indecision and the avoidance of a battle (which we could not have refrained from had the armies been united and had someone else, instead of Barclay, been in command) and on the other an ever-increasing indignation against the foreigners and an increase in patriotic zeal. At last the Emperor left the army, and as the most convenient and indeed the only pretext for his departure it was decided that it was necessary for him to inspire the people in the capitals and arouse the nation in general to a patriotic war. And by this visit of the Emperor to Moscow the strength of the Russian army was trebled. He left in order not to obstruct the commander in chief's undivided control of the army, and hoping that more decisive action would then be taken, but the command of the armies became still more confused and enfeebled. Bennigsen, the Tsarevich, and a swarm of adjutants general remained with the army to keep the commander in chief under observation and arouse his energy, and Barclay, feeling less free than ever under the observation of all these "eyes of the Emperor," became still more cautious of undertaking any decisive action and avoided giving battle. Barclay stood for caution. The Tsarevich hinted at treachery and demanded a general engagement. Lubomirski, Bronnitski, Wlocki, and the others of that group stirred up so much trouble that Barclay, under pretext of sending papers to the Emperor, dispatched these Polish adjutants general to Petersburg and plunged into an open struggle with Bennigsen and the Tsarevich. At Smolensk the armies at last reunited, much as Bagration disliked it. Bagration drove up in a carriage to to the house occupied by Barclay. Barclay donned his sash and came out to meet and report to his senior officer Bagration. Despite his seniority in rank Bagration, in this contest of magnanimity, took his orders from Barclay, but, having submitted, agreed with him less than ever. By the Emperor's orders Bagration reported direct to him. He wrote to Arakcheev, the Emperor's confidant: "It must be as my sovereign pleases, but I cannot work with the Minister (meaning Barclay). For God's sake send me somewhere else if only in command of a regiment. I cannot stand it here. Headquarters are so full of Germans that a Russian cannot exist and there is no sense in anything. I thought I was really serving my sovereign and the Fatherland, but it turns out that I am serving Barclay. I confess I do not want to." The swarm of Bronnitskis and Wintzingerodes and their like still further embittered the relations between the commanders in chief, and even less unity resulted. Preparations were made to fight the French before Smolensk. A general was sent to survey the position. This general, hating Barclay, rode to visit a friend of his own, a corps commander, and, having spent the day with him, returned to Barclay and condemned, as unsuitable from every point of view, the battleground he had not seen. While disputes and intrigues were going on about the future field of battle, and while we were looking for the French--having lost touch with them--the French stumbled upon Neverovski's division and reached the walls of Smolensk. It was necessary to fight an unexpected battle at Smolensk to save our lines of communication. The battle was fought and thousands were killed on both sides. Smolensk was abandoned contrary to the wishes of the Emperor and of the whole people. But Smolensk was burned by its own inhabitants-who had been misled by their governor. And these ruined inhabitants, setting an example to other Russians, went to Moscow thinking only of their own losses but kindling hatred of the foe. Napoleon advanced farther and we retired, thus arriving at the very result which caused his destruction. CHAPTER II The day after his son had left, Prince Nicholas sent for Princess Mary to come to his study. "Well? Are you satisfied now?" said he. "You've made me quarrel with my son! Satisfied, are you? That's all you wanted! Satisfied?... It hurts me, it hurts. I'm old and weak and this is what you wanted. Well then, gloat over it! Gloat over it!" After that Princess Mary did not see her father for a whole week. He was ill and did not leave his study. Princess Mary noticed to her surprise that during this illness the old prince not only excluded her from his room, but did not admit Mademoiselle Bourienne either. Tikhon alone attended him. At the end of the week the prince reappeared and resumed his former way of life, devoting himself with special activity to building operations and the arrangement of the gardens and completely breaking off his relations with Mademoiselle Bourienne. His looks and cold tone to his daughter seemed to say: "There, you see? You plotted against me, you lied to Prince Andrew about my relations with that Frenchwoman and made me quarrel with him, but you see I need neither her nor you!" Princess Mary spent half of every day with little Nicholas, watching his lessons, teaching him Russian and music herself, and talking to Dessalles; the rest of the day she spent over her books, with her old nurse, or with "God's folk" who sometimes came by the back door to see her. Of the war Princess Mary thought as women do think about wars. She feared for her brother who was in it, was horrified by and amazed at the strange cruelty that impels men to kill one another, but she did not understand the significance of this war, which seemed to her like all previous wars. She did not realize the significance of this war, though Dessalles with whom she constantly conversed was passionately interested in its progress and tried to explain his own conception of it to her, and though the "God's folk" who came to see her reported, in their own way, the rumors current among the people of an invasion by Antichrist, and though Julie (now Princess Drubetskaya), who had resumed correspondence with her, wrote patriotic letters from Moscow. "I write you in Russian, my good friend," wrote Julie in her Frenchified Russian, "because I have a detestation for all the French, and the same for their language which I cannot support to hear spoken.... We in Moscow are elated by enthusiasm for our adored Emperor. "My poor husband is enduring pains and hunger in Jewish taverns, but the news which I have inspires me yet more. "You heard probably of the heroic exploit of Raevski, embracing his two sons and saying: 'I will perish with them but we will not be shaken!' And truly though the enemy was twice stronger than we, we were unshakable. We pass the time as we can, but in war as in war! The princesses Aline and Sophie sit whole days with me, and we, unhappy widows of live men, make beautiful conversations over our charpie, only you, my friend, are missing..." and so on. The chief reason Princess Mary did not realize the full significance of this war was that the old prince never spoke of it, did not recognize it, and laughed at Dessalles when he mentioned it at dinner. The prince's tone was so calm and confident that Princess Mary unhesitatingly believed him. All that July the old prince was exceedingly active and even animated. He planned another garden and began a new building for the domestic serfs. The only thing that made Princess Mary anxious about him was that he slept very little and, instead of sleeping in his study as usual, changed his sleeping place every day. One day he would order his camp bed to be set up in the glass gallery, another day he remained on the couch or on the lounge chair in the drawing room and dozed there without undressing, while--instead of Mademoiselle Bourienne--a serf boy read to him. Then again he would spend a night in the dining room. On August 1, a second letter was received from Prince Andrew. In his first letter which came soon after he had left home, Prince Andrew had dutifully asked his father's forgiveness for what he had allowed himself to say and begged to be restored to his favor. To this letter the old prince had replied affectionately, and from that time had kept the Frenchwoman at a distance. Prince Andrew's second letter, written near Vitebsk after the French had occupied that town, gave a brief account of the whole campaign, enclosed for them a plan he had drawn and forecasts as to the further progress of the war. In this letter Prince Andrew pointed out to his father the danger of staying at Bald Hills, so near the theater of war and on the army's direct line of march, and advised him to move to Moscow. At dinner that day, on Dessalles' mentioning that the French were said to have already entered Vitebsk, the old prince remembered his son's letter. "There was a letter from Prince Andrew today," he said to Princess Mary--"Haven't you read it?" "No, Father," she replied in a frightened voice. She could not have read the letter as she did not even know it had arrived. "He writes about this war," said the prince, with the ironic smile that had become habitual to him in speaking of the present war. "That must be very interesting," said Dessalles. "Prince Andrew is in a position to know..." "Oh, very interesting!" said Mademoiselle Bourienne. "Go and get it for me," said the old prince to Mademoiselle Bourienne. "You know--under the paperweight on the little table." Mademoiselle Bourienne jumped up eagerly. "No, don't!" he exclaimed with a frown. "You go, Michael Ivanovich." Michael Ivanovich rose and went to the study. But as soon as he had left the room the old prince, looking uneasily round, threw down his napkin and went himself. "They can't do anything... always make some muddle," he muttered. While he was away Princess Mary, Dessalles, Mademoiselle Bourienne, and even little Nicholas exchanged looks in silence. The old prince returned with quick steps, accompanied by Michael Ivanovich, bringing the letter and a plan. These he put down beside him--not letting anyone read them at dinner. On moving to the drawing room he handed the letter to Princess Mary and, spreading out before him the plan of the new building and fixing his eyes upon it, told her to read the letter aloud. When she had done so Princess Mary looked inquiringly at her father. He was examining the plan, evidently engrossed in his own ideas. "What do you think of it, Prince?" Dessalles ventured to ask. "I? I?..." said the prince as if unpleasantly awakened, and not taking his eyes from the plan of the building. "Very possibly the theater of war will move so near to us that..." "Ha ha ha! The theater of war!" said the prince. "I have said and still say that the theater of war is Poland and the enemy will never get beyond the Niemen." Dessalles looked in amazement at the prince, who was talking of the Niemen when the enemy was already at the Dnieper, but Princess Mary, forgetting the geographical position of the Niemen, thought that what her father was saying was correct. "When the snow melts they'll sink in the Polish swamps. Only they could fail to see it," the prince continued, evidently thinking of the campaign of 1807 which seemed to him so recent. "Bennigsen should have advanced into Prussia sooner, then things would have taken a different turn..." "But, Prince," Dessalles began timidly, "the letter mentions Vitebsk...." "Ah, the letter? Yes..." replied the prince peevishly. "Yes... yes..." His face suddenly took on a morose expression. He paused. "Yes, he writes that the French were beaten at... at... what river is it?" Dessalles dropped his eyes. "The prince says nothing about that," he remarked gently. "Doesn't he? But I didn't invent it myself." No one spoke for a long time. "Yes... yes... Well, Michael Ivanovich," he suddenly went on, raising his head and pointing to the plan of the building, "tell me how you mean to alter it...." Michael Ivanovich went up to the plan, and the prince after speaking to him about the building looked angrily at Princess Mary and Dessalles and went to his own room. Princess Mary saw Dessalles' embarrassed and astonished look fixed on her father, noticed his silence, and was struck by the fact that her father had forgotten his son's letter on the drawing-room table; but she was not only afraid to speak of it and ask Dessalles the reason of his confusion and silence, but was afraid even to think about it. In the evening Michael Ivanovich, sent by the prince, came to Princess Mary for Prince Andrew's letter which had been forgotten in the drawing room. She gave it to him and, unpleasant as it was to her to do so, ventured to ask him what her father was doing. "Always busy," replied Michael Ivanovich with a respectfully ironic smile which caused Princess Mary to turn pale. "He's worrying very much about the new building. He has been reading a little, but now"--Michael Ivanovich went on, lowering his voice--"now he's at his desk, busy with his will, I expect." (One of the prince's favorite occupations of late had been the preparation of some papers he meant to leave at his death and which he called his "will.") "And Alpatych is being sent to Smolensk?" asked Princess Mary. "Oh, yes, he has been waiting to start for some time." CHAPTER III When Michael Ivanovich returned to the study with the letter, the old prince, with spectacles on and a shade over his eyes, was sitting at his open bureau with screened candles, holding a paper in his outstretched hand, and in a somewhat dramatic attitude was reading his manuscript--his "Remarks" as he termed it--which was to be transmitted to the Emperor after his death. When Michael Ivanovich went in there were tears in the prince's eyes evoked by the memory of the time when the paper he was now reading had been written. He took the letter from Michael Ivanovich's hand, put it in his pocket, folded up his papers, and called in Alpatych who had long been waiting. The prince had a list of things to be bought in Smolensk and, walking up and down the room past Alpatych who stood by the door, he gave his instructions. "First, notepaper--do you hear? Eight quires, like this sample, gilt-edged... it must be exactly like the sample. Varnish, sealing wax, as in Michael Ivanovich's list." He paced up and down for a while and glanced at his notes. "Then hand to the governor in person a letter about the deed." Next, bolts for the doors of the new building were wanted and had to be of a special shape the prince had himself designed, and a leather case had to be ordered to keep the "will" in. The instructions to Alpatych took over two hours and still the prince did not let him go. He sat down, sank into thought, closed his eyes, and dozed off. Alpatych made a slight movement. "Well, go, go! If anything more is wanted I'll send after you." Alpatych went out. The prince again went to his bureau, glanced into it, fingered his papers, closed the bureau again, and sat down at the table to write to the governor. It was already late when he rose after sealing the letter. He wished to sleep, but he knew he would not be able to and that most depressing thoughts came to him in bed. So he called Tikhon and went through the rooms with him to show him where to set up the bed for that night. He went about looking at every corner. Every place seemed unsatisfactory, but worst of all was his customary couch in the study. That couch was dreadful to him, probably because of the oppressive thoughts he had had when lying there. It was unsatisfactory everywhere, but the corner behind the piano in the sitting room was better than other places: he had never slept there yet. With the help of a footman Tikhon brought in the bedstead and began putting it up. "That's not right! That's not right!" cried the prince, and himself pushed it a few inches from the corner and then closer in again. "Well, at last I've finished, now I'll rest," thought the prince, and let Tikhon undress him. Frowning with vexation at the effort necessary to divest himself of his coat and trousers, the prince undressed, sat down heavily on the bed, and appeared to be meditating as he looked contemptuously at his withered yellow legs. He was not meditating, but only deferring the moment of making the effort to lift those legs up and turn over on the bed. "Ugh, how hard it is! Oh, that this toil might end and you would release me!" thought he. Pressing his lips together he made that effort for the twenty-thousandth time and lay down. But hardly had he done so before he felt the bed rocking backwards and forwards beneath him as if it were breathing heavily and jolting. This happened to him almost every night. He opened his eyes as they were closing. "No peace, damn them!" he muttered, angry he knew not with whom. "Ah yes, there was something else important, very important, that I was keeping till I should be in bed. The bolts? No, I told him about them. No, it was something, something in the drawing room. Princess Mary talked some nonsense. Dessalles, that fool, said something. Something in my pocket--can't remember..." "Tikhon, what did we talk about at dinner?" "About Prince Michael..." "Be quiet, quiet!" The prince slapped his hand on the table. "Yes, I know, Prince Andrew's letter! Princess Mary read it. Dessalles said something about Vitebsk. Now I'll read it." He had the letter taken from his pocket and the table--on which stood a glass of lemonade and a spiral wax candle--moved close to the bed, and putting on his spectacles he began reading. Only now in the stillness of the night, reading it by the faint light under the green shade, did he grasp its meaning for a moment. "The French at Vitebsk, in four days' march they may be at Smolensk; perhaps are already there! Tikhon!" Tikhon jumped up. "No, no, I don't want anything!" he shouted. He put the letter under the candlestick and closed his eyes. And there rose before him the Danube at bright noonday: reeds, the Russian camp, and himself a young general without a wrinkle on his ruddy face, vigorous and alert, entering Potemkin's gaily colored tent, and a burning sense of jealousy of "the favorite" agitated him now as strongly as it had done then. He recalled all the words spoken at that first meeting with Potemkin. And he saw before him a plump, rather sallow-faced, short, stout woman, the Empress Mother, with her smile and her words at her first gracious reception of him, and then that same face on the catafalque, and the encounter he had with Zubov over her coffin about his right to kiss her hand. "Oh, quicker, quicker! To get back to that time and have done with all the present! Quicker, quicker--and that they should leave me in peace!" CHAPTER IV Bald Hills, Prince Nicholas Bolkonski's estate, lay forty miles east from Smolensk and two miles from the main road to Moscow. The same evening that the prince gave his instructions to Alpatych, Dessalles, having asked to see Princess Mary, told her that, as the prince was not very well and was taking no steps to secure his safety, though from Prince Andrew's letter it was evident that to remain at Bald Hills might be dangerous, he respectfully advised her to send a letter by Alpatych to the Provincial Governor at Smolensk, asking him to let her know the state of affairs and the extent of the danger to which Bald Hills was exposed. Dessalles wrote this letter to the Governor for Princess Mary, she signed it, and it was given to Alpatych with instructions to hand it to the Governor and to come back as quickly as possible if there was danger. Having received all his orders Alpatych, wearing a white beaver hat- a present from the prince--and carrying a stick as the prince did, went out accompanied by his family. Three well-fed roans stood ready harnessed to a small conveyance with a leather hood. The larger bell was muffled and the little bells on the harness stuffed with paper. The prince allowed no one at Bald Hills to drive with ringing bells; but on a long journey Alpatych liked to have them. His satellites--the senior clerk, a countinghouse clerk, a scullery maid, a cook, two old women, a little pageboy, the coachman, and various domestic serfs--were seeing him off. His daughter placed chintz-covered down cushions for him to sit on and behind his back. His old sister-in-law popped in a small bundle, and one of the coachmen helped him into the vehicle. "There! There! Women's fuss! Women, women!" said Alpatych, puffing and speaking rapidly just as the prince did, and he climbed into the trap. After giving the clerk orders about the work to be done, Alpatych, not trying to imitate the prince now, lifted the hat from his bald head and crossed himself three times. "If there is anything... come back, Yakov Alpatych! For Christ's sake think of us!" cried his wife, referring to the rumors of war and the enemy. "Women, women! Women's fuss!" muttered Alpatych to himself and started on his journey, looking round at the fields of yellow rye and the still-green, thickly growing oats, and at other quite black fields just being plowed a second time. As he went along he looked with pleasure at the year's splendid crop of corn, scrutinized the strips of ryefield which here and there were already being reaped, made his calculations as to the sowing and the harvest, and asked himself whether he had not forgotten any of the prince's orders. Having baited the horses twice on the way, he arrived at the town toward evening on the fourth of August. Alpatych kept meeting and overtaking baggage trains and troops on the road. As he approached Smolensk he heard the sounds of distant firing, but these did not impress him. What struck him most was the sight of a splendid field of oats in which a camp had been pitched and which was being mown down by the soldiers, evidently for fodder. This fact impressed Alpatych, but in thinking about his own business he soon forgot it. All the interests of his life for more than thirty years had been bounded by the will of the prince, and he never went beyond that limit. Everything not connected with the execution of the prince's orders did not interest and did not even exist for Alpatych. On reaching Smolensk on the evening of the fourth of August he put up in the Gachina suburb across the Dnieper, at the inn kept by Ferapontov, where he had been in the habit of putting up for the last thirty years. Some thirty years ago Ferapontov, by Alpatych's advice, had bought a wood from the prince, had begun to trade, and now had a house, an inn, and a corn dealer's shop in that province. He was a stout, dark, red-faced peasant in the forties, with thick lips, a broad knob of a nose, similar knobs over his black frowning brows, and a round belly. Wearing a waistcoat over his cotton shirt, Ferapontov was standing before his shop which opened onto the street. On seeing Alpatych he went up to him. "You're welcome, Yakov Alpatych. Folks are leaving the town, but you have come to it," said he. "Why are they leaving the town?" asked Alpatych. "That's what I say. Folks are foolish! Always afraid of the French." "Women's fuss, women's fuss!" said Alpatych. "Just what I think, Yakov Alpatych. What I say is: orders have been given not to let them in, so that must be right. And the peasants are asking three rubles for carting--it isn't Christian!" Yakov Alpatych heard without heeding. He asked for a samovar and for hay for his horses, and when he had had his tea he went to bed. All night long troops were moving past the inn. Next morning Alpatych donned a jacket he wore only in town and went out on business. It was a sunny morning and by eight o'clock it was already hot. "A good day for harvesting," thought Alpatych. From beyond the town firing had been heard since early morning. At eight o'clock the booming of cannon was added to the sound of musketry. Many people were hurrying through the streets and there were many soldiers, but cabs were still driving about, tradesmen stood at their shops, and service was being held in the churches as usual. Alpatych went to the shops, to government offices, to the post office, and to the Governor's. In the offices and shops and at the post office everyone was talking about the army and about the enemy who was already attacking the town, everybody was asking what should be done, and all were trying to calm one another. In front of the Governor's house Alpatych found a large number of people, Cossacks, and a traveling carriage of the Governor's. At the porch he met two of the landed gentry, one of whom he knew. This man, an ex-captain of police, was saying angrily: "It's no joke, you know! It's all very well if you're single. 'One man though undone is but one,' as the proverb says, but with thirteen in your family and all the property... They've brought us to utter ruin! What sort of governors are they to do that? They ought to be hanged--the brigands!..." "Oh come, that's enough!" said the other. "What do I care? Let him hear! We're not dogs," said the ex-captain of police, and looking round he noticed Alpatych. "Oh, Yakov Alpatych! What have you come for?" "To see the Governor by his excellency's order," answered Alpatych, lifting his head and proudly thrusting his hand into the bosom of his coat as he always did when he mentioned the prince.... "He has ordered me to inquire into the position of affairs," he added. "Yes, go and find out!" shouted the angry gentleman. "They've brought things to such a pass that there are no carts or anything!... There it is again, do you hear?" said he, pointing in the direction whence came the sounds of firing. "They've brought us all to ruin... the brigands!" he repeated, and descended the porch steps. Alpatych swayed his head and went upstairs. In the waiting room were tradesmen, women, and officials, looking silently at one another. The door of the Governor's room opened and they all rose and moved forward. An official ran out, said some words to a merchant, called a stout official with a cross hanging on his neck to follow him, and vanished again, evidently wishing to avoid the inquiring looks and questions addressed to him. Alpatych moved forward and next time the official came out addressed him, one hand placed in the breast of his buttoned coat, and handed him two letters. "To his Honor Baron Asch, from General-in-Chief Prince Bolkonski," he announced with such solemnity and significance that the official turned to him and took the letters. A few minutes later the Governor received Alpatych and hurriedly said to him: "Inform the prince and princess that I knew nothing: I acted on the highest instructions--here..." and he handed a paper to Alpatych. "Still, as the prince is unwell my advice is that they should go to Moscow. I am just starting myself. Inform them..." But the Governor did not finish: a dusty perspiring officer ran into the room and began to say something in French. The Governor's face expressed terror. "Go," he said, nodding his head to Alpatych, and began questioning the officer. Eager, frightened, helpless glances were turned on Alpatych when he came out of the Governor's room. Involuntarily listening now to the firing, which had drawn nearer and was increasing in strength, Alpatych hurried to his inn. The paper handed to him by the Governor said this: "I assure you that the town of Smolensk is not in the slightest danger as yet and it is unlikely that it will be threatened with any. I from the one side and Prince Bagration from the other are marching to unite our forces before Smolensk, which junction will be effected on the 22nd instant, and both armies with their united forces will defend our compatriots of the province entrusted to your care till our efforts shall have beaten back the enemies of our Fatherland, or till the last warrior in our valiant ranks has perished. From this you will see that you have a perfect right to reassure the inhabitants of Smolensk, for those defended by two such brave armies may feel assured of victory." (Instructions from Barclay de Tolly to Baron Asch, the civil governor of Smolensk, 1812.) People were anxiously roaming about the streets. Carts piled high with household utensils, chairs, and cupboards kept emerging from the gates of the yards and moving along the streets. Loaded carts stood at the house next to Ferapontov's and women were wailing and lamenting as they said good-by. A small watchdog ran round barking in front of the harnessed horses. Alpatych entered the innyard at a quicker pace than usual and went straight to the shed where his horses and trap were. The coachman was asleep. He woke him up, told him to harness, and went into the passage. From the host's room came the sounds of a child crying, the despairing sobs of a woman, and the hoarse angry shouting of Ferapontov. The cook began running hither and thither in the passage like a frightened hen, just as Alpatych entered. "He's done her to death. Killed the mistress!... Beat her... dragged her about so!..." "What for?" asked Alpatych. "She kept begging to go away. She's a woman! 'Take me away,' says she, 'don't let me perish with my little children! Folks,' she says, 'are all gone, so why,' she says, 'don't we go?' And he began beating and pulling her about so!" At these words Alpatych nodded as if in approval, and not wishing to hear more went to the door of the room opposite the innkeeper's, where he had left his purchases. "You brute, you murderer!" screamed a thin, pale woman who, with a baby in her arms and her kerchief torn from her head, burst through the door at that moment and down the steps into the yard. Ferapontov came out after her, but on seeing Alpatych adjusted his waistcoat, smoothed his hair, yawned, and followed Alpatych into the opposite room. "Going already?" said he. Alpatych, without answering or looking at his host, sorted his packages and asked how much he owed. "We'll reckon up! Well, have you been to the Governor's?" asked Ferapontov. "What has been decided?" Alpatych replied that the Governor had not told him anything definite. "With our business, how can we get away?" said Ferapontov. "We'd have to pay seven rubles a cartload to Dorogobuzh and I tell them they're not Christians to ask it! Selivanov, now, did a good stroke last Thursday--sold flour to the army at nine rubles a sack. Will you have some tea?" he added. While the horses were being harnessed Alpatych and Ferapontov over their tea talked of the price of corn, the crops, and the good weather for harvesting. "Well, it seems to be getting quieter," remarked Ferapontov, finishing his third cup of tea and getting up. "Ours must have got the best of it. The orders were not to let them in. So we're in force, it seems.... They say the other day Matthew Ivanych Platov drove them into the river Marina and drowned some eighteen thousand in one day." Alpatych collected his parcels, handed them to the coachman who had come in, and settled up with the innkeeper. The noise of wheels, hoofs, and bells was heard from the gateway as a little trap passed out. It was by now late in the afternoon. Half the street was in shadow, the other half brightly lit by the sun. Alpatych looked out of the window and went to the door. Suddenly the strange sound of a far-off whistling and thud was heard, followed by a boom of cannon blending into a dull roar that set the windows rattling. He went out into the street: two men were running past toward the bridge. From different sides came whistling sounds and the thud of cannon balls and bursting shells falling on the town. But these sounds were hardly heard in comparison with the noise of the firing outside the town and attracted little attention from the inhabitants. The town was being bombarded by a hundred and thirty guns which Napoleon had ordered up after four o'clock. The people did not at once realize the meaning of this bombardment. At first the noise of the falling bombs and shells only aroused curiosity. Ferapontov's wife, who till then had not ceased wailing under the shed, became quiet and with the baby in her arms went to the gate, listening to the sounds and looking in silence at the people. The cook and a shop assistant came to the gate. With lively curiosity everyone tried to get a glimpse of the projectiles as they flew over their heads. Several people came round the corner talking eagerly. "What force!" remarked one. "Knocked the roof and ceiling all to splinters!" "Routed up the earth like a pig," said another. "That's grand, it bucks one up!" laughed the first. "Lucky you jumped aside, or it would have wiped you out!" Others joined those men and stopped and told how cannon balls had fallen on a house close to them. Meanwhile still more projectiles, now with the swift sinister whistle of a cannon ball, now with the agreeable intermittent whistle of a shell, flew over people's heads incessantly, but not one fell close by, they all flew over. Alpatych was getting into his trap. The innkeeper stood at the gate. "What are you staring at?" he shouted to the cook, who in her red skirt, with sleeves rolled up, swinging her bare elbows, had stepped to the corner to listen to what was being said. "What marvels!" she exclaimed, but hearing her master's voice she turned back, pulling down her tucked-up skirt. Once more something whistled, but this time quite close, swooping downwards like a little bird; a flame flashed in the middle of the street, something exploded, and the street was shrouded in smoke. "Scoundrel, what are you doing?" shouted the innkeeper, rushing to the cook. At that moment the pitiful wailing of women was heard from different sides, the frightened baby began to cry, and people crowded silently with pale faces round the cook. The loudest sound in that crowd was her wailing. "Oh-h-h! Dear souls, dear kind souls! Don't let me die! My good souls!..." Five minutes later no one remained in the street. The cook, with her thigh broken by a shell splinter, had been carried into the kitchen. Alpatych, his coachman, Ferapontov's wife and children and the house porter were all sitting in the cellar, listening. The roar of guns, the whistling of projectiles, and the piteous moaning of the cook, which rose above the other sounds, did not cease for a moment. The mistress rocked and hushed her baby and when anyone came into the cellar asked in a pathetic whisper what had become of her husband who had remained in the street. A shopman who entered told her that her husband had gone with others to the cathedral, whence they were fetching the wonder-working icon of Smolensk. Toward dusk the cannonade began to subside. Alpatych left the cellar and stopped in the doorway. The evening sky that had been so clear was clouded with smoke, through which, high up, the sickle of the new moon shone strangely. Now that the terrible din of the guns had ceased a hush seemed to reign over the town, broken only by the rustle of footsteps, the moaning, the distant cries, and the crackle of fires which seemed widespread everywhere. The cook's moans had now subsided. On two sides black curling clouds of smoke rose and spread from the fires. Through the streets soldiers in various uniforms walked or ran confusedly in different directions like ants from a ruined ant-hill. Several of them ran into Ferapontov's yard before Alpatych's eyes. Alpatych went out to the gate. A retreating regiment, thronging and hurrying, blocked the street. Noticing him, an officer said: "The town is being abandoned. Get away, get away!" and then, turning to the soldiers, shouted: "I'll teach you to run into the yards!" Alpatych went back to the house, called the coachman, and told him to set off. Ferapontov's whole household came out too, following Alpatych and the coachman. The women, who had been silent till then, suddenly began to wail as they looked at the fires--the smoke and even the flames of which could be seen in the failing twilight--and as if in reply the same kind of lamentation was heard from other parts of the street. Inside the shed Alpatych and the coachman arranged the tangled reins and traces of their horses with trembling hands. As Alpatych was driving out of the gate he saw some ten soldiers in Ferapontov's open shop, talking loudly and filling their bags and knapsacks with flour and sunflower seeds. Just then Ferapontov returned and entered his shop. On seeing the soldiers he was about to shout at them, but suddenly stopped and, clutching at his hair, burst into sobs and laughter: "Loot everything, lads! Don't let those devils get it!" he cried, taking some bags of flour himself and throwing them into the street. Some of the soldiers were frightened and ran away, others went on filling their bags. On seeing Alpatych, Ferapontov turned to him: "Russia is done for!" he cried. "Alpatych, I'll set the place on fire myself. We're done for!..." and Ferapontov ran into the yard. Soldiers were passing in a constant stream along the street blocking it completely, so that Alpatych could not pass out and had to wait. Ferapontov's wife and children were also sitting in a cart waiting till it was possible to drive out. Night had come. There were stars in the sky and the new moon shone out amid the smoke that screened it. On the sloping descent to the Dnieper Alpatych's cart and that of the innkeeper's wife, which were slowly moving amid the rows of soldiers and of other vehicles, had to stop. In a side street near the crossroads where the vehicles had stopped, a house and some shops were on fire. This fire was already burning itself out. The flames now died down and were lost in the black smoke, now suddenly flared up again brightly, lighting up with strange distinctness the faces of the people crowding at the crossroads. Black figures flitted about before the fire, and through the incessant crackling of the flames talking and shouting could be heard. Seeing that his trap would not be able to move on for some time, Alpatych got down and turned into the side street to look at the fire. Soldiers were continually rushing backwards and forwards near it, and he saw two of them and a man in a frieze coat dragging burning beams into another yard across the street, while others carried bundles of hay. Alpatych went up to a large crowd standing before a high barn which was blazing briskly. The walls were all on fire and the back wall had fallen in, the wooden roof was collapsing, and the rafters were alight. The crowd was evidently watching for the roof to fall in, and Alpatych watched for it too. "Alpatych!" a familiar voice suddenly hailed the old man. "Mercy on us! Your excellency!" answered Alpatych, immediately recognizing the voice of his young prince. Prince Andrew in his riding cloak, mounted on a black horse, was looking at Alpatych from the back of the crowd. "Why are you here?" he asked. "Your... your excellency," stammered Alpatych and broke into sobs. "Are we really lost? Master!..." "Why are you here?" Prince Andrew repeated. At that moment the flames flared up and showed his young master's pale worn face. Alpatych told how he had been sent there and how difficult it was to get away. "Are we really quite lost, your excellency?" he asked again. Prince Andrew without replying took out a notebook and raising his knee began writing in pencil on a page he tore out. He wrote to his sister: "Smolensk is being abandoned. Bald Hills will be occupied by the enemy within a week. Set off immediately for Moscow. Let me know at once when you will start. Send by special messenger to Usvyazh." Having written this and given the paper to Alpatych, he told him how to arrange for departure of the prince, the princess, his son, and the boy's tutor, and how and where to let him know immediately. Before he had had time to finish giving these instructions, a chief of staff followed by a suite galloped up to him. "You are a colonel?" shouted the chief of staff with a German accent, in a voice familiar to Prince Andrew. "Houses are set on fire in your presence and you stand by! What does this mean? You will answer for it!" shouted Berg, who was now assistant to the chief of staff of the commander of the left flank of the infantry of the first army, a place, as Berg said, "very agreeable and well en evidence." Prince Andrew looked at him and without replying went on speaking to Alpatych. "So tell them that I shall await a reply till the tenth, and if by the tenth I don't receive news that they have all got away I shall have to throw up everything and come myself to Bald Hills." "Prince," said Berg, recognizing Prince Andrew, "I only spoke because I have to obey orders, because I always do obey exactly.... You must please excuse me," he went on apologetically. Something cracked in the flames. The fire died down for a moment and wreaths of black smoke rolled from under the roof. There was another terrible crash and something huge collapsed. "Ou-rou-rou!" yelled the crowd, echoing the crash of the collapsing roof of the barn, the burning grain in which diffused a cakelike aroma all around. The flames flared up again, lighting the animated, delighted, exhausted faces of the spectators. The man in the frieze coat raised his arms and shouted: "It's fine, lads! Now it's raging... It's fine!" "That's the owner himself," cried several voices. "Well then," continued Prince Andrew to Alpatych, "report to them as I have told you"; and not replying a word to Berg who was now mute beside him, he touched his horse and rode down the side street. CHAPTER V From Smolensk the troops continued to retreat, followed by the enemy. On the tenth of August the regiment Prince Andrew commanded was marching along the highroad past the avenue leading to Bald Hills. Heat and drought had continued for more than three weeks. Each day fleecy clouds floated across the sky and occasionally veiled the sun, but toward evening the sky cleared again and the sun set in reddish-brown mist. Heavy night dews alone refreshed the earth. The unreaped corn was scorched and shed its grain. The marshes dried up. The cattle lowed from hunger, finding no food on the sun-parched meadows. Only at night and in the forests while the dew lasted was there any freshness. But on the road, the highroad along which the troops marched, there was no such freshness even at night or when the road passed through the forest; the dew was imperceptible on the sandy dust churned up more than six inches deep. As soon as day dawned the march began. The artillery and baggage wagons moved noiselessly through the deep dust that rose to the very hubs of the wheels, and the infantry sank ankle-deep in that soft, choking, hot dust that never cooled even at night. Some of this dust was kneaded by the feet and wheels, while the rest rose and hung like a cloud over the troops, settling in eyes, ears, hair, and nostrils, and worst of all in the lungs of the men and beasts as they moved along that road. The higher the sun rose the higher rose that cloud of dust, and through the screen of its hot fine particles one could look with naked eye at the sun, which showed like a huge crimson ball in the unclouded sky. There was no wind, and the men choked in that motionless atmosphere. They marched with handkerchiefs tied over their noses and mouths. When they passed through a village they all rushed to the wells and fought for the water and drank it down to the mud. Prince Andrew was in command of a regiment, and the management of that regiment, the welfare of the men and the necessity of receiving and giving orders, engrossed him. The burning of Smolensk and its abandonment made an epoch in his life. A novel feeling of anger against the foe made him forget his own sorrow. He was entirely devoted to the affairs of his regiment and was considerate and kind to his men and officers. In the regiment they called him "our prince," were proud of him and loved him. But he was kind and gentle only to those of his regiment, to Timokhin and the like--people quite new to him, belonging to a different world and who could not know and understand his past. As soon as he came across a former acquaintance or anyone from the staff, he bristled up immediately and grew spiteful, ironical, and contemptuous. Everything that reminded him of his past was repugnant to him, and so in his relations with that former circle he confined himself to trying to do his duty and not to be unfair. In truth everything presented itself in a dark and gloomy light to Prince Andrew, especially after the abandonment of Smolensk on the sixth of August (he considered that it could and should have been defended) and after his sick father had had to flee to Moscow, abandoning to pillage his dearly beloved Bald Hills which he had built and peopled. But despite this, thanks to his regiment, Prince Andrew had something to think about entirely apart from general questions. Two days previously he had received news that his father, son, and sister had left for Moscow; and though there was nothing for him to do at Bald Hills, Prince Andrew with a characteristic desire to foment his own grief decided that he must ride there. He ordered his horse to be saddled and, leaving his regiment on the march, rode to his father's estate where he had been born and spent his childhood. Riding past the pond where there used always to be dozens of women chattering as they rinsed their linen or beat it with wooden beetles, Prince Andrew noticed that there was not a soul about and that the little washing wharf, torn from its place and half submerged, was floating on its side in the middle of the pond. He rode to the keeper's lodge. No one at the stone entrance gates of the drive and the door stood open. Grass had already begun to grow on the garden paths, and horses and calves were straying in the English park. Prince Andrew rode up to the hothouse; some of the glass panes were broken, and of the trees in tubs some were overturned and others dried up. He called for Taras the gardener, but no one replied. Having gone round the corner of the hothouse to the ornamental garden, he saw that the carved garden fence was broken and branches of the plum trees had been torn off with the fruit. An old peasant whom Prince Andrew in his childhood had often seen at the gate was sitting on a green garden seat, plaiting a bast shoe. He was deaf and did not hear Prince Andrew ride up. He was sitting on the seat the old prince used to like to sit on, and beside him strips of bast were hanging on the broken and withered branch of a magnolia. Prince Andrew rode up to the house. Several limes in the old garden had been cut down and a piebald mare and her foal were wandering in front of the house among the rosebushes. The shutters were all closed, except at one window which was open. A little serf boy, seeing Prince Andrew, ran into the house. Alpatych, having sent his family away, was alone at Bald Hills and was sitting indoors reading the Lives of the Saints. On hearing that Prince Andrew had come, he went out with his spectacles on his nose, buttoning his coat, and, hastily stepping up, without a word began weeping and kissing Prince Andrew's knee. Then, vexed at his own weakness, he turned away and began to report on the position of affairs. Everything precious and valuable had been removed to Bogucharovo. Seventy quarters of grain had also been carted away. The hay and the spring corn, of which Alpatych said there had been a remarkable crop that year, had been commandeered by the troops and mown down while still green. The peasants were ruined; some of them too had gone to Bogucharovo, only a few remained. Without waiting to hear him out, Prince Andrew asked: "When did my father and sister leave?" meaning when did they leave for Moscow. Alpatych, understanding the question to refer to their departure for Bogucharovo, replied that they had left on the seventh and again went into details concerning the estate management, asking for instructions. "Am I to let the troops have the oats, and to take a receipt for them? We have still six hundred quarters left," he inquired. "What am I to say to him?" thought Prince Andrew, looking down on the old man's bald head shining in the sun and seeing by the expression on his face that the old man himself understood how untimely such questions were and only asked them to allay his grief. "Yes, let them have it," replied Prince Andrew. "If you noticed some disorder in the garden," said Alpatych, "it was impossible to prevent it. Three regiments have been here and spent the night, dragoons mostly. I took down the name and rank of their commanding officer, to hand in a complaint about it." "Well, and what are you going to do? Will you stay here if the enemy occupies the place?" asked Prince Andrew. Alpatych turned his face to Prince Andrew, looked at him, and suddenly with a solemn gesture raised his arm. "He is my refuge! His will be done!" he exclaimed. A group of bareheaded peasants was approaching across the meadow toward the prince. "Well, good-by!" said Prince Andrew, bending over to Alpatych. "You must go away too, take away what you can and tell the serfs to go to the Ryazan estate or to the one near Moscow." Alpatych clung to Prince Andrew's leg and burst into sobs. Gently disengaging himself, the prince spurred his horse and rode down the avenue at a gallop. The old man was still sitting in the ornamental garden, like a fly impassive on the face of a loved one who is dead, tapping the last on which he was making the bast shoe, and two little girls, running out from the hot house carrying in their skirts plums they had plucked from the trees there, came upon Prince Andrew. On seeing the young master, the elder one frightened look clutched her younger companion by the hand and hid with her behind a birch tree, not stopping to pick up some green plums they had dropped. Prince Andrew turned away with startled haste, unwilling to let them see that they had been observed. He was sorry for the pretty frightened little girl, was afraid of looking at her, and yet felt an irresistible desire to do so. A new sensation of comfort and relief came over him when, seeing these girls, he realized the existence of other human interests entirely aloof from his own and just as legitimate as those that occupied him. Evidently these girls passionately desired one thing--to carry away and eat those green plums without being caught--and Prince Andrew shared their wish for the success of their enterprise. He could not resist looking at them once more. Believing their danger past, they sprang from their ambush and, chirruping something in their shrill little voices and holding up their skirts, their bare little sunburned feet scampered merrily and quickly across the meadow grass. Prince Andrew was somewhat refreshed by having ridden off the dusty highroad along which the troops were moving. But not far from Bald Hills he again came out on the road and overtook his regiment at its halting place by the dam of a small pond. It was past one o'clock. The sun, a red ball through the dust, burned and scorched his back intolerably through his black coat. The dust always hung motionless above the buzz of talk that came from the resting troops. There was no wind. As he crossed the dam Prince Andrew smelled the ooze and freshness of the pond. He longed to get into that water, however dirty it might be, and he glanced round at the pool from whence came sounds of shrieks and laughter. The small, muddy, green pond had risen visibly more than a foot, flooding the dam, because it was full of the naked white bodies of soldiers with brick-red hands, necks, and faces, who were splashing about in it. All this naked white human flesh, laughing and shrieking, floundered about in that dirty pool like carp stuffed into a watering can, and the suggestion of merriment in that floundering mass rendered it specially pathetic. One fair-haired young soldier of the third company, whom Prince Andrew knew and who had a strap round the calf of one leg, crossed himself, stepped back to get a good run, and plunged into the water; another, a dark noncommissioned officer who was always shaggy, stood up to his waist in the water joyfully wriggling his muscular figure and snorted with satisfaction as he poured the water over his head with hands blackened to the wrists. There were sounds of men slapping one another, yelling, and puffing. Everywhere on the bank, on the dam, and in the pond, there was healthy, white, muscular flesh. The officer, Timokhin, with his red little nose, standing on the dam wiping himself with a towel, felt confused at seeing the prince, but made up his mind to address him nevertheless. "It's very nice, your excellency! Wouldn't you like to?" said he. "It's dirty," replied Prince Andrew, making a grimace. "We'll clear it out for you in a minute," said Timokhin, and, still undressed, ran off to clear the men out of the pond. "The prince wants to bathe." "What prince? Ours?" said many voices, and the men were in such haste to clear out that the prince could hardly stop them. He decided that he would rather wash himself with water in the barn. "Flesh, bodies, cannon fodder!" he thought, and he looked at his own naked body and shuddered, not from cold but from a sense of disgust and horror he did not himself understand, aroused by the sight of that immense number of bodies splashing about in the dirty pond. On the seventh of August Prince Bagration wrote as follows from his quarters at Mikhaylovna on the Smolensk road: Dear Count Alexis Andreevich--(He was writing to Arakcheev but knew that his letter would be read by the Emperor, and therefore weighed every word in it to the best of his ability.) I expect the Minister [Barclay de Tolly] has already reported the abandonment of Smolensk to the enemy. It is pitiable and sad, and the whole army is in despair that this most important place has been wantonly abandoned. I, for my part, begged him personally most urgently and finally wrote him, but nothing would induce him to consent. I swear to you on my honor that Napoleon was in such a fix as never before and might have lost half his army but could not have taken Smolensk. Our troops fought, and are fighting, as never before. With fifteen thousand men I held the enemy at bay for thirty-five hours and beat him; but he would not hold out even for fourteen hours. It is disgraceful, a stain on our army, and as for him, he ought, it seems to me, not to live. If he reports that our losses were great, it is not true; perhaps about four thousand, not more, and not even that; but even were they ten thousand, that's war! But the enemy has lost masses... What would it have cost him to hold out for another two days? They would have had to retire of their own accord, for they had no water for men or horses. He gave me his word he would not retreat, but suddenly sent instructions that he was retiring that night. We cannot fight in this way, or we may soon bring the enemy to Moscow... There is a rumor that you are thinking of peace. God forbid that you should make peace after all our sacrifices and such insane retreats! You would set all Russia against you and every one of us would feel ashamed to wear the uniform. If it has come to this--we must fight as long as Russia can and as long as there are men able to stand... One man ought to be in command, and not two. Your Minister may perhaps be good as a Minister, but as a general he is not merely bad but execrable, yet to him is entrusted the fate of our whole country.... I am really frantic with vexation; forgive my writing boldly. It is clear that the man who advocates the conclusion of a peace, and that the Minister should command the army, does not love our sovereign and desires the ruin of us all. So I write you frankly: call out the militia. For the Minister is leading these visitors after him to Moscow in a most masterly way. The whole army feels great suspicion of the Imperial aide-de-camp Wolzogen. He is said to be more Napoleon's man than ours, and he is always advising the Minister. I am not merely civil to him but obey him like a corporal, though I am his senior. This is painful, but, loving my benefactor and sovereign, I submit. Only I am sorry for the Emperor that he entrusts our fine army to such as he. Consider that on our retreat we have lost by fatigue and left in the hospital more than fifteen thousand men, and had we attacked this would not have happened. Tell me, for God's sake, what will Russia, our mother Russia, say to our being so frightened, and why are we abandoning our good and gallant Fatherland to such rabble and implanting feelings of hatred and shame in all our subjects? What are we scared at and of whom are we afraid? I am not to blame that the Minister is vacillating, a coward, dense, dilatory, and has all bad qualities. The whole army bewails it and calls down curses upon him... CHAPTER VI Among the innumerable categories applicable to the phenomena of human life one may discriminate between those in which substance prevails and those in which form prevails. To the latter--as distinguished from village, country, provincial, or even Moscow life--we may allot Petersburg life, and especially the life of its salons. That life of the salons is unchanging. Since the year 1805 we had made peace and had again quarreled with Bonaparte and had made constitutions and unmade them again, but the salons of Anna Pavlovna Helene remained just as they had been--the one seven and the other five years before. At Anna Pavlovna's they talked with perplexity of Bonaparte's successes just as before and saw in them and in the subservience shown to him by the European sovereigns a malicious conspiracy, the sole object of which was to cause unpleasantness and anxiety to the court circle of which Anna Pavlovna was the representative. And in Helene's salon, which Rumyantsev himself honored with his visits, regarding Helene as a remarkably intelligent woman, they talked with the same ecstasy in 1812 as in 1808 of the "great nation" and the "great man," and regretted our rupture with France, a rupture which, according to them, ought to be promptly terminated by peace. Of late, since the Emperor's return from the army, there had been some excitement in these conflicting salon circles and some demonstrations of hostility to one another, but each camp retained its own tendency. In Anna Pavlovna's circle only those Frenchmen were admitted who were deep-rooted legitimists, and patriotic views were expressed to the effect that one ought not to go to the French theater and that to maintain the French troupe was costing the government as much as a whole army corps. The progress of the war was eagerly followed, and only the reports most flattering to our army were circulated. In the French circle of Helene and Rumyantsev the reports of the cruelty of the enemy and of the war were contradicted and all Napoleon's attempts at conciliation were discussed. In that circle they discountenanced those who advised hurried preparations for a removal to Kazan of the court and the girls' educational establishments under the patronage of the Dowager Empress. In Helene's circle the war in general was regarded as a series of formal demonstrations which would very soon end in peace, and the view prevailed expressed by Bilibin--who now in Petersburg was quite at home in Helene's house, which every clever man was obliged to visit- that not by gunpowder but by those who invented it would matters be settled. In that circle the Moscow enthusiasm--news of which had reached Petersburg simultaneously with the Emperor's return--was ridiculed sarcastically and very cleverly, though with much caution. Anna Pavlovna's circle on the contrary was enraptured by this enthusiasm and spoke of it as Plutarch speaks of the deeds of the ancients. Prince Vasili, who still occupied his former important posts, formed a connecting link between these two circles. He visited his "good friend Anna Pavlovna" as well as his daughter's "diplomatic salon," and often in his constant comings and goings between the two camps became confused and said at Helene's what he should have said at Anna Pavlovna's and vice versa. Soon after the Emperor's return Prince Vasili in a conversation about the war at Anna Pavlovna's severely condemned Barclay de Tolly, but was undecided as to who ought to be appointed commander in chief. One of the visitors, usually spoken of as "a man of great merit," having described how he had that day seen Kutuzov, the newly chosen chief of the Petersburg militia, presiding over the enrollment of recruits at the Treasury, cautiously ventured to suggest that Kutuzov would be the man to satisfy all requirements. Anna Pavlovna remarked with a melancholy smile that Kutuzov had done nothing but cause the Emperor annoyance. "I have talked and talked at the Assembly of the Nobility," Prince Vasili interrupted, "but they did not listen to me. I told them his election as chief of the militia would not please the Emperor. They did not listen to me. "It's all this mania for opposition," he went on. "And who for? It is all because we want to ape the foolish enthusiasm of those Muscovites," Prince Vasili continued, forgetting for a moment that though at Helene's one had to ridicule the Moscow enthusiasm, at Anna Pavlovna's one had to be ecstatic about it. But he retrieved his mistake at once. "Now, is it suitable that Count Kutuzov, the oldest general in Russia, should preside at that tribunal? He will get nothing for his pains! How could they make a man commander in chief who cannot mount a horse, who drops asleep at a council, and has the very worst morals! A good reputation he made for himself at Bucharest! I don't speak of his capacity as a general, but at a time like this how they appoint a decrepit, blind old man, positively blind? A fine idea to have a blind general! He can't see anything. To play blindman's bluff? He can't see at all!" No one replied to his remarks. This was quite correct on the twenty-fourth of July. But on the twenty-ninth of July Kutuzov received the title of Prince. This might indicate a wish to get rid of him, and therefore Prince Vasili's opinion continued to be correct though he was not now in any hurry to express it. But on the eighth of August a committee, consisting of Field Marshal Saltykov, Arakcheev, Vyazmitinov, Lopukhin, and Kochubey met to consider the progress of the war. This committee came to the conclusion that our failures were due to a want of unity in the command and though the members of the committee were aware of the Emperor's dislike of Kutuzov, after a short deliberation they agreed to advise his appointment as commander in chief. That same day Kutuzov was appointed commander in chief with full powers over the armies and over the whole region occupied by them. On the ninth of August Prince Vasili at Anna Pavlovna's again met the "man of great merit." The latter was very attentive to Anna Pavlovna because he wanted to be appointed director of one of the educational establishments for young ladies. Prince Vasili entered the room with the air of a happy conqueror who has attained the object of his desires. "Well, have you heard the great news? Prince Kutuzov is field marshal! All dissensions are at an end! I am so glad, so delighted! At last we have a man!" said he, glancing sternly and significantly round at everyone in the drawing room. The "man of great merit," despite his desire to obtain the post of director, could not refrain from reminding Prince Vasili of his former opinion. Though this was impolite to Prince Vasili in Anna Pavlovna's drawing room, and also to Anna Pavlovna herself who had received the news with delight, he could not resist the temptation. "But, Prince, they say he is blind!" said he, reminding Prince Vasili of his own words. "Eh? Nonsense! He sees well enough," said Prince Vasili rapidly, in a deep voice and with a slight cough--the voice and cough with which he was wont to dispose of all difficulties. "He sees well enough," he added. "And what I am so pleased about," he went on, "is that our sovereign has given him full powers over all the armies and the whole region--powers no commander in chief ever had before. He is a second autocrat," he concluded with a victorious smile. "God grant it! God grant it!" said Anna Pavlovna. The "man of great merit," who was still a novice in court circles, wishing to flatter Anna Pavlovna by defending her former position on this question, observed: "It is said that the Emperor was reluctant to give Kutuzov those powers. They say he blushed like a girl to whom Joconde is read, when he said to Kutuzov: 'Your Emperor and the Fatherland award you this honor.'" "Perhaps the heart took no part in that speech," said Anna Pavlovna. "Oh, no, no!" warmly rejoined Prince Vasili, who would not now yield Kutuzov to anyone; in his opinion Kutuzov was not only admirable himself, but was adored by everybody. "No, that's impossible," said he, "for our sovereign appreciated him so highly before." "God grant only that Prince Kutuzov assumes real power and does not allow anyone to put a spoke in his wheel," observed Anna Pavlovna. Understanding at once to whom she alluded, Prince Vasili said in a whisper: "I know for a fact that Kutuzov made it an absolute condition that the Tsarevich should not be with the army. Do you know what he said to the Emperor?" And Prince Vasili repeated the words supposed to have been spoken by Kutuzov to the Emperor. "I can neither punish him if he does wrong nor reward him if he does right." "Oh, a very wise man is Prince Kutuzov! I have known him a long time!" "They even say," remarked the "man of great merit" who did not yet possess courtly tact, "that his excellency made it an express condition that the sovereign himself should not be with the army." As soon as he said this both Prince Vasili and Anna Pavlovna turned away from him and glanced sadly at one another with a sigh at his naivete. CHAPTER VII While this was taking place in Petersburg the French had already passed Smolensk and were drawing nearer and nearer to Moscow. Napoleon's historian Thiers, like other of his historians, trying to justify his hero says that he was drawn to the walls of Moscow against his will. He is as right as other historians who look for the explanation of historic events in the will of one man; he is as right as the Russian historians who maintain that Napoleon was drawn to Moscow by the skill of the Russian commanders. Here besides the law of retrospection, which regards all the past as a preparation for events that subsequently occur, the law of reciprocity comes in, confusing the whole matter. A good chessplayer having lost a game is sincerely convinced that his loss resulted from a mistake he made and looks for that mistake in the opening, but forgets that at each stage of the game there were similar mistakes and that none of his moves were perfect. He only notices the mistake to which he pays attention, because his opponent took advantage of it. How much more complex than this is the game of war, which occurs under certain limits of time, and where it is not one will that manipulates lifeless objects, but everything results from innumerable conflicts of various wills! After Smolensk Napoleon sought a battle beyond Dorogobuzh at Vyazma, and then at Tsarevo-Zaymishche, but it happened that owing to a conjunction of innumerable circumstances the Russians could not give battle till they reached Borodino, seventy miles from Moscow. From Vyazma Napoleon ordered a direct advance on Moscow. Moscou, la capitale asiatique de ce grand empire, la ville sacree des peuples d'Alexandre, Moscou avec ses innombrables eglises en forme de pagodes chinoises,* this Moscow gave Napoleon's imagination no rest. On the march from Vyazma to Tsarevo-Zaymishche he rode his light bay bobtailed ambler accompanied by his Guards, his bodyguard, his pages, and aides-de-camp. Berthier, his chief of staff, dropped behind to question a Russian prisoner captured by the cavalry. Followed by Lelorgne d'Ideville, an interpreter, he overtook Napoleon at a gallop and reined in his horse with an amused expression. *"Moscow, the Asiatic capital of this great empire, the sacred city of Alexander's people, Moscow with its innumerable churches shaped like Chinese pagodas." "Well?" asked Napoleon. "One of Platov's Cossacks says that Platov's corps is joining up with the main army and that Kutuzov has been appointed commander in chief. He is a very shrewd and garrulous fellow." Napoleon smiled and told them to give the Cossack a horse and bring the man to him. He wished to talk to him himself. Several adjutants galloped off, and an hour later, Lavrushka, the serf Denisov had handed over to Rostov, rode up to Napoleon in an orderly's jacket and on a French cavalry saddle, with a merry, and tipsy face. Napoleon told him to ride by his side and began questioning him. "You are a Cossack?" "Yes, a Cossack, your Honor." "The Cossack, not knowing in what company he was, for Napoleon's plain appearance had nothing about it that would reveal to an Oriental mind the presence of a monarch, talked with extreme familiarity of the incidents of the war," says Thiers, narrating this episode. In reality Lavrushka, having got drunk the day before and left his master dinnerless, had been whipped and sent to the village in quest of chickens, where he engaged in looting till the French took him prisoner. Lavrushka was one of those coarse, bare-faced lackeys who have seen all sorts of things, consider it necessary to do everything in a mean and cunning way, are ready to render any sort of service to their master, and are keen at guessing their master's baser impulses, especially those prompted by vanity and pettiness. Finding himself in the company of Napoleon, whose identity he had easily and surely recognized, Lavrushka was not in the least abashed but merely did his utmost to gain his new master's favor. He knew very well that this was Napoleon, but Napoleon's presence could no more intimidate him than Rostov's, or a sergeant major's with the rods, would have done, for he had nothing that either the sergeant major or Napoleon could deprive him of. So he rattled on, telling all the gossip he had heard among the orderlies. Much of it true. But when Napoleon asked him whether the Russians thought they would beat Bonaparte or not, Lavrushka screwed up his eyes and considered. In this question he saw subtle cunning, as men of his type see cunning in everything, so he frowned and did not answer immediately. "It's like this," he said thoughtfully, "if there's a battle soon, yours will win. That's right. But if three days pass, then after that, well, then that same battle will not soon be over." Lelorgne d'Ideville smilingly interpreted this speech to Napoleon thus: "If a battle takes place within the next three days the French will win, but if later, God knows what will happen." Napoleon did not smile, though he was evidently in high good humor, and he ordered these words to be repeated. Lavrushka noticed this and to entertain him further, pretending not to know who Napoleon was, added: "We know that you have Bonaparte and that he has beaten everybody in the world, but we are a different matter..."--without knowing why or how this bit of boastful patriotism slipped out at the end. The interpreter translated these words without the last phrase, and Bonaparte smiled. "The young Cossack made his mighty interlocutor smile," says Thiers. After riding a few paces in silence, Napoleon turned to Berthier and said he wished to see how the news that he was talking to the Emperor himself, to that very Emperor who had written his immortally victorious name on the Pyramids, would affect this enfant du Don.* *"Child of the Don." The fact was accordingly conveyed to Lavrushka. Lavrushka, understanding that this was done to perplex him and that Napoleon expected him to be frightened, to gratify his new masters promptly pretended to be astonished and awe-struck, opened his eyes wide, and assumed the expression he usually put on when taken to be whipped. "As soon as Napoleon's interpreter had spoken," says Thiers, "the Cossack, seized by amazement, did not utter another word, but rode on, his eyes fixed on the conqueror whose fame had reached him across the steppes of the East. All his loquacity was suddenly arrested and replaced by a naive and silent feeling of admiration. Napoleon, after making the Cossack a present, had him set free like a bird restored to its native fields." Napoleon rode on, dreaming of the Moscow that so appealed to his imagination, and "the bird restored to its native fields" galloped to our outposts, inventing on the way all that had not taken place but that he meant to relate to his comrades. What had really taken place he did not wish to relate because it seemed to him not worth telling. He found the Cossacks, inquired for the regiment operating with Platov's detachment and by evening found his master, Nicholas Rostov, quartered at Yankovo. Rostov was just mounting to go for a ride round the neighboring villages with Ilyin; he let Lavrushka have another horse and took him along with him. CHAPTER VIII Princess Mary was not in Moscow and out of danger as Prince Andrew supposed. After the return of Alpatych from Smolensk the old prince suddenly seemed to awake as from a dream. He ordered the militiamen to be called up from the villages and armed, and wrote a letter to the commander in chief informing him that he had resolved to remain at Bald Hills to the last extremity and to defend it, leaving to the commander in chief's discretion to take measures or not for the defense of Bald Hills, where one of Russia's oldest generals would be captured or killed, and he announced to his household that he would remain at Bald Hills. But while himself remaining, he gave instructions for the departure of the princess and Dessalles with the little prince to Bogucharovo and thence to Moscow. Princess Mary, alarmed by her father's feverish and sleepless activity after his previous apathy, could not bring herself to leave him alone and for the first time in her life ventured to disobey him. She refused to go away and her father's fury broke over her in a terrible storm. He repeated every injustice he had ever inflicted on her. Trying to convict her, he told her she had worn him out, had caused his quarrel with his son, had harbored nasty suspicions of him, making it the object of her life to poison his existence, and he drove her from his study telling her that if she did not go away it was all the same to him. He declared that he did not wish to remember her existence and warned her not to dare to let him see her. The fact that he did not, as she had feared, order her to be carried away by force but only told her not to let him see her cheered Princess Mary. She knew it was a proof that in the depth of his soul he was glad she was remaining at home and had not gone away. The morning after little Nicholas had left, the old prince donned his full uniform and prepared to visit the commander in chief. His caleche was already at the door. Princess Mary saw him walk out of the house in his uniform wearing all his orders and go down the garden to review his armed peasants and domestic serfs. She sat by the window listening to his voice which reached her from the garden. Suddenly several men came running up the avenue with frightened faces. Princess Mary ran out to the porch, down the flower-bordered path, and into the avenue. A large crowd of militiamen and domestics were moving toward her, and in their midst several men were supporting by the armpits and dragging along a little old man in a uniform and decorations. She ran up to him and, in the play of the sunlight that fell in small round spots through the shade of the lime-tree avenue, could not be sure what change there was in his face. All she could see was that his former stern and determined expression had altered to one of timidity and submission. On seeing his daughter he moved his helpless lips and made a hoarse sound. It was impossible to make out what he wanted. He was lifted up, carried to his study, and laid on the very couch he had so feared of late. The doctor, who was fetched that same night, bled him and said that the prince had had a seizure paralyzing his right side. It was becoming more and more dangerous to remain at Bald Hills, and next day they moved the prince to Bogucharovo, the doctor accompanying him. By the time they reached Bogucharovo, Dessalles and the little prince had already left for Moscow. For three weeks the old prince lay stricken by paralysis in the new house Prince Andrew had built at Bogucharovo, ever in the same state, getting neither better nor worse. He was unconscious and lay like a distorted corpse. He muttered unceasingly, his eyebrows and lips twitching, and it was impossible to tell whether he understood what was going on around him or not. One thing was certain--that he was suffering and wished to say something. But what it was, no one could tell: it might be some caprice of a sick and half-crazy man, or it might relate to public affairs, or possibly to family concerns. The doctor said this restlessness did not mean anything and was due to physical causes; but Princess Mary thought he wished to tell her something, and the fact that her presence always increased his restlessness confirmed her opinion. He was evidently suffering both physically and mentally. There was no hope of recovery. It was impossible for him to travel, it would not do to let him die on the road. "Would it not be better if the end did come, the very end?" Princess Mary sometimes thought. Night and day, hardly sleeping at all, she watched him and, terrible to say, often watched him not with hope of finding signs of improvement but wishing to find symptoms of the approach of the end. Strange as it was to her to acknowledge this feeling in herself, yet there it was. And what seemed still more terrible to her was that since her father's illness began (perhaps even sooner, when she stayed with him expecting something to happen), all the personal desires and hopes that had been forgotten or sleeping within her had awakened. Thoughts that had not entered her mind for years--thoughts of a life free from the fear of her father, and even the possibility of love and of family happiness--floated continually in her imagination like temptations of the devil. Thrust them aside as she would, questions continually recurred to her as to how she would order her life now, after that. These were temptations of the devil and Princess Mary knew it. She knew that the sole weapon against him was prayer, and she tried to pray. She assumed an attitude of prayer, looked at the icons, repeated the words of a prayer, but she could not pray. She felt that a different world had now taken possession of her--the life of a world of strenuous and free activity, quite opposed to the spiritual world in which till now she had been confined and in which her greatest comfort had been prayer. She could not pray, could not weep, and worldly cares took possession of her. It was becoming dangerous to remain in Bogucharovo. News of the approach of the French came from all sides, and in one village, ten miles from Bogucharovo, a homestead had been looted by French marauders. The doctor insisted on the necessity of moving the prince; the provincial Marshal of the Nobility sent an official to Princess Mary to persuade her to get away as quickly as possible, and the head of the rural police having come to Bogucharovo urged the same thing, saying that the French were only some twenty-five miles away, that French proclamations were circulating in the villages, and that if the princess did not take her father away before the fifteenth, he could not answer for the consequences. The princess decided to leave on the fifteenth. The cares of preparation and giving orders, for which everyone came to her, occupied her all day. She spent the night of the fourteenth as usual, without undressing, in the room next to the one where the prince lay. Several times, waking up, she heard his groans and muttering, the creak of his bed, and the steps of Tikhon and the doctor when they turned him over. Several times she listened at the door, and it seemed to her that his mutterings were louder than usual and that they turned him over oftener. She could not sleep and several times went to the door and listened, wishing to enter but not deciding to do so. Though he did not speak, Princess Mary saw and knew how unpleasant every sign of anxiety on his account was to him. She had noticed with what dissatisfaction he turned from the look she sometimes involuntarily fixed on him. She knew that her going in during the night at an unusual hour would irritate him. But never had she felt so grieved for him or so much afraid of losing him. She recalled all her life with him and in every word and act of his found an expression of his love of her. Occasionally amid these memories temptations of the devil would surge into her imagination: thoughts of how things would be after his death, and how her new, liberated life would be ordered. But she drove these thoughts away with disgust. Toward morning he became quiet and she fell asleep. She woke late. That sincerity which often comes with waking showed her clearly what chiefly concerned her about her father's illness. On waking she listened to what was going on behind the door and, hearing him groan, said to herself with a sigh that things were still the same. "But what could have happened? What did I want? I want his death!" she cried with a feeling of loathing for herself. She washed, dressed, said her prayers, and went out to the porch. In front of it stood carriages without horses and things were being packed into the vehicles. It was a warm, gray morning. Princess Mary stopped at the porch, still horrified by her spiritual baseness and trying to arrange her thoughts before going to her father. The doctor came downstairs and went out to her. "He is a little better today," said he. "I was looking for you. One can make out something of what he is saying. His head is clearer. Come in, he is asking for you..." Princess Mary's heart beat so violently at this news that she grew pale and leaned against the wall to keep from falling. To see him, talk to him, feel his eyes on her now that her whole soul was overflowing with those dreadful, wicked temptations, was a torment of joy and terror. "Come," said the doctor. Princess Mary entered her father's room and went up to his bed. He was lying on his back propped up high, and his small bony hands with their knotted purple veins were lying on the quilt; his left eye gazed straight before him, his right eye was awry, and his brows and lips motionless. He seemed altogether so thin, small, and pathetic. His face seemed to have shriveled or melted; his features had grown smaller. Princess Mary went up and kissed his hand. His left hand pressed hers so that she understood that he had long been waiting for her to come. He twitched her hand, and his brows and lips quivered angrily. She looked at him in dismay trying to guess what he wanted of her. When she changed her position so that his left eye could see her face he calmed down, not taking his eyes off her for some seconds. Then his lips and tongue moved, sounds came, and he began to speak, gazing timidly and imploringly at her, evidently afraid that she might not understand. Straining all her faculties Princess Mary looked at him. The comic efforts with which he moved his tongue made her drop her eyes and with difficulty repress the sobs that rose to her throat. He said something, repeating the same words several times. She could not understand them, but tried to guess what he was saying and inquiringly repeated the words he uttered. "Mmm...ar...ate...ate..." he repeated several times. It was quite impossible to understand these sounds. The doctor thought he had guessed them, and inquiringly repeated: "Mary, are you afraid?" The prince shook his head, again repeated the same sounds. "My mind, my mind aches?" questioned Princess Mary. He made a mumbling sound in confirmation of this, took her hand, and began pressing it to different parts of his breast as if trying to find the right place for it. "Always thoughts... about you... thoughts..." he then uttered much more clearly than he had done before, now that he was sure of being understood. Princess Mary pressed her head against his hand, trying to hide her sobs and tears. He moved his hand over her hair. "I have been calling you all night..." he brought out. "If only I had known..." she said through her tears. "I was afraid to come in." He pressed her hand. "Weren't you asleep?" "No, I did not sleep," said Princess Mary, shaking her head. Unconsciously imitating her father, she now tried to express herself as he did, as much as possible by signs, and her tongue too seemed to move with difficulty. "Dear one... Dearest..." Princess Mary could not quite make out what he had said, but from his look it was clear that he had uttered a tender caressing word such as he had never used to her before. "Why didn't you come in?" "And I was wishing for his death!" thought Princess Mary. He was silent awhile. "Thank you... daughter dear!... for all, for all... forgive!... thank you!... forgive!... thank you!..." and tears began to flow from his eyes. "Call Andrew!" he said suddenly, and a childish, timid expression of doubt showed itself on his face as he spoke. He himself seemed aware that his demand was meaningless. So at least it seemed to Princess Mary. "I have a letter from him," she replied. He glanced at her with timid surprise. "Where is he?" "He's with the army, Father, at Smolensk." He closed his eyes and remained silent a long time. Then as if in answer to his doubts and to confirm the fact that now he understood and remembered everything, he nodded his head and reopened his eyes. "Yes," he said, softly and distinctly. "Russia has perished. They've destroyed her." And he began to sob, and again tears flowed from his eyes. Princess Mary could no longer restrain herself and wept while she gazed at his face. Again he closed his eyes. His sobs ceased, he pointed to his eyes, and Tikhon, understanding him, wiped away the tears. Then he again opened his eyes and said something none of them could understand for a long time, till at last Tikhon understood and repeated it. Princess Mary had sought the meaning of his words in the mood in which he had just been speaking. She thought he was speaking of Russia, or Prince Andrew, of herself, of his grandson, or of his own death, and so she could not guess his words. "Put on your white dress. I like it," was what he said. Having understood this Princess Mary sobbed still louder, and the doctor taking her arm led her out to the veranda, soothing her and trying to persuade her to prepare for her journey. When she had left the room the prince again began speaking about his son, about the war, and about the Emperor, angrily twitching his brows and raising his hoarse voice, and then he had a second and final stroke. Princess Mary stayed on the veranda. The day had cleared, it was hot and sunny. She could understand nothing, think of nothing and feel nothing, except passionate love for her father, love such as she thought she had never felt till that moment. She ran out sobbing into the garden and as far as the pond, along the avenues of young lime trees Prince Andrew had planted. "Yes... I... I... I wished for his death! Yes, I wanted it to end quicker.... I wished to be at peace.... And what will become of me? What use will peace be when he is no longer here?" Princess Mary murmured, pacing the garden with hurried steps and pressing her hands to her bosom which heaved with convulsive sobs. When she had completed the tour of the garden, which brought her again to the house, she saw Mademoiselle Bourienne--who had remained at Bogucharovo and did not wish to leave it--coming toward her with a stranger. This was the Marshal of the Nobility of the district, who had come personally to point out to the princess the necessity for her prompt departure. Princess Mary listened without understanding him; she led him to the house, offered him lunch, and sat down with him. Then, excusing herself, she went to the door of the old prince's room. The doctor came out with an agitated face and said she could not enter. "Go away, Princess! Go away... go away!" She returned to the garden and sat down on the grass at the foot of the slope by the pond, where no one could see her. She did not know how long she had been there when she was aroused by the sound of a woman's footsteps running along the path. She rose and saw Dunyasha her maid, who was evidently looking for her, and who stopped suddenly as if in alarm on seeing her mistress. "Please come, Princess... The Prince," said Dunyasha in a breaking voice. "Immediately, I'm coming, I'm coming!" replied the princess hurriedly, not giving Dunyasha time to finish what she was saying, and trying to avoid seeing the girl she ran toward the house. "Princess, it's God's will! You must be prepared for everything," said the Marshal, meeting her at the house door. "Let me alone; it's not true!" she cried angrily to him. The doctor tried to stop her. She pushed him aside and ran to her father's door. "Why are these people with frightened faces stopping me? I don't want any of them! And what are they doing here?" she thought. She opened the door and the bright daylight in that previously darkened room startled her. In the room were her nurse and other women. They all drew back from the bed, making way for her. He was still lying on the bed as before, but the stern expression of his quiet face made Princess Mary stop short on the threshold. "No, he's not dead--it's impossible!" she told herself and approached him, and repressing the terror that seized her, she pressed her lips to his cheek. But she stepped back immediately. All the force of the tenderness she had been feeling for him vanished instantly and was replaced by a feeling of horror at what lay there before her. "No, he is no more! He is not, but here where he was is something unfamiliar and hostile, some dreadful, terrifying, and repellent mystery!" And hiding her face in her hands, Princess Mary sank into the arms of the doctor, who held her up. In the presence of Tikhon and the doctor the women washed what had been the prince, tied his head up with a handkerchief that the mouth should not stiffen while open, and with another handkerchief tied together the legs that were already spreading apart. Then they dressed him in uniform with his decorations and placed his shriveled little body on a table. Heaven only knows who arranged all this and when, but it all got done as if of its own accord. Toward night candles were burning round his coffin, a pall was spread over it, the floor was strewn with sprays of juniper, a printed band was tucked in under his shriveled head, and in a corner of the room sat a chanter reading the psalms. Just as horses shy and snort and gather about a dead horse, so the inmates of the house and strangers crowded into the drawing room round the coffin--the Marshal, the village Elder, peasant women--and all with fixed and frightened eyes, crossing themselves, bowed and kissed the old prince's cold and stiffened hand. CHAPTER IX Until Prince Andrew settled in Bogucharovo its owners had always been absentees, and its peasants were of quite a different character from those of Bald Hills. They differed from them in speech, dress, and disposition. They were called steppe peasants. The old prince used to approve of them for their endurance at work when they came to Bald Hills to help with the harvest or to dig ponds, and ditches, but he disliked them for their boorishness. Prince Andrew's last stay at Bogucharovo, when he introduced hospitals and schools and reduced the quitrent the peasants had to pay, had not softened their disposition but had on the contrary strengthened in them the traits of character the old prince called boorishness. Various obscure rumors were always current among them: at one time a rumor that they would all be enrolled as Cossacks; at another of a new religion to which they were all to be converted; then of some proclamation of the Tsar's and of an oath to the Tsar Paul in 1797 (in connection with which it was rumored that freedom had been granted them but the landowners had stopped it), then of Peter Fedorovich's return to the throne in seven years' time, when everything would be made free and so "simple" that there would be no restrictions. Rumors of the war with Bonaparte and his invasion were connected in their minds with the same sort of vague notions of Antichrist, the end of the world, and "pure freedom." In the vicinity of Bogucharovo were large villages belonging to the crown or to owners whose serfs paid quitrent and could work where they pleased. There were very few resident landlords in the neighborhood and also very few domestic or literate serfs, and in the lives of the peasantry of those parts the mysterious undercurrents in the life of the Russian people, the causes and meaning of which are so baffling to contemporaries, were more clearly and strongly noticeable than among others. One instance, which had occurred some twenty years before, was a movement among the peasants to emigrate to some unknown "warm rivers." Hundreds of peasants, among them the Bogucharovo folk, suddenly began selling their cattle and moving in whole families toward the southeast. As birds migrate to somewhere beyond the sea, so these men with their wives and children streamed to the southeast, to parts where none of them had ever been. They set off in caravans, bought their freedom one by one or ran away, and drove or walked toward the "warm rivers." Many of them were punished, some sent to Siberia, many died of cold and hunger on the road, many returned of their own accord, and the movement died down of itself just as it had sprung up, without apparent reason. But such undercurrents still existed among the people and gathered new forces ready to manifest themselves just as strangely, unexpectedly, and at the same time simply, naturally, and forcibly. Now in 1812, to anyone living in close touch with these people it was apparent that these undercurrents were acting strongly and nearing an eruption. Alpatych, who had reached Bogucharovo shortly before the old prince's death, noticed an agitation among the peasants, and that contrary to what was happening in the Bald Hills district, where over a radius of forty miles all the peasants were moving away and leaving their villages to be devastated by the Cossacks, the peasants in the steppe region round Bogucharovo were, it was rumored, in touch with the French, received leaflets from them that passed from hand to hand, and did not migrate. He learned from domestic serfs loyal to him that the peasant Karp, who possessed great influence in the village commune and had recently been away driving a government transport, had returned with news that the Cossacks were destroying deserted villages, but that the French did not harm them. Alpatych also knew that on the previous day another peasant had even brought from the village of Visloukhovo, which was occupied by the French, a proclamation by a French general that no harm would be done to the inhabitants, and if they remained they would be paid for anything taken from them. As proof of this the peasant had brought from Visloukhovo a hundred rubles in notes (he did not know that they were false) paid to him in advance for hay. More important still, Alpatych learned that on the morning of the very day he gave the village Elder orders to collect carts to move the princess' luggage from Bogucharovo, there had been a village meeting at which it had been decided not to move but to wait. Yet there was no time to waste. On the fifteenth, the day of the old prince's death, the Marshal had insisted on Princess Mary's leaving at once, as it was becoming dangerous. He had told her that after the sixteenth he could not be responsible for what might happen. On the evening of the day the old prince died the Marshal went away, promising to return next day for the funeral. But this he was unable to do, for he received tidings that the French had unexpectedly advanced, and had barely time to remove his own family and valuables from his estate. For some thirty years Bogucharovo had been managed by the village Elder, Dron, whom the old prince called by the diminutive "Dronushka." Dron was one of those physically and mentally vigorous peasants who grow big beards as soon as they are of age and go on unchanged till they are sixty or seventy, without a gray hair or the loss of a tooth, as straight and strong at sixty as at thirty. Soon after the migration to the "warm rivers," in which he had taken part like the rest, Dron was made village Elder and overseer of Bogucharovo, and had since filled that post irreproachably for twenty-three years. The peasants feared him more than they did their master. The masters, both the old prince and the young, and the steward respected him and jestingly called him "the Minister." During the whole time of his service Dron had never been drunk or ill, never after sleepless nights or the hardest tasks had he shown the least fatigue, and though he could not read he had never forgotten a single money account or the number of quarters of flour in any of the endless cartloads he sold for the prince, nor a single shock of the whole corn crop on any single acre of the Bogucharovo fields. Alpatych, arriving from the devastated Bald Hills estate, sent for his Dron on the day of the prince's funeral and told him to have twelve horses got ready for the princess' carriages and eighteen carts for the things to be removed from Bogucharovo. Though the peasants paid quitrent, Alpatych thought no difficulty would be made about complying with this order, for there were two hundred and thirty households at work in Bogucharovo and the peasants were well to do. But on hearing the order Dron lowered his eyes and remained silent. Alpatych named certain peasants he knew, from whom he told him to take the carts. Dron replied that the horses of these peasants were away carting. Alpatych named others, but they too, according to Dron, had no horses available: some horses were carting for the government, others were too weak, and others had died for want of fodder. It seemed that no horses could be had even for the carriages, much less for the carting. Alpatych looked intently at Dron and frowned. Just as Dron was a model village Elder, so Alpatych had not managed the prince's estates for twenty years in vain. He a model steward, possessing in the highest degree the faculty of divining the needs and instincts of those he dealt with. Having glanced at Dron he at once understood that his answers did not express his personal views but the general mood of the Bogucharovo commune, by which the Elder had already been carried away. But he also knew that Dron, who had acquired property and was hated by the commune, must be hesitating between the two camps: the masters' and the serfs'. He noticed this hesitation in Dron's look and therefore frowned and moved closer up to him. "Now just listen, Dronushka," said he. "Don't talk nonsense to me. His excellency Prince Andrew himself gave me orders to move all the people away and not leave them with the enemy, and there is an order from the Tsar about it too. Anyone who stays is a traitor to the Tsar. Do you hear?" "I hear," Dron answered without lifting his eyes. Alpatych was not satisfied with this reply. "Eh, Dron, it will turn out badly!" he said, shaking his head. "The power is in your hands," Dron rejoined sadly. "Eh, Dron, drop it!" Alpatych repeated, withdrawing his hand from his bosom and solemnly pointing to the floor at Dron's feet. "I can see through you and three yards into the ground under you," he continued, gazing at the floor in front of Dron. Dron was disconcerted, glanced furtively at Alpatych and again lowered his eyes. "You drop this nonsense and tell the people to get ready to leave their homes and go to Moscow and to get carts ready for tomorrow morning for the princess' things. And don't go to any meeting yourself, do you hear?" Dron suddenly fell on his knees. "Yakov Alpatych, discharge me! Take the keys from me and discharge me, for Christ's sake!" "Stop that!" cried Alpatych sternly. "I see through you and three yards under you," he repeated, knowing that his skill in beekeeping, his knowledge of the right time to sow the oats, and the fact that he had been able to retain the old prince's favor for twenty years had long since gained him the reputation of being a wizard, and that the power of seeing three yards under a man is considered an attribute of wizards. Dron got up and was about to say something, but Alpatych interrupted him. "What is it you have got into your heads, eh?... What are you thinking of, eh?" "What am I to do with the people?" said Dron. "They're quite beside themselves; I have already told them..." "'Told them,' I dare say!" said Alpatych. "Are they drinking?" he asked abruptly. "Quite beside themselves, Yakov Alpatych; they've fetched another barrel." "Well, then, listen! I'll go to the police officer, and you tell them so, and that they must stop this and the carts must be got ready." "I understand." Alpatych did not insist further. He had managed people for a long time and knew that the chief way to make them obey is to show no suspicion that they can possibly disobey. Having wrung a submissive "I understand" from Dron, Alpatych contented himself with that, though he not only doubted but felt almost certain that without the help of troops the carts would not be forthcoming. And so it was, for when evening came no carts had been provided. In the village, outside the drink shop, another meeting was being held, which decided that the horses should be driven out into the woods and the carts should not be provided. Without saying anything of this to the princess, Alpatych had his own belongings taken out of the carts which had arrived from Bald Hills and had those horses got ready for the princess' carriages. Meanwhile he went himself to the police authorities. CHAPTER X After her father's funeral Princess Mary shut herself up in her room and did not admit anyone. A maid came to the door to say that Alpatych was asking for orders about their departure. (This was before his talk with Dron.) Princess Mary raised herself on the sofa on which she had been lying and replied through the closed door that she did not mean to go away and begged to be left in peace. The windows of the room in which she was lying looked westward. She lay on the sofa with her face to the wall, fingering the buttons of the leather cushion and seeing nothing but that cushion, and her confused thoughts were centered on one subject--the irrevocability of death and her own spiritual baseness, which she had not suspected, but which had shown itself during her father's illness. She wished to pray but did not dare to, dared not in her present state of mind address herself to God. She lay for a long time in that position. The sun had reached the other side of the house, and its slanting rays shone into the open window, lighting up the room and part of the morocco cushion at which Princess Mary was looking. The flow of her thoughts suddenly stopped. Unconsciously she sat up, smoothed her hair, got up, and went to the window, involuntarily inhaling the freshness of the clear but windy evening. "Yes, you can well enjoy the evening now! He is gone and no one will hinder you," she said to herself, and sinking into a chair she let her head fall on the window sill. Someone spoke her name in a soft and tender voice from the garden and kissed her head. She looked up. It was Mademoiselle Bourienne in a black dress and weepers. She softly approached Princess Mary, sighed, kissed her, and immediately began to cry. The princess looked up at her. All their former disharmony and her own jealousy recurred to her mind. But she remembered too how he had changed of late toward Mademoiselle Bourienne and could not bear to see her, thereby showing how unjust were the reproaches Princess Mary had mentally addressed to her. "Besides, is it for me, for me who desired his death, to condemn anyone?" she thought. Princess Mary vividly pictured to herself the position of Mademoiselle Bourienne, whom she had of late kept at a distance, but who yet was dependent on her and living in her house. She felt sorry for her and held out her hand with a glance of gentle inquiry. Mademoiselle Bourienne at once began crying again and kissed that hand, speaking of the princess' sorrow and making herself a partner in it. She said her only consolation was the fact that the princess allowed her to share her sorrow, that all the old misunderstandings should sink into nothing but this great grief; that she felt herself blameless in regard to everyone, and that he, from above, saw her affection and gratitude. The princess heard her, not heeding her words but occasionally looking up at her and listening to the sound of her voice. "Your position is doubly terrible, dear princess," said Mademoiselle Bourienne after a pause. "I understand that you could not, and cannot, think of yourself, but with my love for you I must do so.... Has Alpatych been to you? Has he spoken to you of going away?" she asked. Princess Mary did not answer. She did not understand who was to go or where to. "Is it possible to plan or think of anything now? Is it not all the same?" she thought, and did not reply. "You know, chere Marie," said Mademoiselle Bourienne, "that we are in danger--are surrounded by the French. It would be dangerous to move now. If we go we are almost sure to be taken prisoners, and God knows..." Princess Mary looked at her companion without understanding what she was talking about. "Oh, if anyone knew how little anything matters to me now," she said. "Of course I would on no account wish to go away from him.... Alpatych did say something about going.... Speak to him; I can do nothing, nothing, and don't want to...." "I've spoken to him. He hopes we should be in time to get away tomorrow, but I think it would now be better to stay here," said Mademoiselle Bourienne. "Because, you will agree, chere Marie, to fall into the hands of the soldiers or of riotous peasants would be terrible." Mademoiselle Bourienne took from her reticule a proclamation (not printed on ordinary Russian paper) of General Rameau's, telling people not to leave their homes and that the French authorities would afford them proper protection. She handed this to the princess. "I think it would be best to appeal to that general," she continued, "and and am sure that all due respect would be shown you." Princess Mary read the paper, and her face began to quiver with stifled sobs. "From whom did you get this?" she asked. "They probably recognized that I am French, by my name," replied Mademoiselle Bourienne blushing. Princess Mary, with the paper in her hand, rose from the window and with a pale face went out of the room and into what had been Prince Andrew's study. "Dunyasha, send Alpatych, or Dronushka, or somebody to me!" she said, "and tell Mademoiselle Bourienne not to come to me," she added, hearing Mademoiselle Bourienne's voice. "We must go at once, at once!" she said, appalled at the thought of being left in the hands of the French. "If Prince Andrew heard that I was in the power of the French! That I, the daughter of Prince Nicholas Bolkonski, asked General Rameau for protection and accepted his favor!" This idea horrified her, made her shudder, blush, and feel such a rush of anger and pride as she had never experienced before. All that was distressing, and especially all that was humiliating, in her position rose vividly to her mind. "They, the French, would settle in this house: M. le General Rameau would occupy Prince Andrew's study and amuse himself by looking through and reading his letters and papers. Mademoiselle Bourienne would do the honors of Bogucharovo for him. I should be given a small room as a favor, the soldiers would violate my father's newly dug grave to steal his crosses and stars, they would tell me of their victories over the Russians, and would pretend to sympathize with my sorrow..." thought Princess Mary, not thinking her own thoughts but feeling bound to think like her father and her brother. For herself she did not care where she remained or what happened to her, but she felt herself the representative of her dead father and of Prince Andrew. Involuntarily she thought their thoughts and felt their feelings. What they would have said and what they would have done she felt bound to say and do. She went into Prince Andrew's study, trying to enter completely into his ideas, and considered her position. The demands of life, which had seemed to her annihilated by her father's death, all at once rose before her with a new, previously unknown force and took possession of her. Agitated and flushed she paced the room, sending now for Michael Ivanovich and now for Tikhon or Dron. Dunyasha, the nurse, and the other maids could not say in how far Mademoiselle Bourienne's statement was correct. Alpatych was not at home, he had gone to the police. Neither could the architect Michael Ivanovich, who on being sent for came in with sleepy eyes, tell Princess Mary anything. With just the same smile of agreement with which for fifteen years he had been accustomed to answer the old prince without expressing views of his own, he now replied to Princess Mary, so that nothing definite could be got from his answers. The old valet Tikhon, with sunken, emaciated face that bore the stamp of inconsolable grief, replied: "Yes, Princess" to all Princess Mary's questions and hardly refrained from sobbing as he looked at her. At length Dron, the village Elder, entered the room and with a deep bow to Princess Mary came to a halt by the doorpost. Princess Mary walked up and down the room and stopped in front of him. "Dronushka," she said, regarding as a sure friend this Dronushka who always used to bring a special kind of gingerbread from his visit to the fair at Vyazma every year and smilingly offer it to her, "Dronushka, now since our misfortune..." she began, but could not go on. "We are all in God's hands," said he, with a sigh. They were silent for a while. "Dronushka, Alpatych has gone off somewhere and I have no one to turn to. Is true, as they tell me, that I can't even go away?" "Why shouldn't you go away, your excellency? You can go," said Dron. "I was told it would be dangerous because of the enemy. Dear friend, I can do nothing. I understand nothing. I have nobody! I want to go away tonight or early tomorrow morning." Dron paused. He looked askance at Princess Mary and said: "There are no horses; I told Yakov Alpatych so." "Why are there none?" asked the princess. "It's all God's scourge," said Dron. "What horses we had have been taken for the army or have died--this is such a year! It's not a case of feeding horses--we may die of hunger ourselves! As it is, some go three days without eating. We've nothing, we've been ruined." Princess Mary listened attentively to what he told her. "The peasants are ruined? They have no bread?" she asked. "They're dying of hunger," said Dron. "It's not a case of carting." "But why didn't you tell me, Dronushka? Isn't it possible to help them? I'll do all I can...." To Princess Mary it was strange that now, at a moment when such sorrow was filling her soul, there could be rich people and poor, and the rich could refrain from helping the poor. She had heard vaguely that there was such a thing as "landlord's corn" which was sometimes given to the peasants. She also knew that neither her father nor her brother would refuse to help the peasants in need, she only feared to make some mistake in speaking about the distribution of the grain she wished to give. She was glad such cares presented themselves, enabling her without scruple to forget her own grief. She began asking Dron about the peasants' needs and what there was in Bogucharovo that belonged to the landlord. "But we have grain belonging to my brother?" she said. "The landlord's grain is all safe," replied Dron proudly. "Our prince did not order it to be sold." "Give it to the peasants, let them have all they need; I give you leave in my brother's name," said she. Dron made no answer but sighed deeply. "Give them that corn if there is enough of it. Distribute it all. I give this order in my brother's name; and tell them that what is ours is theirs. We do not grudge them anything. Tell them so." Dron looked intently at the princess while she was speaking. "Discharge me, little mother, for God's sake! Order the keys to be taken from me," said he. "I have served twenty-three years and have done no wrong. Discharge me, for God's sake!" Princess Mary did not understand what he wanted of her or why he was asking to be discharged. She replied that she had never doubted his devotion and that she was ready to do anything for him and for the peasants. CHAPTER XI An hour later Dunyasha came to tell the princess that Dron had come, and all the peasants had assembled at the barn by the princess' order and wished to have word with their mistress. "But I never told them to come," said Princess Mary. "I only told Dron to let them have the grain." "Only, for God's sake, Princess dear, have them sent away and don't go out to them. It's all a trick," said Dunyasha, "and when Yakov Alpatych returns let us get away... and please don't..." "What is a trick?" asked Princess Mary in surprise. "I know it is, only listen to me for God's sake! Ask nurse too. They say they don't agree to leave Bogucharovo as you ordered." "You're making some mistake. I never ordered them to go away," said Princess Mary. "Call Dronushka." Dron came and confirmed Dunyasha's words; the peasants had come by the princess' order. "But I never sent for them," declared the princess. "You must have given my message wrong. I only said that you were to give them the grain." Dron only sighed in reply. "If you order it they will go away," said he. "No, no. I'll go out to them," said Princess Mary, and in spite of the nurse's and Dunyasha's protests she went out into the porch; Dron, Dunyasha, the nurse, and Michael Ivanovich following her. "They probably think I am offering them the grain to bribe them to remain here, while I myself go away leaving them to the mercy of the French," thought Princess Mary. "I will offer them monthly rations and housing at our Moscow estate. I am sure Andrew would do even more in my place," she thought as she went out in the twilight toward the crowd standing on the pasture by the barn. The men crowded closer together, stirred, and rapidly took off their hats. Princess Mary lowered her eyes and, tripping over her skirt, came close up to them. So many different eyes, old and young, were fixed on her, and there were so many different faces, that she could not distinguish any of them and, feeling that she must speak to them all at once, did not know how to do it. But again the sense that she represented her father and her brother gave her courage, and she boldly began her speech. "I am very glad you have come," she said without raising her eyes, and feeling her heart beating quickly and violently. "Dronushka tells me that the war has ruined you. That is our common misfortune, and I shall grudge nothing to help you. I am myself going away because it is dangerous here... the enemy is near... because... I am giving you everything, my friends, and I beg you to take everything, all our grain, so that you may not suffer want! And if you have been told that I am giving you the grain to keep you here--that is not true. On the contrary, I ask you to go with all your belongings to our estate near Moscow, and I promise you I will see to it that there you shall want for nothing. You shall be given food and lodging." The princess stopped. Sighs were the only sound heard in the crowd. "I am not doing this on my own account," she continued, "I do it in the name of my dead father, who was a good master to you, and of my brother and his son." Again she paused. No one broke the silence. "Ours is a common misfortune and we will share it together. All that is mine is yours," she concluded, scanning the faces before her. All eyes were gazing at her with one and the same expression. She could not fathom whether it was curiosity, devotion, gratitude, or apprehension and distrust--but the expression on all the faces was identical. "We are all very thankful for your bounty, but it won't do for us to take the landlord's grain," said a voice at the back of the crowd. "But why not?" asked the princess. No one replied and Princess Mary, looking round at the crowd, found that every eye she met now was immediately dropped. "But why don't you want to take it?" she asked again. No one answered. The silence began to oppress the princess and she tried to catch someone's eye. "Why don't you speak?" she inquired of a very old man who stood just in front of her leaning on his stick. "If you think something more is wanted, tell me! I will do anything," said she, catching his eye. But as if this angered him, he bent his head quite low and muttered: "Why should we agree? We don't want the grain." "Why should we give up everything? We don't agree. Don't agree.... We are sorry for you, but we're not willing. Go away yourself, alone..." came from various sides of the crowd. And again all the faces in that crowd bore an identical expression, though now it was certainly not an expression of curiosity or gratitude, but of angry resolve. "But you can't have understood me," said Princess Mary with a sad smile. "Why don't you want to go? I promise to house and feed you, while here the enemy would ruin you..." But her voice was drowned by the voices of the crowd. "We're not willing. Let them ruin us! We won't take your grain. We don't agree." Again Princess Mary tried to catch someone's eye, but not a single eye in the crowd was turned to her; evidently they were all trying to avoid her look. She felt strange and awkward. "Oh yes, an artful tale! Follow her into slavery! Pull down your houses and go into bondage! I dare say! 'I'll give you grain, indeed!' she says," voices in the crowd were heard saying. With drooping head Princess Mary left the crowd and went back to the house. Having repeated her order to Dron to have horses ready for her departure next morning, she went to her room and remained alone with her own thoughts. CHAPTER XII For a long time that night Princess Mary sat by the open window of her room hearing the sound of the peasants' voices that reached her from the village, but it was not of them she was thinking. She felt that she could not understand them however much she might think about them. She thought only of one thing, her sorrow, which, after the break caused by cares for the present, seemed already to belong to the past. Now she could remember it and weep or pray. After sunset the wind had dropped. The night was calm and fresh. Toward midnight the voices began to subside, a cock crowed, the full moon began to show from behind the lime trees, a fresh white dewy mist began to rise, and stillness reigned over the village and the house. Pictures of the near past--her father's illness and last moments- rose one after another to her memory. With mournful pleasure she now lingered over these images, repelling with horror only the last one, the picture of his death, which she felt she could not contemplate even in imagination at this still and mystic hour of night. And these pictures presented themselves to her so clearly and in such detail that they seemed now present, now past, and now future. She vividly recalled the moment when he had his first stroke and was being dragged along by his armpits through the garden at Bald Hills, muttering something with his helpless tongue, twitching his gray eyebrows and looking uneasily and timidly at her. "Even then he wanted to tell me what he told me the day he died," she thought. "He had always thought what he said then." And she recalled in all its detail the night at Bald Hills before he had the last stroke, when with a foreboding of disaster she had remained at home against his will. She had not slept and had stolen downstairs on tiptoe, and going to the door of the conservatory where he slept that night had listened at the door. In a suffering and weary voice he was saying something to Tikhon, speaking of the Crimea and its warm nights and of the Empress. Evidently he had wanted to talk. "And why didn't he call me? Why didn't he let me be there instead of Tikhon?" Princess Mary had thought and thought again now. "Now he will never tell anyone what he had in his soul. Never will that moment return for him or for me when he might have said all he longed to say, and not Tikhon but I might have heard and understood him. Why didn't I enter the room?" she thought. "Perhaps he would then have said to me what he said the day he died. While talking to Tikhon he asked about me twice. He wanted to see me, and I was standing close by, outside the door. It was sad and painful for him to talk to Tikhon who did not understand him. I remember how he began speaking to him about Lise as if she were alive--he had forgotten she was dead--and Tikhon reminded him that she was no more, and he shouted, 'Fool!' He was greatly depressed. From behind the door I heard how he lay down on his bed groaning and loudly exclaimed, 'My God!' Why didn't I go in then? What could he have done to me? What could I have lost? And perhaps he would then have been comforted and would have said that word to me." And Princess Mary uttered aloud the caressing word he had said to her on the day of his death. "Dear-est!" she repeated, and began sobbing, with tears that relieved her soul. She now saw his face before her. And not the face she had known ever since she could remember and had always seen at a distance, but the timid, feeble face she had seen for the first time quite closely, with all its wrinkles and details, when she stooped near to his mouth to catch what he said. "Dear-est!" she repeated again. "What was he thinking when he uttered that word? What is he thinking now?" This question suddenly presented itself to her, and in answer she saw him before her with the expression that was on his face as he lay in his coffin with his chin bound up with a white handkerchief. And the horror that had seized her when she touched him and convinced herself that that was not he, but something mysterious and horrible, seized her again. She tried to think of something else and to pray, but could do neither. With wide-open eyes she gazed at the moonlight and the shadows, expecting every moment to see his dead face, and she felt that the silence brooding over the house and within it held her fast. "Dunyasha," she whispered. "Dunyasha!" she screamed wildly, and tearing herself out of this silence she ran to the servants' quarters to meet her old nurse and the maidservants who came running toward her. CHAPTER XIII On the seventeenth of August Rostov and Ilyin, accompanied by Lavrushka who had just returned from captivity and by an hussar orderly, left their quarters at Yankovo, ten miles from Bogucharovo, and went for a ride--to try a new horse Ilyin had bought and to find out whether there was any hay to be had in the villages. For the last three days Bogucharovo had lain between the two hostile armies, so that it was as easy for the Russian rearguard to get to it as for the French vanguard; Rostov, as a careful squadron commander, wished to take such provisions as remained at Bogucharovo before the French could get them. Rostov and Ilyin were in the merriest of moods. On the way to Bogucharovo, a princely estate with a dwelling house and farm where they hoped to find many domestic serfs and pretty girls, they questioned Lavrushka about Napoleon and laughed at his stories, and raced one another to try Ilyin's horse. Rostov had no idea that the village he was entering was the property of that very Bolkonski who had been engaged to his sister. Rostov and Ilyin gave rein to their horses for a last race along the incline before reaching Bogucharovo, and Rostov, outstripping Ilyin, was the first to gallop into the village street. "You're first!" cried Ilyin, flushed. "Yes, always first both on the grassland and here," answered Rostov, stroking his heated Donets horse. "And I'd have won on my Frenchy, your excellency," said Lavrushka from behind, alluding to his shabby cart horse, "only I didn't wish to mortify you." They rode at a footpace to the barn, where a large crowd of peasants was standing. Some of the men bared their heads, others stared at the new arrivals without doffing their caps. Two tall old peasants with wrinkled faces and scanty beards emerged from the tavern, smiling, staggering, and singing some incoherent song, and approached the officers. "Fine fellows!" said Rostov laughing. "Is there any hay here?" "And how like one another," said Ilyin. "A mo-o-st me-r-r-y co-o-m-pa...!" sang one of the peasants with a blissful smile. One of the men came out of the crowd and went up to Rostov. "Who do you belong to?" he asked. "The French," replied Ilyin jestingly, "and here is Napoleon himself"--and he pointed to Lavrushka. "Then you are Russians?" the peasant asked again. "And is there a large force of you here?" said another, a short man, coming up. "Very large," answered Rostov. "But why have you collected here?" he added. "Is it a holiday?" "The old men have met to talk over the business of the commune," replied the peasant, moving away. At that moment, on the road leading from the big house, two women and a man in a white hat were seen coming toward the officers. "The one in pink is mine, so keep off!" said Ilyin on seeing Dunyasha running resolutely toward him. "She'll be ours!" said Lavrushka to Ilyin, winking. "What do you want, my pretty?" said Ilyin with a smile. "The princess ordered me to ask your regiment and your name." "This is Count Rostov, squadron commander, and I am your humble servant." "Co-o-om-pa-ny!" roared the tipsy peasant with a beatific smile as he looked at Ilyin talking to the girl. Following Dunyasha, Alpatych advanced to Rostov, having bared his head while still at a distance. "May I make bold to trouble your honor?" said he respectfully, but with a shade of contempt for the youthfulness of this officer and with a hand thrust into his bosom. "My mistress, daughter of General in Chief Prince Nicholas Bolkonski who died on the fifteenth of this month, finding herself in difficulties owing to the boorishness of these people"--he pointed to the peasants--"asks you to come up to the house.... Won't you, please, ride on a little farther," said Alpatych with a melancholy smile, "as it is not convenient in the presence of...?" He pointed to the two peasants who kept as close to him as horseflies to a horse. "Ah!... Alpatych... Ah, Yakov Alpatych... Grand! Forgive us for Christ's sake, eh?" said the peasants, smiling joyfully at him. Rostov looked at the tipsy peasants and smiled. "Or perhaps they amuse your honor?" remarked Alpatych with a staid air, as he pointed at the old men with his free hand. "No, there's not much to be amused at here," said Rostov, and rode on a little way. "What's the matter?" he asked. "I make bold to inform your honor that the rude peasants here don't wish to let the mistress leave the estate, and threaten to unharness her horses, so that though everything has been packed up since morning, her excellency cannot get away." "Impossible!" exclaimed Rostov. "I have the honor to report to you the actual truth," said Alpatych. Rostov dismounted, gave his horse to the orderly, and followed Alpatych to the house, questioning him as to the state of affairs. It appeared that the princess' offer of corn to the peasants the previous day, and her talk with Dron and at the meeting, had actually had so bad an effect that Dron had finally given up the keys and joined the peasants and had not appeared when Alpatych sent for him; and that in the morning when the princess gave orders to harness for her journey, the peasants had come in a large crowd to the barn and sent word that they would not let her leave the village: that there was an order not to move, and that they would unharness the horses. Alpatych had gone out to admonish them, but was told (it was chiefly Karp who did the talking, Dron not showing himself in the crowd) that they could not let the princess go, that there was an order to the contrary, but that if she stayed they would serve her as before and obey her in everything. At the moment when Rostov and Ilyin were galloping along the road, Princess Mary, despite the dissuasions of Alpatych, her nurse, and the maids, had given orders to harness and intended to start, but when the cavalrymen were espied they were taken for Frenchmen, the coachman ran away, and the women in the house began to wail. "Father! Benefactor! God has sent you!" exclaimed deeply moved voices as Rostov passed through the anteroom. Princess Mary was sitting helpless and bewildered in the large sitting room, when Rostov was shown in. She could not grasp who he was and why he had come, or what was happening to her. When she saw his Russian face, and by his walk and the first words he uttered recognized him as a man of her own class, she glanced at him with her deep radiant look and began speaking in a voice that faltered and trembled with emotion. This meeting immediately struck Rostov as a romantic event. "A helpless girl overwhelmed with grief, left to the mercy of coarse, rioting peasants! And what a strange fate sent me here! What gentleness and nobility there are in her features and expression!" thought he as he looked at her and listened to her timid story. When she began to tell him that all this had happened the day after her father's funeral, her voiced trembled. She turned away, and then, as if fearing he might take her words as meant to move him to pity, looked at him with an apprehensive glance of inquiry. There were tears in Rostov's eyes. Princess Mary noticed this and glanced gratefully at him with that radiant look which caused the plainness of her face to be forgotten. "I cannot express, Princess, how glad I am that I happened to ride here and am able to show my readiness to serve you," said Rostov, rising. "Go when you please, and I give you my word of honor that no one shall dare to cause you annoyance if only you will allow me to act as your escort." And bowing respectfully, as if to a lady of royal blood, he moved toward the door. Rostov's deferential tone seemed to indicate that though he would consider himself happy to be acquainted with her, he did not wish to take advantage of her misfortunes to intrude upon her. Princess Mary understood this and appreciated his delicacy. "I am very, very grateful to you," she said in French, "but I hope it was all a misunderstanding and that no one is to blame for it." She suddenly began to cry. "Excuse me!" she said. Rostov, knitting his brows, left the room with another low bow. CHAPTER XIV "Well, is she pretty? Ah, friend--my pink one is delicious; her name is Dunyasha...." But on glancing at Rostov's face Ilyin stopped short. He saw that his hero and commander was following quite a different train of thought. Rostov glanced angrily at Ilyin and without replying strode off with rapid steps to the village. "I'll show them; I'll give it to them, the brigands!" said he to himself. Alpatych at a gliding trot, only just managing not to run, kept up with him with difficulty. "What decision have you been pleased to come to?" said he. Rostov stopped and, clenching his fists, suddenly and sternly turned on Alpatych. "Decision? What decision? Old dotard!..." cried he. "What have you been about? Eh? The peasants are rioting, and you can't manage them? You're a traitor yourself! I know you. I'll flay you all alive!..." And as if afraid of wasting his store of anger, he left Alpatych and went rapidly forward. Alpatych, mastering his offended feelings, kept pace with Rostov at a gliding gait and continued to impart his views. He said the peasants were obdurate and that at the present moment it would be imprudent to "overresist" them without an armed force, and would it not be better first to send for the military? "I'll give them armed force... I'll 'overresist' them!" uttered Rostov meaninglessly, breathless with irrational animal fury and the need to vent it. Without considering what he would do he moved unconciously with quick, resolute steps toward the crowd. And the nearer he drew to it the more Alpatych felt that this unreasonable action might produce good results. The peasants in the crowd were similarly impressed when they saw Rostov's rapid, firm steps and resolute, frowning face. After the hussars had come to the village and Rostov had gone to see the princess, a certain confusion and dissension had arisen among the crowd. Some of the peasants said that these new arrivals were Russians and might take it amiss that the mistress was being detained. Dron was of this opinion, but as soon as he expressed it Karp and others attacked their ex-Elder. "How many years have you been fattening on the commune?" Karp shouted at him. "It's all one to you! You'll dig up your pot of money and take it away with you.... What does it matter to you whether our homes are ruined or not?" "We've been told to keep order, and that no one is to leave their homes or take away a single grain, and that's all about it!" cried another. "It was your son's turn to be conscripted, but no fear! You begrudged your lump of a son," a little old man suddenly began attacking Dron--"and so they took my Vanka to be shaved for a soldier! But we all have to die." "To be sure, we all have to die. I'm not against the commune," said Dron. "That's it--not against it! You've filled your belly...." The two tall peasants had their say. As soon as Rostov, followed by Ilyin, Lavrushka, and Alpatych, came up to the crowd, Karp, thrusting his fingers into his belt and smiling a little, walked to the front. Dron on the contrary retired to the rear and the crowd drew closer together. "Who is your Elder here? Hey?" shouted Rostov, coming up to the crowd with quick steps. "The Elder? What do you want with him?..." asked Karp. But before the words were well out of his mouth, his cap flew off and a fierce blow jerked his head to one side. "Caps off, traitors!" shouted Rostov in a wrathful voice. "Where's the Elder?" he cried furiously. "The Elder.... He wants the Elder!... Dron Zakharych, you!" meek and flustered voices here and there were heard calling and caps began to come off their heads. "We don't riot, we're following the orders," declared Karp, and at that moment several voices began speaking together. "It's as the old men have decided--there's too many of you giving orders." "Arguing? Mutiny!... Brigands! Traitors!" cried Rostov unmeaningly in a voice not his own, gripping Karp by the collar. "Bind him, bind him!" he shouted, though there was no one to bind him but Lavrushka and Alpatych. Lavrushka, however, ran up to Karp and seized him by the arms from behind. "Shall I call up our men from beyond the hill?" he called out. Alpatych turned to the peasants and ordered two of them by name to come and bind Karp. The men obediently came out of the crowd and began taking off their belts. "Where's the Elder?" demanded Rostov in a loud voice. With a pale and frowning face Dron stepped out of the crowd. "Are you the Elder? Bind him, Lavrushka!" shouted Rostov, as if that order, too, could not possibly meet with any opposition. And in fact two more peasants began binding Dron, who took off his own belt and handed it to them, as if to aid them. "And you all listen to me!" said Rostov to the peasants. "Be off to your houses at once, and don't let one of your voices be heard!" "Why, we've not done any harm! We did it just out of foolishness. It's all nonsense... I said then that it was not in order," voices were heard bickering with one another. "There! What did I say?" said Alpatych, coming into his own again. "It's wrong, lads!" "All our stupidity, Yakov Alpatych," came the answers, and the crowd began at once to disperse through the village. The two bound men were led off to the master's house. The two drunken peasants followed them. "Aye, when I look at you!..." said one of them to Karp. "How can one talk to the masters like that? What were you thinking of, you fool?" added the other--"A real fool!" Two hours later the carts were standing in the courtyard of the Bogucharovo house. The peasants were briskly carrying out the proprietor's goods and packing them on the carts, and Dron, liberated at Princess Mary's wish from the cupboard where he had been confined, was standing in the yard directing the men. "Don't put it in so carelessly," said one of the peasants, a man with a round smiling face, taking a casket from a housemaid. "You know it has cost money! How can you chuck it in like that or shove it under the cord where it'll get rubbed? I don't like that way of doing things. Let it all be done properly, according to rule. Look here, put it under the bast matting and cover it with hay--that's the way!" "Eh, books, books!" said another peasant, bringing out Prince Andrew's library cupboards. "Don't catch up against it! It's heavy, lads--solid books." "Yes, they worked all day and didn't play!" remarked the tall, round-faced peasant gravely, pointing with a significant wink at the dictionaries that were on the top. Unwilling to obtrude himself on the princess, Rostov did not go back to the house but remained in the village awaiting her departure. When her carriage drove out of the house, he mounted and accompanied her eight miles from Bogucharovo to where the road was occupied by our troops. At the inn at Yankovo he respectfully took leave of her, for the first time permitting himself to kiss her hand. "How can you speak so!" he blushingly replied to Princess Mary's expressions of gratitude for her deliverance, as she termed what had occurred. "Any police officer would have done as much! If we had had only peasants to fight, we should not have let the enemy come so far," said he with a sense of shame and wishing to change the subject. "I am only happy to have had the opportunity of making your acquaintance. Good-by, Princess. I wish you happiness and consolation and hope to meet you again in happier circumstances. If you don't want to make me blush, please don't thank me!" But the princess, if she did not again thank him in words, thanked him with the whole expression of her face, radiant with gratitude and tenderness. She could not believe that there was nothing to thank him for. On the contrary, it seemed to her certain that had he not been there she would have perished at the hands of the mutineers and of the French, and that he had exposed himself to terrible and obvious danger to save her, and even more certain was it that he was a man of lofty and noble soul, able to understand her position and her sorrow. His kind, honest eyes, with the tears rising in them when she herself had begun to cry as she spoke of her loss, did leave her memory. When she had taken leave of him and remained alone she suddenly felt her eyes filling with tears, and then not for the first time the strange question presented itself to her: did she love him? On the rest of the way to Moscow, though the princess' position was not a cheerful one, Dunyasha, who went with her in the carriage, more than once noticed that her mistress leaned out of the window and smiled at something with an expression of mingled joy and sorrow. "Well, supposing I do love him?" thought Princess Mary. Ashamed as she was of acknowledging to herself that she had fallen in love with a man who would perhaps never love her, she comforted herself with the thought that no one would ever know it and that she would not be to blame if, without ever speaking of it to anyone, she continued to the end of her life to love the man with whom she had fallen in love for the first and last time in her life. Sometimes when she recalled his looks, his sympathy, and his words, happiness did not appear impossible to her. It was at those moments that Dunyasha noticed her smiling as she looked out of the carriage window. "Was it not fate that brought him to Bogucharovo, and at that very moment?" thought Princess Mary. "And that caused his sister to refuse my brother?" And in all this Princess Mary saw the hand of Providence. The impression the princess made on Rostov was a very agreeable one. To remember her gave him pleasure, and when his comrades, hearing of his adventure at Bogucharovo, rallied him on having gone to look for hay and having picked up one of the wealthiest heiresses in Russia, he grew angry. It made him angry just because the idea of marrying the gentle Princess Mary, who was attractive to him and had an enormous fortune, had against his will more than once entered his head. For himself personally Nicholas could not wish for a better wife: by marrying her he would make the countess his mother happy, would be able to put his father's affairs in order, and would even--he felt it- ensure Princess Mary's happiness. But Sonya? And his plighted word? That was why Rostov grew angry when he was rallied about Princess Bolkonskaya. CHAPTER XV On receiving command of the armies Kutuzov remembered Prince Andrew and sent an order for him to report at headquarters. Prince Andrew arrived at Tsarevo-Zaymishche on the very day and at the very hour that Kutuzov was reviewing the troops for the first time. He stopped in the village at the priest's house in front of which stood the commander in chief's carriage, and he sat down on the bench at the gate awaiting his Serene Highness, as everyone now called Kutuzov. From the field beyond the village came now sounds of regimental music and now the roar of many voices shouting "Hurrah!" to the new commander in chief. Two orderlies, a courier and a major-domo, stood near by, some ten paces from Prince Andrew, availing themselves of Kutuzov's absence and of the fine weather. A short, swarthy lieutenant colonel of hussars with thick mustaches and whiskers rode up to the gate and, glancing at Prince Andrew, inquired whether his Serene Highness was putting up there and whether he would soon be back. Prince Andrew replied that he was not on his Serene Highness' staff but was himself a new arrival. The lieutenant colonel turned to a smart orderly, who, with the peculiar contempt with which a commander in chief's orderly speaks to officers, replied: "What? His Serene Highness? I expect he'll be here soon. What do you want?" The lieutenant colonel of hussars smiled beneath his mustache at the orderly's tone, dismounted, gave his horse to a dispatch runner, and approached Bolkonski with a slight bow. Bolkonski made room for him on the bench and the lieutenant colonel sat down beside him. "You're also waiting for the commander in chief?" said he. "They say he weceives evewyone, thank God!... It's awful with those sausage eaters! Ermolov had weason to ask to be pwomoted to be a German! Now p'waps Wussians will get a look in. As it was, devil only knows what was happening. We kept wetweating and wetweating. Did you take part in the campaign?" he asked. "I had the pleasure," replied Prince Andrew, "not only of taking part in the retreat but of losing in that retreat all I held dear--not to mention the estate and home of my birth--my father, who died of grief. I belong to the province of Smolensk." "Ah? You're Pwince Bolkonski? Vewy glad to make your acquaintance! I'm Lieutenant Colonel Denisov, better known as 'Vaska,'" said Denisov, pressing Prince Andrew's hand and looking into his face with a particularly kindly attention. "Yes, I heard," said he sympathetically, and after a short pause added: "Yes, it's Scythian warfare. It's all vewy well--only not for those who get it in the neck. So you are Pwince Andwew Bolkonski?" He swayed his head. "Vewy pleased, Pwince, to make your acquaintance!" he repeated again, smiling sadly, and he again pressed Prince Andrew's hand. Prince Andrew knew Denisov from what Natasha had told him of her first suitor. This memory carried him sadly and sweetly back to those painful feelings of which he had not thought lately, but which still found place in his soul. Of late he had received so many new and very serious impressions--such as the retreat from Smolensk, his visit to Bald Hills, and the recent news of his father's death--and had experienced so many emotions, that for a long time past those memories had not entered his mind, and now that they did, they did not act on him with nearly their former strength. For Denisov, too, the memories awakened by the name of Bolkonski belonged to a distant, romantic past, when after supper and after Natasha's singing he had proposed to a little girl of fifteen without realizing what he was doing. He smiled at the recollection of that time and of his love for Natasha, and passed at once to what now interested him passionately and exclusively. This was a plan of campaign he had devised while serving at the outposts during the retreat. He had proposed that plan to Barclay de Tolly and now wished to propose it to Kutuzov. The plan was based on the fact that the French line of operation was too extended, and it proposed that instead of, or concurrently with, action on the front to bar the advance of the French, we should attack their line of communication. He began explaining his plan to Prince Andrew. "They can't hold all that line. It's impossible. I will undertake to bweak thwough. Give me five hundwed men and I will bweak the line, that's certain! There's only one way--guewilla warfare!" Denisov rose and began gesticulating as he explained his plan to Bolkonski. In the midst of his explanation shouts were heard from the army, growing more incoherent and more diffused, mingling with music and songs and coming from the field where the review was held. Sounds of hoofs and shouts were nearing the village. "He's coming! He's coming!" shouted a Cossack standing at the gate. Bolkonski and Denisov moved to the gate, at which a knot of soldiers (a guard of honor) was standing, and they saw Kutuzov coming down the street mounted on a rather small sorrel horse. A huge suite of generals rode behind him. Barclay was riding almost beside him, and a crowd of officers ran after and around them shouting, "Hurrah!" His adjutants galloped into the yard before him. Kutuzov was impatiently urging on his horse, which ambled smoothly under his weight, and he raised his hand to his white Horse Guard's cap with a red band and no peak, nodding his head continually. When he came up to the guard of honor, a fine set of Grenadiers mostly wearing decorations, who were giving him the salute, he looked at them silently and attentively for nearly a minute with the steady gaze of a commander and then turned to the crowd of generals and officers surrounding him. Suddenly his face assumed a subtle expression, he shrugged his shoulders with an air of perplexity. "And with such fine fellows to retreat and retreat! Well, good-by, General," he added, and rode into the yard past Prince Andrew and Denisov. "Hurrah! hurrah! hurrah!" shouted those behind him. Since Prince Andrew had last seen him Kutuzov had grown still more corpulent, flaccid, and fat. But the bleached eyeball, the scar, and the familiar weariness of his expression were still the same. He was wearing the white Horse Guard's cap and a military overcoat with a whip hanging over his shoulder by a thin strap. He sat heavily and swayed limply on his brisk little horse. "Whew... whew... whew!" he whistled just audibly as he rode into the yard. His face expressed the relief of relaxed strain felt by a man who means to rest after a ceremony. He drew his left foot out of the stirrup and, lurching with his whole body and puckering his face with the effort, raised it with difficulty onto the saddle, leaned on his knee, groaned, and slipped down into the arms of the Cossacks and adjutants who stood ready to assist him. He pulled himself together, looked round, screwing up his eyes, glanced at Prince Andrew, and, evidently not recognizing him, moved with his waddling gait to the porch. "Whew... whew... whew!" he whistled, and again glanced at Prince Andrew. As often occurs with old men, it was only after some seconds that the impression produced by Prince Andrew's face linked itself up with Kutuzov's remembrance of his personality. "Ah, how do you do, my dear prince? How do you do, my dear boy? Come along..." said he, glancing wearily round, and he stepped onto the porch which creaked under his weight. He unbuttoned his coat and sat down on a bench in the porch. "And how's your father?" "I received news of his death, yesterday," replied Prince Andrew abruptly. Kutuzov looked at him with eyes wide open with dismay and then took off his cap and crossed himself: "May the kingdom of Heaven be his! God's will be done to us all!" He sighed deeply, his whole chest heaving, and was silent for a while. "I loved him and respected him, and sympathize with you with all my heart." He embraced Prince Andrew, pressing him to his fat breast, and for some time did not let him go. When he released him Prince Andrew saw that Kutuzov's flabby lips were trembling and that tears were in his eyes. He sighed and pressed on the bench with both hands to raise himself. "Come! Come with me, we'll have a talk," said he. But at that moment Denisov, no more intimidated by his superiors than by the enemy, came with jingling spurs up the steps of the porch, despite the angry whispers of the adjutants who tried to stop him. Kutuzov, his hands still pressed on the seat, glanced at him glumly. Denisov, having given his name, announced that he had to communicate to his Serene Highness a matter of great importance for their country's welfare. Kutuzov looked wearily at him and, lifting his hands with a gesture of annoyance, folded them across his stomach, repeating the words: "For our country's welfare? Well, what is it? Speak!" Denisov blushed like a girl (it was strange to see the color rise in that shaggy, bibulous, time-worn face) and boldly began to expound his plan of cutting the enemy's lines of communication between Smolensk and Vyazma. Denisov came from those parts and knew the country well. His plan seemed decidedly a good one, especially from the strength of conviction with which he spoke. Kutuzov looked down at his own legs, occasionally glancing at the door of the adjoining hut as if expecting something unpleasant to emerge from it. And from that hut, while Denisov was speaking, a general with a portfolio under his arm really did appear. "What?" said Kutuzov, in the midst of Denisov's explanations, "are you ready so soon?" "Ready, your Serene Highness," replied the general. Kutuzov swayed his head, as much as to say: "How is one man to deal with it all?" and again listened to Denisov. "I give my word of honor as a Wussian officer," said Denisov, "that I can bweak Napoleon's line of communication!" "What relation are you to Intendant General Kiril Andreevich Denisov?" asked Kutuzov, interrupting him. "He is my uncle, your Sewene Highness." "Ah, we were friends," said Kutuzov cheerfully. "All right, all right, friend, stay here at the staff and tomorrow we'll have a talk." With a nod to Denisov he turned away and put out his hand for the papers Konovnitsyn had brought him. "Would not your Serene Highness like to come inside?" said the general on duty in a discontented voice, "the plans must be examined and several papers have to be signed." An adjutant came out and announced that everything was in readiness within. But Kutuzov evidently did not wish to enter that room till he was disengaged. He made a grimace... "No, tell them to bring a small table out here, my dear boy. I'll look at them here," said he. "Don't go away," he added, turning to Prince Andrew, who remained in the porch and listened to the general's report. While this was being given, Prince Andrew heard the whisper of a woman's voice and the rustle of a silk dress behind the door. Several times on glancing that way he noticed behind that door a plump, rosy, handsome woman in a pink dress with a lilac silk kerchief on her head, holding a dish and evidently awaiting the entrance of the commander in chief. Kutuzov's adjutant whispered to Prince Andrew that this was the wife of the priest whose home it was, and that she intended to offer his Serene Highness bread and salt. "Her husband has welcomed his Serene Highness with the cross at the church, and she intends to welcome him in the house.... She's very pretty," added the adjutant with a smile. At those words Kutuzov looked round. He was listening to the general's report--which consisted chiefly of a criticism of the position at Tsarevo-Zaymishche--as he had listened to Denisov, and seven years previously had listened to the discussion at the Austerlitz council of war. He evidently listened only because he had ears which, though there was a piece of tow in one of them, could not help hearing; but it was evident that nothing the general could say would surprise or even interest him, that he knew all that would be said beforehand, and heard it all only because he had to, as one has to listen to the chanting of a service of prayer. All that Denisov had said was clever and to the point. What the general was saying was even more clever and to the point, but it was evident that Kutuzov despised knowledge and cleverness, and knew of something else that would decide the matter--something independent of cleverness and knowledge. Prince Andrew watched the commander in chief's face attentively, and the only expression he could see there was one of boredom, curiosity as to the meaning of the feminine whispering behind the door, and a desire to observe propriety. It was evident that Kutuzov despised cleverness and learning and even the patriotic feeling shown by Denisov, but despised them not because of his own intellect, feelings, or knowledge--he did not try to display any of these--but because of something else. He despised them because of his old age and experience of life. The only instruction Kutuzov gave of his own accord during that report referred to looting by the Russian troops. At the end of the report the general put before him for signature a paper relating to the recovery of payment from army commanders for green oats mown down by the soldiers, when landowners lodged petitions for compensation. After hearing the matter, Kutuzov smacked his lips together and shook his head. "Into the stove... into the fire with it! I tell you once for all, my dear fellow," said he, "into the fire with all such things! Let them cut the crops and burn wood to their hearts' content. I don't order it or allow it, but I don't exact compensation either. One can't get on without it. 'When wood is chopped the chips will fly.'" He looked at the paper again. "Oh, this German precision!" he muttered, shaking his head. CHAPTER XVI "Well, that's all!" said Kutuzov as he signed the last of the documents, and rising heavily and smoothing out the folds in his fat white neck he moved toward the door with a more cheerful expression. The priest's wife, flushing rosy red, caught up the dish she had after all not managed to present at the right moment, though she had so long been preparing for it, and with a low bow offered it to Kutuzov. He screwed up his eyes, smiled, lifted her chin with his hand, and said: "Ah, what a beauty! Thank you, sweetheart!" He took some gold pieces from his trouser pocket and put them on the dish for her. "Well, my dear, and how are we getting on?" he asked, moving to the door of the room assigned to him. The priest's wife smiled, and with dimples in her rosy cheeks followed him into the room. The adjutant came out to the porch and asked Prince Andrew to lunch with him. Half an hour later Prince Andrew was again called to Kutuzov. He found him reclining in an armchair, still in the same unbuttoned overcoat. He had in his hand a French book which he closed as Prince Andrew entered, marking the place with a knife. Prince Andrew saw by the cover that it was Les Chevaliers du Cygne by Madame de Genlis. "Well, sit down, sit down here. Let's have a talk," said Kutuzov. "It's sad, very sad. But remember, my dear fellow, that I am a father to you, a second father...." Prince Andrew told Kutuzov all he knew of his father's death, and what he had seen at Bald Hills when he passed through it. "What... what they have brought us to!" Kutuzov suddenly cried in an agitated voice, evidently picturing vividly to himself from Prince Andrew's story the condition Russia was in. "But give me time, give me time!" he said with a grim look, evidently not wishing to continue this agitating conversation, and added: "I sent for you to keep you with me." "I thank your Serene Highness, but I fear I am no longer fit for the staff," replied Prince Andrew with a smile which Kutuzov noticed. Kutuzov glanced inquiringly at him. "But above all," added Prince Andrew, "I have grown used to my regiment, am fond of the officers, and I fancy the men also like me. I should be sorry to leave the regiment. If I decline the honor of being with you, believe me..." A shrewd, kindly, yet subtly derisive expression lit up Kutuzov's podgy face. He cut Bolkonski short. "I am sorry, for I need you. But you're right, you're right! It's not here that men are needed. Advisers are always plentiful, but men are not. The regiments would not be what they are if the would-be advisers served there as you do. I remember you at Austerlitz.... I remember, yes, I remember you with the standard!" said Kutuzov, and a flush of pleasure suffused Prince Andrew's face at this recollection. Taking his hand and drawing him downwards, Kutuzov offered his cheek to be kissed, and again Prince Andrew noticed tears in the old man's eyes. Though Prince Andrew knew that Kutuzov's tears came easily, and that he was particularly tender to and considerate of him from a wish to show sympathy with his loss, yet this reminder of Austerlitz was both pleasant and flattering to him. "Go your way and God be with you. I know your path is the path of honor!" He paused. "I missed you at Bucharest, but I needed someone to send." And changing the subject, Kutuzov began to speak of the Turkish war and the peace that had been concluded. "Yes, I have been much blamed," he said, "both for that war and the peace... but everything came at the right time. Tout vient a point a celui qui sait attendre.* And there were as many advisers there as here..." he went on, returning to the subject of "advisers" which evidently occupied him. "Ah, those advisers!" said he. "If we had listened to them all we should not have made peace with Turkey and should not have been through with that war. Everything in haste, but more haste, less speed. Kamenski would have been lost if he had not died. He stormed fortresses with thirty thousand men. It is not difficult to capture a fortress but it is difficult to win a campaign. For that, storming and attacking but patience and time are wanted. Kamenski sent soldiers to Rustchuk, but I only employed these two things and took more fortresses than Kamenski and made them but eat horseflesh!" He swayed his head. "And the French shall too, believe me," he went on, growing warmer and beating his chest, "I'll make them eat horseflesh!" And tears again dimmed his eyes. *"Everything comes in time to him who knows how to wait." "But shan't we have to accept battle?" remarked Prince Andrew. "We shall if everybody wants it; it can't be helped.... But believe me, my dear boy, there is nothing stronger than those two: patience and time, they will do it all. But the advisers n'entendent pas de cette oreille, voila le mal.* Some want a thing--others don't. What's one to do?" he asked, evidently expecting an answer. "Well, what do you want us to do?" he repeated and his eye shone with a deep, shrewd look. "I'll tell you what to do," he continued, as Prince Andrew still did not reply: "I will tell you what to do, and what I do. Dans le doute, mon cher," he paused, "abstiens-toi"*[2]--he articulated the French proverb deliberately. *"Don't see it that way, that's the trouble." *[2] "When in doubt, my dear fellow, do nothing." "Well, good-by, my dear fellow; remember that with all my heart I share your sorrow, and that for you I am not a Serene Highness, nor a prince, nor a commander in chief, but a father! If you want anything come straight to me. Good-by, my dear boy." Again he embraced and kissed Prince Andrew, but before the latter had left the room Kutuzov gave a sigh of relief and went on with his unfinished novel, Les Chevaliers du Cygne by Madame de Genlis. Prince Andrew could not have explained how or why it was, but after that interview with Kutuzov he went back to his regiment reassured as to the general course of affairs and as to the man to whom it had been entrusted. The more he realized the absence of all personal motive in that old man--in whom there seemed to remain only the habit of passions, and in place of an intellect (grouping events and drawing conclusions) only the capacity calmly to contemplate the course of events--the more reassured he was that everything would be as it should. "He will not bring in any plan of his own. He will not devise or undertake anything," thought Prince Andrew, "but he will hear everything, remember everything, and put everything in its place. He will not hinder anything useful nor allow anything harmful. He understands that there is something stronger and more important than his own will--the inevitable course of events, and he can see them and grasp their significance, and seeing that significance can refrain from meddling and renounce his personal wish directed to something else. And above all," thought Prince Andrew, "one believes in him because he's Russian, despite the novel by Genlis and the French proverbs, and because his voice shook when he said: 'What they have brought us to!' and had a sob in it when he said he would 'make them eat horseflesh!'" On such feelings, more or less dimly shared by all, the unanimity and general approval were founded with which, despite court influences, the popular choice of Kutuzov as commander in chief was received. CHAPTER XVII After the Emperor had left Moscow, life flowed on there in its usual course, and its course was so very usual that it was difficult to remember the recent days of patriotic elation and ardor, hard to believe that Russia was really in danger and that the members of the English Club were also sons of the Fatherland ready to sacrifice everything for it. The one thing that recalled the patriotic fervor everyone had displayed during the Emperor's stay was the call for contributions of men and money, a necessity that as soon as the promises had been made assumed a legal, official form and became unavoidable. With the enemy's approach to Moscow, the Moscovites' view of their situation did not grow more serious but on the contrary became even more frivolous, as always happens with people who see a great danger approaching. At the approach of danger there are always two voices that speak with equal power in the human soul: one very reasonably tells a man to consider the nature of the danger and the means of escaping it; the other, still more reasonably, says that it is too depressing and painful to think of the danger, since it is not in man's power to foresee everything and avert the general course of events, and it is therefore better to disregard what is painful till it comes, and to think about what is pleasant. In solitude a man generally listens to the first voice, but in society to the second. So it was now with the inhabitants of Moscow. It was long since people had been as gay in Moscow as that year. Rostopchin's broadsheets, headed by woodcuts of a drink shop, a potman, and a Moscow burgher called Karpushka Chigirin, "who--having been a militiaman and having had rather too much at the pub--heard that Napoleon wished to come to Moscow, grew angry, abused the French in very bad language, came out of the drink shop, and, under the sign of the eagle, began to address the assembled people," were read and discussed, together with the latest of Vasili Lvovich Pushkin's bouts rimes. In the corner room at the Club, members gathered to read these broadsheets, and some liked the way Karpushka jeered at the French, saying: "They will swell up with Russian cabbage, burst with our buckwheat porridge, and choke themselves with cabbage soup. They are all dwarfs and one peasant woman will toss three of them with a hayfork." Others did not like that tone and said it was stupid and vulgar. It was said that Rostopchin had expelled all Frenchmen and even all foreigners from Moscow, and that there had been some spies and agents of Napoleon among them; but this was told chiefly to introduce Rostopchin's witty remark on that occasion. The foreigners were deported to Nizhni by boat, and Rostopchin had said to them in French: "Rentrez en vousmemes; entrez dans la barque, et n'en faites pas une barque de Charon."* There was talk of all the government offices having been already removed from Moscow, and to this Shinshin's witticism was added--that for that alone Moscow ought to be grateful to Napoleon. It was said that Mamonov's regiment would cost him eight hundred thousand rubles, and that Bezukhov had spent even more on his, but that the best thing about Bezukhov's action was that he himself was going to don a uniform and ride at the head of his regiment without charging anything for the show. *"Think it over; get into the barque, and take care not to make it a barque of Charon." "You don't spare anyone," said Julie Drubetskaya as she collected and pressed together a bunch of raveled lint with her thin, beringed fingers. Julie was preparing to leave Moscow next day and was giving a farewell soiree. "Bezukhov est ridicule, but he is so kind and good-natured. What pleasure is there to be so caustique?" "A forfeit!" cried a young man in militia uniform whom Julie called "mon chevalier," and who was going with her to Nizhni. In Julie's set, as in many other circles in Moscow, it had been agreed that they would speak nothing but Russian and that those who made a slip and spoke French should pay fines to the Committee of Voluntary Contributions. "Another forfeit for a Gallicism," said a Russian writer who was present. "'What pleasure is there to be' is not Russian!" "You spare no one," continued Julie to the young man without heeding the author's remark. "For caustique--I am guilty and will pay, and I am prepared to pay again for the pleasure of telling you the truth. For Gallicisms I won't be responsible," she remarked, turning to the author: "I have neither the money nor the time, like Prince Galitsyn, to engage a master to teach me Russian!" "Ah, here he is!" she added. "Quand on... No, no," she said to the militia officer, "you won't catch me. Speak of the sun and you see its rays!" and she smiled amiably at Pierre. "We were just talking of you," she said with the facility in lying natural to a society woman. "We were saying that your regiment would be sure to be better than Mamonov's." "Oh, don't talk to me of my regiment," replied Pierre, kissing his hostess' hand and taking a seat beside her. "I am so sick of it." "You will, of course, command it yourself?" said Julie, directing a sly, sarcastic glance toward the militia officer. The latter in Pierre's presence had ceased to be caustic, and his face expressed perplexity as to what Julie's smile might mean. In spite of his absent-mindedness and good nature, Pierre's personality immediately checked any attempt to ridicule him to his face. "No," said Pierre, with a laughing glance at his big, stout body. "I should make too good a target for the French, besides I am afraid I should hardly be able to climb onto a horse." Among those whom Julie's guests happened to choose to gossip about were the Rostovs. "I hear that their affairs are in a very bad way," said Julie. "And he is so unreasonable, the count himself I mean. The Razumovskis wanted to buy his house and his estate near Moscow, but it drags on and on. He asks too much." "No, I think the sale will come off in a few days," said someone. "Though it is madness to buy anything in Moscow now." "Why?" asked Julie. "You don't think Moscow is in danger?" "Then why are you leaving?" "I? What a question! I am going because... well, because everyone is going: and besides--I am not Joan of Arc or an Amazon." "Well, of course, of course! Let me have some more strips of linen." "If he manages the business properly he will be able to pay off all his debts," said the militia officer, speaking of Rostov. "A kindly old man but not up to much. And why do they stay on so long in Moscow? They meant to leave for the country long ago. Natalie is quite well again now, isn't she?" Julie asked Pierre with a knowing smile. "They are waiting for their younger son," Pierre replied. "He joined Obolenski's Cossacks and went to Belaya Tserkov where the regiment is being formed. But now they have had him transferred to my regiment and are expecting him every day. The count wanted to leave long ago, but the countess won't on any account leave Moscow till her son returns." "I met them the day before yesterday at the Arkharovs'. Natalie has recovered her looks and is brighter. She sang a song. How easily some people get over everything!" "Get over what?" inquired Pierre, looking displeased. Julie smiled. "You know, Count, such knights as you are only found in Madame de Souza's novels." "What knights? What do you mean?" demanded Pierre, blushing. "Oh, come, my dear count! C'est la fable de tout Moscou. Je vous admire, ma parole d'honneur!"* *"It is the talk of all Moscow. My word, I admire you!" "Forfeit, forfeit!" cried the militia officer. "All right, one can't talk--how tiresome!" "What is 'the talk of all Moscow'?" Pierre asked angrily, rising to his feet. "Come now, Count, you know!" "I don't know anything about it," said Pierre. "I know you were friendly with Natalie, and so... but I was always more friendly with Vera--that dear Vera." "No, madame!" Pierre continued in a tone of displeasure, "I have not taken on myself the role of Natalie Rostova's knight at all, and have not been their house for nearly a month. But I cannot understand the cruelty..." "Qui s'excuse s'accuse,"* said Julie, smiling and waving the lint triumphantly, and to have the last word she promptly changed the subject. "Do you know what I heard today? Poor Mary Bolkonskaya arrived in Moscow yesterday. Do you know that she has lost her father?" *"Who excuses himself, accuses himself." "Really? Where is she? I should like very much to see her," said Pierre. "I spent the evening with her yesterday. She is going to their estate near Moscow either today or tomorrow morning, with her nephew." "Well, and how is she?" asked Pierre. "She is well, but sad. But do you know who rescued her? It is quite a romance. Nicholas Rostov! She was surrounded, and they wanted to kill her and had wounded some of her people. He rushed in and saved her...." "Another romance," said the militia officer. "Really, this general flight has been arranged to get all the old maids married off. Catiche is one and Princess Bolkonskaya another." "Do you know, I really believe she is un petit peu amoureuse du jeune homme."* *"A little bit in love with the young man." "Forfeit, forfeit, forfeit!" "But how could one say that in Russian?" CHAPTER XVIII When Pierre returned home he was handed two of Rostopchin's broadsheets that had been brought that day. The first declared that the report that Count Rostopchin had forbidden people to leave Moscow was false; on the contrary he was glad that ladies and tradesmen's wives were leaving the city. "There will be less panic and less gossip," ran the broadsheet "but I will stake my life on it that that will not enter Moscow." These words showed Pierre clearly for the first time that the French would enter Moscow. The second broadsheet stated that our headquarters were at Vyazma, that Count Wittgenstein had defeated the French, but that as many of the inhabitants of Moscow wished to be armed, weapons were ready for them at the arsenal: sabers, pistols, and muskets which could be had at a low price. The tone of the proclamation was not as jocose as in the former Chigirin talks. Pierre pondered over these broadsheets. Evidently the terrible stormcloud he had desired with the whole strength of his soul but which yet aroused involuntary horror in him was drawing near. "Shall I join the army and enter the service, or wait?" he asked himself for the hundredth time. He took a pack of cards that lay on the table and began to lay them out for a game of patience. "If this patience comes out," he said to himself after shuffling the cards, holding them in his hand, and lifting his head, "if it comes out, it means... what does it mean?" He had not decided what it should mean when he heard the voice of the eldest princess at the door asking whether she might come in. "Then it will mean that I must go to the army," said Pierre to himself. "Come in, come in!" he added to the princess. Only the eldest princess, the one with the stony face and long waist, was still living in Pierre's house. The two younger ones had both married. "Excuse my coming to you, cousin," she said in a reproachful and agitated voice. "You know some decision must be come to. What is going to happen? Everyone has left Moscow and the people are rioting. How is it that we are staying on?" "On the contrary, things seem satisfactory, ma cousine," said Pierre in the bantering tone he habitually adopted toward her, always feeling uncomfortable in the role of her benefactor. "Satisfactory, indeed! Very satisfactory! Barbara Ivanovna told me today how our troops are distinguishing themselves. It certainly does them credit! And the people too are quite mutinous--they no longer obey, even my maid has taken to being rude. At this rate they will soon begin beating us. One can't walk in the streets. But, above all, the French will be here any day now, so what are we waiting for? I ask just one thing of you, cousin," she went on, "arrange for me to be taken to Petersburg. Whatever I may be, I can't live under Bonaparte's rule." "Oh, come, ma cousine! Where do you get your information from? On the contrary..." "I won't submit to your Napoleon! Others may if they please.... If you don't want to do this..." "But I will, I'll give the order at once." The princess was apparently vexed at not having anyone to be angry with. Muttering to herself, she sat down on a chair. "But you have been misinformed," said Pierre. "Everything is quiet in the city and there is not the slightest danger. See! I've just been reading..." He showed her the broadsheet. "Count Rostopchin writes that he will stake his life on it that the enemy will not enter Moscow." "Oh, that count of yours!" said the princess malevolently. "He is a hypocrite, a rascal who has himself roused the people to riot. Didn't he write in those idiotic broadsheets that anyone, 'whoever it might be, should be dragged to the lockup by his hair'? (How silly!) 'And honor and glory to whoever captures him,' he says. This is what his cajolery has brought us to! Barbara Ivanovna told me the mob near killed her because she said something in French." "Oh, but it's so... You take everything so to heart," said Pierre, and began laying out his cards for patience. Although that patience did come out, Pierre did not join the army, but remained in deserted Moscow ever in the same state of agitation, irresolution, and alarm, yet at the same time joyfully expecting something terrible. Next day toward evening the princess set off, and Pierre's head steward came to inform him that the money needed for the equipment of his regiment could not be found without selling one of the estates. In general the head steward made out to Pierre that his project of raising a regiment would ruin him. Pierre listened to him, scarcely able to repress a smile. "Well then, sell it," said he. "What's to be done? I can't draw back now!" The worse everything became, especially his own affairs, the better was Pierre pleased and the more evident was it that the catastrophe he expected was approaching. Hardly anyone he knew was left in town. Julie had gone, and so had Princess Mary. Of his intimate friends only the Rostovs remained, but he did not go to see them. To distract his thoughts he drove that day to the village of Vorontsovo to see the great balloon Leppich was constructing to destroy the foe, and a trial balloon that was to go up next day. The balloon was not yet ready, but Pierre learned that it was being constructed by the Emperor's desire. The Emperor had written to Count Rostopchin as follows: As soon as Leppich is ready, get together a crew of reliable and intelligent men for his car and send a courier to General Kutuzov to let him know. I have informed him of the matter. Please impress upon Leppich to be very careful where he descends for the first time, that he may not make a mistake and fall into the enemy's hands. It is essential for him to combine his movements with those of the commander in chief. On his way home from Vorontsovo, as he was passing the Bolotnoe Place Pierre, seeing a large crowd round the Lobnoe Place, stopped and got out of his trap. A French cook accused of being a spy was being flogged. The flogging was only just over, and the executioner was releasing from the flogging bench a stout man with red whiskers, in blue stockings and a green jacket, who was moaning piteously. Another criminal, thin and pale, stood near. Judging by their faces they were both Frenchmen. With a frightened and suffering look resembling that on the thin Frenchman's face, Pierre pushed his way in through the crowd. "What is it? Who is it? What is it for?" he kept asking. But the attention of the crowd--officials, burghers, shopkeepers, peasants, and women in cloaks and in pelisses--was so eagerly centered on what was passing in Lobnoe Place that no one answered him. The stout man rose, frowned, shrugged his shoulders, and evidently trying to appear firm began to pull on his jacket without looking about him, but suddenly his lips trembled and he began to cry, in the way full-blooded grown-up men cry, though angry with himself for doing so. In the crowd people began talking loudly, to stifle their feelings of pity as it seemed to Pierre. "He's cook to some prince." "Eh, mounseer, Russian sauce seems to be sour to a Frenchman... sets his teeth on edge!" said a wrinkled clerk who was standing behind Pierre, when the Frenchman began to cry. The clerk glanced round, evidently hoping that his joke would be appreciated. Some people began to laugh, others continued to watch in dismay the executioner who was undressing the other man. Pierre choked, his face puckered, and he turned hastily away, went back to his trap muttering something to himself as he went, and took his seat. As they drove along he shuddered and exclaimed several times so audibly that the coachman asked him: "What is your pleasure?" "Where are you going?" shouted Pierre to the man, who was driving to Lubyanka Street. "To the Governor's, as you ordered," answered the coachman. "Fool! Idiot!" shouted Pierre, abusing his coachman--a thing he rarely did. "Home, I told you! And drive faster, blockhead!" "I must get away this very day," he murmured to himself. At the sight of the tortured Frenchman and the crowd surrounding the Lobnoe Place, Pierre had so definitely made up his mind that he could no longer remain in Moscow and would leave for the army that very day that it seemed to him that either he had told the coachman this or that the man ought to have known it for himself. On reaching home Pierre gave orders to Evstafey--his head coachman who knew everything, could do anything, and was known to all Moscow- that he would leave that night for the army at Mozhaysk, and that his saddle horses should be sent there. This could not all be arranged that day, so on Evstafey's representation Pierre had to put off his departure till next day to allow time for the relay horses to be sent on in advance. On the twenty-fourth the weather cleared up after a spell of rain, and after dinner Pierre left Moscow. When changing horses that night in Perkhushkovo, he learned that there had been a great battle that evening. (This was the battle of Shevardino.) He was told that there in Perkhushkovo the earth trembled from the firing, but nobody could answer his questions as to who had won. At dawn next day Pierre was approaching Mozhaysk. Every house in Mozhaysk had soldiers quartered in it, and at the hostel where Pierre was met by his groom and coachman there was no room to be had. It was full of officers. Everywhere in Mozhaysk and beyond it, troops were stationed or on the march. Cossacks, foot and horse soldiers, wagons, caissons, and cannon were everywhere. Pierre pushed forward as fast as he could, and the farther he left Moscow behind and the deeper he plunged into that sea of troops the more was he overcome by restless agitation and a new and joyful feeling he had not experienced before. It was a feeling akin to what he had felt at the Sloboda Palace during the Emperor's visit--a sense of the necessity of undertaking something and sacrificing something. He now experienced a glad consciousness that everything that constitutes men's happiness--the comforts of life, wealth, even life itself--is rubbish it is pleasant to throw away, compared with something... With what? Pierre could not say, and he did not try to determine for whom and for what he felt such particular delight in sacrificing everything. He was not occupied with the question of what to sacrifice for; the fact of sacrificing in itself afforded him a new and joyous sensation. CHAPTER XIX On the twenty-fourth of August the battle of the Shevardino Redoubt was fought, on the twenty-fifth not a shot was fired by either side, and on the twenty-sixth the battle of Borodino itself took place. Why and how were the battles of Shevardino and Borodino given and accepted? Why was the battle of Borodino fought? There was not the least sense in it for either the French or the Russians. Its immediate result for the Russians was, and was bound to be, that we were brought nearer to the destruction of Moscow--which we feared more than anything in the world; and for the French its immediate result was that they were brought nearer to the destruction of their whole army--which they feared more than anything in the world. What the result must be was quite obvious, and yet Napoleon offered and Kutuzov accepted that battle. If the commanders had been guided by reason, it would seem that it must have been obvious to Napoleon that by advancing thirteen hundred miles and giving battle with a probability of losing a quarter of his army, he was advancing to certain destruction, and it must have been equally clear to Kutuzov that by accepting battle and risking the loss of a quarter of his army he would certainly lose Moscow. For Kutuzov this was mathematically clear, as it is that if when playing draughts I have one man less and go on exchanging, I shall certainly lose, and therefore should not exchange. When my opponent has sixteen men and I have fourteen, I am only one eighth weaker than he, but when I have exchanged thirteen more men he will be three times as strong as I am. Before the battle of Borodino our strength in proportion to the French was about as five to six, but after that battle it was little more than one to two: previously we had a hundred thousand against a hundred and twenty thousand; afterwards little more than fifty thousand against a hundred thousand. Yet the shrewd and experienced Kutuzov accepted the battle, while Napoleon, who was said to be a commander of genius, gave it, losing a quarter of his army and lengthening his lines of communication still more. If it is said that he expected to end the campaign by occupying Moscow as he had ended a previous campaign by occupying Vienna, there is much evidence to the contrary. Napoleon's historians themselves tell us that from Smolensk onwards he wished to stop, knew the danger of his extended position, and knew that the occupation of Moscow would not be the end of the campaign, for he had seen at Smolensk the state in which Russian towns were left to him, and had not received a single reply to his repeated announcements of his wish to negotiate. In giving and accepting battle at Borodino, Kutuzov acted involuntarily and irrationally. But later on, to fit what had occurred, the historians provided cunningly devised evidence of the foresight and genius the generals who, of all the blind tools of history were the most enslaved and involuntary. The ancients have left us model heroic poems in which the heroes furnish the whole interest of the story, and we are still unable to accustom ourselves to the fact that for our epoch histories of that kind are meaningless. On the other question, how the battle of Borodino and the preceding battle of Shevardino were fought, there also exists a definite and well-known, but quite false, conception. All the historians describe the affair as follows: The Russian army, they say, in its retreat from Smolensk sought out for itself the best position for a general engagement and found such a position at Borodino. The Russians, they say, fortified this position in advance on the left of the highroad (from Moscow to Smolensk) and almost at a right angle to it, from Borodino to Utitsa, at the very place where the battle was fought. In front of this position, they say, a fortified outpost was set up on the Shevardino mound to observe the enemy. On the twenty-fourth, we are told, Napoleon attacked this advanced post and took it, and, on the twenty-sixth, attacked the whole Russian army, which was in position on the field of Borodino. So the histories say, and it is all quite wrong, as anyone who cares to look into the matter can easily convince himself. The Russians did not seek out the best position but, on the contrary, during the retreat passed many positions better than Borodino. They did not stop at any one of these positions because Kutuzov did not wish to occupy a position he had not himself chosen, because the popular demand for a battle had not yet expressed itself strongly enough, and because Miloradovich had not yet arrived with the militia, and for many other reasons. The fact is that other positions they had passed were stronger, and that the position at Borodino (the one where the battle was fought), far from being strong, was no more a position than any other spot one might find in the Russian Empire by sticking a pin into the map at hazard. Not only did the Russians not fortify the position on the field of Borodino to the left of, and at a right angle to, the highroad (that is, the position on which the battle took place), but never till the twenty-fifth of August, 1812, did they think that a battle might be fought there. This was shown first by the fact that there were no entrenchments there by the twenty fifth and that those begun on the twenty-fifth and twenty-sixth were not completed, and secondly, by the position of the Shevardino Redoubt. That redoubt was quite senseless in front of the position where the battle was accepted. Why was it more strongly fortified than any other post? And why were all efforts exhausted and six thousand men sacrificed to defend it till late at night on the twenty-fourth? A Cossack patrol would have sufficed to observe the enemy. Thirdly, as proof that the position on which the battle was fought had not been foreseen and that the Shevardino Redoubt was not an advanced post of that position, we have the fact that up to the twenty-fifth, Barclay de Tolly and Bagration were convinced that the Shevardino Redoubt was the left flank of the position, and that Kutuzov himself in his report, written in hot haste after the battle, speaks of the Shevardino Redoubt as the left flank of the position. It was much later, when reports on the battle of Borodino were written at leisure, that the incorrect and extraordinary statement was invented (probably to justify the mistakes of a commander in chief who had to be represented as infallible) that the Shevardino Redoubt was an advanced post--whereas in reality it was simply a fortified point on the left flank--and that the battle of Borodino was fought by us on an entrenched position previously selected, where as it was fought on a quite unexpected spot which was almost unentrenched. The case was evidently this: a position was selected along the river Kolocha--which crosses the highroad not at a right angle but at an acute angle--so that the left flank was at Shevardino, the right flank near the village of Novoe, and the center at Borodino at the confluence of the rivers Kolocha and Voyna. To anyone who looks at the field of Borodino without thinking of how the battle was actually fought, this position, protected by the river Kolocha, presents itself as obvious for an army whose object was to prevent an enemy from advancing along the Smolensk road to Moscow. Napoleon, riding to Valuevo on the twenty-fourth, did not see (as the history books say he did) the position of the Russians from Utitsa to Borodino (he could not have seen that position because it did not exist), nor did he see an advanced post of the Russian army, but while pursuing the Russian rearguard he came upon the left flank of the Russian position--at the Shevardino Redoubt--and unexpectedly for the Russians moved his army across the Kolocha. And the Russians, not having time to begin a general engagement, withdrew their left wing from the position they had intended to occupy and took up a new position which had not been foreseen and was not fortified. By crossing to the other side of the Kolocha to the left of the highroad, Napoleon shifted the whole forthcoming battle from right to left (looking from the Russian side) and transferred it to the plain between Utitsa, Semenovsk, and Borodino--a plain no more advantageous as a position than any other plain in Russia--and there the whole battle of the twenty-sixth of August took place. Had Napoleon not ridden out on the evening of the twenty-fourth to the Kolocha, and had he not then ordered an immediate attack on the redoubt but had begun the attack next morning, no one would have doubted that the Shevardino Redoubt was the left flank of our and the battle would have taken place where we expected it. In that case we should probably have defended the Shevardino Redoubt--our left flank--still more obstinately. We should have attacked Napoleon in the center or on the right, and the engagement would have taken place on the twenty-fifth, in the position we intended and had fortified. But as the attack on our left flank took place in the evening after the retreat of our rear guard (that is, immediately after the fight at Gridneva), and as the Russian commanders did not wish, or were not in time, to begin a general engagement then on the evening of the twenty-fourth, the first and chief action of the battle of Borodino was already lost on the twenty-fourth, and obviously led to the loss of the one fought on the twenty-sixth. After the loss of the Shevardino Redoubt, we found ourselves on the morning of the twenty-fifth without a position for our left flank, and were forced to bend it back and hastily entrench it where it chanced to be. Not only was the Russian army on the twenty-sixth defended by weak, unfinished entrenchments, but the disadvantage of that position was increased by the fact that the Russian commanders--not having fully realized what had happened, namely the loss of our position on the left flank and the shifting of the whole field of the forthcoming battle from right to left--maintained their extended position from the village of Novoe to Utitsa, and consequently had to move their forces from right to left during the battle. So it happened that throughout the whole battle the Russians opposed the entire French army launched against our left flank with but half as many men. (Poniatowski's action against Utitsa, and Uvarov's on the right flank against the French, were actions distinct from the main course of the battle.) So the battle of Borodino did not take place at all as (in an effort to conceal our commanders' mistakes even at the cost of diminishing the glory due to the Russian army and people) it has been described. The battle of Borodino was not fought on a chosen and entrenched position with forces only slightly weaker than those of the enemy, but, as a result of the loss of the Shevardino Redoubt, the Russians fought the battle of Borodino on an open and almost unentrenched position, with forces only half as numerous as the French; that is to say, under conditions in which it was not merely unthinkable to fight for ten hours and secure an indecisive result, but unthinkable to keep an army even from complete disintegration and flight. CHAPTER XX On the morning of the twenty-fifth Pierre was leaving Mozhaysk. At the descent of the high steep hill, down which a winding road led out of the town past the cathedral on the right, where a service was being held and the bells were ringing, Pierre got out of his vehicle and proceeded on foot. Behind him a cavalry regiment was coming down the hill preceded by its singers. Coming up toward him was a train of carts carrying men who had been wounded in the engagement the day before. The peasant drivers, shouting and lashing their horses, kept crossing from side to side. The carts, in each of which three or four wounded soldiers were lying or sitting, jolted over the stones that had been thrown on the steep incline to make it something like a road. The wounded, bandaged with rags, with pale cheeks, compressed lips, and knitted brows, held on to the sides of the carts as they were jolted against one another. Almost all of them stared with naive, childlike curiosity at Pierre's white hat and green swallow-tail coat. Pierre's coachman shouted angrily at the convoy of wounded to keep to one side of the road. The cavalry regiment, as it descended the hill with its singers, surrounded Pierre's carriage and blocked the road. Pierre stopped, being pressed against the side of the cutting in which the road ran. The sunshine from behind the hill did not penetrate into the cutting and there it was cold and damp, but above Pierre's head was the bright August sunshine and the bells sounded merrily. One of the carts with wounded stopped by the side of the road close to Pierre. The driver in his bast shoes ran panting up to it, placed a stone under one of its tireless hind wheels, and began arranging the breech-band on his little horse. One of the wounded, an old soldier with a bandaged arm who was following the cart on foot, caught hold of it with his sound hand and turned to look at Pierre. "I say, fellow countryman! Will they set us down here or take us on to Moscow?" he asked. Pierre was so deep in thought that he did not hear the question. He was looking now at the cavalry regiment that had met the convoy of wounded, now at the cart by which he was standing, in which two wounded men were sitting and one was lying. One of those sitting up in the cart had probably been wounded in the cheek. His whole head was wrapped in rags and one cheek was swollen to the size of a baby's head. His nose and mouth were twisted to one side. This soldier was looking at the cathedral and crossing himself. Another, a young lad, a fair-haired recruit as white as though there was no blood in his thin face, looked at Pierre kindly, with a fixed smile. The third lay prone so that his face was not visible. The cavalry singers were passing close by: Ah lost, quite lost... is my head so keen, Living in a foreign land. they sang their soldiers' dance song. As if responding to them but with a different sort of merriment, the metallic sound of the bells reverberated high above and the hot rays of the sun bathed the top of the opposite slope with yet another sort of merriment. But beneath the slope, by the cart with the wounded near the panting little nag where Pierre stood, it was damp, somber, and sad. The soldier with the swollen cheek looked angrily at the cavalry singers. "Oh, the coxcombs!" he muttered reproachfully. "It's not the soldiers only, but I've seen peasants today, too.... The peasants--even they have to go," said the soldier behind the cart, addressing Pierre with a sad smile. "No distinctions made nowadays.... They want the whole nation to fall on them--in a word, it's Moscow! They want to make an end of it." In spite of the obscurity of the soldier's words Pierre understood what he wanted to say and nodded approval. The road was clear again; Pierre descended the hill and drove on. He kept looking to either side of the road for familiar faces, but only saw everywhere the unfamiliar faces of various military men of different branches of the service, who all looked with astonishment at his white hat and green tail coat. Having gone nearly three miles he at last met an acquaintance and eagerly addressed him. This was one of the head army doctors. He was driving toward Pierre in a covered gig, sitting beside a young surgeon, and on recognizing Pierre he told the Cossack who occupied the driver's seat to pull up. "Count! Your excellency, how come you to be here?" asked the doctor. "Well, you know, I wanted to see..." "Yes, yes, there will be something to see...." Pierre got out and talked to the doctor, explaining his intention of taking part in a battle. The doctor advised him to apply direct to Kutuzov. "Why should you be God knows where out of sight, during the battle?" he said, exchanging glances with his young companion. "Anyhow his Serene Highness knows you and will receive you graciously. That's what you must do." The doctor seemed tired and in a hurry. "You think so?... Ah, I also wanted to ask you where our position is exactly?" said Pierre. "The position?" repeated the doctor. "Well, that's not my line. Drive past Tatarinova, a lot of digging is going on there. Go up the hillock and you'll see." "Can one see from there?... If you would..." But the doctor interrupted him and moved toward his gig. "I would go with you but on my honor I'm up to here"--and he pointed to his throat. "I'm galloping to the commander of the corps. How do matters stand?... You know, Count, there'll be a battle tomorrow. Out of an army of a hundred thousand we must expect at least twenty thousand wounded, and we haven't stretchers, or bunks, or dressers, or doctors enough for six thousand. We have ten thousand carts, but we need other things as well--we must manage as best we can!" The strange thought that of the thousands of men, young and old, who had stared with merry surprise at his hat (perhaps the very men he had noticed), twenty thousand were inevitably doomed to wounds and death amazed Pierre. "They may die tomorrow; why are they thinking of anything but death?" And by some latent sequence of thought the descent of the Mozhaysk hill, the carts with the wounded, the ringing bells, the slanting rays of the sun, and the songs of the cavalrymen vividly recurred to his mind. "The cavalry ride to battle and meet the wounded and do not for a moment think of what awaits them, but pass by, winking at the wounded. Yet from among these men twenty thousand are doomed to die, and they wonder at my hat! Strange!" thought Pierre, continuing his way to Tatarinova. In front of a landowner's house to the left of the road stood carriages, wagons, and crowds of orderlies and sentinels. The commander in chief was putting up there, but just when Pierre arrived he was not in and hardly any of the staff were there--they had gone to the church service. Pierre drove on toward Gorki. When he had ascended the hill and reached the little village street, he saw for the first time peasant militiamen in their white shirts and with crosses on their caps, who, talking and laughing loudly, animated and perspiring, were at work on a huge knoll overgrown with grass to the right of the road. Some of them were digging, others were wheeling barrowloads of earth along planks, while others stood about doing nothing. Two officers were standing on the knoll, directing the men. On seeing these peasants, who were evidently still amused by the novelty of their position as soldiers, Pierre once more thought of the wounded men at Mozhaysk and understood what the soldier had meant when he said: "They want the whole nation to fall on them." The sight of these bearded peasants at work on the battlefield, with their queer, clumsy boots and perspiring necks, and their shirts opening from the left toward the middle, unfastened, exposing their sunburned collarbones, impressed Pierre more strongly with the solemnity and importance of the moment than anything he had yet seen or heard. CHAPTER XXI Pierre stepped out of his carriage and, passing the toiling militiamen, ascended the knoll from which, according to the doctor, the battlefield could be seen. It was about eleven o'clock. The sun shone somewhat to the left and behind him and brightly lit up the enormous panorama which, rising like an amphitheater, extended before him in the clear rarefied atmosphere. From above on the left, bisecting that amphitheater, wound the Smolensk highroad, passing through a village with a white church some five hundred paces in front of the knoll and below it. This was Borodino. Below the village the road crossed the river by a bridge and, winding down and up, rose higher and higher to the village of Valuevo visible about four miles away, where Napoleon was then stationed. Beyond Valuevo the road disappeared into a yellowing forest on the horizon. Far in the distance in that birch and fir forest to the right of the road, the cross and belfry of the Kolocha Monastery gleamed in the sun. Here and there over the whole of that blue expanse, to right and left of the forest and the road, smoking campfires could be seen and indefinite masses of troops--ours and the enemy's. The ground to the right--along the course of the Kolocha and Moskva rivers--was broken and hilly. Between the hollows the villages of Bezubova and Zakharino showed in the distance. On the left the ground was more level; there were fields of grain, and the smoking ruins of Semenovsk, which had been burned down, could be seen. All that Pierre saw was so indefinite that neither the left nor the right side of the field fully satisfied his expectations. Nowhere could he see the battlefield he had expected to find, but only fields, meadows, troops, woods, the smoke of campfires, villages, mounds, and streams; and try as he would he could descry no military "position" in this place which teemed with life, nor could he even distinguish our troops from the enemy's. "I must ask someone who knows," he thought, and addressed an officer who was looking with curiosity at his huge unmilitary figure. "May I ask you," said Pierre, "what village that is in front?" "Burdino, isn't it?" said the officer, turning to his companion. "Borodino," the other corrected him. The officer, evidently glad of an opportunity for a talk, moved up to Pierre. "Are those our men there?" Pierre inquired. "Yes, and there, further on, are the French," said the officer. "There they are, there... you can see them." "Where? Where?" asked Pierre. "One can see them with the naked eye... Why, there!" The officer pointed with his hand to the smoke visible on the left beyond the river, and the same stern and serious expression that Pierre had noticed on many of the faces he had met came into his face. "Ah, those are the French! And over there?..." Pierre pointed to a knoll on the left, near which some troops could be seen. "Those are ours." "Ah, ours! And there?..." Pierre pointed to another knoll in the distance with a big tree on it, near a village that lay in a hollow where also some campfires were smoking and something black was visible. "That's his again," said the officer. (It was the Shevardino Redoubt.) "It was ours yesterday, but now it is his." "Then how about our position?" "Our position?" replied the officer with a smile of satisfaction. "I can tell you quite clearly, because I constructed nearly all our entrenchments. There, you see? There's our center, at Borodino, just there," and he pointed to the village in front of them with the white church. "That's where one crosses the Kolocha. You see down there where the rows of hay are lying in the hollow, there's the bridge. That's our center. Our right flank is over there"--he pointed sharply to the right, far away in the broken ground--"That's where the Moskva River is, and we have thrown up three redoubts there, very strong ones. The left flank..." here the officer paused. "Well, you see, that's difficult to explain.... Yesterday our left flank was there at Shevardino, you see, where the oak is, but now we have withdrawn our left wing--now it is over there, do you see that village and the smoke? That's Semenovsk, yes, there," he pointed to Raevski's knoll. "But the battle will hardly be there. His having moved his troops there is only a ruse; he will probably pass round to the right of the Moskva. But wherever it may be, many a man will be missing tomorrow!" he remarked. An elderly sergeant who had approached the officer while he was giving these explanations had waited in silence for him to finish speaking, but at this point, evidently not liking the officer's remark, interrupted him. "Gabions must be sent for," said he sternly. The officer appeared abashed, as though he understood that one might think of how many men would be missing tomorrow but ought not to speak to speak of it. "Well, send number three company again," the officer replied hurriedly. "And you, are you one of the doctors?" "No, I've come on my own," answered Pierre, and he went down the hill again, passing the militiamen. "Oh, those damned fellows!" muttered the officer who followed him, holding his nose as he ran past the men at work. "There they are... bringing her, coming... There they are... They'll be here in a minute..." voices were suddenly heard saying; and officers, soldiers, and militiamen began running forward along the road. A church procession was coming up the hill from Borodino. First along the dusty road came the infantry in ranks, bareheaded and with arms reversed. From behind them came the sound of church singing. Soldiers and militiamen ran bareheaded past Pierre toward the procession. "They are bringing her, our Protectress!... The Iberian Mother of God!" someone cried. "The Smolensk Mother of God," another corrected him. The militiamen, both those who had been in the village and those who had been at work on the battery, threw down their spades and ran to meet the church procession. Following the battalion that marched along the dusty road came priests in their vestments--one little old man in a hood with attendants and singers. Behind them soldiers and officers bore a large, dark-faced icon with an embossed metal cover. This was the icon that had been brought from and had since accompanied the army. Behind, before, and on both sides, crowds of militiamen with bared heads walked, ran, and bowed to the ground. At the summit of the hill they stopped with the icon; the men who had been holding it up by the linen bands attached to it were relieved by others, the chanters relit their censers, and service began. The hot rays of the sun beat down vertically and a fresh soft wind played with the hair of the bared heads and with the ribbons decorating the icon. The singing did not sound loud under the open sky. An immense crowd of bareheaded officers, soldiers, and militiamen surrounded the icon. Behind the priest and a chanter stood the notabilities on a spot reserved for them. A bald general with general with a St. George's Cross on his neck stood just behind the priest's back, and without crossing himself (he was evidently a German) patiently awaited the end of the service, which he considered it necessary to hear to the end, probably to arouse the patriotism of the Russian people. Another general stood in a martial pose, crossing himself by shaking his hand in front of his chest while looking about him. Standing among the crowd of peasants, Pierre recognized several acquaintances among these notables, but did not look at them--his whole attention was absorbed in watching the serious expression on the faces of the crowd of soldiers and militiamen who were all gazing eagerly at the icon. As soon as the tired chanters, who were singing the service for the twentieth time that day, began lazily and mechanically to sing: "Save from calamity Thy servants, O Mother of God," and the priest and deacon chimed in: "For to Thee under God we all flee as to an inviolable bulwark and protection," there again kindled in all those faces the same expression of consciousness of the solemnity of the impending moment that Pierre had seen on the faces at the foot of the hill at Mozhaysk and momentarily on many and many faces he had met that morning; and heads were bowed more frequently and hair tossed back, and sighs and the sound men made as they crossed themselves were heard. The crowd round the icon suddenly parted and pressed against Pierre. Someone, a very important personage judging by the haste with which way was made for him, was approaching the icon. It was Kutuzov, who had been riding round the position and on his way back to Tatarinova had stopped where the service was being held. Pierre recognized him at once by his peculiar figure, which distinguished him from everybody else. With a long overcoat on his his exceedingly stout, round-shouldered body, with uncovered white head and puffy face showing the white ball of the eye he had lost, Kutuzov walked with plunging, swaying gait into the crowd and stopped behind the priest. He crossed himself with an accustomed movement, bent till he touched the ground with his hand, and bowed his white head with a deep sigh. Behind Kutuzov was Bennigsen and the suite. Despite the presence of the commander in chief, who attracted the attention of all the superior officers, the militiamen and soldiers continued their prayers without looking at him. When the service was over, Kutuzov stepped up to the icon, sank heavily to his knees, bowed to the ground, and for a long time tried vainly to rise, but could not do so on account of his weakness and weight. His white head twitched with the effort. At last he rose, kissed the icon as a child does with naively pouting lips, and again bowed till he touched the ground with his hand. The other generals followed his example, then the officers, and after them with excited faces, pressing on one another, crowding, panting, and pushing, scrambled the soldiers and militiamen. CHAPTER XXII Staggering amid the crush, Pierre looked about him. "Count Peter Kirilovich! How did you get here?" said a voice. Pierre looked round. Boris Drubetskoy, brushing his knees with his hand (he had probably soiled them when he, too, had knelt before the icon), came up to him smiling. Boris was elegantly dressed, with a slightly martial touch appropriate to a campaign. He wore a long coat and like Kutuzov had a whip slung across his shoulder. Meanwhile Kutuzov had reached the village and seated himself in the shade of the nearest house, on a bench which one Cossack had run to fetch and another had hastily covered with a rug. An immense and brilliant suite surrounded him. The icon was carried further, accompanied by the throng. Pierre stopped some thirty paces from Kutuzov, talking to Boris. He explained his wish to be present at the battle and to see the position. "This is what you must do," said Boris. "I will do the honors of the camp to you. You will see everything best from where Count Bennigsen will be. I am in attendance on him, you know; I'll mention it to him. But if you want to ride round the position, come along with us. We are just going to the left flank. Then when we get back, do spend the night with me and we'll arrange a game of cards. Of course you know Dmitri Sergeevich? Those are his quarters," and he pointed to the third house in the village of Gorki. "But I should like to see the right flank. They say it's very strong," said Pierre. "I should like to start from the Moskva River and ride round the whole position." "Well, you can do that later, but the chief thing is the left flank." "Yes, yes. But where is Prince Bolkonski's regiment? Can you point it out to me?" "Prince Andrew's? We shall pass it and I'll take you to him." "What about the left flank?" asked Pierre "To tell you the truth, between ourselves, God only knows what state our left flank is in," said Boris confidentially lowering his voice. "It is not at all what Count Bennigsen intended. He meant to fortify that knoll quite differently, but..." Boris shrugged his shoulders, "his Serene Highness would not have it, or someone persuaded him. You see..." but Boris did not finish, for at that moment Kaysarov, Kutuzov's adjutant, came up to Pierre. "Ah, Kaysarov!" said Boris, addressing him with an unembarrassed smile, "I was just trying to explain our position to the count. It is amazing how his Serene Highness could so the intentions of the French!" "You mean the left flank?" asked Kaysarov. "Yes, exactly; the left flank is now extremely strong." Though Kutuzov had dismissed all unnecessary men from the staff, Boris had contrived to remain at headquarters after the changes. He had established himself with Count Bennigsen, who, like all on whom Boris had been in attendance, considered young Prince Drubetskoy an invaluable man. In the higher command there were two sharply defined parties: Kutuzov's party and that of Bennigsen, the chief of staff. Boris belonged to the latter and no one else, while showing servile respect to Kutuzov, could so create an impression that the old fellow was not much good and that Bennigsen managed everything. Now the decisive moment of battle had come when Kutuzov would be destroyed and the power pass to Bennigsen, or even if Kutuzov won the battle it would be felt that everything was done by Bennigsen. In any case many great rewards would have to be given for tomorrow's action, and new men would come to the front. So Boris was full of nervous vivacity all day. After Kaysarov, others whom Pierre knew came up to him, and he had not time to reply to all the questions about Moscow that were showered upon him, or to listen to all that was told him. The faces all expressed animation and apprehension, but it seemed to Pierre that the cause of the excitement shown in some of these faces lay chiefly in questions of personal success; his mind, however, was occupied by the different expression he saw on other faces--an expression that spoke not of personal matters but of the universal questions of life and death. Kutuzov noticed Pierre's figure and the group gathered round him. "Call him to me," said Kutuzov. An adjutant told Pierre of his Serene Highness' wish, and Pierre went toward Kutuzov's bench. But a militiaman got there before him. It was Dolokhov. "How did that fellow get here?" asked Pierre. "He's a creature that wriggles in anywhere!" was the answer. "He has been degraded, you know. Now he wants to bob up again. He's been proposing some scheme or other and has crawled into the enemy's picket line at night.... He's a brave fellow." Pierre took off his hat and bowed respectfully to Kutuzov. "I concluded that if I reported to your Serene Highness you might send me away or say that you knew what I was reporting, but then I shouldn't lose anything..." Dolokhov was saying. "Yes, yes." "But if I were right, I should be rendering a service to my Fatherland for which I am ready to die." "Yes, yes." "And should your Serene Highness require a man who will not spare his skin, please think of me.... Perhaps I may prove useful to your Serene Highness." "Yes... Yes..." Kutuzov repeated, his laughing eye narrowing more and more as he looked at Pierre. Just then Boris, with his courtierlike adroitness, stepped up to Pierre's side near Kutuzov and in a most natural manner, without raising his voice, said to Pierre, as though continuing an interrupted conversation: "The militia have put on clean white shirts to be ready to die. What heroism, Count!" Boris evidently said this to Pierre in order to be overheard by his Serene Highness. He knew Kutuzov's attention would be caught by those words, and so it was. "What are you saying about the militia?" he asked Boris. "Preparing for tomorrow, your Serene Highness--for death--they have put on clean shirts." "Ah... a wonderful, a matchless people!" said Kutuzov; and he closed his eyes and swayed his head. "A matchless people!" he repeated with a sigh. "So you want to smell gunpowder?" he said to Pierre. "Yes, it's a pleasant smell. I have the honor to be one of your wife's adorers. Is she well? My quarters are at your service." And as often happens with old people, Kutuzov began looking about absent-mindedly as if forgetting all he wanted to say or do. Then, evidently remembering what he wanted, he beckoned to Andrew Kaysarov, his adjutant's brother. "Those verses... those verses of Marin's... how do they go, eh? Those he wrote about Gerakov: 'Lectures for the corps inditing'... Recite them, recite them!" said he, evidently preparing to laugh. Kaysarov recited.... Kutuzov smilingly nodded his head to the rhythm of the verses. When Pierre had left Kutuzov, Dolokhov came up to him and took his hand. "I am very glad to meet you here, Count," he said aloud, regardless of the presence of strangers and in a particularly resolute and solemn tone. "On the eve of a day when God alone knows who of us is fated to survive, I am glad of this opportunity to tell you that I regret the misunderstandings that occurred between us and should wish you not to have any ill feeling for me. I beg you to forgive me." Pierre looked at Dolokhov with a smile, not knowing what to say to him. With tears in his eyes Dolokhov embraced Pierre and kissed him. Boris said a few words to his general, and Count Bennigsen turned to Pierre and proposed that he should ride with him along the line. "It will interest you," said he. "Yes, very much," replied Pierre. Half an hour later Kutuzov left for Tatarinova, and Bennigsen and his suite, with Pierre among them, set out on their ride along the line. CHAPTER XXIII From Gorki, Bennigsen descended the highroad to the bridge which, when they had looked it from the hill, the officer had pointed out as being the center of our position and where rows of fragrant new-mown hay lay by the riverside. They rode across that bridge into the village of Borodino and thence turned to the left, passing an enormous number of troops and guns, and came to a high knoll where militiamen were digging. This was the redoubt, as yet unnamed, which afterwards became known as the Raevski Redoubt, or the Knoll Battery, but Pierre paid no special attention to it. He did not know that it would become more memorable to him than any other spot on the plain of Borodino. They then crossed the hollow to Semenovsk, where the soldiers were dragging away the last logs from the huts and barns. Then they rode downhill and uphill, across a ryefield trodden and beaten down as if by hail, following a track freshly made by the artillery over the furrows of the plowed land, and reached some fleches* which were still being dug. *A kind of entrenchment. At the fleches Bennigsen stopped and began looking at the Shevardino Redoubt opposite, which had been ours the day before and where several horsemen could be descried. The officers said that either Napoleon or Murat was there, and they all gazed eagerly at this little group of horsemen. Pierre also looked at them, trying to guess which of the scarcely discernible figures was Napoleon. At last those mounted men rode away from the mound and disappeared. Bennigsen spoke to a general who approached him, and began explaining the whole position of our troops. Pierre listened to him, straining each faculty to understand the essential points of the impending battle, but was mortified to feel that his mental capacity was inadequate for the task. He could make nothing of it. Bennigsen stopped speaking and, noticing that Pierre was listening, suddenly said to him: "I don't think this interests you?" "On the contrary it's very interesting!" replied Pierre not quite truthfully. From the fleches they rode still farther to the left, along a road winding through a thick, low-growing birch wood. In the middle of the wood a brown hare with white feet sprang out and, scared by the tramp of the many horses, grew so confused that it leaped along the road in front of them for some time, arousing general attention and laughter, and only when several voices shouted at it did it dart to one side and disappear in the thicket. After going through the wood for about a mile and a half they came out on a glade where troops of Tuchkov's corps were stationed to defend the left flank. Here, at the extreme left flank, Bennigsen talked a great deal and with much heat, and, as it seemed to Pierre, gave orders of great military importance. In front of Tuchkov's troops was some high ground not occupied by troops. Bennigsen loudly criticized this mistake, saying that it was madness to leave a height which commanded the country around unoccupied and to place troops below it. Some of the generals expressed the same opinion. One in particular declared with martial heat that they were put there to be slaughtered. Bennigsen on his own authority ordered the troops to occupy the high ground. This disposition on the left flank increased Pierre's doubt of his own capacity to understand military matters. Listening to Bennigsen and the generals criticizing the position of the troops behind the hill, he quite understood them and shared their opinion, but for that very reason he could not understand how the man who put them there behind the hill could have made so gross and palpable a blunder. Pierre did not know that these troops were not, as Bennigsen supposed, put there to defend the position, but were in a concealed position as an ambush, that they should not be seen and might be able to strike an approaching enemy unexpectedly. Bennigsen did not know this and moved the troops forward according to his own ideas without mentioning the matter to the commander in chief. CHAPTER XXIV On that bright evening of August 25, Prince Andrew lay leaning on his elbow in a broken-down shed in the village of Knyazkovo at the further end of his regiment's encampment. Through a gap in the broken wall he could see, beside the wooden fence, a row of thirty year-old birches with their lower branches lopped off, a field on which shocks of oats were standing, and some bushes near which rose the smoke of campfires--the soldiers' kitchens. Narrow and burdensome and useless to anyone as his life now seemed to him, Prince Andrew on the eve of battle felt agitated and irritable as he had done seven years before at Austerlitz. He had received and given the orders for next day's battle and had nothing more to do. But his thoughts--the simplest, clearest, and therefore most terrible thoughts--would give him no peace. He knew that tomorrow's battle would be the most terrible of all he had taken part in, and for the first time in his life the possibility of death presented itself to him--not in relation to any worldly matter or with reference to its effect on others, but simply in relation to himself, to his own soul--vividly, plainly, terribly, and almost as a certainty. And from the height of this perception all that had previously tormented and preoccupied him suddenly became illumined by a cold white light without shadows, without perspective, without distinction of outline. All life appeared to him like magic-lantern pictures at which he had long been gazing by artificial light through a glass. Now he suddenly saw those badly daubed pictures in clear daylight and without a glass. "Yes, yes! There they are, those false images that agitated, enraptured, and tormented me," said he to himself, passing in review the principal pictures of the magic lantern of life and regarding them now in the cold white daylight of his clear perception of death. "There they are, those rudely painted figures that once seemed splendid and mysterious. Glory, the good of society, love of a woman, the Fatherland itself--how important these pictures appeared to me, with what profound meaning they seemed to be filled! And it is all so simple, pale, and crude in the cold white light of this morning which I feel is dawning for me." The three great sorrows of his life held his attention in particular: his love for a woman, his father's death, and the French invasion which had overrun half Russia. "Love... that little girl who seemed to me brimming over with mystic forces! Yes, indeed, I loved her. I made romantic plans of love and happiness with her! Oh, what a boy I was!" he said aloud bitterly. "Ah me! I believed in some ideal love which was to keep her faithful to me for the whole year of my absence! Like the gentle dove in the fable she was to pine apart from me.... But it was much simpler really.... It was all very simple and horrible." "When my father built Bald Hills he thought the place was his: his land, his air, his peasants. But Napoleon came and swept him aside, unconscious of his existence, as he might brush a chip from his path, and his Bald Hills and his whole life fell to pieces. Princess Mary says it is a trial sent from above. What is the trial for, when he is not here and will never return? He is not here! For whom then is the trial intended? The Fatherland, the destruction of Moscow! And tomorrow I shall be killed, perhaps not even by a Frenchman but by one of our own men, by a soldier discharging a musket close to my ear as one of them did yesterday, and the French will come and take me by head and heels and fling me into a hole that I may not stink under their noses, and new conditions of life will arise, which will seem quite ordinary to others and about which I shall know nothing. I shall not exist..." He looked at the row of birches shining in the sunshine, with their motionless green and yellow foliage and white bark. "To die... to be killed tomorrow... That I should not exist... That all this should still be, but no me...." And the birches with their light and shade, the curly clouds, the smoke of the campfires, and all that was around him changed and seemed terrible and menacing. A cold shiver ran down his spine. He rose quickly, went out of the shed, and began to walk about. After he had returned, voices were heard outside the shed. "Who's that?" he cried. The red-nosed Captain Timokhin, formerly Dolokhov's squadron commander, but now from lack of officers a battalion commander, shyly entered the shed followed by an adjutant and the regimental paymaster. Prince Andrew rose hastily, listened to the business they had come about, gave them some further instructions, and was about to dismiss them when he heard a familiar, lisping, voice behind the shed. "Devil take it!" said the voice of a man stumbling over something. Prince Andrew looked out of the shed and saw Pierre, who had tripped over a pole on the ground and had nearly fallen, coming his way. It was unpleasant to Prince Andrew to meet people of his own set in general, and Pierre especially, for he reminded him of all the painful moments of his last visit to Moscow. "You? What a surprise!" said he. "What brings you here? This is unexpected!" As he said this his eyes and face expressed more than coldness--they expressed hostility, which Pierre noticed at once. He had approached the shed full of animation, but on seeing Prince Andrew's face he felt constrained and ill at ease. "I have come... simply... you know... come... it interests me," said Pierre, who had so often that day senselessly repeated that word "interesting." "I wish to see the battle." "Oh yes, and what do the Masonic brothers say about war? How would they stop it?" said Prince Andrew sarcastically. "Well, and how's Moscow? And my people? Have they reached Moscow at last?" he asked seriously. "Yes, they have. Julie Drubetskaya told me so. I went to see them, but missed them. They have gone to your estate near Moscow." CHAPTER XXV The officers were about to take leave, but Prince Andrew, apparently reluctant to be left alone with his friend, asked them to stay and have tea. Seats were brought in and so was the tea. The officers gazed with surprise at Pierre's huge stout figure and listened to his talk of Moscow and the position of our army, round which he had ridden. Prince Andrew remained silent, and his expression was so forbidding that Pierre addressed his remarks chiefly to the good-natured battalion commander. "So you understand the whole position of our troops?" Prince Andrew interrupted him. "Yes--that is, how do you mean?" said Pierre. "Not being a military man I can't say I have understood it fully, but I understand the general position." "Well, then, you know more than anyone else, be it who it may," said Prince Andrew. "Oh!" said Pierre, looking over his spectacles in perplexity at Prince Andrew. "Well, and what do think of Kutuzov's appointment?" he asked. "I was very glad of his appointment, that's all I know," replied Prince Andrew. "And tell me your opinion of Barclay de Tolly. In Moscow they are saying heaven knows what about him.... What do you think of him?" "Ask them," replied Prince Andrew, indicating the officers. Pierre looked at Timokhin with the condescendingly interrogative smile with which everybody involuntarily addressed that officer. "We see light again, since his Serenity has been appointed, your excellency," said Timokhin timidly, and continually turning to glance at his colonel. "Why so?" asked Pierre. "Well, to mention only firewood and fodder, let me inform you. Why, when we were retreating from Sventsyani we dare not touch a stick or a wisp of hay or anything. You see, we were going away, so he would get it all; wasn't it so, your excellency?" and again Timokhin turned to the prince. "But we daren't. In our regiment two officers were court-martialed for that kind of thing. But when his Serenity took command everything became straight forward. Now we see light..." "Then why was it forbidden?" Timokhin looked about in confusion, not knowing what or how to answer such a question. Pierre put the same question to Prince Andrew. "Why, so as not to lay waste the country we were abandoning to the enemy," said Prince Andrew with venomous irony. "It is very sound: one can't permit the land to be pillaged and accustom the troops to marauding. At Smolensk too he judged correctly that the French might outflank us, as they had larger forces. But he could not understand this," cried Prince Andrew in a shrill voice that seemed to escape him involuntarily: "he could not understand that there, for the first time, we were fighting for Russian soil, and that there was a spirit in the men such as I had never seen before, that we had held the French for two days, and that that success had increased our strength tenfold. He ordered us to retreat, and all our efforts and losses went for nothing. He had no thought of betraying us, he tried to do the best he could, he thought out everything, and that is why he is unsuitable. He is unsuitable now, just because he plans out everything very thoroughly and accurately as every German has to. How can I explain?... Well, say your father has a German valet, and he is a splendid valet and satisfies your father's requirements better than you could, then it's all right to let him serve. But if your father is mortally sick you'll send the valet away and attend to your father with your own unpracticed, awkward hands, and will soothe him better than a skilled man who is a stranger could. So it has been with Barclay. While Russia was well, a foreigner could serve her and be a splendid minister; but as soon as she is in danger she needs one of her own kin. But in your Club they have been making him out a traitor! They slander him as a traitor, and the only result will be that afterwards, ashamed of their false accusations, they will make him out a hero or a genius instead of a traitor, and that will be still more unjust. He is an honest and very punctilious German." "And they say he's a skillful commander," rejoined Pierre. "I don't understand what is meant by 'a skillful commander,'" replied Prince Andrew ironically. "A skillful commander?" replied Pierre. "Why, one who foresees all contingencies... and foresees the adversary's intentions." "But that's impossible," said Prince Andrew as if it were a matter settled long ago. Pierre looked at him in surprise. "And yet they say that war is like a game of chess?" he remarked. "Yes," replied Prince Andrew, "but with this little difference, that in chess you may think over each move as long as you please and are not limited for time, and with this difference too, that a knight is always stronger than a pawn, and two pawns are always stronger than one, while in war a battalion is sometimes stronger than a division and sometimes weaker than a company. The relative strength of bodies of troops can never be known to anyone. Believe me," he went on, "if things depended on arrangements made by the staff, I should be there making arrangements, but instead of that I have the honor to serve here in the regiment with these gentlemen, and I consider that on us tomorrow's battle will depend and not on those others.... Success never depends, and never will depend, on position, or equipment, or even on numbers, and least of all on position." "But on what then?" "On the feeling that is in me and in him," he pointed to Timokhin, "and in each soldier." Prince Andrew glanced at Timokhin, who looked at his commander in alarm and bewilderment. In contrast to his former reticent taciturnity Prince Andrew now seemed excited. He could apparently not refrain from expressing the thoughts that had suddenly occurred to him. "A battle is won by those who firmly resolve to win it! Why did we lose the battle at Austerlitz? The French losses were almost equal to ours, but very early we said to ourselves that we were losing the battle, and we did lose it. And we said so because we had nothing to fight for there, we wanted to get away from the battlefield as soon as we could. 'We've lost, so let us run,' and we ran. If we had not said that till the evening, heaven knows what might not have happened. But tomorrow we shan't say it! You talk about our position, the left flank weak and the right flank too extended," he went on. "That's all nonsense, there's nothing of the kind. But what awaits us tomorrow? A hundred million most diverse chances which will be decided on the instant by the fact that our men or theirs run or do not run, and that this man or that man is killed, but all that is being done at present is only play. The fact is that those men with whom you have ridden round the position not only do not help matters, but hinder. They are only concerned with their own petty interests." "At such a moment?" said Pierre reproachfully. "At such a moment!" Prince Andrew repeated. "To them it is only a moment affording opportunities to undermine a rival and obtain an extra cross or ribbon. For me tomorrow means this: a Russian army of a hundred thousand and a French army of a hundred thousand have met to fight, and the thing is that these two hundred thousand men will fight and the side that fights more fiercely and spares itself least will win. And if you like I will tell you that whatever happens and whatever muddles those at the top may make, we shall win tomorrow's battle. Tomorrow, happen what may, we shall win!" "There now, your excellency! That's the truth, the real truth," said Timokhin. "Who would spare himself now? The soldiers in my battalion, believe me, wouldn't drink their vodka! 'It's not the day for that!' they say." All were silent. The officers rose. Prince Andrew went out of the shed with them, giving final orders to the adjutant. After they had gone Pierre approached Prince Andrew and was about to start a conversation when they heard the clatter of three horses' hoofs on the road not far from the shed, and looking in that direction Prince Andrew recognized Wolzogen and Clausewitz accompanied by a Cossack. They rode close by continuing to converse, and Prince Andrew involuntarily heard these words: "Der Krieg muss in Raum verlegt werden. Der Ansicht kann ich nicht genug Preis geben,"* said one of them. *"The war must be extended widely. I cannot sufficiently commend that view." "Oh, ja," said the other, "der Zweck ist nur den Feind zu schwachen, so kann man gewiss nicht den Verlust der Privat-Personen in Achtung nehmen."* *"Oh, yes, the only aim is to weaken the enemy, so of course one cannot take into account the loss of private individuals." "Oh, no," agreed the other. "Extend widely!" said Prince Andrew with an angry snort, when they had ridden past. "In that 'extend' were my father, son, and sister, at Bald Hills. That's all the same to him! That's what I was saying to you--those German gentlemen won't win the battle tomorrow but will only make all the mess they can, because they have nothing in their German heads but theories not worth an empty eggshell and haven't in their hearts the one thing needed tomorrow--that which Timokhin has. They have yielded up all Europe to him, and have now come to teach us. Fine teachers!" and again his voice grew shrill. "So you think we shall win tomorrow's battle?" asked Pierre. "Yes, yes," answered Prince Andrew absently. "One thing I would do if I had the power," he began again, "I would not take prisoners. Why take prisoners? It's chivalry! The French have destroyed my home and are on their way to destroy Moscow, they have outraged and are outraging me every moment. They are my enemies. In my opinion they are all criminals. And so thinks Timokhin and the whole army. They should be executed! Since they are my foes they cannot be my friends, whatever may have been said at Tilsit." "Yes, yes," muttered Pierre, looking with shining eyes at Prince Andrew. "I quite agree with you!" The question that had perturbed Pierre on the Mozhaysk hill and all that day now seemed to him quite clear and completely solved. He now understood the whole meaning and importance of this war and of the impending battle. All he had seen that day, all the significant and stern expressions on the faces he had seen in passing, were lit up for him by a new light. He understood that latent heat (as they say in physics) of patriotism which was present in all these men he had seen, and this explained to him why they all prepared for death calmly, and as it were lightheartedly. "Not take prisoners," Prince Andrew continued: "That by itself would quite change the whole war and make it less cruel. As it is we have played at war--that's what's vile! We play at magnanimity and all that stuff. Such magnanimity and sensibility are like the magnanimity and sensibility of a lady who faints when she sees a calf being killed: she is so kind-hearted that she can't look at blood, but enjoys eating the calf served up with sauce. They talk to us of the rules of war, of chivalry, of flags of truce, of mercy to the unfortunate and so on. It's all rubbish! I saw chivalry and flags of truce in 1805; they humbugged us and we humbugged them. They plunder other people's houses, issue false paper money, and worst of all they kill my children and my father, and then talk of rules of war and magnanimity to foes! Take no prisoners, but kill and be killed! He who has come to this as I have through the same sufferings..." Prince Andrew, who had thought it was all the same to him whether or not Moscow was taken as Smolensk had been, was suddenly checked in his speech by an unexpected cramp in his throat. He paced up and down a few times in silence, but his eyes glittered feverishly and his lips quivered as he began speaking. "If there was none of this magnanimity in war, we should go to war only when it was worth while going to certain death, as now. Then there would not be war because Paul Ivanovich had offended Michael Ivanovich. And when there was a war, like this one, it would be war! And then the determination of the troops would be quite different. Then all these Westphalians and Hessians whom Napoleon is leading would not follow him into Russia, and we should not go to fight in Austria and Prussia without knowing why. War is not courtesy but the most horrible thing in life; and we ought to understand that and not play at war. We ought to accept this terrible necessity sternly and seriously. It all lies in that: get rid of falsehood and let war be war and not a game. As it is now, war is the favorite pastime of the idle and frivolous. The military calling is the most highly honored. "But what is war? What is needed for success in warfare? What are the habits of the military? The aim of war is murder; the methods of war are spying, treachery, and their encouragement, the ruin of a country's inhabitants, robbing them or stealing to provision the army, and fraud and falsehood termed military craft. The habits of the military class are the absence of freedom, that is, discipline, idleness, ignorance, cruelty, debauchery, and drunkenness. And in spite of all this it is the highest class, respected by everyone. All the kings, except the Chinese, wear military uniforms, and he who kills most people receives the highest rewards. "They meet, as we shall meet tomorrow, to murder one another; they kill and maim tens of thousands, and then have thanksgiving services for having killed so many people (they even exaggerate the number), and they announce a victory, supposing that the more people they have killed the greater their achievement. How does God above look at them and hear them?" exclaimed Prince Andrew in a shrill, piercing voice. "Ah, my friend, it has of late become hard for me to live. I see that I have begun to understand too much. And it doesn't do for man to taste of the tree of knowledge of good and evil.... Ah, well, it's not for long!" he added. "However, you're sleepy, and it's time for me to sleep. Go back to Gorki!" said Prince Andrew suddenly. "Oh no!" Pierre replied, looking at Prince Andrew with frightened, compassionate eyes. "Go, go! Before a battle one must have one's sleep out," repeated Prince Andrew. He came quickly up to Pierre and embraced and kissed him. "Good-by, be off!" he shouted. "Whether we meet again or not..." and turning away hurriedly he entered the shed. It was already dark, and Pierre could not make out whether the expression of Prince Andrew's face was angry or tender. For some time he stood in silence considering whether he should follow him or go away. "No, he does not want it!" Pierre concluded. "And I know that this is our last meeting!" He sighed deeply and rode back to Gorki. On re-entering the shed Prince Andrew lay down on a rug, but he could not sleep. He closed his eyes. One picture succeeded another in his imagination. On one of them he dwelt long and joyfully. He vividly recalled an evening in Petersburg. Natasha with animated and excited face was telling him how she had gone to look for mushrooms the previous summer and had lost her way in the big forest. She incoherently described the depths of the forest, her feelings, and a talk with a beekeeper she met, and constantly interrupted her story to say: "No, I can't! I'm not telling it right; no, you don't understand," though he encouraged her by saying that he did understand, and he really had understood all she wanted to say. But Natasha was not satisfied with her own words: she felt that they did not convey the passionately poetic feeling she had experienced that day and wished to convey. "He was such a delightful old man, and it was so dark in the forest... and he had such kind... No, I can't describe it," she had said, flushed and excited. Prince Andrew smiled now the same happy smile as then when he had looked into her eyes. "I understood her," he thought. "I not only understood her, but it was just that inner, spiritual force, that sincerity, that frankness of soul--that very soul of hers which seemed to be fettered by her body--it was that soul I loved in her... loved so strongly and happily..." and suddenly he remembered how his love had ended. "He did not need anything of that kind. He neither saw nor understood anything of the sort. He only saw in her a pretty and fresh young girl, with whom he did not deign to unite his fate. And I?... and he is still alive and gay!" Prince Andrew jumped up as if someone had burned him, and again began pacing up and down in front of the shed. CHAPTER XXVI On August 25, the eve of the battle of Borodino, M. de Beausset, prefect of the French Emperor's palace, arrived at Napoleon's quarters at Valuevo with Colonel Fabvier, the former from Paris and the latter from Madrid. Donning his court uniform, M. de Beausset ordered a box he had brought for the Emperor to be carried before him and entered the first compartment of Napoleon's tent, where he began opening the box while conversing with Napoleon's aides-de-camp who surrounded him. Fabvier, not entering the tent, remained at the entrance talking to some generals of his acquaintance. The Emperor Napoleon had not yet left his bedroom and was finishing his toilet. Slightly snorting and grunting, he presented now his back and now his plump hairy chest to the brush with which his valet was rubbing him down. Another valet, with his finger over the mouth of a bottle, was sprinkling Eau de Cologne on the Emperor's pampered body with an expression which seemed to say that he alone knew where and how much Eau de Cologne should be sprinkled. Napoleon's short hair was wet and matted on the forehead, but his face, though puffy and yellow, expressed physical satisfaction. "Go on, harder, go on!" he muttered to the valet who was rubbing him, slightly twitching and grunting. An aide-de-camp, who had entered the bedroom to report to the Emperor the number of prisoners taken in yesterday's action, was standing by the door after delivering his message, awaiting permission to withdraw. Napoleon, frowning, looked at him from under his brows. "No prisoners!" said he, repeating the aide-de-camp's words. "They are forcing us to exterminate them. So much the worse for the Russian army.... Go on... harder, harder!" he muttered, hunching his back and presenting his fat shoulders. "All right. Let Monsieur de Beausset enter, and Fabvier too," he said, nodding to the aide-de-camp. "Yes, sire," and the aide-de-camp disappeared through the door of the tent. Two valets rapidly dressed His Majesty, and wearing the blue uniform of the Guards he went with firm quick steps to the reception room. De Beausset's hands meanwhile were busily engaged arranging the present he had brought from the Empress, on two chairs directly in front of the entrance. But Napoleon had dressed and come out with such unexpected rapidity that he had not time to finish arranging the surprise. Napoleon noticed at once what they were about and guessed that they were not ready. He did not wish to deprive them of the pleasure of giving him a surprise, so he pretended not to see de Beausset and called Fabvier to him, listening silently and with a stern frown to what Fabvier told him of the heroism and devotion of his troops fighting at Salamanca, at the other end of Europe, with but one thought--to be worthy of their Emperor--and but one fear--to fail to please him. The result of that battle had been deplorable. Napoleon made ironic remarks during Fabvier's account, as if he had not expected that matters could go otherwise in his absence. "I must make up for that in Moscow," said Napoleon. "I'll see you later," he added, and summoned de Beausset, who by that time had prepared the surprise, having placed something on the chairs and covered it with a cloth. De Beausset bowed low, with that courtly French bow which only the old retainers of the Bourbons knew how to make, and approached him, presenting an envelope. Napoleon turned to him gaily and pulled his ear. "You have hurried here. I am very glad. Well, what is Paris saying?" he asked, suddenly changing his former stern expression for a most cordial tone. "Sire, all Paris regrets your absence," replied de Beausset as was proper. But though Napoleon knew that de Beausset had to say something of this kind, and though in his lucid moments he knew it was untrue, he was pleased to hear it from him. Again he honored him by touching his ear. "I am very sorry to have made you travel so far," said he. "Sire, I expected nothing less than to find you at the gates of Moscow," replied de Beausset. Napoleon smiled and, lifting his head absentmindedly, glanced to the right. An aide-de-camp approached with gliding steps and offered him a gold snuffbox, which he took. "Yes, it has happened luckily for you," he said, raising the open snuffbox to his nose. "You are fond of travel, and in three days you will see Moscow. You surely did not expect to see that Asiatic capital. You will have a pleasant journey." De Beausset bowed gratefully at this regard for his taste for travel (of which he had not till then been aware). "Ha, what's this?" asked Napoleon, noticing that all the courtiers were looking at something concealed under a cloth. With courtly adroitness de Beausset half turned and without turning his back to the Emperor retired two steps, twitching off the cloth at the same time, and said: "A present to Your Majesty from the Empress." It was a portrait, painted in bright colors by Gerard, of the son borne to Napoleon by the daughter of the Emperor of Austria, the boy whom for some reason everyone called "The King of Rome." A very pretty curly-headed boy with a look of the Christ in the Sistine Madonna was depicted playing at stick and ball. The ball represented the terrestrial globe and the stick in his other hand a scepter. Though it was not clear what the artist meant to express by depicting the so-called King of Rome spiking the earth with a stick, the allegory apparently seemed to Napoleon, as it had done to all who had seen it in Paris, quite clear and very pleasing. "The King of Rome!" he said, pointing to the portrait with a graceful gesture. "Admirable!" With the natural capacity of an Italian for changing the expression of his face at will, he drew nearer to the portrait and assumed a look of pensive tenderness. He felt that what he now said and did would be historical, and it seemed to him that it would now be best for him--whose grandeur enabled his son to play stick and ball with the terrestrial globe--to show, in contrast to that grandeur, the simplest paternal tenderness. His eyes grew dim, he moved forward, glanced round at a chair (which seemed to place itself under him), and sat down on it before the portrait. At a single gesture from him everyone went out on tiptoe, leaving the great man to himself and his emotion. Having sat still for a while he touched--himself not knowing why- the thick spot of paint representing the highest light in the portrait, rose, and recalled de Beausset and the officer on duty. He ordered the portrait to be carried outside his tent, that the Old Guard, stationed round it, might not be deprived of the pleasure of seeing the King of Rome, the son and heir of their adored monarch. And while he was doing M. de Beausset the honor of breakfasting with him, they heard, as Napoleon had anticipated, the rapturous cries of the officers and men of the Old Guard who had run up to see the portrait. "Vive l'Empereur! Vive le roi de Rome! Vive l'Empereur!" came those ecstatic cries. After breakfast Napoleon in de Beausset's presence dictated his order of the day to the army. "Short and energetic!" he remarked when he had read over the proclamation which he had dictated straight off without corrections. It ran: Soldiers! This is the battle you have so longed for. Victory depends on you. It is essential for us; it will give us all we need: comfortable quarters and a speedy return to our country. Behave as you did at Austerlitz, Friedland, Vitebsk, and Smolensk. Let our remotest posterity recall your achievements this day with pride. Let it be said of each of you: "He was in the great battle before Moscow!" "Before Moscow!" repeated Napoleon, and inviting M. de Beausset, who was so fond of travel, to accompany him on his ride, he went out of the tent to where the horses stood saddled. "Your Majesty is too kind!" replied de Beausset to the invitation to accompany the Emperor; he wanted to sleep, did not know how to ride and was afraid of doing so. But Napoleon nodded to the traveler, and de Beausset had to mount. When Napoleon came out of the tent the shouting of the Guards before his son's portrait grew still louder. Napoleon frowned. "Take him away!" he said, pointing with a gracefully majestic gesture to the portrait. "It is too soon for him to see a field of battle." De Beausset closed his eyes, bowed his head, and sighed deeply, to indicate how profoundly he valued and comprehended the Emperor's words. CHAPTER XXVII On the twenty-fifth of August, so his historians tell us, Napoleon spent the whole day on horseback inspecting the locality, considering plans submitted to him by his marshals, and personally giving commands to his generals. The original line of the Russian forces along the river Kolocha had been dislocated by the capture of the Shevardino Redoubt on the twenty-fourth, and part of the line--the left flank--had been drawn back. That part of the line was not entrenched and in front of it the ground was more open and level than elsewhere. It was evident to anyone, military or not, that it was here the French should attack. It would seem that not much consideration was needed to reach this conclusion, nor any particular care or trouble on the part of the Emperor and his marshals, nor was there any need of that special and supreme quality called genius that people are so apt to ascribe to Napoleon; yet the historians who described the event later and the men who then surrounded Napoleon, and he himself, thought otherwise. Napoleon rode over the plain and surveyed the locality with a profound air and in silence, nodded with approval or shook his head dubiously, and without communicating to the generals around him the profound course of ideas which guided his decisions merely gave them his final conclusions in the form of commands. Having listened to a suggestion from Davout, who was now called Prince d'Eckmuhl, to turn the Russian left wing, Napoleon said it should not be done, without explaining why not. To a proposal made by General Campan (who was to attack the fleches) to lead his division through the woods, Napoleon agreed, though the so-called Duke of Elchingen (Ney) ventured to remark that a movement through the woods was dangerous and might disorder the division. Having inspected the country opposite the Shevardino Redoubt, Napoleon pondered a little in silence and then indicated the spots where two batteries should be set up by the morrow to act against the Russian entrenchments, and the places where, in line with them, the field artillery should be placed. After giving these and other commands he returned to his tent, and the dispositions for the battle were written down from his dictation. These dispositions, of which the French historians write with enthusiasm and other historians with profound respect, were as follows: At dawn the two new batteries established during the night on the plain occupied by the Prince d'Eckmuhl will open fire on the opposing batteries of the enemy. At the same time the commander of the artillery of the 1st Corps, General Pernetti, with thirty cannon of Campan's division and all the howitzers of Dessaix's and Friant's divisions, will move forward, open fire, and overwhelm with shellfire the enemy's battery, against which will operate: 24 guns of the artillery of the Guards 30 guns of Campan's division and 8 guns of Friant's and Dessaix's divisions -- in all 62 guns. The commander of the artillery of the 3rd Corps, General Fouche, will place the howitzers of the 3rd and 8th Corps, sixteen in all, on the flanks of the battery that is to bombard the entrenchment on the left, which will have forty guns in all directed against it. General Sorbier must be ready at the first order to advance with all the howitzers of the Guard's artillery against either one or other of the entrenchments. During the cannonade Prince Poniatowski is to advance through the wood on the village and turn the enemy's position. General Campan will move through the wood to seize the first fortification. After the advance has begun in this manner, orders will be given in accordance with the enemy's movements. The cannonade on the left flank will begin as soon as the guns of the right wing are heard. The sharpshooters of Morand's division and of the vice-King's division will open a heavy fire on seeing the attack commence on the right wing. The vice-King will occupy the village and cross by its three bridges, advancing to the same heights as Morand's and Gibrard's divisions, which under his leadership will be directed against the redoubt and come into line with the rest of the forces. All this must be done in good order (le tout se fera avec ordre et methode) as far as possible retaining troops in reserve. The Imperial Camp near Mozhaysk, September, 6, 1812. These dispositions, which are very obscure and confused if one allows oneself to regard the arrangements without religious awe of his genius, related to Napoleon's orders to deal with four points--four different orders. Not one of these was, or could be, carried out. In the disposition it is said first that the batteries placed on the spot chosen by Napoleon, with the guns of Pernetti and Fouche; which were to come in line with them, 102 guns in all, were to open fire and shower shells on the Russian fleches and redoubts. This could not be done, as from the spots selected by Napoleon the projectiles did not carry to the Russian works, and those 102 guns shot into the air until the nearest commander, contrary to Napoleon's instructions, moved them forward. The second order was that Poniatowski, moving to the village through the wood, should turn the Russian left flank. This could not be done and was not done, because Poniatowski, advancing on the village through the wood, met Tuchkov there barring his way, and could not and did not turn the Russian position. The third order was: General Campan will move through the wood to seize the first fortification. General Campan's division did not seize the first fortification but was driven back, for on emerging from the wood it had to reform under grapeshot, of which Napoleon was unaware. The fourth order was: The vice-King will occupy the village (Borodino) and cross by its three bridges, advancing to the same heights as Morand's and Gdrard's divisions (for whose movements no directions are given), which under his leadership will be directed against the redoubt and come into line with the rest of the forces. As far as one can make out, not so much from this unintelligible sentence as from the attempts the vice-King made to execute the orders given him, he was to advance from the left through Borodino to the redoubt while the divisions of Morand and Gerard were to advance simultaneously from the front. All this, like the other parts of the disposition, was not and could not be executed. After passing through Borodino the vice-King was driven back to the Kolocha and could get no farther; while the divisions of Morand and Gerard did not take the redoubt but were driven back, and the redoubt was only taken at the end of the battle by the cavalry (a thing probably unforeseen and not heard of by Napoleon). So not one of the orders in the disposition was, or could be, executed. But in the disposition it is said that, after the fight has commenced in this manner, orders will be given in accordance with the enemy's movements, and so it might be supposed that all necessary arrangements would be made by Napoleon during the battle. But this was not and could not be done, for during the whole battle Napoleon was so far away that, as appeared later, he could not know the course of the battle and not one of his orders during the fight could be executed. CHAPTER XXVIII Many historians say that the French did not win the battle of Borodino because Napoleon had a cold, and that if he had not had a cold the orders he gave before and during the battle would have been still more full of genius and Russia would have been lost and the face of the world have been changed. To historians who believe that Russia was shaped by the will of one man--Peter the Great--and that France from a republic became an empire and French armies went to Russia at the will of one man--Napoleon--to say that Russia remained a power because Napoleon had a bad cold on the twenty-fourth of August may seem logical and convincing. If it had depended on Napoleon's will to fight or not to fight the battle of Borodino, and if this or that other arrangement depended on his will, then evidently a cold affecting the manifestation of his will might have saved Russia, and consequently the valet who omitted to bring Napoleon his waterproof boots on the twenty-fourth would have been the savior of Russia. Along that line of thought such a deduction is indubitable, as indubitable as the deduction Voltaire made in jest (without knowing what he was jesting at) when he saw that the Massacre of St. Bartholomew was due to Charles IX's stomach being deranged. But to men who do not admit that Russia was formed by the will of one man, Peter I, or that the French Empire was formed and the war with Russia begun by the will of one man, Napoleon, that argument seems not merely untrue and irrational, but contrary to all human reality. To the question of what causes historic events another answer presents itself, namely, that the course of human events is predetermined from on high--depends on the coincidence of the wills of all who take part in the events, and that a Napoleon's influence on the course of these events is purely external and fictitious. Strange as at first glance it may seem to suppose that the Massacre of St. Bartholomew was not due to Charles IX's will, though he gave the order for it and thought it was done as a result of that order; and strange as it may seem to suppose that the slaughter of eighty thousand men at Borodino was not due to Napoleon's will, though he ordered the commencement and conduct of the battle and thought it was done because he ordered it; strange as these suppositions appear, yet human dignity--which tells me that each of us is, if not more at least not less a man than the great Napoleon--demands the acceptance of that solution of the question, and historic investigation abundantly confirms it. At the battle of Borodino Napoleon shot at no one and killed no one. That was all done by the soldiers. Therefore it was not he who killed people. The French soldiers went to kill and be killed at the battle of Borodino not because of Napoleon's orders but by their own volition. The whole army--French, Italian, German, Polish, and Dutch--hungry, ragged, and weary of the campaign, felt at the sight of an army blocking their road to Moscow that the wine was drawn and must be drunk. Had Napoleon then forbidden them to fight the Russians, they would have killed him and have proceeded to fight the Russians because it was inevitable. When they heard Napoleon's proclamation offering them, as compensation for mutilation and death, the words of posterity about their having been in the battle before Moscow, they cried "Vive l'Empereur!" just as they had cried "Vive l'Empereur!" at the sight of the portrait of the boy piercing the terrestrial globe with a toy stick, and just as they would have cried "Vive l'Empereur!" at any nonsense that might be told them. There was nothing left for them to do but cry "Vive l'Empereur!" and go to fight, in order to get food and rest as conquerors in Moscow. So it was not because of Napoleon's commands that they killed their fellow men. And it was not Napoleon who directed the course of the battle, for none of his orders were executed and during the battle he did not know what was going on before him. So the way in which these people killed one another was not decided by Napoleon's will but occurred independently of him, in accord with the will of hundreds of thousands of people who took part in the common action. It only seemed to Napoleon that it all took place by his will. And so the question whether he had or had not a cold has no more historic interest than the cold of the least of the transport soldiers. Moreover, the assertion made by various writers that his cold was the cause of his dispositions not being as well planned as on former occasions, and of his orders during the battle not being as good as previously, is quite baseless, which again shows that Napoleon's cold on the twenty-sixth of August was unimportant. The dispositions cited above are not at all worse, but are even better, than previous dispositions by which he had won victories. His pseudo-orders during the battle were also no worse than formerly, but much the same as usual. These dispositions and orders only seem worse than previous ones because the battle of Borodino was the first Napoleon did not win. The profoundest and most excellent dispositions and orders seem very bad, and every learned militarist criticizes them with looks of importance, when they relate to a battle that has been lost, and the very worst dispositions and orders seem very good, and serious people fill whole volumes to demonstrate their merits, when they relate to a battle that has been won. The dispositions drawn up by Weyrother for the battle of Austerlitz were a model of perfection for that kind of composition, but still they were criticized--criticized for their very perfection, for their excessive minuteness. Napoleon at the battle of Borodino fulfilled his office as representative of authority as well as, and even better than, at other battles. He did nothing harmful to the progress of the battle; he inclined to the most reasonable opinions, he made no confusion, did not contradict himself, did not get frightened or run away from the field of battle, but with his great tact and military experience carried out his role of appearing to command, calmly and with dignity. CHAPTER XXIX On returning from a second inspection of the lines, Napoleon remarked: "The chessmen are set up, the game will begin tomorrow!" Having ordered punch and summoned de Beausset, he began to talk to him about Paris and about some changes he meant to make the Empress' household, surprising the prefect by his memory of minute details relating to the court. He showed an interest in trifles, joked about de Beausset's love of travel, and chatted carelessly, as a famous, self-confident surgeon who knows his job does when turning up his sleeves and putting on his apron while a patient is being strapped to the operating table. "The matter is in my hands and is clear and definite in my head. When the times comes to set to work I shall do it as no one else could, but now I can jest, and the more I jest and the calmer I am the more tranquil and confident you ought to be, and the more amazed at my genius." Having finished his second glass of punch, Napoleon went to rest before the serious business which, he considered, awaited him next day. He was so much interested in that task that he was unable to sleep, and in spite of his cold which had grown worse from the dampness of the evening, he went into the large division of the tent at three o'clock in the morning, loudly blowing his nose. He asked whether the Russians had not withdrawn, and was told that the enemy's fires were still in the same places. He nodded approval. The adjutant in attendance came into the tent. "Well, Rapp, do you think we shall do good business today?" Napoleon asked him. "Without doubt, sire," replied Rapp. Napoleon looked at him. "Do you remember, sire, what you did me the honor to say at Smolensk?" continued Rapp. "The wine is drawn and must be drunk." Napoleon frowned and sat silent for a long time leaning his head on his hand. "This poor army!" he suddenly remarked. "It has diminished greatly since Smolensk. Fortune is frankly a courtesan, Rapp. I have always said so and I am beginning to experience it. But the Guards, Rapp, the Guards are intact?" he remarked interrogatively. "Yes, sire," replied Rapp. Napoleon took a lozenge, put it in his mouth, and glanced at his watch. He was not sleepy and it was still not nearly morning. It was impossible to give further orders for the sake of killing time, for the orders had all been given and were now being executed. "Have the biscuits and rice been served out to the regiments of the Guards?" asked Napoleon sternly. "Yes, sire." "The rice too?" Rapp replied that he had given the Emperor's order about the rice, but Napoleon shook his head in dissatisfaction as if not believing that his order had been executed. An attendant came in with punch. Napoleon ordered another glass to be brought for Rapp, and silently sipped his own. "I have neither taste nor smell," he remarked, sniffing at his glass. "This cold is tiresome. They talk about medicine--what is the good of medicine when it can't cure a cold! Corvisart gave me these lozenges but they don't help at all. What can doctors cure? One can't cure anything. Our body is a machine for living. It is organized for that, it is its nature. Let life go on in it unhindered and let it defend itself, it will do more than if you paralyze it by encumbering it with remedies. Our body is like a perfect watch that should go for a certain time; watchmaker cannot open it, he can only adjust it by fumbling, and that blindfold.... Yes, our body is just a machine for living, that is all." And having entered on the path of definition, of which he was fond, Napoleon suddenly and unexpectedly gave a new one. "Do you know, Rapp, what military art is?" asked he. "It is the art of being stronger than the enemy at a given moment. That's all." Rapp made no reply. "Tomorrow we shall have to deal with Kutuzov!" said Napoleon. "We shall see! Do you remember at Braunau he commanded an army for three weeks and did not once mount a horse to inspect his entrenchments.... We shall see!" He looked at his watch. It was still only four o'clock. He did not feel sleepy. The punch was finished and there was still nothing to do. He rose, walked to and fro, put on a warm overcoat and a hat, and went out of the tent. The night was dark and damp, a scarcely perceptible moisture was descending from above. Near by, the campfires were dimly burning among the French Guards, and in the distance those of the Russian line shone through the smoke. The weather was calm, and the rustle and tramp of the French troops already beginning to move to take up their positions were clearly audible. Napoleon walked about in front of his tent, looked at the fires and listened to these sounds, and as he was passing a tall guardsman in a shaggy cap, who was standing sentinel before his tent and had drawn himself up like a black pillar at sight of the Emperor, Napoleon stopped in front of him. "What year did you enter the service?" he asked with that affectation of military bluntness and geniality with which he always addressed the soldiers. The man answered the question. "Ah! One of the old ones! Has your regiment had its rice?" "It has, Your Majesty." Napoleon nodded and walked away. At half-past five Napoleon rode to the village of Shevardino. It was growing light, the sky was clearing, only a single cloud lay in the east. The abandoned campfires were burning themselves out in the faint morning light. On the right a single deep report of a cannon resounded and died away in the prevailing silence. Some minutes passed. A second and a third report shook the air, then a fourth and a fifth boomed solemnly near by on the right. The first shots had not yet ceased to reverberate before others rang out and yet more were heard mingling with and overtaking one another. Napoleon with his suite rode up to the Shevardino Redoubt where he dismounted. The game had begun. CHAPTER XXX On returning to Gorki after having seen Prince Andrew, Pierre ordered his groom to get the horses ready and to call him early in the morning, and then immediately fell asleep behind a partition in a corner Boris had given up to him. Before he was thoroughly awake next morning everybody had already left the hut. The panes were rattling in the little windows and his groom was shaking him. "Your excellency! Your excellency! Your excellency!" he kept repeating pertinaciously while he shook Pierre by the shoulder without looking at him, having apparently lost hope of getting him to wake up. "What? Has it begun? Is it time?" Pierre asked, waking up. "Hear the firing," said the groom, a discharged soldier. "All the gentlemen have gone out, and his Serene Highness himself rode past long ago." Pierre dressed hastily and ran out to the porch. Outside all was bright, fresh, dewy, and cheerful. The sun, just bursting forth from behind a cloud that had concealed it, was shining, with rays still half broken by the clouds, over the roofs of the street opposite, on the dew-besprinkled dust of the road, on the walls of the houses, on the windows, the fence, and on Pierre's horses standing before the hut. The roar of guns sounded more distinct outside. An adjutant accompanied by a Cossack passed by at a sharp trot. "It's time, Count; it's time!" cried the adjutant. Telling the groom to follow him with the horses, Pierre went down the street to the knoll from which he had looked at the field of battle the day before. A crowd of military men was assembled there, members of the staff could be heard conversing in French, and Kutuzov's gray head in a white cap with a red band was visible, his gray nape sunk between his shoulders. He was looking through a field glass down the highroad before him. Mounting the steps to the knoll Pierre looked at the scene before him, spellbound by beauty. It was the same panorama he had admired from that spot the day before, but now the whole place was full of troops and covered by smoke clouds from the guns, and the slanting rays of the bright sun, rising slightly to the left behind Pierre, cast upon it through the clear morning air penetrating streaks of rosy, golden tinted light and long dark shadows. The forest at the farthest extremity of the panorama seemed carved in some precious stone of a yellowish-green color; its undulating outline was silhouetted against the horizon and was pierced beyond Valuevo by the Smolensk highroad crowded with troops. Nearer at hand glittered golden cornfields interspersed with copses. There were troops to be seen everywhere, in front and to the right and left. All this was vivid, majestic, and unexpected; but what impressed Pierre most of all was the view of the battlefield itself, of Borodino and the hollows on both sides of the Kolocha. Above the Kolocha, in Borodino and on both sides of it, especially to the left where the Voyna flowing between its marshy banks falls into the Kolocha, a mist had spread which seemed to melt, to dissolve, and to become translucent when the brilliant sun appeared and magically colored and outlined everything. The smoke of the guns mingled with this mist, and over the whole expanse and through that mist the rays of the morning sun were reflected, flashing back like lightning from the water, from the dew, and from the bayonets of the troops crowded together by the riverbanks and in Borodino. A white church could be seen through the mist, and here and there the roofs of huts in Borodino as well as dense masses of soldiers, or green ammunition chests and ordnance. And all this moved, or seemed to move, as the smoke and mist spread out over the whole space. Just as in the mist-enveloped hollow near Borodino, so along the entire line outside and above it and especially in the woods and fields to the left, in the valleys and on the summits of the high ground, clouds of powder smoke seemed continually to spring up out of nothing, now singly, now several at a time, some translucent, others dense, which, swelling, growing, rolling, and blending, extended over the whole expanse. These puffs of smoke and (strange to say) the sound of the firing produced the chief beauty of the spectacle. "Puff!"--suddenly a round compact cloud of smoke was seen merging from violet into gray and milky white, and "boom!" came the report a second later. "Puff! puff!"--and two clouds arose pushing one another and blending together; and "boom, boom!" came the sounds confirming what the eye had seen. Pierre glanced round at the first cloud, which he had seen as a round compact ball, and in its place already were balloons of smoke floating to one side, and--"puff" (with a pause)--"puff, puff!" three and then four more appeared and then from each, with the same interval--"boom--boom, boom!" came the fine, firm, precise sounds in reply. It seemed as if those smoke clouds sometimes ran and sometimes stood still while woods, fields, and glittering bayonets ran past them. From the left, over fields and bushes, those large balls of smoke were continually appearing followed by their solemn reports, while nearer still, in the hollows and woods, there burst from the muskets small cloudlets that had no time to become balls, but had their little echoes in just the same way. "Trakh-ta-ta-takh!" came the frequent crackle of musketry, but it was irregular and feeble in comparison with the reports of the cannon. Pierre wished to be there with that smoke, those shining bayonets, that movement, and those sounds. He turned to look at Kutuzov and his suite, to compare his impressions with those of others. They were all looking at the field of battle as he was, and, as it seemed to him, with the same feelings. All their faces were now shining with that latent warmth of feeling Pierre had noticed the day before and had fully understood after his talk with Prince Andrew. "Go, my dear fellow, go... and Christ be with you!" Kutuzov was saying to a general who stood beside him, not taking his eye from the battlefield. Having received this order the general passed by Pierre on his way down the knoll. "To the crossing!" said the general coldly and sternly in reply to one of the staff who asked where he was going. "I'll go there too, I too!" thought Pierre, and followed the general. The general mounted a horse a Cossack had brought him. Pierre went to his groom who was holding his horses and, asking which was the quietest, clambered onto it, seized it by the mane, and turning out his toes pressed his heels against its sides and, feeling that his spectacles were slipping off but unable to let go of the mane and reins, he galloped after the general, causing the staff officers to smile as they watched him from the knoll. CHAPTER XXXI Having descended the hill the general after whom Pierre was galloping turned sharply to the left, and Pierre, losing sight of him, galloped in among some ranks of infantry marching ahead of him. He tried to pass either in front of them or to the right or left, but there were soldiers everywhere, all with expression and busy with some unseen but evidently important task. They all gazed with the same dissatisfied and inquiring expression at this stout man in a white hat, who for some unknown reason threatened to trample them under his horse's hoofs. "Why ride into the middle of the battalion?" one of them shouted at him. Another prodded his horse with the butt end of a musket, and Pierre, bending over his saddlebow and hardly able to control his shying horse, galloped ahead of the soldiers where there was a free space. There was a bridge ahead of him, where other soldiers stood firing. Pierre rode up to them. Without being aware of it he had come to the bridge across the Kolocha between Gorki and Borodino, which the French (having occupied Borodino) were attacking in the first phase of the battle. Pierre saw that there was a bridge in front of him and that soldiers were doing something on both sides of it and in the meadow, among the rows of new-mown hay which he had taken no notice of amid the smoke of the campfires the day before; but despite the incessant firing going on there he had no idea that this was the field of battle. He did not notice the sound of the bullets whistling from every side, or the projectiles that flew over him, did not see the enemy on the other side of the river, and for a long time did not notice the killed and wounded, though many fell near him. He looked about him with a smile which did not leave his face. "Why's that fellow in front of the line?" shouted somebody at him again. "To the left!... Keep to the right!" the men shouted to him. Pierre went to the right, and unexpectedly encountered one of Raevski's adjutants whom he knew. The adjutant looked angrily at him, evidently also intending to shout at him, but on recognizing him he nodded. "How have you got here?" he said, and galloped on. Pierre, feeling out of place there, having nothing to do, and afraid of getting in someone's way again, galloped after the adjutant. "What's happening here? May I come with you?" he asked. "One moment, one moment!" replied the adjutant, and riding up to a stout colonel who was standing in the meadow, he gave him some message and then addressed Pierre. "Why have you come here, Count?" he asked with a smile. "Still inquisitive?" "Yes, yes," assented Pierre. But the adjutant turned his horse about and rode on. "Here it's tolerable," said he, "but with Bagration on the left flank they're getting it frightfully hot." "Really?" said Pierre. "Where is that?" "Come along with me to our knoll. We can get a view from there and in our battery it is still bearable," said the adjutant. "Will you come?" "Yes, I'll come with you," replied Pierre, looking round for his groom. It was only now that he noticed wounded men staggering along or being carried on stretchers. On that very meadow he had ridden over the day before, a soldier was lying athwart the rows of scented hay, with his head thrown awkwardly back and his shako off. "Why haven't they carried him away?" Pierre was about to ask, but seeing the stern expression of the adjutant who was also looking that way, he checked himself. Pierre did not find his groom and rode along the hollow with the adjutant to Raevski's Redoubt. His horse lagged behind the adjutant's and jolted him at every step. "You don't seem to be used to riding, Count?" remarked the adjutant. "No it's not that, but her action seems so jerky," said Pierre in a puzzled tone. "Why... she's wounded!" said the adjutant. "In the off foreleg above the knee. A bullet, no doubt. I congratulate you, Count, on your baptism of fire!" Having ridden in the smoke past the Sixth Corps, behind the artillery which had been moved forward and was in action, deafening them with the noise of firing, they came to a small wood. There it was cool and quiet, with a scent of autumn. Pierre and the adjutant dismounted and walked up the hill on foot. "Is the general here?" asked the adjutant on reaching the knoll. "He was here a minute ago but has just gone that way," someone told him, pointing to the right. The adjutant looked at Pierre as if puzzled what to do with him now. "Don't trouble about me," said Pierre. "I'll go up onto the knoll if I may?" "Yes, do. You'll see everything from there and it's less dangerous, and I'll come for you." Pierre went to the battery and the adjutant rode on. They did not meet again, and only much later did Pierre learn that he lost an arm that day. The knoll to which Pierre ascended was that famous one afterwards known to the Russians as the Knoll Battery or Raevski's Redoubt, and to the French as la grande redoute, la fatale redoute, la redoute du centre, around which tens of thousands fell, and which the French regarded as the key to the whole position. This redoubt consisted of a knoll, on three sides of which trenches had been dug. Within the entrenchment stood ten guns that were being fired through openings in the earthwork. In line with the knoll on both sides stood other guns which also fired incessantly. A little behind the guns stood infantry. When ascending that knoll Pierre had no notion that this spot, on which small trenches had been dug and from which a few guns were firing, was the most important point of the battle. On the contrary, just because he happened to be there he thought it one of the least significant parts of the field. Having reached the knoll, Pierre sat down at one end of a trench surrounding the battery and gazed at what was going on around him with an unconsciously happy smile. Occasionally he rose and walked about the battery still with that same smile, trying not to obstruct the soldiers who were loading, hauling the guns, and continually running past him with bags and charges. The guns of that battery were being fired continually one after another with a deafening roar, enveloping the whole neighborhood in powder smoke. In contrast with the dread felt by the infantrymen placed in support, here in the battery where a small number of men busy at their work were separated from the rest by a trench, everyone experienced a common and as it were family feeling of animation. The intrusion of Pierre's nonmilitary figure in a white hat made an unpleasant impression at first. The soldiers looked askance at him with surprise and even alarm as they went past him. The senior artillery officer, a tall, long-legged, pockmarked man, moved over to Pierre as if to see the action of the farthest gun and looked at him with curiosity. A young round-faced officer, quite a boy still and evidently only just out of the Cadet College, who was zealously commanding the two guns entrusted to him, addressed Pierre sternly. "Sir," he said, "permit me to ask you to stand aside. You must not be here." The soldiers shook their heads disapprovingly as they looked at Pierre. But when they had convinced themselves that this man in the white hat was doing no harm, but either sat quietly on the slope of the trench with a shy smile or, politely making way for the soldiers, paced up and down the battery under fire as calmly as if he were on a boulevard, their feeling of hostile distrust gradually began to change into a kindly and bantering sympathy, such as soldiers feel for their dogs, cocks, goats, and in general for the animals that live with the regiment. The men soon accepted Pierre into their family, adopted him, gave him a nickname ("our gentleman"), and made kindly fun of him among themselves. A shell tore up the earth two paces from Pierre and he looked around with a smile as he brushed from his clothes some earth it had thrown up. "And how's it you're not afraid, sir, really now?" a red-faced, broad-shouldered soldier asked Pierre, with a grin that disclosed a set of sound, white teeth. "Are you afraid, then?" said Pierre. "What else do you expect?" answered the soldier. "She has no mercy, you know! When she comes spluttering down, out go your innards. One can't help being afraid," he said laughing. Several of the men, with bright kindly faces, stopped beside Pierre. They seemed not to have expected him to talk like anybody else, and the discovery that he did so delighted them. "It's the business of us soldiers. But in a gentleman it's wonderful! There's a gentleman for you!" "To your places!" cried the young officer to the men gathered round Pierre. The young officer was evidently exercising his duties for the first or second time and therefore treated both his superiors and the men with great precision and formality. The booming cannonade and the fusillade of musketry were growing more intense over the whole field, especially to the left where Bagration's fleches were, but where Pierre was the smoke of the firing made it almost impossible to distinguish anything. Moreover, his whole attention was engrossed by watching the family circle--separated from all else--formed by the men in the battery. His first unconscious feeling of joyful animation produced by the sights and sounds of the battlefield was now replaced by another, especially since he had seen that soldier lying alone in the hayfield. Now, seated on the slope of the trench, he observed the faces of those around him. By ten o'clock some twenty men had already been carried away from the battery; two guns were smashed and cannon balls fell more and more frequently on the battery and spent bullets buzzed and whistled around. But the men in the battery seemed not to notice this, and merry voices and jokes were heard on all sides. "A live one!" shouted a man as a whistling shell approached. "Not this way! To the infantry!" added another with loud laughter, seeing the shell fly past and fall into the ranks of the supports. "Are you bowing to a friend, eh?" remarked another, chaffing a peasant who ducked low as a cannon ball flew over. Several soldiers gathered by the wall of the trench, looking out to see what was happening in front. "They've withdrawn the front line, it has retired," said they, pointing over the earthwork. "Mind your own business," an old sergeant shouted at them. "If they've retired it's because there's work for them to do farther back." And the sergeant, taking one of the men by the shoulders, gave him a shove with his knee. This was followed by a burst of laughter. "To the fifth gun, wheel it up!" came shouts from one side. "Now then, all together, like bargees!" rose the merry voices of those who were moving the gun. "Oh, she nearly knocked our gentleman's hat off!" cried the red-faced humorist, showing his teeth chaffing Pierre. "Awkward baggage!" he added reproachfully to a cannon ball that struck a cannon wheel and a man's leg. "Now then, you foxes!" said another, laughing at some militiamen who, stooping low, entered the battery to carry away the wounded man. "So this gruel isn't to your taste? Oh, you crows! You're scared!" they shouted at the militiamen who stood hesitating before the man whose leg had been torn off. "There, lads... oh, oh!" they mimicked the peasants, "they don't like it at all!" Pierre noticed that after every ball that hit the redoubt, and after every loss, the liveliness increased more and more. As the flames of the fire hidden within come more and more vividly and rapidly from an approaching thundercloud, so, as if in opposition to what was taking place, the lightning of hidden fire growing more and more intense glowed in the faces of these men. Pierre did not look out at the battlefield and was not concerned to know what was happening there; he was entirely absorbed in watching this fire which burned ever more brightly and which he felt was flaming up in the same way in his own soul. At ten o'clock the infantry that had been among the bushes in front of the battery and along the Kamenka streamlet retreated. From the battery they could be seen running back past it carrying their wounded on their muskets. A general with his suite came to the battery, and after speaking to the colonel gave Pierre an angry look and went away again having ordered the infantry supports behind the battery to lie down, so as to be less exposed to fire. After this from amid the ranks of infantry to the right of the battery came the sound of a drum and shouts of command, and from the battery one saw how those ranks of infantry moved forward. Pierre looked over the wall of the trench and was particularly struck by a pale young officer who, letting his sword hang down, was walking backwards and kept glancing uneasily around. The ranks of the infantry disappeared amid the smoke but their long-drawn shout and rapid musketry firing could still be heard. A few minutes later crowds of wounded men and stretcher-bearers came back from that direction. Projectiles began to fall still more frequently in the battery. Several men were lying about who had not been removed. Around the cannon the men moved still more briskly and busily. No one any longer took notice of Pierre. Once or twice he was shouted at for being in the way. The senior officer moved with big, rapid strides from one gun to another with a frowning face. The young officer, with his face still more flushed, commanded the men more scrupulously than ever. The soldiers handed up the charges, turned, loaded, and did their business with strained smartness. They gave little jumps as they walked, as though they were on springs. The stormcloud had come upon them, and in every face the fire which Pierre had watched kindle burned up brightly. Pierre standing beside the commanding officer. The young officer, his hand to his shako, ran up to his superior. "I have the honor to report, sir, that only eight rounds are left. Are we to continue firing?" he asked. "Grapeshot!" the senior shouted, without answering the question, looking over the wall of the trench. Suddenly something happened: the young officer gave a gasp and bending double sat down on the ground like a bird shot on the wing. Everything became strange, confused, and misty in Pierre's eyes. One cannon ball after another whistled by and struck the earthwork, a soldier, or a gun. Pierre, who had not noticed these sounds before, now heard nothing else. On the right of the battery soldiers shouting "Hurrah!" were running not forwards but backwards, it seemed to Pierre. A cannon ball struck the very end of the earth work by which he was standing, crumbling down the earth; a black ball flashed before his eyes and at the same instant plumped into something. Some militiamen who were entering the battery ran back. "All with grapeshot!" shouted the officer. The sergeant ran up to the officer and in a frightened whisper informed him (as a butler at dinner informs his master that there is no more of some wine asked for) that there were no more charges. "The scoundrels! What are they doing?" shouted the officer, turning to Pierre. The officer's face was red and perspiring and his eyes glittered under his frowning brow. "Run to the reserves and bring up the ammunition boxes!" he yelled, angrily avoiding Pierre with his eyes and speaking to his men. "I'll go," said Pierre. The officer, without answering him, strode across to the opposite side. "Don't fire.... Wait!" he shouted. The man who had been ordered to go for ammunition stumbled against Pierre. "Eh, sir, this is no place for you," said he, and ran down the slope. Pierre ran after him, avoiding the spot where the young officer was sitting. One cannon ball, another, and a third flew over him, falling in front, beside, and behind him. Pierre ran down the slope. "Where am I going?" he suddenly asked himself when he was already near the green ammunition wagons. He halted irresolutely, not knowing whether to return or go on. Suddenly a terrible concussion threw him backwards to the ground. At the same instant he was dazzled by a great flash of flame, and immediately a deafening roar, crackling, and whistling made his ears tingle. When he came to himself he was sitting on the ground leaning on his hands; the ammunition wagons he had been approaching no longer existed, only charred green boards and rags littered the scorched grass, and a horse, dangling fragments of its shaft behind it, galloped past, while another horse lay, like Pierre, on the ground, uttering prolonged and piercing cries. CHAPTER XXXII Beside himself with terror Pierre jumped up and ran back to the battery, as to the only refuge from the horrors that surrounded him. On entering the earthwork he noticed that there were men doing something there but that no shots were being fired from the battery. He had no time to realize who these men were. He saw the senior officer lying on the earth wall with his back turned as if he were examining something down below and that one of the soldiers he had noticed before was struggling forward shouting "Brothers!" and trying to free himself from some men who were holding him by the arm. He also saw something else that was strange. But he had not time to realize that the colonel had been killed, that the soldier shouting "Brothers!" was a prisoner, and that another man had been bayoneted in the back before his eyes, for hardly had he run into the redoubt before a thin, sallow-faced, perspiring man in a blue uniform rushed on him sword in hand, shouting something. Instinctively guarding against the shock--for they had been running together at full speed before they saw one another--Pierre put out his hands and seized the man (a French officer) by the shoulder with one hand and by the throat with the other. The officer, dropping his sword, seized Pierre by his collar. For some seconds they gazed with frightened eyes at one another's unfamiliar faces and both were perplexed at what they had done and what they were to do next. "Am I taken prisoner or have I taken him prisoner?" each was thinking. But the French officer was evidently more inclined to think he had been taken prisoner because Pierre's strong hand, impelled by instinctive fear, squeezed his throat ever tighter and tighter. The Frenchman was about to say something, when just above their heads, terrible and low, a cannon ball whistled, and it seemed to Pierre that the French officer's head had been torn off, so swiftly had he ducked it. Pierre too bent his head and let his hands fall. Without further thought as to who had taken whom prisoner, the Frenchman ran back to the battery and Pierre ran down the slope stumbling over the dead and wounded who, it seemed to him, caught at his feet. But before he reached the foot of the knoll he was met by a dense crowd of Russian soldiers who, stumbling, tripping up, and shouting, ran merrily and wildly toward the battery. (This was the attack for which Ermolov claimed the credit, declaring that only his courage and good luck made such a feat possible: it was the attack in which he was said to have thrown some St. George's Crosses he had in his pocket into the battery for the first soldiers to take who got there.) The French who had occupied the battery fled, and our troops shouting "Hurrah!" pursued them so far beyond the battery that it was difficult to call them back. The prisoners were brought down from the battery and among them was a wounded French general, whom the officers surrounded. Crowds of wounded--some known to Pierre and some unknown--Russians and French, with faces distorted by suffering, walked, crawled, and were carried on stretchers from the battery. Pierre again went up onto the knoll where he had spent over an hour, and of that family circle which had received him as a member he did not find a single one. There were many dead whom he did not know, but some he recognized. The young officer still sat in the same way, bent double, in a pool of blood at the edge of the earth wall. The red-faced man was still twitching, but they did not carry him away. Pierre ran down the slope once more. "Now they will stop it, now they will be horrified at what they have done!" he thought, aimlessly going toward a crowd of stretcher bearers moving from the battlefield. But behind the veil of smoke the sun was still high, and in front and especially to the left, near Semenovsk, something seemed to be seething in the smoke, and the roar of cannon and musketry did not diminish, but even increased to desperation like a man who, straining himself, shrieks with all his remaining strength. CHAPTER XXXIII The chief action of the battle of Borodino was fought within the seven thousand feet between Borodino and Bagration's fleches. Beyond that space there was, on the one side, a demonstration made by the Russians with Uvarov's cavalry at midday, and on the other side, beyond Utitsa, Poniatowski's collision with Tuchkov; but these two were detached and feeble actions in comparison with what took place in the center of the battlefield. On the field between Borodino and the fleches, beside the wood, the chief action of the day took place on an open space visible from both sides and was fought in the simplest and most artless way. The battle began on both sides with a cannonade from several hundred guns. Then when the whole field was covered with smoke, two divisions, Campan's and Dessaix's, advanced from the French right, while Murat's troops advanced on Borodino from their left. From the Shevardino Redoubt where Napoleon was standing the fleches were two thirds of a mile away, and it was more than a mile as the crow flies to Borodino, so that Napoleon could not see what was happening there, especially as the smoke mingling with the mist hid the whole locality. The soldiers of Dessaix's division advancing against the fleches could only be seen till they had entered the hollow that lay between them and the fleches. As soon as they had descended into that hollow, the smoke of the guns and musketry on the fleches grew so dense that it covered the whole approach on that side of it. Through the smoke glimpses could be caught of something black--probably men--and at times the glint of bayonets. But whether they were moving or stationary, whether they were French or Russian, could not be discovered from the Shevardino Redoubt. The sun had risen brightly and its slanting rays struck straight into Napoleon's face as, shading his eyes with his hand, he looked at the fleches. The smoke spread out before them, and at times it looked as if the smoke were moving, at times as if the troops moved. Sometimes shouts were heard through the firing, but it was impossible to tell what was being done there. Napoleon, standing on the knoll, looked through a field glass, and in its small circlet saw smoke and men, sometimes his own and sometimes Russians, but when he looked again with the naked eye, he could not tell where what he had seen was. He descended the knoll and began walking up and down before it. Occasionally he stopped, listened to the firing, and gazed intently at the battlefield. But not only was it impossible to make out what was happening from where he was standing down below, or from the knoll above on which some of his generals had taken their stand, but even from the fleches themselves--in which by this time there were now Russian and now French soldiers, alternately or together, dead, wounded, alive, frightened, or maddened--even at those fleches themselves it was impossible to make out what was taking place. There for several hours amid incessant cannon and musketry fire, now Russians were seen alone, now Frenchmen alone, now infantry, and now cavalry: they appeared, fired, fell, collided, not knowing what to do with one another, screamed, and ran back again. From the battlefield adjutants he had sent out, and orderlies from his marshals, kept galloping up to Napoleon with reports of the progress of the action, but all these reports were false, both because it was impossible in the heat of battle to say what was happening at any given moment and because many of the adjutants did not go to the actual place of conflict but reported what they had heard from others; and also because while an adjutant was riding more than a mile to Napoleon circumstances changed and the news he brought was already becoming false. Thus an adjutant galloped up from Murat with tidings that Borodino had been occupied and the bridge over the Kolocha was in the hands of the French. The adjutant asked whether Napoleon wished the troops to cross it? Napoleon gave orders that the troops should form up on the farther side and wait. But before that order was given- almost as soon in fact as the adjutant had left Borodino--the bridge had been retaken by the Russians and burned, in the very skirmish at which Pierre had been present at the beginning of the battle. An adjutant galloped up from the fleches with a pale and frightened face and reported to Napoleon that their attack had been repulsed, Campan wounded, and Davout killed; yet at the very time the adjutant had been told that the French had been repulsed, the fleches had in fact been recaptured by other French troops, and Davout was alive and only slightly bruised. On the basis of these necessarily untrustworthy reports Napoleon gave his orders, which had either been executed before he gave them or could not be and were not executed. The marshals and generals, who were nearer to the field of battle but, like Napoleon, did not take part in the actual fighting and only occasionally went within musket range, made their own arrangements without asking Napoleon and issued orders where and in what direction to fire and where cavalry should gallop and infantry should run. But even their orders, like Napoleon's, were seldom carried out, and then but partially. For the most part things happened contrary to their orders. Soldiers ordered to advance ran back on meeting grapeshot; soldiers ordered to remain where they were, suddenly, seeing Russians unexpectedly before them, sometimes rushed back and sometimes forward, and the cavalry dashed without orders in pursuit of the flying Russians. In this way two cavalry regiments galloped through the Semenovsk hollow and as soon as they reached the top of the incline turned round and galloped full speed back again. The infantry moved in the same way, sometimes running to quite other places than those they were ordered to go to. All orders as to where and when to move the guns, when to send infantry to shoot or horsemen to ride down the Russian infantry--all such orders were given by the officers on the spot nearest to the units concerned, without asking either Ney, Davout, or Murat, much less Napoleon. They did not fear getting into trouble for not fulfilling orders or for acting on their own initiative, for in battle what is at stake is what is dearest to man--his own life--and it sometimes seems that safety lies in running back, sometimes in running forward; and these men who were right in the heat of the battle acted according to the mood of the moment. In reality, however, all these movements forward and backward did not improve or alter the position of the troops. All their rushing and galloping at one another did little harm, the harm of disablement and death was caused by the balls and bullets that flew over the fields on which these men were floundering about. As soon as they left the place where the balls and bullets were flying about, their superiors, located in the background, re-formed them and brought them under discipline and under the influence of that discipline led them back to the zone of fire, where under the influence of fear of death they lost their discipline and rushed about according to the chance promptings of the throng. CHAPTER XXXIV Napoleon's generals--Davout, Ney, and Murat, who were near that region of fire and sometimes even entered it--repeatedly led into it huge masses of well-ordered troops. But contrary to what had always happened in their former battles, instead of the news they expected of the enemy's flight, these orderly masses returned thence as disorganized and terrified mobs. The generals re-formed them, but their numbers constantly decreased. In the middle of the day Murat sent his adjutant to Napoleon to demand reinforcements. Napoleon sat at the foot of the knoll, drinking punch, when Murat's adjutant galloped up with an assurance that the Russians would be routed if His Majesty would let him have another division. "Reinforcements?" said Napoleon in a tone of stern surprise, looking at the adjutant--a handsome lad with long black curls arranged like Murat's own--as though he did not understand his words. "Reinforcements!" thought Napoleon to himself. "How can they need reinforcements when they already have half the army directed against a weak, unentrenched Russian wing?" "Tell the King of Naples," said he sternly, "that it is not noon yet, and I don't yet see my chessboard clearly. Go!..." The handsome boy adjutant with the long hair sighed deeply without removing his hand from his hat and galloped back to where men were being slaughtered. Napoleon rose and having summoned Caulaincourt and Berthier began talking to them about matters unconnected with the battle. In the midst of this conversation, which was beginning to interest Napoleon, Berthier's eyes turned to look at a general with a suite, who was galloping toward the knoll on a lathering horse. It was Belliard. Having dismounted he went up to the Emperor with rapid strides and in a loud voice began boldly demonstrating the necessity of sending reinforcements. He swore on his honor that the Russians were lost if the Emperor would give another division. Napoleon shrugged his shoulders and continued to pace up and down without replying. Belliard began talking loudly and eagerly to the generals of the suite around him. "You are very fiery, Belliard," said Napoleon, when he again came up to the general. "In the heat of a battle it is easy to make a mistake. Go and have another look and then come back to me." Before Belliard was out of sight, a messenger from another part of the battlefield galloped up. "Now then, what do you want?" asked Napoleon in the tone of a man irritated at being continually disturbed. "Sire, the prince..." began the adjutant. "Asks for reinforcements?" said Napoleon with an angry gesture. The adjutant bent his head affirmatively and began to report, but the Emperor turned from him, took a couple of steps, stopped, came back, and called Berthier. "We must give reserves," he said, moving his arms slightly apart. "Who do you think should be sent there?" he asked of Berthier (whom he subsequently termed "that gosling I have made an eagle"). "Send Claparede's division, sire," replied Berthier, who knew all the divisions regiments, and battalions by heart. Napoleon nodded assent. The adjutant galloped to Claparede's division and a few minutes later the Young Guards stationed behind the knoll moved forward. Napoleon gazed silently in that direction. "No!" he suddenly said to Berthier. "I can't send Claparede. Send Friant's division." Though there was no advantage in sending Friant's division instead of Claparede's, and even in obvious inconvenience and delay in stopping Claparede and sending Friant now, the order was carried out exactly. Napoleon did not notice that in regard to his army he was playing the part of a doctor who hinders by his medicines--a role he so justly understood and condemned. Friant's division disappeared as the others had done into the smoke of the battlefield. From all sides adjutants continued to arrive at a gallop and as if by agreement all said the same thing. They all asked for reinforcements and all said that the Russians were holding their positions and maintaining a hellish fire under which the French army was melting away. Napoleon sat on a campstool, wrapped in thought. M. de Beausset, the man so fond of travel, having fasted since morning, came up to the Emperor and ventured respectfully to suggest lunch to His Majesty. "I hope I may now congratulate Your Majesty on a victory?" said he. Napoleon silently shook his head in negation. Assuming the negation to refer only to the victory and not to the lunch, M. de Beausset ventured with respectful jocularity to remark that there is no reason for not having lunch when one can get it. "Go away..." exclaimed Napoleon suddenly and morosely, and turned aside. A beatific smile of regret, repentance, and ecstasy beamed on M. de Beausset's face and he glided away to the other generals. Napoleon was experiencing a feeling of depression like that of an ever-lucky gambler who, after recklessly flinging money about and always winning, suddenly just when he has calculated all the chances of the game, finds that the more he considers his play the more surely he loses. His troops were the same, his generals the same, the same preparations had been made, the same dispositions, and the same proclamation courte et energique, he himself was still the same: he knew that and knew that he was now even more experienced and skillful than before. Even the enemy was the same as at Austerlitz and Friedland--yet the terrible stroke of his arm had supernaturally become impotent. All the old methods that had been unfailingly crowned with success: the concentration of batteries on one point, an attack by reserves to break the enemy's line, and a cavalry attack by "the men of iron," all these methods had already been employed, yet not only was there no victory, but from all sides came the same news of generals killed and wounded, of reinforcements needed, of the impossibility of driving back the Russians, and of disorganization among his own troops. Formerly, after he had given two or three orders and uttered a few phrases, marshals and adjutants had come galloping up with congratulations and happy faces, announcing the trophies taken, the corps of prisoners, bundles of enemy eagles and standards, cannon and stores, and Murat had only begged leave to loose the cavalry to gather in the baggage wagons. So it had been at Lodi, Marengo, Arcola, Jena, Austerlitz, Wagram, and so on. But now something strange was happening to his troops. Despite news of the capture of the fleches, Napoleon saw that this was not the same, not at all the same, as what had happened in his former battles. He saw that what he was feeling was felt by all the men about him experienced in the art of war. All their faces looked dejected, and they all shunned one another's eyes--only a de Beausset could fail to grasp the meaning of what was happening. But Napoleon with his long experience of war well knew the meaning of a battle not gained by the attacking side in eight hours, after all efforts had been expended. He knew that it was a lost battle and that the least accident might now--with the fight balanced on such a strained center--destroy him and his army. When he ran his mind over the whole of this strange Russian campaign in which not one battle had been won, and in which not a flag, or cannon, or army corps had been captured in two months, when he looked at the concealed depression on the faces around him and heard reports of the Russians still holding their ground--a terrible feeling like a nightmare took possession of him, and all the unlucky accidents that might destroy him occurred to his mind. The Russians might fall on his left wing, might break through his center, he himself might be killed by a stray cannon ball. All this was possible. In former battles he had only considered the possibilities of success, but now innumerable unlucky chances presented themselves, and he expected them all. Yes, it was like a dream in which a man fancies that a ruffian is coming to attack him, and raises his arm to strike that ruffian a terrible blow which he knows should annihilate him, but then feels that his arm drops powerless and limp like a rag, and the horror of unavoidable destruction seizes him in his helplessness. The news that the Russians were attacking the left flank of the French army aroused that horror in Napoleon. He sat silently on a campstool below the knoll, with head bowed and elbows on his knees. Berthier approached and suggested that they should ride along the line to ascertain the position of affairs. "What? What do you say?" asked Napoleon. "Yes, tell them to bring me my horse." He mounted and rode toward Semenovsk. Amid the powder smoke, slowly dispersing over the whole space through which Napoleon rode, horses and men were lying in pools of blood, singly or in heaps. Neither Napoleon nor any of his generals had ever before seen such horrors or so many slain in such a small area. The roar of guns, that had not ceased for ten hours, wearied the ear and gave a peculiar significance to the spectacle, as music does to tableaux vivants. Napoleon rode up the high ground at Semenovsk, and through the smoke saw ranks of men in uniforms of a color unfamiliar to him. They were Russians. The Russians stood in serried ranks behind Semenovsk village and its knoll, and their guns boomed incessantly along their line and sent forth clouds of smoke. It was no longer a battle: it was a continuous slaughter which could be of no avail either to the French or the Russians. Napoleon stopped his horse and again fell into the reverie from which Berthier had aroused him. He could not stop what was going on before him and around him and was supposed to be directed by him and to depend on him, and from its lack of success this affair, for the first time, seemed to him unnecessary and horrible. One of the generals rode up to Napoleon and ventured to offer to lead the Old Guard into action. Ney and Berthier, standing near Napoleon, exchanged looks and smiled contemptuously at this general's senseless offer. Napoleon bowed his head and remained silent a long time. "At eight hundred leagues from France, I will not have my Guard destroyed!" he said, and turning his horse rode back to Shevardino. CHAPTER XXXV On the rug-covered bench where Pierre had seen him in the morning sat Kutuzov, his gray head hanging, his heavy body relaxed. He gave no orders, but only assented to or dissented from what others suggested. "Yes, yes, do that," he replied to various proposals. "Yes, yes: go, dear boy, and have a look," he would say to one or another of those about him; or, "No, don't, we'd better wait!" He listened to the reports that were brought him and gave directions when his subordinates demanded that of him; but when listening to the reports it seemed as if he were not interested in the import of the words spoken, but rather in something else--in the expression of face and tone of voice of those who were reporting. By long years of military experience he knew, and with the wisdom of age understood, that it is impossible for one man to direct hundreds of thousands of others struggling with death, and he knew that the result of a battle is decided not by the orders of a commander in chief, nor the place where the troops are stationed, nor by the number of cannon or of slaughtered men, but by that intangible force called the spirit of the army, and he watched this force and guided it in as far as that was in his power. Kutuzov's general expression was one of concentrated quiet attention, and his face wore a strained look as if he found it difficult to master the fatigue of his old and feeble body. At eleven o'clock they brought him news that the fleches captured by the French had been retaken, but that Prince Bagration was wounded. Kutuzov groaned and swayed his head. "Ride over to Prince Peter Ivanovich and find out about it exactly," he said to one of his adjutants, and then turned to the Duke of Wurttemberg who was standing behind him. "Will Your Highness please take command of the first army?" Soon after the duke's departure--before he could possibly have reached Semenovsk--his adjutant came back from him and told Kutuzov that the duke asked for more troops. Kutuzov made a grimace and sent an order to Dokhturov to take over the command of the first army, and a request to the duke--whom he said he could not spare at such an important moment--to return to him. When they brought him news that Murat had been taken prisoner, and the staff officers congratulated him, Kutuzov smiled. "Wait a little, gentlemen," said he. "The battle is won, and there is nothing extraordinary in the capture of Murat. Still, it is better to wait before we rejoice." But he sent an adjutant to take the news round the army. When Scherbinin came galloping from the left flank with news that the French had captured the fleches and the village of Semenovsk, Kutuzov, guessing by the sounds of the battle and by Scherbinin's looks that the news was bad, rose as if to stretch his legs and, taking Scherbinin's arm, led him aside. "Go, my dear fellow," he said to Ermolov, "and see whether something can't be done." Kutuzov was in Gorki, near the center of the Russian position. The attack directed by Napoleon against our left flank had been several times repulsed. In the center the French had not got beyond Borodino, and on their left flank Uvarov's cavalry had put the French to flight. Toward three o'clock the French attacks ceased. On the faces of all who came from the field of battle, and of those who stood around him, Kutuzov noticed an expression of extreme tension. He was satisfied with the day's success--a success exceeding his expectations, but the old man's strength was failing him. Several times his head dropped low as if it were falling and he dozed off. Dinner was brought him. Adjutant General Wolzogen, the man who when riding past Prince Andrew had said, "the war should be extended widely," and whom Bagration so detested, rode up while Kutuzov was at dinner. Wolzogen had come from Barclay de Tolly to report on the progress of affairs on the left flank. The sagacious Barclay de Tolly, seeing crowds of wounded men running back and the disordered rear of the army, weighed all the circumstances, concluded that the battle was lost, and sent his favorite officer to the commander in chief with that news. Kutuzov was chewing a piece of roast chicken with difficulty and glanced at Wolzogen with eyes that brightened under their puckering lids. Wolzogen, nonchalantly stretching his legs, approached Kutuzov with a half-contemptuous smile on his lips, scarcely touching the peak of his cap. He treated his Serene Highness with a somewhat affected nonchalance intended to show that, as a highly trained military man, he left it to Russians to make an idol of this useless old man, but that he knew whom he was dealing with. "Der alte Herr" (as in their own set the Germans called Kutuzov) "is making himself very comfortable," thought Wolzogen, and looking severely at the dishes in front of Kutuzov he began to report to "the old gentleman" the position of affairs on the left flank as Barclay had ordered him to and as he himself had seen and understood it. "All the points of our position are in the enemy's hands and we cannot dislodge them for lack of troops, the men are running away and it is impossible to stop them," he reported. Kutuzov ceased chewing and fixed an astonished gaze on Wolzogen, as if not understand what was said to him. Wolzogen, noticing "the old gentleman's" agitation, said with a smile: "I have not considered it right to conceal from your Serene Highness what I have seen. The troops are in complete disorder..." "You have seen? You have seen?..." Kutuzov shouted frowning, and rising quickly he went up to Wolzogen. "How... how dare you!..." he shouted, choking and making a threatening gesture with his trembling arms: "How dare you, sir, say that to me? You know nothing about it. Tell General Barclay from me that his information is incorrect and that the real course of the battle is better known to me, the commander in chief, than to him." Wolzogen was about to make a rejoinder, but Kutuzov interrupted him. "The enemy has been repulsed on the left and defeated on the right flank. If you have seen amiss, sir, do not allow yourself to say what you don't know! Be so good as to ride to General Barclay and inform him of my firm intention to attack the enemy tomorrow," said Kutuzov sternly. All were silent, and the only sound audible was the heavy breathing of the panting old general. "They are repulsed everywhere, for which I thank God and our brave army! The enemy is beaten, and tomorrow we shall drive him from the sacred soil of Russia," said Kutuzov crossing himself, and he suddenly sobbed as his eyes filled with tears. Wolzogen, shrugging his shoulders and curling his lips, stepped silently aside, marveling at "the old gentleman's" conceited stupidity. "Ah, here he is, my hero!" said Kutuzov to a portly, handsome, dark-haired general who was just ascending the knoll. This was Raevski, who had spent the whole day at the most important part of the field of Borodino. Raevski reported that the troops were firmly holding their ground and that the French no longer ventured to attack. After hearing him, Kutuzov said in French: "Then you do not think, like some others, that we must retreat?" "On the contrary, your Highness, in indecisive actions it is always the most stubborn who remain victors," replied Raevski, "and in my opinion..." "Kaysarov!" Kutuzov called to his adjutant. "Sit down and write out the order of the day for tomorrow. And you," he continued, addressing another, "ride along the line and that tomorrow we attack." While Kutuzov was talking to Raevski and dictating the order of the day, Wolzogen returned from Barclay and said that General Barclay wished to have written confirmation of the order the field marshal had given. Kutuzov, without looking at Wolzogen, gave directions for the order to be written out which the former commander in chief, to avoid personal responsibility, very judiciously wished to receive. And by means of that mysterious indefinable bond which maintains throughout an army one and the same temper, known as "the spirit of the army," and which constitutes the sinew of war, Kutuzov's words, his order for a battle next day, immediately became known from one end of the army to the other. It was far from being the same words or the same order that reached the farthest links of that chain. The tales passing from mouth to mouth at different ends of the army did not even resemble what Kutuzov had said, but the sense of his words spread everywhere because what he said was not the outcome of cunning calculations, but of a feeling that lay in the commander in chief's soul as in that of every Russian. And on learning that tomorrow they were to attack the enemy, and hearing from the highest quarters a confirmation of what they wanted to believe, the exhausted, wavering men felt comforted and inspirited. CHAPTER XXXVI Prince Andrew's regiment was among the reserves which till after one o'clock were stationed inactive behind Semenovsk, under heavy artillery fire. Toward two o'clock the regiment, having already lost more than two hundred men, was moved forward into a trampled oatfield in the gap between Semenovsk and the Knoll Battery, where thousands of men perished that day and on which an intense, concentrated fire from several hundred enemy guns was directed between one and two o'clock. Without moving from that spot or firing a single shot the regiment here lost another third of its men. From in front and especially from the right, in the unlifting smoke the guns boomed, and out of the mysterious domain of smoke that overlay the whole space in front, quick hissing cannon balls and slow whistling shells flew unceasingly. At times, as if to allow them a respite, a quarter of an hour passed during which the cannon balls and shells all flew overhead, but sometimes several men were torn from the regiment in a minute and the slain were continually being dragged away and the wounded carried off. With each fresh blow less and less chance of life remained for those not yet killed. The regiment stood in columns of battalion, three hundred paces apart, but nevertheless the men were always in one and the same mood. All alike were taciturn and morose. Talk was rarely heard in the ranks, and it ceased altogether every time the thud of a successful shot and the cry of "stretchers!" was heard. Most of the time, by their officers' order, the men sat on the ground. One, having taken off his shako, carefully loosened the gathers of its lining and drew them tight again; another, rubbing some dry clay between his palms, polished his bayonet; another fingered the strap and pulled the buckle of his bandolier, while another smoothed and refolded his leg bands and put his boots on again. Some built little houses of the tufts in the plowed ground, or plaited baskets from the straw in the cornfield. All seemed fully absorbed in these pursuits. When men were killed or wounded, when rows of stretchers went past, when some troops retreated, and when great masses of the enemy came into view through the smoke, no one paid any attention to these things. But when our artillery or cavalry advanced or some of our infantry were seen to move forward, words of approval were heard on all sides. But the liveliest attention was attracted by occurrences quite apart from, and unconnected with, the battle. It was as if the minds of these morally exhausted men found relief in everyday, commonplace occurrences. A battery of artillery was passing in front of the regiment. The horse of an ammunition cart put its leg over a trace. "Hey, look at the trace horse!... Get her leg out! She'll fall.... Ah, they don't see it!" came identical shouts from the ranks all along the regiment. Another time, general attention was attracted by a small brown dog, coming heaven knows whence, which trotted in a preoccupied manner in front of the ranks with tail stiffly erect till suddenly a shell fell close by, when it yelped, tucked its tail between its legs, and darted aside. Yells and shrieks of laughter rose from the whole regiment. But such distractions lasted only a moment, and for eight hours the men had been inactive, without food, in constant fear of death, and their pale and gloomy faces grew ever paler and gloomier. Prince Andrew, pale and gloomy like everyone in the regiment, paced up and down from the border of one patch to another, at the edge of the meadow beside an oatfield, with head bowed and arms behind his back. There was nothing for him to do and no orders to be given. Everything went on of itself. The killed were dragged from the front, the wounded carried away, and the ranks closed up. If any soldiers ran to the rear they returned immediately and hastily. At first Prince Andrew, considering it his duty to rouse the courage of the men and to set them an example, walked about among the ranks, but he soon became convinced that this was unnecessary and that there was nothing he could teach them. All the powers of his soul, as of every soldier there, were unconsciously bent on avoiding the contemplation of the horrors of their situation. He walked along the meadow, dragging his feet, rustling the grass, and gazing at the dust that covered his boots; now he took big strides trying to keep to the footprints left on the meadow by the mowers, then he counted his steps, calculating how often he must walk from one strip to another to walk a mile, then he stripped the flowers from the wormwood that grew along a boundary rut, rubbed them in his palms, and smelled their pungent, sweetly bitter scent. Nothing remained of the previous day's thoughts. He thought of nothing. He listened with weary ears to the ever-recurring sounds, distinguishing the whistle of flying projectiles from the booming of the reports, glanced at the tiresomely familiar faces of the men of the first battalion, and waited. "Here it comes... this one is coming our way again!" he thought, listening to an approaching whistle in the hidden region of smoke. "One, another! Again! It has hit...." He stopped and looked at the ranks. "No, it has gone over. But this one has hit!" And again he started trying to reach the boundary strip in sixteen paces. A whizz and a thud! Five paces from him, a cannon ball tore up the dry earth and disappeared. A chill ran down his back. Again he glanced at the ranks. Probably many had been hit--a large crowd had gathered near the second battalion. "Adjutant!" he shouted. "Order them not to crowd together." The adjutant, having obeyed this instruction, approached Prince Andrew. From the other side a battalion commander rode up. "Look out!" came a frightened cry from a soldier and, like a bird whirring in rapid flight and alighting on the ground, a shell dropped with little noise within two steps of Prince Andrew and close to the battalion commander's horse. The horse first, regardless of whether it was right or wrong to show fear, snorted, reared almost throwing the major, and galloped aside. The horse's terror infected the men. "Lie down!" cried the adjutant, throwing himself flat on the ground. Prince Andrew hesitated. The smoking shell spun like a top between him and the prostrate adjutant, near a wormwood plant between the field and the meadow. "Can this be death?" thought Prince Andrew, looking with a quite new, envious glance at the grass, the wormwood, and the streamlet of smoke that curled up from the rotating black ball. "I cannot, I do not wish to die. I love life--I love this grass, this earth, this air...." He thought this, and at the same time remembered that people were looking at him. "It's shameful, sir!" he said to the adjutant. "What..." He did not finish speaking. At one and the same moment came the sound of an explosion, a whistle of splinters as from a breaking window frame, a suffocating smell of powder, and Prince Andrew started to one side, raising his arm, and fell on his chest. Several officers ran up to him. From the right side of his abdomen, blood was welling out making a large stain on the grass. The militiamen with stretchers who were called up stood behind the officers. Prince Andrew lay on his chest with his face in the grass, breathing heavily and noisily. "What are you waiting for? Come along!" The peasants went up and took him by his shoulders and legs, but he moaned piteously and, exchanging looks, they set him down again. "Pick him up, lift him, it's all the same!" cried someone. They again took him by the shoulders and laid him on the stretcher. "Ah, God! My God! What is it? The stomach? That means death! My God!"--voices among the officers were heard saying. "It flew a hair's breadth past my ear," said the adjutant. The peasants, adjusting the stretcher to their shoulders, started hurriedly along the path they had trodden down, to the dressing station. "Keep in step! Ah... those peasants!" shouted an officer, seizing by their shoulders and checking the peasants, who were walking unevenly and jolting the stretcher. "Get into step, Fedor... I say, Fedor!" said the foremost peasant. "Now that's right!" said the one behind joyfully, when he had got into step. "Your excellency! Eh, Prince!" said the trembling voice of Timokhin, who had run up and was looking down on the stretcher. Prince Andrew opened his eyes and looked up at the speaker from the stretcher into which his head had sunk deep and again his eyelids drooped. The militiamen carried Prince Andrew to dressing station by the wood, where wagons were stationed. The dressing station consisted of three tents with flaps turned back, pitched at the edge of a birch wood. In the wood, wagons and horses were standing. The horses were eating oats from their movable troughs and sparrows flew down and pecked the grains that fell. Some crows, scenting blood, flew among the birch trees cawing impatiently. Around the tents, over more than five acres, bloodstained men in various garbs stood, sat, or lay. Around the wounded stood crowds of soldier stretcher-bearers with dismal and attentive faces, whom the officers keeping order tried in vain to drive from the spot. Disregarding the officers' orders, the soldiers stood leaning against their stretchers and gazing intently, as if trying to comprehend the difficult problem of what was taking place before them. From the tents came now loud angry cries and now plaintive groans. Occasionally dressers ran out to fetch water, or to point out those who were to be brought in next. The wounded men awaiting their turn outside the tents groaned, sighed, wept, screamed, swore, or asked for vodka. Some were delirious. Prince Andrew's bearers, stepping over the wounded who had not yet been bandaged, took him, as a regimental commander, close up to one of the tents and there stopped, awaiting instructions. Prince Andrew opened his eyes and for a long time could not make out what was going on around him. He remembered the meadow, the wormwood, the field, the whirling black ball, and his sudden rush of passionate love of life. Two steps from him, leaning against a branch and talking loudly and attracting general attention, stood a tall, handsome, black-haired noncommissioned officer with a bandaged head. He had been wounded in the head and leg by bullets. Around him, eagerly listening to his talk, a crowd of wounded and stretcher-bearers was gathered. "We kicked him out from there so that he chucked everything, we grabbed the King himself!" cried he, looking around him with eyes that glittered with fever. "If only reserves had come up just then, lads, there wouldn't have been nothing left of him! I tell you surely..." Like all the others near the speaker, Prince Andrew looked at him with shining eyes and experienced a sense of comfort. "But isn't it all the same now?" thought he. "And what will be there, and what has there been here? Why was I so reluctant to part with life? There was something in this life I did not and do not understand." CHAPTER XXXVII One of the doctors came out of the tent in a bloodstained apron, holding a cigar between the thumb and little finger of one of his small bloodstained hands, so as not to smear it. He raised his head and looked about him, but above the level of the wounded men. He evidently wanted a little respite. After turning his head from right to left for some time, he sighed and looked down. "All right, immediately," he replied to a dresser who pointed Prince Andrew out to him, and he told them to carry him into the tent. Murmurs arose among the wounded who were waiting. "It seems that even in the next world only the gentry are to have a chance!" remarked one. Prince Andrew was carried in and laid on a table that had only just been cleared and which a dresser was washing down. Prince Andrew could not make out distinctly what was in that tent. The pitiful groans from all sides and the torturing pain in his thigh, stomach, and back distracted him. All he saw about him merged into a general impression of naked, bleeding human bodies that seemed to fill the whole of the low tent, as a few weeks previously, on that hot August day, such bodies had filled the dirty pond beside the Smolensk road. Yes, it was the same flesh, the same chair a canon, the sight of which had even then filled him with horror, as by a presentiment. There were three operating tables in the tent. Two were occupied, and on the third they placed Prince Andrew. For a little while he was left alone and involuntarily witnessed what was taking place on the other two tables. On the nearest one sat a Tartar, probably a Cossack, judging by the uniform thrown down beside him. Four soldiers were holding him, and a spectacled doctor was cutting into his muscular brown back. "Ooh, ooh, ooh!" grunted the Tartar, and suddenly lifting up his swarthy snub-nosed face with its high cheekbones, and baring his white teeth, he began to wriggle and twitch his body and utter piercing, ringing, and prolonged yells. On the other table, round which many people were crowding, a tall well-fed man lay on his back with his head thrown back. His curly hair, its color, and the shape of his head seemed strangely familiar to Prince Andrew. Several dressers were pressing on his chest to hold him down. One large, white, plump leg twitched rapidly all the time with a feverish tremor. The man was sobbing and choking convulsively. Two doctors--one of whom was pale and trembling--were silently doing something to this man's other, gory leg. When he had finished with the Tartar, whom they covered with an overcoat, the spectacled doctor came up to Prince Andrew, wiping his hands. He glanced at Prince Andrew's face and quickly turned away. "Undress him! What are you waiting for?" he cried angrily to the dressers. His very first, remotest recollections of childhood came back to Prince Andrew's mind when the dresser with sleeves rolled up began hastily to undo the buttons of his clothes and undressed him. The doctor bent down over the wound, felt it, and sighed deeply. Then he made a sign to someone, and the torturing pain in his abdomen caused Prince Andrew to lose consciousness. When he came to himself the splintered portions of his thighbone had been extracted, the torn flesh cut away, and the wound bandaged. Water was being sprinkled on his face. As soon as Prince Andrew opened his eyes, the doctor bent over, kissed him silently on the lips, and hurried away. After the sufferings he had been enduring, Prince Andrew enjoyed a blissful feeling such as he had not experienced for a long time. All the best and happiest moments of his life--especially his earliest childhood, when he used to be undressed and put to bed, and when leaning over him his nurse sang him to sleep and he, burying his head in the pillow, felt happy in the mere consciousness of life- returned to his memory, not merely as something past but as something present. The doctors were busily engaged with the wounded man the shape of whose head seemed familiar to Prince Andrew: they were lifting him up and trying to quiet him. "Show it to me.... Oh, ooh... Oh! Oh, ooh!" his frightened moans could be heard, subdued by suffering and broken by sobs. Hearing those moans Prince Andrew wanted to weep. Whether because he was dying without glory, or because he was sorry to part with life, or because of those memories of a childhood that could not return, or because he was suffering and others were suffering and that man near him was groaning so piteously--he felt like weeping childlike, kindly, and almost happy tears. The wounded man was shown his amputated leg stained with clotted blood and with the boot still on. "Oh! Oh, ooh!" he sobbed, like a woman. The doctor who had been standing beside him, preventing Prince Andrew from seeing his face, moved away. "My God! What is this? Why is he here?" said Prince Andrew to himself. In the miserable, sobbing, enfeebled man whose leg had just been amputated, he recognized Anatole Kuragin. Men were supporting him in their arms and offering him a glass of water, but his trembling, swollen lips could not grasp its rim. Anatole was sobbing painfully. "Yes, it is he! Yes, that man is somehow closely and painfully connected with me," thought Prince Andrew, not yet clearly grasping what he saw before him. "What is the connection of that man with my childhood and life?" he asked himself without finding an answer. And suddenly a new unexpected memory from that realm of pure and loving childhood presented itself to him. He remembered Natasha as he had seen her for the first time at the ball in 1810, with her slender neck and arms and with a frightened happy face ready for rapture, and love and tenderness for her, stronger and more vivid than ever, awoke in his soul. He now remembered the connection that existed between himself and this man who was dimly gazing at him through tears that filled his swollen eyes. He remembered everything, and ecstatic pity and love for that man overflowed his happy heart. Prince Andrew could no longer restrain himself and wept tender loving tears for his fellow men, for himself, and for his own and their errors. "Compassion, love of our brothers, for those who love us and for those who hate us, love of our enemies; yes, that love which God preached on earth and which Princess Mary taught me and I did not understand--that is what made me sorry to part with life, that is what remained for me had I lived. But now it is too late. I know it!" CHAPTER XXXVIII The terrible spectacle of the battlefield covered with dead and wounded, together with the heaviness of his head and the news that some twenty generals he knew personally had been killed or wounded, and the consciousness of the impotence of his once mighty arm, produced an unexpected impression on Napoleon who usually liked to look at the killed and wounded, thereby, he considered, testing his strength of mind. This day the horrible appearance of the battlefield overcame that strength of mind which he thought constituted his merit and his greatness. He rode hurriedly from the battlefield and returned to the Shevardino knoll, where he sat on his campstool, his sallow face swollen and heavy, his eyes dim, his nose red, and his voice hoarse, involuntarily listening, with downcast eyes, to the sounds of firing. With painful dejection he awaited the end of this action, in which he regarded himself as a participant and which he was unable to arrest. A personal, human feeling for a brief moment got the better of the artificial phantasm of life he had served so long. He felt in his own person the sufferings and death he had witnessed on the battlefield. The heaviness of his head and chest reminded him of the possibility of suffering and death for himself. At that moment he did not desire Moscow, or victory, or glory (what need had he for any more glory?). The one thing he wished for was rest, tranquillity, and freedom. But when he had been on the Semenovsk heights the artillery commander had proposed to him to bring several batteries of artillery up to those heights to strengthen the fire on the Russian troops crowded in front of Knyazkovo. Napoleon had assented and had given orders that news should be brought to him of the effect those batteries produced. An adjutant came now to inform him that the fire of two hundred guns had been concentrated on the Russians, as he had ordered, but that they still held their ground. "Our fire is mowing them down by rows, but still they hold on," said the adjutant. "They want more!..." said Napoleon in a hoarse voice. "Sire?" asked the adjutant who had not heard the remark. "They want more!" croaked Napoleon frowning. "Let them have it!" Even before he gave that order the thing he did not desire, and for which he gave the order only because he thought it was expected of him, was being done. And he fell back into that artificial realm of imaginary greatness, and again--as a horse walking a treadmill thinks it is doing something for itself--he submissively fulfilled the cruel, sad, gloomy, and inhuman role predestined for him. And not for that day and hour alone were the mind and conscience darkened of this man on whom the responsibility for what was happening lay more than on all the others who took part in it. Never to the end of his life could he understand goodness, beauty, or truth, or the significance of his actions which were too contrary to goodness and truth, too remote from everything human, for him ever to be able to grasp their meaning. He could not disavow his actions, belauded as they were by half the world, and so he had to repudiate truth, goodness, and all humanity. Not only on that day, as he rode over the battlefield strewn with men killed and maimed (by his will as he believed), did he reckon as he looked at them how many Russians there were for each Frenchman and, deceiving himself, find reason for rejoicing in the calculation that there were five Russians for every Frenchman. Not on that day alone did he write in a letter to Paris that "the battle field was superb," because fifty thousand corpses lay there, but even on the island of St. Helena in the peaceful solitude where he said he intended to devote his leisure to an account of the great deeds he had done, he wrote: The Russian war should have been the most popular war of modern times: it was a war of good sense, for real interests, for the tranquillity and security of all; it was purely pacific and conservative. It was a war for a great cause, the end of uncertainties and the beginning of security. A new horizon and new labors were opening out, full of well-being and prosperity for all. The European system was already founded; all that remained was to organize it. Satisfied on these great points and with tranquility everywhere, I too should have had my Congress and my Holy Alliance. Those ideas were stolen from me. In that reunion of great sovereigns we should have discussed our interests like one family, and have rendered account to the peoples as clerk to master. Europe would in this way soon have been, in fact, but one people, and anyone who traveled anywhere would have found himself always in the common fatherland. I should have demanded the freedom of all navigable rivers for everybody, that the seas should be common to all, and that the great standing armies should be reduced henceforth to mere guards for the sovereigns. On returning to France, to the bosom of the great, strong, magnificent, peaceful, and glorious fatherland, I should have proclaimed her frontiers immutable; all future wars purely defensive, all aggrandizement antinational. I should have associated my son in the Empire; my dictatorship would have been finished, and his constitutional reign would have begun. Paris would have been the capital of the world, and the French the envy of the nations! My leisure then, and my old age, would have been devoted, in company with the Empress and during the royal apprenticeship of my son, to leisurely visiting, with our own horses and like a true country couple, every corner of the Empire, receiving complaints, redressing wrongs, and scattering public buildings and benefactions on all sides and everywhere. Napoleon, predestined by Providence for the gloomy role of executioner of the peoples, assured himself that the aim of his actions had been the peoples' welfare and that he could control the fate of millions and by the employment of power confer benefactions. "Of four hundred thousand who crossed the Vistula," he wrote further of the Russian war, "half were Austrians, Prussians, Saxons, Poles, Bavarians, Wurttembergers, Mecklenburgers, Spaniards, Italians, and Neapolitans. The Imperial army, strictly speaking, was one third composed of Dutch, Belgians, men from the borders of the Rhine, Piedmontese, Swiss, Genevese, Tuscans, Romans, inhabitants of the Thirty-second Military Division, of Bremen, of Hamburg, and so on: it included scarcely a hundred and forty thousand who spoke French. The Russian expedition actually cost France less than fifty thousand men; the Russian army in its retreat from Vilna to Moscow lost in the various battles four times more men than the French army; the burning of Moscow cost the lives of a hundred thousand Russians who died of cold and want in the woods; finally, in its march from Moscow to the Oder the Russian army also suffered from the severity of the season; so that by the the time it reached Vilna it numbered only fifty thousand, and at Kalisch less than eighteen thousand." He imagined that the war with Russia came about by his will, and the horrors that occurred did not stagger his soul. He boldly took the whole responsibility for what happened, and his darkened mind found justification in the belief that among the hundreds of thousands who perished there were fewer Frenchmen than Hessians and Bavarians. CHAPTER XXXIX Several tens of thousands of the slain lay in diverse postures and various uniforms on the fields and meadows belonging to the Davydov family and to the crown serfs--those fields and meadows where for hundreds of years the peasants of Borodino, Gorki, Shevardino, and Semenovsk had reaped their harvests and pastured their cattle. At the dressing stations the grass and earth were soaked with blood for a space of some three acres around. Crowds of men of various arms, wounded and unwounded, with frightened faces, dragged themselves back to Mozhaysk from the one army and back to Valuevo from the other. Other crowds, exhausted and hungry, went forward led by their officers. Others held their ground and continued to fire. Over the whole field, previously so gaily beautiful with the glitter of bayonets and cloudlets of smoke in the morning sun, there now spread a mist of damp and smoke and a strange acid smell of saltpeter and blood. Clouds gathered and drops of rain began to fall on the dead and wounded, on the frightened, exhausted, and hesitating men, as if to say: "Enough, men! Enough! Cease... bethink yourselves! What are you doing?" To the men of both sides alike, worn out by want of food and rest, it began equally to appear doubtful whether they should continue to slaughter one another; all the faces expressed hesitation, and the question arose in every soul: "For what, for whom, must I kill and be killed?... You may go and kill whom you please, but I don't want to do so anymore!" By evening this thought had ripened in every soul. At any moment these men might have been seized with horror at what they were doing and might have thrown up everything and run away anywhere. But though toward the end of the battle the men felt all the horror of what they were doing, though they would have been glad to leave off, some incomprehensible, mysterious power continued to control them, and they still brought up the charges, loaded, aimed, and applied the match, though only one artilleryman survived out of every three, and though they stumbled and panted with fatigue, perspiring and stained with blood and powder. The cannon balls flew just as swiftly and cruelly from both sides, crushing human bodies, and that terrible work which was not done by the will of a man but at the will of Him who governs men and worlds continued. Anyone looking at the disorganized rear of the Russian army would have said that, if only the French made one more slight effort, it would disappear; and anyone looking at the rear of the French army would have said that the Russians need only make one more slight effort and the French would be destroyed. But neither the French nor the Russians made that effort, and the flame of battle burned slowly out. The Russians did not make that effort because they were not attacking the French. At the beginning of the battle they stood blocking the way to Moscow and they still did so at the end of the battle as at the beginning. But even had the aim of the Russians been to drive the French from their positions, they could not have made this last effort, for all the Russian troops had been broken up, there was no part of the Russian army that had not suffered in the battle, and though still holding their positions they had lost ONE HALF of their army. The French, with the memory of all their former victories during fifteen years, with the assurance of Napoleon's invincibility, with the consciousness that they had captured part of the battlefield and had lost only a quarter of their men and still had their Guards intact, twenty thousand strong, might easily have made that effort. The French had attacked the Russian army in order to drive it from its position ought to have made that effort, for as long as the Russians continued to block the road to Moscow as before, the aim of the French had not been attained and all their efforts and losses were in vain. But the French did not make that effort. Some historians say that Napoleon need only have used his Old Guards, who were intact, and the battle would have been won. To speak of what would have happened had Napoleon sent his Guards is like talking of what would happen if autumn became spring. It could not be. Napoleon did not give his Guards, not because he did not want to, but because it could not be done. All the generals, officers, and soldiers of the French army knew it could not be done, because the flagging spirit of the troops would not permit it. It was not Napoleon alone who had experienced that nightmare feeling of the mighty arm being stricken powerless, but all the generals and soldiers of his army whether they had taken part in the battle or not, after all their experience of previous battles--when after one tenth of such efforts the enemy had fled--experienced a similar feeling of terror before an enemy who, after losing HALF his men, stood as threateningly at the end as at the beginning of the battle. The moral force of the attacking French army was exhausted. Not that sort of victory which is defined by the capture of pieces of material fastened to sticks, called standards, and of the ground on which the troops had stood and were standing, but a moral victory that convinces the enemy of the moral superiority of his opponent and of his own impotence was gained by the Russians at Borodino. The French invaders, like an infuriated animal that has in its onslaught received a mortal wound, felt that they were perishing, but could not stop, any more than the Russian army, weaker by one half, could help swerving. By impetus gained, the French army was still able to roll forward to Moscow, but there, without further effort on the part of the Russians, it had to perish, bleeding from the mortal wound it had received at Borodino. The direct consequence of the battle of Borodino was Napoleon's senseless flight from Moscow, his retreat along the old Smolensk road, the destruction of the invading army of five hundred thousand men, and the downfall of Napoleonic France, on which at Borodino for the first time the hand of an opponent of stronger spirit had been laid. BOOK ELEVEN: 1812 CHAPTER I Absolute continuity of motion is not comprehensible to the human mind. Laws of motion of any kind become comprehensible to man only when he examines arbitrarily selected elements of that motion; but at the same time, a large proportion of human error comes from the arbitrary division of continuous motion into discontinuous elements. There is a well known, so-called sophism of the ancients consisting in this, that Achilles could never catch up with a tortoise he was following, in spite of the fact that he traveled ten times as fast as the tortoise. By the time Achilles has covered the distance that separated him from the tortoise, the tortoise has covered one tenth of that distance ahead of him: when Achilles has covered that tenth, the tortoise has covered another one hundredth, and so on forever. This problem seemed to the ancients insoluble. The absurd answer (that Achilles could never overtake the tortoise) resulted from this: that motion was arbitrarily divided into discontinuous elements, whereas the motion both of Achilles and of the tortoise was continuous. By adopting smaller and smaller elements of motion we only approach a solution of the problem, but never reach it. Only when we have admitted the conception of the infinitely small, and the resulting geometrical progression with a common ratio of one tenth, and have found the sum of this progression to infinity, do we reach a solution of the problem. A modern branch of mathematics having achieved the art of dealing with the infinitely small can now yield solutions in other more complex problems of motion which used to appear insoluble. This modern branch of mathematics, unknown to the ancients, when dealing with problems of motion admits the conception of the infinitely small, and so conforms to the chief condition of motion (absolute continuity) and thereby corrects the inevitable error which the human mind cannot avoid when it deals with separate elements of motion instead of examining continuous motion. In seeking the laws of historical movement just the same thing happens. The movement of humanity, arising as it does from innumerable arbitrary human wills, is continuous. To understand the laws of this continuous movement is the aim of history. But to arrive at these laws, resulting from the sum of all those human wills, man's mind postulates arbitrary and disconnected units. The first method of history is to take an arbitrarily selected series of continuous events and examine it apart from others, though there is and can be no beginning to any event, for one event always flows uninterruptedly from another. The second method is to consider the actions of some one man--a king or a commander--as equivalent to the sum of many individual wills; whereas the sum of individual wills is never expressed by the activity of a single historic personage. Historical science in its endeavor to draw nearer to truth continually takes smaller and smaller units for examination. But however small the units it takes, we feel that to take any unit disconnected from others, or to assume a beginning of any phenomenon, or to say that the will of many men is expressed by the actions of any one historic personage, is in itself false. It needs no critical exertion to reduce utterly to dust any deductions drawn from history. It is merely necessary to select some larger or smaller unit as the subject of observation--as criticism has every right to do, seeing that whatever unit history observes must always be arbitrarily selected. Only by taking infinitesimally small units for observation (the differential of history, that is, the individual tendencies of men) and attaining to the art of integrating them (that is, finding the sum of these infinitesimals) can we hope to arrive at the laws of history. The first fifteen years of the nineteenth century in Europe present an extraordinary movement of millions of people. Men leave their customary pursuits, hasten from one side of Europe to the other, plunder and slaughter one another, triumph and are plunged in despair, and for some years the whole course of life is altered and presents an intensive movement which first increases and then slackens. What was the cause of this movement, by what laws was it governed? asks the mind of man. The historians, replying to this question, lay before us the sayings and doings of a few dozen men in a building in the city of Paris, calling these sayings and doings "the Revolution"; then they give a detailed biography of Napoleon and of certain people favorable or hostile to him; tell of the influence some of these people had on others, and say: that is why this movement took place and those are its laws. But the mind of man not only refuses to believe this explanation, but plainly says that this method of explanation is fallacious, because in it a weaker phenomenon is taken as the cause of a stronger. The sum of human wills produced the Revolution and Napoleon, and only the sum of those wills first tolerated and then destroyed them. "But every time there have been conquests there have been conquerors; every time there has been a revolution in any state there have been great men," says history. And, indeed, human reason replies: every time conquerors appear there have been wars, but this does not prove that the conquerors caused the wars and that it is possible to find the laws of a war in the personal activity of a single man. Whenever I look at my watch and its hands point to ten, I hear the bells of the neighboring church; but because the bells begin to ring when the hands of the clock reach ten, I have no right to assume that the movement of the bells is caused by the position of the hands of the watch. Whenever I see the movement of a locomotive I hear the whistle and see the valves opening and wheels turning; but I have no right to conclude that the whistling and the turning of wheels are the cause of the movement of the engine. The peasants say that a cold wind blows in late spring because the oaks are budding, and really every spring cold winds do blow when the oak is budding. But though I do not know what causes the cold winds to blow when the oak buds unfold, I cannot agree with the peasants that the unfolding of the oak buds is the cause of the cold wind, for the force of the wind is beyond the influence of the buds. I see only a coincidence of occurrences such as happens with all the phenomena of life, and I see that however much and however carefully I observe the hands of the watch, and the valves and wheels of the engine, and the oak, I shall not discover the cause of the bells ringing, the engine moving, or of the winds of spring. To that I must entirely change my point of view and study the laws of the movement of steam, of the bells, and of the wind. History must do the same. And attempts in this direction have already been made. To study the laws of history we must completely change the subject of our observation, must leave aside kings, ministers, and generals, and the common, infinitesimally small elements by which the masses are moved. No one can say in how far it is possible for man to advance in this way toward an understanding of the laws of history; but it is evident that only along that path does the possibility of discovering the laws of history lie, and that as yet not a millionth part as much mental effort has been applied in this direction by historians as has been devoted to describing the actions of various kings, commanders, and ministers and propounding the historians' own reflections concerning these actions. CHAPTER II The forces of a dozen European nations burst into Russia. The Russian army and people avoided a collision till Smolensk was reached, and again from Smolensk to Borodino. The French army pushed on to Moscow, its goal, its impetus ever increasing as it neared its aim, just as the velocity of a falling body increases as it approaches the earth. Behind it were seven hundred miles of hunger-stricken, hostile country; ahead were a few dozen miles separating it from its goal. Every soldier in Napoleon's army felt this and the invasion moved on by its own momentum. The more the Russian army retreated the more fiercely a spirit of hatred of the enemy flared up, and while it retreated the army increased and consolidated. At Borodino a collision took place. Neither army was broken up, but the Russian army retreated immediately after the collision as inevitably as a ball recoils after colliding with another having a greater momentum, and with equal inevitability the ball of invasion that had advanced with such momentum rolled on for some distance, though the collision had deprived it of all its force. The Russians retreated eighty miles--to beyond Moscow--and the French reached Moscow and there came to a standstill. For five weeks after that there was not a single battle. The French did not move. As a bleeding, mortally wounded animal licks its wounds, they remained inert in Moscow for five weeks, and then suddenly, with no fresh reason, fled back: they made a dash for the Kaluga road, and (after a victory--for at Malo-Yaroslavets the field of conflict again remained theirs) without undertaking a single serious battle, they fled still more rapidly back to Smolensk, beyond Smolensk, beyond the Berezina, beyond Vilna, and farther still. On the evening of the twenty-sixth of August, Kutuzov and the whole Russian army were convinced that the battle of Borodino was a victory. Kutuzov reported so to the Emperor. He gave orders to prepare for a fresh conflict to finish the enemy and did this not to deceive anyone, but because he knew that the enemy was beaten, as everyone who had taken part in the battle knew it. But all that evening and next day reports came in one after another of unheard-of losses, of the loss of half the army, and a fresh battle proved physically impossible. It was impossible to give battle before information had been collected, the wounded gathered in, the supplies of ammunition replenished, the slain reckoned up, new officers appointed to replace those who had been killed, and before the men had had food and sleep. And meanwhile, the very next morning after the battle, the French army advanced of itself upon the Russians, carried forward by the force of its own momentum now seemingly increased in inverse proportion to the square of the distance from its aim. Kutuzov's wish was to attack next day, and the whole army desired to do so. But to make an attack the wish to do so is not sufficient, there must also be a possibility of doing it, and that possibility did not exist. It was impossible not to retreat a day's march, and then in the same way it was impossible not to retreat another and a third day's march, and at last, on the first of September when the army drew near Moscow--despite the strength of the feeling that had arisen in all ranks--the force of circumstances compelled it to retire beyond Moscow. And the troops retired one more, last, day's march, and abandoned Moscow to the enemy. For people accustomed to think that plans of campaign and battles are made by generals--as any one of us sitting over a map in his study may imagine how he would have arranged things in this or that battle--the questions present themselves: Why did Kutuzov during the retreat not do this or that? Why did he not take up a position before reaching Fili? Why did he not retire at once by the Kaluga road, abandoning Moscow? and so on. People accustomed to think in that way forget, or do not know, the inevitable conditions which always limit the activities of any commander in chief. The activity of a commander in chief does not all resemble the activity we imagine to ourselves when we sit at case in our studies examining some campaign on the map, with a certain number of troops on this and that side in a certain known locality, and begin our plans from some given moment. A commander in chief is never dealing with the beginning of any event- the position from which we always contemplate it. The commander in chief is always in the midst of a series of shifting events and so he never can at any moment consider the whole import of an event that is occurring. Moment by moment the event is imperceptibly shaping itself, and at every moment of this continuous, uninterrupted shaping of events the commander in chief is in the midst of a most complex play of intrigues, worries, contingencies, authorities, projects, counsels, threats, and deceptions and is continually obliged to reply to innumerable questions addressed to him, which constantly conflict with one another. Learned military authorities quite seriously tell us that Kutuzov should have moved his army to the Kaluga road long before reaching Fili, and that somebody actually submitted such a proposal to him. But a commander in chief, especially at a difficult moment, has always before him not one proposal but dozens simultaneously. And all these proposals, based on strategics and tactics, contradict each other. A commander in chief's business, it would seem, is simply to choose one of these projects. But even that he cannot do. Events and time do not wait. For instance, on the twenty-eighth it is suggested to him to cross to the Kaluga road, but just then an adjutant gallops up from Miloradovich asking whether he is to engage the French or retire. An order must be given him at once, that instant. And the order to retreat carries us past the turn to the Kaluga road. And after the adjutant comes the commissary general asking where the stores are to be taken, and the chief of the hospitals asks where the wounded are to go, and a courier from Petersburg brings a letter from the sovereign which does not admit of the possibility of abandoning Moscow, and the commander in chief's rival, the man who is undermining him (and there are always not merely one but several such), presents a new project diametrically opposed to that of turning to the Kaluga road, and the commander in chief himself needs sleep and refreshment to maintain his energy and a respectable general who has been overlooked in the distribution of rewards comes to complain, and the inhabitants of the district pray to be defended, and an officer sent to inspect the locality comes in and gives a report quite contrary to what was said by the officer previously sent; and a spy, a prisoner, and a general who has been on reconnaissance, all describe the position of the enemy's army differently. People accustomed to misunderstand or to forget these inevitable conditions of a commander in chief's actions describe to us, for instance, the position of the army at Fili and assume that the commander in chief could, on the first of September, quite freely decide whether to abandon Moscow or defend it; whereas, with the Russian army less than four miles from Moscow, no such question existed. When had that question been settled? At Drissa and at Smolensk and most palpably of all on the twenty-fourth of August at Shevardino and on the twenty-sixth at Borodino, and each day and hour and minute of the retreat from Borodino to Fili. CHAPTER III When Ermolov, having been sent by Kutuzov to inspect the position, told the field marshal that it was impossible to fight there before Moscow and that they must retreat, Kutuzov looked at him in silence. "Give me your hand," said he and, turning it over so as to feel the pulse, added: "You are not well, my dear fellow. Think what you are saying!" Kutuzov could not yet admit the possibility of retreating beyond Moscow without a battle. On the Poklonny Hill, four miles from the Dorogomilov gate of Moscow, Kutuzov got out of his carriage and sat down on a bench by the roadside. A great crowd of generals gathered round him, and Count Rostopchin, who had come out from Moscow, joined them. This brilliant company separated into several groups who all discussed the advantages and disadvantages of the position, the state of the army, the plans suggested, the situation of Moscow, and military questions generally. Though they had not been summoned for the purpose, and though it was not so called, they all felt that this was really a council of war. The conversations all dealt with public questions. If anyone gave or asked for personal news, it was done in a whisper and they immediately reverted to general matters. No jokes, or laughter, or smiles even, were seen among all these men. They evidently all made an effort to hold themselves at the height the situation demanded. And all these groups, while talking among themselves, tried to keep near the commander in chief (whose bench formed the center of the gathering) and to speak so that he might overhear them. The commander in chief listened to what was being said and sometimes asked them to repeat their remarks, but did not himself take part in the conversations or express any opinion. After hearing what was being said by one or other of these groups he generally turned away with an air of disappointment, as though they were not speaking of anything he wished to hear. Some discussed the position that had been chosen, criticizing not the position itself so much as the mental capacity of those who had chosen it. Others argued that a mistake had been made earlier and that a battle should have been fought two days before. Others again spoke of the battle of Salamanca, which was described by Crosart, a newly arrived Frenchman in a Spanish uniform. (This Frenchman and one of the German princes serving with the Russian army were discussing the siege of Saragossa and considering the possibility of defending Moscow in a similar manner.) Count Rostopchin was telling a fourth group that he was prepared to die with the city train bands under the walls of the capital, but that he still could not help regretting having been left in ignorance of what was happening, and that had he known it sooner things would have been different.... A fifth group, displaying the profundity of their strategic perceptions, discussed the direction the troops would now have to take. A sixth group was talking absolute nonsense. Kutuzov's expression grew more and more preoccupied and gloomy. From all this talk he saw only one thing: that to defend Moscow was a physical impossibility in the full meaning of those words, that is to say, so utterly impossible that if any senseless commander were to give orders to fight, confusion would result but the battle would still not take place. It would not take place because the commanders not merely all recognized the position to be impossible, but in their conversations were only discussing what would happen after its inevitable abandonment. How could the commanders lead their troops to a field of battle they considered impossible to hold? The lower-grade officers and even the soldiers (who too reason) also considered the position impossible and therefore could not go to fight, fully convinced as they were of defeat. If Bennigsen insisted on the position being defended and others still discussed it, the question was no longer important in itself but only as a pretext for disputes and intrigue. This Kutuzov knew well. Bennigsen, who had chosen the position, warmly displayed his Russian patriotism (Kutuzov could not listen to this without wincing) by insisting that Moscow must be defended. His aim was as clear as daylight to Kutuzov: if the defense failed, to throw the blame on Kutuzov who had brought the army as far as the Sparrow Hills without giving battle; if it succeeded, to claim the success as his own; or if battle were not given, to clear himself of the crime of abandoning Moscow. But this intrigue did not now occupy the old man's mind. One terrible question absorbed him and to that question he heard no reply from anyone. The question for him now was: "Have I really allowed Napoleon to reach Moscow, and when did I do so? When was it decided? Can it have been yesterday when I ordered Platov to retreat, or was it the evening before, when I had a nap and told Bennigsen to issue orders? Or was it earlier still?... When, when was this terrible affair decided? Moscow must be abandoned. The army must retreat and the order to do so must be given." To give that terrible order seemed to him equivalent to resigning the command of the army. And not only did he love power to which he was accustomed (the honours awarded to Prince Prozorovski, under whom he had served in Turkey, galled him), but he was convinced that he was destined to save Russia and that that was why, against the Emperor's wish and by the will of the people, he had been chosen commander in chief. He was convinced that he alone could maintain command of the army in these difficult circumstances, and that in all the world he alone could encounter the invincible Napoleon without fear, and he was horrified at the thought of the order he had to issue. But something had to be decided, and these conversations around him which were assuming too free a character must be stopped. He called the most important generals to him. "My head, be it good or bad, must depend on itself," said he, rising from the bench, and he rode to Fili where his carriages were waiting. CHAPTER IV The Council of War began to assemble at two in the afternoon in the better and roomier part of Andrew Savostyanov's hut. The men, women, and children of the large peasant family crowded into the back room across the passage. Only Malasha, Andrew's six-year-old granddaughter whom his Serene Highness had petted and to whom he had given a lump of sugar while drinking his tea, remained on the top of the brick oven in the larger room. Malasha looked down from the oven with shy delight at the faces, uniforms, and decorations of the generals, who one after another came into the room and sat down on the broad benches in the corner under the icons. "Granddad" himself, as Malasha in her own mind called Kutuzov, sat apart in a dark corner behind the oven. He sat, sunk deep in a folding armchair, and continually cleared his throat and pulled at the collar of his coat which, though it was unbuttoned, still seemed to pinch his neck. Those who entered went up one by one to the field marshal; he pressed the hands of some and nodded to others. His adjutant Kaysarov was about to draw back the curtain of the window facing Kutuzov, but the latter moved his hand angrily and Kaysarov understood that his Serene Highness did not wish his face to be seen. Round the peasant's deal table, on which lay maps, plans, pencils, and papers, so many people gathered that the orderlies brought in another bench and put it beside the table. Ermolov, Kaysarov, and Toll, who had just arrived, sat down on this bench. In the foremost place, immediately under the icons, sat Barclay de Tolly, his high forehead merging into his bald crown. He had a St. George's Cross round his neck and looked pale and ill. He had been feverish for two days and was now shivering and in pain. Beside him sat Uvarov, who with rapid gesticulations was giving him some information, speaking in low tones as they all did. Chubby little Dokhturov was listening attentively with eyebrows raised and arms folded on his stomach. On the other side sat Count Ostermann-Tolstoy, seemingly absorbed in his own thoughts. His broad head with its bold features and glittering eyes was resting on his hand. Raevski, twitching forward the black hair on his temples as was his habit, glanced now at Kutuzov and now at the door with a look of impatience. Konovnitsyn's firm, handsome, and kindly face was lit up by a tender, sly smile. His glance met Malasha's, and the expression of his eyes caused the little girl to smile. They were all waiting for Bennigsen, who on the pretext of inspecting the position was finishing his savory dinner. They waited for him from four till six o'clock and did not begin their deliberations all that time talked in low tones of other matters. Only when Bennigsen had entered the hut did Kutuzov leave his corner and draw toward the table, but not near enough for the candles that had been placed there to light up his face. Bennigsen opened the council with the question: "Are we to abandon Russia's ancient and sacred capital without a struggle, or are we to defend it?" A prolonged and general silence followed. There was a frown on every face and only Kutuzov's angry grunts and occasional cough broke the silence. All eyes were gazing at him. Malasha too looked at "Granddad." She was nearest to him and saw how his face puckered; he seemed about to cry, but this did not last long. "Russia's ancient and sacred capital!" he suddenly said, repeating Bennigsen's words in an angry voice and thereby drawing attention to the false note in them. "Allow me to tell you, your excellency, that that question has no meaning for a Russian." (He lurched his heavy body forward.) "Such a question cannot be put; it is senseless! The question I have asked these gentlemen to meet to discuss is a military one. The question is that of saving Russia. Is it better to give up Moscow without a battle, or by accepting battle to risk losing the army as well as Moscow? That is the question on which I want your opinion," and he sank back in his chair. The discussion began. Bennigsen did not yet consider his game lost. Admitting the view of Barclay and others that a defensive battle at Fili was impossible, but imbued with Russian patriotism and the love of Moscow, he proposed to move troops from the right to the left flank during the night and attack the French right flank the following day. Opinions were divided, and arguments were advanced for and against that project. Ermolov, Dokhturov, and Raevski agreed with Bennigsen. Whether feeling it necessary to make a sacrifice before abandoning the capital or guided by other, personal considerations, these generals seemed not to understand that this council could not alter the inevitable course of events and that Moscow was in effect already abandoned. The other generals, however, understood it and, leaving aside the question of Moscow, of the direction the army should take in its retreat. Malasha, who kept her eyes fixed on what was going on before her, understood the meaning of the council differently. It seemed to her that it was only a personal struggle between "Granddad" and "Long-coat" as she termed Bennigsen. She saw that they grew spiteful when they spoke to one another, and in her heart she sided with "Granddad." In the midst of the conversation she noticed "Granddad" give Bennigsen a quick, subtle glance, and then to her joys he saw that "Granddad" said something to "Long-coat" which settled him. Bennigsen suddenly reddened and paced angrily up and down the room. What so affected him was Kutuzov's calm and quiet comment on the advantage or disadvantage of Bennigsen's proposal to move troops by night from the right to the left flank to attack the French right wing. "Gentlemen," said Kutuzov, "I cannot approve of the count's plan. Moving troops in close proximity to an enemy is always dangerous, and military history supports that view. For instance..." Kutuzov seemed to reflect, searching for an example, then with a clear, naive look at Bennigsen he added: "Oh yes; take the battle of Friedland, which I think the count well remembers, and which was... not fully successful, only because our troops were rearranged too near the enemy..." There followed a momentary pause, which seemed very long to them all. The discussion recommenced, but pauses frequently occurred and they all felt that there was no more to be said. During one of these pauses Kutuzov heaved a deep sigh as if preparing to speak. They all looked at him. "Well, gentlemen, I see that it is I who will have to pay for the broken crockery," said he, and rising slowly he moved to the table. "Gentlemen, I have heard your views. Some of you will not agree with me. But I," he paused, "by the authority entrusted to me by my Sovereign and country, order a retreat." After that the generals began to disperse with the solemnity and circumspect silence of people who are leaving, after a funeral. Some of the generals, in low tones and in a strain very different from the way they had spoken during the council, communicated something to their commander in chief. Malasha, who had long been expected for supper, climbed carefully backwards down from the oven, her bare little feet catching at its projections, and slipping between the legs of the generals she darted out of the room. When he had dismissed the generals Kutuzov sat a long time with his elbows on the table, thinking always of the same terrible question: "When, when did the abandonment of Moscow become inevitable? When was that done which settled the matter? And who was to blame for it?" "I did not expect this," said he to his adjutant Schneider when the latter came in late that night. "I did not expect this! I did not think this would happen." "You should take some rest, your Serene Highness," replied Schneider. "But no! They shall eat horseflesh yet, like the Turks!" exclaimed Kutuzov without replying, striking the table with his podgy fist. "They shall too, if only..." CHAPTER V At that very time, in circumstances even more important than retreating without a battle, namely the evacuation and burning of Moscow, Rostopchin, who is usually represented as being the instigator of that event, acted in an altogether different manner from Kutuzov. After the battle of Borodino the abandonment and burning of Moscow was as inevitable as the retreat of the army beyond Moscow without fighting. Every Russian might have predicted it, not by reasoning but by the feeling implanted in each of us and in our fathers. The same thing that took place in Moscow had happened in all the towns and villages on Russian soil beginning with Smolensk, without the participation of Count Rostopchin and his broadsheets. The people awaited the enemy unconcernedly, did not riot or become excited or tear anyone to pieces, but faced its fate, feeling within it the strength to find what it should do at that most difficult moment. And as soon as the enemy drew near the wealthy classes went away abandoning their property, while the poorer remained and burned and destroyed what was left. The consciousness that this would be so and would always be so was and is present in the heart of every Russian. And a consciousness of this, and a foreboding that Moscow would be taken, was present in Russian Moscow society in 1812. Those who had quitted Moscow already in July and at the beginning of August showed that they expected this. Those who went away, taking what they could and abandoning their houses and half their belongings, did so from the latent patriotism which expresses itself not by phrases or by giving one's children to save the fatherland and similar unnatural exploits, but unobtrusively, simply, organically, and therefore in the way that always produces the most powerful results. "It is disgraceful to run away from danger; only cowards are running away from Moscow," they were told. In his broadsheets Rostopchin impressed on them that to leave Moscow was shameful. They were ashamed to be called cowards, ashamed to leave, but still they left, knowing it had to be done. Why did they go? It is impossible to suppose that Rostopchin had scared them by his accounts of horrors Napoleon had committed in conquered countries. The first people to go away were the rich educated people who knew quite well that Vienna and Berlin had remained intact and that during Napoleon's occupation the inhabitants had spent their time pleasantly in the company of the charming Frenchmen whom the Russians, and especially the Russian ladies, then liked so much. They went away because for Russians there could be no question as to whether things would go well or ill under French rule in Moscow. It was out of the question to be under French rule, it would be the worst thing that could happen. They went away even before the battle of Borodino and still more rapidly after it, despite Rostopchin's calls to defend Moscow or the announcement of his intention to take the wonder-working icon of the Iberian Mother of God and go to fight, or of the balloons that were to destroy the French, and despite all the nonsense Rostopchin wrote in his broadsheets. They knew that it was for the army to fight, and that if it could not succeed it would not do to take young ladies and house serfs to the Three Hills quarter of Moscow to fight Napoleon, and that they must go away, sorry as they were to abandon their property to destruction. They went away without thinking of the tremendous significance of that immense and wealthy city being given over to destruction, for a great city with wooden buildings was certain when abandoned by its inhabitants to be burned. They went away each on his own account, and yet it was only in consequence of their going away that the momentous event was accomplished that will always remain the greatest glory of the Russian people. The lady who, afraid of being stopped by Count Rostopchin's orders, had already in June moved with her Negroes and her women jesters from Moscow to her Saratov estate, with a vague consciousness that she was not Bonaparte's servant, was really, simply, and truly carrying out the great work which saved Russia. But Count Rostopchin, who now taunted those who left Moscow and now had the government offices removed; now distributed quite useless weapons to the drunken rabble; now had processions displaying the icons, and now forbade Father Augustin to remove icons or the relics of saints; now seized all the private carts in Moscow and on one hundred and thirty-six of them removed the balloon that was being constructed by Leppich; now hinted that he would burn Moscow and related how he had set fire to his own house; now wrote a proclamation to the French solemnly upbraiding them for having destroyed his Orphanage; now claimed the glory of having hinted that he would burn Moscow and now repudiated the deed; now ordered the people to catch all spies and bring them to him, and now reproached them for doing so; now expelled all the French residents from Moscow, and now allowed Madame Aubert-Chalme (the center of the whole French colony in Moscow) to remain, but ordered the venerable old postmaster Klyucharev to be arrested and exiled for no particular offense; now assembled the people at the Three Hills to fight the French and now, to get rid of them, handed over to them a man to be killed and himself drove away by a back gate; now declared that he would not survive the fall of Moscow, and now wrote French verses in albums concerning his share in the affair--this man did not understand the meaning of what was happening but merely wanted to do something himself that would astonish people, to perform some patriotically heroic feat; and like a child he made sport of the momentous, and unavoidable event--the abandonment and burning of Moscow--and tried with his puny hand now to speed and now to stay the enormous, popular tide that bore him along with it. CHAPTER VI Helene, having returned with the court from Vilna to Petersburg, found herself in a difficult position. In Petersburg she had enjoyed the special protection of a grandee who occupied one of the highest posts in the Empire. In Vilna she had formed an intimacy with a young foreign prince. When she returned to Petersburg both the magnate and the prince were there, and both claimed their rights. Helene was faced by a new problem--how to preserve her intimacy with both without offending either. What would have seemed difficult or even impossible to another woman did not cause the least embarrassment to Countess Bezukhova, who evidently deserved her reputation of being a very clever woman. Had she attempted concealment, or tried to extricate herself from her awkward position by cunning, she would have spoiled her case by acknowledging herself guilty. But Helene, like a really great man who can do whatever he pleases, at once assumed her own position to be correct, as she sincerely believed it to be, and that everyone else was to blame. The first time the young foreigner allowed himself to reproach her, she lifted her beautiful head and, half turning to him, said firmly: "That's just like a man--selfish and cruel! I expected nothing else. A woman sacrifices herself for you, she suffers, and this is her reward! What right have you, monseigneur, to demand an account of my attachments and friendships? He is a man who has been more than a father to me!" The prince was about to say something, but Helene interrupted him. "Well, yes," said she, "it may be that he has other sentiments for me than those of a father, but that is not a reason for me to shut my door on him. I am not a man, that I should repay kindness with ingratitude! Know, monseigneur, that in all that relates to my intimate feelings I render account only to God and to my conscience," she concluded, laying her hand on her beautiful, fully expanded bosom and looking up to heaven. "But for heaven's sake listen to me!" "Marry me, and I will be your slave!" "But that's impossible." "You won't deign to demean yourself by marrying me, you..." said Helene, beginning to cry. The prince tried to comfort her, but Helene, as if quite distraught, said through her tears that there was nothing to prevent her marrying, that there were precedents (there were up to that time very few, but she mentioned Napoleon and some other exalted personages), that she had never been her husband's wife, and that she had been sacrificed. "But the law, religion..." said the prince, already yielding. "The law, religion... What have they been invented for if they can't arrange that?" said Helene. The prince was surprised that so simple an idea had not occurred to him, and he applied for advice to the holy brethren of the Society of Jesus, with whom he was on intimate terms. A few days later at one of those enchanting fetes which Helene gave at her country house on the Stone Island, the charming Monsieur de Jobert, a man no longer young, with snow white hair and brilliant black eyes, a Jesuit a robe courte* was presented to her, and in the garden by the light of the illuminations and to the sound of music talked to her for a long time of the love of God, of Christ, of the Sacred Heart, and of the consolations the one true Catholic religion affords in this world and the next. Helene was touched, and more than once tears rose to her eyes and to those of Monsieur de Jobert and their voices trembled. A dance, for which her partner came to seek her, put an end to her discourse with her future directeur de conscience, but the next evening Monsieur de Jobert came to see Helene when she was alone, and after that often came again. *Lay member of the Society of Jesus. One day he took the countess to a Roman Catholic church, where she knelt down before the altar to which she was led. The enchanting, middle-aged Frenchman laid his hands on her head and, as she herself afterward described it, she felt something like a fresh breeze wafted into her soul. It was explained to her that this was la grace. After that a long-frocked abbe was brought to her. She confessed to him, and he absolved her from her sins. Next day she received a box containing the Sacred Host, which was left at her house for her to partake of. A few days later Helene learned with pleasure that she had now been admitted to the true Catholic Church and that in a few days the Pope himself would hear of her and would send her a certain document. All that was done around her and to her at this time, all the attention devoted to her by so many clever men and expressed in such pleasant, refined ways, and the state of dove-like purity she was now in (she wore only white dresses and white ribbons all that time) gave her pleasure, but her pleasure did not cause her for a moment to forget her aim. And as it always happens in contests of cunning that a stupid person gets the better of cleverer ones, Helene- having realized that the main object of all these words and all this trouble was, after converting her to Catholicism, to obtain money from her for Jesuit institutions (as to which she received indications)- before parting with her money insisted that the various operations necessary to free her from her husband should be performed. In her view the aim of every religion was merely to preserve certain proprieties while affording satisfaction to human desires. And with this aim, in one of her talks with her Father Confessor, she insisted on an answer to the question, in how far was she bound by her marriage? They were sitting in the twilight by a window in the drawing room. The scent of flowers came in at the window. Helene was wearing a white dress, transparent over her shoulders and bosom. The abbe, a well-fed man with a plump, clean-shaven chin, a pleasant firm mouth, and white hands meekly folded on his knees, sat close to Helene and, with a subtle smile on his lips and a peaceful look of delight at her beauty, occasionally glanced at her face as he explained his opinion on the subject. Helene with an uneasy smile looked at his curly hair and his plump, clean-shaven, blackish cheeks and every moment expected the conversation to take a fresh turn. But the abbe, though he evidently enjoyed the beauty of his companion, was absorbed in his mastery of the matter. The course of the Father Confessor's arguments ran as follows: "Ignorant of the import of what you were undertaking, you made a vow of conjugal fidelity to a man who on his part, by entering the married state without faith in the religious significance of marriage, committed an act of sacrilege. That marriage lacked the dual significance it should have had. Yet in spite of this your vow was binding. You swerved from it. What did you commit by so acting? A venial, or a mortal, sin? A venial sin, for you acted without evil intention. If now you married again with the object of bearing children, your sin might be forgiven. But the question is again a twofold one: firstly..." But suddenly Helene, who was getting bored, said with one of her bewitching smiles: "But I think that having espoused the true religion I cannot be bound by what a false religion laid upon me." The director of her conscience was astounded at having the case presented to him thus with the simplicity of Columbus' egg. He was delighted at the unexpected rapidity of his pupil's progress, but could not abandon the edifice of argument he had laboriously constructed. "Let us understand one another, Countess," said he with a smile, and began refuting his spiritual daughter's arguments. CHAPTER VII Helene understood that the question was very simple and easy from the ecclesiastical point of view, and that her directors were making difficulties only because they were apprehensive as to how the matter would be regarded by the secular authorities. So she decided that it was necessary to prepare the opinion of society. She provoked the jealousy of the elderly magnate and told him what she had told her other suitor; that is, she put the matter so that the only way for him to obtain a right over her was to marry her. The elderly magnate was at first as much taken aback by this suggestion of marriage with a woman whose husband was alive, as the younger man had been, but Helene's imperturbable conviction that it was as simple and natural as marrying a maiden had its effect on him too. Had Helene herself shown the least sign of hesitation, shame, or secrecy, her cause would certainly have been lost; but not only did she show no signs of secrecy or shame, on the contrary, with good-natured naivete she told her intimate friends (and these were all Petersburg) that both the prince and the magnate had proposed to her and that she loved both and was afraid of grieving either. A rumor immediately spread in Petersburg, not that Helene wanted to be divorced from her husband (had such a report spread many would have opposed so illegal an intention) but simply that the unfortunate and interesting Helene was in doubt which of the two men she should marry. The question was no longer whether this was possible, but only which was the better match and how the matter would be regarded at court. There were, it is true, some rigid individuals unable to rise to the height of such a question, who saw in the project a desecration of the sacrament of marriage, but there were not many such and they remained silent, while the majority were interested in Helene's good fortune and in the question which match would be the more advantageous. Whether it was right or wrong to remarry while one had a husband living they did not discuss, for that question had evidently been settled by people "wiser than you or me," as they said, and to doubt the correctness of that decision would be to risk exposing one's stupidity and incapacity to live in society. Only Marya Dmitrievna Akhrosimova, had come to Petersburg that summer to see one of her sons, allowed herself plainly to express an opinion contrary to the general one. Meeting Helene at a ball she stopped her in the middle of the room and, amid general silence, said in her gruff voice: "So wives of living men have started marrying again! Perhaps you think you have invented a novelty? You have been forestalled, my dear! It was thought of long ago. It is done in all the brothels," and with these words Marya Dmitrievna, turning up her wide sleeves with her usual threatening gesture and glancing sternly round, moved across the room. Though people were afraid of Marya Dmitrievna she was regarded in Petersburg as a buffoon, and so of what she had said they only noticed, and repeated in a whisper, the one coarse word she had used, supposing the whole sting of her remark to lie in that word. Prince Vasili, who of late very often forgot what he had said and repeated one and the same thing a hundred times, remarked to his daughter whenever he chanced to see her: "Helene, I have a word to say to you," and he would lead her aside, drawing her hand downward. "I have heard of certain projects concerning... you know. Well my dear child, you know how your father's heart rejoices to know that you... You have suffered so much.... But, my dear child, consult only your own heart. That is all I have to say," and concealing his unvarying emotion he would press his cheek against his daughter's and move away. Bilibin, who had not lost his reputation of an exceedingly clever man, and who was one of the disinterested friends so brilliant a woman as Helene always has--men friends who can never change into lovers--once gave her his view of the matter at a small and intimate gathering. "Listen, Bilibin," said Helene (she always called friends of that sort by their surnames), and she touched his coat sleeve with her white, beringed fingers. "Tell me, as you would a sister, what I ought to do. Which of the two?" Bilibin wrinkled up the skin over his eyebrows and pondered, with a smile on his lips. "You are not taking me unawares, you know," said he. "As a true friend, I have thought and thought again about your affair. You see, if you marry the prince"--he meant the younger man--and he crooked one finger, "you forever lose the chance of marrying the other, and you will displease the court besides. (You know there is some kind of connection.) But if you marry the old count you will make his last days happy, and as widow of the Grand... the prince would no longer be making a mesalliance by marrying you," and Bilibin smoothed out his forehead. "That's a true friend!" said Helene beaming, and again touching Bilibin's sleeve. "But I love them, you know, and don't want to distress either of them. I would give my life for the happiness of them both." Bilibin shrugged his shoulders, as much as to say that not even he could help in that difficulty. "Une maitresse-femme!* That's what is called putting things squarely. She would like to be married to all three at the same time," thought he. *A masterly woman. "But tell me, how will your husband look at the matter?" Bilibin asked, his reputation being so well established that he did not fear to ask so naive a question. "Will he agree?" "Oh, he loves me so!" said Helene, who for some reason imagined that Pierre too loved her. "He will do anything for me." Bilibin puckered his skin in preparation for something witty. "Even divorce you?" said he. Helene laughed. Among those who ventured to doubt the justifiability of the proposed marriage was Helene's mother, Princess Kuragina. She was continually tormented by jealousy of her daughter, and now that jealousy concerned a subject near to her own heart, she could not reconcile herself to the idea. She consulted a Russian priest as to the possibility of divorce and remarriage during a husband's lifetime, and the priest told her that it was impossible, and to her delight showed her a text in the Gospel which (as it seemed to him) plainly remarriage while the husband is alive. Armed with these arguments, which appeared to her unanswerable, she drove to her daughter's early one morning so as to find her alone. Having listened to her mother's objections, Helene smiled blandly and ironically. "But it says plainly: 'Whosoever shall marry her that is divorced...'" said the old princess. "Ah, Maman, ne dites pas de betises. Vous ne comprenez rein. Dans ma position j'ai des devoirs,"* said Helene changing from Russian, in which language she always felt that her case did not sound quite clear, into French which suited it better. *"Oh, Mamma, don't talk nonsense! You don't understand anything. In my position I have obligations. "But, my dear...." "Oh, Mamma, how is it you don't understand that the Holy Father, who has the right to grant dispensations..." Just then the lady companion who lived with Helene came in to announce that His Highness was in the ballroom and wished to see her. "Non, dites-lui que je ne veux pas le voir, que je suis furieuse contre lui, parce qu'il m' a manque parole."* *"No, tell him I don't wish to see him, I am furious with him for not keeping his word to me." "Comtesse, a tout peche misericorde,"* said a fair-haired young man with a long face and nose, as he entered the room. *"Countess, there is mercy for every sin." The old princess rose respectfully and curtsied. The young man who had entered took no notice of her. The princess nodded to her daughter and sidled out of the room. "Yes, she is right," thought the old princess, all her convictions dissipated by the appearance of His Highness. "She is right, but how is it that we in our irrecoverable youth did not know it? Yet it is so simple," she thought as she got into her carriage. By the beginning of August Helene's affairs were clearly defined and she wrote a letter to her husband--who, as she imagined, loved her very much--informing him of her intention to marry N.N. and of her having embraced the one true faith, and asking him to carry out all the formalities necessary for a divorce, which would be explained to him by the bearer of the letter. And so I pray God to have you, my friend, in His holy and powerful keeping--Your friend Helene. This letter was brought to Pierre's house when he was on the field of Borodino. CHAPTER VIII Toward the end of the battle of Borodino, Pierre, having run down from Raevski's battery a second time, made his way through a gully to Knyazkovo with a crowd of soldiers, reached the dressing station, and seeing blood and hearing cries and groans hurried on, still entangled in the crowds of soldiers. The one thing he now desired with his whole soul was to get away quickly from the terrible sensations amid which he had lived that day and return to ordinary conditions of life and sleep quietly in a room in his own bed. He felt that only in the ordinary conditions of life would he be able to understand himself and all he had seen and felt. But such ordinary conditions of life were nowhere to be found. Though shells and bullets did not whistle over the road along which he was going, still on all sides there was what there had been on the field of battle. There were still the same suffering, exhausted, and sometimes strangely indifferent faces, the same blood, the same soldiers' overcoats, the same sounds of firing which, though distant now, still aroused terror, and besides this there were the foul air and the dust. Having gone a couple of miles along the Mozhaysk road, Pierre sat down by the roadside. Dusk had fallen, and the roar of guns died away. Pierre lay leaning on his elbow for a long time, gazing at the shadows that moved past him in the darkness. He was continually imagining that a cannon ball was flying toward him with a terrific whizz, and then he shuddered and sat up. He had no idea how long he had been there. In the middle of the night three soldiers, having brought some firewood, settled down near him and began lighting a fire. The soldiers, who threw sidelong glances at Pierre, got the fire to burn and placed an iron pot on it into which they broke some dried bread and put a little dripping. The pleasant odor of greasy viands mingled with the smell of smoke. Pierre sat up and sighed. The three soldiers were eating and talking among themselves, taking no notice of him. "And who may you be?" one of them suddenly asked Pierre, evidently meaning what Pierre himself had in mind, namely: "If you want to eat we'll give you some food, only let us know whether you are an honest man." "I, I..." said Pierre, feeling it necessary to minimize his social position as much as possible so as to be nearer to the soldiers and better understood by them. "By rights I am a militia officer, but my men are not here. I came to the battle and have lost them." "There now!" said one of the soldiers. Another shook his head. "Would you like a little mash?" the first soldier asked, and handed Pierre a wooden spoon after licking it clean. Pierre sat down by the fire and began eating the mash, as they called the food in the cauldron, and he thought it more delicious than any food he had ever tasted. As he sat bending greedily over it, helping himself to large spoonfuls and chewing one after another, his was lit up by the fire and the soldiers looked at him in silence. "Where have you to go to? Tell us!" said one of them. "To Mozhaysk." "You're a gentleman, aren't you?" "Yes." "And what's your name?" "Peter Kirilych." "Well then, Peter Kirilych, come along with us, we'll take you there." In the total darkness the soldiers walked with Pierre to Mozhaysk. By the time they got near Mozhaysk and began ascending the steep hill into the town, the cocks were already crowing. Pierre went on with the soldiers, quite forgetting that his inn was at the bottom of the hill and that he had already passed it. He would not soon have remembered this, such was his state of forgetfulness, had he not halfway up the hill stumbled upon his groom, who had been to look for him in the town and was returning to the inn. The groom recognized Pierre in the darkness by his white hat. "Your excellency!" he said. "Why, we were beginning to despair! How is it you are on foot? And where are you going, please?" "Oh, yes!" said Pierre. The soldiers stopped. "So you've found your folk?" said one of them. "Well, good-by, Peter Kirilych--isn't it?" "Good-by, Peter Kirilych!" Pierre heard the other voices repeat. "Good-by!" he said and turned with his groom toward the inn. "I ought to give them something!" he thought, and felt in his pocket. "No, better not!" said another, inner voice. There was not a room to be had at the inn, they were all occupied. Pierre went out into the yard and, covering himself up head and all, lay down in his carriage. CHAPTER IX Scarcely had Pierre laid his head on the pillow before he felt himself falling asleep, but suddenly, almost with the distinctness of reality, he heard the boom, boom, boom of firing, the thud of projectiles, groans and cries, and smelled blood and powder, and a feeling of horror and dread of death seized him. Filled with fright he opened his eyes and lifted his head from under his cloak. All was tranquil in the yard. Only someone's orderly passed through the gateway, splashing through the mud, and talked to the innkeeper. Above Pierre's head some pigeons, disturbed by the movement he had made in sitting up, fluttered under the dark roof of the penthouse. The whole courtyard was permeated by a strong peaceful smell of stable yards, delightful to Pierre at that moment. He could see the clear starry sky between the dark roofs of two penthouses. "Thank God, there is no more of that!" he thought, covering up his head again. "Oh, what a terrible thing is fear, and how shamefully I yielded to it! But they... they were steady and calm all the time, to the end..." thought he. They, in Pierre's mind, were the soldiers, those who had been at the battery, those who had given him food, and those who had prayed before the icon. They, those strange men he had not previously known, stood out clearly and sharply from everyone else. "To be a soldier, just a soldier!" thought Pierre as he fell asleep, "to enter communal life completely, to be imbued by what makes them what they are. But how cast off all the superfluous, devilish burden of my outer man? There was a time when I could have done it. I could have run away from my father, as I wanted to. Or I might have been sent to serve as a soldier after the duel with Dolokhov." And the memory of the dinner at the English Club when he had challenged Dolokhov flashed through Pierre's mind, and then he remembered his benefactor at Torzhok. And now a picture of a solemn meeting of the lodge presented itself to his mind. It was taking place at the English Club and someone near and dear to him sat at the end of the table. "Yes, that is he! It is my benefactor. But he died!" thought Pierre. "Yes, he died, and I did not know he was alive. How sorry I am that he died, and how glad I am that he is alive again!" On one side of the table sat Anatole, Dolokhov, Nesvitski, Denisov, and others like them (in his dream the category to which these men belonged was as clearly defined in his mind as the category of those he termed they), and he heard those people, Anatole and Dolokhov, shouting and singing loudly; yet through their shouting the voice of his benefactor was heard speaking all the time and the sound of his words was as weighty and uninterrupted as the booming on the battlefield, but pleasant and comforting. Pierre did not understand what his benefactor was saying, but he knew (the categories of thoughts were also quite distinct in his dream) that he was talking of goodness and the possibility of being what they were. And they with their simple, kind, firm faces surrounded his benefactor on all sides. But though they were kindly they did not look at Pierre and did not know him. Wishing to speak and to attract their attention, he got up, but at that moment his legs grew cold and bare. He felt ashamed, and with one arm covered his legs from which his cloak had in fact slipped. For a moment as he was rearranging his cloak Pierre opened his eyes and saw the same penthouse roofs, posts, and yard, but now they were all bluish, lit up, and glittering with frost or dew. "It is dawn," thought Pierre. "But that's not what I want. I want to hear and understand my benefactor's words." Again he covered himself up with his cloak, but now neither the lodge nor his benefactor was there. There were only thoughts clearly expressed in words, thoughts that someone was uttering or that he himself was formulating. Afterwards when he recalled those thoughts Pierre was convinced that someone outside himself had spoken them, though the impressions of that day had evoked them. He had never, it seemed to him, been able to think and express his thoughts like that when awake. "To endure war is the most difficult subordination of man's freedom to the law of God," the voice had said. "Simplicity is submission to the will of God; you cannot escape from Him. And they are simple. They do not talk, but act. The spoken word is silver but the unspoken is golden. Man can be master of nothing while he fears death, but he who does not fear it possesses all. If there were no suffering, man would not know his limitations, would not know himself. The hardest thing [Pierre went on thinking, or hearing, in his dream] is to be able in your soul to unite the meaning of all. To unite all?" he asked himself. "No, not to unite. Thoughts cannot be united, but to harness all these thoughts together is what we need! Yes, one must harness them, must harness them!" he repeated to himself with inward rapture, feeling that these words and they alone expressed what he wanted to say and solved the question that tormented him. "Yes, one must harness, it is time to harness." "Time to harness, time to harness, your excellency! Your excellency!" some voice was repeating. "We must harness, it is time to harness...." It was the voice of the groom, trying to wake him. The sun shone straight into Pierre's face. He glanced at the dirty innyard in the middle of which soldiers were watering their lean horses at the pump while carts were passing out of the gate. Pierre turned away with repugnance, and closing his eyes quickly fell back on the carriage seat. "No, I don't want that, I don't want to see and understand that. I want to understand what was revealing itself to me in my dream. One second more and I should have understood it all! But what am I to do? Harness, but how can I harness everything?" and Pierre felt with horror that the meaning of all he had seen and thought in the dream had been destroyed. The groom, the coachman, and the innkeeper told Pierre that an officer had come with news that the French were already near Mozhaysk and that our men were leaving it. Pierre got up and, having told them to harness and overtake him, went on foot through the town. The troops were moving on, leaving about ten thousand wounded behind them. There were wounded in the yards, at the windows of the houses, and the streets were crowded with them. In the streets, around carts that were to take some of the wounded away, shouts, curses, and blows could be heard. Pierre offered the use of his carriage, which had overtaken him, to a wounded general he knew, and drove with him to Moscow. On the way Pierre was told of the death of his brother-in-law Anatole and of that of Prince Andrew. CHAPTER X On the thirteenth of August Pierre reached Moscow. Close to the gates of the city he was met by Count Rostopchin's adjutant. "We have been looking for you everywhere," said the adjutant. "The count wants to see you particularly. He asks you to come to him at once on a very important matter." Without going home, Pierre took a cab and drove to see the Moscow commander in chief. Count Rostopchin had only that morning returned to town from his summer villa at Sokolniki. The anteroom and reception room of his house were full of officials who had been summoned or had come for orders. Vasilchikov and Platov had already seen the count and explained to him that it was impossible to defend Moscow and that it would have to be surrendered. Though this news was being concealed from the inhabitants, the officials--the heads of the various government departments--knew that Moscow would soon be in the enemy's hands, just as Count Rostopchin himself knew it, and to escape personal responsibility they had all come to the governor to ask how they were to deal with their various departments. As Pierre was entering the reception room a courier from the army came out of Rostopchin's private room. In answer to questions with which he was greeted, the courier made a despairing gesture with his hand and passed through the room. While waiting in the reception room Pierre with weary eyes watched the various officials, old and young, military and civilian, who were there. They all seemed dissatisfied and uneasy. Pierre went up to a group of men, one of whom he knew. After greeting Pierre they continued their conversation. "If they're sent out and brought back again later on it will do no harm, but as things are now one can't answer for anything." "But you see what he writes..." said another, pointing to a printed sheet he held in his hand. "That's another matter. That's necessary for the people," said the first. "What is it?" asked Pierre. "Oh, it's a fresh broadsheet." Pierre took it and began reading. His Serene Highness has passed through Mozhaysk in order to join up with the troops moving toward him and has taken up a strong position where the enemy will not soon attack him. Forty eight guns with ammunition have been sent him from here, and his Serene Highness says he will defend Moscow to the last drop of blood and is even ready to fight in the streets. Do not be upset, brothers, that the law courts are closed; things have to be put in order, and we will deal with villains in our own way! When the time comes I shall want both town and peasant lads and will raise the cry a day or two beforehand, but they are not wanted yet so I hold my peace. An ax will be useful, a hunting spear not bad, but a three-pronged fork will be best of all: a Frenchman is no heavier than a sheaf of rye. Tomorrow after dinner I shall take the Iberian icon of the Mother of God to the wounded in the Catherine Hospital where we will have some water blessed. That will help them to get well quicker. I, too, am well now: one of my eyes was sore but now I am on the lookout with both. "But military men have told me that it is impossible to fight in the town," said Pierre, "and that the position..." "Well, of course! That's what we were saying," replied the first speaker. "And what does he mean by 'One of my eyes was sore but now I am on the lookout with both'?" asked Pierre. "The count had a sty," replied the adjutant smiling, "and was very much upset when I told him people had come to ask what was the matter with him. By the by, Count," he added suddenly, addressing Pierre with a smile, "we heard that you have family troubles and that the countess, your wife..." "I have heard nothing," Pierre replied unconcernedly. "But what have you heard?" "Oh, well, you know people often invent things. I only say what I heard." "But what did you hear?" "Well, they say," continued the adjutant with the same smile, "that the countess, your wife, is preparing to go abroad. I expect it's nonsense...." "Possibly," remarked Pierre, looking about him absent-mindedly. "And who is that?" he asked, indicating a short old man in a clean blue peasant overcoat, with a big snow-white beard and eyebrows and a ruddy face. "He? That's a tradesman, that is to say, he's the restaurant keeper, Vereshchagin. Perhaps you have heard of that affair with the proclamation." "Oh, so that is Vereshchagin!" said Pierre, looking at the firm, calm face of the old man and seeking any indication of his being a traitor. "That's not he himself, that's the father of the fellow who wrote the proclamation," said the adjutant. "The young man is in prison and I expect it will go hard with him." An old gentleman wearing a star and another official, a German wearing a cross round his neck, approached the speaker. "It's a complicated story, you know," said the adjutant. "That proclamation appeared about two months ago. The count was informed of it. He gave orders to investigate the matter. Gabriel Ivanovich here made the inquiries. The proclamation had passed through exactly sixty-three hands. He asked one, 'From whom did you get it?' 'From so-and-so.' He went to the next one. 'From whom did you get it?' and so on till he reached Vereshchagin, a half educated tradesman, you know, 'a pet of a trader,'" said the adjutant smiling. "They asked him, 'Who gave it you?' And the point is that we knew whom he had it from. He could only have had it from the Postmaster. But evidently they had come to some understanding. He replied: 'From no one; I made it up myself.' They threatened and questioned him, but he stuck to that: 'I made it up myself.' And so it was reported to the count, who sent for the man. 'From whom did you get the proclamation?' 'I wrote it myself.' Well, you know the count," said the adjutant cheerfully, with a smile of pride, "he flared up dreadfully--and just think of the fellow's audacity, lying, and obstinacy!" "And the count wanted him to say it was from Klyucharev? I understand!" said Pierre. "Not at all," rejoined the adjutant in dismay. "Klyucharev had his own sins to answer for without that and that is why he has been banished. But the point is that the count was much annoyed. 'How could you have written it yourself?' said he, and he took up the Hamburg Gazette that was lying on the table. 'Here it is! You did not write it yourself but translated it, and translated it abominably, because you don't even know French, you fool.' And what do you think? 'No,' said he, 'I have not read any papers, I made it up myself.' 'If that's so, you're a traitor and I'll have you tried, and you'll be hanged! Say from whom you had it.' 'I have seen no papers, I made it up myself.' And that was the end of it. The count had the father fetched, but the fellow stuck to it. He was sent for trial and condemned to hard labor, I believe. Now the father has come to intercede for him. But he's a good-for-nothing lad! You know that sort of tradesman's son, a dandy and lady-killer. He attended some lectures somewhere and imagines that the devil is no match for him. That's the sort of fellow he is. His father keeps a cookshop here by the Stone Bridge, and you know there was a large icon of God Almighty painted with a scepter in one hand and an orb in the other. Well, he took that icon home with him for a few days and what did he do? He found some scoundrel of a painter..." CHAPTER XI In the middle of this fresh tale Pierre was summoned to the commander in chief. When he entered the private room Count Rostopchin, puckering his face, was rubbing his forehead and eyes with his hand. A short man was saying something, but when Pierre entered he stopped speaking and went out. "Ah, how do you do, great warrior?" said Rostopchin as soon as the short man had left the room. "We have heard of your prowess. But that's not the point. Between ourselves, mon cher, do you belong to the Masons?" he went on severely, as though there were something wrong about it which he nevertheless intended to pardon. Pierre remained silent. "I am well informed, my friend, but I am aware that there are Masons and I hope that you are not one of those who on pretense of saving mankind wish to ruin Russia." "Yes, I am a Mason," Pierre replied. "There, you see, mon cher! I expect you know that Messrs. Speranski and Magnitski have been deported to their proper place. Mr. Klyucharev has been treated in the same way, and so have others who on the plea of building up the temple of Solomon have tried to destroy the temple of their fatherland. You can understand that there are reasons for this and that I could not have exiled the Postmaster had he not been a harmful person. It has now come to my knowledge that you lent him your carriage for his removal from town, and that you have even accepted papers from him for safe custody. I like you and don't wish you any harm and--as you are only half my age- I advise you, as a father would, to cease all communication with men of that stamp and to leave here as soon as possible." "But what did Klyucharev do wrong, Count?" asked Pierre. "That is for me to know, but not for you to ask," shouted Rostopchin. "If he is accused of circulating Napoleon's proclamation it is not proved that he did so," said Pierre without looking at Rostopchin, "and Vereshchagin..." "There we are!" Rostopchin shouted at Pierre louder than before, frowning suddenly. "Vereshchagin is a renegade and a traitor who will be punished as he deserves," said he with the vindictive heat with which people speak when recalling an insult. "But I did not summon you to discuss my actions, but to give you advice--or an order if you prefer it. I beg you to leave the town and break off all communication with such men as Klyucharev. And I will knock the nonsense out of anybody"--but probably realizing that he was shouting at Bezukhov who so far was not guilty of anything, he added, taking Pierre's hand in a friendly manner, "We are on the eve of a public disaster and I haven't time to be polite to everybody who has business with me. My head is sometimes in a whirl. Well, mon cher, what are you doing personally?" "Why, nothing," answered Pierre without raising his eyes or changing the thoughtful expression of his face. The count frowned. "A word of friendly advice, mon cher. Be off as soon as you can, that's all I have to tell you. Happy he who has ears to hear. Good-by, my dear fellow. Oh, by the by!" he shouted through the doorway after Pierre, "is it true that the countess has fallen into the clutches of the holy fathers of the Society of Jesus?" Pierre did not answer and left Rostopchin's room more sullen and angry than he had ever before shown himself. When he reached home it was already getting dark. Some eight people had come to see him that evening: the secretary of a committee, the colonel of his battalion, his steward, his major-domo, and various petitioners. They all had business with Pierre and wanted decisions from him. Pierre did not understand and was not interested in any of these questions and only answered them in order to get rid of these people. When left alone at last he opened and read his wife's letter. "They, the soldiers at the battery, Prince Andrew killed... that old man... Simplicity is submission to God. Suffering is necessary... the meaning of all... one must harness... my wife is getting married... One must forget and understand..." And going to his bed he threw himself on it without undressing and immediately fell asleep. When he awoke next morning the major-domo came to inform him that a special messenger, a police officer, had come from Count Rostopchin to know whether Count Bezukhov had left or was leaving the town. A dozen persons who had business with Pierre were awaiting him in the drawing room. Pierre dressed hurriedly and, instead of going to see them, went to the back porch and out through the gate. From that time till the end of the destruction of Moscow no one of Bezukhov's household, despite all the search they made, saw Pierre again or knew where he was. CHAPTER XII The Rostovs remained in Moscow till the first of September, that is, till the eve of the enemy's entry into the city. After Petya had joined Obolenski's regiment of Cossacks and left for Belaya Tserkov where that regiment was forming, the countess was seized with terror. The thought that both her sons were at the war, had both gone from under her wing, that today or tomorrow either or both of them might be killed like the three sons of one of her acquaintances, struck her that summer for the first time with cruel clearness. She tried to get Nicholas back and wished to go herself to join Petya, or to get him an appointment somewhere in Petersburg, but neither of these proved possible. Petya could not return unless his regiment did so or unless he was transferred to another regiment on active service. Nicholas was somewhere with the army and had not sent a word since his last letter, in which he had given a detailed account of his meeting with Princess Mary. The countess did not sleep at night, or when she did fall asleep dreamed that she saw her sons lying dead. After many consultations and conversations, the count at last devised means to tranquillize her. He got Petya transferred from Obolenski's regiment to Bezukhov's, which was in training near Moscow. Though Petya would remain in the service, this transfer would give the countess the consolation of seeing at least one of her sons under her wing, and she hoped to arrange matters for her Petya so as not to let him go again, but always get him appointed to places where he could not possibly take part in a battle. As long as Nicholas alone was in danger the countess imagined that she loved her first-born more than all her other children and even reproached herself for it; but when her youngest: the scapegrace who had been bad at lessons, was always breaking things in the house and making himself a nuisance to everybody, that snub-nosed Petya with his merry black eyes and fresh rosy cheeks where soft down was just beginning to show- when he was thrown amid those big, dreadful, cruel men who were fighting somewhere about something and apparently finding pleasure in it--then his mother thought she loved him more, much more, than all her other children. The nearer the time came for Petya to return, the more uneasy grew the countess. She began to think she would never live to see such happiness. The presence of Sonya, of her beloved Natasha, or even of her husband irritated her. "What do I want with them? I want no one but Petya," she thought. At the end of August the Rostovs received another letter from Nicholas. He wrote from the province of Voronezh where he had been sent to procure remounts, but that letter did not set the countess at ease. Knowing that one son was out of danger she became the more anxious about Petya. Though by the twentieth of August nearly all the Rostovs' acquaintances had left Moscow, and though everybody tried to persuade the countess to get away as quickly as possible, she would not bear of leaving before her treasure, her adored Petya, returned. On the twenty-eighth of August he arrived. The passionate tenderness with which his mother received him did not please the sixteen-year-old officer. Though she concealed from him her intention of keeping him under her wing, Petya guessed her designs, and instinctively fearing that he might give way to emotion when with her--might "become womanish" as he termed it to himself--he treated her coldly, avoided her, and during his stay in Moscow attached himself exclusively to Natasha for whom he had always had a particularly brotherly tenderness, almost lover-like. Owing to the count's customary carelessness nothing was ready for their departure by the twenty-eighth of August and the carts that were to come from their Ryazan and Moscow estates to remove their household belongings did not arrive till the thirtieth. From the twenty-eighth till the thirty-first all Moscow was in a bustle and commotion. Every day thousands of men wounded at Borodino were brought in by the Dorogomilov gate and taken to various parts of Moscow, and thousands of carts conveyed the inhabitants and their possessions out by the other gates. In spite of Rostopchin's broadsheets, or because of them or independently of them, the strangest and most contradictory rumors were current in the town. Some said that no one was to be allowed to leave the city, others on the contrary said that all the icons had been taken out of the churches and everybody was to be ordered to leave. Some said there had been another battle after Borodino at which the French had been routed, while others on the contrary reported that the Russian army bad been destroyed. Some talked about the Moscow militia which, preceded by the clergy, would go to the Three Hills; others whispered that Augustin had been forbidden to leave, that traitors had been seized, that the peasants were rioting and robbing people on their way from Moscow, and so on. But all this was only talk; in reality (though the Council of Fili, at which it was decided to abandon Moscow, had not yet been held) both those who went away and those who remained behind felt, though they did not show it, that Moscow would certainly be abandoned, and that they ought to get away as quickly as possible and save their belongings. It was felt that everything would suddenly break up and change, but up to the first of September nothing had done so. As a criminal who is being led to execution knows that he must die immediately, but yet looks about him and straightens the cap that is awry on his head, so Moscow involuntarily continued its wonted life, though it knew that the time of its destruction was near when the conditions of life to which its people were accustomed to submit would be completely upset. During the three days preceding the occupation of Moscow the whole Rostov family was absorbed in various activities. The head of the family, Count Ilya Rostov, continually drove about the city collecting the current rumors from all sides and gave superficial and hasty orders at home about the preparations for their departure. The countess watched the things being packed, was dissatisfied with everything, was constantly in pursuit of Petya who was always running away from her, and was jealous of Natasha with whom he spent all his time. Sonya alone directed the practical side of matters by getting things packed. But of late Sonya had been particularly sad and silent. Nicholas' letter in which he mentioned Princess Mary had elicited, in her presence, joyous comments from the countess, who saw an intervention of Providence in this meeting of the princess and Nicholas. "I was never pleased at Bolkonski's engagement to Natasha," said the countess, "but I always wanted Nicholas to marry the princess, and had a presentiment that it would happen. What a good thing it would be!" Sonya felt that this was true: that the only possibility of retrieving the Rostovs' affairs was by Nicholas marrying a rich woman, and that the princess was a good match. It was very bitter for her. But despite her grief, or perhaps just because of it, she took on herself all the difficult work of directing the storing and packing of their things and was busy for whole days. The count and countess turned to her when they had any orders to give. Petya and Natasha on the contrary, far from helping their parents, were generally a nuisance and a hindrance to everyone. Almost all day long the house resounded with their running feet, their cries, and their spontaneous laughter. They laughed and were gay not because there was any reason to laugh, but because gaiety and mirth were in their hearts and so everything that happened was a cause for gaiety and laughter to them. Petya was in high spirits because having left home a boy he had returned (as everybody told him) a fine young man, because he was at home, because he had left Belaya Tserkov where there was no hope of soon taking part in a battle and had come to Moscow where there was to be fighting in a few days, and chiefly because Natasha, whose lead he always followed, was in high spirits. Natasha was gay because she had been sad too long and now nothing reminded her of the cause of her sadness, and because she was feeling well. She was also happy because she had someone to adore her: the adoration of others was a lubricant the wheels of her machine needed to make them run freely--and Petya adored her. Above all, they were gay because there was a war near Moscow, there would be fighting at the town gates, arms were being given out, everybody was escaping--going away somewhere, and in general something extraordinary was happening, and that is always exciting, especially to the young. CHAPTER XIII On Saturday, the thirty-first of August, everything in the Rostovs' house seemed topsy-turvy. All the doors were open, all the furniture was being carried out or moved about, and the mirrors and pictures had been taken down. There were trunks in the rooms, and hay, wrapping paper, and ropes were scattered about. The peasants and house serfs carrying out the things were treading heavily on the parquet floors. The yard was crowded with peasant carts, some loaded high and already corded up, others still empty. The voices and footsteps of the many servants and of the peasants who had come with the carts resounded as they shouted to one another in the yard and in the house. The count bad been out since morning. The countess had a headache brought on by all the noise and turmoil and was lying down in the new sitting room with a vinegar compress on her head. Petya was not at home, he had gone to visit a friend with whom he meant to obtain a transfer from the militia to the active army. Sonya was in the ballroom looking after the packing of the glass and china. Natasha was sitting on the floor of her dismantled room with dresses, ribbons, and scarves strewn all about her, gazing fixedly at the floor and holding in her hands the old ball dress (already out of fashion) which she had worn at her first Petersburg ball. Natasha was ashamed of doing nothing when everyone else was so busy, and several times that morning had tried to set to work, but her heart was not in it, and she could not and did not know how to do anything except with all her heart and all her might. For a while she had stood beside Sonya while the china was being packed and tried to help, but soon gave it up and went to her room to pack her own things. At first she found it amusing to give away dresses and ribbons to the maids, but when that was done and what was left had still to be packed, she found it dull. "Dunyasha, you pack! You will, won't you, dear?" And when Dunyasha willingly promised to do it all for her, Natasha sat down on the floor, took her old ball dress, and fell into a reverie quite unrelated to what ought to have occupied her thoughts now. She was roused from her reverie by the talk of the maids in the next room (which was theirs) and by the sound of their hurried footsteps going to the back porch. Natasha got up and looked out of the window. An enormously long row of carts full of wounded men had stopped in the street. The housekeeper, the old nurse, the cooks, coachmen, maids, footmen, postilions, and scullions stood at the gate, staring at the wounded. Natasha, throwing a clean pocket handkerchief over her hair and holding an end of it in each hand, went out into the street. The former housekeeper, old Mavra Kuzminichna, had stepped out of the crowd by the gate, gone up to a cart with a hood constructed of bast mats, and was speaking to a pale young officer who lay inside. Natasha moved a few steps forward and stopped shyly, still holding her handkerchief, and listened to what the housekeeper was saying. "Then you have nobody in Moscow?" she was saying. "You would be more comfortable somewhere in a house... in ours, for instance... the family are leaving." "I don't know if it would be allowed," replied the officer in a weak voice. "Here is our commanding officer... ask him," and he pointed to a stout major who was walking back along the street past the row of carts. Natasha glanced with frightened eyes at the face of the wounded officer and at once went to meet the major. "May the wounded men stay in our house?" she asked. The major raised his hand to his cap with a smile. "Which one do you want, Ma'am'selle?" said he, screwing up his eyes and smiling. Natasha quietly repeated her question, and her face and whole manner were so serious, though she was still holding the ends of her handkerchief, that the major ceased smiling and after some reflection- as if considering in how far the thing was possible--replied in the affirmative. "Oh yes, why not? They may," he said. With a slight inclination of her head, Natasha stepped back quickly to Mavra Kuzminichna, who stood talking compassionately to the officer. "They may. He says they may!" whispered Natasha. The cart in which the officer lay was turned into the Rostovs' yard, and dozens of carts with wounded men began at the invitation of the townsfolk to turn into the yards and to draw up at the entrances of the houses in Povarskaya Street. Natasha was evidently pleased to be dealing with new people outside the ordinary routine of her life. She and Mavra Kuzminichna tried to get as many of the wounded as possible into their yard. "Your Papa must be told, though," said Mavra Kuzminichna. "Never mind, never mind, what does it matter? For one day we can move into the drawing room. They can have all our half of the house." "There now, young lady, you do take things into your head! Even if we put them into the wing, the men's room, or the nurse's room, we must ask permission." "Well, I'll ask." Natasha ran into the house and went on tiptoe through the half-open door into the sitting room, where there was a smell of vinegar and Hoffman's drops. "Are you asleep, Mamma?" "Oh, what sleep-?" said the countess, waking up just as she was dropping into a doze. "Mamma darling!" said Natasha, kneeling by her mother and bringing her face close to her mother's, "I am sorry, forgive me, I'll never do it again; I woke you up! Mavra Kuzminichna has sent me: they have brought some wounded here--officers. Will you let them come? They have nowhere to go. I knew you'd let them come!" she said quickly all in one breath. "What officers? Whom have they brought? I don't understand anything about it," said the countess. Natasha laughed, and the countess too smiled slightly. "I knew you'd give permission... so I'll tell them," and, having kissed her mother, Natasha got up and went to the door. In the hall she met her father, who had returned with bad news. "We've stayed too long!" said the count with involuntary vexation. "The Club is closed and the police are leaving." "Papa, is it all right--I've invited some of the wounded into the house?" said Natasha. "Of course it is," he answered absently. "That's not the point. I beg you not to indulge in trifles now, but to help to pack, and tomorrow we must go, go, go!...." And the count gave a similar order to the major-domo and the servants. At dinner Petya having returned home told them the news he had heard. He said the people had been getting arms in the Kremlin, and that though Rostopchin's broadsheet had said that he would sound a call two or three days in advance, the order had certainly already been given for everyone to go armed to the Three Hills tomorrow, and that there would be a big battle there. The countess looked with timid horror at her son's eager, excited face as he said this. She realized that if she said a word about his not going to the battle (she knew he enjoyed the thought of the impending engagement) he would say something about men, honor, and the fatherland--something senseless, masculine, and obstinate which there would be no contradicting, and her plans would be spoiled; and so, hoping to arrange to leave before then and take Petya with her as their protector and defender, she did not answer him, but after dinner called the count aside and implored him with tears to take her away quickly, that very night if possible. With a woman's involuntary loving cunning she, who till then had not shown any alarm, said that she would die of fright if they did not leave that very night. Without any pretense she was now afraid of everything. CHAPTER XIV Madame Schoss, who had been out to visit her daughter, increased the countess' fears still more by telling what she had seen at a spirit dealer's in Myasnitski Street. When returning by that street she had been unable to pass because of a drunken crowd rioting in front of the shop. She had taken a cab and driven home by a side street and the cabman had told her that the people were breaking open the barrels at the drink store, having received orders to do so. After dinner the whole Rostov household set to work with enthusiastic haste packing their belongings and preparing for their departure. The old count, suddenly setting to work, kept passing from the yard to the house and back again, shouting confused instructions to the hurrying people, and flurrying them still more. Petya directed things in the yard. Sonya, owing to the count's contradictory orders, lost her head and did not know what to do. The servants ran noisily about the house and yard, shouting and disputing. Natasha, with the ardor characteristic of all she did suddenly set to work too. At first her intervention in the business of packing was received skeptically. Everybody expected some prank from her and did not wish to obey her; but she resolutely and passionately demanded obedience, grew angry and nearly cried because they did not heed her, and at last succeeded in making them believe her. Her first exploit, which cost her immense effort and established her authority, was the packing of the carpets. The count had valuable Gobelin tapestries and Persian carpets in the house. When Natasha set to work two cases were standing open in the ballroom, one almost full up with crockery, the other with carpets. There was also much china standing on the tables, and still more was being brought in from the storeroom. A third case was needed and servants had gone to fetch it. "Sonya, wait a bit--we'll pack everything into these," said Natasha. "You can't, Miss, we have tried to," said the butler's assistant. "No, wait a minute, please." And Natasha began rapidly taking out of the case dishes and plates wrapped in paper. "The dishes must go in here among the carpets," said she. "Why, it's a mercy if we can get the carpets alone into three cases," said the butler's assistant. "Oh, wait, please!" And Natasha began rapidly and deftly sorting out the things. "These aren't needed," said she, putting aside some plates of Kiev ware. "These--yes, these must go among the carpets," she said, referring to the Saxony china dishes. "Don't, Natasha! Leave it alone! We'll get it all packed," urged Sonya reproachfully. "What a young lady she is!" remarked the major-domo. But Natasha would not give in. She turned everything out and began quickly repacking, deciding that the inferior Russian carpets and unnecessary crockery should not be taken at all. When everything had been taken out of the cases, they recommenced packing, and it turned out that when the cheaper things not worth taking had nearly all been rejected, the valuable ones really did all go into the two cases. Only the lid of the case containing the carpets would not shut down. A few more things might have been taken out, but Natasha insisted on having her own way. She packed, repacked, pressed, made the butler's assistant and Petya--whom she had drawn into the business of packing--press on the lid, and made desperate efforts herself. "That's enough, Natasha," said Sonya. "I see you were right, but just take out the top one." "I won't!" cried Natasha, with one hand bolding back the hair that hung over her perspiring face, while with the other she pressed down the carpets. "Now press, Petya! Press, Vasilich, press hard!" she cried. The carpets yielded and the lid closed; Natasha, clapping her hands, screamed with delight and tears fell from her eyes. But this only lasted a moment. She at once set to work afresh and they now trusted her completely. The count was not angry even when they told him that Natasha had countermanded an order of his, and the servants now came to her to ask whether a cart was sufficiently loaded, and whether it might be corded up. Thanks to Natasha's directions the work now went on expeditiously, unnecessary things were left, and the most valuable packed as compactly as possible. But hard as they all worked till quite late that night, they could not get everything packed. The countess had fallen asleep and the count, having put off their departure till next morning, went to bed. Sonya and Natasha slept in the sitting room without undressing. That night another wounded man was driven down the Povarskaya, and Mavra Kuzminichna, who was standing at the gate, had him brought into the Rostovs' yard. Mavra Kuzminichna concluded that he was a very important man. He was being conveyed in a caleche with a raised hood, and was quite covered by an apron. On the box beside the driver sat a venerable old attendant. A doctor and two soldiers followed the carriage in a cart. "Please come in here. The masters are going away and the whole house will be empty," said the old woman to the old attendant. "Well, perhaps," said he with a sigh. "We don't expect to get him home alive! We have a house of our own in Moscow, but it's a long way from here, and there's nobody living in it." "Do us the honor to come in, there's plenty of everything in the master's house. Come in," said Mavra Kuzminichna. "Is he very ill?" she asked. The attendant made a hopeless gesture. "We don't expect to get him home! We must ask the doctor." And the old servant got down from the box and went up to the cart. "All right!" said the doctor. The old servant returned to the caleche, looked into it, shook his head disconsolately, told the driver to turn into the yard, and stopped beside Mavra Kuzminichna. "O, Lord Jesus Christ!" she murmured. She invited them to take the wounded man into the house. "The masters won't object..." she said. But they had to avoid carrying the man upstairs, and so they took him into the wing and put him in the room that had been Madame Schoss'. This wounded man was Prince Andrew Bolkonski. CHAPTER XV Moscow's last day had come. It was a clear bright autumn day, a Sunday. The church bells everywhere were ringing for service, just as usual on Sundays. Nobody seemed yet to realize what awaited the city. Only two things indicated the social condition of Moscow--the rabble, that is the poor people, and the price of commodities. An enormous crowd of factory hands, house serfs, and peasants, with whom some officials, seminarists, and gentry were mingled, had gone early that morning to the Three Hills. Having waited there for Rostopchin who did not turn up, they became convinced that Moscow would be surrendered, and then dispersed all about the town to the public houses and cookshops. Prices too that day indicated the state of affairs. The price of weapons, of gold, of carts and horses, kept rising, but the value of paper money and city articles kept falling, so that by midday there were instances of carters removing valuable goods, such as cloth, and receiving in payment a half of what they carted, while peasant horses were fetching five hundred rubles each, and furniture, mirrors, and bronzes were being given away for nothing. In the Rostovs' staid old-fashioned house the dissolution of former conditions of life was but little noticeable. As to the serfs the only indication was that three out of their huge retinue disappeared during the night, but nothing was stolen; and as to the value of their possessions, the thirty peasant carts that had come in from their estates and which many people envied proved to be extremely valuable and they were offered enormous sums of money for them. Not only were huge sums offered for the horses and carts, but on the previous evening and early in the morning of the first of September, orderlies and servants sent by wounded officers came to the Rostovs' and wounded men dragged themselves there from the Rostovs' and from neighboring houses where they were accommodated, entreating the servants to try to get them a lift out of Moscow. The major-domo to whom these entreaties were addressed, though he was sorry for the wounded, resolutely refused, saying that he dare not even mention the matter to the count. Pity these wounded men as one might, it was evident that if they were given one cart there would be no reason to refuse another, or all the carts and one's own carriages as well. Thirty carts could not save all the wounded and in the general catastrophe one could not disregard oneself and one's own family. So thought the major-domo on his master's behalf. On waking up that morning Count Ilya Rostov left his bedroom softly, so as not to wake the countess who had fallen asleep only toward morning, and came out to the porch in his lilac silk dressing gown. In the yard stood the carts ready corded. The carriages were at the front porch. The major-domo stood at the porch talking to an elderly orderly and to a pale young officer with a bandaged arm. On seeing the count the major-domo made a significant and stern gesture to them both to go away. "Well, Vasilich, is everything ready?" asked the count, and stroking his bald head he looked good-naturedly at the officer and the orderly and nodded to them. (He liked to see new faces.) "We can harness at once, your excellency." "Well, that's right. As soon as the countess wakes we'll be off, God willing! What is it, gentlemen?" he added, turning to the officer. "Are you staying in my house?" The officer came nearer and suddenly his face flushed crimson. "Count, be so good as to allow me... for God's sake, to get into some corner of one of your carts! I have nothing here with me.... I shall be all right on a loaded cart..." Before the officer had finished speaking the orderly made the same request on behalf of his master. "Oh, yes, yes, yes!" said the count hastily. "I shall be very pleased, very pleased. Vasilich, you'll see to it. Just unload one or two carts. Well, what of it... do what's necessary..." said the count, muttering some indefinite order. But at the same moment an expression of warm gratitude on the officer's face had already sealed the order. The count looked around him. In the yard, at the gates, at the window of the wings, wounded officers and their orderlies were to be seen. They were all looking at the count and moving toward the porch. "Please step into the gallery, your excellency," said the major-domo. "What are your orders about the pictures?" The count went into the house with him, repeating his order not to refuse the wounded who asked for a lift. "Well, never mind, some of the things can be unloaded," he added in a soft, confidential voice, as though afraid of being overheard. At nine o'clock the countess woke up, and Matrena Timofeevna, who had been her lady's maid before her marriage and now performed a sort of chief gendarme's duty for her, came to say that Madame Schoss was much offended and the young ladies' summer dresses could not be left behind. On inquiry, the countess learned that Madame Schoss was offended because her trunk had been taken down from its cart, and all the loads were being uncorded and the luggage taken out of the carts to make room for wounded men whom the count in the simplicity of his heart had ordered that they should take with them. The countess sent for her husband. "What is this, my dear? I hear that the luggage is being unloaded." "You know, love, I wanted to tell you... Countess dear... an officer came to me to ask for a few carts for the wounded. After all, ours are things that can be bought but think what being left behind means to them!... Really now, in our own yard--we asked them in ourselves and there are officers among them.... You know, I think, my dear... let them be taken... where's the hurry?" The count spoke timidly, as he always did when talking of money matters. The countess was accustomed to this tone as a precursor of news of something detrimental to the children's interests, such as the building of a new gallery or conservatory, the inauguration of a private theater or an orchestra. She was accustomed always to oppose anything announced in that timid tone and considered it her duty to do so. She assumed her dolefully submissive manner and said to her husband: "Listen to me, Count, you have managed matters so that we are getting nothing for the house, and now you wish to throw away all our- all the children's property! You said yourself that we have a hundred thousand rubles' worth of things in the house. I don't consent, my dear, I don't! Do as you please! It's the government's business to look after the wounded; they know that. Look at the Lopukhins opposite, they cleared out everything two days ago. That's what other people do. It's only we who are such fools. If you have no pity on me, have some for the children." Flourishing his arms in despair the count left the room without replying. "Papa, what are you doing that for?" asked Natasha, who had followed him into her mother's room. "Nothing! What business is it of yours?" muttered the count angrily. "But I heard," said Natasha. "Why does Mamma object?" "What business is it of yours?" cried the count. Natasha stepped up to the window and pondered. "Papa! Here's Berg coming to see us," said she, looking out of the window. CHAPTER XVI Berg, the Rostovs' son-in-law, was already a colonel wearing the orders of Vladimir and Anna, and he still filled the quiet and agreeable post of assistant to the head of the staff of the assistant commander of the first division of the Second Army. On the first of September he had come to Moscow from the army. He had nothing to do in Moscow, but he had noticed that everyone in the army was asking for leave to visit Moscow and had something to do there. So he considered it necessary to ask for leave of absence for family and domestic reasons. Berg drove up to his father-in-law's house in his spruce little trap with a pair of sleek roans, exactly like those of a certain prince. He looked attentively at the carts in the yard and while going up to the porch took out a clean pocket handkerchief and tied a knot in it. From the anteroom Berg ran with smooth though impatient steps into the drawing room, where he embraced the count, kissed the hands of Natasha and Sonya, and hastened to inquire after "Mamma's" health. "Health, at a time like this?" said the count. "Come, tell us the news! Is the army retreating or will there be another battle?" "God Almighty alone can decide the fate of our fatherland, Papa," said Berg. "The army is burning with a spirit of heroism and the leaders, so to say, have now assembled in council. No one knows what is coming. But in general I can tell you, Papa, that such a heroic spirit, the truly antique valor of the Russian army, which they--which it" (he corrected himself) "has shown or displayed in the battle of the twenty-sixth--there are no words worthy to do it justice! I tell you, Papa" (he smote himself on the breast as a general he had heard speaking had done, but Berg did it a trifle late for he should have struck his breast at the words "Russian army"), "I tell you frankly that we, the commanders, far from having to urge the men on or anything of that kind, could hardly restrain those... those... yes, those exploits of antique valor," he went on rapidly. "General Barclay de Tolly risked his life everywhere at the head of the troops, I can assure you. Our corps was stationed on a hillside. You can imagine!" And Berg related all that he remembered of the various tales he had heard those days. Natasha watched him with an intent gaze that confused him, as if she were trying to find in his face the answer to some question. "Altogether such heroism as was displayed by the Russian warriors cannot be imagined or adequately praised!" said Berg, glancing round at Natasha, and as if anxious to conciliate her, replying to her intent look with a smile. "'Russia is not in Moscow, she lives in the hearts of her sons!' Isn't it so, Papa?" said he. Just then the countess came in from the sitting room with a weary and dissatisfied expression. Berg hurriedly jumped up, kissed her hand, asked about her health, and, swaying his head from side to side to express sympathy, remained standing beside her. "Yes, Mamma, I tell you sincerely that these are hard and sad times for every Russian. But why are you so anxious? You have still time to get away...." "I can't think what the servants are about," said the countess, turning to her husband. "I have just been told that nothing is ready yet. Somebody after all must see to things. One misses Mitenka at such times. There won't be any end to it." The count was about to say something, but evidently restrained himself. He got up from his chair and went to the door. At that moment Berg drew out his handkerchief as if to blow his nose and, seeing the knot in it, pondered, shaking his head sadly and significantly. "And I have a great favor to ask of you, Papa," said he. "Hm..." said the count, and stopped. "I was driving past Yusupov's house just now," said Berg with a laugh, "when the steward, a man I know, ran out and asked me whether I wouldn't buy something. I went in out of curiosity, you know, and there is a small chiffonier and a dressing table. You know how dear Vera wanted a chiffonier like that and how we had a dispute about it." (At the mention of the chiffonier and dressing table Berg involuntarily changed his tone to one of pleasure at his admirable domestic arrangements.) "And it's such a beauty! It pulls out and has a secret English drawer, you know! And dear Vera has long wanted one. I wish to give her a surprise, you see. I saw so many of those peasant carts in your yard. Please let me have one, I will pay the man well, and..." The count frowned and coughed. "Ask the countess, I don't give orders." "If it's inconvenient, please don't," said Berg. "Only I so wanted it, for dear Vera's sake." "Oh, go to the devil, all of you! To the devil, the devil, the devil..." cried the old count. "My head's in a whirl!" And he left the room. The countess began to cry. "Yes, Mamma! Yes, these are very hard times!" said Berg. Natasha left the room with her father and, as if finding it difficult to reach some decision, first followed him and then ran downstairs. Petya was in the porch, engaged in giving out weapons to the servants who were to leave Moscow. The loaded carts were still standing in the yard. Two of them had been uncorded and a wounded officer was climbing into one of them helped by an orderly. "Do you know what it's about?" Petya asked Natasha. She understood that he meant what were their parents quarreling about. She did not answer. "It's because Papa wanted to give up all the carts to the wounded," said Petya. "Vasilich told me. I consider..." "I consider," Natasha suddenly almost shouted, turning her angry face to Petya, "I consider it so horrid, so abominable, so... I don't know what. Are we despicable Germans?" Her throat quivered with convulsive sobs and, afraid of weakening and letting the force of her anger run to waste, she turned and rushed headlong up the stairs. Berg was sitting beside the countess consoling her with the respectful attention of a relative. The count, pipe in hand, was pacing up and down the room, when Natasha, her face distorted by anger, burst in like a tempest and approached her mother with rapid steps. "It's horrid! It's abominable!" she screamed. "You can't possibly have ordered it!" Berg and the countess looked at her, perplexed and frightened. The count stood still at the window and listened. "Mamma, it's impossible: see what is going on in the yard!" she cried. "They will be left!..." "What's the matter with you? Who are 'they'? What do you want?" "Why, the wounded! It's impossible, Mamma. It's monstrous!... No, Mamma darling, it's not the thing. Please forgive me, darling.... Mamma, what does it matter what we take away? Only look what is going on in the yard... Mamma!... It's impossible!" The count stood by the window and listened without turning round. Suddenly he sniffed and put his face closer to the window. The countess glanced at her daughter, saw her face full of shame for her mother, saw her agitation, and understood why her husband did not turn to look at her now, and she glanced round quite disconcerted. "Oh, do as you like! Am I hindering anyone?" she said, not surrendering at once. "Mamma, darling, forgive me!" But the countess pushed her daughter away and went up to her husband. "My dear, you order what is right.... You know I don't understand about it," said she, dropping her eyes shamefacedly. "The eggs... the eggs are teaching the hen," muttered the count through tears of joy, and he embraced his wife who was glad to hide her look of shame on his breast. "Papa! Mamma! May I see to it? May I?..." asked Natasha. "We will still take all the most necessary things." The count nodded affirmatively, and Natasha, at the rapid pace at which she used to run when playing at tag, ran through the ballroom to the anteroom and downstairs into the yard. The servants gathered round Natasha, but could not believe the strange order she brought them until the count himself, in his wife's name, confirmed the order to give up all the carts to the wounded and take the trunks to the storerooms. When they understood that order the servants set to work at this new task with pleasure and zeal. It no longer seemed strange to them but on the contrary it seemed the only thing that could be done, just as a quarter of an hour before it had not seemed strange to anyone that the wounded should be left behind and the goods carted away but that had seemed the only thing to do. The whole household, as if to atone for not having done it sooner, set eagerly to work at the new task of placing the wounded in the carts. The wounded dragged themselves out of their rooms and stood with pale but happy faces round the carts. The news that carts were to be had spread to the neighboring houses, from which wounded men began to come into the Rostovs' yard. Many of the wounded asked them not to unload the carts but only to let them sit on the top of the things. But the work of unloading, once started, could not be arrested. It seemed not to matter whether all or only half the things were left behind. Cases full of china, bronzes, pictures, and mirrors that had been so carefully packed the night before now lay about the yard, and still they went on searching for and finding possibilities of unloading this or that and letting the wounded have another and yet another cart. "We can take four more men," said the steward. "They can have my trap, or else what is to become of them?" "Let them have my wardrobe cart," said the countess. "Dunyasha can go with me in the carriage." They unloaded the wardrobe cart and sent it to take wounded men from a house two doors off. The whole household, servants included, was bright and animated. Natasha was in a state of rapturous excitement such as she had not known for a long time. "What could we fasten this onto?" asked the servants, trying to fix a trunk on the narrow footboard behind a carriage. "We must keep at least one cart." "What's in it?" asked Natasha. "The count's books." "Leave it, Vasilich will put it away. It's not wanted." The phaeton was full of people and there was a doubt as to where Count Peter could sit. "On the box. You'll sit on the box, won't you, Petya?" cried Natasha. Sonya too was busy all this time, but the aim of her efforts was quite different from Natasha's. She was putting away the things that had to be left behind and making a list of them as the countess wished, and she tried to get as much taken away with them as possible. CHAPTER XVII Before two o'clock in the afternoon the Rostovs' four carriages, packed full and with the horses harnessed, stood at the front door. One by one the carts with the wounded had moved out of the yard. The caleche in which Prince Andrew was being taken attracted Sonya's attention as it passed the front porch. With the help of a maid she was arranging a seat for the countess in the huge high coach that stood at the entrance. "Whose caleche is that?" she inquired, leaning out of the carriage window. "Why, didn't you know, Miss?" replied the maid. "The wounded prince: he spent the night in our house and is going with us." "But who is it? What's his name?" "It's our intended that was--Prince Bolkonski himself! They say he is dying," replied the maid with a sigh. Sonya jumped out of the coach and ran to the countess. The countess, tired out and already dressed in shawl and bonnet for her journey, was pacing up and down the drawing room, waiting for the household to assemble for the usual silent prayer with closed doors before starting. Natasha was not in the room. "Mamma," said Sonya, "Prince Andrew is here, mortally wounded. He is going with us." The countess opened her eyes in dismay and, seizing Sonya's arm, glanced around. "Natasha?" she murmured. At that moment this news had only one significance for both of them. They knew their Natasha, and alarm as to what would happen if she heard this news stifled all sympathy for the man they both liked. "Natasha does not know yet, but he is going with us," said Sonya. "You say he is dying?" Sonya nodded. The countess put her arms around Sonya and began to cry. "The ways of God are past finding out!" she thought, feeling that the Almighty Hand, hitherto unseen, was becoming manifest in all that was now taking place. "Well, Mamma? Everything is ready. What's the matter?" asked Natasha, as with animated face she ran into the room. "Nothing," answered the countess. "If everything is ready let us start." And the countess bent over her reticule to hide her agitated face. Sonya embraced Natasha and kissed her. Natasha looked at her inquiringly. "What is it? What has happened?" "Nothing... No..." "Is it something very bad for me? What is it?" persisted Natasha with her quick intuition. Sonya sighed and made no reply. The count, Petya, Madame Schoss, Mavra Kuzminichna, and Vasilich came into the drawing room and, having closed the doors, they all sat down and remained for some moments silently seated without looking at one another. The count was the first to rise, and with a loud sigh crossed himself before the icon. All the others did the same. Then the count embraced Mavra Kuzminichna and Vasilich, who were to remain in Moscow, and while they caught at his hand and kissed his shoulder he patted their backs lightly with some vaguely affectionate and comforting words. The countess went into the oratory and there Sonya found her on her knees before the icons that had been left here and there hanging on the wall. (The most precious ones, with which some family tradition was connected, were being taken with them.) In the porch and in the yard the men whom Petya had armed with swords and daggers, with trousers tucked inside their high boots and with belts and girdles tightened, were taking leave of those remaining behind. As is always the case at a departure, much had been forgotten or put in the wrong place, and for a long time two menservants stood one on each side of the open door and the carriage steps waiting to help the countess in, while maids rushed with cushions and bundles from the house to the carriages, the caleche, the phaeton, and back again. "They always will forget everything!" said the countess. "Don't you know I can't sit like that?" And Dunyasha, with clenched teeth, without replying but with an aggrieved look on her face, hastily got into the coach to rearrange the seat. "Oh, those servants!" said the count, swaying his head. Efim, the old coachman, who was the only one the countess trusted to drive her, sat perched up high on the box and did not so much as glance round at what was going on behind him. From thirty years' experience he knew it would be some time yet before the order, "Be off, in God's name!" would be given him: and he knew that even when it was said he would be stopped once or twice more while they sent back to fetch something that had been forgotten, and even after that he would again be stopped and the countess herself would lean out of the window and beg him for the love of heaven to drive carefully down the hill. He knew all this and therefore waited calmly for what would happen, with more patience than the horses, especially the near one, the chestnut Falcon, who was pawing the ground and champing his bit. At last all were seated, the carriage steps were folded and pulled up, the door was shut, somebody was sent for a traveling case, and the countess leaned out and said what she had to say. Then Efim deliberately doffed his hat and began crossing himself. The postilion and all the other servants did the same. "Off, in God's name!" said Efim, putting on his hat. "Start!" The postilion started the horses, the off pole horse tugged at his collar, the high springs creaked, and the body of the coach swayed. The footman sprang onto the box of the moving coach which jolted as it passed out of the yard onto the uneven roadway; the other vehicles jolted in their turn, and the procession of carriages moved up the street. In the carriages, the caleche, and the phaeton, all crossed themselves as they passed the church opposite the house. Those who were to remain in Moscow walked on either side of the vehicles seeing the travelers off. Rarely had Natasha experienced so joyful a feeling as now, sitting in the carriage beside the countess and gazing at the slowly receding walls of forsaken, agitated Moscow. Occasionally she leaned out of the carriage window and looked back and then forward at the long train of wounded in front of them. Almost at the head of the line she could see the raised hood of Prince Andrew's caleche. She did not know who was in it, but each time she looked at the procession her eyes sought that caleche. She knew it was right in front. In Kudrino, from the Nikitski, Presnya, and Podnovinsk Streets came several other trains of vehicles similar to the Rostovs', and as they passed along the Sadovaya Street the carriages and carts formed two rows abreast. As they were going round the Sukharev water tower Natasha, who was inquisitively and alertly scrutinizing the people driving or walking past, suddenly cried out in joyful surprise: "Dear me! Mamma, Sonya, look, it's he!" "Who? Who?" "Look! Yes, on my word, it's Bezukhov!" said Natasha, putting her head out of the carriage and staring at a tall, stout man in a coachman's long coat, who from his manner of walking and moving was evidently a gentleman in disguise, and who was passing under the arch of the Sukharev tower accompanied by a small, sallow-faced, beardless old man in a frieze coat. "Yes, it really is Bezukhov in a coachman's coat, with a queer-looking old boy. Really," said Natasha, "look, look!" "No, it's not he. How can you talk such nonsense?" "Mamma," screamed Natasha, "I'll stake my head it's he! I assure you! Stop, stop!" she cried to the coachman. But the coachman could not stop, for from the Meshchanski Street came more carts and carriages, and the Rostovs were being shouted at to move on and not block the way. In fact, however, though now much farther off than before, the Rostovs all saw Pierre--or someone extraordinarily like him--in a coachman's coat, going down the street with head bent and a serious face beside a small, beardless old man who looked like a footman. That old man noticed a face thrust out of the carriage window gazing at them, and respectfully touching Pierre's elbow said something to him and pointed to the carriage. Pierre, evidently engrossed in thought, could not at first understand him. At length when he had understood and looked in the direction the old man indicated, he recognized Natasha, and following his first impulse stepped instantly and rapidly toward the coach. But having taken a dozen steps he seemed to remember something and stopped. Natasha's face, leaning out of the window, beamed with quizzical kindliness. "Peter Kirilovich, come here! We have recognized you! This is wonderful!" she cried, holding out her hand to him. "What are you doing? Why are you like this?" Pierre took her outstretched hand and kissed it awkwardly as he walked along beside her while the coach still moved on. "What is the matter, Count?" asked the countess in a surprised and commiserating tone. "What? What? Why? Don't ask me," said Pierre, and looked round at Natasha whose radiant, happy expression--of which he was conscious without looking at her--filled him with enchantment. "Are you remaining in Moscow, then?" Pierre hesitated. "In Moscow?" he said in a questioning tone. "Yes, in Moscow. Goodby!" "Ah, if only I were a man? I'd certainly stay with you. How splendid!" said Natasha. "Mamma, if you'll let me, I'll stay!" Pierre glanced absently at Natasha and was about to say something, but the countess interrupted him. "You were at the battle, we heard." "Yes, I was," Pierre answered. "There will be another battle tomorrow..." he began, but Natasha interrupted him. "But what is the matter with you, Count? You are not like yourself...." "Oh, don't ask me, don't ask me! I don't know myself. Tomorrow... But no! Good-by, good-by!" he muttered. "It's an awful time!" and dropping behind the carriage he stepped onto the pavement. Natasha continued to lean out of the window for a long time, beaming at him with her kindly, slightly quizzical, happy smile. CHAPTER XVIII For the last two days, ever since leaving home, Pierre had been living in the empty house of his deceased benefactor, Bazdeev. This is how it happened. When he woke up on the morning after his return to Moscow and his interview with Count Rostopchin, he could not for some time make out where he was and what was expected of him. When he was informed that among others awaiting him in his reception room there was a Frenchman who had brought a letter from his wife, the Countess Helene, he felt suddenly overcome by that sense of confusion and hopelessness to which he was apt to succumb. He felt that everything was now at an end, all was in confusion and crumbling to pieces, that nobody was right or wrong, the future held nothing, and there was no escape from this position. Smiling unnaturally and muttering to himself, he first sat down on the sofa in an attitude of despair, then rose, went to the door of the reception room and peeped through the crack, returned flourishing his arms, and took up a book. His major-domo came in a second time to say that the Frenchman who had brought the letter from the countess was very anxious to see him if only for a minute, and that someone from Bazdeev's widow had called to ask Pierre to take charge of her husband's books, as she herself was leaving for the country. "Oh, yes, in a minute; wait... or no! No, of course... go and say I will come directly," Pierre replied to the major-domo. But as soon as the man had left the room Pierre took up his hat which was lying on the table and went out of his study by the other door. There was no one in the passage. He went along the whole length of this passage to the stairs and, frowning and rubbing his forehead with both hands, went down as far as the first landing. The hall porter was standing at the front door. From the landing where Pierre stood there was a second staircase leading to the back entrance. He went down that staircase and out into the yard. No one had seen him. But there were some carriages waiting, and as soon as Pierre stepped out of the gate the coachmen and the yard porter noticed him and raised their caps to him. When he felt he was being looked at he behaved like an ostrich which hides its head in a bush in order not to be seen: he hung his head and quickening his pace went down the street. Of all the affairs awaiting Pierre that day the sorting of Joseph Bazdeev's books and papers appeared to him the most necessary. He hired the first cab he met and told the driver to go to the Patriarch's Ponds, where the widow Bazdeev's house was. Continually turning round to look at the rows of loaded carts that were making their way from all sides out of Moscow, and balancing his bulky body so as not to slip out of the ramshackle old vehicle, Pierre, experiencing the joyful feeling of a boy escaping from school, began to talk to his driver. The man told him that arms were being distributed today at the Kremlin and that tomorrow everyone would be sent out beyond the Three Hills gates and a great battle would be fought there. Having reached the Patriarch's Ponds Pierre found the Bazdeevs' house, where he had not been for a long time past. He went up to the gate. Gerasim, that sallow beardless old man Pierre had seen at Torzhok five years before with Joseph Bazdeev, came out in answer to his knock. "At home?" asked Pierre. "Owing to the present state of things Sophia Danilovna has gone to the Torzhok estate with the children, your excellency." "I will come in all the same, I have to look through the books," said Pierre. "Be so good as to step in. Makar Alexeevich, the brother of my late master--may the kingdom of heaven be his--has remained here, but he is in a weak state as you know," said the old servant. Pierre knew that Makar Alexeevich was Joseph Bazdeev's half-insane brother and a hard drinker. "Yes, yes, I know. Let us go in..." said Pierre and entered the house. A tall, bald-headed old man with a red nose, wearing a dressing gown and with galoshes on his bare feet, stood in the anteroom. On seeing Pierre he muttered something angrily and went away along the passage. "He was a very clever man but has now grown quite feeble, as your honor sees," said Gerasim. "Will you step into the study?" Pierre nodded. "As it was sealed up so it has remained, but Sophia Danilovna gave orders that if anyone should come from you they were to have the books." Pierre went into that gloomy study which he had entered with such trepidation in his benefactor's lifetime. The room, dusty and untouched since the death of Joseph Bazdeev was now even gloomier. Gerasim opened one of the shutters and left the room on tiptoe. Pierre went round the study, approached the cupboard in which the manuscripts were kept, and took out what had once been one of the most important, the holy of holies of the order. This was the authentic Scotch Acts with Bazdeev's notes and explanations. He sat down at the dusty writing table, and, having laid the manuscripts before him, opened them out, closed them, finally pushed them away, and resting his head on his hand sank into meditation. Gerasim looked cautiously into the study several times and saw Pierre always sitting in the same attitude. More than two hours passed and Gerasim took the liberty of making a slight noise at the door to attract his attention, but Pierre did not hear him. "Is the cabman to be discharged, your honor?" "Oh yes!" said Pierre, rousing himself and rising hurriedly. "Look here," he added, taking Gerasim by a button of his coat and looking down at the old man with moist, shining, and ecstatic eyes, "I say, do you know that there is going to be a battle tomorrow?" "We heard so," replied the man. "I beg you not to tell anyone who I am, and to do what I ask you." "Yes, your excellency," replied Gerasim. "Will you have something to eat?" "No, but I want something else. I want peasant clothes and a pistol," said Pierre, unexpectedly blushing. "Yes, your excellency," said Gerasim after thinking for a moment. All the rest of that day Pierre spent alone in his benefactor's study, and Gerasim heard him pacing restlessly from one corner to another and talking to himself. And he spent the night on a bed made up for him there. Gerasim, being a servant who in his time had seen many strange things, accepted Pierre's taking up his residence in the house without surprise, and seemed pleased to have someone to wait on. That same evening--without even asking himself what they were wanted for--he procured a coachman's coat and cap for Pierre, and promised to get him the pistol next day. Makar Alexeevich came twice that evening shuffling along in his galoshes as far as the door and stopped and looked ingratiatingly at Pierre. But as soon as Pierre turned toward him he wrapped his dressing gown around him with a shamefaced and angry look and hurried away. It was when Pierre (wearing the coachman's coat which Gerasim had procured for him and had disinfected by steam) was on his way with the old man to buy the pistol at the Sukharev market that he met the Rostovs. CHAPTER XIX Kutuzov's order to retreat through Moscow to the Ryazan road was issued at night on the first of September. The first troops started at once, and during the night they marched slowly and steadily without hurry. At daybreak, however, those nearing the town at the Dorogomilov bridge saw ahead of them masses of soldiers crowding and hurrying across the bridge, ascending on the opposite side and blocking the streets and alleys, while endless masses of troops were bearing down on them from behind, and an unreasoning hurry and alarm overcame them. They all rushed forward to the bridge, onto it, and to the fords and the boats. Kutuzov himself had driven round by side streets to the other side of Moscow. By ten o'clock in the morning of the second of September, only the rear guard remained in the Dorogomilov suburb, where they had ample room. The main army was on the other side of Moscow or beyond it. At that very time, at ten in the morning of the second of September, Napoleon was standing among his troops on the Poklonny Hill looking at the panorama spread out before him. From the twenty-sixth of August to the second of September, that is from the battle of Borodino to the entry of the French into Moscow, during the whole of that agitating, memorable week, there had been the extraordinary autumn weather that always comes as a surprise, when the sun hangs low and gives more heat than in spring, when everything shines so brightly in the rare clear atmosphere that the eyes smart, when the lungs are strengthened and refreshed by inhaling the aromatic autumn air, when even the nights are warm, and when in those dark warm nights, golden stars startle and delight us continually by falling from the sky. At ten in the morning of the second of September this weather still held. The brightness of the morning was magical. Moscow seen from the Poklonny Hill lay spaciously spread out with her river, her gardens, and her churches, and she seemed to be living her usual life, her cupolas glittering like stars in the sunlight. The view of the strange city with its peculiar architecture, such as he had never seen before, filled Napoleon with the rather envious and uneasy curiosity men feel when they see an alien form of life that has no knowledge of them. This city was evidently living with the full force of its own life. By the indefinite signs which, even at a distance, distinguish a living body from a dead one, Napoleon from the Poklonny Hill perceived the throb of life in the town and felt, as it were, the breathing of that great and beautiful body. Every Russian looking at Moscow feels her to be a mother; every foreigner who sees her, even if ignorant of her significance as the mother city, must feel her feminine character, and Napoleon felt it. "Cette ville asiatique aux innombrables eglises, Moscou la sainte. La voila done enfin, cette fameuse ville! Il etait temps,"* said he, and dismounting he ordered a plan of Moscow to be spread out before him, and summoned Lelorgne d'Ideville, the interpreter. *"That Asiatic city of the innumerable churches, holy Moscow! Here it is then at last, that famous city. It was high time." "A town captured by the enemy is like a maid who has lost her honor," thought he (he had said so to Tuchkov at Smolensk). From that point of view he gazed at the Oriental beauty he had not seen before. It seemed strange to him that his long-felt wish, which had seemed unattainable, had at last been realized. In the clear morning light he gazed now at the city and now at the plan, considering its details, and the assurance of possessing it agitated and awed him. "But could it be otherwise?" he thought. "Here is this capital at my feet. Where is Alexander now, and of what is he thinking? A strange, beautiful, and majestic city; and a strange and majestic moment! In what light must I appear to them!" thought he, thinking of his troops. "Here she is, the reward for all those fainthearted men," he reflected, glancing at those near him and at the troops who were approaching and forming up. "One word from me, one movement of my hand, and that ancient capital of the Tsars would perish. But my clemency is always ready to descend upon the vanquished. I must be magnanimous and truly great. But no, it can't be true that I am in Moscow," he suddenly thought. "Yet here she is lying at my feet, with her golden domes and crosses scintillating and twinkling in the sunshine. But I shall spare her. On the ancient monuments of barbarism and despotism I will inscribe great words of justice and mercy.... It is just this which Alexander will feel most painfully, I know him." (It seemed to Napoleon that the chief import of what was taking place lay in the personal struggle between himself and Alexander.) "From the height of the Kremlin--yes, there is the Kremlin, yes--I will give them just laws; I will teach them the meaning of true civilization, I will make generations of boyars remember their conqueror with love. I will tell the deputation that I did not, and do not, desire war, that I have waged war only against the false policy of their court; that I love and respect Alexander and that in Moscow I will accept terms of peace worthy of myself and of my people. I do not wish to utilize the fortunes of war to humiliate an honored monarch. 'Boyars,' I will say to them, 'I do not desire war, I desire the peace and welfare of all my subjects.' However, I know their presence will inspire me, and I shall speak to them as I always do: clearly, impressively, and majestically. But can it be true that I am in Moscow? Yes, there she lies." "Qu'on m'amene les boyars,"* said he to his suite. *"Bring the boyars to me." A general with a brilliant suite galloped off at once to fetch the boyars. Two hours passed. Napoleon had lunched and was again standing in the same place on the Poklonny Hill awaiting the deputation. His speech to the boyars had already taken definite shape in his imagination. That speech was full of dignity and greatness as Napoleon understood it. He was himself carried away by the tone of magnanimity he intended to adopt toward Moscow. In his imagination he appointed days for assemblies at the palace of the Tsars, at which Russian notables and his own would mingle. He mentally appointed a governor, one who would win the hearts of the people. Having learned that there were many charitable institutions in Moscow he mentally decided that he would shower favors on them all. He thought that, as in Africa he had to put on a burnoose and sit in a mosque, so in Moscow he must be beneficent like the Tsars. And in order finally to touch the hearts of the Russians--and being like all Frenchmen unable to imagine anything sentimental without a reference to ma chere, ma tendre, ma pauvre mere* --he decided that he would place an inscription on all these establishments in large letters: "This establishment is dedicated to my dear mother." Or no, it should be simply: Maison de ma Mere,*[2] he concluded. "But am I really in Moscow? Yes, here it lies before me, but why is the deputation from the city so long in appearing?" he wondered. *"My dear, my tender, my poor mother." *[2] "House of my Mother." Meanwhile an agitated consultation was being carried on in whispers among his generals and marshals at the rear of his suite. Those sent to fetch the deputation had returned with the news that Moscow was empty, that everyone had left it. The faces of those who were not conferring together were pale and perturbed. They were not alarmed by the fact that Moscow had been abandoned by its inhabitants (grave as that fact seemed), but by the question how to tell the Emperor--without putting him in the terrible position of appearing ridiculous--that he had been awaiting the boyars so long in vain: that there were drunken mobs left in Moscow but no one else. Some said that a deputation of some sort must be scraped together, others disputed that opinion and maintained that the Emperor should first be carefully and skillfully prepared, and then told the truth. "He will have to be told, all the same," said some gentlemen of the suite. "But, gentlemen..." The position was the more awkward because the Emperor, meditating upon his magnanimous plans, was pacing patiently up and down before the outspread map, occasionally glancing along the road to Moscow from under his lifted hand with a bright and proud smile. "But it's impossible..." declared the gentlemen of the suite, shrugging their shoulders but not venturing to utter the implied word- le ridicule... At last the Emperor, tired of futile expectation, his actor's instinct suggesting to him that the sublime moment having been too long drawn out was beginning to lose its sublimity, gave a sign with his hand. A single report of a signaling gun followed, and the troops, who were already spread out on different sides of Moscow, moved into the city through Tver, Kaluga, and Dorogomilov gates. Faster and faster, vying with one another, they moved at the double or at a trot, vanishing amid the clouds of dust they raised and making the air ring with a deafening roar of mingling shouts. Drawn on by the movement of his troops Napoleon rode with them as far as the Dorogomilov gate, but there again stopped and, dismounting from his horse, paced for a long time by the Kammer-Kollezski rampart, awaiting the deputation. CHAPTER XX Meanwhile Moscow was empty. There were still people in it, perhaps a fiftieth part of its former inhabitants had remained, but it was empty. It was empty in the sense that a dying queenless hive is empty. In a queenless hive no life is left though to a superficial glance it seems as much alive as other hives. The bees circle round a queenless hive in the hot beams of the midday sun as gaily as around the living hives; from a distance it smells of honey like the others, and bees fly in and out in the same way. But one has only to observe that hive to realize that there is no longer any life in it. The bees do not fly in the same way, the smell and the sound that meet the beekeeper are not the same. To the beekeeper's tap on the wall of the sick hive, instead of the former instant unanimous humming of tens of thousands of bees with their abdomens threateningly compressed, and producing by the rapid vibration of their wings an aerial living sound, the only reply is a disconnected buzzing from different parts of the deserted hive. From the alighting board, instead of the former spirituous fragrant smell of honey and venom, and the warm whiffs of crowded life, comes an odor of emptiness and decay mingling with the smell of honey. There are no longer sentinels sounding the alarm with their abdomens raised, and ready to die in defense of the hive. There is no longer the measured quiet sound of throbbing activity, like the sound of boiling water, but diverse discordant sounds of disorder. In and out of the hive long black robber bees smeared with honey fly timidly and shiftily. They do not sting, but crawl away from danger. Formerly only bees laden with honey flew into the hive, and they flew out empty; now they fly out laden. The beekeeper opens the lower part of the hive and peers in. Instead of black, glossy bees--tamed by toil, clinging to one another's legs and drawing out the wax, with a ceaseless hum of labor- that used to hang in long clusters down to the floor of the hive, drowsy shriveled bees crawl about separately in various directions on the floor and walls of the hive. Instead of a neatly glued floor, swept by the bees with the fanning of their wings, there is a floor littered with bits of wax, excrement, dying bees scarcely moving their legs, and dead ones that have not been cleared away. The beekeeper opens the upper part of the hive and examines the super. Instead of serried rows of bees sealing up every gap in the combs and keeping the brood warm, he sees the skillful complex structures of the combs, but no longer in their former state of purity. All is neglected and foul. Black robber bees are swiftly and stealthily prowling about the combs, and the short home bees, shriveled and listless as if they were old, creep slowly about without trying to hinder the robbers, having lost all motive and all sense of life. Drones, bumblebees, wasps, and butterflies knock awkwardly against the walls of the hive in their flight. Here and there among the cells containing dead brood and honey an angry buzzing can sometimes be heard. Here and there a couple of bees, by force of habit and custom cleaning out the brood cells, with efforts beyond their strength laboriously drag away a dead bee or bumblebee without knowing why they do it. In another corner two old bees are languidly fighting, or cleaning themselves, or feeding one another, without themselves knowing whether they do it with friendly or hostile intent. In a third place a crowd of bees, crushing one another, attack some victim and fight and smother it, and the victim, enfeebled or killed, drops from above slowly and lightly as a feather, among the heap of corpses. The keeper opens the two center partitions to examine the brood cells. In place of the former close dark circles formed by thousands of bees sitting back to back and guarding the high mystery of generation, he sees hundreds of dull, listless, and sleepy shells of bees. They have almost all died unawares, sitting in the sanctuary they had guarded and which is now no more. They reek of decay and death. Only a few of them still move, rise, and feebly fly to settle on the enemy's hand, lacking the spirit to die stinging him; the rest are dead and fall as lightly as fish scales. The beekeeper closes the hive, chalks a mark on it, and when he has time tears out its contents and burns it clean. So in the same way Moscow was empty when Napoleon, weary, uneasy, and morose, paced up and down in front of the Kammer-Kollezski rampart, awaiting what to his mind was a necessary, if but formal, observance of the proprieties--a deputation. In various corners of Moscow there still remained a few people aimlessly moving about, following their old habits and hardly aware of what they were doing. When with due circumspection Napoleon was informed that Moscow was empty, he looked angrily at his informant, turned away, and silently continued to walk to and fro. "My carriage!" he said. He took his seat beside the aide-de-camp on duty and drove into the suburb. "Moscow deserted!" he said to himself. "What an incredible event!" He did not drive into the town, but put up at an inn in the Dorogomilov suburb. The coup de theatre had not come off. CHAPTER XXI The Russian troops were passing through Moscow from two o'clock at night till two in the afternoon and bore away with them the wounded and the last of the inhabitants who were leaving. The greatest crush during the movement of the troops took place at the Stone, Moskva, and Yauza bridges. While the troops, dividing into two parts when passing around the Kremlin, were thronging the Moskva and the Stone bridges, a great many soldiers, taking advantage of the stoppage and congestion, turned back from the bridges and slipped stealthily and silently past the church of Vasili the Beatified and under the Borovitski gate, back up the hill to the Red Square where some instinct told them they could easily take things not belonging to them. Crowds of the kind seen at cheap sales filled all the passages and alleys of the Bazaar. But there were no dealers with voices of ingratiating affability inviting customers to enter; there were no hawkers, nor the usual motley crowd of female purchasers--but only soldiers, in uniforms and overcoats though without muskets, entering the Bazaar empty-handed and silently making their way out through its passages with bundles. Tradesmen and their assistants (of whom there were but few) moved about among the soldiers quite bewildered. They unlocked their shops and locked them up again, and themselves carried goods away with the help their assistants. On the square in front of the Bazaar were drummers beating the muster call. But the roll of the drums did not make the looting soldiers run in the direction of the drum as formerly, but made them, on the contrary, run farther away. Among the soldiers in the shops and passages some men were to be seen in gray coats, with closely shaven heads. Two officers, one with a scarf over his uniform and mounted on a lean, dark-gray horse, the other in an overcoat and on foot, stood at the corner of Ilyinka Street, talking. A third officer galloped up to them. "The general orders them all to be driven out at once, without fail. This is outrageous! Half the men have dispersed." "Where are you off to?... Where?..." he shouted to three infantrymen without muskets who, holding up the skirts of their overcoats, were slipping past him into the Bazaar passage. "Stop, you rascals!" "But how are you going to stop them?" replied another officer. "There is no getting them together. The army should push on before the rest bolt, that's all!" "How can one push on? They are stuck there, wedged on the bridge, and don't move. Shouldn't we put a cordon round to prevent the rest from running away?" "Come, go in there and drive them out!" shouted the senior officer. The officer in the scarf dismounted, called up a drummer, and went with him into the arcade. Some soldiers started running away in a group. A shopkeeper with red pimples on his cheeks near the nose, and a calm, persistent, calculating expression on his plump face, hurriedly and ostentatiously approached the officer, swinging his arms. "Your honor!" said he. "Be so good as to protect us! We won't grudge trifles, you are welcome to anything--we shall be delighted! Pray!... I'll fetch a piece of cloth at once for such an honorable gentleman, or even two pieces with pleasure. For we feel how it is; but what's all this--sheer robbery! If you please, could not guards be placed if only to let us close the shop...." Several shopkeepers crowded round the officer. "Eh, what twaddle!" said one of them, a thin, stern-looking man. "When one's head is gone one doesn't weep for one's hair! Take what any of you like!" And flourishing his arm energetically he turned sideways to the officer. "It's all very well for you, Ivan Sidorych, to talk," said the first tradesman angrily. "Please step inside, your honor!" "Talk indeed!" cried the thin one. "In my three shops here I have a hundred thousand rubles' worth of goods. Can they be saved when the army has gone? Eh, what people! 'Against God's might our hands can't fight.'" "Come inside, your honor!" repeated the tradesman, bowing. The officer stood perplexed and his face showed indecision. "It's not my business!" he exclaimed, and strode on quickly down one of the passages. From one open shop came the sound of blows and vituperation, and just as the officer came up to it a man in a gray coat with a shaven head was flung out violently. This man, bent double, rushed past the tradesman and the officer. The officer pounced on the soldiers who were in the shops, but at that moment fearful screams reached them from the huge crowd on the Moskva bridge and the officer ran out into the square. "What is it? What is it?" he asked, but his comrade was already galloping off past Vasili the Beatified in the direction from which the screams came. The officer mounted his horse and rode after him. When he reached the bridge he saw two unlimbered guns, the infantry crossing the bridge, several overturned carts, and frightened and laughing faces among the troops. Beside the cannon a cart was standing to which two horses were harnessed. Four borzois with collars were pressing close to the wheels. The cart was loaded high, and at the very top, beside a child's chair with its legs in the air, sat a peasant woman uttering piercing and desperate shrieks. He was told by his fellow officers that the screams of the crowd and the shrieks of the woman were due to the fact that General Ermolov, coming up to the crowd and learning that soldiers were dispersing among the shops while crowds of civilians blocked the bridge, had ordered two guns to be unlimbered and made a show of firing at the bridge. The crowd, crushing one another, upsetting carts, and shouting and squeezing desperately, had cleared off the bridge and the troops were now moving forward. CHAPTER XXII Meanwhile, the city itself was deserted. There was hardly anyone in the streets. The gates and shops were all closed, only here and there round the taverns solitary shouts or drunken songs could be heard. Nobody drove through the streets and footsteps were rarely heard. The Povarskaya was quite still and deserted. The huge courtyard of the Rostovs' house was littered with wisps of hay and with dung from the horses, and not a soul was to be seen there. In the great drawing room of the house, which had been left with all it contained, were two people. They were the yard porter Ignat, and the page boy Mishka, Vasilich's grandson who had stayed in Moscow with his grandfather. Mishka had opened the clavichord and was strumming on it with one finger. The yard porter, his arms akimbo, stood smiling with satisfaction before the large mirror. "Isn't it fine, eh, Uncle Ignat?" said the boy, suddenly beginning to strike the keyboard with both hands. "Only fancy!" answered Ignat, surprised at the broadening grin on his face in the mirror. "Impudence! Impudence!" they heard behind them the voice of Mavra Kuzminichna who had entered silently. "How he's grinning, the fat mug! Is that what you're here for? Nothing's cleared away down there and Vasilich is worn out. Just you wait a bit!" Ignat left off smiling, adjusted his belt, and went out of the room with meekly downcast eyes. "Aunt, I did it gently," said the boy. "I'll give you something gently, you monkey you!" cried Mavra Kuzminichna, raising her arm threateningly. "Go and get the samovar to boil for your grandfather." Mavra Kuzminichna flicked the dust off the clavichord and closed it, and with a deep sigh left the drawing room and locked its main door. Going out into the yard she paused to consider where she should go next--to drink tea in the servants' wing with Vasilich, or into the storeroom to put away what still lay about. She heard the sound of quick footsteps in the quiet street. Someone stopped at the gate, and the latch rattled as someone tried to open it. Mavra Kuzminichna went to the gate. "Who do you want?" "The count--Count Ilya Andreevich Rostov." "And who are you?" "An officer, I have to see him," came the reply in a pleasant, well-bred Russian voice. Mavra Kuzminichna opened the gate and an officer of eighteen, with the round face of a Rostov, entered the yard. "They have gone away, sir. Went away yesterday at vespertime," said Mavra Kuzminichna cordially. The young officer standing in the gateway, as if hesitating whether to enter or not, clicked his tongue. "Ah, how annoying!" he muttered. "I should have come yesterday.... Ah, what a pity." Meanwhile, Mavra Kuzminichna was attentively and sympathetically examining the familiar Rostov features of the young man's face, his tattered coat and trodden-down boots. "What did you want to see the count for?" she asked. "Oh well... it can't be helped!" said he in a tone of vexation and placed his hand on the gate as if to leave. He again paused in indecision. "You see," he suddenly said, "I am a kinsman of the count's and he has been very kind to me. As you see" (he glanced with an amused air and good-natured smile at his coat and boots) "my things are worn out and I have no money, so I was going to ask the count..." Mavra Kuzminichna did not let him finish. "Just wait a minute, sir. One little moment," said she. And as soon as the officer let go of the gate handle she turned and, hurrying away on her old legs, went through the back yard to the servants' quarters. While Mavra Kuzminichna was running to her room the officer walked about the yard gazing at his worn-out boots with lowered head and a faint smile on his lips. "What a pity I've missed Uncle! What a nice old woman! Where has she run off to? And how am I to find the nearest way to overtake my regiment, which must by now be getting near the Rogozhski gate?" thought he. Just then Mavra Kuzminichna appeared from behind the corner of the house with a frightened yet resolute look, carrying a rolled-up check kerchief in her hand. While still a few steps from the officer she unfolded the kerchief and took out of it a white twenty-five-ruble assignat and hastily handed it to him. "If his excellency had been at home, as a kinsman he would of course... but as it is..." Mavra Kuzminichna grew abashed and confused. The officer did not decline, but took the note quietly and thanked her. "If the count had been at home..." Mavra Kuzminichna went on apologetically. "Christ be with you, sir! May God preserve you!" said she, bowing as she saw him out. Swaying his head and smiling as if amused at himself, the officer ran almost at a trot through the deserted streets toward the Yauza bridge to overtake his regiment. But Mavra Kuzminichna stood at the closed gate for some time with moist eyes, pensively swaying her head and feeling an unexpected flow of motherly tenderness and pity for the unknown young officer. CHAPTER XXIII From an unfinished house on the Varvarka, the ground floor of which was a dramshop, came drunken shouts and songs. On benches round the tables in a dirty little room sat some ten factory hands. Tipsy and perspiring, with dim eyes and wide-open mouths, they were all laboriously singing some song or other. They were singing discordantly, arduously, and with great effort, evidently not because they wished to sing, but because they wanted to show they were drunk and on a spree. One, a tall, fair-haired lad in a clean blue coat, was standing over the others. His face with its fine straight nose would have been handsome had it not been for his thin, compressed, twitching lips and dull, gloomy, fixed eyes. Evidently possessed by some idea, he stood over those who were singing, and solemnly and jerkily flourished above their heads his white arm with the sleeve turned up to the elbow, trying unnaturally to spread out his dirty fingers. The sleeve of his coat kept slipping down and he always carefully rolled it up again with his left hand, as if it were most important that the sinewy white arm he was flourishing should be bare. In the midst of the song cries were heard, and fighting and blows in the passage and porch. The tall lad waved his arm. "Stop it!" he exclaimed peremptorily. "There's a fight, lads!" And, still rolling up his sleeve, he went out to the porch. The factory hands followed him. These men, who under the leadership of the tall lad were drinking in the dramshop that morning, had brought the publican some skins from the factory and for this had had drink served them. The blacksmiths from a neighboring smithy, hearing the sounds of revelry in the tavern and supposing it to have been broken into, wished to force their way in too and a fight in the porch had resulted. The publican was fighting one of the smiths at the door, and when the workmen came out the smith, wrenching himself free from the tavern keeper, fell face downward on the pavement. Another smith tried to enter the doorway, pressing against the publican with his chest. The lad with the turned-up sleeve gave the smith a blow in the face and cried wildly: "They're fighting us, lads!" At that moment the first smith got up and, scratching his bruised face to make it bleed, shouted in a tearful voice: "Police! Murder!... They've killed a man, lads!" "Oh, gracious me, a man beaten to death--killed!..." screamed a woman coming out of a gate close by. A crowd gathered round the bloodstained smith. "Haven't you robbed people enough--taking their last shirts?" said a voice addressing the publican. "What have you killed a man for, you thief?" The tall lad, standing in the porch, turned his bleared eyes from the publican to the smith and back again as if considering whom he ought to fight now. "Murderer!" he shouted suddenly to the publican. "Bind him, lads!" "I daresay you would like to bind me!" shouted the publican, pushing away the men advancing on him, and snatching his cap from his head he flung it on the ground. As if this action had some mysterious and menacing significance, the workmen surrounding the publican paused in indecision. "I know the law very well, mates! I'll take the matter to the captain of police. You think I won't get to him? Robbery is not permitted to anybody now a days!" shouted the publican, picking up his cap. "Come along then! Come along then!" the publican and the tall young fellow repeated one after the other, and they moved up the street together. The bloodstained smith went beside them. The factory hands and others followed behind, talking and shouting. At the corner of the Moroseyka, opposite a large house with closed shutters and bearing a bootmaker's signboard, stood a score of thin, worn-out, gloomy-faced bootmakers, wearing overalls and long tattered coats. "He should pay folks off properly," a thin workingman, with frowning brows and a straggly beard, was saying. "But he's sucked our blood and now he thinks he's quit of us. He's been misleading us all the week and now that he's brought us to this pass he's made off." On seeing the crowd and the bloodstained man the workman ceased speaking, and with eager curiosity all the bootmakers joined the moving crowd. "Where are all the folks going?" "Why, to the police, of course!" "I say, is it true that we have been beaten?" "And what did you think? Look what folks are saying." Questions and answers were heard. The publican, taking advantage of the increased crowd, dropped behind and returned to his tavern. The tall youth, not noticing the disappearance of his foe, waved his bare arm and went on talking incessantly, attracting general attention to himself. It was around him that the people chiefly crowded, expecting answers from him to the questions that occupied all their minds. "He must keep order, keep the law, that's what the government is there for. Am I not right, good Christians?" said the tall youth, with a scarcely perceptible smile. "He thinks there's no government! How can one do without government? Or else there would be plenty who'd rob us." "Why talk nonsense?" rejoined voices in the crowd. "Will they give up Moscow like this? They told you that for fun, and you believed it! Aren't there plenty of troops on the march? Let him in, indeed! That's what the government is for. You'd better listen to what people are saying," said some of the mob pointing to the tall youth. By the wall of China-Town a smaller group of people were gathered round a man in a frieze coat who held a paper in his hand. "An ukase, they are reading an ukase! Reading an ukase!" cried voices in the crowd, and the people rushed toward the reader. The man in the frieze coat was reading the broadsheet of August 31 When the crowd collected round him he seemed confused, but at the demand of the tall lad who had pushed his way up to him, he began in a rather tremulous voice to read the sheet from the beginning. "Early tomorrow I shall go to his Serene Highness," he read ("Sirin Highness," said the tall fellow with a triumphant smile on his lips and a frown on his brow), "to consult with him to act, and to aid the army to exterminate these scoundrels. We too will take part..." the reader went on, and then paused ("Do you see," shouted the youth victoriously, "he's going to clear up the whole affair for you...."), "in destroying them, and will send these visitors to the devil. I will come back to dinner, and we'll set to work. We will do, completely do, and undo these scoundrels." The last words were read out in the midst of complete silence. The tall lad hung his head gloomily. It was evident that no one had understood the last part. In particular, the words "I will come back to dinner," evidently displeased both reader and audience. The people's minds were tuned to a high pitch and this was too simple and needlessly comprehensible--it was what any one of them might have said and therefore was what an ukase emanating from the highest authority should not say. They all stood despondent and silent. The tall youth moved his lips and swayed from side to side. "We should ask him... that's he himself?"... "Yes, ask him indeed!... Why not? He'll explain"... voices in the rear of the crowd were suddenly heard saying, and the general attention turned to the police superintendent's trap which drove into the square attended by two mounted dragoons. The superintendent of police, who had that morning by Count Rostopchin's orders to burn the barges and had in connection with that matter acquired a large sum of money which was at that moment in his pocket, on seeing a crowd bearing down upon him told his coachman to stop. "What people are these?" he shouted to the men, who were moving singly and timidly in the direction of his trap. "What people are these?" he shouted again, receiving no answer. "Your honor..." replied the shopman in the frieze coat, "your honor, in accord with the proclamation of his highest excellency the count, they desire to serve, not sparing their lives, and it is not any kind of riot, but as his highest excellence said..." "The count has not left, he is here, and an order will be issued concerning you," said the superintendent of police. "Go on!" he ordered his coachman. The crowd halted, pressing around those who had heard what the superintendent had said, and looking at the departing trap. The superintendent of police turned round at that moment with a scared look, said something to his coachman, and his horses increased their speed. "It's a fraud, lads! Lead the way to him, himself!" shouted the tall youth. "Don't let him go, lads! Let him answer us! Keep him!" shouted different people and the people dashed in pursuit of the trap. Following the superintendent of police and talking loudly the crowd went in the direction of the Lubyanka Street. "There now, the gentry and merchants have gone away and left us to perish. Do they think we're dogs?" voices in the crowd were heard saying more and more frequently. CHAPTER XXIV On the evening of the first of September, after his interview with Kutuzov, Count Rostopchin had returned to Moscow mortified and offended because he had not been invited to attend the council of war, and because Kutuzov had paid no attention to his offer to take part in the defense of the city; amazed also at the novel outlook revealed to him at the camp, which treated the tranquillity of the capital and its patriotic fervor as not merely secondary but quite irrelevant and unimportant matters. Distressed, offended, and surprised by all this, Rostopchin had returned to Moscow. After supper he lay down on a sofa without undressing, and was awakened soon after midnight by a courier bringing him a letter from Kutuzov. This letter requested the count to send police officers to guide the troops through the town, as the army was retreating to the Ryazan road beyond Moscow. This was not news to Rostopchin. He had known that Moscow would be abandoned not merely since his interview the previous day with Kutuzov on the Poklonny Hill but ever since the battle of Borodino, for all the generals who came to Moscow after that battle had said unanimously that it was impossible to fight another battle, and since then the government property had been removed every night, and half the inhabitants had left the city with Rostopchin's own permission. Yet all the same this information astonished and irritated the count, coming as it did in the form of a simple note with an order from Kutuzov, and received at night, breaking in on his beauty sleep. When later on in his memoirs Count Rostopchin explained his actions at this time, he repeatedly says that he was then actuated by two important considerations: to maintain tranquillity in Moscow and expedite the departure of the inhabitants. If one accepts this twofold aim all Rostopchin's actions appear irreproachable. "Why were the holy relics, the arms, ammunition, gunpowder, and stores of corn not removed? Why were thousands of inhabitants deceived into believing that Moscow would not be given up--and thereby ruined?" "To presence the tranquillity of the city," explains Count Rostopchin. "Why were bundles of useless papers from the government offices, and Leppich's balloon and other articles removed?" "To leave the town empty," explains Count Rostopchin. One need only admit that public tranquillity is in danger and any action finds a justification. All the horrors of the reign of terror were based only on solicitude for public tranquillity. On what, then, was Count Rostopchin's fear for the tranquillity of Moscow based in 1812? What reason was there for assuming any probability of an uprising in the city? The inhabitants were leaving it and the retreating troops were filling it. Why should that cause the masses to riot? Neither in Moscow nor anywhere in Russia did anything resembling an insurrection ever occur when the enemy entered a town. More than ten thousand people were still in Moscow on the first and second of September, and except for a mob in the governor's courtyard, assembled there at his bidding, nothing happened. It is obvious that there would have been even less reason to expect a disturbance among the people if after the battle of Borodino, when the surrender of Moscow became certain or at least probable, Rostopchin instead of exciting the people by distributing arms and broadsheets had taken steps to remove all the holy relics, the gunpowder, munitions, and money, and had told the population plainly that the town would be abandoned. Rostopchin, though he had patriotic sentiments, was a sanguine and impulsive man who had always moved in the highest administrative circles and had no understanding at all of the people he supposed himself to be guiding. Ever since the enemy's entry into Smolensk he had in imagination been playing the role of director of the popular feeling of "the heart of Russia." Not only did it seem to him (as to all administrators) that he controlled the external actions of Moscow's inhabitants, but he also thought he controlled their mental attitude by means of his broadsheets and posters, written in a coarse tone which the people despise in their own class and do not understand from those in authority. Rostopchin was so pleased with the fine role of leader of popular feeling, and had grown so used to it, that the necessity of relinquishing that role and abandoning Moscow without any heroic display took him unawares and he suddenly felt the ground slip away from under his feet, so that he positively did not know what to do. Though he knew it was coming, he did not till the last moment wholeheartedly believe that Moscow would be abandoned, and did not prepare for it. The inhabitants left against his wishes. If the government offices were removed, this was only done on the demand of officials to whom the count yielded reluctantly. He was absorbed in the role he had created for himself. As is often the case with those gifted with an ardent imagination, though he had long known that Moscow would be abandoned he knew it only with his intellect, he did not believe it in his heart and did not adapt himself mentally to this new position of affairs. All his painstaking and energetic activity (in how far it was useful and had any effect on the people is another question) had been simply directed toward arousing in the masses his own feeling of patriotic hatred of the French. But when events assumed their true historical character, when expressing hatred for the French in words proved insufficient, when it was not even possible to express that hatred by fighting a battle, when self-confidence was of no avail in relation to the one question before Moscow, when the whole population streamed out of Moscow as one man, abandoning their belongings and proving by that negative action all the depth of their national feeling, then the role chosen by Rostopchin suddenly appeared senseless. He unexpectedly felt himself ridiculous, weak, and alone, with no ground to stand on. When, awakened from his sleep, he received that cold, peremptory note from Kutuzov, he felt the more irritated the more he felt himself to blame. All that he had been specially put in charge of, the state property which he should have removed, was still in Moscow and it was no longer possible to take the whole of it away. "Who is to blame for it? Who has let things come to such a pass?" he ruminated. "Not I, of course. I had everything ready. I had Moscow firmly in hand. And this is what they have let it come to! Villains! Traitors!" he thought, without clearly defining who the villains and traitors were, but feeling it necessary to hate those traitors whoever they might be who were to blame for the false and ridiculous position in which he found himself. All that night Count Rostopchin issued orders, for which people came to him from all parts of Moscow. Those about him had never seen the count so morose and irritable. "Your excellency, the Director of the Registrar's Department has sent for instructions... From the Consistory, from the Senate, from the University, from the Foundling Hospital, the Suffragan has sent... asking for information.... What are your orders about the Fire Brigade? From the governor of the prison... from the superintendent of the lunatic asylum..." All night long such announcements were continually being received by the count. To all these inquiries he gave brief and angry replies indicating that orders from him were not now needed, that the whole affair, carefully prepared by him, had now been ruined by somebody, and that that somebody would have to bear the whole responsibility for all that might happen. "Oh, tell that blockhead," he said in reply to the question from the Registrar's Department, "that he should remain to guard his documents. Now why are you asking silly questions about the Fire Brigade? They have horses, let them be off to Vladimir, and not leave them to the French." "Your excellency, the superintendent of the lunatic asylum has come: what are your commands?" "My commands? Let them go away, that's all.... And let the lunatics out into the town. When lunatics command our armies God evidently means these other madmen to be free." In reply to an inquiry about the convicts in the prison, Count Rostopchin shouted angrily at the governor: "Do you expect me to give you two battalions--which we have not got- for a convoy? Release them, that's all about it!" "Your excellency, there are some political prisoners, Meshkov, Vereshchagin..." "Vereshchagin! Hasn't he been hanged yet?" shouted Rostopchin. "Bring him to me!" CHAPTER XXV Toward nine o'clock in the morning, when the troops were already moving through Moscow, nobody came to the count any more for instructions. Those who were able to get away were going of their own accord, those who remained behind decided for themselves what they must do. The count ordered his carriage that he might drive to Sokolniki, and sat in his study with folded hands, morose, sallow, and taciturn. In quiet and untroubled times it seems to every administrator that it is only by his efforts that the whole population under his rule is kept going, and in this consciousness of being indispensable every administrator finds the chief reward of his labor and efforts. While the sea of history remains calm the ruler-administrator in his frail bark, holding on with a boat hook to the ship of the people and himself moving, naturally imagines that his efforts move the ship he is holding on to. But as soon as a storm arises and the sea begins to heave and the ship to move, such a delusion is no longer possible. The ship moves independently with its own enormous motion, the boat hook no longer reaches the moving vessel, and suddenly the administrator, instead of appearing a ruler and a source of power, becomes an insignificant, useless, feeble man. Rostopchin felt this, and it was this which exasperated him. The superintendent of police, whom the crowd had stopped, went in to see him at the same time as an adjutant who informed the count that the horses were harnessed. They were both pale, and the superintendent of police, after reporting that he had executed the instructions he had received, informed the count that an immense crowd had collected in the courtyard and wished to see him. Without saying a word Rostopchin rose and walked hastily to his light, luxurious drawing room, went to the balcony door, took hold of the handle, let it go again, and went to the window from which he had a better view of the whole crowd. The tall lad was standing in front, flourishing his arm and saying something with a stern look. The blood stained smith stood beside him with a gloomy face. A drone of voices was audible through the closed window. "Is my carriage ready?" asked Rostopchin, stepping back from the window. "It is, your excellency," replied the adjutant. Rostopchin went again to the balcony door. "But what do they want?" he asked the superintendent of police. "Your excellency, they say they have got ready, according to your orders, to go against the French, and they shouted something about treachery. But it is a turbulent crowd, your excellency--I hardly managed to get away from it. Your excellency, I venture to suggest..." "You may go. I don't need you to tell me what to do!" exclaimed Rostopchin angrily. He stood by the balcony door looking at the crowd. "This is what they have done with Russia! This is what they have done with me!" thought he, full of an irrepressible fury that welled up within him against the someone to whom what was happening might be attributed. As often happens with passionate people, he was mastered by anger but was still seeking an object on which to vent it. "Here is that mob, the dregs of the people," he thought as he gazed at the crowd: "this rabble they have roused by their folly! They want a victim," he thought as he looked at the tall lad flourishing his arm. And this thought occurred to him just because he himself desired a victim, something on which to vent his rage. "Is the carriage ready?" he asked again. "Yes, your excellency. What are your orders about Vereshchagin? He is waiting at the porch," said the adjutant. "Ah!" exclaimed Rostopchin, as if struck by an unexpected recollection. And rapidly opening the door he went resolutely out onto the balcony. The talking instantly ceased, hats and caps were doffed, and all eyes were raised to the count. "Good morning, lads!" said the count briskly and loudly. "Thank you for coming. I'll come out to you in a moment, but we must first settle with the villain. We must punish the villain who has caused the ruin of Moscow. Wait for me!" And the count stepped as briskly back into the room and slammed the door behind him. A murmur of approbation and satisfaction ran through the crowd. "He'll settle with all the villains, you'll see! And you said the French... He'll show you what law is!" the mob were saying as if reproving one another for their lack of confidence. A few minutes later an officer came hurriedly out of the front door, gave an order, and the dragoons formed up in line. The crowd moved eagerly from the balcony toward the porch. Rostopchin, coming out there with quick angry steps, looked hastily around as if seeking someone. "Where is he?" he inquired. And as he spoke he saw a young man coming round the corner of the house between two dragoons. He had a long thin neck, and his head, that had been half shaved, was again covered by short hair. This young man was dressed in a threadbare blue cloth coat lined with fox fur, that had once been smart, and dirty hempen convict trousers, over which were pulled his thin, dirty, trodden-down boots. On his thin, weak legs were heavy chains which hampered his irresolute movements. "Ah!" said Rostopchin, hurriedly turning away his eyes from the young man in the fur-lined coat and pointing to the bottom step of the porch. "Put him there." The young man in his clattering chains stepped clumsily to the spot indicated, holding away with one finger the coat collar which chafed his neck, turned his long neck twice this way and that, sighed, and submissively folded before him his thin hands, unused to work. For several seconds while the young man was taking his place on the step the silence continued. Only among the back rows of the people, who were all pressing toward the one spot, could sighs, groans, and the shuffling of feet be heard. While waiting for the young man to take his place on the step Rostopchin stood frowning and rubbing his face with his hand. "Lads!" said he, with a metallic ring in his voice. "This man, Vereshchagin, is the scoundrel by whose doing Moscow is perishing." The young man in the fur-lined coat, stooping a little, stood in a submissive attitude, his fingers clasped before him. His emaciated young face, disfigured by the half-shaven head, hung down hopelessly. At the count's first words he raised it slowly and looked up at him as if wishing to say something or at least to meet his eye. But Rostopchin did not look at him. A vein in the young man's long thin neck swelled like a cord and went blue behind the ear, and suddenly his face flushed. All eyes were fixed on him. He looked at the crowd, and rendered more hopeful by the expression he read on the faces there, he smiled sadly and timidly, and lowering his head shifted his feet on the step. "He has betrayed his Tsar and his country, he had gone over to Bonaparte. He alone of all the Russians has disgraced the Russian name, he has caused Moscow to perish," said Rostopchin in a sharp, even voice, but suddenly he glanced down at Vereshchagin who continued to stand in the same submissive attitude. As if inflamed by the sight, he raised his arm and addressed the people, almost shouting: "Deal with him as you think fit! I hand him over to you." The crowd remained silent and only pressed closer and closer to one another. To keep one another back, to breathe in that stifling atmosphere, to be unable to stir, and to await something unknown, uncomprehended, and terrible, was becoming unbearable. Those standing in front, who had seen and heard what had taken place before them, all stood with wide open eyes and mouths, straining with all their strength, and held back the crowd that was pushing behind them. "Beat him!... Let the traitor perish and not disgrace the Russian name!" shouted Rostopchin. "Cut him down. I command it." Hearing not so much the words as the angry tone of Rostopchin's voice, the crowd moaned and heaved forward, but again paused. "Count!" exclaimed the timid yet theatrical voice of Vereshchagin in the midst of the momentary silence that ensued, "Count! One God is above us both...." He lifted his head and again the thick vein in his thin neck filled with blood and the color rapidly came and went in his face. He did not finish what he wished to say. "Cut him down! I command it..." shouted Rostopchin, suddenly growing pale like Vereshchagin. "Draw sabers!" cried the dragoon officer, drawing his own. Another still stronger wave flowed through the crowd and reaching the front ranks carried it swaying to the very steps of the porch. The tall youth, with a stony look on his face, and rigid and uplifted arm, stood beside Vereshchagin. "Saber him!" the dragoon officer almost whispered. And one of the soldiers, his face all at once distorted with fury, struck Vereshchagin on the head with the blunt side of his saber. "Ah!" cried Vereshchagin in meek surprise, looking round with a frightened glance as if not understanding why this was done to him. A similar moan of surprise and horror ran through the crowd. "O Lord!" exclaimed a sorrowful voice. But after the exclamation of surprise that had escaped from Vereshchagin he uttered a plaintive cry of pain, and that cry was fatal. The barrier of human feeling, strained to the utmost, that had held the crowd in check suddenly broke. The crime had begun and must now be completed. The plaintive moan of reproach was drowned by the threatening and angry roar of the crowd. Like the seventh and last wave that shatters a ship, that last irresistible wave burst from the rear and reached the front ranks, carrying them off their feet and engulfing them all. The dragoon was about to repeat his blow. Vereshchagin with a cry of horror, covering his head with his hands, rushed toward the crowd. The tall youth, against whom he stumbled, seized his thin neck with his hands and, yelling wildly, fell with him under the feet of the pressing, struggling crowd. Some beat and tore at Vereshchagin, others at the tall youth. And the screams of those that were being trampled on and of those who tried to rescue the tall lad only increased the fury of the crowd. It was a long time before the dragoons could extricate the bleeding youth, beaten almost to death. And for a long time, despite the feverish haste with which the mob tried to end the work that had been begun, those who were hitting, throttling, and tearing at Vereshchagin were unable to kill him, for the crowd pressed from all sides, swaying as one mass with them in the center and rendering it impossible for them either to kill him or let him go. "Hit him with an ax, eh!... Crushed?... Traitor, he sold Christ.... Still alive... tenacious... serves him right! Torture serves a thief right. Use the hatchet!... What--still alive?" Only when the victim ceased to struggle and his cries changed to a long-drawn, measured death rattle did the crowd around his prostrate, bleeding corpse begin rapidly to change places. Each one came up, glanced at what had been done, and with horror, reproach, and astonishment pushed back again. "O Lord! The people are like wild beasts! How could he be alive?" voices in the crowd could be heard saying. "Quite a young fellow too... must have been a merchant's son. What men!... and they say he's not the right one.... How not the right one?... O Lord! And there's another has been beaten too--they say he's nearly done for.... Oh, the people... Aren't they afraid of sinning?..." said the same mob now, looking with pained distress at the dead body with its long, thin, half-severed neck and its livid face stained with blood and dust. A painstaking police officer, considering the presence of a corpse in his excellency's courtyard unseemly, told the dragoons to take it away. Two dragoons took it by its distorted legs and dragged it along the ground. The gory, dust-stained, half-shaven head with its long neck trailed twisting along the ground. The crowd shrank back from it. At the moment when Vereshchagin fell and the crowd closed in with savage yells and swayed about him, Rostopchin suddenly turned pale and, instead of going to the back entrance where his carriage awaited him, went with hurried steps and bent head, not knowing where and why, along the passage leading to the rooms on the ground floor. The count's face was white and he could not control the feverish twitching of his lower jaw. "This way, your excellency... Where are you going?... This way, please..." said a trembling, frightened voice behind him. Count Rostopchin was unable to reply and, turning obediently, went in the direction indicated. At the back entrance stood his caleche. The distant roar of the yelling crowd was audible even there. He hastily took his seat and told the coachman to drive him to his country house in Sokolniki. When they reached the Myasnitski Street and could no longer hear the shouts of the mob, the count began to repent. He remembered with dissatisfaction the agitation and fear he had betrayed before his subordinates. "The mob is terrible--disgusting," he said to himself in French. "They are like wolves whom nothing but flesh can appease." "Count! One God is above us both!"--Vereshchagin's words suddenly recurred to him, and a disagreeable shiver ran down his back. But this was only a momentary feeling and Count Rostopchin smiled disdainfully at himself. "I had other duties," thought he. "The people had to be appeased. Many other victims have perished and are perishing for the public good"--and he began thinking of his social duties to his family and to the city entrusted to him, and of himself--not himself as Theodore Vasilyevich Rostopchin (he fancied that Theodore Vasilyevich Rostopchin was sacrificing himself for the public good) but himself as governor, the representative of authority and of the Tsar. "Had I been simply Theodore Vasilyevich my course of action would have been quite different, but it was my duty to safeguard my life and dignity as commander in chief." Lightly swaying on the flexible springs of his carriage and no longer hearing the terrible sounds of the crowd, Rostopchin grew physically calm and, as always happens, as soon as he became physically tranquil his mind devised reasons why he should be mentally tranquil too. The thought which tranquillized Rostopchin was not a new one. Since the world began and men have killed one another no one has ever committed such a crime against his fellow man without comforting himself with this same idea. This idea is le bien public, the hypothetical welfare of other people. To a man not swayed by passion that welfare is never certain, but he who commits such a crime always knows just where that welfare lies. And Rostopchin now knew it. Not only did his reason not reproach him for what he had done, but he even found cause for self-satisfaction in having so successfully contrived to avail himself of a convenient opportunity to punish a criminal and at the same time pacify the mob. "Vereshchagin was tried and condemned to death," thought Rostopchin (though the Senate had only condemned Vereshchagin to hard labor), "he was a traitor and a spy. I could not let him go unpunished and so I have killed two birds with one stone: to appease the mob I gave them a victim and at the same time punished a miscreant." Having reached his country house and begun to give orders about domestic arrangements, the count grew quite tranquil. Half an hour later he was driving with his fast horses across the Sokolniki field, no longer thinking of what had occurred but considering what was to come. He was driving to the Yauza bridge where he had heard that Kutuzov was. Count Rostopchin was mentally preparing the angry and stinging reproaches he meant to address to Kutuzov for his deception. He would make that foxy old courtier feel that the responsibility for all the calamities that would follow the abandonment of the city and the ruin of Russia (as Rostopchin regarded it) would fall upon his doting old head. Planning beforehand what he would say to Kutuzov, Rostopchin turned angrily in his caleche and gazed sternly from side to side. The Sokolniki field was deserted. Only at the end of it, in front of the almshouse and the lunatic asylum, could be seen some people in white and others like them walking singly across the field shouting and gesticulating. One of these was running to cross the path of Count Rostopchin's carriage, and the count himself, his coachman, and his dragoons looked with vague horror and curiosity at these released lunatics and especially at the one running toward them. Swaying from side to side on his long, thin legs in his fluttering dressing gown, this lunatic was running impetuously, his gaze fixed on Rostopchin, shouting something in a hoarse voice and making signs to him to stop. The lunatic's solemn, gloomy face was thin and yellow, with its beard growing in uneven tufts. His black, agate pupils with saffron-yellow whites moved restlessly near the lower eyelids. "Stop! Pull up, I tell you!" he cried in a piercing voice, and again shouted something breathlessly with emphatic intonations and gestures. Coming abreast of the caleche he ran beside it. "Thrice have they slain me, thrice have I risen from the dead. They stoned me, crucified me... I shall rise... shall rise... shall rise. They have torn my body. The kingdom of God will be overthrown... Thrice will I overthrow it and thrice re-establish it!" he cried, raising his voice higher and higher. Count Rostopchin suddenly grew pale as he had done when the crowd closed in on Vereshchagin. He turned away. "Go fas... faster!" he cried in a trembling voice to his coachman. The caleche flew over the ground as fast as the horses could draw it, but for a long time Count Rostopchin still heard the insane despairing screams growing fainter in the distance, while his eyes saw nothing but the astonished, frightened, bloodstained face of "the traitor" in the fur-lined coat. Recent as that mental picture was, Rostopchin already felt that it had cut deep into his heart and drawn blood. Even now he felt clearly that the gory trace of that recollection would not pass with time, but that the terrible memory would, on the contrary, dwell in his heart ever more cruelly and painfully to the end of his life. He seemed still to hear the sound of his own words: "Cut him down! I command it...." "Why did I utter those words? It was by some accident I said them.... I need not have said them," he thought. "And then nothing would have happened." He saw the frightened and then infuriated face of the dragoon who dealt the blow, the look of silent, timid reproach that boy in the fur-lined coat had turned upon him. "But I did not do it for my own sake. I was bound to act that way.... The mob, the traitor... the public welfare," thought he. Troops were still crowding at the Yauza bridge. It was hot. Kutuzov, dejected and frowning, sat on a bench by the bridge toying with his whip in the sand when a caleche dashed up noisily. A man in a general's uniform with plumes in his hat went up to Kutuzov and said something in French. It was Count Rostopchin. He told Kutuzov that he had come because Moscow, the capital, was no more and only the army remained. "Things would have been different if your Serene Highness had not told me that you would not abandon Moscow without another battle; all this would not have happened," he said. Kutuzov looked at Rostopchin as if, not grasping what was said to him, he was trying to read something peculiar written at that moment on the face of the man addressing him. Rostopchin grew confused and became silent. Kutuzov slightly shook his head and not taking his penetrating gaze from Rostopchin's face muttered softly: "No! I shall not give up Moscow without a battle!" Whether Kutuzov was thinking of something entirely different when he spoke those words, or uttered them purposely, knowing them to be meaningless, at any rate Rostopchin made no reply and hastily left him. And strange to say, the Governor of Moscow, the proud Count Rostopchin, took up a Cossack whip and went to the bridge where he began with shouts to drive on the carts that blocked the way. CHAPTER XXVI Toward four o'clock in the afternoon Murat's troops were entering Moscow. In front rode a detachment of Wurttemberg hussars and behind them rode the King of Naples himself accompanied by a numerous suite. About the middle of the Arbat Street, near the Church of the Miraculous Icon of St. Nicholas, Murat halted to await news from the advanced detachment as to the condition in which they had found the citadel, le Kremlin. Around Murat gathered a group of those who had remained in Moscow. They all stared in timid bewilderment at the strange, long-haired commander dressed up in feathers and gold. "Is that their Tsar himself? He's not bad!" low voices could be heard saying. An interpreter rode up to the group. "Take off your cap... your caps!" These words went from one to another in the crowd. The interpreter addressed an old porter and asked if it was far to the Kremlin. The porter, listening in perplexity to the unfamiliar Polish accent and not realizing that the interpreter was speaking Russian, did not understand what was being said to him and slipped behind the others. Murat approached the interpreter and told him to ask where the Russian army was. One of the Russians understood what was asked and several voices at once began answering the interpreter. A French officer, returning from the advanced detachment, rode up to Murat and reported that the gates of the citadel had been barricaded and that there was probably an ambuscade there. "Good!" said Murat and, turning to one of the gentlemen in his suite, ordered four light guns to be moved forward to fire at the gates. The guns emerged at a trot from the column following Murat and advanced up the Arbat. When they reached the end of the Vozdvizhenka Street they halted and drew in the Square. Several French officers superintended the placing of the guns and looked at the Kremlin through field glasses. The bells in the Kremlin were ringing for vespers, and this sound troubled the French. They imagined it to be a call to arms. A few infantrymen ran to the Kutafyev Gate. Beams and wooden screens had been put there, and two musket shots rang out from under the gate as soon as an officer and men began to run toward it. A general who was standing by the guns shouted some words of command to the officer, and the latter ran back again with his men. The sound of three more shots came from the gate. One shot struck a French soldier's foot, and from behind the screens came the strange sound of a few voices shouting. Instantly as at a word of command the expression of cheerful serenity on the faces of the French general, officers, and men changed to one of determined concentrated readiness for strife and suffering. To all of them from the marshal to the least soldier, that place was not the Vozdvizhenka, Mokhavaya, or Kutafyev Street, nor the Troitsa Gate (places familiar in Moscow), but a new battlefield which would probably prove sanguinary. And all made ready for that battle. The cries from the gates ceased. The guns were advanced, the artillerymen blew the ash off their linstocks, and an officer gave the word "Fire!" This was followed by two whistling sounds of canister shot, one after another. The shot rattled against the stone of the gate and upon the wooden beams and screens, and two wavering clouds of smoke rose over the Square. A few instants after the echo of the reports resounding over the stone-built Kremlin had died away the French heard a strange sound above their head. Thousands of crows rose above the walls and circled in the air, cawing and noisily flapping their wings. Together with that sound came a solitary human cry from the gateway and amid the smoke appeared the figure of a bareheaded man in a peasant's coat. He grasped a musket and took aim at the French. "Fire!" repeated the officer once more, and the reports of a musket and of two cannon shots were heard simultaneously. The gate again hidden by smoke. Nothing more stirred behind the screens and the French infantry soldiers and officers advanced to the gate. In the gateway lay three wounded and four dead. Two men in peasant coats ran away at the foot of the wall, toward the Znamenka. "Clear that away!" said the officer, pointing to the beams and the corpses, and the French soldiers, after dispatching the wounded, threw the corpses over the parapet. Who these men were nobody knew. "Clear that away!" was all that was said of them, and they were thrown over the parapet and removed later on that they might not stink. Thiers alone dedicates a few eloquent lines to their memory: "These wretches had occupied the sacred citadel, having supplied themselves with guns from the arsenal, and fired" (the wretches) "at the French. Some of them were sabered and the Kremlin was purged of their presence." Murat was informed that the way had been cleared. The French entered the gates and began pitching their camp in the Senate Square. Out of the windows of the Senate House the soldiers threw chairs into the Square for fuel and kindled fires there. Other detachments passed through the Kremlin and encamped along the Moroseyka, the Lubyanka, and Pokrovka Streets. Others quartered themselves along the Vozdvizhenka, the Nikolski, and the Tverskoy Streets. No masters of the houses being found anywhere, the French were not billeted on the inhabitants as is usual in towns but lived in it as in a camp. Though tattered, hungry, worn out, and reduced to a third of their original number, the French entered Moscow in good marching order. It was a weary and famished, but still a fighting and menacing army. But it remained an army only until its soldiers had dispersed into their different lodgings. As soon as the men of the various regiments began to disperse among the wealthy and deserted houses, the army was lost forever and there came into being something nondescript, neither citizens nor soldiers but what are known as marauders. When five weeks later these same men left Moscow, they no longer formed an army. They were a mob of marauders, each carrying a quantity of articles which seemed to him valuable or useful. The aim of each man when he left Moscow was no longer, as it had been, to conquer, but merely to keep what he had acquired. Like a monkey which puts its paw into the narrow neck of a jug, and having seized a handful of nuts will not open its fist for fear of losing what it holds, and therefore perishes, the French when they left Moscow had inevitably to perish because they carried their loot with them, yet to abandon what they had stolen was as impossible for them as it is for the monkey to open its paw and let go of its nuts. Ten minutes after each regiment had entered a Moscow district, not a soldier or officer was left. Men in military uniforms and Hessian boots could be seen through the windows, laughing and walking through the rooms. In cellars and storerooms similar men were busy among the provisions, and in the yards unlocking or breaking open coach house and stable doors, lighting fires in kitchens and kneading and baking bread with rolled-up sleeves, and cooking; or frightening, amusing, or caressing women and children. There were many such men both in the shops and houses--but there was no army. Order after order was issued by the French commanders that day forbidding the men to disperse about the town, sternly forbidding any violence to the inhabitants or any looting, and announcing a roll call for that very evening. But despite all these measures the men, who had till then constituted an army, flowed all over the wealthy, deserted city with its comforts and plentiful supplies. As a hungry herd of cattle keeps well together when crossing a barren field, but gets out of hand and at once disperses uncontrollably as soon as it reaches rich pastures, so did the army disperse all over the wealthy city. No residents were left in Moscow, and the soldiers--like water percolating through sand--spread irresistibly through the city in all directions from the Kremlin into which they had first marched. The cavalry, on entering a merchant's house that had been abandoned and finding there stabling more than sufficient for their horses, went on, all the same, to the next house which seemed to them better. Many of them appropriated several houses, chalked their names on them, and quarreled and even fought with other companies for them. Before they had had time to secure quarters the soldiers ran out into the streets to see the city and, hearing that everything had been abandoned, rushed to places where valuables were to be had for the taking. The officers followed to check the soldiers and were involuntarily drawn into doing the same. In Carriage Row carriages had been left in the shops, and generals flocked there to select caleches and coaches for themselves. The few inhabitants who had remained invited commanding officers to their houses, hoping thereby to secure themselves from being plundered. There were masses of wealth and there seemed no end to it. All around the quarters occupied by the French were other regions still unexplored and unoccupied where, they thought, yet greater riches might be found. And Moscow engulfed the army ever deeper and deeper. When water is spilled on dry ground both the dry ground and the water disappear and mud results; and in the same way the entry of the famished army into the rich and deserted city resulted in fires and looting and the destruction of both the army and the wealthy city. The French attributed the Fire of Moscow au patriotisme feroce de Rostopchine,* the Russians to the barbarity of the French. In reality, however, it was not, and could not be, possible to explain the burning of Moscow by making any individual, or any group of people, responsible for it. Moscow was burned because it found itself in a position in which any town built of wood was bound to burn, quite apart from whether it had, or had not, a hundred and thirty inferior fire engines. Deserted Moscow had to burn as inevitably as a heap of shavings has to burn on which sparks continually fall for several days. A town built of wood, where scarcely a day passes without conflagrations when the house owners are in residence and a police force is present, cannot help burning when its inhabitants have left it and it is occupied by soldiers who smoke pipes, make campfires of the Senate chairs in the Senate Square, and cook themselves meals twice a day. In peacetime it is only necessary to billet troops in the villages of any district and the number of fires in that district immediately increases. How much then must the probability of fire be increased in an abandoned, wooden town where foreign troops are quartered. "Le patriotisme feroce de Rostopchine" and the barbarity of the French were not to blame in the matter. Moscow was set on fire by the soldiers' pipes, kitchens, and campfires, and by the carelessness of enemy soldiers occupying houses they did not own. Even if there was any arson (which is very doubtful, for no one had any reason to burn the houses--in any case a troublesome and dangerous thing to do), arson cannot be regarded as the cause, for the same thing would have happened without any incendiarism. *To Rostopchin's ferocious patriotism. However tempting it might be for the French to blame Rostopchin's ferocity and for Russians to blame the scoundrel Bonaparte, or later on to place an heroic torch in the hands of their own people, it is impossible not to see that there could be no such direct cause of the fire, for Moscow had to burn as every village, factory, or house must burn which is left by its owners and in which strangers are allowed to live and cook their porridge. Moscow was burned by its inhabitants, it is true, but by those who had abandoned it and not by those who remained in it. Moscow when occupied by the enemy did not remain intact like Berlin, Vienna, and other towns, simply because its inhabitants abandoned it and did not welcome the French with bread and salt, nor bring them the keys of the city. CHAPTER XXVII The absorption of the French by Moscow, radiating starwise as it did, only reached the quarter where Pierre was staying by the evening of the second of September. After the last two days spent in solitude and unusual circumstances, Pierre was in a state bordering on insanity. He was completely obsessed by one persistent thought. He did not know how or when this thought had taken such possession of him, but he remembered nothing of the past, understood nothing of the present, and all he saw and heard appeared to him like a dream. He had left home only to escape the intricate tangle of life's demands that enmeshed him, and which in his present condition he was unable to unravel. He had gone to Joseph Alexeevich's house, on the plea of sorting the deceased's books and papers, only in search of rest from life's turmoil, for in his mind the memory of Joseph Alexeevich was connected with a world of eternal, solemn, and calm thoughts, quite contrary to the restless confusion into which he felt himself being drawn. He sought a quiet refuge, and in Joseph Alexeevich's study he really found it. When he sat with his elbows on the dusty writing table in the deathlike stillness of the study, calm and significant memories of the last few days rose one after another in his imagination, particularly of the battle of Borodino and of that vague sense of his own insignificance and insincerity compared with the truth, simplicity, and strength of the class of men he mentally classed as they. When Gerasim roused him from his reverie the idea occurred to him of taking part in the popular defense of Moscow which he knew was projected. And with that object he had asked Gerasim to get him a peasant's coat and a pistol, confiding to him his intentions of remaining in Joseph Alexeevich's house and keeping his name secret. Then during the first day spent in inaction and solitude (he tried several times to fix his attention on the Masonic manuscripts, but was unable to do so) the idea that had previously occurred to him of the cabalistic significance of his name in connection with Bonaparte's more than once vaguely presented itself. But the idea that he, L'russe Besuhof, was destined to set a limit to the power of the Beast was as yet only one of the fancies that often passed through his mind and left no trace behind. When, having bought the coat merely with the object of taking part among the people in the defense of Moscow, Pierre had met the Rostovs and Natasha had said to him: "Are you remaining in Moscow?... How splendid!" the thought flashed into his mind that it really would be a good thing, even if Moscow were taken, for him to remain there and do what he was predestined to do. Next day, with the sole idea of not sparing himself and not lagging in any way behind them, Pierre went to the Three Hills gate. But when he returned to the house convinced that Moscow would not be defended, he suddenly felt that what before had seemed to him merely a possibility had now become absolutely necessary and inevitable. He must remain in Moscow, concealing his name, and must meet Napoleon and kill him, and either perish or put an end to the misery of all Europe- which it seemed to him was solely due to Napoleon. Pierre knew all the details of the attempt on Bonaparte's life in 1809 by a German student in Vienna, and knew that the student had been shot. And the risk to which he would expose his life by carrying out his design excited him still more. Two equally strong feelings drew Pierre irresistibly to this purpose. The first was a feeling of the necessity of sacrifice and suffering in view of the common calamity, the same feeling that had caused him to go to Mozhaysk on the twenty-fifth and to make his way to the very thick of the battle and had now caused him to run away from his home and, in place of the luxury and comfort to which he was accustomed, to sleep on a hard sofa without undressing and eat the same food as Gerasim. The other was that vague and quite Russian feeling of contempt for everything conventional, artificial, and human--for everything the majority of men regard as the greatest good in the world. Pierre had first experienced this strange and fascinating feeling at the Sloboda Palace, when he had suddenly felt that wealth, power, and life--all that men so painstakingly acquire and guard--if it has any worth has so only by reason the joy with which it can all be renounced. It was the feeling that induces a volunteer recruit to spend his last penny on drink, and a drunken man to smash mirrors or glasses for no apparent reason and knowing that it will cost him all the money he possesses: the feeling which causes a man to perform actions which from an ordinary point of view are insane, to test, as it were, his personal power and strength, affirming the existence of a higher, nonhuman criterion of life. From the very day Pierre had experienced this feeling for the first time at the Sloboda Palace he had been continuously under its influence, but only now found full satisfaction for it. Moreover, at this moment Pierre was supported in his design and prevented from renouncing it by what he had already done in that direction. If he were now to leave Moscow like everyone else, his flight from home, the peasant coat, the pistol, and his announcement to the Rostovs that he would remain in Moscow would all become not merely meaningless but contemptible and ridiculous, and to this Pierre was very sensitive. Pierre's physical condition, as is always the case, corresponded to his mental state. The unaccustomed coarse food, the vodka he drank during those days, the absence of wine and cigars, his dirty unchanged linen, two almost sleepless nights passed on a short sofa without bedding--all this kept him in a state of excitement bordering on insanity. It was two o'clock in the afternoon. The French had already entered Moscow. Pierre knew this, but instead of acting he only thought about his undertaking, going over its minutest details in his mind. In his fancy he did not clearly picture to himself either the striking of the blow or the death of Napoleon, but with extraordinary vividness and melancholy enjoyment imagined his own destruction and heroic endurance. "Yes, alone, for the sake of all, I must do it or perish!" he thought. "Yes, I will approach... and then suddenly... with pistol or dagger? But that is all the same! 'It is not I but the hand of Providence that punishes thee,' I shall say," thought he, imagining what he would say when killing Napoleon. "Well then, take me and execute me!" he went on, speaking to himself and bowing his head with a sad but firm expression. While Pierre, standing in the middle of the room, was talking to himself in this way, the study door opened and on the threshold appeared the figure of Makar Alexeevich, always so timid before but now quite transformed. His dressing gown was unfastened, his face red and distorted. He was obviously drunk. On seeing Pierre he grew confused at first, but noticing embarrassment on Pierre's face immediately grew bold and, staggering on his thin legs, advanced into the middle of the room. "They're frightened," he said confidentially in a hoarse voice. "I say I won't surrender, I say... Am I not right, sir?" He paused and then suddenly seeing the pistol on the table seized it with unexpected rapidity and ran out into the corridor. Gerasim and the porter, who had followed Makar Alexeevich, stopped him in the vestibule and tried to take the pistol from him. Pierre, coming out into the corridor, looked with pity and repulsion at the half-crazy old man. Makar Alexeevich, frowning with exertion, held on to the pistol and screamed hoarsely, evidently with some heroic fancy in his head. "To arms! Board them! No, you shan't get it," he yelled. "That will do, please, that will do. Have the goodness--please, sir, to let go! Please, sir..." pleaded Gerasim, trying carefully to steer Makar Alexeevich by the elbows back to the door. "Who are you? Bonaparte!..." shouted Makar Alexeevich. "That's not right, sir. Come to your room, please, and rest. Allow me to have the pistol." "Be off, thou base slave! Touch me not! See this?" shouted Makar Alexeevich, brandishing the pistol. "Board them!" "Catch hold!" whispered Gerasim to the porter. They seized Makar Alexeevich by the arms and dragged him to the door. The vestibule was filled with the discordant sounds of a struggle and of a tipsy, hoarse voice. Suddenly a fresh sound, a piercing feminine scream, reverberated from the porch and the cook came running into the vestibule. "It's them! Gracious heavens! O Lord, four of them, horsemen!" she cried. Gerasim and the porter let Makar Alexeevich go, and in the now silent corridor the sound of several hands knocking at the front door could be heard. CHAPTER XXVIII Pierre, having decided that until he had carried out his design he would disclose neither his identity nor his knowledge of French, stood at the half-open door of the corridor, intending to conceal himself as soon as the French entered. But the French entered and still Pierre did not retire--an irresistible curiosity kept him there. There were two of them. One was an officer--a tall, soldierly, handsome man--the other evidently a private or an orderly, sunburned, short, and thin, with sunken cheeks and a dull expression. The officer walked in front, leaning on a stick and slightly limping. When he had advanced a few steps he stopped, having apparently decided that these were good quarters, turned round to the soldiers standing at the entrance, and in a loud voice of command ordered them to put up the horses. Having done that, the officer, lifting his elbow with a smart gesture, stroked his mustache and lightly touched his hat. "Bonjour, la compagnie!"* said he gaily, smiling and looking about him. *"Good day, everybody!" No one gave any reply. "Vous etes le bourgeois?"* the officer asked Gerasim. *"Are you the master here?" Gerasim gazed at the officer with an alarmed and inquiring look. "Quartier, quartier, logement!" said the officer, looking down at the little man with a condescending and good-natured smile. "Les francais sont de bons enfants. Que diable! Voyons! Ne nous fachons pas, mon vieux!"* added he, clapping the scared and silent Gerasim on the shoulder. "Well, does no one speak French in this establishment?" he asked again in French, looking around and meeting Pierre's eyes. Pierre moved away from the door. *"Quarters, quarters, lodgings! The French are good fellows. What the devil! There, don't let us be cross, old fellow!" Again the officer turned to Gerasim and asked him to show him the rooms in the house. "Master, not here--don't understand... me, you..." said Gerasim, trying to render his words more comprehensible by contorting them. Still smiling, the French officer spread out his hands before Gerasim's nose, intimating that he did not understand him either, and moved, limping, to the door at which Pierre was standing. Pierre wished to go away and conceal himself, but at that moment he saw Makar Alexeevich appearing at the open kitchen door with the pistol in his hand. With a madman's cunning, Makar Alexeevich eyed the Frenchman, raised his pistol, and took aim. "Board them!" yelled the tipsy man, trying to press the trigger. Hearing the yell the officer turned round, and at the same moment Pierre threw himself on the drunkard. Just when Pierre snatched at and struck up the pistol Makar Alexeevich at last got his fingers on the trigger, there was a deafening report, and all were enveloped in a cloud of smoke. The Frenchman turned pale and rushed to the door. Forgetting his intention of concealing his knowledge of French, Pierre, snatching away the pistol and throwing it down, ran up to the officer and addressed him in French. "You are not wounded?" he asked. "I think not," answered the Frenchman, feeling himself over. "But I have had a lucky escape this time," he added, pointing to the damaged plaster of the wall. "Who is that man?" said he, looking sternly at Pierre. "Oh, I am really in despair at what has occurred," said Pierre rapidly, quite forgetting the part he had intended to play. "He is an unfortunate madman who did not know what he was doing." The officer went up to Makar Alexeevich and took him by the collar. Makar Alexeevich was standing with parted lips, swaying, as if about to fall asleep, as he leaned against the wall. "Brigand! You shall pay for this," said the Frenchman, letting go of him. "We French are merciful after victory, but we do not pardon traitors," he added, with a look of gloomy dignity and a fine energetic gesture. Pierre continued, in French, to persuade the officer not to hold that drunken imbecile to account. The Frenchman listened in silence with the same gloomy expression, but suddenly turned to Pierre with a smile. For a few seconds he looked at him in silence. His handsome face assumed a melodramatically gentle expression and he held out his hand. "You have saved my life. You are French," said he. For a Frenchman that deduction was indubitable. Only a Frenchman could perform a great deed, and to save his life--the life of M. Ramballe, captain of the 13th Light Regiment--was undoubtedly a very great deed. But however indubitable that conclusion and the officer's conviction based upon it, Pierre felt it necessary to disillusion him. "I am Russian," he said quickly. "Tut, tut, tut! Tell that to others," said the officer, waving his finger before his nose and smiling. "You shall tell me all about that presently. I am delighted to meet a compatriot. Well, and what are we to do with this man?" he added, addressing himself to Pierre as to a brother. Even if Pierre were not a Frenchman, having once received that loftiest of human appellations he could not renounce it, said the officer's look and tone. In reply to his last question Pierre again explained who Makar Alexeevich was and how just before their arrival that drunken imbecile had seized the loaded pistol which they had not had time to recover from him, and begged the officer to let the deed go unpunished. The Frenchman expanded his chest and made a majestic gesture with his arm. "You have saved my life! You are French. You ask his pardon? I grant it you. Lead that man away!" said he quickly and energetically, and taking the arm of Pierre whom he had promoted to be a Frenchman for saving his life, he went with him into the room. The soldiers in the yard, hearing the shot, came into the passage asking what had happened, and expressed their readiness to punish the culprits, but the officer sternly checked them. "You will be called in when you are wanted," he said. The soldiers went out again, and the orderly, who had meanwhile had time to visit the kitchen, came up to his officer. "Captain, there is soup and a leg of mutton in the kitchen," said he. "Shall I serve them up?" "Yes, and some wine," answered the captain. CHAPTER XXIX When the French officer went into the room with Pierre the latter again thought it his duty to assure him that he was not French and wished to go away, but the officer would not hear of it. He was so very polite, amiable, good-natured, and genuinely grateful to Pierre for saving his life that Pierre had not the heart to refuse, and sat down with him in the parlor--the first room they entered. To Pierre's assurances that he was not a Frenchman, the captain, evidently not understanding how anyone could decline so flattering an appellation, shrugged his shoulders and said that if Pierre absolutely insisted on passing for a Russian let it be so, but for all that he would be forever bound to Pierre by gratitude for saving his life. Had this man been endowed with the slightest capacity for perceiving the feelings of others, and had he at all understood what Pierre's feelings were, the latter would probably have left him, but the man's animated obtuseness to everything other than himself disarmed Pierre. "A Frenchman or a Russian prince incognito," said the officer, looking at Pierre's fine though dirty linen and at the ring on his finger. "I owe my life to you and offer you my friendship. A Frenchman never forgets either an insult or a service. I offer you my friendship. That is all I can say." There was so much good nature and nobility (in the French sense of the word) in the officer's voice, in the expression of his face and in his gestures, that Pierre, unconsciously smiling in response to the Frenchman's smile, pressed the hand held out to him. "Captain Ramballe, of the 13th Light Regiment, Chevalier of the Legion of Honor for the affair on the seventh of September," he introduced himself, a self-satisfied irrepressible smile puckering his lips under his mustache. "Will you now be so good as to tell me with whom I have the honor of conversing so pleasantly, instead of being in the ambulance with that maniac's bullet in my body?" Pierre replied that he could not tell him his name and, blushing, began to try to invent a name and to say something about his reason for concealing it, but the Frenchman hastily interrupted him. "Oh, please!" said he. "I understand your reasons. You are an officer... a superior officer perhaps. You have borne arms against us. That's not my business. I owe you my life. That is enough for me. I am quite at your service. You belong to the gentry?" he concluded with a shade of inquiry in his tone. Pierre bent his head. "Your baptismal name, if you please. That is all I ask. Monsieur Pierre, you say.... That's all I want to know." When the mutton and an omelet had been served and a samovar and vodka brought, with some wine which the French had taken from a Russian cellar and brought with them, Ramballe invited Pierre to share his dinner, and himself began to eat greedily and quickly like a healthy and hungry man, munching his food rapidly with his strong teeth, continually smacking his lips, and repeating--"Excellent! Delicious!" His face grew red and was covered with perspiration. Pierre was hungry and shared the dinner with pleasure. Morel, the orderly, brought some hot water in a saucepan and placed a bottle of claret in it. He also brought a bottle of kvass, taken from the kitchen for them to try. That beverage was already known to the French and had been given a special name. They called it limonade de cochon (pig's lemonade), and Morel spoke well of the limonade de cochon he had found in the kitchen. But as the captain had the wine they had taken while passing through Moscow, he left the kvass to Morel and applied himself to the bottle of Bordeaux. He wrapped the bottle up to its neck in a table napkin and poured out wine for himself and for Pierre. The satisfaction of his hunger and the wine rendered the captain still more lively and he chatted incessantly all through dinner. "Yes, my dear Monsieur Pierre, I owe you a fine votive candle for saving me from that maniac.... You see, I have bullets enough in my body already. Here is one I got at Wagram" (he touched his side) "and a second at Smolensk"--he showed a scar on his cheek--"and this leg which as you see does not want to march, I got that on the seventh at the great battle of la Moskowa. Sacre Dieu! It was splendid! That deluge of fire was worth seeing. It was a tough job you set us there, my word! You may be proud of it! And on my honor, in spite of the cough I caught there, I should be ready to begin again. I pity those who did not see it." "I was there," said Pierre. "Bah, really? So much the better! You are certainly brave foes. The great redoubt held out well, by my pipe!" continued the Frenchman. "And you made us pay dear for it. I was at it three times--sure as I sit here. Three times we reached the guns and three times we were thrown back like cardboard figures. Oh, it was beautiful, Monsieur Pierre! Your grenadiers were splendid, by heaven! I saw them close up their ranks six times in succession and march as if on parade. Fine fellows! Our King of Naples, who knows what's what, cried 'Bravo!' Ha, ha! So you are one of us soldiers!" he added, smiling, after a momentary pause. "So much the better, so much the better, Monsieur Pierre! Terrible in battle... gallant... with the fair" (he winked and smiled), "that's what the French are, Monsieur Pierre, aren't they?" The captain was so naively and good-humoredly gay, so real, and so pleased with himself that Pierre almost winked back as he looked merrily at him. Probably the word "gallant" turned the captain's thoughts to the state of Moscow. "Apropos, tell me please, is it true that the women have all left Moscow? What a queer idea! What had they to be afraid of?" "Would not the French ladies leave Paris if the Russians entered it?" asked Pierre. "Ha, ha, ha!" The Frenchman emitted a merry, sanguine chuckle, patting Pierre on the shoulder. "What a thing to say!" he exclaimed. "Paris?... But Paris, Paris..." "Paris--the capital of the world," Pierre finished his remark for him. The captain looked at Pierre. He had a habit of stopping short in the middle of his talk and gazing intently with his laughing, kindly eyes. "Well, if you hadn't told me you were Russian, I should have wagered that you were Parisian! You have that... I don't know what, that..." and having uttered this compliment, he again gazed at him in silence. "I have been in Paris. I spent years there," said Pierre. "Oh yes, one sees that plainly. Paris!... A man who doesn't know Paris is a savage. You can tell a Parisian two leagues off. Paris is Talma, la Duchenois, Potier, the Sorbonne, the boulevards," and noticing that his conclusion was weaker than what had gone before, he added quickly: "There is only one Paris in the world. You have been to Paris and have remained Russian. Well, I don't esteem you the less for it." Under the influence of the wine he had drunk, and after the days he had spent alone with his depressing thoughts, Pierre involuntarily enjoyed talking with this cheerful and good-natured man. "To return to your ladies--I hear they are lovely. What a wretched idea to go and bury themselves in the steppes when the French army is in Moscow. What a chance those girls have missed! Your peasants, now--that's another thing; but you civilized people, you ought to know us better than that. We took Vienna, Berlin, Madrid, Naples, Rome, Warsaw, all the world's capitals.... We are feared, but we are loved. We are nice to know. And then the Emperor..." he began, but Pierre interrupted him. "The Emperor," Pierre repeated, and his face suddenly became sad and embarrassed, "is the Emperor...?" "The Emperor? He is generosity, mercy, justice, order, genius- that's what the Emperor is! It is I, Ramballe, who tell you so.... I assure you I was his enemy eight years ago. My father was an emigrant count.... But that man has vanquished me. He has taken hold of me. I could not resist the sight of the grandeur and glory with which he has covered France. When I understood what he wanted--when I saw that he was preparing a bed of laurels for us, you know, I said to myself: 'That is a monarch,' and I devoted myself to him! So there! Oh yes, mon cher, he is the greatest man of the ages past or future." "Is he in Moscow?" Pierre stammered with a guilty look. The Frenchman looked at his guilty face and smiled. "No, he will make his entry tomorrow," he replied, and continued his talk. Their conversation was interrupted by the cries of several voices at the gate and by Morel, who came to say that some Wurttemberg hussars had come and wanted to put up their horses in the yard where the captain's horses were. This difficulty had arisen chiefly because the hussars did not understand what was said to them in French. The captain had their senior sergeant called in, and in a stern voice asked him to what regiment he belonged, who was his commanding officer, and by what right he allowed himself to claim quarters that were already occupied. The German who knew little French, answered the two first questions by giving the names of his regiment and of his commanding officer, but in reply to the third question which he did not understand said, introducing broken French into his own German, that he was the quartermaster of the regiment and his commander had ordered him to occupy all the houses one after another. Pierre, who knew German, translated what the German said to the captain and gave the captain's reply to the Wurttemberg hussar in German. When he had understood what was said to him, the German submitted and took his men elsewhere. The captain went out into the porch and gave some orders in a loud voice. When he returned to the room Pierre was sitting in the same place as before, with his head in his hands. His face expressed suffering. He really was suffering at that moment. When the captain went out and he was left alone, suddenly he came to himself and realized the position he was in. It was not that Moscow had been taken or that the happy conquerors were masters in it and were patronizing him. Painful as that was it was not that which tormented Pierre at the moment. He was tormented by the consciousness of his own weakness. The few glasses of wine he had drunk and the conversation with this good-natured man had destroyed the mood of concentrated gloom in which he had spent the last few days and which was essential for the execution of his design. The pistol, dagger, and peasant coat were ready. Napoleon was to enter the town next day. Pierre still considered that it would be a useful and worthy action to slay the evildoer, but now he felt that he would not do it. He did not know why, but he felt a foreboding that he would not carry out his intention. He struggled against the confession of his weakness but dimly felt that he could not overcome it and that his former gloomy frame of mind, concerning vengeance, killing, and self-sacrifice, had been dispersed like dust by contact with the first man he met. The captain returned to the room, limping slightly and whistling a tune. The Frenchman's chatter which had previously amused Pierre now repelled him. The tune he was whistling, his gait, and the gesture with which he twirled his mustache, all now seemed offensive. "I will go away immediately. I won't say another word to him," thought Pierre. He thought this, but still sat in the same place. A strange feeling of weakness tied him to the spot; he wished to get up and go away, but could not do so. The captain, on the other hand, seemed very cheerful. He paced up and down the room twice. His eyes shone and his mustache twitched as if he were smiling to himself at some amusing thought. "The colonel of those Wurttembergers is delightful," he suddenly said. "He's a German, but a nice fellow all the same.... But he's a German." He sat down facing Pierre. "By the way, you know German, then?" Pierre looked at him in silence. "What is the German for 'shelter'?" "Shelter?" Pierre repeated. "The German for shelter is Unterkunft." "How do you say it?" the captain asked quickly and doubtfully. "Unterkunft," Pierre repeated. "Onterkoff," said the captain and looked at Pierre for some seconds with laughing eyes. "These Germans are first-rate fools, don't you think so, Monsieur Pierre?" he concluded. "Well, let's have another bottle of this Moscow Bordeaux, shall we? Morel will warm us up another little bottle. Morel!" he called out gaily. Morel brought candles and a bottle of wine. The captain looked at Pierre by the candlelight and was evidently struck by the troubled expression on his companion's face. Ramballe, with genuine distress and sympathy in his face, went up to Pierre and bent over him. "There now, we're sad," said he, touching Pierre's hand. "Have I upset you? No, really, have you anything against me?" he asked Pierre. "Perhaps it's the state of affairs?" Pierre did not answer, but looked cordially into the Frenchman's eyes whose expression of sympathy was pleasing to him. "Honestly, without speaking of what I owe you, I feel friendship for you. Can I do anything for you? Dispose of me. It is for life and death. I say it with my hand on my heart!" said he, striking his chest. "Thank you," said Pierre. The captain gazed intently at him as he had done when he learned that "shelter" was Unterkunft in German, and his face suddenly brightened. "Well, in that case, I drink to our friendship!" he cried gaily, filling two glasses with wine. Pierre took one of the glasses and emptied it. Ramballe emptied his too, again pressed Pierre's hand, and leaned his elbows on the table in a pensive attitude. "Yes, my dear friend," he began, "such is fortune's caprice. Who would have said that I should be a soldier and a captain of dragoons in the service of Bonaparte, as we used to call him? Yet here I am in Moscow with him. I must tell you, mon cher," he continued in the sad and measured tones of a man who intends to tell a long story, "that our name is one of the most ancient in France." And with a Frenchman's easy and naive frankness the captain told Pierre the story of his ancestors, his childhood, youth, and manhood, and all about his relations and his financial and family affairs, "ma pauvre mere" playing of course an important part in the story. "But all that is only life's setting, the real thing is love- love! Am I not right, Monsieur Pierre?" said he, growing animated. "Another glass?" Pierre again emptied his glass and poured himself out a third. "Oh, women, women!" and the captain, looking with glistening eyes at Pierre, began talking of love and of his love affairs. There were very many of these, as one could easily believe, looking at the officer's handsome, self-satisfied face, and noting the eager enthusiasm with which he spoke of women. Though all Ramballe's love stories had the sensual character which Frenchmen regard as the special charm and poetry of love, yet he told his story with such sincere conviction that he alone had experienced and known all the charm of love and he described women so alluringly that Pierre listened to him with curiosity. It was plain that l'amour which the Frenchman was so fond of was not that low and simple kind that Pierre had once felt for his wife, nor was it the romantic love stimulated by himself that he experienced for Natasha. (Ramballe despised both these kinds of love equally: the one he considered the "love of clodhoppers" and the other the "love of simpletons.") L'amour which the Frenchman worshiped consisted principally in the unnaturalness of his relation to the woman and in a combination of incongruities giving the chief charm to the feeling. Thus the captain touchingly recounted the story of his love for a fascinating marquise of thirty-five and at the same time for a charming, innocent child of seventeen, daughter of the bewitching marquise. The conflict of magnanimity between the mother and the daughter, ending in the mother's sacrificing herself and offering her daughter in marriage to her lover, even now agitated the captain, though it was the memory of a distant past. Then he recounted an episode in which the husband played the part of the lover, and he--the lover--assumed the role of the husband, as well as several droll incidents from his recollections of Germany, where "shelter" is called Unterkunft and where the husbands eat sauerkraut and the young girls are "too blonde." Finally, the latest episode in Poland still fresh in the captain's memory, and which he narrated with rapid gestures and glowing face, was of how he had saved the life of a Pole (in general, the saving of life continually occurred in the captain's stories) and the Pole had entrusted to him his enchanting wife (parisienne de coeur) while himself entering the French service. The captain was happy, the enchanting Polish lady wished to elope with him, but, prompted by magnanimity, the captain restored the wife to the husband, saying as he did so: "I have saved your life, and I save your honor!" Having repeated these words the captain wiped his eyes and gave himself a shake, as if driving away the weakness which assailed him at this touching recollection. Listening to the captain's tales, Pierre--as often happens late in the evening and under the influence of wine--followed all that was told him, understood it all, and at the same time followed a train of personal memories which, he knew not why, suddenly arose in his mind. While listening to these love stories his own love for Natasha unexpectedly rose to his mind, and going over the pictures of that love in his imagination he mentally compared them with Ramballe's tales. Listening to the story of the struggle between love and duty, Pierre saw before his eyes every minutest detail of his last meeting with the object of his love at the Sukharev water tower. At the time of that meeting it had not produced an effect upon him--he had not even once recalled it. But now it seemed to him that that meeting had had in it something very important and poetic. "Peter Kirilovich, come here! We have recognized you," he now seemed to hear the words she had uttered and to see before him her eyes, her smile, her traveling hood, and a stray lock of her hair... and there seemed to him something pathetic and touching in all this. Having finished his tale about the enchanting Polish lady, the captain asked Pierre if he had ever experienced a similar impulse to sacrifice himself for love and a feeling of envy of the legitimate husband. Challenged by this question Pierre raised his head and felt a need to express the thoughts that filled his mind. He began to explain that he understood love for a women somewhat differently. He said that in all his life he had loved and still loved only one woman, and that she could never be his. "Tiens!" said the captain. Pierre then explained that he had loved this woman from his earliest years, but that he had not dared to think of her because she was too young, and because he had been an illegitimate son without a name. Afterwards when he had received a name and wealth he dared not think of her because he loved her too well, placing her far above everything in the world, and especially therefore above himself. When he had reached this point, Pierre asked the captain whether he understood that. The captain made a gesture signifying that even if he did not understand it he begged Pierre to continue. "Platonic love, clouds..." he muttered. Whether it was the wine he had drunk, or an impulse of frankness, or the thought that this man did not, and never would, know any of those who played a part in his story, or whether it was all these things together, something loosened Pierre's tongue. Speaking thickly and with a faraway look in his shining eyes, he told the whole story of his life: his marriage, Natasha's love for his best friend, her betrayal of him, and all his own simple relations with her. Urged on by Ramballe's questions he also told what he had at first concealed--his own position and even his name. More than anything else in Pierre's story the captain was impressed by the fact that Pierre was very rich, had two mansions in Moscow, and that he had abandoned everything and not left the city, but remained there concealing his name and station. When it was late at night they went out together into the street. The night was warm and light. To the left of the house on the Pokrovka a fire glowed--the first of those that were beginning in Moscow. To the right and high up in the sky was the sickle of the waning moon and opposite to it hung that bright comet which was connected in Pierre's heart with his love. At the gate stood Gerasim, the cook, and two Frenchmen. Their laughter and their mutually incomprehensible remarks in two languages could be heard. They were looking at the glow seen in the town. There was nothing terrible in the one small, distant fire in the immense city. Gazing at the high starry sky, at the moon, at the comet, and at the glow from the fire, Pierre experienced a joyful emotion. "There now, how good it is, what more does one need?" thought he. And suddenly remembering his intention he grew dizzy and felt so faint that he leaned against the fence to save himself from falling. Without taking leave of his new friend, Pierre left the gate with unsteady steps and returning to his room lay down on the sofa and immediately fell asleep. CHAPTER XXX The glow of the first fire that began on the second of September was watched from the various roads by the fugitive Muscovites and by the retreating troops, with many different feelings. The Rostov party spent the night at Mytishchi, fourteen miles from Moscow. They had started so late on the first of September, the road had been so blocked by vehicles and troops, so many things had been forgotten for which servants were sent back, that they had decided to spend that night at a place three miles out of Moscow. The next morning they woke late and were again delayed so often that they only got as far as Great Mytishchi. At ten o'clock that evening the Rostov family and the wounded traveling with them were all distributed in the yards and huts of that large village. The Rostovs' servants and coachmen and the orderlies of the wounded officers, after attending to their masters, had supper, fed the horses, and came out into the porches. In a neighboring hut lay Raevski's adjutant with a fractured wrist. The awful pain he suffered made him moan incessantly and piteously, and his moaning sounded terrible in the darkness of the autumn night. He had spent the first night in the same yard as the Rostovs. The countess said she had been unable to close her eyes on account of his moaning, and at Mytishchi she moved into a worse hut simply to be farther away from the wounded man. In the darkness of the night one of the servants noticed, above the high body of a coach standing before the porch, the small glow of another fire. One glow had long been visible and everybody knew that it was Little Mytishchi burning--set on fire by Mamonov's Cossacks. "But look here, brothers, there's another fire!" remarked an orderly. All turned their attention to the glow. "But they told us Little Mytishchi had been set on fire by Mamonov's Cossacks." "But that's not Mytishchi, it's farther away." "Look, it must be in Moscow!" Two of the gazers went round to the other side of the coach and sat down on its steps. "It's more to the left, why, Little Mytishchi is over there, and this is right on the other side." Several men joined the first two. "See how it's flaring," said one. "That's a fire in Moscow: either in the Sushchevski or the Rogozhski quarter." No one replied to this remark and for some time they all gazed silently at the spreading flames of the second fire in the distance. Old Daniel Terentich, the count's valet (as he was called), came up to the group and shouted at Mishka. "What are you staring at, you good-for-nothing?... The count will be calling and there's nobody there; go and gather the clothes together." "I only ran out to get some water," said Mishka. "But what do you think, Daniel Terentich? Doesn't it look as if that glow were in Moscow?" remarked one of the footmen. Daniel Terentich made no reply, and again for a long time they were all silent. The glow spread, rising and failing, farther and farther still. "God have mercy.... It's windy and dry..." said another voice. "Just look! See what it's doing now. O Lord! You can even see the crows flying. Lord have mercy on us sinners!" "They'll put it out, no fear!" "Who's to put it out?" Daniel Terentich, who had hitherto been silent, was heard to say. His voice was calm and deliberate. "Moscow it is, brothers," said he. "Mother Moscow, the white..." his voice faltered, and he gave way to an old man's sob. And it was as if they had all only waited for this to realize the significance for them of the glow they were watching. Sighs were heard, words of prayer, and the sobbing of the count's old valet. CHAPTER XXXI The valet, returning to the cottage, informed the count that Moscow was burning. The count donned his dressing gown and went out to look. Sonya and Madame Schoss, who had not yet undressed, went out with him. Only Natasha and the countess remained in the room. Petya was no longer with the family, he had gone on with his regiment which was making for Troitsa. The countess, on hearing that Moscow was on fire, began to cry. Natasha, pale, with a fixed look, was sitting on the bench under the icons just where she had sat down on arriving and paid no attention to her father's words. She was listening to the ceaseless moaning of the adjutant, three houses off. "Oh, how terrible," said Sonya returning from the yard chilled and frightened. "I believe the whole of Moscow will burn, there's an awful glow! Natasha, do look! You can see it from the window," she said to her cousin, evidently wishing to distract her mind. But Natasha looked at her as if not understanding what was said to her and again fixed her eyes on the corner of the stove. She had been in this condition of stupor since the morning, when Sonya, to the surprise and annoyance of the countess, had for some unaccountable reason found it necessary to tell Natasha of Prince Andrew's wound and of his being with their party. The countess had seldom been so angry with anyone as she was with Sonya. Sonya had cried and begged to be forgiven and now, as if trying to atone for her fault, paid unceasing attention to her cousin. "Look, Natasha, how dreadfully it is burning!" said she. "What's burning?" asked Natasha. "Oh, yes, Moscow." And as if in order not to offend Sonya and to get rid of her, she turned her face to the window, looked out in such a way that it was evident that she could not see anything, and again settled down in her former attitude. "But you didn't see it!" "Yes, really I did," Natasha replied in a voice that pleaded to be left in peace. Both the countess and Sonya understood that, naturally, neither Moscow nor the burning of Moscow nor anything else could seem of importance to Natasha. The count returned and lay down behind the partition. The countess went up to her daughter and touched her head with the back of her hand as she was wont to do when Natasha was ill, then touched her forehead with her lips as if to feel whether she was feverish, and finally kissed her. "You are cold. You are trembling all over. You'd better lie down," said the countess. "Lie down? All right, I will. I'll lie down at once," said Natasha. When Natasha had been told that morning that Prince Andrew was seriously wounded and was traveling with their party, she had at first asked many questions: Where was he going? How was he wounded? Was it serious? And could she see him? But after she had been told that she could not see him, that he was seriously wounded but that his life was not in danger, she ceased to ask questions or to speak at all, evidently disbelieving what they told her, and convinced that say what she might she would still be told the same. All the way she had sat motionless in a corner of the coach with wide open eyes, and the expression in them which the countess knew so well and feared so much, and now she sat in the same way on the bench where she had seated herself on arriving. She was planning something and either deciding or had already decided something in her mind. The countess knew this, but what it might be she did not know, and this alarmed and tormented her. "Natasha, undress, darling; lie down on my bed." A bed had been made on a bedstead for the countess only. Madame Schoss and the two girls were to sleep on some hay on the floor. "No, Mamma, I will lie down here on the floor," Natasha replied irritably and she went to the window and opened it. Through the open window the moans of the adjutant could be heard more distinctly. She put her head out into the damp night air, and the countess saw her slim neck shaking with sobs and throbbing against the window frame. Natasha knew it was not Prince Andrew who was moaning. She knew Prince Andrew was in the same yard as themselves and in a part of the hut across the passage; but this dreadful incessant moaning made her sob. The countess exchanged a look with Sonya. "Lie down, darling; lie down, my pet," said the countess, softly touching Natasha's shoulders. "Come, lie down." "Oh, yes... I'll lie down at once," said Natasha, and began hurriedly undressing, tugging at the tapes of her petticoat. When she had thrown off her dress and put on a dressing jacket, she sat down with her foot under her on the bed that had been made up on the floor, jerked her thin and rather short plait of hair to the front, and began replaiting it. Her long, thin, practiced fingers rapidly unplaited, replaited, and tied up her plait. Her head moved from side to side from habit, but her eyes, feverishly wide, looked fixedly before her. When her toilet for the night was finished she sank gently onto the sheet spread over the hay on the side nearest the door. "Natasha, you'd better lie in the middle," said Sonya. "I'll stay here," muttered Natasha. "Do lie down," she added crossly, and buried her face in the pillow. The countess, Madame Schoss, and Sonya undressed hastily and lay down. The small lamp in front of the icons was the only light left in the room. But in the yard there was a light from the fire at Little Mytishchi a mile and a half away, and through the night came the noise of people shouting at a tavern Mamonov's Cossacks had set up across the street, and the adjutant's unceasing moans could still be heard. For a long time Natasha listened attentively to the sounds that reached her from inside and outside the room and did not move. First she heard her mother praying and sighing and the creaking of her bed under her, then Madame Schoss' familiar whistling snore and Sonya's gentle breathing. Then the countess called to Natasha. Natasha did not answer. "I think she's asleep, Mamma," said Sonya softly. After short silence the countess spoke again but this time no one replied. Soon after that Natasha heard her mother's even breathing. Natasha did not move, though her little bare foot, thrust out from under the quilt, was growing cold on the bare floor. As if to celebrate a victory over everybody, a cricket chirped in a crack in the wall. A cock crowed far off and another replied near by. The shouting in the tavern had died down; only the moaning of the adjutant was heard. Natasha sat up. "Sonya, are you asleep? Mamma?" she whispered. No one replied. Natasha rose slowly and carefully, crossed herself, and stepped cautiously on the cold and dirty floor with her slim, supple, bare feet. The boards of the floor creaked. Stepping cautiously from one foot to the other she ran like a kitten the few steps to the door and grasped the cold door handle. It seemed to her that something heavy was beating rhythmically against all the walls of the room: it was her own heart, sinking with alarm and terror and overflowing with love. She opened the door and stepped across the threshold and onto the cold, damp earthen floor of the passage. The cold she felt refreshed her. With her bare feet she touched a sleeping man, stepped over him, and opened the door into the part of the hut where Prince Andrew lay. It was dark in there. In the farthest corner, on a bench beside a bed on which something was lying, stood a tallow candle with a long, thick, and smoldering wick. From the moment she had been told that of Prince Andrew's wound and his presence there, Natasha had resolved to see him. She did not know why she had to, she knew the meeting would be painful, but felt the more convinced that it was necessary. All day she had lived only in hope of seeing him that night. But now that the moment had come she was filled with dread of what she might see. How was he maimed? What was left of him? Was he like that incessant moaning of the adjutant's? Yes, he was altogether like that. In her imagination he was that terrible moaning personified. When she saw an indistinct shape in the corner, and mistook his knees raised under the quilt for his shoulders, she imagined a horrible body there, and stood still in terror. But an irresistible impulse drew her forward. She cautiously took one step and then another, and found herself in the middle of a small room containing baggage. Another man- Timokhin--was lying in a corner on the benches beneath the icons, and two others--the doctor and a valet--lay on the floor. The valet sat up and whispered something. Timokhin, kept awake by the pain in his wounded leg, gazed with wide-open eyes at this strange apparition of a girl in a white chemise, dressing jacket, and nightcap. The valet's sleepy, frightened exclamation, "What do you want? What's the matter?" made Natasha approach more swiftly to what was lying in the corner. Horribly unlike a man as that body looked, she must see him. She passed the valet, the snuff fell from the candle wick, and she saw Prince Andrew clearly with his arms outside the quilt, and such as she had always seen him. He was the same as ever, but the feverish color of his face, his glittering eyes rapturously turned toward her, and especially his neck, delicate as a child's, revealed by the turn-down collar of his shirt, gave him a peculiarly innocent, childlike look, such as she had never seen on him before. She went up to him and with a swift, flexible, youthful movement dropped on her knees. He smiled and held out his hand to her. CHAPTER XXXII Seven days had passed since Prince Andrew found himself in the ambulance station on the field of Borodino. His feverish state and the inflammation of his bowels, which were injured, were in the doctor's opinion sure to carry him off. But on the seventh day he ate with pleasure a piece of bread with some tea, and the doctor noticed that his temperature was lower. He had regained consciousness that morning. The first night after they left Moscow had been fairly warm and he had remained in the caleche, but at Mytishchi the wounded man himself asked to be taken out and given some tea. The pain caused by his removal into the hut had made him groan aloud and again lose consciousness. When he had been placed on his camp bed he lay for a long time motionless with closed eyes. Then he opened them and whispered softly: "And the tea?" His remembering such a small detail of everyday life astonished the doctor. He felt Prince Andrew's pulse, and to his surprise and dissatisfaction found it had improved. He was dissatisfied because he knew by experience that if his patient did not die now, he would do so a little later with greater suffering. Timokhin, the red-nosed major of Prince Andrew's regiment, had joined him in Moscow and was being taken along with him, having been wounded in the leg at the battle of Borodino. They were accompanied by a doctor, Prince Andrew's valet, his coachman, and two orderlies. They gave Prince Andrew some tea. He drank it eagerly, looking with feverish eyes at the door in front of him as if trying to understand and remember something. "I don't want any more. Is Timokhin here?" he asked. Timokhin crept along the bench to him. "I am here, your excellency." "How's your wound?" "Mine, sir? All right. But how about you?" Prince Andrew again pondered as if trying to remember something. "Couldn't one get a book?" he asked. "What book?" "The Gospels. I haven't one." The doctor promised to procure it for him and began to ask how he was feeling. Prince Andrew answered all his questions reluctantly but reasonably, and then said he wanted a bolster placed under him as he was uncomfortable and in great pain. The doctor and valet lifted the cloak with which he was covered and, making wry faces at the noisome smell of mortifying flesh that came from the wound, began examining that dreadful place. The doctor was very much displeased about something and made a change in the dressings, turning the wounded man over so that he groaned again and grew unconscious and delirious from the agony. He kept asking them to get him the book and put it under him. "What trouble would it be to you?" he said. "I have not got one. Please get it for me and put it under for a moment," he pleaded in a piteous voice. The doctor went into the passage to wash his hands. "You fellows have no conscience," said he to the valet who was pouring water over his hands. "For just one moment I didn't look after you... It's such pain, you know, that I wonder how he can bear it." "By the Lord Jesus Christ, I thought we had put something under him!" said the valet. The first time Prince Andrew understood where he was and what was the matter with him and remembered being wounded and how was when he asked to be carried into the hut after his caleche had stopped at Mytishchi. After growing confused from pain while being carried into the hut he again regained consciousness, and while drinking tea once more recalled all that had happened to him, and above all vividly remembered the moment at the ambulance station when, at the sight of the sufferings of a man he disliked, those new thoughts had come to him which promised him happiness. And those thoughts, though now vague and indefinite, again possessed his soul. He remembered that he had now a new source of happiness and that this happiness had something to do with the Gospels. That was why he asked for a copy of them. The uncomfortable position in which they had put him and turned him over again confused his thoughts, and when he came to himself a third time it was in the complete stillness of the night. Everybody near him was sleeping. A cricket chirped from across the passage; someone was shouting and singing in the street; cockroaches rustled on the table, on the icons, and on the walls, and a big fly flopped at the head of the bed and around the candle beside him, the wick of which was charred and had shaped itself like a mushroom. His mind was not in a normal state. A healthy man usually thinks of, feels, and remembers innumerable things simultaneously, but has the power and will to select one sequence of thoughts or events on which to fix his whole attention. A healthy man can tear himself away from the deepest reflections to say a civil word to someone who comes in and can then return again to his own thoughts. But Prince Andrew's mind was not in a normal state in that respect. All the powers of his mind were more active and clearer than ever, but they acted apart from his will. Most diverse thoughts and images occupied him simultaneously. At times his brain suddenly began to work with a vigor, clearness, and depth it had never reached when he was in health, but suddenly in the midst of its work it would turn to some unexpected idea and he had not the strength to turn it back again. "Yes, a new happiness was revealed to me of which man cannot be deprived," he thought as he lay in the semi-darkness of the quiet hut, gazing fixedly before him with feverish wide open eyes. "A happiness lying beyond material forces, outside the material influences that act on man--a happiness of the soul alone, the happiness of loving. Every man can understand it, but to conceive it and enjoin it was possible only for God. But how did God enjoin that law? And why was the Son...?" And suddenly the sequence of these thoughts broke off, and Prince Andrew heard (without knowing whether it was a delusion or reality) a soft whispering voice incessantly and rhythmically repeating "piti-piti-piti," and then "titi," and then again "piti-piti-piti," and "ti-ti" once more. At the same time he felt that above his face, above the very middle of it, some strange airy structure was being erected out of slender needles or splinters, to the sound of this whispered music. He felt that he had to balance carefully (though it was difficult) so that this airy structure should not collapse; but nevertheless it kept collapsing and again slowly rising to the sound of whispered rhythmic music--"it stretches, stretches, spreading out and stretching," said Prince Andrew to himself. While listening to this whispering and feeling the sensation of this drawing out and the construction of this edifice of needles, he also saw by glimpses a red halo round the candle, and heard the rustle of the cockroaches and the buzzing of the fly that flopped against his pillow and his face. Each time the fly touched his face it gave him a burning sensation and yet to his surprise it did not destroy the structure, though it knocked against the very region of his face where it was rising. But besides this there was something else of importance. It was something white by the door--the statue of a sphinx, which also oppressed him. "But perhaps that's my shirt on the table," he thought, "and that's my legs, and that is the door, but why is it always stretching and drawing itself out, and 'piti-piti-piti' and 'ti-ti' and 'piti-piti-piti'...? That's enough, please leave off!" Prince Andrew painfully entreated someone. And suddenly thoughts and feelings again swam to the surface of his mind with peculiar clearness and force. "Yes--love," he thought again quite clearly. "But not love which loves for something, for some quality, for some purpose, or for some reason, but the love which I--while dying--first experienced when I saw my enemy and yet loved him. I experienced that feeling of love which is the very essence of the soul and does not require an object. Now again I feel that bliss. To love one's neighbors, to love one's enemies, to love everything, to love God in all His manifestations. It is possible to love someone dear to you with human love, but an enemy can only be loved by divine love. That is why I experienced such joy when I felt that I loved that man. What has become of him? Is he alive?... "When loving with human love one may pass from love to hatred, but divine love cannot change. No, neither death nor anything else can destroy it. It is the very essence of the soul. Yet how many people have I hated in my life? And of them all, I loved and hated none as I did her." And he vividly pictured to himself Natasha, not as he had done in the past with nothing but her charms which gave him delight, but for the first time picturing to himself her soul. And he understood her feelings, her sufferings, shame, and remorse. He now understood for the first time all the cruelty of his rejection of her, the cruelty of his rupture with her. "If only it were possible for me to see her once more! Just once, looking into those eyes to say..." "Piti-piti-piti and ti-ti and piti-piti-piti boom!" flopped the fly... And his attention was suddenly carried into another world, a world of reality and delirium in which something particular was happening. In that world some structure was still being erected and did not fall, something was still stretching out, and the candle with its red halo was still burning, and the same shirtlike sphinx lay near the door; but besides all this something creaked, there was a whiff of fresh air, and a new white sphinx appeared, standing at the door. And that sphinx had the pale face and shining eyes of the very Natasha of whom he had just been thinking. "Oh, how oppressive this continual delirium is," thought Prince Andrew, trying to drive that face from his imagination. But the face remained before him with the force of reality and drew nearer. Prince Andrew wished to return that former world of pure thought, but he could not, and delirium drew him back into its domain. The soft whispering voice continued its rhythmic murmur, something oppressed him and stretched out, and the strange face was before him. Prince Andrew collected all his strength in an effort to recover his senses, he moved a little, and suddenly there was a ringing in his ears, a dimness in his eyes, and like a man plunged into water he lost consciousness. When he came to himself, Natasha, that same living Natasha whom of all people he most longed to love with this new pure divine love that had been revealed to him, was kneeling before him. He realized that it was the real living Natasha, and he was not surprised but quietly happy. Natasha, motionless on her knees (she was unable to stir), with frightened eyes riveted on him, was restraining her sobs. Her face was pale and rigid. Only in the lower part of it something quivered. Prince Andrew sighed with relief, smiled, and held out his hand. "You?" he said. "How fortunate!" With a rapid but careful movement Natasha drew nearer to him on her knees and, taking his hand carefully, bent her face over it and began kissing it, just touching it lightly with her lips. "Forgive me!" she whispered, raising her head and glancing at him. "Forgive me!" "I love you," said Prince Andrew. "Forgive...!" "Forgive what?" he asked. "Forgive me for what I ha-ve do-ne!" faltered Natasha in a scarcely audible, broken whisper, and began kissing his hand more rapidly, just touching it with her lips. "I love you more, better than before," said Prince Andrew, lifting her face with his hand so as to look into her eyes. Those eyes, filled with happy tears, gazed at him timidly, compassionately, and with joyous love. Natasha's thin pale face, with its swollen lips, was more than plain--it was dreadful. But Prince Andrew did not see that, he saw her shining eyes which were beautiful. They heard the sound of voices behind them. Peter the valet, who was now wide awake, had roused the doctor. Timokhin, who had not slept at all because of the pain in his leg, had long been watching all that was going on, carefully covering his bare body with the sheet as he huddled up on his bench. "What's this?" said the doctor, rising from his bed. "Please go away, madam!" At that moment a maid sent by the countess, who had noticed her daughter's absence, knocked at the door. Like a somnambulist aroused from her sleep Natasha went out of the room and, returning to her hut, fell sobbing on her bed. From that time, during all the rest of the Rostovs' journey, at every halting place and wherever they spent a night, Natasha never left the wounded Bolkonski, and the doctor had to admit that he had not expected from a young girl either such firmness or such skill in nursing a wounded man. Dreadful as the countess imagined it would be should Prince Andrew die in her daughter's arms during the journey--as, judging by what the doctor said, it seemed might easily happen--she could not oppose Natasha. Though with the intimacy now established between the wounded man and Natasha the thought occurred that should he recover their former engagement would be renewed, no one--least of all Natasha and Prince Andrew--spoke of this: the unsettled question of life and death, which hung not only over Bolkonski but over all Russia, shut out all other considerations. CHAPTER XXXIII On the third of September Pierre awoke late. His head was aching, the clothes in which he had slept without undressing felt uncomfortable on his body, and his mind had a dim consciousness of something shameful he had done the day before. That something shameful was his yesterday's conversation with Captain Ramballe. It was eleven by the clock, but it seemed peculiarly dark out of doors. Pierre rose, rubbed his eyes, and seeing the pistol with an engraved stock which Gerasim had replaced on the writing table, he remembered where he was and what lay before him that very day. "Am I not too late?" he thought. "No, probably he won't make his entry into Moscow before noon." Pierre did not allow himself to reflect on what lay before him, but hastened to act. After arranging his clothes, he took the pistol and was about to go out. But it then occurred to him for the first time that he certainly could not carry the weapon in his hand through the streets. It was difficult to hide such a big pistol even under his wide coat. He could not carry it unnoticed in his belt or under his arm. Besides, it had been discharged, and he had not had time to reload it. "No matter, dagger will do," he said to himself, though when planning his design he had more than once come to the conclusion that the chief mistake made by the student in 1809 had been to try to kill Napoleon with a dagger. But as his chief aim consisted not in carrying out his design, but in proving to himself that he would not abandon his intention and was doing all he could to achieve it, Pierre hastily took the blunt jagged dagger in a green sheath which he had bought at the Sukharev market with the pistol, and hid it under his waistcoat. Having tied a girdle over his coat and pulled his cap low on his head, Pierre went down the corridor, trying to avoid making a noise or meeting the captain, and passed out into the street. The conflagration, at which he had looked with so much indifference the evening before, had greatly increased during the night. Moscow was on fire in several places. The buildings in Carriage Row, across the river, in the Bazaar and the Povarskoy, as well as the barges on the Moskva River and the timber yards by the Dorogomilov Bridge, were all ablaze. Pierre's way led through side streets to the Povarskoy and from there to the church of St. Nicholas on the Arbat, where he had long before decided that the deed should should be done. The gates of most of the houses were locked and the shutters up. The streets and lanes were deserted. The air was full of smoke and the smell of burning. Now and then he met Russians with anxious and timid faces, and Frenchmen with an air not of the city but of the camp, walking in the middle of the streets. Both the Russians and the French looked at Pierre with surprise. Besides his height and stoutness, and the strange morose look of suffering in his face and whole figure, the Russians stared at Pierre because they could not make out to what class he could belong. The French followed him with astonishment in their eyes chiefly because Pierre, unlike all the other Russians who gazed at the French with fear and curiosity, paid no attention to them. At the gate of one house three Frenchmen, who were explaining something to some Russians who did not understand them, stopped Pierre asking if he did not know French. Pierre shook his head and went on. In another side street a sentinel standing beside a green caisson shouted at him, but only when the shout was threateningly repeated and he heard the click of the man's musket as he raised it did Pierre understand that he had to pass on the other side of the street. He heard nothing and saw nothing of what went on around him. He carried his resolution within himself in terror and haste, like something dreadful and alien to him, for, after the previous night's experience, he was afraid of losing it. But he was not destined to bring his mood safely to his destination. And even had he not been hindered by anything on the way, his intention could not now have been carried out, for Napoleon had passed the Arbat more than four hours previously on his way from the Dorogomilov suburb to the Kremlin, and was now sitting in a very gloomy frame of mind in a royal study in the Kremlin, giving detailed and exact orders as to measures to be taken immediately to extinguish the fire, to prevent looting, and to reassure the inhabitants. But Pierre did not know this; he was entirely absorbed in what lay before him, and was tortured--as those are who obstinately undertake a task that is impossible for them not because of its difficulty but because of its incompatibility with their natures--by the fear of weakening at the decisive moment and so losing his self-esteem. Though he heard and saw nothing around him he found his way by instinct and did not go wrong in the side streets that led to the Povarskoy. As Pierre approached that street the smoke became denser and denser- he even felt the heat of the fire. Occasionally curly tongues of flame rose from under the roofs of the houses. He met more people in the streets and they were more excited. But Pierre, though he felt that something unusual was happening around him, did not realize that he was approaching the fire. As he was going along a foot path across a wide-open space adjoining the Povarskoy on one side and the gardens of Prince Gruzinski's house on the other, Pierre suddenly heard the desperate weeping of a woman close to him. He stopped as if awakening from a dream and lifted his head. By the side of the path, on the dusty dry grass, all sorts of household goods lay in a heap: featherbeds, a samovar, icons, and trunks. On the ground, beside the trunks, sat a thin woman no longer young, with long, prominent upper teeth, and wearing a black cloak and cap. This woman, swaying to and fro and muttering something, was choking with sobs. Two girls of about ten and twelve, dressed in dirty short frocks and cloaks, were staring at their mother with a look of stupefaction on their pale frightened faces. The youngest child, a boy of about seven, who wore an overcoat and an immense cap evidently not his own, was crying in his old nurse's arms. A dirty, barefooted maid was sitting on a trunk, and, having undone her pale-colored plait, was pulling it straight and sniffing at her singed hair. The woman's husband, a short, round-shouldered man in the undress uniform of a civilian official, with sausage-shaped whiskers and showing under his square-set cap the hair smoothly brushed forward over his temples, with expressionless face was moving the trunks, which were placed one on another, and was dragging some garments from under them. As soon as she saw Pierre, the woman almost threw herself at his feet. "Dear people, good Christians, save me, help me, dear friends... help us, somebody," she muttered between her sobs. "My girl... My daughter! My youngest daughter is left behind. She's burned! Ooh! Was it for this I nursed you.... Ooh!" "Don't, Mary Nikolievna!" said her husband to her in a low voice, evidently only to justify himself before the stranger. "Sister must have taken her, or else where can she be?" he added. "Monster! Villain!" shouted the woman angrily, suddenly ceasing to weep. "You have no heart, you don't feel for your own child! Another man would have rescued her from the fire. But this is a monster and neither a man nor a father! You, honored sir, are a noble man," she went on, addressing Pierre rapidly between her sobs. "The fire broke out alongside, and blew our way, the maid called out 'Fire!' and we rushed to collect our things. We ran out just as we were.... This is what we have brought away.... The icons, and my dowry bed, all the rest is lost. We seized the children. But not Katie! Ooh! O Lord!..." and again she began to sob. "My child, my dear one! Burned, burned!" "But where was she left?" asked Pierre. From the expression of his animated face the woman saw that this man might help her. "Oh, dear sir!" she cried, seizing him by the legs. "My benefactor, set my heart at ease.... Aniska, go, you horrid girl, show him the way!" she cried to the maid, angrily opening her mouth and still farther exposing her long teeth. "Show me the way, show me, I... I'll do it," gasped Pierre rapidly. The dirty maidservant stepped from behind the trunk, put up her plait, sighed, and went on her short, bare feet along the path. Pierre felt as if he had come back to life after a heavy swoon. He held his head higher, his eyes shone with the light of life, and with swift steps he followed the maid, overtook her, and came out on the Povarskoy. The whole street was full of clouds of black smoke. Tongues of flame here and there broke through that cloud. A great number of people crowded in front of the conflagration. In the middle of the street stood a French general saying something to those around him. Pierre, accompanied by the maid, was advancing to the spot where the general stood, but the French soldiers stopped him. "On ne passe pas!"* cried a voice. *"You can't pass! "This way, uncle," cried the girl. "We'll pass through the side street, by the Nikulins'!" Pierre turned back, giving a spring now and then to keep up with her. She ran across the street, turned down a side street to the left, and, passing three houses, turned into a yard on the right. "It's here, close by," said she and, running across the yard, opened a gate in a wooden fence and, stopping, pointed out to him a small wooden wing of the house, which was burning brightly and fiercely. One of its sides had fallen in, another was on fire, and bright flames issued from the openings of the windows and from under the roof. As Pierre passed through the fence gate, he was enveloped by hot air and involuntarily stopped. "Which is it? Which is your house?" he asked. "Ooh!" wailed the girl, pointing to the wing. "That's it, that was our lodging. You've burned to death, our treasure, Katie, my precious little missy! Ooh!" lamented Aniska, who at the sight of the fire felt that she too must give expression to her feelings. Pierre rushed to the wing, but the heat was so great that he involuntarily passed round in a curve and came upon the large house that was as yet burning only at one end, just below the roof, and around which swarmed a crowd of Frenchmen. At first Pierre did not realize what these men, who were dragging something out, were about; but seeing before him a Frenchman hitting a peasant with a blunt saber and trying to take from him a fox-fur coat, he vaguely understood that looting was going on there, but he had no time to dwell on that idea. The sounds of crackling and the din of falling walls and ceilings, the whistle and hiss of the flames, the excited shouts of the people, and the sight of the swaying smoke, now gathering into thick black clouds and now soaring up with glittering sparks, with here and there dense sheaves of flame (now red and now like golden fish scales creeping along the walls), and the heat and smoke and rapidity of motion, produced on Pierre the usual animating effects of a conflagration. It had a peculiarly strong effect on him because at the sight of the fire he felt himself suddenly freed from the ideas that had weighed him down. He felt young, bright, adroit, and resolute. He ran round to the other side of the lodge and was about to dash into that part of it which was still standing, when just above his head he heard several voices shouting and then a cracking sound and the ring of something heavy falling close beside him. Pierre looked up and saw at a window of the large house some Frenchmen who had just thrown out the drawer of a chest, filled with metal articles. Other French soldiers standing below went up to the drawer. "What does this fellow want?" shouted one of them referring to Pierre. "There's a child in that house. Haven't you seen a child?" cried Pierre. "What's he talking about? Get along!" said several voices, and one of the soldiers, evidently afraid that Pierre might want to take from them some of the plate and bronzes that were in the drawer, moved threateningly toward him. "A child?" shouted a Frenchman from above. "I did hear something squealing in the garden. Perhaps it's his brat that the fellow is looking for. After all, one must be human, you know...." "Where is it? Where?" said Pierre. "There! There!" shouted the Frenchman at the window, pointing to the garden at the back of the house. "Wait a bit--I'm coming down." And a minute or two later the Frenchman, a black-eyed fellow with a spot on his cheek, in shirt sleeves, really did jump out of a window on the ground floor, and clapping Pierre on the shoulder ran with him into the garden. "Hurry up, you others!" he called out to his comrades. "It's getting hot." When they reached a gravel path behind the house the Frenchman pulled Pierre by the arm and pointed to a round, graveled space where a three-year-old girl in a pink dress was lying under a seat. "There is your child! Oh, a girl, so much the better!" said the Frenchman. "Good-by, Fatty. We must be human, we are all mortal you know!" and the Frenchman with the spot on his cheek ran back to his comrades. Breathless with joy, Pierre ran to the little girl and was going to take her in his arms. But seeing a stranger the sickly, scrofulous-looking child, unattractively like her mother, began to yell and run away. Pierre, however, seized her and lifted her in his arms. She screamed desperately and angrily and tried with her little hands to pull Pierre's hands away and to bite them with her slobbering mouth. Pierre was seized by a sense of horror and repulsion such as he had experienced when touching some nasty little animal. But he made an effort not to throw the child down and ran with her to the large house. It was now, however, impossible to get back the way he had come; the maid, Aniska, was no longer there, and Pierre with a feeling of pity and disgust pressed the wet, painfully sobbing child to himself as tenderly as he could and ran with her through the garden seeking another way out. CHAPTER XXXIV Having run through different yards and side streets, Pierre got back with his little burden to the Gruzinski garden at the corner of the Povarskoy. He did not at first recognize the place from which he had set out to look for the child, so crowded was it now with people and goods that had been dragged out of the houses. Besides Russian families who had taken refuge here from the fire with their belongings, there were several French soldiers in a variety of clothing. Pierre took no notice of them. He hurried to find the family of that civil servant in order to restore the daughter to her mother and go to save someone else. Pierre felt that he had still much to do and to do quickly. Glowing with the heat and from running, he felt at that moment more strongly than ever the sense of youth, animation, and determination that had come on him when he ran to save the child. She had now become quiet and, clinging with her little hands to Pierre's coat, sat on his arm gazing about her like some little wild animal. He glanced at her occasionally with a slight smile. He fancied he saw something pathetically innocent in that frightened, sickly little face. He did not find the civil servant or his wife where he had left them. He walked among the crowd with rapid steps, scanning the various faces he met. Involuntarily he noticed a Georgian or Armenian family consisting of a very handsome old man of Oriental type, wearing a new, cloth-covered, sheepskin coat and new boots, an old woman of similar type, and a young woman. That very young woman seemed to Pierre the perfection of Oriental beauty, with her sharply outlined, arched, black eyebrows and the extraordinarily soft, bright color of her long, beautiful, expressionless face. Amid the scattered property and the crowd on the open space, she, in her rich satin cloak with a bright lilac shawl on her head, suggested a delicate exotic plant thrown out onto the snow. She was sitting on some bundles a little behind the old woman, and looked from under her long lashes with motionless, large, almond-shaped eyes at the ground before her. Evidently she was aware of her beauty and fearful because of it. Her face struck Pierre and, hurrying along by the fence, he turned several times to look at her. When he had reached the fence, still without finding those he sought, he stopped and looked about him. With the child in his arms his figure was now more conspicuous than before, and a group of Russians, both men and women, gathered about him. "Have you lost anyone, my dear fellow? You're of the gentry yourself, aren't you? Whose child is it?" they asked him. Pierre replied that the child belonged to a woman in a black coat who had been sitting there with her other children, and he asked whether anyone knew where she had gone. "Why, that must be the Anferovs," said an old deacon, addressing a pockmarked peasant woman. "Lord have mercy, Lord have mercy!" he added in his customary bass. "The Anferovs? No," said the woman. "They left in the morning. That must be either Mary Nikolievna's or the Ivanovs'!" "He says 'a woman,' and Mary Nikolievna is a lady," remarked a house serf. "Do you know her? She's thin, with long teeth," said Pierre. "That's Mary Nikolievna! They went inside the garden when these wolves swooped down," said the woman, pointing to the French soldiers. "O Lord, have mercy!" added the deacon. "Go over that way, they're there. It's she! She kept on lamenting and crying," continued the woman. "It's she. Here, this way!" But Pierre was not listening to the woman. He had for some seconds been intently watching what was going on a few steps away. He was looking at the Armenian family and at two French soldiers who had gone up to them. One of these, a nimble little man, was wearing a blue coat tied round the waist with a rope. He had a nightcap on his head and his feet were bare. The other, whose appearance particularly struck Pierre, was a long, lank, round-shouldered, fair-haired man, slow in his movements and with an idiotic expression of face. He wore a woman's loose gown of frieze, blue trousers, and large torn Hessian boots. The little barefooted Frenchman in the blue coat went up to the Armenians and, saying something, immediately seized the old man by his legs and the old man at once began pulling off his boots. The other in the frieze gown stopped in front of the beautiful Armenian girl and with his hands in his pockets stood staring at her, motionless and silent. "Here, take the child!" said Pierre peremptorily and hurriedly to the woman, handing the little girl to her. "Give her back to them, give her back!" he almost shouted, putting the child, who began screaming, on the ground, and again looking at the Frenchman and the Armenian family. The old man was already sitting barefoot. The little Frenchman had secured his second boot and was slapping one boot against the other. The old man was saying something in a voice broken by sobs, but Pierre caught but a glimpse of this, his whole attention was directed to the Frenchman in the frieze gown who meanwhile, swaying slowly from side to side, had drawn nearer to the young woman and taking his hands from his pockets had seized her by the neck. The beautiful Armenian still sat motionless and in the same attitude, with her long lashes drooping as if she did not see or feel what the soldier was doing to her. While Pierre was running the few steps that separated him from the Frenchman, the tall marauder in the frieze gown was already tearing from her neck the necklace the young Armenian was wearing, and the young woman, clutching at her neck, screamed piercingly. "Let that woman alone!" exclaimed Pierre hoarsely in a furious voice, seizing the soldier by his round shoulders and throwing him aside. The soldier fell, got up, and ran away. But his comrade, throwing down the boots and drawing his sword, moved threateningly toward Pierre. "Voyons, Pas de betises!"* he cried. *"Look here, no nonsense!" Pierre was in such a transport of rage that he remembered nothing and his strength increased tenfold. He rushed at the barefooted Frenchman and, before the latter had time to draw his sword, knocked him off his feet and hammered him with his fists. Shouts of approval were heard from the crowd around, and at the same moment a mounted patrol of French Uhlans appeared from round the corner. The Uhlans came up at a trot to Pierre and the Frenchman and surrounded them. Pierre remembered nothing of what happened after that. He only remembered beating someone and being beaten and finally feeling that his hands were bound and that a crowd of French soldiers stood around him and were searching him. "Lieutenant, he has a dagger," were the first words Pierre understood. "Ah, a weapon?" said the officer and turned to the barefooted soldier who had been arrested with Pierre. "All right, you can tell all about it at the court-martial." Then he turned to Pierre. "Do you speak French?" Pierre looked around him with bloodshot eyes and did not reply. His face probably looked very terrible, for the officer said something in a whisper and four more Uhlans left the ranks and placed themselves on both sides of Pierre. "Do you speak French?" the officer asked again, keeping at a distance from Pierre. "Call the interpreter." A little man in Russian civilian clothes rode out from the ranks, and by his clothes and manner of speaking Pierre at once knew him to be a French salesman from one of the Moscow shops. "He does not look like a common man," said the interpreter, after a searching look at Pierre. "Ah, he looks very much like an incendiary," remarked the officer. "And ask him who he is," he added. "Who are you?" asked the interpreter in poor Russian. "You must answer the chief." "I will not tell you who I am. I am your prisoner--take me!" Pierre suddenly replied in French. "Ah, ah!" muttered the officer with a frown. "Well then, march!" A crowd had collected round the Uhlans. Nearest to Pierre stood the pockmarked peasant woman with the little girl, and when the patrol started she moved forward. "Where are they taking you to, you poor dear?" said she. "And the little girl, the little girl, what am I to do with her if she's not theirs?" said the woman. "What does that woman want?" asked the officer. Pierre was as if intoxicated. His elation increased at the sight of the little girl he had saved. "What does she want?" he murmured. "She is bringing me my daughter whom I have just saved from the flames," said he. "Good-by!" And without knowing how this aimless lie had escaped him, he went along with resolute and triumphant steps between the French soldiers. The French patrol was one of those sent out through the various streets of Moscow by Durosnel's order to put a stop to the pillage, and especially to catch the incendiaries who, according to the general opinion which had that day originated among the higher French officers, were the cause of the conflagrations. After marching through a number of streets the patrol arrested five more Russian suspects: a small shopkeeper, two seminary students, a peasant, and a house serf, besides several looters. But of all these various suspected characters, Pierre was considered to be the most suspicious of all. When they had all been brought for the night to a large house on the Zubov Rampart that was being used as a guardhouse, Pierre was placed apart under strict guard. BOOK TWELVE: 1812 CHAPTER I In Petersburg at that time a complicated struggle was being carried on with greater heat than ever in the highest circles, between the parties of Rumyantsev, the French, Marya Fedorovna, the Tsarevich, and others, drowned as usual by the buzzing of the court drones. But the calm, luxurious life of Petersburg, concerned only about phantoms and reflections of real life, went on in its old way and made it hard, except by a great effort, to realize the danger and the difficult position of the Russian people. There were the same receptions and balls, the same French theater, the same court interests and service interests and intrigues as usual. Only in the very highest circles were attempts made to keep in mind the difficulties of the actual position. Stories were whispered of how differently the two Empresses behaved in these difficult circumstances. The Empress Marya, concerned for the welfare of the charitable and educational institutions under her patronage, had given directions that they should all be removed to Kazan, and the things belonging to these institutions had already been packed up. The Empress Elisabeth, however, when asked what instructions she would be pleased to give--with her characteristic Russian patriotism had replied that she could give no directions about state institutions for that was the affair of the sovereign, but as far as she personally was concerned she would be the last to quit Petersburg. At Anna Pavlovna's on the twenty-sixth of August, the very day of the battle of Borodino, there was a soiree, the chief feature of which was to be the reading of a letter from His Lordship the Bishop when sending the Emperor an icon of the Venerable Sergius. It was regarded as a model of ecclesiastical, patriotic eloquence. Prince Vasili himself, famed for his elocution, was to read it. (He used to read at the Empress'.) The art of his reading was supposed to lie in rolling out the words, quite independently of their meaning, in a loud and singsong voice alternating between a despairing wail and a tender murmur, so that the wail fell quite at random on one word and the murmur on another. This reading, as was always the case at Anna Pavlovna's soirees, had a political significance. That evening she expected several important personages who had to be made ashamed of their visits to the French theater and aroused to a patriotic temper. A good many people had already arrived, but Anna Pavlovna, not yet seeing all those whom she wanted in her drawing room, did not let the reading begin but wound up the springs of a general conversation. The news of the day in Petersburg was the illness of Countess Bezukhova. She had fallen ill unexpectedly a few days previously, had missed several gatherings of which she was usually ornament, and was said to be receiving no one, and instead of the celebrated Petersburg doctors who usually attended her had entrusted herself to some Italian doctor who was treating her in some new and unusual way. They all knew very well that the enchanting countess' illness arose from an inconvenience resulting from marrying two husbands at the same time, and that the Italian's cure consisted in removing such inconvenience; but in Anna Pavlovna's presence no one dared to think of this or even appear to know it. "They say the poor countess is very ill. The doctor says it is angina pectoris." "Angina? Oh, that's a terrible illness!" "They say that the rivals are reconciled, thanks to the angina..." and the word angina was repeated with great satisfaction. "The count is pathetic, they say. He cried like a child when the doctor told him the case was dangerous." "Oh, it would be a terrible loss, she is an enchanting woman." "You are speaking of the poor countess?" said Anna Pavlovna, coming up just then. "I sent to ask for news, and hear that she is a little better. Oh, she is certainly the most charming woman in the world," she went on, with a smile at her own enthusiasm. "We belong to different camps, but that does not prevent my esteeming her as she deserves. She is very unfortunate!" added Anna Pavlovna. Supposing that by these words Anna Pavlovna was somewhat lifting the veil from the secret of the countess' malady, an unwary young man ventured to express surprise that well known doctors had not been called in and that the countess was being attended by a charlatan who might employ dangerous remedies. "Your information maybe better than mine," Anna Pavlovna suddenly and venomously retorted on the inexperienced young man, "but I know on good authority that this doctor is a very learned and able man. He is private physician to the Queen of Spain." And having thus demolished the young man, Anna Pavlovna turned to another group where Bilibin was talking about the Austrians: having wrinkled up his face he was evidently preparing to smooth it out again and utter one of his mots. "I think it is delightful," he said, referring to a diplomatic note that had been sent to Vienna with some Austrian banners captured from the French by Wittgenstein, "the hero of Petropol" as he was then called in Petersburg. "What? What's that?" asked Anna Pavlovna, securing silence for the mot, which she had heard before. And Bilibin repeated the actual words of the diplomatic dispatch, which he had himself composed. "The Emperor returns these Austrian banners," said Bilibin, "friendly banners gone astray and found on a wrong path," and his brow became smooth again. "Charming, charming!" observed Prince Vasili. "The path to Warsaw, perhaps," Prince Hippolyte remarked loudly and unexpectedly. Everybody looked at him, understanding what he meant. Prince Hippolyte himself glanced around with amused surprise. He knew no more than the others what his words meant. During his diplomatic career he had more than once noticed that such utterances were received as very witty, and at every opportunity he uttered in that way the first words that entered his head. "It may turn out very well," he thought, "but if not, they'll know how to arrange matters." And really, during the awkward silence that ensued, that insufficiently patriotic person entered whom Anna Pavlovna had been waiting for and wished to convert, and she, smiling and shaking a finger at Hippolyte, invited Prince Vasili to the table and bringing him two candles and the manuscript begged him to begin. Everyone became silent. "Most Gracious Sovereign and Emperor!" Prince Vasili sternly declaimed, looking round at his audience as if to inquire whether anyone had anything to say to the contrary. But no one said anything. "Moscow, our ancient capital, the New Jerusalem, receives her Christ"--he placed a sudden emphasis on the word her--"as a mother receives her zealous sons into her arms, and through the gathering mists, foreseeing the brilliant glory of thy rule, sings in exultation, 'Hosanna, blessed is he that cometh!'" Prince Vasili pronounced these last words in a tearful voice. Bilibin attentively examined his nails, and many of those present appeared intimidated, as if asking in what they were to blame. Anna Pavlovna whispered the next words in advance, like an old woman muttering the prayer at Communion: "Let the bold and insolent Goliath..." she whispered. Prince Vasili continued. "Let the bold and insolent Goliath from the borders of France encompass the realms of Russia with death-bearing terrors; humble Faith, the sling of the Russian David, shall suddenly smite his head in his blood-thirsty pride. This icon of the Venerable Sergius, the servant of God and zealous champion of old of our country's weal, is offered to Your Imperial Majesty. I grieve that my waning strength prevents rejoicing in the sight of your most gracious presence. I raise fervent prayers to Heaven that the Almighty may exalt the race of the just, and mercifully fulfill the desires of Your Majesty." "What force! What a style!" was uttered in approval both of reader and of author. Animated by that address Anna Pavlovna's guests talked for a long time of the state of the fatherland and offered various conjectures as to the result of the battle to be fought in a few days. "You will see," said Anna Pavlovna, "that tomorrow, on the Emperor's birthday, we shall receive news. I have a favorable presentiment!" CHAPTER II Anna Pavlovna's presentiment was in fact fulfilled. Next day during the service at the palace church in honor of the Emperor's birthday, Prince Volkonski was called out of the church and received a dispatch from Prince Kutuzov. It was Kutuzov's report, written from Tatarinova on the day of the battle. Kutuzov wrote that the Russians had not retreated a step, that the French losses were much heavier than ours, and that he was writing in haste from the field of battle before collecting full information. It followed that there must have been a victory. And at once, without leaving the church, thanks were rendered to the Creator for His help and for the victory. Anna Pavlovna's presentiment was justified, and all that morning a joyously festive mood reigned in the city. Everyone believed the victory to have been complete, and some even spoke of Napoleon's having been captured, of his deposition, and of the choice of a new ruler for France. It is very difficult for events to be reflected in their real strength and completeness amid the conditions of court life and far from the scene of action. General events involuntarily group themselves around some particular incident. So now the courtiers' pleasure was based as much on the fact that the news had arrived on the Emperor's birthday as on the fact of the victory itself. It was like a successfully arranged surprise. Mention was made in Kutuzov's report of the Russian losses, among which figured the names of Tuchkov, Bagration, and Kutaysov. In the Petersburg world this sad side of the affair again involuntarily centered round a single incident: Kutaysov's death. Everybody knew him, the Emperor liked him, and he was young and interesting. That day everyone met with the words: "What a wonderful coincidence! Just during the service. But what a loss Kutaysov is! How sorry I am!" "What did I tell about Kutuzov?" Prince Vasili now said with a prophet's pride. "I always said he was the only man capable of defeating Napoleon." But next day no news arrived from the army and the public mood grew anxious. The courtiers suffered because of the suffering the suspense occasioned the Emperor. "Fancy the Emperor's position!" said they, and instead of extolling Kutuzov as they had done the day before, they condemned him as the cause of the Emperor's anxiety. That day Prince Vasili no longer boasted of his protege Kutuzov, but remained silent when the commander in chief was mentioned. Moreover, toward evening, as if everything conspired to make Petersburg society anxious and uneasy, a terrible piece of news was added. Countess Helene Bezukhova had suddenly died of that terrible malady it had been so agreeable to mention. Officially, at large gatherings, everyone said that Countess Bezukhova had died of a terrible attack of angina pectoris, but in intimate circles details were mentioned of how the private physician of the Queen of Spain had prescribed small doses of a certain drug to produce a certain effect; but Helene, tortured by the fact that the old count suspected her and that her husband to whom she had written (that wretched, profligate Pierre) had not replied, had suddenly taken a very large dose of the drug, and had died in agony before assistance could be rendered her. It was said that Prince Vasili and the old count had turned upon the Italian, but the latter had produced such letters from the unfortunate deceased that they had immediately let the matter drop. Talk in general centered round three melancholy facts: the Emperor's lack of news, the loss of Kutuzov, and the death of Helene. On the third day after Kutuzov's report a country gentleman arrived from Moscow, and news of the surrender of Moscow to the French spread through the whole town. This was terrible! What a position for the Emperor to be in! Kutuzov was a traitor, and Prince Vasili during the visits of condolence paid to him on the occasion of his daughter's death said of Kutuzov, whom he had formerly praised (it was excusable for him in his grief to forget what he had said), that it was impossible to expect anything else from a blind and depraved old man. "I only wonder that the fate of Russia could have been entrusted to such a man." As long as this news remained unofficial it was possible to doubt it, but the next day the following communication was received from Count Rostopchin: Prince Kutuzov's adjutant has brought me a letter in which he demands police officers to guide the army to the Ryazan road. He writes that he is regretfully abandoning Moscow. Sire! Kutuzov's action decides the fate of the capital and of your empire! Russia will shudder to learn of the abandonment of the city in which her greatness is centered and in which lie the ashes of your ancestors! I shall follow the army. I have had everything removed, and it only remains for me to weep over the fate of my fatherland. On receiving this dispatch the Emperor sent Prince Volkonski to Kutuzov with the following rescript: Prince Michael Ilarionovich! Since the twenty-ninth of August I have received no communication from you, yet on the first of September I received from the commander in chief of Moscow, via Yaroslavl, the sad news that you, with the army, have decided to abandon Moscow. You can yourself imagine the effect this news has had on me, and your silence increases my astonishment. I am sending this by Adjutant-General Prince Volkonski, to hear from you the situation of the army and the reasons that have induced you to take this melancholy decision. CHAPTER III Nine days after the abandonment of Moscow, a messenger from Kutuzov reached Petersburg with the official announcement of that event. This messenger was Michaud, a Frenchman who did not know Russian, but who was quoique etranger, russe de coeur et d'ame,* as he said of himself. *Though a foreigner, Russian in heart and soul. The Emperor at once received this messenger in his study at the palace on Stone Island. Michaud, who had never seen Moscow before the campaign and who did not know Russian, yet felt deeply moved (as he wrote) when he appeared before notre tres gracieux souverain* with the news of the burning of Moscow, dont les flammes eclairaient sa route.*[2] *Our most gracious sovereign. *[2] Whose flames illumined his route. Though the source of M. Michaud's chagrin must have been different from that which caused Russians to grieve, he had such a sad face when shown into the Emperor's study that the latter at once asked: "Have you brought me sad news, Colonel?" "Very sad, sire," replied Michaud, lowering his eyes with a sigh. "The abandonment of Moscow." "Have they surrendered my ancient capital without a battle?" asked the Emperor quickly, his face suddenly flushing. Michaud respectfully delivered the message Kutuzov had entrusted to him, which was that it had been impossible to fight before Moscow, and that as the only remaining choice was between losing the army as well as Moscow, or losing Moscow alone, the field marshal had to choose the latter. The Emperor listened in silence, not looking at Michaud. "Has the enemy entered the city?" he asked. "Yes, sire, and Moscow is now in ashes. I left it all in flames," replied Michaud in a decided tone, but glancing at the Emperor he was frightened by what he had done. The Emperor began to breathe heavily and rapidly, his lower lip trembled, and tears instantly appeared in his fine blue eyes. But this lasted only a moment. He suddenly frowned, as if blaming himself for his weakness, and raising his head addressed Michaud in a firm voice: "I see, Colonel, from all that is happening, that Providence requires great sacrifices of us... I am ready to submit myself in all things to His will; but tell me, Michaud, how did you leave the army when it saw my ancient capital abandoned without a battle? Did you not notice discouragement?..." Seeing that his most gracious ruler was calm once more, Michaud also grew calm, but was not immediately ready to reply to the Emperor's direct and relevant question which required a direct answer. "Sire, will you allow me to speak frankly as befits a loyal soldier?" he asked to gain time. "Colonel, I always require it," replied the Emperor. "Conceal nothing from me, I wish to know absolutely how things are." "Sire!" said Michaud with a subtle, scarcely perceptible smile on his lips, having now prepared a well-phrased reply, "sire, I left the whole army, from its chiefs to the lowest soldier, without exception in desperate and agonized terror..." "How is that?" the Emperor interrupted him, frowning sternly. "Would misfortune make my Russians lose heart?... Never!" Michaud had only waited for this to bring out the phrase he had prepared. "Sire," he said, with respectful playfulness, "they are only afraid lest Your Majesty, in the goodness of your heart, should allow yourself to be persuaded to make peace. They are burning for the combat," declared this representative of the Russian nation, "and to prove to Your Majesty by the sacrifice of their lives how devoted they are...." "Ah!" said the Emperor reassured, and with a kindly gleam in his eyes, he patted Michaud on the shoulder. "You set me at ease, Colonel." He bent his head and was silent for some time. "Well, then, go back to the army," he said, drawing himself up to his full height and addressing Michaud with a gracious and majestic gesture, "and tell our brave men and all my good subjects wherever you go that when I have not a soldier left I shall put myself at the head of my beloved nobility and my good peasants and so use the last resources of my empire. It still offers me more than my enemies suppose," said the Emperor growing more and more animated; "but should it ever be ordained by Divine Providence," he continued, raising to heaven his fine eyes shining with emotion, "that my dynasty should cease to reign on the throne of my ancestors, then after exhausting all the means at my command, I shall let my beard grow to here" (he pointed halfway down his chest) "and go and eat potatoes with the meanest of my peasants, rather than sign the disgrace of my country and of my beloved people whose sacrifices I know how to appreciate." Having uttered these words in an agitated voice the Emperor suddenly turned away as if to hide from Michaud the tears that rose to his eyes, and went to the further end of his study. Having stood there a few moments, he strode back to Michaud and pressed his arm below the elbow with a vigorous movement. The Emperor's mild and handsome face was flushed and his eyes gleamed with resolution and anger. "Colonel Michaud, do not forget what I say to you here, perhaps we may recall it with pleasure someday... Napoleon or I," said the Emperor, touching his breast. "We can no longer both reign together. I have learned to know him, and he will not deceive me any more...." And the Emperor paused, with a frown. When he heard these words and saw the expression of firm resolution in the Emperor's eyes, Michaud--quoique etranger, russe de coeur et d'ame--at that solemn moment felt himself enraptured by all that he had heard (as he used afterwards to say), and gave expression to his own feelings and those of the Russian people whose representative he considered himself to be, in the following words: "Sire!" said he, "Your Majesty is at this moment signing the glory of the nation and the salvation of Europe!" With an inclination of the head the Emperor dismissed him. CHAPTER IV It is natural for us who were not living in those days to imagine that when half Russia had been conquered and the inhabitants were fleeing to distant provinces, and one levy after another was being raised for the defense of the fatherland, all Russians from the greatest to the least were solely engaged in sacrificing themselves, saving their fatherland, or weeping over its downfall. The tales and descriptions of that time without exception speak only of the self-sacrifice, patriotic devotion, despair, grief, and the heroism of the Russians. But it was not really so. It appears so to us because we see only the general historic interest of that time and do not see all the personal human interests that people had. Yet in reality those personal interests of the moment so much transcend the general interests that they always prevent the public interest from being felt or even noticed. Most of the people at that time paid no attention to the general progress of events but were guided only by their private interests, and they were the very people whose activities at that period were most useful. Those who tried to understand the general course of events and to take part in it by self-sacrifice and heroism were the most useless members of society, they saw everything upside down, and all they did for the common good turned out to be useless and foolish--like Pierre's and Mamonov's regiments which looted Russian villages, and the lint the young ladies prepared and that never reached the wounded, and so on. Even those, fond of intellectual talk and of expressing their feelings, who discussed Russia's position at the time involuntarily introduced into their conversation either a shade of pretense and falsehood or useless condemnation and anger directed against people accused of actions no one could possibly be guilty of. In historic events the rule forbidding us to eat of the fruit of the Tree of Knowledge is specially applicable. Only unconscious action bears fruit, and he who plays a part in an historic event never understands its significance. If he tries to realize it his efforts are fruitless. The more closely a man was engaged in the events then taking place in Russia the less did he realize their significance. In Petersburg and in the provinces at a distance from Moscow, ladies, and gentlemen in militia uniforms, wept for Russia and its ancient capital and talked of self-sacrifice and so on; but in the army which retired beyond Moscow there was little talk or thought of Moscow, and when they caught sight of its burned ruins no one swore to be avenged on the French, but they thought about their next pay, their next quarters, of Matreshka the vivandiere, and like matters. As the war had caught him in the service, Nicholas Rostov took a close and prolonged part in the defense of his country, but did so casually, without any aim at self-sacrifice, and he therefore looked at what was going on in Russia without despair and without dismally racking his brains over it. Had he been asked what he thought of the state of Russia, he would have said that it was not his business to think about it, that Kutuzov and others were there for that purpose, but that he had heard that the regiments were to be made up to their full strength, that fighting would probably go on for a long time yet, and that things being so it was quite likely he might be in command of a regiment in a couple of years' time. As he looked at the matter in this way, he learned that he was being sent to Voronezh to buy remounts for his division, not only without regret at being prevented from taking part in the coming battle, but with the greatest pleasure--which he did not conceal and which his comrades fully understood. A few days before the battle of Borodino, Nicholas received the necessary money and warrants, and having sent some hussars on in advance, he set out with post horses for Voronezh. Only a man who has experienced it--that is, has passed some months continuously in an atmosphere of campaigning and war--can understand the delight Nicholas felt when he escaped from the region covered by the army's foraging operations, provision trains, and hospitals. When- free from soldiers, wagons, and the filthy traces of a camp--he saw villages with peasants and peasant women, gentlemen's country houses, fields where cattle were grazing, posthouses with stationmasters asleep in them, he rejoiced as though seeing all this for the first time. What for a long while specially surprised and delighted him were the women, young and healthy, without a dozen officers making up to each of them; women, too, who were pleased and flattered that a passing officer should joke with them. In the highest spirits Nicholas arrived at night at a hotel in Voronezh, ordered things he had long been deprived of in camp, and next day, very clean-shaven and in a full-dress uniform he had not worn for a long time, went to present himself to the authorities. The commander of the militia was a civilian general, an old man who was evidently pleased with his military designation and rank. He received Nicholas brusquely (imagining this to be characteristically military) and questioned him with an important air, as if considering the general progress of affairs and approving and disapproving with full right to do so. Nicholas was in such good spirits that this merely amused him. From the commander of the militia he drove to the governor. The governor was a brisk little man, very simple and affable. He indicated the stud farms at which Nicholas might procure horses, recommended to him a horse dealer in the town and a landowner fourteen miles out of town who had the best horses, and promised to assist him in every way. "You are Count Ilya Rostov's son? My wife was a great friend of your mother's. We are at home on Thursdays--today is Thursday, so please come and see us quite informally," said the governor, taking leave of him. Immediately on leaving the governor's, Nicholas hired post horses and, taking his squadron quartermaster with him, drove at a gallop to the landowner, fourteen miles away, who had the stud. Everything seemed to him pleasant and easy during that first part of his stay in Voronezh and, as usually happens when a man is in a pleasant state of mind, everything went well and easily. The landowner to whom Nicholas went was a bachelor, an old cavalryman, a horse fancier, a sportsman, the possessor of some century-old brandy and some old Hungarian wine, who had a snuggery where he smoked, and who owned some splendid horses. In very few words Nicholas bought seventeen picked stallions for six thousand rubles--to serve, as he said, as samples of his remounts. After dining and taking rather too much of the Hungarian wine, Nicholas--having exchanged kisses with the landowner, with whom he was already on the friendliest terms--galloped back over abominable roads, in the brightest frame of mind, continually urging on the driver so as to be in time for the governor's party. When he had changed, poured water over his head, and scented himself, Nicholas arrived at the governor's rather late, but with the phrase "better late than never" on his lips. It was not a ball, nor had dancing been announced, but everyone knew that Catherine Petrovna would play valses and the ecossaise on the clavichord and that there would be dancing, and so everyone had come as to a ball. Provincial life in 1812 went on very much as usual, but with this difference, that it was livelier in the towns in consequence of the arrival of many wealthy families from Moscow, and as in everything that went on in Russia at that time a special recklessness was noticeable, an "in for a penny, in for a pound--who cares?" spirit, and the inevitable small talk, instead of turning on the weather and mutual acquaintances, now turned on Moscow, the army, and Napoleon. The society gathered together at the governor's was the best in Voronezh. There were a great many ladies and some of Nicholas' Moscow acquaintances, but there were no men who could at all vie with the cavalier of St. George, the hussar remount officer, the good-natured and well-bred Count Rostov. Among the men was an Italian prisoner, an officer of the French army; and Nicholas felt that the presence of that prisoner enhanced his own importance as a Russian hero. The Italian was, as it were, a war trophy. Nicholas felt this, it seemed to him that everyone regarded the Italian in the same light, and he treated him cordially though with dignity and restraint. As soon as Nicholas entered in his hussar uniform, diffusing around him a fragrance of perfume and wine, and had uttered the words "better late than never" and heard them repeated several times by others, people clustered around him; all eyes turned on him, and he felt at once that he had entered into his proper position in the province--that of a universal favorite: a very pleasant position, and intoxicatingly so after his long privations. At posting stations, at inns, and in the landowner's snuggery, maidservants had been flattered by his notice, and here too at the governor's party there were (as it seemed to Nicholas) an inexhaustible number of pretty young women, married and unmarried, impatiently awaiting his notice. The women and girls flirted with him and, from the first day, the people concerned themselves to get this fine young daredevil of an hussar married and settled down. Among these was the governor's wife herself, who welcomed Rostov as a near relative and called him "Nicholas." Catherine Petrovna did actually play valses and the ecossaise, and dancing began in which Nicholas still further captivated the provincial society by his agility. His particularly free manner of dancing even surprised them all. Nicholas was himself rather surprised at the way he danced that evening. He had never danced like that in Moscow and would even have considered such a very free and easy manner improper and in bad form, but here he felt it incumbent on him to astonish them all by something unusual, something they would have to accept as the regular thing in the capital though new to them in the provinces. All the evening Nicholas paid attention to a blue-eyed, plump and pleasing little blonde, the wife of one of the provincial officials. With the naive conviction of young men in a merry mood that other men's wives were created for them, Rostov did not leave the lady's side and treated her husband in a friendly and conspiratorial style, as if, without speaking of it, they knew how capitally Nicholas and the lady would get on together. The husband, however, did not seem to share that conviction and tried to behave morosely with Rostov. But the latter's good-natured naivete was so boundless that sometimes even he involuntarily yielded to Nicholas' good humor. Toward the end of the evening, however, as the wife's face grew more flushed and animated, the husband's became more and more melancholy and solemn, as though there were but a given amount of animation between them and as the wife's share increased the husband's diminished. CHAPTER V Nicholas sat leaning slightly forward in an armchair, bending closely over the blonde lady and paying her mythological compliments with a smile that never left his face. Jauntily shifting the position of his legs in their tight riding breeches, diffusing an odor of perfume, and admiring his partner, himself, and the fine outlines of his legs in their well-fitting Hessian boots, Nicholas told the blonde lady that he wished to run away with a certain lady here in Voronezh. "Which lady?" "A charming lady, a divine one. Her eyes" (Nicholas looked at his partner) "are blue, her mouth coral and ivory; her figure" (he glanced at her shoulders) "like Diana's...." The husband came up and sullenly asked his wife what she was talking about. "Ah, Nikita Ivanych!" cried Nicholas, rising politely, and as if wishing Nikita Ivanych to share his joke, he began to tell him of his intention to elope with a blonde lady. The husband smiled gloomily, the wife gaily. The governor's good-natured wife came up with a look of disapproval. "Anna Ignatyevna wants to see you, Nicholas," said she, pronouncing the name so that Nicholas at once understood that Anna Ignatyevna was a very important person. "Come, Nicholas! You know you let me call you so?" "Oh, yes, Aunt. Who is she?" "Anna Ignatyevna Malvintseva. She has heard from her niece how you rescued her... Can you guess?" "I rescued such a lot of them!" said Nicholas. "Her niece, Princess Bolkonskaya. She is here in Voronezh with her aunt. Oho! How you blush. Why, are...?" "Not a bit! Please don't, Aunt!" "Very well, very well!... Oh, what a fellow you are!" The governor's wife led him up to a tall and very stout old lady with a blue headdress, who had just finished her game of cards with the most important personages of the town. This was Malvintseva, Princess Mary's aunt on her mother's side, a rich, childless widow who always lived in Voronezh. When Rostov approached her she was standing settling up for the game. She looked at him and, screwing up her eyes sternly, continued to upbraid the general who had won from her. "Very pleased, mon cher," she then said, holding out her hand to Nicholas. "Pray come and see me." After a few words about Princess Mary and her late father, whom Malvintseva had evidently not liked, and having asked what Nicholas knew of Prince Andrew, who also was evidently no favorite of hers, the important old lady dismissed Nicholas after repeating her invitation to come to see her. Nicholas promised to come and blushed again as he bowed. At the mention of Princess Mary he experienced a feeling of shyness and even of fear, which he himself did not understand. When he had parted from Malvintseva Nicholas wished to return to the dancing, but the governor's little wife placed her plump hand on his sleeve and, saying that she wanted to have a talk with him, led him to her sitting room, from which those who were there immediately withdrew so as not to be in her way. "Do you know, dear boy," began the governor's wife with a serious expression on her kind little face, "that really would be the match for you: would you like me to arrange it?" "Whom do you mean, Aunt?" asked Nicholas. "I will make a match for you with the princess. Catherine Petrovna speaks of Lily, but I say, no--the princess! Do you want me to do it? I am sure your mother will be grateful to me. What a charming girl she is, really! And she is not at all so plain, either." "Not at all," replied Nicholas as if offended at the idea. "As befits a soldier, Aunt, I don't force myself on anyone or refuse anything," he said before he had time to consider what he was saying. "Well then, remember, this is not a joke!" "Of course not!" "Yes, yes," the governor's wife said as if talking to herself. "But, my dear boy, among other things you are too attentive to the other, the blonde. One is sorry for the husband, really...." "Oh no, we are good friends with him," said Nicholas in the simplicity of his heart; it did not enter his head that a pastime so pleasant to himself might not be pleasant to someone else. "But what nonsense I have been saying to the governor's wife!" thought Nicholas suddenly at supper. "She will really begin to arrange a match... and Soyna...?" And on taking leave of the governor's wife, when she again smilingly said to him, "Well then, remember!" he drew her aside. "But see here, to tell the truth, Aunt..." "What is it, my dear? Come, let's sit down here," said she. Nicholas suddenly felt a desire and need to tell his most intimate thoughts (which he would not have told to his mother, his sister, or his friend) to this woman who was almost a stranger. When he afterwards recalled that impulse to unsolicited and inexplicable frankness which had very important results for him, it seemed to him--as it seems to everyone in such cases--that it was merely some silly whim that seized him: yet that burst of frankness, together with other trifling events, had immense consequences for him and for all his family. "You see, Aunt, Mamma has long wanted me to marry an heiress, but the very idea of marrying for money is repugnant to me." "Oh yes, I understand," said the governor's wife. "But Princess Bolkonskaya--that's another matter. I will tell you the truth. In the first place I like her very much, I feel drawn to her; and then, after I met her under such circumstances--so strangely, the idea often occurred to me: 'This is fate.' Especially if you remember that Mamma had long been thinking of it; but I had never happened to meet her before, somehow it had always happened that we did not meet. And as long as my sister Natasha was engaged to her brother it was of course out of the question for me to think of marrying her. And it must needs happen that I should meet her just when Natasha's engagement had been broken off... and then everything... So you see... I never told this to anyone and never will, only to you." The governor's wife pressed his elbow gratefully. "You know Sonya, my cousin? I love her, and promised to marry her, and will do so.... So you see there can be no question about-" said Nicholas incoherently and blushing. "My dear boy, what a way to look at it! You know Sonya has nothing and you yourself say your Papa's affairs are in a very bad way. And what about your mother? It would kill her, that's one thing. And what sort of life would it be for Sonya--if she's a girl with a heart? Your mother in despair, and you all ruined.... No, my dear, you and Sonya ought to understand that." Nicholas remained silent. It comforted him to hear these arguments. "All the same, Aunt, it is impossible," he rejoined with a sigh, after a short pause. "Besides, would the princess have me? And besides, she is now in mourning. How can one think of it!" "But you don't suppose I'm going to get you married at once? There is always a right way of doing things," replied the governor's wife. "What a matchmaker you are, Aunt..." said Nicholas, kissing her plump little hand. CHAPTER VI On reaching Moscow after her meeting with Rostov, Princess Mary had found her nephew there with his tutor, and a letter from Prince Andrew giving her instructions how to get to her Aunt Malvintseva at Voronezh. That feeling akin to temptation which had tormented her during her father's illness, since his death, and especially since her meeting with Rostov was smothered by arrangements for the journey, anxiety about her brother, settling in a new house, meeting new people, and attending to her nephew's education. She was sad. Now, after a month passed in quiet surroundings, she felt more and more deeply the loss of her father which was associated in her mind with the ruin of Russia. She was agitated and incessantly tortured by the thought of the dangers to which her brother, the only intimate person now remaining to her, was exposed. She was worried too about her nephew's education for which she had always felt herself incompetent, but in the depths of her soul she felt at peace--a peace arising from consciousness of having stifled those personal dreams and hopes that had been on the point of awakening within her and were related to her meeting with Rostov. The day after her party the governor's wife came to see Malvintseva and, after discussing her plan with the aunt, remarked that though under present circumstances a formal betrothal was, of course, not to be thought of, all the same the young people might be brought together and could get to know one another. Malvintseva expressed approval, and the governor's wife began to speak of Rostov in Mary's presence, praising him and telling how he had blushed when Princess Mary's name was mentioned. But Princess Mary experienced a painful rather than a joyful feeling--her mental tranquillity was destroyed, and desires, doubts, self-reproach, and hopes reawoke. During the two days that elapsed before Rostov called, Princess Mary continually thought of how she ought to behave to him. First she decided not to come to the drawing room when he called to see her aunt--that it would not be proper for her, in her deep mourning, to receive visitors; then she thought this would be rude after what he had done for her; then it occurred to her that her aunt and the governor's wife had intentions concerning herself and Rostov--their looks and words at times seemed to confirm this supposition--then she told herself that only she, with her sinful nature, could think this of them: they could not forget that situated as she was, while still wearing deep mourning, such matchmaking would be an insult to her and to her father's memory. Assuming that she did go down to see him, Princess Mary imagined the words he would say to her and what she would say to him, and these words sometimes seemed undeservedly cold and then to mean too much. More than anything she feared lest the confusion she felt might overwhelm her and betray her as soon as she saw him. But when on Sunday after church the footman announced in the drawing room that Count Rostov had called, the princess showed no confusion, only a slight blush suffused her cheeks and her eyes lit up with a new and radiant light. "You have met him, Aunt?" said she in a calm voice, unable herself to understand that she could be outwardly so calm and natural. When Rostov entered the room, the princess dropped her eyes for an instant, as if to give the visitor time to greet her aunt, and then just as Nicholas turned to her she raised her head and met his look with shining eyes. With a movement full of dignity and grace she half rose with a smile of pleasure, held out her slender, delicate hand to him, and began to speak in a voice in which for the first time new deep womanly notes vibrated. Mademoiselle Bourienne, who was in the drawing room, looked at Princess Mary in bewildered surprise. Herself a consummate coquette, she could not have maneuvered better on meeting a man she wished to attract. "Either black is particularly becoming to her or she really has greatly improved without my having noticed it. And above all, what tact and grace!" thought Mademoiselle Bourienne. Had Princess Mary been capable of reflection at that moment, she would have been more surprised than Mademoiselle Bourienne at the change that had taken place in herself. From the moment she recognized that dear, loved face, a new life force took possession of her and compelled her to speak and act apart from her own will. From the time Rostov entered, her face became suddenly transformed. It was as if a light had been kindled in a carved and painted lantern and the intricate, skillful, artistic work on its sides, that previously seemed dark, coarse, and meaningless, was suddenly shown up in unexpected and striking beauty. For the first time all that pure, spiritual, inward travail through which she had lived appeared on the surface. All her inward labor, her dissatisfaction with herself, her sufferings, her strivings after goodness, her meekness, love, and self-sacrifice--all this now shone in those radiant eyes, in her delicate smile, and in every trait of her gentle face. Rostov saw all this as clearly as if he had known her whole life. He felt that the being before him was quite different from, and better than, anyone he had met before, and above all better than himself. Their conversation was very simple and unimportant. They spoke of the war, and like everyone else unconsciously exaggerated their sorrow about it; they spoke of their last meeting--Nicholas trying to change the subject--they talked of the governor's kind wife, of Nicholas' relations, and of Princess Mary's. She did not talk about her brother, diverting the conversation as soon as her aunt mentioned Andrew. Evidently she could speak of Russia's misfortunes with a certain artificiality, but her brother was too near her heart and she neither could nor would speak lightly of him. Nicholas noticed this, as he noticed every shade of Princess Mary's character with an observation unusual to him, and everything confirmed his conviction that she was a quite unusual and extraordinary being. Nicholas blushed and was confused when people spoke to him about the princess (as she did when he was mentioned) and even when he thought of her, but in her presence he felt quite at ease, and said not at all what he had prepared, but what, quite appropriately, occurred to him at the moment. When a pause occurred during his short visit, Nicholas, as is usual when there are children, turned to Prince Andrew's little son, caressing him and asking whether he would like to be an hussar. He took the boy on his knee, played with him, and looked round at Princess Mary. With a softened, happy, timid look she watched the boy she loved in the arms of the man she loved. Nicholas also noticed that look and, as if understanding it, flushed with pleasure and began to kiss the boy with good natured playfulness. As she was in mourning Princess Mary did not go out into society, and Nicholas did not think it the proper thing to visit her again; but all the same the governor's wife went on with her matchmaking, passing on to Nicholas the flattering things Princess Mary said of him and vice versa, and insisting on his declaring himself to Princess Mary. For this purpose she arranged a meeting between the young people at the bishop's house before Mass. Though Rostov told the governeor's wife that he would not make any declaration to Princess Mary, he promised to go. As at Tilsit Rostov had not allowed himself to doubt that what everybody considered right was right, so now, after a short but sincere struggle between his effort to arrange his life by his own sense of justice, and in obedient submission to circumstances, he chose the latter and yielded to the power he felt irresistibly carrying him he knew not where. He knew that after his promise to Sonya it would be what he deemed base to declare his feelings to Princess Mary. And he knew that he would never act basely. But he also knew (or rather felt at the bottom of his heart) that by resigning himself now to the force of circumstances and to those who were guiding him, he was not only doing nothing wrong, but was doing something very important--more important than anything he had ever done in his life. After meeting Princess Mary, though the course of his life went on externally as before, all his former amusements lost their charm for him and he often thought about her. But he never thought about her as he had thought of all the young ladies without exception whom he had met in society, nor as he had for a long time, and at one time rapturously, thought about Sonya. He had pictured each of those young ladies as almost all honest-hearted young men do, that is, as a possible wife, adapting her in his imagination to all the conditions of married life: a white dressing gown, his wife at the tea table, his wife's carriage, little ones, Mamma and Papa, their relations to her, and so on--and these pictures of the future had given him pleasure. But with Princess Mary, to whom they were trying to get him engaged, he could never picture anything of future married life. If he tried, his pictures seemed incongruous and false. It made him afraid. CHAPTER VII The dreadful news of the battle of Borodino, of our losses in killed and wounded, and the still more terrible news of the loss of Moscow reached Voronezh in the middle of September. Princess Mary, having learned of her brother's wound only from the Gazette and having no definite news of him, prepared (so Nicholas heard, he had not seen her again himself) to set off in search of Prince Andrew. When he received the news of the battle of Borodino and the abandonment of Moscow, Rostov was not seized with despair, anger, the desire for vengeance, or any feeling of that kind, but everything in Voronezh suddenly seemed to him dull and tiresome, and he experienced an indefinite feeling of shame and awkwardness. The conversations he heard seemed to him insincere; he did not know how to judge all these affairs and felt that only in the regiment would everything again become clear to him. He made haste to finish buying the horses, and often became unreasonably angry with his servant and squadron quartermaster. A few days before his departure a special thanksgiving, at which Nicholas was present, was held in the cathedral for the Russian victory. He stood a little behind the governor and held himself with military decorum through the service, meditating on a great variety of subjects. When the service was over the governor's wife beckoned him to her. "Have you seen the princess?" she asked, indicating with a movement of her head a lady standing on the opposite side, beyond the choir. Nicholas immediately recognized Princess Mary not so much by the profile he saw under her bonnet as by the feeling of solicitude, timidity, and pity that immediately overcame him. Princess Mary, evidently engrossed by her thoughts, was crossing herself for the last time before leaving the church. Nicholas looked at her face with surprise. It was the same face he had seen before, there was the same general expression of refined, inner, spiritual labor, but now it was quite differently lit up. There was a pathetic expression of sorrow, prayer, and hope in it. As had occurred before when she was present, Nicholas went up to her without waiting to be prompted by the governor's wife and not asking himself whether or not it was right and proper to address her here in church, and told her he had heard of her trouble and sympathized with his whole soul. As soon as she heard his voice a vivid glow kindled in her face, lighting up both her sorrow and her joy. "There is one thing I wanted to tell you, Princess," said Rostov. "It is that if your brother, Prince Andrew Nikolievich, were not living, it would have been at once announced in the Gazette, as he is a colonel." The princess looked at him, not grasping what he was saying, but cheered by the expression of regretful sympathy on his face. "And I have known so many cases of a splinter wound" (the Gazette said it was a shell) "either proving fatal at once or being very slight," continued Nicholas. "We must hope for the best, and I am sure..." Princess Mary interrupted him. "Oh, that would be so dread..." she began and, prevented by agitation from finishing, she bent her head with a movement as graceful as everything she did in his presence and, looking up at him gratefully, went out, following her aunt. That evening Nicholas did not go out, but stayed at home to settle some accounts with the horse dealers. When he had finished that business it was already too late to go anywhere but still too early to go to bed, and for a long time he paced up and down the room, reflecting on his life, a thing he rarely did. Princess Mary had made an agreeable impression on him when he had met her in Smolensk province. His having encountered her in such exceptional circumstances, and his mother having at one time mentioned her to him as a good match, had drawn his particular attention to her. When he met her again in Voronezh the impression she made on him was not merely pleasing but powerful. Nicholas had been struck by the peculiar moral beauty he observed in her at this time. He was, however, preparing to go away and it had not entered his head to regret that he was thus depriving himself of chances of meeting her. But that day's encounter in church had, he felt, sunk deeper than was desirable for his peace of mind. That pale, sad, refined face, that radiant look, those gentle graceful gestures, and especially the deep and tender sorrow expressed in all her features agitated him and evoked his sympathy. In men Rostov could not bear to see the expression of a higher spiritual life (that was why he did not like Prince Andrew) and he referred to it contemptuously as philosophy and dreaminess, but in Princess Mary that very sorrow which revealed the depth of a whole spiritual world foreign to him was an irresistible attraction. "She must be a wonderful woman. A real angel!" he said to himself. "Why am I not free? Why was I in such a hurry with Sonya?" And he involuntarily compared the two: the lack of spirituality in the one and the abundance of it in the other--a spirituality he himself lacked and therefore valued most highly. He tried to picture what would happen were he free. How he would propose to her and how she would become his wife. But no, he could not imagine that. He felt awed, and no clear picture presented itself to his mind. He had long ago pictured to himself a future with Sonya, and that was all clear and simple just because it had all been thought out and he knew all there was in Sonya, but it was impossible to picture a future with Princess Mary, because he did not understand her but simply loved her. Reveries about Sonya had had something merry and playful in them, but to dream of Princess Mary was always difficult and a little frightening. "How she prayed!" he thought. "It was plain that her whole soul was in her prayer. Yes, that was the prayer that moves mountains, and I am sure her prayer will be answered. Why don't I pray for what I want?" he suddenly thought. "What do I want? To be free, released from Sonya... She was right," he thought, remembering what the governor's wife had said: "Nothing but misfortune can come of marrying Sonya. Muddles, grief for Mamma... business difficulties... muddles, terrible muddles! Besides, I don't love her--not as I should. O, God! release me from this dreadful, inextricable position!" he suddenly began to pray. "Yes, prayer can move mountains, but one must have faith and not pray as Natasha and I used to as children, that the snow might turn into sugar--and then run out into the yard to see whether it had done so. No, but I am not praying for trifles now," he thought as he put his pipe down in a corner, and folding his hands placed himself before the icon. Softened by memories of Princess Mary he began to pray as he had not done for a long time. Tears were in his eyes and in his throat when the door opened and Lavrushka came in with some papers. "Blockhead! Why do you come in without being called?" cried Nicholas, quickly changing his attitude. "From the governor," said Lavrushka in a sleepy voice. "A courier has arrived and there's a letter for you." "Well, all right, thanks. You can go!" Nicholas took the two letters, one of which was from his mother and the other from Sonya. He recognized them by the handwriting and opened Sonya's first. He had read only a few lines when he turned pale and his eyes opened wide with fear and joy. "No, it's not possible!" he cried aloud. Unable to sit still he paced up and down the room holding the letter and reading it. He glanced through it, then read it again, and then again, and standing still in the middle of the room he raised his shoulders, stretching out his hands, with his mouth wide open and his eyes fixed. What he had just been praying for with confidence that God would hear him had come to pass; but Nicholas was as much astonished as if it were something extraordinary and unexpected, and as if the very fact that it had happened so quickly proved that it had not come from God to whom he had prayed, but by some ordinary coincidence. This unexpected and, as it seemed to Nicholas, quite voluntary letter from Sonya freed him from the knot that fettered him and from which there had seemed no escape. She wrote that the last unfortunate events--the loss of almost the whole of the Rostovs' Moscow property--and the countess' repeatedly expressed wish that Nicholas should marry Princess Bolkonskaya, together with his silence and coldness of late, had all combined to make her decide to release him from his promise and set him completely free. It would be too painful to me to think that I might be a cause of sorrow or discord in the family that has been so good to me (she wrote), and my love has no aim but the happiness of those I love; so, Nicholas, I beg you to consider yourself free, and to be assured that, in spite of everything, no one can love you more than does Your Sonya Both letters were written from Troitsa. The other, from the countess, described their last days in Moscow, their departure, the fire, and the destruction of all their property. In this letter the countess also mentioned that Prince Andrew was among the wounded traveling with them; his state was very critical, but the doctor said there was now more hope. Sonya and Natasha were nursing him. Next day Nicholas took his mother's letter and went to see Princess Mary. Neither he nor she said a word about what "Natasha nursing him" might mean, but thanks to this letter Nicholas suddenly became almost as intimate with the princess as if they were relations. The following day he saw Princess Mary off on her journey to Yaroslavl, and a few days later left to rejoin his regiment. CHAPTER VIII Sonya's letter written from Troitsa, which had come as an answer to Nicholas' prayer, was prompted by this: the thought of getting Nicholas married to an heiress occupied the old countess' mind more and more. She knew that Sonya was the chief obstacle to this happening, and Sonya's life in the countess' house had grown harder and harder, especially after they had received a letter from Nicholas telling of his meeting with Princess Mary in Bogucharovo. The countess let no occasion slip of making humiliating or cruel allusions to Sonya. But a few days before they left Moscow, moved and excited by all that was going on, she called Sonya to her and, instead of reproaching and making demands on her, tearfully implored her to sacrifice herself and repay all that the family had done for her by breaking off her engagement with Nicholas. "I shall not be at peace till you promise me this." Sonya burst into hysterical tears and replied through her sobs that she would do anything and was prepared for anything, but gave no actual promise and could not bring herself to decide to do what was demanded of her. She must sacrifice herself for the family that had reared and brought her up. To sacrifice herself for others was Sonya's habit. Her position in the house was such that only by sacrifice could she show her worth, and she was accustomed to this and loved doing it. But in all her former acts of self-sacrifice she had been happily conscious that they raised her in her own esteem and in that of others, and so made her more worthy of Nicholas whom she loved more than anything in the world. But now they wanted her to sacrifice the very thing that constituted the whole reward for her self-sacrifice and the whole meaning of her life. And for the first time she felt bitterness against those who had been her benefactors only to torture her the more painfully; she felt jealous of Natasha who had never experienced anything of this sort, had never needed to sacrifice herself, but made others sacrifice themselves for her and yet was beloved by everybody. And for the first time Sonya felt that out of her pure, quiet love for Nicholas a passionate feeling was beginning to grow up which was stronger than principle, virtue, or religion. Under the influence of this feeling Sonya, whose life of dependence had taught her involuntarily to be secretive, having answered the countess in vague general terms, avoided talking with her and resolved to wait till she should see Nicholas, not in order to set him free but on the contrary at that meeting to bind him to her forever. The bustle and terror of the Rostovs' last days in Moscow stifled the gloomy thoughts that oppressed Sonya. She was glad to find escape from them in practical activity. But when she heard of Prince Andrew's presence in their house, despite her sincere pity for him and for Natasha, she was seized by a joyful and superstitious feeling that God did not intend her to be separated from Nicholas. She knew that Natasha loved no one but Prince Andrew and had never ceased to love him. She knew that being thrown together again under such terrible circumstances they would again fall in love with one another, and that Nicholas would then not be able to marry Princess Mary as they would be within the prohibited degrees of affinity. Despite all the terror of what had happened during those last days and during the first days of their journey, this feeling that Providence was intervening in her personal affairs cheered Sonya. At the Troitsa monastery the Rostovs first broke their journey for a whole day. Three large rooms were assigned to them in the monastery hostelry, one of which was occupied by Prince Andrew. The wounded man was much better that day and Natasha was sitting with him. In the next room sat the count and countess respectfully conversing with the prior, who was calling on them as old acquaintances and benefactors of the monastery. Sonya was there too, tormented by curiosity as to what Prince Andrew and Natasha were talking about. She heard the sound of their voices through the door. That door opened and Natasha came out, looking excited. Not noticing the monk, who had risen to greet her and was drawing back the wide sleeve on his right arm, she went up to Sonya and took her hand. "Natasha, what are you about? Come here!" said the countess. Natasha went up to the monk for his blessing, and advised her to pray for aid to God and His saint. As soon as the prior withdrew, Natasha took her friend by the hand and went with her into the unoccupied room. "Sonya, will he live?" she asked. "Sonya, how happy I am, and how unhappy!... Sonya, dovey, everything is as it used to be. If only he lives! He cannot... because... because... of" and Natasha burst into tears. "Yes! I knew it! Thank God!" murmured Sonya. "He will live." Sonya was not less agitated than her friend by the latter's fear and grief and by her own personal feelings which she shared with no one. Sobbing, she kissed and comforted Natasha. "If only he lives!" she thought. Having wept, talked, and wiped away their tears, the two friends went together to Prince Andrew's door. Natasha opened it cautiously and glanced into the room, Sonya standing beside her at the half-open door. Prince Andrew was lying raised high on three pillows. His pale face was calm, his eyes closed, and they could see his regular breathing. "O, Natasha!" Sonya suddenly almost screamed, catching her companion's arm and stepping back from the door. "What? What is it?" asked Natasha. "It's that, that..." said Sonya, with a white face and trembling lips. Natasha softly closed the door and went with Sonya to the window, not yet understanding what the latter was telling her. "You remember," said Sonya with a solemn and frightened expression. "You remember when I looked in the mirror for you... at Otradnoe at Christmas? Do you remember what I saw?" "Yes, yes!" cried Natasha opening her eyes wide, and vaguely recalling that Sonya had told her something about Prince Andrew whom she had seen lying down. "You remember?" Sonya went on. "I saw it then and told everybody, you and Dunyasha. I saw him lying on a bed," said she, making a gesture with her hand and a lifted finger at each detail, "and that he had his eyes closed and was covered just with a pink quilt, and that his hands were folded," she concluded, convincing herself that the details she had just seen were exactly what she had seen in the mirror. She had in fact seen nothing then but had mentioned the first thing that came into her head, but what she had invented then seemed to her now as real as any other recollection. She not only remembered what she had then said--that he turned to look at her and smiled and was covered with something red--but was firmly convinced that she had then seen and said that he was covered with a pink quilt and that his eyes were closed. "Yes, yes, it really was pink!" cried Natasha, who now thought she too remembered the word pink being used, and saw in this the most extraordinary and mysterious part of the prediction. "But what does it mean?" she added meditatively. "Oh, I don't know, it is all so strange," replied Sonya, clutching at her head. A few minutes later Prince Andrew rang and Natasha went to him, but Sonya, feeling unusually excited and touched, remained at the window thinking about the strangeness of what had occurred. They had an opportunity that day to send letters to the army, and the countess was writing to her son. "Sonya!" said the countess, raising her eyes from her letter as her niece passed, "Sonya, won't you write to Nicholas?" She spoke in a soft, tremulous voice, and in the weary eyes that looked over her spectacles Sonya read all that the countess meant to convey with these words. Those eyes expressed entreaty, shame at having to ask, fear of a refusal, and readiness for relentless hatred in case of such refusal. Sonya went up to the countess and, kneeling down, kissed her hand. "Yes, Mamma, I will write," said she. Sonya was softened, excited, and touched by all that had occurred that day, especially by the mysterious fulfillment she had just seen of her vision. Now that she knew that the renewal of Natasha's relations with Prince Andrew would prevent Nicholas from marrying Princess Mary, she was joyfully conscious of a return of that self-sacrificing spirit in which she was accustomed to live and loved to live. So with a joyful consciousness of performing a magnanimous deed--interrupted several times by the tears that dimmed her velvety black eyes--she wrote that touching letter the arrival of which had so amazed Nicholas. CHAPTER IX The officer and soldiers who had arrested Pierre treated him with hostility but yet with respect, in the guardhouse to which he was taken. In their attitude toward him could still be felt both uncertainty as to who he might be--perhaps a very important person- and hostility as a result of their recent personal conflict with him. But when the guard was relieved next morning, Pierre felt that for the new guard--both officers and men--he was not as interesting as he had been to his captors; and in fact the guard of the second day did not recognize in this big, stout man in a peasant coat the vigorous person who had fought so desperately with the marauder and the convoy and had uttered those solemn words about saving a child; they saw in him only No. 17 of the captured Russians, arrested and detained for some reason by order of the Higher Command. If they noticed anything remarkable about Pierre, it was only his unabashed, meditative concentration and thoughtfulness, and the way he spoke French, which struck them as surprisingly good. In spite of this he was placed that day with the other arrested suspects, as the separate room he had occupied was required by an officer. All the Russians confined with Pierre were men of the lowest class and, recognizing him as a gentleman, they all avoided him, more especially as he spoke French. Pierre felt sad at hearing them making fun of him. That evening he learned that all these prisoners (he, probably, among them) were to be tried for incendiarism. On the third day he was taken with the others to a house where a French general with a white mustache sat with two colonels and other Frenchmen with scarves on their arms. With the precision and definiteness customary in addressing prisoners, and which is supposed to preclude human frailty, Pierre like the others was questioned as to who he was, where he had been, with what object, and so on. These questions, like questions put at trials generally, left the essence of the matter aside, shut out the possibility of that essence's being revealed, and were designed only to form a channel through which the judges wished the answers of the accused to flow so as to lead to the desired result, namely a conviction. As soon as Pierre began to say anything that did not fit in with that aim, the channel was removed and the water could flow to waste. Pierre felt, moreover, what the accused always feel at their trial, perplexity as to why these questions were put to him. He had a feeling that it was only out of condescension or a kind of civility that this device of placing a channel was employed. He knew he was in these men's power, that only by force had they brought him there, that force alone gave them the right to demand answers to their questions, and that the sole object of that assembly was to inculpate him. And so, as they had the power and wish to inculpate him, this expedient of an inquiry and trial seemed unnecessary. It was evident that any answer would lead to conviction. When asked what he was doing when he was arrested, Pierre replied in a rather tragic manner that he was restoring to its parents a child he had saved from the flames. Why had he fought the marauder? Pierre answered that he "was protecting a woman," and that "to protect a woman who was being insulted was the duty of every man; that..." They interrupted him, for this was not to the point. Why was he in the yard of a burning house where witnesses had seen him? He replied that he had gone out to see what was happening in Moscow. Again they interrupted him: they had not asked where he was going, but why he was found near the fire? Who was he? they asked, repeating their first question, which he had declined to answer. Again he replied that he could not answer it. "Put that down, that's bad... very bad," sternly remarked the general with the white mustache and red flushed face. On the fourth day fires broke out on the Zubovski rampart. Pierre and thirteen others were moved to the coach house of a merchant's house near the Crimean bridge. On his way through the streets Pierre felt stifled by the smoke which seemed to hang over the whole city. Fires were visible on all sides. He did not then realize the significance of the burning of Moscow, and looked at the fires with horror. He passed four days in the coach house near the Crimean bridge and during that time learned, from the talk of the French soldiers, that all those confined there were awaiting a decision which might come any day from the marshal. What marshal this was, Pierre could not learn from the soldiers. Evidently for them "the marshal" represented a very high and rather mysterious power. These first days, before the eighth of September when the prisoners were had up for a second examination, were the hardest of all for Pierre. CHAPTER X On the eighth of September an officer--a very important one judging by the respect the guards showed him--entered the coach house where the prisoners were. This officer, probably someone on the staff, was holding a paper in his hand, and called over all the Russians there, naming Pierre as "the man who does not give his name." Glancing indolently and indifferently at all the prisoners, he ordered the officer in charge to have them decently dressed and tidied up before taking them to the marshal. An hour later a squad of soldiers arrived and Pierre with thirteen others was led to the Virgin's Field. It was a fine day, sunny after rain, and the air was unusually pure. The smoke did not hang low as on the day when Pierre had been taken from the guardhouse on the Zubovski rampart, but rose through the pure air in columns. No flames were seen, but columns of smoke rose on all sides, and all Moscow as far as Pierre could see was one vast charred ruin. On all sides there were waste spaces with only stoves and chimney stacks still standing, and here and there the blackened walls of some brick houses. Pierre gazed at the ruins and did not recognize districts he had known well. Here and there he could see churches that had not been burned. The Kremlin, which was not destroyed, gleamed white in the distance with its towers and the belfry of Ivan the Great. The domes of the New Convent of the Virgin glittered brightly and its bells were ringing particularly clearly. These bells reminded Pierre that it was Sunday and the feast of the Nativity of the Virgin. But there seemed to be no one to celebrate this holiday: everywhere were blackened ruins, and the few Russians to be seen were tattered and frightened people who tried to hide when they saw the French. It was plain that the Russian nest was ruined and destroyed, but in place of the Russian order of life that had been destroyed, Pierre unconsciously felt that a quite different, firm, French order had been established over this ruined nest. He felt this in the looks of the soldiers who, marching in regular ranks briskly and gaily, were escorting him and the other criminals; he felt it in the looks of an important French official in a carriage and pair driven by a soldier, whom they met on the way. He felt it in the merry sounds of regimental music he heard from the left side of the field, and felt and realized it especially from the list of prisoners the French officer had read out when he came that morning. Pierre had been taken by one set of soldiers and led first to one and then to another place with dozens of other men, and it seemed that they might have forgotten him, or confused him with the others. But no: the answers he had given when questioned had come back to him in his designation as "the man who does not give his name," and under that appellation, which to Pierre seemed terrible, they were now leading him somewhere with unhesitating assurance on their faces that he and all the other prisoners were exactly the ones they wanted and that they were being taken to the proper place. Pierre felt himself to be an insignificant chip fallen among the wheels of a machine whose action he did not understand but which was working well. He and the other prisoners were taken to the right side of the Virgin's Field, to a large white house with an immense garden not far from the convent. This was Prince Shcherbitov's house, where Pierre had often been in other days, and which, as he learned from the talk of the soldiers, was now occupied by the marshal, the Duke of Eckmuhl (Davout). They were taken to the entrance and led into the house one by one. Pierre was the sixth to enter. He was conducted through a glass gallery, an anteroom, and a hall, which were familiar to him, into a long low study at the door of which stood an adjutant. Davout, spectacles on nose, sat bent over a table at the further end of the room. Pierre went close up to him, but Davout, evidently consulting a paper that lay before him, did not look up. Without raising his eyes, he said in a low voice: "Who are you?" Pierre was silent because he was incapable of uttering a word. To him Davout was not merely a French general, but a man notorious for his cruelty. Looking at his cold face, as he sat like a stern schoolmaster who was prepared to wait awhile for an answer, Pierre felt that every instant of delay might cost him his life; but he did not know what to say. He did not venture to repeat what he had said at his first examination, yet to disclose his rank and position was dangerous and embarrassing. So he was silent. But before he had decided what to do, Davout raised his head, pushed his spectacles back on his forehead, screwed up his eyes, and looked intently at him. "I know that man," he said in a cold, measured tone, evidently calculated to frighten Pierre. The chill that had been running down Pierre's back now seized his head as in a vise. "You cannot know me, General, I have never seen you..." "He is a Russian spy," Davout interrupted, addressing another general who was present, but whom Pierre had not noticed. Davout turned away. With an unexpected reverberation in his voice Pierre rapidly began: "No, monseigneur," he said, suddenly remembering that Davout was a duke. "No, monseigneur, you cannot have known me. I am a militia officer and have not quitted Moscow." "Your name?" asked Davout. "Bezukhov." "What proof have I that you are not lying?" "Monseigneur!" exclaimed Pierre, not in an offended but in a pleading voice. Davout looked up and gazed intently at him. For some seconds they looked at one another, and that look saved Pierre. Apart from conditions of war and law, that look established human relations between the two men. At that moment an immense number of things passed dimly through both their minds, and they realized that they were both children of humanity and were brothers. At the first glance, when Davout had only raised his head from the papers where human affairs and lives were indicated by numbers, Pierre was merely a circumstance, and Davout could have shot him without burdening his conscience with an evil deed, but now he saw in him a human being. He reflected for a moment. "How can you show me that you are telling the truth?" said Davout coldly. Pierre remembered Ramballe, and named him and his regiment and the street where the house was. "You are not what you say," returned Davout. In a trembling, faltering voice Pierre began adducing proofs of the truth of his statements. But at that moment an adjutant entered and reported something to Davout. Davout brightened up at the news the adjutant brought, and began buttoning up his uniform. It seemed that he had quite forgotten Pierre. When the adjutant reminded him of the prisoner, he jerked his head in Pierre's direction with a frown and ordered him to be led away. But where they were to take him Pierre did not know: back to the coach house or to the place of execution his companions had pointed out to him as they crossed the Virgin's Field. He turned his head and saw that the adjutant was putting another question to Davout. "Yes, of course!" replied Davout, but what this "yes" meant, Pierre did not know. Pierre could not afterwards remember how he went, whether it was far, or in which direction. His faculties were quite numbed, he was stupefied, and noticing nothing around him went on moving his legs as the others did till they all stopped and he stopped too. The only thought in his mind at that time was: who was it that had really sentenced him to death? Not the men on the commission that had first examined him--not one of them wished to or, evidently, could have done it. It was not Davout, who had looked at him in so human a way. In another moment Davout would have realized that he was doing wrong, but just then the adjutant had come in and interrupted him. The adjutant, also, had evidently had no evil intent though he might have refrained from coming in. Then who was executing him, killing him, depriving him of life--him, Pierre, with all his memories, aspirations, hopes, and thoughts? Who was doing this? And Pierre felt that it was no one. It was a system--a concurrence of circumstances. A system of some sort was killing him--Pierre--depriving him of life, of everything, annihilating him. CHAPTER XI From Prince Shcherbatov's house the prisoners were led straight down the Virgin's Field, to the left of the nunnery, as far as a kitchen garden in which a post had been set up. Beyond that post a fresh pit had been dug in the ground, and near the post and the pit a large crowd stood in a semicircle. The crowd consisted of a few Russians and many of Napoleon's soldiers who were not on duty--Germans, Italians, and Frenchmen, in a variety of uniforms. To the right and left of the post stood rows of French troops in blue uniforms with red epaulets and high boots and shakos. The prisoners were placed in a certain order, according to the list (Pierre was sixth), and were led to the post. Several drums suddenly began to beat on both sides of them, and at that sound Pierre felt as if part of his soul had been torn away. He lost the power of thinking or understanding. He could only hear and see. And he had only one wish--that the frightful thing that had to happen should happen quickly. Pierre looked round at his fellow prisoners and scrutinized them. The two first were convicts with shaven heads. One was tall and thin, the other dark, shaggy, and sinewy, with a flat nose. The third was a domestic serf, about forty-five years old, with grizzled hair and a plump, well-nourished body. The fourth was a peasant, a very handsome man with a broad, light-brown beard and black eyes. The fifth was a factory hand, a thin, sallow-faced lad of eighteen in a loose coat. Pierre heard the French consulting whether to shoot them separately or two at a time. "In couples," replied the officer in command in a calm voice. There was a stir in the ranks of the soldiers and it was evident that they were all hurrying--not as men hurry to do something they understand, but as people hurry to finish a necessary but unpleasant and incomprehensible task. A French official wearing a scarf came up to the right of the row of prisoners and read out the sentence in Russian and in French. Then two pairs of Frenchmen approached the criminals and at the officer's command took the two convicts who stood first in the row. The convicts stopped when they reached the post and, while sacks were being brought, looked dumbly around as a wounded beast looks at an approaching huntsman. One crossed himself continually, the other scratched his back and made a movement of the lips resembling a smile. With hurried hands the soldiers blindfolded them, drawing the sacks over their heads, and bound them to the post. Twelve sharpshooters with muskets stepped out of the ranks with a firm regular tread and halted eight paces from the post. Pierre turned away to avoid seeing what was going to happen. Suddenly a crackling, rolling noise was heard which seemed to him louder than the most terrific thunder, and he looked round. There was some smoke, and the Frenchmen were doing something near the pit, with pale faces and trembling hands. Two more prisoners were led up. In the same way and with similar looks, these two glanced vainly at the onlookers with only a silent appeal for protection in their eyes, evidently unable to understand or believe what was going to happen to them. They could not believe it because they alone knew what their life meant to them, and so they neither understood nor believed that it could be taken from them. Again Pierre did not wish to look and again turned away; but again the sound as of a frightful explosion struck his ear, and at the same moment he saw smoke, blood, and the pale, scared faces of the Frenchmen who were again doing something by the post, their trembling hands impeding one another. Pierre, breathing heavily, looked around as if asking what it meant. The same question was expressed in all the looks that met his. On the faces of all the Russians and of the French soldiers and officers without exception, he read the same dismay, horror, and conflict that were in his own heart. "But who, after all, is doing this? They are all suffering as I am. Who then is it? Who?" flashed for an instant through his mind. "Sharpshooters of the 86th, forward!" shouted someone. The fifth prisoner, the one next to Pierre, was led away--alone. Pierre did not understand that he was saved, that he and the rest had been brought there only to witness the execution. With ever-growing horror, and no sense of joy or relief, he gazed at what was taking place. The fifth man was the factory lad in the loose cloak. The moment they laid hands on him he sprang aside in terror and clutched at Pierre. (Pierre shuddered and shook himself free.) The lad was unable to walk. They dragged him along, holding him up under the arms, and he screamed. When they got him to the post he grew quiet, as if he suddenly understood something. Whether he understood that screaming was useless or whether he thought it incredible that men should kill him, at any rate he took his stand at the post, waiting to be blindfolded like the others, and like a wounded animal looked around him with glittering eyes. Pierre was no longer able to turn away and close his eyes. His curiosity and agitation, like that of the whole crowd, reached the highest pitch at this fifth murder. Like the others this fifth man seemed calm; he wrapped his loose cloak closer and rubbed one bare foot with the other. When they began to blindfold him he himself adjusted the knot which hurt the back of his head; then when they propped him against the bloodstained post, he leaned back and, not being comfortable in that position, straightened himself, adjusted his feet, and leaned back again more comfortably. Pierre did not take his eyes from him and did not miss his slightest movement. Probably a word of command was given and was followed by the reports of eight muskets; but try as he would Pierre could not afterwards remember having heard the slightest sound of the shots. He only saw how the workman suddenly sank down on the cords that held him, how blood showed itself in two places, how the ropes slackened under the weight of the hanging body, and how the workman sat down, his head hanging unnaturally and one leg bent under him. Pierre ran up to the post. No one hindered him. Pale, frightened people were doing something around the workman. The lower jaw of an old Frenchman with a thick mustache trembled as he untied the ropes. The body collapsed. The soldiers dragged it awkwardly from the post and began pushing it into the pit. They all plainly and certainly knew that they were criminals who must hide the traces of their guilt as quickly as possible. Pierre glanced into the pit and saw that the factory lad was lying with his knees close up to his head and one shoulder higher than the other. That shoulder rose and fell rhythmically and convulsively, but spadefuls of earth were already being thrown over the whole body. One of the soldiers, evidently suffering, shouted gruffly and angrily at Pierre to go back. But Pierre did not understand him and remained near the post, and no one drove him away. When the pit had been filled up a command was given. Pierre was taken back to his place, and the rows of troops on both sides of the post made a half turn and went past it at a measured pace. The twenty-four sharpshooters with discharged muskets, standing in the center of the circle, ran back to their places as the companies passed by. Pierre gazed now with dazed eyes at these sharpshooters who ran in couples out of the circle. All but one rejoined their companies. This one, a young soldier, his face deadly pale, his shako pushed back, and his musket resting on the ground, still stood near the pit at the spot from which he had fired. He swayed like a drunken man, taking some steps forward and back to save himself from falling. An old, noncommissioned officer ran out of the ranks and taking him by the elbow dragged him to his company. The crowd of Russians and Frenchmen began to disperse. They all went away silently and with drooping heads. "That will teach them to start fires," said one of the Frenchmen. Pierre glanced round at the speaker and saw that it was a soldier who was trying to find some relief after what had been done, but was not able to do so. Without finishing what he had begun to say he made a hopeless movement with his arm and went away. CHAPTER XII After the execution Pierre was separated from the rest of the prisoners and placed alone in a small, ruined, and befouled church. Toward evening a noncommissioned officer entered with two soldiers and told him that he had been pardoned and would now go to the barracks for the prisoners of war. Without understanding what was said to him, Pierre got up and went with the soldiers. They took him to the upper end of the field, where there were some sheds built of charred planks, beams, and battens, and led him into one of them. In the darkness some twenty different men surrounded Pierre. He looked at them without understanding who they were, why they were there, or what they wanted of him. He heard what they said, but did not understand the meaning of the words and made no kind of deduction from or application of them. He replied to questions they put to him, but did not consider who was listening to his replies, nor how they would understand them. He looked at their faces and figures, but they all seemed to him equally meaningless. From the moment Pierre had witnessed those terrible murders committed by men who did not wish to commit them, it was as if the mainspring of his life, on which everything depended and which made everything appear alive, had suddenly been wrenched out and everything had collapsed into a heap of meaningless rubbish. Though he did not acknowledge it to himself, his faith in the right ordering of the universe, in humanity, in his own soul, and in God, had been destroyed. He had experienced this before, but never so strongly as now. When similar doubts had assailed him before, they had been the result of his own wrongdoing, and at the bottom of his heart he had felt that relief from his despair and from those doubts was to be found within himself. But now he felt that the universe had crumbled before his eyes and only meaningless ruins remained, and this not by any fault of his own. He felt that it was not in his power to regain faith in the meaning of life. Around him in the darkness men were standing and evidently something about him interested them greatly. They were telling him something and asking him something. Then they led him away somewhere, and at last he found himself in a corner of the shed among men who were laughing and talking on all sides. "Well, then, mates... that very prince who..." some voice at the other end of the shed was saying, with a strong emphasis on the word who. Sitting silent and motionless on a heap of straw against the wall, Pierre sometimes opened and sometimes closed his eyes. But as soon as he closed them he saw before him the dreadful face of the factory lad--especially dreadful because of its simplicity--and the faces of the murderers, even more dreadful because of their disquiet. And he opened his eyes again and stared vacantly into the darkness around him. Beside him in a stooping position sat a small man of whose presence he was first made aware by a strong smell of perspiration which came from him every time he moved. This man was doing something to his legs in the darkness, and though Pierre could not see his face he felt that the man continually glanced at him. On growing used to the darkness Pierre saw that the man was taking off his leg bands, and the way he did it aroused Pierre's interest. Having unwound the string that tied the band on one leg, he carefully coiled it up and immediately set to work on the other leg, glancing up at Pierre. While one hand hung up the first string the other was already unwinding the band on the second leg. In this way, having carefully removed the leg bands by deft circular motions of his arm following one another uninterruptedly, the man hung the leg bands up on some pegs fixed above his head. Then he took out a knife, cut something, closed the knife, placed it under the head of his bed, and, seating himself comfortably, clasped his arms round his lifted knees and fixed his eyes on Pierre. The latter was conscious of something pleasant, comforting, and well rounded in these deft movements, in the man's well-ordered arrangements in his corner, and even in his very smell, and he looked at the man without taking his eyes from him. "You've seen a lot of trouble, sir, eh?" the little man suddenly said. And there was so much kindliness and simplicity in his singsong voice that Pierre tried to reply, but his jaw trembled and he felt tears rising to his eyes. The little fellow, giving Pierre no time to betray his confusion, instantly continued in the same pleasant tones: "Eh, lad, don't fret!" said he, in the tender singsong caressing voice old Russian peasant women employ. "Don't fret, friend--'suffer an hour, live for an age!' that's how it is, my dear fellow. And here we live, thank heaven, without offense. Among these folk, too, there are good men as well as bad," said he, and still speaking, he turned on his knees with a supple movement, got up, coughed, and went off to another part of the shed. "Eh, you rascal!" Pierre heard the same kind voice saying at the other end of the shed. "So you've come, you rascal? She remembers... Now, now, that'll do!" And the soldier, pushing away a little dog that was jumping up at him, returned to his place and sat down. In his hands he had something wrapped in a rag. "Here, eat a bit, sir," said he, resuming his former respectful tone as he unwrapped and offered Pierre some baked potatoes. "We had soup for dinner and the potatoes are grand!" Pierre had not eaten all day and the smell of the potatoes seemed extremely pleasant to him. He thanked the soldier and began to eat. "Well, are they all right?" said the soldier with a smile. "You should do like this." He took a potato, drew out his clasp knife, cut the potato into two equal halves on the palm of his hand, sprinkled some salt on it from the rag, and handed it to Pierre. "The potatoes are grand!" he said once more. "Eat some like that!" Pierre thought he had never eaten anything that tasted better. "Oh, I'm all right," said he, "but why did they shoot those poor fellows? The last one was hardly twenty." "Tss, tt...!" said the little man. "Ah, what a sin... what a sin!" he added quickly, and as if his words were always waiting ready in his mouth and flew out involuntarily he went on: "How was it, sir, that you stayed in Moscow?" "I didn't think they would come so soon. I stayed accidentally," replied Pierre. "And how did they arrest you, dear lad? At your house?" "No, I went to look at the fire, and they arrested me there, and tried me as an incendiary." "Where there's law there's injustice," put in the little man. "And have you been here long?" Pierre asked as he munched the last of the potato. "I? It was last Sunday they took me, out of a hospital in Moscow." "Why, are you a soldier then?" "Yes, we are soldiers of the Apsheron regiment. I was dying of fever. We weren't told anything. There were some twenty of us lying there. We had no idea, never guessed at all." "And do you feel sad here?" Pierre inquired. "How can one help it, lad? My name is Platon, and the surname is Karataev," he added, evidently wishing to make it easier for Pierre to address him. "They call me 'little falcon' in the regiment. How is one to help feeling sad? Moscow--she's the mother of cities. How can one see all this and not feel sad? But 'the maggot gnaws the cabbage, yet dies first'; that's what the old folks used to tell us," he added rapidly. "What? What did you say?" asked Pierre. "Who? I?" said Karataev. "I say things happen not as we plan but as God judges," he replied, thinking that he was repeating what he had said before, and immediately continued: "Well, and you, have you a family estate, sir? And a house? So you have abundance, then? And a housewife? And your old parents, are they still living?" he asked. And though it was too dark for Pierre to see, he felt that a suppressed smile of kindliness puckered the soldier's lips as he put these questions. He seemed grieved that Pierre had no parents, especially that he had no mother. "A wife for counsel, a mother-in-law for welcome, but there's none as dear as one's own mother!" said he. "Well, and have you little ones?" he went on asking. Again Pierre's negative answer seemed to distress him, and he hastened to add: "Never mind! You're young folks yet, and please God may still have some. The great thing is to live in harmony...." "But it's all the same now," Pierre could not help saying. "Ah, my dear fellow!" rejoined Karataev, "never decline a prison or a beggar's sack!" He seated himself more comfortably and coughed, evidently preparing to tell a long story. "Well, my dear fellow, I was still living at home," he began. "We had a well-to-do homestead, plenty of land, we peasants lived well and our house was one to thank God for. When Father and we went out mowing there were seven of us. We lived well. We were real peasants. It so happened..." And Platon Karataev told a long story of how he had gone into someone's copse to take wood, how he had been caught by the keeper, had been tried, flogged, and sent to serve as a soldier. "Well, lad," and a smile changed the tone of his voice "we thought it was a misfortune but it turned out a blessing! If it had not been for my sin, my brother would have had to go as a soldier. But he, my younger brother, had five little ones, while I, you see, only left a wife behind. We had a little girl, but God took her before I went as a soldier. I come home on leave and I'll tell you how it was, I look and see that they are living better than before. The yard full of cattle, the women at home, two brothers away earning wages, and only Michael the youngest, at home. Father, he says, 'All my children are the same to me: it hurts the same whichever finger gets bitten. But if Platon hadn't been shaved for a soldier, Michael would have had to go.' called us all to him and, will you believe it, placed us in front of the icons. 'Michael,' he says, 'come here and bow down to his feet; and you, young woman, you bow down too; and you, grandchildren, also bow down before him! Do you understand?' he says. That's how it is, dear fellow. Fate looks for a head. But we are always judging, 'that's not well--that's not right!' Our luck is like water in a dragnet: you pull at it and it bulges, but when you've drawn it out it's empty! That's how it is." And Platon shifted his seat on the straw. After a short silence he rose. "Well, I think you must be sleepy," said he, and began rapidly crossing himself and repeating: "Lord Jesus Christ, holy Saint Nicholas, Frola and Lavra! Lord Jesus Christ, holy Saint Nicholas, Frola and Lavra! Lord Jesus Christ, have mercy on us and save us!" he concluded, then bowed to the ground, got up, sighed, and sat down again on his heap of straw. "That's the way. Lay me down like a stone, O God, and raise me up like a loaf," he muttered as he lay down, pulling his coat over him. "What prayer was that you were saying?" asked Pierre. "Eh?" murmured Platon, who had almost fallen asleep. "What was I saying? I was praying. Don't you pray?" "Yes, I do," said Pierre. "But what was that you said: Frola and Lavra?" "Well, of course," replied Platon quickly, "the horses' saints. One must pity the animals too. Eh, the rascal! Now you've curled up and got warm, you daughter of a bitch!" said Karataev, touching the dog that lay at his feet, and again turning over he fell asleep immediately. Sounds of crying and screaming came from somewhere in the distance outside, and flames were visible through the cracks of the shed, but inside it was quiet and dark. For a long time Pierre did not sleep, but lay with eyes open in the darkness, listening to the regular snoring of Platon who lay beside him, and he felt that the world that had been shattered was once more stirring in his soul with a new beauty and on new and unshakable foundations. CHAPTER XIII Twenty-three soldiers, three officers, and two officials were confined in the shed in which Pierre had been placed and where he remained for four weeks. When Pierre remembered them afterwards they all seemed misty figures to him except Platon Karataev, who always remained in his mind a most vivid and precious memory and the personification of everything Russian, kindly, and round. When Pierre saw his neighbor next morning at dawn the first impression of him, as of something round, was fully confirmed: Platon's whole figure--in a French overcoat girdled with a cord, a soldier's cap, and bast shoes--was round. His head was quite round, his back, chest, shoulders, and even his arms, which he held as if ever ready to embrace something, were rounded, his pleasant smile and his large, gentle brown eyes were also round. Platon Karataev must have been fifty, judging by his stories of campaigns he had been in, told as by an old soldier. He did not himself know his age and was quite unable to determine it. But his brilliantly white, strong teeth which showed in two unbroken semicircles when he laughed--as he often did--were all sound and good, there was not a gray hair in his beard or on his head, and his whole body gave an impression of suppleness and especially of firmness and endurance. His face, despite its fine, rounded wrinkles, had an expression of innocence and youth, his voice was pleasant and musical. But the chief peculiarity of his speech was its directness and appositeness. It was evident that he never considered what he had said or was going to say, and consequently the rapidity and justice of his intonation had an irresistible persuasiveness. His physical strength and agility during the first days of his imprisonment were such that he seemed not to know what fatigue and sickness meant. Every night before lying down, he said: "Lord, lay me down as a stone and raise me up as a loaf!" and every morning on getting up, he said: "I lay down and curled up, I get up and shake myself." And indeed he only had to lie down, to fall asleep like a stone, and he only had to shake himself, to be ready without a moment's delay for some work, just as children are ready to play directly they awake. He could do everything, not very well but not badly. He baked, cooked, sewed, planed, and mended boots. He was always busy, and only at night allowed himself conversation--of which he was fond--and songs. He did not sing like a trained singer who knows he is listened to, but like the birds, evidently giving vent to the sounds in the same way that one stretches oneself or walks about to get rid of stiffness, and the sounds were always high-pitched, mournful, delicate, and almost feminine, and his face at such times was very serious. Having been taken prisoner and allowed his beard to grow, he seemed to have thrown off all that had been forced upon him- everything military and alien to himself--and had returned to his former peasant habits. "A soldier on leave--a shirt outside breeches," he would say. He did not like talking about his life as a soldier, though he did not complain, and often mentioned that he had not been flogged once during the whole of his army service. When he related anything it was generally some old and evidently precious memory of his "Christian" life, as he called his peasant existence. The proverbs, of which his talk was full, were for the most part not the coarse and indecent saws soldiers employ, but those folk sayings which taken without a context seem so insignificant, but when used appositely suddenly acquire a significance of profound wisdom. He would often say the exact opposite of what he had said on a previous occasion, yet both would be right. He liked to talk and he talked well, adorning his speech with terms of endearment and with folk sayings which Pierre thought he invented himself, but the chief charm of his talk lay in the fact that the commonest events--sometimes just such as Pierre had witnessed without taking notice of them- assumed in Karataev's a character of solemn fitness. He liked to hear the folk tales one of the soldiers used to tell of an evening (they were always the same), but most of all he liked to hear stories of real life. He would smile joyfully when listening to such stories, now and then putting in a word or asking a question to make the moral beauty of what he was told clear to himself. Karataev had no attachments, friendships, or love, as Pierre understood them, but loved and lived affectionately with everything life brought him in contact with, particularly with man--not any particular man, but those with whom he happened to be. He loved his dog, his comrades, the French, and Pierre who was his neighbor, but Pierre felt that in spite of Karataev's affectionate tenderness for him (by which he unconsciously gave Pierre's spiritual life its due) he would not have grieved for a moment at parting from him. And Pierre began to feel in the same way toward Karataev. To all the other prisoners Platon Karataev seemed a most ordinary soldier. They called him "little falcon" or "Platosha," chaffed him good-naturedly, and sent him on errands. But to Pierre he always remained what he had seemed that first night: an unfathomable, rounded, eternal personification of the spirit of simplicity and truth. Platon Karataev knew nothing by heart except his prayers. When he began to speak he seemed not to know how he would conclude. Sometimes Pierre, struck by the meaning of his words, would ask him to repeat them, but Platon could never recall what he had said a moment before, just as he never could repeat to Pierre the words of his favorite song: native and birch tree and my heart is sick occurred in it, but when spoken and not sung, no meaning could be got out of it. He did not, and could not, understand the meaning of words apart from their context. Every word and action of his was the manifestation of an activity unknown to him, which was his life. But his life, as he regarded it, had no meaning as a separate thing. It had meaning only as part of a whole of which he was always conscious. His words and actions flowed from him as evenly, inevitably, and spontaneously as fragrance exhales from a flower. He could not understand the value or significance of any word or deed taken separately. CHAPTER XIV When Princess Mary heard from Nicholas that her brother was with the Rostovs at Yaroslavl she at once prepared to go there, in spite of her aunt's efforts to dissuade her--and not merely to go herself but to take her nephew with her. Whether it were difficult or easy, possible or impossible, she did not ask and did not want to know: it was her duty not only herself to be near her brother who was perhaps dying, but to do everything possible to take his son to him, and so she prepared to set off. That she had not heard from Prince Andrew himself, Princess Mary attributed to his being too weak to write or to his considering the long journey too hard and too dangerous for her and his son. In a few days Princess Mary was ready to start. Her equipages were the huge family coach in which she had traveled to Voronezh, a semiopen trap, and a baggage cart. With her traveled Mademoiselle Bourienne, little Nicholas and his tutor, her old nurse, three maids, Tikhon, and a young footman and courier her aunt had sent to accompany her. The usual route through Moscow could not be thought of, and the roundabout way Princess Mary was obliged to take through Lipetsk, Ryazan, Vladimir, and Shuya was very long and, as post horses were not everywhere obtainable, very difficult, and near Ryazan where the French were said to have shown themselves was even dangerous. During this difficult journey Mademoiselle Bourienne, Dessalles, and Princess Mary's servants were astonished at her energy and firmness of spirit. She went to bed later and rose earlier than any of them, and no difficulties daunted her. Thanks to her activity and energy, which infected her fellow travelers, they approached Yaroslavl by the end of the second week. The last days of her stay in Voronezh had been the happiest of her life. Her love for Rostov no longer tormented or agitated her. It filled her whole soul, had become an integral part of herself, and she no longer struggled against it. Latterly she had become convinced that she loved and was beloved, though she never said this definitely to herself in words. She had become convinced of it at her last interview with Nicholas, when he had come to tell her that her brother was with the Rostovs. Not by a single word had Nicholas alluded to the fact that Prince Andrew's relations with Natasha might, if he recovered, be renewed, but Princess Mary saw by his face that he knew and thought of this. Yet in spite of that, his relation to her--considerate, delicate, and loving--not only remained unchanged, but it sometimes seemed to Princess Mary that he was even glad that the family connection between them allowed him to express his friendship more freely. She knew that she loved for the first and only time in her life and felt that she was beloved, and was happy in regard to it. But this happiness on one side of her spiritual nature did not prevent her feeling grief for her brother with full force; on the contrary, that spiritual tranquility on the one side made it the more possible for her to give full play to her feeling for her brother. That feeling was so strong at the moment of leaving Voronezh that those who saw her off, as they looked at her careworn, despairing face, felt sure she would fall ill on the journey. But the very difficulties and preoccupations of the journey, which she took so actively in hand, saved her for a while from her grief and gave her strength. As always happens when traveling, Princess Mary thought only of the journey itself, forgetting its object. But as she approached Yaroslavl the thought of what might await her there--not after many days, but that very evening--again presented itself to her and her agitation increased to its utmost limit. The courier who had been sent on in advance to find out where the Rostovs were staying in Yaroslavl, and in what condition Prince Andrew was, when he met the big coach just entering the town gates was appalled by the terrible pallor of the princess' face that looked out at him from the window. "I have found out everything, your excellency: the Rostovs are staying at the merchant Bronnikov's house, in the Square not far from here, right above the Volga," said the courier. Princess Mary looked at him with frightened inquiry, not understanding why he did not reply to what she chiefly wanted to know: how was her brother? Mademoiselle Bourienne put that question for her. "How is the prince?" she asked. "His excellency is staying in the same house with them." "Then he is alive," thought Princess Mary, and asked in a low voice: "How is he?" "The servants say he is still the same." What "still the same" might mean Princess Mary did not ask, but with an unnoticed glance at little seven-year-old Nicholas, who was sitting in front of her looking with pleasure at the town, she bowed her head and did not raise it again till the heavy coach, rumbling, shaking and swaying, came to a stop. The carriage steps clattered as they were let down. The carriage door was opened. On the left there was water--a great river--and on the right a porch. There were people at the entrance: servants, and a rosy girl with a large plait of black hair, smiling as it seemed to Princess Mary in an unpleasantly affected way. (This was Sonya.) Princess Mary ran up the steps. "This way, this way!" said the girl, with the same artificial smile, and the princess found herself in the hall facing an elderly woman of Oriental type, who came rapidly to meet her with a look of emotion. This was the countess. She embraced Princess Mary and kissed her. "Mon enfant!" she muttered, "je vous aime et vous connais depuis longtemps."* *"My child! I love you and have known you a long time." Despite her excitement, Princess Mary realized that this was the countess and that it was necessary to say something to her. Hardly knowing how she did it, she contrived to utter a few polite phrases in French in the same tone as those that had been addressed to her, and asked: "How is he?" "The doctor says that he is not in danger," said the countess, but as she spoke she raised her eyes with a sigh, and her gesture conveyed a contradiction of her words. "Where is he? Can I see him--can I?" asked the princess. "One moment, Princess, one moment, my dear! Is this his son?" said the countess, turning to little Nicholas who was coming in with Dessalles. "There will be room for everybody, this is a big house. Oh, what a lovely boy!" The countess took Princess Mary into the drawing room, where Sonya was talking to Mademoiselle Bourienne. The countess caressed the boy, and the old count came in and welcomed the princess. He had changed very much since Princess Mary had last seen him. Then he had been a brisk, cheerful, self-assured old man; now he seemed a pitiful, bewildered person. While talking to Princess Mary he continually looked round as if asking everyone whether he was doing the right thing. After the destruction of Moscow and of his property, thrown out of his accustomed groove he seemed to have lost the sense of his own significance and to feel that there was no longer a place for him in life. In spite of her one desire to see her brother as soon as possible, and her vexation that at the moment when all she wanted was to see him they should be trying to entertain her and pretending to admire her nephew, the princess noticed all that was going on around her and felt the necessity of submitting, for a time, to this new order of things which she had entered. She knew it to be necessary, and though it was hard for her she was not vexed with these people. "This is my niece," said the count, introducing Sonya--"You don't know her, Princess?" Princess Mary turned to Sonya and, trying to stifle the hostile feeling that arose in her toward the girl, she kissed her. But she felt oppressed by the fact that the mood of everyone around her was so far from what was in her own heart. "Where is he?" she asked again, addressing them all. "He is downstairs. Natasha is with him," answered Sonya, flushing. "We have sent to ask. I think you must be tired, Princess." Tears of vexation showed themselves in Princess Mary's eyes. She turned away and was about to ask the countess again how to go to him, when light, impetuous, and seemingly buoyant steps were heard at the door. The princess looked round and saw Natasha coming in, almost running--that Natasha whom she had liked so little at their meeting in Moscow long since. But hardly had the princess looked at Natasha's face before she realized that here was a real comrade in her grief, and consequently a friend. She ran to meet her, embraced her, and began to cry on her shoulder. As soon as Natasha, sitting at the head of Prince Andrew's bed, heard of Princess Mary's arrival, she softly left his room and hastened to her with those swift steps that had sounded buoyant to Princess Mary. There was only one expression on her agitated face when she ran into the drawing room--that of love--boundless love for him, for her, and for all that was near to the man she loved; and of pity, suffering for others, and passionate desire to give herself entirely to helping them. It was plain that at that moment there was in Natasha's heart no thought of herself or of her own relations with Prince Andrew. Princess Mary, with her acute sensibility, understood all this at the first glance at Natasha's face, and wept on her shoulder with sorrowful pleasure. "Come, come to him, Mary," said Natasha, leading her into the other room. Princess Mary raised her head, dried her eyes, and turned to Natasha. She felt that from her she would be able to understand and learn everything. "How..." she began her question but stopped short. She felt that it was impossible to ask, or to answer, in words. Natasha's face eyes would have to tell her all more clearly and profoundly. Natasha was gazing at her, but seemed afraid and in doubt whether to say all she knew or not; she seemed to feel that before those luminous eyes which penetrated into the very depths of her heart, it was impossible not to tell the whole truth which she saw. And suddenly, Natasha's lips twitched, ugly wrinkles gathered round her mouth, and covering her face with her hands she burst into sobs. Princess Mary understood. But she still hoped, and asked, in words she herself did not trust: "But how is his wound? What is his general condition?" "You, you... will see," was all Natasha could say. They sat a little while downstairs near his room till they had left off crying and were able to go to him with calm faces. "How has his whole illness gone? Is it long since he grew worse? When did this happen?" Princess Mary inquired. Natasha told her that at first there had been danger from his feverish condition and the pain he suffered, but at Troitsa that had passed and the doctor had only been afraid of gangrene. That danger had also passed. When they reached Yaroslavl the wound had begun to fester (Natasha knew all about such things as festering) and the doctor had said that the festering might take a normal course. Then fever set in, but the doctor had said the fever was not very serious. "But two days ago this suddenly happened," said Natasha, struggling with her sobs. "I don't know why, but you will see what he is like." "Is he weaker? Thinner?" asked the princess. "No, it's not that, but worse. You will see. O, Mary, he is too good, he cannot, cannot live, because..." CHAPTER XV When Natasha opened Prince Andrew's door with a familiar movement and let Princess Mary pass into the room before her, the princess felt the sobs in her throat. Hard as she had tried to prepare herself, and now tried to remain tranquil, she knew that she would be unable to look at him without tears. The princess understood what Natasha had meant by the words: "two days ago this suddenly happened." She understood those words to mean that he had suddenly softened and that this softening and gentleness were signs of approaching death. As she stepped to the door she already saw in imagination Andrew's face as she remembered it in childhood, a gentle, mild, sympathetic face which he had rarely shown, and which therefore affected her very strongly. She was sure he would speak soft, tender words to her such as her father had uttered before his death, and that she would not be able to bear it and would burst into sobs in his presence. Yet sooner or later it had to be, and she went in. The sobs rose higher and higher in her throat as she more and more clearly distinguished his form and her shortsighted eyes tried to make out his features, and then she saw his face and met his gaze. He was lying in a squirrel-fur dressing gown on a divan, surrounded by pillows. He was thin and pale. In one thin, translucently white hand he held a handkerchief, while with the other he stroked the delicate mustache he had grown, moving his fingers slowly. His eyes gazed at them as they entered. On seeing his face and meeting his eyes Princess Mary's pace suddenly slackened, she felt her tears dry up and her sobs ceased. She suddenly felt guilty and grew timid on catching the expression of his face and eyes. "But in what am I to blame?" she asked herself. And his cold, stern look replied: "Because you are alive and thinking of the living, while I..." In the deep gaze that seemed to look not outwards but inwards there was an almost hostile expression as he slowly regarded his sister and Natasha. He kissed his sister, holding her hand in his as was their wont. "How are you, Mary? How did you manage to get here?" said he in a voice as calm and aloof as his look. Had he screamed in agony, that scream would not have struck such horror into Princess Mary's heart as the tone of his voice. "And have you brought little Nicholas?" he asked in the same slow, quiet manner and with an obvious effort to remember. "How are you now?" said Princess Mary, herself surprised at what she was saying. "That, my dear, you must ask the doctor," he replied, and again making an evident effort to be affectionate, he said with his lips only (his words clearly did not correspond to his thoughts): "Merci, chere amie, d'etre venue."* *"Thank you for coming, my dear." Princess Mary pressed his hand. The pressure made him wince just perceptibly. He was silent, and she did not know what to say. She now understood what had happened to him two days before. In his words, his tone, and especially in that calm, almost antagonistic look could be felt an estrangement from everything belonging to this world, terrible in one who is alive. Evidently only with an effort did he understand anything living; but it was obvious that he failed to understand, not because he lacked the power to do so but because he understood something else--something the living did not and could not understand--and which wholly occupied his mind. "There, you see how strangely fate has brought us together," said he, breaking the silence and pointing to Natasha. "She looks after me all the time." Princess Mary heard him and did not understand how he could say such a thing. He, the sensitive, tender Prince Andrew, how could he say that, before her whom he loved and who loved him? Had he expected to live he could not have said those words in that offensively cold tone. If he had not known that he was dying, how could he have failed to pity her and how could he speak like that in her presence? The only explanation was that he was indifferent, because something else, much more important, had been revealed to him. The conversation was cold and disconnected and continually broke off. "Mary came by way of Ryazan," said Natasha. Prince Andrew did not notice that she called his sister Mary, and only after calling her so in his presence did Natasha notice it herself. "Really?" he asked. "They told her that all Moscow has been burned down, and that..." Natasha stopped. It was impossible to talk. It was plain that he was making an effort to listen, but could not do so. "Yes, they say it's burned," he said. "It's a great pity," and he gazed straight before him, absently stroking his mustache with his fingers. "And so you have met Count Nicholas, Mary?" Prince Andrew suddenly said, evidently wishing to speak pleasantly to them. "He wrote here that he took a great liking to you," he went on simply and calmly, evidently unable to understand all the complex significance his words had for living people. "If you liked him too, it would be a good thing for you to get married," he added rather more quickly, as if pleased at having found words he had long been seeking. Princess Mary heard his words but they had no meaning for her, except as a proof of how far away he now was from everything living. "Why talk of me?" she said quietly and glanced at Natasha. Natasha, who felt her glance, did not look at her. All three were again silent. "Andrew, would you like..." Princess Mary suddenly said in a trembling voice, "would you like to see little Nicholas? He is always talking about you!" Prince Andrew smiled just perceptibly and for the first time, but Princess Mary, who knew his face so well, saw with horror that he did not smile with pleasure or affection for his son, but with quiet, gentle irony because he thought she was trying what she believed to be the last means of arousing him. "Yes, I shall be very glad to see him. Is he quite well?" When little Nicholas was brought into Prince Andrew's room he looked at his father with frightened eyes, but did not cry, because no one else was crying. Prince Andrew kissed him and evidently did not know what to say to him. When Nicholas had been led away, Princess Mary again went up to her brother, kissed him, and unable to restrain her tears any longer began to cry. He looked at her attentively. "Is it about Nicholas?" he asked. Princess Mary nodded her head, weeping. "Mary, you know the Gosp..." but he broke off. "What did you say?" "Nothing. You mustn't cry here," he said, looking at her with the same cold expression. When Princess Mary began to cry, he understood that she was crying at the thought that little Nicholas would be left without a father. With a great effort he tried to return to life and to see things from their point of view. "Yes, to them it must seem sad!" he thought. "But how simple it is. "The fowls of the air sow not, neither do they reap, yet your Father feedeth them," he said to himself and wished to say to Princess Mary; "but no, they will take it their own way, they won't understand! They can't understand that all those feelings they prize so--all our feelings, all those ideas that seem so important to us, are unnecessary. We cannot understand one another," and he remained silent. Prince Andrew's little son was seven. He could scarcely read, and knew nothing. After that day he lived through many things, gaining knowledge, observation, and experience, but had he possessed all the faculties he afterwards acquired, he could not have had a better or more profound understanding of the meaning of the scene he had witnessed between his father, Mary, and Natasha, than he had then. He understood it completely, and, leaving the room without crying, went silently up to Natasha who had come out with him and looked shyly at her with his beautiful, thoughtful eyes, then his uplifted, rosy upper lip trembled and leaning his head against her he began to cry. After that he avoided Dessalles and the countess who caressed him and either sat alone or came timidly to Princess Mary, or to Natasha of whom he seemed even fonder than of his aunt, and clung to them quietly and shyly. When Princess Mary had left Prince Andrew she fully understood what Natasha's face had told her. She did not speak any more to Natasha of hopes of saving his life. She took turns with her beside his sofa, and did not cry any more, but prayed continually, turning in soul to that Eternal and Unfathomable, whose presence above the dying man was now so evident. CHAPTER XVI Not only did Prince Andrew know he would die, but he felt that he was dying and was already half dead. He was conscious of an aloofness from everything earthly and a strange and joyous lightness of existence. Without haste or agitation he awaited what was coming. That inexorable, eternal, distant, and unknown the presence of which he had felt continually all his life--was now near to him and, by the strange lightness he experienced, almost comprehensible and palpable... Formerly he had feared the end. He had twice experienced that terribly tormenting fear of death--the end--but now he no longer understood that fear. He had felt it for the first time when the shell spun like a top before him, and he looked at the fallow field, the bushes, and the sky, and knew that he was face to face with death. When he came to himself after being wounded and the flower of eternal, unfettered love had instantly unfolded itself in his soul as if freed from the bondage of life that had restrained it, he no longer feared death and ceased to think about it. During the hours of solitude, suffering, and partial delirium he spent after he was wounded, the more deeply he penetrated into the new principle of eternal love revealed to him, the more he unconsciously detached himself from earthly life. To love everything and everybody and always to sacrifice oneself for love meant not to love anyone, not to live this earthly life. And the more imbued he became with that principle of love, the more he renounced life and the more completely he destroyed that dreadful barrier which--in the absence of such love--stands between life and death. When during those first days he remembered that he would have to die, he said to himself: "Well, what of it? So much the better!" But after the night in Mytishchi when, half delirious, he had seen her for whom he longed appear before him and, having pressed her hand to his lips, had shed gentle, happy tears, love for a particular woman again crept unobserved into his heart and once more bound him to life. And joyful and agitating thoughts began to occupy his mind. Recalling the moment at the ambulance station when he had seen Kuragin, he could not now regain the feeling he then had, but was tormented by the question whether Kuragin was alive. And he dared not inquire. His illness pursued its normal physical course, but what Natasha referred to when she said: "This suddenly happened," had occurred two days before Princess Mary arrived. It was the last spiritual struggle between life and death, in which death gained the victory. It was the unexpected realization of the fact that he still valued life as presented to him in the form of his love for Natasha, and a last, though ultimately vanquished, attack of terror before the unknown. It was evening. As usual after dinner he was slightly feverish, and his thoughts were preternaturally clear. Sonya was sitting by the table. He began to doze. Suddenly a feeling of happiness seized him. "Ah, she has come!" thought he. And so it was: in Sonya's place sat Natasha who had just come in noiselessly. Since she had begun looking after him, he had always experienced this physical consciousness of her nearness. She was sitting in an armchair placed sideways, screening the light of the candle from him, and was knitting a stocking. She had learned to knit stockings since Prince Andrew had casually mentioned that no one nursed the sick so well as old nurses who knit stockings, and that there is something soothing in the knitting of stockings. The needles clicked lightly in her slender, rapidly moving hands, and he could clearly see the thoughtful profile of her drooping face. She moved, and the ball rolled off her knees. She started, glanced round at him, and screening the candle with her hand stooped carefully with a supple and exact movement, picked up the ball, and regained her former position. He looked at her without moving and saw that she wanted to draw a deep breath after stooping, but refrained from doing so and breathed cautiously. At the Troitsa monastery they had spoken of the past, and he had told her that if he lived he would always thank God for his wound which had brought them together again, but after that they never spoke of the future. "Can it or can it not be?" he now thought as he looked at her and listened to the light click of the steel needles. "Can fate have brought me to her so strangely only for me to die?... Is it possible that the truth of life has been revealed to me only to show me that I have spent my life in falsity? I love her more than anything in the world! But what am I to do if I love her?" he thought, and he involuntarily groaned, from a habit acquired during his sufferings. On hearing that sound Natasha put down the stocking, leaned nearer to him, and suddenly, noticing his shining eyes, stepped lightly up to him and bent over him. "You are not asleep?" "No, I have been looking at you a long time. I felt you come in. No one else gives me that sense of soft tranquillity that you do... that light. I want to weep for joy." Natasha drew closer to him. Her face shone with rapturous joy. "Natasha, I love you too much! More than anything in the world." "And I!"--She turned away for an instant. "Why too much?" she asked. "Why too much?... Well, what do you, what do you feel in your soul, your whole soul--shall I live? What do you think?" "I am sure of it, sure!" Natasha almost shouted, taking hold of both his hands with a passionate movement. He remained silent awhile. "How good it would be!" and taking her hand he kissed it. Natasha felt happy and agitated, but at once remembered that this would not do and that he had to be quiet. "But you have not slept," she said, repressing her joy. "Try to sleep... please!" He pressed her hand and released it, and she went back to the candle and sat down again in her former position. Twice she turned and looked at him, and her eyes met his beaming at her. She set herself a task on her stocking and resolved not to turn round till it was finished. Soon he really shut his eyes and fell asleep. He did not sleep long and suddenly awoke with a start and in a cold perspiration. As he fell asleep he had still been thinking of the subject that now always occupied his mind--about life and death, and chiefly about death. He felt himself nearer to it. "Love? What is love?" he thought. "Love hinders death. Love is life. All, everything that I understand, I understand only because I love. Everything is, everything exists, only because I love. Everything is united by it alone. Love is God, and to die means that I, a particle of love, shall return to the general and eternal source." These thoughts seemed to him comforting. But they were only thoughts. Something was lacking in them, they were not clear, they were too one-sidedly personal and brain-spun. And there was the former agitation and obscurity. He fell asleep. He dreamed that he was lying in the room he really was in, but that he was quite well and unwounded. Many various, indifferent, and insignificant people appeared before him. He talked to them and discussed something trivial. They were preparing to go away somewhere. Prince Andrew dimly realized that all this was trivial and that he had more important cares, but he continued to speak, surprising them by empty witticisms. Gradually, unnoticed, all these persons began to disappear and a single question, that of the closed door, superseded all else. He rose and went to the door to bolt and lock it. Everything depended on whether he was, or was not, in time to lock it. He went, and tried to hurry, but his legs refused to move and he knew he would not be in time to lock the door though he painfully strained all his powers. He was seized by an agonizing fear. And that fear was the fear of death. It stood behind the door. But just when he was clumsily creeping toward the door, that dreadful something on the other side was already pressing against it and forcing its way in. Something not human--death--was breaking in through that door, and had to be kept out. He seized the door, making a final effort to hold it back--to lock it was no longer possible--but his efforts were weak and clumsy and the door, pushed from behind by that terror, opened and closed again. Once again it pushed from outside. His last superhuman efforts were vain and both halves of the door noiselessly opened. It entered, and it was death, and Prince Andrew died. But at the instant he died, Prince Andrew remembered that he was asleep, and at the very instant he died, having made an effort, he awoke. "Yes, it was death! I died--and woke up. Yes, death is an awakening!" And all at once it grew light in his soul and the veil that had till then concealed the unknown was lifted from his spiritual vision. He felt as if powers till then confined within him had been liberated, and that strange lightness did not again leave him. When, waking in a cold perspiration, he moved on the divan, Natasha went up and asked him what was the matter. He did not answer and looked at her strangely, not understanding. That was what had happened to him two days before Princess Mary's arrival. From that day, as the doctor expressed it, the wasting fever assumed a malignant character, but what the doctor said did not interest Natasha, she saw the terrible moral symptoms which to her were more convincing. From that day an awakening from life came to Prince Andrew together with his awakening from sleep. And compared to the duration of life it did not seem to him slower than an awakening from sleep compared to the duration of a dream. There was nothing terrible or violent in this comparatively slow awakening. His last days and hours passed in an ordinary and simple way. Both Princess Mary and Natasha, who did not leave him, felt this. They did not weep or shudder and during these last days they themselves felt that they were not attending on him (he was no longer there, he had left them) but on what reminded them most closely of him--his body. Both felt this so strongly that the outward and terrible side of death did not affect them and they did not feel it necessary to foment their grief. Neither in his presence nor out of it did they weep, nor did they ever talk to one another about him. They felt that they could not express in words what they understood. They both saw that he was sinking slowly and quietly, deeper and deeper, away from them, and they both knew that this had to be so and that it was right. He confessed, and received communion: everyone came to take leave of him. When they brought his son to him, he pressed his lips to the boy's and turned away, not because he felt it hard and sad (Princess Mary and Natasha understood that) but simply because he thought it was all that was required of him, but when they told him to bless the boy, he did what was demanded and looked round as if asking whether there was anything else he should do. When the last convulsions of the body, which the spirit was leaving, occurred, Princess Mary and Natasha were present. "Is it over?" said Princess Mary when his body had for a few minutes lain motionless, growing cold before them. Natasha went up, looked at the dead eyes, and hastened to close them. She closed them but did not kiss them, but clung to that which reminded her most nearly of him--his body. "Where has he gone? Where is he now?..." When the body, washed and dressed, lay in the coffin on a table, everyone came to take leave of him and they all wept. Little Nicholas cried because his heart was rent by painful perplexity. The countess and Sonya cried from pity for Natasha and because he was no more. The old count cried because he felt that before long, he, too, must take the same terrible step. Natasha and Princess Mary also wept now, but not because of their own personal grief; they wept with a reverent and softening emotion which had taken possession of their souls at the consciousness of the simple and solemn mystery of death that had been accomplished in their presence. BOOK THIRTEEN: 1812 CHAPTER I Man's mind cannot grasp the causes of events in their completeness, but the desire to find those causes is implanted in man's soul. And without considering the multiplicity and complexity of the conditions any one of which taken separately may seem to be the cause, he snatches at the first approximation to a cause that seems to him intelligible and says: "This is the cause!" In historical events (where the actions of men are the subject of observation) the first and most primitive approximation to present itself was the will of the gods and, after that, the will of those who stood in the most prominent position--the heroes of history. But we need only penetrate to the essence of any historic event--which lies in the activity of the general mass of men who take part in it--to be convinced that the will of the historic hero does not control the actions of the mass but is itself continually controlled. It may seem to be a matter of indifference whether we understand the meaning of historical events this way or that; yet there is the same difference between a man who says that the people of the West moved on the East because Napoleon wished it and a man who says that this happened because it had to happen, as there is between those who declared that the earth was stationary and that the planets moved round it and those who admitted that they did not know what upheld the earth, but knew there were laws directing its movement and that of the other planets. There is, and can be, no cause of an historical event except the one cause of all causes. But there are laws directing events, and some of these laws are known to us while we are conscious of others we cannot comprehend. The discovery of these laws is only possible when we have quite abandoned the attempt to find the cause in the will of some one man, just as the discovery of the laws of the motion of the planets was possible only when men abandoned the conception of the fixity of the earth. The historians consider that, next to the battle of Borodino and the occupation of Moscow by the enemy and its destruction by fire, the most important episode of the war of 1812 was the movement of the Russian army from the Ryazana to the Kaluga road and to the Tarutino camp--the so-called flank march across the Krasnaya Pakhra River. They ascribe the glory of that achievement of genius to different men and dispute as to whom the honor is due. Even foreign historians, including the French, acknowledge the genius of the Russian commanders when they speak of that flank march. But it is hard to understand why military writers, and following them others, consider this flank march to be the profound conception of some one man who saved Russia and destroyed Napoleon. In the first place it is hard to understand where the profundity and genius of this movement lay, for not much mental effort was needed to see that the best position for an army when it is not being attacked is where there are most provisions; and even a dull boy of thirteen could have guessed that the best position for an army after its retreat from Moscow in 1812 was on the Kaluga road. So it is impossible to understand by what reasoning the historians reach the conclusion that this maneuver was a profound one. And it is even more difficult to understand just why they think that this maneuver was calculated to save Russia and destroy the French; for this flank march, had it been preceded, accompanied, or followed by other circumstances, might have proved ruinous to the Russians and salutary for the French. If the position of the Russian army really began to improve from the time of that march, it does not at all follow that the march was the cause of it. That flank march might not only have failed to give any advantage to the Russian army, but might in other circumstances have led to its destruction. What would have happened had Moscow not burned down? If Murat had not lost sight of the Russians? If Napoleon had not remained inactive? If the Russian army at Krasnaya Pakhra had given battle as Bennigsen and Barclay advised? What would have happened had the French attacked the Russians while they were marching beyond the Pakhra? What would have happened if on approaching Tarutino, Napoleon had attacked the Russians with but a tenth of the energy he had shown when he attacked them at Smolensk? What would have happened had the French moved on Petersburg?... In any of these eventualities the flank march that brought salvation might have proved disastrous. The third and most incomprehensible thing is that people studying history deliberately avoid seeing that this flank march cannot be attributed to any one man, that no one ever foresaw it, and that in reality, like the retreat from Fili, it did not suggest itself to anyone in its entirety, but resulted--moment by moment, step by step, event by event--from an endless number of most diverse circumstances and was only seen in its entirety when it had been accomplished and belonged to the past. At the council at Fili the prevailing thought in the minds of the Russian commanders was the one naturally suggesting itself, namely, a direct retreat by the Nizhni road. In proof of this there is the fact that the majority of the council voted for such a retreat, and above all there is the well-known conversation after the council, between the commander in chief and Lanskoy, who was in charge of the commissariat department. Lanskoy informed the commander in chief that the army supplies were for the most part stored along the Oka in the Tula and Ryazan provinces, and that if they retreated on Nizhni the army would be separated from its supplies by the broad river Oka, which cannot be crossed early in winter. This was the first indication of the necessity of deviating from what had previously seemed the most natural course--a direct retreat on Nizhni-Novgorod. The army turned more to the south, along the Ryazan road and nearer to its supplies. Subsequently the inactivity of the French (who even lost sight of the Russian army), concern for the safety of the arsenal at Tula, and especially the advantages of drawing nearer to its supplies caused the army to turn still further south to the Tula road. Having crossed over, by a forced march, to the Tula road beyond the Pakhra, the Russian commanders intended to remain at Podolsk and had no thought of the Tarutino position; but innumerable circumstances and the reappearance of French troops who had for a time lost touch with the Russians, and projects of giving battle, and above all the abundance of provisions in Kaluga province, obliged our army to turn still more to the south and to cross from the Tula to the Kaluga road and go to Tarutino, which was between the roads along which those supplies lay. Just as it is impossible to say when it was decided to abandon Moscow, so it is impossible to say precisely when, or by whom, it was decided to move to Tarutino. Only when the army had got there, as the result of innumerable and varying forces, did people begin to assure themselves that they had desired this movement and long ago foreseen its result. CHAPTER II The famous flank movement merely consisted in this: after the advance of the French had ceased, the Russian army, which had been continually retreating straight back from the invaders, deviated from that direct course and, not finding itself pursued, was naturally drawn toward the district where supplies were abundant. If instead of imagining to ourselves commanders of genius leading the Russian army, we picture that army without any leaders, it could not have done anything but make a return movement toward Moscow, describing an arc in the direction where most provisions were to be found and where the country was richest. That movement from the Nizhni to the Ryazan, Tula, and Kaluga roads was so natural that even the Russian marauders moved in that direction, and demands were sent from Petersburg for Kutuzov to take his army that way. At Tarutino Kutuzov received what was almost a reprimand from the Emperor for having moved his army along the Ryazan road, and the Emperor's letter indicated to him the very position he had already occupied near Kaluga. Having rolled like a ball in the direction of the impetus given by the whole campaign and by the battle of Borodino, the Russian army- when the strength of that impetus was exhausted and no fresh push was received--assumed the position natural to it. Kutuzov's merit lay, not in any strategic maneuver of genius, as it is called, but in the fact that he alone understood the significance of what had happened. He alone then understood the meaning of the French army's inactivity, he alone continued to assert that the battle of Borodino had been a victory, he alone--who as commander in chief might have been expected to be eager to attack--employed his whole strength to restrain the Russian army from useless engagements. The beast wounded at Borodino was lying where the fleeing hunter had left him; but whether he was still alive, whether he was strong and merely lying low, the hunter did not know. Suddenly the beast was heard to moan. The moan of that wounded beast (the French army) which betrayed its calamitous condition was the sending of Lauriston to Kutuzov's camp with overtures for peace. Napoleon, with his usual assurance that whatever entered his head was right, wrote to Kutuzov the first words that occurred to him, though they were meaningless. MONSIEUR LE PRINCE KOUTOUZOV: I am sending one of my adjutants-general to discuss several interesting questions with you. I beg your Highness to credit what he says to you, especially when he expresses the sentiment of esteem and special regard I have long entertained for your person. This letter having no other object, I pray God, monsieur le Prince Koutouzov, to keep you in His holy and gracious protection! NAPOLEON MOSCOW, OCTOBER 30, 1812 Kutuzov replied: "I should be cursed by posterity were I looked on as the initiator of a settlement of any sort. Such is the present spirit of my nation." But he continued to exert all his powers to restrain his troops from attacking. During the month that the French troops were pillaging in Moscow and the Russian troops were quietly encamped at Tarutino, a change had taken place in the relative strength of the two armies--both in spirit and in number--as a result of which the superiority had passed to the Russian side. Though the condition and numbers of the French army were unknown to the Russians, as soon as that change occurred the need of attacking at once showed itself by countless signs. These signs were: Lauriston's mission; the abundance of provisions at Tarutino; the reports coming in from all sides of the inactivity and disorder of the French; the flow of recruits to our regiments; the fine weather; the long rest the Russian soldiers had enjoyed, and the impatience to do what they had been assembled for, which usually shows itself in an army that has been resting; curiosity as to what the French army, so long lost sight of, was doing; the boldness with which our outposts now scouted close up to the French stationed at Tarutino; the news of easy successes gained by peasants and guerrilla troops over the French, the envy aroused by this; the desire for revenge that lay in the heart of every Russian as long as the French were in Moscow, and (above all) a dim consciousness in every soldier's mind that the relative strength of the armies had changed and that the advantage was now on our side. There was a substantial change in the relative strength, and an advance had become inevitable. And at once, as a clock begins to strike and chime as soon as the minute hand has completed a full circle, this change was shown by an increased activity, whirring, and chiming in the higher spheres. CHAPTER III The Russian army was commanded by Kutuzov and his staff, and also by the Emperor from Petersburg. Before the news of the abandonment of Moscow had been received in Petersburg, a detailed plan of the whole campaign had been drawn up and sent to Kutuzov for his guidance. Though this plan had been drawn up on the supposition that Moscow was still in our hands, it was approved by the staff and accepted as a basis for action. Kutuzov only replied that movements arranged from a distance were always difficult to execute. So fresh instructions were sent for the solution of difficulties that might be encountered, as well as fresh people who were to watch Kutuzov's actions and report upon them. Besides this, the whole staff of the Russian army was now reorganized. The posts left vacant by Bagration, who had been killed, and by Barclay, who had gone away in dudgeon, had to be filled. Very serious consideration was given to the question whether it would be better to put A in B's place and B in D's, or on the contrary to put D in A's place, and so on--as if anything more than A's or B's satisfaction depended on this. As a result of the hostility between Kutuzov and Bennigsen, his Chief of Staff, the presence of confidential representatives of the Emperor, and these transfers, a more than usually complicated play of parties was going on among the staff of the army. A was undermining B, D was undermining C, and so on in all possible combinations and permutations. In all these plottings the subject of intrigue was generally the conduct of the war, which all these men believed they were directing; but this affair of the war went on independently of them, as it had to go: that is, never in the way people devised, but flowing always from the essential attitude of the masses. Only in the highest spheres did all these schemes, crossings, and interminglings appear to be a true reflection of what had to happen. Prince Michael Ilarionovich! (wrote the Emperor on the second of October in a letter that reached Kutuzov after the battle at Tarutino) Since September 2 Moscow has been in the hands of the enemy. Your last reports were written on the twentieth, and during all this time not only has no action been taken against the enemy or for the relief of the ancient capital, but according to your last report you have even retreated farther. Serpukhov is already occupied by an enemy detachment and Tula with its famous arsenal so indispensable to the army, is in danger. From General Wintzingerode's reports, I see that an enemy corps of ten thousand men is moving on the Petersburg road. Another corps of several thousand men is moving on Dmitrov. A third has advanced along the Vladimir road, and a fourth, rather considerable detachment is stationed between Ruza and Mozhaysk. Napoleon himself was in Moscow as late as the twenty-fifth. In view of all this information, when the enemy has scattered his forces in large detachments, and with Napoleon and his Guards in Moscow, is it possible that the enemy's forces confronting you are so considerable as not to allow of your taking the offensive? On the contrary, he is probably pursuing you with detachments, or at most with an army corps much weaker than the army entrusted to you. It would seem that, availing yourself of these circumstances, you might advantageously attack a weaker one and annihilate him, or at least oblige him to retreat, retaining in our hands an important part of the provinces now occupied by the enemy, and thereby averting danger from Tula and other towns in the interior. You will be responsible if the enemy is able to direct a force of any size against Petersburg to threaten this capital in which it has not been possible to retain many troops; for with the army entrusted to you, and acting with resolution and energy, you have ample means to avert this fresh calamity. Remember that you have still to answer to our offended country for the loss of Moscow. You have experienced my readiness to reward you. That readiness will not weaken in me, but I and Russia have a right to expect from you all the zeal, firmness, and success which your intellect, military talent, and the courage of the troops you command justify us in expecting. But by the time this letter, which proved that the real relation of the forces had already made itself felt in Petersburg, was dispatched, Kutuzov had found himself unable any longer to restrain the army he commanded from attacking and a battle had taken place. On the second of October a Cossack, Shapovalov, who was out scouting, killed one hare and wounded another. Following the wounded hare he made his way far into the forest and came upon the left flank of Murat's army, encamped there without any precautions. The Cossack laughingly told his comrades how he had almost fallen into the hands of the French. A cornet, hearing the story, informed his commander. The Cossack was sent for and questioned. The Cossack officers wished to take advantage of this chance to capture some horses, but one of the superior officers, who was acquainted with the higher authorities, reported the incident to a general on the staff. The state of things on the staff had of late been exceedingly strained. Ermolov had been to see Bennigsen a few days previously and had entreated him to use his influence with the commander in chief to induce him to take the offensive. "If I did not know you I should think you did not want what you are asking for. I need only advise anything and his Highness is sure to do the opposite," replied Bennigsen. The Cossack's report, confirmed by horse patrols who were sent out, was the final proof that events had matured. The tightly coiled spring was released, the clock began to whirr and the chimes to play. Despite all his supposed power, his intellect, his experience, and his knowledge of men, Kutuzov--having taken into consideration the Cossack's report, a note from Bennigsen who sent personal reports to the Emperor, the wishes he supposed the Emperor to hold, and the fact that all the generals expressed the same wish--could no longer check the inevitable movement, and gave the order to do what he regarded as useless and harmful--gave his approval, that is, to the accomplished fact. CHAPTER IV Bennigsen's note and the Cossack's information that the left flank of the French was unguarded were merely final indications that it was necessary to order an attack, and it was fixed for the fifth of October. On the morning of the fourth of October Kutuzov signed the dispositions. Toll read them to Ermolov, asking him to attend to the further arrangements. "All right--all right. I haven't time just now," replied Ermolov, and left the hut. The dispositions drawn up by Toll were very good. As in the Austerlitz dispositions, it was written--though not in German this time: "The First Column will march here and here," "the Second Column will march there and there," and so on; and on paper, all these columns arrived at their places at the appointed time and destroyed the enemy. Everything had been admirably thought out as is usual in dispositions, and as is always the case, not a single column reached its place at the appointed time. When the necessary number of copies of the dispositions had been prepared, an officer was summoned and sent to deliver them to Ermolov to deal with. A young officer of the Horse Guards, Kutuzov's orderly, pleased at the importance of the mission entrusted to him, went to Ermolov's quarters. "Gone away," said Ermolov's orderly. The officer of the Horse Guards went to a general with whom Ermolov was often to be found. "No, and the general's out too." The officer, mounting his horse, rode off to someone else. "No, he's gone out." "If only they don't make me responsible for this delay! What a nuisance it is!" thought the officer, and he rode round the whole camp. One man said he had seen Ermolov ride past with some other generals, others said he must have returned home. The officer searched till six o'clock in the evening without even stopping to eat. Ermolov was nowhere to be found and no one knew where he was. The officer snatched a little food at a comrade's, and rode again to the vanguard to find Miloradovich. Miloradovich too was away, but here he was told that he had gone to a ball at General Kikin's and that Ermolov was probably there too. "But where is it?" "Why, there, over at Echkino," said a Cossack officer, pointing to a country house in the far distance. "What, outside our line?" "They've put two regiments as outposts, and they're having such a spree there, it's awful! Two bands and three sets of singers!" The officer rode out beyond our lines to Echkino. While still at a distance he heard as he rode the merry sounds of a soldier's dance song proceeding from the house. "In the meadows... in the meadows!" he heard, accompanied by whistling and the sound of a torban, drowned every now and then by shouts. These sounds made his spirits rise, but at the same time he was afraid that he would be blamed for not having executed sooner the important order entrusted to him. It was already past eight o'clock. He dismounted and went up into the porch of a large country house which had remained intact between the Russian and French forces. In the refreshment room and the hall, footmen were bustling about with wine and viands. Groups of singers stood outside the windows. The officer was admitted and immediately saw all the chief generals of the army together, and among them Ermolov's big imposing figure. They all had their coats unbuttoned and were standing in a semicircle with flushed and animated faces, laughing loudly. In the middle of the room a short handsome general with a red face was dancing the trepak with much spirit and agility. "Ha, ha, ha! Bravo, Nicholas Ivanych! Ha, ha, ha!" The officer felt that by arriving with important orders at such a moment he was doubly to blame, and he would have preferred to wait; but one of the generals espied him and, hearing what he had come about, informed Ermolov. Ermolov came forward with a frown on his face and, hearing what the officer had to say, took the papers from him without a word. "You think he went off just by chance?" said a comrade, who was on the staff that evening, to the officer of the Horse Guards, referring to Ermolov. "It was a trick. It was done on purpose to get Konovnitsyn into trouble. You'll see what a mess there'll be tomorrow." CHAPTER V Next day the decrepit Kutuzov, having given orders to be called early, said his prayers, dressed, and, with an unpleasant consciousness of having to direct a battle he did not approve of, got into his caleche and drove from Letashovka (a village three and a half miles from Tarutino) to the place where the attacking columns were to meet. He sat in the caleche, dozing and waking up by turns, and listening for any sound of firing on the right as an indication that the action had begun. But all was still quiet. A damp dull autumn morning was just dawning. On approaching Tarutino Kutuzov noticed cavalrymen leading their horses to water across the road along which he was driving. Kutuzov looked at them searchingly, stopped his carriage, and inquired what regiment they belonged to. They belonged to a column that should have been far in front and in ambush long before then. "It may be a mistake," thought the old commander in chief. But a little further on he saw infantry regiments with their arms piled and the soldiers, only partly dressed, eating their rye porridge and carrying fuel. He sent for an officer. The officer reported that no order to advance had been received. "How! Not rec..." Kutuzov began, but checked himself immediately and sent for a senior officer. Getting out of his caleche, he waited with drooping head and breathing heavily, pacing silently up and down. When Eykhen, the officer of the general staff whom he had summoned, appeared, Kutuzov went purple in the face, not because that officer was to blame for the mistake, but because he was an object of sufficient importance for him to vent his wrath on. Trembling and panting the old man fell into that state of fury in which he sometimes used to roll on the ground, and he fell upon Eykhen, threatening him with his hands, shouting and loading him with gross abuse. Another man, Captain Brozin, who happened to turn up and who was not at all to blame, suffered the same fate. "What sort of another blackguard are you? I'll have you shot! Scoundrels!" yelled Kutuzov in a hoarse voice, waving his arms and reeling. He was suffering physically. He, the commander in chief, a Serene Highness who everybody said possessed powers such as no man had ever had in Russia, to be placed in this position--made the laughingstock of the whole army! "I needn't have been in such a hurry to pray about today, or have kept awake thinking everything over all night," thought he to himself. "When I was a chit of an officer no one would have dared to mock me so... and now!" He was in a state of physical suffering as if from corporal punishment, and could not avoid expressing it by cries of anger and distress. But his strength soon began to fail him, and looking about him, conscious of having said much that was amiss, he again got into his caleche and drove back in silence. His wrath, once expended, did not return, and blinking feebly he listened to excuses and self-justifications (Ermolov did not come to see him till the next day) and to the insistence of Bennigsen, Konovnitsyn, and Toll that the movement that had miscarried should be executed next day. And once more Kutuzov had to consent. CHAPTER VI Next day the troops assembled in their appointed places in the evening and advanced during the night. It was an autumn night with dark purple clouds, but no rain. The ground was damp but not muddy, and the troops advanced noiselessly, only occasionally a jingling of the artillery could be faintly heard. The men were forbidden to talk out loud, to smoke their pipes, or to strike a light, and they tried to prevent their horses neighing. The secrecy of the undertaking heightened its charm and they marched gaily. Some columns, supposing they had reached their destination, halted, piled arms, and settled down on the cold ground, but the majority marched all night and arrived at places where they evidently should not have been. Only Count Orlov-Denisov with his Cossacks (the least important detachment of all) got to his appointed place at the right time. This detachment halted at the outskirts of a forest, on the path leading from the village of Stromilova to Dmitrovsk. Toward dawn, Count Orlov-Denisov, who had dozed off, was awakened by a deserter from the French army being brought to him. This was a Polish sergeant of Poniatowski's corps, who explained in Polish that he had come over because he had been slighted in the service: that he ought long ago to have been made an officer, that he was braver than any of them, and so he had left them and wished to pay them out. He said that Murat was spending the night less than a mile from where they were, and that if they would let him have a convoy of a hundred men he would capture him alive. Count Orlov-Denisov consulted his fellow officers. The offer was too tempting to be refused. Everyone volunteered to go and everybody advised making the attempt. After much disputing and arguing, Major-General Grekov with two Cossack regiments decided to go with the Polish sergeant. "Now, remember," said Count Orlov-Denisov to the sergeant at parting, "if you have been lying I'll have you hanged like a dog; but if it's true you shall have a hundred gold pieces!" Without replying, the sergeant, with a resolute air, mounted and rode away with Grekov whose men had quickly assembled. They disappeared into the forest, and Count Orlov-Denisov, having seen Grekov off, returned, shivering from the freshness of the early dawn and excited by what he had undertaken on his own responsibility, and began looking at the enemy camp, now just visible in the deceptive light of dawn and the dying campfires. Our columns ought to have begun to appear on an open declivity to his right. He looked in that direction, but though the columns would have been visible quite far off, they were not to be seen. It seemed to the count that things were beginning to stir in the French camp, and his keen-sighted adjutant confirmed this. "Oh, it is really too late," said Count Orlov, looking at the camp. As often happens when someone we have trusted is no longer before our eyes, it suddenly seemed quite clear and obvious to him that the sergeant was an impostor, that he had lied, and that the whole Russian attack would be ruined by the absence of those two regiments, which he would lead away heaven only knew where. How could one capture a commander in chief from among such a mass of troops! "I am sure that rascal was lying," said the count. "They can still be called back," said one of his suite, who like Count Orlov felt distrustful of the adventure when he looked at the enemy's camp. "Eh? Really... what do you think? Should we let them go on or not?" "Will you have them fetched back?" "Fetch them back, fetch them back!" said Count Orlov with sudden determination, looking at his watch. "It will be too late. It is quite light." And the adjutant galloped through the forest after Grekov. When Grekov returned, Count Orlov-Denisov, excited both by the abandoned attempt and by vainly awaiting the infantry columns that still did not appear, as well as by the proximity of the enemy, resolved to advance. All his men felt the same excitement. "Mount!" he commanded in a whisper. The men took their places and crossed themselves.... "Forward, with God's aid!" "Hurrah-ah-ah!" reverberated in the forest, and the Cossack companies, trailing their lances and advancing one after another as if poured out of a sack, dashed gaily across the brook toward the camp. One desperate, frightened yell from the first French soldier who saw the Cossacks, and all who were in the camp, undressed and only just waking up, ran off in all directions, abandoning cannons, muskets, and horses. Had the Cossacks pursued the French, without heeding what was behind and around them, they would have captured Murat and everything there. That was what the officers desired. But it was impossible to make the Cossacks budge when once they had got booty and prisoners. None of them listened to orders. Fifteen hundred prisoners and thirty-eight guns were taken on the spot, besides standards and (what seemed most important to the Cossacks) horses, saddles, horsecloths, and the like. All this had to be dealt with, the prisoners and guns secured, the booty divided--not without some shouting and even a little themselves--and it was on this that the Cossacks all busied themselves. The French, not being farther pursued, began to recover themselves: they formed into detachments and began firing. Orlov-Denisov, still waiting for the other columns to arrive, advanced no further. Meantime, according to the dispositions which said that "the First Column will march" and so on, the infantry of the belated columns, commanded by Bennigsen and directed by Toll, had started in due order and, as always happens, had got somewhere, but not to their appointed places. As always happens the men, starting cheerfully, began to halt; murmurs were heard, there was a sense of confusion, and finally a backward movement. Adjutants and generals galloped about, shouted, grew angry, quarreled, said they had come quite wrong and were late, gave vent to a little abuse, and at last gave it all up and went forward, simply to get somewhere. "We shall get somewhere or other!" And they did indeed get somewhere, though not to their right places; a few eventually even got to their right place, but too late to be of any use and only in time to be fired at. Toll, who in this battle played the part of Weyrother at Austerlitz, galloped assiduously from place to place, finding everything upside down everywhere. Thus he stumbled on Bagovut's corps in a wood when it was already broad daylight, though the corps should long before have joined Orlov-Denisov. Excited and vexed by the failure and supposing that someone must be responsible for it, Toll galloped up to the commander of the corps and began upbraiding him severely, saying that he ought to be shot. General Bagovut, a fighting old soldier of placid temperament, being also upset by all the delay, confusion, and cross-purposes, fell into a rage to everybody's surprise and quite contrary to his usual character and said disagreeable things to Toll. "I prefer not to take lessons from anyone, but I can die with my men as well as anybody," he said, and advanced with a single division. Coming out onto a field under the enemy's fire, this brave general went straight ahead, leading his men under fire, without considering in his agitation whether going into action now, with a single division, would be of any use or no. Danger, cannon balls, and bullets were just what he needed in his angry mood. One of the first bullets killed him, and other bullets killed many of his men. And his division remained under fire for some time quite uselessly. CHAPTER VII Meanwhile another column was to have attacked the French from the front, but Kutuzov accompanied that column. He well knew that nothing but confusion would come of this battle undertaken against his will, and as far as was in his power held the troops back. He did not advance. He rode silently on his small gray horse, indolently answering suggestions that they should attack. "The word attack is always on your tongue, but you don't see that we are unable to execute complicated maneuvers," said he to Miloradovich who asked permission to advance. "We couldn't take Murat prisoner this morning or get to the place in time, and nothing can be done now!" he replied to someone else. When Kutuzov was informed that at the French rear--where according to the reports of the Cossacks there had previously been nobody--there were now two battalions of Poles, he gave a sidelong glance at Ermolov who was behind him and to whom he had not spoken since the previous day. "You see! They are asking to attack and making plans of all kinds, but as soon as one gets to business nothing is ready, and the enemy, forewarned, takes measures accordingly." Ermolov screwed up his eyes and smiled faintly on hearing these words. He understood that for him the storm had blown over, and that Kutuzov would content himself with that hint. "He's having a little fun at my expense," said Ermolov softly, nudging with his knee Raevski who was at his side. Soon after this, Ermolov moved up to Kutuzov and respectfully remarked: "It is not too late yet, your Highness--the enemy has not gone away- if you were to order an attack! If not, the Guards will not so much as see a little smoke." Kutuzov did not reply, but when they reported to him that Murat's troops were in retreat he ordered an advance, though at every hundred paces he halted for three quarters of an hour. The whole battle consisted in what Orlov-Denisov's Cossacks had done: the rest of the army merely lost some hundreds of men uselessly. In consequence of this battle Kutuzov received a diamond decoration, and Bennigsen some diamonds and a hundred thousand rubles, others also received pleasant recognitions corresponding to their various grades, and following the battle fresh changes were made in the staff. "That's how everything is done with us, all topsy-turvy!" said the Russian officers and generals after the Tarutino battle, letting it be understood that some fool there is doing things all wrong but that we ourselves should not have done so, just as people speak today. But people who talk like that either do not know what they are talking about or deliberately deceive themselves. No battle--Tarutino, Borodino, or Austerlitz--takes place as those who planned it anticipated. That is an essential condition. A countless number of free forces (for nowhere is man freer than during a battle, where it is a question of life and death) influence the course taken by the fight, and that course never can be known in advance and never coincides with the direction of any one force. If many simultaneously and variously directed forces act on a given body, the direction of its motion cannot coincide with any one of those forces, but will always be a mean--what in mechanics is represented by the diagonal of a parallelogram of forces. If in the descriptions given by historians, especially French ones, we find their wars and battles carried out in accordance with previously formed plans, the only conclusion to be drawn is that those descriptions are false. The battle of Tarutino obviously did not attain the aim Toll had in view--to lead the troops into action in the order prescribed by the dispositions; nor that which Count Orlov-Denisov may have had in view- to take Murat prisoner; nor the result of immediately destroying the whole corps, which Bennigsen and others may have had in view; nor the aim of the officer who wished to go into action to distinguish himself; nor that of the Cossack who wanted more booty than he got, and so on. But if the aim of the battle was what actually resulted and what all the Russians of that day desired--to drive the French out of Russia and destroy their army--it is quite clear that the battle of Tarutino, just because of its incongruities, was exactly what was wanted at that stage of the campaign. It would be difficult and even impossible to imagine any result more opportune than the actual outcome of this battle. With a minimum of effort and insignificant losses, despite the greatest confusion, the most important results of the whole campaign were attained: the transition from retreat to advance, an exposure of the weakness of the French, and the administration of that shock which Napoleon's army had only awaited to begin its flight. CHAPTER VIII Napoleon enters Moscow after the brilliant victory de la Moskowa; there can be no doubt about the victory for the battlefield remains in the hands of the French. The Russians retreat and abandon their ancient capital. Moscow, abounding in provisions, arms, munitions, and incalculable wealth, is in Napoleon's hands. The Russian army, only half the strength of the French, does not make a single attempt to attack for a whole month. Napoleon's position is most brilliant. He can either fall on the Russian army with double its strength and destroy it; negotiate an advantageous peace, or in case of a refusal make a menacing move on Petersburg, or even, in the case of a reverse, return to Smolensk or Vilna; or remain in Moscow; in short, no special genius would seem to be required to retain the brilliant position the French held at that time. For that, only very simple and easy steps were necessary: not to allow the troops to loot, to prepare winter clothing--of which there was sufficient in Moscow for the whole army--and methodically to collect the provisions, of which (according to the French historians) there were enough in Moscow to supply the whole army for six months. Yet Napoleon, that greatest of all geniuses, who the historians declare had control of the army, took none of these steps. He not merely did nothing of the kind, but on the contrary he used his power to select the most foolish and ruinous of all the courses open to him. Of all that Napoleon might have done: wintering in Moscow, advancing on Petersburg or on Nizhni-Novgorod, or retiring by a more northerly or more southerly route (say by the road Kutuzov afterwards took), nothing more stupid or disastrous can be imagined than what he actually did. He remained in Moscow till October, letting the troops plunder the city; then, hesitating whether to leave a garrison behind him, he quitted Moscow, approached Kutuzov without joining battle, turned to the right and reached Malo-Yaroslavets, again without attempting to break through and take the road Kutuzov took, but retiring instead to Mozhaysk along the devastated Smolensk road. Nothing more stupid than that could have been devised, or more disastrous for the army, as the sequel showed. Had Napoleon's aim been to destroy his army, the most skillful strategist could hardly have devised any series of actions that would so completely have accomplished that purpose, independently of anything the Russian army might do. Napoleon, the man of genius, did this! But to say that he destroyed his army because he wished to, or because he was very stupid, would be as unjust as to say that he had brought his troops to Moscow because he wished to and because he was very clever and a genius. In both cases his personal activity, having no more force than the personal activity of any soldier, merely coincided with the laws that guided the event. The historians quite falsely represent Napoleon's faculties as having weakened in Moscow, and do so only because the results did not justify his actions. He employed all his ability and strength to do the best he could for himself and his army, as he had done previously and as he did subsequently in 1813. His activity at that time was no less astounding than it was in Egypt, in Italy, in Austria, and in Prussia. We do not know for certain in how far his genius was genuine in Egypt--where forty centuries looked down upon his grandeur--for his great exploits there are all told us by Frenchmen. We cannot accurately estimate his genius in Austria or Prussia, for we have to draw our information from French or German sources, and the incomprehensible surrender of whole corps without fighting and of fortresses without a siege must incline Germans to recognize his genius as the only explanation of the war carried on in Germany. But we, thank God, have no need to recognize his genius in order to hide our shame. We have paid for the right to look at the matter plainly and simply, and we will not abandon that right. His activity in Moscow was as amazing and as full of genius as elsewhere. Order after order order and plan after plan were issued by him from the time he entered Moscow till the time he left it. The absence of citizens and of a deputation, and even the burning of Moscow, did not disconcert him. He did not lose sight either of the welfare of his army or of the doings of the enemy, or of the welfare of the people of Russia, or of the direction of affairs in Paris, or of diplomatic considerations concerning the terms of the anticipated peace. CHAPTER IX With regard to military matters, Napoleon immediately on his entry into Moscow gave General Sabastiani strict orders to observe the movements of the Russian army, sent army corps out along the different roads, and charged Murat to find Kutuzov. Then he gave careful directions about the fortification of the Kremlin, and drew up a brilliant plan for a future campaign over the whole map of Russia. With regard to diplomatic questions, Napoleon summoned Captain Yakovlev, who had been robbed and was in rags and did not know how to get out of Moscow, minutely explained to him his whole policy and his magnanimity, and having written a letter to the Emperor Alexander in which he considered it his duty to inform his Friend and Brother that Rostopchin had managed affairs badly in Moscow, he dispatched Yakovlev to Petersburg. Having similarly explained his views and his magnanimity to Tutolmin, he dispatched that old man also to Petersburg to negotiate. With regard to legal matters, immediately after the fires he gave orders to find and execute the incendiaries. And the scoundrel Rostopchin was punished by an order to burn down his houses. With regard to administrative matters, Moscow was granted a constitution. A municipality was established and the following announcement issued: INHABITANTS OF MOSCOW! Your misfortunes are cruel, but His Majesty the Emperor and King desires to arrest their course. Terrible examples have taught you how he punishes disobedience and crime. Strict measures have been taken to put an end to disorder and to re-establish public security. A paternal administration, chosen from among yourselves, will form your municipality or city government. It will take care of you, of your needs, and of your welfare. Its members will be distinguished by a red ribbon worn across the shoulder, and the mayor of the city will wear a white belt as well. But when not on duty they will only wear a red ribbon round the left arm. The city police is established on its former footing, and better order already prevails in consequence of its activity. The government has appointed two commissaries general, or chiefs of police, and twenty commissaries or captains of wards have been appointed to the different wards of the city. You will recognize them by the white ribbon they will wear on the left arm. Several churches of different denominations are open, and divine service is performed in them unhindered. Your fellow citizens are returning every day to their homes. and orders have been given that they should find in them the help and protection due to their misfortunes. These are the measures the government has adopted to re-establish order and relieve your condition. But to achieve this aim it is necessary that you should add your efforts and should, if possible, forget the misfortunes you have suffered, should entertain the hope of a less cruel fate, should be certain that inevitable and ignominious death awaits those who make any attempt on your persons or on what remains of your property, and finally that you should not doubt that these will be safeguarded, since such is the will of the greatest and most just of monarchs. Soldiers and citizens, of whatever nation you may be, re-establish public confidence, the source of the welfare of a state, live like brothers, render mutual aid and protection one to another, unite to defeat the intentions of the evil-minded, obey the military and civil authorities, and your tears will soon cease to flow! With regard to supplies for the army, Napoleon decreed that all the troops in turn should enter Moscow a la maraude* to obtain provisions for themselves, so that the army might have its future provided for. *As looters. With regard to religion, Napoleon ordered the priests to be brought back and services to be again performed in the churches. With regard to commerce and to provisioning the army, the following was placarded everywhere: PROCLAMATION! You, peaceful inhabitants of Moscow, artisans and workmen whom misfortune has driven from the city, and you scattered tillers of the soil, still kept out in the fields by groundless fear, listen! Tranquillity is returning to this capital and order is being restored in it. Your fellow countrymen are emerging boldly from their hiding places on finding that they are respected. Any violence to them or to their property is promptly punished. His Majesty the Emperor and King protects them, and considers no one among you his enemy except those who disobey his orders. He desires to end your misfortunes and restore you to your homes and families. Respond, therefore, to his benevolent intentions and come to us without fear. Inhabitants, return with confidence to your abodes! You will soon find means of satisfying your needs. Craftsmen and industrious artisans, return to your work, your houses, your shops, where the protection of guards awaits you! You shall receive proper pay for your work. And lastly you too, peasants, come from the forests where you are hiding in terror, return to your huts without fear, in full assurance that you will find protection! Markets are established in the city where peasants can bring their surplus supplies and the products of the soil. The government has taken the following steps to ensure freedom of sale for them: (1) From today, peasants, husbandmen, and those living in the neighborhood of Moscow may without any danger bring their supplies of all kinds to two appointed markets, of which one is on the Mokhovaya Street and the other at the Provision Market. (2) Such supplies will be bought from them at such prices as seller and buyer may agree on, and if a seller is unable to obtain a fair price he will be free to take his goods back to his village and no one may hinder him under any pretense. (3) Sunday and Wednesday of each week are appointed as the chief market days and to that end a sufficient number of troops will be stationed along the highroads on Tuesdays and Saturdays at such distances from the town as to protect the carts. (4) Similar measures will be taken that peasants with their carts and horses may meet with no hindrance on their return journey. (5) Steps will immediately be taken to re-establish ordinary trading. Inhabitants of the city and villages, and you, workingmen and artisans, to whatever nation you belong, you are called on to carry out the paternal intentions of His Majesty the Emperor and King and to co-operate with him for the public welfare! Lay your respect and confidence at his feet and do not delay to unite with us! With the object of raising the spirits of the troops and of the people, reviews were constantly held and rewards distributed. The Emperor rode through the streets to comfort the inhabitants, and, despite his preoccupation with state affairs, himself visited the theaters that were established by his order. In regard to philanthropy, the greatest virtue of crowned heads, Napoleon also did all in his power. He caused the words Maison de ma Mere to be inscribed on the charitable institutions, thereby combining tender filial affection with the majestic benevolence of a monarch. He visited the Foundling Hospital and, allowing the orphans saved by him to kiss his white hands, graciously conversed with Tutolmin. Then, as Thiers eloquently recounts, he ordered his soldiers to be paid in forged Russian money which he had prepared: "Raising the use of these means by an act worthy of himself and of the French army, he let relief be distributed to those who had been burned out. But as food was too precious to be given to foreigners, who were for the most part enemies, Napoleon preferred to supply them with money with which to purchase food from outside, and had paper rubles distributed to them." With reference to army discipline, orders were continually being issued to inflict severe punishment for the nonperformance of military duties and to suppress robbery. CHAPTER X But strange to say, all these measures, efforts, and plans--which were not at all worse than others issued in similar circumstances--did not affect the essence of the matter but, like the hands of a clock detached from the mechanism, swung about in an arbitrary and aimless way without engaging the cogwheels. With reference to the military side--the plan of campaign--that work of genius of which Thiers remarks that, "His genius never devised anything more profound, more skillful, or more admirable," and enters into a polemic with M. Fain to prove that this work of genius must be referred not to the fourth but to the fifteenth of October- that plan never was or could be executed, for it was quite out of touch with the facts of the case. The fortifying of the Kremlin, for which la Mosquee (as Napoleon termed the church of Basil the Beatified) was to have been razed to the ground, proved quite useless. The mining of the Kremlin only helped toward fulfilling Napoleon's wish that it should be blown up when he left Moscow--as a child wants the floor on which he has hurt himself to be beaten. The pursuit of the Russian army, about which Napoleon was so concerned, produced an unheard-of result. The French generals lost touch with the Russian army of sixty thousand men, and according to Thiers it was only eventually found, like a lost pin, by the skill--and apparently the genius--of Murat. With reference to diplomacy, all Napoleon's arguments as to his magnanimity and justice, both to Tutolmin and to Yakovlev (whose chief concern was to obtain a greatcoat and a conveyance), proved useless; Alexander did not receive these envoys and did not reply to their embassage. With regard to legal matters, after the execution of the supposed incendiaries the rest of Moscow burned down. With regard to administrative matters, the establishment of a municipality did not stop the robberies and was only of use to certain people who formed part of that municipality and under pretext of preserving order looted Moscow or saved their own property from being looted. With regard to religion, as to which in Egypt matters had so easily been settled by Napoleon's visit to a mosque, no results were achieved. Two or three priests who were found in Moscow did try to carry out Napoleon's wish, but one of them was slapped in the face by a French soldier while conducting service, and a French official reported of another that: "The priest whom I found and invited to say Mass cleaned and locked up the church. That night the doors were again broken open, the padlocks smashed, the books mutilated, and other disorders perpetrated." With reference to commerce, the proclamation to industrious workmen and to peasants evoked no response. There were no industrious workmen, and the peasants caught the commissaries who ventured too far out of town with the proclamation and killed them. As to the theaters for the entertainment of the people and the troops, these did not meet with success either. The theaters set up in the Kremlin and in Posnyakov's house were closed again at once because the actors and actresses were robbed. Even philanthropy did not have the desired effect. The genuine as well as the false paper money which flooded Moscow lost its value. The French, collecting booty, cared only for gold. Not only was the paper money valueless which Napoleon so graciously distributed to the unfortunate, but even silver lost its value in relation to gold. But the most amazing example of the ineffectiveness of the orders given by the authorities at that time was Napoleon's attempt to stop the looting and re-establish discipline. This is what the army authorities were reporting: "Looting continues in the city despite the decrees against it. Order is not yet restored and not a single merchant is carrying on trade in a lawful manner. The sutlers alone venture to trade, and they sell stolen goods." "The neighborhood of my ward continues to be pillaged by soldiers of the 3rd Corps who, not satisfied with taking from the unfortunate inhabitants hiding in the cellars the little they have left, even have the ferocity to wound them with their sabers, as I have repeatedly witnessed." "Nothing new, except that the soldiers are robbing and pillaging- October 9." "Robbery and pillaging continue. There is a band of thieves in our district who ought to be arrested by a strong force--October 11." "The Emperor is extremely displeased that despite the strict orders to stop pillage, parties of marauding Guards are continually seen returning to the Kremlin. Among the Old Guard disorder and pillage were renewed more violently than ever yesterday evening, last night, and today. The Emperor sees with regret that the picked soldiers appointed to guard his person, who should set an example of discipline, carry disobedience to such a point that they break into the cellars and stores containing army supplies. Others have disgraced themselves to the extent of disobeying sentinels and officers, and have abused and beaten them." "The Grand Marshal of the palace," wrote the governor, "complains bitterly that in spite of repeated orders, the soldiers continue to commit nuisances in all the courtyards and even under the very windows of the Emperor." That army, like a herd of cattle run wild and trampling underfoot the provender which might have saved it from starvation, disintegrated and perished with each additional day it remained in Moscow. But it did not go away. It began to run away only when suddenly seized by a panic caused by the capture of transport trains on the Smolensk road, and by the battle of Tarutino. The news of that battle of Tarutino, unexpectedly received by Napoleon at a review, evoked in him a desire to punish the Russians (Thiers says), and he issued the order for departure which the whole army was demanding. Fleeing from Moscow the soldiers took with them everything they had stolen. Napoleon, too, carried away his own personal tresor, but on seeing the baggage trains that impeded the army, he was (Thiers says) horror-struck. And yet with his experience of war he did not order all the superfluous vehicles to be burned, as he had done with those of a certain marshal when approaching Moscow. He gazed at the caleches and carriages in which soldiers were riding and remarked that it was a very good thing, as those vehicles could be used to carry provisions, the sick, and the wounded. The plight of the whole army resembled that of a wounded animal which feels it is perishing and does not know what it is doing. To study the skillful tactics and aims of Napoleon and his army from the time it entered Moscow till it was destroyed is like studying the dying leaps and shudders of a mortally wounded animal. Very often a wounded animal, hearing a rustle, rushes straight at the hunter's gun, runs forward and back again, and hastens its own end. Napoleon, under pressure from his whole army, did the same thing. The rustle of the battle of Tarutino frightened the beast, and it rushed forward onto the hunter's gun, reached him, turned back, and finally--like any wild beast--ran back along the most disadvantageous and dangerous path, where the old scent was familiar. During the whole of that period Napoleon, who seems to us to have been the leader of all these movements--as the figurehead of a ship may seem to a savage to guide the vessel--acted like a child who, holding a couple of strings inside a carriage, thinks he is driving it. CHAPTER XI Early in the morning of the sixth of October Pierre went out of the shed, and on returning stopped by the door to play with a little blue-gray dog, with a long body and short bandy legs, that jumped about him. This little dog lived in their shed, sleeping beside Karataev at night; it sometimes made excursions into the town but always returned again. Probably it had never had an owner, and it still belonged to nobody and had no name. The French called it Azor; the soldier who told stories called it Femgalka; Karataev and others called it Gray, or sometimes Flabby. Its lack of a master, a name, or even of a breed or any definite color did not seem to trouble the blue-gray dog in the least. Its furry tail stood up firm and round as a plume, its bandy legs served it so well that it would often gracefully lift a hind leg and run very easily and quickly on three legs, as if disdaining to use all four. Everything pleased it. Now it would roll on its back, yelping with delight, now bask in the sun with a thoughtful air of importance, and now frolic about playing with a chip of wood or a straw. Pierre's attire by now consisted of a dirty torn shirt (the only remnant of his former clothing), a pair of soldier's trousers which by Karataev's advice he tied with string round the ankles for warmth, and a peasant coat and cap. Physically he had changed much during this time. He no longer seemed stout, though he still had the appearance of solidity and strength hereditary in his family. A beard and mustache covered the lower part of his face, and a tangle of hair, infested with lice, curled round his head like a cap. The look of his eyes was resolute, calm, and animatedly alert, as never before. The former slackness which had shown itself even in his eyes was now replaced by an energetic readiness for action and resistance. His feet were bare. Pierre first looked down the field across which vehicles and horsemen were passing that morning, then into the distance across the river, then at the dog who was pretending to be in earnest about biting him, and then at his bare feet which he placed with pleasure in various positions, moving his dirty thick big toes. Every time he looked at his bare feet a smile of animated self-satisfaction flitted across his face. The sight of them reminded him of all he had experienced and learned during these weeks and this recollection was pleasant to him. For some days the weather had been calm and clear with slight frosts in the mornings--what is called an "old wives' summer." In the sunshine the air was warm, and that warmth was particularly pleasant with the invigorating freshness of the morning frost still in the air. On everything--far and near--lay the magic crystal glitter seen only at that time autumn. The Sparrow Hills were visible in the distance, with the village, the church, and the large white house. The bare trees, the sand, the bricks and roofs of the houses, the green church spire, and the corners of the white house in the distance, all stood out in the transparent air in most delicate outline and with unnatural clearness. Near by could be seen the familiar ruins of a half-burned mansion occupied by the French, with lilac bushes still showing dark green beside the fence. And even that ruined and befouled house--which in dull weather was repulsively ugly--seemed quietly beautiful now, in the clear, motionless brilliance. A French corporal, with coat unbuttoned in a homely way, a skullcap on his head, and a short pipe in his mouth, came from behind a corner of the shed and approached Pierre with a friendly wink. "What sunshine, Monsieur Kiril!" (Their name for Pierre.) "Eh? Just like spring!" And the corporal leaned against the door and offered Pierre his pipe, though whenever he offered it Pierre always declined it. "To be on the march in such weather..." he began. Pierre inquired what was being said about leaving, and the corporal told him that nearly all the troops were starting and there ought to be an order about the prisoners that day. Sokolov, one of the soldiers in the shed with Pierre, was dying, and Pierre told the corporal that something should be done about him. The corporal replied that Pierre need not worry about that as they had an ambulance and a permanent hospital and arrangements would be made for the sick, and that in general everything that could happen had been foreseen by the authorities. "Besides, Monsieur Kiril, you have only to say a word to the captain, you know. He is a man who never forgets anything. Speak to the captain when he makes his round, he will do anything for you." (The captain of whom the corporal spoke often had long chats with Pierre and showed him all sorts of favors.) "'You see, St. Thomas,' he said to me the other day. 'Monsieur Kiril is a man of education, who speaks French. He is a Russian seigneur who has had misfortunes, but he is a man. He knows what's what.... If he wants anything and asks me, he won't get a refusal. When one has studied, you see, one likes education and well-bred people.' It is for your sake I mention it, Monsieur Kiril. The other day if it had not been for you that affair would have ended ill." And after chatting a while longer, the corporal went away. (The affair he had alluded to had happened a few days before--a fight between the prisoners and the French soldiers, in which Pierre had succeeded in pacifying his comrades.) Some of the prisoners who had heard Pierre talking to the corporal immediately asked what the Frenchman had said. While Pierre was repeating what he had been told about the army leaving Moscow, a thin, sallow, tattered French soldier came up to the door of the shed. Rapidly and timidly raising his fingers to his forehead by way of greeting, he asked Pierre whether the soldier Platoche to whom he had given a shirt to sew was in that shed. A week before the French had had boot leather and linen issued to them, which they had given out to the prisoners to make up into boots and shirts for them. "Ready, ready, dear fellow!" said Karataev, coming out with a neatly folded shirt. Karataev, on account of the warm weather and for convenience at work, was wearing only trousers and a tattered shirt as black as soot. His hair was bound round, workman fashion, with a wisp of lime-tree bast, and his round face seemed rounder and pleasanter than ever. "A promise is own brother to performance! I said Friday and here it is, ready," said Platon, smiling and unfolding the shirt he had sewn. The Frenchman glanced around uneasily and then, as if overcoming his hesitation, rapidly threw off his uniform and put on the shirt. He had a long, greasy, flowered silk waistcoat next to his sallow, thin bare body, but no shirt. He was evidently afraid the prisoners looking on would laugh at him, and thrust his head into the shirt hurriedly. None of the prisoners said a word. "See, it fits well!" Platon kept repeating, pulling the shirt straight. The Frenchman, having pushed his head and hands through, without raising his eyes, looked down at the shirt and examined the seams. "You see, dear man, this is not a sewing shop, and I had no proper tools; and, as they say, one needs a tool even to kill a louse," said Platon with one of his round smiles, obviously pleased with his work. "It's good, quite good, thank you," said the Frenchman, in French, "but there must be some linen left over. "It will fit better still when it sets to your body," said Karataev, still admiring his handiwork. "You'll be nice and comfortable...." "Thanks, thanks, old fellow.... But the bits left over?" said the Frenchman again and smiled. He took out an assignation ruble note and gave it to Karataev. "But give me the pieces that are over." Pierre saw that Platon did not want to understand what the Frenchman was saying, and he looked on without interfering. Karataev thanked the Frenchman for the money and went on admiring his own work. The Frenchman insisted on having the pieces returned that were left over and asked Pierre to translate what he said. "What does he want the bits for?" said Karataev. "They'd make fine leg bands for us. Well, never mind." And Karataev, with a suddenly changed and saddened expression, took a small bundle of scraps from inside his shirt and gave it to the Frenchman without looking at him. "Oh dear!" muttered Karataev and went away. The Frenchman looked at the linen, considered for a moment, then looked inquiringly at Pierre and, as if Pierre's look had told him something, suddenly blushed and shouted in a squeaky voice: "Platoche! Eh, Platoche! Keep them yourself!" And handing back the odd bits he turned and went out. "There, look at that," said Karataev, swaying his head. "People said they were not Christians, but they too have souls. It's what the old folk used to say: 'A sweating hand's an open hand, a dry hand's close.' He's naked, but yet he's given it back." Karataev smiled thoughtfully and was silent awhile looking at the pieces. "But they'll make grand leg bands, dear friend," he said, and went back into the shed. CHAPTER XII Four weeks had passed since Pierre had been taken prisoner and though the French had offered to move him from the men's to the officers' shed, he had stayed in the shed where he was first put. In burned and devastated Moscow Pierre experienced almost the extreme limits of privation a man can endure; but thanks to his physical strength and health, of which he had till then been unconscious, and thanks especially to the fact that the privations came so gradually that it was impossible to say when they began, he endured his position not only lightly but joyfully. And just at this time he obtained the tranquillity and ease of mind he had formerly striven in vain to reach. He had long sought in different ways that tranquillity of mind, that inner harmony which had so impressed him in the soldiers at the battle of Borodino. He had sought it in philanthropy, in Freemasonry, in the dissipations of town life, in wine, in heroic feats of self-sacrifice, and in romantic love for Natasha; he had sought it by reasoning--and all these quests and experiments had failed him. And now without thinking about it he had found that peace and inner harmony only through the horror of death, through privation, and through what he recognized in Karataev. Those dreadful moments he had lived through at the executions had as it were forever washed away from his imagination and memory the agitating thoughts and feelings that had formerly seemed so important. It did not now occur to him to think of Russia, or the war, or politics, or Napoleon. It was plain to him that all these things were no business of his, and that he was not called on to judge concerning them and therefore could not do so. "Russia and summer weather are not bound together," he thought, repeating words of Karataev's which he found strangely consoling. His intention of killing Napoleon and his calculations of the cabalistic number of the beast of the Apocalypse now seemed to him meaningless and even ridiculous. His anger with his wife and anxiety that his name should not be smirched now seemed not merely trivial but even amusing. What concern was it of his that somewhere or other that woman was leading the life she preferred? What did it matter to anybody, and especially to him, whether or not they found out that their prisoner's name was Count Bezukhov? He now often remembered his conversation with Prince Andrew and quite agreed with him, though he understood Prince Andrew's thoughts somewhat differently. Prince Andrew had thought and said that happiness could only be negative, but had said it with a shade of bitterness and irony as though he was really saying that all desire for positive happiness is implanted in us merely to torment us and never be satisfied. But Pierre believed it without any mental reservation. The absence of suffering, the satisfaction of one's needs and consequent freedom in the choice of one's occupation, that is, of one's way of life, now seemed to Pierre to be indubitably man's highest happiness. Here and now for the first time he fully appreciated the enjoyment of eating when he wanted to eat, drinking when he wanted to drink, sleeping when he wanted to sleep, of warmth when he was cold, of talking to a fellow man when he wished to talk and to hear a human voice. The satisfaction of one's needs--good food, cleanliness, and freedom--now that he was deprived of all this, seemed to Pierre to constitute perfect happiness; and the choice of occupation, that is, of his way of life--now that that was so restricted--seemed to him such an easy matter that he forgot that a superfluity of the comforts of life destroys all joy in satisfying one's needs, while great freedom in the choice of occupation--such freedom as his wealth, his education, and his social position had given him in his own life--is just what makes the choice of occupation insolubly difficult and destroys the desire and possibility of having an occupation. All Pierre's daydreams now turned on the time when he would be free. Yet subsequently, and for the rest of his life, he thought and spoke with enthusiasm of that month of captivity, of those irrecoverable, strong, joyful sensations, and chiefly of the complete peace of mind and inner freedom which he experienced only during those weeks. When on the first day he got up early, went out of the shed at dawn, and saw the cupolas and crosses of the New Convent of the Virgin still dark at first, the hoarfrost on the dusty grass, the Sparrow Hills, and the wooded banks above the winding river vanishing in the purple distance, when he felt the contact of the fresh air and heard the noise of the crows flying from Moscow across the field, and when afterwards light gleamed from the east and the sun's rim appeared solemnly from behind a cloud, and the cupolas and crosses, the hoarfrost, the distance and the river, all began to sparkle in the glad light--Pierre felt a new joy and strength in life such as he had never before known. And this not only stayed with him during the whole of his imprisonment, but even grew in strength as the hardships of his position increased. That feeling of alertness and of readiness for anything was still further strengthened in him by the high opinion his fellow prisoners formed of him soon after his arrival at the shed. With his knowledge of languages, the respect shown him by the French, his simplicity, his readiness to give anything asked of him (he received the allowance of three rubles a week made to officers); with his strength, which he showed to the soldiers by pressing nails into the walls of the hut; his gentleness to his companions, and his capacity for sitting still and thinking without doing anything (which seemed to them incomprehensible), he appeared to them a rather mysterious and superior being. The very qualities that had been a hindrance, if not actually harmful, to him in the world he had lived in--his strength, his disdain for the comforts of life, his absent-mindedness and simplicity--here among these people gave him almost the status of a hero. And Pierre felt that their opinion placed responsibilities upon him. CHAPTER XIII The French evacuation began on the night between the sixth and seventh of October: kitchens and sheds were dismantled, carts loaded, and troops and baggage trains started. At seven in the morning a French convoy in marching trim, wearing shakos and carrying muskets, knapsacks, and enormous sacks, stood in front of the sheds, and animated French talk mingled with curses sounded all along the lines. In the shed everyone was ready, dressed, belted, shod, and only awaited the order to start. The sick soldier, Sokolov, pale and thin with dark shadows round his eyes, alone sat in his place barefoot and not dressed. His eyes, prominent from the emaciation of his face, gazed inquiringly at his comrades who were paying no attention to him, and he moaned regularly and quietly. It was evidently not so much his sufferings that caused him to moan (he had dysentery) as his fear and grief at being left alone. Pierre, girt with a rope round his waist and wearing shoes Karataev had made for him from some leather a French soldier had torn off a tea chest and brought to have his boots mended with, went up to the sick man and squatted down beside him. "You know, Sokolov, they are not all going away! They have a hospital here. You may be better off than we others," said Pierre. "O Lord! Oh, it will be the death of me! O Lord!" moaned the man in a louder voice. "I'll go and ask them again directly," said Pierre, rising and going to the door of the shed. Just as Pierre reached the door, the corporal who had offered him a pipe the day before came up to it with two soldiers. The corporal and soldiers were in marching kit with knapsacks and shakos that had metal straps, and these changed their familiar faces. The corporal came, according to orders, to shut the door. The prisoners had to be counted before being let out. "Corporal, what will they do with the sick man?..." Pierre began. But even as he spoke he began to doubt whether this was the corporal he knew or a stranger, so unlike himself did the corporal seem at that moment. Moreover, just as Pierre was speaking a sharp rattle of drums was suddenly heard from both sides. The corporal frowned at Pierre's words and, uttering some meaningless oaths, slammed the door. The shed became semidark, and the sharp rattle of the drums on two sides drowned the sick man's groans. "There it is!... It again!..." said Pierre to himself, and an involuntary shudder ran down his spine. In the corporal's changed face, in the sound of his voice, in the stirring and deafening noise of the drums, he recognized that mysterious, callous force which compelled people against their will to kill their fellow men--that force the effect of which he had witnessed during the executions. To fear or to try to escape that force, to address entreaties or exhortations to those who served as its tools, was useless. Pierre knew this now. One had to wait and endure. He did not again go to the sick man, nor turn to look at him, but stood frowning by the door of the hut. When that door was opened and the prisoners, crowding against one another like a flock of sheep, squeezed into the exit, Pierre pushed his way forward and approached that very captain who as the corporal had assured him was ready to do anything for him. The captain was also in marching kit, and on his cold face appeared that same it which Pierre had recognized in the corporal's words and in the roll of the drums. "Pass on, pass on!" the captain reiterated, frowning sternly, and looking at the prisoners who thronged past him. Pierre went up to him, though he knew his attempt would be vain. "What now?" the officer asked with a cold look as if not recognizing Pierre. Pierre told him about the sick man. "He'll manage to walk, devil take him!" said the captain. "Pass on, pass on!" he continued without looking at Pierre. "But he is dying," Pierre again began. "Be so good..." shouted the captain, frowning angrily. "Dram-da-da-dam, dam-dam..." rattled the drums, and Pierre understood that this mysterious force completely controlled these men and that it was now useless to say any more. The officer prisoners were separated from the soldiers and told to march in front. There were about thirty officers, with Pierre among them, and about three hundred men. The officers, who had come from the other sheds, were all strangers to Pierre and much better dressed than he. They looked at him and at his shoes mistrustfully, as at an alien. Not far from him walked a fat major with a sallow, bloated, angry face, who was wearing a Kazan dressing grown tied round with a towel, and who evidently enjoyed the respect of his fellow prisoners. He kept one hand, in which he clasped his tobacco pouch, inside the bosom of his dressing gown and held the stem of his pipe firmly with the other. Panting and puffing, the major grumbled and growled at everybody because he thought he was being pushed and that they were all hurrying when they had nowhere to hurry to and were all surprised at something when there was nothing to be surprised at. Another, a thin little officer, was speaking to everyone, conjecturing where they were now being taken and how far they would get that day. An official in felt boots and wearing a commissariat uniform ran round from side to side and gazed at the ruins of Moscow, loudly announcing his observations as to what had been burned down and what this or that part of the city was that they could see. A third officer, who by his accent was a Pole, disputed with the commissariat officer, arguing that he was mistaken in his identification of the different wards of Moscow. "What are you disputing about?" said the major angrily. "What does it matter whether it is St. Nicholas or St. Blasius? You see it's burned down, and there's an end of it.... What are you pushing for? Isn't the road wide enough?" said he, turning to a man behind him who was not pushing him at all. "Oh, oh, oh! What have they done?" the prisoners on one side and another were heard saying as they gazed on the charred ruins. "All beyond the river, and Zubova, and in the Kremlin.... Just look! There's not half of it left. Yes, I told you--the whole quarter beyond the river, and so it is." "Well, you know it's burned, so what's the use of talking?" said the major. As they passed near a church in the Khamovniki (one of the few unburned quarters of Moscow) the whole mass of prisoners suddenly started to one side and exclamations of horror and disgust were heard. "Ah, the villains! What heathens! Yes; dead, dead, so he is... And smeared with something!" Pierre too drew near the church where the thing was that evoked these exclamations, and dimly made out something leaning against the palings surrounding the church. From the words of his comrades who saw better than he did, he found that this was the body of a man, set upright against the palings with its face smeared with soot. "Go on! What the devil... Go on! Thirty thousand devils!..." the convoy guards began cursing and the French soldiers, with fresh virulence, drove away with their swords the crowd of prisoners who were gazing at the dead man. CHAPTER XIV Through the cross streets of the Khamovniki quarter the prisoners marched, followed only by their escort and the vehicles and wagons belonging to that escort, but when they reached the supply stores they came among a huge and closely packed train of artillery mingled with private vehicles. At the bridge they all halted, waiting for those in front to get across. From the bridge they had a view of endless lines of moving baggage trains before and behind them. To the right, where the Kaluga road turns near Neskuchny, endless rows of troops and carts stretched away into the distance. These were troops of Beauharnais' corps which had started before any of the others. Behind, along the riverside and across the Stone Bridge, were Ney's troops and transport. Davout's troops, in whose charge were the prisoners, were crossing the Crimean bridge and some were already debouching into the Kaluga road. But the baggage trains stretched out so that the last of Beauharnais' train had not yet got out of Moscow and reached the Kaluga road when the vanguard of Ney's army was already emerging from the Great Ordynka Street. When they had crossed the Crimean bridge the prisoners moved a few steps forward, halted, and again moved on, and from all sides vehicles and men crowded closer and closer together. They advanced the few hundred paces that separated the bridge from the Kaluga road, taking more than an hour to do so, and came out upon the square where the streets of the Transmoskva ward and the Kaluga road converge, and the prisoners jammed close together had to stand for some hours at that crossway. From all sides, like the roar of the sea, were heard the rattle of wheels, the tramp of feet, and incessant shouts of anger and abuse. Pierre stood pressed against the wall of a charred house, listening to that noise which mingled in his imagination with the roll of the drums. To get a better view, several officer prisoners climbed onto the wall of the half-burned house against which Pierre was leaning. "What crowds! Just look at the crowds!... They've loaded goods even on the cannon! Look there, those are furs!" they exclaimed. "Just see what the blackguards have looted.... There! See what that one has behind in the cart.... Why, those are settings taken from some icons, by heaven!... Oh, the rascals!... See how that fellow has loaded himself up, he can hardly walk! Good lord, they've even grabbed those chaises!... See that fellow there sitting on the trunks.... Heavens! They're fighting." "That's right, hit him on the snout--on his snout! Like this, we shan't get away before evening. Look, look there.... Why, that must be Napoleon's own. See what horses! And the monograms with a crown! It's like a portable house.... That fellow's dropped his sack and doesn't see it. Fighting again... A woman with a baby, and not bad-looking either! Yes, I dare say, that's the way they'll let you pass... Just look, there's no end to it. Russian wenches, by heaven, so they are! In carriages--see how comfortably they've settled themselves!" Again, as at the church in Khamovniki, a wave of general curiosity bore all the prisoners forward onto the road, and Pierre, thanks to his stature, saw over the heads of the others what so attracted their curiosity. In three carriages involved among the munition carts, closely squeezed together, sat women with rouged faces, dressed in glaring colors, who were shouting something in shrill voices. From the moment Pierre had recognized the appearance of the mysterious force nothing had seemed to him strange or dreadful: neither the corpse smeared with soot for fun nor these women hurrying away nor the burned ruins of Moscow. All that he now witnessed scarcely made an impression on him--as if his soul, making ready for a hard struggle, refused to receive impressions that might weaken it. The women's vehicles drove by. Behind them came more carts, soldiers, wagons, soldiers, gun carriages, carriages, soldiers, ammunition carts, more soldiers, and now and then women. Pierre did not see the people as individuals but saw their movement. All these people and horses seemed driven forward by some invisible power. During the hour Pierre watched them they all came flowing from the different streets with one and the same desire to get on quickly; they all jostled one another, began to grow angry and to fight, white teeth gleamed, brows frowned, ever the same words of abuse flew from side to side, and all the faces bore the same swaggeringly resolute and coldly cruel expression that had struck Pierre that morning on the corporal's face when the drums were beating. It was not till nearly evening that the officer commanding the escort collected his men and with shouts and quarrels forced his way in among the baggage trains, and the prisoners, hemmed in on all sides, emerged onto the Kaluga road. They marched very quickly, without resting, and halted only when the sun began to set. The baggage carts drew up close together and the men began to prepare for their night's rest. They all appeared angry and dissatisfied. For a long time, oaths, angry shouts, and fighting could be heard from all sides. A carriage that followed the escort ran into one of the carts and knocked a hole in it with its pole. Several soldiers ran toward the cart from different sides: some beat the carriage horses on their heads, turning them aside, others fought among themselves, and Pierre saw that one German was badly wounded on the head by a sword. It seemed that all these men, now that they had stopped amid fields in the chill dusk of the autumn evening, experienced one and the same feeling of unpleasant awakening from the hurry and eagerness to push on that had seized them at the start. Once at a standstill they all seemed to understand that they did not yet know where they were going, and that much that was painful and difficult awaited them on this journey. During this halt the escort treated the prisoners even worse than they had done at the start. It was here that the prisoners for the first time received horseflesh for their meat ration. From the officer down to the lowest soldier they showed what seemed like personal spite against each of the prisoners, in unexpected contrast to their former friendly relations. This spite increased still more when, on calling over the roll of prisoners, it was found that in the bustle of leaving Moscow one Russian soldier, who had pretended to suffer from colic, had escaped. Pierre saw a Frenchman beat a Russian soldier cruelly for straying too far from the road, and heard his friend the captain reprimand and threaten to court-martial a noncommissioned officer on account of the escape of the Russian. To the noncommissioned officer's excuse that the prisoner was ill and could not walk, the officer replied that the order was to shoot those who lagged behind. Pierre felt that that fatal force which had crushed him during the executions, but which he had not felt during his imprisonment, now again controlled his existence. It was terrible, but he felt that in proportion to the efforts of that fatal force to crush him, there grew and strengthened in his soul a power of life independent of it. He ate his supper of buckwheat soup with horseflesh and chatted with his comrades. Neither Pierre nor any of the others spoke of what they had seen in Moscow, or of the roughness of their treatment by the French, or of the order to shoot them which had been announced to them. As if in reaction against the worsening of their position they were all particularly animated and gay. They spoke of personal reminiscences, of amusing scenes they had witnessed during the campaign, and avoided all talk of their present situation. The sun had set long since. Bright stars shone out here and there in the sky. A red glow as of a conflagration spread above the horizon from the rising full moon, and that vast red ball swayed strangely in the gray haze. It grew light. The evening was ending, but the night had not yet come. Pierre got up and left his new companions, crossing between the campfires to the other side of the road where he had been told the common soldier prisoners were stationed. He wanted to talk to them. On the road he was stopped by a French sentinel who ordered him back. Pierre turned back, not to his companions by the campfire, but to an unharnessed cart where there was nobody. Tucking his legs under him and dropping his head he sat down on the cold ground by the wheel of the cart and remained motionless a long while sunk in thought. Suddenly he burst out into a fit of his broad, good-natured laughter, so loud that men from various sides turned with surprise to see what this strange and evidently solitary laughter could mean. "Ha-ha-ha!" laughed Pierre. And he said aloud to himself: "The soldier did not let me pass. They took me and shut me up. They hold me captive. What, me? Me? My immortal soul? Ha-ha-ha! Ha-ha-ha!..." and he laughed till tears started to his eyes. A man got up and came to see what this queer big fellow was laughing at all by himself. Pierre stopped laughing, got up, went farther away from the inquisitive man, and looked around him. The huge, endless bivouac that had previously resounded with the crackling of campfires and the voices of many men had grown quiet, the red campfires were growing paler and dying down. High up in the light sky hung the full moon. Forests and fields beyond the camp, unseen before, were now visible in the distance. And farther still, beyond those forests and fields, the bright, oscillating, limitless distance lured one to itself. Pierre glanced up at the sky and the twinkling stars in its faraway depths. "And all that is me, all that is within me, and it is all I!" thought Pierre. "And they caught all that and put it into a shed boarded up with planks!" He smiled, and went and lay down to sleep beside his companions. CHAPTER XV In the early days of October another envoy came to Kutuzov with a letter from Napoleon proposing peace and falsely dated from Moscow, though Napoleon was already not far from Kutuzov on the old Kaluga road. Kutuzov replied to this letter as he had done to the one formerly brought by Lauriston, saying that there could be no question of peace. Soon after that a report was received from Dorokhov's guerrilla detachment operating to the left of Tarutino that troops of Broussier's division had been seen at Forminsk and that being separated from the rest of the French army they might easily be destroyed. The soldiers and officers again demanded action. Generals on the staff, excited by the memory of the easy victory at Tarutino, urged Kutuzov to carry out Dorokhov's suggestion. Kutuzov did not consider any offensive necessary. The result was a compromise which was inevitable: a small detachment was sent to Forminsk to attack Broussier. By a strange coincidence, this task, which turned out to be a most difficult and important one, was entrusted to Dokhturov--that same modest little Dokhturov whom no one had described to us as drawing up plans of battles, dashing about in front of regiments, showering crosses on batteries, and so on, and who was thought to be and was spoken of as undecided and undiscerning--but whom we find commanding wherever the position was most difficult all through the Russo-French wars from Austerlitz to the year 1813. At Austerlitz he remained last at the Augezd dam, rallying the regiments, saving what was possible when all were flying and perishing and not a single general was left in the rear guard. Ill with fever he went to Smolensk with twenty thousand men to defend the town against Napoleon's whole army. In Smolensk, at the Malakhov Gate, he had hardly dozed off in a paroxysm of fever before he was awakened by the bombardment of the town--and Smolensk held out all day long. At the battle of Borodino, when Bagration was killed and nine tenths of the men of our left flank had fallen and the full force of the French artillery fire was directed against it, the man sent there was this same irresolute and undiscerning Dokhturov--Kutuzov hastening to rectify a mistake he had made by sending someone else there first. And the quiet little Dokhturov rode thither, and Borodino became the greatest glory of the Russian army. Many heroes have been described to us in verse and prose, but of Dokhturov scarcely a word has been said. It was Dokhturov again whom they sent to Forminsk and from there to Malo-Yaroslavets, the place where the last battle with the French was fought and where the obvious disintegration of the French army began; and we are told of many geniuses and heroes of that period of the campaign, but of Dokhturov nothing or very little is said and that dubiously. And this silence about Dokhturov is the clearest testimony to his merit. It is natural for a man who does not understand the workings of a machine to imagine that a shaving that has fallen into it by chance and is interfering with its action and tossing about in it is its most important part. The man who does not understand the construction of the machine cannot conceive that the small connecting cogwheel which revolves quietly is one of the most essential parts of the machine, and not the shaving which merely harms and hinders the working. On the tenth of October when Dokhturov had gone halfway to Forminsk and stopped at the village of Aristovo, preparing faithfully to execute the orders he had received, the whole French army having, in its convulsive movement, reached Murat's position apparently in order to give battle--suddenly without any reason turned off to the left onto the new Kaluga road and began to enter Forminsk, where only Broussier had been till then. At that time Dokhturov had under his command, besides Dorokhov's detachment, the two small guerrilla detachments of Figner and Seslavin. On the evening of October 11 Seslavin came to the Aristovo headquarters with a French guardsman he had captured. The prisoner said that the troops that had entered Forminsk that day were the vanguard of the whole army, that Napoleon was there and the whole army had left Moscow four days previously. That same evening a house serf who had come from Borovsk said he had seen an immense army entering the town. Some Cossacks of Dokhturov's detachment reported having sighted the French Guards marching along the road to Borovsk. From all these reports it was evident that where they had expected to meet a single division there was now the whole French army marching from Moscow in an unexpected direction--along the Kaluga road. Dokhturov was unwilling to undertake any action, as it was not clear to him now what he ought to do. He had been ordered to attack Forminsk. But only Broussier had been there at that time and now the whole French army was there. Ermolov wished to act on his own judgment, but Dokhturov insisted that he must have Kutuzov's instructions. So it was decided to send a dispatch to the staff. For this purpose a capable officer, Bolkhovitinov, was chosen, who was to explain the whole affair by word of mouth, besides delivering a written report. Toward midnight Bolkhovitinov, having received the dispatch and verbal instructions, galloped off to the General Staff accompanied by a Cossack with spare horses. CHAPTER XVI It was a warm, dark, autumn night. It had been raining for four days. Having changed horses twice and galloped twenty miles in an hour and a half over a sticky, muddy road, Bolkhovitinov reached Litashevka after one o'clock at night. Dismounting at a cottage on whose wattle fence hung a signboard, GENERAL STAFF, and throwing down his reins, he entered a dark passage. "The general on duty, quick! It's very important!" said he to someone who had risen and was sniffing in the dark passage. "He has been very unwell since the evening and this is the third night he has not slept," said the orderly pleadingly in a whisper. "You should wake the captain first." "But this is very important, from General Dokhturov," said Bolkhovitinov, entering the open door which he had found by feeling in the dark. The orderly had gone in before him and began waking somebody. "Your honor, your honor! A courier." "What? What's that? From whom?" came a sleepy voice. "From Dokhturov and from Alexey Petrovich. Napoleon is at Forminsk," said Bolkhovitinov, unable to see in the dark who was speaking but guessing by the voice that it was not Konovnitsyn. The man who had wakened yawned and stretched himself. "I don't like waking him," he said, fumbling for something. "He is very ill. Perhaps this is only a rumor." "Here is the dispatch," said Bolkhovitinov. "My orders are to give it at once to the general on duty." "Wait a moment, I'll light a candle. You damned rascal, where do you always hide it?" said the voice of the man who was stretching himself, to the orderly. (This was Shcherbinin, Konovnitsyn's adjutant.) "I've found it, I've found it!" he added. The orderly was striking a light and Shcherbinin was fumbling for something on the candlestick. "Oh, the nasty beasts!" said he with disgust. By the light of the sparks Bolkhovitinov saw Shcherbinin's youthful face as he held the candle, and the face of another man who was still asleep. This was Konovnitsyn. When the flame of the sulphur splinters kindled by the tinder burned up, first blue and then red, Shcherbinin lit the tallow candle, from the candlestick of which the cockroaches that had been gnawing it were running away, and looked at the messenger. Bolkhovitinov was bespattered all over with mud and had smeared his face by wiping it with his sleeve. "Who gave the report?" inquired Shcherbinin, taking the envelope. "The news is reliable," said Bolkhovitinov. "Prisoners, Cossacks, and the scouts all say the same thing." "There's nothing to be done, we'll have to wake him," said Shcherbinin, rising and going up to the man in the nightcap who lay covered by a greatcoat. "Peter Petrovich!" said he. (Konovnitsyn did not stir.) "To the General Staff!" he said with a smile, knowing that those words would be sure to arouse him. And in fact the head in the nightcap was lifted at once. On Konovnitsyn's handsome, resolute face with cheeks flushed by fever, there still remained for an instant a faraway dreamy expression remote from present affairs, but then he suddenly started and his face assumed its habitual calm and firm appearance. "Well, what is it? From whom?" he asked immediately but without hurry, blinking at the light. While listening to the officer's report Konovnitsyn broke the seal and read the dispatch. Hardly had he done so before he lowered his legs in their woolen stockings to the earthen floor and began putting on his boots. Then he took off his nightcap, combed his hair over his temples, and donned his cap. "Did you get here quickly? Let us go to his Highness." Konovnitsyn had understood at once that the news brought was of great importance and that no time must be lost. He did not consider or ask himself whether the news was good or bad. That did not interest him. He regarded the whole business of the war not with his intelligence or his reason but by something else. There was within him a deep unexpressed conviction that all would be well, but that one must not trust to this and still less speak about it, but must only attend to one's own work. And he did his work, giving his whole strength to the task. Peter Petrovich Konovnitsyn, like Dokhturov, seems to have been included merely for propriety's sake in the list of the so-called heroes of 1812--the Barclays, Raevskis, Ermolovs, Platovs, and Miloradoviches. Like Dokhturov he had the reputation of being a man of very limited capacity and information, and like Dokhturov he never made plans of battle but was always found where the situation was most difficult. Since his appointment as general on duty he had always slept with his door open, giving orders that every messenger should be allowed to wake him up. In battle he was always under fire, so that Kutuzov reproved him for it and feared to send him to the front, and like Dokhturov he was one of those unnoticed cogwheels that, without clatter or noise, constitute the most essential part of the machine. Coming out of the hut into the damp, dark night Konovnitsyn frowned- partly from an increased pain in his head and partly at the unpleasant thought that occurred to him, of how all that nest of influential men on the staff would be stirred up by this news, especially Bennigsen, who ever since Tarutino had been at daggers drawn with Kutuzov; and how they would make suggestions, quarrel, issue orders, and rescind them. And this premonition was disagreeable to him though he knew it could not be helped. And in fact Toll, to whom he went to communicate the news, immediately began to expound his plans to a general sharing his quarters, until Konovnitsyn, who listened in weary silence, reminded him that they must go to see his Highness. CHAPTER XVII Kutuzov like all old people did not sleep much at night. He often fell asleep unexpectedly in the daytime, but at night, lying on his bed without undressing, he generally remained awake thinking. So he lay now on his bed, supporting his large, heavy, scarred head on his plump hand, with his one eye open, meditating and peering into the darkness. Since Bennigsen, who corresponded with the Emperor and had more influence than anyone else on the staff, had begun to avoid him, Kutuzov was more at ease as to the possibility of himself and his troops being obliged to take part in useless aggressive movements. The lesson of the Tarutino battle and of the day before it, which Kutuzov remembered with pain, must, he thought, have some effect on others too. "They must understand that we can only lose by taking the offensive. Patience and time are my warriors, my champions," thought Kutuzov. He knew that an apple should not be plucked while it is green. It will fall of itself when ripe, but if picked unripe the apple is spoiled, the tree is harmed, and your teeth are set on edge. Like an experienced sportsman he knew that the beast was wounded, and wounded as only the whole strength of Russia could have wounded it, but whether it was mortally wounded or not was still an undecided question. Now by the fact of Lauriston and Barthelemi having been sent, and by the reports of the guerrillas, Kutuzov was almost sure that the wound was mortal. But he needed further proofs and it was necessary to wait. "They want to run to see how they have wounded it. Wait and we shall see! Continual maneuvers, continual advances!" thought he. "What for? Only to distinguish themselves! As if fighting were fun. They are like children from whom one can't get any sensible account of what has happened because they all want to show how well they can fight. But that's not what is needed now. "And what ingenious maneuvers they all propose to me! It seems to them that when they have thought of two or three contingencies" (he remembered the general plan sent him from Petersburg) "they have foreseen everything. But the contingencies are endless." The undecided question as to whether the wound inflicted at Borodino was mortal or not had hung over Kutuzov's head for a whole month. On the one hand the French had occupied Moscow. On the other Kutuzov felt assured with all his being that the terrible blow into which he and all the Russians had put their whole strength must have been mortal. But in any case proofs were needed; he had waited a whole month for them and grew more impatient the longer he waited. Lying on his bed during those sleepless nights he did just what he reproached those younger generals for doing. He imagined all sorts of possible contingencies, just like the younger men, but with this difference, that he saw thousands of contingencies instead of two or three and based nothing on them. The longer he thought the more contingencies presented themselves. He imagined all sorts of movements of the Napoleonic army as a whole or in sections--against Petersburg, or against him, or to outflank him. He thought too of the possibility (which he feared most of all) that Napoleon might fight him with his own weapon and remain in Moscow awaiting him. Kutuzov even imagined that Napoleon's army might turn back through Medyn and Yukhnov, but the one thing he could not foresee was what happened--the insane, convulsive stampede of Napoleon's army during its first eleven days after leaving Moscow: a stampede which made possible what Kutuzov had not yet even dared to think of--the complete extermination of the French. Dorokhov's report about Broussier's division, the guerrillas' reports of distress in Napoleon's army, rumors of preparations for leaving Moscow, all confirmed the supposition that the French army was beaten and preparing for flight. But these were only suppositions, which seemed important to the younger men but not to Kutuzov. With his sixty years' experience he knew what value to attach to rumors, knew how apt people who desire anything are to group all news so that it appears to confirm what they desire, and he knew how readily in such cases they omit all that makes for the contrary. And the more he desired it the less he allowed himself to believe it. This question absorbed all his mental powers. All else was to him only life's customary routine. To such customary routine belonged his conversations with the staff, the letters he wrote from Tarutino to Madame de Stael, the reading of novels, the distribution of awards, his correspondence with Petersburg, and so on. But the destruction of the French, which he alone foresaw, was his heart's one desire. On the night of the eleventh of October he lay leaning on his arm and thinking of that. There was a stir in the next room and he heard the steps of Toll, Konovnitsyn, and Bolkhovitinov. "Eh, who's there? Come in, come in! What news?" the field marshal called out to them. While a footman was lighting a candle, Toll communicated the substance of the news. "Who brought it?" asked Kutuzov with a look which, when the candle was lit, struck Toll by its cold severity. "There can be no doubt about it, your Highness." "Call him in, call him here." Kutuzov sat up with one leg hanging down from the bed and his big paunch resting against the other which was doubled under him. He screwed up his seeing eye to scrutinize the messenger more carefully, as if wishing to read in his face what preoccupied his own mind. "Tell me, tell me, friend," said he to Bolkhovitinov in his low, aged voice, as he pulled together the shirt which gaped open on his chest, "come nearer--nearer. What news have you brought me? Eh? That Napoleon has left Moscow? Are you sure? Eh?" Bolkhovitinov gave a detailed account from the beginning of all he had been told to report. "Speak quicker, quicker! Don't torture me!" Kutuzov interrupted him. Bolkhovitinov told him everything and was then silent, awaiting instructions. Toll was beginning to say something but Kutuzov checked him. He tried to say something, but his face suddenly puckered and wrinkled; he waved his arm at Toll and turned to the opposite side of the room, to the corner darkened by the icons that hung there. "O Lord, my Creator, Thou has heard our prayer..." said he in a tremulous voice with folded hands. "Russia is saved. I thank Thee, O Lord!" and he wept. CHAPTER XVIII From the time he received this news to the end of the campaign all Kutuzov's activity was directed toward restraining his troops, by authority, by guile, and by entreaty, from useless attacks, maneuvers, or encounters with the perishing enemy. Dokhturov went to Malo-Yaroslavets, but Kutuzov lingered with the main army and gave orders for the evacuation of Kaluga--a retreat beyond which town seemed to him quite possible. Everywhere Kutuzov retreated, but the enemy without waiting for his retreat fled in the opposite direction. Napoleon's historians describe to us his skilled maneuvers at Tarutino and Malo-Yaroslavets, and make conjectures as to what would have happened had Napoleon been in time to penetrate into the rich southern provinces. But not to speak of the fact that nothing prevented him from advancing into those southern provinces (for the Russian army did not bar his way), the historians forget that nothing could have saved his army, for then already it bore within itself the germs of inevitable ruin. How could that army--which had found abundant supplies in Moscow and had trampled them underfoot instead of keeping them, and on arriving at Smolensk had looted provisions instead of storing them--how could that army recuperate in Kaluga province, which was inhabited by Russians such as those who lived in Moscow, and where fire had the same property of consuming what was set ablaze? That army could not recover anywhere. Since the battle of Borodino and the pillage of Moscow it had borne within itself, as it were, the chemical elements of dissolution. The members of what had once been an army--Napoleon himself and all his soldiers fled--without knowing whither, each concerned only to make his escape as quickly as possible from this position, of the hopelessness of which they were all more or less vaguely conscious. So it came about that at the council at Malo-Yaroslavets, when the generals pretending to confer together expressed various opinions, all mouths were closed by the opinion uttered by the simple-minded soldier Mouton who, speaking last, said what they all felt: that the one thing needful was to get away as quickly as possible; and no one, not even Napoleon, could say anything against that truth which they all recognized. But though they all realized that it was necessary to get away, there still remained a feeling of shame at admitting that they must flee. An external shock was needed to overcome that shame, and this shock came in due time. It was what the French called "le hourra de l'Empereur." The day after the council at Malo-Yaroslavets Napoleon rode out early in the morning amid the lines of his army with his suite of marshals and an escort, on the pretext of inspecting the army and the scene of the previous and of the impending battle. Some Cossacks on the prowl for booty fell in with the Emperor and very nearly captured him. If the Cossacks did not capture Napoleon then, what saved him was the very thing that was destroying the French army, the booty on which the Cossacks fell. Here as at Tarutino they went after plunder, leaving the men. Disregarding Napoleon they rushed after the plunder and Napoleon managed to escape. When les enfants du Don might so easily have taken the Emperor himself in the midst of his army, it was clear that there was nothing for it but to fly as fast as possible along the nearest, familiar road. Napoleon with his forty-year-old stomach understood that hint, not feeling his former agility and boldness, and under the influence of the fright the Cossacks had given him he at once agreed with Mouton and issued orders--as the historians tell us--to retreat by the Smolensk road. That Napoleon agreed with Mouton, and that the army retreated, does not prove that Napoleon caused it to retreat, but that the forces which influenced the whole army and directed it along the Mozhaysk (that is, the Smolensk) road acted simultaneously on him also. CHAPTER XIX A man in motion always devises an aim for that motion. To be able to go a thousand miles he must imagine that something good awaits him at the end of those thousand miles. One must have the prospect of a promised land to have the strength to move. The promised land for the French during their advance had been Moscow, during their retreat it was their native land. But that native land was too far off, and for a man going a thousand miles it is absolutely necessary to set aside his final goal and to say to himself: "Today I shall get to a place twenty-five miles off where I shall rest and spend the night," and during the first day's journey that resting place eclipses his ultimate goal and attracts all his hopes and desires. And the impulses felt by a single person are always magnified in a crowd. For the French retreating along the old Smolensk road, the final goal--their native land--was too remote, and their immediate goal was Smolensk, toward which all their desires and hopes, enormously intensified in the mass, urged them on. It was not that they knew that much food and fresh troops awaited them in Smolensk, nor that they were told so (on the contrary their superior officers, and Napoleon himself, knew that provisions were scarce there), but because this alone could give them strength to move on and endure their present privations. So both those who knew and those who did not know deceived themselves, and pushed on to Smolensk as to a promised land. Coming out onto the highroad the French fled with surprising energy and unheard-of rapidity toward the goal they had fixed on. Besides the common impulse which bound the whole crowd of French into one mass and supplied them with a certain energy, there was another cause binding them together--their great numbers. As with the physical law of gravity, their enormous mass drew the individual human atoms to itself. In their hundreds of thousands they moved like a whole nation. Each of them desired nothing more than to give himself up as a prisoner to escape from all this horror and misery; but on the one hand the force of this common attraction to Smolensk, their goal, drew each of them in the same direction; on the other hand an army corps could not surrender to a company, and though the French availed themselves of every convenient opportunity to detach themselves and to surrender on the slightest decent pretext, such pretexts did not always occur. Their very numbers and their crowded and swift movement deprived them of that possibility and rendered it not only difficult but impossible for the Russians to stop this movement, to which the French were directing all their energies. Beyond a certain limit no mechanical disruption of the body could hasten the process of decomposition. A lump of snow cannot be melted instantaneously. There is a certain limit of time in less than which no amount of heat can melt the snow. On the contrary the greater the heat the more solidified the remaining snow becomes. Of the Russian commanders Kutuzov alone understood this. When the flight of the French army along the Smolensk road became well defined, what Konovnitsyn had foreseen on the night of the eleventh of October began to occur. The superior officers all wanted to distinguish themselves, to cut off, to seize, to capture, and to overthrow the French, and all clamored for action. Kutuzov alone used all his power (and such power is very limited in the case of any commander in chief) to prevent an attack. He could not tell them what we say now: "Why fight, why block the road, losing our own men and inhumanly slaughtering unfortunate wretches? What is the use of that, when a third of their army has melted away on the road from Moscow to Vyazma without any battle?" But drawing from his aged wisdom what they could understand, he told them of the golden bridge, and they laughed at and slandered him, flinging themselves on, rending and exulting over the dying beast. Ermolov, Miloradovich, Platov, and others in proximity to the French near Vyazma could not resist their desire to cut off and break up two French corps, and by way of reporting their intention to Kutuzov they sent him a blank sheet of paper in an envelope. And try as Kutuzov might to restrain the troops, our men attacked, trying to bar the road. Infantry regiments, we are told, advanced to the attack with music and with drums beating, and killed and lost thousands of men. But they did not cut off or overthrow anybody and the French army, closing up more firmly at the danger, continued, while steadily melting away, to pursue its fatal path to Smolensk. BOOK FOURTEEN: 1812 CHAPTER I The Battle of Borodino, with the occupation of Moscow that followed it and the flight of the French without further conflicts, is one of the most instructive phenomena in history. All historians agree that the external activity of states and nations in their conflicts with one another is expressed in wars, and that as a direct result of greater or less success in war the political strength of states and nations increases or decreases. Strange as may be the historical account of how some king or emperor, having quarreled with another, collects an army, fights his enemy's army, gains a victory by killing three, five, or ten thousand men, and subjugates a kingdom and an entire nation of several millions, all the facts of history (as far as we know it) confirm the truth of the statement that the greater or lesser success of one army against another is the cause, or at least an essential indication, of an increase or decrease in the strength of the nation--even though it is unintelligible why the defeat of an army- a hundredth part of a nation--should oblige that whole nation to submit. An army gains a victory, and at once the rights of the conquering nation have increased to the detriment of the defeated. An army has suffered defeat, and at once a people loses its rights in proportion to the severity of the reverse, and if its army suffers a complete defeat the nation is quite subjugated. So according to history it has been found from the most ancient times, and so it is to our own day. All Napoleon's wars serve to confirm this rule. In proportion to the defeat of the Austrian army Austria loses its rights, and the rights and the strength of France increase. The victories of the French at Jena and Auerstadt destroy the independent existence of Prussia. But then, in 1812, the French gain a victory near Moscow. Moscow is taken and after that, with no further battles, it is not Russia that ceases to exist, but the French army of six hundred thousand, and then Napoleonic France itself. To strain the facts to fit the rules of history: to say that the field of battle at Borodino remained in the hands of the Russians, or that after Moscow there were other battles that destroyed Napoleon's army, is impossible. After the French victory at Borodino there was no general engagement nor any that were at all serious, yet the French army ceased to exist. What does this mean? If it were an example taken from the history of China, we might say that it was not an historic phenomenon (which is the historians' usual expedient when anything does not fit their standards); if the matter concerned some brief conflict in which only a small number of troops took part, we might treat it as an exception; but this event occurred before our fathers' eyes, and for them it was a question of the life or death of their fatherland, and it happened in the greatest of all known wars. The period of the campaign of 1812 from the battle of Borodino to the expulsion of the French proved that the winning of a battle does not produce a conquest and is not even an invariable indication of conquest; it proved that the force which decides the fate of peoples lies not in the conquerors, nor even in armies and battles, but in something else. The French historians, describing the condition of the French army before it left Moscow, affirm that all was in order in the Grand Army, except the cavalry, the artillery, and the transport--there was no forage for the horses or the cattle. That was a misfortune no one could remedy, for the peasants of the district burned their hay rather than let the French have it. The victory gained did not bring the usual results because the peasants Karp and Vlas (who after the French had evacuated Moscow drove in their carts to pillage the town, and in general personally failed to manifest any heroic feelings), and the whole innumerable multitude of such peasants, did not bring their hay to Moscow for the high price offered them, but burned it instead. Let us imagine two men who have come out to fight a duel with rapiers according to all the rules of the art of fencing. The fencing has gone on for some time; suddenly one of the combatants, feeling himself wounded and understanding that the matter is no joke but concerns his life, throws down his rapier, and seizing the first cudgel that comes to hand begins to brandish it. Then let us imagine that the combatant who so sensibly employed the best and simplest means to attain his end was at the same time influenced by traditions of chivalry and, desiring to conceal the facts of the case, insisted that he had gained his victory with the rapier according to all the rules of art. One can imagine what confusion and obscurity would result from such an account of the duel. The fencer who demanded a contest according to the rules of fencing was the French army; his opponent who threw away the rapier and snatched up the cudgel was the Russian people; those who try to explain the matter according to the rules of fencing are the historians who have described the event. After the burning of Smolensk a war began which did not follow any previous traditions of war. The burning of towns and villages, the retreats after battles, the blow dealt at Borodino and the renewed retreat, the burning of Moscow, the capture of marauders, the seizure of transports, and the guerrilla war were all departures from the rules. Napoleon felt this, and from the time he took up the correct fencing attitude in Moscow and instead of his opponent's rapier saw a cudgel raised above his head, he did not cease to complain to Kutuzov and to the Emperor Alexander that the war was being carried on contrary to all the rules--as if there were any rules for killing people. In spite of the complaints of the French as to the nonobservance of the rules, in spite of the fact that to some highly placed Russians it seemed rather disgraceful to fight with a cudgel and they wanted to assume a pose en quarte or en tierce according to all the rules, and to make an adroit thrust en prime, and so on--the cudgel of the people's war was lifted with all its menacing and majestic strength, and without consulting anyone's tastes or rules and regardless of anything else, it rose and fell with stupid simplicity, but consistently, and belabored the French till the whole invasion had perished. And it is well for a people who do not--as the French did in 1813- salute according to all the rules of art, and, presenting the hilt of their rapier gracefully and politely, hand it to their magnanimous conqueror, but at the moment of trial, without asking what rules others have adopted in similar cases, simply and easily pick up the first cudgel that comes to hand and strike with it till the feeling of resentment and revenge in their soul yields to a feeling of contempt and compassion. CHAPTER II One of the most obvious and advantageous departures from the so-called laws of war is the action of scattered groups against men pressed together in a mass. Such action always occurs in wars that take on a national character. In such actions, instead of two crowds opposing each other, the men disperse, attack singly, run away when attacked by stronger forces, but again attack when opportunity offers. This was done by the guerrillas in Spain, by the mountain tribes in the Caucasus, and by the Russians in 1812. People have called this kind of war "guerrilla warfare" and assume that by so calling it they have explained its meaning. But such a war does not fit in under any rule and is directly opposed to a well-known rule of tactics which is accepted as infallible. That rule says that an attacker should concentrate his forces in order to be stronger than his opponent at the moment of conflict. Guerrilla war (always successful, as history shows) directly infringes that rule. This contradiction arises from the fact that military science assumes the strength of an army to be identical with its numbers. Military science says that the more troops the greater the strength. Les gros bataillons ont toujours raison.* *Large battalions are always victorious. For military science to say this is like defining momentum in mechanics by reference to the mass only: stating that momenta are equal or unequal to each other simply because the masses involved are equal or unequal. Momentum (quantity of motion) is the product of mass and velocity. In military affairs the strength of an army is the product of its mass and some unknown x. Military science, seeing in history innumerable instances of the fact that the size of any army does not coincide with its strength and that small detachments defeat larger ones, obscurely admits the existence of this unknown factor and tries to discover it--now in a geometric formation, now in the equipment employed, now, and most usually, in the genius of the commanders. But the assignment of these various meanings to the factor does not yield results which accord with the historic facts. Yet it is only necessary to abandon the false view (adopted to gratify the "heroes") of the efficacy of the directions issued in wartime by commanders, in order to find this unknown quantity. That unknown quantity is the spirit of the army, that is to say, the greater or lesser readiness to fight and face danger felt by all the men composing an army, quite independently of whether they are, or are not, fighting under the command of a genius, in two--or three-line formation, with cudgels or with rifles that repeat thirty times a minute. Men who want to fight will always put themselves in the most advantageous conditions for fighting. The spirit of an army is the factor which multiplied by the mass gives the resulting force. To define and express the significance of this unknown factor--the spirit of an army--is a problem for science. This problem is only solvable if we cease arbitrarily to substitute for the unknown x itself the conditions under which that force becomes apparent--such as the commands of the general, the equipment employed, and so on--mistaking these for the real significance of the factor, and if we recognize this unknown quantity in its entirety as being the greater or lesser desire to fight and to face danger. Only then, expressing known historic facts by equations and comparing the relative significance of this factor, can we hope to define the unknown. Ten men, battalions, or divisions, fighting fifteen men, battalions, or divisions, conquer--that is, kill or take captive--all the others, while themselves losing four, so that on the one side four and on the other fifteen were lost. Consequently the four were equal to the fifteen, and therefore 4x = 15y. Consequently x/y = 15/4. This equation does not give us the value of the unknown factor but gives us a ratio between two unknowns. And by bringing variously selected historic units (battles, campaigns, periods of war) into such equations, a series of numbers could be obtained in which certain laws should exist and might be discovered. The tactical rule that an army should act in masses when attacking, and in smaller groups in retreat, unconsciously confirms the truth that the strength of an army depends on its spirit. To lead men forward under fire more discipline (obtainable only by movement in masses) is needed than is needed to resist attacks. But this rule which leaves out of account the spirit of the army continually proves incorrect and is in particularly striking contrast to the facts when some strong rise or fall in the spirit of the troops occurs, as in all national wars. The French, retreating in 1812--though according to tactics they should have separated into detachments to defend themselves- congregated into a mass because the spirit of the army had so fallen that only the mass held the army together. The Russians, on the contrary, ought according to tactics to have attacked in mass, but in fact they split up into small units, because their spirit had so risen that separate individuals, without orders, dealt blows at the French without needing any compulsion to induce them to expose themselves to hardships and dangers. CHAPTER III The so-called partisan war began with the entry of the French into Smolensk. Before partisan warfare had been officially recognized by the government, thousands of enemy stragglers, marauders, and foragers had been destroyed by the Cossacks and the peasants, who killed them off as instinctively as dogs worry a stray mad dog to death. Denis Davydov, with his Russian instinct, was the first to recognize the value of this terrible cudgel which regardless of the rules of military science destroyed the French, and to him belongs the credit for taking the first step toward regularizing this method of warfare. On August 24 Davydov's first partisan detachment was formed and then others were recognized. The further the campaign progressed the more numerous these detachments became. The irregulars destroyed the great army piecemeal. They gathered the fallen leaves that dropped of themselves from that withered tree- the French army--and sometimes shook that tree itself. By October, when the French were fleeing toward Smolensk, there were hundreds of such companies, of various sizes and characters. There were some that adopted all the army methods and had infantry, artillery, staffs, and the comforts of life. Others consisted solely of Cossack cavalry. There were also small scratch groups of foot and horse, and groups of peasants and landowners that remained unknown. A sacristan commanded one party which captured several hundred prisoners in the course of a month; and there was Vasilisa, the wife of a village elder, who slew hundreds of the French. The partisan warfare flamed up most fiercely in the latter days of October. Its first period had passed: when the partisans themselves, amazed at their own boldness, feared every minute to be surrounded and captured by the French, and hid in the forests without unsaddling, hardly daring to dismount and always expecting to be pursued. By the end of October this kind of warfare had taken definite shape: it had become clear to all what could be ventured against the French and what could not. Now only the commanders of detachments with staffs, and moving according to rules at a distance from the French, still regarded many things as impossible. The small bands that had started their activities long before and had already observed the French closely considered things possible which the commanders of the big detachments did not dare to contemplate. The Cossacks and peasants who crept in among the French now considered everything possible. On October 22, Denisov (who was one of the irregulars) was with his group at the height of the guerrilla enthusiasm. Since early morning he and his party had been on the move. All day long he had been watching from the forest that skirted the highroad a large French convoy of cavalry baggage and Russian prisoners separated from the rest of the army, which--as was learned from spies and prisoners- was moving under a strong escort to Smolensk. Besides Denisov and Dolokhov (who also led a small party and moved in Denisov's vicinity), the commanders of some large divisions with staffs also knew of this convoy and, as Denisov expressed it, were sharpening their teeth for it. Two of the commanders of large parties--one a Pole and the other a German--sent invitations to Denisov almost simultaneously, requesting him to join up with their divisions to attack the convoy. "No, bwother, I have gwown mustaches myself," said Denisov on reading these documents, and he wrote to the German that, despite his heartfelt desire to serve under so valiant and renowned a general, he had to forgo that pleasure because he was already under the command of the Polish general. To the Polish general he replied to the same effect, informing him that he was already under the command of the German. Having arranged matters thus, Denisov and Dolokhov intended, without reporting matters to the higher command, to attack and seize that convoy with their own small forces. On October 22 it was moving from the village of Mikulino to that of Shamshevo. To the left of the road between Mikulino and Shamshevo there were large forests, extending in some places up to the road itself though in others a mile or more back from it. Through these forests Denisov and his party rode all day, sometimes keeping well back in them and sometimes coming to the very edge, but never losing sight of the moving French. That morning, Cossacks of Denisov's party had seized and carried off into the forest two wagons loaded with cavalry saddles, which had stuck in the mud not far from Mikulino where the forest ran close to the road. Since then, and until evening, the party had the movements of the French without attacking. It was necessary to let the French reach Shamshevo quietly without alarming them and then, after joining Dolokhov who was to come that evening to a consultation at a watchman's hut in the forest less than a mile from Shamshevo, to surprise the French at dawn, falling like an avalanche on their heads from two sides, and rout and capture them all at one blow. In their rear, more than a mile from Mikulino where the forest came right up to the road, six Cossacks were posted to report if any fresh columns of French should show themselves. Beyond Shamshevo, Dolokhov was to observe the road in the same way, to find out at what distance there were other French troops. They reckoned that the convoy had fifteen hundred men. Denisov had two hundred, and Dolokhov might have as many more, but the disparity of numbers did not deter Denisov. All that he now wanted to know was what troops these were and to learn that he had to capture a "tongue"--that is, a man from the enemy column. That morning's attack on the wagons had been made so hastily that the Frenchmen with the wagons had all been killed; only a little drummer boy had been taken alive, and as he was a straggler he could tell them nothing definite about the troops in that column. Denisov considered it dangerous to make a second attack for fear of putting the whole column on the alert, so he sent Tikhon Shcherbaty, a peasant of his party, to Shamshevo to try and seize at least one of the French quartermasters who had been sent on in advance. CHAPTER IV It was a warm rainy autumn day. The sky and the horizon were both the color of muddy water. At times a sort of mist descended, and then suddenly heavy slanting rain came down. Denisov in a felt cloak and a sheepskin cap from which the rain ran down was riding a thin thoroughbred horse with sunken sides. Like his horse, which turned its head and laid its ears back, he shrank from the driving rain and gazed anxiously before him. His thin face with its short, thick black beard looked angry. Beside Denisov rode an esaul,* Denisov's fellow worker, also in felt cloak and sheepskin cap, and riding a large sleek Don horse. *A captain of Cossacks. Esaul Lovayski the Third was a tall man as straight as an arrow, pale-faced, fair-haired, with narrow light eyes and with calm self-satisfaction in his face and bearing. Though it was impossible to say in what the peculiarity of the horse and rider lay, yet at first glance at the esaul and Denisov one saw that the latter was wet and uncomfortable and was a man mounted on a horse, while looking at the esaul one saw that he was as comfortable and as much at ease as always and that he was not a man who had mounted a horse, but a man who was one with his horse, a being consequently possessed of twofold strength. A little ahead of them walked a peasant guide, wet to the skin and wearing a gray peasant coat and a white knitted cap. A little behind, on a poor, small, lean Kirghiz mount with an enormous tail and mane and a bleeding mouth, rode a young officer in a blue French overcoat. Beside him rode an hussar, with a boy in a tattered French uniform and blue cap behind him on the crupper of his horse. The boy held on to the hussar with cold, red hands, and raising his eyebrows gazed about him with surprise. This was the French drummer boy captured that morning. Behind them along the narrow, sodden, cutup forest road came hussars in threes and fours, and then Cossacks: some in felt cloaks, some in French greatcoats, and some with horsecloths over their heads. The horses, being drenched by the rain, all looked black whether chestnut or bay. Their necks, with their wet, close-clinging manes, looked strangely thin. Steam rose from them. Clothes, saddles, reins, were all wet, slippery, and sodden, like the ground and the fallen leaves that strewed the road. The men sat huddled up trying not to stir, so as to warm the water that had trickled to their bodies and not admit the fresh cold water that was leaking in under their seats, their knees, and at the back of their necks. In the midst of the outspread line of Cossacks two wagons, drawn by French horses and by saddled Cossack horses that had been hitched on in front, rumbled over the tree stumps and branches and splashed through the water that lay in the ruts. Denisov's horse swerved aside to avoid a pool in the track and bumped his rider's knee against a tree. "Oh, the devil!" exclaimed Denisov angrily, and showing his teeth he struck his horse three times with his whip, splashing himself and his comrades with mud. Denisov was out of sorts both because of the rain and also from hunger (none of them had eaten anything since morning), and yet more because he still had no news from Dolokhov and the man sent to capture a "tongue" had not returned. "There'll hardly be another such chance to fall on a transport as today. It's too risky to attack them by oneself, and if we put it off till another day one of the big guerrilla detachments will snatch the prey from under our noses," thought Denisov, continually peering forward, hoping to see a messenger from Dolokhov. On coming to a path in the forest along which he could see far to the right, Denisov stopped. "There's someone coming," said he. The esaul looked in the direction Denisov indicated. "There are two, an officer and a Cossack. But it is not presupposable that it is the lieutenant colonel himself," said the esaul, who was fond of using words the Cossacks did not know. The approaching riders having descended a decline were no longer visible, but they reappeared a few minutes later. In front, at a weary gallop and using his leather whip, rode an officer, disheveled and drenched, whose trousers had worked up to above his knees. Behind him, standing in the stirrups, trotted a Cossack. The officer, a very young lad with a broad rosy face and keen merry eyes, galloped up to Denisov and handed him a sodden envelope. "From the general," said the officer. "Please excuse its not being quite dry." Denisov, frowning, took the envelope and opened it. "There, they kept telling us: 'It's dangerous, it's dangerous,'" said the officer, addressing the esaul while Denisov was reading the dispatch. "But Komarov and I"--he pointed to the Cossack--"were prepared. We have each of us two pistols.... But what's this?" he asked, noticing the French drummer boy. "A prisoner? You've already been in action? May I speak to him?" "Wostov! Petya!" exclaimed Denisov, having run through the dispatch. "Why didn't you say who you were?" and turning with a smile he held out his hand to the lad. The officer was Petya Rostov. All the way Petya had been preparing himself to behave with Denisov as befitted a grownup man and an officer--without hinting at their previous acquaintance. But as soon as Denisov smiled at him Petya brightened up, blushed with pleasure, forgot the official manner he had been rehearsing, and began telling him how he had already been in a battle near Vyazma and how a certain hussar had distinguished himself there. "Well, I am glad to see you," Denisov interrupted him, and his face again assumed its anxious expression. "Michael Feoklitych," said he to the esaul, "this is again fwom that German, you know. He"--he indicated Petya--"is serving under him." And Denisov told the esaul that the dispatch just delivered was a repetition of the German general's demand that he should join forces with him for an attack on the transport. "If we don't take it tomowwow, he'll snatch it fwom under our noses," he added. While Denisov was talking to the esaul, Petya--abashed by Denisov's cold tone and supposing that it was due to the condition of his trousers--furtively tried to pull them down under his greatcoat so that no one should notice it, while maintaining as martial an air as possible. "Will there be any orders, your honor?" he asked Denisov, holding his hand at the salute and resuming the game of adjutant and general for which he had prepared himself, "or shall I remain with your honor?" "Orders?" Denisov repeated thoughtfully. "But can you stay till tomowwow?" "Oh, please... May I stay with you?" cried Petya. "But, just what did the genewal tell you? To weturn at once?" asked Denisov. Petya blushed. "He gave me no instructions. I think I could?" he returned, inquiringly. "Well, all wight," said Denisov. And turning to his men he directed a party to go on to the halting place arranged near the watchman's hut in the forest, and told the officer on the Kirghiz horse (who performed the duties of an adjutant) to go and find out where Dolokhov was and whether he would come that evening. Denisov himself intended going with the esaul and Petya to the edge of the forest where it reached out to Shamshevo, to have a look at the part of the French bivouac they were to attack next day. "Well, old fellow," said he to the peasant guide, "lead us to Shamshevo." Denisov, Petya, and the esaul, accompanied by some Cossacks and the hussar who had the prisoner, rode to the left across a ravine to the edge of the forest. CHAPTER V The rain had stopped, and only the mist was falling and drops from the trees. Denisov, the esaul, and Petya rode silently, following the peasant in the knitted cap who, stepping lightly with outturned toes and moving noiselessly in his bast shoes over the roots and wet leaves, silently led them to the edge of the forest. He ascended an incline, stopped, looked about him, and advanced to where the screen of trees was less dense. On reaching a large oak tree that had not yet shed its leaves, he stopped and beckoned mysteriously to them with his hand. Denisov and Petya rode up to him. From the spot where the peasant was standing they could see the French. Immediately beyond the forest, on a downward slope, lay a field of spring rye. To the right, beyond a steep ravine, was a small village and a landowner's house with a broken roof. In the village, in the house, in the garden, by the well, by the pond, over all the rising ground, and all along the road uphill from the bridge leading to the village, not more than five hundred yards away, crowds of men could be seen through the shimmering mist. Their un-Russian shouting at their horses which were straining uphill with the carts, and their calls to one another, could be clearly heard. "Bwing the prisoner here," said Denisov in a low voice, not taking his eyes off the French. A Cossack dismounted, lifted the boy down, and took him to Denisov. Pointing to the French troops, Denisov asked him what these and those of them were. The boy, thrusting his cold hands into his pockets and lifting his eyebrows, looked at Denisov in affright, but in spite of an evident desire to say all he knew gave confused answers, merely assenting to everything Denisov asked him. Denisov turned away from him frowning and addressed the esaul, conveying his own conjectures to him. Petya, rapidly turning his head, looked now at the drummer boy, now at Denisov, now at the esaul, and now at the French in the village and along the road, trying not to miss anything of importance. "Whether Dolokhov comes or not, we must seize it, eh?" said Denisov with a merry sparkle in his eyes. "It is a very suitable spot," said the esaul. "We'll send the infantwy down by the swamps," Denisov continued. "They'll cweep up to the garden; you'll wide up fwom there with the Cossacks"--he pointed to a spot in the forest beyond the village--"and I with my hussars fwom here. And at the signal shot..." "The hollow is impassable--there's a swamp there," said the esaul. "The horses would sink. We must ride round more to the left...." While they were talking in undertones the crack of a shot sounded from the low ground by the pond, a puff of white smoke appeared, then another, and the sound of hundreds of seemingly merry French voices shouting together came up from the slope. For a moment Denisov and the esaul drew back. They were so near that they thought they were the cause of the firing and shouting. But the firing and shouting did not relate to them. Down below, a man wearing something red was running through the marsh. The French were evidently firing and shouting at him. "Why, that's our Tikhon," said the esaul. "So it is! It is!" "The wascal!" said Denisov. "He'll get away!" said the esaul, screwing up his eyes. The man whom they called Tikhon, having run to the stream, plunged in so that the water splashed in the air, and, having disappeared for an instant, scrambled out on all fours, all black with the wet, and ran on. The French who had been pursuing him stopped. "Smart, that!" said the esaul. "What a beast!" said Denisov with his former look of vexation. "What has he been doing all this time?" "Who is he?" asked Petya. "He's our plastun. I sent him to capture a 'tongue.'" "Oh, yes," said Petya, nodding at the first words Denisov uttered as if he understood it all, though he really did not understand anything of it. Tikhon Shcherbaty was one of the most indispensable men in their band. He was a peasant from Pokrovsk, near the river Gzhat. When Denisov had come to Pokrovsk at the beginning of his operations and had as usual summoned the village elder and asked him what he knew about the French, the elder, as though shielding himself, had replied, as all village elders did, that he had neither seen nor heard anything of them. But when Denisov explained that his purpose was to kill the French, and asked if no French had strayed that way, the elder replied that some "more-orderers" had really been at their village, but that Tikhon Shcherbaty was the only man who dealt with such matters. Denisov had Tikhon called and, having praised him for his activity, said a few words in the elder's presence about loyalty to the Tsar and the country and the hatred of the French that all sons of the fatherland should cherish. "We don't do the French any harm," said Tikhon, evidently frightened by Denisov's words. "We only fooled about with the lads for fun, you know! We killed a score or so of 'more-orderers,' but we did no harm else..." Next day when Denisov had left Pokrovsk, having quite forgotten about this peasant, it was reported to him that Tikhon had attached himself to their party and asked to be allowed to remain with it. Denisov gave orders to let him do so. Tikhon, who at first did rough work, laying campfires, fetching water, flaying dead horses, and so on, soon showed a great liking and aptitude for partisan warfare. At night he would go out for booty and always brought back French clothing and weapons, and when told to would bring in French captives also. Denisov then relieved him from drudgery and began taking him with him when he went out on expeditions and had him enrolled among the Cossacks. Tikhon did not like riding, and always went on foot, never lagging behind the cavalry. He was armed with a musketoon (which he carried rather as a joke), a pike and an ax, which latter he used as a wolf uses its teeth, with equal case picking fleas out of its fur or crunching thick bones. Tikhon with equal accuracy would split logs with blows at arm's length, or holding the head of the ax would cut thin little pegs or carve spoons. In Denisov's party he held a peculiar and exceptional position. When anything particularly difficult or nasty had to be done--to push a cart out of the mud with one's shoulders, pull a horse out of a swamp by its tail, skin it, slink in among the French, or walk more than thirty miles in a day--everybody pointed laughingly at Tikhon. "It won't hurt that devil--he's as strong as a horse!" they said of him. Once a Frenchman Tikhon was trying to capture fired a pistol at him and shot him in the fleshy part of the back. That wound (which Tikhon treated only with internal and external applications of vodka) was the subject of the liveliest jokes by the whole detachment- jokes in which Tikhon readily joined. "Hallo, mate! Never again? Gave you a twist?" the Cossacks would banter him. And Tikhon, purposely writhing and making faces, pretended to be angry and swore at the French with the funniest curses. The only effect of this incident on Tikhon was that after being wounded he seldom brought in prisoners. He was the bravest and most useful man in the party. No one found more opportunities for attacking, no one captured or killed more Frenchmen, and consequently he was made the buffoon of all the Cossacks and hussars and willingly accepted that role. Now he had been sent by Denisov overnight to Shamshevo to capture a "tongue." But whether because he had not been content to take only one Frenchman or because he had slept through the night, he had crept by day into some bushes right among the French and, as Denisov had witnessed from above, had been detected by them. CHAPTER VI After talking for some time with the esaul about next day's attack, which now, seeing how near they were to the French, he seemed to have definitely decided on, Denisov turned his horse and rode back. "Now, my lad, we'll go and get dwy," he said to Petya. As they approached the watchhouse Denisov stopped, peering into the forest. Among the trees a man with long legs and long, swinging arms, wearing a short jacket, bast shoes, and a Kazan hat, was approaching with long, light steps. He had a musketoon over his shoulder and an ax stuck in his girdle. When he espied Denisov he hastily threw something into the bushes, removed his sodden hat by its floppy brim, and approached his commander. It was Tikhon. His wrinkled and pockmarked face and narrow little eyes beamed with self-satisfied merriment. He lifted his head high and gazed at Denisov as if repressing a laugh. "Well, where did you disappear to?" inquired Denisov. "Where did I disappear to? I went to get Frenchmen," answered Tikhon boldly and hurriedly, in a husky but melodious bass voice. "Why did you push yourself in there by daylight? You ass! Well, why haven't you taken one?" "Oh, I took one all right," said Tikhon. "Where is he?" "You see, I took him first thing at dawn," Tikhon continued, spreading out his flat feet with outturned toes in their bast shoes. "I took him into the forest. Then I see he's no good and think I'll go and fetch a likelier one." "You see?... What a wogue--it's just as I thought," said Denisov to the esaul. "Why didn't you bwing that one?" "What was the good of bringing him?" Tikhon interrupted hastily and angrily--"that one wouldn't have done for you. As if I don't know what sort you want!" "What a bwute you are!... Well?" "I went for another one," Tikhon continued, "and I crept like this through the wood and lay down." (He suddenly lay down on his stomach with a supple movement to show how he had done it.) "One turned up and I grabbed him, like this." (He jumped up quickly and lightly.) "'Come along to the colonel,' I said. He starts yelling, and suddenly there were four of them. They rushed at me with their little swords. So I went for them with my ax, this way: 'What are you up to?' says I. 'Christ be with you!'" shouted Tikhon, waving his arms with an angry scowl and throwing out his chest. "Yes, we saw from the hill how you took to your heels through the puddles!" said the esaul, screwing up his glittering eyes. Petya badly wanted to laugh, but noticed that they all refrained from laughing. He turned his eyes rapidly from Tikhon's face to the esaul's and Denisov's, unable to make out what it all meant. "Don't play the fool!" said Denisov, coughing angrily. "Why didn't you bwing the first one?" Tikhon scratched his back with one hand and his head with the other, then suddenly his whole face expanded into a beaming, foolish grin, disclosing a gap where he had lost a tooth (that was why he was called Shcherbaty--the gap-toothed). Denisov smiled, and Petya burst into a peal of merry laughter in which Tikhon himself joined. "Oh, but he was a regular good-for-nothing," said Tikhon. "The clothes on him--poor stuff! How could I bring him? And so rude, your honor! Why, he says: 'I'm a general's son myself, I won't go!' he says." "You are a bwute!" said Denisov. "I wanted to question..." "But I questioned him," said Tikhon. "He said he didn't know much. 'There are a lot of us,' he says, 'but all poor stuff--only soldiers in name,' he says. 'Shout loud at them,' he says, 'and you'll take them all,'" Tikhon concluded, looking cheerfully and resolutely into Denisov's eyes. "I'll give you a hundwed sharp lashes--that'll teach you to play the fool!" said Denisov severely. "But why are you angry?" remonstrated Tikhon, "just as if I'd never seen your Frenchmen! Only wait till it gets dark and I'll fetch you any of them you want--three if you like." "Well, let's go," said Denisov, and rode all the way to the watchhouse in silence and frowning angrily. Tikhon followed behind and Petya heard the Cossacks laughing with him and at him, about some pair of boots he had thrown into the bushes. When the fit of laughter that had seized him at Tikhon's words and smile had passed and Petya realized for a moment that this Tikhon had killed a man, he felt uneasy. He looked round at the captive drummer boy and felt a pang in his heart. But this uneasiness lasted only a moment. He felt it necessary to hold his head higher, to brace himself, and to question the esaul with an air of importance about tomorrow's undertaking, that he might not be unworthy of the company in which he found himself. The officer who had been sent to inquire met Denisov on the way with the news that Dolokhov was soon coming and that all was well with him. Denisov at once cheered up and, calling Petya to him, said: "Well, tell me about yourself." CHAPTER VII Petya, having left his people after their departure from Moscow, joined his regiment and was soon taken as orderly by a general commanding a large guerrilla detachment. From the time he received his commission, and especially since he had joined the active army and taken part in the battle of Vyazma, Petya had been in a constant state of blissful excitement at being grown-up and in a perpetual ecstatic hurry not to miss any chance to do something really heroic. He was highly delighted with what he saw and experienced in the army, but at the same time it always seemed to him that the really heroic exploits were being performed just where he did not happen to be. And he was always in a hurry to get where he was not. When on the twenty-first of October his general expressed a wish to send somebody to Denisov's detachment, Petya begged so piteously to be sent that the general could not refuse. But when dispatching him he recalled Petya's mad action at the battle of Vyazma, where instead of riding by the road to the place to which he had been sent, he had galloped to the advanced line under the fire of the French and had there twice fired his pistol. So now the general explicitly forbade his taking part in any action whatever of Denisov's. That was why Petya had blushed and grown confused when Denisov asked him whether he could stay. Before they had ridden to the outskirts of the forest Petya had considered he must carry out his instructions strictly and return at once. But when he saw the French and saw Tikhon and learned that there would certainly be an attack that night, he decided, with the rapidity with which young people change their views, that the general, whom he had greatly respected till then, was a rubbishy German, that Denisov was a hero, the esaul a hero, and Tikhon a hero too, and that it would be shameful for him to leave them at a moment of difficulty. It was already growing dusk when Denisov, Petya, and the esaul rode up to the watchhouse. In the twilight saddled horses could be seen, and Cossacks and hussars who had rigged up rough shelters in the glade and were kindling glowing fires in a hollow of the forest where the French could not see the smoke. In the passage of the small watchhouse a Cossack with sleeves rolled up was chopping some mutton. In the room three officers of Denisov's band were converting a door into a tabletop. Petya took off his wet clothes, gave them to be dried, and at once began helping the officers to fix up the dinner table. In ten minutes the table was ready and a napkin spread on it. On the table were vodka, a flask of rum, white bread, roast mutton, and salt. Sitting at table with the officers and tearing the fat savory mutton with his hands, down which the grease trickled, Petya was in an ecstatic childish state of love for all men, and consequently of confidence that others loved him in the same way. "So then what do you think, Vasili Dmitrich?" said he to Denisov. "It's all right my staying a day with you?" And not waiting for a reply he answered his own question: "You see I was told to find out- well, I am finding out.... Only do let me into the very... into the chief... I don't want a reward... But I want..." Petya clenched his teeth and looked around, throwing back his head and flourishing his arms. "Into the vewy chief..." Denisov repeated with a smile. "Only, please let me command something, so that I may really command..." Petya went on. "What would it be to you?... Oh, you want a knife?" he said, turning to an officer who wished to cut himself a piece of mutton. And he handed him his clasp knife. The officer admired it. "Please keep it. I have several like it," said Petya, blushing. "Heavens! I was quite forgetting!" he suddenly cried. "I have some raisins, fine ones; you know, seedless ones. We have a new sutler and he has such capital things. I bought ten pounds. I am used to something sweet. Would you like some?..." and Petya ran out into the passage to his Cossack and brought back some bags which contained about five pounds of raisins. "Have some, gentlemen, have some!" "You want a coffeepot, don't you?" he asked the esaul. "I bought a capital one from our sutler! He has splendid things. And he's very honest, that's the chief thing. I'll be sure to send it to you. Or perhaps your flints are giving out, or are worn out--that happens sometimes, you know. I have brought some with me, here they are"- and he showed a bag--"a hundred flints. I bought them very cheap. Please take as many as you want, or all if you like...." Then suddenly, dismayed lest he had said too much, Petya stopped and blushed. He tried to remember whether he had not done anything else that was foolish. And running over the events of the day he remembered the French drummer boy. "It's capital for us here, but what of him? Where have they put him? Have they fed him? Haven't they hurt his feelings?" he thought. But having caught himself saying too much about the flints, he was now afraid to speak out. "I might ask," he thought, "but they'll say: 'He's a boy himself and so he pities the boy.' I'll show them tomorrow whether I'm a boy. Will it seem odd if I ask?" Petya thought. "Well, never mind!" and immediately, blushing and looking anxiously at the officers to see if they appeared ironical, he said: "May I call in that boy who was taken prisoner and give him something to eat?... Perhaps..." "Yes, he's a poor little fellow," said Denisov, who evidently saw nothing shameful in this reminder. "Call him in. His name is Vincent Bosse. Have him fetched." "I'll call him," said Petya. "Yes, yes, call him. A poor little fellow," Denisov repeated. Petya was standing at the door when Denisov said this. He slipped in between the officers, came close to Denisov, and said: "Let me kiss you, dear old fellow! Oh, how fine, how splendid!" And having kissed Denisov he ran out of the hut. "Bosse! Vincent!" Petya cried, stopping outside the door. "Who do you want, sir?" asked a voice in the darkness. Petya replied that he wanted the French lad who had been captured that day. "Ah, Vesenny?" said a Cossack. Vincent, the boy's name, had already been changed by the Cossacks into Vesenny (vernal) and into Vesenya by the peasants and soldiers. In both these adaptations the reference to spring (vesna) matched the impression made by the young lad. "He is warming himself there by the bonfire. Ho, Vesenya! Vesenya!--Vesenny!" laughing voices were heard calling to one another in the darkness. "He's a smart lad," said an hussar standing near Petya. "We gave him something to eat a while ago. He was awfully hungry!" The sound of bare feet splashing through the mud was heard in the darkness, and the drummer boy came to the door. "Ah, c'est vous!" said Petya. "Voulez-vous manger? N'ayez pas peur, on ne vous fera pas de mal,"* he added shyly and affectionately, touching the boy's hand. "Entrez, entrez."*[2] *"Ah, it's you! Do you want something to eat? Don't be afraid, they won't hurt you." *[2] "Come in, come in." "Merci, monsieur,"* said the drummer boy in a trembling almost childish voice, and he began scraping his dirty feet on the threshold. *"Thank you, sir." There were many things Petya wanted to say to the drummer boy, but did not dare to. He stood irresolutely beside him in the passage. Then in the darkness he took the boy's hand and pressed it. "Come in, come in!" he repeated in a gentle whisper. "Oh, what can I do for him?" he thought, and opening the door he let the boy pass in first. When the boy had entered the hut, Petya sat down at a distance from him, considering it beneath his dignity to pay attention to him. But he fingered the money in his pocket and wondered whether it would seem ridiculous to give some to the drummer boy. CHAPTER VIII The arrival of Dolokhov diverted Petya's attention from the drummer boy, to whom Denisov had had some mutton and vodka given, and whom he had had dressed in a Russian coat so that he might be kept with their band and not sent away with the other prisoners. Petya had heard in the army many stories of Dolokhov's extraordinary bravery and of his cruelty to the French, so from the moment he entered the hut Petya did not take his eyes from him, but braced himself up more and more and held his head high, that he might not be unworthy even of such company. Dolokhov's appearance amazed Petya by its simplicity. Denisov wore a Cossack coat, had a beard, had an icon of Nicholas the Wonder-Worker on his breast, and his way of speaking and everything he did indicated his unusual position. But Dolokhov, who in Moscow had worn a Persian costume, had now the appearance of a most correct officer of the Guards. He was clean-shaven and wore a Guardsman's padded coat with an Order of St. George at his buttonhole and a plain forage cap set straight on his head. He took off his wet felt cloak in a corner of the room, and without greeting anyone went up to Denisov and began questioning him about the matter in hand. Denisov told him of the designs the large detachments had on the transport, of the message Petya had brought, and his own replies to both generals. Then he told him all he knew of the French detachment. "That's so. But we must know what troops they are and their numbers," said Dolokhov. "It will be necessary to go there. We can't start the affair without knowing for certain how many there are. I like to work accurately. Here now--wouldn't one of these gentlemen like to ride over to the French camp with me? I have brought a spare uniform." "I, I... I'll go with you!" cried Petya. "There's no need for you to go at all," said Denisov, addressing Dolokhov, "and as for him, I won't let him go on any account." "I like that!" exclaimed Petya. "Why shouldn't I go?" "Because it's useless." "Well, you must excuse me, because... because... I shall go, and that's all. You'll take me, won't you?" he said, turning to Dolokhov. "Why not?" Dolokhov answered absently, scrutinizing the face of the French drummer boy. "Have you had that youngster with you long?" he asked Denisov. "He was taken today but he knows nothing. I'm keeping him with me." "Yes, and where do you put the others?" inquired Dolokhov. "Where? I send them away and take a weceipt for them," shouted Denisov, suddenly flushing. "And I say boldly that I have not a single man's life on my conscience. Would it be difficult for you to send thirty or thwee hundwed men to town under escort, instead of staining- I speak bluntly--staining the honor of a soldier?" "That kind of amiable talk would be suitable from this young count of sixteen," said Dolokhov with cold irony, "but it's time for you to drop it." "Why, I've not said anything! I only say that I'll certainly go with you," said Petya shyly. "But for you and me, old fellow, it's time to drop these amenities," continued Dolokhov, as if he found particular pleasure in speaking of this subject which irritated Denisov. "Now, why have you kept this lad?" he went on, swaying his head. "Because you are sorry for him! Don't we know those 'receipts' of yours? You send a hundred men away, and thirty get there. The rest either starve or get killed. So isn't it all the same not to send them?" The esaul, screwing up his light-colored eyes, nodded approvingly. "That's not the point. I'm not going to discuss the matter. I do not wish to take it on my conscience. You say they'll die. All wight. Only not by my fault!" Dolokhov began laughing. "Who has told them not to capture me these twenty times over? But if they did catch me they'd string me up to an aspen tree, and with all your chivalry just the same." He paused. "However, we must get to work. Tell the Cossack to fetch my kit. I have two French uniforms in it. Well, are you coming with me?" he asked Petya. "I? Yes, yes, certainly!" cried Petya, blushing almost to tears and glancing at Denisov. While Dolokhov had been disputing with Denisov what should be done with prisoners, Petya had once more felt awkward and restless; but again he had no time to grasp fully what they were talking about. "If grown-up, distinguished men think so, it must be necessary and right," thought he. "But above all Denisov must not dare to imagine that I'll obey him and that he can order me about. I will certainly go to the French camp with Dolokhov. If he can, so can I!" And to all Denisov's persuasions, Petya replied that he too was accustomed to do everything accurately and not just anyhow, and that he never considered personal danger. "For you'll admit that if we don't know for sure how many of them there are... hundreds of lives may depend on it, while there are only two of us. Besides, I want to go very much and certainly will go, so don't hinder me," said he. "It will only make things worse..." CHAPTER IX Having put on French greatcoats and shakos, Petya and Dolokhov rode to the clearing from which Denisov had reconnoitered the French camp, and emerging from the forest in pitch darkness they descended into the hollow. On reaching the bottom, Dolokhov told the Cossacks accompanying him to await him there and rode on at a quick trot along the road to the bridge. Petya, his heart in his mouth with excitement, rode by his side. "If we're caught, I won't be taken alive! I have a pistol," whispered he. "Don't talk Russian," said Dolokhov in a hurried whisper, and at that very moment they heard through the darkness the challenge: "Qui vive?"* and the click of a musket. *"Who goes there?" The blood rushed to Petya's face and he grasped his pistol. "Lanciers du 6-me,"* replied Dolokhov, neither hastening nor slackening his horse's pace. *"Lancers of the 6th Regiment." The black figure of a sentinel stood on the bridge. "Mot d'ordre."* *"Password." Dolokhov reined in his horse and advanced at a walk. "Dites donc, le colonel Gerard est ici?"* he asked. *"Tell me, is Colonel Gerard here?" "Mot d'ordre," repeated the sentinel, barring the way and not replying. "Quand un officier fait sa ronde, les sentinelles ne demandent pas le mot d'ordre..." cried Dolokhov suddenly flaring up and riding straight at the sentinel. "Je vous demande si le colonel est ici."* *"When an officer is making his round, sentinels don't ask him for the password.... I am asking you if the colonel is here." And without waiting for an answer from the sentinel, who had stepped aside, Dolokhov rode up the incline at a walk. Noticing the black outline of a man crossing the road, Dolokhov stopped him and inquired where the commander and officers were. The man, a soldier with a sack over his shoulder, stopped, came close up to Dolokhov's horse, touched it with his hand, and explained simply and in a friendly way that the commander and the officers were higher up the hill to the right in the courtyard of the farm, as he called the landowner's house. Having ridden up the road, on both sides of which French talk could be heard around the campfires, Dolokhov turned into the courtyard of the landowner's house. Having ridden in, he dismounted and approached a big blazing campfire, around which sat several men talking noisily. Something was boiling in a small cauldron at the edge of the fire and a soldier in a peaked cap and blue overcoat, lit up by the fire, was kneeling beside it stirring its contents with a ramrod. "Oh, he's a hard nut to crack," said one of the officers who was sitting in the shadow at the other side of the fire. "He'll make them get a move on, those fellows!" said another, laughing. Both fell silent, peering out through the darkness at the sound of Dolokhov's and Petya's steps as they advanced to the fire leading their horses. "Bonjour, messieurs!"* said Dolokhov loudly and clearly. *"Good day, gentlemen." There was a stir among the officers in the shadow beyond the fire, and one tall, long-necked officer, walking round the fire, came up to Dolokhov. "Is that you, Clement?" he asked. "Where the devil...?" But, noticing his mistake, he broke off short and, with a frown, greeted Dolokhov as a stranger, asking what he could do for him. Dolokhov said that he and his companion were trying to overtake their regiment, and addressing the company in general asked whether they knew anything of the 6th Regiment. None of them knew anything, and Petya thought the officers were beginning to look at him and Dolokhov with hostility and suspicion. For some seconds all were silent. "If you were counting on the evening soup, you have come too late," said a voice from behind the fire with a repressed laugh. Dolokhov replied that they were not hungry and must push on farther that night. He handed the horses over to the soldier who was stirring the pot and squatted down on his heels by the fire beside the officer with the long neck. That officer did not take his eyes from Dolokhov and again asked to what regiment he belonged. Dolokhov, as if he had not heard the question, did not reply, but lighting a short French pipe which he took from his pocket began asking the officer in how far the road before them was safe from Cossacks. "Those brigands are everywhere," replied an officer from behind the fire. Dolokhov remarked that the Cossacks were a danger only to stragglers such as his companion and himself, "but probably they would not dare to attack large detachments?" he added inquiringly. No one replied. "Well, now he'll come away," Petya thought every moment as he stood by the campfire listening to the talk. But Dolokhov restarted the conversation which had dropped and began putting direct questions as to how many men there were in the battalion, how many battalions, and how many prisoners. Asking about the Russian prisoners with that detachment, Dolokhov said: "A horrid business dragging these corpses about with one! It would be better to shoot such rabble," and burst into loud laughter, so strange that Petya thought the French would immediately detect their disguise, and involuntarily took a step back from the campfire. No one replied a word to Dolokhov's laughter, and a French officer whom they could not see (he lay wrapped in a greatcoat) rose and whispered something to a companion. Dolokhov got up and called to the soldier who was holding their horses. "Will they bring our horses or not?" thought Petya, instinctively drawing nearer to Dolokhov. The horses were brought. "Good evening, gentlemen," said Dolokhov. Petya wished to say "Good night" but could not utter a word. The officers were whispering together. Dolokhov was a long time mounting his horse which would not stand still, then he rode out of the yard at a footpace. Petya rode beside him, longing to look round to see whether or no the French were running after them, but not daring to. Coming out onto the road Dolokhov did not ride back across the open country, but through the village. At one spot he stopped and listened. "Do you hear?" he asked. Petya recognized the sound of Russian voices and saw the dark figures of Russian prisoners round their campfires. When they had descended to the bridge Petya and Dolokhov rode past the sentinel, who without saying a word paced morosely up and down it, then they descended into the hollow where the Cossacks awaited them. "Well now, good-by. Tell Denisov, 'at the first shot at daybreak,'" said Dolokhov and was about to ride away, but Petya seized hold of him. "Really!" he cried, "you are such a hero! Oh, how fine, how splendid! How I love you!" "All right, all right!" said Dolokhov. But Petya did not let go of him and Dolokhov saw through the gloom that Petya was bending toward him and wanted to kiss him. Dolokhov kissed him, laughed, turned his horse, and vanished into the darkness. CHAPTER X Having returned to the watchman's hut, Petya found Denisov in the passage. He was awaiting Petya's return in a state of agitation, anxiety, and self-reproach for having let him go. "Thank God!" he exclaimed. "Yes, thank God!" he repeated, listening to Petya's rapturous account. "But, devil take you, I haven't slept because of you! Well, thank God. Now lie down. We can still get a nap before morning." "But... no," said Petya, "I don't want to sleep yet. Besides I know myself, if I fall asleep it's finished. And then I am used to not sleeping before a battle." He sat awhile in the hut joyfully recalling the details of his expedition and vividly picturing to himself what would happen next day. Then, noticing that Denisov was asleep, he rose and went out of doors. It was still quite dark outside. The rain was over, but drops were still falling from the trees. Near the watchman's hut the black shapes of the Cossacks' shanties and of horses tethered together could be seen. Behind the hut the dark shapes of the two wagons with their horses beside them were discernible, and in the hollow the dying campfire gleamed red. Not all the Cossacks and hussars were asleep; here and there, amid the sounds of falling drops and the munching of the horses near by, could be heard low voices which seemed to be whispering. Petya came out, peered into the darkness, and went up to the wagons. Someone was snoring under them, and around them stood saddled horses munching their oats. In the dark Petya recognized his own horse, which he called "Karabakh" though it was of Ukranian breed, and went up to it. "Well, Karabakh! We'll do some service tomorrow," said he, sniffing its nostrils and kissing it. "Why aren't you asleep, sir?" said a Cossack who was sitting under a wagon. "No, ah... Likhachev--isn't that your name? Do you know I have only just come back! We've been into the French camp." And Petya gave the Cossack a detailed account not only of his ride but also of his object, and why he considered it better to risk his life than to act "just anyhow." "Well, you should get some sleep now," said the Cossack. "No, I am used to this," said Petya. "I say, aren't the flints in your pistols worn out? I brought some with me. Don't you want any? You can have some." The Cossack bent forward from under the wagon to get a closer look at Petya. "Because I am accustomed to doing everything accurately," said Petya. "Some fellows do things just anyhow, without preparation, and then they're sorry for it afterwards. I don't like that." "Just so," said the Cossack. "Oh yes, another thing! Please, my dear fellow, will you sharpen my saber for me? It's got bl..." (Petya feared to tell a lie, and the saber never had been sharpened.) "Can you do it?" "Of course I can." Likhachev got up, rummaged in his pack, and soon Petya heard the warlike sound of steel on whetstone. He climbed onto the wagon and sat on its edge. The Cossack was sharpening the saber under the wagon. "I say! Are the lads asleep?" asked Petya. "Some are, and some aren't--like us." "Well, and that boy?" "Vesenny? Oh, he's thrown himself down there in the passage. Fast asleep after his fright. He was that glad!" After that Petya remained silent for a long time, listening to the sounds. He heard footsteps in the darkness and a black figure appeared. "What are you sharpening?" asked a man coming up to the wagon. "Why, this gentleman's saber." "That's right," said the man, whom Petya took to be an hussar. "Was the cup left here?" "There, by the wheel!" The hussar took the cup. "It must be daylight soon," said he, yawning, and went away. Petya ought to have known that he was in a forest with Denisov's guerrilla band, less than a mile from the road, sitting on a wagon captured from the French beside which horses were tethered, that under it Likhachev was sitting sharpening a saber for him, that the big dark blotch to the right was the watchman's hut, and the red blotch below to the left was the dying embers of a campfire, that the man who had come for the cup was an hussar who wanted a drink; but he neither knew nor waited to know anything of all this. He was in a fairy kingdom where nothing resembled reality. The big dark blotch might really be the watchman's hut or it might be a cavern leading to the very depths of the earth. Perhaps the red spot was a fire, or it might be the eye of an enormous monster. Perhaps he was really sitting on a wagon, but it might very well be that he was not sitting on a wagon but on a terribly high tower from which, if he fell, he would have to fall for a whole day or a whole month, or go on falling and never reach the bottom. Perhaps it was just the Cossack, Likhachev, who was sitting under the wagon, but it might be the kindest, bravest, most wonderful, most splendid man in the world, whom no one knew of. It might really have been that the hussar came for water and went back into the hollow, but perhaps he had simply vanished--disappeared altogether and dissolved into nothingness. Nothing Petya could have seen now would have surprised him. He was in a fairy kingdom where everything was possible. He looked up at the sky. And the sky was a fairy realm like the earth. It was clearing, and over the tops of the trees clouds were swiftly sailing as if unveiling the stars. Sometimes it looked as if the clouds were passing, and a clear black sky appeared. Sometimes it seemed as if the black spaces were clouds. Sometimes the sky seemed to be rising high, high overhead, and then it seemed to sink so low that one could touch it with one's hand. Petya's eyes began to close and he swayed a little. The trees were dripping. Quiet talking was heard. The horses neighed and jostled one another. Someone snored. "Ozheg-zheg, Ozheg-zheg..." hissed the saber against the whetstone, and suddenly Petya heard an harmonious orchestra playing some unknown, sweetly solemn hymn. Petya was as musical as Natasha and more so than Nicholas, but had never learned music or thought about it, and so the melody that unexpectedly came to his mind seemed to him particularly fresh and attractive. The music became more and more audible. The melody grew and passed from one instrument to another. And what was played was a fugue--though Petya had not the least conception of what a fugue is. Each instrument--now resembling a violin and now a horn, but better and clearer than violin or horn- played its own part, and before it had finished the melody merged with another instrument that began almost the same air, and then with a third and a fourth; and they all blended into one and again became separate and again blended, now into solemn church music, now into something dazzlingly brilliant and triumphant. "Oh--why, that was in a dream!" Petya said to himself, as he lurched forward. "It's in my ears. But perhaps it's music of my own. Well, go on, my music! Now!..." He closed his eyes, and, from all sides as if from a distance, sounds fluttered, grew into harmonies, separated, blended, and again all mingled into the same sweet and solemn hymn. "Oh, this is delightful! As much as I like and as I like!" said Petya to himself. He tried to conduct that enormous orchestra. "Now softly, softly die away!" and the sounds obeyed him. "Now fuller, more joyful. Still more and more joyful!" And from an unknown depth rose increasingly triumphant sounds. "Now voices join in!" ordered Petya. And at first from afar he heard men's voices and then women's. The voices grew in harmonious triumphant strength, and Petya listened to their surpassing beauty in awe and joy. With a solemn triumphal march there mingled a song, the drip from the trees, and the hissing of the saber, "Ozheg-zheg-zheg..." and again the horses jostled one another and neighed, not disturbing the choir but joining in it. Petya did not know how long this lasted: he enjoyed himself all the time, wondered at his enjoyment and regretted that there was no one to share it. He was awakened by Likhachev's kindly voice. "It's ready, your honor; you can split a Frenchman in half with it!" Petya woke up. "It's getting light, it's really getting light!" he exclaimed. The horses that had previously been invisible could now be seen to their very tails, and a watery light showed itself through the bare branches. Petya shook himself, jumped up, took a ruble from his pocket and gave it to Likhachev; then he flourished the saber, tested it, and sheathed it. The Cossacks were untying their horses and tightening their saddle girths. "And here's the commander," said Likhachev. Denisov came out of the watchman's hut and, having called Petya, gave orders to get ready. CHAPTER XI The men rapidly picked out their horses in the semidarkness, tightened their saddle girths, and formed companies. Denisov stood by the watchman's hut giving final orders. The infantry of the detachment passed along the road and quickly disappeared amid the trees in the mist of early dawn, hundreds of feet splashing through the mud. The esaul gave some orders to his men. Petya held his horse by the bridle, impatiently awaiting the order to mount. His face, having been bathed in cold water, was all aglow, and his eyes were particularly brilliant. Cold shivers ran down his spine and his whole body pulsed rhythmically. "Well, is ev'wything weady?" asked Denisov. "Bwing the horses." The horses were brought. Denisov was angry with the Cossack because the saddle girths were too slack, reproved him, and mounted. Petya put his foot in the stirrup. His horse by habit made as if to nip his leg, but Petya leaped quickly into the saddle unconscious of his own weight and, turning to look at the hussars starting in the darkness behind him, rode up to Denisov. "Vasili Dmitrich, entrust me with some commission! Please... for God's sake...!" said he. Denisov seemed to have forgotten Petya's very existence. He turned to glance at him. "I ask one thing of you," he said sternly, "to obey me and not shove yourself forward anywhere." He did not say another word to Petya but rode in silence all the way. When they had come to the edge of the forest it was noticeably growing light over the field. Denisov talked in whispers with the esaul and the Cossacks rode past Petya and Denisov. When they had all ridden by, Denisov touched his horse and rode down the hill. Slipping onto their haunches and sliding, the horses descended with their riders into the ravine. Petya rode beside Denisov, the pulsation of his body constantly increasing. It was getting lighter and lighter, but the mist still hid distant objects. Having reached the valley, Denisov looked back and nodded to a Cossack beside him. "The signal!" said he. The Cossack raised his arm and a shot rang out. In an instant the tramp of horses galloping forward was heard, shouts came from various sides, and then more shots. At the first sound of trampling hoofs and shouting, Petya lashed his horse and loosening his rein galloped forward, not heeding Denisov who shouted at him. It seemed to Petya that at the moment the shot was fired it suddenly became as bright as noon. He galloped to the bridge. Cossacks were galloping along the road in front of him. On the bridge he collided with a Cossack who had fallen behind, but he galloped on. In front of him soldiers, probably Frenchmen, were running from right to left across the road. One of them fell in the mud under his horse's feet. Cossacks were crowding about a hut, busy with something. From the midst of that crowd terrible screams arose. Petya galloped up, and the first thing he saw was the pale face and trembling jaw of a Frenchman, clutching the handle of a lance that had been aimed at him. "Hurrah!... Lads!... ours!" shouted Petya, and giving rein to his excited horse he galloped forward along the village street. He could hear shooting ahead of him. Cossacks, hussars, and ragged Russian prisoners, who had come running from both sides of the road, were shouting something loudly and incoherently. A gallant-looking Frenchman, in a blue overcoat, capless, and with a frowning red face, had been defending himself against the hussars. When Petya galloped up the Frenchman had already fallen. "Too late again!" flashed through Petya's mind and he galloped on to the place from which the rapid firing could be heard. The shots came from the yard of the landowner's house he had visited the night before with Dolokhov. The French were making a stand there behind a wattle fence in a garden thickly overgrown with bushes and were firing at the Cossacks who crowded at the gateway. Through the smoke, as he approached the gate, Petya saw Dolokhov, whose face was of a pale-greenish tint, shouting to his men. "Go round! Wait for the infantry!" he exclaimed as Petya rode up to him. "Wait?... Hurrah-ah-ah!" shouted Petya, and without pausing a moment galloped to the place whence came the sounds of firing and where the smoke was thickest. A volley was heard, and some bullets whistled past, while others plashed against something. The Cossacks and Dolokhov galloped after Petya into the gateway of the courtyard. In the dense wavering smoke some of the French threw down their arms and ran out of the bushes to meet the Cossacks, while others ran down the hill toward the pond. Petya was galloping along the courtyard, but instead of holding the reins he waved both his arms about rapidly and strangely, slipping farther and farther to one side in his saddle. His horse, having galloped up to a campfire that was smoldering in the morning light, stopped suddenly, and Petya fell heavily on to the wet ground. The Cossacks saw that his arms and legs jerked rapidly though his head was quite motionless. A bullet had pierced his skull. After speaking to the senior French officer, who came out of the house with a white handkerchief tied to his sword and announced that they surrendered, Dolokhov dismounted and went up to Petya, who lay motionless with outstretched arms. "Done for!" he said with a frown, and went to the gate to meet Denisov who was riding toward him. "Killed?" cried Denisov, recognizing from a distance the unmistakably lifeless attitude--very familiar to him--in which Petya's body was lying. "Done for!" repeated Dolokhov as if the utterance of these words afforded him pleasure, and he went quickly up to the prisoners, who were surrounded by Cossacks who had hurried up. "We won't take them!" he called out to Denisov. Denisov did not reply; he rode up to Petya, dismounted, and with trembling hands turned toward himself the bloodstained, mud-bespattered face which had already gone white. "I am used to something sweet. Raisins, fine ones... take them all!" he recalled Petya's words. And the Cossacks looked round in surprise at the sound, like the yelp of a dog, with which Denisov turned away, walked to the wattle fence, and seized hold of it. Among the Russian prisoners rescued by Denisov and Dolokhov was Pierre Bezukhov. CHAPTER XII During the whole of their march from Moscow no fresh orders had been issued by the French authorities concerning the party of prisoners among whom was Pierre. On the twenty-second of October that party was no longer with the same troops and baggage trains with which it had left Moscow. Half the wagons laden with hardtack that had traveled the first stages with them had been captured by Cossacks, the other half had gone on ahead. Not one of those dismounted cavalrymen who had marched in front of the prisoners was left; they had all disappeared. The artillery the prisoners had seen in front of them during the first days was now replaced by Marshal Junot's enormous baggage train, convoyed by Westphalians. Behind the prisoners came a cavalry baggage train. From Vyazma onwards the French army, which had till then moved in three columns, went on as a single group. The symptoms of disorder that Pierre had noticed at their first halting place after leaving Moscow had now reached the utmost limit. The road along which they moved was bordered on both sides by dead horses; ragged men who had fallen behind from various regiments continually changed about, now joining the moving column, now again lagging behind it. Several times during the march false alarms had been given and the soldiers of the escort had raised their muskets, fired, and run headlong, crushing one another, but had afterwards reassembled and abused each other for their causeless panic. These three groups traveling together--the cavalry stores, the convoy of prisoners, and Junot's baggage train--still constituted a separate and united whole, though each of the groups was rapidly melting away. Of the artillery baggage train which had consisted of a hundred and twenty wagons, not more than sixty now remained; the rest had been captured or left behind. Some of Junot's wagons also had been captured or abandoned. Three wagons had been raided and robbed by stragglers from Davout's corps. From the talk of the Germans Pierre learned that a larger guard had been allotted to that baggage train than to the prisoners, and that one of their comrades, a German soldier, had been shot by the marshal's own order because a silver spoon belonging to the marshal had been found in his possession. The group of prisoners had melted away most of all. Of the three hundred and thirty men who had set out from Moscow fewer than a hundred now remained. The prisoners were more burdensome to the escort than even the cavalry saddles or Junot's baggage. They understood that the saddles and Junot's spoon might be of some use, but that cold and hungry soldiers should have to stand and guard equally cold and hungry Russians who froze and lagged behind on the road (in which case the order was to shoot them) was not merely incomprehensible but revolting. And the escort, as if afraid, in the grievous condition they themselves were in, of giving way to the pity they felt for the prisoners and so rendering their own plight still worse, treated them with particular moroseness and severity. At Dorogobuzh while the soldiers of the convoy, after locking the prisoners in a stable, had gone off to pillage their own stores, several of the soldier prisoners tunneled under the wall and ran away, but were recaptured by the French and shot. The arrangement adopted when they started, that the officer prisoners should be kept separate from the rest, had long since been abandoned. All who could walk went together, and after the third stage Pierre had rejoined Karataev and the gray-blue bandy-legged dog that had chosen Karataev for its master. On the third day after leaving Moscow Karataev again fell ill with the fever he had suffered from in the hospital in Moscow, and as he grew gradually weaker Pierre kept away from him. Pierre did not know why, but since Karataev had begun to grow weaker it had cost him an effort to go near him. When he did so and heard the subdued moaning with which Karataev generally lay down at the halting places, and when he smelled the odor emanating from him which was now stronger than before, Pierre moved farther away and did not think about him. While imprisoned in the shed Pierre had learned not with his intellect but with his whole being, by life itself, that man is created for happiness, that happiness is within him, in the satisfaction of simple human needs, and that all unhappiness arises not from privation but from superfluity. And now during these last three weeks of the march he had learned still another new, consolatory truth--that nothing in this world is terrible. He had learned that as there is no condition in which man can be happy and entirely free, so there is no condition in which he need be unhappy and lack freedom. He learned that suffering and freedom have their limits and that those limits are very near together; that the person in a bed of roses with one crumpled petal suffered as keenly as he now, sleeping on the bare damp earth with one side growing chilled while the other was warming; and that when he had put on tight dancing shoes he had suffered just as he did now when he walked with bare feet that were covered with sores--his footgear having long since fallen to pieces. He discovered that when he had married his wife--of his own free will as it had seemed to him--he had been no more free than now when they locked him up at night in a stable. Of all that he himself subsequently termed his sufferings, but which at the time he scarcely felt, the worst was the state of his bare, raw, and scab-covered feet. (The horseflesh was appetizing and nourishing, the saltpeter flavor of the gunpowder they used instead of salt was even pleasant; there was no great cold, it was always warm walking in the daytime, and at night there were the campfires; the lice that devoured him warmed his body.) The one thing that was at first hard to bear was his feet. After the second day's march Pierre, having examined his feet by the campfire, thought it would be impossible to walk on them; but when everybody got up he went along, limping, and, when he had warmed up, walked without feeling the pain, though at night his feet were more terrible to look at than before. However, he did not look at them now, but thought of other things. Only now did Pierre realize the full strength of life in man and the saving power he has of transferring his attention from one thing to another, which is like the safety valve of a boiler that allows superfluous steam to blow off when the pressure exceeds a certain limit. He did not see and did not hear how they shot the prisoners who lagged behind, though more than a hundred perished in that way. He did not think of Karataev who grew weaker every day and evidently would soon have to share that fate. Still less did Pierre think about himself. The harder his position became and the more terrible the future, the more independent of that position in which he found himself were the joyful and comforting thoughts, memories, and imaginings that came to him. CHAPTER XIII At midday on the twenty-second of October Pierre was going uphill along the muddy, slippery road, looking at his feet and at the roughness of the way. Occasionally he glanced at the familiar crowd around him and then again at his feet. The former and the latter were alike familiar and his own. The blue-gray bandy legged dog ran merrily along the side of the road, sometimes in proof of its agility and self-satisfaction lifting one hind leg and hopping along on three, and then again going on all four and rushing to bark at the crows that sat on the carrion. The dog was merrier and sleeker than it had been in Moscow. All around lay the flesh of different animals--from men to horses--in various stages of decomposition; and as the wolves were kept off by the passing men the dog could eat all it wanted. It had been raining since morning and had seemed as if at any moment it might cease and the sky clear, but after a short break it began raining harder than before. The saturated road no longer absorbed the water, which ran along the ruts in streams. Pierre walked along, looking from side to side, counting his steps in threes, and reckoning them off on his fingers. Mentally addressing the rain, he repeated: "Now then, now then, go on! Pelt harder!" It seemed to him that he was thinking of nothing, but far down and deep within him his soul was occupied with something important and comforting. This something was a most subtle spiritual deduction from a conversation with Karataev the day before. At their yesterday's halting place, feeling chilly by a dying campfire, Pierre had got up and gone to the next one, which was burning better. There Platon Karataev was sitting covered up--head and all--with his greatcoat as if it were a vestment, telling the soldiers in his effective and pleasant though now feeble voice a story Pierre knew. It was already past midnight, the hour when Karataev was usually free of his fever and particularly lively. When Pierre reached the fire and heard Platon's voice enfeebled by illness, and saw his pathetic face brightly lit up by the blaze, he felt a painful prick at his heart. His feeling of pity for this man frightened him and he wished to go away, but there was no other fire, and Pierre sat down, trying not to look at Platon. "Well, how are you?" he asked. "How am I? If we grumble at sickness, God won't grant us death," replied Platon, and at once resumed the story he had begun. "And so, brother," he continued, with a smile on his pale emaciated face and a particularly happy light in his eyes, "you see, brother..." Pierre had long been familiar with that story. Karataev had told it to him alone some half-dozen times and always with a specially joyful emotion. But well as he knew it, Pierre now listened to that tale as to something new, and the quiet rapture Karataev evidently felt as he told it communicated itself also to Pierre. The story was of an old merchant who lived a good and God-fearing life with his family, and who went once to the Nizhni fair with a companion--a rich merchant. Having put up at an inn they both went to sleep, and next morning his companion was found robbed and with his throat cut. A bloodstained knife was found under the old merchant's pillow. He was tried, knouted, and his nostrils having been torn off, "all in due form" as Karataev put it, he was sent to hard labor in Siberia. "And so, brother" (it was at this point that Pierre came up), "ten years or more passed by. The old man was living as a convict, submitting as he should and doing no wrong. Only he prayed to God for death. Well, one night the convicts were gathered just as we are, with the old man among them. And they began telling what each was suffering for, and how they had sinned against God. One told how he had taken a life, another had taken two, a third had set a house on fire, while another had simply been a vagrant and had done nothing. So they asked the old man: 'What are you being punished for, Daddy?'--'I, my dear brothers,' said he, 'am being punished for my own and other men's sins. But I have not killed anyone or taken anything that was not mine, but have only helped my poorer brothers. I was a merchant, my dear brothers, and had much property. 'And he went on to tell them all about it in due order. 'I don't grieve for myself,' he says, 'God, it seems, has chastened me. Only I am sorry for my old wife and the children,' and the old man began to weep. Now it happened that in the group was the very man who had killed the other merchant. 'Where did it happen, Daddy?' he said. 'When, and in what month?' He asked all about it and his heart began to ache. So he comes up to the old man like this, and falls down at his feet! 'You are perishing because of me, Daddy,' he says. 'It's quite true, lads, that this man,' he says, 'is being tortured innocently and for nothing! I,' he says, 'did that deed, and I put the knife under your head while you were asleep. Forgive me, Daddy,' he says, 'for Christ's sake!'" Karataev paused, smiling joyously as he gazed into the fire, and he drew the logs together. "And the old man said, 'God will forgive you, we are all sinners in His sight. I suffer for my own sins,' and he wept bitter tears. Well, and what do you think, dear friends?" Karataev continued, his face brightening more and more with a rapturous smile as if what he now had to tell contained the chief charm and the whole meaning of his story: "What do you think, dear fellows? That murderer confessed to the authorities. 'I have taken six lives,' he says (he was a great sinner), 'but what I am most sorry for is this old man. Don't let him suffer because of me.' So he confessed and it was all written down and the papers sent off in due form. The place was a long way off, and while they were judging, what with one thing and another, filling in the papers all in due form--the authorities I mean--time passed. The affair reached the Tsar. After a while the Tsar's decree came: to set the merchant free and give him a compensation that had been awarded. The paper arrived and they began to look for the old man. 'Where is the old man who has been suffering innocently and in vain? A paper has come from the Tsar!' so they began looking for him," here Karataev's lower jaw trembled, "but God had already forgiven him--he was dead! That's how it was, dear fellows!" Karataev concluded and sat for a long time silent, gazing before him with a smile. And Pierre's soul was dimly but joyfully filled not by the story itself but by its mysterious significance: by the rapturous joy that lit up Karataev's face as he told it, and the mystic significance of that joy. CHAPTER XIV "A vos places!"* suddenly cried a voice. *"To your places." A pleasant feeling of excitement and an expectation of something joyful and solemn was aroused among the soldiers of the convoy and the prisoners. From all sides came shouts of command, and from the left came smartly dressed cavalrymen on good horses, passing the prisoners at a trot. The expression on all faces showed the tension people feel at the approach of those in authority. The prisoners thronged together and were pushed off the road. The convoy formed up. "The Emperor! The Emperor! The Marshal! The Duke!" and hardly had the sleek cavalry passed, before a carriage drawn by six gray horses rattled by. Pierre caught a glimpse of a man in a three-cornered hat with a tranquil look on his handsome, plump, white face. It was one of the marshals. His eye fell on Pierre's large and striking figure, and in the expression with which he frowned and looked away Pierre thought he detected sympathy and a desire to conceal that sympathy. The general in charge of the stores galloped after the carriage with a red and frightened face, whipping up his skinny horse. Several officers formed a group and some soldiers crowded round them. Their faces all looked excited and worried. "What did he say? What did he say?" Pierre heard them ask. While the marshal was passing, the prisoners had huddled together in a crowd, and Pierre saw Karataev whom he had not yet seen that morning. He sat in his short overcoat leaning against a birch tree. On his face, besides the look of joyful emotion it had worn yesterday while telling the tale of the merchant who suffered innocently, there was now an expression of quiet solemnity. Karataev looked at Pierre with his kindly round eyes now filled with tears, evidently wishing him to come near that he might say something to him. But Pierre was not sufficiently sure of himself. He made as if he did not notice that look and moved hastily away. When the prisoners again went forward Pierre looked round. Karataev was still sitting at the side of the road under the birch tree and two Frenchmen were talking over his head. Pierre did not look round again but went limping up the hill. From behind, where Karataev had been sitting, came the sound of a shot. Pierre heard it plainly, but at that moment he remembered that he had not yet finished reckoning up how many stages still remained to Smolensk--a calculation he had begun before the marshal went by. And he again started reckoning. Two French soldiers ran past Pierre, one of whom carried a lowered and smoking gun. They both looked pale, and in the expression on their faces--one of them glanced timidly at Pierre--there was something resembling what he had seen on the face of the young soldier at the execution. Pierre looked at the soldier and remembered that, two days before, that man had burned his shirt while drying it at the fire and how they had laughed at him. Behind him, where Karataev had been sitting, the dog began to howl. "What a stupid beast! Why is it howling?" thought Pierre. His comrades, the prisoner soldiers walking beside him, avoided looking back at the place where the shot had been fired and the dog was howling, just as Pierre did, but there was a set look on all their faces. CHAPTER XV The stores, the prisoners, and the marshal's baggage train stopped at the village of Shamshevo. The men crowded together round the campfires. Pierre went up to the fire, ate some roast horseflesh, lay down with his back to the fire, and immediately fell asleep. He again slept as he had done at Mozhaysk after the battle of Borodino. Again real events mingled with dreams and again someone, he or another, gave expression to his thoughts, and even to the same thoughts that had been expressed in his dream at Mozhaysk. "Life is everything. Life is God. Everything changes and moves and that movement is God. And while there is life there is joy in consciousness of the divine. To love life is to love God. Harder and more blessed than all else is to love this life in one's sufferings, in innocent sufferings." "Karataev!" came to Pierre's mind. And suddenly he saw vividly before him a long-forgotten, kindly old man who had given him geography lessons in Switzerland. "Wait a bit," said the old man, and showed Pierre a globe. This globe was alive--a vibrating ball without fixed dimensions. Its whole surface consisted of drops closely pressed together, and all these drops moved and changed places, sometimes several of them merging into one, sometimes one dividing into many. Each drop tried to spread out and occupy as much space as possible, but others striving to do the same compressed it, sometimes destroyed it, and sometimes merged with it. "That is life," said the old teacher. "How simple and clear it is," thought Pierre. "How is it I did not know it before?" "God is in the midst, and each drop tries to expand so as to reflect Him to the greatest extent. And it grows, merges, disappears from the surface, sinks to the depths, and again emerges. There now, Karataev has spread out and disappeared. Do you understand, my child?" said the teacher. "Do you understand, damn you?" shouted a voice, and Pierre woke up. He lifted himself and sat up. A Frenchman who had just pushed a Russian soldier away was squatting by the fire, engaged in roasting a piece of meat stuck on a ramrod. His sleeves were rolled up and his sinewy, hairy, red hands with their short fingers deftly turned the ramrod. His brown morose face with frowning brows was clearly visible by the glow of the charcoal. "It's all the same to him," he muttered, turning quickly to a soldier who stood behind him. "Brigand! Get away!" And twisting the ramrod he looked gloomily at Pierre, who turned away and gazed into the darkness. A prisoner, the Russian soldier the Frenchman had pushed away, was sitting near the fire patting something with his hand. Looking more closely Pierre recognized the blue-gray dog, sitting beside the soldier, wagging its tail. "Ah, he's come?" said Pierre. "And Plat-" he began, but did not finish. Suddenly and simultaneously a crowd of memories awoke in his fancy--of the look Platon had given him as he sat under the tree, of the shot heard from that spot, of the dog's howl, of the guilty faces of the two Frenchmen as they ran past him, of the lowered and smoking gun, and of Karataev's absence at this halt--and he was on the point of realizing that Karataev had been killed, but just at that instant, he knew not why, the recollection came to his mind of a summer evening he had spent with a beautiful Polish lady on the veranda of his house in Kiev. And without linking up the events of the day or drawing a conclusion from them, Pierre closed his eyes, seeing a vision of the country in summertime mingled with memories of bathing and of the liquid, vibrating globe, and he sank into water so that it closed over his head. Before sunrise he was awakened by shouts and loud and rapid firing. French soldiers were running past him. "The Cossacks!" one of them shouted, and a moment later a crowd of Russians surrounded Pierre. For a long time he could not understand what was happening to him. All around he heard his comrades sobbing with joy. "Brothers! Dear fellows! Darlings!" old soldiers exclaimed, weeping, as they embraced Cossacks and hussars. The hussars and Cossacks crowded round the prisoners; one offered them clothes, another boots, and a third bread. Pierre sobbed as he sat among them and could not utter a word. He hugged the first soldier who approached him, and kissed him, weeping. Dolokhov stood at the gate of the ruined house, letting a crowd of disarmed Frenchmen pass by. The French, excited by all that had happened, were talking loudly among themselves, but as they passed Dolokhov who gently switched his boots with his whip and watched them with cold glassy eyes that boded no good, they became silent. On the opposite side stood Dolokhov's Cossack, counting the prisoners and marking off each hundred with a chalk line on the gate. "How many?" Dolokhov asked the Cossack. "The second hundred," replied the Cossack. "Filez, filez!"* Dolokhov kept saying, having adopted this expression from the French, and when his eyes met those of the prisoners they flashed with a cruel light. *"Get along, get along!" Denisov, bareheaded and with a gloomy face, walked behind some Cossacks who were carrying the body of Petya Rostov to a hole that had been dug in the garden. CHAPTER XVI After the twenty-eighth of October when the frosts began, the flight of the French assumed a still more tragic character, with men freezing, or roasting themselves to death at the campfires, while carriages with people dressed in furs continued to drive past, carrying away the property that had been stolen by the Emperor, kings, and dukes; but the process of the flight and disintegration of the French army went on essentially as before. From Moscow to Vyazma the French army of seventy-three thousand men not reckoning the Guards (who did nothing during the whole war but pillage) was reduced to thirty-six thousand, though not more than five thousand had fallen in battle. From this beginning the succeeding terms of the progression could be determined mathematically. The French army melted away and perished at the same rate from Moscow to Vyazma, from Vyazma to Smolensk, from Smolensk to the Berezina, and from the Berezina to Vilna--independently of the greater or lesser intensity of the cold, the pursuit, the barring of the way, or any other particular conditions. Beyond Vyazma the French army instead of moving in three columns huddled together into one mass, and so went on to the end. Berthier wrote to his Emperor (we know how far commanding officers allow themselves to diverge from the truth in describing the condition of an army) and this is what he said: I deem it my duty to report to Your Majesty the condition of the various corps I have had occasion to observe during different stages of the last two or three days' march. They are almost disbanded. Scarcely a quarter of the soldiers remain with the standards of their regiments, the others go off by themselves in different directions hoping to find food and escape discipline. In general they regard Smolensk as the place where they hope to recover. During the last few days many of the men have been seen to throw away their cartridges and their arms. In such a state of affairs, whatever your ultimate plans may be, the interest of Your Majesty's service demands that the army should be rallied at Smolensk and should first of all be freed from ineffectives, such as dismounted cavalry, unnecessary baggage, and artillery material that is no longer in proportion to the present forces. The soldiers, who are worn out with hunger and fatigue, need these supplies as well as a few days' rest. Many have died last days on the road or at the bivouacs. This state of things is continually becoming worse and makes one fear that unless a prompt remedy is applied the troops will no longer be under control in case of an engagement. November 9: twenty miles from Smolensk. After staggering into Smolensk which seemed to them a promised land, the French, searching for food, killed one another, sacked their own stores, and when everything had been plundered fled farther. They all went without knowing whither or why they were going. Still less did that genius, Napoleon, know it, for no one issued any orders to him. But still he and those about him retained their old habits: wrote commands, letters, reports, and orders of the day; called one another sire, mon cousin, prince d'Eckmuhl, roi de Naples, and so on. But these orders and reports were only on paper, nothing in them was acted upon for they could not be carried out, and though they entitled one another Majesties, Highnesses, or Cousins, they all felt that they were miserable wretches who had done much evil for which they had now to pay. And though they pretended to be concerned about the army, each was thinking only of himself and of how to get away quickly and save himself. CHAPTER XVII The movements of the Russian and French armies during the campaign from Moscow back to the Niemen were like those in a game of Russian blindman's bluff, in which two players are blindfolded and one of them occasionally rings a little bell to inform the catcher of his whereabouts. First he rings his bell fearlessly, but when he gets into a tight place he runs away as quietly as he can, and often thinking to escape runs straight into his opponent's arms. At first while they were still moving along the Kaluga road, Napoleon's armies made their presence known, but later when they reached the Smolensk road they ran holding the clapper of their bell tight--and often thinking they were escaping ran right into the Russians. Owing to the rapidity of the French flight and the Russian pursuit and the consequent exhaustion of the horses, the chief means of approximately ascertaining the enemy's position--by cavalry scouting--was not available. Besides, as a result of the frequent and rapid change of position by each army, even what information was obtained could not be delivered in time. If news was received one day that the enemy had been in a certain position the day before, by the third day when something could have been done, that army was already two days' march farther on and in quite another position. One army fled and the other pursued. Beyond Smolensk there were several different roads available for the French, and one would have thought that during their stay of four days they might have learned where the enemy was, might have arranged some more advantageous plan and undertaken something new. But after a four days' halt the mob, with no maneuvers or plans, again began running along the beaten track, neither to the right nor to the left but along the old--the worst--road, through Krasnoe and Orsha. Expecting the enemy from behind and not in front, the French separated in their flight and spread out over a distance of twenty-four hours. In front of them all fled the Emperor, then the kings, then the dukes. The Russian army, expecting Napoleon to take the road to the right beyond the Dnieper--which was the only reasonable thing for him to do--themselves turned to the right and came out onto the highroad at Krasnoe. And here as in a game of blindman's buff the French ran into our vanguard. Seeing their enemy unexpectedly the French fell into confusion and stopped short from the sudden fright, but then they resumed their flight, abandoning their comrades who were farther behind. Then for three days separate portions of the French army--first Murat's (the vice-king's), then Davout's, and then Ney's--ran, as it were, the gauntlet of the Russian army. They abandoned one another, abandoned all their heavy baggage, their artillery, and half their men, and fled, getting past the Russians by night by making semicircles to the right. Ney, who came last, had been busying himself blowing up the walls of Smolensk which were in nobody's way, because despite the unfortunate plight of the French or because of it, they wished to punish the floor against which they had hurt themselves. Ney, who had had a corps of ten thousand men, reached Napoleon at Orsha with only one thousand men left, having abandoned all the rest and all his cannon, and having crossed the Dnieper at night by stealth at a wooded spot. From Orsha they fled farther along the road to Vilna, still playing at blindman's buff with the pursuing army. At the Berezina they again became disorganized, many were drowned and many surrendered, but those who got across the river fled farther. Their supreme chief donned a fur coat and, having seated himself in a sleigh, galloped on alone, abandoning his companions. The others who could do so drove away too, leaving those who could not to surrender or die. CHAPTER XVIII This campaign consisted in a flight of the French during which they did all they could to destroy themselves. From the time they turned onto the Kaluga road to the day their leader fled from the army, none of the movements of the crowd had any sense. So one might have thought that regarding this period of the campaign the historians, who attributed the actions of the mass to the will of one man, would have found it impossible to make the story of the retreat fit their theory. But no! Mountains of books have been written by the historians about this campaign, and everywhere are described Napoleon's arrangements, the maneuvers, and his profound plans which guided the army, as well as the military genius shown by his marshals. The retreat from Malo-Yaroslavets when he had a free road into a well-supplied district and the parallel road was open to him along which Kutuzov afterwards pursued him--this unnecessary retreat along a devastated road--is explained to us as being due to profound considerations. Similarly profound considerations are given for his retreat from Smolensk to Orsha. Then his heroism at Krasnoe is described, where he is reported to have been prepared to accept battle and take personal command, and to have walked about with a birch stick and said: "J'ai assez fait l'empereur; il est temps de faire le general,"* but nevertheless immediately ran away again, abandoning to its fate the scattered fragments of the army he left behind. *"I have acted the Emperor long enough; it is time to act the general." Then we are told of the greatness of soul of the marshals, especially of Ney--a greatness of soul consisting in this: that he made his way by night around through the forest and across the Dnieper and escaped to Orsha, abandoning standards, artillery, and nine tenths of his men. And lastly, the final departure of the great Emperor from his heroic army is presented to us by the historians as something great and characteristic of genius. Even that final running away, described in ordinary language as the lowest depth of baseness which every child is taught to be ashamed of--even that act finds justification in the historians' language. When it is impossible to stretch the very elastic threads of historical ratiocination any farther, when actions are clearly contrary to all that humanity calls right or even just, the historians produce a saving conception of "greatness." "Greatness," it seems, excludes the standards of right and wrong. For the "great" man nothing is wrong, there is no atrocity for which a "great" man can be blamed. "C'est grand!"* say the historians, and there no longer exists either good or evil but only "grand" and "not grand." Grand is good, not grand is bad. Grand is the characteristic, in their conception, of some special animals called "heroes." And Napoleon, escaping home in a warm fur coat and leaving to perish those who were not merely his comrades but were (in his opinion) men he had brought there, feels que c'est grand,*[2] and his soul is tranquil. *"It is great." *[2] That it is great. "Du sublime (he saw something sublime in himself) au ridicule il n'y a qu'un pas,"* said he. And the whole world for fifty years has been repeating: "Sublime! Grand! Napoleon le Grand!" Du sublime au ridicule il n'y a qu'un pas. *"From the sublime to the ridiculous is but a step." And it occurs to no one that to admit a greatness not commensurable with the standard of right and wrong is merely to admit one's own nothingness and immeasurable meanness. For us with the standard of good and evil given us by Christ, no human actions are incommensurable. And there is no greatness where simplicity, goodness, and truth are absent. CHAPTER XIX What Russian, reading the account of the last part of the campaign of 1812, has not experienced an uncomfortable feeling of regret, dissatisfaction, and perplexity? Who has not asked himself how it is that the French were not all captured or destroyed when our three armies surrounded them in superior numbers, when the disordered French, hungry and freezing, surrendered in crowds, and when (as the historians relate) the aim of the Russians was to stop the French, to cut them off, and capture them all? How was it that the Russian army, which when numerically weaker than the French had given battle at Borodino, did not achieve its purpose when it had surrounded the French on three sides and when its aim was to capture them? Can the French be so enormously superior to us that when we had surrounded them with superior forces we could not beat them? How could that happen? History (or what is called by that name) replying to these questions says that this occurred because Kutuzov and Tormasov and Chichagov, and this man and that man, did not execute such and such maneuvers... But why did they not execute those maneuvers? And why if they were guilty of not carrying out a prearranged plan were they not tried and punished? But even if we admitted that Kutuzov, Chichagov, and others were the cause of the Russian failures, it is still incomprehensible why, the position of the Russian army being what it was at Krasnoe and at the Berezina (in both cases we had superior forces), the French army with its marshals, kings, and Emperor was not captured, if that was what the Russians aimed at. The explanation of this strange fact given by Russian military historians (to the effect that Kutuzov hindered an attack) is unfounded, for we know that he could not restrain the troops from attacking at Vyazma and Tarutino. Why was the Russian army--which with inferior forces had withstood the enemy in full strength at Borodino--defeated at Krasnoe and the Berezina by the disorganized crowds of the French when it was numerically superior? If the aim of the Russians consisted in cutting off and capturing Napoleon and his marshals--and that aim was not merely frustrated but all attempts to attain it were most shamefully baffled--then this last period of the campaign is quite rightly considered by the French to be a series of victories, and quite wrongly considered victorious by Russian historians. The Russian military historians in so far as they submit to claims of logic must admit that conclusion, and in spite of their lyrical rhapsodies about valor, devotion, and so forth, must reluctantly admit that the French retreat from Moscow was a series of victories for Napoleon and defeats for Kutuzov. But putting national vanity entirely aside one feels that such a conclusion involves a contradiction, since the series of French victories brought the French complete destruction, while the series of Russian defeats led to the total destruction of their enemy and the liberation of their country. The source of this contradiction lies in the fact that the historians studying the events from the letters of the sovereigns and the generals, from memoirs, reports, projects, and so forth, have attributed to this last period of the war of 1812 an aim that never existed, namely that of cutting off and capturing Napoleon with his marshals and his army. There never was or could have been such an aim, for it would have been senseless and its attainment quite impossible. It would have been senseless, first because Napoleon's disorganized army was flying from Russia with all possible speed, that is to say, was doing just what every Russian desired. So what was the use of performing various operations on the French who were running away as fast as they possibly could? Secondly, it would have been senseless to block the passage of men whose whole energy was directed to flight. Thirdly, it would have been senseless to sacrifice one's own troops in order to destroy the French army, which without external interference was destroying itself at such a rate that, though its path was not blocked, it could not carry across the frontier more than it actually did in December, namely a hundredth part of the original army. Fourthly, it would have been senseless to wish to take captive the Emperor, kings, and dukes--whose capture would have been in the highest degree embarrassing for the Russians, as the most adroit diplomatists of the time (Joseph de Maistre and others) recognized. Still more senseless would have been the wish to capture army corps of the French, when our own army had melted away to half before reaching Krasnoe and a whole division would have been needed to convoy the corps of prisoners, and when our men were not always getting full rations and the prisoners already taken were perishing of hunger. All the profound plans about cutting off and capturing Napoleon and his army were like the plan of a market gardener who, when driving out of his garden a cow that had trampled down the beds he had planted, should run to the gate and hit the cow on the head. The only thing to be said in excuse of that gardener would be that he was very angry. But not even that could be said for those who drew up this project, for it was not they who had suffered from the trampled beds. But besides the fact that cutting off Napoleon with his army would have been senseless, it was impossible. It was impossible first because--as experience shows that a three-mile movement of columns on a battlefield never coincides with the plans--the probability of Chichagov, Kutuzov, and Wittgenstein effecting a junction on time at an appointed place was so remote as to be tantamount to impossibility, as in fact thought Kutuzov, who when he received the plan remarked that diversions planned over great distances do not yield the desired results. Secondly it was impossible, because to paralyze the momentum with which Napoleon's army was retiring, incomparably greater forces than the Russians possessed would have been required. Thirdly it was impossible, because the military term "to cut off" has no meaning. One can cut off a slice of bread, but not an army. To cut off an army--to bar its road--is quite impossible, for there is always plenty of room to avoid capture and there is the night when nothing can be seen, as the military scientists might convince themselves by the example of Krasnoe and of the Berezina. It is only possible to capture prisoners if they agree to be captured, just as it is only possible to catch a swallow if it settles on one's hand. Men can only be taken prisoners if they surrender according to the rules of strategy and tactics, as the Germans did. But the French troops quite rightly did not consider that this suited them, since death by hunger and cold awaited them in flight or captivity alike. Fourthly and chiefly it was impossible, because never since the world began has a war been fought under such conditions as those that obtained in 1812, and the Russian army in its pursuit of the French strained its strength to the utmost and could not have done more without destroying itself. During the movement of the Russian army from Tarutino to Krasnoe it lost fifty thousand sick or stragglers, that is a number equal to the population of a large provincial town. Half the men fell out of the army without a battle. And it is of this period of the campaign--when the army lacked boots and sheepskin coats, was short of provisions and without vodka, and was camping out at night for months in the snow with fifteen degrees of frost, when there were only seven or eight hours of daylight and the rest was night in which the influence of discipline cannot be maintained, when men were taken into that region of death where discipline fails, not for a few hours only as in a battle, but for months, where they were every moment fighting death from hunger and cold, when half the army perished in a single month--it is of this period of the campaign that the historians tell us how Miloradovich should have made a flank march to such and such a place, Tormasov to another place, and Chichagov should have crossed (more than knee-deep in snow) to somewhere else, and how so-and-so "routed" and "cut off" the French and so on and so on. The Russians, half of whom died, did all that could and should have been done to attain an end worthy of the nation, and they are not to blame because other Russians, sitting in warm rooms, proposed that they should do what was impossible. All that strange contradiction now difficult to understand between the facts and the historical accounts only arises because the historians dealing with the matter have written the history of the beautiful words and sentiments of various generals, and not the history of the events. To them the words of Miloradovich seem very interesting, and so do their surmises and the rewards this or that general received; but the question of those fifty thousand men who were left in hospitals and in graves does not even interest them, for it does not come within the range of their investigation. Yet one need only discard the study of the reports and general plans and consider the movement of those hundreds of thousands of men who took a direct part in the events, and all the questions that seemed insoluble easily and simply receive an immediate and certain solution. The aim of cutting off Napoleon and his army never existed except in the imaginations of a dozen people. It could not exist because it was senseless and unattainable. The people had a single aim: to free their land from invasion. That aim was attained in the first place of itself, as the French ran away, and so it was only necessary not to stop their flight. Secondly it was attained by the guerrilla warfare which was destroying the French, and thirdly by the fact that a large Russian army was following the French, ready to use its strength in case their movement stopped. The Russian army had to act like a whip to a running animal. And the experienced driver knew it was better to hold the whip raised as a menace than to strike the running animal on the head. BOOK FIFTEEN: 1812 --13 CHAPTER I When seeing a dying animal a man feels a sense of horror: substance similar to his own is perishing before his eyes. But when it is a beloved and intimate human being that is dying, besides this horror at the extinction of life there is a severance, a spiritual wound, which like a physical wound is sometimes fatal and sometimes heals, but always aches and shrinks at any external irritating touch. After Prince Andrew's death Natasha and Princess Mary alike felt this. Drooping in spirit and closing their eyes before the menacing cloud of death that overhung them, they dared not look life in the face. They carefully guarded their open wounds from any rough and painful contact. Everything: a carriage passing rapidly in the street, a summons to dinner, the maid's inquiry what dress to prepare, or worse still any word of insincere or feeble sympathy, seemed an insult, painfully irritated the wound, interrupting that necessary quiet in which they both tried to listen to the stern and dreadful choir that still resounded in their imagination, and hindered their gazing into those mysterious limitless vistas that for an instant had opened out before them. Only when alone together were they free from such outrage and pain. They spoke little even to one another, and when they did it was of very unimportant matters. Both avoided any allusion to the future. To admit the possibility of a future seemed to them to insult his memory. Still more carefully did they avoid anything relating to him who was dead. It seemed to them that what they had lived through and experienced could not be expressed in words, and that any reference to the details of his life infringed the majesty and sacredness of the mystery that had been accomplished before their eyes. Continued abstention from speech, and constant avoidance of everything that might lead up to the subject--this halting on all sides at the boundary of what they might not mention--brought before their minds with still greater purity and clearness what they were both feeling. But pure and complete sorrow is as impossible as pure and complete joy. Princess Mary, in her position as absolute and independent arbiter of her own fate and guardian and instructor of her nephew, was the first to be called back to life from that realm of sorrow in which she had dwelt for the first fortnight. She received letters from her relations to which she had to reply; the room in which little Nicholas had been put was damp and he began to cough; Alpatych came to Yaroslavl with reports on the state of their affairs and with advice and suggestions that they should return to Moscow to the house on the Vozdvizhenka Street, which had remained uninjured and needed only slight repairs. Life did not stand still and it was necessary to live. Hard as it was for Princess Mary to emerge from the realm of secluded contemplation in which she had lived till then, and sorry and almost ashamed as she felt to leave Natasha alone, yet the cares of life demanded her attention and she involuntarily yielded to them. She went through the accounts with Alpatych, conferred with Dessalles about her nephew, and gave orders and made preparations for the journey to Moscow. Natasha remained alone and, from the time Princess Mary began making preparations for departure, held aloof from her too. Princess Mary asked the countess to let Natasha go with her to Moscow, and both parents gladly accepted this offer, for they saw their daughter losing strength every day and thought that a change of scene and the advice of Moscow doctors would be good for her. "I am not going anywhere," Natasha replied when this was proposed to her. "Do please just leave me alone!" And she ran out of the room, with difficulty refraining from tears of vexation and irritation rather than of sorrow. After she felt herself deserted by Princes Mary and alone in her grief, Natasha spent most of the time in her room by herself, sitting huddled up feet and all in the corner of the sofa, tearing and twisting something with her slender nervous fingers and gazing intently and fixedly at whatever her eyes chanced to fall on. This solitude exhausted and tormented her but she was in absolute need of it. As soon as anyone entered she got up quickly, changed her position and expression, and picked up a book or some sewing, evidently waiting impatiently for the intruder to go. She felt all the time as if she might at any moment penetrate that on which--with a terrible questioning too great for her strength- her spiritual gaze was fixed. One day toward the end of December Natasha, pale and thin, dressed in a black woolen gown, her plaited hair negligently twisted into a knot, was crouched feet and all in the corner of her sofa, nervously crumpling and smoothing out the end of her sash while she looked at a corner of the door. She was gazing in the direction in which he had gone--to the other side of life. And that other side of life, of which she had never before thought and which had formerly seemed to her so far away and improbable, was now nearer and more akin and more comprehensible than this side of life, where everything was either emptiness and desolation or suffering and indignity. She was gazing where she knew him to be; but she could not imagine him otherwise than as he had been here. She now saw him again as he had been at Mytishchi, at Troitsa, and at Yaroslavl. She saw his face, heard his voice, repeated his words and her own, and sometimes devised other words they might have spoken. There he is lying back in an armchair in his velvet cloak, leaning his head on his thin pale hand. His chest is dreadfully hollow and his shoulders raised. His lips are firmly closed, his eyes glitter, and a wrinkle comes and goes on his pale forehead. One of his legs twitches just perceptibly, but rapidly. Natasha knows that he is struggling with terrible pain. "What is that pain like? Why does he have that pain? What does he feel? How does it hurt him?" thought Natasha. He noticed her watching him, raised his eyes, and began to speak seriously: "One thing would be terrible," said he: "to bind oneself forever to a suffering man. It would be continual torture." And he looked searchingly at her. Natasha as usual answered before she had time to think what she would say. She said: "This can't go on--it won't. You will get well--quite well." She now saw him from the commencement of that scene and relived what she had then felt. She recalled his long sad and severe look at those words and understood the meaning of the rebuke and despair in that protracted gaze. "I agreed," Natasha now said to herself, "that it would be dreadful if he always continued to suffer. I said it then only because it would have been dreadful for him, but he understood it differently. He thought it would be dreadful for me. He then still wished to live and feared death. And I said it so awkwardly and stupidly! I did not say what I meant. I thought quite differently. Had I said what I thought, I should have said: even if he had to go on dying, to die continually before my eyes, I should have been happy compared with what I am now. Now there is nothing... nobody. Did he know that? No, he did not and never will know it. And now it will never, never be possible to put it right." And now he again seemed to be saying the same words to her, only in her imagination Natasha this time gave him a different answer. She stopped him and said: "Terrible for you, but not for me! You know that for me there is nothing in life but you, and to suffer with you is the greatest happiness for me," and he took her hand and pressed it as he had pressed it that terrible evening four days before his death. And in her imagination she said other tender and loving words which she might have said then but only spoke now: "I love thee!... thee! I love, love..." she said, convulsively pressing her hands and setting her teeth with a desperate effort... She was overcome by sweet sorrow and tears were already rising in her eyes; then she suddenly asked herself to whom she was saying this. Again everything was shrouded in hard, dry perplexity, and again with a strained frown she peered toward the world where he was. And now, now it seemed to her she was penetrating the mystery.... But at the instant when it seemed that the incomprehensible was revealing itself to her a loud rattle of the door handle struck painfully on her ears. Dunyasha, her maid, entered the room quickly and abruptly with a frightened look on her face and showing no concern for her mistress. "Come to your Papa at once, please!" said she with a strange, excited look. "A misfortune... about Peter Ilynich... a letter," she finished with a sob. CHAPTER II Besides a feeling of aloofness from everybody Natasha was feeling a special estrangement from the members of her own family. All of them--her father, mother, and Sonya--were so near to her, so familiar, so commonplace, that all their words and feelings seemed an insult to the world in which she had been living of late, and she felt not merely indifferent to them but regarded them with hostility. She heard Dunyasha's words about Peter Ilynich and a misfortune, but did not grasp them. "What misfortune? What misfortune can happen to them? They just live their own old, quiet, and commonplace life," thought Natasha. As she entered the ballroom her father was hurriedly coming out of her mother's room. His face was puckered up and wet with tears. He had evidently run out of that room to give vent to the sobs that were choking him. When he saw Natasha he waved his arms despairingly and burst into convulsively painful sobs that distorted his soft round face. "Pe... Petya... Go, go, she... is calling..." and weeping like a child and quickly shuffling on his feeble legs to a chair, he almost fell into it, covering his face with his hands. Suddenly an electric shock seemed to run through Natasha's whole being. Terrible anguish struck her heart, she felt a dreadful ache as if something was being torn inside her and she were dying. But the pain was immediately followed by a feeling of release from the oppressive constraint that had prevented her taking part in life. The sight of her father, the terribly wild cries of her mother that she heard through the door, made her immediately forget herself and her own grief. She ran to her father, but he feebly waved his arm, pointing to her mother's door. Princess Mary, pale and with quivering chin, came out from that room and taking Natasha by the arm said something to her. Natasha neither saw nor heard her. She went in with rapid steps, pausing at the door for an instant as if struggling with herself, and then ran to her mother. The countess was lying in an armchair in a strange and awkward position, stretching out and beating her head against the wall. Sonya and the maids were holding her arms. "Natasha! Natasha!..." cried the countess. "It's not true... it's not true... He's lying... Natasha!" she shrieked, pushing those around her away. "Go away, all of you; it's not true! Killed!... ha, ha, ha!... It's not true!" Natasha put one knee on the armchair, stooped over her mother, embraced her, and with unexpected strength raised her, turned her face toward herself, and clung to her. "Mummy!... darling!... I am here, my dearest Mummy," she kept on whispering, not pausing an instant. She did not let go of her mother but struggled tenderly with her, demanded a pillow and hot water, and unfastened and tore open her mother's dress. "My dearest darling... Mummy, my precious!..." she whispered incessantly, kissing her head, her hands, her face, and feeling her own irrepressible and streaming tears tickling her nose and cheeks. The countess pressed her daughter's hand, closed her eyes, and became quiet for a moment. Suddenly she sat up with unaccustomed swiftness, glanced vacantly around her, and seeing Natasha began to press her daughter's head with all her strength. Then she turned toward her daughter's face which was wincing with pain and gazed long at it. "Natasha, you love me?" she said in a soft trustful whisper. "Natasha, you would not deceive me? You'll tell me the whole truth?" Natasha looked at her with eyes full of tears and in her look there was nothing but love and an entreaty for forgiveness. "My darling Mummy!" she repeated, straining all the power of her love to find some way of taking on herself the excess of grief that crushed her mother. And again in a futile struggle with reality her mother, refusing to believe that she could live when her beloved boy was killed in the bloom of life, escaped from reality into a world of delirium. Natasha did not remember how that day passed nor that night, nor the next day and night. She did not sleep and did not leave her mother. Her persevering and patient love seemed completely to surround the countess every moment, not explaining or consoling, but recalling her to life. During the third night the countess kept very quiet for a few minutes, and Natasha rested her head on the arm of her chair and closed her eyes, but opened them again on hearing the bedstead creak. The countess was sitting up in bed and speaking softly. "How glad I am you have come. You are tired. Won't you have some tea?" Natasha went up to her. "You have improved in looks and grown more manly," continued the countess, taking her daughter's hand. "Mamma! What are you saying..." "Natasha, he is no more, no more!" And embracing her daughter, the countess began to weep for the first time. CHAPTER III Princess Mary postponed her departure. Sonya and the count tried to replace Natasha but could not. They saw that she alone was able to restrain her mother from unreasoning despair. For three weeks Natasha remained constantly at her mother's side, sleeping on a lounge chair in her room, making her eat and drink, and talking to her incessantly because the mere sound of her tender, caressing tones soothed her mother. The mother's wounded spirit could not heal. Petya's death had torn from her half her life. When the news of Petya's death had come she had been a fresh and vigorous woman of fifty, but a month later she left her room a listless old woman taking no interest in life. But the same blow that almost killed the countess, this second blow, restored Natasha to life. A spiritual wound produced by a rending of the spiritual body is like a physical wound and, strange as it may seem, just as a deep wound may heal and its edges join, physical and spiritual wounds alike can yet heal completely only as the result of a vital force from within. Natasha's wound healed in that way. She thought her life was ended, but her love for her mother unexpectedly showed her that the essence of life--love--was still active within her. Love awoke and so did life. Prince Andrew's last days had bound Princess Mary and Natasha together; this new sorrow brought them still closer to one another. Princess Mary put off her departure, and for three weeks looked after Natasha as if she had been a sick child. The last weeks passed in her mother's bedroom had strained Natasha's physical strength. One afternoon noticing Natasha shivering with fever, Princess Mary took her to her own room and made her lie down on the bed. Natasha lay down, but when Princess Mary had drawn the blinds and was going away she called her back. "I don't want to sleep, Mary, sit by me a little." "You are tired--try to sleep." "No, no. Why did you bring me away? She will be asking for me." "She is much better. She spoke so well today," said Princess Mary. Natasha lay on the bed and in the semidarkness of the room scanned Princess Mary's face. "Is she like him?" thought Natasha. "Yes, like and yet not like. But she is quite original, strange, new, and unknown. And she loves me. What is in her heart? All that is good. But how? What is her mind like? What does she think about me? Yes, she is splendid!" "Mary," she said timidly, drawing Princess Mary's hand to herself, "Mary, you mustn't think me wicked. No? Mary darling, how I love you! Let us be quite, quite friends." And Natasha, embracing her, began kissing her face and hands, making Princess Mary feel shy but happy by this demonstration of her feelings. From that day a tender and passionate friendship such as exists only between women was established between Princess Mary and Natasha. They were continually kissing and saying tender things to one another and spent most of their time together. When one went out the other became restless and hastened to rejoin her. Together they felt more in harmony with one another than either of them felt with herself when alone. A feeling stronger than friendship sprang up between them; an exclusive feeling of life being possible only in each other's presence. Sometimes they were silent for hours; sometimes after they were already in bed they would begin talking and go on till morning. They spoke most of what was long past. Princess Mary spoke of her childhood, of her mother, her father, and her daydreams; and Natasha, who with a passive lack of understanding had formerly turned away from that life of devotion, submission, and the poetry of Christian self-sacrifice, now feeling herself bound to Princess Mary by affection, learned to love her past too and to understand a side of life previously incomprehensible to her. She did not think of applying submission and self-abnegation to her own life, for she was accustomed to seek other joys, but she understood and loved in another those previously incomprehensible virtues. For Princess Mary, listening to Natasha's tales of childhood and early youth, there also opened out a new and hitherto uncomprehended side of life: belief in life and its enjoyment. Just as before, they never mentioned him so as not to lower (as they thought) their exalted feelings by words; but this silence about him had the effect of making them gradually begin to forget him without being conscious of it. Natasha had grown thin and pale and physically so weak that they all talked about her health, and this pleased her. But sometimes she was suddenly overcome by fear not only of death but of sickness, weakness, and loss of good looks, and involuntarily she examined her bare arm carefully, surprised at its thinness, and in the morning noticed her drawn and, as it seemed to her, piteous face in her glass. It seemed to her that things must be so, and yet it was dreadfully sad. One day she went quickly upstairs and found herself out of breath. Unconsciously she immediately invented a reason for going down, and then, testing her strength, ran upstairs again, observing the result. Another time when she called Dunyasha her voice trembled, so she called again--though she could hear Dunyasha coming--called her in the deep chest tones in which she had been wont to sing, sing, and listened attentively to herself. She did not know and would not have believed it, but beneath the layer of slime that covered her soul and seemed to her impenetrable, delicate young shoots of grass were already sprouting, which taking root would so cover with their living verdure the grief that weighed her down that it would soon no longer be seen or noticed. The wound had begun to heal from within. At the end of January Princess Mary left for Moscow, and the count insisted on Natasha's going with her to consult the doctors. CHAPTER IV After the encounter at Vyazma, where Kutuzov had been unable to hold back his troops in their anxiety to overwhelm and cut off the enemy and so on, the farther movement of the fleeing French, and of the Russians who pursued them, continued as far as Krasnoe without a battle. The flight was so rapid that the Russian army pursuing the French could not keep up with them; cavalry and artillery horses broke down, and the information received of the movements of the French was never reliable. The men in the Russian army were so worn out by this continuous marching at the rate of twenty-seven miles a day that they could not go any faster. To realize the degree of exhaustion of the Russian army it is only necessary to grasp clearly the meaning of the fact that, while not losing more than five thousand killed and wounded after Tarutino and less than a hundred prisoners, the Russian army which left that place a hundred thousand strong reached Krasnoe with only fifty thousand. The rapidity of the Russian pursuit was just as destructive to our army as the flight of the French was to theirs. The only difference was that the Russian army moved voluntarily, with no such threat of destruction as hung over the French, and that the sick Frenchmen were left behind in enemy hands while the sick Russians left behind were among their own people. The chief cause of the wastage of Napoleon's army was the rapidity of its movement, and a convincing proof of this is the corresponding decrease of the Russian army. Kutuzov as far as was in his power, instead of trying to check the movement of the French as was desired in Petersburg and by the Russian army generals, directed his whole activity here, as he had done at Tarutino and Vyazma, to hastening it on while easing the movement of our army. But besides this, since the exhaustion and enormous diminution of the army caused by the rapidity of the advance had become evident, another reason for slackening the pace and delaying presented itself to Kutuzov. The aim of the Russian army was to pursue the French. The road the French would take was unknown, and so the closer our troops trod on their heels the greater distance they had to cover. Only by following at some distance could one cut across the zigzag path of the French. All the artful maneuvers suggested by our generals meant fresh movements of the army and a lengthening of its marches, whereas the only reasonable aim was to shorten those marches. To that end Kutuzov's activity was directed during the whole campaign from Moscow to Vilna--not casually or intermittently but so consistently that he never once deviated from it. Kutuzov felt and knew--not by reasoning or science but with the whole of his Russian being--what every Russian soldier felt: that the French were beaten, that the enemy was flying and must be driven out; but at the same time he like the soldiers realized all the hardship of this march, the rapidity of which was unparalleled for such a time of the year. But to the generals, especially the foreign ones in the Russian army, who wished to distinguish themselves, to astonish somebody, and for some reason to capture a king or a duke--it seemed that now- when any battle must be horrible and senseless--was the very time to fight and conquer somebody. Kutuzov merely shrugged his shoulders when one after another they presented projects of maneuvers to be made with those soldiers--ill-shod, insufficiently clad, and half starved--who within a month and without fighting a battle had dwindled to half their number, and who at the best if the flight continued would have to go a greater distance than they had already traversed, before they reached the frontier. This longing to distinguish themselves, to maneuver, to overthrow, and to cut off showed itself particularly whenever the Russians stumbled on the French army. So it was at Krasnoe, where they expected to find one of the three French columns and stumbled instead on Napoleon himself with sixteen thousand men. Despite all Kutuzov's efforts to avoid that ruinous encounter and to preserve his troops, the massacre of the broken mob of French soldiers by worn-out Russians continued at Krasnoe for three days. Toll wrote a disposition: "The first column will march to so and so," etc. And as usual nothing happened in accord with the disposition. Prince Eugene of Wurttemberg fired from a hill over the French crowds that were running past, and demanded reinforcements which did not arrive. The French, avoiding the Russians, dispersed and hid themselves in the forest by night, making their way round as best they could, and continued their flight. Miloradovich, who said he did not want to know anything about the commissariat affairs of his detachment, and could never be found when he was wanted--that chevalier sans peur et sans reproche* as he styled himself--who was fond of parleys with the French, sent envoys demanding their surrender, wasted time, and did not do what he was ordered to do. *Knight without fear and without reproach. "I give you that column, lads," he said, riding up to the troops and pointing out the French to the cavalry. And the cavalry, with spurs and sabers urging on horses that could scarcely move, trotted with much effort to the column presented to them--that is to say, to a crowd of Frenchmen stark with cold, frost-bitten, and starving--and the column that had been presented to them threw down its arms and surrendered as it had long been anxious to do. At Krasnoe they took twenty-six thousand prisoners, several hundred cannon, and a stick called a "marshal's staff," and disputed as to who had distinguished himself and were pleased with their achievement--though they much regretted not having taken Napoleon, or at least a marshal or a hero of some sort, and reproached one another and especially Kutuzov for having failed to do so. These men, carried away by their passions, were but blind tools of the most melancholy law of necessity, but considered themselves heroes and imagined that they were accomplishing a most noble and honorable deed. They blamed Kutuzov and said that from the very beginning of the campaign he had prevented their vanquishing Napoleon, that he thought nothing but satisfying his passions and would not advance from the Linen Factories because he was comfortable there, that at Krasnoe he checked the advance because on learning that Napoleon was there he had quite lost his head, and that it was probable that he had an understanding with Napoleon and had been bribed by him, and so on, and so on. Not only did his contemporaries, carried away by their passions, talk in this way, but posterity and history have acclaimed Napoleon as grand, while Kutuzov is described by foreigners as a crafty, dissolute, weak old courtier, and by Russians as something indefinite- a sort of puppet useful only because he had a Russian name. CHAPTER V In 1812 and 1813 Kutuzov was openly accused of blundering. The Emperor was dissatisfied with him. And in a history recently written by order of the Highest Authorities it is said that Kutuzov was a cunning court liar, frightened of the name of Napoleon, and that by his blunders at Krasnoe and the Berezina he deprived the Russian army of the glory of complete victory over the French.* *History of the year 1812. The character of Kutuzov and reflections on the unsatisfactory results of the battles at Krasnoe, by Bogdanovich. Such is the fate not of great men (grands hommes) whom the Russian mind does not acknowledge, but of those rare and always solitary individuals who, discerning the will of Providence, submit their personal will to it. The hatred and contempt of the crowd punish such men for discerning the higher laws. For Russian historians, strange and terrible to say, Napoleon- that most insignificant tool of history who never anywhere, even in exile, showed human dignity--Napoleon is the object of adulation and enthusiasm; he is grand. But Kutuzov--the man who from the beginning to the end of his activity in 1812, never once swerving by word or deed from Borodino to Vilna, presented an example exceptional in history of self-sacrifice and a present consciousness of the future importance of what was happening--Kutuzov seems to them something indefinite and pitiful, and when speaking of him and of the year 1812 they always seem a little ashamed. And yet it is difficult to imagine an historical character whose activity was so unswervingly directed to a single aim; and it would be difficult to imagine any aim more worthy or more consonant with the will of the whole people. Still more difficult would it be to find an instance in history of the aim of an historical personage being so completely accomplished as that to which all Kutuzov's efforts were directed in 1812. Kutuzov never talked of "forty centuries looking down from the Pyramids," of the sacrifices he offered for the fatherland, or of what he intended to accomplish or had accomplished; in general he said nothing about himself, adopted no prose, always appeared to be the simplest and most ordinary of men, and said the simplest and most ordinary things. He wrote letters to his daughters and to Madame de Stael, read novels, liked the society of pretty women, jested with generals, officers, and soldiers, and never contradicted those who tried to prove anything to him. When Count Rostopchin at the Yauza bridge galloped up to Kutuzov with personal reproaches for having caused the destruction of Moscow, and said: "How was it you promised not to abandon Moscow without a battle?" Kutuzov replied: "And I shall not abandon Moscow without a battle," though Moscow was then already abandoned. When Arakcheev, coming to him from the Emperor, said that Ermolov ought to be appointed chief of the artillery, Kutuzov replied: "Yes, I was just saying so myself," though a moment before he had said quite the contrary. What did it matter to him--who then alone amid a senseless crowd understood the whole tremendous significance of what was happening--what did it matter to him whether Rostopchin attributed the calamities of Moscow to him or to himself? Still less could it matter to him who was appointed chief of the artillery. Not merely in these cases but continually did that old man--who by experience of life had reached the conviction that thoughts and the words serving as their expression are not what move people--use quite meaningless words that happened to enter his head. But that man, so heedless of his words, did not once during the whole time of his activity utter one word inconsistent with the single aim toward which he moved throughout the whole war. Obviously in spite of himself, in very diverse circumstances, he repeatedly expressed his real thoughts with the bitter conviction that he would not be understood. Beginning with the battle of Borodino, from which time his disagreement with those about him began, he alone said that the battle of Borodino was a victory, and repeated this both verbally and in his dispatches and reports up to the time of his death. He alone said that the loss of Moscow is not the loss of Russia. In reply to Lauriston's proposal of peace, he said: There can be no peace, for such is the people's will. He alone during the retreat of the French said that all our maneuvers are useless, everything is being accomplished of itself better than we could desire; that the enemy must be offered "a golden bridge"; that neither the Tarutino, the Vyazma, nor the Krasnoe battles were necessary; that we must keep some force to reach the frontier with, and that he would not sacrifice a single Russian for ten Frenchmen. And this courtier, as he is described to us, who lies to Arakcheev to please the Emperor, he alone--incurring thereby the Emperor's displeasure--said in Vilna that to carry the war beyond the frontier is useless and harmful. Nor do words alone prove that only he understood the meaning of the events. His actions--without the smallest deviation--were all directed to one and the same threefold end: (1) to brace all his strength for conflict with the French, (2) to defeat them, and (3) to drive them out of Russia, minimizing as far as possible the sufferings of our people and of our army. This procrastinator Kutuzov, whose motto was "Patience and Time," this enemy of decisive action, gave battle at Borodino, investing the preparations for it with unparalleled solemnity. This Kutuzov who before the battle of Austerlitz began said that it would be lost, he alone, in contradiction to everyone else, declared till his death that Borodino was a victory, despite the assurance of generals that the battle was lost and despite the fact that for an army to have to retire after winning a battle was unprecedented. He alone during the whole retreat insisted that battles, which were useless then, should not be fought, and that a new war should not be begun nor the frontiers of Russia crossed. It is easy now to understand the significance of these events--if only we abstain from attributing to the activity of the mass aims that existed only in the heads of a dozen individuals--for the events and results now lie before us. But how did that old man, alone, in opposition to the general opinion, so truly discern the importance of the people's view of the events that in all his activity he was never once untrue to it? The source of that extraordinary power of penetrating the meaning of the events then occuring lay in the national feeling which he possessed in full purity and strength. Only the recognition of the fact that he possessed this feeling caused the people in so strange a manner, contrary to the Tsar's wish, to select him--an old man in disfavor--to be their representative in the national war. And only that feeling placed him on that highest human pedestal from which he, the commander in chief, devoted all his powers not to slaying and destroying men but to saving and showing pity on them. That simple, modest, and therefore truly great, figure could not be cast in the false mold of a European hero--the supposed ruler of men--that history has invented. To a lackey no man can be great, for a lackey has his own conception of greatness. CHAPTER VI The fifth of November was the first day of what is called the battle of Krasnoe. Toward evening--after much disputing and many mistakes made by generals who did not go to their proper places, and after adjutants had been sent about with counterorders--when it had become plain that the enemy was everywhere in flight and that there could and would be no battle, Kutuzov left Krasnoe and went to Dobroe whither his headquarters had that day been transferred. The day was clear and frosty. Kutuzov rode to Dobroe on his plump little white horse, followed by an enormous suite of discontented generals who whispered among themselves behind his back. All along the road groups of French prisoners captured that day (there were seven thousand of them) were crowding to warm themselves at campfires. Near Dobroe an immense crowd of tattered prisoners, buzzing with talk and wrapped and bandaged in anything they had been able to get hold of, were standing in the road beside a long row of unharnessed French guns. At the approach of the commander in chief the buzz of talk ceased and all eyes were fixed on Kutuzov who, wearing a white cap with a red band and a padded overcoat that bulged on his round shoulders, moved slowly along the road on his white horse. One of the generals was reporting to him where the guns and prisoners had been captured. Kutuzov seemed preoccupied and did not listen to what the general was saying. He screwed up his eyes with a dissatisfied look as he gazed attentively and fixedly at these prisoners, who presented a specially wretched appearance. Most of them were disfigured by frost-bitten noses and cheeks, and nearly all had red, swollen and festering eyes. One group of the French stood close to the road, and two of them, one of whom had his face covered with sores, were tearing a piece of raw flesh with their hands. There was something horrible and bestial in the fleeting glance they threw at the riders and in the malevolent expression with which, after a glance at Kutuzov, the soldier with the sores immediately turned away and went on with what he was doing. Kutuzov looked long and intently at these two soldiers. He puckered his face, screwed up his eyes, and pensively swayed his head. At another spot he noticed a Russian soldier laughingly patting a Frenchman on the shoulder, saying something to him in a friendly manner, and Kutuzov with the same expression on his face again swayed his head. "What were you saying?" he asked the general, who continuing his report directed the commander in chief's attention to some standards captured from the French and standing in front of the Preobrazhensk regiment. "Ah, the standards!" said Kutuzov, evidently detaching himself with difficulty from the thoughts that preoccupied him. He looked about him absently. Thousands of eyes were looking at him from all sides awaiting a word from him. He stopped in front of the Preobrazhensk regiment, sighed deeply, and closed his eyes. One of his suite beckoned to the soldiers carrying the standards to advance and surround the commander in chief with them. Kutuzov was silent for a few seconds and then, submitting with evident reluctance to the duty imposed by his position, raised his head and began to speak. A throng of officers surrounded him. He looked attentively around at the circle of officers, recognizing several of them. "I thank you all!" he said, addressing the soldiers and then again the officers. In the stillness around him his slowly uttered words were distinctly heard. "I thank you all for your hard and faithful service. The victory is complete and Russia will not forget you! Honor to you forever." He paused and looked around. "Lower its head, lower it!" he said to a soldier who had accidentally lowered the French eagle he was holding before the Preobrazhensk standards. "Lower, lower, that's it. Hurrah lads!" he added, addressing the men with a rapid movement of his chin. "Hur-r-rah!" roared thousands of voices. While the soldiers were shouting Kutuzov leaned forward in his saddle and bowed his head, and his eye lit up with a mild and apparently ironic gleam. "You see, brothers..." said he when the shouts had ceased... and all at once his voice and the expression of his face changed. It was no longer the commander in chief speaking but an ordinary old man who wanted to tell his comrades something very important. There was a stir among the throng of officers and in the ranks of the soldiers, who moved that they might hear better what he was going to say. "You see, brothers, I know it's hard for you, but it can't be helped! Bear up; it won't be for long now! We'll see our visitors off and then we'll rest. The Tsar won't forget your service. It is hard for you, but still you are at home while they--you see what they have come to," said he, pointing to the prisoners. "Worse off than our poorest beggars. While they were strong we didn't spare ourselves, but now we may even pity them. They are human beings too. Isn't it so, lads?" He looked around, and in the direct, respectful, wondering gaze fixed upon him he read sympathy with what he had said. His face grew brighter and brighter with an old man's mild smile, which drew the corners of his lips and eyes into a cluster of wrinkles. He ceased speaking and bowed his head as if in perplexity. "But after all who asked them here? Serves them right, the bloody bastards!" he cried, suddenly lifting his head. And flourishing his whip he rode off at a gallop for the first time during the whole campaign, and left the broken ranks of the soldiers laughing joyfully and shouting "Hurrah!" Kutuzov's words were hardly understood by the troops. No one could have repeated the field marshal's address, begun solemnly and then changing into an old man's simplehearted talk; but the hearty sincerity of that speech, the feeling of majestic triumph combined with pity for the foe and consciousness of the justice of our cause, exactly expressed by that old man's good-natured expletives, was not merely understood but lay in the soul of every soldier and found expression in their joyous and long-sustained shouts. Afterwards when one of the generals addressed Kutuzov asking whether he wished his caleche to be sent for, Kutuzov in answering unexpectedly gave a sob, being evidently greatly moved. CHAPTER VII When the troops reached their night's halting place on the eighth of November, the last day of the Krasnoe battles, it was already growing dusk. All day it had been calm and frosty with occasional lightly falling snow and toward evening it began to clear. Through the falling snow a purple-black and starry sky showed itself and the frost grew keener. An infantry regiment which had left Tarutino three thousand strong but now numbered only nine hundred was one of the first to arrive that night at its halting place--a village on the highroad. The quartermasters who met the regiment announced that all the huts were full of sick and dead Frenchmen, cavalrymen, and members of the staff. There was only one hut available for the regimental commander. The commander rode up to his hut. The regiment passed through the village and stacked its arms in front of the last huts. Like some huge many-limbed animal, the regiment began to prepare its lair and its food. One part of it dispersed and waded knee-deep through the snow into a birch forest to the right of the village, and immediately the sound of axes and swords, the crashing of branches, and merry voices could be heard from there. Another section amid the regimental wagons and horses which were standing in a group was busy getting out caldrons and rye biscuit, and feeding the horses. A third section scattered through the village arranging quarters for the staff officers, carrying out the French corpses that were in the huts, and dragging away boards, dry wood, and thatch from the roofs, for the campfires, or wattle fences to serve for shelter. Some fifteen men with merry shouts were shaking down the high wattle wall of a shed, the roof of which had already been removed. "Now then, all together--shove!" cried the voices, and the huge surface of the wall, sprinkled with snow and creaking with frost, was seen swaying in the gloom of the night. The lower stakes cracked more and more and at last the wall fell, and with it the men who had been pushing it. Loud, coarse laughter and joyous shouts ensued. "Now then, catch hold in twos! Hand up the lever! That's it... Where are you shoving to?" "Now, all together! But wait a moment, boys... With a song!" All stood silent, and a soft, pleasant velvety voice began to sing. At the end of the third verse as the last note died away, twenty voices roared out at once: "Oo-oo-oo-oo! That's it. All together! Heave away, boys!..." but despite their united efforts the wattle hardly moved, and in the silence that followed the heavy breathing of the men was audible. "Here, you of the Sixth Company! Devils that you are! Lend a hand... will you? You may want us one of these days." Some twenty men of the Sixth Company who were on their way into the village joined the haulers, and the wattle wall, which was about thirty-five feet long and seven feet high, moved forward along the village street, swaying, pressing upon and cutting the shoulders of the gasping men. "Get along... Falling? What are you stopping for? There now..." Merry senseless words of abuse flowed freely. "What are you up to?" suddenly came the authoritative voice of a sergeant major who came upon the men who were hauling their burden. "There are gentry here; the general himself is in that hut, and you foul-mouthed devils, you brutes, I'll give it to you!" shouted he, hitting the first man who came in his way a swinging blow on the back. "Can't you make less noise?" The men became silent. The soldier who had been struck groaned and wiped his face, which had been scratched till it bled by his falling against the wattle. "There, how that devil hits out! He's made my face all bloody," said he in a frightened whisper when the sergeant major had passed on. "Don't you like it?" said a laughing voice, and moderating their tones the men moved forward. When they were out of the village they began talking again as loud as before, interlarding their talk with the same aimless expletives. In the hut which the men had passed, the chief officers had gathered and were in animated talk over their tea about the events of the day and the maneuvers suggested for tomorrow. It was proposed to make a flank march to the left, cut off the Vice-King (Murat) and capture him. By the time the soldiers had dragged the wattle fence to its place the campfires were blazing on all sides ready for cooking, the wood crackled, the snow was melting, and black shadows of soldiers flitted to and fro all over the occupied space where the snow had been trodden down. Axes and choppers were plied all around. Everything was done without any orders being given. Stores of wood were brought for the night, shelters were rigged up for the officers, caldrons were being boiled, and muskets and accouterments put in order. The wattle wall the men had brought was set up in a semicircle by the Eighth Company as a shelter from the north, propped up by musket rests, and a campfire was built before it. They beat the tattoo, called the roll, had supper, and settled down round the fires for the night--some repairing their footgear, some smoking pipes, and some stripping themselves naked to steam the lice out of their shirts. CHAPTER VIII One would have thought that under the almost incredibly wretched conditions the Russian soldiers were in at that time--lacking warm boots and sheepskin coats, without a roof over their heads, in the snow with eighteen degrees of frost, and without even full rations (the commissariat did not always keep up with the troops)--they would have presented a very sad and depressing spectacle. On the contrary, the army had never under the best material conditions presented a more cheerful and animated aspect. This was because all who began to grow depressed or who lost strength were sifted out of the army day by day. All the physically or morally weak had long since been left behind and only the flower of the army--physically and mentally--remained. More men collected behind the wattle fence of the Eighth Company than anywhere else. Two sergeants major were sitting with them and their campfire blazed brighter than others. For leave to sit by their wattle they demanded contributions of fuel. "Eh, Makeev! What has become of you, you son of a bitch? Are you lost or have the wolves eaten you? Fetch some more wood!" shouted a red-haired and red-faced man, screwing up his eyes and blinking because of the smoke but not moving back from the fire. "And you, Jackdaw, go and fetch some wood!" said he to another soldier. This red-haired man was neither a sergeant nor a corporal, but being robust he ordered about those weaker than himself. The soldier they called "Jackdaw," a thin little fellow with a sharp nose, rose obediently and was about to go but at that instant there came into the light of the fire the slender, handsome figure of a young soldier carrying a load of wood. "Bring it here--that's fine!" They split up the wood, pressed it down on the fire, blew at it with their mouths, and fanned it with the skirts of their greatcoats, making the flames hiss and crackle. The men drew nearer and lit their pipes. The handsome young soldier who had brought the wood, setting his arms akimbo, began stamping his cold feet rapidly and deftly on the spot where he stood. "Mother! The dew is cold but clear.... It's well that I'm a musketeer..." he sang, pretending to hiccough after each syllable. "Look out, your soles will fly off!" shouted the red-haired man, noticing that the sole of the dancer's boot was hanging loose. "What a fellow you are for dancing!" The dancer stopped, pulled off the loose piece of leather, and threw it on the fire. "Right enough, friend," said he, and, having sat down, took out of his knapsack a scrap of blue French cloth, and wrapped it round his foot. "It's the steam that spoils them," he added, stretching out his feet toward the fire. "They'll soon be issuing us new ones. They say that when we've finished hammering them, we're to receive double kits!" "And that son of a bitch Petrov has lagged behind after all, it seems," said one sergeant major. "I've had an eye on him this long while," said the other. "Well, he's a poor sort of soldier..." "But in the Third Company they say nine men were missing yesterday." "Yes, it's all very well, but when a man's feet are frozen how can he walk?" "Eh? Don't talk nonsense!" said a sergeant major. "Do you want to be doing the same?" said an old soldier, turning reproachfully to the man who had spoken of frozen feet. "Well, you know," said the sharp-nosed man they called Jackdaw in a squeaky and unsteady voice, raising himself at the other side of the fire, "a plump man gets thin, but for a thin one it's death. Take me, now! I've got no strength left," he added, with sudden resolution turning to the sergeant major. "Tell them to send me to hospital; I'm aching all over; anyway I shan't be able to keep up." "That'll do, that'll do!" replied the sergeant major quietly. The soldier said no more and the talk went on. "What a lot of those Frenchies were taken today, and the fact is that not one of them had what you might call real boots on," said a soldier, starting a new theme. "They were no more than make-believes." "The Cossacks have taken their boots. They were clearing the hut for the colonel and carried them out. It was pitiful to see them, boys," put in the dancer. "As they turned them over one seemed still alive and, would you believe it, he jabbered something in their lingo." "But they're a clean folk, lads," the first man went on; "he was white--as white as birchbark--and some of them are such fine fellows, you might think they were nobles." "Well, what do you think? They make soldiers of all classes there." "But they don't understand our talk at all," said the dancer with a puzzled smile. "I asked him whose subject he was, and he jabbered in his own way. A queer lot!" "But it's strange, friends," continued the man who had wondered at their whiteness, "the peasants at Mozhaysk were saying that when they began burying the dead--where the battle was you know--well, those dead had been lying there for nearly a month, and says the peasant, 'they lie as white as paper, clean, and not as much smell as a puff of powder smoke.'" "Was it from the cold?" asked someone. "You're a clever fellow! From the cold indeed! Why, it was hot. If it had been from the cold, ours would not have rotted either. 'But,' he says, 'go up to ours and they are all rotten and maggoty. So,' he says, 'we tie our faces up with kerchiefs and turn our heads away as we drag them off: we can hardly do it. But theirs,' he says, 'are white as paper and not so much smell as a whiff of gunpowder.'" All were silent. "It must be from their food," said the sergeant major. "They used to gobble the same food as the gentry." No one contradicted him. "That peasant near Mozhaysk where the battle was said the men were all called up from ten villages around and they carted for twenty days and still didn't finish carting the dead away. And as for the wolves, he says..." "That was a real battle," said an old soldier. "It's the only one worth remembering; but since that... it's only been tormenting folk." "And do you know, Daddy, the day before yesterday we ran at them and, my word, they didn't let us get near before they just threw down their muskets and went on their knees. 'Pardon!' they say. That's only one case. They say Platov took 'Poleon himself twice. But he didn't know the right charm. He catches him and catches him--no good! He turns into a bird in his hands and flies away. And there's no way of killing him either." "You're a first-class liar, Kiselev, when I come to look at you!" "Liar, indeed! It's the real truth." "If he fell into my hands, when I'd caught him I'd bury him in the ground with an aspen stake to fix him down. What a lot of men he's ruined!" "Well, anyhow we're going to end it. He won't come here again," remarked the old soldier, yawning. The conversation flagged, and the soldiers began settling down to sleep. "Look at the stars. It's wonderful how they shine! You would think the women had spread out their linen," said one of the men, gazing with admiration at the Milky Way. "That's a sign of a good harvest next year." "We shall want some more wood." "You warm your back and your belly gets frozen. That's queer." "O Lord!" "What are you pushing for? Is the fire only for you? Look how he's sprawling!" In the silence that ensued, the snoring of those who had fallen asleep could be heard. Others turned over and warmed themselves, now and again exchanging a few words. From a campfire a hundred paces off came a sound of general, merry laughter. "Hark at them roaring there in the Fifth Company!" said one of the soldiers, "and what a lot of them there are!" One of the men got up and went over to the Fifth Company. "They're having such fun," said he, coming back. "Two Frenchies have turned up. One's quite frozen and the other's an awful swaggerer. He's singing songs...." "Oh, I'll go across and have a look...." And several of the men went over to the Fifth Company. CHAPTER IX The fifth company was bivouacking at the very edge of the forest. A huge campfire was blazing brightly in the midst of the snow, lighting up the branches of trees heavy with hoarfrost. About midnight they heard the sound of steps in the snow of the forest, and the crackling of dry branches. "A bear, lads," said one of the men. They all raised their heads to listen, and out of the forest into the bright firelight stepped two strangely clad human figures clinging to one another. These were two Frenchmen who had been hiding in the forest. They came up to the fire, hoarsely uttering something in a language our soldiers did not understand. One was taller than the other; he wore an officer's hat and seemed quite exhausted. On approaching the fire he had been going to sit down, but fell. The other, a short sturdy soldier with a shawl tied round his head, was stronger. He raised his companion and said something, pointing to his mouth. The soldiers surrounded the Frenchmen, spread a greatcoat on the ground for the sick man, and brought some buckwheat porridge and vodka for both of them. The exhausted French officer was Ramballe and the man with his head wrapped in the shawl was Morel, his orderly. When Morel had drunk some vodka and finished his bowl of porridge he suddenly became unnaturally merry and chattered incessantly to the soldiers, who could not understand him. Ramballe refused food and resting his head on his elbow lay silent beside the campfire, looking at the Russian soldiers with red and vacant eyes. Occasionally he emitted a long-drawn groan and then again became silent. Morel, pointing to his shoulders, tried to impress on the soldiers the fact that Ramballe was an officer and ought to be warmed. A Russian officer who had come up to the fire sent to ask his colonel whether he would not take a French officer into his hut to warm him, and when the messenger returned and said that the colonel wished the officer to be brought to him, Ramballe was told to go. He rose and tried to walk, but staggered and would have fallen had not a soldier standing by held him up. "You won't do it again, eh?" said one of the soldiers, winking and turning mockingly to Ramballe. "Oh, you fool! Why talk rubbish, lout that you are--a real peasant!" came rebukes from all sides addressed to the jesting soldier. They surrounded Ramballe, lifted him on the crossed arms of two soldiers, and carried him to the hut. Ramballe put his arms around their necks while they carried him and began wailing plaintively: "Oh, you fine fellows, my kind, kind friends! These are men! Oh, my brave, kind friends," and he leaned his head against the shoulder of one of the men like a child. Meanwhile Morel was sitting in the best place by the fire, surrounded by the soldiers. Morel, a short sturdy Frenchman with inflamed and streaming eyes, was wearing a woman's cloak and had a shawl tied woman fashion round his head over his cap. He was evidently tipsy, and was singing a French song in a hoarse broken voice, with an arm thrown round the nearest soldier. The soldiers simply held their sides as they watched him. "Now then, now then, teach us how it goes! I'll soon pick it up. How is it?" said the man--a singer and a wag--whom Morel was embracing. "Vive Henri Quatre! Vive ce roi valiant!" sang Morel, winking. "Ce diable a quatre..."* *"Long live Henry the Fourth, that valiant king! That rowdy devil." "Vivarika! Vif-seruvaru! Sedyablyaka!" repeated the soldier, flourishing his arm and really catching the tune. "Bravo! Ha, ha, ha!" rose their rough, joyous laughter from all sides. Morel, wrinkling up his face, laughed too. "Well, go on, go on!" "Qui eut le triple talent, De boire, de battre, Et d'etre un vert galant."* *Who had a triple talent For drinking, for fighting, And for being a gallant old boy... "It goes smoothly, too. Well, now, Zaletaev!" "Ke..." Zaletaev, brought out with effort: "ke-e-e-e," he drawled, laboriously pursing his lips, "le-trip-ta-la-de-bu-de-ba, e de-tra-va-ga-la" he sang. "Fine! Just like the Frenchie! Oh, ho ho! Do you want some more to eat?" "Give him some porridge: it takes a long time to get filled up after starving." They gave him some more porridge and Morel with a laugh set to work on his third bowl. All the young soldiers smiled gaily as they watched him. The older men, who thought it undignified to amuse themselves with such nonsense, continued to lie at the opposite side of the fire, but one would occasionally raise himself on an elbow and glance at Morel with a smile. "They are men too," said one of them as he wrapped himself up in his coat. "Even wormwood grows on its own root." "O Lord, O Lord! How starry it is! Tremendous! That means a hard frost...." They all grew silent. The stars, as if knowing that no one was looking at them, began to disport themselves in the dark sky: now flaring up, now vanishing, now trembling, they were busy whispering something gladsome and mysterious to one another. CHAPTER X The French army melted away at the uniform rate of a mathematical progression; and that crossing of the Berezina about which so much has been written was only one intermediate stage in its destruction, and not at all the decisive episode of the campaign. If so much has been and still is written about the Berezina, on the French side this is only because at the broken bridge across that river the calamities their army had been previously enduring were suddenly concentrated at one moment into a tragic spectacle that remained in every memory, and on the Russian side merely because in Petersburg--far from the seat of war--a plan (again one of Pfuel's) had been devised to catch Napoleon in a strategic trap at the Berezina River. Everyone assured himself that all would happen according to plan, and therefore insisted that it was just the crossing of the Berezina that destroyed the French army. In reality the results of the crossing were much less disastrous to the French--in guns and men lost--than Krasnoe had been, as the figures show. The sole importance of the crossing of the Berezina lies in the fact that it plainly and indubitably proved the fallacy of all the plans for cutting off the enemy's retreat and the soundness of the only possible line of action--the one Kutuzov and the general mass of the army demanded--namely, simply to follow the enemy up. The French crowd fled at a continually increasing speed and all its energy was directed to reaching its goal. It fled like a wounded animal and it was impossible to block its path. This was shown not so much by the arrangements it made for crossing as by what took place at the bridges. When the bridges broke down, unarmed soldiers, people from Moscow and women with children who were with the French transport, all--carried on by vis inertiae--pressed forward into boats and into the ice-covered water and did not, surrender. That impulse was reasonable. The condition of fugitives and of pursuers was equally bad. As long as they remained with their own people each might hope for help from his fellows and the definite place he held among them. But those who surrendered, while remaining in the same pitiful plight, would be on a lower level to claim a share in the necessities of life. The French did not need to be informed of the fact that half the prisoners--with whom the Russians did not know what to do--perished of cold and hunger despite their captors' desire to save them; they felt that it could not be otherwise. The most compassionate Russian commanders, those favorable to the French--and even the Frenchmen in the Russian service--could do nothing for the prisoners. The French perished from the conditions to which the Russian army was itself exposed. It was impossible to take bread and clothes from our hungry and indispensable soldiers to give to the French who, though not harmful, or hated, or guilty, were simply unnecessary. Some Russians even did that, but they were exceptions. Certain destruction lay behind the French but in front there was hope. Their ships had been burned, there was no salvation save in collective flight, and on that the whole strength of the French was concentrated. The farther they fled the more wretched became the plight of the remnant, especially after the Berezina, on which (in consequence of the Petersburg plan) special hopes had been placed by the Russians, and the keener grew the passions of the Russian commanders, blamed one another and Kutuzov most of all. Anticipation that the failure of the Petersburg Berezina plan would be attributed to Kutuzov led to dissatisfaction, contempt, and ridicule, more and more strongly expressed. The ridicule and contempt were of course expressed in a respectful form, making it impossible for him to ask wherein he was to blame. They did not talk seriously to him; when reporting to him or asking for his sanction they appeared to be fulfilling a regrettable formality, but they winked behind his back and tried to mislead him at every turn. Because they could not understand him all these people assumed that it was useless to talk to the old man; that he would never grasp the profundity of their plans, that he would answer with his phrases (which they thought were mere phrases) about a "golden bridge," about the impossibility of crossing the frontier with a crowd of tatterdemalions, and so forth. They had heard all that before. And all he said--that it was necessary to await provisions, or that the men had no boots--was so simple, while what they proposed was so complicated and clever, that it was evident that he was old and stupid and that they, though not in power, were commanders of genius. After the junction with the army of the brilliant admiral and Petersburg hero Wittgenstein, this mood and the gossip of the staff reached their maximum. Kutuzov saw this and merely sighed and shrugged his shoulders. Only once, after the affair of the Berezina, did he get angry and write to Bennigsen (who reported separately to the Emperor) the following letter: "On account of your spells of ill health, will your excellency please be so good as to set off for Kaluga on receipt of this, and there await further commands and appointments from His Imperial Majesty." But after Bennigsen's departure, the Grand Duke Tsarevich Constantine Pavlovich joined the army. He had taken part in the beginning of the campaign but had subsequently been removed from the army by Kutuzov. Now having come to the army, he informed Kutuzov of the Emperor's displeasure at the poor success of our forces and the slowness of their advance. The Emperor intended to join the army personally in a few days' time. The old man, experienced in court as well as in military affairs- this same Kutuzov who in August had been chosen commander in chief against the sovereign's wishes and who had removed the Grand Duke and heir--apparent from the army--who on his own authority and contrary to the Emperor's will had decided on the abandonment of Moscow, now realized at once that his day was over, that his part was played, and that the power he was supposed to hold was no longer his. And he understood this not merely from the attitude of the court. He saw on the one hand that the military business in which he had played his part was ended and felt that his mission was accomplished; and at the same time he began to be conscious of the physical weariness of his aged body and of the necessity of physical rest. On the twenty-ninth of November Kutuzov entered Vilna--his "dear Vilna" as he called it. Twice during his career Kutuzov had been governor of Vilna. In that wealthy town, which had not been injured, he found old friends and associations, besides the comforts of life of which he had so long been deprived. And he suddenly turned from the cares of army and state and, as far as the passions that seethed around him allowed, immersed himself in the quiet life to which he had formerly been accustomed, as if all that was taking place and all that had still to be done in the realm of history did not concern him at all. Chichagov, one of the most zealous "cutters-off" and "breakers-up," who had first wanted to effect a diversion in Greece and then in Warsaw but never wished to go where he was sent: Chichagov, noted for the boldness with which he spoke to the Emperor, and who considered Kutuzov to be under an obligation to him because when he was sent to make peace with Turkey in 1811 independently of Kutuzov, and found that peace had already been concluded, he admitted to the Emperor that the merit of securing that peace was really Kutuzov's; this Chichagov was the first to meet Kutuzov at the castle where the latter was to stay. In undress naval uniform, with a dirk, and holding his cap under his arm, he handed Kutuzov a garrison report and the keys of the town. The contemptuously respectful attitude of the younger men to the old man in his dotage was expressed in the highest degree by the behavior of Chichagov, who knew of the accusations that were being directed against Kutuzov. When speaking to Chichagov, Kutuzov incidentally mentioned that the vehicles packed with china that had been captured from him at Borisov had been recovered and would be restored to him. "You mean to imply that I have nothing to eat out of.... On the contrary, I can supply you with everything even if you want to give dinner parties," warmly replied Chichagov, who tried by every word he spoke to prove his own rectitude and therefore imagined Kutuzov to be animated by the same desire. Kutuzov, shrugging his shoulders, replied with his subtle penetrating smile: "I meant merely to say what I said." Contrary to the Emperor's wish Kutuzov detained the greater part of the army at Vilna. Those about him said that he became extraordinarily slack and physically feeble during his stay in that town. He attended to army affairs reluctantly, left everything to his generals, and while awaiting the Emperor's arrival led a dissipated life. Having left Petersburg on the seventh of December with his suite- Count Tolstoy, Prince Volkonski, Arakcheev, and others--the Emperor reached Vilna on the eleventh, and in his traveling sleigh drove straight to the castle. In spite of the severe frost some hundred generals and staff officers in full parade uniform stood in front of the castle, as well as a guard of honor of the Semenov regiment. A courier who galloped to the castle in advance, in a troyka with three foam-flecked horses, shouted "Coming!" and Konovnitsyn rushed into the vestibule to inform Kutuzov, who was waiting in the hall porter's little lodge. A minute later the old man's large stout figure in full-dress uniform, his chest covered with orders and a scarf drawn round his stomach, waddled out into the porch. He put on his hat with its peaks to the sides and, holding his gloves in his hand and walking with an effort sideways down the steps to the level of the street, took in his hand the report he had prepared for the Emperor. There was running to and fro and whispering; another troyka furiously up, and then all eyes were turned on an approaching sleigh in which the figures of the Emperor and Volkonski could already be descried. From the habit of fifty years all this had a physically agitating effect on the old general. He carefully and hastily felt himself all over, readjusted his hat, and pulling himself together drew himself up and, at the very moment when the Emperor, having alighted from the sleigh, lifted his eyes to him, handed him the report and began speaking in his smooth, ingratiating voice. The Emperor with a rapid glance scanned Kutuzov from head to foot, frowned for an instant, but immediately mastering himself went up to the old man, extended his arms and embraced him. And this embrace too, owing to a long-standing impression related to his innermost feelings, had its usual effect on Kutuzov and he gave a sob. The Emperor greeted the officers and the Semenov guard, and again pressing the old man's hand went with him into the castle. When alone with the field marshal the Emperor expressed his dissatisfaction at the slowness of the pursuit and at the mistakes made at Krasnoe and the Berezina, and informed him of his intentions for a future campaign abroad. Kutuzov made no rejoinder or remark. The same submissive, expressionless look with which he had listened to the Emperor's commands on the field of Austerlitz seven years before settled on his face now. When Kutuzov came out of the study and with lowered head was crossing the ballroom with his heavy waddling gait, he was arrested by someone's voice saying: "Your Serene Highness!" Kutuzov raised his head and looked for a long while into the eyes of Count Tolstoy, who stood before him holding a silver salver on which lay a small object. Kutuzov seemed not to understand what was expected of him. Suddenly he seemed to remember; a scarcely perceptible smile flashed across his puffy face, and bowing low and respectfully he took the object that lay on the salver. It was the Order of St. George of the First Class. CHAPTER XI Next day the field marshal gave a dinner and ball which the Emperor honored by his presence. Kutuzov had received the Order of St. George of the First Class and the Emperor showed him the highest honors, but everyone knew of the imperial dissatisfaction with him. The proprieties were observed and the Emperor was the first to set that example, but everybody understood that the old man was blameworthy and good-for-nothing. When Kutuzov, conforming to a custom of Catherine's day, ordered the standards that had been captured to be lowered at the Emperor's feet on his entering the ballroom, the Emperor made a wry face and muttered something in which some people caught the words, "the old comedian." The Emperor's displeasure with Kutuzov was specially increased at Vilna by the fact that Kutuzov evidently could not or would not understand the importance of the coming campaign. When on the following morning the Emperor said to the officers assembled about him: "You have not only saved Russia, you have saved Europe!" they all understood that the war was not ended. Kutuzov alone would not see this and openly expressed his opinion that no fresh war could improve the position or add to the glory of Russia, but could only spoil and lower the glorious position that Russia had gained. He tried to prove to the Emperor the impossibility of levying fresh troops, spoke of the hardships already endured by the people, of the possibility of failure and so forth. This being the field marshal's frame of mind he was naturally regarded as merely a hindrance and obstacle to the impending war. To avoid unpleasant encounters with the old man, the natural method was to do what had been done with him at Austerlitz and with Barclay at the beginning of the Russian campaign--to transfer the authority to the Emperor himself, thus cutting the ground from under the commander in chief's feet without upsetting the old man by informing him of the change. With this object his staff was gradually reconstructed and its real strength removed and transferred to the Emperor. Toll, Konovnitsyn, and Ermolov received fresh appointments. Everyone spoke loudly of the field marshal's great weakness and failing health. His health had to be bad for his place to be taken away and given to another. And in fact his health was poor. So naturally, simply, and gradually--just as he had come from Turkey to the Treasury in Petersburg to recruit the militia, and then to the army when he was needed there--now when his part was played out, Kutuzov's place was taken by a new and necessary performer. The war 1812, besides its national significance dear to every Russian heart, was now to assume another, a European, significance. The movement of peoples from west to east was to be succeeded by a movement of peoples from east to west, and for this fresh war another leader was necessary, having qualities and views differing from Kutuzov's and animated by different motives. Alexander I was as necessary for the movement of the peoples from east to west and for the refixing of national frontiers as Kutuzov had been for the salvation and glory of Russia. Kutuzov did not understand what Europe, the balance of power, or Napoleon meant. He could not understand it. For the representative of the Russian people, after the enemy had been destroyed and Russia had been liberated and raised to the summit of her glory, there was nothing left to do as a Russian. Nothing remained for the representative of the national war but to die, and Kutuzov died. CHAPTER XII As generally happens, Pierre did not feel the full effects of the physical privation and strain he had suffered as prisoner until after they were over. After his liberation he reached Orel, and on the third day there, when preparing to go to Kiev, he fell ill and was laid up for three months. He had what the doctors termed "bilious fever." But despite the fact that the doctors treated him, bled him, and gave him medicines to drink, he recovered. Scarcely any impression was left on Pierre's mind by all that happened to him from the time of his rescue till his illness. He remembered only the dull gray weather now rainy and now snowy, internal physical distress, and pains in his feet and side. He remembered a general impression of the misfortunes and sufferings of people and of being worried by the curiosity of officers and generals who questioned him, he also remembered his difficulty in procuring a conveyance and horses, and above all he remembered his incapacity to think and feel all that time. On the day of his rescue he had seen the body of Petya Rostov. That same day he had learned that Prince Andrew, after surviving the battle of Borodino for more than a month had recently died in the Rostovs' house at Yaroslavl, and Denisov who told him this news also mentioned Helene's death, supposing that Pierre had heard of it long before. All this at the time seemed merely strange to Pierre: he felt he could not grasp its significance. Just then he was only anxious to get away as quickly as possible from places where people were killing one another, to some peaceful refuge where he could recover himself, rest, and think over all the strange new facts he had learned; but on reaching Orel he immediately fell ill. When he came to himself after his illness he saw in attendance on him two of his servants, Terenty and Vaska, who had come from Moscow; and also his cousin the eldest princess, who had been living on his estate at Elets and hearing of his rescue and illness had come to look after him. It was only gradually during his convalescence that Pierre lost the impressions he had become accustomed to during the last few months and got used to the idea that no one would oblige him to go anywhere tomorrow, that no one would deprive him of his warm bed, and that he would be sure to get his dinner, tea, and supper. But for a long time in his dreams he still saw himself in the conditions of captivity. In the same way little by little he came to understand the news he had been told after his rescue, about the death of Prince Andrew, the death of his wife, and the destruction of the French. A joyous feeling of freedom--that complete inalienable freedom natural to man which he had first experienced at the first halt outside Moscow--filled Pierre's soul during his convalescence. He was surprised to find that this inner freedom, which was independent of external conditions, now had as it were an additional setting of external liberty. He was alone in a strange town, without acquaintances. No one demanded anything of him or sent him anywhere. He had all he wanted: the thought of his wife which had been a continual torment to him was no longer there, since she was no more. "Oh, how good! How splendid!" said he to himself when a cleanly laid table was moved up to him with savory beef tea, or when he lay down for the night on a soft clean bed, or when he remembered that the French had gone and that his wife was no more. "Oh, how good, how splendid!" And by old habit he asked himself the question: "Well, and what then? What am I going to do?" And he immediately gave himself the answer: "Well, I shall live. Ah, how splendid!" The very question that had formerly tormented him, the thing he had continually sought to find--the aim of life--no longer existed for him now. That search for the aim of life had not merely disappeared temporarily--he felt that it no longer existed for him and could not present itself again. And this very absence of an aim gave him the complete, joyous sense of freedom which constituted his happiness at this time. He could not see an aim, for he now had faith--not faith in any kind of rule, or words, or ideas, but faith in an ever-living, ever-manifest God. Formerly he had sought Him in aims he set himself. That search for an aim had been simply a search for God, and suddenly in his captivity he had learned not by words or reasoning but by direct feeling what his nurse had told him long ago: that God is here and everywhere. In his captivity he had learned that in Karataev God was greater, more infinite and unfathomable than in the Architect of the Universe recognized by the Freemasons. He felt like a man who after straining his eyes to see into the far distance finds what he sought at his very feet. All his life he had looked over the heads of the men around him, when he should have merely looked in front of him without straining his eyes. In the past he had never been able to find that great inscrutable infinite something. He had only felt that it must exist somewhere and had looked for it. In everything near and comprehensible he had only what was limited, petty, commonplace, and senseless. He had equipped himself with a mental telescope and looked into remote space, where petty worldliness hiding itself in misty distance had seemed to him great and infinite merely because it was not clearly seen. And such had European life, politics, Freemasonry, philosophy, and philanthropy seemed to him. But even then, at moments of weakness as he had accounted them, his mind had penetrated to those distances and he had there seen the same pettiness, worldliness, and senselessness. Now, however, he had learned to see the great, eternal, and infinite in everything, and therefore--to see it and enjoy its contemplation--he naturally threw away the telescope through which he had till now gazed over men's heads, and gladly regarded the ever-changing, eternally great, unfathomable, and infinite life around him. And the closer he looked the more tranquil and happy he became. That dreadful question, "What for?" which had formerly destroyed all his mental edifices, no longer existed for him. To that question, "What for?" a simple answer was now always ready in his soul: "Because there is a God, that God without whose will not one hair falls from a man's head." CHAPTER XIII In external ways Pierre had hardly changed at all. In appearance he was just what he used to be. As before he was absent-minded and seemed occupied not with what was before his eyes but with something special of his own. The difference between his former and present self was that formerly when he did not grasp what lay before him or was said to him, he had puckered his forehead painfully as if vainly seeking to distinguish something at a distance. At present he still forgot what was said to him and still did not see what was before his eyes, but he now looked with a scarcely perceptible and seemingly ironic smile at what was before him and listened to what was said, though evidently seeing and hearing something quite different. Formerly he had appeared to be a kindhearted but unhappy man, and so people had been inclined to avoid him. Now a smile at the joy of life always played round his lips, and sympathy for others, shone in his eyes with a questioning look as to whether they were as contented as he was, and people felt pleased by his presence. Previously he had talked a great deal, grew excited when he talked, and seldom listened; now he was seldom carried away in conversation and knew how to listen so that people readily told him their most intimate secrets. The princess, who had never liked Pierre and had been particularly hostile to him since she had felt herself under obligations to him after the old count's death, now after staying a short time in Orel- where she had come intending to show Pierre that in spite of his ingratitude she considered it her duty to nurse him--felt to her surprise and vexation that she had become fond of him. Pierre did not in any way seek her approval, he merely studied her with interest. Formerly she had felt that he regarded her with indifference and irony, and so had shrunk into herself as she did with others and had shown him only the combative side of her nature; but now he seemed to be trying to understand the most intimate places of her heart, and, mistrustfully at first but afterwards gratefully, she let him see the hidden, kindly sides of her character. The most cunning man could not have crept into her confidence more successfully, evoking memories of the best times of her youth and showing sympathy with them. Yet Pierre's cunning consisted simply in finding pleasure in drawing out the human qualities of the embittered, hard, and (in her own way) proud princess. "Yes, he is a very, very kind man when he is not under the influence of bad people but of people such as myself," thought she. His servants too--Terenty and Vaska--in their own way noticed the change that had taken place in Pierre. They considered that he had become much "simpler." Terenty, when he had helped him undress and wished him good night, often lingered with his master's boots in his hands and clothes over his arm, to see whether he would not start a talk. And Pierre, noticing that Terenty wanted a chat, generally kept him there. "Well, tell me... now, how did you get food?" he would ask. And Terenty would begin talking of the destruction of Moscow, and of the old count, and would stand for a long time holding the clothes and talking, or sometimes listening to Pierre's stories, and then would go out into the hall with a pleasant sense of intimacy with his master and affection for him. The doctor who attended Pierre and visited him every day, though he considered it his duty as a doctor to pose as a man whose every moment was of value to suffering humanity, would sit for hours with Pierre telling him his favorite anecdotes and his observations on the characters of his patients in general, and especially of the ladies. "It's a pleasure to talk to a man like that; he is not like our provincials," he would say. There were several prisoners from the French army in Orel, and the doctor brought one of them, a young Italian, to see Pierre. This officer began visiting Pierre, and the princess used to make fun of the tenderness the Italian expressed for him. The Italian seemed happy only when he could come to see Pierre, talk with him, tell him about his past, his life at home, and his love, and pour out to him his indignation against the French and especially against Napoleon. "If all Russians are in the least like you, it is sacrilege to fight such a nation," he said to Pierre. "You, who have suffered so from the French, do not even feel animosity toward them." Pierre had evoked the passionate affection of the Italian merely by evoking the best side of his nature and taking a pleasure in so doing. During the last days of Pierre's stay in Orel his old Masonic acquaintance Count Willarski, who had introduced him to the lodge in 1807, came to see him. Willarski was married to a Russian heiress who had a large estate in Orel province, and he occupied a temporary post in the commissariat department in that town. Hearing that Bezukhov was in Orel, Willarski, though they had never been intimate, came to him with the professions of friendship and intimacy that people who meet in a desert generally express for one another. Willarski felt dull in Orel and was pleased to meet a man of his own circle and, as he supposed, of similar interests. But to his surprise Willarski soon noticed that Pierre had lagged much behind the times, and had sunk, as he expressed it to himself, into apathy and egotism. "You are letting yourself go, my dear fellow," he said. But for all that Willarski found it pleasanter now than it had been formerly to be with Pierre, and came to see him every day. To Pierre as he looked at and listened to Willarski, it seemed strange to think that he had been like that himself but a short time before. Willarski was a married man with a family, busy with his family affairs, his wife's affairs, and his official duties. He regarded all these occupations as hindrances to life, and considered that they were all contemptible because their aim was the welfare of himself and his family. Military, administrative, political, and Masonic interests continually absorbed his attention. And Pierre, without trying to change the other's views and without condemning him, but with the quiet, joyful, and amused smile now habitual to him, was interested in this strange though very familiar phenomenon. There was a new feature in Pierre's relations with Willarski, with the princess, with the doctor, and with all the people he now met, which gained for him the general good will. This was his acknowledgment of the impossibility of changing a man's convictions by words, and his recognition of the possibility of everyone thinking, feeling, and seeing things each from his own point of view. This legitimate peculiarity of each individual which used to excite and irritate Pierre now became a basis of the sympathy he felt for, and the interest he took in, other people. The difference, and sometimes complete contradiction, between men's opinions and their lives, and between one man and another, pleased him and drew from him an amused and gentle smile. In practical matters Pierre unexpectedly felt within himself a center of gravity he had previously lacked. Formerly all pecuniary questions, especially requests for money to which, as an extremely wealthy man, he was very exposed, produced in him a state of hopeless agitation and perplexity. "To give or not to give?" he had asked himself. "I have it and he needs it. But someone else needs it still more. Who needs it most? And perhaps they are both impostors?" In the old days he had been unable to find a way out of all these surmises and had given to all who asked as long as he had anything to give. Formerly he had been in a similar state of perplexity with regard to every question concerning his property, when one person advised one thing and another something else. Now to his surprise he found that he no longer felt either doubt or perplexity about these questions. There was now within him a judge who by some rule unknown to him decided what should or should not be done. He was as indifferent as heretofore to money matters, but now he felt certain of what ought and what ought not to be done. The first time he had recourse to his new judge was when a French prisoner, a colonel, came to him and, after talking a great deal about his exploits, concluded by making what amounted to a demand that Pierre should give him four thousand francs to send to his wife and children. Pierre refused without the least difficulty or effort, and was afterwards surprised how simple and easy had been what used to appear so insurmountably difficult. At the same time that he refused the colonel's demand he made up his mind that he must have recourse to artifice when leaving Orel, to induce the Italian officer to accept some money of which he was evidently in need. A further proof to Pierre of his own more settled outlook on practical matters was furnished by his decision with regard to his wife's debts and to the rebuilding of his houses in and near Moscow. His head steward came to him at Orel and Pierre reckoned up with him his diminished income. The burning of Moscow had cost him, according to the head steward's calculation, about two million rubles. To console Pierre for these losses the head steward gave him an estimate showing that despite these losses his income would not be diminished but would even be increased if he refused to pay his wife's debts which he was under no obligation to meet, and did not rebuild his Moscow house and the country house on his Moscow estate, which had cost him eighty thousand rubles a year and brought in nothing. "Yes, of course that's true," said Pierre with a cheerful smile. "I don't need all that at all. By being ruined I have become much richer." But in January Savelich came from Moscow and gave him an account of the state of things there, and spoke of the estimate an architect had made of the cost of rebuilding the town and country houses, speaking of this as of a settled matter. About the same time he received letters from Prince Vasili and other Petersburg acquaintances speaking of his wife's debts. And Pierre decided that the steward's proposals which had so pleased him were wrong and that he must go to Petersburg and settle his wife's affairs and must rebuild in Moscow. Why this was necessary he did not know, but he knew for certain that it was necessary. His income would be reduced by three fourths, but he felt it must be done. Willarski was going to Moscow and they agreed to travel together. During the whole time of his convalescence in Orel Pierre had experienced a feeling of joy, freedom, and life; but when during his journey he found himself in the open world and saw hundreds of new faces, that feeling was intensified. Throughout his journey he felt like a schoolboy on holiday. Everyone--the stagecoach driver, the post-house overseers, the peasants on the roads and in the villages- had a new significance for him. The presence and remarks of Willarski who continually deplored the ignorance and poverty of Russia and its backwardness compared with Europe only heightened Pierre's pleasure. Where Willarski saw deadness Pierre saw an extraordinary strength and vitality--the strength which in that vast space amid the snows maintained the life of this original, peculiar, and unique people. He did not contradict Willarski and even seemed to agree with him--an apparent agreement being the simplest way to avoid discussions that could lead to nothing--and he smiled joyfully as he listened to him. CHAPTER XIV It would be difficult to explain why and whither ants whose heap has been destroyed are hurrying: some from the heap dragging bits of rubbish, larvae, and corpses, others back to the heap, or why they jostle, overtake one another, and fight, and it would be equally difficult to explain what caused the Russians after the departure of the French to throng to the place that had formerly been Moscow. But when we watch the ants round their ruined heap, the tenacity, energy, and immense number of the delving insects prove that despite the destruction of the heap, something indestructible, which though intangible is the real strength of the colony, still exists; and similarly, though in Moscow in the month of October there was no government no churches, shrines, riches, or houses--it was still the Moscow it had been in August. All was destroyed, except something intangible yet powerful and indestructible. The motives of those who thronged from all sides to Moscow after it had been cleared of the enemy were most diverse and personal, and at first for the most part savage and brutal. One motive only they all had in common: a desire to get to the place that had been called Moscow, to apply their activities there. Within a week Moscow already had fifteen thousand inhabitants, in a fortnight twenty-five thousand, and so on. By the autumn of 1813 the number, ever increasing and increasing, exceeded what it had been in 1812. The first Russians to enter Moscow were the Cossacks of Wintzingerode's detachment, peasants from the adjacent villages, and residents who had fled from Moscow and had been hiding in its vicinity. The Russians who entered Moscow, finding it plundered, plundered it in their turn. They continued what the French had begun. Trains of peasant carts came to Moscow to carry off to the villages what had been abandoned in the ruined houses and the streets. The Cossacks carried off what they could to their camps, and the householders seized all they could find in other houses and moved it to their own, pretending that it was their property. But the first plunderers were followed by a second and a third contingent, and with increasing numbers plundering became more and more difficult and assumed more definite forms. The French found Moscow abandoned but with all the organizations of regular life, with diverse branches of commerce and craftsmanship, with luxury, and governmental and religious institutions. These forms were lifeless but still existed. There were bazaars, shops, warehouses, market stalls, granaries--for the most part still stocked with goods--and there were factories and workshops, palaces and wealthy houses filled with luxuries, hospitals, prisons, government offices, churches, and cathedrals. The longer the French remained the more these forms of town life perished, until finally all was merged into one confused, lifeless scene of plunder. The more the plundering by the French continued, the more both the wealth of Moscow and the strength of its plunderers was destroyed. But plundering by the Russians, with which the reoccupation of the city began, had an opposite effect: the longer it continued and the greater the number of people taking part in it the more rapidly was the wealth of the city and its regular life restored. Besides the plunderers, very various people, some drawn by curiosity, some by official duties, some by self-interest--house owners, clergy, officials of all kinds, tradesmen, artisans, and peasants--streamed into Moscow as blood flows to the heart. Within a week the peasants who came with empty carts to carry off plunder were stopped by the authorities and made to cart the corpses out of the town. Other peasants, having heard of their comrades' discomfiture, came to town bringing rye, oats, and hay, and beat down one another's prices to below what they had been in former days. Gangs of carpenters hoping for high pay arrived in Moscow every day, and on all sides logs were being hewn, new houses built, and old, charred ones repaired. Tradesmen began trading in booths. Cookshops and taverns were opened in partially burned houses. The clergy resumed the services in many churches that had not been burned. Donors contributed Church property that had been stolen. Government clerks set up their baize-covered tables and their pigeonholes of documents in small rooms. The higher authorities and the police organized the distribution of goods left behind by the French. The owners of houses in which much property had been left, brought there from other houses, complained of the injustice of taking everything to the Faceted Palace in the Kremlin; others insisted that as the French had gathered things from different houses into this or that house, it would be unfair to allow its owner to keep all that was found there. They abused the police and bribed them, made out estimates at ten times their value for government stores that had perished in the fire, and demanded relief. And Count Rostopchin wrote proclamations. CHAPTER XV At the end of January Pierre went to Moscow and stayed in an annex of his house which had not been burned. He called on Count Rostopchin and on some acquaintances who were back in Moscow, and he intended to leave for Petersburg two days later. Everybody was celebrating the victory, everything was bubbling with life in the ruined but reviving city. Everyone was pleased to see Pierre, everyone wished to meet him, and everyone questioned him about what he had seen. Pierre felt particularly well disposed toward them all, but was now instinctively on his guard for fear of binding himself in any way. To all questions put to him--whether important or quite trifling--such as: Where would he live? Was he going to rebuild? When was he going to Petersburg and would he mind taking a parcel for someone?--he replied: "Yes, perhaps," or, "I think so," and so on. He had heard that the Rostovs were at Kostroma but the thought of Natasha seldom occurred to him. If it did it was only as a pleasant memory of the distant past. He felt himself not only free from social obligations but also from that feeling which, it seemed to him, he had aroused in himself. On the third day after his arrival he heard from the Drubetskoys that Princess Mary was in Moscow. The death, sufferings, and last days of Prince Andrew had often occupied Pierre's thoughts and now recurred to him with fresh vividness. Having heard at dinner that Princess Mary was in Moscow and living in her house--which had not been burned--in Vozdvizhenka Street, he drove that same evening to see her. On his way to the house Pierre kept thinking of Prince Andrew, of their friendship, of his various meetings with him, and especially of the last one at Borodino. "Is it possible that he died in the bitter frame of mind he was then in? Is it possible that the meaning of life was not disclosed to him before he died?" thought Pierre. He recalled Karataev and his death and involuntarily began to compare these two men, so different, and yet so similar in that they had both lived and both died and in the love he felt for both of them. Pierre drove up to the house of the old prince in a most serious mood. The house had escaped the fire; it showed signs of damage but its general aspect was unchanged. The old footman, who met Pierre with a stern face as if wishing to make the visitor feel that the absence of the old prince had not disturbed the order of things in the house, informed him that the princess had gone to her own apartments, and that she received on Sundays. "Announce me. Perhaps she will see me," said Pierre. "Yes, sir," said the man. "Please step into the portrait gallery." A few minutes later the footman returned with Dessalles, who brought word from the princess that she would be very glad to see Pierre if he would excuse her want of ceremony and come upstairs to her apartment. In a rather low room lit by one candle sat the princess and with her another person dressed in black. Pierre remembered that the princess always had lady companions, but who they were and what they were like he never knew or remembered. "This must be one of her companions," he thought, glancing at the lady in the black dress. The princess rose quickly to meet him and held out her hand. "Yes," she said, looking at his altered face after he had kissed her hand, "so this is how we meet again. He spoke of you even at the very last," she went on, turning her eyes from Pierre to her companion with a shyness that surprised him for an instant. "I was so glad to hear of your safety. It was the first piece of good news we had received for a long time." Again the princess glanced round at her companion with even more uneasiness in her manner and was about to add something, but Pierre interrupted her. "Just imagine--I knew nothing about him!" said he. "I thought he had been killed. All I know I heard at second hand from others. I only know that he fell in with the Rostovs.... What a strange coincidence!" Pierre spoke rapidly and with animation. He glanced once at the companion's face, saw her attentive and kindly gaze fixed on him, and, as often happens when one is talking, felt somehow that this companion in the black dress was a good, kind, excellent creature who would not hinder his conversing freely with Princess Mary. But when he mentioned the Rostovs, Princess Mary's face expressed still greater embarrassment. She again glanced rapidly from Pierre's face to that of the lady in the black dress and said: "Do you really not recognize her?" Pierre looked again at the companion's pale, delicate face with its black eyes and peculiar mouth, and something near to him, long forgotten and more than sweet, looked at him from those attentive eyes. "But no, it can't be!" he thought. "This stern, thin, pale face that looks so much older! It cannot be she. It merely reminds me of her." But at that moment Princess Mary said, "Natasha!" And with difficulty, effort, and stress, like the opening of a door grown rusty on its hinges, a smile appeared on the face with the attentive eyes, and from that opening door came a breath of fragrance which suffused Pierre with a happiness he had long forgotten and of which he had not even been thinking--especially at that moment. It suffused him, seized him, and enveloped him completely. When she smiled doubt was no longer possible, it was Natasha and he loved her. At that moment Pierre involuntarily betrayed to her, to Princess Mary, and above all to himself, a secret of which he himself had been unaware. He flushed joyfully yet with painful distress. He tried to hide his agitation. But the more he tried to hide it the more clearly--clearer than any words could have done--did he betray to himself, to her, and to Princess Mary that he loved her. "No, it's only the unexpectedness of it," thought Pierre. But as soon as he tried to continue the conversation he had begun with Princess Mary he again glanced at Natasha, and a still-deeper flush suffused his face and a still-stronger agitation of mingled joy and fear seized his soul. He became confused in his speech and stopped in the middle of what he was saying. Pierre had failed to notice Natasha because he did not at all expect to see her there, but he had failed to recognize her because the change in her since he last saw her was immense. She had grown thin and pale, but that was not what made her unrecognizable; she was unrecognizable at the moment he entered because on that face whose eyes had always shone with a suppressed smile of the joy of life, now when he first entered and glanced at her there was not the least shadow of a smile: only her eyes were kindly attentive and sadly interrogative. Pierre's confusion was not reflected by any confusion on Natasha's part, but only by the pleasure that just perceptibly lit up her whole face. CHAPTER XVI "She has come to stay with me," said Princess Mary. "The count and countess will be here in a few days. The countess is in a dreadful state; but it was necessary for Natasha herself to see a doctor. They insisted on her coming with me." "Yes, is there a family free from sorrow now?" said Pierre, addressing Natasha. "You know it happened the very day we were rescued. I saw him. What a delightful boy he was!" Natasha looked at him, and by way of answer to his words her eyes widened and lit up. "What can one say or think of as a consolation?" said Pierre. "Nothing! Why had such a splendid boy, so full of life, to die?" "Yes, in these days it would be hard to live without faith..." remarked Princess Mary. "Yes, yes, that is really true," Pierre hastily interrupted her. "Why is it true?" Natasha asked, looking attentively into Pierre's eyes. "How can you ask why?" said Princess Mary. "The thought alone of what awaits..." Natasha without waiting for Princess Mary to finish again looked inquiringly at Pierre. "And because," Pierre continued, "only one who believes that there is a God ruling us can bear a loss such as hers and... yours." Natasha had already opened her mouth to speak but suddenly stopped. Pierre hurriedly turned away from her and again addressed Princess Mary, asking about his friend's last days. Pierre's confusion had now almost vanished, but at the same time he felt that his freedom had also completely gone. He felt that there was now a judge of his every word and action whose judgment mattered more to him than that of all the rest of the world. As he spoke now he was considering what impression his words would make on Natasha. He did not purposely say things to please her, but whatever he was saying he regarded from her standpoint. Princess Mary--reluctantly as is usual in such cases--began telling of the condition in which she had found Prince Andrew. But Pierre's face quivering with emotion, his questions and his eager restless expression, gradually compelled her to go into details which she feared to recall for her own sake. "Yes, yes, and so...?" Pierre kept saying as he leaned toward her with his whole body and eagerly listened to her story. "Yes, yes... so he grew tranquil and softened? With all his soul he had always sought one thing--to be perfectly good--so he could not be afraid of death. The faults he had--if he had any--were not of his making. So he did soften?... What a happy thing that he saw you again," he added, suddenly turning to Natasha and looking at her with eyes full of tears. Natasha's face twitched. She frowned and lowered her eyes for a moment. She hesitated for an instant whether to speak or not. "Yes, that was happiness," she then said in her quiet voice with its deep chest notes. "For me it certainly was happiness." She paused. "And he... he... he said he was wishing for it at the very moment I entered the room...." Natasha's voice broke. She blushed, pressed her clasped hands on her knees, and then controlling herself with an evident effort lifted her head and began to speak rapidly. "We knew nothing of it when we started from Moscow. I did not dare to ask about him. Then suddenly Sonya told me he was traveling with us. I had no idea and could not imagine what state he was in, all I wanted was to see him and be with him," she said, trembling, and breathing quickly. And not letting them interrupt her she went on to tell what she had never yet mentioned to anyone--all she had lived through during those three weeks of their journey and life at Yaroslavl. Pierre listened to her with lips parted and eyes fixed upon her full of tears. As he listened he did not think of Prince Andrew, nor of death, nor of what she was telling. He listened to her and felt only pity for her, for what she was suffering now while she was speaking. Princess Mary, frowning in her effort to hold back her tears, sat beside Natasha, and heard for the first time the story of those last days of her brother's and Natasha's love. Evidently Natasha needed to tell that painful yet joyful tale. She spoke, mingling most trifling details with the intimate secrets of her soul, and it seemed as if she could never finish. Several times she repeated the same thing twice. Dessalles' voice was heard outside the door asking whether little Nicholas might come in to say good night. "Well, that's all--everything," said Natasha. She got up quickly just as Nicholas entered, almost ran to the door which was hidden by curtains, struck her head against it, and rushed from the room with a moan either of pain or sorrow. Pierre gazed at the door through which she had disappeared and did not understand why he suddenly felt all alone in the world. Princess Mary roused him from his abstraction by drawing his attention to her nephew who had entered the room. At that moment of emotional tenderness young Nicholas' face, which resembled his father's, affected Pierre so much that when he had kissed the boy he got up quickly, took out his handkerchief, and went to the window. He wished to take leave of Princess Mary, but she would not let him go. "No, Natasha and I sometimes don't go to sleep till after two, so please don't go. I will order supper. Go downstairs, we will come immediately." Before Pierre left the room Princess Mary told him: "This is the first time she has talked of him like that." CHAPTER XVII Pierre was shown into the large, brightly lit dining room; a few minutes later he heard footsteps and Princess Mary entered with Natasha. Natasha was calm, though a severe and grave expression had again settled on her face. They all three of them now experienced that feeling of awkwardness which usually follows after a serious and heartfelt talk. It is impossible to go back to the same conversation, to talk of trifles is awkward, and yet the desire to speak is there and silence seems like affectation. They went silently to table. The footmen drew back the chairs and pushed them up again. Pierre unfolded his cold table napkin and, resolving to break the silence, looked at Natasha and at Princess Mary. They had evidently both formed the same resolution; the eyes of both shone with satisfaction and a confession that besides sorrow life also has joy. "Do you take vodka, Count?" asked Princess Mary, and those words suddenly banished the shadows of the past. "Now tell us about yourself," said she. "One hears such improbable wonders about you." "Yes," replied Pierre with the smile of mild irony now habitual to him. "They even tell me wonders I myself never dreamed of! Mary Abramovna invited me to her house and kept telling me what had happened, or ought to have happened, to me. Stepan Stepanych also instructed me how I ought to tell of my experiences. In general I have noticed that it is very easy to be an interesting man (I am an interesting man now); people invite me out and tell me all about myself." Natasha smiled and was on the point of speaking. "We have been told," Princess Mary interrupted her, "that you lost two millions in Moscow. Is that true?" "But I am three times as rich as before," returned Pierre. Though the position was now altered by his decision to pay his wife's debts and to rebuild his houses, Pierre still maintained that he had become three times as rich as before. "What I have certainly gained is freedom," he began seriously, but did not continue, noticing that this theme was too egotistic. "And are you building?" "Yes. Savelich says I must!" "Tell me, you did not know of the countess' death when you decided to remain in Moscow?" asked Princess Mary and immediately blushed, noticing that her question, following his mention of freedom, ascribed to his words a meaning he had perhaps not intended. "No," answered Pierre, evidently not considering awkward the meaning Princess Mary had given to his words. "I heard of it in Orel and you cannot imagine how it shocked me. We were not an exemplary couple," he added quickly, glancing at Natasha and noticing on her face curiosity as to how he would speak of his wife, "but her death shocked me terribly. When two people quarrel they are always both in fault, and one's own guilt suddenly becomes terribly serious when the other is no longer alive. And then such a death... without friends and without consolation! I am very, very sorry for her," he concluded, and was pleased to notice a look of glad approval on Natasha's face. "Yes, and so you are once more an eligible bachelor," said Princess Mary. Pierre suddenly flushed crimson and for a long time tried not to look at Natasha. When he ventured to glance her way again her face was cold, stern, and he fancied even contemptuous. "And did you really see and speak to Napoleon, as we have been told?" said Princess Mary. Pierre laughed. "No, not once! Everybody seems to imagine that being taken prisoner means being Napoleon's guest. Not only did I never see him but I heard nothing about him--I was in much lower company!" Supper was over, and Pierre who at first declined to speak about his captivity was gradually led on to do so. "But it's true that you remained in Moscow to kill Napoleon?" Natasha asked with a slight smile. "I guessed it then when we met at the Sukharev tower, do you remember?" Pierre admitted that it was true, and from that was gradually led by Princess Mary's questions and especially by Natasha's into giving a detailed account of his adventures. At first he spoke with the amused and mild irony now customary with him toward everybody and especially toward himself, but when he came to describe the horrors and sufferings he had witnessed he was unconsciously carried away and began speaking with the suppressed emotion of a man re-experiencing in recollection strong impressions he has lived through. Princess Mary with a gentle smile looked now at Pierre and now at Natasha. In the whole narrative she saw only Pierre and his goodness. Natasha, leaning on her elbow, the expression of her face constantly changing with the narrative, watched Pierre with an attention that never wandered--evidently herself experiencing all that he described. Not only her look, but her exclamations and the brief questions she put, showed Pierre that she understood just what he wished to convey. It was clear that she understood not only what he said but also what he wished to, but could not, express in words. The account Pierre gave of the incident with the child and the woman for protecting whom he was arrested was this: "It was an awful sight--children abandoned, some in the flames... One was snatched out before my eyes... and there were women who had their things snatched off and their earrings torn out..." he flushed and grew confused. "Then a patrol arrived and all the men--all those who were not looting, that is--were arrested, and I among them." "I am sure you're not telling us everything; I am sure you did something..." said Natasha and pausing added, "something fine?" Pierre continued. When he spoke of the execution he wanted to pass over the horrible details, but Natasha insisted that he should not omit anything. Pierre began to tell about Karataev, but paused. By this time he had risen from the table and was pacing the room, Natasha following him with her eyes. Then he added: "No, you can't understand what I learned from that illiterate man- that simple fellow." "Yes, yes, go on!" said Natasha. "Where is he?" "They killed him almost before my eyes." And Pierre, his voice trembling continually, went on to tell of the last days of their retreat, of Karataev's illness and his death. He told of his adventures as he had never yet recalled them. He now, as it were, saw a new meaning in all he had gone through. Now that he was telling it all to Natasha he experienced that pleasure which a man has when women listen to him--not clever women who when listening either try to remember what they hear to enrich their minds and when opportunity offers to retell it, or who wish to adopt it to some thought of their own and promptly contribute their own clever comments prepared in their little mental workshop--but the pleasure given by real women gifted with a capacity to select and absorb the very best a man shows of himself. Natasha without knowing it was all attention: she did not lose a word, no single quiver in Pierre's voice, no look, no twitch of a muscle in his face, nor a single gesture. She caught the unfinished word in its flight and took it straight into her open heart, divining the secret meaning of all Pierre's mental travail. Princess Mary understood his story and sympathized with him, but she now saw something else that absorbed all her attention. She saw the possibility of love and happiness between Natasha and Pierre, and the first thought of this filled her heart with gladness. It was three o'clock in the morning. The footmen came in with sad and stern faces to change the candles, but no one noticed them. Pierre finished his story. Natasha continued to look at him intently with bright, attentive, and animated eyes, as if trying to understand something more which he had perhaps left untold. Pierre in shamefaced and happy confusion glanced occasionally at her, and tried to think what to say next to introduce a fresh subject. Princess Mary was silent. It occurred to none of them that it was three o'clock and time to go to bed. "People speak of misfortunes and sufferings," remarked Pierre, "but if at this moment I were asked: 'Would you rather be what you were before you were taken prisoner, or go through all this again?' then for heaven's sake let me again have captivity and horseflesh! We imagine that when we are thrown out of our usual ruts all is lost, but it is only then that what is new and good begins. While there is life there is happiness. There is much, much before us. I say this to you," he added, turning to Natasha. "Yes, yes," she said, answering something quite different. "I too should wish nothing but to relive it all from the beginning." Pierre looked intently at her. "Yes, and nothing more." said Natasha. "It's not true, not true!" cried Pierre. "I am not to blame for being alive and wishing to live--nor you either." Suddenly Natasha bent her head, covered her face with her hands, and began to cry. "What is it, Natasha?" said Princess Mary. "Nothing, nothing." She smiled at Pierre through her tears. "Good night! It is time for bed." Pierre rose and took his leave. Princess Mary and Natasha met as usual in the bedroom. They talked of what Pierre had told them. Princess Mary did not express her opinion of Pierre nor did Natasha speak of him. "Well, good night, Mary!" said Natasha. "Do you know, I am often afraid that by not speaking of him" (she meant Prince Andrew) "for fear of not doing justice to our feelings, we forget him." Princess Mary sighed deeply and thereby acknowledged the justice of Natasha's remark, but she did not express agreement in words. "Is it possible to forget?" said she. "It did me so much good to tell all about it today. It was hard and painful, but good, very good!" said Natasha. "I am sure he really loved him. That is why I told him... Was it all right?" she added, suddenly blushing. "To tell Pierre? Oh, yes. What a splendid man he is!" said Princess Mary. "Do you know, Mary..." Natasha suddenly said with a mischievous smile such as Princess Mary had not seen on her face for a long time, "he has somehow grown so clean, smooth, and fresh--as if he had just come out of a Russian bath; do you understand? Out of a moral bath. Isn't it true?" "Yes," replied Princess Mary. "He has greatly improved." "With a short coat and his hair cropped; just as if, well, just as if he had come straight from the bath... Papa used to..." "I understand why he" (Prince Andrew) "liked no one so much as him," said Princess Mary. "Yes, and yet he is quite different. They say men are friends when they are quite different. That must be true. Really he is quite unlike him--in everything." "Yes, but he's wonderful." "Well, good night," said Natasha. And the same mischievous smile lingered for a long time on her face as if it had been forgotten there. CHAPTER XVIII It was a long time before Pierre could fall asleep that night. He paced up and down his room, now turning his thoughts on a difficult problem and frowning, now suddenly shrugging his shoulders and wincing, and now smiling happily. He was thinking of Prince Andrew, of Natasha, and of their love, at one moment jealous of her past, then reproaching himself for that feeling. It was already six in the morning and he still paced up and down the room. "Well, what's to be done if it cannot be avoided? What's to be done? Evidently it has to be so," said he to himself, and hastily undressing he got into bed, happy and agitated but free from hesitation or indecision. "Strange and impossible as such happiness seems, I must do everything that she and I may be man and wife," he told himself. A few days previously Pierre had decided to go to Petersburg on the Friday. When he awoke on the Thursday, Savelich came to ask him about packing for the journey. "What, to Petersburg? What is Petersburg? Who is there in Petersburg?" he asked involuntarily, though only to himself. "Oh, yes, long ago before this happened I did for some reason mean to go to Petersburg," he reflected. "Why? But perhaps I shall go. What a good fellow he is and how attentive, and how he remembers everything," he thought, looking at Savelich's old face, "and what a pleasant smile he has!" "Well, Savelich, do you still not wish to accept your freedom?" Pierre asked him. "What's the good of freedom to me, your excellency? We lived under the late count--the kingdom of heaven be his!--and we have lived under you too, without ever being wronged." "And your children?" "The children will live just the same. With such masters one can live." "But what about my heirs?" said Pierre. "Supposing I suddenly marry... it might happen," he added with an involuntary smile. "If I may take the liberty, your excellency, it would be a good thing." "How easy he thinks it," thought Pierre. "He doesn't know how terrible it is and how dangerous. Too soon or too late... it is terrible!" "So what are your orders? Are you starting tomorrow?" asked Savelich. "No, I'll put it off for a bit. I'll tell you later. You must forgive the trouble I have put you to," said Pierre, and seeing Savelich smile, he thought: "But how strange it is that he should not know that now there is no Petersburg for me, and that that must be settled first of all! But probably he knows it well enough and is only pretending. Shall I have a talk with him and see what he thinks?" Pierre reflected. "No, another time." At breakfast Pierre told the princess, his cousin, that he had been to see Princess Mary the day before and had there met--"Whom do you think? Natasha Rostova!" The princess seemed to see nothing more extraordinary in that than if he had seen Anna Semenovna. "Do you know her?" asked Pierre. "I have seen the princess," she replied. "I heard that they were arranging a match for her with young Rostov. It would be a very good thing for the Rostovs, they are said to be utterly ruined." "No; I mean do you know Natasha Rostova?" "I heard about that affair of hers at the time. It was a great pity." "No, she either doesn't understand or is pretending," thought Pierre. "Better not say anything to her either." The princess too had prepared provisions for Pierre's journey. "How kind they all are," thought Pierre. "What is surprising is that they should trouble about these things now when it can no longer be of interest to them. And all for me!" On the same day the Chief of Police came to Pierre, inviting him to send a representative to the Faceted Palace to recover things that were to be returned to their owners that day. "And this man too," thought Pierre, looking into the face of the Chief of Police. "What a fine, good-looking officer and how kind. Fancy bothering about such trifies now! And they actually say he is not honest and takes bribes. What nonsense! Besides, why shouldn't he take bribes? That's the way he was brought up, and everybody does it. But what a kind, pleasant face and how he smiles as he looks at me." Pierre went to Princess Mary's to dinner. As he drove through the streets past the houses that had been burned down, he was surprised by the beauty of those ruins. The picturesqueness of the chimney stacks and tumble-down walls of the burned-out quarters of the town, stretching out and concealing one another, reminded him of the Rhine and the Colosseum. The cabmen he met and their passengers, the carpenters cutting the timber for new houses with axes, the women hawkers, and the shopkeepers, all looked at him with cheerful beaming eyes that seemed to say: "Ah, there he is! Let's see what will come of it!" At the entrance to Princess Mary's house Pierre felt doubtful whether he had really been there the night before and really seen Natasha and talked to her. "Perhaps I imagined it; perhaps I shall go in and find no one there." But he had hardly entered the room before he felt her presence with his whole being by the loss of his sense of freedom. She was in the same black dress with soft folds and her hair was done the same way as the day before, yet she was quite different. Had she been like this when he entered the day before he could not for a moment have failed to recognize her. She was as he had known her almost as a child and later on as Prince Andrew's fiancee. A bright questioning light shone in her eyes, and on her face was a friendly and strangely roguish expression. Pierre dined with them and would have spent the whole evening there, but Princess Mary was going to vespers and Pierre left the house with her. Next day he came early, dined, and stayed the whole evening. Though Princess Mary and Natasha were evidently glad to see their visitor and though all Pierre's interest was now centered in that house, by the evening they had talked over everything and the conversation passed from one trivial topic to another and repeatedly broke off. He stayed so long that Princess Mary and Natasha exchanged glances, evidently wondering when he would go. Pierre noticed this but could not go. He felt uneasy and embarrassed, but sat on because he simply could not get up and take his leave. Princess Mary, foreseeing no end to this, rose first, and complaining of a headache began to say good night. "So you are going to Petersburg tomorrow?" she asked. "No, I am not going," Pierre replied hastily, in a surprised tone and as though offended. "Yes... no... to Petersburg? Tomorrow--but I won't say good-by yet. I will call round in case you have any commissions for me," said he, standing before Princess Mary and turning red, but not taking his departure. Natasha gave him her hand and went out. Princess Mary on the other hand instead of going away sank into an armchair, and looked sternly and intently at him with her deep, radiant eyes. The weariness she had plainly shown before had now quite passed off. With a deep and long-drawn sigh she seemed to be prepared for a lengthy talk. When Natasha left the room Pierre's confusion and awkwardness immediately vanished and were replaced by eager excitement. He quickly moved an armchair toward Princess Mary. "Yes, I wanted to tell you," said he, answering her look as if she had spoken. "Princess, help me! What am I to do? Can I hope? Princess, my dear friend, listen! I know it all. I know I am not worthy of her, I know it's impossible to speak of it now. But I want to be a brother to her. No, not that, I don't, I can't..." He paused and rubbed his face and eyes with his hands. "Well," he went on with an evident effort at self-control and coherence. "I don't know when I began to love her, but I have loved her and her alone all my life, and I love her so that I cannot imagine life without her. I cannot propose to her at present, but the thought that perhaps she might someday be my wife and that I may be missing that possibility... that possibility... is terrible. Tell me, can I hope? Tell me what I am to do, dear princess!" he added after a pause, and touched her hand as she did not reply. "I am thinking of what you have told me," answered Princess Mary. "This is what I will say. You are right that to speak to her of love at present..." Princess Mary stopped. She was going to say that to speak of love was impossible, but she stopped because she had seen by the sudden change in Natasha two days before that she would not only not be hurt if Pierre spoke of his love, but that it was the very thing she wished for. "To speak to her now wouldn't do," said the princess all the same. "But what am I to do?" "Leave it to me," said Princess Mary. "I know..." Pierre was looking into Princess Mary's eyes. "Well?... Well?..." he said. "I know that she loves... will love you," Princess Mary corrected herself. Before her words were out, Pierre had sprung up and with a frightened expression seized Princess Mary's hand. "What makes you think so? You think I may hope? You think...?" "Yes, I think so," said Princess Mary with a smile. "Write to her parents, and leave it to me. I will tell her when I can. I wish it to happen and my heart tells me it will." "No, it cannot be! How happy I am! But it can't be.... How happy I am! No, it can't be!" Pierre kept saying as he kissed Princess Mary's hands. "Go to Petersburg, that will be best. And I will write to you," she said. "To Petersburg? Go there? Very well, I'll go. But I may come again tomorrow?" Next day Pierre came to say good-by. Natasha was less animated than she had been the day before; but that day as he looked at her Pierre sometimes felt as if he was vanishing and that neither he nor she existed any longer, that nothing existed but happiness. "Is it possible? No, it can't be," he told himself at every look, gesture, and word that filled his soul with joy. When on saying good-by he took her thin, slender hand, he could not help holding it a little longer in his own. "Is it possible that this hand, that face, those eyes, all this treasure of feminine charm so strange to me now, is it possible that it will one day be mine forever, as familiar to me as I am to myself?... No, that's impossible!..." "Good-by, Count," she said aloud. "I shall look forward very much to your return," she added in a whisper. And these simple words, her look, and the expression on her face which accompanied them, formed for two months the subject of inexhaustible memories, interpretations, and happy meditations for Pierre. "'I shall look forward very much to your return....' Yes, yes, how did she say it? Yes, 'I shall look forward very much to your return.' Oh, how happy I am! What is happening to me? How happy I am!" said Pierre to himself. CHAPTER XIX There was nothing in Pierre's soul now at all like what had troubled it during his courtship of Helene. He did not repeat to himself with a sickening feeling of shame the words he had spoken, or say: "Oh, why did I not say that?" and, "Whatever made me say 'Je vous aime'?" On the contrary, he now repeated in imagination every word that he or Natasha had spoken and pictured every detail of her face and smile, and did not wish to diminish or add anything, but only to repeat it again and again. There was now not a shadow of doubt in his mind as to whether what he had undertaken was right or wrong. Only one terrible doubt sometimes crossed his mind: "Wasn't it all a dream? Isn't Princess Mary mistaken? Am I not too conceited and self-confident? I believe all this--and suddenly Princess Mary will tell her, and she will be sure to smile and say: 'How strange! He must be deluding himself. Doesn't he know that he is a man, just a man, while I...? I am something altogether different and higher.'" That was the only doubt often troubling Pierre. He did not now make any plans. The happiness before him appeared so inconceivable that if only he could attain it, it would be the end of all things. Everything ended with that. A joyful, unexpected frenzy, of which he had thought himself incapable, possessed him. The whole meaning of life--not for him alone but for the whole world--seemed to him centered in his love and the possibility of being loved by her. At times everybody seemed to him to be occupied with one thing only--his future happiness. Sometimes it seemed to him that other people were all as pleased as he was himself and merely tried to hide that pleasure by pretending to be busy with other interests. In every word and gesture he saw allusions to his happiness. He often surprised those he met by his significantly happy looks and smiles which seemed to express a secret understanding between him and them. And when he realized that people might not be aware of his happiness, he pitied them with his whole heart and felt a desire somehow to explain to them that all that occupied them was a mere frivolous trifle unworthy of attention. When it was suggested to him that he should enter the civil service, or when the war or any general political affairs were discussed on the assumption that everybody's welfare depended on this or that issue of events, he would listen with a mild and pitying smile and surprise people by his strange comments. But at this time he saw everybody--both those who, as he imagined, understood the real meaning of life (that is, what he was feeling) and those unfortunates who evidently did not understand it--in the bright light of the emotion that shone within himself, and at once without any effort saw in everyone he met everything that was good and worthy of being loved. When dealing with the affairs and papers of his dead wife, her memory aroused in him no feeling but pity that she had not known the bliss he now knew. Prince Vasili, who having obtained a new post and some fresh decorations was particularly proud at this time, seemed to him a pathetic, kindly old man much to be pitied. Often in afterlife Pierre recalled this period of blissful insanity. All the views he formed of men and circumstances at this time remained true for him always. He not only did not renounce them subsequently, but when he was in doubt or inwardly at variance, he referred to the views he had held at this time of his madness and they always proved correct. "I may have appeared strange and queer then," he thought, "but I was not so mad as I seemed. On the contrary I was then wiser and had more insight than at any other time, and understood all that is worth understanding in life, because... because I was happy." Pierre's insanity consisted in not waiting, as he used to do, to discover personal attributes which he termed "good qualities" in people before loving them; his heart was now overflowing with love, and by loving people without cause he discovered indubitable causes for loving them. CHAPTER XX After Pierre's departure that first evening, when Natasha had said to Princess Mary with a gaily mocking smile: "He looks just, yes, just as if he had come out of a Russian bath--in a short coat and with his hair cropped," something hidden and unknown to herself, but irrepressible, awoke in Natasha's soul. Everything: her face, walk, look, and voice, was suddenly altered. To her own surprise a power of life and hope of happiness rose to the surface and demanded satisfaction. From that evening she seemed to have forgotten all that had happened to her. She no longer complained of her position, did not say a word about the past, and no longer feared to make happy plans for the future. She spoke little of Pierre, but when Princess Mary mentioned him a long-extinguished light once more kindled in her eyes and her lips curved with a strange smile. The change that took place in Natasha at first surprised Princess Mary; but when she understood its meaning it grieved her. "Can she have loved my brother so little as to be able to forget him so soon?" she thought when she reflected on the change. But when she was with Natasha she was not vexed with her and did not reproach her. The reawakened power of life that had seized Natasha was so evidently irrepressible and unexpected by her that in her presence Princess Mary felt that she had no right to reproach her even in her heart. Natasha gave herself up so fully and frankly to this new feeling that she did not try to hide the fact that she was no longer sad, but bright and cheerful. When Princess Mary returned to her room after her nocturnal talk with Pierre, Natasha met her on the threshold. "He has spoken? Yes? He has spoken?" she repeated. And a joyful yet pathetic expression which seemed to beg forgiveness for her joy settled on Natasha's face. "I wanted to listen at the door, but I knew you would tell me." Understandable and touching as the look with which Natasha gazed at her seemed to Princess Mary, and sorry as she was to see her agitation, these words pained her for a moment. She remembered her brother and his love. "But what's to be done? She can't help it," thought the princess. And with a sad and rather stern look she told Natasha all that Pierre had said. On hearing that he was going to Petersburg Natasha was astounded. "To Petersburg!" she repeated as if unable to understand. But noticing the grieved expression on Princess Mary's face she guessed the reason of that sadness and suddenly began to cry. "Mary," said she, "tell me what I should do! I am afraid of being bad. Whatever you tell me, I will do. Tell me...." "You love him?" "Yes," whispered Natasha. "Then why are you crying? I am happy for your sake," said Princess Mary, who because of those tears quite forgave Natasha's joy. "It won't be just yet--someday. Think what fun it will be when I am his wife and you marry Nicholas!" "Natasha, I have asked you not to speak of that. Let us talk about you." They were silent awhile. "But why go to Petersburg?" Natasha suddenly asked, and hastily replied to her own question. "But no, no, he must... Yes, Mary, He must...." FIRST EPILOGUE: 1813 --20 CHAPTER I Seven years had passed. The storm-tossed sea of European history had subsided within its shores and seemed to have become calm. But the mysterious forces that move humanity (mysterious because the laws of their motion are unknown to us) continued to operate. Though the surface of the sea of history seemed motionless, the movement of humanity went on as unceasingly as the flow of time. Various groups of people formed and dissolved, the coming formation and dissolution of kingdoms and displacement of peoples was in course of preparation. The sea of history was not driven spasmodically from shore to shore as previously. It was seething in its depths. Historic figures were not borne by the waves from one shore to another as before. They now seemed to rotate on one spot. The historical figures at the head of armies, who formerly reflected the movement of the masses by ordering wars, campaigns, and battles, now reflected the restless movement by political and diplomatic combinations, laws, and treaties. The historians call this activity of the historical figures "the reaction." In dealing with this period they sternly condemn the historical personages who, in their opinion, caused what they describe as the reaction. All the well-known people of that period, from Alexander and Napoleon to Madame de Stael, Photius, Schelling, Fichte, Chateaubriand, and the rest, pass before their stern judgment seat and are acquitted or condemned according to whether they conduced to progress or to reaction. According to their accounts a reaction took place at that time in Russia also, and the chief culprit was Alexander I, the same man who according to them was the chief cause of the liberal movement at the commencement of his reign, being the savior of Russia. There is no one in Russian literature now, from schoolboy essayist to learned historian, who does not throw his little stone at Alexander for things he did wrong at this period of his reign. "He ought to have acted in this way and in that way. In this case he did well and in that case badly. He behaved admirably at the beginning of his reign and during 1812, but acted badly by giving a constitution to Poland, forming the Holy Alliance, entrusting power to Arakcheev, favoring Golitsyn and mysticism, and afterwards Shishkov and Photius. He also acted badly by concerning himself with the active army and disbanding the Semenov regiment." It would take a dozen pages to enumerate all the reproaches the historians address to him, based on their knowledge of what is good for humanity. What do these reproaches mean? Do not the very actions for which the historians praise Alexander I (the liberal attempts at the beginning of his reign, his struggle with Napoleon, the firmness he displayed in 1812 and the campaign of 1813) flow from the same sources--the circumstances of his birth, education, and life--that made his personality what it was and from which the actions for which they blame him (the Holy Alliance, the restoration of Poland, and the reaction of 1820 and later) also flowed? In what does the substance of those reproaches lie? It lies in the fact that an historic character like Alexander I, standing on the highest possible pinnacle of human power with the blinding light of history focused upon him; a character exposed to those strongest of all influences: the intrigues, flattery, and self-deception inseparable from power; a character who at every moment of his life felt a responsibility for all that was happening in Europe; and not a fictitious but a live character who like every man had his personal habits, passions, and impulses toward goodness, beauty, and truth--that this character--though not lacking in virtue (the historians do not accuse him of that)--had not the same conception of the welfare of humanity fifty years ago as a present-day professor who from his youth upwards has been occupied with learning: that is, with books and lectures and with taking notes from them. But even if we assume that fifty years ago Alexander I was mistaken in his view of what was good for the people, we must inevitably assume that the historian who judges Alexander will also after the lapse of some time turn out to be mistaken in his view of what is good for humanity. This assumption is all the more natural and inevitable because, watching the movement of history, we see that every year and with each new writer, opinion as to what is good for mankind changes; so that what once seemed good, ten years later seems bad, and vice versa. And what is more, we find at one and the same time quite contradictory views as to what is bad and what is good in history: some people regard giving a constitution to Poland and forming the Holy Alliance as praiseworthy in Alexander, while others regard it as blameworthy. The activity of Alexander or of Napoleon cannot be called useful or harmful, for it is impossible to say for what it was useful or harmful. If that activity displeases somebody, this is only because it does not agree with his limited understanding of what is good. Whether the preservation of my father's house in Moscow, or the glory of the Russian arms, or the prosperity of the Petersburg and other universities, or the freedom of Poland or the greatness of Russia, or the balance of power in Europe, or a certain kind of European culture called "progress" appear to me to be good or bad, I must admit that besides these things the action of every historic character has other more general purposes inaccessible to me. But let us assume that what is called science can harmonize all contradictions and possesses an unchanging standard of good and bad by which to try historic characters and events; let us say that Alexander could have done everything differently; let us say that with guidance from those who blame him and who profess to know the ultimate aim of the movement of humanity, he might have arranged matters according to the program his present accusers would have given him--of nationality, freedom, equality, and progress (these, I think, cover the ground). Let us assume that this program was possible and had then been formulated, and that Alexander had acted on it. What would then have become of the activity of all those who opposed the tendency that then prevailed in the government--an activity that in the opinion of the historians was good and beneficent? Their activity would not have existed: there would have been no life, there would have been nothing. If we admit that human life can be ruled by reason, the possibility of life is destroyed. CHAPTER II If we assume as the historians do that great men lead humanity to the attainment of certain ends--the greatness of Russia or of France, the balance of power in Europe, the diffusion of the ideas of the Revolution general progress or anything else--then it is impossible to explain the facts of history without introducing the conceptions of chance and genius. If the aim of the European wars at the beginning of the nineteenth century had been the aggrandizement of Russia, that aim might have been accomplished without all the preceding wars and without the invasion. If the aim was the aggrandizement of France, that might have been attained without the Revolution and without the Empire. If the aim was the dissemination of ideas, the printing press could have accomplished that much better than warfare. If the aim was the progress of civilization, it is easy to see that there are other ways of diffusing civilization more expedient than by the destruction of wealth and of human lives. Why did it happen in this and not in some other way? Because it happened so! "Chance created the situation; genius utilized it," says history. But what is chance? What is genius? The words chance and genius do not denote any really existing thing and therefore cannot be defined. Those words only denote a certain stage of understanding of phenomena. I do not know why a certain event occurs; I think that I cannot know it; so I do not try to know it and I talk about chance. I see a force producing effects beyond the scope of ordinary human agencies; I do not understand why this occurs and I talk of genius. To a herd of rams, the ram the herdsman drives each evening into a special enclosure to feed and that becomes twice as fat as the others must seem to be a genius. And it must appear an astonishing conjunction of genius with a whole series of extraordinary chances that this ram, who instead of getting into the general fold every evening goes into a special enclosure where there are oats--that this very ram, swelling with fat, is killed for meat. But the rams need only cease to suppose that all that happens to them happens solely for the attainment of their sheepish aims; they need only admit that what happens to them may also have purposes beyond their ken, and they will at once perceive a unity and coherence in what happened to the ram that was fattened. Even if they do not know for what purpose they are fattened, they will at least know that all that happened to the ram did not happen accidentally, and will no longer need the conceptions of chance or genius. Only by renouncing our claim to discern a purpose immediately intelligible to us, and admitting the ultimate purpose to be beyond our ken, may we discern the sequence of experiences in the lives of historic characters and perceive the cause of the effect they produce (incommensurable with ordinary human capabilities), and then the words chance and genius become superfluous. We need only confess that we do not know the purpose of the European convulsions and that we know only the facts--that is, the murders, first in France, then in Italy, in Africa, in Prussia, in Austria, in Spain, and in Russia--and that the movements from the west to the east and from the east to the west form the essence and purpose of these events, and not only shall we have no need to see exceptional ability and genius in Napoleon and Alexander, but we shall be unable to consider them to be anything but like other men, and we shall not be obliged to have recourse to chance for an explanation of those small events which made these people what they were, but it will be clear that all those small events were inevitable. By discarding a claim to knowledge of the ultimate purpose, we shall clearly perceive that just as one cannot imagine a blossom or seed for any single plant better suited to it than those it produces, so it is impossible to imagine any two people more completely adapted down to the smallest detail for the purpose they had to fulfill, than Napoleon and Alexander with all their antecedents. CHAPTER III The fundamental and essential significance of the European events of the beginning of the nineteenth century lies in the movement of the mass of the European peoples from west to east and afterwards from east to west. The commencement of that movement was the movement from west to east. For the peoples of the west to be able to make their warlike movement to Moscow it was necessary: (1) that they should form themselves into a military group of a size able to endure a collision with the warlike military group of the east, (2) that they should abandon all established traditions and customs, and (3) that during their military movement they should have at their head a man who could justify to himself and to them the deceptions, robberies, and murders which would have to be committed during that movement. And beginning with the French Revolution the old inadequately large group was destroyed, as well as the old habits and traditions, and step by step a group was formed of larger dimensions with new customs and traditions, and a man was produced who would stand at the head of the coming movement and bear the responsibility for all that had to be done. A man without convictions, without habits, without traditions, without a name, and not even a Frenchman, emerges--by what seem the strangest chances--from among all the seething French parties, and without joining any one of them is borne forward to a prominent position. The ignorance of his colleagues, the weakness and insignificance of his opponents, the frankness of his falsehoods, and the dazzling and self-confident limitations of this man raise him to the head of the army. The brilliant qualities of the soldiers of the army sent to Italy, his opponents' reluctance to fight, and his own childish audacity and self-confidence secure him military fame. Innumerable so called chances accompany him everywhere. The disfavor into which he falls with the rulers of France turns to his advantage. His attempts to avoid his predestined path are unsuccessful: he is not received into the Russian service, and the appointment he seeks in Turkey comes to nothing. During the war in Italy he is several times on the verge of destruction and each time is saved in an unexpected manner. Owing to various diplomatic considerations the Russian armies--just those which might have destroyed his prestige--do not appear upon the scene till he is no longer there. On his return from Italy he finds the government in Paris in a process of dissolution in which all those who are in it are inevitably wiped out and destroyed. And by chance an escape from this dangerous position presents itself in the form of an aimless and senseless expedition to Africa. Again so-called chance accompanies him. Impregnable Malta surrenders without a shot; his most reckless schemes are crowned with success. The enemy's fleet, which subsequently did not let a single boat pass, allows his entire army to elude it. In Africa a whole series of outrages are committed against the almost unarmed inhabitants. And the men who commit these crimes, especially their leader, assure themselves that this is admirable, this is glory- it resembles Caesar and Alexander the Great and is therefore good. This ideal of glory and grandeur--which consists not merely in considering nothing wrong that one does but in priding oneself on every crime one commits, ascribing to it an incomprehensible supernatural significance--that ideal, destined to guide this man and his associates, had scope for its development in Africa. Whatever he does succeeds. The plague does not touch him. The cruelty of murdering prisoners is not imputed to him as a fault. His childishly rash, uncalled-for, and ignoble departure from Africa, leaving his comrades in distress, is set down to his credit, and again the enemy's fleet twice lets him slip past. When, intoxicated by the crimes he has committed so successfully, he reaches Paris, the dissolution of the republican government, which a year earlier might have ruined him, has reached its extreme limit, and his presence there now as a newcomer free from party entanglements can only serve to exalt him--and though he himself has no plan, he is quite ready for his new role. He had no plan, he was afraid of everything, but the parties snatched at him and demanded his participation. He alone--with his ideal of glory and grandeur developed in Italy and Egypt, his insane self-adulation, his boldness in crime and frankness in lying--he alone could justify what had to be done. He is needed for the place that awaits him, and so almost apart from his will and despite his indecision, his lack of a plan, and all his mistakes, he is drawn into a conspiracy that aims at seizing power and the conspiracy is crowned with success. He is pushed into a meeting of the legislature. In alarm he wishes to flee, considering himself lost. He pretends to fall into a swoon and says senseless things that should have ruined him. But the once proud and shrewd rulers of France, feeling that their part is played out, are even more bewildered than he, and do not say the words they should have said to destroy him and retain their power. Chance, millions of chances, give him power, and all men as if by agreement co-operate to confirm that power. Chance forms the characters of the rulers of France, who submit to him; chance forms the character of Paul I of Russia who recognizes his government; chance contrives a plot against him which not only fails to harm him but confirms his power. Chance puts the Duc d'Enghien in his hands and unexpectedly causes him to kill him--thereby convincing the mob more forcibly than in any other way that he had the right, since he had the might. Chance contrives that though he directs all his efforts to prepare an expedition against England (which would inevitably have ruined him) he never carries out that intention, but unexpectedly falls upon Mack and the Austrians, who surrender without a battle. Chance and genius give him the victory at Austerlitz; and by chance all men, not only the French but all Europe--except England which does not take part in the events about to happen--despite their former horror and detestation of his crimes, now recognize his authority, the title he has given himself, and his ideal of grandeur and glory, which seems excellent and reasonable to them all. As if measuring themselves and preparing for the coming movement, the western forces push toward the east several times in 1805, 1806, 1807, and 1809, gaining strength and growing. In 1811 the group of people that had formed in France unites into one group with the peoples of Central Europe. The strength of the justification of the man who stands at the head of the movement grows with the increased size of the group. During the ten-year preparatory period this man had formed relations with all the crowned heads of Europe. The discredited rulers of the world can oppose no reasonable ideal to the insensate Napoleonic ideal of glory and grandeur. One after another they hasten to display their insignificance before him. The King of Prussia sends his wife to seek the great man's mercy; the Emperor of Austria considers it a favor that this man receives a daughter the Caesars into his bed; the Pope, the guardian of all that the nations hold sacred, utilizes religion for the aggrandizement of the great man. It is not Napoleon who prepares himself for the accomplishment of his role, so much as all those round him who prepare him to take on himself the whole responsibility for what is happening and has to happen. There is no step, no crime or petty fraud he commits, which in the mouths of those around him is not at once represented as a great deed. The most suitable fete the Germans can devise for him is a celebration of Jena and Auerstadt. Not only is he great, but so are his ancestors, his brothers, his stepsons, and his brothers-in-law. Everything is done to deprive him of the remains of his reason and to prepare him for his terrible part. And when he is ready so too are the forces. The invasion pushes eastward and reaches its final goal--Moscow. That city is taken; the Russian army suffers heavier losses than the opposing armies had suffered in the former war from Austerlitz to Wagram. But suddenly instead of those chances and that genius which hitherto had so consistently led him by an uninterrupted series of successes to the predestined goal, an innumerable sequence of inverse chances occur--from the cold in his head at Borodino to the sparks which set Moscow on fire, and the frosts--and instead of genius, stupidity and immeasurable baseness become evident. The invaders flee, turn back, flee again, and all the chances are now not for Napoleon but always against him. A countermovement is then accomplished from east to west with a remarkable resemblance to the preceding movement from west to east. Attempted drives from east to west--similar to the contrary movements of 1805, 1807, and 1809--precede the great westward movement; there is the same coalescence into a group of enormous dimensions; the same adhesion of the people of Central Europe to the movement; the same hesitation midway, and the same increasing rapidity as the goal is approached. Paris, the ultimate goal, is reached. The Napoleonic government and army are destroyed. Napoleon himself is no longer of any account; all his actions are evidently pitiful and mean, but again an inexplicable chance occurs. The allies detest Napoleon whom they regard as the cause of their sufferings. Deprived of power and authority, his crimes and his craft exposed, he should have appeared to them what he appeared ten years previously and one year later--an outlawed brigand. But by some strange chance no one perceives this. His part is not yet ended. The man who ten years before and a year later was considered an outlawed brigand is sent to an island two days' sail from France, which for some reason is presented to him as his dominion, and guards are given to him and millions of money are paid him. CHAPTER IV The flood of nations begins to subside into its normal channels. The waves of the great movement abate, and on the calm surface eddies are formed in which float the diplomatists, who imagine that they have caused the floods to abate. But the smooth sea again suddenly becomes disturbed. The diplomatists think that their disagreements are the cause of this fresh pressure of natural forces; they anticipate war between their sovereigns; the position seems to them insoluble. But the wave they feel to be rising does not come from the quarter they expect. It rises again from the same point as before--Paris. The last backwash of the movement from the west occurs: a backwash which serves to solve the apparently insuperable diplomatic difficulties and ends the military movement of that period of history. The man who had devastated France returns to France alone, without any conspiracy and without soldiers. Any guard might arrest him, but by strange chance no one does so and all rapturously greet the man they cursed the day before and will curse again a month later. This man is still needed to justify the final collective act. That act is performed. The last role is played. The actor is bidden to disrobe and wash off his powder and paint: he will not be wanted any more. And some years pass during which he plays a pitiful comedy to himself in solitude on his island, justifying his actions by intrigues and lies when the justification is no longer needed, and displaying to the whole world what it was that people had mistaken for strength as long as an unseen hand directed his actions. The manager having brought the drama to a close and stripped the actor shows him to us. "See what you believed in! This is he! Do you now see that it was not he but I who moved you?" But dazed by the force of the movement, it was long before people understood this. Still greater coherence and inevitability is seen in the life of Alexander I, the man who stood at the head of the countermovement from east to west. What was needed for him who, overshadowing others, stood at the head of that movement from east to west? What was needed was a sense of justice and a sympathy with European affairs, but a remote sympathy not dulled by petty interests; a moral superiority over those sovereigns of the day who co-operated with him; a mild and attractive personality; and a personal grievance against Napoleon. And all this was found in Alexander I; all this had been prepared by innumerable so-called chances in his life: his education, his early liberalism, the advisers who surrounded him, and by Austerlitz, and Tilsit, and Erfurt. During the national war he was inactive because he was not needed. But as soon as the necessity for a general European war presented itself he appeared in his place at the given moment and, uniting the nations of Europe, led them to the goal. The goal is reached. After the final war of 1815 Alexander possesses all possible power. How does he use it? Alexander I--the pacifier of Europe, the man who from his early years had striven only for his people's welfare, the originator of the liberal innovations in his fatherland--now that he seemed to possess the utmost power and therefore to have the possibility of bringing about the welfare of his peoples--at the time when Napoleon in exile was drawing up childish and mendacious plans of how he would have made mankind happy had he retained power--Alexander I, having fulfilled his mission and feeling the hand of God upon him, suddenly recognizes the insignificance of that supposed power, turns away from it, and gives it into the hands of contemptible men whom he despises, saying only: "Not unto us, not unto us, but unto Thy Name!... I too am a man like the rest of you. Let me live like a man and think of my soul and of God." As the sun and each atom of ether is a sphere complete in itself, and yet at the same time only a part of a whole too immense for man to comprehend, so each individual has within himself his own aims and yet has them to serve a general purpose incomprehensible to man. A bee settling on a flower has stung a child. And the child is afraid of bees and declares that bees exist to sting people. A poet admires the bee sucking from the chalice of a flower and says it exists to suck the fragrance of flowers. A beekeeper, seeing the bee collect pollen from flowers and carry it to the hive, says that it exists to gather honey. Another beekeeper who has studied the life of the hive more closely says that the bee gathers pollen dust to feed the young bees and rear a queen, and that it exists to perpetuate its race. A botanist notices that the bee flying with the pollen of a male flower to a pistil fertilizes the latter, and sees in this the purpose of the bee's existence. Another, observing the migration of plants, notices that the bee helps in this work, and may say that in this lies the purpose of the bee. But the ultimate purpose of the bee is not exhausted by the first, the second, or any of the processes the human mind can discern. The higher the human intellect rises in the discovery of these purposes, the more obvious it becomes, that the ultimate purpose is beyond our comprehension. All that is accessible to man is the relation of the life of the bee to other manifestations of life. And so it is with the purpose of historic characters and nations. CHAPTER V Natasha's wedding to Bezukhov, which took place in 1813, was the last happy event in the family of the old Rostovs. Count Ilya Rostov died that same year and, as always happens, after the father's death the family group broke up. The events of the previous year: the burning of Moscow and the flight from it, the death of Prince Andrew, Natasha's despair, Petya's death, and the old countess' grief fell blow after blow on the old count's head. He seemed to be unable to understand the meaning of all these events, and bowed his old head in a spiritual sense as if expecting and inviting further blows which would finish him. He seemed now frightened and distraught and now unnaturally animated and enterprising. The arrangements for Natasha's marriage occupied him for a while. He ordered dinners and suppers and obviously tried to appear cheerful, but his cheerfulness was not infectious as it used to be: on the contrary it evoked the compassion of those who knew and liked him. When Pierre and his wife had left, he grew very quiet and began to complain of depression. A few days later he fell ill and took to his bed. He realized from the first that he would not get up again, despite the doctor's encouragement. The countess passed a fortnight in an armchair by his pillow without undressing. Every time she gave him his medicine he sobbed and silently kissed her hand. On his last day, sobbing, he asked her and his absent son to forgive him for having dissipated their property--that being the chief fault of which he was conscious. After receiving communion and unction he quietly died; and next day a throng of acquaintances who came to pay their last respects to the deceased filled the house rented by the Rostovs. All these acquaintances, who had so often dined and danced at his house and had so often laughed at him, now said, with a common feeling of self-reproach and emotion, as if justifying themselves: "Well, whatever he may have been he was a most worthy man. You don't meet such men nowadays.... And which of us has not weaknesses of his own?" It was just when the count's affairs had become so involved that it was impossible to say what would happen if he lived another year that he unexpectedly died. Nicholas was with the Russian army in Paris when the news of his father's death reached him. He at once resigned his commission, and without waiting for it to be accepted took leave of absence and went to Moscow. The state of the count's affairs became quite obvious a month after his death, surprising everyone by the immense total of small debts the existence of which no one had suspected. The debts amounted to double the value of the property. Friends and relations advised Nicholas to decline the inheritance. But he regarded such a refusal as a slur on his father's memory, which he held sacred, and therefore would not hear of refusing and accepted the inheritance together with the obligation to pay the debts. The creditors who had so long been silent, restrained by a vague but powerful influence exerted on them while he lived by the count's careless good nature, all proceeded to enforce their claims at once. As always happens in such cases rivalry sprang up as to which should get paid first, and those who like Mitenka held promissory notes given them as presents now became the most exacting of the creditors. Nicholas was allowed no respite and no peace, and those who had seemed to pity the old man--the cause of their losses (if they were losses)--now remorselessly pursued the young heir who had voluntarily undertaken the debts and was obviously not guilty of contracting them. Not one of the plans Nicholas tried succeeded; the estate was sold by auction for half its value, and half the debts still remained unpaid. Nicholas accepted thirty thousand rubles offered him by his brother-in-law Bezukhov to pay off debts he regarded as genuinely due for value received. And to avoid being imprisoned for the remainder, as the creditors threatened, he re-entered the government service. He could not rejoin the army where he would have been made colonel at the next vacancy, for his mother now clung to him as her one hold on life; and so despite his reluctance to remain in Moscow among people who had known him before, and despite his abhorrence of the civil service, he accepted a post in Moscow in that service, doffed the uniform of which he was so fond, and moved with his mother and Sonya to a small house on the Sivtsev Vrazhek. Natasha and Pierre were living in Petersburg at the time and had no clear idea of Nicholas' circumstances. Having borrowed money from his brother-in-law, Nicholas tried to hide his wretched condition from him. His position was the more difficult because with his salary of twelve hundred rubles he had not only to keep himself, his mother, and Sonya, but had to shield his mother from knowledge of their poverty. The countess could not conceive of life without the luxurious conditions she had been used to from childhood and, unable to realize how hard it was for her son, kept demanding now a carriage (which they did not keep) to send for a friend, now some expensive article of food for herself, or wine for her son, or money to buy a present as a surprise for Natasha or Sonya, or for Nicholas himself. Sonya kept house, attended on her aunt, read to her, put up with her whims and secret ill-will, and helped Nicholas to conceal their poverty from the old countess. Nicholas felt himself irredeemably indebted to Sonya for all she was doing for his mother and greatly admired her patience and devotion, but tried to keep aloof from her. He seemed in his heart to reproach her for being too perfect, and because there was nothing to reproach her with. She had all that people are valued for, but little that could have made him love her. He felt that the more he valued her the less he loved her. He had taken her at her word when she wrote giving him his freedom and now behaved as if all that had passed between them had been long forgotten and could never in any case be renewed. Nicholas' position became worse and worse. The idea of putting something aside out of his salary proved a dream. Not only did he not save anything, but to comply with his mother's demands he even incurred some small debts. He could see no way out of this situation. The idea of marrying some rich woman, which was suggested to him by his female relations, was repugnant to him. The other way out--his mother's death--never entered his head. He wished for nothing and hoped for nothing, and deep in his heart experienced a gloomy and stern satisfaction in an uncomplaining endurance of his position. He tried to avoid his old acquaintances with their commiseration and offensive offers of assistance; he avoided all distraction and recreation, and even at home did nothing but play cards with his mother, pace silently up and down the room, and smoke one pipe after another. He seemed carefully to cherish within himself the gloomy mood which alone enabled him to endure his position. CHAPTER VI At the beginning of winter Princess Mary came to Moscow. From reports current in town she learned how the Rostovs were situated, and how "the son has sacrificed himself for his mother," as people were saying. "I never expected anything else of him," said Princess Mary to herself, feeling a joyous sense of her love for him. Remembering her friendly relations with all the Rostovs which had made her almost a member of the family, she thought it her duty to go to see them. But remembering her relations with Nicholas in Voronezh she was shy about doing so. Making a great effort she did however go to call on them a few weeks after her arrival in Moscow. Nicholas was the first to meet her, as the countess' room could only be reached through his. But instead of being greeted with pleasure as she had expected, at his first glance at her his face assumed a cold, stiff, proud expression she had not seen on it before. He inquired about her health, led the way to his mother, and having sat there for five minutes left the room. When the princess came out of the countess' room Nicholas met her again, and with marked solemnity and stiffness accompanied her to the anteroom. To her remarks about his mother's health he made no reply. "What's that to you? Leave me in peace," his looks seemed to say. "Why does she come prowling here? What does she want? I can't bear these ladies and all these civilities!" said he aloud in Sonya's presence, evidently unable to repress his vexation, after the princess' carriage had disappeared. "Oh, Nicholas, how can you talk like that?" cried Sonya, hardly able to conceal her delight. "She is so kind and Mamma is so fond of her!" Nicholas did not reply and tried to avoid speaking of the princess any more. But after her visit the old countess spoke of her several times a day. She sang her praises, insisted that her son must call on her, expressed a wish to see her often, but yet always became ill-humored when she began to talk about her. Nicholas tried to keep silence when his mother spoke of the princess, but his silence irritated her. "She is a very admirable and excellent young woman," said she, "and you must go and call on her. You would at least be seeing somebody, and I think it must be dull for you only seeing us." "But I don't in the least want to, Mamma." "You used to want to, and now you don't. Really I don't understand you, my dear. One day you are dull, and the next you refuse to see anyone." "But I never said I was dull." "Why, you said yourself you don't want even to see her. She is a very admirable young woman and you always liked her, but now suddenly you have got some notion or other in your head. You hide everything from me." "Not at all, Mamma." "If I were asking you to do something disagreeable now--but I only ask you to return a call. One would think mere politeness required it.... Well, I have asked you, and now I won't interfere any more since you have secrets from your mother." "Well, then, I'll go if you wish it." "It doesn't matter to me. I only wish it for your sake." Nicholas sighed, bit his mustache, and laid out the cards for a patience, trying to divert his mother's attention to another topic. The same conversation was repeated next day and the day after, and the day after that. After her visit to the Rostovs and her unexpectedly chilly reception by Nicholas, Princess Mary confessed to herself that she had been right in not wishing to be the first to call. "I expected nothing else," she told herself, calling her pride to her aid. "I have nothing to do with him and I only wanted to see the old lady, who was always kind to me and to whom I am under many obligations." But she could not pacify herself with these reflections; a feeling akin to remorse troubled her when she thought of her visit. Though she had firmly resolved not to call on the Rostovs again and to forget the whole matter, she felt herself all the time in an awkward position. And when she asked herself what distressed her, she had to admit that it was her relation to Rostov. His cold, polite manner did not express his feeling for her (she knew that) but it concealed something, and until she could discover what that something was, she felt that she could not be at ease. One day in midwinter when sitting in the schoolroom attending to her nephew's lessons, she was informed that Rostov had called. With a firm resolution not to betray herself and not show her agitation, she sent for Mademoiselle Bourienne and went with her to the drawing room. Her first glance at Nicholas' face told her that he had only come to fulfill the demands of politeness, and she firmly resolved to maintain the tone in which he addressed her. They spoke of the countess' health, of their mutual friends, of the latest war news, and when the ten minutes required by propriety had elapsed after which a visitor may rise, Nicholas got up to say good-by. With Mademoiselle Bourienne's help the princess had maintained the conversation very well, but at the very last moment, just when he rose, she was so tired of talking of what did not interest her, and her mind was so full of the question why she alone was granted so little happiness in life, that in a fit of absent-mindedness she sat still, her luminous eyes gazing fixedly before her, not noticing that he had risen. Nicholas glanced at her and, wishing to appear not to notice her abstraction, made some remark to Mademoiselle Bourienne and then again looked at the princess. She still sat motionless with a look of suffering on her gentle face. He suddenly felt sorry for her and was vaguely conscious that he might be the cause of the sadness her face expressed. He wished to help her and say something pleasant, but could think of nothing to say. "Good-by, Princess!" said he. She started, flushed, and sighed deeply. "Oh, I beg your pardon," she said as if waking up. "Are you going already, Count? Well then, good-by! Oh, but the cushion for the countess!" "Wait a moment, I'll fetch it," said Mademoiselle Bourienne, and she left the room. They both sat silent, with an occasional glance at one another. "Yes, Princess," said Nicholas at last with a sad smile, "it doesn't seem long ago since we first met at Bogucharovo, but how much water has flowed since then! In what distress we all seemed to be then, yet I would give much to bring back that time... but there's no bringing it back." Princess Mary gazed intently into his eyes with her own luminous ones as he said this. She seemed to be trying to fathom the hidden meaning of his words which would explain his feeling for her. "Yes, yes," said she, "but you have no reason to regret the past, Count. As I understand your present life, I think you will always recall it with satisfaction, because the self-sacrifice that fills it now..." "I cannot accept your praise," he interrupted her hurriedly. "On the contrary I continually reproach myself.... But this is not at all an interesting or cheerful subject." His face again resumed its former stiff and cold expression. But the princess had caught a glimpse of the man she had known and loved, and it was to him that she now spoke. "I thought you would allow me to tell you this," she said. "I had come so near to you... and to all your family that I thought you would not consider my sympathy misplaced, but I was mistaken," and suddenly her voice trembled. "I don't know why," she continued, recovering herself, "but you used to be different, and..." "There are a thousand reasons why," laying special emphasis on the why. "Thank you, Princess," he added softly. "Sometimes it is hard." "So that's why! That's why!" a voice whispered in Princess Mary's soul. "No, it was not only that gay, kind, and frank look, not only that handsome exterior, that I loved in him. I divined his noble, resolute, self-sacrificing spirit too," she said to herself. "Yes, he is poor now and I am rich.... Yes, that's the only reason.... Yes, were it not for that..." And remembering his former tenderness, and looking now at his kind, sorrowful face, she suddenly understood the cause of his coldness. "But why, Count, why?" she almost cried, unconsciously moving closer to him. "Why? Tell me. You must tell me!" He was silent. "I don't understand your why, Count," she continued, "but it's hard for me... I confess it. For some reason you wish to deprive me of our former friendship. And that hurts me." There were tears in her eyes and in her voice. "I have had so little happiness in life that every loss is hard for me to bear.... Excuse me, good-by!" and suddenly she began to cry and was hurrying from the room. "Princess, for God's sake!" he exclaimed, trying to stop her. "Princess!" She turned round. For a few seconds they gazed silently into one another's eyes--and what had seemed impossible and remote suddenly became possible, inevitable, and very near. CHAPTER VII In the winter of 1813 Nicholas married Princess Mary and moved to Bald Hills with his wife, his mother, and Sonya. Within four years he had paid off all his remaining debts without selling any of his wife's property, and having received a small inheritance on the death of a cousin he paid his debt to Pierre as well. In another three years, by 1820, he had so managed his affairs that he was able to buy a small estate adjoining Bald Hills and was negotiating to buy back Otradnoe--that being his pet dream. Having started farming from necessity, he soon grew so devoted to it that it became his favorite and almost his sole occupation. Nicholas was a plain farmer: he did not like innovations, especially the English ones then coming into vogue. He laughed at theoretical treatises on estate management, disliked factories, the raising of expensive products, and the buying of expensive seed corn, and did not make a hobby of any particular part of the work on his estate. He always had before his mind's eye the estate as a whole and not any particular part of it. The chief thing in his eyes was not the nitrogen in the soil, nor the oxygen in the air, nor manures, nor special plows, but that most important agent by which nitrogen, oxygen, manure, and plow were made effective--the peasant laborer. When Nicholas first began farming and began to understand its different branches, it was the serf who especially attracted his attention. The peasant seemed to him not merely a tool, but also a judge of farming and an end in himself. At first he watched the serfs, trying to understand their aims and what they considered good and bad, and only pretended to direct them and give orders while in reality learning from them their methods, their manner of speech, and their judgment of what was good and bad. Only when he had understood the peasants' tastes and aspirations, had learned to talk their language, to grasp the hidden meaning of their words, and felt akin to them did he begin boldly to manage his serfs, that is, to perform toward them the duties demanded of him. And Nicholas' management produced very brilliant results. Guided by some gift of insight, on taking up the management of the estates he at once unerringly appointed as bailiff, village elder, and delegate, the very men the serfs would themselves have chosen had they had the right to choose, and these posts never changed hands. Before analyzing the properties of manure, before entering into the debit and credit (as he ironically called it), he found out how many cattle the peasants had and increased the number by all possible means. He kept the peasant families together in the largest groups possible, not allowing the family groups to divide into separate households. He was hard alike on the lazy, the depraved, and the weak, and tried to get them expelled from the commune. He was as careful of the sowing and reaping of the peasants' hay and corn as of his own, and few landowners had their crops sown and harvested so early and so well, or got so good a return, as did Nicholas. He disliked having anything to do with the domestic serfs--the "drones" as he called them--and everyone said he spoiled them by his laxity. When a decision had to be taken regarding a domestic serf, especially if one had to be punished, he always felt undecided and consulted everybody in the house; but when it was possible to have a domestic serf conscripted instead of a land worker he did so without the least hesitation. He never felt any hesitation in dealing with the peasants. He knew that his every decision would be approved by them all with very few exceptions. He did not allow himself either to be hard on or punish a man, or to make things easy for or reward anyone, merely because he felt inclined to do so. He could not have said by what standard he judged what he should or should not do, but the standard was quite firm and definite in his own mind. Often, speaking with vexation of some failure or irregularity, he would say: "What can one do with our Russian peasants?" and imagined that he could not bear them. Yet he loved "our Russian peasants" and their way of life with his whole soul, and for that very reason had understood and assimilated the one way and manner of farming which produced good results. Countess Mary was jealous of this passion of her husband's and regretted that she could not share it; but she could not understand the joys and vexations he derived from that world, to her so remote and alien. She could not understand why he was so particularly animated and happy when, after getting up at daybreak and spending the whole morning in the fields or on the threshing floor, he returned from the sowing or mowing or reaping to have tea with her. She did not understand why he spoke with such admiration and delight of the farming of the thrifty and well-to-do peasant Matthew Ermishin, who with his family had carted corn all night; or of the fact that his (Nicholas') sheaves were already stacked before anyone else had his harvest in. She did not understand why he stepped out from the window to the veranda and smiled under his mustache and winked so joyfully, when warm steady rain began to fall on the dry and thirsty shoots of the young oats, or why when the wind carried away a threatening cloud during the hay harvest he would return from the barn, flushed, sunburned, and perspiring, with a smell of wormwood and gentian in his hair and, gleefully rubbing his hands, would say: "Well, one more day and my grain and the peasants' will all be under cover." Still less did she understand why he, kindhearted and always ready to anticipate her wishes, should become almost desperate when she brought him a petition from some peasant men or women who had appealed to her to be excused some work; why he, that kind Nicholas, should obstinately refuse her, angrily asking her not to interfere in what was not her business. She felt he had a world apart, which he loved passionately and which had laws she had not fathomed. Sometimes when, trying to understand him, she spoke of the good work he was doing for his serfs, he would be vexed and reply: "Not in the least; it never entered my head and I wouldn't do that for their good! That's all poetry and old wives' talk--all that doing good to one's neighbor! What I want is that our children should not have to go begging. I must put our affairs in order while I am alive, that's all. And to do that, order and strictness are essential.... That's all about it!" said he, clenching his vigorous fist. "And fairness, of course," he added, "for if the peasant is naked and hungry and has only one miserable horse, he can do no good either for himself or for me." And all Nicholas did was fruitful--probably just because he refused to allow himself to think that he was doing good to others for virtue's sake. His means increased rapidly; serfs from neighboring estates came to beg him to buy them, and long after his death the memory of his administration was devoutly preserved among the serfs. "He was a master... the peasants' affairs first and then his own. Of course he was not to be trifled with either--in a word, he was a real master!" CHAPTER VIII One matter connected with his management sometimes worried Nicholas, and that was his quick temper together with his old hussar habit of making free use of his fists. At first he saw nothing reprehensible in this, but in the second year of his marriage his view of that form of punishment suddenly changed. Once in summer he had sent for the village elder from Bogucharovo, a man who had succeeded to the post when Dron died and who was accused of dishonesty and various irregularities. Nicholas went out into the porch to question him, and immediately after the elder had given a few replies the sound of cries and blows were heard. On returning to lunch Nicholas went up to his wife, who sat with her head bent low over her embroidery frame, and as usual began to tell her what he had been doing that morning. Among other things he spoke of the Bogucharovo elder. Countess Mary turned red and then pale, but continued to sit with head bowed and lips compressed and gave her husband no reply. "Such an insolent scoundrel!" he cried, growing hot again at the mere recollection of him. "If he had told me he was drunk and did not see... But what is the matter with you, Mary?" he suddenly asked. Countess Mary raised her head and tried to speak, but hastily looked down again and her lips puckered. "Why, whatever is the matter, my dearest?" The looks of the plain Countess Mary always improved when she was in tears. She never cried from pain or vexation, but always from sorrow or pity, and when she wept her radiant eyes acquired an irresistible charm. The moment Nicholas took her hand she could no longer restrain herself and began to cry. "Nicholas, I saw it... he was to blame, but why do you... Nicholas!" and she covered her face with her hands. Nicholas said nothing. He flushed crimson, left her side, and paced up and down the room. He understood what she was weeping about, but could not in his heart at once agree with her that what he had regarded from childhood as quite an everyday event was wrong. "Is it just sentimentality, old wives' tales, or is she right?" he asked himself. Before he had solved that point he glanced again at her face filled with love and pain, and he suddenly realized that she was right and that he had long been sinning against himself. "Mary," he said softly, going up to her, "it will never happen again; I give you my word. Never," he repeated in a trembling voice like a boy asking for forgiveness. The tears flowed faster still from the countess' eyes. She took his hand and kissed it. "Nicholas, when did you break your cameo?" she asked to change the subject, looking at his finger on which he wore a ring with a cameo of Laocoon's head. "Today--it was the same affair. Oh, Mary, don't remind me of it!" and again he flushed. "I give you my word of honor it shan't occur again, and let this always be a reminder to me," and he pointed to the broken ring. After that, when in discussions with his village elders or stewards the blood rushed to his face and his fists began to clench, Nicholas would turn the broken ring on his finger and would drop his eyes before the man who was making him angry. But he did forget himself once or twice within a twelvemonth, and then he would go and confess to his wife, and would again promise that this should really be the very last time. "Mary, you must despise me!" he would say. "I deserve it." "You should go, go away at once, if you don't feel strong enough to control yourself," she would reply sadly, trying to comfort her husband. Among the gentry of the province Nicholas was respected but not liked. He did not concern himself with the interests of his own class, and consequently some thought him proud and others thought him stupid. The whole summer, from spring sowing to harvest, he was busy with the work on his farm. In autumn he gave himself up to hunting with the same business like seriousness--leaving home for a month, or even two, with his hunt. In winter he visited his other villages or spent his time reading. The books he read were chiefly historical, and on these he spent a certain sum every year. He was collecting, as he said, a serious library, and he made it a rule to read through all the books he bought. He would sit in his study with a grave air, reading--a task he first imposed upon himself as a duty, but which afterwards became a habit affording him a special kind of pleasure and a consciousness of being occupied with serious matters. In winter, except for business excursions, he spent most of his time at home making himself one with his family and entering into all the details of his children's relations with their mother. The harmony between him and his wife grew closer and closer and he daily discovered fresh spiritual treasures in her. From the time of his marriage Sonya had lived in his house. Before that, Nicholas had told his wife all that had passed between himself and Sonya, blaming himself and commending her. He had asked Princess Mary to be gentle and kind to his cousin. She thoroughly realized the wrong he had done Sonya, felt herself to blame toward her, and imagined that her wealth had influenced Nicholas' choice. She could not find fault with Sonya in any way and tried to be fond of her, but often felt ill-will toward her which she could not overcome. Once she had a talk with her friend Natasha about Sonya and about her own injustice toward her. "You know," said Natasha, "you have read the Gospels a great deal- there is a passage in them that just fits Sonya." "What?" asked Countess Mary, surprised. "'To him that hath shall be given, and from him that hath not shall be taken away.' You remember? She is one that hath not; why, I don't know. Perhaps she lacks egotism, I don't know, but from her is taken away, and everything has been taken away. Sometimes I am dreadfully sorry for her. Formerly I very much wanted Nicholas to marry her, but I always had a sort of presentiment that it would not come off. She is a sterile flower, you know--like some strawberry blossoms. Sometimes I am sorry for her, and sometimes I think she doesn't feel it as you or I would." Though Countess Mary told Natasha that those words in the Gospel must be understood differently, yet looking at Sonya she agreed with Natasha's explanation. It really seemed that Sonya did not feel her position trying, and had grown quite reconciled to her lot as a sterile flower. She seemed to be fond not so much of individuals as of the family as a whole. Like a cat, she had attached herself not to the people but to the home. She waited on the old countess, petted and spoiled the children, was always ready to render the small services for which she had a gift, and all this was unconsciously accepted from her with insufficient gratitude. The country seat at Bald Hills had been rebuilt, though not on the same scale as under the old prince. The buildings, begun under straitened circumstances, were more than simple. The immense house on the old stone foundations was of wood, plastered only inside. It had bare deal floors and was furnished with very simple hard sofas, armchairs, tables, and chairs made by their own serf carpenters out of their own birchwood. The house was spacious and had rooms for the house serfs and apartments for visitors. Whole families of the Rostovs' and Bolkonskis' relations sometimes came to Bald Hills with sixteen horses and dozens of servants and stayed for months. Besides that, four times a year, on the name days and birthdays of the hosts, as many as a hundred visitors would gather there for a day or two. The rest of the year life pursued its unbroken routine with its ordinary occupations, and its breakfasts, lunches, dinners, and suppers, provided out of the produce of the estate. CHAPTER IX It was the eve of St. Nicholas, the fifth of December, 1820. Natasha had been staying at her brother's with her husband and children since early autumn. Pierre had gone to Petersburg on business of his own for three weeks as he said, but had remained there nearly seven weeks and was expected back every minute. Besides the Bezukhov family, Nicholas' old friend the retired General Vasili Dmitrich Denisov was staying with the Rostovs this fifth of December. On the sixth, which was his name day when the house would be full of visitors, Nicholas knew he would have to exchange his Tartar tunic for a tail coat, and put on narrow boots with pointed toes, and drive to the new church he had built, and then receive visitors who would come to congratulate him, offer them refreshments, and talk about the elections of the nobility; but he considered himself entitled to spend the eve of that day in his usual way. He examined the bailiff's accounts of the village in Ryazan which belonged to his wife's nephew, wrote two business letters, and walked over to the granaries, cattle yards and stables before dinner. Having taken precautions against the general drunkenness to be expected on the morrow because it was a great saint's day, he returned to dinner, and without having time for a private talk with his wife sat down at the long table laid for twenty persons, at which the whole household had assembled. At that table were his mother, his mother's old lady companion Belova, his wife, their three children with their governess and tutor, his wife's nephew with his tutor, Sonya, Denisov, Natasha, her three children, their governess, and old Michael Ivanovich, the late prince's architect, who was living on in retirement at Bald Hills. Countess Mary sat at the other end of the table. When her husband took his place she concluded, from the rapid manner in which after taking up his table napkin he pushed back the tumbler and wineglass standing before him, that he was out of humor, as was sometimes the case when he came in to dinner straight from the farm--especially before the soup. Countess Mary well knew that mood of his, and when she herself was in a good frame of mind quietly waited till he had had his soup and then began to talk to him and make him admit that there was no cause for his ill-humor. But today she quite forgot that and was hurt that he should be angry with her without any reason, and she felt unhappy. She asked him where he had been. He replied. She again inquired whether everything was going well on the farm. Her unnatural tone made him wince unpleasantly and he replied hastily. "Then I'm not mistaken," thought Countess Mary. "Why is he cross with me?" She concluded from his tone that he was vexed with her and wished to end the conversation. She knew her remarks sounded unnatural, but could not refrain from asking some more questions. Thanks to Denisov the conversation at table soon became general and lively, and she did not talk to her husband. When they left the table and went as usual to thank the old countess, Countess Mary held out her hand and kissed her husband, and asked him why he was angry with her. "You always have such strange fancies! I didn't even think of being angry," he replied. But the word always seemed to her to imply: "Yes, I am angry but I won't tell you why." Nicholas and his wife lived together so happily that even Sonya and the old countess, who felt jealous and would have liked them to disagree, could find nothing to reproach them with; but even they had their moments of antagonism. Occasionally, and it was always just after they had been happiest together, they suddenly had a feeling of estrangement and hostility, which occurred most frequently during Countess Mary's pregnancies, and this was such a time. "Well, messieurs et mesdames," said Nicholas loudly and with apparent cheerfulness (it seemed to Countess Mary that he did it on purpose to vex her), "I have been on my feet since six this morning. Tomorrow I shall have to suffer, so today I'll go and rest." And without a word to his wife he went to the little sitting room and lay down on the sofa. "That's always the way," thought Countess Mary. "He talks to everyone except me. I see... I see that I am repulsive to him, especially when I am in this condition." She looked down at her expanded figure and in the glass at her pale, sallow, emaciated face in which her eyes now looked larger than ever. And everything annoyed her--Denisov's shouting and laughter, Natasha's talk, and especially a quick glance Sonya gave her. Sonya was always the first excuse Countess Mary found for feeling irritated. Having sat awhile with her visitors without understanding anything of what they were saying, she softly left the room and went to the nursery. The children were playing at "going to Moscow" in a carriage made of chairs and invited her to go with them. She sat down and played with them a little, but the thought of her husband and his unreasonable crossness worried her. She got up and, walking on tiptoe with difficulty, went to the small sitting room. "Perhaps he is not asleep; I'll have an explanation with him," she said to herself. Little Andrew, her eldest boy, imitating his mother, followed her on tiptoe. She not notice him. "Mary, dear, I think he is asleep--he was so tired," said Sonya, meeting her in the large sitting room (it seemed to Countess Mary that she crossed her path everywhere). "Andrew may wake him." Countess Mary looked round, saw little Andrew following her, felt that Sonya was right, and for that very reason flushed and with evident difficulty refrained from saying something harsh. She made no reply, but to avoid obeying Sonya beckoned to Andrew to follow her quietly and went to the door. Sonya went away by another door. From the room in which Nicholas was sleeping came the sound of his even breathing, every slightest tone of which was familiar to his wife. As she listened to it she saw before her his smooth handsome forehead, his mustache, and his whole face, as she had so often seen it in the stillness of the night when he slept. Nicholas suddenly moved and cleared his throat. And at that moment little Andrew shouted from outside the door: "Papa! Mamma's standing here!" Countess Mary turned pale with fright and made signs to the boy. He grew silent, and quiet ensued for a moment, terrible to Countess Mary. She knew how Nicholas disliked being waked. Then through the door she heard Nicholas clearing his throat again and stirring, and his voice said crossly: "I can't get a moment's peace.... Mary, is that you? Why did you bring him here?" "I only came in to look and did not notice... forgive me..." Nicholas coughed and said no more. Countess Mary moved away from the door and took the boy back to the nursery. Five minutes later little black-eyed three-year-old Natasha, her father's pet, having learned from her brother that Papa was asleep and Mamma was in the sitting room, ran to her father unobserved by her mother. The dark-eyed little girl boldly opened the creaking door, went up to the sofa with energetic steps of her sturdy little legs, and having examined the position of her father, who was asleep with his back to her, rose on tiptoe and kissed the hand which lay under his head. Nicholas turned with a tender smile on his face. "Natasha, Natasha!" came Countess Mary's frightened whisper from the door. "Papa wants to sleep." "No, Mamma, he doesn't want to sleep," said little Natasha with conviction. "He's laughing." Nicholas lowered his legs, rose, and took his daughter in his arms. "Come in, Mary," he said to his wife. She went in and sat down by her husband. "I did not notice him following me," she said timidly. "I just looked in." Holding his little girl with one arm, Nicholas glanced at his wife and, seeing her guilty expression, put his other arm around her and kissed her hair. "May I kiss Mamma?" he asked Natasha. Natasha smiled bashfully. "Again!" she commanded, pointing with a peremptory gesture to the spot where Nicholas had placed the kiss. "I don't know why you think I am cross," said Nicholas, replying to the question he knew was in his wife's mind. "You have no idea how unhappy, how lonely, I feel when you are like that. It always seems to me... " "Mary, don't talk nonsense. You ought to be ashamed of yourself!" he said gaily. "It seems to be that you can't love me, that I am so plain... always... and now... in this cond..." "Oh, how absurd you are! It is not beauty that endears, it's love that makes us see beauty. It is only Malvinas and women of that kind who are loved for their beauty. But do I love my wife? I don't love her, but... I don't know how to put it. Without you, or when something comes between us like this, I seem lost and can't do anything. Now do I love my finger? I don't love it, but just try to cut it off!" "I'm not like that myself, but I understand. So you're not angry with me?" "Awfully angry!" he said, smiling and getting up. And smoothing his hair he began to pace the room. "Do you know, Mary, what I've been thinking?" he began, immediately thinking aloud in his wife's presence now that they had made it up. He did not ask if she was ready to listen to him. He did not care. A thought had occurred to him and so it belonged to her also. And he told her of his intention to persuade Pierre to stay with them till spring. Countess Mary listened till he had finished, made some remark, and in her turn began thinking aloud. Her thoughts were about the children. "You can see the woman in her already," she said in French, pointing to little Natasha. "You reproach us women with being illogical. Here is our logic. I say: 'Papa wants to sleep!' but she says, 'No, he's laughing.' And she was right," said Countess Mary with a happy smile. "Yes, yes." And Nicholas, taking his little daughter in his strong hand, lifted her high, placed her on his shoulder, held her by the legs, and paced the room with her. There was an expression of carefree happiness on the faces of both father and daughter. "But you know you may be unfair. You are too fond of this one," his wife whispered in French. "Yes, but what am I to do?... I try not to show..." At that moment they heard the sound of the door pulley and footsteps in the hall and anteroom, as if someone had arrived. "Somebody has come." "I am sure it is Pierre. I will go and see," said Countess Mary and left the room. In her absence Nicholas allowed himself to give his little daughter a gallop round the room. Out of breath, he took the laughing child quickly from his shoulder and pressed her to his heart. His capers reminded him of dancing, and looking at the child's round happy little face he thought of what she would be like when he was an old man, taking her into society and dancing the mazurka with her as his old father had danced Daniel Cooper with his daughter. "It is he, it is he, Nicholas!" said Countess Mary, re-entering the room a few minutes later. "Now our Natasha has come to life. You should have seen her ecstasy, and how he caught it for having stayed away so long. Well, come along now, quick, quick! It's time you two were parted," she added, looking smilingly at the little girl who clung to her father. Nicholas went out holding the child by the hand. Countess Mary remained in the sitting room. "I should never, never have believed that one could be so happy," she whispered to herself. A smile lit up her face but at the same time she sighed, and her deep eyes expressed a quiet sadness as though she felt, through her happiness, that there is another sort of happiness unattainable in this life and of which she involuntarily thought at that instant. CHAPTER X Natasha had married in the early spring of 1813, and in 1820 already had three daughters besides a son for whom she had longed and whom she was now nursing. She had grown stouter and broader, so that it was difficult to recognize in this robust, motherly woman the slim, lively Natasha of former days. Her features were more defined and had a calm, soft, and serene expression. In her face there was none of the ever-glowing animation that had formerly burned there and constituted its charm. Now her face and body were of all that one saw, and her soul was not visible at all. All that struck the eye was a strong, handsome, and fertile woman. The old fire very rarely kindled in her face now. That happened only when, as was the case that day, her husband returned home, or a sick child was convalescent, or when she and Countess Mary spoke of Prince Andrew (she never mentioned him to her husband, who she imagined was jealous of Prince Andrew's memory), or on the rare occasions when something happened to induce her to sing, a practice she had quite abandoned since her marriage. At the rare moments when the old fire did kindle in her handsome, fully developed body she was even more attractive than in former days. Since their marriage Natasha and her husband had lived in Moscow, in Petersburg, on their estate near Moscow, or with her mother, that is to say, in Nicholas' house. The young Countess Bezukhova was not often seen in society, and those who met her there were not pleased with her and found her neither attractive nor amiable. Not that Natasha liked solitude--she did not know whether she liked it or not, she even thought that she did not--but with her pregnancies, her confinements, the nursing of her children, and sharing every moment of her husband's life, she had demands on her time which could be satisfied only by renouncing society. All who had known Natasha before her marriage wondered at the change in her as at something extraordinary. Only the old countess with her maternal instinct had realized that all Natasha's outbursts had been due to her need of children and a husband--as she herself had once exclaimed at Otradnoe not so much in fun as in earnest--and her mother was now surprised at the surprise expressed by those who had never understood Natasha, and she kept saying that she had always known that Natasha would make an exemplary wife and mother. "Only she lets her love of her husband and children overflow all bounds," said the countess, "so that it even becomes absurd." Natasha did not follow the golden rule advocated by clever folk, especially by the French, which says that a girl should not let herself go when she marries, should not neglect her accomplishments, should be even more careful of her appearance than when she was unmarried, and should fascinate her husband as much as she did before he became her husband. Natasha on the contrary had at once abandoned all her witchery, of which her singing had been an unusually powerful part. She gave it up just because it was so powerfully seductive. She took no pains with her manners or with of speech, or with her toilet, or to show herself to her husband in her most becoming attitudes, or to avoid inconveniencing him by being too exacting. She acted in contradiction to all those rules. She felt that the allurements instinct had formerly taught her to use would now be merely ridiculous in the eyes of her husband, to whom she had from the first moment given herself up entirely--that is, with her whole soul, leaving no corner of it hidden from him. She felt that her unity with her husband was not maintained by the poetic feelings that had attracted him to her, but by something else--indefinite but firm as the bond between her own body and soul. To fluff out her curls, put on fashionable dresses, and sing romantic songs to fascinate her husband would have seemed as strange as to adorn herself to attract herself. To adorn herself for others might perhaps have been agreeable--she did not know--but she had no time at all for it. The chief reason for devoting no time either to singing, to dress, or to choosing her words was that she really had no time to spare for these things. We know that man has the faculty of becoming completely absorbed in a subject however trivial it may be, and that there is no subject so trivial that it will not grow to infinite proportions if one's entire attention is devoted to it. The subject which wholly engrossed Natasha's attention was her family: that is, her husband whom she had to keep so that he should belong entirely to her and to the home, and the children whom she had to bear, bring into the world, nurse, and bring up. And the deeper she penetrated, not with her mind only but with her whole soul, her whole being, into the subject that absorbed her, the larger did that subject grow and the weaker and more inadequate did her powers appear, so that she concentrated them wholly on that one thing and yet was unable to accomplish all that she considered necessary. There were then as now conversations and discussions about women's rights, the relations of husband and wife and their freedom and rights, though these themes were not yet termed questions as they are now; but these topics were not merely uninteresting to Natasha, she positively did not understand them. These questions, then as now, existed only for those who see nothing in marriage but the pleasure married people get from one another, that is, only the beginnings of marriage and not its whole significance, which lies in the family. Discussions and questions of that kind, which are like the question of how to get the greatest gratification from one's dinner, did not then and do not now exist for those for whom the purpose of a dinner is the nourishment it affords; and the purpose of marriage is the family. If the purpose of dinner is to nourish the body, a man who eats two dinners at once may perhaps get more enjoyment but will not attain his purpose, for his stomach will not digest the two dinners. If the purpose of marriage is the family, the person who wishes to have many wives or husbands may perhaps obtain much pleasure, but in that case will not have a family. If the purpose of food is nourishment and the purpose of marriage is the family, the whole question resolves itself into not eating more than one can digest, and not having more wives or husbands than are needed for the family--that is, one wife or one husband. Natasha needed a husband. A husband was given her and he gave her a family. And she not only saw no need of any other or better husband, but as all the powers of her soul were intent on serving that husband and family, she could not imagine and saw no interest in imagining how it would be if things were different. Natasha did not care for society in general, but prized the more the society of her relatives--Countess Mary, and her brother, her mother, and Sonya. She valued the company of those to whom she could come striding disheveled from the nursery in her dressing gown, and with joyful face show a yellow instead of a green stain on baby's napkin, and from whom she could hear reassuring words to the effect that baby was much better. To such an extent had Natasha let herself go that the way she dressed and did her hair, her ill-chosen words, and her jealousy- she was jealous of Sonya, of the governess, and of every woman, pretty or plain--were habitual subjects of jest to those about her. The general opinion was that Pierre was under his wife's thumb, which was really true. From the very first days of their married life Natasha had announced her demands. Pierre was greatly surprised by his wife's view, to him a perfectly novel one, that every moment of his life belonged to her and to the family. His wife's demands astonished him, but they also flattered him, and he submitted to them. Pierre's subjection consisted in the fact that he not only dared not flirt with, but dared not even speak smilingly to, any other woman; did not dare dine at the Club as a pastime, did not dare spend money a whim, and did not dare absent himself for any length of time, except on business--in which his wife included his intellectual pursuits, which she did not in the least understand but to which she attributed great importance. To make up for this, at home Pierre had the right to regulate his life and that of the whole family exactly as he chose. At home Natasha placed herself in the position of a slave to her husband, and the whole household went on tiptoe when he was occupied--that is, was reading or writing in his study. Pierre had but to show a partiality for anything to get just what he liked done always. He had only to express a wish and Natasha would jump up and run to fulfill it. The entire household was governed according to Pierre's supposed orders, that is, by his wishes which Natasha tried to guess. Their way of life and place of residence, their acquaintances and ties, Natasha's occupations, the children's upbringing, were all selected not merely with regard to Pierre's expressed wishes, but to what Natasha from the thoughts he expressed in conversation supposed his wishes to be. And she deduced the essentials of his wishes quite correctly, and having once arrived at them clung to them tenaciously. When Pierre himself wanted to change his mind she would fight him with his own weapons. Thus in a time of trouble ever memorable to him after the birth of their first child who was delicate, when they had to change the wet nurse three times and Natasha fell ill from despair, Pierre one day told her of Rousseau's view, with which he quite agreed, that to have a wet nurse is unnatural and harmful. When her next baby was born, despite the opposition of her mother, the doctors, and even of her husband himself--who were all vigorously opposed to her nursing her baby herself, a thing then unheard of and considered injurious- she insisted on having her own way, and after that nursed all her babies herself. It very often happened that in a moment of irritation husband and wife would have a dispute, but long afterwards Pierre to his surprise and delight would find in his wife's ideas and actions the very thought against which she had argued, but divested of everything superfluous that in the excitement of the dispute he had added when expressing his opinion. After seven years of marriage Pierre had the joyous and firm consciousness that he was not a bad man, and he felt this because he saw himself reflected in his wife. He felt the good and bad within himself inextricably mingled and overlapping. But only what was really good in him was reflected in his wife, all that was not quite good was rejected. And this was not the result of logical reasoning but was a direct and mysterious reflection. CHAPTER XI Two months previously when Pierre was already staying with the Rostovs he had received a letter from Prince Theodore, asking him to come to Petersburg to confer on some important questions that were being discussed there by a society of which Pierre was one of the principal founders. On reading that letter (she always read her husband's letters) Natasha herself suggested that he should go to Petersburg, though she would feel his absence very acutely. She attributed immense importance to all her husband's intellectual and abstract interests though she did not understand them, and she always dreaded being a hindrance to him in such matters. To Pierre's timid look of inquiry after reading the letter she replied by asking him to go, but to fix a definite date for his return. He was given four weeks' leave of absence. Ever since that leave of absence had expired, more than a fortnight before, Natasha had been in a constant state of alarm, depression, and irritability. Denisov, now a general on the retired list and much dissatisfied with the present state of affairs, had arrived during that fortnight. He looked at Natasha with sorrow and surprise as at a bad likeness of a person once dear. A dull, dejected look, random replies, and talk about the nursery was all he saw and heard from his former enchantress. Natasha was sad and irritable all that time, especially when her mother, her brother, Sonya, or Countess Mary in their efforts to console her tried to excuse Pierre and suggested reasons for his delay in returning. "It's all nonsense, all rubbish--those discussions which lead to nothing and all those idiotic societies!" Natasha declared of the very affairs in the immense importance of which she firmly believed. And she would go to the nursery to nurse Petya, her only boy. No one else could tell her anything so comforting or so reasonable as this little three-month-old creature when he lay at her breast and she was conscious of the movement of his lips and the snuffling of his little nose. That creature said: "You are angry, you are jealous, you would like to pay him out, you are afraid--but here am I! And I am he..." and that was unanswerable. It was more than true. During that fortnight of anxiety Natasha resorted to the baby for comfort so often, and fussed over him so much, that she overfed him and he fell ill. She was terrified by his illness, and yet that was just what she needed. While attending to him she bore the anxiety about her husband more easily. She was nursing her boy when the sound of Pierre's sleigh was heard at the front door, and the old nurse--knowing how to please her mistress--entered the room inaudibly but hurriedly and with a beaming face. "Has he come?" Natasha asked quickly in a whisper, afraid to move lest she should rouse the dozing baby. "He's come, ma'am," whispered the nurse. The blood rushed to Natasha's face and her feet involuntarily moved, but she could not jump up and run out. The baby again opened his eyes and looked at her. "You're here?" he seemed to be saying, and again lazily smacked his lips. Cautiously withdrawing her breast, Natasha rocked him a little, handed him to the nurse, and went with rapid steps toward the door. But at the door she stopped as if her conscience reproached her for having in her joy left the child too soon, and she glanced round. The nurse with raised elbows was lifting the infant over the rail of his cot. "Go, ma'am! Don't worry, go!" she whispered, smiling, with the kind of familiarity that grows up between a nurse and her mistress. Natasha ran with light footsteps to the anteroom. Denisov, who had come out of the study into the dancing room with his pipe, now for the first time recognized the old Natasha. A flood of brilliant, joyful light poured from her transfigured face. "He's come!" she exclaimed as she ran past, and Denisov felt that he too was delighted that Pierre, whom he did not much care for, had returned. On reaching the vestibule Natasha saw a tall figure in a fur coat unwinding his scarf. "It's he! It's really he! He has come!" she said to herself, and rushing at him embraced him, pressed his head to her breast, and then pushed him back and gazed at his ruddy, happy face, covered with hoarfrost. "Yes, it is he, happy and contented..." Then all at once she remembered the tortures of suspense she had experienced for the last fortnight, and the joy that had lit up her face vanished; she frowned and overwhelmed Pierre with a torrent of reproaches and angry words. "Yes, it's all very well for you. You are pleased, you've had a good time.... But what about me? You might at least have shown consideration for the children. I am nursing and my milk was spoiled.... Petya was at death's door. But you were enjoying yourself. Yes, enjoying..." Pierre knew he was not to blame, for he could not have come sooner; he knew this outburst was unseemly and would blow over in a minute or two; above all he knew that he himself was bright and happy. He wanted to smile but dared not even think of doing so. He made a piteous, frightened face and bent down. "I could not, on my honor. But how is Petya?" "All right now. Come along! I wonder you're not ashamed! If only you could see what I was like without you, how I suffered!" "You are well?" "Come, come!" she said, not letting go of his arm. And they went to their rooms. When Nicholas and his wife came to look for Pierre he was in the nursery holding his baby son, who was again awake, on his huge right palm and dandling him. A blissful bright smile was fixed on the baby's broad face with its toothless open mouth. The storm was long since over and there was bright, joyous sunshine on Natasha's face as she gazed tenderly at her husband and child. "And have you talked everything well over with Prince Theodore?" she asked. "Yes, capitally." "You see, he holds it up." (She meant the baby's head.) "But how he did frighten me... You've seen the princess? Is it true she's in love with that..." "Yes, just fancy..." At that moment Nicholas and Countess Mary came in. Pierre with the baby on his hand stooped, kissed them, and replied to their inquiries. But in spite of much that was interesting and had to be discussed, the baby with the little cap on its unsteady head evidently absorbed all his attention. "How sweet!" said Countess Mary, looking at and playing with the baby. "Now, Nicholas," she added, turning to her husband, "I can't understand how it is you don't see the charm of these delicious marvels." "I don't and can't," replied Nicholas, looking coldly at the baby. "A lump of flesh. Come along, Pierre!" "And yet he's such an affectionate father," said Countess Mary, vindicating her husband, "but only after they are a year old or so..." "Now, Pierre nurses them splendidly," said Natasha. "He says his hand is just made for a baby's seat. Just look!" "Only not for this..." Pierre suddenly exclaimed with a laugh, and shifting the baby he gave him to the nurse. CHAPTER XII As in every large household, there were at Bald Hills several perfectly distinct worlds which merged into one harmonious whole, though each retained its own peculiarities and made concessions to the others. Every event, joyful or sad, that took place in that house was important to all these worlds, but each had its own special reasons to rejoice or grieve over that occurrence independently of the others. For instance, Pierre's return was a joyful and important event and they all felt it to be so. The servants--the most reliable judges of their masters because they judge not by their conversation or expressions of feeling but by their acts and way of life--were glad of Pierre's return because they knew that when he was there Count Nicholas would cease going every day to attend to the estate, and would be in better spirits and temper, and also because they would all receive handsome presents for the holidays. The children and their governesses were glad of Pierre's return because no one else drew them into the social life of the household as he did. He alone could play on the clavichord that ecossaise (his only piece) to which, as he said, all possible dances could be danced, and they felt sure he had brought presents for them all. Young Nicholas, now a slim lad of fifteen, delicate and intelligent, with curly light-brown hair and beautiful eyes, was delighted because Uncle Pierre as he called him was the object of his rapturous and passionate affection. No one had instilled into him this love for Pierre whom he saw only occasionally. Countess Mary who had brought him up had done her utmost to make him love her husband as she loved him, and little Nicholas did love his uncle, but loved him with just a shade of contempt. Pierre, however, he adored. He did not want to be an hussar or a Knight of St. George like his uncle Nicholas; he wanted to be learned, wise, and kind like Pierre. In Pierre's presence his face always shone with pleasure and he flushed and was breathless when Pierre spoke to him. He did not miss a single word he uttered, and would afterwards, with Dessalles or by himself, recall and reconsider the meaning of everything Pierre had said. Pierre's past life and his unhappiness prior to 1812 (of which young Nicholas had formed a vague poetic picture from some words he had overheard), his adventures in Moscow, his captivity, Platon Karataev (of whom he had heard from Pierre), his love for Natasha (of whom the lad was also particularly fond), and especially Pierre's friendship with the father whom Nicholas could not remember--all this made Pierre in his eyes a hero and a saint. From broken remarks about Natasha and his father, from the emotion with which Pierre spoke of that dead father, and from the careful, reverent tenderness with which Natasha spoke of him, the boy, who was only just beginning to guess what love is, derived the notion that his father had loved Natasha and when dying had left her to his friend. But the father whom the boy did not remember appeared to him a divinity who could not be pictured, and of whom he never thought without a swelling heart and tears of sadness and rapture. So the boy also was happy that Pierre had arrived. The guests welcomed Pierre because he always helped to enliven and unite any company he was in. The grown-up members of the family, not to mention his wife, were pleased to have back a friend whose presence made life run more smoothly and peacefully. The old ladies were pleased with the presents he brought them, and especially that Natasha would now be herself again. Pierre felt the different outlooks of these various worlds and made haste to satisfy all their expectations. Though the most absent-minded and forgetful of men, Pierre, with the aid of a list his wife drew up, had now bought everything, not forgetting his mother--and brother-in-law's commissions, nor the dress material for a present to Belova, nor toys for his wife's nephews. In the early days of his marriage it had seemed strange to him that his wife should expect him not to forget to procure all the things he undertook to buy, and he had been taken aback by her serious annoyance when on his first trip he forgot everything. But in time he grew used to this demand. Knowing that Natasha asked nothing for herself, and gave him commissions for others only when he himself had offered to undertake them, he now found an unexpected and childlike pleasure in this purchase of presents for everyone in the house, and never forgot anything. If he now incurred Natasha's censure it was only for buying too many and too expensive things. To her other defects (as most people thought them, but which to Pierre were qualities) of untidiness and neglect of herself, she now added stinginess. From the time that Pierre began life as a family man on a footing entailing heavy expenditure, he had noticed to his surprise that he spent only half as much as before, and that his affairs--which had been in disorder of late, chiefly because of his first wife's debts- had begun to improve. Life was cheaper because it was circumscribed: that most expensive luxury, the kind of life that can be changed at any moment, was no longer his nor did he wish for it. He felt that his way of life had now been settled once for all till death and that to change it was not in his power, and so that way of life proved economical. With a merry, smiling face Pierre was sorting his purchases. "What do you think of this?" said he, unrolling a piece of stuff like a shopman. Natasha, who was sitting opposite to him with her eldest daughter on her lap, turned her sparkling eyes swiftly from her husband to the things he showed her. "That's for Belova? Excellent!" She felt the quality of the material. "It was a ruble an arshin, I suppose?" Pierre told her the price. "Too dear!" Natasha remarked. "How pleased the children will be and Mamma too! Only you need not have bought me this," she added, unable to suppress a smile as she gazed admiringly at a gold comb set with pearls, of a kind then just coming into fashion. "Adele tempted me: she kept on telling me to buy it," returned Pierre. "When am I to wear it?" and Natasha stuck it in her coil of hair. "When I take little Masha into society? Perhaps they will be fashionable again by then. Well, let's go now." And collecting the presents they went first to the nursery and then to the old countess' rooms. The countess was sitting with her companion Belova, playing grand-patience as usual, when Pierre and Natasha came into the drawing room with parcels under their arms. The countess was now over sixty, was quite gray, and wore a cap with a frill that surrounded her face. Her face had shriveled, her upper lip had sunk in, and her eyes were dim. After the deaths of her son and husband in such rapid succession, she felt herself a being accidentally forgotten in this world and left without aim or object for her existence. She ate, drank, slept, or kept awake, but did not live. Life gave her no new impressions. She wanted nothing from life but tranquillity, and that tranquillity only death could give her. But until death came she had to go on living, that is, to use her vital forces. A peculiarity one sees in very young children and very old people was particularly evident in her. Her life had no external aims--only a need to exercise her various functions and inclinations was apparent. She had to eat, sleep, think, speak, weep, work, give vent to her anger, and so on, merely because she had a stomach, a brain, muscles, nerves, and a liver. She did these things not under any external impulse as people in the full vigor of life do, when behind the purpose for which they strive that of exercising their functions remains unnoticed. She talked only because she physically needed to exercise her tongue and lungs. She cried as a child does, because her nose had to be cleared, and so on. What for people in their full vigor is an aim was for her evidently merely a pretext. Thus in the morning--especially if she had eaten anything rich the day before--she felt a need of being angry and would choose as the handiest pretext Belova's deafness. She would begin to say something to her in a low tone from the other end of the room. "It seems a little warmer today, my dear," she would murmur. And when Belova replied: "Oh yes, they've come," she would mutter angrily: "O Lord! How stupid and deaf she is!" Another pretext would be her snuff, which would seem too dry or too damp or not rubbed fine enough. After these fits of irritability her face would grow yellow, and her maids knew by infallible symptoms when Belova would again be deaf, the snuff damp, and the countess' face yellow. Just as she needed to work off her spleen so she had sometimes to exercise her still-existing faculty of thinking--and the pretext for that was a game of patience. When she needed to cry, the deceased count would be the pretext. When she wanted to be agitated, Nicholas and his health would be the pretext, and when she felt a need to speak spitefully, the pretext would be Countess Mary. When her vocal organs needed exercise, which was usually toward seven o'clock when she had had an after-dinner rest in a darkened room, the pretext would be the retelling of the same stories over and over again to the same audience. The old lady's condition was understood by the whole household though no one ever spoke of it, and they all made every possible effort to satisfy her needs. Only by a rare glance exchanged with a sad smile between Nicholas, Pierre, Natasha, and Countess Mary was the common understanding of her condition expressed. But those glances expressed something more: they said that she had played her part in life, that what they now saw was not her whole self, that we must all become like her, and that they were glad to yield to her, to restrain themselves for this once precious being formerly as full of life as themselves, but now so much to be pitied. "Memento mori," said these glances. Only the really heartless, the stupid ones of that household, and the little children failed to understand this and avoided her. CHAPTER XIII When Pierre and his wife entered the drawing room the countess was in one of her customary states in which she needed the mental exertion of playing patience, and so--though by force of habit she greeted him with the words she always used when Pierre or her son returned after an absence: "High time, my dear, high time! We were all weary of waiting for you. Well, thank God!" and received her presents with another customary remark: "It's not the gift that's precious, my dear, but that you give it to me, an old woman..."--yet it was evident that she was not pleased by Pierre's arrival at that moment when it diverted her attention from the unfinished game. She finished her game of patience and only then examined the presents. They consisted of a box for cards, of splendid workmanship, a bright-blue Sevres tea cup with shepherdesses depicted on it and with a lid, and a gold snuffbox with the count's portrait on the lid which Pierre had had done by a miniaturist in Petersburg. The countess had long wished for such a box, but as she did not want to cry just then she glanced indifferently at the portrait and gave her attention chiefly to the box for cards. "Thank you, my dear, you have cheered me up," said she as she always did. "But best of all you have brought yourself back--for I never saw anything like it, you ought to give your wife a scolding! What are we to do with her? She is like a mad woman when you are away. Doesn't see anything, doesn't remember anything," she went on, repeating her usual phrases. "Look, Anna Timofeevna," she added to her companion, "see what a box for cards my son has brought us!" Belova admired the presents and was delighted with her dress material. Though Pierre, Natasha, Nicholas, Countess Mary, and Denisov had much to talk about that they could not discuss before the old countess--not that anything was hidden from her, but because she had dropped so far behindhand in many things that had they begun to converse in her presence they would have had to answer inopportune questions and to repeat what they had already told her many times: that so-and-so was dead and so-and-so was married, which she would again be unable to remember--yet they sat at tea round the samovar in the drawing room from habit, and Pierre answered the countess' questions as to whether Prince Vasili had aged and whether Countess Mary Alexeevna had sent greetings and still thought of them, and other matters that interested no one and to which she herself was indifferent. Conversation of this kind, interesting to no one yet unavoidable, continued all through teatime. All the grown-up members of the family were assembled near the round tea table at which Sonya presided beside the samovar. The children with their tutors and governesses had had tea and their voices were audible from the next room. At tea all sat in their accustomed places: Nicholas beside the stove at a small table where his tea was handed to him; Milka, the old gray borzoi bitch (daughter of the first Milka), with a quite gray face and large black eyes that seemed more prominent than ever, lay on the armchair beside him; Denisov, whose curly hair, mustache, and whiskers had turned half gray, sat beside countess Mary with his general's tunic unbuttoned; Pierre sat between his wife and the old countess. He spoke of what he knew might interest the old lady and that she could understand. He told her of external social events and of the people who had formed the circle of her contemporaries and had once been a real, living, and distinct group, but who were now for the most part scattered about the world and like herself were garnering the last ears of the harvests they had sown in earlier years. But to the old countess those contemporaries of hers seemed to be the only serious and real society. Natasha saw by Pierre's animation that his visit had been interesting and that he had much to tell them but dare not say it before the old countess. Denisov, not being a member of the family, did not understand Pierre's caution and being, as a malcontent, much interested in what was occurring in Petersburg, kept urging Pierre to tell them about what had happened in the Semenovsk regiment, then about Arakcheev, and then about the Bible Society. Once or twice Pierre was carried away and began to speak of these things, but Nicholas and Natasha always brought him back to the health of Prince Ivan and Countess Mary Alexeevna. "Well, and all this idiocy--Gossner and Tatawinova?" Denisov asked. "Is that weally still going on?" "Going on?" Pierre exclaimed. "Why more than ever! The Bible Society is the whole government now!" "What is that, mon cher ami?" asked the countess, who had finished her tea and evidently needed a pretext for being angry after her meal. "What are you saying about the government? I don't understand." "Well, you know, Maman," Nicholas interposed, knowing how to translate things into his mother's language, "Prince Alexander Golitsyn has founded a society and in consequence has great influence, they say." "Arakcheev and Golitsyn," incautiously remarked Pierre, "are now the whole government! And what a government! They see treason everywhere and are afraid of everything." "Well, and how is Prince Alexander to blame? He is a most estimable man. I used to meet him at Mary Antonovna's," said the countess in an offended tone; and still more offended that they all remained silent, she went on: "Nowadays everyone finds fault. A Gospel Society! Well, and what harm is there in that?" and she rose (everybody else got up too) and with a severe expression sailed back to her table in the sitting room. The melancholy silence that followed was broken by the sounds of the children's voices and laughter from the next room. Evidently some jolly excitement was going on there. "Finished, finished!" little Natasha's gleeful yell rose above them all. Pierre exchanged glances with Countess Mary and Nicholas (Natasha he never lost sight of) and smiled happily. "That's delightful music!" said he. "It means that Anna Makarovna has finished her stocking," said Countess Mary. "Oh, I'll go and see," said Pierre, jumping up. "You know," he added, stopping at the door, "why I'm especially fond of that music? It is always the first thing that tells me all is well. When I was driving here today, the nearer I got to the house the more anxious I grew. As I entered the anteroom I heard Andrusha's peals of laughter and that meant that all was well." "I know! I know that feeling," said Nicholas. "But I mustn't go there--those stockings are to be a surprise for me." Pierre went to the children, and the shouting and laughter grew still louder. "Come, Anna Makarovna," Pierre's voice was heard saying, "come here into the middle of the room and at the word of command, 'One, two,' and when I say 'three'... You stand here, and you in my arms- well now! One, two!..." said Pierre, and a silence followed: "three!" and a rapturously breathless cry of children's voices filled the room. "Two, two!" they shouted. This meant two stockings, which by a secret process known only to herself Anna Makarovna used to knit at the same time on the same needles, and which, when they were ready, she always triumphantly drew, one out of the other, in the children's presence. CHAPTER XIV Soon after this the children came in to say good night. They kissed everyone, the tutors and governesses made their bows, and they went out. Only young Nicholas and his tutor remained. Dessalles whispered to the boy to come downstairs. "No, Monsieur Dessalles, I will ask my aunt to let me stay," replied Nicholas Bolkonski also in a whisper. "Ma tante, please let me stay," said he, going up to his aunt. His face expressed entreaty, agitation, and ecstasy. Countess Mary glanced at him and turned to Pierre. "When you are here he can't tear himself away," she said. "I will bring him to you directly, Monsieur Dessalles. Good night!" said Pierre, giving his hand to the Swiss tutor, and he turned to young Nicholas with a smile. "You and I haven't seen anything of one another yet... How like he is growing, Mary!" he added, addressing Countess Mary. "Like my father?" asked the boy, flushing crimson and looking up at Pierre with bright, ecstatic eyes. Pierre nodded, and went on with what he had been saying when the children had interrupted. Countess Mary sat down doing woolwork; Natasha did not take her eyes off her husband. Nicholas and Denisov rose, asked for their pipes, smoked, went to fetch more tea from Sonya--who sat weary but resolute at the samovar--and questioned Pierre. The curly-headed, delicate boy sat with shining eyes unnoticed in a corner, starting every now and then and muttering something to himself, and evidently experiencing a new and powerful emotion as he turned his curly head, with his thin neck exposed by his turn-down collar, toward the place where Pierre sat. The conversation turned on the contemporary gossip about those in power, in which most people see the chief interest of home politics. Denisov, dissatisfied with the government on account of his own disappointments in the service, heard with pleasure of the things done in Petersburg which seemed to him stupid, and made forcible and sharp comments on what Pierre told them. "One used to have to be a German--now one must dance with Tatawinova and Madame Kwudener, and wead Ecka'tshausen and the bwethwen. Oh, they should let that fine fellow Bonaparte lose--he'd knock all this nonsense out of them! Fancy giving the command of the Semenov wegiment to a fellow like that Schwa'tz!" he cried. Nicholas, though free from Denisov's readiness to find fault with everything, also thought that discussion of the government was a very serious and weighty matter, and the fact that A had been appointed Minister of This and B Governor General of That, and that the Emperor had said so-and-so and this minister so-and-so, seemed to him very important. And so he thought it necessary to take an interest in these things and to question Pierre. The questions put by these two kept the conversation from changing its ordinary character of gossip about the higher government circles. But Natasha, knowing all her husband's ways and ideas, saw that he had long been wishing but had been unable to divert the conversation to another channel and express his own deeply felt idea for the sake of which he had gone to Petersburg to consult with his new friend Prince Theodore, and she helped him by asking how his affairs with Prince Theodore had gone. "What was it about?" asked Nicholas. "Always the same thing," said Pierre, looking round at his listeners. "Everybody sees that things are going so badly that they cannot be allowed to go on so and that it is the duty of all decent men to counteract it as far as they can." "What can decent men do?" Nicholas inquired, frowning slightly. "What can be done?" "Why, this..." "Come into my study," said Nicholas. Natasha, who had long expected to be fetched to nurse her baby, now heard the nurse calling her and went to the nursery. Countess Mary followed her. The men went into the study and little Nicholas Bolkonski followed them unnoticed by his uncle and sat down at the writing table in a shady corner by the window. "Well, what would you do?" asked Denisov. "Always some fantastic schemes," said Nicholas. "Why this," began Pierre, not sitting down but pacing the room, sometimes stopping short, gesticulating, and lisping: "the position in Petersburg is this: the Emperor does not look into anything. He has abandoned himself altogether to this mysticism" (Pierre could not tolerate mysticism in anyone now). "He seeks only for peace, and only these people sans foi ni loi* can give it him--people who recklessly hack at and strangle everything--Magnitski, Arakcheev, and tutti quanti.... You will agree that if you did not look after your estates yourself but only wanted a quiet life, the harsher your steward was the more readily your object might be attained," he said to Nicholas. *Without faith or law. "Well, what does that lead up to?" said Nicholas. "Well, everything is going to ruin! Robbery in the law courts, in the army nothing but flogging, drilling, and Military Settlements; the people are tortured, enlightenment is suppressed. All that is young and honest is crushed! Everyone sees that this cannot go on. Everything is strained to such a degree that it will certainly break," said Pierre (as those who examine the actions of any government have always said since governments began). "I told them just one thing in Petersburg." "Told whom?" "Well, you know whom," said Pierre, with a meaning glance from under his brows. "Prince Theodore and all those. To encourage culture and philanthropy is all very well of course. The aim is excellent but in the present circumstances something else is needed." At that moment Nicholas noticed the presence of his nephew. His face darkened and he went up to the boy. "Why are you here?" "Why? Let him be," said Pierre, taking Nicholas by the arm and continuing. "That is not enough, I told them. Something else is needed. When you stand expecting the overstrained string to snap at any moment, when everyone is expecting the inevitable catastrophe, as many as possible must join hands as closely as they can to withstand the general calamity. Everything that is young and strong is being enticed away and depraved. One is lured by women, another by honors, a third by ambition or money, and they go over to that camp. No independent men, such as you or I, are left. What I say is widen the scope of our society, let the mot d'ordre be not virtue alone but independence and action as well!" Nicholas, who had left his nephew, irritably pushed up an armchair, sat down in it, and listened to Pierre, coughing discontentedly and frowning more and more. "But action with what aim?" he cried. "And what position will you adopt toward the government?" "Why, the position of assistants. The society need not be secret if the government allows it. Not merely is it not hostile to government, but it is a society of true conservatives--a society of gentlemen in the full meaning of that word. It is only to prevent some Pugachev or other from killing my children and yours, and Arakcheev from sending me off to some Military Settlement. We join hands only for the public welfare and the general safety." "Yes, but it's a secret society and therefore a hostile and harmful one which can only cause harm." "Why? Did the Tugendbund which saved Europe" (they did not then venture to suggest that Russia had saved Europe) "do any harm? The Tugendbund is an alliance of virtue: it is love, mutual help... it is what Christ preached on the Cross." Natasha, who had come in during the conversation, looked joyfully at her husband. It was not what he was saying that pleased her--that did not even interest her, for it seemed to her that was all extremely simple and that she had known it a long time (it seemed so to her because she knew that it sprang from Pierre's whole soul), but it was his animated and enthusiastic appearance that made her glad. The boy with the thin neck stretching out from the turn-down collar- whom everyone had forgotten--gazed at Pierre with even greater and more rapturous joy. Every word of Pierre's burned into his heart, and with a nervous movement of his fingers he unconsciously broke the sealing wax and quill pens his hands came upon on his uncle's table. "It is not at all what you suppose; but that is what the German Tugendbund was, and what I am proposing." "No, my fwiend! The Tugendbund is all vewy well for the sausage eaters, but I don't understand it and can't even pwonounce it," interposed Denisov in a loud and resolute voice. "I agwee that evewything here is wotten and howwible, but the Tugendbund I don't understand. If we're not satisfied, let us have a bunt of our own. That's all wight. Je suis vot'e homme!"* *"I'm your man." Pierre smiled, Natasha began to laugh, but Nicholas knitted his brows still more and began proving to Pierre that there was no prospect of any great change and that all the danger he spoke of existed only in his imagination. Pierre maintained the contrary, and as his mental faculties were greater and more resourceful, Nicholas felt himself cornered. This made him still angrier, for he was fully convinced, not by reasoning but by something within him stronger than reason, of the justice of his opinion. "I will tell you this," he said, rising and trying with nervously twitching fingers to prop up his pipe in a corner, but finally abandoning the attempt. "I can't prove it to you. You say that everything here is rotten and that an overthrow is coming: I don't see it. But you also say that our oath of allegiance is a conditional matter, and to that I reply: 'You are my best friend, as you know, but if you formed a secret society and began working against the government--be it what it may--I know it is my duty to obey the government. And if Arakcheev ordered me to lead a squadron against you and cut you down, I should not hesitate an instant, but should do it.' And you may argue about that as you like!" An awkward silence followed these words. Natasha was the first to speak, defending her husband and attacking her brother. Her defense was weak and inapt but she attained her object. The conversation was resumed, and no longer in the unpleasantly hostile tone of Nicholas' last remark. When they all got up to go in to supper, little Nicholas Bolkonski went up to Pierre, pale and with shining, radiant eyes. "Uncle Pierre, you... no... If Papa were alive... would he agree with you?" he asked. And Pierre suddenly realized what a special, independent, complex, and powerful process of thought and feeling must have been going on in this boy during that conversation, and remembering all he had said he regretted that the lad should have heard him. He had, however, to give him an answer. "Yes, I think so," he said reluctantly, and left the study. The lad looked down and seemed now for the first time to notice what he had done to the things on the table. He flushed and went up to Nicholas. "Uncle, forgive me, I did that... unintentionally," he said, pointing to the broken sealing wax and pens. Nicholas started angrily. "All right, all right," he said, throwing the bits under the table. And evidently suppressing his vexation with difficulty, he turned away from the boy. "You ought not to have been here at all," he said. CHAPTER XV The conversation at supper was not about politics or societies, but turned on the subject Nicholas liked best--recollections of 1812. Denisov started these and Pierre was particularly agreeable and amusing about them. The family separated on the most friendly terms. After supper Nicholas, having undressed in his study and given instructions to the steward who had been waiting for him, went to the bedroom in his dressing gown, where he found his wife still at her table, writing. "What are you writing, Mary?" Nicholas asked. Countess Mary blushed. She was afraid that what she was writing would not be understood or approved by her husband. She had wanted to conceal what she was writing from him, but at the same time was glad he had surprised her at it and that she would now have to tell him. "A diary, Nicholas," she replied, handing him a blue exercise book filled with her firm, bold writing. "A diary?" Nicholas repeated with a shade of irony, and he took up the book. It was in French. December 4. Today when Andrusha (her eldest boy) woke up he did not wish to dress and Mademoiselle Louise sent for me. He was naughty and obstinate. I tried threats, but he only grew angrier. Then I took the matter in hand: I left him alone and began with nurse's help to get the other children up, telling him that I did not love him. For a long time he was silent, as if astonished, then he jumped out of bed, ran to me in his shirt, and sobbed so that I could not calm him for a long time. It was plain that what troubled him most was that he had grieved me. Afterwards in the evening when I gave him his ticket, he again began crying piteously and kissing me. One can do anything with him by tenderness. "What is a 'ticket'?" Nicholas inquired. "I have begun giving the elder ones marks every evening, showing how they have behaved." Nicholas looked into the radiant eyes that were gazing at him, and continued to turn over the pages and read. In the diary was set down everything in the children's lives that seemed noteworthy to their mother as showing their characters or suggesting general reflections on educational methods. They were for the most part quite insignificant trifles, but did not seem so to the mother or to the father either, now that he read this diary about his children for the first time. Under the date "5" was entered: Mitya was naughty at table. Papa said he was to have no pudding. He had none, but looked so unhappily and greedily at the others while they were eating! I think that punishment by depriving children of sweets only develops their greediness. Must tell Nicholas this. Nicholas put down the book and looked at his wife. The radiant eyes gazed at him questioningly: would he approve or disapprove of her diary? There could be no doubt not only of his approval but also of his admiration for his wife. Perhaps it need not be done so pedantically, thought Nicholas, or even done at all, but this untiring, continual spiritual effort of which the sole aim was the children's moral welfare delighted him. Had Nicholas been able to analyze his feelings he would have found that his steady, tender, and proud love of his wife rested on his feeling of wonder at her spirituality and at the lofty moral world, almost beyond his reach, in which she had her being. He was proud of her intelligence and goodness, recognized his own insignificance beside her in the spiritual world, and rejoiced all the more that she with such a soul not only belonged to him but was part of himself. "I quite, quite approve, my dearest!" said he with a significant look, and after a short pause he added: "And I behaved badly today. You weren't in the study. We began disputing--Pierre and I--and I lost my temper. But he is impossible: such a child! I don't know what would become of him if Natasha didn't keep him in hand.... Have you any idea why he went to Petersburg? They have formed..." "Yes, I know," said Countess Mary. "Natasha told me." "Well, then, you know," Nicholas went on, growing hot at the mere recollection of their discussion, "he wanted to convince me that it is every honest man's duty to go against the government, and that the oath of allegiance and duty... I am sorry you weren't there. They all fell on me--Denisov and Natasha... Natasha is absurd. How she rules over him! And yet there need only be a discussion and she has no words of her own but only repeats his sayings..." added Nicholas, yielding to that irresistible inclination which tempts us to judge those nearest and dearest to us. He forgot that what he was saying about Natasha could have been applied word for word to himself in relation to his wife. "Yes, I have noticed that," said Countess Mary. "When I told him that duty and the oath were above everything, he started proving goodness knows what! A pity you were not there--what would you have said?" "As I see it you were quite right, and I told Natasha so. Pierre says everybody is suffering, tortured, and being corrupted, and that it is our duty to help our neighbor. Of course he is right there," said Countess Mary, "but he forgets that we have other duties nearer to us, duties indicated to us by God Himself, and that though we might expose ourselves to risks we must not risk our children." "Yes, that's it! That's just what I said to him," put in Nicholas, who fancied he really had said it. "But they insisted on their own view: love of one's neighbor and Christianity--and all this in the presence of young Nicholas, who had gone into my study and broke all my things." "Ah, Nicholas, do you know I am often troubled about little Nicholas," said Countess Mary. "He is such an exceptional boy. I am afraid I neglect him in favor of my own: we all have children and relations while he has no one. He is constantly alone with his thoughts." "Well, I don't think you need reproach yourself on his account. All that the fondest mother could do for her son you have done and are doing for him, and of course I am glad of it. He is a fine lad, a fine lad! This evening he listened to Pierre in a sort of trance, and fancy--as we were going in to supper I looked and he had broken everything on my table to bits, and he told me of it himself at once! I never knew him to tell an untruth. A fine lad, a fine lad!" repeated Nicholas, who at heart was not fond of Nicholas Bolkonski but was always anxious to recognize that he was a fine lad. "Still, I am not the same as his own mother," said Countess Mary. "I feel I am not the same and it troubles me. A wonderful boy, but I am dreadfully afraid for him. It would be good for him to have companions." "Well it won't be for long. Next summer I'll take him to Petersburg," said Nicholas. "Yes, Pierre always was a dreamer and always will be," he continued, returning to the talk in the study which had evidently disturbed him. "Well, what business is it of mine what goes on there--whether Arakcheev is bad, and all that? What business was it of mine when I married and was so deep in debt that I was threatened with prison, and had a mother who could not see or understand it? And then there are you and the children and our affairs. Is it for my own pleasure that I am at the farm or in the office from morning to night? No, but I know I must work to comfort my mother, to repay you, and not to leave the children such beggars as I was." Countess Mary wanted to tell him that man does not live by bread alone and that he attached too much importance to these matters. But she knew she must not say this and that it would be useless to do so. She only took his hand and kissed it. He took this as a sign of approval and a confirmation of his thoughts, and after a few minutes' reflection continued to think aloud. "You know, Mary, today Elias Mitrofanych" (this was his overseer) "came back from the Tambov estate and told me they are already offering eighty thousand rubles for the forest." And with an eager face Nicholas began to speak of the possibility of repurchasing Otradnoe before long, and added: "Another ten years of life and I shall leave the children... in an excellent position." Countess Mary listened to her husband and understood all that he told her. She knew that when he thought aloud in this way he would sometimes ask her what he had been saying, and be vexed if he noticed that she had been thinking about something else. But she had to force herself to attend, for what he was saying did not interest her at all. She looked at him and did not think, but felt, about something different. She felt a submissive tender love for this man who would never understand all that she understood, and this seemed to make her love for him still stronger and added a touch of passionate tenderness. Besides this feeling which absorbed her altogether and hindered her from following the details of her husband's plans, thoughts that had no connection with what he was saying flitted through her mind. She thought of her nephew. Her husband's account of the boy's agitation while Pierre was speaking struck her forcibly, and various traits of his gentle, sensitive character recurred to her mind; and while thinking of her nephew she thought also of her own children. She did not compare them with him, but compared her feeling for them with her feeling for him, and felt with regret that there was something lacking in her feeling for young Nicholas. Sometimes it seemed to her that this difference arose from the difference in their ages, but she felt herself to blame toward him and promised in her heart to do better and to accomplish the impossible- in this life to love her husband, her children, little Nicholas, and all her neighbors, as Christ loved mankind. Countess Mary's soul always strove toward the infinite, the eternal, and the absolute, and could therefore never be at peace. A stern expression of the lofty, secret suffering of a soul burdened by the body appeared on her face. Nicholas gazed at her. "O God! What will become of us if she dies, as I always fear when her face is like that?" thought he, and placing himself before the icon he began to say his evening prayers. CHAPTER XVI Natasha and Pierre, left alone, also began to talk as only a husband and wife can talk, that is, with extraordinary clearness and rapidity, understanding and expressing each other's thoughts in ways contrary to all rules of logic, without premises, deductions, or conclusions, and in a quite peculiar way. Natasha was so used to this kind of talk with her husband that for her it was the surest sign of something being wrong between them if Pierre followed a line of logical reasoning. When he began proving anything, or talking argumentatively and calmly and she, led on by his example, began to do the same, she knew that they were on the verge of a quarrel. From the moment they were alone and Natasha came up to him with wide-open happy eyes, and quickly seizing his head pressed it to her bosom, saying: "Now you are all mine, mine! You won't escape!"--from that moment this conversation began, contrary to all the laws of logic and contrary to them because quite different subjects were talked about at one and the same time. This simultaneous discussion of many topics did not prevent a clear understanding but on the contrary was the surest sign that they fully understood one another. Just as in a dream when all is uncertain, unreasoning, and contradictory, except the feeling that guides the dream, so in this intercourse contrary to all laws of reason, the words themselves were not consecutive and clear but only the feeling that prompted them. Natasha spoke to Pierre about her brother's life and doings, of how she had suffered and lacked life during his own absence, and of how she was fonder than ever of Mary, and how Mary was in every way better than herself. In saying this Natasha was sincere in acknowledging Mary's superiority, but at the same time by saying it she made a demand on Pierre that he should, all the same, prefer her to Mary and to all other women, and that now, especially after having seen many women in Petersburg, he should tell her so afresh. Pierre, answering Natasha's words, told her how intolerable it had been for him to meet ladies at dinners and balls in Petersburg. "I have quite lost the knack of talking to ladies," he said. "It was simply dull. Besides, I was very busy." Natasha looked intently at him and went on: "Mary is so splendid," she said. "How she understands children! It is as if she saw straight into their souls. Yesterday, for instance, Mitya was naughty..." "How like his father he is," Pierre interjected. Natasha knew why he mentioned Mitya's likeness to Nicholas: the recollection of his dispute with his brother-in-law was unpleasant and he wanted to know what Natasha thought of it. "Nicholas has the weakness of never agreeing with anything not generally accepted. But I understand that you value what opens up a fresh line," said she, repeating words Pierre had once uttered. "No, the chief point is that to Nicholas ideas and discussions are an amusement--almost a pastime," said Pierre. "For instance, he is collecting a library and has made it a rule not to buy a new book till he has read what he had already bought--Sismondi and Rousseau and Montesquieu," he added with a smile. "You know how much I..." he began to soften down what he had said; but Natasha interrupted him to show that this was unnecessary. "So you say ideas are an amusement to him...." "Yes, and for me nothing else is serious. All the time in Petersburg I saw everyone as in a dream. When I am taken up by a thought, all else is mere amusement." "Ah, I'm so sorry I wasn't there when you met the children," said Natasha. "Which was most delighted? Lisa, I'm sure." "Yes," Pierre replied, and went on with what was in his mind. "Nicholas says we ought not to think. But I can't help it. Besides, when I was in Petersburg I felt (I can this to you) that the whole affair would go to pieces without me--everyone was pulling his own way. But I succeeded in uniting them all; and then my idea is so clear and simple. You see, I don't say that we ought to oppose this and that. We may be mistaken. What I say is: 'Join hands, you who love the right, and let there be but one banner--that of active virtue.' Prince Sergey is a fine fellow and clever." Natasha would have had no doubt as to the greatness of Pierre's idea, but one thing disconcerted her. "Can a man so important and necessary to society be also my husband? How did this happen?" She wished to express this doubt to him. "Now who could decide whether he is really cleverer than all the others?" she asked herself, and passed in review all those whom Pierre most respected. Judging by what he had said there was no one he had respected so highly as Platon Karataev. "Do you know what I am thinking about?" she asked. "About Platon Karataev. Would he have approved of you now, do you think?" Pierre was not at all surprised at this question. He understood his wife's line of thought. "Platon Karataev?" he repeated, and pondered, evidently sincerely trying to imagine Karataev's opinion on the subject. "He would not have understood... yet perhaps he would." "I love you awfully!" Natasha suddenly said. "Awfully, awfully!" "No, he would not have approved," said Pierre, after reflection. "What he would have approved of is our family life. He was always so anxious to find seemliness, happiness, and peace in everything, and I should have been proud to let him see us. There now--you talk of my absence, but you wouldn't believe what a special feeling I have for you after a separation...." "Yes, I should think..." Natasha began. "No, it's not that. I never leave off loving you. And one couldn't love more, but this is something special.... Yes, of course-" he did not finish because their eyes meeting said the rest. "What nonsense it is," Natasha suddenly exclaimed, "about honeymoons, and that the greatest happiness is at first! On the contrary, now is the best of all. If only you did not go away! Do you remember how we quarreled? And it was always my fault. Always mine. And what we quarreled about--I don't even remember!" "Always about the same thing," said Pierre with a smile. "Jealo..." "Don't say it! I can't bear it!" Natasha cried, and her eyes glittered coldly and vindictively. "Did you see her?" she added, after a pause. "No, and if I had I shouldn't have recognized her." They were silent for a while. "Oh, do you know? While you were talking in the study I was looking at you," Natasha began, evidently anxious to disperse the cloud that had come over them. "You are as like him as two peas- like the boy." (She meant her little son.) "Oh, it's time to go to him.... The milk's come.... But I'm sorry to leave you." They were silent for a few seconds. Then suddenly turning to one another at the same time they both began to speak. Pierre began with self-satisfaction and enthusiasm, Natasha with a quiet, happy smile. Having interrupted one another they both stopped to let the other continue. "No. What did you say? Go on, go on." "No, you go on, I was talking nonsense," said Natasha. Pierre finished what he had begun. It was the sequel to his complacent reflections on his success in Petersburg. At that moment it seemed to him that he was chosen to give a new direction to the whole of Russian society and to the whole world. "I only wished to say that ideas that have great results are always simple ones. My whole idea is that if vicious people are united and constitute a power, then honest folk must do the same. Now that's simple enough." "Yes." "And what were you going to say?" "I? Only nonsense." "But all the same?" "Oh nothing, only a trifle," said Natasha, smilingly still more brightly. "I only wanted to tell you about Petya: today nurse was coming to take him from me, and he laughed, shut his eyes, and clung to me. I'm sure he thought he was hiding. Awfully sweet! There, now he's crying. Well, good-by!" and she left the room. Meanwhile downstairs in young Nicholas Bolkonski's bedroom a little lamp was burning as usual. (The boy was afraid of the dark and they could not cure him of it.) Dessalles slept propped up on four pillows and his Roman nose emitted sounds of rhythmic snoring. Little Nicholas, who had just waked up in a cold perspiration, sat up in bed and gazed before him with wide-open eyes. He had awaked from a terrible dream. He had dreamed that he and Uncle Pierre, wearing helmets such as were depicted in his Plutarch, were leading a huge army. The army was made up of white slanting lines that filled the air like the cobwebs that float about in autumn and which Dessalles called les fils de la Vierge. In front was Glory, which was similar to those threads but rather thicker. He and Pierre were borne along lightly and joyously, nearer and nearer to their goal. Suddenly the threads that moved them began to slacken and become entangled and it grew difficult to move. And Uncle Nicholas stood before them in a stern and threatening attitude. "Have you done this?" he said, pointing to some broken sealing wax and pens. "I loved you, but I have orders from Arakcheev and will kill the first of you who moves forward." Little Nicholas turned to look at Pierre but Pierre was no longer there. In his place was his father- Prince Andrew--and his father had neither shape nor form, but he existed, and when little Nicholas perceived him he grew faint with love: he felt himself powerless, limp, and formless. His father caressed and pitied him. But Uncle Nicholas came nearer and nearer to them. Terror seized young Nicholas and he awoke. "My father!" he thought. (Though there were two good portraits of Prince Andrew in the house, Nicholas never imagined him in human form.) "My father has been with me and caressed me. He approved of me and of Uncle Pierre. Whatever he may tell me, I will do it. Mucius Scaevola burned his hand. Why should not the same sort of thing happen to me? I know they want me to learn. And I will learn. But someday I shall have finished learning, and then I will do something. I only pray God that something may happen to me such as happened to Plutarch's men, and I will act as they did. I will do better. Everyone shall know me, love me, and be delighted with me!" And suddenly his bosom heaved with sobs and he began to cry. "Are you ill?" he heard Dessalles' voice asking. "No," answered Nicholas, and lay back on his pillow. "He is good and kind and I am fond of him!" he thought of Dessalles. "But Uncle Pierre! Oh, what a wonderful man he is! And my father? Oh, Father, Father! Yes, I will do something with which even he would be satisfied...." SECOND EPILOGUE CHAPTER I History is the life of nations and of humanity. To seize and put into words, to describe directly the life of humanity or even of a single nation, appears impossible. The ancient historians all employed one and the same method to describe and seize the apparently elusive--the life of a people. They described the activity of individuals who ruled the people, and regarded the activity of those men as representing the activity of the whole nation. The question: how did individuals make nations act as they wished and by what was the will of these individuals themselves guided? the ancients met by recognizing a divinity which subjected the nations to the will of a chosen man, and guided the will of that chosen man so as to accomplish ends that were predestined. For the ancients these questions were solved by a belief in the direct participation of the Deity in human affairs. Modern history, in theory, rejects both these principles. It would seem that having rejected the belief of the ancients in man's subjection to the Deity and in a predetermined aim toward which nations are led, modern history should study not the manifestations of power but the causes that produce it. But modern history has not done this. Having in theory rejected the view held by the ancients, it still follows them in practice. Instead of men endowed with divine authority and directly guided by the will of God, modern history has given us either heroes endowed with extraordinary, superhuman capacities, or simply men of very various kinds, from monarchs to journalists, who lead the masses. Instead of the former divinely appointed aims of the Jewish, Greek, or Roman nations, which ancient historians regarded as representing the progress of humanity, modern history has postulated its own aims- the welfare of the French, German, or English people, or, in its highest abstraction, the welfare and civilization of humanity in general, by which is usually meant that of the peoples occupying a small northwesterly portion of a large continent. Modern history has rejected the beliefs of the ancients without replacing them by a new conception, and the logic of the situation has obliged the historians, after they had apparently rejected the divine authority of the kings and the "fate" of the ancients, to reach the same conclusion by another road, that is, to recognize (1) nations guided by individual men, and (2) the existence of a known aim to which these nations and humanity at large are tending. At the basis of the works of all the modern historians from Gibbon to Buckle, despite their seeming disagreements and the apparent novelty of their outlooks, lie those two old, unavoidable assumptions. In the first place the historian describes the activity of individuals who in his opinion have directed humanity (one historian considers only monarchs, generals, and ministers as being such men, while another includes also orators, learned men, reformers, philosophers, and poets). Secondly, it is assumed that the goal toward which humanity is being led is known to the historians: to one of them this goal is the greatness of the Roman, Spanish, or French realm; to another it is liberty, equality, and a certain kind of civilization of a small corner of the world called Europe. In 1789 a ferment arises in Paris; it grows, spreads, and is expressed by a movement of peoples from west to east. Several times it moves eastward and collides with a countermovement from the east westward. In 1812 it reaches its extreme limit, Moscow, and then, with remarkable symmetry, a countermovement occurs from east to west, attracting to it, as the first movement had done, the nations of middle Europe. The counter movement reaches the starting point of the first movement in the west--Paris--and subsides. During that twenty-year period an immense number of fields were left untilled, houses were burned, trade changed its direction, millions of men migrated, were impoverished, or were enriched, and millions of Christian men professing the law of love of their fellows slew one another. What does all this mean? Why did it happen? What made those people burn houses and slay their fellow men? What were the causes of these events? What force made men act so? These are the instinctive, plain, and most legitimate questions humanity asks itself when it encounters the monuments and tradition of that period. For a reply to these questions the common sense of mankind turns to the science of history, whose aim is to enable nations and humanity to know themselves. If history had retained the conception of the ancients it would have said that God, to reward or punish his people, gave Napoleon power and directed his will to the fulfillment of the divine ends, and that reply, would have been clear and complete. One might believe or disbelieve in the divine significance of Napoleon, but for anyone believing in it there would have been nothing unintelligible in the history of that period, nor would there have been any contradictions. But modern history cannot give that reply. Science does not admit the conception of the ancients as to the direct participation of the Deity in human affairs, and therefore history ought to give other answers. Modern history replying to these questions says: you want to know what this movement means, what caused it, and what force produced these events? Then listen: "Louis XIV was a very proud and self-confident man; he had such and such mistresses and such and such ministers and he ruled France badly. His descendants were weak men and they too ruled France badly. And they had such and such favorites and such and such mistresses. Moreover, certain men wrote some books at that time. At the end of the eighteenth century there were a couple of dozen men in Paris who began to talk about all men being free and equal. This caused people all over France to begin to slash at and drown one another. They killed the king and many other people. At that time there was in France a man of genius--Napoleon. He conquered everybody everywhere--that is, he killed many people because he was a great genius. And for some reason he went to kill Africans, and killed them so well and was so cunning and wise that when he returned to France he ordered everybody to obey him, and they all obeyed him. Having become an Emperor he again went out to kill people in Italy, Austria, and Prussia. And there too he killed a great many. In Russia there was an Emperor, Alexander, who decided to restore order in Europe and therefore fought against Napoleon. In 1807 he suddenly made friends with him, but in 1811 they again quarreled and again began killing many people. Napoleon led six hundred thousand men into Russia and captured Moscow; then he suddenly ran away from Moscow, and the Emperor Alexander, helped by the advice of Stein and others, united Europe to arm against the disturber of its peace. All Napoleon's allies suddenly became his enemies and their forces advanced against the fresh forces he raised. The Allies defeated Napoleon, entered Paris, forced Napoleon to abdicate, and sent him to the island of Elba, not depriving him of the title of Emperor and showing him every respect, though five years before and one year later they all regarded him as an outlaw and a brigand. Then Louis XVIII, who till then had been the laughingstock both of the French and the Allies, began to reign. And Napoleon, shedding tears before his Old Guards, renounced the throne and went into exile. Then the skillful statesmen and diplomatists (especially Talleyrand, who managed to sit down in a particular chair before anyone else and thereby extended the frontiers of France) talked in Vienna and by these conversations made the nations happy or unhappy. Suddenly the diplomatists and monarchs nearly quarreled and were on the point of again ordering their armies to kill one another, but just then Napoleon arrived in France with a battalion, and the French, who had been hating him, immediately all submitted to him. But the Allied monarchs were angry at this and went to fight the French once more. And they defeated the genius Napoleon and, suddenly recognizing him as a brigand, sent him to the island of St. Helena. And the exile, separated from the beloved France so dear to his heart, died a lingering death on that rock and bequeathed his great deeds to posterity. But in Europe a reaction occurred and the sovereigns once again all began to oppress their subjects." It would be a mistake to think that this is ironic--a caricature of the historical accounts. On the contrary it is a very mild expression of the contradictory replies, not meeting the questions, which all the historians give, from the compilers of memoirs and the histories of separate states to the writers of general histories and the new histories of the culture of that period. The strangeness and absurdity of these replies arise from the fact that modern history, like a deaf man, answers questions no one has asked. If the purpose of history be to give a description of the movement of humanity and of the peoples, the first question--in the absence of a reply to which all the rest will be incomprehensible--is: what is the power that moves peoples? To this, modern history laboriously replies either that Napoleon was a great genius, or that Louis XIV was very proud, or that certain writers wrote certain books. All that may be so and mankind is ready to agree with it, but it is not what was asked. All that would be interesting if we recognized a divine power based on itself and always consistently directing its nations through Napoleons, Louis-es, and writers; but we do not acknowledge such a power, and therefore before speaking about Napoleons, Louis-es, and authors, we ought to be shown the connection existing between these men and the movement of the nations. If instead of a divine power some other force has appeared, it should be explained in what this new force consists, for the whole interest of history lies precisely in that force. History seems to assume that this force is self-evident and known to everyone. But in spite of every desire to regard it as known, anyone reading many historical works cannot help doubting whether this new force, so variously understood by the historians themselves, is really quite well known to everybody. CHAPTER II What force moves the nations? Biographical historians and historians of separate nations understand this force as a power inherent in heroes and rulers. In their narration events occur solely by the will of a Napoleon, and Alexander, or in general of the persons they describe. The answers given by this kind of historian to the question of what force causes events to happen are satisfactory only as long as there is but one historian to each event. As soon as historians of different nationalities and tendencies begin to describe the same event, the replies they give immediately lose all meaning, for this force is understood by them all not only differently but often in quite contradictory ways. One historian says that an event was produced by Napoleon's power, another that it was produced by Alexander's, a third that it was due to the power of some other person. Besides this, historians of that kind contradict each other even in their statement as to the force on which the authority of some particular person was based. Thiers, a Bonapartist, says that Napoleon's power was based on his virtue and genius. Lanfrey, a Republican, says it was based on his trickery and deception of the people. So the historians of this class, by mutually destroying one another's positions, destroy the understanding of the force which produces events, and furnish no reply to history's essential question. Writers of universal history who deal with all the nations seem to recognize how erroneous is the specialist historians' view of the force which produces events. They do not recognize it as a power inherent in heroes and rulers, but as the resultant of a multiplicity of variously directed forces. In describing a war or the subjugation of a people, a general historian looks for the cause of the event not in the power of one man, but in the interaction of many persons connected with the event. According to this view the power of historical personages, represented as the product of many forces, can no longer, it would seem, be regarded as a force that itself produces events. Yet in most cases universal historians still employ the conception of power as a force that itself produces events, and treat it as their cause. In their exposition, an historic character is first the product of his time, and his power only the resultant of various forces, and then his power is itself a force producing events. Gervinus, Schlosser, and others, for instance, at one time prove Napoleon to be a product of the Revolution, of the ideas of 1789 and so forth, and at another plainly say that the campaign of 1812 and other things they do not like were simply the product of Napoleon's misdirected will, and that the very ideas of 1789 were arrested in their development by Napoleon's caprice. The ideas of the Revolution and the general temper of the age produced Napoleon's power. But Napoleon's power suppressed the ideas of the Revolution and the general temper of the age. This curious contradiction is not accidental. Not only does it occur at every step, but the universal historians' accounts are all made up of a chain of such contradictions. This contradiction occurs because after entering the field of analysis the universal historians stop halfway. To find component forces equal to the composite or resultant force, the sum of the components must equal the resultant. This condition is never observed by the universal historians, and so to explain the resultant forces they are obliged to admit, in addition to the insufficient components, another unexplained force affecting the resultant action. Specialist historians describing the campaign of 1813 or the restoration of the Bourbons plainly assert that these events were produced by the will of Alexander. But the universal historian Gervinus, refuting this opinion of the specialist historian, tries to prove that the campaign of 1813 and the restoration of the Bourbons were due to other things beside Alexander's will--such as the activity of Stein, Metternich, Madame de Stael, Talleyrand, Fichte Chateaubriand, and others. The historian evidently decomposes Alexander's power into the components: Talleyrand, Chateaubriand, and the rest--but the sum of the components, that is, the interactions of Chateaubriand, Talleyrand, Madame de Stael, and the others, evidently does not equal the resultant, namely the phenomenon of millions of Frenchmen submitting to the Bourbons. That Chateaubriand, Madame de Stael, and others spoke certain words to one another only affected their mutual relations but does not account for the submission of millions. And therefore to explain how from these relations of theirs the submission of millions of people resulted--that is, how component forces equal to one A gave a resultant equal to a thousand times A--the historian is again obliged to fall back on power--the force he had denied--and to recognize it as the resultant of the forces, that is, he has to admit an unexplained force acting on the resultant. And that is just what the universal historians do, and consequently they not only contradict the specialist historians but contradict themselves. Peasants having no clear idea of the cause of rain, say, according to whether they want rain or fine weather: "The wind has blown the clouds away," or, "The wind has brought up the clouds." And in the same way the universal historians sometimes, when it pleases them and fits in with their theory, say that power is the result of events, and sometimes, when they want to prove something else, say that power produces events. A third class of historians--the so-called historians of culture- following the path laid down by the universal historians who sometimes accept writers and ladies as forces producing events--again take that force to be something quite different. They see it in what is called culture--in mental activity. The historians of culture are quite consistent in regard to their progenitors, the writers of universal histories, for if historical events may be explained by the fact that certain persons treated one another in such and such ways, why not explain them by the fact that such and such people wrote such and such books? Of the immense number of indications accompanying every vital phenomenon, these historians select the indication of intellectual activity and say that this indication is the cause. But despite their endeavors to prove that the cause of events lies in intellectual activity, only by a great stretch can one admit that there is any connection between intellectual activity and the movement of peoples, and in no case can one admit that intellectual activity controls people's actions, for that view is not confirmed by such facts as the very cruel murders of the French Revolution resulting from the doctrine of the equality of man, or the very cruel wars and executions resulting from the preaching of love. But even admitting as correct all the cunningly devised arguments with which these histories are filled--admitting that nations are governed by some undefined force called an idea--history's essential question still remains unanswered, and to the former power of monarchs and to the influence of advisers and other people introduced by the universal historians, another, newer force--the idea--is added, the connection of which with the masses needs explanation. It is possible to understand that Napoleon had power and so events occurred; with some effort one may even conceive that Napoleon together with other influences was the cause of an event; but how a book, Le Contrat social, had the effect of making Frenchmen begin to drown one another cannot be understood without an explanation of the causal nexus of this new force with the event. Undoubtedly some relation exists between all who live contemporaneously, and so it is possible to find some connection between the intellectual activity of men and their historical movements, just as such a connection may be found between the movements of humanity and commerce, handicraft, gardening, or anything else you please. But why intellectual activity is considered by the historians of culture to be the cause or expression of the whole historical movement is hard to understand. Only the following considerations can have led the historians to such a conclusion: (1) that history is written by learned men, and so it is natural and agreeable for them to think that the activity of their class supplies the basis of the movement of all humanity, just as a similar belief is natural and agreeable to traders, agriculturists, and soldiers (if they do not express it, that is merely because traders and soldiers do not write history), and (2) that spiritual activity, enlightenment, civilization, culture, ideas, are all indistinct, indefinite conceptions under whose banner it is very easy to use words having a still less definite meaning, and which can therefore be readily introduced into any theory. But not to speak of the intrinsic quality of histories of this kind (which may possibly even be of use to someone for something) the histories of culture, to which all general histories tend more and more to approximate, are significant from the fact that after seriously and minutely examining various religious, philosophic, and political doctrines as causes of events, as soon as they have to describe an actual historic event such as the campaign of 1812 for instance, they involuntarily describe it as resulting from an exercise of power--and say plainly that that was the result of Napoleon's will. Speaking so, the historians of culture involuntarily contradict themselves, and show that the new force they have devised does not account for what happens in history, and that history can only be explained by introducing a power which they apparently do not recognize. CHAPTER III A locomotive is moving. Someone asks: "What moves it?" A peasant says the devil moves it. Another man says the locomotive moves because its wheels go round. A third asserts that the cause of its movement lies in the smoke which the wind carries away. The peasant is irrefutable. He has devised a complete explanation. To refute him someone would have to prove to him that there is no devil, or another peasant would have to explain to him that it is not the devil but a German, who moves the locomotive. Only then, as a result of the contradiction, will they see that they are both wrong. But the man who says that the movement of the wheels is the cause refutes himself, for having once begun to analyze he ought to go on and explain further why the wheels go round; and till he has reached the ultimate cause of the movement of the locomotive in the pressure of steam in the boiler, he has no right to stop in his search for the cause. The man who explains the movement of the locomotive by the smoke that is carried back has noticed that the wheels do not supply an explanation and has taken the first sign that occurs to him and in his turn has offered that as an explanation. The only conception that can explain the movement of the locomotive is that of a force commensurate with the movement observed. The only conception that can explain the movement of the peoples is that of some force commensurate with the whole movement of the peoples. Yet to supply this conception various historians take forces of different kinds, all of which are incommensurate with the movement observed. Some see it as a force directly inherent in heroes, as the peasant sees the devil in the locomotive; others as a force resulting from several other forces, like the movement of the wheels; others again as an intellectual influence, like the smoke that is blown away. So long as histories are written of separate individuals, whether Caesars, Alexanders, Luthers, or Voltaires, and not the histories of all, absolutely all those who take part in an event, it is quite impossible to describe the movement of humanity without the conception of a force compelling men to direct their activity toward a certain end. And the only such conception known to historians is that of power. This conception is the one handle by means of which the material of history, as at present expounded, can be dealt with, and anyone who breaks that handle off, as Buckle did, without finding some other method of treating historical material, merely deprives himself of the one possible way of dealing with it. The necessity of the conception of power as an explanation of historical events is best demonstrated by the universal historians and historians of culture themselves, for they professedly reject that conception but inevitably have recourse to it at every step. In dealing with humanity's inquiry, the science of history up to now is like money in circulation--paper money and coin. The biographies and special national histories are like paper money. They can be used and can circulate and fulfill their purpose without harm to anyone and even advantageously, as long as no one asks what is the security behind them. You need only forget to ask how the will of heroes produces events, and such histories as Thiers' will be interesting and instructive and may perhaps even possess a tinge of poetry. But just as doubts of the real value of paper money arise either because, being easy to make, too much of it gets made or because people try to exchange it for gold, so also doubts concerning the real value of such histories arise either because too many of them are written or because in his simplicity of heart someone inquires: by what force did Napoleon do this?--that is, wants to exchange the current paper money for the real gold of actual comprehension. The writers of universal histories and of the history of culture are like people who, recognizing the defects of paper money, decide to substitute for it money made of metal that has not the specific gravity of gold. It may indeed make jingling coin, but will do no more than that. Paper money may deceive the ignorant, but nobody is deceived by tokens of base metal that have no value but merely jingle. As gold is gold only if it is serviceable not merely for exchange but also for use, so universal historians will be valuable only when they can reply to history's essential question: what is power? The universal historians give contradictory replies to that question, while the historians of culture evade it and answer something quite different. And as counters of imitation gold can be used only among a group of people who agree to accept them as gold, or among those who do not know the nature of gold, so universal historians and historians of culture, not answering humanity's essential question, serve as currency for some purposes of their own, only in universities and among the mass of readers who have a taste for what they call "serious reading." CHAPTER IV Having abandoned the conception of the ancients as to the divine subjection of the will of a nation to some chosen man and the subjection of that man's will to the Deity, history cannot without contradictions take a single step till it has chosen one of two things: either a return to the former belief in the direct intervention of the Deity in human affairs or a definite explanation of the meaning of the force producing historical events and termed "power." A return to the first is impossible, the belief has been destroyed; and so it is essential to explain what is meant by power. Napoleon ordered an army to be raised and go to war. We are so accustomed to that idea and have become so used to it that the question: why did six hundred thousand men go to fight when Napoleon uttered certain words, seems to us senseless. He had the power and so what he ordered was done. This reply is quite satisfactory if we believe that the power was given him by God. But as soon as we do not admit that, it becomes essential to determine what is this power of one man over others. It cannot be the direct physical power of a strong man over a weak one--a domination based on the application or threat of physical force, like the power of Hercules; nor can it be based on the effect of moral force, as in their simplicity some historians think who say that the leading figures in history are heroes, that is, men gifted with a special strength of soul and mind called genius. This power cannot be based on the predominance of moral strength, for, not to mention heroes such as Napoleon about whose moral qualities opinions differ widely, history shows us that neither a Louis XI nor a Metternich, who ruled over millions of people, had any particular moral qualities, but on the contrary were generally morally weaker than any of the millions they ruled over. If the source of power lies neither in the physical nor in the moral qualities of him who possesses it, it must evidently be looked for elsewhere--in the relation to the people of the man who wields the power. And that is how power is understood by the science of jurisprudence, that exchange bank of history which offers to exchange history's understanding of power for true gold. Power is the collective will of the people transferred, by expressed or tacit consent, to their chosen rulers. In the domain of jurisprudence, which consists of discussions of how a state and power might be arranged were it possible for all that to be arranged, it is all very clear; but when applied to history that definition of power needs explanation. The science of jurisprudence regards the state and power as the ancients regarded fire--namely, as something existing absolutely. But for history, the state and power are merely phenomena, just as for modern physics fire is not an element but a phenomenon. From this fundamental difference between the view held by history and that held by jurisprudence, it follows that jurisprudence can tell minutely how in its opinion power should be constituted and what power--existing immutably outside time--is, but to history's questions about the meaning of the mutations of power in time it can answer nothing. If power be the collective will of the people transferred to their ruler, was Pugachev a representative of the will of the people? If not, then why was Napoleon I? Why was Napoleon III a criminal when he was taken prisoner at Boulogne, and why, later on, were those criminals whom he arrested? Do palace revolutions--in which sometimes only two or three people take part--transfer the will of the people to a new ruler? In international relations, is the will of the people also transferred to their conqueror? Was the will of the Confederation of the Rhine transferred to Napoleon in 1806? Was the will of the Russian people transferred to Napoleon in 1809, when our army in alliance with the French went to fight the Austrians? To these questions three answers are possible: Either to assume (1) that the will of the people is always unconditionally transferred to the ruler or rulers they have chosen, and that therefore every emergence of a new power, every struggle against the power once appointed, should be absolutely regarded as an infringement of the real power; or (2) that the will of the people is transferred to the rulers conditionally, under definite and known conditions, and to show that all limitations, conflicts, and even destructions of power result from a nonobservance by the rulers of the conditions under which their power was entrusted to them; or (3) that the will of the people is delegated to the rulers conditionally, but that the conditions are unknown and indefinite, and that the appearance of several authorities, their struggles and their falls, result solely from the greater or lesser fulfillment by the rulers of these unknown conditions on which the will of the people is transferred from some people to others. And these are the three ways in which the historians do explain the relation of the people to their rulers. Some historians--those biographical and specialist historians already referred to--in their simplicity failing to understand the question of the meaning of power, seem to consider that the collective will of the people is unconditionally transferred to historical persons, and therefore when describing some single state they assume that particular power to be the one absolute and real power, and that any other force opposing this is not a power but a violation of power--mere violence. Their theory, suitable for primitive and peaceful periods of history, has the inconvenience--in application to complex and stormy periods in the life of nations during which various powers arise simultaneously and struggle with one another--that a Legitimist historian will prove that the National Convention, the Directory, and Bonaparte were mere infringers of the true power, while a Republican and a Bonapartist will prove: the one that the Convention and the other that the Empire was the real power, and that all the others were violations of power. Evidently the explanations furnished by these historians being mutually contradictory can only satisfy young children. Recognizing the falsity of this view of history, another set of historians say that power rests on a conditional delegation of the will of the people to their rulers, and that historical leaders have power only conditionally on carrying out the program that the will of the people has by tacit agreement prescribed to them. But what this program consists in these historians do not say, or if they do they continually contradict one another. Each historian, according to his view of what constitutes a nation's progress, looks for these conditions in the greatness, wealth, freedom, or enlightenment of citizens of France or some other country. But not to mention the historians' contradictions as to the nature of this program--or even admitting that some one general program of these conditions exists--the facts of history almost always contradict that theory. If the conditions under which power is entrusted consist in the wealth, freedom, and enlightenment of the people, how is it that Louis XIV and Ivan the Terrible end their reigns tranquilly, while Louis XVI and Charles I are executed by their people? To this question historians reply that Louis XIV's activity, contrary to the program, reacted on Louis XVI. But why did it not react on Louis XIV or on Louis XV--why should it react just on Louis XVI? And what is the time limit for such reactions? To these questions there are and can be no answers. Equally little does this view explain why for several centuries the collective will is not withdrawn from certain rulers and their heirs, and then suddenly during a period of fifty years is transferred to the Convention, to the Directory, to Napoleon, to Alexander, to Louis XVIII, to Napoleon again, to Charles X, to Louis Philippe, to a Republican government, and to Napoleon III. When explaining these rapid transfers of the people's will from one individual to another, especially in view of international relations, conquests, and alliances, the historians are obliged to admit that some of these transfers are not normal delegations of the people's will but are accidents dependent on cunning, on mistakes, on craft, or on the weakness of a diplomatist, a ruler, or a party leader. So that the greater part of the events of history--civil wars, revolutions, and conquests--are presented by these historians not as the results of free transferences of the people's will, but as results of the ill-directed will of one or more individuals, that is, once again, as usurpations of power. And so these historians also see and admit historical events which are exceptions to the theory. These historians resemble a botanist who, having noticed that some plants grow from seeds producing two cotyledons, should insist that all that grows does so by sprouting into two leaves, and that the palm, the mushroom, and even the oak, which blossom into full growth and no longer resemble two leaves, are deviations from the theory. Historians of the third class assume that the will of the people is transferred to historic personages conditionally, but that the conditions are unknown to us. They say that historical personages have power only because they fulfill the will of the people which has been delegated to them. But in that case, if the force that moves nations lies not in the historic leaders but in the nations themselves, what significance have those leaders? The leaders, these historians tell us, express the will of the people: the activity of the leaders represents the activity of the people. But in that case the question arises whether all the activity of the leaders serves as an expression of the people's will or only some part of it. If the whole activity of the leaders serves as the expression of the people's will, as some historians suppose, then all the details of the court scandals contained in the biographies of a Napoleon or a Catherine serve to express the life of the nation, which is evident nonsense; but if it is only some particular side of the activity of an historical leader which serves to express the people's life, as other so-called "philosophical" historians believe, then to determine which side of the activity of a leader expresses the nation's life, we have first of all to know in what the nation's life consists. Met by this difficulty historians of that class devise some most obscure, impalpable, and general abstraction which can cover all conceivable occurrences, and declare this abstraction to be the aim of humanity's movement. The most usual generalizations adopted by almost all the historians are: freedom, equality, enlightenment, progress, civilization, and culture. Postulating some generalization as the goal of the movement of humanity, the historians study the men of whom the greatest number of monuments have remained: kings, ministers, generals, authors, reformers, popes, and journalists, to the extent to which in their opinion these persons have promoted or hindered that abstraction. But as it is in no way proved that the aim of humanity does consist in freedom, equality, enlightenment, or civilization, and as the connection of the people with the rulers and enlighteners of humanity is only based on the arbitrary assumption that the collective will of the people is always transferred to the men whom we have noticed, it happens that the activity of the millions who migrate, burn houses, abandon agriculture, and destroy one another never is expressed in the account of the activity of some dozen people who did not burn houses, practice agriculture, or slay their fellow creatures. History proves this at every turn. Is the ferment of the peoples of the west at the end of the eighteenth century and their drive eastward explained by the activity of Louis XIV, XV, and XVI, their mistresses and ministers, and by the lives of Napoleon, Rousseau, Diderot, Beaumarchais, and others? Is the movement of the Russian people eastward to Kazan and Siberia expressed by details of the morbid character of Ivan the Terrible and by his correspondence with Kurbski? Is the movement of the peoples at the time of the Crusades explained by the life and activity of the Godfreys and the Louis-es and their ladies? For us that movement of the peoples from west to east, without leaders, with a crowd of vagrants, and with Peter the Hermit, remains incomprehensible. And yet more incomprehensible is the cessation of that movement when a rational and sacred aim for the Crusade--the deliverance of Jerusalem--had been clearly defined by historic leaders. Popes, kings, and knights incited the peoples to free the Holy Land; but the people did not go, for the unknown cause which had previously impelled them to go no longer existed. The history of the Godfreys and the Minnesingers can evidently not cover the life of the peoples. And the history of the Godfreys and the Minnesingers has remained the history of Godfreys and Minnesingers, but the history of the life of the peoples and their impulses has remained unknown. Still less does the history of authors and reformers explain to us the life of the peoples. The history of culture explains to us the impulses and conditions of life and thought of a writer or a reformer. We learn that Luther had a hot temper and said such and such things; we learn that Rousseau was suspicious and wrote such and such books; but we do not learn why after the Reformation the peoples massacred one another, nor why during the French Revolution they guillotined one another. If we unite both these kinds of history, as is done by the newest historians, we shall have the history of monarchs and writers, but not the history of the life of the peoples. CHAPTER V The life of the nations is not contained in the lives of a few men, for the connection between those men and the nations has not been found. The theory that this connection is based on the transference of the collective will of a people to certain historical personages is an hypothesis unconfirmed by the experience of history. The theory of the transference of the collective will of the people to historic persons may perhaps explain much in the domain of jurisprudence and be essential for its purposes, but in its application to history, as soon as revolutions, conquests, or civil wars occur--that is, as soon as history begins--that theory explains nothing. The theory seems irrefutable just because the act of transference of the people's will cannot be verified, for it never occurred. Whatever happens and whoever may stand at the head of affairs, the theory can always say that such and such a person took the lead because the collective will was transferred to him. The replies this theory gives to historical questions are like the replies of a man who, watching the movements of a herd of cattle and paying no attention to the varying quality of the pasturage in different parts of the field, or to the driving of the herdsman, should attribute the direction the herd takes to what animal happens to be at its head. "The herd goes in that direction because the animal in front leads it and the collective will of all the other animals is vested in that leader." This is what historians of the first class say--those who assume the unconditional transference of the people's will. "If the animals leading the herd change, this happens because the collective will of all the animals is transferred from one leader to another, according to whether the animal is or is not leading them in the direction selected by the whole herd." Such is the reply historians who assume that the collective will of the people is delegated to rulers under conditions which they regard as known. (With this method of observation it often happens that the observer, influenced by the direction he himself prefers, regards those as leaders who, owing to the people's change of direction, are no longer in front, but on one side, or even in the rear.) "If the animals in front are continually changing and the direction of the whole herd is constantly altered, this is because in order to follow a given direction the animals transfer their will to the animals that have attracted our attention, and to study the movements of the herd we must watch the movements of all the prominent animals moving on all sides of the herd." So say the third class of historians who regard all historical persons, from monarchs to journalists, as the expression of their age. The theory of the transference of the will of the people to historic persons is merely a paraphrase--a restatement of the question in other words. What causes historical events? Power. What is power? Power is the collective will of the people transferred to one person. Under what condition is the will of the people delegated to one person? On condition that that person expresses the will of the whole people. That is, power is power: in other words, power is a word the meaning of which we do not understand. If the realm of human knowledge were confined to abstract reasoning, then having subjected to criticism the explanation of "power" that juridical science gives us, humanity would conclude that power is merely a word and has no real existence. But to understand phenomena man has, besides abstract reasoning, experience by which he verifies his reflections. And experience tells us that power is not merely a word but an actually existing phenomenon. Not to speak of the fact that no description of the collective activity of men can do without the conception of power, the existence of power is proved both by history and by observing contemporary events. Whenever an event occurs a man appears or men appear, by whose will the event seems to have taken place. Napoleon III issues a decree and the French go to Mexico. The King of Prussia and Bismarck issue decrees and an army enters Bohemia. Napoleon I issues a decree and an army enters Russia. Alexander I gives a command and the French submit to the Bourbons. Experience shows us that whatever event occurs it is always related to the will of one or of several men who have decreed it. The historians, in accord with the old habit of acknowledging divine intervention in human affairs, want to see the cause of events in the expression of the will of someone endowed with power, but that supposition is not confirmed either by reason or by experience. On the one side reflection shows that the expression of a man's will--his words--are only part of the general activity expressed in an event, as for instance in a war or a revolution, and so without assuming an incomprehensible, supernatural force--a miracle--one cannot admit that words can be the immediate cause of the movements of millions of men. On the other hand, even if we admitted that words could be the cause of events, history shows that the expression of the will of historical personages does not in most cases produce any effect, that is to say, their commands are often not executed, and sometimes the very opposite of what they order occurs. Without admitting divine intervention in the affairs of humanity we cannot regard "power" as the cause of events. Power, from the standpoint of experience, is merely the relation that exists between the expression of someone's will and the execution of that will by others. To explain the conditions of that relationship we must first establish a conception of the expression of will, referring it to man and not to the Deity. If the Deity issues a command, expresses His will, as ancient history tells us, the expression of that will is independent of time and is not caused by anything, for the Divinity is not controlled by an event. But speaking of commands that are the expression of the will of men acting in time and in relation to one another, to explain the connection of commands with events we must restore: (1) the condition of all that takes place: the continuity of movement in time both of the events and of the person who commands, and (2) the inevitability of the connection between the person commanding and those who execute his command. CHAPTER VI Only the expression of the will of the Deity, not dependent on time, can relate to a whole series of events occurring over a period of years or centuries, and only the Deity, independent of everything, can by His sole will determine the direction of humanity's movement; but man acts in time and himself takes part in what occurs. Reinstating the first condition omitted, that of time, we see that no command can be executed without some preceding order having been given rendering the execution of the last command possible. No command ever appears spontaneously, or itself covers a whole series of occurrences; but each command follows from another, and never refers to a whole series of events but always to one moment only of an event. When, for instance, we say that Napoleon ordered armies to go to war, we combine in one simultaneous expression a whole series of consecutive commands dependent one on another. Napoleon could not have commanded an invasion of Russia and never did so. Today he ordered such and such papers to be written to Vienna, to Berlin, and to Petersburg; tomorrow such and such decrees and orders to the army, the fleet, the commissariat, and so on and so on--millions of commands, which formed a whole series corresponding to a series of events which brought the French armies into Russia. If throughout his reign Napoleon gave commands concerning an invasion of England and expended on no other undertaking so much time and effort, and yet during his whole reign never once attempted to execute that design but undertook an expedition into Russia, with which country he considered it desirable to be in alliance (a conviction he repeatedly expressed)--this came about because his commands did not correspond to the course of events in the first case, but did so correspond in the latter. For an order to be certainly executed, it is necessary that a man should order what can be executed. But to know what can and what cannot be executed is impossible, not only in the case of Napoleon's invasion of Russia in which millions participated, but even in the simplest event, for in either case millions of obstacles may arise to prevent its execution. Every order executed is always one of an immense number unexecuted. All the impossible orders inconsistent with the course of events remain unexecuted. Only the possible ones get linked up with a consecutive series of commands corresponding to a series of events, and are executed. Our false conception that an event is caused by a command which precedes it is due to the fact that when the event has taken place and out of thousands of others those few commands which were consistent with that event have been executed, we forget about the others that were not executed because they could not be. Apart from that, the chief source of our error in this matter is due to the fact that in the historical accounts a whole series of innumerable, diverse, and petty events, such for instance as all those which led the French armies to Russia, is generalized into one event in accord with the result produced by that series of events, and corresponding with this generalization the whole series of commands is also generalized into a single expression of will. We say that Napoleon wished to invade Russia and invaded it. In reality in all Napoleon's activity we never find anything resembling an expression of that wish, but find a series of orders, or expressions of his will, very variously and indefinitely directed. Amid a long series of unexecuted orders of Napoleon's one series, for the campaign of 1812, was carried out--not because those orders differed in any way from the other, unexecuted orders but because they coincided with the course of events that led the French army into Russia; just as in stencil work this or that figure comes out not because the color was laid on from this side or in that way, but because it was laid on from all sides over the figure cut in the stencil. So that examining the relation in time of the commands to the events, we find that a command can never be the cause of the event, but that a certain definite dependence exists between the two. To understand in what this dependence consists it is necessary to reinstate another omitted condition of every command proceeding not from the Deity but from a man, which is, that the man who gives the command himself takes part in. This relation of the commander to those he commands is just what is called power. This relation consists in the following: For common action people always unite in certain combinations, in which regardless of the difference of the aims set for the common action, the relation between those taking part in it is always the same. Men uniting in these combinations always assume such relations toward one another that the larger number take a more direct share, and the smaller number a less direct share, in the collective action for which they have combined. Of all the combinations in which men unite for collective action one of the most striking and definite examples is an army. Every army is composed of lower grades of the service--the rank and file--of whom there are always the greatest number; of the next higher military rank--corporals and noncommissioned officers of whom there are fewer, and of still-higher officers of whom there are still fewer, and so on to the highest military command which is concentrated in one person. A military organization may be quite correctly compared to a cone, of which the base with the largest diameter consists of the rank and file; the next higher and smaller section of the cone consists of the next higher grades of the army, and so on to the apex, the point of which will represent the commander in chief. The soldiers, of whom there are the most, form the lower section of the cone and its base. The soldier himself does the stabbing, hacking, burning, and pillaging, and always receives orders for these actions from men above him; he himself never gives an order. The noncommissioned officers (of whom there are fewer) perform the action itself less frequently than the soldiers, but they already give commands. An officer still less often acts directly himself, but commands still more frequently. A general does nothing but command the troops, indicates the objective, and hardly ever uses a weapon himself. The commander in chief never takes direct part in the action itself, but only gives general orders concerning the movement of the mass of the troops. A similar relation of people to one another is seen in every combination of men for common activity--in agriculture, trade, and every administration. And so without particularly analyzing all the contiguous sections of a cone and of the ranks of an army, or the ranks and positions in any administrative or public business whatever from the lowest to the highest, we see a law by which men, to take associated action, combine in such relations that the more directly they participate in performing the action the less they can command and the more numerous they are, while the less their direct participation in the action itself, the more they command and the fewer of them there are; rising in this way from the lowest ranks to the man at the top, who takes the least direct share in the action and directs his activity chiefly to commanding. This relation of the men who command to those they command is what constitutes the essence of the conception called power. Having restored the condition of time under which all events occur, find that a command is executed only when it is related to a corresponding series of events. Restoring the essential condition of relation between those who command and those who execute, we find that by the very nature of the case those who command take the smallest part in the action itself and that their activity is exclusively directed to commanding. CHAPTER VII When an event is taking place people express their opinions and wishes about it, and as the event results from the collective activity of many people, some one of the opinions or wishes expressed is sure to be fulfilled if but approximately. When one of the opinions expressed is fulfilled, that opinion gets connected with the event as a command preceding it. Men are hauling a log. Each of them expresses his opinion as to how and where to haul it. They haul the log away, and it happens that this is done as one of them said. He ordered it. There we have command and power in their primary form. The man who worked most with his hands could not think so much about what he was doing, or reflect on or command what would result from the common activity; while the man who commanded more would evidently work less with his hands on account of his greater verbal activity. When some larger concourse of men direct their activity to a common aim there is a yet sharper division of those who, because their activity is given to directing and commanding, take less less part in the direct work. When a man works alone he always has a certain set of reflections which as it seems to him directed his past activity, justify his present activity, and guide him in planning his future actions. Just the same is done by a concourse of people, allowing those who do not take a direct part in the activity to devise considerations, justifications, and surmises concerning their collective activity. For reasons known or unknown to us the French began to drown and kill one another. And corresponding to the event its justification appears in people's belief that this was necessary for the welfare of France, for liberty, and for equality. People ceased to kill one another, and this event was accompanied by its justification in the necessity for a centralization of power, resistance to Europe, and so on. Men went from the west to the east killing their fellow men, and the event was accompanied by phrases about the glory of France, the baseness of England, and so on. History shows us that these justifications of the events have no common sense and are all contradictory, as in the case of killing a man as the result of recognizing his rights, and the killing of millions in Russia for the humiliation of England. But these justifications have a very necessary significance in their own day. These justifications release those who produce the events from moral responsibility. These temporary aims are like the broom fixed in front of a locomotive to clear the snow from the rails in front: they clear men's moral responsibilities from their path. Without such justification there would be no reply to the simplest question that presents itself when examining each historical event. How is it that millions of men commit collective crimes--make war, commit murder, and so on? With the present complex forms of political and social life in Europe can any event that is not prescribed, decreed, or ordered by monarchs, ministers, parliaments, or newspapers be imagined? Is there any collective action which cannot find its justification in political unity, in patriotism, in the balance of power, or in civilization? So that every event that occurs inevitably coincides with some expressed wish and, receiving a justification, presents itself as the result of the will of one man or of several men. In whatever direction a ship moves, the flow of the waves it cuts will always be noticeable ahead of it. To those on board the ship the movement of those waves will be the only perceptible motion. Only by watching closely moment by moment the movement of that flow and comparing it with the movement of the ship do we convince ourselves that every bit of it is occasioned by the forward movement of the ship, and that we were led into error by the fact that we ourselves were imperceptibly moving. We see the same if we watch moment by moment the movement of historical characters (that is, re-establish the inevitable condition of all that occurs--the continuity of movement in time) and do not lose sight of the essential connection of historical persons with the masses. When the ship moves in one direction there is one and the same wave ahead of it, when it turns frequently the wave ahead of it also turns frequently. But wherever it may turn there always will be the wave anticipating its movement. Whatever happens it always appears that just that event was foreseen and decreed. Wherever the ship may go, the rush of water which neither directs nor increases its movement foams ahead of it, and at a distance seems to us not merely to move of itself but to govern the ship's movement also. Examining only those expressions of the will of historical persons which, as commands, were related to events, historians have assumed that the events depended on those commands. But examining the events themselves and the connection in which the historical persons stood to the people, we have found that they and their orders were dependent on events. The incontestable proof of this deduction is that, however many commands were issued, the event does not take place unless there are other causes for it, but as soon as an event occurs--be it what it may--then out of all the continually expressed wishes of different people some will always be found which by their meaning and their time of utterance are related as commands to the events. Arriving at this conclusion we can reply directly and positively to these two essential questions of history: (1) What is power? (2) What force produces the movement of the nations? (1) Power is the relation of a given person to other individuals, in which the more this person expresses opinions, predictions, and justifications of the collective action that is performed, the less is his participation in that action. (2) The movement of nations is caused not by power, nor by intellectual activity, nor even by a combination of the two as historians have supposed, but by the activity of all the people who participate in the events, and who always combine in such a way that those taking the largest direct share in the event take on themselves the least responsibility and vice versa. Morally the wielder of power appears to cause the event; physically it is those who submit to the power. But as the moral activity is inconceivable without the physical, the cause of the event is neither in the one nor in the other but in the union of the two. Or in other words, the conception of a cause is inapplicable to the phenomena we are examining. In the last analysis we reach the circle of infinity--that final limit to which in every domain of thought man's reason arrives if it is not playing with the subject. Electricity produces heat, heat produces electricity. Atoms attract each other and atoms repel one another. Speaking of the interaction of heat and electricity and of atoms, we cannot say why this occurs, and we say that it is so because it is inconceivable otherwise, because it must be so and that it is a law. The same applies to historical events. Why war and revolution occur we do not know. We only know that to produce the one or the other action, people combine in a certain formation in which they all take part, and we say that this is so because it is unthinkable otherwise, or in other words that it is a law. CHAPTER VIII If history dealt only with external phenomena, the establishment of this simple and obvious law would suffice and we should have finished our argument. But the law of history relates to man. A particle of matter cannot tell us that it does not feel the law of attraction or repulsion and that that law is untrue, but man, who is the subject of history, says plainly: I am free and am therefore not subject to the law. The presence of the problem of man's free will, though unexpressed, is felt at every step of history. All seriously thinking historians have involuntarily encountered this question. All the contradictions and obscurities of history and the false path historical science has followed are due solely to the lack of a solution of that question. If the will of every man were free, that is, if each man could act as he pleased, all history would be a series of disconnected incidents. If in a thousand years even one man in a million could act freely, that is, as he chose, it is evident that one single free act of that man's in violation of the laws governing human action would destroy the possibility of the existence of any laws for the whole of humanity. If there be a single law governing the actions of men, free will cannot exist, for then man's will is subject to that law. In this contradiction lies the problem of free will, which from most ancient times has occupied the best human minds and from most ancient times has been presented in its whole tremendous significance. The problem is that regarding man as a subject of observation from whatever point of view--theological, historical, ethical, or philosophic--we find a general law of necessity to which he (like all that exists) is subject. But regarding him from within ourselves as what we are conscious of, we feel ourselves to be free. This consciousness is a source of self-cognition quite apart from and independent of reason. Through his reason man observes himself, but only through consciousness does he know himself. Apart from consciousness of self no observation or application of reason is conceivable. To understand, observe, and draw conclusions, man must first of all be conscious of himself as living. A man is only conscious of himself as a living being by the fact that he wills, that is, is conscious of his volition. But his will--which forms the essence of his life--man recognizes (and can but recognize) as free. If, observing himself, man sees that his will is always directed by one and the same law (whether he observes the necessity of taking food, using his brain, or anything else) he cannot recognize this never-varying direction of his will otherwise than as a limitation of it. Were it not free it could not be limited. A man's will seems to him to be limited just because he is not conscious of it except as free. You say: I am not and am not free. But I have lifted my hand and let it fall. Everyone understands that this illogical reply is an irrefutable demonstration of freedom. That reply is the expression of a consciousness that is not subject to reason. If the consciousness of freedom were not a separate and independent source of self-consciousness it would be subject to reasoning and to experience, but in fact such subjection does not exist and is inconceivable. A series of experiments and arguments proves to every man that he, as an object of observation, is subject to certain laws, and man submits to them and never resists the laws of gravity or impermeability once he has become acquainted with them. But the same series of experiments and arguments proves to him that the complete freedom of which he is conscious in himself is impossible, and that his every action depends on his organization, his character, and the motives acting upon him; yet man never submits to the deductions of these experiments and arguments. Having learned from experiment and argument that a stone falls downwards, a man indubitably believes this and always expects the law that he has learned to be fulfilled. But learning just as certainly that his will is subject to laws, he does not and cannot believe this. However often experiment and reasoning may show a man that under the same conditions and with the same character he will do the same thing as before, yet when under the same conditions and with the same character he approaches for the thousandth time the action that always ends in the same way, he feels as certainly convinced as before the experiment that he can act as he pleases. Every man, savage or sage, however incontestably reason and experiment may prove to him that it is impossible to imagine two different courses of action in precisely the same conditions, feels that without this irrational conception (which constitutes the essence of freedom) he cannot imagine life. He feels that however impossible it may be, it is so, for without this conception of freedom not only would he be unable to understand life, but he would be unable to live for a single moment. He could not live, because all man's efforts, all his impulses to life, are only efforts to increase freedom. Wealth and poverty, fame and obscurity, power and subordination, strength and weakness, health and disease, culture and ignorance, work and leisure, repletion and hunger, virtue and vice, are only greater or lesser degrees of freedom. A man having no freedom cannot be conceived of except as deprived of life. If the conception of freedom appears to reason to be a senseless contradiction like the possibility of performing two actions at one and the same instant of time, or of an effect without a cause, that only proves that consciousness is not subject to reason. This unshakable, irrefutable consciousness of freedom, uncontrolled by experiment or argument, recognized by all thinkers and felt by everyone without exception, this consciousness without which no conception of man is possible constitutes the other side of the question. Man is the creation of an all-powerful, all-good, and all-seeing God. What is sin, the conception of which arises from the consciousness of man's freedom? That is a question for theology. The actions of men are subject to general immutable laws expressed in statistics. What is man's responsibility to society, the conception of which results from the conception of freedom? That is a question for jurisprudence. Man's actions proceed from his innate character and the motives acting upon him. What is conscience and the perception of right and wrong in actions that follows from the consciousness of freedom? That is a question for ethics. Man in connection with the general life of humanity appears subject to laws which determine that life. But the same man apart from that connection appears to free. How should the past life of nations and of humanity be regarded--as the result of the free, or as the result of the constrained, activity of man? That is a question for history. Only in our self-confident day of the popularization of knowledge- thanks to that most powerful engine of ignorance, the diffusion of printed matter--has the question of the freedom of will been put on a level on which the question itself cannot exist. In our time the majority of so-called advanced people--that is, the crowd of ignoramuses--have taken the work of the naturalists who deal with one side of the question for a solution of the whole problem. They say and write and print that the soul and freedom do not exist, for the life of man is expressed by muscular movements and muscular movements are conditioned by the activity of the nerves; the soul and free will do not exist because at an unknown period of time we sprang from the apes. They say this, not at all suspecting that thousands of years ago that same law of necessity which with such ardor they are now trying to prove by physiology and comparative zoology was not merely acknowledged by all the religions and all the thinkers, but has never been denied. They do not see that the role of the natural sciences in this matter is merely to serve as an instrument for the illumination of one side of it. For the fact that, from the point of view of observation, reason and the will are merely secretions of the brain, and that man following the general law may have developed from lower animals at some unknown period of time, only explains from a fresh side the truth admitted thousands of years ago by all the religious and philosophic theories--that from the point of view of reason man is subject to the law of necessity; but it does not advance by a hair's breadth the solution of the question, which has another, opposite, side, based on the consciousness of freedom. If men descended from the apes at an unknown period of time, that is as comprehensible as that they were made from a handful of earth at a certain period of time (in the first case the unknown quantity is the time, in the second case it is the origin); and the question of how man's consciousness of freedom is to be reconciled with the law of necessity to which he is subject cannot be solved by comparative physiology and zoology, for in a frog, a rabbit, or an ape, we can observe only the muscular nervous activity, but in man we observe consciousness as well as the muscular and nervous activity. The naturalists and their followers, thinking they can solve this question, are like plasterers set to plaster one side of the walls of a church who, availing themselves of the absence of the chief superintendent of the work, should in an access of zeal plaster over the windows, icons, woodwork, and still unbuttressed walls, and should be delighted that from their point of view as plasterers, everything is now so smooth and regular. CHAPTER IX For the solution of the question of free will or inevitability, history has this advantage over other branches of knowledge in which the question is dealt with, that for history this question does not refer to the essence of man's free will but its manifestation in the past and under certain conditions. In regard to this question, history stands to the other sciences as experimental science stands to abstract science. The subject for history is not man's will itself but our presentation of it. And so for history, the insoluble mystery presented by the incompatibility of free will and inevitability does not exist as it does for theology, ethics, and philosophy. History surveys a presentation of man's life in which the union of these two contradictions has already taken place. In actual life each historic event, each human action, is very clearly and definitely understood without any sense of contradiction, although each event presents itself as partly free and partly compulsory. To solve the question of how freedom and necessity are combined and what constitutes the essence of these two conceptions, the philosophy of history can and should follow a path contrary to that taken by other sciences. Instead of first defining the conceptions of freedom and inevitability in themselves, and then ranging the phenomena of life under those definitions, history should deduce a definition of the conception of freedom and inevitability themselves from the immense quantity of phenomena of which it is cognizant and that always appear dependent on these two elements. Whatever presentation of the activity of many men or of an individual we may consider, we always regard it as the result partly of man's free will and partly of the law of inevitability. Whether we speak of the migration of the peoples and the incursions of the barbarians, or of the decrees of Napoleon III, or of someone's action an hour ago in choosing one direction out of several for his walk, we are unconscious of any contradiction. The degree of freedom and inevitability governing the actions of these people is clearly defined for us. Our conception of the degree of freedom often varies according to differences in the point of view from which we regard the event, but every human action appears to us as a certain combination of freedom and inevitability. In every action we examine we see a certain measure of freedom and a certain measure of inevitability. And always the more freedom we see in any action the less inevitability do we perceive, and the more inevitability the less freedom. The proportion of freedom to inevitability decreases and increases according to the point of view from which the action is regarded, but their relation is always one of inverse proportion. A sinking man who clutches at another and drowns him; or a hungry mother exhausted by feeding her baby, who steals some food; or a man trained to discipline who on duty at the word of command kills a defenseless man--seem less guilty, that is, less free and more subject to the law of necessity, to one who knows the circumstances in which these people were placed, and more free to one who does not know that the man was himself drowning, that the mother was hungry, that the soldier was in the ranks, and so on. Similarly a man who committed a murder twenty years ago and has since lived peaceably and harmlessly in society seems less guilty and his action more due to the law of inevitability, to someone who considers his action after twenty years have elapsed than to one who examined it the day after it was committed. And in the same way every action of an insane, intoxicated, or highly excited man appears less free and more inevitable to one who knows the mental condition of him who committed the action, and seems more free and less inevitable to one who does not know it. In all these cases the conception of freedom is increased or diminished and the conception of compulsion is correspondingly decreased or increased, according to the point of view from which the action is regarded. So that the greater the conception of necessity the smaller the conception of freedom and vice versa. Religion, the common sense of mankind, the science of jurisprudence, and history itself understand alike this relation between necessity and freedom. All cases without exception in which our conception of freedom and necessity is increased and diminished depend on three considerations: (1) The relation to the external world of the man who commits the deeds. (2) His relation to time. (3) His relation to the causes leading to the action. The first consideration is the clearness of our perception of the man's relation to the external world and the greater or lesser clearness of our understanding of the definite position occupied by the man in relation to everything coexisting with him. This is what makes it evident that a drowning man is less free and more subject to necessity than one standing on dry ground, and that makes the actions of a man closely connected with others in a thickly populated district, or of one bound by family, official, or business duties, seem certainly less free and more subject to necessity than those of a man living in solitude and seclusion. If we consider a man alone, apart from his relation to everything around him, each action of his seems to us free. But if we see his relation to anything around him, if we see his connection with anything whatever--with a man who speaks to him, a book he reads, the work on which he is engaged, even with the air he breathes or the light that falls on the things about him--we see that each of these circumstances has an influence on him and controls at least some side of his activity. And the more we perceive of these influences the more our conception of his freedom diminishes and the more our conception of the necessity that weighs on him increases. The second consideration is the more or less evident time relation of the man to the world and the clearness of our perception of the place the man's action occupies in time. That is the ground which makes the fall of the first man, resulting in the production of the human race, appear evidently less free than a man's entry into marriage today. It is the reason why the life and activity of people who lived centuries ago and are connected with me in time cannot seem to me as free as the life of a contemporary, the consequences of which are still unknown to me. The degree of our conception of freedom or inevitability depends in this respect on the greater or lesser lapse of time between the performance of the action and our judgment of it. If I examine an act I performed a moment ago in approximately the same circumstances as those I am in now, my action appears to me undoubtedly free. But if I examine an act performed a month ago, then being in different circumstances, I cannot help recognizing that if that act had not been committed much that resulted from it- good, agreeable, and even essential--would not have taken place. If I reflect on an action still more remote, ten years ago or more, then the consequences of my action are still plainer to me and I find it hard to imagine what would have happened had that action not been performed. The farther I go back in memory, or what is the same thing the farther I go forward in my judgment, the more doubtful becomes my belief in the freedom of my action. In history we find a very similar progress of conviction concerning the part played by free will in the general affairs of humanity. A contemporary event seems to us to be indubitably the doing of all the known participants, but with a more remote event we already see its inevitable results which prevent our considering anything else possible. And the farther we go back in examining events the less arbitrary do they appear. The Austro-Prussian war appears to us undoubtedly the result of the crafty conduct of Bismarck, and so on. The Napoleonic wars still seem to us, though already questionably, to be the outcome of their heroes' will. But in the Crusades we already see an event occupying its definite place in history and without which we cannot imagine the modern history of Europe, though to the chroniclers of the Crusades that event appeared as merely due to the will of certain people. In regard to the migration of the peoples it does not enter anyone's head today to suppose that the renovation of the European world depended on Attila's caprice. The farther back in history the object of our observation lies, the more doubtful does the free will of those concerned in the event become and the more manifest the law of inevitability. The third consideration is the degree to which we apprehend that endless chain of causation inevitably demanded by reason, in which each phenomenon comprehended, and therefore man's every action, must have its definite place as a result of what has gone before and as a cause of what will follow. The better we are acquainted with the physiological, psychological, and historical laws deduced by observation and by which man is controlled, and the more correctly we perceive the physiological, psychological, and historical causes of the action, and the simpler the action we are observing and the less complex the character and mind of the man in question, the more subject to inevitability and the less free do our actions and those of others appear. When we do not at all understand the cause of an action, whether a crime, a good action, or even one that is simply nonmoral, we ascribe a greater amount of freedom to it. In the case of a crime we most urgently demand the punishment for such an act; in the case of a virtuous act we rate its merit most highly. In an indifferent case we recognize in it more individuality, originality, and independence. But if even one of the innumerable causes of the act is known to us we recognize a certain element of necessity and are less insistent on punishment for the crime, or the acknowledgment of the merit of the virtuous act, or the freedom of the apparently original action. That a criminal was reared among male factors mitigates his fault in our eyes. The self-sacrifice of a father or mother, or self-sacrifice with the possibility of a reward, is more comprehensible than gratuitous self-sacrifice, and therefore seems less deserving of sympathy and less the result of free will. The founder of a sect or party, or an inventor, impresses us less when we know how or by what the way was prepared for his activity. If we have a large range of examples, if our observation is constantly directed to seeking the correlation of cause and effect in people's actions, their actions appear to us more under compulsion and less free the more correctly we connect the effects with the causes. If we examined simple actions and had a vast number of such actions under observation, our conception of their inevitability would be still greater. The dishonest conduct of the son of a dishonest father, the misconduct of a woman who had fallen into bad company, a drunkard's relapse into drunkenness, and so on are actions that seem to us less free the better we understand their cause. If the man whose actions we are considering is on a very low stage of mental development, like a child, a madman, or a simpleton--then, knowing the causes of the act and the simplicity of the character and intelligence in question, we see so large an element of necessity and so little free will that as soon as we know the cause prompting the action we can foretell the result. On these three considerations alone is based the conception of irresponsibility for crimes and the extenuating circumstances admitted by all legislative codes. The responsibility appears greater or less according to our greater or lesser knowledge of the circumstances in which the man was placed whose action is being judged, and according to the greater or lesser interval of time between the commission of the action and its investigation, and according to the greater or lesser understanding of the causes that led to the action. CHAPTER X Thus our conception of free will and inevitability gradually diminishes or increases according to the greater or lesser connection with the external world, the greater or lesser remoteness of time, and the greater or lesser dependence on the causes in relation to which we contemplate a man's life. So that if we examine the case of a man whose connection with the external world is well known, where the time between the action and its examination is great, and where the causes of the action are most accessible, we get the conception of a maximum of inevitability and a minimum of free will. If we examine a man little dependent on external conditions, whose action was performed very recently, and the causes of whose action are beyond our ken, we get the conception of a minimum of inevitability and a maximum of freedom. In neither case--however we may change our point of view, however plain we may make to ourselves the connection between the man and the external world, however inaccessible it may be to us, however long or short the period of time, however intelligible or incomprehensible the causes of the action may be--can we ever conceive either complete freedom or complete necessity. (1) To whatever degree we may imagine a man to be exempt from the influence of the external world, we never get a conception of freedom in space. Every human action is inevitably conditioned by what surrounds him and by his own body. I lift my arm and let it fall. My action seems to me free; but asking myself whether I could raise my arm in every direction, I see that I raised it in the direction in which there was least obstruction to that action either from things around me or from the construction of my own body. I chose one out of all the possible directions because in it there were fewest obstacles. For my action to be free it was necessary that it should encounter no obstacles. To conceive of a man being free we must imagine him outside space, which is evidently impossible. (2) However much we approximate the time of judgment to the time of the deed, we never get a conception of freedom in time. For if I examine an action committed a second ago I must still recognize it as not being free, for it is irrevocably linked to the moment at which it was committed. Can I lift my arm? I lift it, but ask myself: could I have abstained from lifting my arm at the moment that has already passed? To convince myself of this I do not lift it the next moment. But I am not now abstaining from doing so at the first moment when I asked the question. Time has gone by which I could not detain, the arm I then lifted is no longer the same as the arm I now refrain from lifting, nor is the air in which I lifted it the same that now surrounds me. The moment in which the first movement was made is irrevocable, and at that moment I could make only one movement, and whatever movement I made would be the only one. That I did not lift my arm a moment later does not prove that I could have abstained from lifting it then. And since I could make only one movement at that single moment of time, it could not have been any other. To imagine it as free, it is necessary to imagine it in the present, on the boundary between the past and the future--that is, outside time, which is impossible. (3) However much the difficulty of understanding the causes may be increased, we never reach a conception of complete freedom, that is, an absence of cause. However inaccessible to us may be the cause of the expression of will in any action, our own or another's, the first demand of reason is the assumption of and search for a cause, for without a cause no phenomenon is conceivable. I raise my arm to perform an action independently of any cause, but my wish to perform an action without a cause is the cause of my action. But even if--imagining a man quite exempt from all influences, examining only his momentary action in the present, unevoked by any cause--we were to admit so infinitely small a remainder of inevitability as equaled zero, we should even then not have arrived at the conception of complete freedom in man, for a being uninfluenced by the external world, standing outside of time and independent of cause, is no longer a man. In the same way we can never imagine the action of a man quite devoid of freedom and entirely subject to the law of inevitability. (1) However we may increase our knowledge of the conditions of space in which man is situated, that knowledge can never be complete, for the number of those conditions is as infinite as the infinity of space. And therefore so long as not all the conditions influencing men are defined, there is no complete inevitability but a certain measure of freedom remains. (2) However we may prolong the period of time between the action we are examining and the judgment upon it, that period will be finite, while time is infinite, and so in this respect too there can never be absolute inevitability. (3) However accessible may be the chain of causation of any action, we shall never know the whole chain since it is endless, and so again we never reach absolute inevitability. But besides this, even if, admitting the remaining minimum of freedom to equal zero, we assumed in some given case--as for instance in that of a dying man, an unborn babe, or an idiot--complete absence of freedom, by so doing we should destroy the very conception of man in the case we are examining, for as soon as there is no freedom there is also no man. And so the conception of the action of a man subject solely to the law of inevitability without any element of freedom is just as impossible as the conception of a man's completely free action. And so to imagine the action of a man entirely subject to the law of inevitability without any freedom, we must assume the knowledge of an infinite number of space relations, an infinitely long period of time, and an infinite series of causes. To imagine a man perfectly free and not subject to the law of inevitability, we must imagine him all alone, beyond space, beyond time, and free from dependence on cause. In the first case, if inevitability were possible without freedom we should have reached a definition of inevitability by the laws of inevitability itself, that is, a mere form without content. In the second case, if freedom were possible without inevitability we should have arrived at unconditioned freedom beyond space, time, and cause, which by the fact of its being unconditioned and unlimited would be nothing, or mere content without form. We should in fact have reached those two fundamentals of which man's whole outlook on the universe is constructed--the incomprehensible essence of life, and the laws defining that essence. Reason says: (1) space with all the forms of matter that give it visibility is infinite, and cannot be imagined otherwise. (2) Time is infinite motion without a moment of rest and is unthinkable otherwise. (3) The connection between cause and effect has no beginning and can have no end. Consciousness says: (1) I alone am, and all that exists is but me, consequently I include space. (2) I measure flowing time by the fixed moment of the present in which alone I am conscious of myself as living, consequently I am outside time. (3) I am beyond cause, for I feel myself to be the cause of every manifestation of my life. Reason gives expression to the laws of inevitability. Consciousness gives expression to the essence of freedom. Freedom not limited by anything is the essence of life, in man's consciousness. Inevitability without content is man's reason in its three forms. Freedom is the thing examined. Inevitability is what examines. Freedom is the content. Inevitability is the form. Only by separating the two sources of cognition, related to one another as form to content, do we get the mutually exclusive and separately incomprehensible conceptions of freedom and inevitability. Only by uniting them do we get a clear conception of man's life. Apart from these two concepts which in their union mutually define one another as form and content, no conception of life is possible. All that we know of the life of man is merely a certain relation of free will to inevitability, that is, of consciousness to the laws of reason. All that we know of the external world of nature is only a certain relation of the forces of nature to inevitability, or of the essence of life to the laws of reason. The great natural forces lie outside us and we are not conscious of them; we call those forces gravitation, inertia, electricity, animal force, and so on, but we are conscious of the force of life in man and we call that freedom. But just as the force of gravitation, incomprehensible in itself but felt by every man, is understood by us only to the extent to which we know the laws of inevitability to which it is subject (from the first knowledge that all bodies have weight, up to Newton's law), so too the force of free will, incomprehensible in itself but of which everyone is conscious, is intelligible to us only in as far as we know the laws of inevitability to which it is subject (from the fact that every man dies, up to the knowledge of the most complex economic and historic laws). All knowledge is merely a bringing of this essence of life under the laws of reason. Man's free will differs from every other force in that man is directly conscious of it, but in the eyes of reason it in no way differs from any other force. The forces of gravitation, electricity, or chemical affinity are only distinguished from one another in that they are differently defined by reason. Just so the force of man's free will is distinguished by reason from the other forces of nature only by the definition reason gives it. Freedom, apart from necessity, that is, apart from the laws of reason that define it, differs in no way from gravitation, or heat, or the force that makes things grow; for reason, it is only a momentary undefinable sensation of life. And as the undefinable essence of the force moving the heavenly bodies, the undefinable essence of the forces of heat and electricity, or of chemical affinity, or of the vital force, forms the content of astronomy, physics, chemistry, botany, zoology, and so on, just in the same way does the force of free will form the content of history. But just as the subject of every science is the manifestation of this unknown essence of life while that essence itself can only be the subject of metaphysics, even the manifestation of the force of free will in human beings in space, in time, and in dependence on cause forms the subject of history, while free will itself is the subject of metaphysics. In the experimental sciences what we know we call the laws of inevitability, what is unknown to us we call vital force. Vital force is only an expression for the unknown remainder over and above what we know of the essence of life. So also in history what is known to us we call laws of inevitability, what is unknown we call free will. Free will is for history only an expression for the unknown remainder of what we know about the laws of human life. CHAPTER XI History examines the manifestations of man's free will in connection with the external world in time and in dependence on cause, that is, it defines this freedom by the laws of reason, and so history is a science only in so far as this free will is defined by those laws. The recognition of man's free will as something capable of influencing historical events, that is, as not subject to laws, is the same for history as the recognition of a free force moving the heavenly bodies would be for astronomy. That assumption would destroy the possibility of the existence of laws, that is, of any science whatever. If there is even a single body moving freely, then the laws of Kepler and Newton are negatived and no conception of the movement of the heavenly bodies any longer exists. If any single action is due to free will, then not a single historical law can exist, nor any conception of historical events. For history, lines exist of the movement of human wills, one end of which is hidden in the unknown but at the other end of which a consciousness of man's will in the present moves in space, time, and dependence on cause. The more this field of motion spreads out before our eyes, the more evident are the laws of that movement. To discover and define those laws is the problem of history. From the standpoint from which the science of history now regards its subject on the path it now follows, seeking the causes of events in man's freewill, a scientific enunciation of those laws is impossible, for however man's free will may be restricted, as soon as we recognize it as a force not subject to law, the existence of law becomes impossible. Only by reducing this element of free will to the infinitesimal, that is, by regarding it as an infinitely small quantity, can we convince ourselves of the absolute inaccessibility of the causes, and then instead of seeking causes, history will take the discovery of laws as its problem. The search for these laws has long been begun and the new methods of thought which history must adopt are being worked out simultaneously with the self-destruction toward which--ever dissecting and dissecting the causes of phenomena--the old method of history is moving. All human sciences have traveled along that path. Arriving at infinitesimals, mathematics, the most exact of sciences, abandons the process of analysis and enters on the new process of the integration of unknown, infinitely small, quantities. Abandoning the conception of cause, mathematics seeks law, that is, the property common to all unknown, infinitely small, elements. In another form but along the same path of reflection the other sciences have proceeded. When Newton enunciated the law of gravity he did not say that the sun or the earth had a property of attraction; he said that all bodies from the largest to the smallest have the property of attracting one another, that is, leaving aside the question of the cause of the movement of the bodies, he expressed the property common to all bodies from the infinitely large to the infinitely small. The same is done by the natural sciences: leaving aside the question of cause, they seek for laws. History stands on the same path. And if history has for its object the study of the movement of the nations and of humanity and not the narration of episodes in the lives of individuals, it too, setting aside the conception of cause, should seek the laws common to all the inseparably interconnected infinitesimal elements of free will. CHAPTER XII From the time the law of Copernicus was discovered and proved, the mere recognition of the fact that it was not the sun but the earth that moves sufficed to destroy the whole cosmography of the ancients. By disproving that law it might have been possible to retain the old conception of the movements of the bodies, but without disproving it, it would seem impossible to continue studying the Ptolemaic worlds. But even after the discovery of the law of Copernicus the Ptolemaic worlds were still studied for a long time. From the time the first person said and proved that the number of births or of crimes is subject to mathematical laws, and that this or that mode of government is determined by certain geographical and economic conditions, and that certain relations of population to soil produce migrations of peoples, the foundations on which history had been built were destroyed in their essence. By refuting these new laws the former view of history might have been retained; but without refuting them it would seem impossible to continue studying historic events as the results of man's free will. For if a certain mode of government was established or certain migrations of peoples took place in consequence of such and such geographic, ethnographic, or economic conditions, then the free will of those individuals who appear to us to have established that mode of government or occasioned the migrations can no longer be regarded as the cause. And yet the former history continues to be studied side by side with the laws of statistics, geography, political economy, comparative philology, and geology, which directly contradict its assumptions. The struggle between the old views and the new was long and stubbornly fought out in physical philosophy. Theology stood on guard for the old views and accused the new of violating revelation. But when truth conquered, theology established itself just as firmly on the new foundation. Just as prolonged and stubborn is the struggle now proceeding between the old and the new conception of history, and theology in the same way stands on guard for the old view, and accuses the new view of subverting revelation. In the one case as in the other, on both sides the struggle provokes passion and stifles truth. On the one hand there is fear and regret for the loss of the whole edifice constructed through the ages, on the other is the passion for destruction. To the men who fought against the rising truths of physical philosophy, it seemed that if they admitted that truth it would destroy faith in God, in the creation of the firmament, and in the miracle of Joshua the son of Nun. To the defenders of the laws of Copernicus and Newton, to Voltaire for example, it seemed that the laws of astronomy destroyed religion, and he utilized the law of gravitation as a weapon against religion. Just so it now seems as if we have only to admit the law of inevitability, to destroy the conception of the soul, of good and evil, and all the institutions of state and church that have been built up on those conceptions. So too, like Voltaire in his time, uninvited defenders of the law of inevitability today use that law as a weapon against religion, though the law of inevitability in history, like the law of Copernicus in astronomy, far from destroying, even strengthens the foundation on which the institutions of state and church are erected. As in the question of astronomy then, so in the question of history now, the whole difference of opinion is based on the recognition or nonrecognition of something absolute, serving as the measure of visible phenomena. In astronomy it was the immovability of the earth, in history it is the independence of personality--free will. As with astronomy the difficulty of recognizing the motion of the earth lay in abandoning the immediate sensation of the earth's fixity and of the motion of the planets, so in history the difficulty of recognizing the subjection of personality to the laws of space, time, and cause lies in renouncing the direct feeling of the independence of one's own personality. But as in astronomy the new view said: "It is true that we do not feel the movement of the earth, but by admitting its immobility we arrive at absurdity, while by admitting its motion (which we do not feel) we arrive at laws," so also in history the new view says: "It is true that we are not conscious of our dependence, but by admitting our free will we arrive at absurdity, while by admitting our dependence on the external world, on time, and on cause, we arrive at laws." In the first case it was necessary to renounce the consciousness of an unreal immobility in space and to recognize a motion we did not feel; in the present case it is similarly necessary to renounce a freedom that does not exist, and to recognize a dependence of which we are not conscious. *** END OF THE PROJECT GUTENBERG EBOOK, WAR AND PEACE *** This file should be named wrnpc11.txt or wrnpc11.zip Corrected EDITIONS of our eBooks get a new NUMBER, wrnpc12.txt VERSIONS based on separate sources get new LETTER, wrnpc11a.txt Project Gutenberg eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the US unless a copyright notice is included. Thus, we usually do not keep eBooks in compliance with any particular paper edition. We are now trying to release all our eBooks one year in advance of the official release dates, leaving time for better editing. Please be encouraged to tell us about any error or corrections, even years after the official publication date. Please note neither this listing nor its contents are final til midnight of the last day of the month of any such announcement. The official release date of all Project Gutenberg eBooks is at Midnight, Central Time, of the last day of the stated month. A preliminary version may often be posted for suggestion, comment and editing by those who wish to do so. Most people start at our Web sites at: http://gutenberg.net or http://promo.net/pg These Web sites include award-winning information about Project Gutenberg, including how to donate, how to help produce our new eBooks, and how to subscribe to our email newsletter (free!). Those of you who want to download any eBook before announcement can get to them as follows, and just download by date. This is also a good way to get them instantly upon announcement, as the indexes our cataloguers produce obviously take a while after an announcement goes out in the Project Gutenberg Newsletter. http://www.ibiblio.org/gutenberg/etext05 or ftp://ftp.ibiblio.org/pub/docs/books/gutenberg/etext05 Or /etext04, 03, 02, 01, 00, 99, 98, 97, 96, 95, 94, 93, 92, 92, 91 or 90 Just search by the first five letters of the filename you want, as it appears in our Newsletters. Information about Project Gutenberg (one page) We produce about two million dollars for each hour we work. The time it takes us, a rather conservative estimate, is fifty hours to get any eBook selected, entered, proofread, edited, copyright searched and analyzed, the copyright letters written, etc. Our projected audience is one hundred million readers. If the value per text is nominally estimated at one dollar then we produce $2 million dollars per hour in 2002 as we release over 100 new text files per month: 1240 more eBooks in 2001 for a total of 4000+ We are already on our way to trying for 2000 more eBooks in 2002 If they reach just 1-2% of the world's population then the total will reach over half a trillion eBooks given away by year's end. The Goal of Project Gutenberg is to Give Away 1 Trillion eBooks! This is ten thousand titles each to one hundred million readers, which is only about 4% of the present number of computer users. Here is the briefest record of our progress (* means estimated): eBooks Year Month 1 1971 July 10 1991 January 100 1994 January 1000 1997 August 1500 1998 October 2000 1999 December 2500 2000 December 3000 2001 November 4000 2001 October/November 6000 2002 December* 9000 2003 November* 10000 2004 January* The Project Gutenberg Literary Archive Foundation has been created to secure a future for Project Gutenberg into the next millennium. We need your donations more than ever! As of February, 2002, contributions are being solicited from people and organizations in: Alabama, Alaska, Arkansas, Connecticut, Delaware, District of Columbia, Florida, Georgia, Hawaii, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Massachusetts, Michigan, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin, and Wyoming. We have filed in all 50 states now, but these are the only ones that have responded. As the requirements for other states are met, additions to this list will be made and fund raising will begin in the additional states. Please feel free to ask to check the status of your state. In answer to various questions we have received on this: We are constantly working on finishing the paperwork to legally request donations in all 50 states. If your state is not listed and you would like to know if we have added it since the list you have, just ask. While we cannot solicit donations from people in states where we are not yet registered, we know of no prohibition against accepting donations from donors in these states who approach us with an offer to donate. International donations are accepted, but we don't know ANYTHING about how to make them tax-deductible, or even if they CAN be made deductible, and don't have the staff to handle it even if there are ways. Donations by check or money order may be sent to: PROJECT GUTENBERG LITERARY ARCHIVE FOUNDATION 809 North 1500 West Salt Lake City, UT 84116 Contact us if you want to arrange for a wire transfer or payment method other than by check or money order. The Project Gutenberg Literary Archive Foundation has been approved by the US Internal Revenue Service as a 501(c)(3) organization with EIN [Employee Identification Number] 64-622154. Donations are tax-deductible to the maximum extent permitted by law. As fund-raising requirements for other states are met, additions to this list will be made and fund-raising will begin in the additional states. We need your donations more than ever! You can get up to date donation information online at: http://www.gutenberg.net/donation.html *** If you can't reach Project Gutenberg, you can always email directly to: Michael S. Hart Prof. Hart will answer or forward your message. We would prefer to send you information by email. **The Legal Small Print** (Three Pages) ***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN EBOOKS**START*** Why is this "Small Print!" statement here? You know: lawyers. They tell us you might sue us if there is something wrong with your copy of this eBook, even if you got it for free from someone other than us, and even if what's wrong is not our fault. So, among other things, this "Small Print!" statement disclaims most of our liability to you. It also tells you how you may distribute copies of this eBook if you want to. *BEFORE!* YOU USE OR READ THIS EBOOK By using or reading any part of this PROJECT GUTENBERG-tm eBook, you indicate that you understand, agree to and accept this "Small Print!" statement. If you do not, you can receive a refund of the money (if any) you paid for this eBook by sending a request within 30 days of receiving it to the person you got it from. If you received this eBook on a physical medium (such as a disk), you must return it with your request. ABOUT PROJECT GUTENBERG-TM EBOOKS This PROJECT GUTENBERG-tm eBook, like most PROJECT GUTENBERG-tm eBooks, is a "public domain" work distributed by Professor Michael S. Hart through the Project Gutenberg Association (the "Project"). Among other things, this means that no one owns a United States copyright on or for this work, so the Project (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth below, apply if you wish to copy and distribute this eBook under the "PROJECT GUTENBERG" trademark. Please do not use the "PROJECT GUTENBERG" trademark to market any commercial products without permission. To create these eBooks, the Project expends considerable efforts to identify, transcribe and proofread public domain works. Despite these efforts, the Project's eBooks and any medium they may be on may contain "Defects". Among other things, Defects may take the form of incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other eBook medium, a computer virus, or computer codes that damage or cannot be read by your equipment. LIMITED WARRANTY; DISCLAIMER OF DAMAGES But for the "Right of Replacement or Refund" described below, [1] Michael Hart and the Foundation (and any other party you may receive this eBook from as a PROJECT GUTENBERG-tm eBook) disclaims all liability to you for damages, costs and expenses, including legal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR UNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT, INCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. If you discover a Defect in this eBook within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending an explanatory note within that time to the person you received it from. If you received it on a physical medium, you must return it with your note, and such person may choose to alternatively give you a replacement copy. If you received it electronically, such person may choose to alternatively give you a second opportunity to receive it electronically. THIS EBOOK IS OTHERWISE PROVIDED TO YOU "AS-IS". NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS TO THE EBOOK OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states do not allow disclaimers of implied warranties or the exclusion or limitation of consequential damages, so the above disclaimers and exclusions may not apply to you, and you may have other legal rights. INDEMNITY You will indemnify and hold Michael Hart, the Foundation, and its trustees and agents, and any volunteers associated with the production and distribution of Project Gutenberg-tm texts harmless, from all liability, cost and expense, including legal fees, that arise directly or indirectly from any of the following that you do or cause: [1] distribution of this eBook, [2] alteration, modification, or addition to the eBook, or [3] any Defect. DISTRIBUTION UNDER "PROJECT GUTENBERG-tm" You may distribute copies of this eBook electronically, or by disk, book or any other medium if you either delete this "Small Print!" and all other references to Project Gutenberg, or: [1] Only give exact copies of it. Among other things, this requires that you do not remove, alter or modify the eBook or this "small print!" statement. You may however, if you wish, distribute this eBook in machine readable binary, compressed, mark-up, or proprietary form, including any form resulting from conversion by word processing or hypertext software, but only so long as *EITHER*: [*] The eBook, when displayed, is clearly readable, and does *not* contain characters other than those intended by the author of the work, although tilde (~), asterisk (*) and underline (_) characters may be used to convey punctuation intended by the author, and additional characters may be used to indicate hypertext links; OR [*] The eBook may be readily converted by the reader at no expense into plain ASCII, EBCDIC or equivalent form by the program that displays the eBook (as is the case, for instance, with most word processors); OR [*] You provide, or agree to also provide on request at no additional cost, fee or expense, a copy of the eBook in its original plain ASCII form (or in EBCDIC or other equivalent proprietary form). [2] Honor the eBook refund and replacement provisions of this "Small Print!" statement. [3] Pay a trademark license fee to the Foundation of 20% of the gross profits you derive calculated using the method you already use to calculate your applicable taxes. If you don't derive profits, no royalty is due. Royalties are payable to "Project Gutenberg Literary Archive Foundation" the 60 days following each date you prepare (or were legally required to prepare) your annual (or equivalent periodic) tax return. Please contact us beforehand to let us know your plans and to work out the details. WHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO? Project Gutenberg is dedicated to increasing the number of public domain and licensed works that can be freely distributed in machine readable form. The Project gratefully accepts contributions of money, time, public domain materials, or royalty free copyright licenses. Money should be paid to the: "Project Gutenberg Literary Archive Foundation." If you are interested in contributing scanning equipment or software or other items, please contact Michael Hart at: hart@pobox.com [Portions of this eBook's header and trailer may be reprinted only when distributed free of all fees. Copyright (C) 2001, 2002 by Michael S. Hart. Project Gutenberg is a TradeMark and may not be used in any sales of Project Gutenberg eBooks or other materials be they hardware or software or any other related product without express permission.] *END THE SMALL PRINT! FOR PUBLIC DOMAIN EBOOKS*Ver.02/11/02*END* the be of and a in to have it to for i that you he on with do at by not this but from they his that she or which as we an say will would can if their go what there all get her make who as out up see know time take them some could so him year into its then think my come than more about now last your me no other give just should these people also well any only new very when may way look like use her such how because when as good find man our want day between even there many those one after down yeah so thing tell through back still must child here over too put own on no work become more old government mean part leave life great where case woman over seem same us work need feel system each might may much ask group number yes however another again world area show course company shall under problem against never all most service try call hand party high about something school in small place before why while away keep point house different country really provide week hold large member off always next follow without turn end within local where during bring most word begin although example next family rather fact like social write state percent quite both start run long right set help every home month side night important eye head information question business play power money change move interest order book often development young national pay hear room whether water form car other yet perhaps meet level until though policy include believe council already possible nothing line allow need effect big use lead stand idea study lot live job since name result body happen friend right least right almost much carry authority long early view himself public together talk report after only before bit face sit market appear continue able political later hour rate law door court office let war produce reason less minister subject person term particular full involve sort require suggest far towards anything period consider read change society process mother offer late voice both once police kind lose add probably expect ever available no price little action issue far remember position low cost little matter community remain figure type research actually education fall speak few today enough open bad buy programme minute moment girl age centre stop control value send health decide main win understand decision develop class industry receive back several return build spend force condition itself paper themselves off major describe agree economic increase upon learn general century therefore father section patient around activity road table including church reach real lie mind likely among team experience death soon act sense staff certain student half around language walk die special difficult international particularly department management morning draw hope across plan product city early committee ground letter create evidence foot clear boy game food role practice bank else support sell event building range behind sure report pass black stage meeting sometimes thus accept town art further club cause arm history parent land trade watch white situation whose ago teacher record manager relation common strong whole field free break yesterday support window account explain stay few wait usually difference material air wife cover apply project raise sale relationship indeed light claim form base care someone everything certainly rule home cut grow similar story quality tax worker nature structure data necessary pound method unit central bed union movement board true well simply contain especially open short personal detail model bear single join reduce establish herself wall face easy private computer former hospital chapter scheme theory choose wish property achieve financial poor officer up charge director drive deal place approach chance application seek cos foreign along top amount son operation fail human opportunity simple leader look share production recent firm picture source security serve according end contract wide occur agreement better kill act site either labour plan various since test eat loss close represent love colour clearly shop benefit animal heart election purpose standard due secretary rise date hard music hair prepare factor other anyone pattern manage piece discuss prove front evening royal tree population fine plant pressure response catch street pick performance knowledge despite design page enjoy individual suppose rest instead wear basis size environment per fire series success natural wrong near round thought list argue final future introduce analysis enter space arrive ensure demand statement to attention love principle pull set doctor choice refer feature couple step following thank machine income training present association film region effort player everyone present award village control organisation whatever news nice difficulty modern cell close current legal energy finally degree mile means growth whom treatment sound above task provision affect please red happy behaviour concerned point function identify resource defence garden floor technology style feeling science relate doubt horse force answer compare suffer individual forward announce user fund character risk normal myself nor dog obtain quickly army indicate forget station glass cup previous husband recently publish serious anyway visit capital either note season argument listen show responsibility significant deal prime economy element finish duty fight train maintain attempt leg investment save throughout design suddenly brother improve avoid wonder tend title hotel aspect increase help industrial express summer determine generally daughter exist used share baby nearly smile sorry sea skill claim treat remove concern university labour left dead discussion specific customer box outside state conference whole total profit division throw procedure fill king assume image oil obviously unless appropriate circumstance military proposal mention client sector direction admit though replace basic hard instance sign original successful okay reflect aware measure attitude yourself disease exactly above commission intend beyond seat president encourage addition goal round miss popular affair technique respect drop professional less once item fly reveal version maybe ability operate good campaign heavy advice institution top discover surface library pupil record refuse prevent advantage dark teach memory culture blood cost majority answer variety press depend bill competition ready general access hit stone useful extent employment regard apart present appeal text parliament cause terms bar attack effective mouth down result fish future visit little easily attempt enable trouble traditional payment best post county lady holiday realise importance chair facility complete article object context survey notice complete turn direct immediately collection reference card interesting considerable television extend communication agency physical except check sun species possibility official chairman speaker second career laugh weight sound responsible base document solution return medical hot recognise talk budget river fit organization existing start push tomorrow requirement cold edge opposition opinion drug quarter option sign worth call define stock influence occasion eventually software highly exchange lack shake study concept blue star radio no arrangement examine bird green band sex finger past independent equipment north mind move message fear afternoon drink fully race gain strategy extra scene slightly kitchen speech arise network tea peace failure employee ahead scale hardly attend shoulder otherwise railway directly supply expression owner associate corner past match sport status beautiful offer marriage hang civil perform sentence crime ball marry wind truth protect safety partner completely copy balance sister reader below trial rock damage adopt newspaper meaning light essential obvious nation confirm south length branch deep none planning trust working pain studio positive spirit college accident star hope mark works league clear imagine through cash normally play strength train travel target very pair male gas issue contribution complex supply beat artist agent presence along environmental strike contact protection beginning demand media relevant employ shoot executive slowly relatively aid huge late speed review test order route consequence telephone release proportion primary consideration reform driver annual nuclear latter practical commercial rich emerge apparently ring distance exercise key close skin island separate aim danger credit usual link candidate track safe interested assessment path merely plus district regular reaction impact collect debate lay rise belief conclusion shape vote aim politics reply press approach file western earth public survive estate boat prison additional settle largely wine observe limit deny for straight somebody writer weekend clothes active sight video reality hall nevertheless regional vehicle worry powerful possibly cross colleague charge lead farm respond employer carefully understanding connection comment grant concentrate ignore phone hole insurance content confidence sample transport objective alone flower injury lift stick front mainly battle generation currently winter inside impossible somewhere arrange will sleep progress volume ship legislation commitment enough conflict bag fresh entry smile fair promise introduction senior manner background key touch vary sexual ordinary cabinet painting entirely engine previously administration tonight adult prefer author actual song investigation debt visitor forest repeat wood contrast extremely wage domestic commit threat bus warm sir regulation drink relief internal strange excellent run fairly technical tradition measure insist his farmer until traffic dinner consumer meal warn living package half increasingly description soft stuff award existence improvement coffee appearance standard attack sheet category distribution equally session cultural loan bind museum conversation threaten link launch proper victim audience famous master lip religious joint cry potential broad exhibition experience judge formal housing past concern freedom gentleman attract explanation appoint note chief total lovely official date demonstrate construction middle yard unable acquire surely crisis propos west impose market care god favour before name equal capacity flat selection alone football victory factory rural twice sing whereas own head examination deliver nobody substantial invite intention egg reasonable onto retain aircraft decade cheap quiet bright contribute row search limit definition unemployment spread mark flight account output last tour address immediate reduction interview assess promote everybody suitable ought growing nod reject while high dream vote divide declare handle detailed challenge notice rain destroy mountain concentration limited finance pension influence afraid murder neck weapon hide offence absence error representative enterprise criticism average quick sufficient appointment match transfer acid spring birth ear recognize recommend module instruction democratic park weather bottle address bedroom kid pleasure realize assembly expensive select teaching desire whilst contact implication combine temperature wave magazine totally mental used store scientific frequently thanks beside settlement absolutely critical recognition touch consist below silence expenditure institute dress dangerous familiar asset belong educational sum publication partly block seriously youth tape elsewhere cover fee program treaty necessarily unlikely properly guest code hill screen household sequence correct female phase crowd welcome metal human widely undertake cut sky brain expert experiment tiny perfect disappear initiative assumption photograph ministry congress transfer reading scientist fast fast closely thin solicitor secure plate pool gold emphasis recall shout generate location display heat gun shut journey imply violence dry historical step curriculum noise lunch fear succeed fall bottom initial theme characteristic pretty empty display combination interpretation rely escape score justice upper tooth organise cat tool spot bridge double direct conclude relative soldier climb breath afford urban nurse narrow liberal coal priority wild revenue membership grant approve tall apparent faith under fix slow troop motion leading component bloody literature conservative variation remind inform alternative neither outside mass busy chemical careful investigate roll instrument guide criterion pocket suggestion aye entitle tone attractive wing surprise male ring pub fruit passage illustrate pay ride foundation restaurant vital alternative burn map united device jump estimate conduct derive comment east advise advance motor satisfy hell winner effectively mistake incident focus exercise representation release leaf border wash prospect blow trip observation gather ancient brief gate elderly persuade overall rare index hand circle creation drawing anybody flow matter external capable recover shot request impression neighbour theatre beneath hurt mechanism potential lean defendant atmosphere slip chain accompany wonderful earn enemy desk engineering panel distinction deputy discipline strike married plenty establishment fashion roof milk entire tear secondary finding welfare increased attach typical meanwhile leadership walk negotiation clean religion count grey hence alright first fuel mine appeal servant liability constant hate shoe expense vast soil writing nose origin lord rest drive ticket editor switch provided northern significance channel convention damage funny bone severe search iron vision via somewhat inside trend revolution terrible knee dress unfortunately steal criminal signal notion comparison academic outcome lawyer strongly surround explore achievement odd expectation corporate prisoner question rapidly deep southern amongst withdraw afterwards paint judge citizen permanent weak separate ourselves plastic connect fundamental plane height opening lesson similarly shock rail tenant owe originally middle somehow minor negative knock root pursue inner crucial occupy that independence column proceeding female beauty perfectly struggle gap house database stretch stress passenger boundary easy view manufacturer sharp formation queen waste virtually expand contemporary politician back territory championship exception thick inquiry topic resident transaction parish supporter massive light unique challenge inflation assistance list identity suit parliamentary unknown preparation elect badly moreover tie cancer champion exclude review licence breakfast minority appreciate fan chief accommodation subsequent democracy brown taste crown permit buyer gift resolution angry metre wheel clause break tank benefit engage alive complaint inch firm abandon blame clean quote yours quantity rule guilty prior round eastern coat involvement tension diet enormous score rarely prize remaining significantly glance dominate trust naturally interpret land frame extension mix spokesman friendly acknowledge register regime fault mine dispute grass quietly decline dismiss delivery complain conservative shift port beach string depth unusual travel pilot obligation gene yellow republic shadow dear analyse anywhere average phrase long crew lucky restore convince coast engineer heavily extensive glad charity oppose defend alter warning arrest framework approval bother novel accuse surprised currency restrict possess moral protein distinguish gently reckon incorporate proceed assist sure stress justify behalf councillor setting command maintenance stair poem chest like secret restriction efficient suspect hat tough firmly willing healthy focus construct occasionally mode saving comfortable camp trade export wake partnership daily abroad profession load countryside boot mostly sudden implement reputation print calculate keen guess recommendation autumn conventional cope constitute poll voluntary valuable recovery cast premise resolve regularly solve plaintiff critic agriculture ice constitution communist layer recession slight dramatic golden temporary suit shortly initially arrival protest resistance silent presentation soul self judgment feed muscle shareholder opposite pollution wealth video kingdom bread perspective camera prince illness cake meat submit ideal relax penalty purchase tired beer specify short monitor electricity specifically bond statutory laboratory federal captain deeply pour boss creature urge locate being struggle lifespan flat valley like guard emergency dark bomb dollar efficiency mood convert possession marketing please habit subsequently round purchase sort outside gradually expansion competitive co acceptable angle cook net sensitive ratio kiss amount sleep finance essentially fund preserve wedding personality bishop dependent landscape pure mirror lock symptom promotion global aside tendency conservation reply estimate qualification pack governor expected invest cycle alright philosophy gallery sad intervention emotional advertising regard dance cigarette predict adequate variable net retire sugar pale frequency guy feature furniture administrative wooden input phenomenon surprising jacket actor kick producer hearing chip equation certificate hello remarkable alliance smoke awareness throat discovery festival dance promise rose principal brilliant proposed coach absolute drama recording precisely bath celebrate substance swing for rapid rough investor fire rank compete sweet decline rent dealer bend solid cloud across level enquiry fight abuse golf guitar electronic cottage scope pause mixture emotion comprehensive shirt allowance retirement breach infection resist qualify paragraph sick near researcher consent written literary ill wet lake entrance peak successfully sand breathe cold cheek platform interaction need watch borrow birthday knife extreme core peasant armed permission supreme overcome greatly visual lad genuine personnel judgement exciting stream perception guarantee disaster darkness bid sake organize tourist policeman castle figure race demonstration anger briefly presumably clock hero expose custom maximum wish earning priest resign store widespread comprise chamber acquisition involved confident circuit radical detect stupid grand consumption hold zone mean altogether rush numerous sink everywhere classical respectively distinct mad honour statistics false square differ disk truly survival proud tower deposit pace compensation adviser consultant drag advanced landlord whenever delay green car holder secret edition occupation agricultural intelligence empire definitely negotiate host relative mass helpful fellow sweep poet journalist defeat unlike primarily tight indication dry cricket whisper routine print anxiety witness concerning mill gentle curtain mission supplier basically assure poverty snow prayer pipe deserve shift split near consistent carpet ownership joke fewer workshop salt aged symbol slide cross anxious tale preference inevitably mere behave gain nervous guide remark pleased province steel practise flow holy dose alcohol guidance constantly climate enhance reasonably waste smooth dominant conscious formula tail ha electric sheep medicine strategic disabled smell operator mount advance remote measurement favour neither architecture worth tie barrier practitioner outstanding enthusiasm theoretical implementation worried pitch drop phone shape clinical lane apple catalogue tip publisher opponent live burden tackle historian bury stomach percentage evaluation outline talent lend silver pack fun democrat fortune storage professional reserve interval dimension honest awful manufacture confusion pink impressive satisfaction visible vessel stand curve pot replacement accurate mortgage salary impress constitutional emphasise developing proof furthermore dish interview considerably distant lower favourite tear fixed by luck count precise determination bite dear consultation range residential conduct capture ultimately cheque economics sustain secondly silly merchant lecture musical leisure check cheese lift participate fabric distribute lover childhood cool ban supposed mouse strain specialist consult minimum approximately participant monetary confuse dare smoke movie seed cease open journal shopping equivalent palace exceed isolated poetry perceive lack strengthen snap readily spite conviction corridor behind ward profile fat comfort bathroom shell reward deliberately automatically vegetable imagination junior unemployed mystery pose violent march found dig dirty straight psychological grab pleasant surgery inevitable transform bell announcement draft unity airport upset pretend plant till known admission tissue magistrate joy free pretty operating headquarters grateful classroom turnover project shrug sensible limitation specialist newly tongue refugee delay dream composition alongside ceiling highlight stick favourite tap universe request label confine scream rid acceptance detective sail adjust designer running summit participation weakness block so adapt absorb encounter defeat excitement brick blind wire crop square transition thereby protest roll stop assistant deaf constituency continuous concert breast extraordinary squad wonder cream tennis personally communicate pride bowl file expertise govern leather observer margin uncertainty reinforce ideal injure holding universal evident dust overseas desperate swim occasional trouser surprisingly register album guideline disturb amendment architect objection chart cattle doubt react consciousness right purely tin tube fulfil commonly sufficiently coin frighten grammar diary flesh summary infant stir storm mail rugby virtue specimen psychology paint constraint trace privilege completion progress hers grade exploit import potato repair passion seize low underlying heaven nerve park collapse win printer coalition button pray ultimate venture timber companion horror gesture moon remark clever van consequently raw glance broken jury gaze burst charter feminist discourse reflection carbon sophisticated ban taxation prosecution softly asleep aids publicity departure welcome sharply reception cousin relieve linguistic vat forward blue multiple pass outer vulnerable patient evolution allocate creative potentially just out judicial risk ideology smell agenda transport illegal chicken plain innovation opera lock grin shelf pole punishment strict wave inside carriage fit conversion hurry essay integration resignation treasury traveller chocolate assault schedule undoubtedly twin format murder sigh seller lease bitter double ally stake processing informal flexible cap stable till sympathy tunnel pen instal suspend blow wander notably disappoint wipe folk attraction disc inspire machinery undergo nowhere inspector wise balance purchaser resort pop organ ease friendship deficit dear convey reserve planet frequent loose intense retail wind lost grain particle destruction witness pit registration conception steady rival steam back chancellor crash belt logic premium confront precede experimental alarm rational incentive roughly bench wrap regarding inadequate ambition since fate vendor stranger spiritual increasing anticipate logical fibre attribute sense black petrol maker generous allocation depression declaration spot modest bottom dividend devote condemn integrate pile identification acute barely providing directive bet modify bare swear final accordingly valid wherever mortality medium silk funeral depending cow correspond cite classic inspection calculation rubbish minimum hypothesis youngster slope patch invitation ethnic federation duke wholly closure dictionary withdrawal automatic liable cry slow borough well suspicion portrait local jew fragment revolutionary evaluate competitor sole reliable weigh medieval clinic shine knit complexity remedy fence bike freeze eliminate interior intellectual established voter garage era pregnant plot greet electrical lie disorder formally excuse socialist cancel harm excess exact oblige accountant mutual fat volunteer laughter trick load disposal taxi murmur tonne spell clerk curious satisfactory identical applicant removal processor cotton reverse hesitate professor admire namely electoral delight urgent prompt mate exposure server distinctive marginal structural rope miner entertainment acre pig encouraging guarantee gear anniversary past ceremony rub monopoly left flee yield discount above uncle audit advertisement explosion contrary tribunal swallow typically fun rat cloth cable interrupt crash flame controversy rabbit everyday allegation strip stability tide illustration insect correspondent devise determined brush adjustment controversial organic escape thoroughly interface historic collapse temple shade craft nursery piano desirable assurance jurisdiction advertise bay specification disability presidential arrest unexpected switch penny respect celebration gross aid superb process innocent leap colony wound hardware satellite float bible statistical marked hire cathedral motive correct gastric raid comply accommodate mutter induce trap invasion humour bulk traditionally commission upstairs translate rhythm emission collective transformation battery stimulus naked white menu toilet butter surprise needle effectiveness accordance molecule fiction learning statute reluctant overlook junction necessity nearby experienced lorry exclusive graphics stimulate warmth therapy convenient cinema domain tournament doctrine sheer proposition grip widow discrimination bloody ruling fit nonetheless myth episode drift assert terrace uncertain twist insight undermine tragedy enforce criticise march leaflet fellow object pond adventure diplomatic mixed rebel equity literally magnificent loyalty tremendous airline shore restoration physically render institutional emphasize mess commander straightforward singer squeeze full breed successor triumph heading mathematics laugh clue still ease specially biological forgive trustee photo fraction chase whereby mud pensioner functional copy strictly desperately await coverage wildlife indicator lightly hierarchy evolve mechanical expert creditor capitalist essence compose mentally gaze seminar target label fig continent chap flexibility verse minute whisky equivalent recruit echo unfair launch cupboard bush shortage prominent merger command subtle capital gang fish unhappy lifetime elite refusal finish aggressive superior landing exchange debate educate separation productivity initiate probability virus reporter fool pop capitalism painful correctly complex rumour imperial justification availability spectacular remain ocean cliff sociology sadly missile situate artificial apartment provoke oral maximum angel spare shame intelligent discretion businessman explicit book uniform push counter subject objective hungry clothing ride romantic attendance part trace backing sensation carrier interest classification classic beg appendix doorway density working legislative hint shower current succession nasty duration desert receipt native chapel amazing hopefully fleet comparable oxygen installation developer disadvantage recipe crystal modification schedule midnight successive formerly loud value physics truck stroke kiss envelope speculation canal unionist directory receiver isolation fade chemistry unnecessary hit defender stance sin realistic socialist subsidy content toy darling decent liberty forever skirt coordinate tactic influential import accent compound bastard ingredient dull cater scholar faint ghost sculpture ridiculous diagnosis delegate neat kit lion dialogue repair tray fantasy leave export forth lamp allege pavement brand constable compromise flag filter reign execute pity merit diagram wool organism elegant red undertaking lesser reach marvellous improved locally entity rape secure descend backwards peer excuse genetic fold portfolio consensus thesis shop nest frown builder administer tip lung delegation outside heating like instinct teenager lonely residence radiation extract concession autonomy norm musician graduate glory bear persist rescue equip partial officially capability worry liberation hunt daily heel contract update assign spring single commons weekly stretch pregnancy happily spectrum interfere suicide panic invent intensive damp simultaneously giant casual sphere precious sword envisage bean time crazy changing primary concede besides unite severely separately instruct insert go exhibit brave tutor tune debut continued bid incidence downstairs cafe regret killer delicate subsidiary gender entertain cling vertical fetch strip plead duck breed assistant pint abolish translation princess line excessive digital steep jet hey grave exceptional boost random correlation outline intervene packet motivation safely harsh spell spread draw concrete complicated alleged redundancy progressive intensity crack fly fancy alternatively waiting scandal resemble parameter fierce tropical colour ours engagement contest edit courage hip delighted sponsor carer crack substantially occupational trainer remainder related inherit resume assignment conceal disclose exclusively working mild chronic splendid function rider clay firstly conceive politically terminal accuracy coup ambulance living offender similarity orchestra brush systematic striker guard casualty steadily painter opt handsome banking sensitivity navy fascinating disappointment auditor hostility spending scarcely compulsory photographer ok neighbourhood ideological wide pardon double criticize supervision guilt deck payable execution suite elected solely moral collector questionnaire flavour couple faculty tour basket mention kick horizon drain happiness fighter estimated copper legend relevance decorate continental ship operational incur parallel divorce opposed equilibrium trader ton can juice forum spin research hostile consistently technological nightmare medal diamond speed peaceful accounting scatter monster horrible nonsense chaos accessible humanity frustration chin bureau advocate polytechnic inhabitant evil slave reservation slam handle provincial fishing facilitate yield elbow bye warm sleeve exploration creep adjacent theft round grace predecessor supermarket smart sergeant regulate clash assemble arrow nowadays giant waiting tap shit sandwich vanish commerce pursuit post will waste collar socialism skill rice exclusion upwards transmission instantly forthcoming appointed geographical fist abstract embrace dynamic drawer dismissal magic endless definite broadly affection dawn principal bloke organiser trap communist competence complicate neutral fortunately commonwealth breakdown combined candle venue supper analyst vague publicly marine fair pause notable freely counterpart lively script sue legitimate geography reproduce moving lamb gay contemplate terror stable founder utility signal shelter poster hitherto mature cooking head wealthy fucking confess age miracle magic jaw pan coloured tent telephone reduced tumour super funding dump stitch shared ladder keeper endorse invariably smash shield heat surgeon centre orange explode comedy classify artistic ruler biscuit workstation prey manual cure overall tighten tax pope manufacturing adult rush blanket republican referendum palm nearby mix devil adoption workforce segment regardless contractor portion differently deposit cook prediction oven matrix liver fraud beam signature limb verdict dramatically container aunt dock submission arm odd certainty boring electron drum wisdom antibody unlike terrorist post circulation alteration fluid ambitious socially riot petition fox recruitment well top service flood taste memorial helicopter correspondence ye beef overall lighting harbour empirical shallow seal decrease constituent exam toe reward thrust bureaucracy wrist nut plain magnetic evil widen hazard dispose dealing absent reassure model inn initial suspension respondent over naval monthly log advisory fitness blank indirect tile rally economist vein strand disturbance stuff seldom coming cab grandfather flash destination actively regiment closed boom handful remarkably encouragement awkward required flood defect surplus champagne liquid shed welcome rejection discipline halt electronics administrator sentence ill contradiction nail senior lacking colonial primitive whoever lap commodity planned intellectual imprisonment coincide sympathetic atom tempt sanction praise favourable dissolve tightly surrounding soup encounter abortion grasp custody composer charm short metropolitan waist equality tribute bearing auction standing manufacture horn barn mayor emperor rescue integrated conscience commence grandmother discharge profound takeover nationalist effect dolphin fortnight elephant seal spoil plea forwards breeze prevention mineral runner pin integrity thereafter quid owl rigid orange draft reportedly hedge formulate associated position thief tomato exhaust evidently eagle specified resulting blade peculiar killing desktop bowel long ugly expedition saint variable supplement stamp slide faction enthusiastic enquire brass inequality eager bold neglect saying ridge earl yacht suck missing extended valuation delight beat worship fossil diminish taxpayer corruption accurately honour depict pencil drown stem lump applicable rate mobility immense goodness price preliminary graph referee calm onwards omit genuinely excite dreadful cave revelation grief erect tuck meantime barrel lawn hut swing subject ruin slice transmit thigh practically dedicate mistake corresponding albeit sound nurse discharge comparative cluster propose obstacle motorway heritage counselling breeding characteristic bucket migration campaign ritual originate hunting crude protocol prejudice inspiration dioxide chemical uncomfortable worthy inspect summon parallel outlet okay collaboration booking salad productive charming polish oak access tourism independently cruel diversity accused supplement fucking forecast amend soap ruling interference executive mining minimal clarify strain novel try coastal rising quota minus kilometre characterise suspicious pet beneficial fling deprive covenant bias trophy verb honestly extract straw stem eyebrow noble mask lecturer girlfriend forehead timetable symbolic farming lid librarian injection sexuality irrelevant bonus abuse thumb survey ankle psychologist occurrence profitable deliberate bow tribe rightly representative code validity marble bow plunge maturity hidden contrast tobacco middle grip clergy trading passive decoration racial well embarrassment sauce fatal banker compensate make seat popularity interior eligible continuity bunch hook wicket pronounce ballet heir positively insufficient substitute mysterious dancer trail caution donation added weaken tyre sufferer managerial elaborate restraint renew gardener dilemma configuration rear embark misery importantly continually appreciation radical diverse revive trip lounge dwelling parental loyal privatisation outsider forbid yep prospective manuscript inherent deem telecommunication intermediate worthwhile calendar basin utterly rebuild pulse suppress predator width stiff spine betray punish stall lifestyle compile arouse partially headline divine unpleasant sacred useless cool tremble statue obey drunk tender molecular circulate exploitation explicitly utterance linear chat revision distress spill steward knight sum semantic selective learner dignity senate grid fiscal activate rival fortunate jeans select fitting commentator weep handicap crush towel stay skilled repeatedly defensive calm temporarily rain pin villa rod frontier enforcement protective philosophical lordship disagree boyfriend activist viewer slim this textile mist harmony deed merge invention commissioner caravan bolt ending publishing gut stamp map loud stroke shock rug picture slip praise fine monument material garment toward realm melt reproduction reactor furious distinguished characterize alike pump probe feedback aspiration suspect solar fare carve qualified membrane dependence convict bacteria trading ambassador wound drug conjunction cabin trail shaft treasure inappropriate half attribute liquid embassy terribly exemption array tablet sack erosion bull warehouse unfortunate promoter compel motivate burning vitamin sail lemon foreigner powder persistent bat ancestor predominantly mathematical compliance arch woodland serum overnight doubtful doing coach binding surrounding peer ozone mid invisible depart brigade manipulate consume temptation intact glove aggression emergence stag coffin beautifully clutch wit underline trainee scrutiny neatly follower sterling tariff bee relaxation negligence sunlight penetrate knot temper skull openly grind whale throne supervise sickness package intake within inland beast rear morality competent sink uniform reminder permanently optimistic bargain seemingly respective horizontal decisive bless bile spatial bullet respectable overseas convincing unacceptable confrontation swiftly paid joke instant illusion cheer congregation worldwide winning wake toss medium jewellery fond alarm guerrilla dive desire cooperation thread prescribe calcium redundant marker chemist mammal legacy debtor testament tragic silver grin spectacle inheritance heal sovereignty enzyme host neighbouring corn layout dictate rip regain probable inclusion booklet bar privately laser fame bronze mobile metaphor complication narrow old chop synthesis diameter bomb silently shed fusion trigger printing onion dislike embody curl sunshine sponsorship rage loop halt cop bang toxic thinking orientation likelihood wee up polite apology exile brow miserable outbreak comparatively pump fuck forecast timing headmaster terrify sigh premier joint incredible gravity regulatory cylinder curiosity resident narrative cognitive lengthy gothic dip adverse accountability hydrogen gravel willingness inhibit attain specialise steer selected like confer usage portray planner manual boast unconscious jail fertility documentation wolf patent exit corps proclaim multiply brochure screen orthodox locomotive considering unaware syndrome reform confirmation printed curve costly underground territorial designate comfort plot misleading weave scratch echo ideally endure verbal stride nursing exert compatible causal mosaic manor implicit following fashionable valve proceed sofa snatch jazz patron provider interim intent chosen applied shiver pie fury abolition soccer corpse accusation kind dead nursing contempt prevail murderer liberal gathering adequately subjective disagreement cleaner boil static scent civilian monk abruptly keyboard hammer despair controller yell entail cheerful reconstruction patience legally habitat queue spectator given purple outlook genius dual canvas grave pepper conform cautious dot conspiracy butterfly sponsor sincerely rating weird teenage salmon recorder postpone maid furnish ethical bicycle sick sack renaissance luxury gasp wardrobe native fringe adaptation quotation hunger enclose disastrous choir overwhelming glimpse divorce circular locality ferry balcony sailor precision desert dancing alert surrender archive jump philosopher revival presume node fantastic herb assertion thorough quit grim fair broadcast annoy divert accelerate polymer sweat survivor subscription repayment anonymous summarise punch lodge landowner ignorance discourage bride likewise depressed abbey quarry archbishop sock large glare descent stumble mistress empty prosperity harm formulation atomic agreed wicked threshold lobby repay varying track crawl tolerate salvation pudding counter propaganda cage broker ashamed scan document apparatus theology analogy efficiently bitterly performer individually amid squadron sentiment making exotic dominance coherent placement flick colourful mercy angrily amuse mainstream appraisal annually torch intimate gold arbitrary venture preservation shy disclosure lace inability motif listener hunt delicious term substitute highway haul dragon chair accumulate unchanged sediment sample exclaim fan volunteer root parcel psychiatric delightful confidential calorie flash crowd aggregate scholarship monitor disciplinary rock hatred pill noisy feather lexical staircase autonomous viewpoint projection offensive controlled flush racism flourish resentment pillow courtesy photography monkey glorious evolutionary gradual bankruptcy sacrifice uphold sketch presidency formidable differentiate continuing cart stadium dense catch beyond immigration clarity worm slot rifle screw harvest foster academic impulse guardian ambiguity triangle terminate retreat pony outdoor deficiency decree apologise yarn staff renewal rebellion incidentally flour developed chorus ballot appetite stain notebook loudly homeless census bizarre striking greenhouse part burial embarrassed ash actress cassette privacy fridge feed excess calf associate ruin jointly drill photograph devoted indirectly driving memorandum default costume variant shatter methodology frame allegedly swell investigator imaginative bored bin awake recycle group enjoyment contemporary texture donor bacon sunny stool prosecute commentary bass theirs sniff repetition eventual credit suburb organisational newcomer romance film experiment daylight warrant fur parking nuisance civilian foolish bulb balloon vivid surveyor spontaneous biology injunction appalling amusement aesthetic vegetation stab rude offset thinking mainframe flock amateur academy shilling reluctance velocity spare wartime soak rib mighty shocked vocational spit gall bowl prescription fever axis reservoir magnitude rape cutting bracket agony strive strangely pledge recipient moor invade dairy chord shrink poison pillar washing warrior supervisor outfit innovative dressing dispute jungle brewery adjective straighten restrain monarchy trunk herd deadline tiger supporting moderate kneel ego sexually ministerial bitch wheat stagger snake ribbon mainland fisherman economically unwilling nationalism knitting irony handling desired bomber voltage unusually toast feel suffering polish technically meaningful aloud waiter tease opposite goat conceptual ant inflict bowler roar drain wrong galaxy aluminium receptor preach parade opposite critique query outset integral grammatical testing patrol pad unreasonable sausage criminal constructive worldwide highlight doll frightened biography vocabulary offend accumulation linen fairy disco hint versus ray pottery immune retreat master injured holly battle solidarity embarrassing cargo theorist reluctantly preferred dash total reconcile drill credibility copyright beard bang vigorous vaguely punch prevalence uneasy boost scrap ironically fog faithful bounce batch smooth sleeping poorly accord vice duly blast square prohibit brake asylum obscure nun heap smoothly rhetoric privileged liaison jockey concrete allied rob indulge except distort whatsoever viable nucleus exaggerate compact nationality direct cast altar refuge presently mandatory authorise accomplish startle indigenous worse retailer compound admiration absurd coincidence principally passport depot soften secretion invoke dirt scared mug convenience calm optional unsuccessful consistency umbrella solo hemisphere extreme brandy belly attachment wash uncover treat repeated pine offspring communism nominate soar geological frog donate co nicely innocence housewife disguise demolish counsel cord semi reasoning litre inclined evoke courtyard arena simplicity inhibition frozen vacuum immigrant bet revenge jail helmet unclear jerk disruption attainment sip program lunchtime cult chat accord supposedly offering broadcast secular overwhelm momentum infinite manipulation inquest decrease cellar counsellor avenue rubber labourer lab damn comfortably tense socket par thrust scenario frankly slap recreation rank spy filter clearance blessing embryo varied predictable mutation equal can burst retrieve elder rehearsal optical hurry conflict combat absorption ion wrong heroin bake x vector stolen sacrifice robbery probe organizational chalk bourgeois villager morale express climb notify jam bureaucratic literacy frustrate freight clearing aviation legislature curiously banana deploy passionate monastery kettle enjoyable diagnose quantitative distortion monarch kindly glow acquaintance unexpectedly handy deprivation attacker assault screening retired quick portable hostage underneath jealous proportional gown chimney bleak seasonal plasma stunning spray referral promptly fluctuation decorative unrest resent plaster chew grouping gospel distributor differentiation blonde aquarium witch renewed jar approved advocate worrying minimise footstep delete underneath lone level exceptionally drift spider hectare colonel swimming realism insider hobby computing infrastructure co burn cereal fold compromise boxing rear lick constrain clerical hire contend amateur instrumental terminal electorate congratulate balanced manufacturing split domination blink bleed unlawful precedent notorious indoor upgrade trench therapist illuminate bargain warranty scar consortium anger insure extensively appropriately spoon sideways enhanced disrupt satisfied precaution kite instant gig continuously consolidate fountain graduate gloom bite structure noun nomination armchair virtual unprecedented tumble ski architectural violation rocket inject departmental row luxury fax deer climber photographic haunt fiercely dining sodium gossip bundle bend recruit hen fragile deteriorate dependency swift scramble overview imprison trolley rotation denial boiler amp trivial shout overtake make hunter guess doubtless syllable obscure mould limestone leak beneficiary veteran surplus manifestation vicar textbook novelist halfway contractual swap guild ulcer slab detector detection cough whichever spelling lender glow raised prolonged voucher t linger humble honey scream postcard managing alien trouble reverse odour fundamentally discount blast syntactic scrape residue procession pioneer intercourse deter deadly complement restrictive nitrogen citizenship pedestrian detention wagon microphone hastily fixture choke wet weed programming power nationally dozen carrot bulletin wording vicious urgency spoken skeleton motorist interactive compute whip urgently telly shrub porter ethics banner velvet omission hook gallon financially superintendent plug continuation reliance justified fool detain damaging orbit mains discard dine compartment revised privatization memorable lately distributed disperse blame basement slump puzzle monitoring talented nominal mushroom instructor fork board want disposition cemetery attempted nephew magical ivory hospitality besides astonishing tract proprietor license differential affinity talking royalty neglect irrespective whip sticky regret incapable franchise dentist contrary profitability enthusiast crop utter pile pier dome bubble treasurer stocking sanctuary ascertain arc quest mole marathon feast crouch storm hardship entitlement circular walking strap sore complementary understandable noticeable mankind majesty course pigeon goalkeeper ambiguous walker virgin prestige preoccupation upset municipal groan craftsman anticipation revise knock infect denounce confession turkey toll pal transcription sulphur provisional hug particular intent fascinate conductor feasible vacant trait meadow creed unfamiliar optimism wary twist sweet substantive excavation destiny thick pasture archaeological tick profit pat papal cultivate awake trained civic voyage siege enormously distract stroll jewel immediately honourable helpless hay expel eternal demonstrator correction civilization ample retention rehabilitation premature encompass distinctly diplomat articulate restricted prop intensify deviation contest workplace lazy kidney insistence whisper multimedia forestry excited decay screw rally pest invaluable homework harmful bump bodily grasp finished facade cushion conversely urge tune solvent slogan petty perceived install fuss rack imminent short revert ram contraction tread supplementary ham defy athlete sociological physician crossing bail unwanted tight plausible midfield alert feminine drainage cruelty abnormal relate poison symmetry stake rotten prone marsh litigation curl urine latin hover greeting chase spouse produce forge salon handicapped sway homosexual handicap colon upstairs stimulation spray original lay garlic suitcase skipper moan manpower manifest incredibly historically decision wildly reformer quantum considering the of and to in I that was his he it with is for as had you not be her on at by which have or from this him but all she they were my are me one their so an said them we who would been will no when there if more out up into do any your what has man could other than our some very time upon about may its only now like little then can should made did us such a great before must two these see know over much down after first mr good men own never most old shall day where those came come himself way work life without go make well through being long say might how am too even def again many back here think every people went same last thought away under take found hand eyes still place while just also young yet though against things get ever give god years off face nothing right once another left part saw house world head three took new love always mrs put night each king between tell mind heart few because thing whom far seemed looked called whole de set both got find done heard look name days told let lord country asked going seen better p having home knew side something moment father among course hands woman enough words mother soon full end gave room almost small thou cannot water want however light quite brought nor word whose given door best turned taken does use morning myself gutenberg felt until since power themselves used rather began present voice others white works less money next poor death stood form within together till thy large matter kind often certain herself year friend half order round true anything keep sent wife means believe passed feet near public state son hundred children thus hope alone above case dear thee says person high read city already received fact gone girl known hear times least perhaps sure indeed english open body itself along land return leave air nature answered either law help lay point child letter four wish fire cried women speak number therefore hour friends held free war during several business whether er manner second reason replied united call general why behind became john become dead earth boy lost forth thousand looking i'll family soul feel coming england spirit question care truth ground really rest mean different making possible fell towards human kept short town following need cause met evening returned five strong able french live lady subject sn answer sea fear understand hard terms doubt around ask arms turn sense seems black bring followed beautiful close dark hold character sort sight ten show party fine ye ready story common book electronic talk account mark interest written can't bed necessary age else force idea longer art spoke across brother early ought sometimes line saying table appeared river continued eye ety sun information later everything reached suddenly past hours strange deep change miles feeling act meet paid further purpose happy added seem taking blood rose south beyond cold neither forward view i've position sound none entered clear road late stand suppose la daughter real nearly mine laws knowledge comes toward bad cut copy husband six france living peace didn't low north remember effect natural pretty fall fair service below except american hair london laid pass led copyright doing army run horse future opened pleasure history west pay red an' hath note although wanted gold makes desire play master office tried front big dr lived certainly wind receive attention government unto church strength length company placed paper letters probably glad important especially greater yourself fellow bear opinion window ran faith ago agreement charge beauty lips remained arm latter duty send distance silence foot wild object die save gentleman trees green trouble smile books wrong various sleep persons blockquote happened particular drew minutes hardly walked chief chance according beginning action deal loved visit thinking follow standing knows try presence heavy sweet plain donations immediately wrote mouth rich thoughts months u won't afraid paris single joy enemy broken unless states ship condition carry exclaimed including filled seeing influence write boys appear outside secret parts please appearance evil march george whatever slowly tears horses places caught stay instead struck blue york impossible period sister battle school mary raised occasion married man's former food youth learned merely reach system twenty dinner quiet easily moved afterwards giving walk stopped laughed language expression week hall danger property wonder usual figure born court generally grew showed getting ancient respect third worth simple tree leaving remain society fight wall result heaven william started command tone regard expected mere month beside silent perfect experience street writing goes circumstances entirely fresh duke covered bound east wood stone quickly notice bright christ boat noble meant somewhat sudden value c direction chair due support tom date waiting christian village lives reading agree lines considered field observed scarcely wished wait greatest permission success piece british ex charles formed speaking trying conversation proper hill music opportunity that's german afternoon cry cost allowed girls considerable c broke honour seven private sit news top scene discovered marriage step garden race begin per individual sitting learn political difficult bit speech henry lie cast eat authority etc floor ill ways officers offered original happiness flowers produced summer provide study religion picture walls personal america watch pleased leaves declared hot understood effort prepared escape attempt supposed killed fast author indian brown determined pain spring takes drawn soldiers houses beneath talking turning century steps intended soft straight matters likely corner trademark justice simply produce trust appears rome laugh forget europe passage eight closed ourselves gives dress passing terrible required medium efforts sake breath wise ladies possession pleasant perfectly o' memory usually grave fixed modern spot troops rise break fifty island meeting camp nation existence reply i'd copies sky touch equal fortune v shore domain named situation looks promise orders degree middle winter plan spent allow pale conduct running religious surprise minute roman cases shot lead move names stop higher et father's threw worse built spoken glass board vain affairs instance safe loss doctor offer class complete access lower wouldn't repeated forms darkness military warm drink passion ones physical example ears questions start lying smiled keeping spite shown directly james hart serious hat dog silver sufficient main mentioned servant pride crowd train wonderful moral instant associated path greek meaning fit ordered lot he's proved obliged enter rule sword attack seat game health paragraph statement social refund sorry courage members grace official dream worthy rock jack provided special shook request mighty glance heads movement fee share expect couldn't dollars spread opposite glory twelve space engaged peter wine ordinary mountains taste iron isn't distribute trade consider greatly accepted forced advantage ideas decided using officer rate clothes sign feelings native promised judge difference working anxious marry captain finished extent watched curious foreign besides method excellent confidence marked 'em jesus exactly importance finally bill vast prove fancy quick yes sought prevent neck hearts liberty interesting sides legal gentlemen dry serve aside pure concerning forgotten lose powers possessed thrown evidence distant michael progress similar narrow altogether building page particularly knowing weeks settled holding mountain search sad sin lies proud pieces clearly price ships thirty sick honest shut talked bank fate dropped judgment conditions king's accept hills removed forest measure species seek highest otherwise stream honor carefully obtained ear bread bottom additional presented aid fingers q remembered choose agreed animal events there's fully delight rights amount obtain tax servants sons cross shoulders thick points stranger woods facts dare grow creature hung rain false tall gate nations created refused quietly surface freely holy streets blow july regarded fashion report coast daily file shoulder surprised faces succeeded birds distribution royal song wealth comfort failed freedom peculiar anyone advance gentle surely animals waited secure desired grass touched occupied draw stage portion expressed opening june spirits fish tongue capital angry growing served carriage weather breast presently snow david papers necessity practice claim hast education sharp prince permitted group enemies robert played throughout pity expense yours million add pray taught explained tired leading kill shadow companion weight mass established suffered gray brave thin satisfied check virtue golden numerous frequently famous telling powerful alive waters national weak divine material principal gathered suggested frank valley guess finding yellow heat remains bent seized guard equally naturally box remarkable gods moon slight style pointed saved windows crossed louis pounds ain't evidently principle immediate willing consequence richard principles characters paul season remarked science tender worked grown whispered interested quarter midst liked advanced apparently bore pwh active noticed aware thomas uncle list dangerous august calm genius sacred kingdom entire popular unknown nice habit spanish familiar reader published direct handsome you'll joined actually kings sd posted approach washington hearing needed increased walking twice throw intellectual appointed wisdom ceased truly numbers demanded priest wounded sorrow drive fault listened palace affair contact distinguished station beat distributed e listen italy fool becomes watching hurt wants express occurred favour height size edge subjects task follows interests nine sympathy burst putting dressed lifted hopes suffer noise smiling rode tells minds farther literature vessel affection suffering proceeded flesh advice grand carrying legs spain post collection empty rank storm god's imagine wore duties admitted countries pocket arrival imagination driven loud sentence lovely extraordinary november december happen absence breakfast population thank rules inhabitants series laughing address relief bird owner impression satisfaction coat prepare relations shape birth rapidly smoke january mother's machine content consideration accompanied regular moving stands wholly teeth busy treated burning shame quality bay discover inside brain soil completely message ring resolved calling phrase acts mention square pair won title understanding sunday fruit mad forces included tea rocks nearer slaves falling absolutely slow bearing mercy larger explain contain grief soldier wasn't countenance previous explanation welcome proposed prayer stars germany belief informed moments poetry constant buy final faithful ride policy supper drawing excitement dying demand fighting fields drove upper sum philip motion assistance forty april stones edward fees kindly dignity catch october seated knees amongst current sending parties objects gained bitter possibly slave separate loose text receiving worst sold don credit chosen hoped printed terror features fond control capable fifteen doesn't firm superior cruel spiritual harry splendid proof pressed sooner join process crime dust instantly lands relation doors concerned deeply practical colour sing destroy anger distributing results increase reasons nose friendly entrance rooms admit supply clean useful yesterday delicate fail continue remove addressed choice huge needs wear blind unable cover double victory dozen constantly level india release rough ended shows fly praise devil ahead smith connected degrees gain addition committed chamber notes italian gradually acquaintance bought souls mission sacrifice cities mistake exercise conscience based car buried theory commanded nobody minister closely energy dick bare fought partly mistress hate arose playing color lake safety provisions description asleep centre faint thinks parents escaped careful enjoy drop brilliant brief bringing worship goods tale skin roof grey highly crown castle excited throne stated despair ease attached total kindness mile citizens circle dull extreme clouds figures intention prison term assured hidden thoroughly cup member civil apply labor everywhere intelligence strike fairly comply fellows haven't event gently connection protection conscious edition directed pulled flight evident surrounded wishes yards voices weary couple variety whilst volume details older requirements custom apart bow awful everybody labour asking lover showing introduced suit becoming composed plans rendered pictures lest volunteers singing eager precious paused require meat whenever milk dogs successful plants vision rare granted raise egypt manners cousin you've development arthur obs cool trial learning approached bridge abroad devoted paying literary writer fn israel disappeared interrupted stock readers dreadful female protect accustomed virginia type recognized salt destroyed signs innocent temper plenty pope avoid hurried represented favor mental attitude returning admiration brothers anxiety queen teach count curiosity solemn causes vessels compelled dance hotel wicked fled kissed guns fill visible younger guide earnest actual companions prisoner miserable lad harm views irish utterly ends shop stairs pardon gay beg seldom kinds record fat sand violent branches inquired iv september worn ireland flat departure delivered gift ruin skill cattle equipment temple calls earlier license visited en consent sufficiently natives wound laughter contained perceived scattered whence rushed chiefly bold anywhere witness foolish helped kitchen sell anybody self extremely treatment throat dreams patient speed growth quantity latin immense conclusion computer affected severe excuse triumph origin joseph slept eternal thine audience pages sounds swift limited wings stepped services library remaining containing base confusion win maid charming editions attended softly reality performed glorious likewise site sail frightened acquainted unhappy feared article prisoners store adopted shalt remark cook thousands pause inclined convinced band valuable hence desert effects kiss plant ice ball stick absolute readily behold fierce argument observe blessed bosom rage striking discovery creatures shouted guilty related setting forgot punishment gun slightly articles police mysterious extended confess shade murder emotion destruction wondered increasing hide expedition horror local expenses ignorant doctrine generous range host wet cloud mystery ed waste changes possess consciousness february trembling disease formerly spend production source mankind universal deck sees habits estate aunt reign humble compliance delay shining reported hers unfortunate midnight listening flower hero accomplished doth classes thanks banks philosophy belong finger comfortable market cap waves woman's glanced troubled difficulties picked european purposes somewhere delighted pushed press household fleet baby region lately uttered exact image ages murmured melancholy suspicion bowed refuse elizabeth staff liability we'll enjoyed stretched gaze belonged ashamed reward meal blame nodded status opinions indicate poem savage arise voyage misery guests painted attend afford donate job proceed loves forehead regret plainly risk ad lighted angel rapid distinct doubtless properly wit fame singular error utmost methods reputation appeal she's w strongly margaret lack breaking dawn violence fatal render career design displayed gets commercial forgive lights agreeable suggestion utter sheep resolution spare patience domestic concluded 'tis farm reference chinese exist corn approaching alike mounted jane issue key providing majority measures towns flame boston dared ignorance reduced occasionally y weakness furnished china priests flying cloth gazed profit fourth bell hitherto benefit movements eagerly acted urged ascii disposed electronically atmosphere chapter begged helen hole invited borne departed catholic files reasonable sugar replacement sigh humanity thrust frame opposition disk haste lonely artist knight quarters charm substance rolled email flung celebrated division slavery verse decision probable painful governor forever turns branch ocean rear leader delightful stared boats keen disposition senses occasions readable beloved inches bones enthusiasm materials luck derived managed community apparent preserved magnificent hurry scheme oil thence reaching dim wretched hanging pipe useless nevertheless print smooth solid pursued necessarily build attempted centuries eggs equivalent hastily burned you'd recent oh travel cries noon crying generations located cabin announcement britain compared handed cease smaller circumstance tent frequent alarm nervous beast what's aloud independent gates distinction essential observation stronger recovered belonging loving masters writers cf permanent mortal stern gratitude preserve burden aspect millions merry knife dread clever applicable district shadows jim silk failure links cent sentiment amid profits agent finds russia bade russian desperate union imagined contempt raising lords hell separated grant seriously tribes hit enormous defective conviction secured mixed insisted wooden prefer prayers fever selected daughters treat warning flew speaks developed impulse slipped ours johnson mistaken damages ambition resumed christmas yield ideal schools confirmed descended rush falls deny calculated correct perform hadn't somehow accordingly stayed acquired counsel distress sins notion discussion constitution anne hundreds instrument firmly actions steady remarks empire elements idle pen entering online africa permit th' tide vol leaned college maintain sovereign tail generation crowded fears nights limitation tied horrible cat displaying port male experienced opposed treaty contents rested mode poured les occur seeking practically abandoned reports eleven sank begins founded brings trace instinct collected scotland characteristic chose cheerful tribe costs threatened arrangement western sang beings sam pressure politics sorts shelter rude scientific revealed winds riding scenes shake industry claims pp merit profession lamp interview territory sleeping sex coffee devotion thereof creation trail romans supported requires fathers prospect obey alexander shone operation northern nurse profound hungry scott sisters assure exceedingly match wrath continually rest gifts folly chain uniform debt teaching venture execution shoes mood crew perceive accounts eating multitude declare yard o'er astonishment version vague odd grateful nearest infinite elsewhere copying apartment activity wives parted security cared sensible owing martin saturday cottage jews leaning capacity joe settle referred francis holder involved sunshine dutch council princes ate examination steel strangers beheld test noted slightest widow charity realized element shed errors communication reflection attacked organization maintained restored folks concealed accordance heavens star examined deeds wordforms somebody incident oath guest bar row poverty bottle prevented bless stir intense completed quarrel touching inner available fix resistance unusual deed derive hollow suspected contains sighed province deserted establishment vote muttered thither oxford cavalry lofty endure succeed leg bid alice hated civilization u s acting landed christians passions interior scarce lightly disturbed rev supreme hang notwithstanding shock exception offering display strain drank confined o exhausted poets sounded aim critical jerusalem directions negro fearful standard studied bag n buildings consequences commenced deeper repeat driving beasts track rid holds residence steadily intimate drinking swear treasure fun throwing apt enterprise queer seed tower runs defend favourite desires heavily assembled existed depends poems hesitated stuff section settlement staring sole roads plate mexico overcome pains performing dwell grounds taxes marble recently tones ability awake walter wave shaking folk possibility butter fury marched moses writes issued sailed instructions hatred pursuit pull furniture additions hid rope vi adventure royalty vanished arts elder signal wanting supplied feast safely burn describe references lesson annual card passes application intelligent county beaten presents format flow sixty scale damage marks obtaining moreover commerce startled southern consequently outer belongs ben wrought average naked conducted rivers songs obvious foundation concern ceremony magic campaign hunting carolina liberal whisper largely commonly torn exists contributions hunt teacher christianity lawyer operations detail shortly caesar wondering leaders blessing princess he'd altar tenderness tiny web cardinal sharply regiment chest distinctly purple creating gather depth indignation performance election prosperity gloomy conception clerk decide drunk victim reflected pour preceding individuals gazing absurd lift gesture armies limbs manage brethren hugh plays hastened dragged motive whatsoever pointing verses pronounced exchange definite emperor tendency remote finish flag boots enabled administration denied churches rarely earnestly considering previously ugly bears signed genuine harmless mingled obedience walks training badly feed central contrast relieved romance mississippi structure payment pace passages succession persuaded sources inquiry inspired angels roll wilt inch troubles perfection lee wherever owe handle advantages trip shoot fortunate newspaper employment fitted refuge misfortune providence owns cutting beard stirred tear dan resist bob depths maiden determine commission merchant whereas crossing independence lively breeze provinces jean virtues conceived relative solitary smell wandering thereby eighteen locked provision courts eaten historical regarding florence preferred pick ruined wherein vanity condemned deliver unexpected desk gross lane happens represent billy root holland mud respectable cleared feels fruits testimony milton existing bride rang ranks responsibility beating disappointed suitable depend judges giant grasp arrive simplicity autumn absent legally veil gloom doubtful suspect weapons limits determination feeble prophet shak gathering basis examine corrupt payments returns laying prize instances greeks d they're theatre purchase comparison composition rival someone realize defeat demands foe shared consists studies balance intercourse id forming slender coach criminal knocked silly humour masses indifferent recall occupation discourse keeps regions intervals assist novel intellect leads hither tales sale revenge lucy yonder resources jealous we're wheel invitation narrative risen burnt sentiments inferior amusement marie flash recognize swiftly portrait create summoned suggest induced conflict fed curse disappointment helpless preparing construction lincoln zeal responsible indicated groups positive germans attracted vengeance fort club cure stout missed gracious include flood satisfy agony respects ventured implied maria stupid seas spaniards grain enjoyment wearing indifference conceal horizon pleasures therein precisely canada day's assume registered estimate steep route gardens visitor closer harmony non thunder wire graceful crept greece childhood knee saddle supplies weeping mostly paragraphs unconscious mutual scorn grows external agents software institutions losing universe clock attempts instruction injury roots receipt jumped dearest sore earliest finest enable discipline motives fastened introduction converted wilderness confused fancied offices slip revolution wedding girl's farmer silently fires wept behalf reckon responded uncertain neglected stroke exquisite engagement dirty rolling platform messenger privilege admirable offers mischief physician imposed organized covering student daring cave wars convey he'll sincere tradition gravely combined gallant sensation travelling charges submit tragedy specific commander inn stiff accompany score virgin farewell paradise villages hunger trembled favorite criticism proprietary customs cotton ruth hospital restrictions outward impressed blows plains flashed rent prey owed longing musical satisfactory ridiculous sheet disgrace colored shouldn't originally samuel wages papa gas inevitable extensive leisure deadly chin claimed glow husband's emotions adam jealousy leaf publication englishman allah jones hostile wandered railway translation procession betrayed pound admired elected pierre sunk ruins eastern roses citizen reminded deceived tables beach starting funeral arrested flour feature correspondence consisted counted reserve proceedings roar romantic twenty five hut strangely absorbed propose seats bark reception pleasing attained wake research prayed monarch clothing dollar illness calmly obeyed heartily pressing daylight warriors jest abruptly washed comment metal preparations nerves solution pretended sixteen assembly tobacco entity dwelling depart swung bitterly alteration colony disclaimers wing peaceful lion opportunities alarmed furnish resting accused culture writings dwelt conquered trick trusted column financial cunning preparation drama joke entertained mist hypertext shell medicine proofread nest reverence situated yielded conceive appointment lessons fetch tomb candle offence coarse heap mixture homes model men's defect destined occasional fourteen hint knights solicit dreamed objection craft acid namely asia neglect data weapon confessed arrangements repose complying copied pink user heels grandfather other's income i e regards streams vigorous accepting bishop lightning authors flames observations compressed sport powder beds orange painting shout austria bath careless chap derivative roused primitive doorway climbed volumes vulgar arguments st sunset convenient mail recalled wrapped abode planted paint surrender establish mild promptly appearing department parish stephen nay lit handkerchief basket easier deserve quit assurance mirror plot yer upward sadly secretary adding modest dish cares straw net advised heavenly largest proceeding impatient wounds warmth certainty restless meantime rays salvation lovers experiment shores today tremendous afforded moonlight intend california cultivated flushed shakespeare newspapers rocky pious wont steam improvement garments ned treasury merchants perpetual trained products affectionate dispute visitors poison proposition maybe rifle warned parting shield erected employ prevailed talent rises climate chairs searched unlike recover mate arrange fortunes puzzled committee aged ohio ashes ghost b promises bushes effective distinguish manifest comparatively esteem blew revelation wash recognition confession clay nonsense trunk management undoubtedly dried dorothy chiefs coal stolen earthly restore indirectly lasted selfish renewed canoe protest vice races deemed temporary pile frederick chapel moderate spell massachusetts upright quoted area bone solitude instruments formal students greatness struggling monday reproach altered grim leaped venice federal questioned editor desirable acknowledge motionless remedy bestowed pursue representative pole gladly linen vital sink pacific hopeless dangers gratefully president travelled ward nephew ms cheer bloody siege commands justified atlantic stomach improved admire openly sailors abide advancing forests records polly recorded modification dramatic statements upstairs varied letting wilson comrades sets descent whither envy load pretend folded brass internal furious curtain healthy obscure summit alas fifth center faced cheap saints colonel egyptian contest owned adventures exclusion seize chances springs alter landing fence leagues glimpse statue contract luxury artillery doubts saving fro string combination awakened faded arrest protected temperature strict contented professional intent brother's injured neighborhood andrew abundance smoking yourselves medical garrison likes corps heroic inform wife's retained agitation nobles prominent institution judged embrace wheels closing damaged pack affections eldest anguish surrounding obviously strictly capture drops inquire ample remainder justly recollection deer answers bedroom purely bush plunged thyself joint refer expecting madam railroad spake respecting jan columns weep identify discharge bench ralph heir oak rescue limit unpleasant anxiously innocence awoke expectation incomplete program reserved secretly we've invention faults disagreeable piano defeated charms purse persuade deprived electric endless interval chase heroes invisible well known occupy jacob gown cruelty lock lowest hesitation withdrew proposal destiny recognised commons foul loaded amidst titles ancestors types commanding madness happily assigned declined temptation lady's subsequent jewels breathed willingly youthful bells spectacle uneasy shine formidable stately machinery fragments rushing attractive product economic sickness uses dashed engine ashore dates theirs adv clasped international leather spared crushed interfere subtle waved slope floating worry effected passengers violently donation steamer witnesses specified learnt stores designed guessed roger timber talents heed jackson murdered vivid woe calculate killing laura savages wasted trifle funny pockets philosopher insult den representation incapable eloquence dine temples ann sensitive robin appetite wishing picturesque douglas courtesy flowing remembrance lawyers sphere murmur elegant honourable stopping guilt welfare avoided fishing perish sober steal delicious infant lip norman offended dost memories wheat japanese humor exhibited encounter footsteps marquis smiles amiable twilight arrows consisting park retire economy sufferings secrets na halted govern favourable colors translated stretch formation immortal gallery parallel lean tempted frontier continent knock impatience unity dealing prohibition decent fiery images tie punished submitted julia albert rejoined speedily consented major preliminary cell void placing prudence egg amazement border artificial hereafter fanny crimes breathe exempt anchor chicago sits purchased eminent neighbors glowing sunlight examples exercised wealthy seeming bonaparte shouting thanked illustrious curiously inspiration seeds naval foes everyone longed abundant doubted painter greeted erect glasses meanwhile shooting athens wagon lend lent crisis undertake particulars eh veins polite anna experiences seal header clergy mount array corners magazine loudly bitterness texas guardian searching rejected harsh includes boldly maurice kate lunch pine shells seconds despite hoping injustice expressions flies push tight problems landscape sue protested scarlet abandon artistic mainly measured loyal boiling desirous suited alliance advise waist sinking apprehension stable gregory maximum commit hideous hamilton sweetness dismissed tore affect shaken evils unworthy significance modified miracle lieu peasant considerably observing conveyed resemblance extend riches personally morality rebellion thread dumb inclination forbidden copper differences sailor requested alfred response promoting imperial blank purity victor bending solemnly twenty four minor del crimson republic teachers ma'am danced bargain dealt fatigue telephone cents whip adams dislike witnessed infantry acres checked countrymen enemy's companies normal shirt addresses introduce sofa mothers sweep conversion sketch african deserved answering virtuous persian anyway thief driver retain constructed daniel ut philadelphia conspicuous channel nobility edith berlin editing cambridge declaration guards personality smallest excess separation disgust ha accomplish speeches herbert convent rightly suspended reform mob thirst unnecessary treasures asks viewed designs gleam threatening palm missouri filling quoth fur fortnight holes addressing frightful encourage speaker tribute procure frankly recommended relieve intentions unjust legislation project threshold merits morrow traces induce spear inward pupils corresponding fairy conclude clung neat lucky lap session torture damp ridge spoil liable swords hearty bc abraham thoughtful traveller chains favorable tin imp strongest horace dependent couch bills warrant complaint endeavour sails dined convention guarded angle widely illinois charlotte endeavoured ardent cow mill victims prejudice foremost map probability porch lieutenant surprising fountain sustained appropriate ford clara assisted lewis rejoice extending marvellous clothed jew collar bands confident hasty nigh organ prose privileges selection inquiries codes replace saint districts deliberately awe beforehand strife released compare beer retorted relate cheerfully pistol presume velvet wretch susan pennsylvania stirring righteousness missing fain facing fashionable producing peoples positively reasoning gravity disturb sermon exchanged partner brains lowered association estates abuse flock niece languages asserted bodily notions oliver faculty cannon thirteen sailing rings smart possessions disciples petty widest divisions prudent caution justify awhile boxes manuscript cigar warrior impressions aught lifting inaccurate tidings friday liquid staying concept creek lo brush download specially cream meetings jump unwilling adapted practised combat subdued jewish innumerable blowing extra civilized invented japan pitch cliff crowned portions awkward horrid pulling appreciate communicated kentucky jury encountered attacks monster simon maintaining sites frozen invariably dies survive literally consolation m phenomena pot ellen briefly rice planned barbara respected sublime dropping guy behaviour desolate penny adopt replaced revenue formats hired regularly infringement curtains eagerness helping investigation constitutional insist occurs fools inheritance latest leap games apple visiting travellers experiments hasn't pupil enjoying totally twisted discuss firing background subscribe tenderly transcribe descend differ majesty's avail disaster bet periodic bull entertainment computers cursed raw fulfilled georgia virus log skies scotch embraced hospitality faintly solomon robbed cart influences ascended incidents childish robe aboard resembling reflect dominion dreary serving complexion engage tents herd attain collect disclaims pan relatives borrowed convert outline blown comprehend peasants opera assault deceive doctrines representatives dedicated struggled officials hiding paths backs prominently prices procured mourning compliment heights approval gasped breadth withdraw tune compassion polished latitude dishes parent contrived delicacy projected akin f betray traced resentment indemnify pseud sacrifices disguise transcription document neighbour squire punish bars glittering tossed block lots worldly muscles elbow obligation trifling decline attachment ambitious filename artists bloom holiday brute repair fist recollect eagle honorable significant barren functions guided dense fiction viz adds rows recommend suspicious resulting seventy shillings educational duly governed scripture upwards sworn nicholas horn brook fund vienna lodge infinitely clergyman marshal ruled fiercely portuguese costume pit disorder sheer exalted fare applause chaucer remind binary packed pillow jersey abbey nowhere anyhow agitated marching catching el grasped arrow tend carved fitting bonds instructed elaborate corpse bewildered essence positions emily edited continues harold elevation realm debts glancing shops complained loyalty coin clad staircase documents interpreted th extremity accord sally lace tremble exile gospel mechanical successfully scholar wonders arab temperament expressing fred trap spots awaiting potatoes likeness harbour proofs jolly contributed wits generosity ruler lawrence cake lamps crazy sincerity entertain madame sir faculties hesitate deepest seventeen lordship greeting feminine monstrous tongues barely d mansion facility praised warranties sarah happier indicating rob gigantic honey ladder ending wales swallowed sunny knelt tyranny decree stake divide dreaming proclaimed dignified tread mines viewing defense oldest incredible bidding brick arch everlasting elect sprung harder winding deductible magistrate respective liquor imitation shy perished prime studying eighty hebrew unfortunately licensed fog coloured bits consult moves r warn taylor vile depended phil legend locations shallow doom dreaded encouragement impatiently scent varieties irregular battles compass neighbouring bliss harvest promotion stove faithfully anthony excellence transfer awaited heathen poetic consulted illustrated gilbert br fundamental bundle rebel cultivation joys rigid tragic review representing flowed brows whereupon terribly melted venerable towers cooking mustn't suspicions old fashioned oppressed australia friend's revolt swell improve williams describes goddess wreck tennessee convince sentences bowl radiant prussia westward indignant refined unseen illustration pertaining swamp austrian saxon congregation nerve undertaking disclaimer characteristics stare specimens ascertain pledge earn warfare supposing subsequently attending angrily select animated industrial hurriedly manhood quantities interpretation dressing rejoiced edinburgh catherine challenge produces forbid gang boiled shouts so called theme thankful admission enters elevated frenchman pool terrified lads persisted conference equality genus didst newly generals surroundings sorrows occasioned invasion workmen monks sends turkish discretion pattern reveal endured resolve columbia preach exceeding ringing triumphant defiance errand woke grandmother weighed wool orleans communicate strikes promising scenery righteous essentially oppose joyous specimen doctors eloquent manager organs sticks drag haunted chorus rational crop processing accurate wolf adorned sheets resort refusal bond vicinity preacher sympathetic casting opens prophets horns warmly salary continuous satan continual defended breaks workers lantern balls rod blaze examining naples peculiarly vegetables ingenious excite howard horseback re use louisiana farmers wildly mouths carpet sadness customary circles aren't wonderfully max juan successor allied ceiling confirmation glances diamonds goal representations cash vacant antiquity despise lawn they'll appealed turkey texts neighbor spreading discharged phrases ultimate tastes submission entry rachel blush monument hardy thorough ein ecclesiastical fertile exciting captive severity considerations shew faster louise grandeur winning solely globe malice echoed lodging conservative throng prosperous whistle floated transferred declaring reckoned cheese bite thoughtfully breach enthusiastic cars downstairs allowing invite adjoining dusk cathedral truths plague sandy boil caroline beautifully inhabited tomorrow exclamation finishing shocked escort forgetting hanged hats mirth uncomfortable connecticut bows pierced harbor tricks rubbed apparatus mysteries honesty negroes concerns wander assert ceremonies sacrificed utterance dismay fright rail reflections crops pushing proves jimmy pathetic imperfect haughty navy fortress hurrying x blessings attempting insects selling appreciation suppressed acquire offensive ripe dresses reigned coldly candles km sixth blazing youngest mask florida lecture parlor decidedly whereby gordon reverend successive perception buffalo sire quitted keys develop function morals damned vexed d pouring bullet excessive bind identical cliffs tools byron mexican piety superstition git substantial bulk prevail wiser preaching prolonged annoyed westminster splendour remembering richmond upset cab bunch pencil subjected vegetable exhibit emerged cooked hay kansas gale preached arnold trousers debate dated tumult corruption summons comrade eternity hears lingered propriety stillness partial welcomed cabinet proceeds vow quaint soup beef rests slay surgeon irresistible sealed repeating needn't allowance undertaken treachery posts borders attendant unite murderer owners nm sweeping unconsciously blade saviour theories graham behaved pleaded spy possesses lawful tommy seasons withdrawn reckless factory shades gossip seventh attendance robes journal systems dryden maine token intimacy abstract machines bestow chanced locks honestly legitimate accent symptoms votes ragged thursday manifested fidelity swinging descending sincerely bred whereof indies novels league failing succeeding santa approve cautiously miller afflicted lodgings petition traffic sparkling limb architecture disposal carriages crack kindred naught ornament slew steward fantastic evolution patiently reverse survey dug amuse stretching isaac forthwith contemporary foliage receives scandal donors deliberate influenced intolerable hearth symbol governments repaired pleasantly homage victorious columbus recovery defined attendants modesty diana washing pavement unnatural decisive wisely precise negative occurrence snatched shaft linked festival exclusively jove wickedness visions maggie rosy carelessly stem corporation dec feeding allen cows schemes preference urge husbands labours shrill exercises sovereignty reduce distressed clearing removal dean scottish assertion accessible comedy flush code philosophers adequate vaguely treason hunter chambers split yielding newsletter snake pub historian ass intensity democracy battery draws netherlands creed liking luke tyrant strove attraction slaughter dismal deposited assent cups concert downward canal evenings wax detective fancies spoiled revolver murray earned analysis finer paces roaring prompt paperwork wherefore emphasis sharing delayed inherited bronze waking garment redistributing wholesome remorse plato morris stooped dew monk thrill hue exclusive funds porter uncommon dash strained confounded swim strip middle aged ultimately team missionary esteemed tracks envelope whoever expensive headquarters cherished brandy startling homer talks acute cigarette motor embarrassed janet volunteer offspring network reaches indispensable plane reaction regiments g sums partially prejudices proudly baggage terrace deaf allusion grip juice isabel resigned humility benjamin blast ministry sexual nile diameter troop onward crowds marrying tightly sullen brutal axe holmes penalty tops diamond boards corridor endowed strengthened cells proportions alternate echo restraint trials reads identity headed softened quivering stages sway poetical objected screen professed dirt ascertained era wider ambassador constituted breed interference eyebrows shapes afar consist acceptance displays flashing hunted beauties lazy shrewd extravagant momentary cordial engineer rapidity nov halt alternative devils stamp compact whites breathless encoding drift disappear roared revived counter venus imaginary diminished honoured th despatched objections ray climbing attract astonishing competition suggestions ink oft crystal shower diseases ferdinand obedient draught wondrous await armour massive bottles kin cellar falsehood pillars edgar philosophical martha worlds memorable jacques detected stealing noisy henceforth cicero laden frost device glare touches senate lasting communion transport constantinople coffin eventually johnny enclosed forgiveness awfully clinging darkened contemplation termed manufacture swallow commonplace nancy resembled she'd labors contracted inscription comfortably indulge indulgence bravely kneeling yea keenly exhibition agricultural enlightened quest compliments crest extension uneasiness constitute inflicted lakes swing meadow noblest downloading complex controversy freed resignation tempest guidance prospects humbly lined serene shrugged honours roughly checks remarkably dainty overhead commencement singularly brightness oppression repeatedly conspiracy restrain splendor preservation pub pepper basin creeping matthew publicly percy continuing grove calamity pony vigour melody profitable descendants hire speculation discoveries accepts drunken candidate principally worried obstinate hasten foreigners elderly overwhelmed instincts telegraph russell university ghastly patron varying barbarous celestial t' patriotism modify earnestness exertion fox refusing horsemen inspection stations grieved louder bursting regretted mournful pursuing traitor associations cautious foundations stamped prior undertook telegram beggar chimney complicated davis striving magistrates converse graces wiped oars apology scared imprisonment eastward substitute yahweh handful usage lodged of villain banished restoration serpent hedge k jurisdiction captains settlers gaining valiant primary storms beam victoria tour prophecy spectacles obsolete buying shepherd wells harriet exaggerated heated penetrated travels earl hereditary ali supernatural competent piled hostess agriculture boughs urgent gratified suffice ports drifted accuracy deceased circular securing possibilities rhine alert neighboring democratic quebec bud accounted aided augustus blanket hail pretence beams andy pig shaped oven rounded ivory northward isolated policeman aug conventional babylon dusty bishops complaints stripped plead hinder vo cord flows personage classical alongside wrongs extract rewarded lungs lighter kisses serves pint forgiven sternly proclamation realised pipes arising pitched tube observer smote avenue elephant burke footing statesman rebels nails wears doomed edges esther indiana affecting stormy bee bury efficient mix supporting actor disturbance sweat executive seemingly tenth blossoms ethel folds painfully polish shudder oe roofs comparative begging imposing notable invested imprisoned mute amy cage esq pg cured cargo prof negotiations assented jail skilful ideals conferred resulted illusion torment troublesome crowns feb repentance blankets proprietor uncertainty concentrated mediterranean covers scream compromise respectful chariot ammunition bonnet secondary persia persecution lesser assistant saluted fits indulged springing cane fold boundary valued she'll rugged aloft thieves parlour indebted tons processes dave moore argue dearly logic panic restrained lb vainly weariness enlarged franklin tasted rural torrent resolute refrain kissing gorgeous meets circulation passionately inasmuch unexpectedly stress consumption groan suits sustain hosts crash resemble epoch quote lacking nominally choked aristocracy granite gradual delights hurled joyful sack slumber detached snapped shadowy accompanying annoyance crush needle repent phenomenon execute canst smoked greet monarchy behave richly controlled strive endeavor barrier canadian curve politeness flora rely flank convenience courteous logs lamb effectually robinson logical shan't dimly withered diet praises fulfil mantle ne'er discussing chicken judicial consistent ridicule as reins barrel distrust trunks verily hunters feather desperately goodly habitual voluntary luncheon eighteenth exertions expert coolly mistakes tedious contemplated clark jacket gleaming shrank swimming kent perplexed impressive universally displeasure maids rates underneath expedient emma impress bees bounded worshipped resisted provincial popularity baker shattered merciful olive tramp compensation ernest martial genial syria conjecture van waiter detained items promote delaware covenant nought interposed seizing sinner vigor devote decorated sentimental yoke properties warlike perilous threats kindled lays hostility dragging mare regulations obstacle sage destitute pays sleepy dublin jonathan posterity they'd nod mason patriotic plantation pitiful foster requisite expose oxen patch anderson stuart interruption lance payable definition birthday thumb wolves hammer overwhelming intensely revolutionary fragrant bleeding sheltered circuit dominions sales energetic insignificant repetition we'd amazing trains skirts tip trivial kick tended rejoicing dig pet skull lectures ness threat legislature plunder removing jungle ghosts numbered famine palaces sorrowful improvements coleridge fuller asp blocks darted shrine heel typical throws fortunately recognise fuel th tranquil frown destination plunge moor pin mars associate here's owen th arabic vicious framed banquet expressive instinctively lighting scanning subordinate jaws patent courtyard gulf destroying detailed regulating closet compel inland excepting pretext legislative stationed rash margin champion settling billion shorter betwixt admiring morgan nick chemical chapters worthless aristocratic nan especial hon attentive maintenance charlie explanatory differently furiously pulse scanty flee admiral clause resume compound pilot growled charmed imitate happening knot rags mock majestic messages prussian suspense clare relationship skirt agency arisen grin unusually michigan hoarse mills intently dining demonstration depression lain expectations joining weekly trenches technical vehicle aimed borrow flattering portugal prodigious scope vegetation switzerland arkansas swelling fortified favoured salute topic blushed superb strengthen confidential crow shawl sunrise sings coats sturdy dissolved lifetime dispersed sergeant contribute strode brigade verdict they've honors panting females richest attribute brighter hook discontent orderly airs tiger messengers penetrate sabbath identification holiness crooked housekeeper productions prescribed rector spark sleeve honored tame highway alabama edmund militia nobleman energies spacious tearing affliction photograph ally hampshire ascent ditch fishes jupiter rubbing tract standards afore ribbon cecilia oregon integrity plus transparent farms pulpit ropes nineteen rescued counting perfume socrates hounds solicited bother fascinating qualified desolation essay rains renew odious assuredly suggests rider loneliness pond activities dazzling leaping squadron bowing novelty wrist keeper homeward alexandria finely li efficiency marvel tranquillity agnes charities spenser condemn elephants elders julian tries nd sweetly endurance bags reared jaw unique navigation inevitably admirably sect drum poles verge piercing sanction russians forlorn approbation organic stanley allegiance bin expressly ingenuity dispose stained theology withal duration fundraising adj collecting weigh sweetest float consul monastery raging publish knocking precaution privately aaron endeavored insight definitely stature troy miriam judah oblige urging shift mould courses countless associates hymn rapture tonight trumpet parker entrusted firmness comic breeding ken questioning factor monuments loveliness handled communities saloon stumbled witch confronted traveling seamen backed profoundly gladness pomp mess practise sanctuary superstitious casual iowa analyzed historic bored shrink judging treating expenditure encouraging diplomatic forcing studio exposure crude compilation vermont eve ascend unbroken apollo countess binding exceed frail hans champagne shuddered carter mule inserted parson rascal inspire banner divorce treacherous nineteenth invalid weaker organizations bolt ticket backwards captivity lame provoked vein lists gallop communications dagger passive shoe thrice corrected mystic infancy foam keith tavern fraud th cradle rifles vigorously censure gentleness jr sobbing monotonous explosion catastrophe respectfully wearied cats blamed needful fireplace gravel affords discovering jar selfishness tolerably clerks ark moist wid sauce prompted exceptions bullets writ bruce insolent moisture thompson furnace healing fewer deem apron humiliation punctuation rolls doe rotten richer swiss behavior nowadays pamphlet loan beads divers unreasonable realise lust ah annually detach gaily shares gifted planet feverish resurrection saul consecrated enforced vincent shelf fan fluid brightly damsel gabriel kid frantic neatly anon ascribed insane tropical th milan hardened overthrow phase achievement immortality obscurity assumption discern hopeful humorous composure turf poland dame missionaries orator perpetually arbitrary ecstasy retirement pronounce authorized familiarity nl hastings clubs reconciled grievous mercury elegance chivalry luminous beseech benevolent confided dances perplexity escaping terrific companionship commence daisy parliament th creep pleading disdain pm sympathies guides emergency parcel suicide replies drawer contribution supposition vii weren't link homely pluck ruling patrick statesmen hannah printing joshua synonymous sinister advocate destructive environment blossom bridle yon waistcoat extends confirm listing solemnity projects reporter deprive detachment infernal traversed moss skilled announce hateful fugitive gothic coolness insurrection cum med coachman expend stepping julius resign despatch excluded reject tough plea roy fragment lacked wordsworth balcony darker mac nevada christopher fork flatter iniquity meditation disastrous stain patches hints ordained drinks whipped burial matt employee employer hypothesis steed width sweden transaction victories devout outrage vary attorney rouse doubled sidney schooner flaming offend sheriff encamped magnificence vent politely vines flags italians necessities austin nobler accusation impulses packet shabby irritated dakota industrious classic ranch ascending cruelly happiest antonio accuse insulted bridges players sixteenth solicitation embarked idol odds aims illuminated enchanted adversary pie reflecting pension luxurious pigs choir tumbled conqueror irritation verb monkey acceptable dynasty accurately divinity signature heretofore hazard dora sq stead attire fling marine occupations soothing devised singer spaces emerson disguised antique orthodox poisoned dove gratification sydney electricity alien sorely cracked supremacy summon depressed sexes offerings pledged irony recourse tortured thickly correspondent sounding sombre brushed reasonably th duel reluctantly implies cable ridden acre grieve inquiring colonists addison republican illustrate tim liverpool gilded clumsy satin displeased odor clearer prairie hudson feudal flint easter freshness nursery explanations adoption reluctance crosses blushing imported notorious equipped sinful starving eugene bedside sovereigns abrupt excused injure incessant correctly drooping adored embroidered pasture pillar import founder torch vault worm ay bravery confinement trusting butler rattle transported estimation edit gotten cuts headlong outfit insolence secrecy thereupon unlucky eighth valour grammar relaxed mentions adjacent knives attacking exceptional recollections deposit establishing muddy arches aspects senior fragrance colonial penetrating refinement te yacht intelligible stray forcibly jenny superficial tends identified wan choosing frighten grotesque reprinted tutor contributing welsh gaiety besieged robbery transmitted swam consequential slid stony donald gratify heavier confidently mabel demon treatise mechanically batteries trading cock pilgrimage extinct idleness sicily merrily excursion handling utah eminence lump boyhood montana superfluous wee dome shivering accidental thickness darwin continuance fixing harris rustic cheered vernon premises delivery nodding snowy curved productive discouraged variations shilling swollen miraculous stubborn belgium drives jerome orchard persuasion invaded alps ungrateful insensible muscle madrid flanders cultivate involuntarily speedy variation marian harp peaks daybreak magnitude precautions rub requiring coral grapes fairest locality opponent bondage beans cowardly grandson leo gertrude nail protecting hospitable proving benevolence brussels civilisation mounting desiring rushes precision watchful harness perchance forbade channels indication zealous tact seventeenth theodore stating toast dreadfully judith asterisk virgil edifice swelled accomplishment sundry reckoning mouse prostrate helm slim whistling syllable handwriting commissioners lime spur unfit gen relish reduction sown venetian cordially hush breasts slipping pat arabian dialogue forwards entreat fascination belly neutral grasping diligence disgusted retiring strokes sob vine compose valentine harvey icy inconvenience v pots dimensions abused armor detect contradiction banker infamous powerless passenger crust historians disclaim norway peculiarities sting simultaneously watches cong episode achieve populace sherman incense rebecca jordan persistent wisconsin ho ta fruitful scoundrel coasts starve denmark scots consultation habitation goat howling tailor flourish trifles dashing disappearance sour practicable shameful inviting criminals leisurely accumulated audible topics expends radiance underline parade spoils helmet consternation expenditures impose originator pa unequal wooded enduring ox valet proclaim carl impossibility lydia territories deference ravine geoffrey blanche accommodation boyish spray theological anonymous injurious formally sports ab scales wyoming discontinue calf manual disturbing potent anticipation melt tilde thames grade mischievous pang pathos alternately brisk stool justification foreigner endeavouring satire al delete masculine spies umbrella transportation yell remnant boot ignored thrilling ale mineral goose nebraska truce lastly airy sketches groves col th comprehension cling duck abyss alaska baffled planning abominable aversion drawings customers weird stewart traveled alan incessantly flattery director improbable moderation awakening males pairs temporal con nicely lapse vitality soap patriot malicious eyed pirates enforce doll briskly sez skeleton comprehensive buttons crushing personages threaten nuts undone wright frankness hides progressive rogers villa aristotle resource irs confine sewing co congratulate walt reconcile insurance terminated dusky appoint pearl thrilled gains interrupt extravagance jokes suppress quod signify layer clue kettle contemplate aforesaid tooth sensibility boldness mature cuba tolerable rabbit befallen needless yankee awaken clasp lets blinded conductor dependence guarantee affectionately player wires thicket walker outstretched procedure wheeled aye oneself recommendation projecting shriek futile cheerfulness deity fifteenth gap muscular dripping insect values brooding restaurant baptism imaginative rhyme exhaustion intrigue senseless hercules yearly baron occupying imply absurdity launched resolutely vowed attach characterized fellowship posture caps leon demanding owl beset ensuring suite tennyson thereto heaped jewel regained voluntarily longitude permanently jumping babe secondly violin rogue rainy reconciliation emotional radical accursed tendencies concrete resident lustre hull ominous overboard uproar cavern combine respectively menace pilgrims jeff peak currency silken violet khan mastery objective plucked litter memorial bids fondly clapped tariff beneficial unsolicited reluctant separately patronage revenues dragon zeus mike ranges vexation indicates overheard tray raymond thereafter exporting mound taxation frenzy horizontal thirsty disputed charter redistribution boasted item moscow termination eminently suggestive linger shady calculation expansion mast confer sophia commanders pitied twist traditional involve interfered achilles wanton repay brother in law routine son in law gaul groom solve grassy tempt unsuccessful witty politician yearning lid noticing courtiers cheering bounty consequent renown regulation fowl mayor wrinkled defy threads violation junction boss particles glories signifies constrained paternal piles hardware engaging e g peer counties mocking ch avoiding rebuke abolished cheers idiot rd morbid wrung e mail outcome gilt coldness applying strand renowned fishermen creative circus moustache proverb lowering biggest sly nursing boon weighing oklahoma brink degraded avenge hum minority spaniard ridges perils larry merchandise aloof despairing acquisition asylum chickens placid affirm trod gardener schedule calmness protector concealment trench fore accession h dey connexion cairo mend considers twenty one municipal achievements cherish deserving exert riot veteran advancement inventor meek cameron hopelessly judicious tending testify governess orchestra garb condemnation foregoing bacon maternal wasting australian strata hushed maryland sculpture miniature corrections tangled completion regulated athenian flavor brand intimately unlimited dipped luggage inconsistent forsaken feebly woven lloyd rubbish tool spirited christendom chaos twinkling muffled accents accidentally degradation emancipation prosecution cleveland outbreak defending dwarf abundantly turner disadvantage abolition disregard deliberation filthy ak notifies dealings demonstrated paced tense drums interpreter vanish astray hen workman asunder baked baltimore bustle winged mentioning pastoral fabric trim musician twenty two patty mentally wrecked discreet godfrey apostle ledge roast accessed preface convincing quiver stocks mourn commented redistribute precipice outdated juliet dialect elementary freight cowardice wipe deserts shelves denial b traits denounced eric underground phantom whirling pecuniary dire hostilities gait it'll vividly instruct dickens puritan clutched acknowledgment conjunction oppressive intermediate formula hungary sneer ore plentiful plump combinations purest cheat doubly inadequate leslie blest forbear haunt treaties fearless constable enveloped enmity watson bridegroom curate developing frock mining audacity improper motto parisian faction architect melting delicately register heroine indefinite console defensive perceptible fruitless ransom surplus solicitude effectual shiver gal wed contemptuous plough snakes felicity reef outset constitutes lament tissue draft impelled epic fisherman hawaii obstinacy ulysses lemon voltaire hound measuring conscientious robber toy impart statute barry girdle basil rebellious stair biting consulting perseverance manila massacre cough blazed claude transition button headache tenant burns harmonious dreamy burgundy collections unkind inscribed cushions programme din laborious manufacturing markets zone humane ac fertility languid ninth curses introducing alcohol impending declining advantageous heal millennium karl ft staid planting theatrical spectator winchester greedy commonwealth suffrage tremulous commodities stuffed admitting aching ninety discomfort imperative montreal bobby bachelor geographical longest courageous carpenter sundays concluding danish steer influential surround random ounce afresh dictated ruddy rusty drown irving slide sow appalling profess sickly rides spoon imminent dominant leadership pinch wearily ducks diary duchess regain rum churchyard fondness apprehend ordinarily quicker thereon ni balloon individuality securely connecting celebrate bluff dawned amiss chalk sticking fuss dazed deputy forsake automobile discussions harrison refreshment amendment appealing eden vertical insufficient manchester hem gorge baptized damn silvery pastor inherent preventing inference advertisement mutton packing enclosure theft publisher spontaneous otto rats apparition refreshing irene sweetheart renounce lifeless adore vinegar normandy uncovered utility orphan symbols gracefully mightily peculiarity ash floods partake contemptible deities profane foreseen ti conceit commend twelfth bristol manifestation revive prone connect princely overtake improving downwards ferocious intervention subsistence susceptible tunnel disciple revival twins ivy puzzle citadel temporarily despotism internet mechanism stoop directors mathematics raft fade soothe pork substituted physically brilliancy dot loaf expanse shocking rudely isle balanced extracted fable matches index gerard cigars liver transmit dispatch onto veranda dip inexplicable liar diminish dungeon unit pagan phillips brig monopoly rim sordid complaining temperate chat gambling maps amber trot howl shipping ton magazines bricks submarine roberts cumberland cecil semblance palestine perpendicular regardless fervent sane wreath animation earthquake sloping smoothly tension intrigues fearfully macaulay laboratory cork comments whale wedded whiteness convicted deception paved scruple paintings therewith religions governing colleagues shrinking tickets prophetic undergo hare haze poisonous omit beware sagacity concession worker ted incline caste leapt dissatisfied hardest self control toilet buddha offense woodland gentry starvation grudge penance tips rooted outburst fortitude turk devour malignant accorded brandon anticipate speechless inquisition eccentric anecdote annals scrutiny burroughs rhythm discord marius diversion archie rat knit correspond detain dis esp interpret vehement soda naughty salon operate idly imperious peru candid whig blooming wharf disgraceful stunned redemption drain wage cooper embassy unfinished nasty impetuous cemetery oblivion prohibited breeches abound christine frivolous hugo essays plaster tap chairman dismiss katherine provoke reside deficient decoration heroism toe wade apparel hazel inability farthest invent knave twain carelessness affectation connections climax avowed industries brood tempting define antwerp forefathers stretches gratifying plight restricted cupboard ludicrous alms colossal stupidity monotony stimulus vigilance digest vale overcoat colorado wink nous rack incomprehensible antagonist methinks barley plateau superintendent indescribable expanded presentation archbishop devise rubber adieu exclude carts lone whisky abuses inflict nightfall counts chocolate privileged hermit exultation overtook coincidence scratch screw caravan divert eliza comparing hood explore glove chaste whirl adventurous skipper tiresome implements recompense plank insure laboured exaggeration mi shepherds lilies ballad befall cylinder teddy summary daresay photographs colleges dissolution geneva marches instituted seals vehemence chaplain knots wail kneel unlikely deceit challenged geography herald lowly peep swarm clarke joyfully engraved ll bowels purposely blindness systematic virtually conformity remedies maxim indexes marshall baking invincible impertinent bust visage intuition mingle bathing arched investment tabernacle client ghostly furs catalogue dock tenor arouse verbal excessively brazil strenuous irishman recess unclean psalms analogy chemistry peninsula infer maritime secular hawk rein averted bake constantine oracle alley softness pierce spinning snatch manufactured launch psychology worms regulate farming fasten actress etiquette theater thanksgiving valor untouched tactics drug adverse gaunt conducting veritable overtaken distorted rosa nina quart caprice candy obliging planets soothed sic opium pavilion strait sanguine cords odour trout paste regularity metallic scrap convict instructive investigate celtic package pirate fiend moan revealing trades rounds accomplishments crawl aft prevalent role dose evans hypocrisy l salmon snap alma magical tire hetty impenetrable geese madly manifold noticeable pudding volcanic locke magnetic deals core decency observance durst scratched predecessor diplomacy wert impartial disinterested wig pump swedish norfolk reigns similarly reap dam facilities slippery transformation oxygen suburbs dares ornamental pondered fringe raiment henrietta wellington foreman feat thirteenth sultan certificate rue heresy arabia medal location ether ruby heading subdue adorn ancestor warmer cluster quotation fullest exposition custody thermometer plausible toss desperation rhetoric scornful bailey rung civility dingy scaffold concentration avarice scrape pools oar flutter martyr handy montague bait login commotion congenial drawers telescope deposits edwards craving bureau oscar speculative huddled diverse slice renaissance angelo meg murderous serenity perspiration coventry impudent ardor necklace alight stimulated clifford steadfast genoa anglo saxon courier inflamed xi drill spelling respond seriousness fourteenth womb literal singers usefulness cloudy mortality profusion fleeting twentieth maturity surf weed phases overcame womanhood envious tapped latent whiskey relatively forbidding cleopatra willow mathematical sojourn booty camel implore amateur morally qualifications gasp gliding tested racing brightest joel extremes damascus labored peggy exit originality humming isolation sometime glee adult solace biography ff hardship lied donkey trader rumour amply confide favors perspective belgian withstand robust pro val eats snare monthly wines ignore envoy flown reverie jehovah contrive chatter judas nourishment reforms clatter adrian allude corrupted thorn junior tony calcutta re holt psychological constancy misunderstood signals drying harshly distressing novelist cyril editors intricate limestone forty five collision pebbles willie knitting ordeal foresee peas repast supplying clan abject dart berth bridal indirect unnoticed tint insults precedent twisting bully vacation 'll canon aisle click inspiring oval impracticable delirium cedar contradict ingratitude soften bewilderment servitude comely stump redeem spun elastic poultry horseman dictionary prettiest adoration icel wager involving pathway essex wistful advent gear celebration conceivable drowning faintest acquiring befell good looking wares rendezvous snug watery accompaniment chaps crawling lumber publishing customer mediaeval prints lavish md genesis rug analogous eleventh noah galley partition blunder glasgow fanciful ham rainbow sentinel hereby outlook smitten unmarried mice installed vivacity marking aesthetic consume resent pose contentment sterling veneration p m barking bower organism unintelligible emphatic occurring factors guise editorial impudence midday corporal sg aright nigger lily noun scout spit cursing friedrich manifestly marco battalion heritage brotherhood nun wad folding discerned powerfully mitchell helpful persist ellis frigate spotted atoms curves outlet erroneous violated withheld fairies inherit sledge taller supervision butt handsomely tank velocity arctic colleague pins butcher drowsy butterfly chart twin sunken exasperated narrowly collins insulting deficiency operating overthrown gallows diligent hindu blunt omen bleak vehemently wretchedness e'er ensure denotes sentenced unfair encampment possessor absorbing descendant sub drugs engineers independently bucket clerical ache glitter ordinance bamboo amsterdam vocation admirer limp pallid mildly organisation timothy dealer yorkshire auspicious deuce emblem gibson primarily reducing ritual decorations thigh groaning scant fiscal mien charging cor railing peers inferred sanctity accumulation cynical inspector wardrobe jesuit texture adjustment epistle adventurer priesthood seaman turbulent chant marsh palmer unaware vase ty initial baths weighty minimum correction morsel overlook meagre unanimous magician mystical twenty three inhabit shaggy unaccountable nightmare carbon coil lawless stairway willingness sarcasm crisp jerk tout vocabulary stroll poorly composing parliamentary controlling fitness thoughtless soames temperance illumination translations martyrdom mellow nationality jam austere shoots casually pensive flavour nets dice satisfactorily shrunk administer ante swine baptist listener unimportant genera contrivance deplorable museum benefactor tints alphabet rout scatter boer ftp steve extant bohemia misunderstanding universities dexterity rag inseparable punch brazen economical pernicious craig mythology drained bolted abel stride circumference meddle axis gum las kinder closes ferocity giddy secluded resisting satisfying reliable disgusting thirty six ethical raleigh crouching lash recital buddhist collapse unsatisfactory lore varies mainland scot repute cushion confound scrub myth flights oats layers ownership cape glimmer scare waked bengal scrupulous equals redress brake nut stability crafty kirk bough momentous albeit enlarge hardness civilised dotted defiant timidity solar heartless thomson mat shun raid disclose suppression puff juncture beak unjustly foresaw rot aggressive predicted quaker grate lease ponderous maketh repaid charcoal chilly arrogance friction participation pier stale intoxicated commissioned ratio comb masterpiece wholesale embraces trodden ephraim shaw translate mortar recreation rite truthful cavalier caress si curling rivalry whim abreast thebes faust peg wilhelm pestilence ceremonial receiver sample distinctive consummate matron claiming plural initiative inexhaustible a m spider reed streak blocked titus smashed populous baronet commodore jelly advocates dinah salutation mutiny chronicles comforting serviceable parchment playful potato transient administrative anarchy barber revision operated farce germ profile provides noting disordered menacing heightened finance averse azure bathe campaigns lessen slate acquaint gin humiliating cleft conveyance chivalrous capricious tribune pilgrim entreaty womanly paltry sporting maker digestion bart infamy lambs gaping periodical standpoint amorous tub luxuriant basic mutually chris greed premature extinction boiler intimation scandalous separating oratory banish electrical herb multiply prosper friar nightly ole monkeys interminable enjoys similarity riddle cleaning subscription copious exclaim forged voting scourge darkly privacy arena bearded vera alacrity sensual spin neutrality flannel fasting trailer avert trustworthy jamaica unchanged traveler unfamiliar puffed mirrors phoebe father in law conform particle railways stupendous paddle innate reformation volley statistics agrees simpler padre congratulations lids muse inhabitant ishmael rustle clump calendar flute inaccessible yore jay repulsive fray po nomination conclusive peaceable beth inconceivable e'en emerald lava trillion uppermost arduous lyric downright reproduction foresight consistency ape senators pallor span salad snuff drooped greetings chestnut inquisitive vicar noel attic savings affirmative ills applications t dye gloucester nominal demonstrate dispense dissatisfaction merciless trusty coloring perusal plaintive discarded precarious infection ruinous bolts arithmetic considerate lark ethics conventions stumbling pitcher slips seine officially danube annoy glide impunity amends sol conveying abandonment mane tinge brim forenoon seventy five sparkle syllables shrug enchantment franz trait bribe composer preparatory audacious outskirts soiled fiddle football isaiah partnership continuation pioneer vest bass derby quarry rigging dizzy abnormal omission idolatry sequence squeeze cabbage canopy athletic shirley drunkenness intrusion 'cause assign tackle dreamt sceptre exacting parched eddy percentage twinkle curb sandstone invaluable fathom preferable adelaide advertising scraps lever muster cavity barbarian sleepless fried abstraction forefinger spade erection scorned pail withdrawal senator mortgage ancestral succour ma forbearance repress spouse valid witchcraft workmanship legacy proximity bombay paula incorporated muzzle reuben clusters valve compelling dissipated flickering guinea sup tarry derision vehicles accommodate glossy iris relic ant heath bug vocal downfall construct undue vapor bat whimsical contradictory unlocked foretold automatic explicit indolent mates artful downcast well being winston ordinances catharine effectively missions stalk indistinct pregnant reddish coveted fret peeping buck sumptuous indefinitely reliance panama cocked dad everyday intoxication aghast subterranean turmoil forfeit chasm inspect perverse precipitate dover ambush evermore mass blot nook verdure parapet jake cessation ankle classification fervently oddly haul saxony embarrassing hairy northwest disabled laurel preston arrogant hurts demonstrations splash curl livelihood wary scattering brace converts detestable abandoning somerset weakly clothe gem tremor surveying variable anniversary thirty two wrap curly diversity prestige desertion freezing heedless sentry believer ram rowing negligence self sulphur discrimination cooling millionaire flowering meridian wins awed beastly nuisance abstain continental stanza target unwonted whit jason stall sham dictate empress gout jobs manure nigel sidewalk sate grievance axes bony invest birmingham ebb rabble restlessness cruise rally rumor hysterical girlish actively shortest marseilles cheque disregarded retort rocking emerge perch flask ka countryman lonesome manned unarmed wast frog twenty eight unscrupulous yarn victuals outrageous appropriation foolishness quickness adversity parma diseased iliad salutary smelt territorial hurricane irons canyon jeremiah brooklyn indulging vapour disobedience atrocious leaps tapestry provocation twenty six impotent smite acquitted os tumultuous barge palpable apprentice lances compartment godly sarcastic therefrom specifically uniformity emerging atonement whereabouts davy framework sponge mountainous annoying cot squirrel wand grind bang unreal blacksmith injunction scarcity withhold outright bavaria cement growl aggregate fraction exaltation inexorable jug purer sap illegal sister in law presses stealthily dissolve volcano hungarian equilibrium obstinately sullenly assassination commissions respectability bases maxwell resounded closest embroidery gunpowder reproof yale combining weaving earnings hamburg indoors manufacturers pitiless scarf picnic misled pompous brian respite exploit tracing geological passport confines dishonour executioner township vacancy acquiescence cornwall crumbling three quarters exploration needy stationary disconcerted wanderer beaver lookout onion depicted boisterous couples speakers woollen lightness bitten aux toleration lucia scar bohemian vested affinity carlo sous penitent simpson abiding ca immoral dishonest yawning mustache supplement whirlwind clash terence lamentable bennett farthing speck biscuit appellation gdp reserves uncouth birch armchair judy greasy leaden dough lining cleverness ascetic clutch krishna embark quotations friendliness liberally trance untrue rejection grating hanover inexperienced mon wintry stalwart meats stamping variance apiece firmament absorption apprehensive terminate wilful conveniently 'n' cleanliness collective angela filth philippines timely herein ignoble canton lamentations moslem ware adjective glen invade livid buggy prolong weaken folio dismissal quay enchanting heave purified syrian significantly experimental film repressed cooperation sequel wench calves Retrieved from "http //en wiktionary org/wiki/Wiktionary Frequency_lists/PG/ / / " def g(): global big big = file('big.txt').read() N = len(big) s = set() for i in xrange(6, N): c = big[i] if ord(c) > 127 and c not in s: print i, c, ord(c), big[max(0, i-10):min(N, i+10)] s.add(c) print s print [ord(c) for c in s] aaa aaerially aaerialness aah aahed aahing aahs aal aalii aaliis aals aam aardvark aardvarks aardwolf aardwolves aargh aarogramme aaron aaronic aarp aarrgh aarrghh aas aasvogel aasvogels ab aba abac abaca abacas abacate abacaxi abacay abaci abacinate abacination abacisci abaciscus abacist aback abacli abacot abacs abacterial abactinal abactinally abaction abactor abactors abaculi abaculus abacus abacuses abada abaddon abadejo abadengo abadia abaff abaft abaisance abaised abaiser abaisse abaissed abaka abakas abalation abalienate abalienated abalienating abalienation abalone abalones abamp abampere abamperes abamps aband abanded abanding abandon abandonable abandoned abandonedly abandonee abandonees abandoner abandoners abandoning abandonment abandonments abandons abands abandum abanet abanga abannition abapical abaptiston abaptistum abarthrosis abarticular abarticulation abas abase abased abasedly abasedness abasement abasements abaser abasers abases abash abashed abashedly abashedness abashes abashing abashless abashlessly abashment abashments abasia abasias abasic abasing abasio abask abassi abastard abastardize abastral abatable abatage abate abated abatement abatements abater abaters abates abatic abating abatis abatised abatises abatjour abatjours abaton abator abators abattage abattis abattised abattises abattoir abattoirs abattu abattue abature abatures abaue abave abaxial abaxile abay abaya abayah abayas abaze abb abba abbacies abbacomes abbacy abbandono abbas abbasi abbasid abbassi abbate abbatial abbatical abbatie abbaye abbe abbes abbess abbesses abbest abbevillian abbey abbeys abbeystead abbeystede abboccato abbogada abbot abbotcies abbotcy abbotnullius abbotric abbots abbotship abbotships abbott abbozzo abbr abbrev abbreviatable abbreviate abbreviated abbreviately abbreviates abbreviating abbreviation abbreviations abbreviator abbreviators abbreviatory abbreviature abbreviatures abbrevs abbroachment abbs abby abbé abbés abc abcee abcees abcess abcissa abcoulomb abcoulombs abcs abd abdabs abdal abdali abdaria abdat abdest abdicable abdicant abdicate abdicated abdicates abdicating abdication abdications abdicative abdicator abdicators abditive abditory abdom abdomen abdomens abdomina abdominal abdominales abdominalia abdominalian abdominally abdominals abdominoanterior abdominocardiac abdominocentesis abdominocystic abdominogenital abdominohysterectomy abdominohysterotomy abdominoplasties abdominoplasty abdominoposterior abdominoscope abdominoscopy abdominothoracic abdominous abdominousness abdominovaginal abdominovesical abduce abduced abducens abducent abducentes abduces abducing abduct abducted abductee abductees abducting abduction abductions abductor abductores abductors abducts abeam abear abearance abearing abears abecedaire abecedaria abecedarian abecedarians abecedaries abecedarium abecedarius abecedary abed abede abedge abegge abegging abeigh abel abele abeles abelia abelian abelias abelite abelmoschus abelmosk abelmosks abelmusk abeltree abend abends abenteric abepithymia aberdavine aberdeen aberdevine aberdevines aberduvine abernethy aberr aberrance aberrances aberrancies aberrancy aberrant aberrantly aberrants aberrate aberrated aberrates aberrating aberration aberrational aberrations aberrative aberrator aberrometer aberroscope aberuncate aberuncator abesse abessive abessives abet abetalipoproteinemia abetment abetments abets abettal abettals abetted abetter abetters abetting abettor abettors abevacuation abey abeyance abeyances abeyancies abeyancy abeyant abfarad abfarads abhenries abhenry abhenrys abhinaya abhiseka abhominable abhor abhorred abhorrence abhorrences abhorrencies abhorrency abhorrent abhorrently abhorrer abhorrers abhorrible abhorring abhorrings abhors abib abichite abid abidal abidance abidances abidden abide abided abider abiders abides abidi abiding abidingly abidingness abidings abidjan abied abiegh abience abient abies abieses abietate abietene abietic abietin abietineous abietinic abietite abigail abigails abigailship abigeat abigei abigeus abilao abilene abiliment abilitable abilities ability abilla abilo abime abintestate abiogeneses abiogenesis abiogenesist abiogenetic abiogenetical abiogenetically abiogenic abiogenically abiogenist abiogenists abiogenous abiogeny abiological abiologically abiology abioses abiosis abiotic abiotical abiotically abiotrophic abiotrophy abir abirritant abirritate abirritated abirritating abirritation abirritative abiston abit abiturient abiturients abiuret abject abjected abjectedness abjecting abjection abjections abjective abjectly abjectness abjectnesses abjects abjoint abjointed abjointing abjoints abjudge abjudged abjudging abjudicate abjudicated abjudicating abjudication abjudicator abjugate abjunct abjunction abjunctions abjunctive abjuration abjurations abjuratory abjure abjured abjurement abjurer abjurers abjures abjuring abkar abkari abkary abl ablach ablactate ablactated ablactating ablactation ablactations ablaqueate ablare ablastemic ablastin ablastous ablate ablated ablates ablating ablation ablations ablatitious ablatival ablative ablatively ablatives ablator ablators ablaut ablauts ablaze able abled ableeze ablegate ablegates ablegation ableism ableisms ableist ableists ablend ableness ablepharia ablepharon ablepharous ablepsia ablepsy ableptical ableptically abler ables ablesse ablest ablet ablets ablewhackets abling ablings ablins ablism ablock abloom ablow abls ablude abluent abluents ablush ablute abluted ablution ablutionary ablutions ablutomane ablutomanes abluvion ably abm abmho abmhos abmodalities abmodality abn abnaki abnegate abnegated abnegates abnegating abnegation abnegations abnegative abnegator abnegators abner abnerval abnet abneural abnormal abnormalcies abnormalcy abnormalise abnormalised abnormalising abnormalism abnormalisms abnormalist abnormalities abnormality abnormalize abnormalized abnormalizing abnormally abnormalness abnormals abnormities abnormity abnormous abnumerable abo aboard aboardage abocclusion abococket abodah abode aboded abodement abodements abodes aboding abody abogado abogados abohm abohms aboideau aboideaus aboideaux aboil aboiteau aboiteaus aboiteaux abolete abolish abolishable abolished abolisher abolishers abolishes abolishing abolishment abolishments abolition abolitional abolitionary abolitionise abolitionised abolitionising abolitionism abolitionisms abolitionist abolitionists abolitionize abolitionized abolitionizing abolitions abolla abollae abollas aboma abomas abomasa abomasal abomasi abomasum abomasus abomasuses abomasusi abominability abominable abominableness abominablenesses abominably abominate abominated abominates abominating abomination abominations abominator abominators abomine abondance abondances abonne abonnement abonnements aboon abor aborad aboral aborally abord aborded abording abords abore aborigen aborigens aborigin aboriginal aboriginalism aboriginalisms aboriginalities aboriginality aboriginally aboriginals aboriginary aborigine aborigines aborigins aborne aborning aborsement aborsive abort aborted abortee abortees aborter aborters aborticide aborticides abortient abortifacient abortifacients abortin aborting abortion abortional abortionist abortionists abortions abortive abortively abortiveness abortivenesses abortogenic aborts abortuaries abortuary abortus abortuses abos abote abouchement aboudikro abought aboulia aboulias aboulic abound abounded abounder abounding aboundingly abounds about abouts above aboveboard abovedeck aboveground abovementioned aboveproof aboves abovesaid abovestairs abow abox abp abr abracadabra abracadabras abrachia abrachias abradable abradant abradants abrade abraded abrader abraders abrades abrading abraham abraid abraided abraiding abraids abram abramis abranchial abranchialism abranchian abranchiate abranchiates abranchious abrasax abrase abrased abraser abrash abrashes abrasing abrasiometer abrasion abrasions abrasive abrasively abrasiveness abrasivenesses abrasives abrastol abraum abraxas abraxases abray abrayed abraying abrays abrazite abrazitic abrazo abrazos abreact abreacted abreacting abreaction abreactions abreactive abreacts abreast abreed abrege abreid abrenounce abrenunciate abrenunciation abreption abret abreuvoir abri abrico abricock abricocks abricot abridgable abridge abridgeable abridged abridgedly abridgement abridgements abridger abridgers abridges abridging abridgment abridgments abrim abrin abrine abrins abris abristle abroach abroad abroads abrocoma abrocome abrogable abrogate abrogated abrogates abrogating abrogation abrogations abrogative abrogator abrogators abronia abrood abrook abrooke abrooked abrookes abrooking abrosia abrosias abrotanum abrotin abrotine abrupt abruptedly abrupter abruptest abruptio abruption abruptiones abruptions abruptly abruptness abruptnesses abrupts abruzzi abrégé abs absampere absarokite abscam abscess abscessed abscesses abscessing abscession abscessroot abscind abscinded abscinding abscinds abscise abscised abscises abscisin abscising abscisins abscision absciss abscissa abscissae abscissas abscisse abscisses abscissin abscissins abscission abscissions absconce abscond absconded abscondedly abscondence abscondences absconder absconders absconding abscondment absconds absconsa abscoulomb abscound absee abseil abseiled abseiler abseilers abseiling abseilings abseils absence absences absent absentation absented absentee absenteeism absenteeisms absentees absenteeship absenter absenters absentia absenting absently absentment absentminded absentmindedly absentmindedness absentmindednesses absentness absents absey abseys absfarad abshenry absinth absinthe absinthes absinthial absinthian absinthiate absinthiated absinthiating absinthic absinthiin absinthin absinthine absinthism absinthismic absinthisms absinthium absinthol absinthole absinths absis absist absistos absit absits absmho absohm absoil absolent absolute absolutely absoluteness absolutenesses absoluter absolutes absolutest absolution absolutions absolutism absolutisms absolutist absolutista absolutistic absolutistically absolutists absolutive absolutization absolutize absolutized absolutizes absolutizing absolutory absolvable absolvatory absolve absolved absolvent absolvents absolver absolvers absolves absolving absolvitor absolvitors absolvitory absonant absonous absorb absorbabilities absorbability absorbable absorbance absorbances absorbancies absorbancy absorbant absorbants absorbate absorbates absorbed absorbedly absorbedness absorbednesses absorbefacient absorbefacients absorbencies absorbency absorbent absorbents absorber absorbers absorbing absorbingly absorbition absorbs absorbtion absorpt absorptance absorptances absorptiometer absorptiometers absorptiometric absorption absorptional absorptions absorptive absorptively absorptiveness absorptivenesses absorptivities absorptivity absquatulate absquatulated absquatulates absquatulating absquatulation abstain abstained abstainer abstainers abstaining abstainment abstains abstemious abstemiously abstemiousness abstemiousnesses abstention abstentionism abstentionisms abstentionist abstentionists abstentions abstentious absterge absterged abstergent abstergents absterges absterging absterse abstersion abstersions abstersive abstersiveness abstersives abstertion abstinence abstinences abstinencies abstinency abstinent abstinential abstinently abstort abstr abstract abstractable abstracted abstractedly abstractedness abstractednesses abstracter abstracters abstractest abstracting abstraction abstractional abstractionism abstractionisms abstractionist abstractionists abstractions abstractitious abstractive abstractively abstractiveness abstractives abstractly abstractness abstractnesses abstractor abstractors abstracts abstrahent abstrict abstricted abstricting abstriction abstrictions abstricts abstrude abstruse abstrusely abstruseness abstrusenesses abstruser abstrusest abstrusion abstrusities abstrusity absume absumption absurd absurder absurdest absurdism absurdisms absurdist absurdists absurdities absurdity absurdly absurdness absurdnesses absurds absurdum absvolt abt abterminal abthain abthainrie abthainry abthanage abthane abthanes abtruse abu abubble abucco abudefduf abuilding abuleia abulia abulias abulic abulomania abulyeit abumbral abumbrellar abuna abunas abundance abundances abundancies abundancy abundant abundantly abune abura aburabozu aburagiri aburban aburst aburton abusable abusage abusages abuse abused abusedly abusee abuseful abusefully abusefulness abuser abusers abuses abush abusing abusion abusions abusious abusive abusively abusiveness abusivenesses abut abutilon abutilons abutment abutments abuts abuttal abuttals abutted abutter abutters abutting abuzz abv abvolt abvolts abwab abwatt abwatts aby abye abyed abyeing abyes abying abys abysm abysmal abysmally abysms abyss abyssa abyssal abysses abyssinia abyssinian abyssinians abyssobenthonic abyssolith abyssopelagic abyssus ac acacatechin acacatechol acacetin acacia acacias acaciin acacin acacine acad academe academes academia academial academian academias academic academical academicalism academicalisms academically academicals academician academicians academicianship academicism academicisms academics academie academies academise academised academising academism academisms academist academists academite academization academize academized academizing academy acadia acadialite acadian acaena acajou acajous acalculia acale acaleph acalepha acalephae acalephan acalephans acalephas acalephe acalephes acalephoid acalephs acalycal acalycine acalycinous acalyculate acalypha acalyptrate acampsia acana acanaceous acanonical acanth acantha acanthaceae acanthaceous acanthad acanthae acanthas acanthi acanthial acanthin acanthine acanthins acanthion acanthisitta acanthisittidae acanthite acanthocarpous acanthocephala acanthocephalan acanthocephalans acanthocephalous acanthocereus acanthocladous acanthocybium acanthocyte acanthocytosis acanthodean acanthodian acanthoid acanthological acanthology acantholysis acanthoma acanthomas acanthon acanthophis acanthophorous acanthopod acanthopodous acanthopomatous acanthopore acanthopteran acanthopterous acanthopterygian acanthopterygians acanthopterygii acanthoscelides acanthoses acanthosis acanthotic acanthous acanths acanthuridae acanthurus acanthus acanthuses acanthuthi acapnia acapnial acapnias acapnic acapnotic acappella acapsular acapu acapulco acara acaracide acarari acarbose acarboses acardia acardiac acardite acari acarian acariases acariasis acariatre acaricidal acaricide acaricides acarid acaridae acaridan acaridans acaridean acarideans acaridian acaridians acaridiasis acaridomatia acaridomatium acarids acariform acarina acarine acarines acarinosis acariosis acarocecidia acarocecidium acarodermatitis acarodomatia acarodomatium acaroid acarol acarologies acarologist acarologists acarology acarophilies acarophilous acarophily acarophobia acarophobias acarotoxic acarpellous acarpelous acarpous acarus acaryote acast acatalectic acatalectics acatalepsia acatalepsies acatalepsy acataleptic acataleptics acatallactic acatamathesia acatamathesias acataphasia acataposis acatastasia acatastatic acate acategorical acater acaters acatery acates acatharsia acatharsy acathexia acathexis acatholic acatour acatours acaudal acaudate acaudelescent acaulescence acaulescences acaulescent acauline acaulose acaulous acausal acc acca accable accablé accademia accadian acce accede acceded accedence accedences acceder acceders accedes acceding accel accelerable accelerandi accelerando accelerandos accelerant accelerants accelerate accelerated acceleratedly accelerates accelerating acceleratingly acceleration accelerations accelerative accelerator acceleratorh accelerators acceleratory accelerograph accelerometer accelerometers accend accended accendibility accendible accending accends accensed accension accensions accensor accent accented accenting accentless accentor accentors accents accentuable accentual accentualities accentuality accentually accentuate accentuated accentuates accentuating accentuation accentuations accentuator accentus accept acceptabilities acceptability acceptable acceptableness acceptablenesses acceptably acceptance acceptances acceptancies acceptancy acceptant acceptants acceptation acceptations acceptavit accepted acceptedly acceptee acceptees accepter accepters acceptilate acceptilated acceptilating acceptilation acceptilations accepting acceptingly acceptingness acceptingnesses acception acceptive acceptivities acceptivity acceptor acceptors acceptress accepts accerse accersition accersitor access accessability accessable accessaries accessarily accessariness accessary accessaryship accessed accesses accessibilities accessibility accessible accessibleness accessiblenesses accessibly accessing accession accessional accessioned accessioner accessioning accessions accessit accessive accessively accessless accessor accessorial accessories accessorii accessorily accessoriness accessorinesses accessorise accessorised accessorises accessorising accessorius accessoriusorii accessorize accessorized accessorizes accessorizing accessors accessory acciaccatura acciaccaturas acciaccature accidence accidences accidencies accidency accident accidental accidentalism accidentalisms accidentalist accidentalities accidentality accidentally accidentalness accidentalnesses accidentals accidentarily accidentary accidented accidential accidentiality accidently accidents accidia accidias accidie accidies accinge accinged accinges accinging accipenser accipient accipiter accipiters accipitral accipitrary accipitridae accipitriformes accipitrine accipitrines accipter accise accismus accite accited accites acciting acclaim acclaimable acclaimed acclaimer acclaimers acclaiming acclaims acclamation acclamations acclamator acclamatory acclimatable acclimatation acclimatations acclimate acclimated acclimatement acclimates acclimating acclimation acclimations acclimatisable acclimatisation acclimatisations acclimatise acclimatised acclimatiser acclimatisers acclimatises acclimatising acclimatizable acclimatization acclimatizations acclimatize acclimatized acclimatizer acclimatizers acclimatizes acclimatizing acclimature acclinal acclinate acclivities acclivitous acclivity acclivous accloy accloyed accloying accloys accoast accoasted accoasting accoasts accoied accoil accoils accolade accoladed accolades accolading accolated accolent accoll accolle accolled accollee accombination accommodable accommodableness accommodate accommodated accommodately accommodateness accommodates accommodating accommodatingly accommodatingness accommodation accommodational accommodationism accommodationist accommodationists accommodations accommodative accommodatively accommodativeness accommodativenesses accommodator accommodators accomodate accompanable accompanied accompanier accompaniers accompanies accompaniment accompanimental accompaniments accompanist accompanists accompany accompanying accompanyist accompanyists accomplement accompletive accompli accomplice accomplices accompliceship accomplicity accomplis accomplish accomplishable accomplished accomplisher accomplishers accomplishes accomplishing accomplishment accomplishments accomplisht accompt accomptable accomptant accomptants accompted accompting accompts accorage accoraged accorages accoraging accord accordable accordance accordances accordancies accordancy accordant accordantly accordatura accordaturas accordature accorded accorder accorders accordiable according accordingly accordion accordionist accordionists accordions accords accorporate accorporation accost accostable accosted accosting accosts accouche accouchement accouchements accoucheur accoucheurs accoucheuse accoucheuses accounsel account accountabilities accountability accountable accountableness accountablenesses accountably accountancies accountancy accountant accountants accountantship accountantships accounted accounter accounters accounting accountings accountment accountrement accounts accouple accouplement accourage accouraged accourages accouraging accourt accourted accourting accourts accoustrement accoustrements accouter accoutered accoutering accouterment accouterments accouters accoutre accoutred accoutreing accoutrement accoutrements accoutres accoutring accoy accoyed accoying accoyld accoys accra accras accrease accredit accreditable accreditate accreditation accreditations accredited accreditee accrediting accreditment accredits accrementitial accrementition accresce accrescence accrescences accrescendi accrescendo accrescent accretal accrete accreted accretes accreting accretion accretionary accretions accretive accrew accrewed accrewing accrews accriminate accroach accroached accroaching accroachment accroides accruable accrual accruals accrue accrued accruement accruements accruer accrues accruing acct accts accubation accubations accubita accubitum accubitus accueil accultural acculturate acculturated acculturates acculturating acculturation acculturational acculturationist acculturations acculturative acculturize acculturized acculturizing accum accumb accumbencies accumbency accumbent accumber accumulable accumulate accumulated accumulates accumulating accumulation accumulations accumulativ accumulative accumulatively accumulativeness accumulativenesses accumulator accumulators accupy accur accuracies accuracy accurate accurately accurateness accuratenesses accurre accurse accursed accursedly accursedness accursednesses accurses accursing accurst accurtation accus accusable accusably accusal accusals accusant accusants accusation accusations accusatival accusative accusatively accusativeness accusatives accusator accusatorial accusatorially accusatory accusatrix accusatrixes accuse accused accusement accusements accuser accusers accuses accusing accusingly accusive accusor accustom accustomary accustomation accustomations accustomed accustomedly accustomedness accustomednesses accustoming accustomize accustomized accustomizing accustoms accustrement accustrements ace aceacenaphthene aceanthrene aceanthrenequinone acebutolol acecaffin acecaffine aceconitic aced acedia acediamin acediamine acedias acediast acedy aceite aceituna aceldama aceldamas acellular acemila acenaphthene acenaphthenyl acenaphthylene acenesthesia acensuada acensuador acentric acentrous aceologic aceology acephal acephala acephalan acephali acephalia acephaline acephalism acephalist acephalocyst acephalous acephalus acephaly acepots acequia acequiador acequias acer aceraceae aceraceous acerate acerated acerathere aceratosis acerb acerbate acerbated acerbates acerbating acerber acerbest acerbic acerbically acerbities acerbitude acerbity acerbityacerose acerbly acerbophobia acerdol aceric acerin acerli acerola acerolas acerose acerous acerra acers acertannin acerval acervate acervately acervatim acervation acervations acervative acervose acervuli acervuline acervulus aces acescence acescences acescencies acescency acescent acescents aceship acesodyne acesodynous acestoma aceta acetable acetabula acetabular acetabularia acetabuliferous acetabuliform acetabulous acetabulum acetabulums acetacetic acetal acetaldehydase acetaldehyde acetaldehydes acetaldehydrase acetaldol acetalization acetalize acetals acetamid acetamide acetamides acetamidin acetamidine acetamido acetamids acetaminol acetaminophen acetaminophens acetanilid acetanilide acetanilides acetanilids acetanion acetaniside acetanisidide acetanisidine acetannin acetarious acetars acetarsone acetary acetate acetated acetates acetation acetazolamide acetazolamides acetbromamide acetenyl acethydrazide acetiam acetic acetification acetifications acetified acetifier acetifiers acetifies acetify acetifying acetimeter acetimetric acetimetry acetin acetine acetins acetite acetize acetla acetmethylanilide acetnaphthalide acetoacetanilide acetoacetate acetoacetic acetoamidophenol acetoarsenite acetobacter acetobenzoic acetobromanilide acetochloral acetocinnamene acetoin acetol acetolysis acetolytic acetometer acetometric acetometrical acetometrically acetometry acetomorphin acetomorphine acetonaemia acetonaemic acetonaphthone acetonate acetonation acetone acetonemia acetonemic acetones acetonic acetonitrile acetonitriles acetonization acetonize acetonuria acetonurometer acetonyl acetonylacetone acetonylidene acetophenetide acetophenetidin acetophenetidine acetophenetidins acetophenin acetophenine acetophenone acetopiperone acetopyrin acetopyrine acetosalicylic acetose acetosity acetosoluble acetostearin acetothienone acetotoluid acetotoluide acetotoluidine acetous acetoveratrone acetoxim acetoxime acetoxyl acetoxyls acetoxyphthalide acetphenetid acetphenetidin acetract acettoluide acetum acetums aceturic acetyl acetylacetonates acetylacetone acetylamine acetylaminobenzene acetylaniline acetylasalicylic acetylate acetylated acetylates acetylating acetylation acetylations acetylative acetylator acetylbenzene acetylbenzoate acetylbenzoic acetylbiuret acetylcarbazole acetylcellulose acetylcholine acetylcholines acetylcholinesterase acetylcholinesterases acetylcholinic acetylcyanide acetylenation acetylene acetylenediurein acetylenes acetylenic acetylenogen acetylenyl acetylfluoride acetylglycin acetylglycine acetylhydrazine acetylic acetylid acetylide acetyliodide acetylizable acetylization acetylize acetylized acetylizer acetylizing acetylmethylcarbinol acetylperoxide acetylphenol acetylphenylhydrazine acetylrosaniline acetyls acetylsalicylate acetylsalicylates acetylsalicylic acetylsalol acetyltannin acetylthymol acetyltropeine acetylurea ach achaean achaenia achaenium achaeniums achaenocarp achaenocarps achaetous achafe achage achages achaian achalasia achalasias achape achaque achar acharne acharnement acharné acharya acharyas achate achates achatour ache acheat achech acheck ached acheer acheilary acheilia acheilous acheiria acheirous acheirus achene achenes achenia achenial achenium acheniums achenocarp achenodia achenodium acher acheron acheronian acherontia acherontic aches achesoun acheta achete acheulean acheweed achier achiest achievability achievable achieve achieved achievement achievements achiever achievers achieves achieving achigan achilary achill achillea achillean achilleas achillein achilleine achilles achillize achillobursitis achillodynia achilous achime achimenes achiness achinesses aching achingly achings achiote achiotes achira achiral achiras achirite achkan achkans achlamydate achlamydeous achlorhydria achlorhydrias achlorhydric achlorophyllous achloropsia achluophobia achoerodus achoke acholia acholias acholic acholous acholuria acholuric achomawi achondrite achondrites achondritic achondroplasia achondroplasias achondroplastic achoo achor achordal achordate achras achree achroacyte achrodextrin achrodextrinase achroglobin achroiocythaemia achroiocythemia achroite achroma achromacyte achromasia achromat achromate achromatic achromatically achromaticities achromaticity achromatin achromatinic achromatins achromatisation achromatisations achromatise achromatised achromatises achromatising achromatism achromatisms achromatizable achromatization achromatizations achromatize achromatized achromatizes achromatizing achromatocyte achromatolysis achromatope achromatophil achromatophile achromatophilia achromatophilic achromatopia achromatopsia achromatopsias achromatopsy achromatosis achromatous achromats achromaturia achromia achromic achromobacter achromoderma achromophilous achromotrichia achromous achromycin achronical achronism achronychous achroodextrin achroodextrinase achroous achropsia achtehalber achtel achtelthaler achter achterveld achuete achy achylia achylous achymia achymous acichlorid acichloride acicula aciculae acicular acicularity acicularly aciculas aciculate aciculated aciculum aciculums acid acidaemia acidanthera acidantheras acidemia acidemias acider acidest acidfreak acidfreaks acidhead acidheads acidic acidier acidiest acidiferous acidifiable acidifiant acidific acidification acidifications acidified acidifier acidifiers acidifies acidify acidifying acidimeter acidimeters acidimetric acidimetrical acidimetrically acidimetries acidimetry acidite acidities acidity acidize acidized acidizing acidly acidness acidnesses acidogenic acidoid acidology acidolysis acidometer acidometry acidophil acidophile acidophiles acidophilic acidophilous acidophils acidophilus acidophiluses acidoproteolytic acidoses acidosis acidosteophyte acidotic acidproof acids acidulant acidulate acidulated acidulates acidulating acidulation acidulations acidulent acidulous acidulously acidulousness aciduria acidurias aciduric acidy acidyl acier acierage acierages acierate acierated acierates acierating acieration acierations acies aciform aciliate aciliated acinaceous acinaces acinacifoliate acinacifolious acinaciform acinacious acinacity acinar acinarious acinary acinetae acinetan acinetarian acinetic acinetiform acinetinan acing acini acinic aciniform acinonyx acinos acinose acinotubular acinous acinuni acinus acipenser acipenserid acipenseridae acipenserine acipenseroid aciurgy ack ackee ackees acker ackers ackey ackeys ackman ackmen acknew acknow acknowing acknowledge acknowledgeable acknowledgeably acknowledged acknowledgedly acknowledgement acknowledgements acknowledger acknowledgers acknowledges acknowledging acknowledgment acknowledgments acknown acknowne acknows ackton aclastic acle acleidian acleistocardia acleistous aclidian aclinal aclinic acloud aclu aclydes aclys acmaesthesia acmatic acme acmes acmesthesia acmic acmite acmites acne acned acneform acneiform acnemia acnes acnidosporidia acnodal acnode acnodes acoasm acoasma acocanthera acocantherin acock acockbill acocotl acoelomate acoelomates acoelomatous acoelomous acoelous acoemeti acoenaesthesia acoin acoine acokanthera acold acologic acology acolous acolouthic acolouthite acolouthites acolouthos acolouthoses acoluthic acolyctine acolyte acolytes acolyth acolythate acolyths acolytus acoma acomia acomous aconative aconcagua acondylose acondylous acone aconelline aconic aconin aconine aconital aconite aconites aconitia aconitic aconitin aconitine aconitines aconitum aconitums acontia acontium aconuresis acool acop acopic acopon acopyrin acopyrine acor acoraceae acorea acoria acorn acorned acorns acorus acosmic acosmism acosmisms acosmist acosmistic acosmists acost acotyledon acotyledonous acotyledons acouasm acouchi acouchies acouchis acouchy acoumeter acoumetry acounter acouometer acouophonia acoup acoupa acoupe acousma acousmas acousmata acousmatic acoustic acoustical acoustically acoustician acousticians acousticolateral acousticophobia acoustics acoustoelectric acoustoelectrically acoustooptical acoustooptics acpt acquaint acquaintance acquaintances acquaintanceship acquaintanceships acquaintancy acquaintant acquainted acquaintedness acquainting acquaints acquent acquereur acquest acquests acquiesce acquiesced acquiescement acquiescence acquiescences acquiescency acquiescent acquiescently acquiescents acquiescer acquiesces acquiescing acquiescingly acquiesence acquiet acquight acquighted acquighting acquights acquirabilities acquirability acquirable acquiral acquirals acquire acquired acquirement acquirements acquirenda acquirer acquirers acquires acquiring acquisible acquisita acquisite acquisited acquisition acquisitional acquisitions acquisitive acquisitively acquisitiveness acquisitivenesses acquisitor acquisitors acquisitum acquist acquists acquit acquital acquite acquited acquites acquiting acquitment acquitments acquits acquittal acquittals acquittance acquittances acquitted acquitter acquitters acquitting acquophonia acracy acraein acraldehyde acrania acranial acraniate acrasia acrasias acrasin acrasins acrasiomycetes acraspedote acrasy acratia acratic acraturesis acrawl acraze acre acreable acreage acreages acreak acream acred acreman acremen acres acrestaff acrid acridan acridane acrider acridest acridian acridic acridid acrididae acridin acridine acridines acridinic acridinium acridins acridities acridity acridly acridness acridnesses acridone acridonium acridophagus acridotheres acridyl acriflavin acriflavine acriflavines acriflavins acrilan acrimonies acrimonious acrimoniously acrimoniousness acrimoniousnesses acrimony acrindolin acrindoline acrinyl acris acrisia acrisy acrita acritan acritarch acritarchs acrite acritical acritochromacy acritol acritude acrity acroaesthesia acroama acroamata acroamatic acroamatical acroamatics acroanaesthesia acroanesthesia acroarthritis acroasis acroasphyxia acroataxia acroatic acrobacies acrobacy acrobat acrobates acrobatholithic acrobatic acrobatical acrobatically acrobatics acrobatism acrobatisms acrobats acroblast acrobryous acrobystitis acrocarp acrocarpous acrocarpus acrocentric acrocentrics acrocephalia acrocephalic acrocephalies acrocephalous acrocephalus acrocephaly acrochordon acrock acroclinium acrocomia acroconidium acrocontracture acrocoracoid acrocyanosis acrocyst acrodactyla acrodactylum acrodermatitis acrodont acrodontism acrodonts acrodrome acrodromous acrodynia acroesthesia acrogamous acrogamy acrogen acrogenic acrogenous acrogenously acrogens acrography acrogynae acrogynous acrolect acrolectal acrolects acrolein acroleins acrolith acrolithan acrolithic acroliths acrologic acrologically acrologies acrologism acrologue acrology acromania acromastitis acromegalia acromegalic acromegalics acromegalies acromegaly acromelalgia acrometer acromia acromial acromicria acromikria acromimia acromioclavicular acromiocoracoid acromiodeltoid acromiohumeral acromiohyoid acromion acromions acromioscapular acromiosternal acromiothoracic acromonogrammatic acromphalus acromyodian acromyodic acromyodous acromyotonia acromyotonus acron acronal acronarcotic acroneurosis acronic acronical acronically acronichal acronichally acronomy acrons acronyc acronycal acronycally acronych acronychal acronychally acronychous acronyctous acronym acronymania acronymanias acronymic acronymically acronymize acronymized acronymizing acronymous acronyms acronyx acrook acroparalysis acroparesthesia acropathology acropathy acropetal acropetally acrophobe acrophobes acrophobia acrophobias acrophobic acrophobics acrophonetic acrophonic acrophonically acrophonies acrophony acropodia acropodium acropoleis acropolis acropolises acropolitan acropora acropore acrorhagus acrorrheuma acrosarc acrosarca acrosarcum acroscleriasis acroscleroderma acroscopic acrose acrosomal acrosome acrosomes acrosphacelus acrospire acrospired acrospires acrospiring acrospore acrosporous across acrostic acrostical acrostically acrostichal acrostichic acrostichoid acrostichum acrosticism acrostics acrostolia acrostolion acrostolium acrotarsial acrotarsium acroteleutic acroter acroteral acroteria acroterial acroteric acroterion acroterium acroteriums acroters acroterteria acrotic acrotism acrotisms acrotomous acrotrophic acrotrophoneurosis acryl acrylaldehyde acrylamide acrylamides acrylate acrylates acrylic acrylics acrylonitrile acrylonitriles acrylyl act acta actabilities actability actable actaea actaeon acted actg acth actias actifed actification actifier actify actin actinal actinally actinaria actinautographic actinautography actine actinenchyma acting actings actinia actiniae actinian actinians actiniaria actiniarian actinias actinic actinical actinically actinide actinides actinidia actinidiaceae actiniferous actiniform actinine actiniochrome actiniohematin actiniopteris actinism actinisms actinium actiniums actinobaccilli actinobacilli actinobacilloses actinobacillosis actinobacillotic actinobacillus actinoblast actinobranch actinobranchia actinocarp actinocarpic actinocarpous actinochemical actinochemistry actinocrinid actinocrinite actinocutitis actinodermatitis actinodielectric actinodrome actinodromous actinoelectric actinoelectrically actinoelectricity actinogonidiate actinogram actinograph actinographic actinography actinoid actinoids actinolite actinolites actinolitic actinologous actinologue actinology actinomere actinomeres actinomeric actinomeris actinometer actinometers actinometric actinometrical actinometricy actinometries actinometry actinomorphic actinomorphies actinomorphous actinomorphy actinomyces actinomycese actinomycesous actinomycestal actinomycetacaea actinomycetal actinomycetales actinomycete actinomycetes actinomycetous actinomycin actinomycins actinomycoma actinomycoses actinomycosis actinomycosistic actinomycotic actinomyxidia actinomyxidian actinon actinoneuritis actinons actinophone actinophonic actinophore actinophorous actinophryan actinopod actinopoda actinopraxis actinopteran actinopterous actinopterygian actinopterygious actinoscopy actinosoma actinosome actinost actinostereoscopy actinostomal actinostome actinotherapeutic actinotherapeutics actinotherapies actinotherapy actinotoxemia actinotrichium actinotrocha actinouranium actinouraniums actinozoa actinozoal actinozoan actinozoon actins actinula actinulae action actionability actionable actionably actional actionary actioned actioner actioners actiones actioning actionist actionists actionize actionized actionizing actionless actions actious actitis actium activable activase activate activated activates activating activation activations activator activators active actively activeness activenesses actives activin activins activism activisms activist activistic activists activital activities activity activize activized activizes activizing actless actomyosin actomyosins acton actons actor actorish actors actorship actory actos actress actresses actressy acts actu actual actualisation actualisations actualise actualised actualises actualising actualism actualist actualistic actualists actualite actualites actualities actuality actualité actualités actualization actualizations actualize actualized actualizes actualizing actually actualness actuals actuarial actuarially actuarian actuaries actuarily actuary actuaryship actuate actuated actuates actuating actuation actuations actuator actuators actuose acture actures acturience actus actutate acuaesthesia acuate acuating acuation acuchi acuclosure acuductor acuerdo acuerdos acuesthesia acuities acuity acular aculea aculeae aculeate aculeated aculei aculeiform aculeolate aculeolus aculeus acumble acumen acumens acuminate acuminated acuminates acuminating acumination acuminations acuminose acuminous acuminulate acupoint acupoints acupress acupressure acupressures acupunctuate acupunctuation acupuncturation acupuncturator acupuncture acupunctured acupunctures acupuncturing acupuncturist acupuncturists acurative acus acusection acusector acushla acushlas acustom acutance acutances acutangular acutate acute acutely acutenaculum acuteness acutenesses acuter acutes acutest acutiator acutifoliate acutilingual acutilobate acutiplantar acutish acutograve acutonodose acutorsion acxoyatl acy acyanoblepsia acyanopsia acyclic acyclically acyclovir acyclovirs acyesis acyetic acyl acylal acylamido acylamidobenzene acylamino acylase acylate acylated acylates acylating acylation acylations acylogen acyloin acyloins acyloxy acyloxymethane acyls acyrological acyrology acystia ad adactyl adactylia adactylism adactylous adactyly adad adage adages adagial adagietto adagiettos adagio adagios adagissimo adagy adalat adalia adalid adam adamance adamances adamancies adamancy adamant adamantean adamantine adamantinoma adamantlies adamantly adamantness adamantoblast adamantoblastoma adamantoid adamantoma adamants adamas adambulacral adamellite adamine adamite adams adamsite adamsites adance adangle adansonia adapa adapid adapin adapt adaptabilities adaptability adaptable adaptableness adaptablenesses adaptably adaptation adaptational adaptationally adaptations adaptative adapted adaptedness adaptednesses adapter adapters adapting adaption adaptional adaptionism adaptions adaptitude adaptive adaptively adaptiveness adaptivenesses adaptivities adaptivity adaptometer adaptor adaptorial adaptors adapts adar adarbitrium adarme adarticulation adat adati adatis adatom adaty adaunt adaw adawe adawed adawing adawlut adawn adaws adaxial aday adays adazzle adc adcon adcons adcraft add adda addability addable addax addaxes addda addebted added addedly addeem addeemed addeeming addeems addend addenda addends addendum addendums adder adderbolt adderfish adders adderspit adderstone adderstones adderwort adderworts addibility addible addice addicent addict addicted addictedness addictednesses addicting addiction addictions addictive addictively addictiveness addictives addicts addiment adding addio addios addis addison addita additament additamentary additaments additiment addition additional additionally additionary additionist additions addititious additive additively additives additivities additivity additory additum additur addle addlebrain addlebrained addled addlehead addleheaded addleheadedly addleheadedness addlement addlements addleness addlepate addlepated addlepatedness addleplot addles addling addlings addlins addn addnl addoom addoomed addooming addooms addorsed addossed addr address addressabilities addressability addressable addressed addressee addressees addresser addressers addresses addressful addressing addressograph addressor addressors addrest adds adduce adduceable adduced adducent adducer adducers adduces adducible adducing adduct adducted adducting adduction adductions adductive adductor adductors adducts addulce ade adead adeem adeemed adeeming adeems adeep adelaide adelantado adelantados adelante adelarthrosomatous adelaster adelges adelgid adelgidae adelie adeling adelite adelocerous adelocodonic adelomorphic adelomorphous adelopod adelphic adelphogamy adelpholite adelphophagy adelphous ademonist adempt adempted ademption ademptions aden adenalgia adenalgy adenanthera adenase adenasthenia adendric adendritic adenectomies adenectomy adenectopia adenectopic adenemphractic adenemphraxis adenia adeniform adenin adenine adenines adenitis adenitises adenium adenization adenoacanthoma adenoblast adenocancroid adenocarcinoma adenocarcinomas adenocarcinomata adenocarcinomatous adenocele adenocellulitis adenochondroma adenochondrosarcoma adenochrome adenocyst adenocystoma adenocystomatous adenodermia adenodiastasis adenodynia adenofibroma adenofibrosis adenogenesis adenogenous adenographer adenographic adenographical adenography adenohypersthenia adenohypophyseal adenohypophyses adenohypophysial adenohypophysis adenoid adenoidal adenoidectomies adenoidectomy adenoidism adenoiditis adenoids adenoliomyofibroma adenolipoma adenolipomatosis adenologaditis adenological adenology adenolymphocele adenolymphoma adenoma adenomalacia adenomas adenomata adenomatoid adenomatome adenomatous adenomegaly adenomeningeal adenometritis adenomycosis adenomyofibroma adenomyoma adenomyosis adenomyxoma adenomyxosarcoma adenoncus adenoneural adenoneure adenopathy adenopharyngeal adenopharyngitis adenophlegmon adenophore adenophoreus adenophorous adenophthalmia adenophyllous adenophyma adenopodous adenosarcoma adenosarcomas adenosarcomata adenosclerosis adenose adenoses adenosine adenosines adenosis adenostemonous adenota adenotome adenotomic adenotomy adenotyphoid adenotyphus adenous adenoviral adenovirus adenoviruses adenyl adenylic adenylpyrophosphate adenyls adephaga adephagan adephagia adephagous adeps adept adepter adeptest adeption adeptly adeptness adeptnesses adepts adeptship adequacies adequacy adequate adequately adequateness adequatenesses adequation adequative adermia adermin adermine adermins adesmy adespota adespoton adessenarian adessive adessives adeste adet adeuism adevism adfected adffroze adffrozen adfiliate adfix adfluxion adfreeze adfreezing adfroze adfrozen adglutinate adh adhaka adhamant adharma adharmas adherant adhere adhered adherence adherences adherency adherend adherends adherent adherently adherents adherer adherers adheres adherescence adherescent adhering adhesion adhesional adhesions adhesive adhesively adhesivemeter adhesiveness adhesivenesses adhesives adhibit adhibited adhibiting adhibition adhibitions adhibits adhocracy adhort adiabat adiabatic adiabatically adiabolist adiactinic adiadochokinesia adiadochokinesis adiadokokinesi adiadokokinesia adiagnostic adiamorphic adiamorphism adiantaceae adiantiform adiantum adiaphanous adiaphanousness adiaphon adiaphonon adiaphora adiaphoral adiaphoresis adiaphoretic adiaphorism adiaphorisms adiaphorist adiaphoristic adiaphorists adiaphorite adiaphoron adiaphorous adiaphory adiapneustia adiate adiated adiathermal adiathermancies adiathermancy adiathermanous adiathermic adiathetic adiating adiation adibasi adicity adience adient adieu adieus adieux adige adighe adight adigranth adinidan adinole adinvention adion adios adipate adipescent adiphenine adipic adipinic adipocele adipocellulose adipocere adipoceres adipoceriform adipocerite adipocerous adipocyte adipocytes adipofibroma adipogenic adipogenous adipoid adipolysis adipolytic adipoma adipomata adipomatous adipometer adiponitrile adipopectic adipopexia adipopexic adipopexis adipose adiposeness adiposenesses adiposes adiposis adiposities adiposity adiposogenital adiposuria adipous adipsia adipsic adipsin adipsins adipsous adipsy adipyl adirondacks adit adital aditi aditio adits aditus aditya adiós adj adjacence adjacencies adjacency adjacent adjacently adjag adject adjection adjectional adjectitious adjectival adjectivally adjective adjectively adjectives adjectivism adjectivitis adjiga adjiger adjoin adjoinant adjoined adjoinedly adjoiner adjoining adjoiningness adjoins adjoint adjoints adjourn adjournal adjourned adjourning adjournment adjournments adjourns adjoust adjt adjudge adjudgeable adjudged adjudgement adjudgements adjudger adjudges adjudging adjudgment adjudgments adjudicata adjudicate adjudicated adjudicates adjudicating adjudication adjudications adjudicative adjudicator adjudicators adjudicatory adjudicature adjugate adjument adjunct adjunction adjunctions adjunctive adjunctively adjunctly adjuncts adjuration adjurations adjuratory adjure adjured adjurer adjurers adjures adjuring adjuror adjurors adjust adjustabilities adjustability adjustable adjustably adjustage adjustation adjusted adjuster adjusters adjusting adjustive adjustment adjustmental adjustments adjustor adjustores adjustoring adjustors adjusts adjutage adjutages adjutancies adjutancy adjutant adjutants adjutantship adjutator adjute adjutor adjutorious adjutory adjutrice adjutrix adjuvancies adjuvancy adjuvant adjuvants adjuvate adland adlands adlay adlegation adlegiare adlerian adless adlet adlumia adlumidin adlumidine adlumin adlumine adm adman admarginate admass admasses admaxillary admeasure admeasured admeasurement admeasurements admeasurer admeasurers admeasures admeasuring admedial admedian admen admensuration admerveylle admetus admi admin adminicle adminicles adminicula adminicular adminiculary adminiculate adminiculated adminiculates adminiculating adminiculation adminiculum administer administerd administered administerial administering administerings administers administrable administrant administrants administrate administrated administrates administrating administration administrational administrationist administrations administrative administratively administrator administrators administratorship administratorships administratress administratrices administratrix administratrixes admins adminstration adminstrations admirabilities admirability admirable admirableness admirablenesses admirably admiral admirals admiralship admiralships admiralties admiralty admirance admirances admiration admirations admirative admiratively admirator admiraunce admiraunces admire admired admiredly admirer admirers admires admiring admiringly admissability admissable admissibilities admissibility admissible admissibleness admissiblenesses admissibly admission admissions admissive admissively admissory admit admits admittable admittance admittances admittatur admitted admittedly admittee admittees admitter admitters admittible admitting admitty admix admixed admixes admixing admixt admixtion admixture admixtures admonish admonished admonisher admonishers admonishes admonishing admonishingly admonishment admonishments admonition admonitioner admonitionist admonitions admonitive admonitively admonitor admonitorial admonitorily admonitors admonitory admonitrix admortization admov admove admrx adnascence adnascent adnate adnation adnations adnephrine adnerval adnescent adneural adnex adnexa adnexal adnexed adnexitis adnexopexy adnominal adnominally adnomination adnoun adnouns adnumber ado adobe adobelike adobes adobo adobos adod adolesce adolesced adolescence adolescences adolescency adolescent adolescently adolescents adolescing adolf adolph adon adonai adonic adonidin adonin adonis adonise adonised adonises adonising adonist adonite adonitol adonize adonized adonizes adonizing adoors adoperate adoperation adopt adoptabilities adoptability adoptable adoptant adoptative adopted adoptedly adoptee adoptees adopter adopters adoptian adoptianism adoptianisms adoptianist adoptianists adopting adoption adoptional adoptionism adoptionisms adoptionist adoptionists adoptions adoptious adoptive adoptively adopts ador adorabilities adorability adorable adorableness adorablenesses adorably adoral adorally adorant adoration adorations adoratory adore adored adorer adorers adores adoring adoringly adorn adornation adorned adorner adorners adorning adorningly adornment adornments adorno adornos adorns adorsed ados adosculation adossed adossee adoulie adown adoxaceous adoxies adoxography adoxy adoze adp adpao adposition adpress adpressed adpresses adpressing adpromission adpromissor adps adrad adradial adradially adradius adread adreaded adreading adreads adream adreamed adreamt adrectal adred adrenal adrenalcortical adrenalectomies adrenalectomize adrenalectomized adrenalectomizing adrenalectomy adrenalin adrenaline adrenalines adrenalins adrenalize adrenalized adrenalizes adrenalizing adrenally adrenalone adrenals adrenarche adrench adrenergic adrenergically adrenin adrenine adrenitis adreno adrenochrome adrenochromes adrenocortical adrenocorticosteroid adrenocorticosteroids adrenocorticotrophic adrenocorticotrophin adrenocorticotrophins adrenocorticotropic adrenocorticotropin adrenocorticotropins adrenoleukodystrophies adrenoleukodystrophy adrenolysis adrenolytic adrenolytics adrenomedullary adrenosterone adrenotrophin adrenotropic adrent adret adriamycin adriamycins adrianople adrianopolis adriatic adrift adrip adrogate adroit adroiter adroitest adroitly adroitness adroitnesses adroop adrop adrostal adrostral adrowse adrue adry ads adsbud adscendent adscititious adscititiously adscript adscripted adscription adscriptions adscriptitious adscriptitius adscriptive adscripts adsessor adsheart adsignification adsignify adsmith adsmithing adsorb adsorbabilities adsorbability adsorbable adsorbate adsorbates adsorbed adsorbent adsorbents adsorber adsorbers adsorbing adsorbs adsorption adsorptions adsorptive adsorptively adsorptiveness adspiration adstipulate adstipulated adstipulating adstipulation adstipulator adstrict adstringe adsuki adsum adterminal adtevac aduana adular adularescence adularescent adularia adularias adulate adulated adulates adulating adulation adulations adulator adulators adulatory adulatress adulce adullamite adult adulter adulterant adulterants adulterate adulterated adulterately adulterateness adulterates adulterating adulteration adulterations adulterator adulterators adulterer adulterers adulteress adulteresses adulteries adulterine adulterines adulterise adulterised adulterises adulterising adulterize adulterized adulterizes adulterizing adulterous adulterously adulterousness adultery adulthood adulthoods adulticidal adulticide adultlike adultly adultness adultnesses adultoid adultress adults adumbral adumbrant adumbrate adumbrated adumbrates adumbrating adumbration adumbrations adumbrative adumbratively adumbrellar adunation adunc aduncate aduncated aduncities aduncity aduncous adure adurent adusk adust adusted adusting adustion adustiosis adustive adusts adv advance advanceable advanced advancedness advanceman advancemen advancement advancements advancer advancers advances advancing advancingly advancive advantage advantageable advantaged advantageous advantageously advantageousness advantageousnesses advantages advantaging advect advected advecting advection advections advectitious advective advects advehent advena advenae advene advened advenes advenience advenient advening advent advential adventism adventist adventists adventitia adventitial adventitias adventitious adventitiously adventitiousness adventitiousnesses adventive adventively adventives adventry advents adventual adventure adventured adventureful adventurement adventurer adventurers adventures adventureship adventuresome adventuresomely adventuresomeness adventuresomenesses adventuresomes adventuress adventuresses adventuring adventurish adventurism adventurisms adventurist adventuristic adventurists adventurous adventurously adventurousness adventurousnesses adverb adverbial adverbialise adverbialised adverbialises adverbialising adverbiality adverbialize adverbialized adverbializes adverbializing adverbially adverbials adverbiation adverbless adverbs adversa adversant adversaria adversarial adversarially adversaries adversariness adversarinesses adversarious adversary adversative adversatively adversatives adverse adversed adversely adverseness adversenesses adverser adversest adversifoliate adversifolious adversing adversion adversities adversity adversive adversus advert adverted advertence advertences advertencies advertency advertent advertently adverting advertisable advertise advertised advertisee advertisement advertisements advertiser advertisers advertises advertising advertisings advertizable advertizer advertorial advertorials adverts advew advewed advewing advews advice adviceful advices advil advisabilities advisability advisable advisableness advisablenesses advisably advisal advisatory advise advised advisedly advisedness advisednesses advisee advisees advisement advisements adviser advisers advisership adviserships advises advising advisings advisive advisiveness adviso advisor advisorate advisorates advisories advisorily advisors advisory advisy advitant advocaat advocaats advocacies advocacy advocate advocated advocates advocateship advocatess advocating advocation advocations advocative advocator advocators advocatory advocatress advocatrice advocatrix advoke advolution advoteresse advoutrer advoutrers advoutries advoutry advowee advowry advowsance advowson advowsons advoyer advt adward adwarded adwarding adwards adware adwesch adwoman adwomen ady adynamia adynamias adynamic adynamy adyta adyton adytta adytum adz adze adzed adzer adzes adzing adzooks adzuki adzukis ae aec aechmea aechmeas aecia aecial aecidia aecidial aecidioform aecidiospore aecidiospores aecidiostage aecidium aeciospore aeciospores aeciostage aeciotelia aecioteliospore aeciotelium aecium aedeagal aedeagi aedeagus aedegi aedes aedicula aediculae aedicule aedile aediles aedileship aedileships aedilian aedilic aedilitian aedilities aedility aedine aedoeagi aedoeagus aedoeology aefald aefaldness aefaldy aefauld aegagri aegagropila aegagropilae aegagropile aegagropiles aegagrus aegean aegemony aeger aegerian aegeriid aegiceras aegicrania aegilops aegina aegir aegirine aegirines aegirinolite aegirite aegirites aegis aegises aegisthus aegithognathism aegithognathous aeglogue aeglogues aegophony aegospotami aegospotamos aegritude aegrotant aegrotat aegrotats aegypiidae aegypius aegyptilla aegyptopithecus aegyrite aeipathy aelodicon aeluroid aelurophobe aelurophobia aeluropodous aemule aemuled aemules aemuling aenach aenean aeneas aeneid aeneolithic aeneous aeneus aengus aenigma aenigmatite aeolharmonica aeolia aeolian aeolic aeolid aeolight aeolina aeoline aeolipile aeolipiles aeolipyle aeolipyles aeolis aeolist aeolistic aeolodicon aeolodion aeolomelodicon aeolopantalon aeolotropic aeolotropies aeolotropism aeolotropy aeolsklavier aeolus aeon aeonial aeonian aeonic aeonicaeonist aeonism aeonisms aeonist aeonium aeons aepyceros aepyornidae aepyorniformes aepyornis aepyornises aeq aequor aequoreal aequorin aequorins aer aerage aeraria aerarian aerarium aerate aerated aerates aerating aeration aerations aerator aerators aerenchyma aerenchymas aerenchymata aerenchymatous aerenterectasia aerial aerialist aerialists aerialities aeriality aerially aerialness aerials aeric aerical aerides aerie aeried aerier aeries aeriest aerifaction aeriferous aerification aerified aerifies aeriform aerify aerifying aerily aeriness aero aeroacoustic aerobacter aerobacteriological aerobacteriologically aerobacteriologist aerobacteriology aerobacters aeroballistic aeroballistics aerobat aerobate aerobated aerobatic aerobatics aerobating aerobats aerobe aerobee aerobes aerobia aerobian aerobic aerobically aerobicize aerobicized aerobicizes aerobicizing aerobics aerobiologic aerobiological aerobiologically aerobiologies aerobiologist aerobiologists aerobiology aerobion aerobiont aerobionts aerobioscope aerobioses aerobiosis aerobiotic aerobiotically aerobious aerobium aeroboat aerobomb aerobombs aerobrake aerobraked aerobrakes aerobraking aerobrakings aerobranchiate aerobus aerobuses aerobusses aerocamera aerocar aerocartograph aerocartography aerocolpos aerocraft aeroculture aerocultures aerocurve aerocyst aerodart aerodarts aerodermectasia aerodone aerodonetic aerodonetics aerodontalgia aerodontia aerodontic aerodrome aerodromes aerodromics aeroduct aeroducts aerodynamic aerodynamical aerodynamically aerodynamicist aerodynamicists aerodynamics aerodyne aerodynes aeroelastic aeroelastician aeroelasticians aeroelasticities aeroelasticity aeroelastics aeroembolism aeroembolisms aeroenterectasia aerofoil aerofoils aerogel aerogels aerogen aerogene aerogenerator aerogenerators aerogenes aerogenesis aerogenic aerogenically aerogenous aerogeography aerogeologist aerogeology aerognosy aerogram aerogramme aerogrammes aerograms aerograph aerographer aerographers aerographic aerographical aerographics aerographies aerographs aerography aerogun aerohydrodynamic aerohydropathy aerohydroplane aerohydroplanes aerohydrotherapy aerohydrous aeroides aerolite aerolites aerolith aerolithologies aerolithology aeroliths aerolitic aerolitics aerologic aerological aerologies aerologist aerologists aerology aerolytic aeromaechanic aeromagnetic aeromagnetically aeromagnetics aeromancer aeromancies aeromancy aeromantic aeromarine aeromechanic aeromechanical aeromechanically aeromechanics aeromedical aeromedicine aeromedicines aerometeorograph aerometeorographs aerometer aerometers aerometric aerometries aerometry aeromotor aeromotors aeron aeronat aeronaut aeronautic aeronautical aeronautically aeronautics aeronautism aeronauts aeronef aeroneuroses aeroneurosis aeronomer aeronomers aeronomic aeronomical aeronomics aeronomies aeronomist aeronomists aeronomy aeropathy aeropause aeropauses aeroperitoneum aeroperitonia aerophagia aerophagias aerophagist aerophagy aerophane aerophilatelic aerophilatelist aerophilately aerophile aerophilia aerophilic aerophilous aerophobe aerophobes aerophobia aerophobias aerophobic aerophone aerophones aerophor aerophore aerophores aerophoto aerophotography aerophotos aerophysical aerophysicist aerophysics aerophyte aerophytes aeroplane aeroplaner aeroplanes aeroplanist aeroplankton aeroplanktons aeropleustic aeroponics aeroporotomy aeropulse aeros aerosat aerosats aeroscepsis aeroscepsy aeroscope aeroscopic aeroscopically aeroscopy aerose aeroshell aeroshells aerosiderite aerosiderites aerosiderolite aerosinusitis aerosol aerosolization aerosolizations aerosolize aerosolized aerosolizes aerosolizing aerosols aerospace aerospaces aerosphere aerospheres aerosporin aerostat aerostatic aerostatical aerostatics aerostation aerostations aerostats aerosteam aerotactic aerotaxes aerotaxis aerotechnical aerotechnics aerotherapeutics aerotherapy aerothermodynamic aerothermodynamics aerotone aerotones aerotonometer aerotonometric aerotonometry aerotow aerotrain aerotrains aerotropic aerotropism aerotropisms aeroview aeroyacht aertex aeruginous aerugo aerugos aery aes aesc aesces aeschylean aeschylus aeschynanthus aeschynite aeschynomenous aesculaceous aesculapian aesculapius aesculetin aesculin aesculins aesculus aesir aesop aesopian aestethic aestheses aesthesia aesthesias aesthesics aesthesiogen aesthesiogenic aesthesiogens aesthesis aesthesodic aesthete aesthetes aesthetic aesthetical aesthetically aesthetician aestheticians aestheticise aestheticised aestheticises aestheticising aestheticism aestheticisms aestheticist aestheticists aestheticize aestheticized aestheticizes aestheticizing aesthetics aesthiology aesthophysiology aestival aestivate aestivated aestivates aestivating aestivation aestivations aestivator aestive aestuary aestuate aestuation aestuous aesture aestus aet aetat aethalia aethalioid aethalium aetheling aetheogam aetheogamic aetheogamous aether aethereal aethered aetheric aethers aethionema aethogen aethon aethrioscope aethrioscopes aethusa aetiogenic aetiologic aetiological aetiologically aetiologist aetiologue aetiology aetiophyllin aetiotropic aetiotropically aetites aetobatus aetosaur aetosaurian aettekees aevia aeviternal aevum af aface afaced afacing afaint afald afar afara afaras afars afawld afb afd afdecho afear afeard afeared afearing afears afebrile afer afernan afetal aff affa affabilities affability affable affableness affabler affablest affably affabrous affair affaire affaires affairs affaite affamish affatuate affear affeard affeare affeared affeares affearing affears affect affectabilities affectability affectable affectate affectation affectationist affectations affected affectedly affectedness affectednesses affecter affecters affectibility affectible affecting affectingly affection affectional affectionally affectionate affectionately affectionateness affectionatenesses affectioned affectioning affectionless affections affectious affective affectively affectiveness affectivities affectivity affectless affectlessly affectlessness affectlessnesses affector affects affectual affectum affectuous affectus affeeble affeer affeered affeerer affeering affeerment affeerments affeeror affeers affeir affenpinscher affenpinschers affenspalte affere afferent afferently afferents affettuoso affettuosos affiance affianced affiancer affiances affiancing affiant affiants affich affiche affiches afficionado afficionados affidare affidation affidavit affidavits affidavy affied affies affile affiliable affiliate affiliated affiliates affiliating affiliation affiliations affiliative affinage affinal affination affine affined affinely affines affing affinitative affinitatively affinite affinities affinition affinitive affinity affirm affirmable affirmably affirmance affirmances affirmant affirmants affirmation affirmations affirmative affirmatively affirmativeness affirmatives affirmatory affirmed affirmer affirmers affirming affirmingly affirmly affirms affix affixable affixal affixation affixations affixed affixer affixers affixes affixial affixing affixion affixment affixments affixt affixture afflate afflated afflation afflations afflatus afflatuses afflict afflicted afflictedness afflicter afflicters afflicting afflictingly afflictings affliction afflictionless afflictions afflictive afflictively afflicts affloof afflue affluence affluences affluencies affluency affluent affluently affluentness affluentnesses affluents affluenza affluenzas afflux affluxes affluxion affluxions affodill affoord affoorded affoording affoords afforce afforced afforcement afforcements afforces afforcing afford affordabilities affordability affordable affordably afforded affording affords afforest afforestable afforestation afforestational afforestations afforested afforesting afforestment afforests afformative affranchise affranchised affranchisement affranchisements affranchises affranchising affrap affrapped affrapping affraps affray affrayed affrayer affrayers affraying affrays affreight affreighter affreightment affreightments affrended affret affrets affrettando affreux affricate affricated affricates affrication affrications affricative affricatives affriended affright affrighted affrightedly affrighten affrightened affrightening affrightens affrighter affrightful affrightfully affrighting affrightingly affrightment affrightments affrights affront affronta affronte affronted affrontedly affrontedness affrontee affronter affronting affrontingly affrontingness affrontings affrontive affrontiveness affrontment affronts affronty affronté affrontée afft affuse affusedaffusing affusion affusions affy affydavy affyde affying afghan afghanets afghani afghanis afghanistan afghanistani afghans afgod afibrinogenemia aficionada aficionadas aficionado aficionados afield afikomen afikomens afire aflagellar aflaj aflame aflare aflat aflatoxin aflatoxins aflatus aflaunt aflaxen afley aflicker aflight afloat aflow aflower afluking aflush aflutter afoam afocal afoot afore aforegoing aforehand aforementioned aforenamed aforesaid aforethought aforethoughts aforetime aforetimes aforeward afortiori afoul afounde afp afraid afraidness aframomum afrasian afray afreet afreets afresca afresh afret afrete africa african africander africanist africans afright afrikaans afrikander afrikaner afrit afrite afrits afro afroasiatic afrocarpus afront afropavo afrormosia afrormosias afros afrown aft aftaba after afteract afterage afterall afterattack afterband afterbay afterbeat afterbirth afterbirths afterblow afterbodies afterbody afterbrain afterbreach afterbreast afterburner afterburners afterburning afterburnings aftercare aftercareer aftercares aftercast aftercataract aftercause afterchance afterchrome afterchurch afterclap afterclaps afterclause aftercome aftercomer aftercoming aftercooler aftercost aftercourse aftercrop aftercure afterdamp afterdamps afterdate afterdated afterdays afterdeal afterdeath afterdeck afterdecks afterdinner afterdischarge afterdrain afterdrops aftereffect aftereffects afterend aftereye aftereyed aftereyeing aftereyes aftereying afterfall afterfame afterfeed afterfermentation afterform afterfriend afterfruits afterfuture aftergame aftergames aftergas afterglide afterglow afterglows aftergo aftergood aftergrass aftergrasses aftergrave aftergrief aftergrind aftergrowth aftergrowths afterguard afterguns afterhand afterharm afterhatch afterheat afterheats afterhelp afterhend afterhold afterhope afterhours afterimage afterimages afterimpression afterings afterking afterknowledge afterlife afterlifes afterlifetime afterlight afterlives afterloss afterlove aftermark aftermarket aftermarkets aftermarriage aftermass aftermast aftermath aftermaths aftermatter aftermeal aftermilk aftermost afternight afternoon afternoons afternose afternote afteroar afterpain afterpains afterpart afterpast afterpeak afterpiece afterpieces afterplanting afterplay afterpotential afterpressure afterproof afterrake afterreckoning afterrider afterripening afterroll afters aftersales afterschool aftersend aftersensation aftersensations aftershaft aftershafted aftershafts aftershave aftershaves aftershine aftership aftershock aftershocks aftersong aftersound afterspeech afterspring afterstain afterstate afterstorm afterstrain afterstretch afterstudy aftersupper aftersuppers afterswarm afterswarming afterswarms afterswell aftertan aftertask aftertaste aftertastes aftertax afterthinker afterthought afterthoughted afterthoughts afterthrift aftertime aftertimes aftertouch aftertreatment aftertrial afterturn aftervision afterwale afterwar afterward afterwards afterwash afterwhile afterwisdom afterwise afterwit afterwitted afterword afterwords afterwork afterworking afterworld afterworlds afterwort afterwrath afterwrist afteryears aftmost aftosa aftosas aftward aftwards afunction afunctional afwillite ag aga agabanee agacant agacante agacella agacerie agad agada agadic again againbuy againsay against againstand againward agal agalactia agalactias agalactic agalactosis agalactous agalawood agalaxia agalaxy agalite agalloch agallochs agallochum agallop agalma agalmatolite agalmatolites agalwood agalwoods agama agamas agamemnon agamete agametes agami agamian agamic agamically agamid agamidae agamids agamies agamis agamist agammaglobulinemia agammaglobulinemias agammaglobulinemic agamobia agamobium agamogeneses agamogenesis agamogenetic agamogenetically agamogony agamoid agamoids agamont agamospermies agamospermy agamospore agamous agamy aganglionic aganippe agapae agapai agapanthus agapanthuses agape agapeic agapeically agapes agapetae agapeti agapetid agaphite agapornis agar agaric agaricaceae agaricaceous agaricales agaricic agariciform agaricin agaricine agaricinic agaricoid agarics agaricus agarita agaroid agarose agaroses agars agarwal agas agasp agast agastache agastric agastroneuria agata agate agatelike agates agateware agatewares agathin agathis agathism agathist agathodaemon agathodaemonic agathodaimon agathodemon agathokakological agathology agatiferous agatiform agatine agatise agatises agatize agatized agatizes agatizing agatoid agaty agavaceae agave agaves agavose agaze agazed agaçant agaçante agba agcy agdistis age ageable aged agedly agedness agednesses agee ageing ageings ageism ageisms ageist ageists agelaius agelast agelastic agelasts ageless agelessly agelessness agelessnesses agelong agemate agemates agen agencies agency agend agenda agendaless agendas agendum agendums agene agenes ageneses agenesia agenesias agenesic agenesis agenetic agenise agenize agenized agenizes agenizing agennesis agennetic agent agented agentess agential agenting agentings agentival agentive agentives agentivities agentivity agentries agentry agents agentship ageometrical ager agerasia ageratina ageratum ageratums agers ages aget agete ageusia ageusic ageustia aggada aggadah aggadahs aggadic aggadot aggelation aggenerate agger aggerate aggeration aggerose aggers aggest aggie aggies aggiornamenti aggiornamento aggiornamentos agglomerant agglomerate agglomerated agglomerates agglomeratic agglomerating agglomeration agglomerations agglomerative agglomerator agglomerators agglutinabilities agglutinability agglutinable agglutinant agglutinants agglutinate agglutinated agglutinates agglutinating agglutination agglutinationist agglutinations agglutinative agglutinatively agglutinator agglutinin agglutinins agglutinize agglutinogen agglutinogenic agglutinogens agglutinoid agglutinoscope agglutogenic aggrace aggraced aggraces aggracing aggradation aggradational aggradations aggrade aggraded aggrades aggrading aggrammatism aggrandisable aggrandise aggrandised aggrandisement aggrandisements aggrandiser aggrandisers aggrandises aggrandising aggrandizable aggrandize aggrandized aggrandizement aggrandizements aggrandizer aggrandizers aggrandizes aggrandizing aggrate aggrated aggrates aggrating aggravable aggravate aggravated aggravates aggravating aggravatingly aggravation aggravations aggravative aggravator aggravators aggregable aggregant aggregate aggregated aggregately aggregateness aggregatenesses aggregates aggregating aggregation aggregational aggregations aggregative aggregatively aggregator aggregators aggregatory aggrege aggress aggressed aggresses aggressing aggression aggressionist aggressions aggressive aggressively aggressiveness aggressivenesses aggressivities aggressivity aggressor aggressors aggri aggrievance aggrieve aggrieved aggrievedly aggrievedness aggrievednesses aggrievement aggrievements aggrieves aggrieving aggro aggros aggroup aggroupment aggry aggur agha aghan aghanee aghas aghast aghastness agible agila agilas agilawood agile agilely agileness agilenesses agiler agilest agilities agility agillawood agilmente agin agincourt aging agings aginner aginners agio agios agiotage agiotages agism agisms agist agistator agisted agister agisters agisting agistment agistments agistor agistors agists agit agita agitability agitable agitant agitas agitate agitated agitatedly agitates agitating agitation agitational agitationist agitations agitative agitato agitator agitatorial agitators agitatrix agitpop agitprop agitpropist agitprops agitpunkt agkistrodon agla aglaia aglance aglaomorpha aglaonema aglaozonia aglare agleaf agleam aglee aglet aglethead aglets agley aglimmer aglint aglisten aglitter aglobulia aglobulism agloo agloos aglossal aglossate aglossia aglossias aglow aglu aglucon aglucone aglus aglutition agly aglycon aglycone aglycones aglycons aglycosuric aglyphodont aglyphous agma agmas agmatine agmatology agminate agminated agnail agnails agname agnamed agnames agnat agnate agnates agnatha agnathan agnathia agnathic agnathostomatous agnathous agnatic agnatical agnatically agnation agnations agnean agneau agneaux agnel agni agnification agnise agnised agnises agnising agnition agnize agnized agnizes agnizing agnoiology agnoites agnomen agnomens agnomical agnomina agnominal agnomination agnosia agnosias agnosis agnostic agnostical agnostically agnosticism agnosticisms agnostics agnosy agnus agnuses ago agog agoge agoges agogic agogics agoho agoing agomensin agomphiasis agomphious agomphosis agon agonadal agonal agone agones agonia agoniada agoniadin agoniatite agonic agonidae agonied agonies agonise agonised agonisedly agoniser agonises agonising agonisingly agonist agonistarch agonistes agonistic agonistical agonistically agonistics agonists agonium agonize agonized agonizedly agonizer agonizes agonizing agonizingly agonizingness agonothet agonothete agonothetes agonothetic agons agonus agony agood agora agorae agoramania agoranome agoranomus agoraphobe agoraphobes agoraphobia agoraphobiac agoraphobias agoraphobic agoraphobics agoras agorot agoroth agos agostadero agouara agouta agoutas agouti agouties agoutis agouty agpaite agpaitic agr agraation agraations agrace agrafe agrafes agraffe agraffee agraffes agraga agragas agrah agral agramed agrament agraments agrammaphasia agrammatica agrammatical agrammatism agrammatologia agranulocyte agranulocytes agranulocytic agranulocytoses agranulocytosis agranuloplastic agranuloses agranulosis agrapha agraphia agraphias agraphic agraphon agraria agrarian agrarianise agrarianism agrarianisms agrarianize agrarianly agrarians agraste agravic agre agreat agreation agreations agree agreeabilities agreeability agreeable agreeableness agreeablenesses agreeably agreed agreeing agreeingly agreement agreements agreer agreers agrees agregation agregations agrege agreges agreing agremens agrement agrements agrest agrestal agrestial agrestian agrestic agrestical agrestis agria agrias agribusiness agribusinesses agribusinessman agribusinessmen agric agricere agrichemical agrichemicals agricide agricides agricole agricolist agricolite agricolous agricultor agricultural agriculturalist agriculturalists agriculturally agriculture agriculturer agricultures agriculturist agriculturists agrief agrimonia agrimonies agrimony agrimotor agrin agriocharis agriological agriologies agriologist agriology agrionid agriot agriotype agrippa agriproduct agriproducts agrise agrised agrises agrising agrito agritos agrize agrized agrizes agrizing agroan agrobacterium agrobiologic agrobiological agrobiologically agrobiologies agrobiologist agrobiologists agrobiology agrobusiness agrobusinesses agrochemical agrochemicals agrodolce agroforester agroforesters agroforestries agroforestry agrogeological agrogeologically agrogeology agroindustrial agroindustries agroindustry agrologic agrological agrologically agrologies agrologist agrologists agrology agrom agromania agromyzid agron agronome agronomial agronomic agronomical agronomically agronomics agronomies agronomist agronomists agronomy agroof agrope agropyron agrostemma agrosteral agrosterol agrostis agrostographer agrostographic agrostographical agrostographies agrostography agrostologic agrostological agrostologies agrostologist agrostologists agrostology agrote agrotechny agrotype aground agrufe agruif agrypnia agrypniai agrypnias agrypnode agrypnotic agryze agryzed agryzes agryzing agrégation agrégations agrégé agrégés agrémens agrément agréments ags agsam agst agt agtbasic agua aguacate aguacates aguada aguador aguaji aguamas aguamiel aguara aguardiente aguardientes aguavina ague agued aguelike agueproof agues agueweed agueweeds aguey aguglia aguilarite aguilawood aguilt aguinaldo aguinaldos aguirage aguise aguised aguises aguish aguishly aguishness aguishnesses aguising aguize aguized aguizes aguizing agujon agunah agura aguroth agush agust aguti agutis agy agyiomania agynarious agynary agynic agynous agyrate agyria agyrophobia ah aha ahaaina ahab ahamkara ahankara ahartalav ahas ahaunch ahchoo ahead aheap ahed aheight ahem ahems ahent ahey ahh ahhed ahhing ahhs ahi ahigh ahimsa ahimsas ahind ahing ahint ahistoric ahistorical ahluwalia ahmadi ahmedi aho ahold aholds aholt ahong ahorse ahorseback ahoy ahoys ahriman ahs ahsan ahu ahuaca ahuatle ahuehuete ahull ahum ahungered ahungry ahunt ahura ahurewa ahush ahuula ahwal ahypnia ai aia aias aiblins aichmophobia aichmophobias aid aidable aidance aidances aidant aide aided aider aiders aides aidful aiding aidless aidman aidmanmen aidmen aidoneus aidos aids aiel aieries aiery aiger aigialosaur aiglet aiglets aiglette aigre aigremore aigret aigrets aigrette aigrettes aiguelle aiguellette aiguiere aiguilette aiguille aiguilles aiguillesque aiguillette aiguilletted aiguillettes aik aikane aikido aikidos aikinite aikona aikuchi ail ailantery ailanthic ailanthus ailanthuses ailantine ailanto ailantos aile ailed aileron ailerons ailette ailettes ailing aillt ailment ailments ailourophile ailourophiles ailourophilia ailourophilias ailourophilic ailourophobe ailourophobes ailourophobia ailourophobias ailourophobic ails ailsyte ailuro ailuroid ailuromania ailurophile ailurophiles ailurophilia ailurophilias ailurophilic ailurophobe ailurophobes ailurophobia ailurophobias ailurophobic ailuropoda ailuropodidae ailurus ailweed aim aimable aimak aimara aimed aimer aimers aimful aimfully aiming aimless aimlessly aimlessness aimlessnesses aims aimworthiness ain aina ainaleh ainas aine ainee ainhum ainoi ains ainsell ainsells aint ainu ainus aioli aiolis aion aionial air airable airampo airan airbag airbags airbase airbases airbed airbeds airbill airbills airboat airboats airborn airborne airbound airbrained airbrake airbrasive airbrick airbrush airbrushed airbrushes airbrushing airburst airbursts airbus airbuses airbusses aircheck airchecks aircoach aircoaches aircondition airconditioned airconditioning airconditions aircraft aircraftman aircraftmen aircrafts aircraftsman aircraftsmen aircraftswoman aircraftswomen aircraftwoman aircraftwomen aircrew aircrewman aircrewmen aircrews airdate airdates airdock airdrawn airdrome airdromes airdrop airdropped airdropping airdrops aire aired airedale airedales airer airers airest airfare airfares airfield airfields airflow airflows airfoil airfoils airforce airframe airframes airfreight airfreighted airfreighter airfreighting airfreights airgap airgaps airgel airglow airglows airgraph airgraphics airgraphs airgun airguns airhead airheaded airheads airhole airholes airier airiest airiferous airified airify airily airiness airinesses airing airings airish airless airlessly airlessness airlessnesses airletter airletters airlift airlifted airlifting airlifts airlight airlike airline airliner airliners airlines airling airlock airlocks airmail airmailed airmailing airmails airman airmanship airmanships airmark airmarker airmass airmen airmobile airmonger airn airned airning airns airohydrogen airometer airpack airpacks airpark airparks airphobia airplane airplaned airplaner airplanes airplaning airplanist airplay airplays airplot airport airports airpost airposts airpower airpowers airproof airproofed airproofing airproofs airs airscape airscapes airscrew airscrews airshaft airshafts airshed airsheds airsheet airship airships airshot airshots airshow airshows airsick airsickness airsicknesses airside airsides airsome airspace airspaces airspeed airspeeds airstop airstops airstream airstreams airstrike airstrikes airstrip airstrips airt airted airth airthed airthing airths airtight airtightly airtightness airtightnesses airtime airtimes airting airts airview airward airwards airwash airwave airwaves airway airwaybill airwayman airways airwise airwoman airwomen airworthier airworthiest airworthiness airworthinesses airworthy airy ais aischrolatreia aiseweed aisle aisled aisleless aisles aisleway aisleways aisling aislings aisteoir aistopod ait aitch aitchbone aitchbones aitches aitchless aitchpiece aitesis aith aithochroi aitiology aition aitiotropic aitis aits aitu aitus aiver aivers aivr aiwain aiwan aix aizle aizles aizoaceae aizoaceous ajaia ajaja ajangle ajar ajari ajava ajax ajee ajenjo ajhar ajimez ajitter ajiva ajivas ajivika ajog ajoint ajonjoli ajoure ajourise ajowan ajowans ajuga ajugas ajutage ajutages ajutment ajwan ajwans ak aka akaakai akaba akala akalimba akamai akamatsu akan akaroa akaryocyte akaryote akaryotes akasa akasha akazga akazgin akazgine akcheh ake akeake akebi aked akedah akee akees akehorne akeki akela akelas akeley akemboll akenbold akene akenes akenobeite akepiro akepiros aker akeridae akerite akes aketon akey akha akhara akhoond akhrot akhund akhundzada akhyana akia akimbo akin akindle akineses akinesia akinesias akinesic akinesis akinete akinetic aking akkadian akkas akmite akmudar akmuddar aknee aknow ako akoasm akoasma akolouthia akolouthos akolouthoses akoluthia akoluthos akoluthoses akonge akov akpek akra akrasia akrasias akratic akre akroasis akrochordite akron akroter akroteria akroterial akroterion akrteria aktiebolag aku akuammin akuammine akule akund akvavit akvavits al ala alaap alaaps alabama alabaman alabamian alabamians alabamide alabamine alabamines alabandine alabandines alabandite alabandites alabarch alabaster alabasters alabastoi alabastos alabastra alabastrian alabastrine alabastrites alabastron alabastrons alabastrum alabastrums alablaster alablasters alacha alachah alack alackaday alacks alacran alacreatine alacreatinin alacreatinine alacridus alacrify alacrious alacriously alacrities alacritous alacrity alada aladdin alae alagao alagarto alagau alahee alai alaihi alaiment alaiments alaite alala alalagmoi alalagmos alalia alalias alalite alaloi alalonga alalunga alalus alambique alameda alamedas alamiqui alamire alamo alamodality alamode alamodes alamonti alamort alamos alamosite alamoth alan aland alands alane alang alange alangin alangine alangs alani alanin alanine alanines alanins alannah alannahs alans alant alantic alantin alantol alantolactone alantolic alants alanui alanuis alanyl alanyls alap alapa alapas alaps alar alares alarge alarm alarmable alarmclock alarmed alarmedly alarming alarmingly alarmingness alarmism alarmisms alarmist alarmists alarms alarum alarumed alaruming alarums alary alas alasas alases alaska alaskaite alaskan alaskans alaskas alaskite alastor alastors alastrim alastrims alate alated alatern alaternus alates alation alations alauda alaudidae alaudine alaund alaunt alay alayed alaying alays alazor alb alba albacea albacora albacore albacores albahaca alban albania albanian albanians albanite albany albarco albardine albarelli albarello albarellos albarium albas albaspidin albata albatas albation albatrellus albatross albatrosses albe albedo albedoes albedograph albedometer albedos albee albeit alberca albergatrice alberge alberghi albergo alberich albert alberta albertin albertite albertites alberts alberttype albertustaler albertype albescence albescences albescent albespine albespines albespyne albespynes albeston albetad albicans albicant albication albicore albicores albiculi albification albificative albified albiflorous albify albifying albigenses albin albinal albines albiness albinesses albinic albinism albinisms albinistic albino albinoism albinoisms albinos albinotic albinuria albion albite albites albitic albitical albitise albitised albitises albitising albitite albitization albitize albitized albitizes albitizing albitophyre albizia albizias albizzia albizzias albocarbon albocinereous albocracy albolite albolith albopannin albopruinose alborada alborak alboranite albricias albronze albs albuca albuginaceae albuginea albugineous albugines albuginitis albugo albugos albula albulidae album albumean albumen albumeniizer albumenisation albumenise albumenised albumeniser albumenises albumenising albumenization albumenize albumenized albumenizer albumenizes albumenizing albumenoid albumens albumimeter albumin albuminate albuminates albuminaturia albuminiferous albuminiform albuminimeter albuminimetry albuminiparous albuminisation albuminise albuminised albuminises albuminising albuminization albuminize albuminized albuminizes albuminizing albuminocholia albuminofibrin albuminogenous albuminoid albuminoidal albuminoids albuminolysis albuminometer albuminometry albuminone albuminorrhea albuminoscope albuminose albuminosis albuminous albuminousness albumins albuminuria albuminurias albuminuric albuminurophobia albumoid albumoscope albumose albumoses albumosuria albums albuquerque alburn alburnous alburnum alburnums albus albutannin albuterol alc alca alcabala alcade alcades alcaeus alcahest alcahests alcaic alcaiceria alcaicerias alcaicería alcaicerías alcaics alcaid alcaide alcaides alcalde alcaldes alcaldeship alcaldia alcalescent alcali alcaligenes alcalizate alcamine alcanna alcantara alcapton alcaptonuria alcargen alcarraza alcarrazas alcatras alcatrases alcavala alcayde alcaydes alcazaba alcazar alcazars alcazava alce alcea alcedinidae alcedo alcelaphine alcelaphus alces alcestis alchem alchemic alchemical alchemically alchemies alchemise alchemised alchemises alchemising alchemist alchemister alchemistic alchemistical alchemistry alchemists alchemize alchemized alchemizes alchemizing alchemy alchera alcheras alcheringa alcheringas alchimy alchitran alchochoden alchornea alchymies alchymy alcibiades alcid alcidae alcides alcidine alcids alcine alclad alcmene alco alcoate alcogel alcogene alcohate alcohol alcoholate alcoholature alcoholdom alcoholemia alcoholic alcoholically alcoholicities alcoholicity alcoholics alcoholimeter alcoholisable alcoholisation alcoholisations alcoholise alcoholised alcoholises alcoholising alcoholism alcoholisms alcoholist alcoholizable alcoholization alcoholizations alcoholize alcoholized alcoholizes alcoholizing alcoholmeter alcoholmetric alcoholomania alcoholometer alcoholometers alcoholometric alcoholometrical alcoholometries alcoholometry alcoholophilia alcohols alcoholuria alcoholysis alcoholytic alconde alcoothionic alcopop alcopops alcoran alcornoco alcornoque alcorza alcorzas alcosol alcove alcoved alcoves alcovinometer alcumy alcyon alcyonacea alcyonacean alcyonaria alcyonarian alcyonarians alcyone alcyonic alcyoniform alcyonium alcyonoid alcázar alcázars ald aldactone aldamin aldamine aldane alday aldazin aldazine aldea aldeament aldebaran aldebaranium aldehol aldehydase aldehyde aldehydes aldehydic aldehydine aldehydrol aldeia alden alder alderflies alderfly alderliefest alderling alderman aldermanate aldermancies aldermancy aldermaness aldermanic aldermanical aldermanities aldermanity aldermanlike aldermanly aldermanries aldermanry aldermanship aldermanships aldermen aldern alders alderwoman alderwomen aldicarb aldicarbs aldide aldim aldime aldimin aldimine aldine alditol aldm aldoheptose aldohexose aldohexoses aldoketene aldol aldolase aldolases aldolization aldolizations aldolize aldolized aldolizing aldols aldomet aldononose aldopentose aldopentoses aldose aldoses aldoside aldosterone aldosterones aldosteronism aldosteronisms aldovandi aldoxime aldrin aldrins aldrovanda ale aleak aleatoric aleatories aleatory alebench alebenches aleberry alebush alec alecithal alecithic alecize aleconner alecost alecosts alecs alectis alectoria alectoriae alectoridine alectorioid alectoris alectoromachy alectoromancy alectoromorphous alectoropodous alectryomachy alectryomancy alectryon alectryons alectura alecup alee alef alefnull alefs aleft alefzero alegar alegars aleger alegge aleggeaunce aleggeaunces alegged alegges alegging alehoof alehouse alehouses aleikoum aleikum aleiptes aleiptic aleknight alem alemana alemannic alembic alembicate alembicated alembication alembications alembics alembroth alembroths alemite alemmal alemonger alen alencon alencons alenge alength alentours alenu alep aleph alephs alephzero alepidote alepine alepines alepisaurus alepole alepot aleppo alerce alerces alerion alerions alerse alert alerta alerted alertedly alerter alerters alertest alerting alertly alertness alertnesses alerts ales alesan aleshot alestake aletap aletaster alethic alethiologic alethiological alethiologist alethiology alethopteis alethopteroid alethoscope aletocyte aletris alette aleucaemic aleucemic aleukaemic aleukemic aleurites aleuritic aleuromancy aleurometer aleuron aleuronat aleurone aleurones aleuronic aleurons aleuroscope aleut aleutian aleutians aleutite aleve alevin alevins alew alewashed alewhap alewife alewives alews alexander alexanders alexandria alexandrian alexandrine alexandrines alexandrite alexandrites alexia alexias alexic alexin alexine alexines alexinic alexins alexipharmacon alexipharmacum alexipharmakon alexipharmakons alexipharmic alexipharmical alexipharmics alexipyretic alexiteric alexiterical aleyard aleye aleyed aleyes aleying aleyrodes aleyrodid aleyrodidae alezan alf alfa alfaje alfaki alfakis alfalfa alfalfas alfaqui alfaquin alfaquins alfaquis alfaquí alfarga alfas alfenide alferes alferez alferezes alfet alfilaria alfilarias alfileria alfilerias alfilerilla alfilerillo alfin alfiona alfione alfoncino alfonsin alfonso alforge alforja alforjas alfred alfredo alfresco alfridaric alfridary alférez alférezes alg alga algae algaecide algaecides algaeological algaeologist algaeology algaesthesia algaesthesis algal algalia algarad algarde algaroba algarobas algarobilla algarot algarroba algarrobas algarrobilla algarrobin algarrobo algarrobos algas algate algates algazel algebra algebraic algebraical algebraically algebraisation algebraise algebraist algebraists algebraization algebraize algebraized algebraizing algebras algebrization algedo algedonic algedonics algefacient algeria algerian algerians algerie algerienne algerine algerines algeripithecus algerita algerite algeses algesia algesias algesic algesimeter algesiometer algesireceptor algesis algesthesis algetic algic algicidal algicide algicides algid algidities algidity algidness algiers algific algin alginate alginates algine alginic algins alginuresis algiomuscular algist algivorous algocyan algodon algodoncillo algodonite algoesthesiometer algogenic algoid algol algolagnia algolagniac algolagniacs algolagnias algolagnic algolagnist algolagnists algolagny algological algologically algologies algologist algologists algology algometer algometers algometric algometrical algometrically algometries algometry algonkian algonkin algonquian algonquians algonquin algonquins algophagous algophilia algophilist algophobia algophobias algophobic algor algorism algorismic algorisms algorist algoristic algorithm algorithmic algorithmically algorithms algors algosis algous algovite algraphic algraphy alguacil alguacils alguazil alguazils alguifou algum algums alhacena alhagi alhambra alhambresque alhandal alhenna alhet alia aliamenta alias aliased aliases aliasing aliasings alibangbang alibi alibied alibies alibiing alibility alibis alible alicant alicants alice alichel alicoche alictisal alicula aliculae alicyclic alidad alidada alidade alidades alidads alien alienabilities alienability alienable alienage alienages alienate alienated alienates alienating alienation alienations alienator alienators aliency aliene aliened alienee alienees aliener alieners alienicola alienicolae alienigenate aliening alienise alienism alienisms alienist alienists alienize alienly alienness aliennesses alienor alienors aliens alienship aliesterase aliet aliethmoid aliethmoidal alif alife aliferous aliform alifs aligarta aligartas aligerous alight alighted alighten alighting alightment alightments alights align aligned aligner aligners aligning alignment alignments aligns aligreek alii aliipoe alike alikeness alikenesses alikewise alilonghi alima alimenation aliment alimental alimentally alimentariness alimentary alimentation alimentations alimentative alimentatively alimentativeness alimented alimenter alimentic alimenting alimentive alimentiveness alimentivenesses alimentotherapy aliments alimentum alimonied alimonies alimony alin alinasal aline alineation alineations alined alinement alinements aliner aliners alines alingual alining alinit alinota alinotum alintatao aliofar alioth alipata aliped alipeds aliphatic alipin aliptae alipteria alipterion aliptes aliptic aliptteria aliquant aliquid aliquot aliquots alisanders aliseptal alish alisier alisma alismaceous alismad alismal alismales alismas alismataceae alismatidae alismoid aliso alison alisonite alisos alisp alispheno alisphenoid alisphenoidal alist alit alite aliter aliteracies aliteracy aliterate aliterates alitrunk aliturgic aliturgical ality aliunde alive aliveness alivenesses alives alivincular aliya aliyah aliyahaliyahs aliyahs aliyas aliyos aliyot aliyoth alizarate alizari alizarin alizarine alizarines alizarins alizaris aljama aljamado aljamia aljamiado aljamiah aljoba aljofaina alk alkahest alkahestic alkahestica alkahestical alkahests alkalamide alkalemia alkalescence alkalescences alkalescencies alkalescency alkalescent alkali alkalic alkalies alkaliferous alkalifiable alkalified alkalifies alkalify alkalifying alkaligen alkaligenous alkalimeter alkalimeters alkalimetric alkalimetrical alkalimetrically alkalimetries alkalimetry alkalin alkaline alkalinisation alkalinisations alkalinise alkalinised alkalinises alkalinising alkalinities alkalinity alkalinization alkalinizations alkalinize alkalinized alkalinizes alkalinizing alkalinuria alkalis alkalisable alkalisation alkalisations alkalise alkalised alkaliser alkalises alkalising alkalizable alkalizate alkalization alkalizations alkalize alkalized alkalizer alkalizes alkalizing alkaloid alkaloidal alkaloids alkalometry alkaloses alkalosis alkalotic alkalous alkaluria alkamin alkamine alkanal alkane alkanes alkanet alkanethiol alkanets alkanna alkannin alkanol alkapton alkaptone alkaptonuria alkaptonuric alkargen alkarsin alkarsine alkatively alkedavy alkekengi alkene alkenes alkenna alkenyl alkeran alkermes alkide alkie alkies alkin alkine alkines alkitran alkool alkoxid alkoxide alkoxides alkoxy alkoxyl alky alkyd alkyds alkyl alkylamine alkylamino alkylarylsulfonate alkylate alkylated alkylates alkylating alkylation alkylations alkylbenzenesulfonate alkylbenzenesulfonates alkylene alkylic alkylidene alkylize alkylogen alkylol alkyloxy alkyls alkyne alkynes all allabuta allachesthesia allactite allaeanthus allagite allagophyllous allagostemonous allah allalinite allamanda allamandas allamonti allamoth allamotti allan allanite allanites allanitic allantiasis allantochorion allantoic allantoid allantoidal allantoidean allantoides allantoidian allantoids allantoin allantoinase allantoins allantoinuria allantois allantoises allantoxaidin allanturic allargando allassotonic allative allatives allatrate allay allayed allayer allayers allaying allayings allayment allayments allays allbone allcomers allecret allect allectory alledge alledged alledges alledging allee allees allegata allegate allegation allegations allegator allegatum allege allegeable allegeance allegeances alleged allegedly allegement alleger allegers alleges allegge allegged allegges allegging alleghenies allegheny allegiance allegiances allegiancy allegiant allegiantly allegiants allegiare alleging allegoric allegorical allegorically allegoricalness allegoricalnesses allegories allegorisation allegorisations allegorise allegorised allegoriser allegorisers allegorises allegorising allegorism allegorist allegorister allegoristic allegorists allegorization allegorizations allegorize allegorized allegorizer allegorizers allegorizes allegorizing allegory allegresse allegretto allegrettos allegri allegro allegros allel allele alleles alleleu allelic allelism allelisms allelocatalytic allelomorph allelomorphic allelomorphism allelomorphisms allelomorphs allelopathic allelopathies allelopathy allelotropic allelotropism allelotropy allels alleluia alleluiah alleluiahs alleluias alleluiatic alleluja allelvia allemand allemande allemandes allemands allemontite allen allenarly allene alleniate allentando allentato aller allergen allergenic allergenicities allergenicity allergens allergia allergic allergically allergics allergies allergin allergins allergist allergists allergology allergy allerion allerions allesthesia allethrin allethrins alleve alleviant alleviate alleviated alleviater alleviaters alleviates alleviating alleviatingly alleviation alleviations alleviative alleviator alleviators alleviatory alley alleycat alleycats alleyed alleyite alleys alleyway alleyways allez allgood allgovite allhallond allhallowen allhallown allhallows allhallowtide allheal allheals allhollown alliable alliably alliaceae alliaceous alliage alliance allianced alliancer alliances alliancing alliant alliaria allicampane allice allices allicholies allicholly allicholy alliciency allicient allicin allicins allicit allied allies alligarta alligartas alligate alligated alligates alligating alligation alligations alligator alligatored alligatorfish alligatorfishes alligatoridae alligatoring alligators allineate allineation allineations allionia allioniaceae allis allises allision alliteral alliterate alliterated alliterates alliterating alliteration alliterational alliterationist alliterations alliterative alliteratively alliterativeness alliterativenesses alliterator allituric allium alliums allivalite allmouth allmouths allness allnesses allnight allnighter allnighters allo alloantibodies alloantibody alloantigen alloantigens allobar allobaric allobars allobrogical allocability allocable allocaffeine allocarpies allocarpy allocatable allocate allocated allocatee allocates allocating allocation allocations allocator allocators allocatur allocheiria allocheirias allochetia allochetite allochezia allochiral allochirally allochiria allochirias allochlorophyll allochroic allochroite allochromatic allochronic allochroous allochthon allochthonous allocinnamic alloclase alloclasite allocochick allocrotonic allocryptic allocthonous allocute allocution allocutions allocutive allocyanine allod allodelphite allodesmism allodge allodia allodial allodialism allodialist allodiality allodially allodian allodiaries allodiary allodies allodification allodium allodiums allods allody alloeosis alloeostropha alloeotic alloerotic alloerotism allogamies allogamous allogamy allogene allogeneic allogeneically allogeneity allogeneous allogenic allogenically allograft allografted allografting allografts allograph allographic allographs alloimmune alloiogenesis alloiometric alloiometry alloiostrophos alloisomer alloisomeric alloisomerism allokinesis allokinetic allokurtic allolalia allolalic allomerism allomerisms allomerization allomerize allomerized allomerizing allomerous allometric allometries allometry allomone allomones allomorph allomorphic allomorphism allomorphisms allomorphite allomorphs allomucic allonga allonge allonges allonomous allons allonym allonymous allonymously allonyms alloo allopalladium allopath allopathetic allopathetically allopathic allopathically allopathies allopathist allopathists allopaths allopathy allopatric allopatrically allopatries allopatry allopelagic allophanamid allophanamide allophanate allophanates allophane allophanes allophanic allophite allophone allophones allophonic allophonically allophore allophyle allophylian allophylic allophytoid alloplasm alloplasmatic alloplasmic alloplasms alloplast alloplastic alloplasty alloploidy allopolyploid allopolyploidies allopolyploids allopolyploidy allopsychic allopurinol allopurinols alloquial alloquialism alloquy allorhythmia allorrhyhmia allorrhythmic allosaur allosaurs allosaurus allosauruses allose allosematic allosome allosteric allosterically allosteries allostery allosyndesis allosyndetic allot alloted allotee allotelluric allotetraploid allotetraploidies allotetraploids allotetraploidy allotheism allotheisms allotheist allotheistic allothigene allothigenetic allothigenetically allothigenic allothigenous allothimorph allothimorphic allothogenic allothogenous allotment allotments allotransplant allotransplantation allotransplanted allotransplanting allotransplants allotriodontia allotriomorphic allotriophagia allotriophagy allotriuria allotrope allotropes allotrophic allotropic allotropical allotropically allotropicity allotropies allotropism allotropisms allotropize allotropous allotropy allotrylic allots allottable allotted allottee allottees allotter allotteries allotters allottery allotting allotype allotypes allotypic allotypical allotypically allotypies allotypy allover allovers allow allowabilities allowability allowable allowableness allowablenesses allowably allowance allowanced allowances allowancing allowed allowedly allower allowing allows alloxan alloxanate alloxanic alloxans alloxantin alloxuraemia alloxuremia alloxuric alloxy alloxyproteic alloy alloyage alloyed alloying alloys allozooid allround alls allseed allseeds allsorts allspice allspices allthing allthorn alltud allude alluded alludes alluding allumette allumine alluminor allurance allure allured allurement allurements allurer allurers allures alluring alluringly alluringness allusion allusions allusive allusively allusiveness allusivenesses allusory allutterly alluvia alluvial alluvials alluviate alluviation alluvio alluvion alluvions alluvious alluvium alluviums alluvivia alluviviums allwhere allwhither allwork ally allychollies allycholly allyic allying allyl allylamine allylate allylation allylene allylic allyls allylthiourea allyou allée allées alma almacantar almacantars almacen almacenista almaciga almacigo almadia almadie almagest almagests almagra almah almahs almain almaine almains almanac almanack almanacks almanacs almander almandine almandines almandite almandites almanner almas almaty alme almeh almehs almeidina almemar almemars almemor almendro almendron almeries almeriite almery almes almice almicore almight almightily almightiness almightinesses almighty almique almirah almirahs almistry almner almners almochoden almocrebe almogavar almohad almoign almoin almon almonage almond almondlike almonds almondy almoner almoners almonership almoning almonries almonry almose almost almous alms almsdeed almsfolk almsful almsgiver almsgivers almsgiving almsgivings almshouse almshouses almsman almsmen almsmoney almswoman almswomen almucantar almucantars almuce almuces almud almude almudes almuds almuerzo almug almugs almury almuten aln alnage alnager alnagers alnagership alnages alnath alnein alnico alnicoes alnicos alniresinol alniviridol alnoite alnuin alnus alo alocasia alocasias alochia alod aloddia alodia alodial alodialism alodialist alodiality alodially alodialty alodian alodiaries alodiary alodies alodification alodium alodiums alods alody aloe aloeaceae aloed aloedary aloelike aloemodin aloeroot aloes aloesol aloeswood aloeswoods aloetic aloetical aloetics aloewood aloft alogia alogian alogias alogical alogically alogicalness alogicalnesses alogism alogotrophy alogy aloha alohas aloid aloin aloins aloisiite aloma alomancy alone alonely aloneness alonenesses along alongships alongshore alongshoreman alongshoremen alongside alongst aloof aloofe aloofly aloofness aloofnesses aloose alop alopathic alopecia alopecias alopecic alopecist alopecoid alopecurus alopekai alopeke alopex alophas alopiidae alopius alorcinic alosa alose alouatta alouatte aloud alouette alouettes alout alow alowe aloyau aloysia alp alpaca alpacas alpargata alpargatas alpasotes alpax alpeen alpeens alpen alpenglow alpenglows alpenhorn alpenhorns alpenstock alpenstocker alpenstocks alpestral alpestrian alpestrine alpha alphabet alphabetarian alphabetarians alphabetary alphabeted alphabetic alphabetical alphabetically alphabetics alphabetiform alphabeting alphabetisation alphabetisations alphabetise alphabetised alphabetiser alphabetisers alphabetises alphabetising alphabetism alphabetist alphabetization alphabetizations alphabetize alphabetized alphabetizer alphabetizers alphabetizes alphabetizing alphabetology alphabets alphameric alphamerical alphamerically alphametic alphametics alphanumeric alphanumerical alphanumerically alphanumerics alphas alphasort alphasorted alphasorting alphasorts alphatoluic alphenic alpheus alphin alphitomancy alphitomorphous alphol alphonsin alphonsine alphorn alphorns alphos alphoses alphosis alphosises alphyl alphyls alphyn alpieu alpigene alpine alpinely alpinery alpines alpinesque alpinia alpinism alpinisms alpinist alpinists alpist alpiste alprazolam alps alqueire alquier alquifou alraun alreadiness already alright alrighty alroot alruna alrune als alsace alsatia alsatian alsbachite alsifilm alsike alsikes alsinaceous alsmekill also alsobia alsoon alsoone alsophila alstonia alstonidine alstonine alstonite alstroemeria alstroemeriaceae alstroemerias alsweill alswith alt altaian altaic altair altaite altaltissimo altaltissimos altar altarage altarages altared altarist altarlet altarpiece altarpieces altars altarwise altazimuth altazimuths alter alterabilities alterability alterable alterableness alterably alterant alterants alterate alteration alterations alterative alteratively alteratives altercate altercated altercates altercating altercation altercations altercative altered alteregoism alteregoistic alterer alterers altering alterities alterity alterius alterman altern alternacy alternamente alternance alternances alternant alternanthera alternants alternariose alternat alternate alternated alternately alternateness alternatenesses alternater alternates alternatim alternating alternatingly alternation alternationist alternations alternative alternatively alternativeness alternativenesses alternatives alternativity alternativo alternator alternators alterne alternes alternifoliate alternipetalous alternipinnate alternise alternisepalous alternity alternize alterocentric alters alterum altesse alteza altezza althaea althaeas althaein althea altheas althein altheine althing althionic altho althorn althorns although altify altigraph altilik altiloquence altiloquent altimeter altimeters altimetric altimetrical altimetrically altimetries altimetry altimettrically altin altincar altingiaceous altininck altiplanicie altiplano altiplanos altiscope altisonant altisonous altissimo altitonant altitude altitudes altitudinal altitudinarian altitudinarians altitudinous alto altocumuli altocumulus altogether altogetherness altogethers altoist altoists altometer altoruffled altos altostrati altostratus altoun altrices altricial altropathy altrose altruism altruisms altruist altruistic altruistically altruists alts altschin altumal altun alture altus aludel aludels alula alulae alular alulas alulet alum alumbloom alumbrado alumen alumetize alumian alumic alumiferous alumin alumina aluminaphone aluminas aluminate aluminates alumine alumines aluminic aluminide aluminiferous aluminiform aluminise aluminised aluminises aluminish aluminising aluminite aluminium aluminiums aluminize aluminized aluminizes aluminizing aluminoferric aluminographic aluminography aluminose aluminosilicate aluminosilicates aluminosis aluminosity aluminothermic aluminothermics aluminothermies aluminothermy aluminotype aluminous alumins aluminum aluminums aluminyl alumish alumite alumium alumiums alumna alumnae alumnal alumni alumniate alumnus alumohydrocalcite alumroot alumroots alums alumstone alundum aluniferous alunite alunites alunogen alupag alupent alure alures alurgite alushtite aluta alutaceous alvar alvearies alvearium alveary alveated alvelos alveloz alveola alveolae alveolar alveolariform alveolarly alveolars alveolary alveolate alveolated alveolation alveolations alveole alveolectomy alveoles alveoli alveoliform alveolite alveolitis alveolitises alveoloclasia alveolocondylean alveolodental alveololabial alveololingual alveolonasal alveolosubnasal alveolotomy alveolus alveus alvia alviducous alvine alvite alvus alw alway always alwise alwite aly alycompaine alycompaines alymphia alymphopotent alypin alypine alypum alysson alyssum alyssums alytarch alytes alzheimer alzheimers am ama amaas amabile amability amable amacratic amacrinal amacrine amadan amadavat amadavats amadelphous amadou amadous amaethon amaga amah amahs amain amaine amaist amaister amakebe amal amala amalaita amalaka amalekite amalett amalg amalgam amalgamable amalgamate amalgamated amalgamater amalgamates amalgamating amalgamation amalgamationist amalgamations amalgamatise amalgamative amalgamatize amalgamator amalgamators amalgamisation amalgamise amalgamist amalgamization amalgamize amalgams amalic amaltas amamau amande amandin amandine amandines amang amani amania amanita amanitas amanitin amanitine amanitins amanori amanous amant amantadine amantadines amante amantillo amanuenses amanuensis amapa amar amaracus amaracuses amarant amarantaceous amaranth amaranthaceae amaranthaceous amaranthine amaranthoid amaranths amaranthus amarantin amarantine amarantite amarants amarelle amarelles amaretti amaretto amarettos amarevole amargosa amargoso amargosos amarillo amarillos amarin amarine amaritude amarity amarna amaroid amaroidal amarthritis amarvel amaryllid amaryllidaceae amaryllidaceous amaryllideous amaryllids amaryllis amaryllises amas amasesis amass amassable amassables amassed amasser amassers amasses amassette amassing amassment amassments amasthenic amastia amasty amate amated amaterasu amaterialistic amates amateur amateurish amateurishly amateurishness amateurishnesses amateurism amateurisms amateurs amateurship amateurships amathophobia amati amating amation amations amatito amative amatively amativeness amativenesses amatol amatols amatorial amatorially amatorian amatories amatorio amatorious amatory amatrice amatungula amatungulu amauropelta amauroses amaurosis amaurotic amaut amauti amautik amautiks amautis amaxomania amay amaze amazed amazedly amazedness amazednesses amazeful amazement amazements amazer amazers amazes amazia amazing amazingly amazon amazona amazonian amazonite amazonites amazons amazonstone amazonstones amb amba ambach ambage ambages ambagiosity ambagious ambagiously ambagiousness ambagitory ambalam amban ambans ambar ambaree ambarella ambari ambaries ambaris ambary ambas ambash ambassade ambassador ambassadorial ambassadorially ambassadors ambassadorship ambassadorships ambassadress ambassadresses ambassage ambassages ambassiate ambassies ambassy ambatch ambatches ambatoarinite ambay ambe ambeer ambeers amber amberbell amberboa ambered amberfish amberfishes ambergrease ambergris ambergrises amberies amberiferous amberina amberinas amberite amberites amberjack amberjacks amberlike amberoid amberoids amberous ambers ambery ambiance ambiances ambicolorate ambicoloration ambicolourate ambicolouration ambidexter ambidexterities ambidexterity ambidexterous ambidexters ambidextral ambidextrous ambidextrously ambidextrousness ambidextrousnesses ambience ambiences ambiency ambiens ambient ambients ambier ambigenal ambigenous ambigu ambiguities ambiguity ambiguous ambiguously ambiguousness ambiguousnesses ambilaevous ambilateral ambilateralaterally ambilaterality ambilaterally ambilevous ambilian ambilogy ambiopia ambiparous ambisextrous ambisexual ambisexualities ambisexuality ambisexuals ambisinister ambisinistrous ambisonic ambisonics ambisporangiate ambisyllabic ambit ambital ambitendencies ambitendency ambitendent ambition ambitioned ambitioning ambitionist ambitionless ambitionlessly ambitions ambitious ambitiously ambitiousness ambitiousnesses ambits ambitty ambitus ambivalence ambivalences ambivalencies ambivalency ambivalent ambivalently ambiversion ambiversions ambiversive ambivert ambiverts amble ambled ambleocarpus ambler amblers ambles ambling amblingly amblings ambloplites amblosis amblotic amblyacousia amblyaphia amblychromatic amblygeusia amblygon amblygonal amblygonite amblygonites amblyocarpous amblyope amblyopia amblyopias amblyopic amblyoscope amblypod amblypodous amblyrhynchus amblystegite ambo amboceptoid amboceptor amboceptors ambodexter amboina amboinas ambolic ambomalleal ambon ambones ambonite ambos ambosexous ambosexual amboyna amboynas ambracan ambrain ambreate ambreic ambrein ambrette ambrettes ambrettolide ambries ambrite ambrocate ambroid ambroids ambrology ambrose ambrosia ambrosiac ambrosiaceae ambrosiaceous ambrosial ambrosially ambrosian ambrosias ambrosiate ambrosin ambrosine ambrosterol ambrotype ambrotypes ambry ambsace ambsaces ambulacra ambulacral ambulacriform ambulacrum ambulance ambulanced ambulanceman ambulancemen ambulancer ambulances ambulancewoman ambulancewomen ambulancing ambulant ambulante ambulantes ambulants ambulate ambulated ambulates ambulating ambulatio ambulation ambulations ambulative ambulator ambulatoria ambulatorial ambulatories ambulatorily ambulatorium ambulatoriums ambulators ambulatory ambulia ambuling ambulomancy amburbial ambury ambuscade ambuscaded ambuscader ambuscaders ambuscades ambuscading ambuscado ambuscadoed ambuscadoes ambuscados ambush ambushed ambusher ambushers ambushes ambushing ambushlike ambushment ambushments ambustion ambystoma ambystomatidae ambystomid amchoor amdahl amdt ame amearst ameba amebae ameban amebas amebean amebian amebiases amebiasis amebic amebicidal amebicide amebid amebiform amebiosis amebobacter amebocyte amebocytes ameboid ameboidism amebous amebula ameed ameen ameer ameerate ameerates ameers ameioses ameiosis ameiotic ameiuridae ameiurus amel amelanchier ameland amelcorn amelcorns amelet amelia amelias amelification ameliorable ameliorableness ameliorant ameliorants ameliorate ameliorated ameliorates ameliorating amelioration ameliorations ameliorativ ameliorative amelioratively ameliorator ameliorators amelioratory amellus ameloblast ameloblastic ameloblasts amelogenesis amelu amelus amen amenabilities amenability amenable amenableness amenablenesses amenably amenage amenaged amenages amenaging amenance amenaunce amenaunces amend amendable amendableness amendatory amende amended amender amenders amending amendment amendments amends amene amened amener amenest amenia amening amenities amenity amenorrhea amenorrheal amenorrheas amenorrheic amenorrho amenorrhoea amenorrhoeal amenorrhoeas amenorrhoeic amens amensalism amensalisms ament amenta amentaceous amental amentia amentias amentiferae amentiferous amentiform aments amentula amentulum amentum amenty amenuse amerce amerceable amerced amercement amercements amercer amercers amerces amerciable amerciament amerciaments amercing america american americana americanisation americanised americanism americanisms americanist americanization americanize americanized americanizes americanizing americans americanum americanumancestors americas americium americiums amerikani amerind amerindian amerindians amerindic amerinds amerism ameristic amerveil amesace amesaces amesite amess ametabola ametabole ametabolia ametabolian ametabolic ametabolism ametabolisms ametabolous ametaboly ametallous amethodical amethodically amethopterin amethopterins amethyst amethystine amethystlike amethysts ametoecious ametria ametrometer ametrope ametropia ametropias ametropic ametrous amex amgarn amhar amhara amharic amherstite amhran ami amia amiabilities amiability amiable amiableness amiablenesses amiably amiant amianth amianthiform amianthine amianthoid amianthoidal amianthum amianthus amianthuses amiantus amiantuses amias amic amicabilities amicability amicable amicableness amicablenesses amicably amical amice amiced amices amici amicicide amicous amicrobic amicron amicronucleate amictus amicus amid amidase amidases amidate amidated amidating amidation amide amides amidic amidid amidide amidin amidine amidines amidins amidmost amido amidoacetal amidoacetic amidoacetophenone amidoaldehyde amidoazo amidoazobenzene amidoazobenzol amidocaffeine amidocapric amidocyanogen amidofluorid amidofluoride amidogen amidogens amidoguaiacol amidohexose amidoketone amidol amidols amidomyelin amidon amidone amidones amidophenol amidophosphoric amidoplast amidoplastid amidopyrine amidosuccinamic amidosulphonal amidothiazole amidoxime amidoxy amidoxyl amidrazone amids amidship amidships amidst amidstream amidulin amidward amie amies amiga amigas amigo amigos amiidae amil amildar amildars amimia amimide amin aminase aminate aminated aminating amination aminded amine amines amini aminic aminish aminities aminity aminization aminize amino aminoacetal aminoacetanilide aminoacetic aminoacetone aminoacetophenetidine aminoacetophenone aminoacidemia aminoaciduria aminoacidurias aminoalkane aminoanthraquinone aminoazo aminoazobenzene aminobarbituric aminobenzaldehyde aminobenzamide aminobenzene aminobenzine aminobenzoic aminobutene aminobutenes aminocaproic aminodiphenyl aminoethionic aminoformic aminogen aminoglutaric aminoguanidine aminoid aminoketone aminolipin aminolysis aminolytic aminomalonic aminomethane aminomyelin aminopeptidase aminopeptidases aminophenol aminophenols aminopherase aminophylline aminophyllines aminoplast aminoplastic aminopolypeptidase aminopropionic aminopterin aminopterins aminopurine aminopyrine aminopyrines aminoquin aminoquinoline aminosis aminosuccinamic aminosulphonic aminothiophen aminotransferase aminotransferases aminotriazole aminotriazoles aminovaleric aminoxylol amins amiodarone amir amiral amirate amirates amiray amire amirs amirship amis amises amish amiss amisses amissibilities amissibility amissible amissing amission amissness amit amitate amitie amities amitoses amitosis amitotic amitotically amitriptyline amitriptylines amitrole amitroles amitryptyline amitryptylines amitular amity amixia amla amlacra amlas amlet amli amlikar amlong amma amman ammans ammelide ammelin ammeline ammeos ammer ammeter ammeters ammi ammiaceous ammine ammines ammino amminochloride amminolysis amminolytic ammiolite ammiral ammirals ammites ammo ammobium ammocete ammocetes ammochaeta ammochaetae ammochryse ammocoete ammocoetes ammocoetid ammocoetiform ammocoetoid ammodyte ammodytes ammodytidae ammodytoid ammon ammonal ammonals ammonate ammonates ammonation ammonia ammoniac ammoniacal ammoniacs ammoniacum ammoniacums ammoniaemia ammonias ammoniate ammoniated ammoniates ammoniating ammoniation ammoniations ammonic ammonical ammoniemia ammonification ammonifications ammonified ammonifier ammonifiers ammonifies ammonify ammonifying ammoniojarosite ammonion ammonionitrate ammonite ammonites ammonitic ammoniticone ammonitiferous ammonitoid ammonium ammoniums ammoniuret ammoniureted ammoniuria ammonization ammono ammonobasic ammonocarbonic ammonocarbonous ammonoid ammonoidean ammonoids ammonolitic ammonolyses ammonolysis ammonolytic ammonolyze ammonolyzed ammonolyzing ammons ammophilous ammoresinol ammoreslinol ammos ammotherapy ammotragus ammu ammunition ammunitioned ammunitioning ammunitions amnemonic amnesia amnesiac amnesiacs amnesias amnesic amnesics amnestic amnestied amnesties amnesty amnestying amnia amniac amniatic amnic amninia amninions amnio amnioallantoic amniocenteses amniocentesis amniochorial amnioclepsis amniographies amniography amniomancy amnion amnionate amnionia amnionic amnions amniorrhea amnios amniota amniote amniotes amniotic amniotin amniotitis amniotome amniotomies amniotomy amobarbital amobarbitals amober amobyr amoeba amoebae amoebaea amoebaean amoebaeum amoebalike amoeban amoebas amoebean amoebeum amoebian amoebiases amoebiasis amoebic amoebicidal amoebicide amoebid amoebida amoebiform amoebina amoebiosis amoebocyte amoebocytes amoeboid amoeboidism amoebous amoebula amoibite amoinder amok amoke amoks amole amoles amolilla amolish amollish amomal amomum amomums amon among amongst amontillado amontillados amoove amooved amooves amooving amor amora amorado amoraic amoraim amoral amoralise amoralism amoralisms amoralist amoralists amoralities amorality amoralize amorally amorance amorances amorant amorce amorces amoret amorets amoretti amoretto amorettos amorini amorino amorism amorisms amorist amoristic amorists amorite amornings amorosa amorosas amorosities amorosity amoroso amorosos amorous amorously amorousness amorousnesses amorph amorpha amorphi amorphia amorphic amorphinism amorphism amorphisms amorphophallus amorphophyte amorphotae amorphous amorphously amorphousness amorphousnesses amorphozoa amorphus amorphy amort amortisable amortisation amortisations amortise amortised amortisement amortisements amortises amortising amortissement amortisseur amortizable amortization amortizations amortize amortized amortizement amortizements amortizes amortizing amos amosite amosites amotion amotions amotus amouli amount amounted amounter amounters amounting amounts amour amouret amourette amourettes amourism amourisms amourist amouristic amourists amours amovability amovable amove amoved amoves amoving amowt amoxicillin amoxicillins amoxil amoxycillin amoxycillins amoy amp ampalaya ampalea ampangabeite amparo ampasimenite ampassies ampassy amped ampelidaceous ampelideous ampelite ampelitic ampelographies ampelographist ampelography ampelograpny ampelopses ampelopsidin ampelopsin ampelopsis ampelotherapy amper amperage amperages ampere amperemeter amperes amperometer amperometric ampersand ampersands ampery amperzand amperzands amphanthia amphanthium ampheclexis ampherotokous ampherotoky amphetamine amphetamines amphi amphiarthrodial amphiarthroses amphiarthrosis amphiaster amphib amphibali amphibalus amphibia amphibial amphibian amphibians amphibichnite amphibiety amphibiological amphibiology amphibion amphibiontic amphibiotic amphibious amphibiously amphibiousness amphibiousnesses amphibium amphiblastic amphiblastula amphiblestritis amphibole amphiboles amphibolia amphibolic amphibolies amphiboliferous amphiboline amphibolips amphibolite amphibolites amphibolitic amphibological amphibologically amphibologies amphibologism amphibology amphibolostylous amphibolous amphiboly amphibrach amphibrachic amphibrachs amphibryous amphicarpa amphicarpaea amphicarpia amphicarpic amphicarpium amphicarpogenous amphicarpous amphicarpus amphicentric amphichroic amphichrom amphichromatic amphichrome amphichromy amphicoelian amphicoelous amphicome amphicondylous amphicrania amphicreatinine amphicribral amphictyon amphictyonian amphictyonic amphictyonies amphictyons amphictyony amphicyrtic amphicyrtous amphicytula amphid amphide amphidesmous amphidetic amphidiarthrosis amphidiploid amphidiploidies amphidiploids amphidiploidy amphidisc amphidiscophoran amphidisk amphidromia amphidromic amphierotic amphierotism amphigaean amphigam amphigamous amphigastria amphigastrium amphigastrula amphigean amphigen amphigene amphigenesis amphigenetic amphigenous amphigenously amphigonia amphigonic amphigonium amphigonous amphigony amphigoric amphigories amphigory amphigouri amphigouris amphikaryon amphikaryotic amphilogism amphilogy amphimacer amphimacers amphimictic amphimictical amphimictically amphimixes amphimixis amphimorula amphimorulae amphineura amphineurous amphinucleus amphion amphioxi amphioxidae amphioxis amphioxus amphioxuses amphipathic amphipeptone amphiphile amphiphiles amphiphilic amphiphithyra amphiphloic amphiplatyan amphiploid amphiploidies amphiploids amphiploidy amphipneust amphipneustic amphipod amphipoda amphipodal amphipodan amphipodiform amphipodous amphipods amphiprion amphiprostylar amphiprostyle amphiprostyles amphiprotic amphipyrenin amphirhinal amphirhine amphisarca amphisbaena amphisbaenae amphisbaenas amphisbaenia amphisbaenian amphisbaenic amphisbaenid amphisbaenidae amphisbaenoid amphisbaenous amphiscian amphiscians amphiscii amphispermous amphisporangiate amphispore amphistomatic amphistome amphistomoid amphistomous amphistylar amphistylic amphistyly amphitene amphithalami amphithalamus amphithalmi amphitheater amphitheatered amphitheaters amphitheatral amphitheatre amphitheatres amphitheatric amphitheatrical amphitheatrically amphitheccia amphithecia amphithecial amphithecium amphithect amphithere amphithura amphithuron amphithurons amphithurthura amphithyra amphithyron amphithyrons amphitokal amphitokous amphitoky amphitriaene amphitricha amphitrichate amphitrichous amphitrite amphitron amphitropal amphitropous amphitryon amphiuma amphiumidae amphivasal amphivorous amphodarch amphodelite amphodiplopia amphogenic amphogenous amphogeny ampholyte ampholytes ampholytic amphopeptone amphophil amphophile amphophilic amphophilous amphora amphorae amphoral amphoras amphore amphorette amphoric amphoricity amphoriloquy amphoriskoi amphoriskos amphorophony amphorous amphoteric amphotericin ampicillin ampicillins amping ampitheater ample amplect amplectant ampleness amplenesses ampler amplest amplex amplexation amplexicaudate amplexicaul amplexicauline amplexifoliate amplexus amplexuses ampliate ampliation ampliations ampliative amplication amplicative amplicon amplicons amplidyne amplidynes amplifiable amplificate amplification amplifications amplificative amplificator amplificatory amplified amplifier amplifiers amplifies amplify amplifying amplitude amplitudes amplitudinous amplosome amplosomes amply ampollosity ampongue ampoul ampoule ampoules amps ampul ampulate ampulated ampulating ampule ampules ampulla ampullaceous ampullae ampullar ampullary ampullate ampullated ampulliform ampullitis ampullosities ampullosity ampullula ampullulae ampuls amputate amputated amputates amputating amputation amputational amputations amputative amputator amputators amputee amputees ampyces ampyx ampyxes amra amreeta amreetas amrelle amrinone amrit amrita amritas amritattva amritattvas amrits amsath amsel amsinckia amsonia amsterdam amt amtman amtmans amtmen amtrac amtrack amtracks amtracs amtrak amu amuck amucks amugis amuguis amula amulae amulas amulet amuletic amulets amulla amunam amur amurca amurcosity amurcous amus amusable amusd amuse amused amusedly amusee amusement amusements amuser amusers amuses amusette amusettes amusia amusias amusing amusingly amusingness amusingnesses amusive amusively amusiveness amusivenesses amutter amuyon amuyong amuze amuzzle amvis amy amyatonic amyctic amydon amyelencephalia amyelencephalic amyelencephalous amyelia amyelic amyelinic amyelonic amyelotrophy amyelous amygdal amygdala amygdalaceae amygdalaceous amygdalae amygdalas amygdalase amygdalate amygdale amygdalectomy amygdales amygdalic amygdaliferous amygdaliform amygdalin amygdaline amygdalines amygdalinic amygdalins amygdalitis amygdaloid amygdaloidal amygdaloids amygdalolith amygdaloncus amygdalopathy amygdalothripsis amygdalotome amygdalotomy amygdals amygdalus amygdonitrile amygdophenin amygdule amygdules amyl amylaceous amylamine amylan amylase amylases amylate amylemia amylene amylenes amylenol amylic amylidene amyliferous amylin amylo amylocellulose amyloclastic amylocoagulase amylodextrin amylodyspepsia amylogen amylogenesis amylogenic amylogens amylohydrolysis amylohydrolytic amyloid amyloidal amyloidoses amyloidosis amyloids amyloleucite amylolyses amylolysis amylolytic amylom amylome amylometer amylon amylopectin amylopectins amylophagia amylophosphate amylophosphoric amyloplast amyloplastic amyloplastid amyloplasts amylopsase amylopsin amylopsins amylose amyloses amylosis amylosynthesis amyls amylum amylums amyluria amynodont amyosthenia amyosthenic amyotaxia amyotonia amyotonias amyotrophia amyotrophic amyotrophies amyotrophy amyous amyrin amyris amyrol amyroot amytal amytals amyxia amyxorrhea amyxorrhoea amzel an ana anabaena anabaenas anabantid anabaptise anabaptised anabaptises anabaptising anabaptism anabaptisms anabaptist anabaptistic anabaptists anabaptize anabaptized anabaptizes anabaptizing anabas anabases anabasin anabasine anabasis anabasse anabata anabathmoi anabathmos anabathrum anabatic anaberoga anabia anabibazon anabioses anabiosis anabiotic anableps anablepses anabo anabohitsite anabolic anabolin anabolism anabolisms anabolite anabolites anabolitic anabolize anaboly anabong anabranch anabranches anabrosis anabrotic anabrus anacahuita anacahuite anacalypsis anacampsis anacamptic anacamptically anacamptics anacamptometer anacanth anacanthine anacanthini anacanthous anacara anacard anacardiaceae anacardiaceous anacardic anacardium anacardiums anacatadidymus anacatharses anacatharsis anacathartic anacathartics anacephalaeosis anacephalize anacharis anacharises anachoret anachorism anachromasis anachronic anachronical anachronically anachronism anachronismatical anachronisms anachronist anachronistic anachronistical anachronistically anachronize anachronous anachronously anachueta anacid anacidity anack anaclasis anaclastic anaclastics anaclete anacletica anacleticum anaclinal anaclises anaclisis anaclitic anacoenoses anacoenosis anacolutha anacoluthia anacoluthias anacoluthic anacoluthically anacoluthon anacoluthons anacoluttha anaconda anacondas anacoustic anacreontic anacreontically anacreontics anacrisis anacrogynae anacrogynous anacromyodian anacrotic anacrotism anacruses anacrusis anacrustic anacrustically anaculture anacusia anacusic anacusis anacyclus anadem anadems anadenanthera anadenia anadesm anadicrotic anadicrotism anadidymus anadiploses anadiplosis anadipsia anadipsic anadrom anadromous anadyomene anaematosis anaemia anaemias anaemic anaemically anaemotropy anaeretic anaerobation anaerobe anaerobes anaerobia anaerobian anaerobic anaerobically anaerobies anaerobion anaerobiont anaerobionts anaerobioses anaerobiosis anaerobiotic anaerobiotically anaerobious anaerobism anaerobium anaerophyte anaeroplastic anaeroplasty anaesthatic anaestheses anaesthesia anaesthesiant anaesthesias anaesthesiologies anaesthesiologist anaesthesiologists anaesthesiology anaesthesis anaesthetic anaesthetically anaesthetics anaesthetisation anaesthetisations anaesthetise anaesthetised anaesthetiser anaesthetises anaesthetising anaesthetist anaesthetists anaesthetization anaesthetizations anaesthetize anaesthetized anaesthetizer anaesthetizes anaesthetizing anaesthyl anaetiological anagalactic anagallis anagap anagasta anageneses anagenesis anagenetic anagenetical anagennesis anagep anagignoskomena anaglyph anaglyphic anaglyphical anaglyphics anaglyphoscope anaglyphs anaglyphy anaglypta anaglyptas anaglyptic anaglyptical anaglyptics anaglyptograph anaglyptographic anaglyptography anaglypton anagnorises anagnorisis anagnost anagnostes anagoge anagoges anagogic anagogical anagogically anagogics anagogies anagogy anagram anagrammatic anagrammatical anagrammatically anagrammatise anagrammatised anagrammatises anagrammatising anagrammatism anagrammatisms anagrammatist anagrammatists anagrammatization anagrammatizations anagrammatize anagrammatized anagrammatizes anagrammatizing anagrammed anagramming anagrams anagraph anagua anagyrin anagyrine anagyris anahao anahau anaheim anakinesis anakinetic anakinetomer anakinetomeric anakoluthia anakrousis anaktoron anal analabos analagous analav analbuminemia analcime analcimes analcimic analcimite analcite analcites analcitite analecta analectic analects analemma analemmas analemmata analemmatic analepses analepsis analepsy analeptic analeptical analeptics analgen analgene analgesia analgesias analgesic analgesics analgesis analgesist analgetic analgetics analgia analgias analgic analgize analities anality analkalinity anallagmatic anallagmatis anallantoic anallantoidean anallergic anally analog analoga analogal analogia analogic analogical analogically analogicalness analogice analogies analogion analogions analogise analogised analogises analogising analogism analogist analogistic analogists analogize analogized analogizes analogizing analogon analogons analogous analogously analogousness analogousnesses analogs analogue analogues analogy analphabet analphabete analphabetes analphabetic analphabetical analphabetics analphabetism analphabetisms analphabets analysability analysable analysand analysands analysation analysations analyse analysed analyser analysers analyses analysing analysis analyst analysts analyt analytic analytical analyticalally analyticality analytically analyticities analyticity analytics analytique analyzabilities analyzability analyzable analyzation analyzations analyze analyzed analyzer analyzers analyzes analyzing anam anama anamesite anametadromous anamirtin anamite anammonid anammonide anamneses anamnesis anamnestic anamnestically anamnionic anamniote anamniotic anamorphic anamorphism anamorphoscope anamorphose anamorphoses anamorphosis anamorphote anamorphous anan anana ananaplas ananaples ananas ananases ananda anandamide anandamides anandrarious anandria anandrious anandrous ananepionic anangioid anangular ananias anankastic ananke anankes anans ananter anantherate anantherous ananthous ananthropism ananym anapaest anapaestical anapaestically anapaests anapaganize anapaite anapanapa anapeiratic anapes anapest anapestic anapestically anapestics anapests anaphalantiasis anaphalis anaphase anaphases anaphasic anaphia anaphor anaphora anaphoral anaphoras anaphoria anaphoric anaphorical anaphorically anaphors anaphrodisia anaphrodisiac anaphrodisiacs anaphrodisias anaphroditic anaphroditous anaphylactic anaphylactically anaphylactin anaphylactogen anaphylactogenic anaphylactoid anaphylatoxin anaphylaxes anaphylaxies anaphylaxis anaphylaxy anaphyte anaplasia anaplasias anaplasis anaplasm anaplasmoses anaplasmosis anaplastic anaplasties anaplasty anapleroses anaplerosis anaplerotic anapnea anapneic anapnoeic anapnograph anapnoic anapnometer anapodeictic anapophyses anapophysial anapophysis anaprox anapsid anapsida anapsidan anapterygote anapterygotism anapterygotous anaptotic anaptychi anaptychus anaptyctic anaptyctical anaptyxes anaptyxis anapurna anaqua anarcestean anarch anarchal anarchial anarchic anarchical anarchically anarchies anarchise anarchised anarchises anarchising anarchism anarchisms anarchist anarchistic anarchists anarchize anarchized anarchizes anarchizing anarcho anarchoindividualist anarchosocialist anarchosyndicalism anarchosyndicalist anarchosyndicalists anarchs anarchy anarcotin anareta anaretic anaretical anargyroi anargyros anarhichadidae anarhichas anarithia anarithmia anarthria anarthrias anarthric anarthropod anarthropodous anarthrosis anarthrous anarthrously anarthrousness anarthrousnesses anartismos anarya anas anasa anasarca anasarcas anasarcous anaschistic anaseismic anaspadias anaspalin anaspid anaspida anastalsis anastaltic anastases anastasimon anastasimos anastasis anastate anastatic anastatica anastigmat anastigmatic anastigmatism anastigmatisms anastigmats anastomos anastomose anastomosed anastomoses anastomosing anastomosis anastomotic anastomus anastrophe anastrophes anastrophy anat anatabine anatase anatases anatexes anatexis anathem anathema anathemas anathemata anathematic anathematical anathematically anathematisation anathematisations anathematise anathematised anathematiser anathematises anathematising anathematism anathematization anathematizations anathematize anathematized anathematizer anathematizes anathematizing anatheme anathemitisation anathemize anatidae anatifa anatifae anatifer anatiferous anatine anatira anatman anatocism anatolia anatolian anatomic anatomical anatomically anatomicals anatomicobiological anatomicochirurgical anatomicomedical anatomicopathologic anatomicopathological anatomicophysiologic anatomicophysiological anatomicosurgical anatomies anatomiless anatomisable anatomisation anatomise anatomised anatomiser anatomises anatomising anatomism anatomist anatomists anatomizable anatomization anatomizations anatomize anatomized anatomizer anatomizes anatomizing anatomopathologic anatomopathological anatomy anatopism anatosaurus anatotitan anatox anatoxin anatoxins anatreptic anatripsis anatripsology anatriptic anatron anatropal anatropia anatropies anatropous anatropy anatta anattas anatto anattos anaudia anaudic anaunter anaunters anauxite anaxagorean anaxagorize anaxial anaximandrian anaxon anaxone anay anazoturia anba anburies anbury anc ance ancestor ancestored ancestorial ancestorially ancestoring ancestors ancestral ancestrally ancestress ancestresses ancestrial ancestrian ancestries ancestry anchietin anchietine anchieutectic anchimonomineral anchises anchithere anchitherioid ancho anchoic anchor anchorable anchorage anchorages anchorate anchored anchorer anchoress anchoresses anchoret anchoretic anchoretical anchoretish anchoretism anchorets anchorhold anchoring anchorite anchorites anchoritess anchoritic anchoritical anchoritically anchoritish anchoritism anchorless anchorlike anchorman anchormen anchorpeople anchorperson anchorpersons anchors anchorwise anchorwoman anchorwomen anchory anchos anchoveta anchovetas anchovetta anchovettas anchovies anchovy anchusa anchusas anchusin anchusine anchusins anchylose anchylosed anchyloses anchylosing anchylosis anchylostomiases anchylostomiasis anchylotic ancien ancience anciency anciennete anciens ancient ancienter ancientest ancientism anciently ancientness ancientnesses ancientries ancientry ancients ancienty ancile ancilia ancilla ancillae ancillaries ancillary ancillas ancille ancipital ancipitous ancistrocladaceous ancistrodon ancistroid ancle ancles ancodont ancohuma ancoly ancome ancomes ancon ancona anconad anconagra anconal anconas ancone anconeal anconei anconeous ancones anconeus anconitis anconoid ancony ancor ancora ancoral ancra ancraophobia ancre ancress ancresses ancylidae ancylopod ancylose ancylostomatidae ancylostome ancylostomiases ancylostomiasis ancylus ancyroid and anda andabata andabatarian andabatism andalucia andalusia andalusian andalusite andalusites andamenta andamento andamentos andante andantes andantini andantino andantinos andean anded andelmin anders andersen anderson anderun andes andesine andesines andesinite andesite andesites andesitic andesyte andesytes andia anding andira andirin andirine andiroba andiron andirons andor andorite andoroba andorra andorran andosite andouille andouilles andouillet andouillette andouillettes andradite andradites andragogy andranatomy andrarchy andre andreaea andreaeales andrena andrenid andrenidae andrew andrewartha andrewsite andric andricus andrite androcentric androcephalous androcephalum androclclinia androcles androclinia androclinium androclus androconia androconium androcracy androcratic androcyte androdioecious androdioecism androdioecisms androdynamous androeccia androecia androecial androecium androgametangium androgametophore androgamone androgen androgeneses androgenesis androgenetic androgenic androgenization androgenizations androgenize androgenized androgenizes androgenizing androgenous androgens androgeny androginous androglossia androgone androgonia androgonial androgonidium androgonium andrographolide androgyn androgynal androgynary androgyne androgyneity androgynes androgynia androgynic androgynies androgynism androgynous androgynously androgynus androgyny android androidal androides androids androkinin androl androlepsia androlepsy andrologies andrology andromache andromania andromed andromeda andromedas andromedotoxin andromedotoxins andromonoecious andromonoecism andromonoecisms andromorphous andron andronitis andropetalar andropetalous androphagous androphobia androphonomania androphore androphores androphorous androphorum androphyll andropogon androseme androsin androsphinges androsphinx androsphinxes androsporangium androspore androsterone androsterones androtauric androtomy andryala ands andvari andvile andviles ane anear aneared anearing anears aneath anecdota anecdotage anecdotages anecdotal anecdotalism anecdotalisms anecdotalist anecdotalists anecdotally anecdote anecdotes anecdotic anecdotical anecdotically anecdotist anecdotists anecdysis anechoic aneides anelace anelaces anelastic anelasticities anelasticity anele anelectric anelectrode anelectrotonic anelectrotonus aneled aneles aneling anelytrous anematize anematized anematizing anematosis anemia anemias anemic anemically anemious anemobiagraph anemochord anemochore anemochoric anemochorous anemoclastic anemogram anemograms anemograph anemographic anemographically anemographies anemographs anemography anemologic anemological anemologies anemology anemometer anemometers anemometric anemometrical anemometrically anemometries anemometrograph anemometrographic anemometrographically anemometry anemonal anemone anemonella anemones anemonin anemonol anemony anemopathy anemophile anemophilies anemophilous anemophily anemophobia anemophobias anemophobic anemophobics anemopsis anemoscope anemoses anemosis anemotactic anemotaxis anemotropic anemotropism anencephalia anencephalias anencephalic anencephalies anencephalotrophia anencephalous anencephalus anencephaly anend anenergia anenst anent anenterous anepia anepigraphic anepigraphous anepiploic anepithymia anerethisia aneretic anergia anergias anergic anergies anergy anerly anerobic aneroid aneroidograph aneroids anerotic anerythroplasia anerythroplastic anes anesis anesone anesthesia anesthesiant anesthesias anesthesimeter anesthesiologies anesthesiologist anesthesiologists anesthesiology anesthesiometer anesthesis anesthesize anesthetic anesthetically anesthetics anesthetist anesthetists anesthetization anesthetizations anesthetize anesthetized anesthetizer anesthetizes anesthetizing anesthyl anestra anestri anestric anestrous anestrum anestrus anestruses anet anethene anethol anethole anetholes anethols anethum anetic anetiological aneuch aneuploid aneuploidies aneuploids aneuploidy aneuria aneuric aneurilemmic aneurin aneurine aneurins aneurism aneurismal aneurismally aneurismatic aneurisms aneurysm aneurysmal aneurysmally aneurysmatic aneurysms anew anfeeld anfract anfractuose anfractuosities anfractuosity anfractuous anfractuousness anfracture anga angakok angakoks angakut angaralite angareb angareeb angarep angaria angarias angariation angaries angary angas angekkok angekkoks angekok angekoks angekut angel angelate angeldom angeled angeleen angeles angelet angeleyes angelfish angelfishes angelhood angelhoods angelic angelica angelical angelically angelicalness angelicas angelicic angelicise angelicize angelicness angelico angelim angelin angelina angeline angelinformal angeling angelique angelise angelito angelize angelized angelizing angellike angelocracy angelographer angelolater angelolatries angelolatry angelologic angelological angelologies angelologist angelologists angelology angelomachy angelon angelophanic angelophanies angelophany angelot angels angelship angelus angeluses anger angered angering angerless angerly angers angevin angevine angeyok angia angiasthenia angico angicos angiectasis angiectopia angiemphraxis angiitis angild angili angilo angina anginal anginas anginiform anginoid anginophobia anginose anginous angioasthenia angioataxia angioblast angioblastic angiocardiogram angiocardiographic angiocardiographies angiocardiography angiocarditis angiocarp angiocarpian angiocarpic angiocarpous angiocarpy angiocavernous angiocholecystitis angiocholitis angiochondroma angioclast angiocyst angiodermatitis angiodiascopy angioelephantiasis angiofibroma angiogeneses angiogenesis angiogenic angiogeny angioglioma angiogram angiograms angiograph angiographic angiographies angiography angiohemophilia angiohyalinosis angiohydrotomy angiohypertonia angiohypotonia angioid angiokeratoma angiokinesis angiokinetic angioleucitis angiolipoma angiolith angiologies angiologist angiology angiolymphitis angiolymphoma angioma angiomalacia angiomas angiomata angiomatosis angiomatous angiomegaly angiometer angiomyocardiac angiomyoma angiomyosarcoma angioneoplasm angioneurosis angioneurotic angionoma angionosis angioparalysis angioparalytic angioparesis angiopathies angiopathy angiophorous angioplany angioplasties angioplasty angioplerosis angiopoietic angiopressure angiopteris angiorrhagia angiorrhaphy angiorrhea angiorrhexis angiosarcoma angiosarcomas angiosarcomata angiosclerosis angiosclerotic angioscope angiosis angiospasm angiospastic angiosperm angiospermae angiospermal angiospermatous angiospermic angiospermous angiosperms angiosporous angiostegnosis angiostenosis angiosteosis angiostomatous angiostomize angiostomous angiostomy angiostrophy angiosymphysis angiotasis angiotelectasia angiotenosis angiotensin angiotensinase angiotensins angiothlipsis angiotome angiotomy angiotonase angiotonic angiotonin angiotribe angiotripsy angiotrophic angiport angkhak angklung angklungs anglaise angle angleberries angleberry angled angledog angledozer angledozers anglehook anglemeter anglepod anglepods anglepoise anglepoises angler anglerfish anglerfishes anglers angles anglesite anglesites anglesmith angletouch angletwitch anglewing anglewise angleworm angleworms angliae anglian anglians anglican anglicanism anglicanisms anglicans anglice anglicisation anglicisations anglicise anglicised anglicises anglicising anglicism anglicisms anglicist anglicists anglicization anglicizations anglicize anglicized anglicizes anglicizing anglified anglifies anglify anglifying anglimaniac angling anglings anglish anglist anglistics anglists anglo angloid angloman anglomania anglomaniac anglomaniacs anglomanias anglophil anglophile anglophiles anglophilia anglophiliac anglophilias anglophilic anglophilism anglophils anglophily anglophobe anglophobes anglophobia anglophobiac anglophobias anglophobic anglophone anglophones anglophonic anglos ango angoise angola angolan angolans angolar angolese angophora angophoras angor angora angoras angostura angosturas angraecum angrecum angrier angries angriest angrily angriness angrinesses angrite angry angst angster angstrom angstroms angsts anguid anguidae anguifauna anguifaunae anguifaunas anguiform anguilla anguillan anguille anguillidae anguilliform anguilliformes anguilloid anguillula anguillule anguine anguineal anguineous anguiped anguipede anguis anguish anguished anguishes anguishful anguishing anguishous anguishously angula angular angulare angularia angularisation angularise angularities angularity angularization angularize angularly angularness angularnesses angulate angulated angulately angulateness angulatenesses angulates angulating angulation angulations angulatogibbous angulatosinuous angule anguliferous angulinerved angulodentate angulometer angulose angulosity angulosplenial angulous angulus anguria angus anguses angust angustate angustia angusticlave angustifoliate angustifolious angustirostrate angustisellate angustiseptal angustiseptate angustura angwantibo angwantibos angwich anhaematopoiesis anhaematosis anhaemolytic anhalamine anhaline anhalonidine anhalonin anhalonine anhalouidine anhang anharmonic anhedonia anhedonias anhedonic anhedral anhedron anhelation anhelations anhele anhelose anhelous anhematopoiesis anhematosis anhemitonic anhemolytic anhidrosis anhidrotic anhima anhimidae anhinga anhingas anhingidae anhistic anhistous anhungered anhungred anhungry anhyd anhydraemia anhydraemic anhydrate anhydrated anhydrating anhydration anhydremia anhydremic anhydric anhydride anhydrides anhydridisation anhydridise anhydridization anhydridize anhydrite anhydrites anhydrization anhydrize anhydroglocose anhydromyelia anhydrosis anhydrotic anhydrous anhydrously anhydroxime anhysteretic ani anicca aniccas aniconic aniconism aniconisms aniconist aniconists anicteric anicular anicut anicuts anidian anidiomatic anidiomatical anidrosis aniente anientise anigh anight anights anigozanthus anil anilao anilau anile anileness aniler anilest anilic anilid anilide anilidic anilidoxime aniliid anilin anilinctus anilinctuses aniline anilines anilingus anilinguses anilinism anilino anilinophile anilinophilous anilins anilities anility anilla anilopyrin anilopyrine anils anim anima animability animable animableness animacule animadversal animadversion animadversional animadversions animadversive animadversiveness animadvert animadverted animadverter animadverters animadverting animadverts animal animala animalcula animalculae animalcular animalcule animalcules animalculine animalculism animalculisms animalculist animalculists animalculous animalculum animalhood animalia animalian animalic animalier animaliers animalillio animalisation animalisations animalise animalised animalises animalish animalising animalism animalisms animalist animalistic animalists animalities animality animalivore animalivorous animalization animalizations animalize animalized animalizes animalizing animallike animally animalness animals animando animant animas animastic animastical animate animated animatedly animately animateness animatenesses animater animaters animates animatic animatics animating animatingly animation animations animatism animatisms animatist animatistic animative animato animatograph animator animators animatronic animatronics anime animes animetta animi animikite animine animis animised animism animisms animist animistic animists animize animized animo animose animoseness animosities animosity animoso animotheism animous animus animuses anion anionic anionically anionics anions aniridia anis anisado anisal anisalcohol anisaldehyde anisaldoxime anisamide anisandrous anisanilide anisanthous anisate anisated anischuria anise aniseed aniseeds aniseikonia aniseikonias aniseikonic aniselike aniseroot anises anisette anisettes anisic anisidin anisidine anisidino anisil anisilic anisobranchiate anisocarpic anisocarpous anisocercal anisochromatic anisochromia anisocoria anisocotyledonous anisocotyly anisocratic anisocycle anisocytosis anisodactyl anisodactyle anisodactylic anisodactylous anisodont anisogamete anisogametes anisogametic anisogamic anisogamies anisogamous anisogamy anisogenous anisogeny anisognathism anisognathous anisogynous anisoiconia anisoin anisokonia anisol anisole anisoles anisoleucocytosis anisomelia anisomelus anisomeric anisomerous anisometric anisometrope anisometropia anisometropias anisometropic anisomyarian anisomyodian anisomyodous anisopetalous anisophyllous anisophylly anisopia anisopleural anisopleurous anisopod anisopodal anisopodous anisopogonous anisoptera anisopteran anisopterous anisosepalous anisospore anisostaminous anisostemonous anisosthenic anisostichous anisostomous anisotonic anisotremus anisotropal anisotrope anisotropic anisotropical anisotropically anisotropies anisotropism anisotropisms anisotropous anisotropy anisoyl anisum anisuria anisyl anisylidene anither anitinstitutionalism anitos anitrogenous anjan anjou ankara ankaramite ankaratrite ankee anker ankerhold ankerite ankerites ankers ankh ankhs ankle anklebone anklebones ankled anklejack ankles anklet anklets ankling anklong anklongs anklung anklungs ankus ankuses ankush ankusha ankushes ankylenteron ankyloblepharon ankylocheilia ankylodactylia ankylodontia ankyloglossia ankylomele ankylomerism ankylophobia ankylopodia ankylopoietic ankyloproctia ankylorrhinia ankylos ankylosaur ankylosaurs ankylosaurus ankylosauruses ankylose ankylosed ankyloses ankylosing ankylosis ankylostoma ankylostomiases ankylostomiasis ankylotia ankylotic ankylotome ankylotomy ankylurethria ankyroid anlace anlaces anlage anlagen anlages anlas anlases anlaut anlaute anlet anlia anmia ann anna annabergite annabergites annal annale annalia annaline annalise annalised annalises annalising annalism annalist annalistic annalistically annalists annalize annalized annalizes annalizing annals annaly annam annamese annamite annapolis annapurna annary annas annat annates annats annatta annattas annatto annattos anne anneal annealed annealer annealers annealing annealings anneals annect annectant annectent annection annelid annelida annelidan annelidans annelidian annelidous annelids annelism anneloid annerodite annerre annet annex annexa annexable annexal annexation annexational annexationism annexationisms annexationist annexationists annexations annexed annexer annexes annexing annexion annexionist annexions annexitis annexive annexment annexments annexure annexures anni annicut annicuts annidalin annie anniellidae annihil annihilability annihilable annihilate annihilated annihilates annihilating annihilation annihilationism annihilationisms annihilationist annihilationistic annihilationistical annihilations annihilative annihilator annihilators annihilatory annist annite anniv anniversalily anniversaries anniversarily anniversariness anniversary anniverse anno annodated annominate annomination annona annonaceae annonaceous annonas annonce annot annotate annotated annotater annotates annotating annotation annotations annotative annotatively annotativeness annotator annotators annotatory annotine annotinous annotto announce announceable announced announcement announcements announcer announcers announces announcing annoy annoyance annoyancer annoyances annoyed annoyer annoyers annoyful annoying annoyingly annoyingness annoyment annoyous annoyously annoys annoyware annoywares anns annual annualise annualised annualises annualising annualist annualize annualized annualizes annualizing annually annualry annuals annuary annuation annueler annueller annuent annuisance annuitant annuitants annuities annuity annul annular annularities annularity annularly annulars annulary annulata annulate annulated annulately annulates annulation annulations annule annuler annulet annulets annulettee annuli annulism annullable annullate annullation annulled annuller annulli annulling annulment annulments annuloid annuloida annulosa annulosan annulose annuls annulus annuluses annum annumerate annunciable annunciade annunciate annunciated annunciates annunciating annunciation annunciations annunciative annunciator annunciators annunciatory annuntiate annuntiated annuntiates annuntiating annus annwfn annwn anoa anoas anobiidae anobing anocarpous anocathartic anociassociation anociation anocithesia anococcygeal anodal anodally anode anodendron anodes anodic anodically anodine anodisation anodise anodised anodises anodising anodization anodizations anodize anodized anodizes anodizing anodon anodonta anodontia anodos anodyne anodynes anodynia anodynic anodynous anoectochilus anoegenetic anoeses anoesia anoesis anoestra anoestri anoestrous anoestrum anoestrus anoestruses anoetic anogenic anogenital anogramma anoia anoil anoine anoint anointed anointer anointers anointing anointment anointments anoints anole anoles anoli anolian anolis anolyte anolytes anomal anomala anomalies anomaliflorous anomaliped anomalipod anomalism anomalist anomalistic anomalistical anomalistically anomalocephalus anomaloflorous anomalogonatous anomalonomy anomalopidae anomalops anomalopteryx anomaloscope anomalotrophy anomalous anomalously anomalousness anomalousnesses anomalure anomaly anomer anomia anomias anomic anomics anomie anomies anomiidae anomite anomocarpous anomodont anomoeomery anomophyllous anomorhomboid anomorhomboidal anomouran anomphalous anomural anomuran anomurous anomy anon anonaceous anonad anonang anoncillo anonol anons anonychia anonym anonyma anonymas anonyme anonymise anonymised anonymises anonymising anonymities anonymity anonymize anonymized anonymizes anonymizing anonymous anonymously anonymousness anonymousnesses anonyms anonymuncule anoopsia anoopsias anoperineal anophele anopheles anopheleses anopheline anophelines anophoria anophthalmia anophthalmos anophyte anopia anopias anopisthograph anopisthographic anopisthographically anoplocephalic anoplonemertean anoplothere anoplotherioid anoplotheroid anoplura anopluriform anopsia anopsias anopsy anopubic anorak anoraks anorchi anorchia anorchidism anorchism anorchous anorchus anorectal anorectic anorectics anorectous anoretic anoretics anorexia anorexiant anorexias anorexic anorexics anorexies anorexigenic anorexy anorgana anorganic anorganism anorganology anorgasmia anormal anormality anorn anorogenic anorth anorthic anorthite anorthites anorthitic anorthitite anorthoclase anorthographic anorthographical anorthographically anorthography anorthophyre anorthopia anorthoscope anorthose anorthosite anorthosites anorthositic anoscope anoscopy anosmatic anosmia anosmias anosmic anosognosia anosphrasia anosphresia anospinal anostosis anostraca anoterite another anotherguess anotherkins anotia anotropia anotta anotto anotus anough anounou anour anoura anoure anourous anova anovesical anovulant anovulants anovular anovulation anovulations anovulatory anow anoxaemia anoxaemic anoxemia anoxemias anoxemic anoxia anoxias anoxic anoxidative anoxybiosis anoxybiotic anoxyscope anquera anre ans ansa ansae ansaid ansaphone ansaphones ansar ansarian ansate ansated ansation anschauung anschluss anser anserated anseres anseriformes anserin anserinae anserine anserines anserous anshar ansi anspessade anstoss anstosse anstusse ansu ansulate answer answerabilities answerability answerable answerableness answerablenesses answerably answerback answerbacks answered answerer answerers answering answeringly answerless answerlessly answerphone answerphones answers ant anta antabuse antacid antacids antacrid antadiform antae antaean antaeus antagonisable antagonisation antagonisations antagonise antagonised antagoniser antagonises antagonising antagonism antagonisms antagonist antagonistic antagonistical antagonistically antagonists antagonizable antagonization antagonizations antagonize antagonized antagonizer antagonizes antagonizing antagony antal antalgesic antalgic antalgics antalgol antalkali antalkalies antalkaline antalkalis antambulacral antanacathartic antanaclasis antanagoge antananarivo antanemic antapex antapexes antaphrodisiac antaphrodisiacs antaphroditic antapices antapocha antapodosis antapology antapoplectic antar antara antarala antaranga antaras antarchism antarchist antarchistic antarchistical antarchy antarctic antarctica antarctical antarctically antares antars antarthritic antarthritics antas antasphyctic antasthenic antasthmatic antasthmatics antatrophic antbear antbears antbird antbirds antdom ante anteact anteal anteambulate anteambulation anteater anteaters antebaptismal antebath antebellum antebrachia antebrachial antebrachium antebridal antecabinet antecaecal antecardium antecavern antecedal antecedaneous antecedaneously antecede anteceded antecedence antecedences antecedencies antecedency antecedent antecedental antecedently antecedents antecedes anteceding antecell antecessor antecessors antechamber antechambers antechapel antechapels antechoir antechoirs antechurch anteclassical antecloset antecolic antecommunion anteconsonantal antecornu antecourt antecoxal antecubital antecurvature anted antedate antedated antedates antedating antedawn antediluvial antediluvially antediluvian antediluvians antedon antedonidae antedonin antedorsal anteed antefact antefebrile antefix antefixa antefixae antefixal antefixes anteflected anteflexed anteflexion antefurca antefurcae antefurcal antefuture antegarden antegrade antehall antehistoric antehuman antehypophysis anteing anteinitial antejentacular antejudiciary antejuramentum antelabium antelation antelegal antelocation antelope antelopes antelopian antelopine antelucan antelude anteluminary antemarginal antemarital antemask antemedial antemeridian antemetallic antemetic antemillennial antemingent antemortal antemortem antemundane antemural antenarial antenatal antenatalitial antenatally antenati antenatus antenave antenna antennae antennal antennaria antennariid antennariidae antennary antennas antennate antennifer antenniferous antenniform antennula antennular antennulary antennule antennules antenodal antenoon antenumber antenuptial anteoccupation anteocular anteopercle anteoperculum anteorbital antepagment antepagmenta antepagments antepalatal antepartum antepaschal antepaschel antepast antepasts antepatriarchal antepectoral antepectus antependia antependium antependiums antepenuit antepenult antepenultima antepenultimas antepenultimate antepenultimates antepenults antephialtic antepileptic antepirrhema antepone anteporch anteport anteportico anteporticoes anteporticos anteposition anteposthumous anteprandial antepredicament antepredicamental antepreterit antepretonic anteprohibition anteprostate anteprostatic antepyretic antequalm antereformation antereformational anteresurrection anterethic anterevolutional anterevolutionary antergic anteri anteriad anterin anterior anteriorities anteriority anteriorly anteriorness anteriors anterioyancer anteroclusion anterodorsal anteroexternal anterofixation anteroflexion anterofrontal anterograde anteroinferior anterointerior anterointernal anterolateral anterolaterally anteromedial anteromedian anteroom anterooms anteroparietal anteroposterior anteroposteriorly anteropygal anterospinal anterosuperior anteroventral anteroventrally antes antescript antesignani antesignanus antespring antestature antesternal antesternum antesunrise antesuperior antetemple antethem antetype antetypes antevenient anteversion anteversions antevert anteverted anteverting anteverts antevocalic antewar anthdia anthecological anthecologist anthecology anthela anthelae anthelia anthelices anthelion anthelions anthelix anthelixes anthelminthic anthelminthics anthelmintic anthelmintics anthem anthema anthemas anthemata anthemed anthemene anthemia anthemic antheming anthemion anthemis anthems anthemwise anthemy anther antheraea antheral anthericum antherid antheridia antheridial antheridiophore antheridium antheridiums antherids antheriferous antheriform antherine antherless antherogenous antheroid antheropeas antherozoid antherozoidal antherozoids antherozooid antherozooidal antherozooids anthers anthersmut anthersmuts antheses anthesis anthesterin anthesterol antheximeter anthidium anthill anthills anthine anthobian anthobiology anthocarp anthocarpous anthocarps anthocephalous anthoceropsida anthoceros anthocerotaceae anthocerotales anthocerote anthochlor anthochlore anthochlores anthochlorine anthoclinium anthocyan anthocyanidin anthocyanin anthocyanins anthocyans anthodia anthodium anthoecological anthoecologist anthoecology anthogenesis anthogenetic anthogenous anthography anthoid anthokyan anthol antholite anthological anthologically anthologies anthologion anthologise anthologised anthologiser anthologises anthologising anthologist anthologists anthologize anthologized anthologizer anthologizers anthologizes anthologizing anthology antholysis anthomania anthomaniac anthomaniacs anthomanias anthomedusan anthomyiid anthonomus anthony anthood anthophagous anthophagy anthophile anthophilian anthophilous anthophobia anthophore anthophores anthophorous anthophyllite anthophyllites anthophyllitic anthophyta anthophyte anthorine anthos anthosiderite anthotaxis anthotaxy anthotropic anthotropism anthoxanthin anthoxanthins anthozoa anthozoan anthozoans anthozoic anthozooid anthozoon anthracaemia anthracemia anthracene anthracenes anthraceniferous anthraces anthrachrysone anthracia anthracic anthraciferous anthracin anthracite anthracites anthracitic anthracitiferous anthracitious anthracitisation anthracitism anthracitization anthracitous anthracnose anthracnoses anthracnosis anthracocide anthracoid anthracolithic anthracomancy anthracomartian anthracometer anthracometric anthraconecrosis anthraconite anthracoses anthracosilicosis anthracosis anthracothere anthracotic anthracoxen anthracyl anthradiol anthradiquinone anthraflavic anthragallol anthrahydroquinone anthralin anthramin anthramine anthranil anthranilate anthranilates anthranilic anthranol anthranone anthranoyl anthranyl anthraphenone anthrapurpurin anthrapyridine anthraquinol anthraquinone anthraquinones anthraquinonyl anthrarufin anthrasilicosis anthratetrol anthrathiophene anthratriol anthrax anthraxes anthraxolite anthraxylon anthribid anthriscus anthrohopobiological anthroic anthrol anthrone anthrop anthrophore anthropic anthropical anthropobiologies anthropobiologist anthropobiology anthropocentric anthropocentrically anthropocentricities anthropocentricity anthropocentrism anthropocentrisms anthropoclimatologist anthropoclimatology anthropocosmic anthropodeoxycholic anthropogeneses anthropogenesis anthropogenetic anthropogenic anthropogenically anthropogenies anthropogenist anthropogenous anthropogeny anthropogeographer anthropogeographic anthropogeographical anthropogeographies anthropogeography anthropoglot anthropogonies anthropogony anthropographic anthropographies anthropography anthropoid anthropoidal anthropoidea anthropoidean anthropoids anthropol anthropolater anthropolatric anthropolatries anthropolatry anthropolite anthropolith anthropolithic anthropolitic anthropologic anthropological anthropologically anthropologies anthropologist anthropologists anthropology anthropomancy anthropomantic anthropomantist anthropometer anthropometric anthropometrical anthropometrically anthropometries anthropometrist anthropometrists anthropometry anthropomophitism anthropomorph anthropomorphic anthropomorphical anthropomorphically anthropomorphisation anthropomorphisations anthropomorphise anthropomorphised anthropomorphises anthropomorphising anthropomorphism anthropomorphisms anthropomorphist anthropomorphists anthropomorphite anthropomorphites anthropomorphitic anthropomorphitical anthropomorphitism anthropomorphitisms anthropomorphization anthropomorphizations anthropomorphize anthropomorphized anthropomorphizes anthropomorphizing anthropomorphological anthropomorphologically anthropomorphology anthropomorphoses anthropomorphosis anthropomorphotheist anthropomorphous anthropomorphously anthropomorphs anthroponomical anthroponomics anthroponomist anthroponomy anthroponym anthropopathia anthropopathic anthropopathically anthropopathies anthropopathism anthropopathisms anthropopathite anthropopathy anthropophagi anthropophagic anthropophagical anthropophagies anthropophaginian anthropophaginians anthropophagism anthropophagist anthropophagistic anthropophagit anthropophagite anthropophagites anthropophagize anthropophagous anthropophagously anthropophagus anthropophagy anthropophilous anthropophobia anthropophobias anthropophobic anthropophobics anthropophuism anthropophuisms anthropophuistic anthropophysiography anthropophysite anthropophyte anthropophytes anthropopithecus anthropopsychic anthropopsychically anthropopsychism anthropopsychisms anthroposcopy anthroposociologist anthroposociology anthroposomatology anthroposophic anthroposophical anthroposophies anthroposophist anthroposophists anthroposophy anthropoteleoclogy anthropoteleological anthropotheism anthropotheist anthropotheistic anthropotomical anthropotomies anthropotomist anthropotomy anthropotoxin anthropozoic anthropurgic anthroropolith anthroxan anthroxanic anthryl anthrylene anththeridia anthurium anthuriums anthus anthyllis anthypnotic anthypophora anthypophoretic anti antiabolitionist antiabortion antiabortionist antiabortionists antiabrasion antiabrin antiabsolutist antiacademic antiacademics antiacid antiadiaphorist antiaditis antiaditises antiadministration antiadrenergic antiadrenergics antiae antiaesthetic antiager antiagglutinant antiagglutinating antiagglutination antiagglutinative antiagglutinin antiaggression antiaggressionist antiaggressive antiaggressively antiaggressiveness antiaging antiair antiaircraft antiaircrafts antialbumid antialbumin antialbumose antialcohol antialcoholic antialcoholism antialcoholisms antialcoholist antialdoxime antialexin antialiasing antialiasings antialien antiallergenic antiallergenics antiallergic antiamboceptor antiamusement antiamylase antianaphylactogen antianaphylaxis antianarchic antianarchist antianemia antiangular antiannexation antiannexationist antianopheline antianthrax antianthropocentric antianthropomorphism antiantibodies antiantibody antiantidote antiantienzyme antiantitoxin antianxiety antiapartheid antiapartheids antiaphrodisiac antiaphrodisiacs antiaphthic antiapoplectic antiapostle antiaquatic antiar antiarin antiarins antiaristocracies antiaristocracy antiaristocrat antiaristocratic antiaristocratical antiaristocratically antiarrhythmic antiarrhythmics antiars antiarthritic antiarthritics antiarthritis antiascetic antiassimilation antiassimilations antiasthma antiasthmatic antiasthmatics antiastronomical antiatheism antiatheist antiatheistic antiatheistical antiatheistically antiatom antiatoms antiatonement antiattrition antiauthoritarian antiauthoritarianism antiauthoritarianisms antiauthority antiautolysin antiauxin antiauxins antibacchic antibacchii antibacchius antibacchiuses antibacklash antibacterial antibacterials antibacteriolytic antiballistic antiballooner antibalm antibank antibarbarus antibarbaruses antibaryon antibaryons antibasilican antibenzaldoxime antiberiberin antibias antibibliolatry antibigotry antibilious antibillboard antibiont antibioses antibiosis antibiotic antibiotically antibiotics antibishop antiblack antiblackism antiblackisms antiblastic antiblennorrhagic antiblock antiblue antibodies antibody antiboss antibourgeois antiboxing antiboycott antiboycotts antibrachial antibreakage antibridal antibromic antibubonic antibug antibureaucratic antiburgher antiburglar antiburglary antibusiness antibusing antic antica anticachectic anticaking antical anticalcimine anticalculous anticalligraphic antically anticamera anticancer anticancerous anticapital anticapitalism anticapitalisms anticapitalist anticapitalistic anticapitalistically anticapitalists anticar anticarcinogen anticarcinogenic anticarcinogens anticardiac anticardium anticaries anticarious anticarnivorous anticaste anticatalase anticatalyser anticatalyst anticatalysts anticatalytic anticatalytically anticatalyzer anticatarrhal anticathexis anticathode anticathodes anticatholic anticausotic anticaustic anticellulite anticensorial anticensorious anticensoriously anticensoriousness anticensorship anticentralisation anticentralism anticentralist anticentralization anticephalalgic anticeremonial anticeremonialism anticeremonialist anticeremonially anticeremonious anticeremoniously anticeremoniousness antichamber antichance anticheater antichlor antichlorine antichloristic antichlorotic antichlors anticholagogue anticholesterol anticholinergic anticholinergics anticholinesterase anticholinesterases antichoromanic antichorus antichreses antichresis antichretic antichrist antichristian antichristianism antichristianisms antichristianity antichristianly antichrists antichrome antichronical antichronically antichronism antichthon antichthones antichurch antichurchian antichymosin anticigarette anticipant anticipants anticipatable anticipate anticipated anticipates anticipating anticipatingly anticipation anticipations anticipative anticipatively anticipator anticipatorily anticipators anticipatory anticise anticises anticity anticivic anticivil anticivilian anticivism anticivisms anticize anticized anticizes anticizing antick anticke anticked anticker antickes anticking anticks antickt anticlactic anticlassical anticlassicalism anticlassicalist anticlassically anticlassicalness anticlassicism anticlassicist anticlastic anticlergy anticlerical anticlericalism anticlericalisms anticlericalist anticlericalists anticlericals anticlimactic anticlimactical anticlimactically anticlimax anticlimaxes anticlinal anticlinals anticline anticlines anticling anticlinoria anticlinorium anticlinoriums anticlnoria anticlockwise anticlogging anticlotting anticly anticnemion anticness anticoagulan anticoagulant anticoagulants anticoagulate anticoagulating anticoagulation anticoagulative anticoagulator anticoagulin anticodon anticodons anticogitative anticoincidence anticold anticolic anticollision anticolonial anticolonialism anticolonialisms anticolonialist anticolonialists anticolonials anticombination anticomet anticomment anticommercial anticommercialism anticommercialisms anticommercialist anticommercialistic anticommerciality anticommercially anticommercialness anticommunism anticommunisms anticommunist anticommunistic anticommunistical anticommunistically anticommunists anticommutative anticompetitive anticomplement anticomplementary anticomplex anticonceptionist anticonductor anticonfederationism anticonfederationist anticonfederative anticonformist anticonformities anticonformity anticonglomerate anticonscience anticonscription anticonscriptive anticonservation anticonservationist anticonservationists anticonservations anticonservatism anticonservative anticonservatively anticonservativeness anticonstitution anticonstitutional anticonstitutionalism anticonstitutionalist anticonstitutionally anticonsumer anticonsumers anticontagion anticontagionist anticontagious anticontagiously anticontagiousness anticonvellent anticonvention anticonventional anticonventionalism anticonventionalist anticonventionally anticonvulsant anticonvulsants anticonvulsive anticonvulsives anticor anticorn anticorona anticorporate anticorrosion anticorrosive anticorrosively anticorrosiveness anticorrosives anticorruption anticorruptions anticorset anticosine anticosmetic anticosmetics anticouncil anticounterfeiting anticourt anticourtier anticous anticovenanter anticovenanting anticrack anticreation anticreational anticreationism anticreationist anticreative anticreatively anticreativeness anticreativity anticreator anticreep anticreeper anticreeping anticrepuscular anticrepuscule anticrime anticrisis anticritic anticritical anticritically anticriticalness anticritique anticrochet anticrotalic anticruelty anticryptic anticryptically antics anticularia anticult anticults anticultural anticum anticus anticyclic anticyclical anticyclically anticyclogenesis anticyclolysis anticyclone anticyclones anticyclonic anticyclonically anticynic anticynical anticynically anticynicism anticytolysin anticytotoxin antidactyl antidancing antidandruff antidecalogue antidefamation antideflation antidemocracies antidemocracy antidemocrat antidemocratic antidemocratical antidemocratically antidemoniac antidepressant antidepressants antidepression antidepressions antidepressive antidepressives antiderivative antiderivatives antidesegregation antidesertification antidesiccant antidesiccants antidetonant antidetonating antidevelopment antidiabetic antidiabetics antidiarrheal antidiarrheals antidiastase antidicomarianite antidictionary antidiffuser antidilution antidinic antidiphtheria antidiphtheric antidiphtherin antidiphtheritic antidisciplinarian antidiscrimination antidisestablishmentarian antidisestablishmentarianism antidisestablishmentarianisms antidiuretic antidiuretics antidivine antidivorce antido antidogmatic antidogmatical antidogmatically antidogmatism antidogmatist antidomestic antidomestically antidominican antidora antidorcas antidoron antidotal antidotally antidotary antidote antidoted antidotes antidotical antidotically antidoting antidotism antidraft antidrag antidromal antidromic antidromically antidromous antidromy antidrug antiduke antidumping antidynamic antidynastic antidynastical antidynastically antidynasty antidyscratic antidysenteric antidysuric antieavesdropping antiecclesiastic antiecclesiastical antiecclesiastically antiecclesiasticism antieconomic antiedemic antieducation antieducational antieducationalist antieducationally antieducationist antiegalitarian antiegoism antiegoist antiegoistic antiegoistical antiegoistically antiegotism antiegotist antiegotistic antiegotistical antiegotistically antiejaculation antielectron antielectrons antielite antielites antielitism antielitisms antielitist antielitists antiemetic antiemetics antiemperor antiempiric antiempirical antiempirically antiempiricism antiempiricist antiendotoxin antiendowment antienergistic antient antienthusiasm antienthusiast antienthusiastic antienthusiastically antientropic antients antienvironmentalism antienvironmentalist antienvironmentalists antienzymatic antienzyme antienzymic antiepicenter antiepicentre antiepilepsy antiepileptic antiepileptics antiepiscopal antiepiscopist antiepithelial antierosion antierosive antierotic antierysipelas antiestablishment antiestablishmentarian antiestablishmentarianism antiestablishmentarianisms antiestablishmentarians antiestrogen antiestrogens antiethnic antieugenic antievangelical antievolution antievolutional antievolutionally antievolutionary antievolutionism antievolutionisms antievolutionist antievolutionistic antievolutionists antiexpansion antiexpansionism antiexpansionist antiexporting antiexpressionism antiexpressionist antiexpressionistic antiexpressive antiexpressively antiexpressiveness antiextreme antieyestrain antiface antifaction antifame antifamily antifanatic antifascism antifascisms antifascist antifascists antifashion antifashionable antifashions antifat antifatigue antifebrile antifebriles antifebrin antifederal antifederalism antifederalisms antifederalist antifederalists antifelon antifelony antifemale antifeminine antifeminism antifeminisms antifeminist antifeministic antifeminists antiferment antifermentative antiferroelectric antiferromagnet antiferromagnetic antiferromagnetically antiferromagnetism antiferromagnetisms antiferromagnets antifertiliser antifertility antifertilizer antifeudal antifeudalism antifeudalist antifeudalistic antifeudalization antifibrinolysin antifibrinolysis antifideism antifilibuster antifilibusters antifire antiflash antiflattering antiflatulent antiflu antifluoridationist antifluoridationists antiflux antifoam antifoaming antifog antifoggant antifogging antifogmatic antiforeclosure antiforeign antiforeigner antiforeignism antiformalist antiformalists antiformant antiformin antifouler antifouling antifoulings antifowl antifraud antifreeze antifreezes antifreezing antifriction antifrictional antifrictions antifrost antifundamentalism antifundamentalist antifungal antifungals antifungin antifungus antifur antigalactagogue antigalactic antigambling antiganting antigay antigen antigene antigenes antigenic antigenically antigenicities antigenicity antigens antighostism antigigmanic antiglare antiglobulin antiglobulins antiglyoxalase antignostic antignostical antigod antigone antigonia antigonococcic antigonorrheal antigonorrheic antigonus antigorite antigovernment antigovernmental antigovernmentally antigraft antigram antigrammatical antigrammatically antigrammaticalness antigraph antigraphy antigravitate antigravitation antigravitational antigravitationally antigravities antigravity antigropeloes antigropelos antigrowth antigua antiguan antiguerilla antiguerrilla antiguerrillas antiguggler antigun antiguns antigyrous antihalation antihalations antiharmonist antihectic antihelices antihelix antihelixes antihelminthic antihemagglutinin antihemisphere antihemoglobin antihemolysin antihemolytic antihemophilic antihemorrhagic antihemorrheidal antihero antiheroes antiheroic antiheroine antiheroines antiheroism antiheroisms antiherpes antiheterolysin antihidrotic antihierarchal antihierarchic antihierarchical antihierarchically antihierarchies antihierarchism antihierarchist antihierarchy antihijack antihistamine antihistamines antihistaminic antihistaminics antihistorical antiholiday antihomosexual antihormone antihuff antihum antihuman antihumanism antihumanisms antihumanist antihumanistic antihumanitarian antihumanitarians antihumanity antihumbuggist antihunter antihunting antihuntings antihydrophobic antihydropic antihydropin antihygienic antihygienically antihylist antihypertensive antihypertensives antihypnotic antihypnotically antihypochondriac antihypophora antihysteric antihysterics antiinflammatories antiinflammatory antiinstitutionalist antiinstitutionalists antiinsurrectionally antiinsurrectionists antijacobin antijacobins antijam antijamming antijammings antikathode antikenotoxin antiketogen antiketogenesis antiketogenic antikickback antikinase antiking antikings antiknock antiknocks antilabor antilaborist antilabour antilacrosse antilacrosser antilactase antilapsarian antilapse antileague antileak antileft antilegalist antilegomena antilemic antilens antileprosy antilepsis antileptic antilepton antileptons antilethargic antileukemic antileveling antilevelling antiliberal antiliberalism antiliberalisms antiliberalist antiliberalistic antiliberally antiliberalness antiliberals antilibertarian antilibertarians antilibration antilife antilift antilipase antilipoid antiliquor antiliterate antiliterates antilithic antilitter antilittering antiliturgic antiliturgical antiliturgically antiliturgist antiliturgy antilles antilobium antilocapra antilocapridae antilock antiloemic antilog antilogarithm antilogarithmic antilogarithms antilogic antilogical antilogies antilogism antilogistic antilogistically antilogous antilogs antilogy antiloimic antilope antilopine antiloquy antilottery antiluetic antiluetin antilynching antilysin antilysis antilyssic antilytic antimacassar antimacassars antimachination antimachine antimachinery antimacho antimagistratical antimagnetic antimalaria antimalarial antimalarials antimale antimales antimallein antiman antimanagement antimanagements antimaniac antimaniacal antimarijuana antimark antimarket antimartyr antimask antimasker antimasks antimason antimasque antimasquer antimasquerade antimasques antimaterialism antimaterialisms antimaterialist antimaterialistic antimaterialistically antimaterialists antimatrimonial antimatrimonialist antimatter antimatters antimechanism antimechanist antimechanistic antimechanistically antimechanists antimechanization antimediaeval antimediaevalism antimediaevalist antimediaevally antimedical antimedically antimedication antimedicative antimedicine antimedieval antimedievalism antimedievalist antimedievally antimelancholic antimellin antimeningococcic antimensia antimension antimensium antimephitic antimere antimeres antimerger antimerging antimeric antimerism antimeristem antimesia antimeson antimetabole antimetaboles antimetabolic antimetabolics antimetabolite antimetabolites antimetaphysical antimetatheses antimetathesis antimetathetic antimeter antimethod antimethodic antimethodical antimethodically antimethodicalness antimetrical antimetropia antimetropic antimiasmatic antimicrobial antimicrobials antimicrobic antimilitarism antimilitarisms antimilitarist antimilitaristic antimilitaristically antimilitarists antimilitary antiministerial antiministerialist antiministerially antiminsia antiminsion antimiscegenation antimissile antimissiles antimission antimissionary antimissioner antimitotic antimitotics antimixing antimnemonic antimnemonics antimodel antimodern antimodernism antimodernist antimodernistic antimodernists antimodernization antimodernly antimodernness antimoderns antimonarch antimonarchal antimonarchally antimonarchial antimonarchic antimonarchical antimonarchically antimonarchicalness antimonarchism antimonarchist antimonarchistic antimonarchists antimonarchy antimonate antimonates antimonial antimonials antimoniate antimoniated antimoniates antimonic antimonid antimonide antimonides antimonies antimoniferous antimonious antimonite antimonites antimonium antimoniuret antimoniureted antimoniuretted antimonopolism antimonopolist antimonopolistic antimonopolists antimonopolization antimonopoly antimonous antimonsoon antimony antimonyl antimoral antimoralism antimoralist antimoralistic antimorality antimosquito antimuon antimusical antimusically antimusicalness antimutagen antimutagens antimycin antimycins antimycotic antimystic antimystical antimystically antimysticalness antimysticism antimythic antimythical antinarcotic antinarcotics antinarrative antinational antinationalism antinationalist antinationalistic antinationalistically antinationalists antinationalization antinationally antinatural antinaturalism antinaturalist antinaturalistic antinaturally antinaturalness antinature antinatures antinausea antinegro antinegroism antineologian antineoplastic antineoplastics antinephritic antinephritics antinepotic antinepotism antinepotisms antineuralgic antineuritic antineurotoxin antineutral antineutralism antineutrality antineutrally antineutrino antineutrinos antineutron antineutrons anting antinganting antings antinial antinicotine antinihilism antinihilist antinihilistic antinion antinodal antinode antinodes antinoise antinomasia antinome antinomes antinomian antinomianism antinomianisms antinomians antinomic antinomical antinomies antinomist antinomy antinoness antinormal antinormality antinormalness antinosarian antinovel antinovelist antinovelists antinovels antinuclear antinucleon antinucleons antinuke antinuker antinukers antinukes antiobesities antiobesity antiobscenities antiobscenity antiochianism antiodont antiodontalgic antiodontalgics antiopelmous antiophthalmic antiopium antiopiumist antiopiumite antioptimism antioptimist antioptimistic antioptimistical antioptimistically antioptionist antiorganization antiorganizations antiorgastic antiorthodox antiorthodoxly antiorthodoxy antioxidant antioxidants antioxidase antioxidiser antioxidising antioxidizer antioxidizing antioxygen antioxygenating antioxygenation antioxygenator antioxygenic antiozonant antiozonants antipacifism antipacifist antipacifistic antipacifists antipapacy antipapal antipapalist antipapism antipapist antipapistic antipapistical antiparabema antiparabemata antiparagraphe antiparagraphic antiparallel antiparallelogram antiparallels antiparalytic antiparalytical antiparasitic antiparasitical antiparasitically antiparasitics antiparastatitis antiparliament antiparliamental antiparliamentarian antiparliamentarians antiparliamentarist antiparliamentary antiparliamenteer antipart antiparticle antiparticles antiparty antipass antipasti antipastic antipasto antipastos antipatharian antipathetic antipathetical antipathetically antipatheticalness antipathic antipathies antipathise antipathist antipathists antipathize antipathogen antipathogene antipathogenic antipathy antipatriarch antipatriarchal antipatriarchally antipatriarchy antipatriot antipatriotic antipatriotically antipatriotism antipedal antipeduncular antipellagric antipendium antipepsin antipeptone antiperiodic antiperiodics antiperistalses antiperistalsis antiperistaltic antiperistases antiperistasis antiperistatic antiperistatical antiperistatically antipersonnel antiperspirant antiperspirants antiperthite antipesticide antipestilence antipestilent antipestilential antipestilently antipetalous antipewism antiphagocytic antipharisaic antipharmic antiphase antiphiloprogenitive antiphilosophic antiphilosophical antiphilosophically antiphilosophies antiphilosophism antiphilosophy antiphlogistian antiphlogistic antiphlogistics antiphlogistin antiphon antiphona antiphonal antiphonally antiphonals antiphonaries antiphonary antiphoner antiphoners antiphonetic antiphonic antiphonical antiphonically antiphonies antiphonon antiphons antiphony antiphrases antiphrasis antiphrastic antiphrastical antiphrastically antiphthisic antiphthisical antiphylloxeric antiphysic antiphysical antiphysically antiphysicalness antiphysician antipill antipills antipiracies antipiracy antiplague antiplagues antiplanet antiplaque antiplastic antiplatelet antipleasure antipleasures antipleion antiplenist antiplethoric antipleuritic antiplurality antipneumococcic antipoaching antipodagric antipodagron antipodal antipodals antipode antipodean antipodeans antipodes antipodic antipodism antipodist antipoetic antipoetical antipoetically antipoints antipolar antipole antipolemist antipoles antipolice antipolitical antipolitically antipolitics antipollution antipollutionist antipollutionists antipollutions antipolo antipolygamy antipolyneuritic antipool antipooling antipope antipopery antipopes antipopular antipopularization antipopulationist antipopulism antiporn antipornographic antipornography antiportable antiposition antipot antipoverty antipragmatic antipragmatical antipragmatically antipragmaticism antipragmatism antipragmatist antiprecipitin antipredator antipredators antipredeterminant antiprelate antiprelatic antiprelatism antiprelatist antipreparedness antipress antiprestidigitation antipriest antipriestcraft antipriesthood antiprime antiprimer antipriming antiprinciple antiprism antiproductionist antiproductive antiproductively antiproductiveness antiproductivity antiprofiteering antiprogressive antiprohibition antiprohibitionist antiprojectivity antiprophet antiprostate antiprostatic antiprostitution antiprotease antiproteolysis antiproton antiprotons antiprotozoal antiprudential antipruritic antipruritics antipsalmist antipsoric antipsychiatry antipsychotic antipsychotics antiptosis antipudic antipuritan antiputrefaction antiputrefactive antiputrescent antiputrid antipyic antipyics antipyonin antipyreses antipyresis antipyretic antipyretics antipyrin antipyrine antipyrines antipyrotic antipyryl antiq antiqua antiquarian antiquarianise antiquarianism antiquarianisms antiquarianize antiquarianly antiquarians antiquaries antiquarism antiquarium antiquark antiquarks antiquartan antiquary antiquate antiquated antiquatedness antiquatednesses antiquates antiquating antiquation antiquations antique antiqued antiquely antiqueness antiquenesses antiquer antiquers antiques antiquing antiquist antiquitarian antiquitarians antiquities antiquity antiquum antirabic antirabies antiracemate antiracer antirachitic antirachitically antirachitics antiracial antiracially antiracing antiracism antiracisms antiracist antiracists antiracketeering antiradar antiradiant antiradiating antiradiation antiradical antiradicalism antiradicalisms antiradically antiradicals antirailwayist antirape antirapes antirational antirationalism antirationalisms antirationalist antirationalistic antirationalists antirationalities antirationality antirationally antirattler antireacting antireaction antireactionaries antireactionary antireactive antirealism antirealisms antirealist antirealistic antirealistically antirealists antireality antirebating antirecession antirecessionary antirecessions antirecruiting antired antiredeposition antireducer antireducing antireduction antireductionism antireductionisms antireductionist antireductionists antireductive antireflection antireflective antireflexive antireform antireformer antireforming antireformist antiregulatory antirejection antireligion antireligionist antireligiosity antireligious antireligiously antiremonstrant antirennet antirennin antirent antirenter antirentism antirepublican antirepublicanism antireservationist antiresonance antiresonator antirestoration antireticular antirevisionist antirevolution antirevolutionaries antirevolutionary antirevolutionist antirheumatic antirheumatics antiricin antirickets antiriot antiriots antiritual antiritualism antiritualisms antiritualist antiritualistic antirobbery antirobin antirock antiroll antiromance antiromantic antiromanticism antiromanticisms antiromanticist antiromantics antiroyal antiroyalism antiroyalist antiroyalists antirrhinum antirrhinums antirumor antirumour antirun antirust antirusts antis antisabbatarian antisacerdotal antisacerdotalist antisag antisaloon antisalooner antisatellite antisavage antiscabious antiscale antisceptic antisceptical antiscepticism antischizophrenia antischizophrenic antischolastic antischolastically antischolasticism antischool antiscia antiscian antiscians antiscience antisciences antiscientific antiscientifically antiscii antiscion antiscolic antiscorbutic antiscorbutical antiscorbutics antiscriptural antiscripturism antiscrofulous antisecrecy antisegregation antiseismic antiseizure antiselene antisemite antisemitic antisemitism antisense antisensitiser antisensitivity antisensitizer antisensitizing antisensuality antisensuous antisensuously antisensuousness antisentimental antisepalous antiseparatist antiseparatists antisepses antisepsin antisepsis antiseptic antiseptical antiseptically antisepticise antisepticised antisepticises antisepticising antisepticism antisepticisms antisepticist antisepticize antisepticized antisepticizes antisepticizing antiseptics antiseption antiseptise antiseptize antisera antiserum antiserums antiserumsera antisex antisexism antisexisms antisexist antisexists antisexual antisexualities antisexuality antishark antiship antishipping antishock antishoplifting antisialagogue antisialic antisiccative antisideric antisilverite antisimoniacal antisine antisiphon antisiphonal antiskeptic antiskeptical antiskepticism antiskid antiskidding antislaveries antislavery antislaveryism antisleep antislickens antislip antismog antismoke antismoker antismokers antismoking antismuggling antismut antisnapper antisnob antisnobs antisocial antisocialism antisocialisms antisocialist antisocialistic antisocialistically antisocialists antisocialities antisociality antisocially antisolar antisophism antisophist antisophistic antisophistication antisophistry antisoporific antispace antispadix antispasis antispasmodic antispasmodics antispast antispastic antispasts antispectroscopic antispeculation antispeculative antispending antispermotoxin antispiritual antispiritualism antispiritualist antispiritualistic antispiritually antispirochetic antisplasher antisplenetic antisplitting antispreader antispreading antisquama antisquatting antistadholder antistadholderian antistalling antistaphylococcic antistat antistate antistater antistatic antistatics antistatism antistatist antistats antisteapsin antisterility antistes antistick antistimulant antistimulation antistock antistories antistory antistreptococcal antistreptococcic antistreptococcin antistreptococcus antistress antistrike antistriker antistrophal antistrophe antistrophes antistrophic antistrophically antistrophize antistrophon antistrophons antistrumatic antistrumous antistudent antisubmarine antisubsidy antisubstance antisubversion antisubversions antisubversive antisubversives antisudoral antisudorific antisuffrage antisuffragist antisuicide antisun antisupernatural antisupernaturalism antisupernaturalist antisupernaturalistic antisurplician antisymmetric antisymmetrical antisymmetry antisyndicalism antisyndicalist antisyndication antisynod antisyphilitic antisyphilitics antisyphillis antisyphon antisyzygies antisyzygy antitabetic antitabloid antitakeover antitangent antitank antitarnish antitarnishing antitartaric antitauon antitax antitaxation antitechnological antitechnologies antitechnology antiteetotalism antitegula antitemperance antiterrorism antiterrorisms antiterrorist antiterrorists antitetanic antitetanolysin antithalian antitheft antitheism antitheisms antitheist antitheistic antitheistical antitheistically antitheists antithenar antitheologian antitheological antitheologizing antitheology antitheoretical antithermic antithermin antitheses antithesis antithesise antithesism antithesize antithet antithetic antithetical antithetically antithetics antithets antithrombic antithrombin antithrombins antithyroid antitintinnabularian antitobacco antitobacconal antitobacconist antitonic antitorpedo antitotalitarian antitoxic antitoxin antitoxine antitoxins antitrade antitrades antitradition antitraditional antitraditionalist antitraditionally antitragal antitragi antitragic antitragicus antitragus antitrinitarian antitrinitarianism antitrinitarianisms antitrinitarians antitrismus antitrochanter antitropal antitrope antitropic antitropical antitropous antitropy antitrust antitruster antitrusters antitrypsin antitryptic antitubercular antituberculin antituberculosis antituberculotic antituberculous antitumor antitumoral antiturnpikeism antitussive antitussives antitwilight antitypal antitype antitypes antityphoid antitypic antitypical antitypically antitypous antitypy antityrosinase antiuating antiulcer antiunemployment antiunion antiunionist antiuniversities antiuniversity antiuratic antiurban antiurease antiusurious antiutilitarian antiutilitarianism antivaccination antivaccinationism antivaccinationisms antivaccinationist antivaccinationists antivaccinator antivaccinist antivandalism antivariolous antivenefic antivenene antivenenes antivenereal antivenin antivenine antivenins antivenom antivenomous antivenoms antivermicular antivert antivibrating antivibrator antivibratory antivice antiviolence antiviral antivirals antivirotic antivirus antivitalist antivitalistic antivitamin antivitamins antivivisection antivivisectionism antivivisectionisms antivivisectionist antivivisectionists antivivisections antivolition antiwar antiwarlike antiwaste antiwear antiwedge antiweed antiwelfare antiwhaling antiwhite antiwhitism antiwiretapping antiwit antiwoman antiworld antiwrinkle antixerophthalmic antizealot antizoea antizymic antizymotic antjar antler antlered antlerite antlerless antlers antlia antliae antliate antlike antling antlion antlions antlophobia antluetic antocular antodontalgic antoeci antoecian antoecians antofagasta antoinette antoniniani antoninianus antoninianuses antonio antonomasia antonomasias antonomastic antonomastical antonomastically antonomasy antonovics antony antonym antonymic antonymies antonymous antonyms antonymy antorbital antozone antozonite antproof antra antral antralgia antre antrectomy antres antrin antritis antrocele antronasal antrophore antrophose antrorse antrorsely antroscope antroscopy antrotome antrotomy antrotympanic antrotympanitis antroversion antrovert antrozous antrum antrums antrustion antrustionship ants antship antshrike antsier antsiest antsigne antsy antthrush antu antum antwerp antwerpen antwise anu anubin anubing anubis anucleate anucleated anukabiet anuloma anulus anunder anunnaki anura anural anuran anurans anureses anuresis anuretic anuria anurias anuric anurous anury anus anuses anusim anusvara anutraminosa anvasser anvers anvil anviled anviling anvilled anvilling anvils anvilsmith anviltop anviltops anxieties anxietude anxiety anxiolytic anxiolytics anxious anxiously anxiousness anxiousnesses any anybodies anybody anybodyd anyhow anymore anyon anyone anyones anyons anyplace anyroad anything anythingarian anythingarianism anythingarianisms anythingarians anythings anytime anyu anyus anyway anyways anywhen anywhence anywhere anywhereness anywheres anywhither anywhy anywise anywither anzac anziani aob aogiri aoli aona aonach aonian aor aorist aoristic aoristically aorists aoritis aorta aortae aortal aortarctia aortas aortectasia aortectasis aortic aorticorenal aortism aortitis aortitises aortoclasia aortoclasis aortographic aortographies aortography aortoiliac aortolith aortomalacia aortomalaxis aortopathy aortoptosia aortoptosis aortorrhaphy aortosclerosis aortostenosis aortotomy aosmic aotus aouad aouads aoudad aoudads ap apa apabhramsa apace apache apaches apachism apachite apadana apadanas apaesthesia apaesthetic apaesthetize apaestically apage apagoge apagoges apagogic apagogical apagogically apagogue apaid apair apaise apalachicola apalit apanage apanaged apanages apanaging apandry apanthropia apanthropy apar aparaphysate aparavidya apardon aparejo aparejos aparithmesis aparitif aparitifs apart apartado apartheid apartheids aparthrosis apartment apartmental apartments apartness apartnesses apasote apass apast apastra apastron apasttra apatan apatetic apathaton apathatons apatheia apathetic apathetical apathetically apathia apathic apathies apathism apathist apathistical apathize apathogenic apathy apatite apatites apatosaur apatosaurus apatosauruses apatura apay apayd apaying apays apc ape apeak apectomy aped apedom apedoms apeek apehood apehoods apeiron apeirophobia apelet apelike apeling apelles apellous apeman apemen apennines apenteric apepsia apepsias apepsies apepsinia apepsy apeptic aper aperch apercu apercus aperea aperient aperients aperies aperiodic aperiodically aperiodicities aperiodicity aperispermic aperistalsis aperitif aperitifs aperitive aperitives aperiu apers apersee apert apertion apertly apertness apertnesses apertometer apertum apertural aperture apertured apertures aperu aperulosid apery aperçu aperçus apes apeshit apesthesia apesthetic apesthetize apetalies apetaloid apetalose apetalous apetalousness apetaly apex apexed apexes apexing apfelstrudel apfelstrudels aph aphacia aphacial aphacic aphaereses aphaeresis aphaeretic aphagia aphagias aphakia aphakial aphakias aphakic aphanesite aphaniptera aphanipterous aphanisia aphanisis aphanite aphanites aphanitic aphanitism aphanophyre aphanozygous aphasia aphasiac aphasiacs aphasias aphasic aphasics aphasiology aphasmidia aphelia aphelian aphelilia aphelilions aphelion aphelions apheliotropic apheliotropically apheliotropism apheliotropisms aphemia aphemic aphengescope aphengoscope aphenoscope aphereses apheresis apheretic apheses aphesis apheta aphetic aphetically aphetise aphetised aphetises aphetising aphetism aphetize aphetized aphetizes aphetizing aphicidal aphicide aphicides aphid aphides aphidian aphidians aphidicide aphidicides aphidicolous aphidid aphididae aphidious aphidivorous aphidlion aphidoidea aphidolysin aphidophagous aphidozer aphids aphilanthropy aphis aphislion aphizog aphlaston aphlebia aphlogistic aphnology aphodal aphodi aphodian aphodus apholate apholates aphonia aphonias aphonic aphonics aphonies aphonous aphony aphoria aphorise aphorised aphoriser aphorisers aphorises aphorising aphorism aphorismatic aphorismer aphorismic aphorismical aphorismos aphorisms aphorist aphoristic aphoristical aphoristically aphorists aphorize aphorized aphorizer aphorizers aphorizes aphorizing aphotaxis aphotic aphototactic aphototaxis aphototropic aphototropism aphrasia aphrite aphriza aphrizite aphrodesiac aphrodisia aphrodisiac aphrodisiacal aphrodisiacs aphrodisian aphrodisias aphrodisiomania aphrodisiomaniac aphrodisiomaniacal aphrodite aphrodites aphroditic aphroditous aphrolite aphronia aphronitre aphrophora aphrosiderite aphtha aphthae aphthic aphthitalite aphthoid aphthong aphthongal aphthongia aphthonite aphthous aphydrotropic aphydrotropism aphyllanthaceae aphyllanthes aphyllies aphyllophorales aphyllose aphyllous aphylly aphyric apia apiaceae apiaceous apian apiararies apiarian apiarians apiaries apiarist apiarists apiary apiator apicad apical apically apicals apices apicial apician apicifixed apicilar apicillary apicitis apickaback apickback apickpack apicoectomy apicolysis apicula apicular apiculate apiculated apiculation apiculi apicultural apiculture apicultures apiculturist apiculturists apiculus apidae apiece apieces apigenin apii apiin apikores apikoros apikorsim apilary apili apimania apimanias apinch aping apinoid apio apiocrinite apioid apioidal apiol apiole apiolin apiologies apiologist apiology apiols apionol apios apiose apiphobia apis apish apishamore apishly apishness apishnesses apism apisms apitherapies apitherapy apitong apitpat apium apivorous apjohnite apl aplace aplacental aplacophora aplacophoran aplacophorous aplanat aplanatic aplanatically aplanatism aplanatisms aplanats aplanogamete aplanogametes aplanospore aplanospores aplasia aplasias aplastic aplectrum aplenty aplite aplites aplitic aplobasalt aplodiorite aplodontia aplodontiidae aplomb aplombs aplome aploperistomatous aplostemonous aplotaxene aplotomy aplustra aplustre aplustres aplustria aplysia aplysiidae apnea apneal apneas apneic apneumatic apneumatosis apneumonous apneuses apneusis apneustic apnoea apnoeal apnoeas apnoeic apoaconitine apoapsides apoapsis apoatropine apobiotic apoblast apocaffeine apocalypse apocalypses apocalypst apocalypt apocalyptic apocalyptical apocalyptically apocalypticism apocalypticisms apocalyptism apocalyptisms apocalyptist apocalyptists apocamphoric apocarp apocarpies apocarpous apocarps apocarpy apocatastases apocatastasis apocatastatic apocatharsis apocathartic apocenter apocentre apocentric apocentricity apocha apochae apocholic apochromat apochromatic apochromatism apochromatisms apochromats apocinchonine apocodeine apocopate apocopated apocopates apocopating apocopation apocopations apocope apocopes apocopic apocrenic apocrine apocrisiary apocrustic apocryph apocrypha apocryphal apocryphalist apocryphally apocryphalness apocryphalnesses apocryphate apocryphon apocynaceae apocynaceous apocyneous apocynthion apocynthions apocynum apocyte apod apodal apodan apode apodedeipna apodeictic apodeictical apodeictically apodeipna apodeipnon apodeixis apodema apodemal apodemas apodemata apodematal apodeme apodemus apodes apodia apodiabolosis apodictic apodictical apodictically apodictive apodidae apodiformes apodioxis apodixis apodoses apodosis apodous apods apodyteria apodyterium apodyteriums apoembryony apoenzyme apoenzymes apofenchene apoferritin apogaeic apogaic apogalacteum apogametic apogamic apogamically apogamies apogamous apogamously apogamy apogeal apogean apogee apogees apogeic apogenous apogeny apogeotropic apogeotropically apogeotropism apogeotropisms apogon apogonid apogonidae apograph apographal apographic apographical apographs apoharmine apohyal apoidea apoikia apoious apoise apojove apokatastasis apokatastatic apokrea apokreos apolar apolarity apolaustic apolaustics apolegamic apolemia apolipoprotein apolipoproteins apolitical apoliticalities apoliticality apolitically apoliticism apoliticisms apollinarian apolline apollinian apollo apollonian apollonicon apollonicons apollos apollyon apolog apologal apologer apologete apologetic apologetical apologetically apologetics apologia apologiae apologias apological apologies apologise apologised apologiser apologisers apologises apologising apologist apologists apologize apologized apologizer apologizers apologizes apologizing apologs apologue apologues apology apolousis apolune apolunes apolusis apolysis apolytikion apomecometer apomecometry apometabolic apometabolism apometabolous apometaboly apomict apomictic apomictical apomictically apomicts apomixes apomixis apomixises apomorphia apomorphias apomorphin apomorphine apomorphines aponeurology aponeurorrhaphy aponeuroses aponeurosis aponeurositis aponeurotic aponeurotome aponeurotomy aponia aponic aponogetonaceous apoop apopemptic apopenptic apopetalous apophantic apophases apophasis apophatic apophlegm apophlegmatic apophlegmatics apophlegmatism apophonia apophonic apophonies apophony apophorometer apophthegm apophthegmatic apophthegmatical apophthegmatically apophthegmatise apophthegmatised apophthegmatises apophthegmatising apophthegmatist apophthegmatists apophthegmatize apophthegmatized apophthegmatizes apophthegmatizing apophthegms apophyeeal apophyge apophyges apophylactic apophylaxis apophyllite apophyllites apophyllous apophysary apophysate apophyseal apophyses apophysial apophysis apophysitis apoplasmodial apoplastogamous apoplectic apoplectical apoplectically apoplectics apoplectiform apoplectoid apoplex apoplexed apoplexes apoplexies apoplexing apoplexious apoplexy apoptoses apoptosis apoptotic apopyle apoquinamine apoquinine aporetic aporetical aporhyolite aporia aporiae aporias aporobranchian aporocactus aporose aporphin aporphine aporrhaoid aporrhea aporrhegma aporrhiegma aporrhoea aport aportlast aportoise aposafranine aposaturn aposaturnium aposelene aposematic aposematically aposepalous aposia aposiopeses aposiopesis aposiopestic aposiopetic apositia apositias apositic aposoro aposporic apospories aposporogony aposporous apospory apostacies apostacize apostacy apostasies apostasis apostasy apostate apostates apostatic apostatical apostatically apostatise apostatised apostatises apostatising apostatism apostatize apostatized apostatizes apostatizing apostaxis apostem apostemate apostematic apostemation apostematous aposteme aposteriori aposthia aposthume apostil apostille apostilles apostils apostle apostlehood apostlehoods apostles apostleship apostleships apostoile apostolate apostolates apostoless apostoli apostolian apostolic apostolical apostolically apostolicalness apostolicism apostolicisms apostolicities apostolicity apostolise apostolised apostolises apostolising apostolize apostolized apostolizes apostolizing apostrophal apostrophation apostrophe apostrophes apostrophi apostrophic apostrophied apostrophise apostrophised apostrophises apostrophising apostrophize apostrophized apostrophizes apostrophizing apostrophus apostume apotactite apotelesm apotelesmatic apotelesmatical apothec apothecal apothecarcaries apothecaries apothecary apothecaryship apothece apotheces apothecia apothecial apothecium apothegm apothegmatic apothegmatical apothegmatically apothegmatise apothegmatised apothegmatises apothegmatising apothegmatist apothegmatists apothegmatize apothegmatized apothegmatizes apothegmatizing apothegms apothem apothems apotheose apotheoses apotheosis apotheosise apotheosised apotheosises apotheosising apotheosize apotheosized apotheosizes apotheosizing apothesine apothesis apothgm apotihecal apotome apotracheal apotropaic apotropaically apotropaion apotropaism apotropaisms apotropous apoturmeric apotype apotypic apout apoxesis apozem apozema apozemical apozems apozymase app appaid appair appaired appairing appairs appal appalachia appalachian appalachians appale appall appalled appalling appallingly appallingness appallment appalls appalment appaloosa appaloosas appals appalti appalto appanage appanaged appanages appanaging appanagist appar apparail apparance apparat apparatchik apparatchiki apparatchiks apparation apparats apparatus apparatuses apparel appareled appareling apparelled apparelling apparelment apparelments apparels apparence apparencies apparency apparens apparent apparentation apparentement apparentements apparently apparentness apparentnesses apparents apparition apparitional apparitions apparitor apparitors appartement appartements appassionata appassionatamente appassionate appassionato appast appauma appaume appaumee appay appayd appaying appays appd appeach appeached appeacher appeaches appeaching appeachment appeachments appeal appealabilities appealability appealable appealed appealer appealers appealing appealingly appealingness appealingnesses appeals appear appearance appearanced appearances appeared appearer appearers appearing appears appeasable appeasableness appeasably appease appeased appeasement appeasements appeaser appeasers appeases appeasing appeasingly appeasive appel appellability appellable appellancy appellant appellants appellate appellation appellational appellations appellative appellatived appellatively appellativeness appellatives appellatory appellee appellees appellor appellors appels appenage append appendage appendaged appendages appendalgia appendance appendancy appendant appendants appendectomies appendectomy appended appendence appendency appendent appender appenders appendical appendicalgia appendicate appendice appendiceal appendicectasis appendicectomies appendicectomy appendices appendicial appendicious appendicitis appendicitises appendicle appendicles appendicocaecostomy appendicostomy appendicular appendicularia appendicularian appendicularians appendiculate appendiculated appending appenditious appendix appendixed appendixes appendixing appendorontgenography appendotome appends appennage appense appentice appenzell apperceive apperceived apperceives apperceiving apperception apperceptionism apperceptionist apperceptionistic apperceptions apperceptive apperceptively appercipient appere apperil apperill apperills apperils appersonation appersonification appert appertain appertainance appertainances appertained appertaining appertainment appertainments appertains appertinent appertinents appertise appestat appestats appet appete appeteezement appeteezements appetence appetences appetencies appetency appetent appetently appetibility appetible appetibleness appetise appetised appetisement appetisements appetiser appetisers appetises appetising appetisingly appetisse appetit appetite appetites appetition appetitional appetitions appetitious appetitive appetitiveness appetitost appetize appetized appetizement appetizements appetizer appetizers appetizes appetizing appetizingly appetizingness appinite appl applanate applanation applaud applaudable applaudably applauded applauder applauders applauding applaudingly applauds applause applauses applausive applausively apple appleberry appleblossom applecart applecarts appled appledrane appledrone applegrower applejack applejacks applejohn applemint applemonger applenut appleringie appleringies appleringy appleroot apples applesauce applesauces applesnits applet applets applewife applewoman applewood appliable appliableness appliably appliance appliances appliant applicabilities applicability applicable applicableness applicably applicancies applicancy applicant applicants applicate application applications applicative applicatively applicator applicatorily applicators applicatory applied appliedly applier appliers applies appling appliqua appliquad appliquaing applique appliqued appliqueing appliques appliqué appliquéd appliquéing appliqués applosion applosive applot applotment apply applying applyingly applyment appmt appoggiatura appoggiaturas appoggiature appoint appointable appointe appointed appointee appointees appointer appointers appointing appointive appointively appointment appointments appointor appointors appoints appomattox apport apportion apportionable apportionate apportioned apportioner apportioning apportionment apportionments apportions apports apposability apposable appose apposed apposer apposers apposes apposing apposiopestic apposite appositely appositeness appositenesses apposition appositional appositionally appositions appositive appositively appositives apppetible appraisable appraisal appraisals appraise appraised appraisee appraisees appraisement appraisements appraiser appraisers appraises appraising appraisingly appraisive appraisively apprecate appreciable appreciably appreciant appreciate appreciated appreciates appreciating appreciatingly appreciation appreciational appreciations appreciativ appreciative appreciatively appreciativeness appreciativenesses appreciator appreciatorily appreciators appreciatory appredicate apprehanded apprehend apprehendable apprehended apprehender apprehending apprehendingly apprehends apprehensibilities apprehensibility apprehensible apprehensibly apprehension apprehensions apprehensive apprehensively apprehensiveness apprehensivenesses apprend apprense apprentice apprenticed apprenticehood apprenticehoods apprenticement apprenticements apprentices apprenticeship apprenticeships apprenticing appress appressed appresses appressing appressor appressoria appressorial appressorium apprest appreteur appreve apprisal apprise apprised appriser apprisers apprises apprising apprisings apprizal apprize apprized apprizement apprizer apprizers apprizes apprizing apprizings appro approach approachabilities approachability approachabl approachable approachableness approachablenesses approached approacher approachers approaches approaching approachless approachment approbate approbated approbates approbating approbation approbations approbative approbativeness approbator approbatory apprompt approof approofs appropinquate appropinquated appropinquates appropinquating appropinquation appropinquations appropinque appropinqued appropinques appropinquing appropinquities appropinquity appropre appropriable appropriament appropriate appropriated appropriately appropriateness appropriatenesses appropriates appropriating appropriation appropriations appropriative appropriativeness appropriativenesses appropriator appropriators approvability approvable approvableness approvably approval approvals approvance approvances approve approved approvedly approvedness approvement approver approvers approves approving approvingly approx approximable approximal approximant approximants approximate approximated approximately approximates approximating approximation approximations approximative approximatively approximativeness approximator apps appt apptd appui appuied appuis appulse appulses appulsion appulsive appulsively appunctuation appurtenance appurtenances appurtenant appurtenants appuy appuyed appuying appuys apr apractic apraxia apraxias apraxic aprendiz apres apreynte apricate apricated apricates apricating aprication aprications aprickle apricock apricocks apricot apricots april apriori apriorism apriorisms apriorist aprioristic aprioristically apriorists apriorities apriority apritif aproctia aproctous apron aproned aproneer apronful apronfuls aproning apronless apronlike aprons apronstring apropos aprosexia aprosopia aprosopous aproterodont aprotic aprowl après apsaras apsarases apse apselaphesia apselaphesis apses apsid apsidal apsidally apsides apsidiole apsidioles apsinthion apsis apsu apsychia apsychical apt aptate apted aptenodytes apter apteral apteran apteria apterial apterism apterisms apterium apteroid apterous apterygial apterygidae apterygiformes apterygote apterygotous apteryla apteryx apteryxes aptest apting aptitude aptitudes aptitudinal aptitudinally aptly aptness aptnesses aptote aptotes aptotic apts aptyalia aptyalism aptychus apulia apulmonic apulse apurpose apus apx apyonin apyrase apyrases apyrene apyretic apyrexia apyrexial apyrexias apyrexy apyrotype apyrous aq aqaba aqua aquabatic aquabatics aquabelle aquabib aquaboard aquaboards aquacade aquacades aquacrop aquacrops aquacultural aquaculture aquacultures aquaculturist aquaculturists aquadag aquadrome aquadromes aquaduct aquaducts aquae aquaemanale aquaemanalia aquafarm aquafarmed aquafarming aquafarms aquafer aquafers aquafortis aquafortises aquafortist aquafortists aquage aquagreen aquake aqualeather aqualeathers aqualung aqualunger aqualungs aquamanale aquamanales aquamanalia aquamanile aquamaniles aquamanilia aquamarine aquamarines aquameter aquanaut aquanautics aquanauts aquaphobe aquaphobes aquaphobia aquaphobias aquaphobic aquaphobics aquaplane aquaplaned aquaplaner aquaplaners aquaplanes aquaplaning aquaplanings aquapuncture aquaregia aquarelle aquarelles aquarellist aquarellists aquaria aquarial aquarian aquarians aquariia aquariist aquariists aquariiums aquarist aquarists aquarium aquariums aquarius aquarobic aquarobics aquarter aquas aquascope aquascutum aquashow aquate aquatic aquatical aquatically aquatics aquatile aquatint aquatinta aquatintas aquatinted aquatinter aquatinters aquatinting aquatintist aquatintists aquatints aquation aquativeness aquatone aquatones aquavalent aquavit aquavits aqueduct aqueducts aqueity aquench aqueoglacial aqueoigneous aqueomercurial aqueous aqueously aqueousness aquerne aquiclude aquicolous aquicultural aquiculture aquicultures aquiculturist aquiculturists aquifer aquiferous aquifers aquifoliaceae aquifoliaceous aquiform aquifuge aquila aquilawood aquilege aquilegia aquilegias aquilia aquiline aquilinities aquilinity aquilino aquilon aquilons aquinas aquincubital aquincubitalism aquintocubital aquintocubitalism aquiparous aquitaine aquitania aquiver aquo aquocapsulitis aquocarbonic aquocellolitis aquopentamminecobaltic aquose aquosity aquotization aquotize ar ara arab araba araban arabana arabas arabesk arabesks arabesque arabesqued arabesquely arabesquerie arabesques arabia arabian arabians arabic arabica arabicas arabicization arabicizations arabicize arabicized arabicizes arabicizing arabilities arability arabin arabine arabinic arabinose arabinoses arabinosic arabinoside arabinosides arabins arabis arabisation arabisations arabise arabised arabises arabising arabist arabit arabite arabitol arabiyeh arabization arabizations arabize arabized arabizes arabizing arable arables arabs araby araca aracanga aracari arace araceae araceous arach arache arachic arachide arachidic arachidonic arachin arachis arachises arachnactis arachne arachnean arachnephobia arachnid arachnida arachnidan arachnidans arachnidial arachnidian arachnidism arachnidium arachnids arachnism arachnitis arachnoid arachnoidal arachnoidea arachnoidean arachnoiditis arachnoiditises arachnoids arachnological arachnologies arachnologist arachnologists arachnology arachnophagous arachnophobe arachnophobes arachnophobia arachnophobias arachnophobic arachnopia arad aradid arado araeometer araeometers araeometric araeometrical araeometries araeometry araeostyle araeostyles araeosystyle araeosystyles araeotic arage aragon aragonite aragonites aragonitic aragonspath araguane araguato araignee arain araire araise araised araises araising arak arakawaite arake araks arales aralia araliaceae araliaceous araliad aralias aralie aralkyl aralkylated aramaean aramaic aramayoite arame arames aramid aramids aramina aramus aranea araneae araneid araneida araneidal araneidan araneids araneiform aranein araneologist araneology araneose araneous araneus aranga arango arangoes arank aranzada arapahite arapaho arapahoe arapahos arapaima arapaimas araphorostic araphostic araponga arapongas arapunga arapungas arar arara araracanga ararao ararat ararauna arariba araroba ararobas arars araru arase arati aratinga aration aratory araucanian araucaria araucariaceae araucarian araucarias araujia arawak arawakan arawn arayne arayse araysed arayses araysing arb arba arbacia arbacin arbalest arbalester arbalesters arbalestre arbalestrier arbalests arbalist arbalister arbalisters arbalists arbalo arbalos arbas arbelest arbelests arber arbinose arbiter arbiters arbith arbitrable arbitrage arbitraged arbitrager arbitragers arbitrages arbitrageur arbitrageurs arbitraging arbitragist arbitral arbitrament arbitraments arbitraries arbitrarily arbitrariness arbitrarinesses arbitrary arbitrate arbitrated arbitrates arbitrating arbitration arbitrational arbitrationist arbitrations arbitrative arbitrator arbitrators arbitratorship arbitratrices arbitratrix arbitratrixes arbitre arbitrement arbitrements arbitrer arbitress arbitresses arbitrium arbitry arblast arblaster arblasters arblasts arboloco arbor arboraceous arboral arborary arborator arborea arboreal arboreally arborean arbored arboreous arborer arbores arborescence arborescences arborescent arborescently arboresque arboret arboreta arborets arboretum arboretums arborical arboricole arboricoline arboricolous arboricultural arboriculture arboricultures arboriculturist arboriculturists arboriform arborio arborios arborisation arborisations arborise arborised arborises arborising arborist arborists arborization arborizations arborize arborized arborizes arborizing arboroid arborolater arborolatry arborous arbors arborvitae arborvitaes arborway arbory arbota arbour arboured arboures arbours arboviral arbovirus arboviruses arbs arbtrn arbuscle arbuscles arbuscula arbuscular arbuscule arbust arbusta arbusterin arbusterol arbustum arbutase arbute arbutean arbutes arbutin arbutinase arbutus arbutuses arc arca arcabucero arcade arcaded arcades arcadia arcadian arcadians arcadias arcadic arcading arcadings arcady arcae arcana arcanal arcanas arcane arcanely arcaneness arcanenesses arcanist arcanists arcanite arcanum arcanums arcate arcato arcature arcatures arcboutant arccos arccoses arccosine arccosines arcdegree arced arcella arcellidae arces arceuthobium arcform arch archabomination archae archaea archaeal archaean archaeans archaebacteria archaebacterium archaecraniate archaei archaeoastronomer archaeoastronomers archaeoastronomical archaeoastronomies archaeoastronomy archaeobacteria archaeocyte archaeogeology archaeographic archaeographical archaeography archaeohippus archaeol archaeolater archaeolatry archaeolith archaeolithic archaeologer archaeologian archaeologic archaeological archaeologically archaeologies archaeologist archaeologists archaeology archaeomagnetism archaeomagnetisms archaeometallurgies archaeometallurgy archaeometric archaeometries archaeometrist archaeometrists archaeometry archaeopteryx archaeopteryxes archaeornis archaeornithes archaeostoma archaeostomatous archaeotherium archaeozoic archaeozoologies archaeozoologist archaeozoologists archaeozoology archaeus archagitator archai archaic archaical archaically archaicism archaicisms archaicness archaise archaised archaiser archaisers archaises archaising archaism archaisms archaist archaistic archaists archaize archaized archaizer archaizers archaizes archaizing archangel archangelic archangelical archangels archangelship archantagonist archanthropine archantiquary archapostate archapostle archarchitect archarios archartist archbanc archbancs archband archbeacon archbeadle archbishop archbishopess archbishopric archbishoprics archbishopry archbishops archbotcher archboutefeu archbuffoon archbuilder archchampion archchaplain archcharlatan archcheater archchemic archchief archchronicler archcity archconfraternities archconfraternity archconservative archconservatives archconsoler archconspirator archcorrupter archcorsair archcount archcozener archcriminal archcritic archcrown archcupbearer archd archdapifer archdapifership archdeacon archdeaconate archdeaconates archdeaconess archdeaconries archdeaconry archdeacons archdeaconship archdeaconships archdean archdeanery archdeceiver archdefender archdemon archdepredator archdespot archdetective archdevil archdiocesan archdiocese archdioceses archdiplomatist archdissembler archdisturber archdivine archdogmatist archdolt archdruid archducal archduchess archduchesses archduchies archduchy archduke archdukedom archdukedoms archdukes archduxe arche archeal archean archearl archebanc archebancs archebiosis archecclesiastic archecentric arched archegay archegone archegonia archegonial archegoniate archegoniates archegoniophore archegonium archegony archei archeion archelogy archelon archemastry archemperor archencephala archencephalic archencephalon archencephalons archenemies archenemy archengineer archenia archentera archenteric archenteron archenterons archeoastronomies archeoastronomy archeocyte archeol archeolithic archeologian archeologic archeological archeologically archeologies archeologist archeologists archeology archeometric archeometries archeometrist archeometrists archeometry archeopteryx archeostome archeozoic archepiscopal archer archeress archeresses archerfish archerfishes archeries archers archership archery arches archespore archespores archesporia archesporial archesporium archespsporia archest archetto archettos archetypal archetypally archetype archetypes archetypic archetypical archetypically archetypist archeunuch archeus archexorcist archfelon archfiend archfiends archfire archflamen archflatterer archfoe archfool archform archfounder archfriend archgenethliac archgenethliacs archgod archgomeral archgovernor archgunner archhead archheart archheresy archheretic archhost archhouse archhumbug archhypocrisy archhypocrite archiannelid archiannelida archiater archibenthal archibenthic archibenthos archiblast archiblastic archiblastoma archiblastula archical archicantor archicarp archicarps archicerebra archicerebrum archichlamydeous archicleistogamous archicleistogamy archicoele archicontinent archicyte archicytula archidiaconal archidiaconate archidiaconates archididascalian archididascalos archidiskidon archidome archidoxis archie archiepiscopacies archiepiscopacy archiepiscopal archiepiscopalities archiepiscopality archiepiscopally archiepiscopate archiepiscopates archiereus archigaster archigastrula archigenesis archigonic archigonocyte archigony archiheretical archikaryon archil archilithic archilla archilochian archilochus archilowe archilowes archils archilute archimage archimages archimagus archimandrite archimandrites archimedean archimedes archimime archimorphic archimorula archimperial archimperialism archimperialist archimperialistic archimpressionist archin archine archines archineuron archinfamy archinformer arching archings archipallial archipallium archipelagian archipelagic archipelago archipelagoes archipelagos archiphoneme archipin archiplasm archiplasmic archiprelatical archipresbyter archipterygial archipterygium archisperm archisphere archispore archistome archisupreme archisymbolical archisynagogue archit architect architected architecting architective architectonic architectonically architectonics architectress architects architectural architecturalist architecturally architecture architectures architecturesque architecure architeuthis architis architraval architrave architraved architraves architricline architype architypes architypographer archival archivault archive archived archiver archivers archives archiving archivist archivists archivolt archivolts archizoic archjockey archking archknave archleader archlecher archlet archlets archleveler archlexicographer archliar archlute archlutes archly archmachine archmagician archmagirist archmarshal archmediocrity archmessenger archmilitarist archmime archminister archmock archmocker archmockery archmonarch archmonarchist archmonarchy archmugwump archmurderer archmystagogue archness archnesses archocele archocystosyrinx archologies archology archon archons archonship archonships archont archontate archontates archontic archoplasm archoplasma archoplasmic archoptoma archoptosis archorrhagia archorrhea archosargus archosaur archosauria archosaurian archosaurs archostegnosis archostenosis archosyrinx archoverseer archpall archpapist archpastor archpatriarch archpatron archphilosopher archphylarch archpiece archpilferer archpillar archpirate archplagiarist archplagiary archplayer archplotter archplunderer archplutocrat archpoet archpolitician archpontiff archpractice archprelate archprelatic archprelatical archpresbyter archpresbyterate archpresbytery archpretender archpriest archpriesthood archpriests archpriestship archprimate archprince archprophet archprotopope archprototype archpublican archpuritan archradical archrascal archreactionary archrebel archregent archrepresentative archrival archrivals archrobber archrogue archruler archsacrificator archsacrificer archsaint archsatrap archscoundrel archseducer archsee archsewer archshepherd archsin archsnob archspirit archspy archsteward archswindler archsynagogue archt archtempter archthief archtraitor archtreasurer archtreasurership archturncoat archtyrant archurger archvagabond archvampire archvestryman archvillain archvillainy archvisitor archwag archway archways archwench archwife archwise archworker archworkmaster archy arcidae arciferous arcifinious arciform arcing arcings arcked arcking arckings arclength arclike arcminute arco arcocentrous arcocentrum arcograph arcologies arcology arcose arcosolia arcosoliulia arcosolium arcs arcsecond arcseconds arcsin arcsine arcsines arcsins arctan arctangent arctangents arctans arctation arctian arctic arctically arctician arcticise arcticize arcticized arcticizing arcticologist arcticology arctics arctictis arcticward arcticwards arctiid arctiidae arctiids arctitude arctium arctocebus arctocephalus arctogaeal arctoid arctoidean arctonyx arctophil arctophile arctophiles arctophilia arctophilias arctophilies arctophilist arctophilists arctophils arctophily arctostaphylos arctotis arcturus arcual arcuale arcualia arcuate arcuated arcuately arcuation arcuations arcubalist arcubalister arcubalists arcubos arcula arculite arcus arcuses ard ardass ardassine ardea ardeb ardebs ardeid ardeidae ardelio ardella ardellae ardencies ardency ardennes ardennite ardent ardently ardentness arder ardilla ardish ardisia arditi ardito ardoise ardor ardors ardour ardours ardri ardrigh ardrighs ardris ards ardu arduinite arduous arduously arduousness arduousnesses ardure ardurous are area areach areached areaches areaching aread areading areads aready areae areal areality areally arear areas areason areasoner areaway areaways areawide areca arecaceae arecaceous arecaidin arecaidine arecain arecaine arecas areche arecidae arecolidin arecolidine arecolin arecoline arecolines ared aredd arede aredes areding areek areel arefact arefaction arefactions arefied arefies areflexia arefy arefying areg aregenerative aregeneratory areic areito aren arena arenaceous arenae arenaria arenariae arenarious arenas arenation arenations arend arendalite arendator areng arenga arenicole arenicolite arenicolor arenicolour arenicolous arenilitic arenite arenites arenoid arenose arenosity arenous arent arenulous areocentric areographer areographic areographical areographically areographies areography areola areolae areolar areolas areolate areolated areolation areolations areole areoles areolet areologic areological areologically areologies areologist areology areometer areometers areometric areometrical areometry areopagist areopagite areopagitic areopagus areopagy areostyle areostyles areosystile areosystiles areosystyle areotectonics arepa arepas arere arerola areroscope ares arest aret aretaics aretalogy arete aretes arethusa arethusas arets arett arette aretted aretting aretts arew arf arfillite arfs arfvedsonite arfvedsonites arg argaile argal argala argalas argali argalis argals argan argand argands argans argasid argasidae argeers argel argema argemone argemones argemony argenol argent argental argentamid argentamide argentamin argentamine argentan argentarii argentarius argentate argentation argenteous argenter argenteum argentic argenticyanide argentide argentiferous argentin argentina argentine argentinean argentineans argentines argentinian argentinidae argentinitrate argentino argentinosaur argention argentite argentites argentojarosite argentol argentometer argentometric argentometrically argentometry argenton argentoproteinum argentose argentous argentry argents argentum argentums argh arghan arghans arghel arghool arghoul argify argil argillaceous argillic argilliferous argillite argillites argillitic argilloarenaceous argillocalcareous argillocalcite argilloferruginous argilloid argillomagnesian argillous argils argin arginase arginases argine arginine argininephosphoric arginines argiope argiopidae argive argle arglebargle arglebargled arglebargling argled argles argling argo argol argolet argoletier argols argon argonaut argonauta argonautic argonautid argonautidae argonauts argonne argonon argons argos argosies argosine argosy argot argotic argots arguable arguably argue argued arguendo arguer arguers argues argufied argufier argufiers argufies argufy argufying arguing arguitively arguli argulus argument argumenta argumental argumentation argumentations argumentatious argumentative argumentatively argumentativeness argumentativenesses argumentator argumentatory argumentive arguments argumentum argus arguses argusfish argusfishes argusianus arguta argutation argute argutely arguteness argutenesses argyle argyles argyll argylls argynnis argyranthemous argyranthemum argyranthous argyreia argyria argyrias argyric argyrite argyrites argyrocephalous argyrodite argyrodites argyrol argyrose argyrosis argyrotaenia argyroxiphium argyrythrose arhant arhar arhat arhats arhatship arhatships arhythmia arhythmias arhythmic arhythmical arhythmically aria ariadne arian arianism arianist arianists arianrhod arianrod arias aribin aribine ariboflavinoses ariboflavinosis aricara aricin aricine arid arider aridest aridge aridian aridisol aridisols aridities aridity aridly aridness aridnesses ariegite ariel ariels arienzo aries arietate arietation arietinous arietta ariettas ariette ariettes aright arightly arigue ariidae arikara ariki aril ariled arillary arillate arillated arilled arilli arilliform arillode arillodes arillodium arilloid arillus arils arilus ariocarpus ariolate ariole ariomma ariose ariosi arioso ariosos ariot aripple aris arisaema arisaid arisard arisarum arise arised arisen ariser arises arish arishes arishth arising arisings arist arista aristae aristarch aristarchies aristarchus aristarchy aristas aristate ariste aristeia aristippus aristo aristocracies aristocracy aristocrat aristocratic aristocratical aristocratically aristocraticalness aristocraticism aristocraticness aristocratism aristocratisms aristocrats aristodemocracies aristodemocracy aristodemocratical aristogenesis aristogenetic aristogenic aristogenics aristoi aristolochia aristolochiaceae aristolochiaceous aristolochiales aristolochias aristolochin aristolochine aristological aristologies aristologist aristology aristomonarchy aristophanes aristorepublicanism aristos aristotelean aristotelia aristotelian aristotelianism aristotle aristotype aristulate arite arith arithmancy arithmetic arithmetical arithmetically arithmetician arithmeticians arithmetics arithmetisation arithmetisations arithmetise arithmetised arithmetises arithmetization arithmetizations arithmetize arithmetized arithmetizes arithmic arithmocracy arithmocratic arithmogram arithmograph arithmography arithmomancy arithmomania arithmomanias arithmometer arithmometers arithmophobia arithmophobias arithromania arius arizona arizonan arizonans arizonian arizonians arizonite arjun ark arkansan arkansans arkansas arkansawyer arkansite arked arkie arking arkite arkites arkose arkoses arkosic arks arksutite arkwright arle arled arlequinade arles arless arling arlington arloup arm armada armadas armadilla armadillidiidae armadillidium armadillo armadillos armageddon armagnac armagnacs armament armamentaria armamentarium armamentariums armamentary armaments armangite armaria armarian armaries armariolum armarium armariumaria armary armature armatured armatures armaturing armband armbands armbone armchair armchaired armchairs armed armenia armeniaceous armenian armenians armenite armer armeria armers armet armets armful armfuls armgaunt armguard armguards armhole armholes armhoop armied armies armiferous armiger armigeral armigeri armigero armigeros armigerous armigers armil armill armilla armillae armillaria armillarias armillariella armillary armillas armillate armillated armils armin armine arming armings arminian arminianism arminius armipotence armipotent armisonant armisonous armistice armistices armit armitas armless armlessly armlessness armlet armlets armlike armload armloads armlock armlocked armlocking armlocks armoire armoires armomancy armoniac armonica armonicas armor armoracia armorbearer armored armorer armorers armorial armorially armorials armorica armorican armoried armories armoring armorist armorists armorless armorplated armorproof armors armorwise armory armour armourbearer armoured armourer armourers armouried armouries armouring armourless armours armoury armozeen armozeens armozine armozines armpad armpiece armpit armpits armplate armrack armrest armrests arms armscye armseye armsful armsize armstrong armure armures army armyworm armyworms arn arna arnas arnatta arnatto arnattos arnberry arnee arnement arni arnica arnicas arno arnold arnoseris arnotta arnotto arnottos arnut arnuts aroar aroast aroba arobas arock aroeira aroid aroideous aroids aroint arointed arointing aroints arolia arolium arolla arollas aroma aromacity aromadendrin aromal aromas aromata aromatherapeutic aromatherapies aromatherapist aromatherapists aromatherapy aromatic aromatical aromatically aromaticities aromaticity aromaticness aromaticnesses aromatics aromatisation aromatise aromatised aromatiser aromatises aromatising aromatitae aromatite aromatites aromatization aromatizations aromatize aromatized aromatizer aromatizes aromatizing aromatophor aromatophore aromatous aroon aroph arose around arousable arousal arousals arouse aroused arousement arouser arousers arouses arousing arow aroxyl aroynt aroynted aroynting aroynts arpanet arpeggiando arpeggiate arpeggiated arpeggiates arpeggiating arpeggiation arpeggiations arpeggio arpeggioed arpeggione arpeggiones arpeggios arpen arpens arpent arpenteur arpents arpillera arpilleras arquated arquebus arquebusade arquebusades arquebuses arquebusier arquebusiers arquerite arquifoux arr arracach arracacha arracachas arrace arrach arrack arracks arrage arragonite arragonites arrah arrahs arraign arraignability arraignable arraignableness arraigned arraigner arraigners arraigning arraignings arraignment arraignments arraigns arrame arrand arrange arrangeable arranged arrangement arrangements arranger arrangers arranges arranging arrant arrantly arrantness arras arrased arrasene arrasenes arrases arrastra arrastre arratel arrau arraught array arrayal arrayals arrayan arrayed arrayer arrayers arraying arrayment arrayments arrays arrear arrearage arrearages arrears arrect arrectary arrector arreede arreeded arreedes arreeding arrendation arrendator arrenotokous arrenotoky arrent arrentable arrentation arreption arreptitious arrest arrestable arrestant arrestants arrestation arrestations arrested arrestee arrestees arrester arresters arresting arrestingly arrestive arrestment arrestments arrestor arrestors arrests arret arretez arrets arrgt arrha arrhal arrhenal arrhenatherum arrhenoid arrhenotokies arrhenotokous arrhenotoky arrhinia arrhizal arrhizous arrhythmia arrhythmias arrhythmic arrhythmical arrhythmically arrhythmous arrhythmy arri arriage arriages arriba arribadas arricci arricciati arricciato arricciatos arriccio arriccioci arriccios arride arrided arrides arridge arriding arrie arriere arriero arrieros arrimby arris arrises arrish arrishes arrisways arriswise arriva arrivage arrival arrivals arrivance arrivances arrivancies arrivancy arrivas arrive arrived arrivederci arrivederla arriver arrivers arrives arriving arrivism arrivisme arrivismes arrivisms arrivist arriviste arrivistes arriéré arroba arrobas arrode arrogance arrogances arrogancies arrogancy arrogant arrogantly arrogantness arrogate arrogated arrogates arrogating arrogatingly arrogation arrogations arrogative arrogator arrogators arrojadite arrondi arrondissement arrondissements arrope arrosion arrosive arround arrouse arrow arrowbush arrowed arrowhead arrowheaded arrowheads arrowing arrowleaf arrowless arrowlet arrowlike arrowplate arrowroot arrowroots arrows arrowsmith arrowstone arrowweed arrowwood arrowwoods arrowworm arrowworms arrowy arroya arroyo arroyos arroyuelo arroz arrtez arrythmia arrythmic arrythmical arrythmically arrêt arrêts ars arsanilic arse arsed arsedine arsefoot arsehole arseholes arsenal arsenals arsenate arsenates arsenation arseneted arsenetted arsenfast arsenferratose arsenhemol arseniasis arseniate arseniates arsenic arsenical arsenicalism arsenicals arsenicate arsenicated arsenicating arsenicise arsenicism arsenicize arsenicked arsenicking arsenicophagy arsenics arsenide arsenides arseniferous arsenillo arseniopleite arseniosiderite arsenious arsenism arsenite arsenites arsenium arseniuret arseniureted arseniuretted arsenization arseno arsenobenzene arsenobenzol arsenobismite arsenoferratin arsenofuran arsenohemol arsenolite arsenophagy arsenophen arsenophenol arsenophenylglycin arsenopyrite arsenopyrites arsenostyracol arsenotherapy arsenotungstates arsenotungstic arsenous arsenoxide arsenyl arses arsesmart arsheen arsheens arshin arshine arshines arshins arsine arsines arsing arsinic arsino arsis arsle arsmetik arsmetrick arsmetricks arsmetrik arsmetrike arsmetry arsnicker arsoite arson arsonate arsonation arsonic arsonist arsonists arsonite arsonites arsonium arsono arsonous arsons arsonvalization arsphenamine arsphenamines arsyl arsylene arsyversy art artaba artabe artal artamidae artamus artar artarin artarine artcraft arte artefac artefact artefacts artefactual artel artels artemia artemis artemisia artemisias artemisic artemisin artemisinin artemisinins artemon arter arteria arteriac arteriae arteriagra arterial arterialisation arterialisations arterialise arterialised arterialises arterialising arterialization arterializations arterialize arterialized arterializes arterializing arterially arterials arteriarctia arteriasis arteriectasia arteriectasis arteriectomy arteriectopia arteried arteries arterin arterioarctia arteriocapillary arteriococcygeal arteriodialysis arteriodiastasis arteriofibrosis arteriogenesis arteriogram arteriograms arteriograph arteriographic arteriographies arteriography arteriola arteriolar arteriole arterioles arteriolith arteriology arterioloscleroses arteriolosclerosis arteriomalacia arteriometer arteriomotor arterionecrosis arteriopalmus arteriopathy arteriophlebotomy arterioplania arterioplasty arteriopressor arteriorenal arteriorrhagia arteriorrhaphy arteriorrhexis arterioscleroses arteriosclerosis arteriosclerotic arteriosclerotics arteriospasm arteriostenosis arteriostosis arteriostrepsis arteriosympathectomy arteriotome arteriotomies arteriotomy arteriotrepsis arterious arteriovenous arterioversion arterioverter arteritides arteritis arteritises artery arterying artesian artesonado artesonados artful artfully artfulness artfulnesses artha arthel arthemis arthogram arthra arthragra arthral arthralgia arthralgias arthralgic arthrectomies arthrectomy arthredema arthrempyesis arthresthesia arthritic arthritical arthritically arthriticine arthritics arthritides arthritis arthritises arthritism arthrobacterium arthrobranch arthrobranchia arthrocace arthrocarcinoma arthrocele arthrocentesis arthrochondritis arthroclasia arthrocleisis arthroclisis arthroderm arthrodeses arthrodesis arthrodia arthrodiae arthrodial arthrodic arthrodiran arthrodire arthrodirous arthrodymic arthrodynia arthrodynic arthroempyema arthroempyesis arthroendoscopy arthrogastran arthrogenous arthrogram arthrograms arthrographies arthrography arthrogryposis arthrolite arthrolith arthrolithiasis arthrology arthromeningitis arthromere arthromeres arthromeric arthrometer arthrometry arthron arthroncus arthroneuralgia arthropathic arthropathies arthropathology arthropathy arthrophlogosis arthrophyma arthroplastic arthroplasties arthroplasty arthropleura arthropleure arthropod arthropoda arthropodal arthropodan arthropodous arthropods arthropody arthropomatous arthropteris arthropterous arthropyosis arthrorheumatism arthrorrhagia arthrosclerosis arthroscope arthroscopes arthroscopic arthroscopically arthroscopies arthroscopy arthroses arthrosia arthrosis arthrospore arthrospores arthrosporic arthrosporous arthrosteitis arthrosterigma arthrostome arthrostomy arthrosynovitis arthrosyrinx arthrotome arthrotomies arthrotomy arthrotrauma arthrotropic arthrotyphoid arthrous arthroxerosis arthrozoan arthrozoic arthur arthurian artiad artic artichoke artichokes article articled articles articling artics articulability articulable articulacies articulacy articulant articular articulare articularly articulars articulary articulata articulate articulated articulately articulateness articulatenesses articulates articulating articulatio articulation articulationes articulationist articulations articulative articulator articulatorily articulators articulatory articulite articulus artier arties artiest artifact artifactitious artifacts artifactual artifactually artifex artifice artificer artificers artificership artifices artificial artificialise artificialised artificialises artificialising artificialism artificialities artificiality artificialize artificialized artificializes artificializing artificially artificialness artificialnesses artificious artilize artiller artilleries artillerist artillerists artillery artilleryman artillerymen artilleryship artily artiness artinesses artinite artiodactyl artiodactyla artiodactylous artiodactyls artiphyllous artisan artisanal artisanry artisans artisanship artisanships artist artistdom artiste artistes artistess artistic artistical artistically artistries artistry artists artize artless artlessly artlessness artlessnesses artlet artlike artly artmobile artocarpad artocarpeous artocarpous artocarpus artocarpuses artois artolater artolatry artophagous artophophoria artophoria artophorion artotype artotypy artotyrite artou arts artsd artsier artsies artsiest artsman artsmen artsy artus artware artwear artwork artworks arty aru aruba arugola arugolas arugula arugulas arui aruke arulo arum arumin arumlike arums arundiferous arundinaceous arundinaria arundineous arundo arupa aruru arusa arusha aruspex aruspice aruspices aruspicy arustle arval arvejon arvel arvicola arvicole arvicoles arvicoline arvicolous arviculture arvo arvos arx ary aryan aryanize aryans aryballi aryballoi aryballoid aryballos aryballoses aryballus arybballi aryepiglottic aryepiglottidean aryl arylamine arylamino arylate arylated arylating arylation arylide aryls arytaenoid arytaenoids arytenoepiglottic arytenoid arytenoidal arytenoids arythmia arythmias arythmic arythmical arythmically arzan arzrunite arzun arête arêtes as asaddle asafetida asafetidas asafoetida asafoetidas asak asale asamblea asamiya asana asanas asap asaphia asaphid asaprol asar asarabacca asarabaccas asarh asarin asarite asaron asarone asarota asarotum asarta asarum asarums asb asbest asbestic asbestiform asbestine asbestinize asbestoid asbestoidal asbestos asbestoses asbestosis asbestous asbestus asbestuses asbolan asbolane asbolin asboline asbolite ascan ascape ascaphidae ascaphus ascare ascared ascariases ascariasis ascaricidal ascaricide ascarid ascaridae ascarides ascaridia ascaridiasis ascaridol ascaridole ascarids ascaris ascaron ascaunt ascebc ascelli ascellus ascence ascend ascendable ascendance ascendances ascendancies ascendancy ascendant ascendantly ascendants ascended ascendence ascendences ascendencies ascendency ascendent ascendents ascender ascenders ascendible ascending ascendingly ascends ascenseur ascension ascensional ascensionist ascensions ascensive ascensor ascent ascents ascertain ascertainability ascertainable ascertainableness ascertainably ascertained ascertainer ascertaining ascertainment ascertainments ascertains ascescency ascescent asceses ascesis ascetic ascetical ascetically asceticism asceticisms ascetics aschaffite ascham aschelminth aschelminthes aschelminths ascher aschistic asci ascian ascians ascicidia ascidia ascidiaceae ascidian ascidians ascidiate ascidicolous ascidiferous ascidiform ascidiia ascidioid ascidiozooid ascidium asciferous ascigerous ascii ascill ascitan ascitb ascite ascites ascitic ascitical ascititious asclent asclepiad asclepiadaceae asclepiadaceous asclepiadeous asclepiads asclepias asclepiases asclepidin asclepidoid asclepin asclepius ascocarp ascocarpic ascocarpous ascocarps ascogenous ascogone ascogonia ascogonial ascogonidia ascogonidium ascogonium ascolichen ascoma ascomata ascomycetal ascomycete ascomycetes ascomycetous ascomycota ascomycotina ascon asconce asconia asconoid ascophore ascophorous ascophyllum ascorbate ascorbates ascorbic ascospore ascospores ascosporic ascosporous ascot ascots ascribable ascribe ascribed ascribes ascribing ascript ascription ascriptions ascriptitii ascriptitious ascriptitius ascriptive ascriptively ascrive ascry ascula asculae ascus ascyphous asdic asdics ase asea asearch asecretory aseethe aseismatic aseismic aseismicity aseitas aseities aseity aselar aselgeia asellate aselline asellus asem asemasia asemia asemic asepalous asepses asepsis aseptate aseptic aseptically asepticise asepticised asepticises asepticising asepticism asepticisms asepticize asepticized asepticizes asepticizing aseptics aseptify aseptol aseptolin asexual asexualisation asexualise asexualised asexualising asexualities asexuality asexualization asexualize asexualized asexualizing asexually asexuals asfast asfetida asg asgard asgd asgmt ash ashake ashame ashamed ashamedly ashamedness ashamednesses ashames ashaming ashamnu ashanti ashberry ashbin ashcake ashcakes ashcan ashcans ashed ashen asher asherah asherahs asheries asherim ashery ashes ashet ashets ashfall ashfalls ashier ashiest ashily ashimmer ashine ashiness ashinesses ashing ashipboard ashir ashiver ashkenazi ashkey ashkhabad ashkoko ashlar ashlared ashlaring ashlarings ashlars ashler ashlered ashlering ashlerings ashlers ashless ashling ashman ashmen ashore ashot ashpan ashpit ashplant ashplants ashraf ashrafi ashram ashrama ashramas ashramite ashramites ashrams ashstone ashthroat ashtoreth ashtray ashtrays ashur ashvamedha ashweed ashwort ashy asia asialia asian asians asiarch asiatic asiaticism aside asidehand asiden asideness asiderite asides asideu asiento asilid asilidae asimen asimina asimmer asin asinego asinegoes asinico asinicos asinine asininely asininities asininity asio asiphonate asiphonogama asitia ask askable askance askanced askances askancing askant askanted askanting askants askapart askar askarel askari askaris askars asked asker askers askeses askesis askew askewgee askewness askewnesses askile asking askingly askings askip asklent askoi askos askoye asks asl aslake aslaked aslakes aslaking aslant aslantwise aslaver asleep aslop aslope aslosh aslumber asmack asmalte asmear asmile asmodeus asmoke asmolder asmoulder asniffle asnort asoak asocial asocials asok asoka asomatophyte asomatous asonant asonia asop asor asouth asp aspace aspalathus aspalax asparagaceae asparagic asparagin asparaginase asparaginases asparagine asparagines asparaginic asparaginous asparagus asparaguses asparagyl asparamic asparkle aspartame aspartames aspartate aspartates aspartic aspartokinase aspartyl aspca aspect aspectable aspectant aspected aspecting aspection aspects aspectual aspen aspens asper asperate asperated asperates asperating asperation aspergation aspergations asperge asperged asperger aspergers asperges asperggilla asperggilli aspergil aspergill aspergilla aspergillaceae aspergillales aspergilli aspergilliform aspergillin aspergilloses aspergillosis aspergills aspergillum aspergillums aspergillus asperging asperifoliate asperifolious asperite asperities asperity asperly aspermatic aspermatism aspermatous aspermia aspermias aspermic aspermous aspern asperness asperous asperously aspers asperse aspersed asperser aspersers asperses aspersing aspersion aspersions aspersive aspersively aspersoir aspersoirs aspersor aspersoria aspersories aspersorium aspersoriums aspersors aspersory asperula asperuloside asperulous asphalt asphalted asphaltene asphalter asphalters asphaltic asphalting asphaltite asphaltites asphaltlike asphalts asphaltum asphaltums asphaltus aspheric aspherical aspheterise aspheterised aspheterises aspheterising aspheterism aspheterisms aspheterize aspheterized aspheterizes aspheterizing asphodel asphodelaceae asphodeline asphodels asphodelus asphyctic asphyctous asphyxia asphyxial asphyxiant asphyxiants asphyxias asphyxiate asphyxiated asphyxiates asphyxiating asphyxiation asphyxiations asphyxiative asphyxiator asphyxiators asphyxied asphyxies asphyxy aspic aspick aspicks aspics aspiculate aspiculous aspidate aspide aspidelaps aspidia aspidiaria aspidinol aspidioid aspidiotus aspidistra aspidistras aspidium aspidobranchiate aspidomancy aspidophoroides aspidospermine aspine aspines aspiquee aspirant aspirants aspirata aspiratae aspirate aspirated aspirates aspirating aspiration aspirational aspirations aspirator aspirators aspiratory aspire aspired aspiree aspirer aspirers aspires aspirin aspiring aspiringly aspiringness aspiringnesses aspirins aspis aspises aspish asplanchnic aspleniaceae asplenioid asplenium aspleniums asporogenic asporogenous asporous asport asportation asportations asported asporting asports asporulate aspout asprawl aspread asprete aspring asprout asps aspy asquare asquat asqueal asquint asquirm asrama asramas ass assacu assafetida assafetidas assafoetida assafoetidas assagai assagaied assagaiing assagais assahy assai assail assailability assailable assailableness assailablenesses assailant assailants assailed assailer assailers assailing assailment assailments assails assais assalto assam assamar assamese assapan assapanic assapanick assarion assart assarted assarting assarts assary assassin assassinate assassinated assassinates assassinating assassination assassinations assassinative assassinator assassinators assassinatress assassinist assassins assate assation assaugement assault assaultable assaulted assaulter assaulters assaulting assaultive assaultively assaultiveness assaultivenesses assaults assausive assaut assay assayable assayed assayer assayers assaying assayings assays assbaa asse asseal assecuration assecurator assecure assecution assed assedat assedation assegai assegaied assegaiing assegaing assegais asseize asself assembl assembla assemblable assemblage assemblages assemblagist assemblagists assemblance assemblances assemblas assemblaunce assemblaunces assemble assembled assemblee assemblement assembler assemblers assembles assemblies assembling assembly assemblyman assemblymen assemblywoman assemblywomen assent assentaneous assentation assentations assentatious assentator assentatorily assentators assentatory assented assenter assenters assentient assenting assentingly assentive assentiveness assentivenesses assentor assentors assents asseour assert asserta assertable assertative asserted assertedly asserter asserters assertible asserting assertingly assertion assertional assertions assertive assertively assertiveness assertivenesses assertor assertorial assertorially assertoric assertorical assertorically assertorily assertors assertory assertress assertrix asserts assertum asserve asservilize asses assess assessable assessably assessed assessee assesses assessing assession assessionary assessment assessments assessor assessorial assessors assessorship assessorships assessory asset asseth assets assever asseverate asseverated asseverates asseverating asseveratingly asseveration asseverations asseverative asseveratively asseveratory assevered assevering assevers assewer asshead assheadedness asshole assholes assi assibilate assibilated assibilates assibilating assibilation assibilations assibiliate assidaean assident assidual assidually assiduate assiduities assiduity assiduous assiduously assiduousness assiduousnesses assiege assieged assieges assieging assientist assiento assientos assiette assify assign assignabilities assignability assignable assignably assignat assignation assignations assignats assigned assignee assignees assigneeship assigner assigners assigning assignment assignments assignor assignors assigns assilag assimilabilities assimilability assimilable assimilate assimilated assimilates assimilating assimilation assimilationism assimilationisms assimilationist assimilationists assimilations assimilative assimilativeness assimilator assimilators assimilatory assimulate assinego assinuate assis assisa assise assish assishly assishness assisi assist assistance assistances assistant assistanted assistants assistantship assistantships assisted assistency assister assisters assistful assisting assistive assistless assistor assistors assists assith assize assized assizement assizer assizers assizes assizing asslike assman assmanship assn assobre assoc associabilities associability associable associableness associate associated associatedness associates associateship associateships associating association associational associationalism associationalist associationism associationisms associationist associationistic associationists associations associative associatively associativeness associativities associativity associator associators associatory associe assoil assoiled assoiling assoilment assoilments assoils assoilzie assoilzied assoilzieing assoilzies assoin assoluto assonance assonanced assonances assonant assonantal assonantic assonantly assonants assonate assonated assonates assonating assoria assort assortative assortatively assorted assortedness assortednesses assorter assorters assorting assortive assortment assortments assorts assot assots assott assotted assotting assouan asssembler asst assuade assuagable assuage assuaged assuagement assuagements assuager assuagers assuages assuaging assuagings assuan assuasive assubjugate assubjugated assubjugates assubjugating assuefaction assuefactions assuetude assuetudes assumabilities assumability assumable assumably assume assumed assumedly assument assumer assumers assumes assuming assumingly assumingness assumings assummon assumpsit assumpsits assumpt assumption assumptionist assumptionists assumptions assumptious assumptiousness assumptive assumptively assumptiveness assur assurable assurance assurances assurant assurate assurd assure assured assuredly assuredness assurednesses assureds assurer assurers assures assurge assurgencies assurgency assurgent assuring assuringly assuror assurors asswage asswaged asswages asswaging assyntite assyria assyrian assyrians assyriologist assyriology assyth assythment assythments ast asta astable astacian astacidae astacological astacologies astacologist astacologists astacology astacura astacus astalk astarboard astare astart astarte astarted astarting astarts astasia astasias astate astatic astatically astaticism astaticisms astatine astatines astatize astatized astatizer astatizing astatki astatkis astay asteam asteatosis asteep asteer asteism asteisms astel astelic astelies astely aster asteraceae asteraceous astereognosis asteria asteriae asterial asterias asteriated asterid asteridae asteridian asteridians asterids asterikos asterin asterioid asterion asteriscus asteriscuses asterisk asterisked asterisking asteriskless asteriskos asterisks asterism asterismal asterisms asterite asterixis astern asternal asternia asteroid asteroidal asteroidea asteroidean asteroids asterope asterophyllite asterospondylic asterospondylous asters astert asterted asterting asterts asterwort asthamatic asthenia asthenias asthenic asthenical asthenics asthenies asthenobiosis asthenobiotic asthenolith asthenology asthenope asthenophobia asthenopia asthenopias asthenopic asthenosphere asthenospheres asthenospheric astheny asthma asthmas asthmatic asthmatical asthmatically asthmatics asthmatoid asthmogenic asthore asthores asthorin astichous astigmat astigmatic astigmatical astigmatically astigmatics astigmatiser astigmatism astigmatisms astigmatizer astigmatometer astigmatometry astigmatoscope astigmatoscopies astigmatoscopy astigmia astigmias astigmic astigmism astigmometer astigmometry astigmoscope astilbe astilbes astint astipulate astipulation astir astite astogeny astomatal astomatous astomia astomous astond astone astoned astones astonied astonies astoning astonish astonished astonishedly astonisher astonishes astonishing astonishingly astonishingness astonishment astonishments astony astonying astoop astor astore astound astoundable astounded astounding astoundingly astoundment astoundments astounds astr astrachan astracism astraddle astraea astraean astraeid astraeiform astragal astragalar astragalectomy astragali astragalocalcaneal astragalocentral astragalomancy astragalonavicular astragaloscaphoid astragalotibial astragals astragalus astragaluses astrain astrakanite astrakhan astrakhans astral astrally astrals astrand astrantia astrantias astraphobia astraphobias astrapophobia astrapophobias astray astre astream astrean astrer astreus astrict astricted astricting astriction astrictions astrictive astrictively astrictiveness astricts astride astrier astriferous astrild astringe astringed astringence astringencies astringency astringent astringently astringents astringer astringers astringes astringing astrion astrionics astroalchemist astrobiological astrobiologically astrobiologies astrobiologist astrobiologists astrobiology astroblast astrobleme astroblemes astrobotany astrochemist astrochemistries astrochemistry astrochemists astrochronological astrocompass astrocompasses astrocyte astrocytes astrocytic astrocytoma astrocytomas astrocytomata astrodiagnosis astrodome astrodomes astrodynamic astrodynamicist astrodynamicists astrodynamics astrofel astrofell astrofells astrogate astrogated astrogating astrogation astrogational astrogator astrogeny astrogeologic astrogeologies astrogeologist astrogeologists astrogeology astroglia astrognosy astrogonic astrogony astrograph astrographer astrographic astrography astrohatch astroid astroids astroite astrol astrolabe astrolabes astrolabical astrolater astrolatries astrolatry astrolithology astrolog astrologaster astrologe astrologer astrologers astrologian astrologic astrological astrologically astrologies astrologist astrologistic astrologists astrologize astrologous astrology astroloma astromancer astromancy astromantic astromeda astrometeorological astrometeorologies astrometeorologist astrometeorology astrometer astrometric astrometrical astrometries astrometry astron astronaut astronautic astronautical astronautically astronautics astronauts astronavigation astronavigations astronavigator astronavigators astronium astronomer astronomers astronomic astronomical astronomically astronomics astronomien astronomies astronomise astronomised astronomises astronomising astronomize astronomized astronomizes astronomizing astronomy astrophel astrophels astrophil astrophobia astrophotograph astrophotographer astrophotographers astrophotographic astrophotographies astrophotographs astrophotography astrophotometer astrophotometrical astrophotometry astrophyllite astrophysical astrophysically astrophysicist astrophysicists astrophysics astrophyton astropogon astroscope astroscopy astrose astrospectral astrospectroscopic astrosphere astrospherecentrosomic astrospheres astrotheology astructive astrut astucious astuciously astucities astucity astun astunned astunning astuns astute astutely astuteness astutenesses astuter astutest astutious astyanax astylar astyllen asuang asudden asuncion asunder asura asuras asvins aswail aswan aswarm aswash asway asweat aswell asweve aswim aswing aswirl aswithe aswoon aswooned aswough asyla asylabia asyle asyllabia asyllabic asyllabical asylum asylums asymbiotic asymbolia asymbolic asymbolical asymmetral asymmetranthous asymmetric asymmetrical asymmetrically asymmetries asymmetrocarpous asymmetron asymmetry asymptomatic asymptomatically asymptote asymptotes asymptotic asymptotical asymptotically asymtote asymtotes asymtotic asymtotically asynapses asynapsis asynaptic asynartete asynartetes asynartetic async asynchronies asynchronism asynchronisms asynchronous asynchronously asynchrony asynclitism asyndesis asyndeta asyndetic asyndetically asyndeton asyndetons asynergia asynergias asynergic asynergies asynergy asyngamic asyngamy asyntactic asyntrophy asystematic asystole asystoles asystolic asystolism asystolisms asyzygetic at atabal atabals atabeg atabegs atabek atabeks atabrin atabrine atabrins atacamite atacamites atactic atactiform atafter ataghan ataghans atakapa atakapan atake atalanta atalantis atalaya atalayas ataman atamans atamasco atamascos atame atangle atap ataps atar ataractic ataractics atarax ataraxia ataraxias ataraxic ataraxics ataraxies ataraxis ataraxy atars atatschite ataunt ataunto atavi atavic atavism atavisms atavist atavistic atavistically atavists atavus ataxaphasia ataxia ataxiagram ataxiagraph ataxiameter ataxiaphasia ataxias ataxic ataxics ataxies ataxinomic ataxite ataxonomic ataxophemia ataxy atayalic atazir atbash atchieve atchieved atchieves atchieving atchison ate atebrin atebrins atechnic atechnical atechny ated atees ateeter atef ateknia atelectases atelectasis atelectatic ateleioses ateleiosis ateleiotic atelene ateleological ateles atelestite atelets atelic atelier ateliers ateliosis ateliotic atellan atelo atelocardia atelocephalous ateloglossia atelognathia atelomitic atelomyelia atelophobia atelopodia ateloprosopia atelorachidia atelostomia ately atemoya atemoyas atemporal atenolol atenolols aterian ates ateuchi ateuchus athabascan athabaskan athalamous athalline athamantin athamaunte athanasia athanasian athanasianism athanasies athanasy athanor athanors athapascan athapaskan athar athbash athecate atheise atheised atheises atheising atheism atheisms atheist atheistic atheistical atheistically atheisticalness atheisticness atheists atheize atheized atheizer atheizes atheizing athel athelia atheling athelings athelstan athematic athematically athena athenaeum athenaeums athene athenee atheneum atheneums athenian athenians athenor athens atheological atheologically atheologies atheology atheoretical atheous athericeran athericerous atherine atherines atherinidae atherinopsis athermancies athermancy athermanous athermic athermous atherodyde atherogeneses atherogenesis atherogenic atherogenicities atherogenicity atheroma atheromas atheromasia atheromata atheromatic atheromatoses atheromatosis atheromatous atheroscleroses atherosclerosis atherosclerotic atherosclerotically atherosclerotics atherurus atheteses athetesis atheticize athetise athetised athetises athetising athetize athetized athetizes athetizing athetoid athetoids athetoses athetosic athetosis athetotic athing athink athiorhodaceae athirst athleta athletas athlete athletehood athletes athletic athletical athletically athleticism athleticisms athletics athletism athletocracy athlothete athlothetes athodyd athodyds athogen athold athonite athort athrepsia athreptic athrill athrive athrob athrocyte athrocytes athrocytoses athrocytosis athrogenic athrong athrotaxis athrough athumia athwart athwarthawse athwartship athwartships athwartwise athymia athymic athymy athyreosis athyria athyriaceae athyrid athyrium athyroid athyroidism athyrosis atilt atimies atimon atimy ating atinga atingle atinkle atip atiptoe atis atishoo atishoos atlanta atlantad atlantal atlantean atlantes atlantic atlantides atlantis atlantite atlantoaxial atlantodidymus atlantomastoid atlantoodontoid atlantosaurus atlas atlases atlatl atlatls atle atlee atli atloaxoid atloid atloidean atloidoaxoid atm atma atman atmans atmas atmiatrics atmiatry atmid atmidalbumin atmidometer atmidometry atmo atmocausis atmocautery atmoclastic atmogenic atmograph atmologic atmological atmologies atmologist atmologists atmology atmolyse atmolysed atmolyses atmolysing atmolysis atmolyzation atmolyze atmolyzed atmolyzer atmolyzes atmolyzing atmometer atmometers atmometric atmometry atmophile atmos atmosphere atmosphered atmosphereful atmosphereless atmospheres atmospheric atmospherical atmospherically atmospherics atmospherium atmospherology atmostea atmosteal atmosteon atoc atocha atocia atocias atocs atok atokal atoke atokes atokous atoks atole atoll atolls atom atomatic atomechanics atomerg atomic atomical atomically atomician atomicism atomicities atomicity atomics atomies atomiferous atomisation atomisations atomise atomised atomiser atomisers atomises atomising atomism atomisms atomist atomistic atomistical atomistically atomistics atomists atomity atomization atomizations atomize atomized atomizer atomizers atomizes atomizing atomlike atomology atoms atomy atonable atonal atonalism atonalisms atonalist atonalistic atonalists atonalities atonality atonally atone atoneable atoned atonement atonements atoneness atoner atoners atones atonia atonias atonic atonicities atonicity atonics atonies atoning atoningly atony atop atopen atophan atopic atopies atopite atopognosia atopognosis atopy atour atoxic atoxyl atp atpoints atrabilaire atrabilar atrabilarian atrabilarious atrabile atrabiliar atrabiliarious atrabiliary atrabilious atrabiliousness atrabiliousnesses atracheate atracurium atracuriums atragene atrail atrament atramental atramentary atramentous atraments atraumatic atrazine atrazines atrede atremate atrematous atremble atren atrenne atrepsy atreptic atresia atresias atresic atresy atretic atreus atria atrial atrible atrichia atrichic atrichornis atrichornithidae atrichosis atrichous atrickle atrienses atriensis atriocoelomic atrioporal atriopore atrioventricular atrip atriplex atrium atriums atroce atroceruleous atroceruleus atrocha atrochal atrochous atrocious atrociously atrociousness atrociousnesses atrocities atrocity atrocoeruleus atrolactic atropa atropaceous atropal atropamine atrophia atrophias atrophiated atrophic atrophied atrophies atrophoderma atrophous atrophy atrophying atropia atropias atropic atropidae atropin atropine atropines atropinism atropinization atropinize atropins atropism atropisms atropos atropous atrorubent atrosanguineous atroscine atrous atrovent atry atrypoid atsara atsugewi att atta attababy attabal attaboy attaboys attacapa attacapan attacca attacco attach attacha attachable attachableness attache attached attachedly attacher attachers attaches attacheship attaching attachment attachments attaché attachés attack attackable attacked attacker attackers attacking attackingly attackman attackmen attacks attacolite attacus attagal attagen attaghan attagirl attain attainabilities attainability attainable attainableness attainablenesses attainably attainder attainders attained attainer attainers attaining attainment attainments attainor attains attaint attainted attainting attaintment attaintments attaints attainture attaintures attal attalea attaleh attame attap attaps attapulgite attar attargul attars attask attasked attasking attasks attaskt attaste attatched attatches atte atteal attelet attelets attemper attemperament attemperance attemperate attemperately attemperation attemperator attempered attempering attempers attempre attempt attemptabilities attemptability attemptable attempted attempter attempters attempting attemptive attemptless attempts attend attendance attendances attendancies attendancy attendant attendantly attendants attended attendee attendees attendement attendements attender attenders attending attendingly attendings attendment attendments attendress attends attensity attent attentat attentate attentats attention attentional attentionality attentions attentive attentively attentiveness attentivenesses attently attents attenuable attenuant attenuants attenuate attenuated attenuates attenuating attenuation attenuations attenuative attenuator attenuators atter attercop attercops attercrop atterminal attermine attermined atterminement attern atterr atterrate attery attest attestable attestant attestants attestation attestations attestative attestator attested attester attesters attesting attestive attestor attestors attests attic attica attice atticise atticises atticism atticisms atticist atticists atticize atticized atticizes atticizing atticomastoid attics atticus attid attidae attila attinge attingence attingency attingent attirail attire attired attirement attirements attirer attires attiring attirings attitude attitudes attitudinal attitudinally attitudinarian attitudinarianism attitudinarians attitudinise attitudinised attitudiniser attitudinisers attitudinises attitudinising attitudinisings attitudinize attitudinized attitudinizer attitudinizers attitudinizes attitudinizing attitudinizings attitudist attle attn attntrp attollens attollent attollents attomy attonce attone attones attorn attornare attorned attorney attorneydom attorneydoms attorneyed attorneying attorneyism attorneyisms attorneys attorneyship attorneyships attorning attornment attornments attorns attosecond attouchement attour attourne attract attractability attractable attractableness attractance attractances attractancies attractancy attractant attractants attracted attracter attracters attractile attracting attractingly attraction attractionally attractions attractive attractively attractiveness attractivenesses attractivity attractor attractors attracts attrahens attrahent attrahents attrap attrapped attrapping attraps attrectation attrib attributable attributal attribute attributed attributer attributers attributes attributing attribution attributional attributions attributive attributively attributiveness attributivenesses attributives attributor attributors attrist attristed attristing attrists attrit attrite attrited attriteness attrites attriting attrition attritional attritions attritive attrits attritted attritting attritus attriutively attroopment attroupement attry attuent attuite attuited attuites attuiting attuition attuitional attuitions attuitive attuitively attune attuned attunely attunement attunements attunes attuning atturn atty atua atule atumble atune atveen atwain atweel atweels atween atwin atwind atwirl atwist atwitch atwite atwitter atwixt atwo atypic atypical atypicalities atypicality atypically atypy au auantic aubade aubades aubain aubaine aube aubepine auberge auberges aubergine aubergines aubergiste aubergistes aubin aubretia aubretias aubrieta aubrietas aubrietia aubrietias aubrite auburn auburns aubusson auca auceps aucepses auchenia auchenium auchlet aucht auckland auctary auction auctionable auctionary auctioned auctioneer auctioneered auctioneering auctioneers auctioning auctions auctor auctorial auctorizate auctors aucuba aucubas aucupate aud audace audacious audaciously audaciousness audaciousnesses audacities audacity audad audads auden audenesque audial audibilities audibility audible audibleness audiblenesses audibles audibly audience audiencer audiences audiencia audiencias audiencier audient audients audile audiles auding audings audio audiobook audiobooks audiocassette audiocassettes audioemission audiogenic audiogram audiograms audiograph audiographs audiolingual audiologic audiological audiologies audiologist audiologists audiology audiometer audiometers audiometric audiometrically audiometrician audiometricians audiometries audiometrist audiometry audion audiophil audiophile audiophiles audiophils audios audiotape audiotapes audiotyping audiotypings audiotypist audiotypists audiovisual audiovisually audiovisuals audiphone audiphones audit auditable audited auditee auditees auditing audition auditioned auditioning auditions auditive auditives auditor auditoria auditorial auditorially auditories auditorily auditorium auditoriums auditors auditorship auditorships auditory auditotoria auditress auditresses audits auditual audivise audiviser audivision audubon auf aufait aufgabe aufgabes aufklarung aufs auftakt aug auganite auge augean augelite augen augend augends auger augerer augers auget augh aught aughtlins aughts augite augites augitic augitite augitophyre augment augmentable augmentation augmentationer augmentations augmentative augmentatively augmentatives augmented augmentedly augmenter augmenters augmenting augmentive augmentor augmentors augments augrim augur augural augurate auguration augure augured augurer augurers augurial auguries auguring augurous augurs augurship augurships augury august augusta augustal augustan auguste auguster augustes augustest augustin augustine augustinian augustly augustness augustnesses augusts augustus auh auhuhu auk aukland auklet auklets auks auksinai auksinas auksinu aul aula aulacocarpous aulacorhyncus aulae aularian aularians aulas auldfarrantlike auletai aulete auletes auletic auletrides auletris aulic aulical aulicism aullay aulnage aulnager aulnagers aulnages auloi aulophobia aulophyte aulos aulostomid aulostomidae aulostomus aulu aum aumaga aumail aumailed aumailing aumails aumakua aumbries aumbry aumery aumil aumildar aumils aummbulatory aumoniere aumous aumrie auncel aune aunes aunt aunter aunters aunthood aunthoods auntie aunties auntish auntlier auntliest auntlike auntly auntre auntrous aunts auntsary auntship aunty aupaka aura aurae aural aurally auramin auramine aurang aurantia aurantiaceous aurantium aurar auras aurata aurate aurated aurates aureal aureate aureately aureateness aureation aurei aureities aureity aurelia aurelian aurelians aurelias aurene aureola aureolae aureolaria aureolas aureole aureoled aureoles aureolin aureoline aureoling aureomycin aureous aureously aures auresca aureus auribromide auric aurichalcite aurichalcum aurichloride aurichlorohydric auricle auricled auricles auricomous auricula auriculae auricular auriculare auriculares auricularia auriculariaceae auriculariae auriculariales auricularian auricularias auricularis auricularly auriculars auriculas auriculate auriculated auriculately auriculo auriculocranial auriculoid auriculoparietal auriculotemporal auriculoventricular auriculovertical auricyanhydric auricyanic auricyanide auride auriferous aurifex aurific aurification aurified aurifies auriflamme auriform aurify aurifying auriga aurigal aurigation aurigerous aurignacian aurigo aurigraphy aurilave aurin aurinasal aurine auriparus auriphone auriphrygia auriphrygiate auripigment auripuncture aurir auris auriscalp auriscalpia auriscalpium auriscope auriscopes auriscopic auriscopically auriscopy aurist aurists aurite aurited aurivorous auroauric aurobromide auroch aurochloride aurochs aurochses aurocyanide aurodiamine auronal aurophobia aurophore aurora aurorae auroral aurorally auroras aurore aurorean aurorium aurotellurite aurothiosulphate aurothiosulphuric aurous aurrescu aurulent aurum aurums aurung aurure auryl auscult auscultascope auscultate auscultated auscultates auscultating auscultation auscultations auscultative auscultator auscultators auscultatory auscultoscope ausform ausformed ausforming ausforms ausgespielt auslander auslanders auslaut auslaute auslese ausleses auspex auspicate auspicated auspicates auspicating auspice auspices auspicial auspicious auspiciously auspiciousness auspiciousnesses auspicy aussie aussies austausch austemper austenite austenites austenitic austenitize austenitized austenitizing auster austere austerely austereness austerenesses austerer austerest austerities austerity austerlitz austerus austin austral australasia australasian australene australes australia australian australians australis australite australites australoid australopithecine australopithecines australopithecus australorp australs austria austrian austrians austrine austringer austringers austrium austroasiatic austrocedrus austromancy austronesia austronesian austrotaxus ausu ausubo ausubos autacoid autacoidal autacoids autaesthesy autallotriomorphic autantitypy autarch autarchic autarchical autarchically autarchies autarchist autarchists autarchs autarchy autarkic autarkical autarkically autarkies autarkik autarkikal autarkist autarkists autarky aute autechoscope autecious auteciously auteciousness autecism autecisms autecologic autecological autecologically autecologies autecologist autecology autecy autem autere auteur auteurism auteurisms auteurist auteurists auteurs autexousy auth authentic authentical authentically authenticalness authenticatable authenticate authenticated authenticates authenticating authentication authentications authenticator authenticators authenticities authenticity authenticly authenticness authigene authigenetic authigenic authigenous author authorcraft authorcrafts authored authoress authoresses authorhood authorial authorially authoring authorings authorisable authorisation authorisations authorise authorised authoriser authorisers authorises authorish authorising authorism authorisms authoritarian authoritarianism authoritarianisms authoritarians authoritative authoritatively authoritativeness authoritativenesses authorities authority authorizable authorization authorizations authorize authorized authorizer authorizers authorizes authorizing authorless authorling authorly authors authorship authorships authotype autism autisms autist autistic autistically autistics autists auto autoabstract autoactivation autoactive autoaddress autoagglutinating autoagglutination autoagglutinin autoalarm autoalkylation autoallogamous autoallogamy autoanalysis autoanalytic autoantibodies autoantibody autoanticomplement autoantitoxin autoasphyxiation autoaspiration autoassimilation autobahn autobahnen autobahns autobasidia autobasidiomycetous autobasidium autobiographal autobiographer autobiographers autobiographic autobiographical autobiographically autobiographies autobiographist autobiography autobiology autoblast autoboat autoboating autobolide autobus autobuses autobusses autocab autocade autocades autocall autocamp autocamper autocamping autocar autocarist autocarp autocarpian autocarpic autocarpous autocarps autocars autocatalepsy autocatalyse autocatalysed autocatalyses autocatalysing autocatalysis autocatalytic autocatalytically autocatalyze autocatalyzed autocatalyzes autocatalyzing autocatharsis autocatheterism autocephalia autocephalic autocephalies autocephality autocephalous autocephaly autoceptive autochanger autochangers autochemical autocholecystectomy autochrome autochromy autochronograph autochthon autochthonal autochthones autochthonic autochthonies autochthonism autochthonisms autochthonous autochthonously autochthonousness autochthons autochthony autochton autocide autocides autocinesis autoclasis autoclastic autoclave autoclaved autoclaves autoclaving autocoder autocoenobium autocoherer autocoid autocoids autocollimate autocollimation autocollimator autocollimators autocolony autocombustible autocombustion autocomplexes autocondensation autoconduction autoconvection autoconverter autocopist autocoprophagies autocoprophagous autocoprophagy autocorrelate autocorrelation autocorrelations autocorrosion autocosm autocracies autocracy autocrat autocratic autocratical autocratically autocraticalness autocrator autocratoric autocratorical autocratrix autocrats autocratship autocremation autocrime autocrimes autocriticism autocritique autocross autocrosses autocue autocues autocycle autocycles autocystoplasty autocytolysis autocytolytic autodecomposition autodecrement autodecremented autodecrements autodepolymerization autodermic autodestruct autodestructed autodestructing autodestruction autodestructs autodetector autodiagnosis autodiagnostic autodiagrammatic autodial autodialed autodialer autodialers autodialing autodialled autodialler autodialling autodials autodidact autodidactic autodidactically autodidacticism autodidacticisms autodidacts autodifferentiation autodiffusion autodigestion autodigestive autodrainage autodrome autodynamic autodyne autodynes autoecholalia autoecic autoecious autoeciously autoeciousness autoecism autoecisms autoecous autoecy autoed autoeducation autoeducative autoelectrolysis autoelectrolytic autoelectronic autoelevation autoepigraph autoepilation autoerotic autoerotically autoeroticism autoeroticisms autoerotism autoerotisms autoette autoexcitation autoexposure autoexposures autofecundation autofermentation autoflare autoflares autofluorescence autofocus autofocuses autoformation autofrettage autogamic autogamies autogamous autogamy autogauge autogeneal autogeneses autogenesis autogenetic autogenetically autogenic autogenics autogenies autogenous autogenously autogenuous autogeny autogiro autogiros autognosis autognostic autograft autografted autografting autografts autogram autograph autographal autographed autographer autographic autographical autographically autographies autographing autographism autographist autographometer autographs autography autogravure autogravures autoguide autoguides autogyro autogyros autoharp autoharps autoheader autohemic autohemolysin autohemolysis autohemolytic autohemorrhage autohemotherapy autoheterodyne autoheterosis autohexaploid autohybridization autohypnoses autohypnosis autohypnotic autohypnotically autohypnotism autohypnotization autoicous autoignition autoimmune autoimmunisation autoimmunities autoimmunity autoimmunization autoimmunizations autoimmunize autoimmunized autoimmunizing autoincrement autoincremented autoincrements autoindex autoindexing autoinduction autoinductive autoinfection autoinfections autoinfusion autoing autoinhibited autoinoculable autoinoculation autoinoculations autointellectual autointoxicant autointoxication autointoxications autoionisation autoionization autoirrigation autoist autojigger autojuggernaut autokineses autokinesis autokinesy autokinetic autokrator autolaryngoscope autolaryngoscopic autolaryngoscopy autolater autolatries autolatry autolavage autolesion autolimnetic autolith autolithograph autolithographer autolithographic autolithography autoload autoloader autoloaders autoloading autological autologies autologist autologous autology autoluminescence autoluminescent autolysate autolysates autolyse autolysed autolyses autolysin autolysing autolysins autolysis autolytic autolyzate autolyzates autolyze autolyzed autolyzes autolyzing automa automacy automaker automakers automan automania automanipulation automanipulative automanual automat automata automatable automate automateable automated automates automatic automatical automatically automaticities automaticity automatics automatictacessing automating automation automations automatisation automatisations automatise automatised automatises automatising automatism automatisms automatist automatists automative automatization automatizations automatize automatized automatizes automatizing automatograph automaton automatonlike automatons automatonta automatontons automatous automats automechanical automechanism automelon automen automeris autometamorphosis autometric autometry automobile automobiled automobiles automobilia automobiling automobilism automobilisms automobilist automobilistic automobilists automobilities automobility automolite automonstration automorph automorphic automorphically automorphism automorphisms automotive automotor automower autompne automysophobia autonavigator autonavigators autonegation autonephrectomy autonephrotoxin autonetics autoneurotoxin autonitridation autonoetic autonomasy autonomic autonomical autonomically autonomics autonomies autonomist autonomists autonomize autonomous autonomously autonomousness autonomy autonym autonyms autooxidation autoparasitism autopathic autopathography autopathy autopelagic autopen autopens autopepsia autophagi autophagia autophagias autophagies autophagous autophagy autophanous autophobia autophobias autophobies autophoby autophon autophone autophonies autophonoscope autophonous autophony autophotoelectric autophotograph autophotometry autophthalmoscope autophyllogeny autophyte autophytes autophytic autophytically autophytograph autophytography autopilot autopilots autopista autopistas autoplagiarism autoplasmotherapy autoplast autoplastic autoplastically autoplasties autoplasty autopneumatic autopoint autopoints autopoisonous autopolar autopolo autopoloist autopolyploid autopolyploidies autopolyploids autopolyploidy autopore autoportrait autoportraiture autopositive autopotamic autopotent autoprogressive autoproteolysis autoprothesis autopsia autopsias autopsic autopsical autopsied autopsies autopsist autopsists autopsy autopsychic autopsychoanalysis autopsychology autopsychorhythmia autopsychosis autopsying autoptic autoptical autoptically autopticity autoput autopyotherapy autor autoracemization autoradiogram autoradiograms autoradiograph autoradiographic autoradiographies autoradiographs autoradiography autorail autoreduction autoreflection autoregenerator autoregressive autoregulation autoregulative autoregulatory autoreinfusion autoretardation autorhythmic autorhythmus autorickshaw autorickshaws autoriser autorotate autorotated autorotates autorotating autorotation autorotational autorotations autoroute autoroutes autorrhaphy autos autosave autosaves autoschediasm autoschediasms autoschediastic autoschediastical autoschediastically autoschediaze autoschediazed autoschediazes autoschediazing autoscience autoscope autoscopic autoscopies autoscopy autosender autosensitization autosensitized autosepticemia autoserotherapy autoserum autosexing autosight autosign autosite autositic autoskeleton autosled autoslip autosomal autosomally autosomatognosis autosomatognostic autosome autosomes autosoteric autosoterism autospore autosporic autospray autostability autostage autostandardization autostarter autostethoscope autostoper autostrada autostradas autostrade autostylic autostylism autostyly autosuggest autosuggested autosuggestibilities autosuggestibility autosuggestible autosuggesting autosuggestion autosuggestionist autosuggestions autosuggestive autosuggests autosuppression autosymbiontic autosymbolic autosymbolical autosymbolically autosymnoia autosyn autosyndesis autota autotelegraph autotelic autotelism autotelisms autoteller autotellers autotetraploid autotetraploidies autotetraploids autotetraploidy autothaumaturgist autotheater autotheism autotheisms autotheist autotheists autotherapeutic autotherapy autothermy autotimer autotimers autotomic autotomies autotomise autotomised autotomises autotomising autotomize autotomized autotomizes autotomizing autotomous autotomy autotoxaemia autotoxaemias autotoxemia autotoxemias autotoxic autotoxication autotoxicity autotoxicosis autotoxin autotoxins autotoxis autotractor autotransformer autotransformers autotransfusion autotransfusions autotransplant autotransplantation autotransplantations autotrepanation autotriploid autotriploidy autotroph autotrophic autotrophically autotrophies autotrophs autotrophy autotropic autotropically autotropism autotruck autotuberculin autoturning autotype autotyped autotypes autotyphization autotypic autotypies autotyping autotypographies autotypography autotypy autourine autovac autovaccination autovaccine autovacs autovalet autovalve autovivisection autoworker autoworkers autoxeny autoxidation autoxidations autoxidator autoxidizability autoxidizable autoxidize autoxidizer autozooid autre autrefois autumn autumnal autumnally autumnian autumnity autumns autumny autunite autunites auturgy auvergne aux auxamylase auxanogram auxanology auxanometer auxanometers auxeses auxesis auxetic auxetical auxetically auxetics auxil auxiliar auxiliaries auxiliarly auxiliars auxiliary auxiliate auxiliation auxiliator auxiliatory auxilium auxillary auxilytic auximone auxin auxinic auxinically auxins auxoaction auxoamylase auxoblast auxobody auxocardia auxochrome auxochromic auxochromism auxochromous auxocyte auxoflore auxofluor auxograph auxographic auxohormone auxology auxometer auxometers auxospore auxosubstance auxotonic auxotox auxotroph auxotrophic auxotrophies auxotrophs auxotrophy av ava avadana avadavat avadavats avadhuta avahi avail availabile availabilities availability available availableness availablenesses availably availe availed availer availers availes availful availing availingly availment avails aval avalanche avalanched avalanches avalanching avale avaled avalent avales avaling avalokiteshvara avalokitesvara avalon avalvular avance avania avanious avant avantage avanters avantgarde avanti avantlay avanturine avanturines avanyu avaram avaremotemo avarice avarices avaricious avariciously avariciousness avariciousnesses avaritia avas avascular avascularities avascularity avast avasts avatar avatara avatars avaunt avaunted avaunting avaunts avdp ave avell avellan avellane avellaneous avellano avelonge aveloz avena avenaceous avenage avenalin avenant avenary avener avenery avenge avenged avengeful avengement avengements avenger avengeress avengeresses avengers avenges avenging avengingly avenida aveniform avenin avenine avenir avenolith avenous avens avenses aventail aventaile aventailes aventails aventayle aventine aventre aventred aventres aventring aventure aventures aventurin aventurine aventurines aventurins avenue avenues aveny aver avera average averaged averagely averageness averagenesses averager averages averaging averah averia averil averin averish averment averments avern avernal avernus averrable averral averred averrer averrhoa averring averroist averruncate averruncated averruncates averruncating averruncation averruncations averruncator averruncators avers aversant aversation averse aversely averseness aversenesses aversion aversions aversive aversively aversiveness aversivenesses aversives avert avertable averted avertedly averter averters avertible avertiment avertiments avertin averting avertive averts aves avesta avestan avestruz aveugle avg avgas avgases avgasses avgolemono avgolemonos aviador avian avianise avianised avianises avianising avianization avianize avianized avianizes avianizing avians aviararies aviaries aviarist aviarists aviary aviate aviated aviates aviatic aviating aviation aviational aviations aviator aviatorial aviatoriality aviators aviatory aviatress aviatresses aviatrice aviatrices aviatrix aviatrixes avicennia avicenniaceae avichi avicide avick avicolous avicular avicularia avicularian avicularium aviculture avicultures aviculturist aviculturists avid avider avidest avidin avidins avidious avidiously avidities avidity avidly avidness avidnesses avidous avidya avie aviette aviettes aview avifauna avifaunae avifaunal avifaunally avifaunas avifaunistic aviform avigate avigation avigator avigators avijja avilaria avile avilement avilion avine aviolite avion avionic avionics avions avirulence avirulences avirulent avis avisandum avisandums avise avised avisement avisements avises avising avision aviso avisos avital avitaminoses avitaminosis avitaminotic avitic avives avizandum avizandums avize avized avizefull avizes avizing avn avo avocado avocadoes avocados avocat avocate avocation avocational avocationally avocations avocative avocatory avocet avocets avodire avodires avogadrite avogadro avogram avoid avoidable avoidably avoidance avoidances avoidant avoided avoider avoiders avoiding avoidless avoidment avoids avoidupois avoidupoises avoir avoirdupois avoirdupoises avoision avoisions avoke avolate avolation avolitional avondbloem avos avoset avosets avouch avouchable avouchables avouched avoucher avouchers avouches avouching avouchment avouchments avoue avour avoure avoures avourneen avouter avouterer avouterers avoutrer avoutrers avoutries avoutry avow avowable avowableness avowablenesses avowably avowal avowals avowance avowant avowe avowed avowedly avowedness avower avowers avowing avowries avowry avows avowter avoy avoyer avoyers avoyership avulse avulsed avulses avulsing avulsion avulsions avuncular avuncularities avuncularity avuncularly avunculate avunculize avvogadore avyayibhava avys avyze avyzed avyzes avyzing aw awa awabi awacs awaft awag await awaited awaiter awaiters awaiting awaits awakable awake awakeable awaked awaken awakenable awakened awakener awakeners awakening awakeningly awakenings awakenment awakens awakes awaking awakings awald awalim awalt awane awanting awanyu awapuhi award awardable awarded awardee awardees awarder awarders awarding awardment awards aware awaredom awareness awarenesses awarer awarest awarn awarned awarning awarns awarrant awaruite awash awaste awat awatch awater awave away awayes awayness awaynesses aways awber awd awdl awdls awe awearied aweary aweather aweband awed awedly awedness awee aweek aweel aweels aweigh aweing aweless awelessness awelessnesses awendaw awendaws awes awesome awesomely awesomeness awesomenesses awest awestricken awestrike awestrikes awestriking awestruck aweto awetos awfu awful awfuller awfullest awfully awfulness awfulnesses awhape awhaped awhapes awhaping awheel awheels awheft awhet awhile awhir awhirl awide awiggle awikiwiki awin awing awingly awink awiwi awk awkly awkward awkwarder awkwardest awkwardish awkwardly awkwardness awkwardnesses awl awlbird awlbirds awless awlessness awls awlwort awlworts awm awmbrie awmous awmrie awmries awmry awn awned awner awners awnier awniest awning awninged awnings awnless awnlike awns awny awoke awoken awol awols awonder awork aworry aworth awrack awreak awreck awrier awriest awrist awrong awry aws awsome awunctive ax axal axanthopsia axbreaker axe axebreaker axed axehead axeheads axel axels axeman axemaster axemen axenic axenically axer axerophthol axerophthols axers axes axfetch axhammer axhammered axhead axial axialities axiality axially axiate axiation axiferous axiform axifugal axil axile axilemma axilemmas axilemmata axilla axillae axillant axillar axillaries axillars axillary axillas axils axin axine axing axiniform axinite axinites axinomancies axinomancy axiolite axiolitic axiological axiologically axiologies axiologist axiologists axiology axiom axiomatic axiomatical axiomatically axiomatics axiomatisation axiomatisations axiomatise axiomatised axiomatises axiomatising axiomatization axiomatizations axiomatize axiomatized axiomatizes axiomatizing axioms axion axions axiopisty axis axised axises axisymmetric axisymmetrical axisymmetrically axisymmetries axisymmetry axite axites axle axled axles axlesmith axletree axletrees axlike axmaker axmaking axman axmanship axmaster axmen axminster axodendrite axofugal axogamy axoid axoidean axoids axolemma axolemmas axolotl axolotls axolysis axometer axometric axometry axon axonal axone axonemal axoneme axonemes axones axoneure axoneuron axonic axonolipous axonometric axonometry axonophorous axonost axons axopetal axophyte axoplasm axoplasmic axoplasms axopodia axopodium axospermous axostyle axotomous axseed axseeds axstone axtree axunge axweed axwise axwort ay ayacahuite ayah ayahausca ayahs ayahuasca ayahuascas ayahuasco ayahuascos ayapana ayatollah ayatollahs aye ayegreen ayelp ayen ayenbite ayenbites ayens ayenst ayes aygre ayield ayin ayins ayless aylet ayllu aymara ayme ayne ayond ayont ayous ayr ayre ayres ayrie ayries ayrshire ays aythya ayu ayudante ayuntamiento ayuntamientos ayurveda ayurvedas ayurvedic ayus ayuyu aywhere ayword aywords az azactam azadirachta azadirachtin azadrachta azafran azafrin azalea azaleamum azaleas azaleastrum azan azans azarole azaserine azathioprine azathioprines azazel azedarac azedarach azederach azelaic azelate azeotrope azeotropes azeotropic azeotropies azeotropism azeotropy azerbaijan azerbaijani azerbajdzhan azerty azide azides azido azidothymidine azidothymidines aziethane azilut azimene azimethylene azimide azimin azimine azimino aziminobenzene azimuth azimuthal azimuthally azimuths azine azines azinphosmethyl aziola azione aziones azlactone azlon azlons azo azobacter azobenzene azobenzenes azobenzil azobenzoic azobenzol azoblack azoch azocochineal azocoralline azocorinth azocyanide azocyclic azodicarboxylic azodiphenyl azodisulphonic azoeosin azoerythrin azofication azofier azoflavine azoformamide azoformic azofy azogallein azogreen azogrenadine azohumic azoic azoimide azoisobutyronitrile azole azoles azolitmin azolla azollaceae azollas azomethine azon azonal azonaphthalene azonic azonium azons azoology azoospermia azoospermias azoparaffin azophen azophenetole azophenine azophenol azophenyl azophenylene azophosphin azophosphore azoprotein azores azorite azorubine azosulphine azosulphonic azotaemia azotate azote azotea azoted azotemia azotemias azotemic azotenesis azotes azotetrazole azoth azothionium azoths azotic azotin azotine azotise azotised azotises azotising azotite azotize azotized azotizes azotizing azotobacter azotobacters azotoluene azotometer azotorrhea azotorrhoea azotous azoturia azoturias azovernine azox azoxazole azoxime azoxine azoxonium azoxy azoxyanisole azoxybenzene azoxybenzoic azoxynaphthalene azoxyphenetole azoxytoluidine azrael azt aztec azteca aztecan aztecs azthionium aztreonam azulejo azulejos azulene azuline azulite azulmic azumbre azure azurean azured azureness azureous azures azurine azurines azurite azurites azurmalachite azurn azurous azury azygies azygobranchiate azygomatous azygos azygoses azygosperm azygospore azygote azygous azygy azym azyme azymes azymia azymite azymites azymous azyms aîné aînée aïoli b ba baa baaed baahling baaing baaings baal baalim baalism baalisms baals baar baas baases baaskaap baaskaaps baaskap baaskaps baasskap baasskaps bab baba babaco babacoote babacootes babacos babai babajaga babakoto babar babas babasco babassu babassus babasu babaylan babaylanes babbage babbie babbishly babbit babbiting babbitries babbitry babbitt babbitted babbitter babbitting babbittries babbittry babbitts babblative babble babbled babblement babblements babbler babblers babbles babblesome babblier babbliest babbling babblingly babblings babblish babblishly babbly babbool babbools babby babcock babe babehood babel babeldom babeldoms babelesque babelet babelike babelish babelism babelisms babels babery babes babeship babesia babesias babesiases babesiasis babesiidae babesioses babesiosis babiche babiches babied babier babies babiest babillard babingtonite babingtonites babinski babion babirousa babirousas babiroussa babiroussas babirusa babirusas babirussa babirussas babis babish babished babishly babishness babka babkas bablah bablahs bable babloh baboen baboodom babooism babool babools baboon babooneries baboonery baboonish baboonroot baboons baboosh babooshes baboot babouche babouches babracot babroot babuche babuches babudom babudoms babuina babuism babuisms babul babuls baburd babushka babushkas baby babydoll babydolls babydom babyfied babyfood babyfoods babyhood babyhoods babyhouse babying babyish babyishly babyishness babyism babylike babylon babylonia babylonian babylonians babylonish babyminder babyolatry babyproof babyproofed babyproofing babyproofs babyrousa babysat babyship babysit babysits babysitter babysitters babysitting babytalk bac bacaba bacach bacalao bacalaos bacao bacauan bacbakiri bacca baccaceous baccae baccalaurean baccalaureat baccalaureate baccalaureates baccalaureus baccar baccara baccaras baccarat baccarats baccare baccas baccate baccated bacchae bacchanal bacchanalia bacchanalian bacchanalianism bacchanalianisms bacchanalianly bacchanalians bacchanalias bacchanalism bacchanalization bacchanalize bacchanals bacchant bacchante bacchantes bacchantic bacchants bacchar baccharis baccharoid baccheion bacchiac bacchian bacchic bacchii bacchiuchii bacchius bacchus baccies bacciferous bacciform baccilar baccilla baccilli baccillla baccillum baccivorous bacco baccoes baccos baccy bach bachamel bacharach bacharachs bache bached bachel bachelor bachelordom bachelordoms bachelorette bachelorettes bachelorhood bachelorhoods bachelorise bachelorism bachelorisms bachelorize bachelorlike bachelorly bachelors bachelorship bachelorships bachelorwise bachelry baches baching bachs bacilary bacile bacillaceae bacillaemia bacillaemias bacillar bacillariaceous bacillariophyceae bacillary bacillemia bacillemias bacilli bacillian bacillicidal bacillicide bacillicides bacillicidic bacilliculture bacilliform bacilligenic bacilliparous bacillite bacillogenic bacillogenous bacillophobia bacillosis bacilluria bacillus bacin bacitracin bacitracins back backache backaches backaching backachy backadation backage backare backarrow backarrows backband backbands backbar backbars backbear backbearing backbeat backbeats backbench backbencher backbenchers backbenches backbend backbends backberand backberend backbit backbite backbiter backbiters backbites backbiting backbitingly backbitings backbitten backblast backblock backblocks backblow backboard backboards backbond backbonds backbone backboned backboneless backbonelessness backbones backbrand backbreaker backbreakers backbreaking backcap backcast backcasts backchain backchat backchats backchatted backchatting backcloth backcloths backcomb backcombed backcombing backcombs backcountries backcountry backcourt backcourtman backcourtmen backcourts backcross backcrossed backcrosses backcrossing backdate backdated backdates backdating backdoor backdown backdowns backdrop backdropped backdropping backdrops backdropt backed backen backened backening backer backers backet backets backfall backfalls backfatter backfield backfields backfile backfiles backfill backfilled backfiller backfilling backfills backfire backfired backfires backfiring backfisch backfisches backfit backfits backfitted backfitting backfittings backflap backflash backflip backflipped backflipping backflips backflow backflowing backflows backfold backframe backfriend backfurrow backgame backgammon backgammoned backgammoning backgammons backgeared background backgrounded backgrounder backgrounders backgrounding backgrounds backhand backhanded backhandedly backhandedness backhandednesses backhander backhanders backhanding backhands backhatch backhaul backhauled backhauling backhauls backheel backheeled backheeling backheels backhoe backhoed backhoeing backhoes backhooker backhouse backhouses backie backiebird backing backings backjaw backjoint backland backlands backlash backlashed backlasher backlashers backlashes backlashing backless backlet backliding backlift backlifts backlight backlighted backlighting backlightings backlights backlings backlins backlist backlisted backlisting backlists backlit backload backloaded backloading backloads backlog backlogged backlogging backlogs backlot backlots backlotter backmarker backmarkers backmost backoff backorder backordered backordering backorders backout backouts backpack backpacked backpacker backpackers backpacking backpackings backpacks backpay backpays backpedal backpedaled backpedaling backpedalled backpedalling backpedals backpiece backpieces backplane backplanes backplate backplates backpointer backpointers backra backras backrest backrests backroom backrooms backrope backropes backrun backrush backrushes backs backsaw backsaws backscatter backscattered backscattering backscatterings backscatters backscraper backscratch backscratched backscratcher backscratchers backscratches backscratching backscratchings backseat backseats backset backsets backsetting backsettler backsey backseys backsheesh backsheeshed backsheeshes backsheeshing backshift backshish backshished backshishes backshishing backshore backshores backside backsides backsight backsights backsite backslap backslapped backslapper backslappers backslapping backslaps backslash backslashes backslid backslidden backslide backslided backslider backsliders backslides backsliding backslidingness backslidings backspace backspaced backspacefile backspacer backspacers backspaces backspacing backspang backspear backspeer backspeered backspeering backspeers backspeir backspeired backspeiring backspeirs backspier backspierer backspin backspins backsplash backsplashes backsplice backspliced backsplicing backspread backspringing backstab backstabbed backstabber backstabbers backstabbing backstabbings backstabs backstaff backstage backstair backstairs backstall backstalls backstamp backstarting backstay backstays backster backstick backstitch backstitched backstitches backstitching backstone backstop backstopped backstopping backstops backstrap backstrapped backstreet backstreets backstretch backstretches backstring backstrip backstroke backstroked backstroker backstrokers backstrokes backstroking backstromite backswept backswimmer backswimmers backswing backswings backsword backswording backswordman backswordmen backswords backswordsman backtack backtalk backtalks backtender backtenter backtrace backtrack backtracked backtracker backtrackers backtracking backtrackings backtracks backtrail backtrick backup backups backus backveld backvelder backvelders backvelds backwall backward backwardation backwardations backwardly backwardness backwardnesses backwards backwash backwashed backwasher backwashes backwashing backwater backwatered backwaters backway backwind backwinded backwinding backwood backwoods backwoodser backwoodsiness backwoodsman backwoodsmen backwoodsy backword backwords backwork backworker backworkers backworks backworm backwort backwrap backwraps backy backyard backyarder backyards baclava baclavas baclin bacon baconer baconers baconian baconise baconize bacons baconweed bacony bacquet bacs bact bacteraemia bacteraemias bacteremia bacteremias bacteremic bacteremically bacteria bacteriaceous bacteriacide bacteriaemia bacterial bacterially bacterian bacterias bacteric bactericholia bactericidal bactericidally bactericide bactericides bactericidin bacterid bacteriemia bacteriform bacterin bacterins bacterioagglutinin bacterioblast bacteriochlorophyll bacteriochlorophylls bacteriocidal bacteriocin bacteriocins bacteriocyte bacteriodiagnosis bacteriofluorescin bacteriogenic bacteriogenous bacteriohemolysin bacterioid bacterioidal bacterioids bacteriol bacteriologic bacteriological bacteriologically bacteriologies bacteriologist bacteriologists bacteriology bacteriolyses bacteriolysin bacteriolysins bacteriolysis bacteriolytic bacteriolyze bacteriopathology bacteriophage bacteriophages bacteriophagia bacteriophagic bacteriophagies bacteriophagous bacteriophagy bacteriophobia bacterioprecipitin bacterioprotein bacteriopsonic bacteriopsonin bacteriopurpurin bacteriorhodopsin bacteriorhodopsins bacterioscopic bacterioscopical bacterioscopically bacterioscopist bacterioscopy bacterioses bacteriosis bacteriosolvent bacteriostases bacteriostasis bacteriostat bacteriostatic bacteriostatically bacteriostats bacteriotherapeutic bacteriotherapy bacteriotoxic bacteriotoxin bacteriotropic bacteriotropin bacteriotrypsin bacterious bacteririum bacterise bacterised bacterises bacterising bacteritic bacterium bacteriuria bacteriurias bacterization bacterizations bacterize bacterized bacterizes bacterizing bacteroid bacteroidaceae bacteroidal bacteroides bacteroids bacteruria bacterurias bactetiophage bactriticone bactritoid bacubert bacula bacule baculere baculi baculiferous baculiform baculine baculite baculites baculitic baculiticone baculoid baculovirus baculoviruses baculum baculums baculus bacury bad badaga badan badarrah badass badassed badasses badaud badaxe badchan baddeleyite baddeleyites badder badderlock badderlocks baddest baddie baddies baddish baddishly baddishness baddock baddy bade badenite badge badged badgeless badgeman badgemen badger badgerbrush badgered badgerer badgering badgeringly badgerlike badgerly badgers badgerweed badges badging badgir badhan badiaga badian badigeon badinage badinaged badinages badinaging badiner badinerie badineur badious badju badland badlands badling badly badman badmash badmashes badmen badminton badmintons badmouth badmouthed badmouthing badmouths badness badnesses badrans bads bae baedeker baedekers bael baels baetuli baetulus baetyl baetylic baetyls baetylus baetzner bafaro baff baffed baffeta baffies baffing baffle baffled bafflegab bafflegabs bafflement bafflements baffleplate baffler bafflers baffles baffling bafflingly bafflingness baffs baffy baft bafta baftah bafts bag baga bagani bagarre bagarres bagascosis bagass bagasse bagasses bagassoses bagassosis bagataway bagatelle bagatelles bagatine bagattini bagattino bagdad bagel bagels bagful bagfuls baggage baggageman baggagemaster baggager baggages baggala bagganet bagge bagged bagger baggers baggie baggier baggies baggiest baggily bagginess bagginesses bagging baggings baggit baggits baggy baggyrinkle baggywrinkle bagh baghdad baghla baghouse baghouses bagie bagio bagios bagle bagleaves baglike bagmaker bagmaking bagman bagmen bagne bagnes bagnet bagnette bagnio bagnios bagnut bago bagonet bagong bagoong bagpipe bagpiped bagpiper bagpipers bagpipes bagpiping bagpipings bagplant bagpod bagpudding bagrationite bagre bagreef bagroom bags bagsful bagtikan baguet baguets baguette baguettes baguio baguios bagwash bagwashes bagwig bagwigged bagwigs bagwoman bagwomen bagwork bagworm bagworms bagwyn bah bahada bahadas bahadur bahadurs bahai bahamas bahamian bahamians bahan bahar bahasa bahawder bahay bahera bahiaite bahisti bahnung baho bahoe bahoo bahrain bahraini bahrein bahreini bahs baht bahts bahur bahut bahuts bahuvrihi bahuvrihis bai baic baidak baidar baidarka baidarkas baigan baigans baiginet baign baignet baignets baigneuse baigneuses baignoire baignoires baikalite baikerinite baikerite baikie bail bailable bailage bailbond bailbonds baile bailed bailee bailees bailer bailers bailey baileys bailiaries bailiary bailie bailieries bailiery bailies bailieship bailieships bailiff bailiffry bailiffs bailiffship bailiffships bailiffwick bailing bailiwick bailiwicks bailli bailliage baillie baillies baillieship baillieships baillone bailment bailments bailo bailor bailors bailout bailouts bailpiece bails bailsman bailsmen bailwood bain bainie bainin bainins bainite bainites baioc baiocchi baiocco baiomys bairagi bairam bairava bairdi bairdiella bairn bairnie bairnish bairnishness bairnlier bairnliest bairnlike bairnliness bairnly bairns bairnteam bairnteem bairntime bairnwort baisakh baisemain baisemains baister bait baited baiter baiters baitfish baitfishes baith baiting baitings baits baittle baitylos baiza baizas baize baized baizes baizing baja bajada bajadas bajan bajans bajarigar bajee bajees bajocco bajochi bajoire bajonado bajra bajras bajree bajrees bajri bajris baju bajulate bajury bajus baka bakal bake bakeapple bakeapples bakeboard bakeboards baked bakehead bakehouse bakehouses bakelite bakelites bakelize bakemeat bakemeats baken bakeout bakeoven bakepan baker bakerdom bakeress bakeries bakerite bakerless bakerlike bakerly bakers bakersfield bakersheet bakersheets bakership bakery bakes bakeshop bakeshops bakestone bakestones bakeware bakewares bakhshish bakhshished bakhshishes bakhshishing bakie baking bakingly bakings baklava baklavas baklawa baklawas bakli bakra bakras baksheesh baksheeshed baksheeshes baksheeshing bakshi bakshis bakshish bakshished bakshishes bakshishing baktun baku bakula bakupari bal balaam balabos balachan balachong balaclava balaclavas balada baladin baladine baladines baladins balaena balaeniceps balaenicipitidae balaenid balaenidae balaenoid balaenoidean balaenoptera balaenopteridae balafo balagan balaghat balaghaut balai balalaika balalaikas balance balanceable balanced balancedness balancelle balanceman balancement balancer balancers balances balancewise balancing balander balandra balandrana balaneutics balangay balanic balanid balanidae balaniferous balanism balanite balanitis balanitises balanoblennorrhea balanocele balanoid balanophoraceous balanophore balanophorin balanoplasty balanoposthitis balanopreputial balanops balanorrhagia balant balantidial balantidiasis balantidic balantidiosis balanus balao balaos balaphon balarama balarao balas balases balat balata balatas balate balatong balatron balatronic balatte balau balausta balaustine balaustre balayeuse balboa balboas balbriggan balbriggans balbusard balbutiate balbutient balbuties balche balcon balcone balconet balconets balconette balconettes balconied balconies balcony bald baldacchini baldacchino baldachin baldachined baldachini baldachino baldachinos baldachins baldakin baldaquin baldaquins baldberry baldcrown balded balden balder balderdash balderdashes balderlocks baldest baldfaced baldhead baldheaded baldheads baldicoot baldicoots baldier baldies baldiest balding baldish baldling baldly baldmoney baldmoneys baldness baldnesses baldoquin baldpate baldpated baldpatedness baldpates baldr baldrib baldric baldrick baldricked baldricks baldrics baldricwise balds balducta balductum baldwin baldy bale baleare balebos balection balections baled baleen baleens balefire balefires baleful balefuller balefullest balefully balefulness balefulnesses balei baleise baleless baler balers bales balestra balete balewort baleys bali balian balibago balibuntal balibuntals balibuntl balimbing baline balinese baling balinger balinghasay balisaur balisaurs balisier balisiers balista balistae balistarii balistarius balistas balister balistes balistid balistidae balistraria balita balitao baliti balize balk balkan balkanisation balkanisations balkanise balkanised balkanises balkanising balkanization balkanizations balkanize balkanized balkanizes balkanizing balkans balked balker balkers balkier balkiest balkily balkiness balkinesses balking balkingly balkings balkish balkline balklines balks balky ball ballabile ballabiles ballabili ballad ballade balladed balladeer balladeered balladeering balladeers ballader balladeroyal ballades balladic balladical balladier balladin balladine balladines ballading balladins balladise balladised balladising balladism balladist balladists balladize balladized balladizing balladlike balladling balladmonger balladmongering balladmongers balladries balladromic balladry ballads balladwise ballahoo ballahou ballam ballan ballans ballant ballanted ballanting ballants ballanwrasse ballanwrasses ballarag ballard ballas ballast ballastage ballasted ballaster ballastic ballasting ballasts ballat ballata ballate ballated ballating ballaton ballatoon ballats ballboy ballbuster ballcarrier ballcarriers ballclay ballclays ballcock ballcocks balldom balldress balled baller ballerina ballerinas ballerine ballers ballet balleted balletic balletically balleting balletomane balletomanes balletomania balletomanias ballets ballett ballfield ballflower ballflowers ballgame ballgames ballgirl ballgirls ballgown ballgowns ballhandling ballhandlings ballhawk ballhawks ballhooter balli balliage ballier ballies balliest balling ballings ballised ballism ballismus ballist ballista ballistae ballistas ballistic ballistically ballistician ballisticians ballistics ballistite ballistites ballistocardiogram ballistocardiograms ballistocardiograph ballistocardiographic ballistocardiographies ballistocardiographs ballistocardiography ballistophobia ballium balliums ballmine ballo ballock ballocks ballocksed ballockses ballocksing balloen ballogan ballon ballone ballones ballonet ballonets ballonette ballonna ballonnas ballonne ballonnes ballons balloon balloonation ballooned ballooner ballooners balloonery balloonet balloonfish balloonfishes balloonflower balloonful ballooning balloonings balloonish balloonist balloonists balloonlike balloons ballot ballota ballotade ballotage ballote balloted ballotee ballotees balloter balloters balloting ballotist ballots ballottable ballottement ballottements ballottine ballottines ballow ballows ballpark ballparks ballpen ballpens ballplayer ballplayers ballpoint ballpoints ballproof ballroom ballrooms balls ballsed ballses ballsier ballsiest ballsiness ballsinesses ballsing ballstock ballsy ballup ballups ballute ballutes ballweed bally ballyhack ballyhoo ballyhooed ballyhooer ballyhooing ballyhoos ballyrag ballyragged ballyragging ballyrags ballywack ballywrack balm balmacaan balmacaans balmed balmier balmiest balmily balminess balminesses balming balmlike balmonies balmony balmoral balmoralities balmorality balmorals balms balmy balnea balneae balneal balnearies balneary balneation balneations balneatory balneographer balneography balneologic balneological balneologies balneologist balneologists balneology balneophysiology balneotechnics balneotherapeutics balneotherapia balneotherapies balneotherapy balneum balochi balon balonea baloney baloneys baloo baloos balopticon balotade balourdise balow balr bals balsa balsam balsamaceous balsamation balsameaceous balsamed balsamer balsamic balsamical balsamically balsamiferous balsamina balsaminaceae balsaminaceous balsamine balsaming balsamise balsamitic balsamiticness balsamize balsamo balsamorhiza balsamous balsamroot balsams balsamum balsamweed balsamy balsas balsawood balsawoods baltei balter baltetei balteus balthasar balthasars balthazar balthazars baltheus balti baltic baltimore baltimorite baltis balu baluchi baluchithere baluchitheria baluchitherium balun balus balushai baluster balustered balusters balustrade balustraded balustrades balustrading balut balwarra balza balzac balzacian balzarine balzarines bam bamah bamako bambacciata bamban bambini bambino bambinos bambocciade bambochade bamboche bamboo bamboos bamboozle bamboozled bamboozlement bamboozlements bamboozler bamboozlers bamboozles bamboozling bamboula bambuco bambuk bambusa bambuseae bammed bammer bammers bamming bamoth bampot bampots bams ban banaba banago banagos banak banakite banal banaler banalest banalisation banalisations banalise banalised banalises banalising banalities banality banalization banalizations banalize banalized banalizes banalizing banally banalness banana bananaquit bananas bananist bananivorous banat banate banatite banausian banausic banbury banc banca bancal bancales bancassurance bancassurances bancassurer bancassurers banch bancha banchi banco bancos bancs bancus band banda bandage bandaged bandager bandagers bandages bandaging bandagist bandaid bandaids bandaite bandaka bandala bandalore bandalores bandana bandanaed bandanas bandanna bandannaed bandannas bandar bandarlog bandars bandas bandbox bandboxes bandboxical bandboxy bandbrake bandbrakes bandcase bandcutter bande bandeau bandeaus bandeaux banded bandeirante bandeirantes bandel bandelet bandelets bandelette bandelier bandeliers bandeng bander banderilla banderillas banderillero banderilleros banderlog banderol banderole banderoled banderoles banderoling banderols banders bandersnatch bandersnatches bandfile bandfiled bandfiling bandfish bandgap bandh bandhava bandhook bandhu bandi bandicoot bandicooted bandicooting bandicoots bandicoy bandido bandidos bandie bandied bandier bandies bandiest bandikai bandiness banding bandings bandit banditism banditries banditry bandits banditti bandittis bandle bandleader bandleaders bandless bandlessly bandlessness bandlet bandlimit bandlimited bandlimiting bandlimits bandman bandmaster bandmasters bando bandobast bandobasts bandobust bandog bandogs bandoleer bandoleered bandoleers bandoleon bandoleons bandolerismo bandolero bandoleros bandolier bandoliered bandoliers bandoline bandolined bandolines bandolining bandon bandoneon bandoneonist bandoneonists bandoneons bandonion bandonions bandook bandooks bandora bandoras bandore bandores bandos bandpass bandrol bandrols bands bandsaw bandsawed bandsawing bandsawn bandsaws bandsman bandsmen bandspreading bandstand bandstands bandster bandsters bandstop bandstring bandtail bandung bandura banduras bandurria bandurrias bandwagon bandwagons bandwidth bandwidths bandwork bandworm bandy bandyball bandying bandyings bandylegged bandyman bandymen bane baneberries baneberry baned baneful banefuller banefullest banefully banefulness banefulnesses banes banewort banff bang banga bangalay bangalow bangboard bange banged banger banghy bangiaceae bangiaceous banging bangings bangkok bangkoks bangladesh bangladeshi bangle bangled bangles bangling bangos bangs bangsring bangsrings bangster bangsters bangtail bangtailed bangtails bangui bangup bangy bani bania banian banians banias banig banilad baning banish banished banisher banishers banishes banishing banishment banishments banister banistered banisterine banisters baniwa baniya banjara banjax banjaxed banjaxes banjaxing banjo banjoes banjoist banjoists banjore banjorine banjos banjuke banjulele banjuleles bank bankabilities bankability bankable bankbook bankbooks bankcard bankcards banked banker bankera bankerdom bankeress bankerly bankers banket bankets bankfull bankia banking bankings bankit bankits bankman bankmen banknote banknotes bankrider bankroll bankrolled bankroller bankrollers bankrolling bankrolls bankrupcy bankrupt bankruptcies bankruptcy bankrupted bankrupting bankruptism bankruptlike bankruptly bankrupts bankruptship bankrupture banks bankshall banksia banksias bankside banksides banksman banksmen bankweed banky banlieu banlieue bannable bannack bannat banned banner bannerall banneralls bannered bannerer banneret bannerets bannerette bannerettes bannerfish bannering bannerless bannerlike bannerline bannerman bannermen bannerol bannerole bannerols banners bannerwise bannet bannets bannimus banning bannister bannisters bannition bannock bannockburn bannocks banns bannut banovina banque banquet banqueted banqueteer banqueteering banqueteers banqueter banqueters banqueting banquetings banquets banquette banquettes banquo bans bansalague bansela banshee banshees banstickle bant bantam bantamise bantamize bantams bantamweight bantamweights bantay bantayan banted banteng bantengs banter bantered banterer banterers bantering banteringly banterings banters bantery banties bantin banting bantingism bantingisms bantingize bantings bantling bantlings bantoid bants bantu bantus banty banus banuyo banxring banxrings banya banyan banyans banzai banzais baobab baobabs bap baphia baphomet baphometic bapistery baps bapt baptisable baptise baptised baptisement baptiser baptisers baptises baptisia baptisias baptising baptism baptismal baptismally baptisms baptist baptisteries baptistery baptistic baptistries baptistry baptists baptizable baptize baptized baptizee baptizement baptizer baptizers baptizes baptizing bapu bapus bar bara barabara barabbas barabora baracan baracans barad baradari baragnosis baragouin baragouinish baragouins baraita barajillo baraka baralipton baramin barandos baranduki barangay barani bararesque bararite barasinga barasingha barat barathea baratheas barathra barathron barathrum barathrums barato baratte barauna baraza barazas barb barba barbacan barbacou barbadian barbadoes barbados barbal barbaloin barbar barbara barbaralalia barbarea barbaresque barbarian barbarianise barbarianism barbarianisms barbarianize barbarianized barbarianizing barbarians barbaric barbarical barbarically barbarious barbariousness barbarisation barbarisations barbarise barbarised barbarises barbarising barbarism barbarisms barbarities barbarity barbarization barbarizations barbarize barbarized barbarizes barbarizing barbarossa barbarous barbarously barbarousness barbarousnesses barbary barbas barbasco barbascoes barbascos barbastel barbastelle barbastelles barbastels barbate barbated barbatimao barbe barbeau barbecue barbecued barbecueing barbecuer barbecuers barbecues barbecuing barbed barbedness barbeiro barbel barbeled barbell barbellate barbells barbellula barbellulae barbellulate barbels barbeque barbequed barbeques barbequing barber barbera barbered barberess barberfish barbering barberish barberite barbermonger barbero barberries barberry barbers barbershop barbershops barbery barbes barbet barbets barbette barbettes barbican barbicanage barbicans barbicel barbicels barbie barbierite barbies barbigerous barbing barbion barbita barbital barbitalism barbitals barbiton barbitone barbitones barbitos barbituism barbiturate barbiturates barbituric barbiturism barble barbless barblet barbola barbolas barbone barbotine barbotines barbotte barbouillage barboy barbre barbs barbu barbuda barbudo barbudos barbula barbulate barbule barbules barbulyie barbut barbute barbuts barbwire barbwires barca barcarole barcaroles barcarolle barcarolles barcas barcella barcelona barcelonas barchan barchane barchanes barchans barche barcolongo barcone bard bardane bardash bardashes bardcraft barde barded bardee bardel bardelle bardes bardess bardic bardie bardier bardiest bardiglio bardily bardiness barding bardings bardish bardism bardlet bardlike bardling bardlings bardo bardocucullus bardolater bardolaters bardolatries bardolatrous bardolatry bardos bards bardship bardships bardy bare bareback barebacked bareboat bareboating bareboatings bareboats barebone bareboned barebones bareca bared barefaced barefacedly barefacedness barefacednesses barefisted barefit barefoot barefooted barege bareges baregine baregines barehanded barehandedness barehandednesses barehead bareheaded bareheadedness bareheadednesses bareka bareknuckle bareknuckled barelegged bareleggedness bareleggednesses barely barenecked bareness barenesses barer bares baresark baresarks baresma barest baresthesia baret baretta barf barfed barff barfing barfish barflies barfly barfs barful barfy bargain bargainable bargained bargainee bargainer bargainers bargaining bargainor bargains bargainwise bargander barganders barge bargeboard bargeboards barged bargee bargeer bargees bargeese bargehouse bargelike bargelli bargello bargellos bargeload bargeman bargemaster bargemasters bargemen bargepole bargepoles barger barges bargest bargestone bargests bargh barghaist barghaists bargham barghest barghests barging bargir bargirl bargirls bargoose barguest barguests barhal barhop barhopped barhopping barhops bari baria bariatric bariatrician bariatricians bariatrics baric barid barie barih barile barilla barillas baring bariolage baris barish barit barite baritenor barites baritonal baritone baritones barium bariums bark barkan barkans barkantine barkary barkbound barkcutter barked barkeep barkeeper barkeepers barkeeps barken barkened barkening barkens barkentine barkentines barker barkers barkery barkevikite barkevikitic barkey barkhan barkhans barkier barkiest barking barkingly barkle barkless barklice barklouse barklyite barkometer barkpeel barkpeeler barkpeeling barks barksome barkstone barky barlafumble barlafummil barleduc barleducs barless barley barleybird barleybrake barleybreak barleycorn barleycorns barleyhood barleymow barleymows barleys barleysick barling barlock barlow barlows barly barm barmaid barmaids barman barmaster barmbrack barmbracks barmcloth barmecidal barmecide barmen barmfel barmie barmier barmiest barminess barminesses barming barmitsvah barmitsvahs barmitzvah barmitzvahs barmkin barmkins barmote barms barmskin barmy barmybrained barn barnabas barnabite barnaby barnacle barnacled barnacles barnacling barnage barnard barnbrack barnbracks barnburner barnburners barndoor barndoors barned barney barneys barnful barnhardtite barnier barniest barning barnlike barnman barnmen barns barnsbreaking barnsbreakings barnstorm barnstormed barnstormer barnstormers barnstorming barnstormings barnstorms barnumize barny barnyard barnyards barocco baroccos baroceptor baroceptors barock barocks baroclinicity baroclinity barocyclonometer barodynamic barodynamics barognosis barogram barograms barograph barographic barographs baroi baroko barolo barology baromacrometer barometer barometers barometric barometrical barometrically barometries barometrograph barometrography barometry barometz barometzes baromotor baron baronage baronages baronduki baroness baronesses baronet baronetage baronetages baronetcies baronetcy baroneted baronetess baronetesses baronethood baronetical baroneting baronetise baronetised baronetising baronetize baronetized baronetizing baronets baronetship barong barongs baroni baronial baronies baronise baronize baronized baronizing baronne baronnes baronries baronry barons baronship barony barophobia baroque baroquely baroqueness baroques baroreceptor baroreceptors barosaur barosaurs barosaurus baroscope baroscopes baroscopic baroscopical barosinusitis barosinusitus barosmin barostat barostats baroswitch barotactic barotaxis barotaxy barothermogram barothermograph barothermohygrogram barothermohygrograph baroto barotrauma barotraumas barotraumata barotropic barotropy barouche barouches barouchet barouchette baroxyton barp barperson barpersons barpost barps barquantine barque barquentine barquentines barques barquest barquette barquettes barr barra barrabkie barrable barrabora barracan barracans barrace barraces barrack barracked barracker barrackers barracking barrackings barracks barraclade barracoon barracoons barracoota barracootas barracouta barracoutas barracuda barracudas barracudina barrad barragan barrage barraged barrages barraging barragon barramunda barramundas barramundi barramundies barramundis barranca barrancas barranco barrancos barrandite barras barrat barrater barraters barrator barrators barratries barratrous barratrously barratry barrats barre barred barrefull barrel barrelage barrelages barreled barreler barrelet barreleye barreleyes barrelfish barrelfishes barrelful barrelfuls barrelhead barrelheads barrelhouse barrelhouses barreling barrelled barrelling barrelmaker barrelmaking barrels barrelsful barrelwise barren barrener barrenest barrenly barrenness barrennesses barrens barrenwort barrenworts barrer barrera barres barret barretor barretors barretries barretry barrets barrette barretter barretters barrettes barricade barricaded barricader barricaders barricades barricading barricado barricadoed barricadoes barricadoing barricados barrico barricoes barricos barrie barrier barriered barriering barriers barriguda barrigudo barrigudos barrikin barriness barring barringer barrings barrio barrios barrister barristerial barristers barristership barristerships barristress barroom barrooms barrow barrowcoat barrowful barrowist barrowman barrows barrulee barrulet barrulets barrulety barruly barry bars barse barsom barspoon barstool barstools bart bartend bartended bartender bartenders bartending bartends barter bartered barterer barterers bartering barters barth barthian barthite bartholinitis bartholomew bartisan bartisaned bartisans bartizan bartizaned bartizans bartlett bartletts barton bartonia bartons bartram bartramia bartree bartsia baru barukhzy barunduki baruria barvel barvell barwal barware barwares barway barways barwin barwing barwise barwood barwoods barycenter barycenters barycentre barycentric barye baryecoia baryes baryglossia barylalia barylite baryon baryonic baryons baryphonia baryphonic baryphony barysilite barysphere baryspheres baryta barytas baryte barytes barythymia barytic barytine barytocalcite barytocelestine barytocelestite baryton barytone barytones barytons barytophyllite barytostrontianite barytosulphate bas basad basal basale basalia basally basalt basaltes basaltic basaltiform basaltine basaltoid basalts basaltware basaltwares basan basanite basanites basans basaree basat bascinet basculation bascule bascules bascunan base baseball baseballdom baseballer baseballers baseballs baseband baseboard baseboards baseborn basebred baseburner baseburners basecoat basecourt basecourts based basehearted baseheartedness basel baselard baselards baseless baselessly baselessness baselessnesses baselevel baselike baseline baseliner baseliners baselines basella basellaceous basely baseman basemen basement basementless basements basementward basename baseness basenesses basenet basenji basenjis baseplate baseplates baseplug basepoint baser baserunner baserunners baserunning baserunnings bases basest bash bashalick bashara bashaw bashawdom bashawism bashawisms bashaws bashawship bashawships bashed basher bashers bashes bashful bashfully bashfulness bashfulnesses bashibazouk bashing bashings bashless bashlik bashliks bashlyk bashlyks bashment basho bashos bashyle basial basialveolar basiarachnitis basiarachnoiditis basiate basiated basiating basiation basibranchial basibranchiate basibregmatic basic basically basicerite basichromatic basichromatin basichromatinic basichromiole basicities basicity basicranial basics basicytoparaplastin basidia basidial basidigital basidigitale basidigitalia basidiocarp basidiogenetic basidiolichen basidiomycete basidiomycetes basidiomycetous basidiomycota basidiomycotina basidiophore basidiospore basidiospores basidiosporous basidium basidorsal basifacial basification basifications basified basifier basifiers basifies basifixed basifugal basify basifying basigamous basigamy basigenic basigenous basiglandular basigynium basihyal basihyoid basil basilar basilard basilary basilateral basilect basilects basileis basilemma basileus basilian basilic basilica basilicae basilical basilicalike basilican basilicas basilicata basilicate basilicock basilicon basilicons basilics basilidan basilinna basiliscan basiliscine basiliscus basilisk basilisks basilissa basils basilweed basilysis basilyst basimesostasis basin basinal basinasal basinasial basined basinerved basinet basinets basinful basinfuls basing basinlike basins basioccipital basion basions basiophitic basiophthalmite basiophthalmous basiotribe basiotripsy basiparachromatin basiparaplastin basipetal basipetally basiphobia basipodite basipoditic basipterygial basipterygium basipterygoid basiradial basirhinal basirostral basis basiscopic basisidia basisolute basisphenoid basisphenoidal basitemporal basitting basiventral basivertebral bask baske basked basker basket basketball basketballer basketballs basketeer basketful basketfuls basketing basketlike basketmaker basketmaking basketries basketry baskets basketsful basketware basketweave basketweaver basketweaves basketweaving basketwoman basketwood basketwork basketworks basketworm basking basks basle basmati basmatis basmitzvah basmitzvahs basnat basnet basnets basoche basocyte basoid basommatophorous bason basons basophil basophile basophiles basophilia basophilias basophilic basophilous basophils basophobia basos basote basotho basque basqued basques basquine basquines bass bassan bassanello bassanite bassara bassarid bassariscidae bassariscus bassarisk basse bassed basser basses bassest basset basseted basseterre basseting bassetite bassets bassetta bassette bassetted bassetting bassi bassia bassie bassier bassiest bassine bassinet bassinets bassing bassirilievi bassist bassists bassly bassness bassnesses basso basson bassoon bassoonist bassoonists bassoons bassorin bassos bassus basswood basswoods bassy bast basta bastant bastard bastarda bastardice bastardies bastardisation bastardisations bastardise bastardised bastardises bastardising bastardism bastardisms bastardization bastardizations bastardize bastardized bastardizes bastardizing bastardliness bastardly bastardry bastards bastardy baste basted basten baster basters bastes basti bastian bastide bastides bastile bastiles bastille bastilles bastillion bastiment bastinade bastinaded bastinades bastinading bastinado bastinadoed bastinadoes bastinadoing bastinados basting bastings bastion bastionary bastioned bastionet bastions bastite bastle bastles bastnaesite bastnaesites bastnasite bastnasites bastnäsite basto baston bastonet bastonite bastos basts basuco basucos basural basurale basuto basutoland basyl bat bata bataan batable batad batakan bataleur batamote batara batarde batardeau batata batatas batatilla batavian batboy batboys batch batched batcher batchers batches batching batchings bate batea bateau bateaux bated bateful batel bateless bateleur bateleurs batell bateman batement batements bater bates batete batfish batfishes batfowl batfowled batfowler batfowlers batfowling batfowlings batfowls batful batgirl batgirls bath bathcube bathcubes bathe batheable bathed bather bathers bathes bathetic bathetically bathflower bathhouse bathhouses bathic bathinette bathing bathings bathkol bathless bathman bathmat bathmats bathmic bathmism bathmisms bathmitsvah bathmitsvahs bathmitzvah bathmitzvahs bathmizvah bathmizvahs bathmotropic bathmotropism bathochromatic bathochromatism bathochrome bathochromic bathochromy bathoflore bathofloric batholite batholites batholith batholithic batholiths batholitic bathomania bathometer bathometers bathometry bathool bathophobia bathophobias bathorse bathorses bathos bathoses bathrobe bathrobes bathroom bathroomed bathrooms bathroot baths bathtub bathtubful bathtubs bathukolpian bathukolpic bathurst bathvillite bathwater bathwaters bathwort bathyal bathyanesthesia bathybian bathybic bathybius bathybiuses bathycentesis bathychrome bathycolpian bathycolpic bathycurrent bathyergidae bathyergus bathyesthesia bathygraphic bathygraphical bathyhyperesthesia bathyhypesthesia bathyl bathylimnetic bathylite bathylites bathylith bathylithic bathyliths bathylitic bathymeter bathymeters bathymetric bathymetrical bathymetrically bathymetries bathymetry bathyorographical bathypelagic bathyplankton bathyscape bathyscapes bathyscaph bathyscaphe bathyscaphes bathyscaphs bathyseism bathysmal bathysophic bathysophical bathysphere bathyspheres bathythermogram bathythermograph bathythermographs batidaceae batidaceous batik batiked batiker batiking batiks bating batino batis batiste batistes batitinan batlan batler batlers batlet batlets batlike batling batlon batman batmen batmitzvah batmitzvahs batoid batoidei batological batologies batologist batologists batology baton batoned batoneer batoning batonist batonistic batonne batonnier batons batoon batooned batooning batoons batophobia batrachia batrachian batrachians batrachiate batrachite batrachoid batrachoididae batrachomyomachia batrachophagous batrachophobia batrachophobias batrachophobic batrachoplasty batrachoseps batrachotoxin batrachotoxins bats batsman batsmanship batsmanships batsmen batster batswana batswing batswings batswoman batswomen batt batta battable battailant battailous battalia battalias battalion battalions battarism battarismus battas batteau batteaux batted batteilant battel batteled batteler battelers batteling battelled battelling battels battement battements batten battened battener batteners battening battenings battens batter batterable battercake battercakes batterdock battered batterer batterers batterfang batterie batteried batteries battering batterings batterman battero batteros batters battery batteryman batteuse battier batties battiest battik battiks battill battilled battilling battills battiness battinesses batting battings battish battle battleax battleaxe battleaxes battlebus battlebuses battlebusses battled battledoor battledoors battledore battledored battledores battledoring battledress battledresses battlefield battlefields battlefront battlefronts battleful battleground battlegrounds battlement battlemented battlements battlepiece battleplane battleplanes battler battlers battles battleship battleships battlesight battlesome battlestead battlewagon battlewagons battleward battlewise battling battological battologies battologise battologised battologising battologist battologize battologized battologizing battology batton batts battu battue battues batture battuta battutas battute battuto battutos batty battycake batukite batule batuque batwing batwoman batwomen batyphone batz batzen baubee baubees bauble baublery baubles baubling bauch bauchle bauchled bauchles bauchling bauckie bauckiebird baud baudekin baudekins baudelaire baudery baudric baudrick baudricke baudrickes baudricks baudrics baudrons baudronses bauds bauera baueras baufrey bauge bauhaus bauhinia bauhinias bauk bauked bauking bauks baul bauld baulea bauleah baulk baulked baulkier baulkiest baulking baulks baulky baume baumhauerite baumier baun bauno baur baurs bauson bausond bauta bautta bauxite bauxites bauxitic bauxitite bavardage bavardages bavaria bavarian bavarois bavaroise bavaroy bavary bavenite bavette baviaantje bavian baviere bavin bavins bavoso baw bawarchi bawbee bawbees bawble bawbles bawcock bawcocks bawd bawdier bawdies bawdiest bawdily bawdiness bawdinesses bawdkin bawdkins bawdric bawdrick bawdrics bawdries bawdry bawds bawdship bawdstrot bawdy bawdyhouse bawdyhouses bawhorse bawke bawl bawled bawler bawlers bawley bawleys bawling bawlings bawls bawly bawn bawneen bawns bawr bawrel bawrs bawsint bawsunt bawtie bawties bawty baxter baxters baxtone bay baya bayadeer bayadeers bayadere bayaderes bayadère bayadères bayal bayamo bayamos bayano bayard bayardly bayards bayberries bayberry baybolt baybush baycuru baye bayed bayer bayes bayesian bayeta bayete baygall bayhead baying bayish bayldonite bayle bayles baylet baylike bayman baymen bayness bayok bayonet bayoneted bayoneteer bayoneting bayonets bayonetted bayonetting bayong bayonne bayou bayous bays bayside baysmelt baysmelts bayt bayted bayting bayts baywood baywoods bayz bazaar bazaars bazar bazars bazazz bazazzes baze bazillion bazillions bazodee bazoo bazooka bazookaman bazookamen bazookas bazooms bazoos bazouki bazoukis bazzazz bazzazzes bazzite bb bbl bbls bbs bc bcd bcf bch bchs bd bde bdellatomy bdellid bdellium bdelliums bdelloid bdellometer bdellotomy bdellovibrio bdft bdl bdle bdls bdrm bds be beach beachboy beachboys beachcomb beachcombed beachcomber beachcombers beachcombing beachcombings beachcombs beachdrops beached beacher beaches beachfront beachfronts beachgoer beachgoers beachhead beachheads beachie beachier beachiest beaching beachlamar beachless beachlike beachman beachmaster beachmen beachscape beachscapes beachside beachward beachwear beachy beacon beaconage beaconed beaconing beaconless beacons beaconwise bead beaded beader beadeye beadeyes beadflush beadhouse beadhouses beadier beadiest beadily beadiness beadinesses beading beadings beadle beadledom beadledoms beadlehood beadlehoods beadleism beadlery beadles beadleship beadleships beadlet beadlike beadman beadmen beadroll beadrolls beadrow beads beadsman beadsmen beadswoman beadswomen beadwork beadworks beady beagle beagled beagler beaglers beagles beagling beaglings beak beaked beaker beakerful beakerman beakermen beakers beakful beakhead beakier beakiest beakiron beakless beaklike beaks beaky beal beala bealach bealing beallach bealtared beam beamage beambird beamed beamer beamers beamfilling beamful beamhouse beamier beamiest beamily beaminess beaminesses beaming beamingly beamings beamish beamishly beamless beamlet beamlets beamlike beamman beamroom beams beamsman beamsmen beamster beamwork beamy bean beanbag beanbags beanball beanballs beancod beaned beaner beaneries beaners beanery beanfeast beanfeaster beanfeasts beanfest beanfield beanie beanier beanies beaniest beaning beanlike beano beanos beanpole beanpoles beans beansetter beanshooter beanshooters beansprout beansprouts beanstalk beanstalks beant beantown beanweed beany beaproned bear bearabilities bearability bearable bearableness bearablenesses bearably bearance bearbaiter bearbaiting bearbaitings bearbane bearberries bearberry bearbind bearbine bearbines bearbush bearcat bearcats bearcoot beard bearded beardedness beardednesses bearder beardfish beardfishes beardie beardies bearding beardless beardlessness beardlike beardom beardown beards beardtongue beardtongues beardy beare beared bearer bearers beares bearess bearfoot bearfoots beargrass beargrasses bearherd bearhide bearhound bearhug bearhugs bearing bearings bearish bearishly bearishness bearishnesses bearleap bearlet bearlike bearm bearnaise bearnaises bearpaw bears bearship bearskin bearskins beartongue bearward bearwards bearwood bearwoods bearwort beast beastbane beastdom beasthood beasthoods beastie beasties beastily beastings beastish beastishness beastlier beastliest beastlike beastlily beastliness beastlinesses beastling beastlings beastly beastman beasts beastship beat beata beatable beatably beatae beatas beatbox beatboxes beatee beaten beater beaterman beatermen beaters beath beathed beathing beaths beati beatific beatifical beatifically beatificate beatification beatifications beatified beatifies beatify beatifying beatille beatinest beating beatings beatitude beatitudes beatles beatless beatnik beatnikism beatniks beatrice beats beatster beatus beatuti beau beauclerk beaucoup beaucoups beaued beauetry beaufet beaufets beauffet beauffets beaufin beaufins beaufort beaugregories beaugregory beauing beauish beauism beaujolais beaume beaumont beaumontage beaumontages beaumontague beaumontagues beaumontia beaupere beaupers beaus beauseant beauship beausire beaut beauteous beauteously beauteousness beauteousnesses beauti beautician beauticians beautied beauties beautification beautifications beautified beautifier beautifiers beautifies beautiful beautifuler beautifulest beautifully beautifulness beautifulnesses beautify beautifying beautihood beautiless beauts beauty beautybush beautybushes beautydom beautying beautyship beaux beauxite beauxites beaver beaverboard beaverboards beavered beaverette beaveries beavering beaverise beaverish beaverism beaverite beaverize beaverkin beaverlike beaverpelt beaverroot beavers beaverskin beaverteen beaverwood beavery beback bebait beballed bebang bebannered bebar bebaron bebaste bebat bebathe bebatter bebay bebeast bebed bebeerin bebeerine bebeerines bebeeru bebeerus bebelted bebilya bebite bebization beblain beblear bebled bebleed bebless beblister beblood beblooded beblooding bebloods bebloom beblot beblotch beblubber beblubbered bebog bebop bebopped bebopper beboppers bebopping bebops beboss bebotch bebothered bebouldered bebrave bebreech bebrine bebrother bebrush bebump bebung bebungs bebusy bebuttoned bec becafico becall becalled becalling becalls becalm becalmed becalming becalmment becalms became becap becapped becapping becaps becard becarpet becarpeted becarpeting becarpets becarve becasse becasses becassine becassocked becater because beccabunga beccaccia beccafico beccaficoes beccaficos becchi becco becense bechained bechalk bechalked bechalking bechalks bechamel bechamels bechance bechanced bechances bechancing becharm becharmed becharming becharms bechase bechatter bechauffeur beche becheck becher bechern bechic bechignoned bechirp bechuana becircled becivet beck becke becked beckelite becker beckes becket beckets beckett becking beckiron beckley beckon beckoned beckoner beckoners beckoning beckoningly beckons becks beclad beclamor beclamored beclamoring beclamors beclamour beclamoured beclamouring beclamours beclang beclap beclart beclasp beclasped beclasping beclasps beclatter beclaw beclip becloak becloaked becloaking becloaks beclog beclogged beclogging beclogs beclose beclothe beclothed beclothes beclothing becloud beclouded beclouding beclouds beclout beclown beclowned beclowning beclowns becluster becobweb becoiffed becollier becolme becolor becolour becombed become becomed becomes becometh becoming becomingly becomingness becomingnesses becomings becomma becompass becompliment becoom becoresh becost becousined becovet becoward becowarded becowarding becowards becquerel becquerelite becquerels becram becramp becrampon becrawl becrawled becrawling becrawls becreep becrime becrimed becrimes becriming becrimson becrinolined becripple becrippled becrippling becroak becross becrowd becrowded becrowding becrowds becrown becrush becrust becrusted becrusting becrusts becry becudgel becudgeled becudgeling becudgelled becudgelling becudgels becuffed becuiba becumber becuna becurl becurled becurling becurls becurry becurse becursed becurses becursing becurst becurtained becushioned becut bed bedabble bedabbled bedabbles bedabbling bedad bedads bedaff bedaggered bedaggle bedaggled bedaggles bedaggling bedamn bedamned bedamning bedamns bedamp bedangled bedare bedark bedarken bedarkened bedarkening bedarkens bedash bedashed bedashes bedashing bedaub bedaubed bedaubing bedaubs bedawee bedawin bedawins bedawn beday bedaze bedazed bedazement bedazes bedazing bedazzle bedazzled bedazzlement bedazzlements bedazzles bedazzling bedazzlingly bedboard bedboards bedbug bedbugs bedcap bedcase bedchair bedchairs bedchamber bedchambers bedclothes bedclothing bedcord bedcover bedcovering bedcoverings bedcovers beddable bedded bedder bedders bedding beddingroll beddings bede bedead bedeaf bedeafen bedeafened bedeafening bedeafens bedebt bedeck bedecked bedecking bedecks bedecorate bedeen bedegar bedeguar bedeguars bedehouse bedehouses bedel bedell bedells bedellship bedellships bedels bedelship bedelships bedelve bedeman bedemen beden bedene bederal bederals bedes bedesman bedesmen bedeswoman bedeswomen bedevil bedeviled bedeviling bedevilled bedevilling bedevilment bedevilments bedevils bedew bedewed bedewer bedewing bedewoman bedews bedfast bedfellow bedfellows bedfellowship bedflower bedfoot bedfordshire bedframe bedframes bedgery bedgoer bedgown bedgowns bedground bedhead bedheads bediademed bediamonded bediaper bediapered bediapering bediapers bedide bedight bedighted bedighting bedights bedikah bedim bedimmed bedimming bedimmings bedimple bedimpled bedimples bedimplies bedimpling bedims bedin bedip bedirt bedirter bedirtied bedirties bedirty bedirtying bedismal bedivere bedizen bedizened bedizening bedizenment bedizenments bedizens bedkey bedlam bedlamer bedlamise bedlamised bedlamising bedlamism bedlamisms bedlamite bedlamites bedlamitish bedlamize bedlamized bedlamizing bedlamp bedlamps bedlams bedlar bedless bedlids bedlight bedlike bedlinen bedmaker bedmakers bedmaking bedman bedmate bedmates bednighted bednights bedoctor bedog bedolt bedot bedote bedotted bedouin bedouins bedouse bedown bedoyo bedpad bedpan bedpans bedplate bedplates bedpost bedposts bedpresser bedpressers bedquilt bedquilts bedrabble bedrabbled bedrabbling bedraggle bedraggled bedragglement bedraggles bedraggling bedrail bedrails bedral bedrals bedrape bedraped bedrapes bedraping bedravel bedread bedrel bedrench bedrenched bedrenches bedrenching bedress bedribble bedrid bedridden bedriddenness bedrift bedright bedrights bedrip bedrite bedrivel bedriveled bedriveling bedrivelled bedrivelling bedrivels bedrizzle bedrock bedrocks bedroll bedrolls bedroom bedroomed bedrooms bedrop bedropped bedropping bedrops bedropt bedrown bedrowse bedrug bedrugged bedrugging bedrugs beds bedscrew bedsheet bedsheets bedsick bedside bedsides bedsit bedsite bedsits bedsitter bedsitters bedsock bedsocks bedsonia bedsoniae bedsonias bedsore bedsores bedspread bedspreads bedspring bedsprings bedstaff bedstand bedstands bedstaves bedstead bedsteads bedstock bedstraw bedstraws bedstring bedswerver bedtable bedtables bedtick bedticking bedticks bedtime bedtimes bedu bedub beduchess beduck beducked beducking beducks beduin beduins beduke bedull bedumb bedumbed bedumbing bedumbs bedunce bedunced bedunces bedunch beduncing bedung bedunged bedunging bedungs bedur bedusk bedust bedusted bedusting bedusts bedward bedwards bedwarf bedwarfed bedwarfing bedwarfs bedwarmer bedwarmers bedway bedways bedwell bedwetter bedwetters bedwetting bedwettings bedyde bedye bedyed bedyeing bedyes bee beearn beeball beebalm beebee beebees beebread beebreads beech beechdrops beechen beecher beeches beechier beechiest beechnut beechnuts beechwood beechwoods beechy beedged beedi beedis beedom beef beefalo beefaloes beefalos beefburger beefburgers beefcake beefcakes beefeater beefeaters beefed beefer beefers beefhead beefheaded beefier beefiest beefily beefin beefiness beefinesses beefing beefish beefishness beefless beeflower beefs beefsteak beefsteaks beeftongue beefwood beefwoods beefy beegah beegahs beegerite beehead beeheaded beeherd beehive beehives beehouse beeish beeishness beek beekeeper beekeepers beekeeping beekeepings beekite beelbow beele beelike beeline beelined beelines beelining beelol beelzebub beeman beemaster beemasters beemen been beenah beenahs beennut beent beento beep beeped beeper beepers beeping beeps beer beerage beerages beerbachite beerbelly beerbibber beeregar beerhall beerhalls beerhouse beerhouses beerier beeriest beerily beeriness beerinesses beerish beerishly beermaker beermaking beermat beermats beermonger beerocracy beerpull beers beery bees beesome beest beesting beestings beestride beeswax beeswaxed beeswaxes beeswaxing beeswing beeswinged beeswings beet beeted beetewk beetfly beeth beethoven beethovenian beetiest beeting beetle beetlebrain beetlebrained beetlebrains beetled beetlehead beetleheaded beetleheadedness beetleheads beetler beetlers beetles beetlestock beetlestone beetleweed beetleweeds beetlike beetling beetlings beetmaster beetmasters beetmister beetmisters beetrave beetroot beetroots beetrooty beets beety beeve beeves beevish beeware beeway beeweed beewinged beewise beewort beeyard beeyards beezer beezers bef befall befallen befalling befalls befame befamilied befamine befan befana befanas befancy befanned befathered befavor befavour befeather befeld befell beferned befetished befetter befezzed beffana beffanas beffroy befiddle befilch befile befilleted befilmed befilth befinger befingered befingering befingers befinned befire befist befit befits befitted befitting befittingly befittingness beflag beflagged beflagging beflags beflannel beflap beflatter beflea befleaed befleaing befleas befleck beflecked beflecking beflecks beflounce beflour beflout beflower beflowered beflowering beflowers beflum beflummed beflumming beflums befluster befoam befoamed befoaming befoams befog befogged befogging befogs befool befoolable befooled befooling befoolment befools befop before beforehand beforehandedness beforementioned beforeness beforesaid beforested beforetime beforetimes befortune befortuned befortunes befortuning befoul befouled befouler befoulers befoulier befouling befoulment befoulments befouls befountained befraught befreckle befreeze befreight befret befrets befretted befretting befriend befriended befriender befrienders befriending befriendment befriends befrill befrilled befringe befringed befringes befringing befriz befrocked befrogged befrounce befrumple befuddle befuddled befuddlement befuddlements befuddler befuddlers befuddles befuddling befume befur befurbelowed befurred beg begabled begad begall begalled begalling begalls began begani begar begari begarie begarlanded begarnish begars begartered begary begash begass begat begats begattal begaud begaudy begay begaze begazed begazes begazing begeck begem begemmed begemming begems beget begets begettal begetter begetters begetting beggable beggar beggardom beggardoms beggared beggarer beggaress beggarhood beggaries beggaring beggarism beggarlice beggarlike beggarliness beggarlinesses beggarly beggarman beggarmen beggars beggarweed beggarweeds beggarwise beggarwoman beggarwomen beggary begged begger beggiatoaceous begging beggingly beggings beggingwise beghard beghards begift begifted begifting begifts begiggle begild begilded begilding begilds begilt begin beginger beginne beginner beginners beginnes beginning beginningless beginnings begins begird begirded begirding begirdle begirdled begirdles begirdling begirds begirt beglad begladded begladding beglads beglamor beglamored beglamoring beglamors beglamour beglamoured beglamouring beglamours beglare beglerbeg beglerbeglic beglerbeglik beglerbegluc beglerbegs beglerbegship beglerbey beglew beglic beglide beglitter beglobed begloom begloomed beglooming beglooms begloze begluc beglue begnaw begnawed begnawing begnawn begnaws bego begob begobs begod begoes begoggled begohm begoing begone begones begonia begoniaceae begoniaceous begonias begorah begored begorra begorrah begorrahs begorras begorry begot begotten begottenness begoud begowk begowned begrace begrain begrave begray begrease begreen begrett begrim begrime begrimed begrimer begrimes begriming begrimmed begrimming begrims begripe begroan begroaned begroaning begroans begrown begrudge begrudged begrudger begrudges begrudging begrudgingly begruntle begrutch begrutten begs begster beguard beguess beguile beguiled beguileful beguilement beguilements beguiler beguilers beguiles beguiling beguilingly beguilingness beguin beguinage beguinages beguine beguines beguins begulf begulfed begulfing begulfs begum begummed begumming begums begun begunk begunked begunking begunks begut behale behalf behallow behalves behammer behang behap behappen behappened behappening behappens behatted behav behave behaved behaver behavers behaves behaving behavior behavioral behaviorally behaviored behaviorism behaviorisms behaviorist behavioristic behavioristically behaviorists behaviors behaviour behavioural behaviourally behavioured behaviourism behaviourisms behaviourist behaviouristic behaviourists behaviours behead beheadal beheadals beheaded beheader beheaders beheading beheadings beheadlined beheads behear behears behearse behedge beheira beheld behelp behemoth behemothic behemoths behen behenate behenic behest behests behew behight behighting behights behind behinder behindhand behinds behindsight behint behither behmen behmenism behn behold beholdable beholden beholder beholders beholding beholdingness beholdings beholds behoney behoof behoofs behooped behoot behoove behooved behooveful behoovefully behoovefulness behooves behooving behoovingly behorn behorror behote behotes behoting behove behoved behoveful behovely behoves behoving behovingly behowl behowled behowling behowls behung behusband behymn behypocrite beice beige beigel beigels beiges beigne beignes beignet beignets beigy beijing beild bein being beingless beingness beingnesses beings beinked beinly beinness beinnesses beira beirut beisa beisance beja bejabbers bejabers bejade bejaded bejades bejading bejan bejant bejants bejape bejaundice bejazz bejeezus bejel bejeled bejeling bejelled bejelling bejels bejesuit bejesuited bejesuiting bejesuits bejesus bejewel bejeweled bejeweling bejewelled bejewelling bejewels bejezebel bejig bejuco bejuggle bejumble bejumbled bejumbles bejumbling bekah bekahs bekerchief bekick bekilted beking bekinkinite bekiss bekissed bekisses bekissing bekko beknave beknaved beknaves beknaving beknight beknighted beknighting beknights beknit beknived beknot beknots beknotted beknottedly beknottedness beknotting beknow beknown bel bela belabor belabored belaboring belabors belabour belaboured belabouring belabours belace belaced belaces belacing beladied beladies beladle belady beladying belage belah belahs belaid belam belamcanda belamies belamour belamoure belamoures belamy belanda belander belap belar belard belarus belarusian belash belast belat belate belated belatedly belatedness belatednesses belates belating belatticed belaud belauded belauder belauding belauds belavendered belay belayed belayer belaying belays belch belched belcher belchers belches belching beld beldam beldame beldames beldams beldamship belder belderroot belduque beleaf beleaguer beleaguered beleaguerer beleaguering beleaguerment beleaguerments beleaguers beleap beleaped beleaping beleaps beleapt beleave belection belecture beledgered belee beleed beleeing belees beleft belemnid belemnite belemnites belemnitic belemnitidae belemnoid belemnoidea beleper belesprit beletter beleve belfast belfather belfried belfries belfry belga belgae belgard belgards belgas belgian belgians belgique belgium belgrade belial belibel belibeled belibeling belick belicoseness belie belied belief beliefful belieffulness beliefless beliefs belier beliers belies believabilities believability believable believableness believably believe believed believer believers believes believeth believing believingly belight beliing belike beliked belikely belime belimousined belion beliquor beliquored beliquoring beliquors belite belitter belittle belittled belittlement belittlements belittler belittlers belittles belittling belive belize belk belknap bell belladonna belladonnas bellamoure bellamoures bellarmine bellarmines bellbind bellbinder bellbinds bellbine bellbird bellbirds bellbottle bellbottom bellbottomed bellbottoms bellboy bellboys bellcote bellcotes belle belled belledom belleek belleeks bellehood belleric bellerophon belles belleter belleters belletrism belletrisms belletrist belletristic belletristical belletrists bellettrist bellettrists bellevue bellflower bellflowers bellhanger bellhangers bellhanging bellhop bellhops bellhouse belli bellibone bellibones bellic bellical bellicism bellicist bellicose bellicosely bellicoseness bellicosenesses bellicosities bellicosity bellied bellies belliferous belligerence belligerences belligerencies belligerency belligerent belligerently belligerents belling bellings bellipotent bellis bellite bellmaker bellmaking bellman bellmanship bellmaster bellmen bellmouth bellmouthed bello bellon bellona bellonion belloot bellota bellote bellow bellowed bellower bellowers bellowing bellows bellowsful bellowslike bellowsmaker bellowsmaking bellowsman bellpull bellpulls bellpush bellpushes bellrags bells belltail belltopper belltopperdom belluine bellum bellware bellwaver bellweather bellweed bellwether bellwethers bellwind bellwine bellwood bellwort bellworts belly bellyache bellyached bellyacher bellyachers bellyaches bellyaching bellyband bellybands bellybutton bellybuttons bellyer bellyfish bellyflaught bellyful bellyfull bellyfulls bellyfuls bellying bellyings bellyland bellylanded bellylands bellylaugh bellylaughed bellylaughing bellylaughs bellyless bellylike bellyman bellypiece bellypinch beloam belock beloeilite beloid belomancies belomancy belonephobia belonesite belong belonged belonger belongers belonging belongingness belongingnesses belongings belongs belonid belonidae belonite belonoid belonosphaerite belook belord belorussia belorussian belostomatidae belotte belouke belout belove beloved beloveds beloves beloving below belowdecks belowground belows belowstairs belozenged bels belshazzar belshazzars belsire belswagger belt beltane beltcourse belted belter belters beltie beltine belting beltings beltless beltline beltlines beltmaker beltmaking beltman beltmen belton belts beltway beltways beltwise belue beluga belugas belugite belute belve belvedere belvedered belvederes belvidere bely belying belyingly belzebub belzebuth bema bemad bemadam bemadamed bemadaming bemadams bemadded bemadden bemaddened bemaddening bemaddens bemadding bemads bemail bemaim bemajesty beman bemangle bemantle bemar bemartyr bemas bemask bemaster bemat bemata bemaul bemauled bemauling bemauls bemazed bembex bembexes bembix bembixes beme bemeal bemean bemeaned bemeaning bemeans bemeant bemedal bemedaled bemedalled bemedalling bemedals bemeet bementite bemercy bemete bemeted bemetes bemeting bemingle bemingled bemingles bemingling beminstrel bemire bemired bemirement bemires bemiring bemirror bemirrorment bemisia bemist bemisted bemisting bemistress bemists bemitered bemitred bemix bemixed bemixes bemixing bemixt bemoan bemoanable bemoaned bemoaner bemoaners bemoaning bemoaningly bemoanings bemoans bemoat bemock bemocked bemocking bemocks bemoil bemoiled bemoiling bemoils bemoisten bemol bemole bemolt bemonster bemonstered bemonstering bemonsters bemoon bemotto bemoult bemourn bemouth bemouthed bemouthing bemouths bemuck bemud bemudded bemudding bemuddle bemuddled bemuddlement bemuddles bemuddling bemuddy bemuds bemuffle bemuffled bemuffles bemuffling bemurmur bemurmure bemurmured bemurmuring bemurmurs bemuse bemused bemusedly bemusement bemusements bemuses bemusing bemusk bemuslined bemuzzle bemuzzled bemuzzles bemuzzling ben bena benab benadryl benadryls bename benamed benamee benames benami benamidar benaming benasty benben bench benchboard benched bencher benchers benchership bencherships benches benchfellow benchful benching benchland benchlands benchless benchlet benchman benchmar benchmark benchmarked benchmarking benchmarkings benchmarks benchmen benchwarmer benchwarmers benchwork benchy bencite bend benda bendability bendable benday bendayed bendaying bendays bended bendee bendees bendel bendell bender benders bendier bendies bendiest bending bendingly bendings bendlet bendlets bends bendsome bendways bendwise bendy bendys bene beneaped beneath beneception beneceptive beneceptor benedicite benedicites benedick benedicks benedict benedictine benediction benedictional benedictionale benedictionary benedictions benedictive benedictively benedictory benedicts benedictus benedight benefact benefacted benefacting benefaction benefactions benefactive benefactor benefactors benefactorship benefactory benefactress benefactresses benefactrices benefactrix benefactrixes benefacts benefic benefice beneficed beneficeless beneficence beneficences beneficency beneficent beneficential beneficently benefices beneficiaire beneficial beneficially beneficialness beneficialnesses beneficials beneficiaries beneficiary beneficiaryship beneficiate beneficiated beneficiates beneficiating beneficiation beneficiations beneficience beneficient beneficing beneficium benefit benefited benefiter benefiters benefiting benefits benefitted benefitting benegro beneighbored benelux beneme benempt benempted beneplacit beneplacito beneplacity benes benet benets benetted benetting benettle beneurous benevolence benevolences benevolency benevolent benevolently benevolentness benevolentnesses benevolist beng bengal bengali bengaline bengalines bengals benghazi beni benic benight benighted benightedly benightedness benightednesses benighten benightened benightening benightenings benightens benighter benighters benighting benightings benightmare benightment benightments benights benign benignancies benignancy benignant benignantly benigner benignest benignities benignity benignly benignness benim benin beninese benis beniseed beniseeds benison benisons benitier benitiers benitoite benj benjamin benjaminite benjamins benjes benjoin benjy benmost benn benne bennel bennes bennet bennets bennettitaceae bennettitaceous bennettitales bennettitis bennetweed benni bennie bennies bennington bennis benniseed benny beno benomyl benomyls benorth benote bens bensail bensall bensel bensell bensh benshea benshed benshee benshes benshi benshing bensil bent bentang bentgrass bentgrasses benthal benthamism benthic benthoal benthon benthonic benthons benthopelagic benthos benthoscope benthoscopes benthoses bentier bentiest bentinck bentiness benting bentlet bento bentonite bentonites bentonitic bentos bents bentsh bentshed bentshes bentshing bentstar bentwood bentwoods benty benumb benumbed benumbedness benumbednesses benumbing benumbingly benumbment benumbments benumbs benvenuto benward benweed benzacridine benzal benzalacetone benzalacetophenone benzalaniline benzalazine benzalcohol benzalcyanhydrin benzaldehyde benzaldehydes benzaldiphenyl benzaldoxime benzalethylamine benzalhydrazine benzalphenylhydrazone benzalphthalide benzals benzamide benzamido benzamine benzaminic benzamino benzanalgen benzanilide benzanthracene benzanthracenes benzanthrone benzantialdoxime benzazide benzazimide benzazine benzazole benzbitriazole benzdiazine benzdifuran benzdioxazine benzdioxdiazine benzdioxtriazine benzedrine benzein benzene benzeneazobenzene benzenediazonium benzenes benzenoid benzenyl benzhydrol benzhydroxamic benzidin benzidine benzidines benzidino benzidins benzil benzilic benzils benzimidazole benzimidazoles benziminazole benzin benzinduline benzine benzines benzins benzo benzoapyrene benzoapyrenes benzoate benzoated benzoates benzoazurine benzobis benzocaine benzocaines benzocoumaran benzodiazepine benzodiazepines benzodiazine benzodiazole benzoflavine benzofluorene benzofulvene benzofuran benzofurans benzofuroquinoxaline benzofuryl benzoglycolic benzoglyoxaline benzohydrol benzoic benzoid benzoin benzoinated benzoins benzoiodohydrin benzol benzolate benzole benzoles benzoline benzolines benzolize benzols benzomorpholine benzonaphthol benzonitrile benzonitrol benzoperoxide benzophenanthrazine benzophenanthroline benzophenazine benzophenol benzophenone benzophenones benzophenothiazine benzophenoxazine benzophloroglucinol benzophosphinic benzophthalazine benzopinacone benzopyran benzopyranyl benzopyrazolone benzopyrene benzopyrenes benzopyrylium benzoquinoline benzoquinone benzoquinoxaline benzosulfimide benzosulphimide benzotetrazine benzotetrazole benzothiazine benzothiazole benzothiazoline benzothiodiazole benzothiofuran benzothiophene benzothiopyran benzotoluide benzotriazine benzotriazole benzotrichloride benzotrifluoride benzotrifuran benzoxate benzoxy benzoxyacetic benzoxycamphor benzoxyphenanthrene benzoyl benzoylate benzoylated benzoylating benzoylation benzoylformic benzoylglycine benzoyls benzpinacone benzpyrene benzpyrenes benzthiophen benztrioxazine benzyl benzylamine benzylic benzylidene benzylidine benzylidines benzylpenicillin benzyls beode beograd beowulf bepaid bepaint bepainted bepainting bepaints bepale bepaper beparch beparody beparse bepart bepaste bepastured bepat bepatched bepats bepatted bepatting bepaw bepearl bepearled bepearling bepearls bepelt bepelted bepelting bepelts bepen bepepper bepeppered bepeppering bepeppers beperiwigged bepester bepestered bepestering bepesters bepewed bephilter bephrase bepicture bepiece bepierce bepile bepill bepillared bepimple bepimpled bepimples bepimpling bepinch bepistoled bepitied bepities bepity bepitying beplague beplaided beplaster beplastered beplastering beplasters beplumed bepommel bepommelled bepommelling bepommels bepowder bepowdered bepowdering bepowders bepraise bepraised bepraisement bepraiser bepraises bepraising beprank bepranked bepray bepreach bepress bepretty bepride beprose beprosed beproses beprosing bepuddle bepuff bepuffed bepuffing bepuffs bepun bepurple bepuzzle bepuzzlement bequalm bequeath bequeathable bequeathal bequeathals bequeathed bequeather bequeathers bequeathing bequeathment bequeathments bequeaths bequest bequests bequirtle bequote beqwete ber berain berairou berakah berake beraked berakes beraking berakot berakoth berapt berascal berascaled berascaling berascals berat berate berated berates berating berattle beraunite beray berayed beraying berays berbamine berber berberia berberid berberidaceae berberidaceous berberin berberine berberines berberins berberis berberises berberry berbers berbery berceau berceaunette berceaux bercelet berceuse berceuses bercy berdache berdaches berdash berdashes bere bereareft bereason bereave bereaved bereavement bereavements bereaven bereaver bereavers bereaves bereaving berede bereft berend berendo berengelite berengena beres beresite beret berets beretta berettas berewick berg bergalith bergall bergama bergamas bergamasca bergamasche bergamask bergamasks bergamiol bergamot bergamots bergander berganders bergaptene bergare bergares bergen bergenia bergenias berger bergere bergeres bergeret bergerette bergfall bergfalls berggylt bergh berghaan berghaans berginization berginize berglet bergman bergmannite bergmehl bergmehls bergomask bergomasks bergs bergschrund bergschrunds bergut bergy bergylt bergylts bergère bergères berhyme berhymed berhymes berhyming beribanded beribbon beribboned beriber beriberi beriberic beriberis beribers beride berigora berime berimed berimes beriming bering beringed beringite beringleted berinse berith berk berkeleian berkeley berkelium berkeliums berkovets berkovtsi berkowitz berks berkshire berkshires berley berleys berlin berlina berline berliner berliners berlines berlinite berlins berloque berm berme bermed bermensch bermes berming berms bermuda bermudan bermudas bermudian bermudians bermudite bern bernacle bernard bernardine berne bernicle bernicles bernoo bernstein berob berobbed berobbing berobed berobs beroe berogue beroll berouged beround berreave berreaved berreaves berreaving berrendo berret berrets berretta berrettas berrettino berri berrichon berrichonne berried berrier berries berrigan berrugate berry berrybush berrying berryings berryless berrylike berryman berrypicker berrypicking bersagliere bersaglieri berseem berseems berserk berserker berserkers berserkly berserks bersim berskin berstel berteroa berth bertha berthage berthages berthas berthe berthed berther berthes berthierite berthing bertholletia berths bertillonage bertin bertram bertrandite bertrum beruffed beruffled berun berust bervie berwick berycid beryciform berycine berycoid berycoidean berycomorphi beryl berylate beryline beryllate beryllia beryllias berylline beryllioses berylliosis beryllium berylliums berylloid beryllonate beryllonite beryllosis beryls beryx berzelianite berzeliite bes besa besagne besague besaiel besaile besaint besainted besainting besaints besan besanctify besand besang besant besat besauce besaw besayle bescab bescarf bescatter bescattered bescattering bescatters bescent bescorch bescorched bescorches bescorching bescorn bescoundrel bescour bescoured bescourge bescouring bescours bescramble bescrape bescratch bescrawl bescrawled bescrawling bescrawls bescreen bescreened bescreening bescreens bescribble bescribbled bescribbles bescribbling bescurf bescurvy bescutcheon beseam besee beseech beseeched beseecher beseechers beseeches beseeching beseechingly beseechingness beseechingnesses beseechings beseechment beseeing beseek beseeke beseekes beseeking beseem beseemed beseeming beseemingly beseemingness beseemingnesses beseemings beseemliness beseemly beseems beseen besees beseige beses beset besetment besetments besets besetter besetters besetting besew beshackle beshade beshadow beshadowed beshadowing beshadows beshag beshake beshame beshamed beshames beshaming beshawled beshear beshell beshield beshine beshines beshining beshiver beshivered beshivering beshivers beshlik beshod beshone beshout beshouted beshouting beshouts beshow beshower beshrew beshrewed beshrewing beshrews beshriek beshrivel beshroud beshrouded beshrouding beshrouds besiclometer beside besides besiege besieged besiegement besiegements besieger besiegers besieges besieging besiegingly besiegings besigh besighed besighing besighs besilver besin besing besinging besings besiren besit besits besitting beslab beslabber beslap beslash beslave beslaved beslaver beslavered beslavering beslavers beslaves beslaving besleeve beslime beslimed beslimer beslimes besliming beslings beslipper beslobber beslobbered beslobbering beslobbers beslow beslubber beslubbered beslubbering beslubbers besluit beslur beslushed besmear besmeared besmearer besmearing besmears besmell besmile besmiled besmiles besmiling besmirch besmirched besmircher besmirchers besmirches besmirching besmirchment besmirchments besmoke besmoked besmokes besmoking besmooth besmoothed besmoothing besmooths besmother besmottered besmouch besmudge besmudged besmudges besmudging besmut besmutch besmutched besmutches besmutching besmuts besmutted besmutting besnare besneer besnivel besnow besnowed besnowing besnows besnuff besodden besogne besognier besognio besognios besoil besoin besoins besom besomed besomer besoming besoms besonian besonians besonio besonnet besoot besoothe besoothed besoothement besoothes besoothing besort besorted besorting besorts besot besotment besots besotted besottedly besottedness besottednesses besotter besotting besottingly besought besoul besouled besour besoured besouth bespake bespangle bespangled bespangles bespangling bespat bespate bespatter bespattered bespatterer bespattering bespatterment bespatters bespawl bespeak bespeakable bespeaker bespeaking bespeaks bespecked bespeckle bespeckled bespecklement bespeckles bespeckling bespectacled besped bespeech bespeed bespeeding bespeeds bespell bespelled bespend bespete bespew bespice bespiced bespices bespicing bespill bespin bespirit bespit bespits bespitting besplash besplashed besplatter besplit bespoke bespoken besport besported besporting besports bespot bespots bespotted bespottedness bespottednesses bespotting bespouse bespoused bespouses bespousing bespout bespouted bespouting bespouts bespray bespread bespreading bespreads bespreng besprent bespring besprinkle besprinkled besprinkler besprinkles besprinkling besprizorni bespurred bespurt besputter bespy besqueeze besquib besquirt besra bess bessel bessemer bessemerize bessemerized bessemerizing bessera besses besseya best bestab bestad bestadde bestain bestained bestaining bestains bestamp bestand bestar bestare bestarred bestarring bestars bestarve bestatued bestay bestayed bestead besteaded besteading besteads besteal bested besteer bestench bester bestial bestialise bestialised bestialises bestialising bestialism bestialisms bestialist bestialities bestiality bestialize bestialized bestializes bestializing bestially bestials bestian bestiarian bestiarianism bestiaries bestiarist bestiary bestick besticking besticks bestill bestilled bestilling bestills besting bestink bestir bestirred bestirring bestirs bestness bestock bestore bestorm bestormed bestorming bestorms bestove bestow bestowable bestowage bestowal bestowals bestowed bestower bestowers bestowing bestowment bestowments bestows bestraddle bestraddled bestraddles bestraddling bestrapped bestraught bestraw bestreak bestreaked bestreaking bestreaks bestream bestrew bestrewed bestrewing bestrewment bestrewn bestrews bestrid bestridable bestridden bestride bestrided bestrides bestriding bestripe bestrode bestrow bestrowed bestrowing bestrown bestrows bestrut bests bestseller bestsellerdom bestsellerdoms bestsellers bestselling bestubble bestubbled bestuck bestud bestudded bestudding bestuds bestuur besugar besugo besuit besuited besully besung beswarm beswarmed beswarming beswarms besweatered besweeten beswelter beswim beswinge beswink beswitch bet beta betacaine betacarotene betacism betacisms betacismus betafite betag betail betailor betain betaine betaines betainogen betake betaken betakes betaking betalk betallow betanaphthol betangle betanglement betas betask betassel betatron betatrons betatter betattered betattering betatters betaware betawares betaxed betcha bete beteach betear beted beteela beteem beteeme beteemed beteemes beteeming beteems betel betelgeuse betell betelnut betelnuts betels beterschap betes beth bethabara bethank bethanked bethanking bethankit bethankits bethanks bethel bethelem bethels bethesda bethesdas bethflower bethink bethinking bethinks bethlehem bethlehemite bethorn bethorned bethorning bethorns bethought bethrall bethralled bethralling bethralls bethreaten bethroot beths bethumb bethumbed bethumbing bethumbs bethump bethumped bethumping bethumps bethunder bethwack bethwacked bethwacking bethwacks bethwine bethylid betid betide betided betides betiding betight betimber betime betimed betimes betiming beting betinge betipple betire betis betise betises betitle betitled betitles betitling betocsin betoil betoiled betoiling betoils betoken betokened betokener betokening betokenment betokens beton betone betongue betonica betonies betons betony betook betorcin betorcinol betorn betoss betossed betosses betossing betowel betowered betrace betrail betraise betrample betrap betravel betray betrayal betrayals betrayed betrayer betrayers betraying betrayment betrays betread betreading betreads betrend betrim betrimmed betrimming betrims betrinket betrod betrodden betroth betrothal betrothals betrothed betrotheds betrothing betrothment betrothments betroths betrough betrousered betrumpet betrunk betrust bets betso betta bettas betted better bettered betterer bettergates bettering betterings betterly betterment betterments bettermost betterness betternesses betters betties betting bettings bettong bettonga bettongia bettor bettors betty betuckered betula betulaceae betulaceous betulin betulinamaric betulinic betulinol betumbled beturbaned betusked betutor betutored betwattled betweeenbrain between betweenbrain betweenbrains betweenities betweenity betweenmaid betweenness betweennesses betweens betweentime betweentimes betweenwhiles betwine betwit betwixen betwixt beudanite beudantite beulah beuncled beuniformed beurre beurres bevaring bevatron bevatrons beveil bevel beveled beveler bevelers beveling bevelings bevelled beveller bevellers bevelling bevellings bevelment bevelments bevels bevenom bevenomed bever beverage beverages bevers beverse bevesseled bevesselled beveto bevies bevil bevillain bevilled bevined bevoiled bevomit bevomited bevomiting bevomits bevor bevors bevue bevues bevvied bevvies bevvy bevy bewail bewailable bewailed bewailer bewailers bewailing bewailingly bewailings bewailment bewailments bewails bewaitered bewake bewall beware bewared bewares bewaring bewary bewash bewaste bewater bewearied bewearies beweary bewearying beweep beweeper beweeping beweeps bewelcome bewelter beweltered bewend bewent bewept bewest bewet bewets bewetted bewetting bewhig bewhisker bewhiskered bewhisper bewhistle bewhite bewhiten bewhore bewhored bewhores bewhoring bewidow bewield bewig bewigged bewigging bewigs bewilder bewildered bewilderedly bewilderedness bewilderednesses bewildering bewilderingly bewilderment bewilderments bewilders bewimple bewinged bewinter bewired bewit bewitch bewitched bewitchedness bewitcher bewitcheries bewitchers bewitchery bewitches bewitchful bewitching bewitchingly bewitchingness bewitchment bewitchments bewith bewizard bewonder bework beworm bewormed beworming beworms beworn beworried beworries beworry beworrying beworship bewpers bewrap bewrapped bewrapping bewraps bewrapt bewrathed bewray bewrayed bewrayer bewrayers bewraying bewrayingly bewrayment bewrays bewreak bewreath bewreck bewrite bewrought bewry bewwept bey beydom beyerite beylic beylical beylics beylik beyliks beyond beyondness beyonds beyrichite beys beyship bez bezan bezant bezante bezantee bezants bezanty bezazz bezazzes bezel bezels bezes bezesteen bezetta bezette bezil bezils bezique beziques bezoar bezoardic bezoars bezonian bezonians bezzant bezzants bezzazz bezzazzes bezzi bezzle bezzled bezzles bezzling bezzo bf bg bhabar bhadon bhaga bhagat bhagavat bhagavata bhagee bhagees bhaiachara bhaiachari bhaigan bhaigans bhaiyachara bhajan bhajans bhajee bhajees bhaji bhajis bhakta bhaktas bhakti bhaktimarga bhaktis bhalu bhandar bhandari bhang bhangi bhangra bhangras bhangs bhara bharal bharals bharat bharti bhat bhava bhavan bhd bheestie bheesties bheesty bhel bhels bhikhari bhikku bhikshu bhindi bhindis bhishti bhistee bhistees bhisti bhistie bhisties bhistis bhokra bhoosa bhoot bhoots bhoy bhp bhumidar bhunder bhungi bhungini bhut bhutan bhutanese bhutani bhutatathata bhuts bi biabo biacetyl biacetylene biacetyls biacid biacromial biacuminate biacuru biajaiba bialate biali bialies bialis biallyl bialveolar bialy bialys bialystoker bianchite bianco biangular biangulate biangulated biangulous bianisidine biannual biannually biannuals biannulate biarchy biarcuate biarcuated biarticular biarticulate biarticulated bias biased biasedly biases biasing biasings biasness biasnesses biassed biassedly biasses biassing biasteric biasways biaswise biathlete biathletes biathlon biathlons biatomic biaural biauricular biauriculate biaxal biaxate biaxial biaxialities biaxiality biaxially biaxillary bib bibacious bibaciousness bibacity bibasic bibasilar bibation bibations bibb bibbed bibber bibberies bibbers bibbery bibbing bibble bibbled bibbler bibbling bibbons bibbs bibby bibcock bibcocks bibelot bibelots bibenzyl biberon bibi bibionid bibiri bibiru bibite bibitory bibl bible bibles bibless biblical biblically biblicism biblicisms biblicist biblicists biblike biblioclasm biblioclast bibliofilm bibliog bibliogenesis bibliognost bibliognostic bibliogony bibliograph bibliographer bibliographers bibliographic bibliographical bibliographically bibliographies bibliographize bibliography bibliokelpt biblioklept bibliokleptomania bibliokleptomaniac bibliolater bibliolaters bibliolatries bibliolatrist bibliolatrists bibliolatrous bibliolatry bibliological bibliologies bibliologist bibliologists bibliology bibliomancies bibliomancy bibliomane bibliomanes bibliomania bibliomaniac bibliomaniacal bibliomaniacs bibliomanian bibliomanianism bibliomanias bibliomanism bibliomanist bibliopegic bibliopegically bibliopegies bibliopegist bibliopegistic bibliopegistical bibliopegists bibliopegy bibliophage bibliophagic bibliophagist bibliophagists bibliophagous bibliophil bibliophile bibliophiles bibliophilic bibliophilies bibliophilism bibliophilisms bibliophilist bibliophilistic bibliophilists bibliophils bibliophily bibliophobe bibliophobia bibliophobias bibliopolar bibliopole bibliopolery bibliopoles bibliopolic bibliopolical bibliopolically bibliopolies bibliopolism bibliopolist bibliopolistic bibliopolists bibliopoly bibliosoph bibliotaph bibliotaphe bibliotaphic bibliothec bibliotheca bibliothecae bibliothecaire bibliothecal bibliothecarial bibliothecarian bibliothecaries bibliothecary bibliothecas bibliotheke bibliotheque bibliotherapeutic bibliotherapies bibliotherapist bibliotherapy bibliothetic bibliothque bibliotic bibliotics bibliotist bibliotists biblist biblists biblos biblus biborate bibos bibracteate bibracteolate bibs bibulosities bibulosity bibulous bibulously bibulousness bibulousnesses bicalcarate bicalvous bicameral bicameralism bicameralisms bicameralist bicameralists bicamerist bicapitate bicapsular bicarb bicarbide bicarbonate bicarbonates bicarbs bicarbureted bicarburetted bicarinate bicarpellary bicarpellate bicaudal bicaudate bicched biccies biccy bice bicellular bicentenaries bicentenarnaries bicentenary bicentennial bicentennially bicentennials bicentral bicentric bicentrically bicentricity bicep bicephalic bicephalous biceps bicepses bices bicetyl bichir bichloride bichlorides bichord bichos bichromate bichromated bichromates bichromatic bichromatise bichromatize bichrome bichromic bichy biciliate biciliated bicipital bicipitous bicircular bicirrose bick bicker bickered bickerer bickerers bickering bickern bickers bickie bickies bickiron biclavate biclinia biclinium bicoastal bicollateral bicollaterality bicolligate bicolor bicolored bicolorous bicolors bicolour bicoloured bicolourous bicolours bicompact bicomponent biconcave biconcavities biconcavity biconditional biconditionals bicondylar bicone biconic biconical biconically biconjugate biconnected biconsonantal biconvex biconvexities biconvexity bicorn bicornate bicorne bicorned bicornes bicornous bicorns bicornuate bicornuous bicornute bicorporal bicorporate bicorporeal bicostate bicrenate bicrescentic bicrofarad bicron bicrons bicrural bicuculline bicultural biculturalism biculturalisms bicursal bicuspid bicuspidal bicuspidate bicuspids bicyanide bicycle bicycled bicycler bicyclers bicycles bicyclic bicyclical bicycling bicyclism bicyclist bicyclists bicyclo bicycloheptane bicycular bicylindrical bid bida bidactyl bidactyle bidactylous bidar bidarka bidarkas bidarkee bidarkees bidcock biddabilities biddability biddable biddableness biddablenesses biddably biddance bidden bidder bidders biddery biddie biddies bidding biddings biddy bide bided bidene bidens bident bidental bidentalia bidentals bidentate bidentated bidented bidential bidenticulate bidents bider biders bidery bides bidet bidets bidget bidi bidiagonal bidialectal bidialectalism bidialectalisms bidialectalist bidialectalists bidigitate bidimensional biding bidings bidirectional bidirectionalities bidirectionality bidirectionally bidis bidiurnal bidon bidons bidonville bidonvilles bidree bidri bidry bids bidstand biduous bieberite bieennia biegnet bielbrief bielby bield bielded bieldier bieldiest bielding bields bieldy bielectrolysis bielenite bien bienly biennale biennales bienne bienness biennia biennial biennially biennials biennium bienniums biens bienseance bienseances bienséance bienséances bientt bienvenu bienvenue bier bierbalk bierkeller bierkellers biers bierstube bierstuben bierstubes biestings biethnic bietle biface bifaces bifacial bifacially bifanged bifara bifarious bifariously bifer biferous biff biffed biffies biffin biffing biffins biffs biffy bifid bifidate bifidated bifidities bifidity bifidly bifilar bifilarly bifistular biflabellate biflagelate biflagellate biflecnode biflected biflex biflorate biflorous bifluorid bifluoride bifocal bifocals bifoil bifold bifolia bifoliate bifoliolate bifolium bifollicular biforate biforin biforine biforked biforking biform biformed biformity biforous bifront bifrontal bifronted bifrost bifteck bifunctional bifurcal bifurcate bifurcated bifurcately bifurcates bifurcating bifurcation bifurcations bifurcous big biga bigae bigam bigamic bigamies bigamist bigamistic bigamistically bigamists bigamize bigamized bigamizing bigamous bigamously bigamy bigarade bigarades bigaroon bigaroons bigarreau bigarreaus bigas bigate bigbloom bigbury bigemina bigeminal bigeminate bigeminated bigeminies bigeminum bigeminy bigener bigeneric bigeners bigential bigeye bigeyes bigfeet bigfoot bigfooted bigfooting bigfoots bigg biggah bigged biggen biggened biggening bigger biggest biggety biggie biggies biggin bigging biggings biggins biggish biggishness biggity biggonet biggs biggy bigha bighas bighead bigheaded bigheadedness bigheadednesses bigheads bighearted bigheartedly bigheartedness bigheartednesses bighorn bighorns bight bighted bighting bights biglandular biglenoid biglot bigly bigmitt bigmouth bigmouthed bigmouths bigness bignesses bignonia bignoniaceae bignoniaceous bignoniad bignonias bignou bigoniac bigonial bigos bigoses bigot bigoted bigotedly bigotedness bigotednesses bigothero bigotish bigotries bigotry bigots bigotty bigram bigroot bigs bigshot bigshots bigstick bigthatch bigtime biguanide biguanides biguttate biguttulate bigwig bigwigged bigwiggedness bigwiggery bigwiggism bigwigs bihalve bihamate bihar bihari biharmonic bihourly bihydrazine bija bijasal bijection bijections bijective bijectively bijou bijous bijouterie bijouteries bijoux bijugate bijugous bijugular bijwoner bijwoners bike biked biker bikers bikes bikeway bikeways bikh bikhaconitine bikie bikies biking bikings bikini bikinied bikinis bikkurim bilabe bilabial bilabially bilabials bilabiate bilaciniate bilalo bilamellar bilamellate bilamellated bilaminar bilaminate bilaminated biland bilander bilanders bilateral bilateralism bilateralisms bilateralistic bilateralities bilaterality bilaterally bilateralness bilateralnesses bilayer bilayers bilberries bilberry bilbi bilbie bilbies bilbo bilboa bilboas bilboes bilboquet bilbos bilby bilch bilcock bildar bilder bilders bildungsroman bildungsromane bildungsromans bile bilection bilections bilertinned biles bilestone bileve bilevel bilevels bilewhit bilge bilged bilges bilgewater bilgewaters bilgeway bilgier bilgiest bilging bilgy bilharzia bilharzial bilharzias bilharziases bilharziasis bilharzic bilharzioses bilharziosis bilian bilianic bilians biliaries biliary biliate biliation bilic bilicyanin bilifaction biliferous bilification bilifuscin bilify bilihumin bilimbi bilimbing bilimbings bilimbis biliment bilinear bilineate bilineated bilingual bilingualism bilingualisms bilinguality bilingually bilinguals bilinguar bilinguist bilinguists bilinigrin bilinite bilio bilious biliously biliousness biliousnesses biliprasin bilipurpurin bilipyrrhin bilirubin bilirubinemia bilirubinic bilirubins bilirubinuria biliteral biliteralism bilith bilithon biliverdic biliverdin biliverdins bilixanthin bilk bilked bilker bilkers bilking bilkis bilks bill billa billable billabong billabongs billage billard billback billbeetle billbergia billboard billboarded billboarding billboards billbook billbooks billbroking billbug billbugs billed biller billers billet billete billeted billeter billeters billethead billeting billets billette billetty billetwood billety billfish billfishes billfold billfolds billhead billheading billheads billholder billhook billhooks billian billiard billiardist billiardly billiards billibi billibis billie billies billikin billing billings billingsgate billingsgates billion billionaire billionaires billionairess billionairesses billionism billions billionth billionths billitonite billman billmen billon billons billot billow billowed billowier billowiest billowiness billowinesses billowing billows billowy billposter billposters billposting billpostings bills billsticker billstickers billsticking billtong billy billyboy billyboys billycan billycans billycock billycocks billyer billyhood billyo billyoh billystick billywix bilo bilobar bilobate bilobated bilobe bilobed bilobiate bilobular bilocation bilocations bilocellate bilocular biloculate biloculine bilophodont biloquist bilos biloxi bilsh bilsted bilsteds biltong biltongs biltongue bim bima bimaculate bimaculated bimah bimahs bimalar bimana bimanal bimane bimanous bimanual bimanually bimarginate bimarine bimas bimastic bimastism bimastoid bimasty bimaxillary bimbashi bimbashis bimbette bimbettes bimbil bimbo bimboes bimbos bimeby bimedial bimensal bimester bimesters bimestrial bimetal bimetalic bimetalism bimetalist bimetalistic bimetallic bimetallics bimetallism bimetallisms bimetallist bimetallistic bimetallists bimetals bimethyl bimethyls bimillenaries bimillenary bimillenial bimillenium bimillennia bimillennial bimillennials bimillennium bimillenniums bimillionaire bimilllennia bimli bimodal bimodalities bimodality bimodule bimodulus bimolecular bimolecularly bimong bimonthlies bimonthly bimorph bimorphemic bimorphs bimotor bimotored bimotors bimucronate bimuscular bin binal binaphthyl binapthyl binaries binarium binary binate binately bination binational binationalism binationalisms binaural binaurally binauricular binbashi bind bindable binder binderies binders bindery bindheimite bindi binding bindingly bindingness bindingnesses bindings bindis bindle bindles bindlestiff bindlestiffs bindlet bindoree binds bindweb bindweed bindweeds bindwith bindwood bine binervate bines bineweed binful bing binge binged bingee bingeing binger bingers binges bingey bingeys binghamton binghi binghis bingies binging bingle bingled bingles bingling bingo bingos bings bingy binh biniodide biniou binit binits bink binks binman binmen binna binnacle binnacles binned binning binnite binnogue binny bino binocle binocles binocs binocular binocularities binocularity binocularly binoculars binoculate binodal binode binodose binodous binomen binomenclature binomial binomialism binomially binomials binominal binominated binominous binomy binormal binotic binotonous binous binoxalate binoxide bins bint bintangor bints binturong binturongs binuclear binucleate binucleated binucleolate binukau bio bioaccumulation bioaccumulations bioaccumulative bioacoustics bioactive bioactivities bioactivity bioassay bioassayed bioassaying bioassays bioastronautical bioastronautics bioavailabilities bioavailability bioavailable biobibliographer biobibliographic biobibliographical biobibliographies biobibliography bioblast bioblastic bioblasts biocatalyst biocatalysts biocatalytic biocellate biocenology biocenose biocenoses biocenosis biocenotic biocentric biochemic biochemical biochemically biochemicals biochemics biochemist biochemistries biochemistry biochemists biochemy biochip biochips biochore biochron biocidal biocide biocides bioclean bioclimatic bioclimatician bioclimatological bioclimatologically bioclimatologies bioclimatologist bioclimatology biocoenologies biocoenology biocoenose biocoenoses biocoenosis biocoenotic biocompatibilities biocompatibility biocompatible biocontrol biocontrols bioconversion bioconversions biocycle biocycles biod biodata biodegradabilities biodegradability biodegradable biodegradation biodegradations biodegrade biodegraded biodegrades biodegrading biodestructible biodeterioration biodeteriorations biodiversities biodiversity biodynamic biodynamical biodynamics biodyne bioecologic bioecological bioecologically bioecologies bioecologist bioecology bioelectric bioelectrical bioelectricities bioelectricity bioelectrogenesis bioelectrogenetic bioelectrogenetically bioelectronic bioelectronics bioelectrotherapies bioelectrotherapy bioenergetic bioenergetics bioengineer bioengineered bioengineering bioengineerings bioengineers bioenvironmental bioenvironmentaly bioequivalence bioequivalences bioequivalencies bioequivalency bioequivalent bioethic bioethical bioethicist bioethicists bioethics biofeedback biofeedbacks bioflavinoid bioflavonoid bioflavonoids biofog biofouling biofoulings biofuel biofuels biog biogas biogases biogasses biogen biogenase biogeneses biogenesis biogenesist biogenetic biogenetical biogenetically biogenetics biogenic biogenies biogenous biogens biogeny biogeochemical biogeochemicals biogeochemistries biogeochemistry biogeographer biogeographers biogeographic biogeographical biogeographically biogeographies biogeography biognosis biograph biographed biographee biographees biographer biographers biographic biographical biographically biographies biographing biographise biographist biographize biographs biography biogs biohazard biohazardous biohazards bioherm bioherms bioinstrument bioinstrumentation bioinstrumentations biokinetics bioko biol biolinguistics biolite biolith biologese biologic biological biologically biologicals biologicohumanistic biologics biologies biologise biologism biologisms biologist biologistic biologists biologize biology bioluminescence bioluminescences bioluminescent biolyses biolysis biolytic biomagnetic biomagnetics biomagnetism biomarker biomarkers biomass biomasses biomaterial biomaterials biomathematical biomathematician biomathematicians biomathematics biome biomechanical biomechanically biomechanics biomedical biomedicine biomedicines biomes biometeorological biometeorologies biometeorologist biometeorologists biometeorology biometer biometers biometric biometrical biometrically biometrician biometricians biometricist biometrics biometries biometrist biometry biomicroscope biomicroscopies biomicroscopy biomining biominings biomolecular biomolecule biomolecules biomorph biomorphic biomorphs bion bionditional bionergy bionic bionically bionics bionomic bionomical bionomically bionomics bionomies bionomist bionomy biont biontic bionts bioorganic bioparent bioparents biophagism biophagous biophagy biophilous biophor biophore biophores biophors biophotometer biophotophone biophysic biophysical biophysically biophysicist biophysicists biophysicochemical biophysics biophysiography biophysiological biophysiologist biophysiology biophyte biopic biopics bioplasm bioplasmic bioplasms bioplast bioplastic bioplasts biopoesis biopoieses biopoiesis biopolymer biopolymers biopotential bioprecipitation bioprocess bioprocessed bioprocesses bioprocessing biopsic biopsied biopsies biopsy biopsychic biopsychical biopsychological biopsychologies biopsychologist biopsychology biopsying bioptic biopyribole bioral biorbital biordinal bioreaction bioreactor bioreactors bioregion bioregional bioregionalism bioregionalisms bioregionalist bioregionalists bioregions bioremediation bioremediations bioresearch bioreserve biorgan biorhythm biorhythmic biorhythmicities biorhythmicity biorhythmics biorhythms biorythmic bios biosafeties biosafety biosatellite biosatellites bioscience biosciences bioscientific bioscientist bioscientists bioscope bioscopes bioscopic bioscopies bioscopy biose biosensor biosensors bioseston biosis biosocial biosocially biosociological biosociology biosolid biosolids biosome biospeleology biosphere biospheres biospheric biostable biostatic biostatical biostatics biostatistic biostatistical biostatistician biostatisticians biostatistics biosterin biosterol biostratigraphic biostratigraphical biostratigraphies biostratigraphy biostrome biostromes biosyntheses biosynthesis biosynthesize biosynthetic biosynthetically biosystematic biosystematics biosystematist biosystematists biosystematy biota biotas biotaxy biotech biotechnical biotechnics biotechnological biotechnologically biotechnologicaly biotechnologies biotechnologist biotechnologists biotechnology biotechs biotelemetric biotelemetries biotelemetry biotherapies biotherapy biotic biotical biotically biotics biotin biotins biotite biotites biotitic biotome biotomy biotope biotopes biotoxin biotoxins biotransformation biotransformations biotron biotrons biotroph biotrophs biotype biotypes biotypic biotypology biovular biovulate bioxalate bioxide biozone bipack bipacks bipaleolate bipalmate biparasitic biparental biparentally biparietal biparous biparted bipartible bipartient bipartile bipartisan bipartisanism bipartisanisms bipartisanship bipartisanships bipartite bipartitely bipartition bipartitions bipartizan biparty bipaschal bipectinate bipectinated biped bipedal bipedalism bipedalisms bipedalities bipedality bipedally bipedism bipeds bipeltate bipennate bipennated bipenniform biperforate bipersonal bipetalous biphase biphasic biphenol biphenyl biphenylene biphenyls bipinnaria bipinnariae bipinnarias bipinnate bipinnated bipinnately bipinnatifid bipinnatiparted bipinnatipartite bipinnatisect bipinnatisected biplace biplanal biplanar biplane biplanes biplicate biplicity biplosion biplosive bipod bipods bipolar bipolarisation bipolarise bipolarises bipolarities bipolarity bipolarization bipolarizations bipolarize bipolarized bipolarizes bipolarizing bipont biporose biporous bipotentialities bipotentiality biprism biprisms biprong bipropellant bipropellants bipunctal bipunctate bipunctual bipupillate bipyramid bipyramidal bipyramids bipyridine bipyridyl biquadrantal biquadrate biquadratic biquadratics biquarterly biquartz biquintile biquintiles biracial biracialism biracialisms biracially biradial biradially biradiate biradiated biramose biramous birational birch birchbark birched birchen bircher birchers birches birching birchism birchman birchwood bird birdbander birdbanding birdbath birdbaths birdberry birdbrain birdbrained birdbrains birdcage birdcages birdcall birdcalls birdcatcher birdcatching birdclapper birdcraft birddog birddogged birddogging birddogs birddom birde birded birdeen birder birders birdeye birdfarm birdfarms birdfeed birdfeeds birdglue birdhood birdhouse birdhouses birdie birdieback birdied birdieing birdies birdikin birding birdings birdland birdless birdlet birdlife birdlike birdlime birdlimed birdlimes birdliming birdling birdlore birdman birdmen birdmouthed birdnest birdnester birdnesting birds birdsall birdseed birdseeds birdseye birdseyes birdshot birdshots birdsnest birdsong birdsongs birdstone birdtables birdwatch birdwatcher birdwatchers birdwatching birdwatchings birdweed birdwing birdwings birdwise birdwitted birdwoman birdwomen birdy birdyback birdying birectangular birefracting birefraction birefractive birefringence birefringences birefringent bireme biremes biretta birettas birgand biri biriani birianis biriba birimose biriyani biriyanis birk birken birkie birkier birkies birkiest birkremite birks birky birl birle birled birler birlers birles birlie birlieman birliemen birling birlings birlinn birlinns birls birma birmingham birn birne birny biro birodo biros birostrate birostrated birota birotation birotatory birr birred birretta birrettas birri birring birrotch birrs birrus birse birses birsier birsiest birsit birsle birsled birsles birsling birsy birt birth birthbed birthcontrol birthdate birthdates birthday birthdays birthdom birthdoms birthe birthed birthing birthings birthland birthless birthmark birthmarks birthmate birthmother birthmothers birthnight birthnights birthparent birthparents birthplace birthplaces birthrate birthrates birthright birthrights birthroot birthroots births birthstone birthstones birthstool birthweight birthweights birthwort birthworts birthy biryani biryanis bis bisabol bisaccate bisacromial bisagre bisalt bisannual bisantler bisaxillary bisayan bisayas bisbeeite biscacha biscachas biscayan biscayen bischofite biscot biscotin biscotti biscotto biscuit biscuiting biscuitlike biscuitmaker biscuitmaking biscuitroot biscuitry biscuits biscuity biscutate biscutella bisdiapason bisdimethylamino bise bisect bisected bisecting bisection bisectional bisectionally bisections bisector bisectors bisectrices bisectrix bisects bisegment bisellia bisellium biseptate biserial biserially biseriate biseriately biserrate bises biset bisetose bisetous bisexed bisext bisexual bisexualism bisexualisms bisexualities bisexuality bisexually bisexuals bisexuous bisglyoxaline bish bishes bishop bishopbird bishopdom bishopdoms bishoped bishopess bishopesses bishopful bishophood bishoping bishopless bishoplet bishoplike bishopling bishopric bishoprics bishopry bishops bishopscap bishopship bishopstool bishopweed bishopweeds bishydroxycoumarin bisie bisiliac bisilicate bisiliquous bisimine bisinuate bisinuation bisischiadic bisischiatic bisk biskek biskop bisks bislings bismanol bismar bismarck bismarckian bismarine bismark bismars bisme bismer bismerpund bismethyl bismillah bismillahs bismite bismuth bismuthal bismuthate bismuthic bismuthide bismuthiferous bismuthine bismuthinite bismuthite bismuthous bismuths bismuthyl bismutite bismutoplagionite bismutosmaltite bismutosphaerite bisnaga bisnagas bisociation bisociations bisociative bisognio bison bisonant bisons bisontine bisphenoid bispinose bispinous bispore bisporous bisque bisques bisquette bissabol bissau bissellia bissext bissextile bissextiles bissextus bisso bisson bissonata bist bistable bistate bistephanic bister bistered bisters bistetrazole bisti bistipular bistipulate bistipuled bistort bistorts bistouries bistournage bistoury bistratal bistratose bistre bistred bistres bistriate bistriazole bistro bistroic bistros bisubstituted bisubstitution bisulc bisulcate bisulcated bisulfate bisulfates bisulfid bisulfide bisulfides bisulfite bisulfites bisulphate bisulphates bisulphide bisulphides bisulphite bisyllabic bisyllabism bisymmetric bisymmetrical bisymmetrically bisymmetry bisync bit bitable bitake bitangent bitangential bitanhol bitartrate bitartrates bitbrace bitch bitched bitchen bitcheries bitchery bitches bitchier bitchiest bitchily bitchin bitchiness bitchinesses bitching bitchy bitcoin bitcoins bite biteable biteche bited biteless bitemporal bitentaculate biteplate biteplates biter biternate biternately biters bites bitesheep bitesize bitewing bitewings bitheism biti biting bitingly bitingness bitings bitis bitless bitmap bitmapped bitmaps bitnet bito bitok bitoks bitolyl bitonal bitonalities bitonality bitore bitos bitreadle bitripartite bitripinnatifid bitriseptate bitrochanteric bits bitser bitsier bitsiest bitstalk bitstock bitstocks bitstone bitsy bitt bittacle bittacles bitte bitted bitten bitter bitterbark bitterblain bitterbloom bitterbrush bitterbrushes bitterbump bitterbur bitterbush bittercress bittered bitterender bitterenders bitterer bitterest bitterful bitterhead bitterhearted bitterheartedness bittering bitterish bitterishness bitterless bitterling bitterlings bitterly bittern bitterness bitternesses bitterns bitternut bitternuts bitterroot bitterroots bitters bittersweet bittersweetly bittersweetness bittersweetnesses bittersweets bitterweed bitterweeds bitterwood bitterwoods bitterworm bitterwort bitthead bittie bittier bitties bittiest bittiness bitting bittings bittock bittocks bittor bittors bittour bittours bitts bittur bitturs bitty bitubercular bituberculate bituberculated bitulithic bitumastic bitume bitumed bitumen bitumenoid bitumens bituminate bituminated bituminates bituminating bituminiferous bituminisation bituminisations bituminise bituminised bituminises bituminising bituminization bituminizations bituminize bituminized bituminizes bituminizing bituminoid bituminosis bituminous bitwise bityite bitypic biune biunial biunique biuniquely biuniqueness biuniquenesses biunity biunivocal biurate biurea biuret biurets bivalence bivalences bivalencies bivalency bivalent bivalents bivalve bivalved bivalves bivalvia bivalvian bivalvous bivalvular bivane bivariant bivariants bivariate bivariates bivascular bivaulted bivector biventer biventral biverb biverbal bivia bivial bivinyl bivinyls bivious bivittate bivium biviums bivocal bivocalized bivoltine bivoluminous bivouac bivouaced bivouacked bivouacking bivouacks bivouacs bivvied bivvies bivvy bivvying biwa biweeklies biweekly biwinter bixa bixaceous bixbyite bixin biyearly biz bizant bizardite bizarre bizarrely bizarreness bizarrenesses bizarrerie bizarreries bizarres bizarro bizarros bizazz bizazzes bizcacha bizcachas bize bizel bizes bizet biznaga biznagas bizonal bizone bizones bizygomatic bizz bizzarro bizzazz bizzazzes bizzes bk bkbndr bkcy bkg bkgd bklr bkpr bkpt bks bkt bl blaasop blab blabbed blabber blabbered blabberer blabbering blabbermouth blabbermouthed blabbermouths blabbers blabbing blabbings blabby blaberus blabmouth blabs blachong black blackacre blackamoor blackamoors blackarm blackback blackball blackballed blackballer blackballers blackballing blackballings blackballs blackband blackbands blackbeard blackbeetle blackbelly blackberries blackberry blackberrying blackberryings blackberrylike blackbine blackbird blackbirded blackbirder blackbirders blackbirding blackbirdings blackbirds blackboard blackboards blackbodies blackbody blackboy blackboys blackbreast blackbrush blackbuck blackbucks blackburn blackbush blackbutt blackcap blackcaps blackcoat blackcock blackcocks blackcod blackcods blackcurrant blackcurrants blackdamp blackdamps blacked blacken blackened blackener blackeners blackening blackenings blackens blacker blackest blacketeer blackey blackeye blackeyes blackface blackfaced blackfaces blackfeet blackfellow blackfellows blackfigured blackfin blackfins blackfire blackfish blackfisher blackfishes blackfishing blackflies blackfly blackfoot blackfriar blackgame blackgames blackguard blackguarded blackguarding blackguardism blackguardisms blackguardize blackguardly blackguardry blackguards blackgum blackgums blackhander blackhanders blackhaw blackhaws blackhead blackheaded blackheads blackheart blackhearted blackheartedly blackheartedness blackhearts blackie blackies blacking blackings blackish blackishly blackishness blackit blackjack blackjacked blackjacking blackjacks blackland blacklands blacklead blackleads blackleg blacklegged blackleggery blacklegging blacklegism blacklegs blacklight blacklist blacklisted blacklister blacklisters blacklisting blacklistings blacklists blackly blackmail blackmailed blackmailer blackmailers blackmailing blackmails blackman blackneb blackneck blackness blacknesses blacknob blackout blackouts blackpatch blackplate blackpoll blackpolls blackpool blackpot blackprint blackrag blackroot blacks blackseed blackshirt blackshirted blackshirts blacksmith blacksmithing blacksmithings blacksmiths blacksnake blacksnakes blackstick blackstrap blackstraps blacktail blacktails blackthorn blackthorns blacktongue blacktop blacktopped blacktopping blacktops blacktree blackware blackwash blackwasher blackwashes blackwashing blackwater blackwaters blackweed blackwood blackwoods blackwork blackwort blacky blad bladded bladder bladdered bladderet bladderless bladderlike bladdernose bladdernoses bladdernut bladdernuts bladderpod bladders bladderseed bladderweed bladderwort bladderworts bladderwrack bladderwracks bladdery bladding blade bladebone bladed bladeless bladelet bladelets bladelike blader bladers blades bladesmith bladewise bladework bladeworks blading bladings bladish blads blady bladygrass blae blaeberries blaeberry blaeness blaer blaes blaest blaewort blaff blaffert blaffs blaflum blag blaggard blagged blagger blaggers blagging blaggings blags blague blagues blagueur blagueurs blah blahed blahing blahlaut blahs blain blains blair blairmorite blaise blaize blake blakeberyed blakeite blam blamability blamable blamableness blamablenesses blamably blame blameable blameableness blameablenesses blameably blamed blameful blamefully blamefulness blamefulnesses blameless blamelessly blamelessness blamelessnesses blamer blamers blames blameworthiness blameworthinesses blameworthy blaming blamingly blammo blammoed blammoing blammos blams blan blanc blanca blancard blanch blanche blanched blancher blanchers blanches blanchi blanchimeter blanching blanchingly blanchisseuse blanchisseuses blancmange blancmanger blancmanges blanco blancoed blancoes blancoing blancos blancs bland blanda blandation blander blandest blandfordia blandified blandifies blandify blandifying blandiloquence blandiloquious blandiloquous blandish blandished blandisher blandishers blandishes blandishing blandishingly blandishment blandishments blandly blandness blandnesses blands blank blankard blankbook blanked blankeel blanker blankest blanket blanketed blanketeer blanketer blanketers blanketflower blanketflowers blanketies blanketing blanketings blanketless blanketlike blanketmaker blanketmaking blanketry blankets blanketweed blanketweeds blankety blankies blanking blankings blankish blankite blankly blankminded blankmindedness blankness blanknesses blanks blanky blanque blanquet blanquets blanquette blanquettes blanquillo blanquillos blaoner blaoners blare blared blares blarina blaring blarney blarneyed blarneyer blarneying blarneys blarnid blarny blart blas blasa blase blaseness blash blashes blashier blashiest blashy blason blaspheme blasphemed blasphemer blasphemers blasphemes blasphemies blaspheming blasphemous blasphemously blasphemousness blasphemousnesses blasphemy blast blastaea blasted blastema blastemal blastemas blastemata blastematic blastemic blaster blasters blastful blasthole blastid blastide blastie blastier blasties blastiest blasting blastings blastman blastment blastments blastocarpous blastocele blastocheme blastochyle blastocladia blastocladiales blastocoel blastocoele blastocoeles blastocoelic blastocoels blastocolla blastocyst blastocystic blastocysts blastocyte blastoderm blastodermatic blastodermic blastoderms blastodiaceae blastodisc blastodiscs blastodisk blastodisks blastoff blastoffs blastogeneses blastogenesis blastogenetic blastogenic blastogeny blastogranitic blastoid blastoids blastoma blastomas blastomata blastomere blastomeres blastomeric blastomyces blastomycete blastomycetes blastomycetic blastomycetous blastomycin blastomycoses blastomycosis blastomycotic blastoneuropore blastophitic blastophoral blastophore blastophoric blastophthoria blastophthoric blastophyllum blastoporal blastopore blastopores blastoporic blastoporphyritic blastosphere blastospheres blastospheric blastospore blastospores blastostylar blastostyle blastozooid blastplate blasts blastula blastulae blastular blastulas blastulation blastulations blastule blasty blasé blat blatancies blatancy blatant blatantly blatch blatchang blate blately blateness blater blateration blateroon blatest blather blathered blatherer blatherers blathering blathers blatherskite blatherskites blathery blatiform blatjang blats blatt blatta blattant blattaria blatted blattella blatter blattered blatterer blattering blatters blatti blattid blattidae blattiform blatting blattodea blattoid blatts blaubok blauboks blaud blauded blauding blauds blaunner blautok blauwbok blaver blaw blawed blawing blawn blawort blaworts blaws blaxploitation blaxploitations blay blayk blays blaze blazed blazer blazered blazers blazes blazing blazingly blazon blazoned blazoner blazoners blazoning blazonings blazonment blazonments blazonries blazonry blazons blazy bld bldg bldr blea bleaberry bleach bleachability bleachable bleached bleacher bleacheries bleacherite bleacherites bleacherman bleachers bleachery bleaches bleachfield bleachground bleachhouse bleaching bleachings bleachman bleachs bleachworks bleachyard bleak bleaker bleakest bleakish bleakly bleakness bleaknesses bleaks bleaky blear bleared blearedness blearer blearest bleareye bleareyed blearier bleariest blearily bleariness blearinesses blearing blearness blears bleary blearyeyedness bleat bleated bleater bleaters bleating bleatingly bleatings bleats bleaty bleaunt bleb blebbed blebby blebs blechnaceae blechnoid blechnum bleck bled blee bleed bleeder bleeders bleeding bleedings bleeds bleekbok bleep bleeped bleeper bleepers bleeping bleeps bleery blees bleeze bleezy bleinerite blellum blellums blemish blemished blemisher blemishers blemishes blemishing blemishment blemishments blemmatrope blench blenched blencher blenchers blenches blenching blenchingly blencorn blend blendcorn blende blended blender blenders blendes blending blendings blendor blends blendure blendwater blenheim blenk blennadenitis blennemesis blennenteria blennenteritis blennies blenniid blenniidae blenniiform blennioid blennioidea blennius blennocele blennocystitis blennoemesis blennogenic blennogenous blennoid blennoma blennometritis blennophlogisma blennophlogosis blennophobia blennophthalmia blennoptysis blennorhea blennorrhagia blennorrhagic blennorrhea blennorrheal blennorrhinia blennorrhoea blennorrhoeas blennosis blennostasis blennostatic blennothorax blennotorrhea blennuria blenny blennymenitis blens blent bleo bleomycin blephara blepharadenitis blepharal blepharanthracosis blepharedema blepharelcosis blepharemphysema blepharism blepharisms blepharitic blepharitides blepharitis blepharitises blepharoadenitis blepharoadenoma blepharoatheroma blepharoblennorrhea blepharocarcinoma blepharochalasis blepharochromidrosis blepharoclonus blepharocoloboma blepharoconjunctivitis blepharodiastasis blepharodyschroia blepharohematidrosis blepharolithiasis blepharomelasma blepharoncosis blepharoncus blepharophimosis blepharophryplasty blepharophthalmia blepharophyma blepharoplast blepharoplastic blepharoplasties blepharoplasts blepharoplasty blepharoplegia blepharoptosis blepharopyorrhea blepharorrhaphy blepharospasm blepharospasms blepharospath blepharosphincterectomy blepharostat blepharostenosis blepharosymphysis blepharosyndesmitis blepharosynechia blepharotomy blepharydatis blephilia blere blesbok blesboks blesbuck blesbucks blesmol bless blesse blessed blesseder blessedest blessedly blessedness blessednesses blesser blessers blesses blessing blessingly blessings blest blet bletch blethe bletheranskate bletheranskates bletheration bletherations bletherer bletherers bletherings bletherskate bletherskates bletia bletilla bletonism blets bletted bletting bleu bleuatre bleuâtre blew blewart blewarts blewit blewits blewitses bley bleymes bleys bliaut blibe blick blickey blickeys blickie blickies blicky blier bliest bligh blighia blight blightbird blighted blighter blighters blighties blighting blightingly blightings blights blighty blijver blimbing blimbings blimey blimeys blimies blimp blimped blimping blimpish blimpishly blimpishness blimpishnesses blimps blimy blin blind blindage blindages blindball blindcat blinded blindedly blinder blinders blindest blindeyes blindfast blindfish blindfishes blindfold blindfolded blindfoldedly blindfoldedness blindfolder blindfolding blindfoldly blindfolds blindgut blindguts blinding blindingly blindings blindish blindism blindless blindling blindly blindman blindness blindnesses blinds blindside blindsided blindsides blindsiding blindsight blindsights blindstitch blindstorey blindstories blindstory blindweed blindworm blindworms blinger blini blinis blink blinkard blinkards blinked blinker blinkered blinkering blinkers blinking blinkingly blinks blinkses blinky blinned blinning blins blinter blintz blintze blintzes bliny blip blipped blippers blipping blips blirt bliss blissed blisses blissful blissfully blissfulness blissfulnesses blissing blissless blissom blissout blissouts blissus blist blister blistered blisterier blisteriest blistering blisteringly blisterous blisters blisterweed blisterwort blistery blit blite blites blithe blithebread blitheful blithefully blithefulness blithehearted blithelike blithely blithemeat blithen blitheness blithenesses blither blithered blithering blithers blithesome blithesomely blithesomeness blithesomenesses blithest blitt blitter blitz blitzbuggy blitzed blitzer blitzers blitzes blitzing blitzkrieg blitzkrieged blitzkrieging blitzkriegs blive blivet blivets blivit blivits blizz blizzard blizzardly blizzardous blizzards blizzardy blk blksize blo bloat bloated bloatedness bloatednesses bloater bloaters bloating bloatings bloats bloatware bloatwares blob blobbed blobber blobbier blobbiest blobbiness blobbing blobby blobs bloc blocage block blockade blockaded blockader blockaders blockaderunning blockades blockading blockage blockages blockboard blockboards blockbuster blockbusters blockbusting blockbustings blocked blocker blockers blockhead blockheaded blockheadedly blockheadedness blockheadish blockheadishness blockheadism blockheads blockhole blockholer blockholes blockhouse blockhouses blockier blockiest blockiness blocking blockings blockish blockishly blockishness blockishnesses blocklayer blocklike blockline blockmaker blockmaking blockman blockout blockpate blocks blockship blockwood blockwork blockworks blocky blocs blodite bloedite bloemfontein blog blogged blogger bloggers blogging blogs blok bloke blokedom blokedoms blokeish blokes blokey blokier blokiest blokish blolly bloman blomstrandine bloncket blond blonde blondeness blonder blondes blondest blondine blondined blondines blondining blondish blondness blondnesses blonds blood bloodalley bloodalp bloodbath bloodbaths bloodbeat bloodberry bloodbird bloodcurdler bloodcurdling bloodcurdlingly blooddrop blooddrops blooded bloodedness bloodfin bloodfins bloodflower bloodguilt bloodguiltiness bloodguiltinesses bloodguiltless bloodguilts bloodguilty bloodheat bloodheats bloodhound bloodhounds bloodied bloodier bloodies bloodiest bloodily bloodiness bloodinesses blooding bloodings bloodleaf bloodless bloodlessly bloodlessness bloodlessnesses bloodletter bloodletters bloodletting bloodlettings bloodlike bloodline bloodlines bloodlust bloodlusting bloodlusts bloodmobile bloodmobiles bloodmonger bloodnoun bloodred bloodripe bloodripeness bloodroot bloodroots bloods bloodshed bloodshedder bloodshedding bloodsheds bloodshot bloodshotten bloodspiller bloodspilling bloodsport bloodsports bloodsprent bloodstain bloodstained bloodstainedness bloodstains bloodstanch bloodstock bloodstocks bloodstone bloodstones bloodstream bloodstreams bloodstroke bloodsuck bloodsucker bloodsuckers bloodsucking bloodsuckings bloodtest bloodthirst bloodthirster bloodthirstier bloodthirstiest bloodthirstily bloodthirstiness bloodthirstinesses bloodthirsting bloodthirsty bloodweed bloodwit bloodwite bloodwood bloodwoods bloodworm bloodworms bloodwort bloodworthy bloodworts bloody bloodybones bloodying bloodymindedness blooey blooie bloom bloomage bloomed bloomer bloomeria bloomeries bloomerism bloomers bloomery bloomfell bloomier bloomiest blooming bloomingly bloomingness bloomkin bloomless blooms bloomy bloop blooped blooper bloopers blooping bloops bloosme bloosmed bloosmes bloosming blooth blore blores blosmy blossom blossombill blossomed blossomhead blossoming blossomings blossomless blossomry blossoms blossomtime blossomy blot blotch blotched blotches blotchier blotchiest blotchily blotchiness blotchinesses blotching blotchings blotchy blote blotless blotlessness blots blotted blotter blotters blottesque blottesquely blottesques blottier blottiest blotting blottingly blottings blotto blottto blotty bloubiskop bloubok blouboks blouse bloused blouselike blouses blousier blousiest blousily blousing blouson blousons blousy blout bloviate bloviated bloviates bloviating bloviation bloviations blow blowback blowbacks blowball blowballs blowby blowbys blowcase blowcock blowdown blowdowns blowed blowen blower blowers blowess blowfish blowfishes blowflies blowfly blowgun blowguns blowhard blowhards blowhole blowholes blowie blowier blowies blowiest blowiness blowing blowings blowiron blowjob blowjobs blowlamp blowlamps blowline blown blowoff blowoffs blowout blowouts blowpipe blowpipes blowpit blowpoint blowproof blows blowse blowsed blowses blowsier blowsiest blowsily blowspray blowsy blowth blowtorch blowtorches blowtube blowtubes blowup blowups blowvalve blowvalves blowy blowze blowzed blowzes blowzier blowziest blowzily blowziness blowzinesses blowzing blowzy bls blt blub blubbed blubber blubbered blubberer blubberers blubberhead blubbering blubberingly blubberman blubberous blubbers blubbery blubbing blubs blucher bluchers blude bluded bludes bludge bludged bludgeon bludgeoned bludgeoneer bludgeoner bludgeoners bludgeoning bludgeons bludger bludgers bludges bludging bludie bludier bludiest bluding bludy blue blueback bluebacks blueball blueballs bluebead bluebeard bluebeards bluebeat bluebeats bluebell bluebelled bluebells blueberries blueberry bluebill bluebills bluebird bluebirds blueblack blueblaw blueblood bluebloods blueblossom bluebonnet bluebonnets bluebook bluebooks bluebottle bluebottles bluebreast bluebreasts bluebuck bluebucks bluebush bluebutton bluecap bluecaps bluecoat bluecoated bluecoats bluecup bluecurls blued bluefin bluefins bluefish bluefishes bluegill bluegills bluegown bluegowns bluegrass bluegrasses bluegum bluegums bluehead blueheads bluehearted bluehearts blueing blueings blueish bluejack bluejacket bluejackets bluejacks bluejay bluejays bluejeans bluejoint blueleg bluelegs blueline bluelines bluely blueness bluenesses bluenose bluenosed bluenoses bluepoint bluepoints blueprint blueprinted blueprinter blueprinting blueprints bluer blues blueshift blueshifted blueshifts bluesides bluesier bluesiest bluesman bluesmen bluest bluestem bluestems bluestocking bluestockingish bluestockingism bluestockings bluestone bluestoner bluestones bluesy bluet blueth bluethroat bluethroats bluetick blueticks bluetit bluetits bluetongue bluetongues bluetop bluetops bluets bluette bluettes blueweed blueweeds bluewing bluewings bluewood bluewoods bluey blueys bluff bluffable bluffed bluffer bluffers bluffest bluffing bluffly bluffness bluffnesses bluffs bluffy blufter bluggier bluggiest bluggy bluid bluidier bluidiest bluids bluidy bluier bluiest bluing bluings bluish bluishness bluishnesses bluism bluisness blume blumed blumes bluming blunder blunderbuss blunderbusses blundered blunderer blunderers blunderful blunderhead blunderheaded blunderheadedness blundering blunderingly blunderings blunders blundersome blunge blunged blunger blungers blunges blunging blunk blunked blunker blunkers blunket blunking blunks blunnen blunt blunted blunter bluntest blunthead blunthearted bluntie blunting bluntish bluntishness bluntly bluntness bluntnesses blunts blup blur blurb blurbed blurbing blurbist blurbists blurbs blurping blurred blurredly blurredness blurrer blurrier blurriest blurrily blurriness blurrinesses blurring blurringly blurry blurs blurt blurted blurter blurters blurting blurtings blurts blush blushed blusher blushers blushes blushet blushets blushful blushfully blushfulness blushiness blushing blushingly blushings blushless blushlessly blusht blushwort blushy bluster blusteration blustered blusterer blusterers blusterier blusteriest blustering blusteringly blusterings blusterous blusterously blusters blustery blustrous blutwurst blutwursts blvd blype blypes bm bmr bmus bn bnf bns bo boa boagane boak boaked boaking boaks boanergean boanerges boanergism boann boanthropy boar boarcite board boardable boardbill boarded boarder boarders boardgames boarding boardinghouse boardinghouses boardings boardlike boardly boardman boardmanship boardmen boardroom boardrooms boards boardsailing boardsailings boardsailor boardsailors boardsmanship boardwalk boardwalks boardy boarfish boarfishes boarhound boarhounds boarish boarishly boarishness boarishnesses boars boarship boarskin boarspear boarstaff boart boarts boarwood boas boast boasted boaster boasters boastful boastfully boastfulness boastfulnesses boasting boastingly boastings boastive boastless boasts boat boatable boatage boatbill boatbills boatbuilder boatbuilders boatbuilding boatbuildings boatclubs boated boatel boatels boater boaters boatfalls boatful boatfuls boathead boatheader boathook boathooks boathouse boathouses boatie boaties boating boatings boation boatkeeper boatless boatlift boatlifted boatlifting boatlifts boatlike boatlip boatload boatloader boatloading boatloads boatly boatman boatmanship boatmanships boatmaster boatmen boatowner boatrace boatraces boats boatsetter boatshop boatside boatsman boatsmanship boatsmen boatsteerer boatswain boatswains boattail boattails boatward boatwise boatwoman boatwright boatyard boatyards bob boba bobac bobache bobachee bobacs bobadil bobak bobaks bobance bobas bobbed bobbejaan bobber bobberies bobbers bobbery bobbie bobbies bobbin bobbiner bobbinet bobbinets bobbing bobbins bobbinwork bobbish bobbishly bobbitt bobbitted bobbitting bobbitts bobble bobbled bobbles bobblier bobbliest bobbling bobbly bobby bobbysock bobbysocker bobbysocks bobbysox bobbysoxer bobbysoxers bobcat bobcats bobcoat bobeche bobeches bobet bobflies bobfloat bobfly bobierrite bobization bobjerom boblet bobo bobol bobolink bobolinks bobooti bobotee bobotie bobowler bobs bobsled bobsledded bobsledder bobsledders bobsledding bobsleddings bobsleded bobsleding bobsleds bobsleigh bobsleighs bobstay bobstays bobtail bobtailed bobtailing bobtails bobwheel bobwheels bobwhite bobwhites bobwig bobwigs bobwood boc boca bocaccio bocaccios bocage bocages bocal bocardo bocasin bocasine bocca boccaccio boccale boccarella boccaro bocce bocces bocci boccia boccias boccie boccies boccis bocconia boce bocedization boche bocher boches bochism bochur bock bocked bockerel bockeret bockey bocking bocklogged bocks bocoy bocstaff bod bodach bodachs bodacious bodaciously boddagh boddhisattva boddhisattvas boddhisatva boddle boddles bode boded bodeful bodefully bodefulness bodega bodegas bodegon bodegones bodeguero bodegueros bodegun bodement bodements boden bodenbenderite boder bodes bodewash bodeword bodge bodged bodger bodgers bodgery bodges bodgie bodgier bodgies bodgiest bodging bodhi bodhisat bodhisattva bodhisattvas bodhisattwa bodhran bodhrans bodhrán bodhráns bodice bodiced bodicemaker bodicemaking bodices bodied bodier bodieron bodies bodikin bodikins bodiless bodilessness bodiliness bodilize bodily bodiment boding bodingly bodings bodken bodkin bodkins bodkinwise bodle bodleian bodles bodock bodoni bodonid bodrag bodrage bodrags bods bodstick bodword body bodybending bodyboard bodyboarder bodyboards bodybuild bodybuilder bodybuilders bodybuilding bodybuildings bodycheck bodychecked bodychecking bodychecks bodyguard bodyguards bodyhood bodying bodykins bodyless bodyline bodylines bodymaker bodymaking bodypaint bodyplate bodyshell bodyshells bodyshirt bodysnatching bodysnatchings bodysuit bodysuits bodysurf bodysurfed bodysurfer bodysurfers bodysurfing bodysurfs bodywear bodyweight bodywise bodywood bodywork bodyworker bodyworkers bodyworks boe boehm boehme boehmenism boehmeria boehmite boehmites boeing boeotarch boeotia boeotian boer boerewors boereworses boers boettner boeuf boff boffed boffin boffing boffins boffo boffola boffolas boffos boffs bog boga bogach bogan bogans bogard bogart bogarted bogartian bogarting bogarts bogatyr bogbean bogbeans bogberries bogberry boget bogey bogeyed bogeying bogeyism bogeyisms bogeyman bogeymen bogeys bogfern boggard boggards boggart boggarts bogged boggier boggiest boggin bogginess bogginesses bogging boggish boggishness boggle bogglebo boggled boggler bogglers boggles boggling bogglingly bogglish boggy boghole bogie bogied bogieman bogier bogies bogland boglander boglands bogle bogled bogledom bogles boglet bogman bogmat bogmire bogo bogoak bogoaks bogometer bogometers bogomip bogomips bogon bogong bogongs bogosities bogosity bogota bogotana bogotified bogotifies bogotify bogotifying bogs bogsucker bogtrot bogtrotter bogtrotters bogtrotting bogtrottings bogue bogued bogues boguing bogum bogus bogusly bogusness bogway bogwood bogwoods bogwort bogy bogydom bogyism bogyisms bogyland bogyman bogymen bogys boh bohawn bohea boheas bohemia bohemian bohemianism bohemianisms bohemians bohemias bohemium bohereen bohireen bohme bohmite boho bohor bohora bohorok bohos bohrium bohriums bohs bohunk bohunks boid boidae boiette boigid boiguacu boil boilable boildown boiled boiler boilerful boilerhouse boileries boilerless boilermaker boilermakers boilermaking boilerman boilerplate boilerplates boilers boilersmith boilersuit boilersuits boilerworks boilery boiling boilinglike boilingly boilings boiloff boiloffs boilover boils boily boing boinged boinging boings boink boinked boinking boinks boise boiserie boiseries boisseau boisseaux boist boisterous boisterously boisterousness boisterousnesses boistous boistously boistousness boite boites boithrin bojite bojo bok bokadam bokard bokark boke boked bokes boking bokkos bokmakierie bokmal boko bokom bokos boks bol bola bolanci bolar bolas bolases bolbanac bolbitis bolbonac bold boldacious bolded bolden boldened boldening boldens bolder boldest boldface boldfaced boldfacedly boldfacedness boldfaces boldfacing boldhearted boldheartedly boldheartedness boldin boldine bolding boldly boldness boldnesses boldo boldoine boldos bolds bole bolection bolectioned bolections boled boleite bolelike bolero boleros boles boletaceae boletaceous bolete boletellus boletes boleti boletic boletus boletuses boleweed bolewort boleyn boliche bolide bolides bolimba bolingbroke bolis bolita bolivar bolivares bolivarite bolivars bolivia bolivian boliviano bolivianos bolivians bolivias bolix bolixed bolixes bolixing bolk boll bollandist bollard bollards bolled bollen boller bolletrie bolletries bollies bolling bollito bollix bollixed bollixes bollixing bollock bollocked bollocking bollockings bollocks bollocksed bollockses bollocksing bollox bolloxed bolloxes bolloxing bolls bollworm bollworms bolly bolo boloball boloed bologna bolognas bologram bolograph bolographic bolographically bolography boloing boloism boloman bolomen bolometer bolometers bolometric bolometrically bolometries bolometry boloney boloneys boloroot bolos bolshevik bolsheviki bolsheviks bolshevise bolshevised bolshevises bolshevising bolshevism bolshevisms bolshevist bolshevistic bolshevistically bolshevists bolshevize bolshevized bolshevizes bolshevizing bolshie bolshier bolshiest bolshy bolson bolsons bolster bolstered bolsterer bolsterers bolstering bolsterings bolsters bolsterwork bolsun bolsuns bolt boltage boltant boltcutter bolted boltel bolter boltered boltering bolters bolthead boltheader boltheading boltheads bolthole boltholes bolti boltin bolting boltings boltless boltlike boltmaker boltmaking boltonia boltonias boltonite boltrope boltropes bolts boltsmith boltspreet boltstrake boltuprightness boltwork bolty bolus boluses bom boma bomarea bomas bomb bomba bombable bombacaceae bombacaceous bombace bombard bombarde bombarded bombardelle bombarder bombarders bombardier bombardiers bombarding bombardman bombardmen bombardment bombardments bombardo bombardon bombardons bombards bombasine bombasines bombast bombasted bombaster bombastic bombastical bombastically bombasticness bombasting bombastry bombasts bombax bombaxes bombay bombazeen bombazet bombazette bombazine bombazines bombe bombed bomber bombernickel bombers bombes bombesin bombesins bombic bombiccite bombilate bombilated bombilates bombilating bombilation bombilations bombilla bombillas bombina bombinate bombinated bombinates bombinating bombination bombinations bombing bombings bomble bomblet bomblets bombline bombload bombloads bombo bombola bombonne bombora bomboras bombos bombous bombproof bombs bombshell bombshells bombsight bombsights bombsite bombsites bombus bombycid bombycidae bombycids bombyciform bombycilla bombycillidae bombycine bombycinous bombyliidae bombylious bombyx bombyxes bomi bomos bon bona bonace bonaci bonacis bonagh bonaght bonailie bonair bonaire bonairly bonairness bonally bonamani bonamano bonamia bonamias bonamiases bonamiasis bonang bonanza bonanzas bonapartism bonapartist bonasa bonassus bonassuses bonasus bonasuses bonaught bonav bonaventure bonavist bonbon bonbonniares bonbonniere bonbonnieres bonbonnière bonbonnières bonbons bonce bonces bonchief bond bondabilities bondability bondable bondage bondager bondagers bondages bondar bonded bonder bonderise bonderize bonderman bonders bondfolk bondhold bondholder bondholders bondholding bondieuserie bonding bondings bondland bondless bondmaid bondmaids bondman bondmanship bondmanships bondmen bondminder bondoc bondon bonds bondservant bondservants bondship bondslave bondsman bondsmen bondstone bondstones bondswoman bondswomen bonduc bonducnut bonducs bondwoman bondwomen bone boneache bonebinder boneblack boneblacks bonebreaker boned bonedog bonedry boneen bonefish bonefishes bonefishing bonefishings boneflower bonehead boneheaded boneheadedness boneheadednesses boneheads boneless bonelessly bonelessness bonelet bonelike bonemeal bonemeals boner boners bones boneset bonesets bonesetter bonesetters bonesetting boneshaker boneshakers boneshave boneshaw bonetail bonete bonetta bonewood bonework bonewort boney boneyard boneyards boneyer boneyest bonfire bonfires bong bongar bonged bonging bongo bongoes bongoist bongoists bongos bongrace bongraces bongs bonheur bonhomie bonhomies bonhomme bonhommie bonhommies bonhomous bonhomously boniata boniato boniatos bonibell bonibells bonie bonier boniest boniface bonifaces bonification boniform bonify bonilass bonilasse bonilasses boniness boninesses boning bonings boninite bonism bonisms bonist bonists bonita bonitarian bonitary bonitas bonito bonitoes bonitos bonity bonjour bonk bonked bonkers bonking bonks bonn bonnaz bonne bonnering bonnes bonnet bonneted bonneter bonnethead bonnetiare bonnetiares bonnetiere bonnetieres bonneting bonnetless bonnetlike bonnetman bonnetmen bonnets bonnibel bonnibell bonnibells bonnie bonnier bonnies bonniest bonnilasse bonnilasses bonnily bonniness bonninesses bonnive bonnne bonnnes bonnock bonnocks bonnwis bonny bonnyclabber bonnyclabbers bonnyish bonnyvis bono bonobo bonobos bonorum bonos bons bonsai bonsais bonsela bonsella bonsellas bonser bonsoir bonspell bonspells bonspiel bonspiels bontebok bonteboks bontebuck bontebucks bontee bontequagga bonum bonus bonuses bonxie bonxies bony bonyfish bonytail bonza bonze bonzer bonzery bonzes bonzian boo boob boobed boobery boobialla boobie boobies boobily boobing boobish boobishness booboisie booboisies booboo boobook boobooks booboos boobs booby boobyalla boobyish boobyism boobyisms boocoo boocoos bood boodh boodie boodied boodies boodle boodled boodledom boodleism boodleize boodler boodlers boodles boodling boody boodying booed boof boofhead boofheads boogaloo booger boogerman boogermans boogermen boogers boogey boogeyed boogeying boogeyman boogeymen boogeys boogie boogied boogieing boogieman boogies boogiewoogie boogum boogy boogying boogyman boogymen booh boohed boohing boohoo boohooed boohooing boohoos boohs booing boojum book bookable bookbind bookbinder bookbinderies bookbinders bookbindery bookbinding bookbindings bookboard bookcase bookcases bookclub bookcraft bookdealer bookdom booked bookend bookended bookending bookends booker bookers bookery bookfair bookfold bookful bookfuls bookholder bookhood bookhunter bookhunters bookie bookier bookies bookiest bookiness booking bookings bookish bookishly bookishness bookishnesses bookism bookit bookkeep bookkeeper bookkeepers bookkeeping bookkeepings bookkeeps bookland booklands booklear bookless booklet booklets booklice booklift booklike bookling booklists booklore booklores booklouse booklover bookmaker bookmakers bookmaking bookmakings bookman bookmark bookmarked bookmarker bookmarkers bookmarking bookmarks bookmate bookmen bookmobile bookmobiles bookmonger bookoo bookoos bookplate bookplates bookpress bookrack bookracks bookrest bookrests bookroom books bookseller booksellerish booksellerism booksellers bookselling booksellings bookshelf bookshelfs bookshelves bookshop bookshops booksie booksier booksiest bookstack bookstall bookstalls bookstand bookstands bookstore bookstores booksy bookward bookwards bookways bookwise bookwork bookworks bookworm bookworms bookwright booky bool boole boolean booleans booley booleys boolies bools booly boolya boom boomable boomage boomah boomboat boombox boomboxes boomdas boomed boomer boomerang boomeranged boomeranging boomerangs boomers boomier boomiest boominess booming boomingly boomings boomkin boomkins boomless boomlet boomlets boomorah booms boomslang boomslange boomslangs boomster boomtown boomtowns boomy boon boondock boondocker boondocks boondoggle boondoggled boondoggler boondogglers boondoggles boondoggling boone boonfellow boong boongaries boongary boongs boonies boonk boonless boons boopic boopis boor boord boorde boordes boordly boords boorga boorish boorishly boorishness boorishnesses boorka boorkas boors boort boortree boortrees boos boose boosed booses boosies boosing boost boosted booster boosterism boosterisms boosters boosting boosts boosy boot bootable bootblack bootblacks bootboy bootboys boote booted bootee bootees booter booteries bootery bootes bootful booth boothage boothale bootheel boother boothes boothite bootholder boothose booths bootie bootied booties bootikin bootikins booting bootjack bootjacks bootlace bootlaces bootlast bootlasts bootle bootleg bootleger bootlegged bootlegger bootleggers bootlegging bootleggings bootlegs bootless bootlessly bootlessness bootlessnesses bootlick bootlicked bootlicker bootlickers bootlicking bootlickings bootlicks bootloader bootmaker bootmakers bootmaking bootmakings bootman bootprint bootprints boots bootses bootstrap bootstrapped bootstrapping bootstraps boottop boottopping booty bootyless booyong booze boozed boozehound boozehounds boozer boozers boozes boozey boozier booziest boozify boozily booziness boozinesses boozing boozy bop bopeep bopeeps bopped bopper boppers bopping boppish boppist bops bopster bopyrid bopyridian bor bora borable boraces borachio borachios boracic boraciferous boracite boracites boracium boracous borage borages boraginaceae boraginaceous boragineous borago borak boraks boral borals borane boranes boras borasca borasco borasque borasqueborate borassus borate borated borates borating borax boraxes borazon borazons borborygm borborygmatic borborygmi borborygmic borborygmies borborygmus bord bordage bordar bordarius bordars borde bordeaux bordel bordelaise bordello bordellos bordels border bordereau bordereaux bordered borderer borderers bordering borderings borderism borderland borderlander borderlands borderless borderlight borderline borderlines bordermark borders bordes bordman bordrag bordrage bordraging bordragings bordroom bords bordun bordure bordured bordures bore boreable boread boreal borealis borean boreas boreases borecole borecoles bored boredness boredom boredoms boree boreen boreens borees boregat borehole boreholes boreism borel borele borer borers bores borescope borescopes boresight boresome boresomely boresomeness borg borgh borghalpenny borghetto borghettos borghi borgo borgos borh bori boric borickite borid boride borides borine boring boringly boringness boringnesses borings borise borish borism borith borities bority borize bork borked borking borks borlase borley born bornan bornane borne bornean borneo borneol borneols borning bornite bornites bornitic bornyl boro borocalcite borocarbide borocitrate borodino borofluohydric borofluoric borofluoride borofluorin boroglycerate boroglyceride boroglycerine borohydride borohydrides borolanite boron boronatrocalcite boronia boronias boronic borons borophenol borophenylic borosalicylate borosalicylic borosilicate borosilicates borosilicic borotungstate borotungstic borough boroughlet boroughmaster boroughmonger boroughmongering boroughmongery boroughs boroughship boroughwide borowolframic borracha borrachio borrasca borrel borrelia borrelias borrell borrow borrowable borrowed borrower borrowers borrowing borrowings borrows bors borsch borsches borscht borschts borsh borshch borsholder borsht borshts borstal borstall borstalls borstals bort borts bortsch bortsches borty bortz bortzes borwort boryl borzoi borzois bos bosbok bosboks bosc boscage boscages bosch boschbok boschboks bosche bosches boschvark boschveld boschvelds bose boselaphus boser bosey bosh boshbok boshboks bosher boshes boshta boshter boshvark boshvarks bosie bosjesman bosk boskage boskages bosker bosket boskets boskier boskiest boskiness boskinesses boskopoid bosks bosky bosn bosnia bosnian bosom bosomed bosomer bosomier bosomiest bosominess bosoming bosoms bosomy boson bosonic bosons bosporus bosque bosques bosquet bosquets boss bossa bossage bossboy bossdom bossdoms bossed bosselated bosselation bosser bosses bossest bosset bossets bosseyed bossier bossies bossiest bossily bossiness bossinesses bossing bossism bossisms bosslet bossship bossy bossyboots bostal bostangi bostangis bostanji bosthoon boston bostonian bostonians bostonite bostons bostrychid bostrychoid bostrychoidal bostryx bostryxes bosun bosuns boswell boswellia boswellian boswellism boswellize boswellized boswellizing bot bota botan botanic botanica botanical botanically botanicals botanicas botanics botanies botanise botanised botaniser botanises botanising botanist botanists botanize botanized botanizer botanizers botanizes botanizing botanomancies botanomancy botanophile botanophilist botany botargo botargoes botargos botas botaurus botch botched botchedly botcher botcheries botcherly botchers botchery botches botchier botchiest botchily botchiness botchinesses botching botchings botchka botchwork botchy bote botel boteler botella botels boterol boteroll botete botflies botfly both bothan bothans bother botheration botherations bothered botherer botherheaded bothering botherment bothers bothersome bothersomely bothersomeness bothidae bothie bothies bothlike bothole botholes bothrenchyma bothria bothridia bothridium bothridiums bothriolepis bothrium bothriums bothroi bothropic bothrops bothros bothsided bothsidedness boththridia bothway bothy bothyman bothymen boti botling botnet boto botone botonee botong botonn botonnee botonny botony botoné botos botoyan botry botrychium botrycymose botrylle botryogen botryoid botryoidal botryoidally botryolite botryomycoma botryomycosis botryomycotic botryopterid botryose botryotherapy botrytis botrytises bots botswana bott botte botted bottega bottegas botteghe bottekin bottes botticelli bottier botties bottine bottines botting bottle bottlebird bottlebrush bottlebrushes bottlecap bottled bottlefeed bottleflower bottleful bottlefuls bottlegrass bottlehead bottleholder bottlelike bottlemaker bottlemaking bottleman bottleneck bottlenecked bottlenecking bottlenecks bottlenest bottlenose bottlenoses bottler bottlers bottles bottlesful bottlestone bottletree bottling bottlings bottom bottomchrome bottomed bottomer bottomers bottoming bottomland bottomlands bottomless bottomlessly bottomlessness bottomlessnesses bottommost bottomness bottomnesses bottomried bottomries bottomry bottomrying bottoms bottonhook bottony botts bottstick bottu botty botuliform botulin botulinal botulins botulinum botulinums botulinus botulinuses botulism botulisms botulismus boubas boubou boubous boucan bouch bouchal bouchaleen boucharde bouche bouchee bouchees boucher boucherism boucherize bouchette bouchon bouchons bouchée bouchées boucl boucla boucle boucles bouclé bouclés boud bouderie boudeuse boudin boudins boudoir boudoiresque boudoirs bouet bouffage bouffancy bouffant bouffante bouffants bouffe bouffes bouffon bougainvilia bougainvilias bougainvillaea bougainvillaeas bougainville bougainvillea bougainvilleas bougar bouge bouged bougee bougeron bouges bouget bougets bough boughed boughless boughpot boughpots boughs bought boughten boughts boughy bougie bougies bouging bouillabaisse bouillabaisses bouilli bouillis bouillon bouillone bouillons bouillotte bouillottes bouk boukit bouks boul boulanger boulangerite boulder bouldered boulderer boulderers boulderhead bouldering boulderings boulders bouldery boule boules bouleuteria bouleuterion boulevard boulevardier boulevardiers boulevardise boulevardize boulevards bouleverse bouleversement bouleversements boulework boulimia boulimy boulle boulles boullework boult boulted boultel boultell boulter boulterer boulters boulting boultings boults boun bounce bounceable bounceably bounceback bounced bouncer bouncers bounces bouncier bounciest bouncily bounciness bouncinesses bouncing bouncingly bouncy bound boundable boundaries boundary bounded boundedly boundedness boundednesses bounden bounder bounderish bounderishly bounders bounding boundingly boundless boundlessly boundlessness boundlessnesses boundly boundness bounds boundure bouned bouning bouns bounteous bounteously bounteousness bounteousnesses bountied bounties bountiful bountifully bountifulness bountifulnesses bountihead bountiousness bountith bountree bountrees bounty bountyhed bountyheds bountyless bouquet bouquetier bouquetiere bouquetieres bouquetiers bouquetin bouquetière bouquetières bouquets bouquiniste bour bourage bourasque bourasques bourbon bourbonise bourbonism bourbonisms bourbonize bourbons bourd bourder bourders bourdis bourdon bourdons bourds bourette bourg bourgade bourgeois bourgeoise bourgeoises bourgeoisie bourgeoisies bourgeoisification bourgeoisifications bourgeoisified bourgeoisifies bourgeoisify bourgeoisifying bourgeoisitic bourgeon bourgeoned bourgeoning bourgeons bourgogne bourgs bourguignon bourguignonne bourguignons bourkha bourkhas bourlaw bourlaws bourn bourne bournes bournless bournonite bournous bourns bourock bourr bourrae bourraes bourran bourrasque bourre bourreau bourree bourrees bourrelet bourride bourrides bourrée bourrées bourse bourses boursier boursiers boursin boursins bourtree bourtrees bouse boused bouser bouses bousier bousiest bousing bousingken bousingkens bousouki bousoukia bousoukis boussingaultite boustrophedon boustrophedonic boustrophedons bousy bout boutade boutades boutefeu boutel boutell bouteloua bouteria bouteselle boutique boutiques bouto bouton boutonne boutonnee boutonniares boutonniere boutonnieres boutonnière boutonnières boutonné boutonnée boutons boutre bouts boutylka bouvardia bouvardias bouvier bouviers bouvines bouw bouyei bouzouki bouzoukia bouzoukis bovarism bovarist bovaristic bovarysm bovate bovates bove bovenland bovey bovicide boviculture bovid bovidae bovids boviform bovinae bovine bovinely bovines bovini bovinities bovinity bovld bovoid bovovaccination bovovaccine bovril bovver bovvers bow bowable bowat bowats bowback bowbells bowbent bowboy bowdacious bowden bowditch bowdlerisation bowdlerisations bowdlerise bowdlerised bowdleriser bowdlerisers bowdlerises bowdlerising bowdlerism bowdlerisms bowdlerization bowdlerizations bowdlerize bowdlerized bowdlerizer bowdlerizers bowdlerizes bowdlerizing bowdrill bowe bowed bowedness bowel boweled boweling bowelled bowelless bowellike bowelling bowels bowenite bower bowerbird bowerbirds bowered boweries bowering bowerlet bowerlike bowerly bowermaiden bowermay bowers bowerwoman bowerwomen bowery bowes bowess bowet bowets bowfin bowfins bowfront bowge bowget bowgets bowgrace bowhead bowheads bowie bowiea bowieful bowing bowingly bowings bowk bowkail bowker bowknot bowknots bowl bowla bowlder bowlderhead bowldering bowlders bowldery bowle bowled bowleg bowlegged bowleggedness bowlegs bowler bowlers bowles bowless bowlful bowlfuls bowlike bowlin bowline bowlines bowling bowlings bowllike bowlmaker bowls bowly bowmaker bowmaking bowman bowmen bown bowne bowned bownes bowning bowpin bowpot bowpots bowr bowralite bowrs bows bowsaw bowse bowsed bowser bowsers bowsery bowses bowshot bowshots bowsie bowsing bowsman bowsprit bowsprits bowssen bowstaff bowstave bowstring bowstringed bowstringing bowstrings bowstrung bowtel bowtell bowtie bowwoman bowwood bowwort bowwow bowwowed bowwowing bowwows bowyang bowyangs bowyer bowyers box boxball boxballs boxberries boxberry boxboard boxboards boxbush boxcar boxcars boxed boxen boxer boxercise boxercises boxers boxes boxfish boxfishes boxful boxfuls boxhaul boxhauled boxhauling boxhauls boxhead boxholder boxiana boxier boxiest boxily boxiness boxinesses boxing boxings boxkeeper boxkeepers boxlike boxmaker boxmaking boxman boxroom boxrooms boxthorn boxthorns boxtop boxtops boxtree boxty boxwallah boxwallahs boxwood boxwoods boxwork boxy boy boyang boyar boyard boyardism boyardom boyards boyarism boyarisms boyars boyau boyaus boyaux boychick boychicks boychik boychiks boycott boycottage boycotted boycotter boycotters boycotting boycottism boycotts boydekyn boydom boyed boyer boyfriend boyfriends boyg boygs boyhood boyhoods boying boyish boyishly boyishness boyishnesses boyism boykinia boyla boylas boylike boylikeness boyne boyo boyology boyos boys boyscout boysenberries boysenberry boyship boytrose boyuna boza bozal bozine bozo bozos bozze bozzetti bozzetto bp bpi bpm bps bpt br bra braaivleis braaivleises braata brab brabagious brabant brabble brabbled brabblement brabblements brabbler brabblers brabbles brabbling brabblingly braca bracae braccae braccate braccia bracciale braccianite braccio brace braced bracelet braceleted bracelets bracer bracero braceros bracers bracery braces brach brache brachelytrous bracherer brachering braches brachet brachets brachia brachial brachialgia brachialis brachials brachiate brachiated brachiates brachiating brachiation brachiations brachiator brachiators brachiferous brachigerous brachinus brachiocephalic brachiocrural brachiocubital brachiocyllosis brachiofacial brachiofaciolingual brachioganoid brachiolaria brachiolarian brachiopod brachiopoda brachiopode brachiopodist brachiopodous brachiopods brachioradial brachioradialis brachiorrhachidian brachiorrheuma brachiosaur brachiosaurs brachiosaurus brachiosauruses brachiostrophosis brachiotomy brachistocephali brachistocephalic brachistocephalous brachistocephaly brachistochrone brachistochrones brachistochronic brachistochronous brachium brachman brachs brachtmema brachyaxes brachyaxis brachycardia brachycatalectic brachycephal brachycephales brachycephali brachycephalic brachycephalies brachycephalism brachycephalisms brachycephalization brachycephalize brachycephalous brachycephals brachycephaly brachyceral brachyceric brachycerous brachychiton brachychronic brachycnemic brachycome brachycranal brachycranial brachycranic brachycrany brachydactyl brachydactylia brachydactylias brachydactylic brachydactylies brachydactylism brachydactylous brachydactyly brachydiagonal brachydiagonals brachydodrome brachydodromous brachydomal brachydomatic brachydome brachydomes brachydont brachydontism brachyfacial brachyglossal brachygnathia brachygnathism brachygnathous brachygrapher brachygraphic brachygraphical brachygraphies brachygraphy brachyhieric brachylogies brachylogy brachymetropia brachymetropic brachyphalangia brachypinacoid brachypinacoidal brachypinakoid brachypinakoids brachypleural brachypnea brachypodine brachypodous brachyprism brachyprisms brachyprosopic brachypterism brachypterisms brachypterous brachypyramid brachyrrhinia brachysclereid brachyskelic brachysm brachystaphylic brachystegia brachystochrone brachystomatous brachystomous brachytactyly brachytic brachytmema brachytypous brachyura brachyural brachyuran brachyuranic brachyurans brachyure brachyurous bracing bracingly bracingness bracings braciola braciolas braciole bracioles brack brackebuschite bracked bracken brackened brackens bracker bracket bracketed bracketing brackets bracketted bracketwise bracking brackish brackishness brackishnesses brackmard bracks bracky braconid braconids braconniere bracozzo bract bractea bracteal bracteate bracteates bracted bracteiform bracteolate bracteole bracteoles bracteose bractless bractlet bractlets bracts brad bradawl bradawls bradded bradding bradenhead bradmaker bradoon bradoons brads bradsot bradyacousia bradyauxesis bradyauxetic bradyauxetically bradycardia bradycardias bradycardic bradycauma bradycinesia bradycrotic bradydactylia bradyesthesia bradyglossia bradykinesia bradykinesis bradykinetic bradykinin bradykinins bradylalia bradylexia bradylogia bradynosus bradypepsia bradypepsy bradypeptic bradypeptics bradyphagia bradyphasia bradyphemia bradyphrasia bradyphrenia bradypnea bradypnoea bradypod bradypode bradypodidae bradypodoid bradypus bradyseism bradyseismal bradyseismic bradyseismical bradyseismism bradyseisms bradyspermatism bradysphygmia bradystalsis bradyteleocinesia bradyteleokinesis bradytelic bradytely bradytocia bradytrophic bradyuria brae braeface braehead braeman braes braeside brag bragadisme bragadismes bragas brage brager bragg braggadocian braggadocianism braggadocio braggadocios braggardism braggart braggartism braggartisms braggartly braggartry braggarts braggat bragged bragger braggers braggery braggest bragget braggier braggiest bragging braggingly braggings braggish braggishly braggite braggle braggy bragi bragite bragless bragly bragozzo brags braguette bragwort brahm brahma brahmachari brahman brahmana brahmani brahmanis brahmanism brahmanist brahmanists brahmans brahmapootra brahmaputra brahmas brahmic brahmin brahminee brahminic brahminical brahminism brahminist brahminists brahmins brahmism brahms brahui braid braide braided braider braiders braidest braiding braidings braidism braids braies brail brailed brailing braille brailled brailler braillers brailles braillewriter braillewriters brailling braillist braillists brails brain brainache brainbox brainboxes braincap braincase braincases braincell braincells brainchild brainchildren braincraft braindead brained brainer brainfag brainge brainiac brainiacs brainier brainiest brainily braininess braininesses braining brainish brainless brainlessly brainlessness brainlessnesses brainlike brainpan brainpans brainpower brainpowers brains brainsick brainsickly brainsickness brainsicknesses brainstem brainstems brainstone brainstorm brainstormed brainstormer brainstormers brainstorming brainstormings brainstorms brainteaser brainteasers brainteasing brainward brainwash brainwashed brainwasher brainwashers brainwashes brainwashing brainwashings brainwashjng brainwater brainwave brainwaves brainwood brainwork brainworker brainworkers brainworks brainy braird brairded brairding brairds braireau brairo braise braised braises braising braize braizes brake brakeage brakeages braked brakehand brakehead brakeless brakeload brakemaker brakemaking brakeman brakemen braker brakeroot brakes brakesman brakesmen brakie brakier brakiest braking braky braless brama bramah bramantip bramble brambleberries brambleberry bramblebush brambled brambles bramblier brambliest brambling bramblings brambly brambrack brame brames bramidae bran brancard brancardier brancards branch branchage branched branchedness brancher brancheries branchers branchery branches branchful branchi branchia branchiae branchial branchiate branchicolous branchier branchiest branchiferous branchiform branchihyal branchiness branching branchings branchiobdella branchiobdellidae branchiocardiac branchiogenous branchiomere branchiomeric branchiomerism branchiopallial branchiopneustic branchiopod branchiopoda branchiopodan branchiopodous branchiopods branchiopoo branchiopulmonate branchiosaur branchiosaurian branchiostegal branchiostegan branchiostege branchiostegidae branchiostegite branchiostegous branchiostomid branchiostomidae branchiostomous branchireme branchiura branchiurous branchless branchlet branchlets branchlike branchline branchlines branchling branchman branchstand branchway branchy brand brandade brandades branded brandenburgh brandenburgs brander brandered brandering branders brandied brandies brandify branding brandiron brandise brandises brandish brandished brandisher brandishers brandishes brandishing brandisite brandle brandless brandling brandlings brandon brandreth brandreths brandrith brands brandsolder brandy brandyball brandying brandyman brandysnap brandywine branfulness branfulnesses brangle brangled branglement brangler brangles brangling branglings branial brank branked brankie brankier brankiest branking branks brankursine brankursines branky branle branles branned branner brannerite branners brannier branniest brannigan brannigans branniness branning branny brans bransle bransles bransolder brant branta brantail brantails brantcorn brantle brantles brantness brants branular braquemard brarow bras brasen brasenia brasero braseros brases brash brashed brasher brashes brashest brashier brashiest brashiness brashing brashly brashness brashnesses brashy brasier brasiers brasil brasilein brasilete brasiletto brasilia brasilin brasilins brasils brasque brasqued brasquing brass brassage brassages brassard brassards brassart brassarts brassate brassavola brassbound brassbounder brasse brassed brasser brasserie brasseries brasses brasset brassets brassey brasseys brassfounder brassfounders brassfounding brassfoundings brassia brassic brassica brassicaceae brassicaceous brassicas brassidic brassie brassier brassiere brassieres brassies brassiest brassily brassiness brassinesses brassing brassish brasslike brassware brasswares brasswork brassworker brassworks brassy brassylic brast brasting brasts brat bratchet bratchets bratina bratling bratlings bratpack bratpacker bratpackers brats bratstva bratstvo brattach brattice bratticed bratticer brattices bratticing bratticings brattie brattier brattiest brattiness brattinesses brattish brattished brattishes brattishing brattishings brattishness brattishnesses brattle brattled brattles brattling brattlings bratty bratwurst bratwursts braula brauna braunch braunched braunches braunching braunite braunites braunschweig braunschweiger braunschweigers brava bravade bravado bravadoed bravadoes bravadoing bravadoism bravados bravas brave braved bravehearted bravely braveness bravenesses braver braveries bravers bravery braves bravest bravi braving bravish bravissimo bravo bravoed bravoes bravoing bravoite bravos bravura bravuraish bravuras bravure braw brawer brawest brawl brawled brawler brawlers brawlie brawlier brawliest brawling brawlingly brawlings brawlis brawls brawlsome brawly brawlys brawn brawned brawnedness brawner brawnier brawniest brawnily brawniness brawninesses brawns brawny braws braxies braxy bray braye brayed brayer brayera brayerin brayers brayette braying brays braystone braza brazas braze brazed brazee brazeless brazen brazened brazenface brazenfaced brazenfacedly brazenfacedness brazening brazenly brazenness brazennesses brazenries brazenry brazens brazer brazera brazers brazes brazier braziers braziery brazil brazilein brazileins brazilette braziletto brazilian brazilianite brazilians brazilin brazilins brazilite brazils brazilwood brazilwoods brazing brazos brazzaville breach breached breacher breachers breaches breachful breaching breachy bread breadbasket breadbaskets breadberries breadberry breadboard breadboarded breadboarding breadboards breadbox breadboxes breadcrumb breadcrumbed breadcrumbing breadcrumbs breadearner breadearning breaded breaden breadfruit breadfruits breadhead breadheads breading breadless breadlessness breadline breadlines breadmaker breadmaking breadman breadness breadnut breadnuts breadroom breadrooms breadroot breadroots breads breadseller breadstick breadsticks breadstitch breadstuff breadstuffs breadth breadthen breadthless breadthriders breadths breadthways breadthwise breadwinner breadwinners breadwinning breadwinnings bready breaghe break breakability breakable breakableness breakablenesses breakables breakably breakage breakages breakaway breakaways breakax breakaxe breakback breakbeat breakbeats breakbone breakbones breakdance breakdanced breakdancer breakdancers breakdances breakdancing breakdancings breakdown breakdowns breaker breakerman breakermen breakers breakeven breakevens breakfast breakfasted breakfaster breakfasters breakfasting breakfastless breakfasts breakfront breakfronts breaking breakings breakless breaklist breakneck breakoff breakoffs breakout breakouts breakover breakpoint breakpoints breaks breaksaway breakshugh breakstone breakthrough breakthroughes breakthroughs breaktime breaktimes breakup breakups breakwater breakwaters breakweather breakwind bream breamed breaming breams breards breare breares breaskit breaskits breast breastband breastbeam breastbone breastbones breasted breaster breastfast breastfed breastfeed breastfeeding breastfeeds breastful breastheight breasthook breastie breasting breastless breastmark breastpiece breastpin breastpins breastplate breastplates breastplough breastploughs breastplow breastrail breastrails breastrope breasts breaststroke breaststroked breaststroker breaststrokers breaststrokes breaststroking breastsummer breastsummers breastweed breastwise breastwood breastwork breastworks breath breathabilities breathability breathable breathableness breathalyse breathalysed breathalyser breathalysers breathalyses breathalysing breathalyze breathalyzed breathalyzer breathalyzers breathalyzes breathalyzing breathe breatheableness breathed breather breathers breathes breathful breathier breathiest breathily breathiness breathinesses breathing breathingly breathings breathless breathlessly breathlessness breathlessnesses breaths breathseller breathtaking breathtakingly breathy breba breccia breccial breccias brecciate brecciated brecciates brecciating brecciation brecciations brecham brechams brechan brechans brecht brechtian brecia breck brecken bred bredbergite brede breded bredes bredestitch bredi breding bredstitch bree breech breechblock breechblocks breechcloth breechcloths breechclout breechclouts breeched breeches breechesflower breechesless breeching breechings breechless breechloader breechloaders breechloading breed breedable breedbate breeder breeders breediness breeding breedings breedling breeds breedy breek breekless breeks breekums breem breenge breenger breer breered breering breers brees breese breeses breeze breezed breezeful breezeless breezelike breezes breezeway breezeways breezier breeziest breezily breeziness breezinesses breezing breezy bregma bregmata bregmate bregmatic brehon brehonia brehons brehonship brei breird breis breislakite breithauptite breiz brekkle brekky brelan brelaw breloque breloques brember breme bremely bremeness bremsstrahlung bremsstrahlungs bren brended brendice brennage brenne brennes brenning brennschluss brens brent brenter brentest brents brephic brer brerd brere breres brers bresaola bresaolas breslau bressomer bressummer bressummers brest bret bretagne bretasche bretasches bretelle bretessa bretesse bretesses breth brethel brethren brethrenism breton bretons brett brettice bretticed brettices bretticing bretwalda breunnerite brev breva breve breves brevet brevetcies brevetcy brevete breveted breveting brevets brevetted brevetting breveté brevi breviaries breviary breviate breviates breviature brevicauda brevicaudate brevicipitid brevicipitidae brevicomis breviconic brevier breviers brevifoliate breviger brevilingual breviloquence breviloquent breviped brevipen brevipennate breviradiate brevirostral brevirostrate brevis brevit brevities brevity brevoortia brew brewage brewages brewed brewer breweries brewers brewership brewery brewhouse brewhouses brewing brewings brewis brewises brewmaster brewmasters brewpub brewpubs brews brewski brewskies brewskis brewst brewster brewsterite brewsters brey brezhnev brfscha brian briar briarberry briard briards briared briareus briarroot briarroots briars briarwood briarwoods briary bribability bribable bribe bribeability bribeable bribed bribee bribees bribegiver bribegiving bribeless bribemonger briber briberies bribers bribery bribes bribetaker bribetaking bribeworthy bribing bricabrac bricabracs brichen brichette brick brickbat brickbats brickbatted brickbatting brickclay brickclays brickcroft bricked brickel brickellia bricken bricker brickfield brickfielder brickfielders brickfields brickhood brickie brickier brickies brickiest bricking brickings brickish brickkiln brickkilns bricklay bricklayer bricklayers bricklaying bricklayings brickle brickleness brickles bricklike brickliner bricklining brickly brickmaker brickmakers brickmaking brickmakings brickmason brickred bricks brickset bricksetter brickshaped bricktimber bricktop brickwall brickwalls brickwise brickwork brickworks bricky brickyard brickyards bricolage bricolages bricole bricoles brid bridal bridale bridaler bridally bridals bridalty bridalwreath bride bridebed bridebowl bridecake bridecakes bridechamber bridecup brided bridegod bridegroom bridegrooms bridegroomship bridehead bridehood bridehouse brideknot bridelace brideless bridelike bridelope bridely bridemaid bridemaiden bridemaidens bridemaids bridemaidship brideman bridemen brides brideship bridesmaid bridesmaiding bridesmaids bridesman bridesmen bridestake bridewain bridewealth bridewealths brideweed bridewell bridewells bridewort bridgable bridge bridgeable bridgeables bridgeboard bridgeboards bridgebote bridgebuilder bridgebuilding bridged bridgehead bridgeheads bridgekeeper bridgeless bridgelike bridgemaker bridgemaking bridgeman bridgemaster bridgemen bridgeport bridgepot bridger bridges bridget bridgetin bridgetree bridgewall bridgeward bridgewards bridgewater bridgeway bridgework bridgeworks bridging bridgings bridie bridies briding bridle bridled bridleless bridleman bridler bridlers bridles bridleway bridleways bridlewise bridling bridoon bridoons brie brief briefcase briefcases briefed briefer briefers briefest briefing briefings briefless brieflessly brieflessness briefly briefness briefnesses briefs brier brierberry briered brierier brieriest brierpatch brierroot brierroots briers brierwood brierwoods briery bries brieve brig brigade brigaded brigades brigadier brigadiers brigadiership brigading brigalow brigalows brigand brigandage brigandages brigander brigandine brigandines brigandish brigandishly brigandism brigandisms brigandries brigandry brigands brigantine brigantinebrigantines brigantines brigatry brigbote brigetty bright brighten brightened brightener brighteners brightening brightens brighter brightest brighteyes brightish brightly brightness brightnesses brighton brights brightsmith brightsome brightsomeness brightwork brightworks brigid brigit brigous brigs brigsail brigue brigued briguer brigues briguing briguings brihaspati brike brill brillante briller brillest brilliance brilliances brilliancies brilliancy brilliandeer brilliant brillianted brilliantine brilliantined brilliantines brillianting brilliantly brilliantness brilliantnesses brilliants brilliantwise brilliolette brillo brillolette brillos brills brim brimborion brimborium brimful brimfull brimfullness brimfullnesses brimfully brimfulness brimfulnesses briming brimings brimless brimly brimmed brimmer brimmered brimmering brimmers brimmimg brimming brimmingly brims brimse brimstone brimstones brimstonewort brimstony brin brince brinded brindisi brindisis brindle brindled brindles brindlish brine brined brinehouse brineless brineman briner briners brines bring bringal bringall bringdown bringdowns bringed bringela bringer bringers bringeth bringing bringings brings bringsel brinie brinier brinies briniest brininess brininesses brining brinish brinishness brinjal brinjals brinjaree brinjarries brinjarry brinjaul brink brinkless brinkman brinkmanship brinkmanships brinkmen brinks brinksmanship brinksmanships brinny brins brinsell brinston briny brio brioche brioches briolet briolette briolettes brionies brionine briony brios brioschi brique briquet briquets briquette briquetted briquettes briquetting bris brisa brisance brisances brisant brisas brisbane briscola brise briseis brisement brises brisk brisked brisken briskened briskening briskens brisker briskest brisket briskets brisking briskish briskly briskness brisknesses brisks brisky brisling brislings brisque briss brisses brist bristle bristlebird bristlecone bristlecones bristled bristlegrass bristleless bristlelike bristlemouth bristlemouths bristler bristles bristletail bristletails bristlewort bristlier bristliest bristliness bristlinesses bristling bristly bristol bristols brisure brisures brisé brisés brit britain britannia britannias britannic britannica britany britchel britches britchka brite brith brither briths briticism british britisher britishers britishism briton britons brits britschka britschkas britska britskas britt brittanic brittany britten brittle brittlebush brittlebushes brittled brittlely brittleness brittlenesses brittler brittles brittlest brittlestar brittlestem brittlewood brittlewort brittling brittly brittonic britts britzka britzkas britzska britzskas briza brize brizes brizz brl bro broach broached broacher broachers broaches broaching broad broadacre broadax broadaxe broadaxes broadband broadbean broadbill broadbills broadbrim broadbrush broadcast broadcasted broadcaster broadcasters broadcasting broadcastings broadcasts broadcloth broadcloths broaden broadened broadener broadeners broadening broadenings broadens broader broadest broadgage broadhead broadhearted broadhorn broadish broadleaf broadleaved broadleaves broadling broadlings broadloom broadlooms broadly broadminded broadmindedly broadmindedness broadmindednesses broadmouth broadness broadnesses broadnosed broadpiece broadpieces broads broadscale broadshare broadsheet broadsheets broadside broadsided broadsider broadsides broadsiding broadspread broadsword broadswords broadtail broadtails broadthroat broadway broadways broadwife broadwise broadwives brob brobdingnag brobdingnagian brocade brocaded brocades brocading brocage brocages brocard brocardic brocards brocatel brocatelle brocatelles brocatello brocatels broccoli broccolis broch brocha brochan brochans brochant brochantite broche broched broches brochette brochettes brochidodromous broching brocho brochophony brochs brocht brochure brochures broché brochés brock brockage brockages brocked brocket brockets brockish brockit brockle brockram brockrams brocks brocoli brocolis brod brodded brodder brodding broddle brodee brodeglass brodekin brodekins brodequin broderer broderie brodiaea brodie brodkin brodkins brods brodyaga brodyagi broeboe brog brogan brogans brogged brogger broggerite brogging broggle brogh broghs brogs brogue brogued brogueful brogueish brogueneer broguer brogueries broguery brogues broguing broguish broid broiden broider broidered broiderer broiderers broideress broideries broidering broiderings broiders broidery broigne broil broiled broiler broilers broilery broiling broilingly broils brokage brokages broke broked broken brokenhearted brokenheartedly brokenheartedness brokenheartednesses brokenly brokenness brokennesses broker brokerage brokerages brokered brokeress brokeries brokering brokerings brokerly brokers brokership brokery brokes broking brokings broletti broletto brolga brolgas broll brollies brolly broma bromacetanilide bromacetate bromacetic bromacetone bromal bromalbumin bromals bromamide bromargyrite bromate bromated bromates bromating bromatium bromatology bromaurate bromauric brombenzamide brombenzene brombenzyl bromcamphor bromcresol brome bromegrass bromegrasses bromeigon bromeikon bromelain bromelains bromelia bromeliaceae bromeliaceous bromeliad bromeliads bromelias bromelin bromelins bromellite bromeosin bromes bromethyl bromethylene bromgelatin bromhidroses bromhidrosis bromhydrate bromhydric bromic bromid bromide bromides bromidic bromidically bromidroses bromidrosiphobia bromidrosis bromids bromin brominate brominated brominates brominating bromination brominations bromindigo bromine bromines brominise brominism brominisms brominize bromins bromiodide bromisation bromise bromised bromising bromism bromisms bromite bromization bromize bromized bromizer bromizes bromizing bromlite brommer brommers bromo bromoacetone bromoaurate bromoaurates bromoauric bromobenzene bromobenzyl bromocamphor bromochloromethane bromochlorophenol bromocresol bromocriptine bromocriptines bromocyanid bromocyanidation bromocyanide bromocyanogen bromodeoxyuridine bromoethylene bromoform bromoforms bromogelatin bromohydrate bromohydrin bromoil bromoiodid bromoiodide bromoiodism bromoiodized bromoketone bromol bromomania bromomenorrhea bromomethane bromometric bromometrical bromometrically bromometry bromonaphthalene bromophenol bromopicrin bromopikrin bromopnea bromoprotein bromos bromothymol bromouracil bromouracils bromous bromphenol brompicrin bromthymol bromuret bromus bromvoel bromvogel bromyrite bronc bronchadenitis bronchi bronchia bronchial bronchially bronchiarctia bronchiectases bronchiectasis bronchiectatic bronchiloquy bronchiocele bronchiocrisis bronchiogenic bronchiolar bronchiole bronchioles bronchioli bronchiolitis bronchiolus bronchiospasm bronchiostenosis bronchitic bronchitics bronchitis bronchitises bronchium broncho bronchoadenitis bronchoalveolar bronchoaspergillosis bronchoblennorrhea bronchobuster bronchocavernous bronchocele bronchocephalitis bronchoconstriction bronchoconstrictor bronchodilatation bronchodilator bronchodilators bronchoegophony bronchoesophagoscopy bronchogenic bronchographic bronchographies bronchography bronchohemorrhagia broncholemmitis broncholith broncholithiasis bronchomotor bronchomucormycosis bronchomycosis bronchopathy bronchophonic bronchophony bronchophthisis bronchoplasty bronchoplegia bronchopleurisy bronchopneumonia bronchopneumonias bronchopneumonic bronchopulmonary bronchorrhagia bronchorrhaphy bronchorrhea bronchos bronchoscope bronchoscopes bronchoscopic bronchoscopical bronchoscopically bronchoscopies bronchoscopist bronchoscopists bronchoscopy bronchospasm bronchospasms bronchospastic bronchostenosis bronchostomies bronchostomy bronchotetany bronchotome bronchotomist bronchotomy bronchotracheal bronchotyphoid bronchotyphus bronchovesicular bronchus bronco broncobuster broncobusters broncobusting broncobustings broncos broncs brond bronds brondyron brondyrons brongniardite bronk bronstrops bronteon brontephobia bronteum brontide brontides brontogram brontograph brontolite brontolith brontology brontometer brontophobia brontops brontosaur brontosauri brontosaurs brontosaurus brontosauruses brontoscopy brontothere bronx bronze bronzed bronzelike bronzen bronzer bronzers bronzes bronzesmith bronzewing bronzier bronziest bronzified bronzifies bronzify bronzifying bronzine bronzing bronzings bronzite bronzites bronzitite bronzy broo brooch brooched brooches brooching brood brooded brooder brooders broodier broodiest broodily broodiness broodinesses brooding broodingly broodless broodlet broodling broodmare broodmares broods broodsac broody brook brookable brooked brookflower brookie brookier brookies brookiest brooking brookite brookites brookless brooklet brooklets brooklike brooklime brooklimes brookline brooklyn brooks brookside brookweed brookweeds brooky brool brools broom broomball broomballer broomballers broomballs broombush broomcorn broomcorns broomed broomer broomier broomiest brooming broommaker broommaking broomrape broomrapes broomroot brooms broomshank broomsquire broomstaff broomstaffs broomstaves broomstick broomsticks broomstraw broomtail broomweed broomwood broomwort broomy broon broos broose brooses broozled broquery broquineer bros brose broses brosmius brosot brosse brosy brot brotan brotany brotchen brotel broth brothe brothel brotheler brothellike brothelry brothels brother brothered brotherhood brotherhoods brothering brotherless brotherlike brotherliness brotherlinesses brotherly brotherred brothers brothership brotherwort brothier brothiest broths brothy brotocrystal brott brotula brotulid brotulidae brotuliform brouette brough brougham broughams broughs brought broughta broughtas brouhaha brouhahas brouilla brouille brouillon broussonetia brouze brouzes brow browache browallia browallias browband browbands browbeat browbeaten browbeater browbeaters browbeating browbeatings browbeats browbound browd browden browed browet browis browless browman brown brownback browned browner brownest brownfield brownfields brownian brownie brownier brownies browniest browniness browning brownings brownish brownishness brownism brownly brownness brownnesses brownnose brownnosed brownnoser brownnosers brownnoses brownnosing brownout brownouts brownprint browns brownshirt brownshirts brownstone brownstones browntail browntop brownweed brownwort browny browpiece browpost browridge browridges brows browsability browsage browse browsed browser browsers browses browsick browsier browsiest browsing browsings browst browsts browsy browzer brr brrr bruang brubru brubu bruce brucella brucellae brucellas brucelloses brucellosis bruchid bruchidae bruchids bruchus brucia brucin brucina brucine brucines brucins brucite brucites bruckenthalia bruckle bruckled bruckleness bruet bruges brugh brughs brugmansia brugnatellite bruhaha bruhahas bruilzie bruilzies bruin bruins bruise bruised bruiser bruisers bruises bruisewort bruising bruisingly bruisings bruit bruited bruiter bruiters bruiting bruits bruja brujas brujeria brujo brujos bruke brula brulas brule brulee brules brulot brulots brulyie brulyiement brulyies brulzie brulzies brum brumaire brumal brumbee brumbie brumbies brumby brume brumes brummagem brummagems brummagen brummer brummers brummy brumous brumstane brumstone brunanburh brunch brunched bruncher brunchers brunches brunching brune brunei bruneian brunel brunelliaceous brunet brunetness brunets brunette brunetteness brunettes brunfelsia brung brunhild brunion brunissure brunizem brunizems brunneous brunnhilde brunonian brunswick brunt brunted brunting brunts bruscha bruschetta bruschettas bruschette bruscus brush brushabilities brushability brushable brushback brushbacks brushball brushbird brushbush brushcut brushed brusher brushers brushes brushet brushfire brushfires brushful brushier brushiest brushiness brushinesses brushing brushings brushite brushland brushlands brushless brushlessness brushlet brushlike brushmaker brushmaking brushman brushmen brushoff brushoffs brushpopper brushproof brushstroke brushstrokes brushup brushups brushwheel brushwheels brushwood brushwoods brushwork brushworks brushy brusk brusker bruskest bruskly bruskness brusknesses brusque brusquely brusqueness brusquenesses brusquer brusquerie brusqueries brusquest brussel brussels brust brusting brustle brustled brustling brusts brusure brut brutage brutal brutalisation brutalisations brutalise brutalised brutalises brutalising brutalism brutalisms brutalist brutalists brutalitarian brutalitarianism brutalities brutality brutalization brutalizations brutalize brutalized brutalizes brutalizing brutally brutalness brute bruted brutedom brutelike brutely bruteness brutenesses bruter bruters brutes brutification brutified brutifies brutify brutifying bruting brutings brutish brutishly brutishness brutishnesses brutism brutisms brutter brutus brux bruxed bruxes bruxing bruxism bruxisms bruyere bruzz brya bryaceae bryaceous bryales bryan bryanthus bryndza brynhild brynza bryogenin bryological bryologies bryologist bryologists bryology bryon bryonia bryonidin bryonies bryonin bryony bryophyllum bryophyllums bryophyta bryophyte bryophytes bryophytic bryopsida bryozoa bryozoan bryozoans bryozoon bryozoum brython brythonic bryum brûlé bs bsarch bsf bsh bskt bt btise btl btry btu bu bual buat buats buaya buayas buaze buazes bub buba bubal bubale bubales bubaline bubalis bubalises bubals bubalus bubas bubba bubbas bubber bubbies bubble bubblebow bubbled bubblegum bubblegums bubblehead bubbleheaded bubbleheads bubbleless bubblelike bubblement bubbler bubblers bubbles bubbletop bubbletops bubblier bubblies bubbliest bubbliness bubblinesses bubbling bubblingly bubblish bubbly bubby bubbybush bubinga bubingas bubo buboed buboes bubonalgia bubonic bubonocele bubonoceles bubonoceze bubos bubs bubu bubukle bubukles bubulcus bubus bucare bucayo bucca buccal buccally buccan buccaned buccaneer buccaneered buccaneering buccaneerings buccaneerish buccaneers buccanier buccaniered buccaniering buccaniers buccaning buccanned buccanning buccaro buccate bucchero buccheros buccin buccina buccinae buccinal buccinas buccinator buccinators buccinatory buccinidae bucciniform buccinoid buccinum buccobranchial buccocervical buccogingival buccolabial buccolingual bucconasal bucconidae buccopharyngeal buccula bucculae bucellas bucellases bucentaur bucentur bucephala bucephalus buceros bucerotidae buchanan bucharest buchite buchloe buchnerite buchonite buchu buchus buck buckaroo buckaroos buckass buckayro buckayros buckbean buckbeans buckberry buckboard buckboards buckbrush buckbush bucked buckeen buckeens bucker buckeroo buckeroos buckers bucket bucketed bucketeer bucketer bucketful bucketfull bucketfuls bucketing bucketings bucketmaker bucketmaking bucketman buckets bucketsful bucketshop buckety buckeye buckeyed buckeyes buckhorn buckhorns buckhound buckhounds buckie buckies bucking buckings buckish buckishly buckishness buckism buckjump buckjumped buckjumper buckjumping buckjumps buckland bucklandite buckle buckled buckleless buckler bucklered bucklering bucklers buckles buckleya buckling bucklings bucklum buckminsterfullerene buckminsterfullerenes bucko buckoes buckone buckos buckplate buckpot buckra buckrake buckrakes buckram buckramed buckraming buckrams buckras bucks bucksaw bucksaws buckshee buckshees buckshish buckshished buckshishes buckshishing buckshot buckshots buckskin buckskinned buckskins bucksom buckstall buckstay buckstone bucktail bucktails buckteeth buckthorn buckthorns bucktooth bucktoothed bucktooths bucku buckus buckwagon buckwash buckwasher buckwashing buckwheat buckwheater buckwheatlike buckwheats bucky buckyball buckyballs buckytube buckytubes bucoliast bucolic bucolical bucolically bucolicism bucolics bucrane bucrania bucranium bucrnia bucuresti bud buda budapest budbreak buddage buddah budded budder budders buddha buddhahood buddhas buddhi buddhism buddhist buddhistic buddhists buddie buddied buddier buddies buddiest budding buddings buddle buddled buddleia buddleias buddleman buddler buddles buddling buddy buddying bude budge budged budger budgeree budgereegah budgerigah budgerigar budgerigars budgero budgeros budgerow budgerows budgers budgerygah budges budget budgetary budgeted budgeteer budgeteers budgeter budgeters budgetful budgeting budgets budgie budgies budging budgy budless budlet budlike budling budmash budmashes budo budorcas budos buds budtime budwood budworm budworms budzart budzat buenas bueno buenos bufagin buff buffa buffability buffable buffalo buffaloback buffaloberries buffaloberry buffaloed buffaloes buffalofish buffalofishes buffaloing buffalos buffball buffbar buffcoat buffe buffed buffer buffered bufferin buffering bufferrer bufferrers buffers buffest buffet buffeted buffeter buffeters buffeting buffetings buffets buffi buffier buffiest buffin buffing buffings buffle bufflehead buffleheaded buffleheads bufflehorn buffo buffone buffont buffoon buffooneries buffoonery buffoonesque buffoonish buffoonishness buffoonism buffoons buffos buffs buffware buffy bufidin bufo bufonid bufonidae bufonite bufos bufotalin bufotenin bufotenine bufotenines bufotoxin bug bugaboo bugaboos bugala bugan buganda bugara bugbane bugbanes bugbear bugbeardom bugbearish bugbears bugbite bugdom bugeye bugeyed bugeyes bugfish buggan buggane bugganes buggans bugged bugger buggered buggeries buggering buggers buggery buggess buggier buggies buggiest buggin bugginess bugginesses bugging buggings buggins buggy buggyman buggymen bughead bughouse bughouses bught bugle bugled bugler buglers bugles buglet buglets bugleweed bugleweeds buglewort bugling bugloss buglosses bugologist bugology bugong bugongs bugout bugproof bugre bugs bugseed bugseeds bugsha bugshas bugweed bugwort bugworts buhl buhlbuhl buhls buhlwork buhlworks buhr buhrmill buhrs buhrstone buhrstones buibui buick buicks buik buiks build buildable builded builder builders building buildingless buildings buildress builds buildup buildups built builtin buirdlier buirdliest buirdly buisson buist buisted buisting buists bujumbura buke bukes bukh bukshee bukshees bukshi bukshis bul bulak bulb bulbaceous bulbar bulbed bulbel bulbels bulbier bulbiest bulbiferous bulbiform bulbil bulbilla bulbils bulbine bulbing bulbless bulblet bulblets bulblike bulbocapnin bulbocapnine bulbocavernosus bulbocavernous bulbomedullary bulbomembranous bulbonuclear bulborectal bulbose bulbosities bulbosity bulbospinal bulbotuber bulbourethral bulbous bulbously bulbousness bulbousnesses bulbs bulbul bulbule bulbuls bulbus bulby bulchin bulder bulgar bulgaria bulgarian bulgarians bulgars bulge bulged bulger bulgers bulges bulghar bulghars bulghur bulghurs bulgier bulgiest bulgine bulgines bulginess bulginesses bulging bulgingly bulgur bulgurs bulgy bulies bulimarexia bulimarexias bulimarexic bulimarexics bulimia bulimiac bulimias bulimic bulimics bulimies bulimiform bulimoid bulimus bulimuses bulimy bulk bulkage bulkages bulked bulker bulkers bulkhead bulkheaded bulkheading bulkheads bulkier bulkiest bulkily bulkin bulkiness bulkinesses bulking bulkings bulkish bulks bulky bull bulla bullace bullaces bullae bullalaria bullamacow bullan bullaria bullaries bullarium bullary bullas bullate bullated bullation bullback bullbaiting bullbaitings bullbar bullbars bullbat bullbats bullbeggar bullberry bullbird bullboat bullboats bullbrier bullcart bullcomber bulldog bulldogged bulldoggedness bulldogger bulldoggers bulldogging bulldoggings bulldoggish bulldoggishly bulldoggishness bulldoggy bulldogism bulldogs bulldoze bulldozed bulldozer bulldozers bulldozes bulldozing bulldust bulldusts bulldyke bulldykes bulled buller bullered bullering bullers bullescene bullet bulleted bullethead bulletheaded bulletheadedness bulletin bulletined bulleting bulletining bulletins bulletless bulletlike bulletmaker bulletmaking bulletproof bulletproofed bulletproofing bulletproofs bulletrie bulletries bullets bulletwood bullety bullfeast bullfice bullfight bullfighter bullfighters bullfighting bullfightings bullfights bullfinch bullfinches bullfist bullflower bullfoot bullfrog bullfrogs bullfronted bullgine bullgines bullhead bullheaded bullheadedly bullheadedness bullheadednesses bullheads bullhide bullhoof bullhorn bullhorns bullied bullier bullies bulliest bulliform bullimong bulling bullings bullion bullionism bullionist bullionists bullionless bullions bullish bullishly bullishness bullishnesses bullism bullit bullition bulllike bullmastiff bullmastiffs bullneck bullnecked bullnecks bullnose bullnoses bullnut bullock bullocked bullocker bullockies bullocking bullockman bullocks bullocky bullose bullous bullpates bullpen bullpens bullpoll bullpout bullpouts bullpup bullragged bullragging bullring bullrings bullroarer bullroarers bullrush bullrushes bulls bullseye bullshat bullshit bullshits bullshitted bullshitter bullshitters bullshitting bullshittings bullshot bullshots bullskin bullsnake bullsnakes bullsticker bullsucker bullswool bullterrier bullterriers bulltoad bullule bullweed bullweeds bullwhack bullwhacked bullwhacker bullwhacking bullwhacks bullwhip bullwhipped bullwhipping bullwhips bullwork bullwort bully bullyable bullyboy bullyboys bullydom bullyhuff bullying bullyingly bullyism bullyisms bullyrag bullyragged bullyragger bullyragging bullyrags bullyrock bullyrook bulnbuln bulnbulns bulnesia bulreedy bulrush bulrushes bulrushlike bulrushy bulse bulses bult bultell bulten bulter bultey bultong bultow bulwand bulwark bulwarked bulwarking bulwarks bum bumalo bumaloe bumaloti bumalotis bumaree bumbag bumbags bumbailiff bumbailiffs bumbailiffship bumbard bumbarge bumbass bumbaste bumbaze bumbazed bumbazes bumbazing bumbee bumbelo bumbershoot bumbershoots bumble bumblebee bumblebeefish bumblebeefishes bumblebees bumbleberry bumblebomb bumbled bumbledom bumblefoot bumblekite bumblepuppy bumbler bumblers bumbles bumbling bumblingly bumblingness bumblings bumbo bumboat bumboatman bumboatmen bumboats bumboatwoman bumbos bumclock bumelia bumelias bumf bumfeg bumfreezer bumfreezers bumfs bumfuzzle bumfuzzled bumfuzzles bumfuzzling bumicky bumkin bumkins bummack bummalo bummalos bummaloti bummalotis bummaree bummarees bummed bummel bummels bummer bummerish bummers bummery bummest bummie bummil bumming bummle bummled bummler bummles bummling bummock bummocks bump bumped bumpee bumper bumpered bumperette bumpering bumpers bumph bumphs bumpier bumpiest bumpily bumpiness bumpinesses bumping bumpingly bumpings bumpity bumpkin bumpkinet bumpkinish bumpkinly bumpkins bumpoff bumpologies bumpology bumps bumpsadaisy bumpsy bumptious bumptiously bumptiousness bumptiousnesses bumpy bums bumsucker bumsuckers bumsucking bumsuckings bumtrap bumwood bun buna bunas buncal bunce bunced bunces bunch bunchbacked bunchberries bunchberry bunched buncher bunches bunchflower bunchflowers bunchgrass bunchgrasses bunchier bunchiest bunchily bunchiness bunchinesses bunching bunchings bunchy buncing bunco buncoed buncoes buncoing buncombe buncombes buncos bund bunded bunder bundesbank bundh bundies bunding bundist bundists bundle bundled bundler bundlerooted bundlers bundles bundlet bundling bundlings bundobust bundobusts bundoc bundocks bundook bundooks bunds bundt bundts bundu bundus bundweed bundy bunemost bung bungaloid bungaloids bungalow bungalows bungarum bungarus bunged bungee bungees bunger bungerly bungey bungeys bungfu bungfull bunghole bungholes bungie bungies bunging bungle bungled bungler bunglers bungles bunglesome bungling bunglingly bunglings bungmaker bungo bungos bungs bungstarter bungtown bungwall bungy bunia bunias bunion bunions bunjara bunje bunjee bunjees bunjes bunjie bunjies bunjy bunk bunked bunker bunkerage bunkered bunkering bunkerman bunkermen bunkers bunkery bunkhouse bunkhouses bunkie bunking bunkload bunkmate bunkmates bunko bunkoed bunkoes bunkoing bunkos bunkroom bunkrooms bunks bunkum bunkums bunky bunn bunnell bunnia bunnias bunnies bunning bunns bunny bunnymouth bunodont bunolophodont bunoselenodont bunraku bunrakus buns bunsen bunsenite bunsens bunt buntal buntals bunted bunter bunters buntier buntiest buntine bunting buntings buntline buntlines bunton bunts bunty bunuelo bunya bunyah bunyan bunyas bunyip bunyips buonamani buonamano buoy buoyage buoyages buoyance buoyances buoyancies buoyancy buoyant buoyantly buoyantness buoyantnesses buoyed buoying buoys buphthalmia buphthalmic buphthalmos buphthalmum bupleurol buplever buplevers buppie buppies buppy buprestid buprestidan buprestids buprestis buqsha buqshas bur bura buran burans burao buras burb burbank burbankian burbark burberry burble burbled burbler burblers burbles burblier burbliest burbling burblings burbly burbolt burbot burbots burbs burbush burd burdalone burdash burdashes burden burdenable burdened burdener burdeners burdening burdenless burdenous burdens burdensome burdensomely burdensomeness burdie burdies burdock burdocks burdon burdonless burds bure bureau bureaucracies bureaucracy bureaucrat bureaucratese bureaucrateses bureaucratic bureaucratical bureaucratically bureaucratisation bureaucratisations bureaucratise bureaucratised bureaucratises bureaucratising bureaucratism bureaucratisms bureaucratist bureaucratists bureaucratization bureaucratizations bureaucratize bureaucratized bureaucratizes bureaucratizing bureaucrats bureaus bureaux burel burela burelage burele burelle burelly burely buret burets burette burettes burez burfish burg burga burgage burgages burgality burgall burgamot burganet burganets burgau burgaudine burge burgee burgees burgensic burgeon burgeoned burgeoning burgeons burger burgers burgess burgessdom burgesses burggrave burgh burghal burghalpenny burghbote burghemot burgher burgherage burgherdom burgheress burgherhood burgheristh burghermaster burghers burghership burghmaster burghmoot burghmote burghs burghul burghuls burglar burglared burglaries burglaring burglarious burglariously burglarise burglarised burglarises burglarising burglarize burglarized burglarizes burglarizing burglarproof burglarproofed burglarproofing burglarproofs burglars burglary burgle burgled burgles burgling burgomaster burgomasters burgomastership burgonet burgonets burgoo burgoos burgout burgouts burgoyne burgrass burgrave burgraves burgraviate burgs burgul burgullian burgundian burgundies burgundy burgus burgware burgwere burh burhead burhel burhels burhinidae burhinus burhmoot buri buriable burial burials burian buried buriels burier buriers buries burin burinist burinists burins burion buriti buritis burka burkas burke burkei burker burkers burkes burkha burkite burkites burkundauze burkundaz burl burlace burladero burladeros burlap burlaps burlecue burled burler burlers burlesk burlesks burlesque burlesqued burlesquely burlesquer burlesquers burlesques burlesquing burlet burletta burlettas burley burleycue burleys burlier burlies burliest burlily burliness burlinesses burling burlington burls burly burma burmannia burmanniaceae burmanniaceous burmeisteria burmese burmite burn burnable burnables burnbeat burned burner burners burnet burnetize burnets burnettise burnettised burnettises burnettising burnettize burnettized burnettizes burnettizing burnewin burnfire burnie burniebee burnies burning burningly burnings burnish burnishable burnished burnisher burnishers burnishes burnishing burnishings burnishment burnishments burnoose burnoosed burnooses burnous burnouse burnoused burnouses burnout burnouts burnover burns burnside burnsides burnt burntly burntness burntweed burnup burnut burnweed burnwood burny buro buroo buroos burp burped burping burps burqa burqas burr burrah burramundi burramundis burratine burrawang burrawangs burrawong burrbark burred burree burrel burrell burrells burrels burrer burrers burrfish burrfishes burrgrailer burrhead burrheaded burrheadedness burrhel burrhels burrier burriest burring burrio burrish burrito burritos burrknot burrlike burro burrobrush burrock burros burroughs burrow burrowed burroweed burrower burrowers burrowing burrows burrowstown burrowstowns burrs burrstone burrstones burry burs bursa bursae bursal bursar bursarial bursaries bursars bursarship bursarships bursary bursas bursate bursati bursattee bursautee bursch burschen burse bursectomy burseed burseeds bursera burseraceae burseraceous burses bursicle bursicon bursicons bursiculate bursiform bursitis bursitises bursitos burst bursted bursten burster bursters burstiness bursting burstone burstones bursts burstwort bursty bursula burt burthen burthened burthening burthenman burthens burthensome burton burtonization burtonize burtons burtree burucha burundi burundian burundians burunduki burweed burweeds bury burying burys bus busbar busbars busbies busboy busboys busby buscarl buscarle bused busera buses busgirl busgirls bush bushbabies bushbaby bushbashing bushbeater bushbeck bushbodies bushbody bushboy bushbuck bushbucks bushcraft bushcrafts bushed bushel bushelage bushelbasket bushelbaskets busheled busheler bushelers bushelful bushelfuls busheling bushelings bushelled busheller bushellers bushelling bushellings bushelman bushelmen bushels bushelwoman bushelwomen busher bushers bushes bushet bushfighter bushfighting bushfire bushfires bushful bushgoat bushgoats bushgrass bushhammer bushhammers bushi bushido bushidos bushie bushier bushies bushiest bushily bushiness bushinesses bushing bushings bushland bushlands bushless bushlet bushlike bushmaker bushmaking bushman bushmanship bushmanships bushmaster bushmasters bushmen bushment bushpig bushpigs bushranger bushrangers bushranging bushrangings bushrope bushtit bushtits bushveld bushvelds bushwa bushwack bushwah bushwahs bushwalk bushwalked bushwalker bushwalkers bushwalking bushwalkings bushwalks bushwas bushwhack bushwhacked bushwhacker bushwhackers bushwhacking bushwhackings bushwhacks bushwife bushwoman bushwomen bushwood bushy busied busier busies busiest busily busine business businesses businessese businesslike businesslikeness businessman businessmen businesspeople businessperson businesspersons businesswoman businesswomen busing busings busk busked busker buskers busket buskets buskin buskined busking buskings buskins buskle busks busky busload busloads busman busmen buss bussed busser busses bussing bussings bussock bussu bussus bussy bust bustard bustards busted bustee bustees buster busters busthead busti bustian bustic busticate bustics bustier bustiers bustiest busting bustings bustle bustled bustler bustlers bustles bustline bustlines bustling bustlingly busto busts busty busulfan busulfans busuuti busway busy busybodied busybodies busybody busybodying busybodyish busybodyism busybodyness busyhead busying busyish busyness busynesses busywork busyworks but butacaine butadiene butadienes butadiyne butanal butanals butane butanes butanoic butanol butanolid butanolide butanols butanone butanones butat butazolidin butch butcha butcher butcherbird butcherbirds butcherbroom butcherdom butchered butcherer butcherers butcheress butcheries butchering butcherings butcherless butcherliness butcherly butcherous butchers butchery butches butchest butching butchings bute butea butein butene butenes butenyl buteo buteonine buteos butes butic butin butine butle butled butler butlerage butlerages butlerdom butlered butleress butleries butlering butlerism butlerlike butlers butlership butlerships butlery butles butling butment butments buto butoh butohs butolism butomaceous butos butoxy butoxyl buts butsu butsudan butt buttal buttals butte butted butter butteraceous butterback butterball butterballs butterbean butterbill butterbird butterbough butterbox butterbump butterbur butterburr butterburs butterbush buttercrunch buttercup buttercups butterdock butterdocks buttered butterer butterers butterfat butterfats butterfingered butterfingers butterfish butterfishes butterflied butterflies butterflower butterfly butterflyer butterflyers butterflyfish butterflyfishes butterflying butterflylike butterhead butterier butteries butteriest butterine butterines butteriness butterinesses buttering butteris butterjags butterless butterlike buttermaker buttermaking butterman buttermilk buttermilks buttermonger buttermouth butternose butternut butternuts butterpaste butterroot butters butterscotch butterscotches butterweed butterweeds butterwife butterwoman butterworker butterwort butterworts butterwright buttery butteryfingered buttes buttgenbachite butthead buttheads butthole buttholes butties butting buttinski buttinskies buttinskis buttinsky buttinskys buttle buttled buttles buttling buttock buttocked buttocker buttocking buttocks button buttonball buttonballs buttonbur buttonbush buttonbushes buttoned buttoner buttoners buttonheld buttonhold buttonholder buttonholding buttonholds buttonhole buttonholed buttonholer buttonholers buttonholes buttonholing buttonhook buttonhooked buttonhooking buttonhooks buttoning buttonless buttonlike buttonmold buttonmolds buttonmould buttonquail buttons buttonses buttonweed buttonwood buttonwoods buttony buttress buttressed buttresses buttressing buttressless buttresslike butts buttstock buttstocks buttstrap buttstrapped buttstrapping buttwoman buttwomen buttwood butty buttyman buttymen butut bututs butyl butylamine butylate butylated butylates butylating butylation butylations butylene butylenes butylic butyls butyne butyr butyraceous butyral butyraldehyde butyraldehydes butyrals butyrate butyrates butyric butyrically butyrin butyrinase butyrins butyrochloral butyrolactone butyrometer butyrometric butyrone butyrophenone butyrophenones butyrous butyrousness butyryl butyryls buvette buxaceae buxaceous buxeous buxerries buxerry buxine buxom buxomer buxomest buxomly buxomness buxomnesses buxus buy buyable buyables buyback buybacks buyer buyers buyi buying buyoff buyoffs buyout buyouts buys buz buzane buzuki buzukia buzukis buzylene buzz buzzard buzzardlike buzzardly buzzards buzzbomb buzzcut buzzcuts buzzed buzzer buzzerphone buzzers buzzes buzzgloak buzzier buzzies buzziest buzzing buzzingly buzzings buzzle buzzsaw buzzwig buzzwigs buzzword buzzwords buzzy bv bvt bw bwana bwanas bwazi bwazis bwr bx bxs by byard bycatch bycatches bycoket bycokets bye byee byegaein byelarus byelaw byelaws byelorussia byelorussian byelorussians byeman byepath byerite byerlite byes byestreet byeworker byeworkman bygane byganging bygo bygoing bygone bygones byhand byke byked bykes byking byland bylander bylanders bylaw bylawman bylaws bylina byline bylined byliner byliners bylines bylining byliny bylive byname bynames bynedestin bynempt bynin byon byordinar byordinary byous byously byp bypass bypassed bypasser bypassers bypasses bypassing bypast bypath bypaths byplace byplaces byplay byplays byproduct byproducts byre byreman byremen byres byrewards byrewoman byrewomen byrl byrlady byrlakin byrlaw byrlawman byrlawmen byrlaws byrled byrling byrls byrnie byrnies byroad byroads byron byronic byroom byrooms byrri byrrus byrthynsak bys bysen bysmalith byspell byss byssaceous byssal byssi byssiferous byssin byssine byssinoses byssinosis byssogenous byssoid byssolite byssus byssuses bystander bystanders bystreet bystreets bytalk bytalks byte bytes byth bytime bytownite bytownites bytownitite bywalk bywalker bywalking byward byway byways bywoner bywoners byword bywords bywork byworks byzant byzantian byzantine byzantinism byzantium byzants bz béarnaise béarnaises bécasse bécasses bénitier bénitiers béton bétons bêtise bêtises c ca caaba caam caama caaming caapeba caatinga caatingas cab caba cabaa cabaan caback cabaho cabal cabala cabalas cabalassou cabaletta cabalettas cabalette cabalic cabalism cabalisms cabalist cabalistic cabalistical cabalistically cabalists caball caballed caballer caballeria caballero caballeros caballers caballine caballing caballo caballos cabals caban cabana cabanas cabane cabaret cabaretier cabarets cabas cabasa cabases cabasset cabassou cabassous cabbage cabbaged cabbagehead cabbageheaded cabbageheadedness cabbagelike cabbages cabbagetown cabbagetowns cabbagewood cabbageworm cabbageworms cabbaging cabbagy cabbala cabbalah cabbalahs cabbalas cabbalism cabbalisms cabbalist cabbalistic cabbalistical cabbalistically cabbalists cabbalize cabbed cabber cabbie cabbies cabbing cabble cabbled cabbler cabbling cabby cabda cabdriver cabdrivers cabdriving cabecera cabecudo cabeliau cabellerote caber cabernet cabernets cabers cabestro cabestros cabezon cabezone cabezones cabezons cabful cabiai cabildo cabildos cabilliau cabin cabined cabinet cabineted cabineting cabinetmake cabinetmaker cabinetmakers cabinetmaking cabinetmakings cabinetries cabinetry cabinets cabinetted cabinetwork cabinetworker cabinetworking cabinetworks cabining cabinlike cabins cabio cable cablecast cablecasted cablecaster cablecasters cablecasting cablecasts cabled cablegram cablegrams cablelaid cableless cablelike cableman cablemen cabler cablers cables cablese cablet cablets cablevision cablevisions cableway cableways cabling cablings cablish cabman cabmen cabob cabobbed cabobbing cabobs caboc caboceer caboceers caboche caboched cabochon cabochons cabocle caboclo caboclos cabocs cabomba cabombaceae cabombas caboodle caboodles cabook caboose cabooses caboshed cabossed cabot cabotage cabotages cabotin cabotinage cabots cabouca cabre cabree cabrerite cabresta cabrestas cabresto cabrestos cabret cabretta cabrettas cabreuva cabrie cabries cabrilla cabrillas cabriole cabrioles cabriolet cabriolets cabrit cabrito cabrits cabré cabs cabstand cabstands cabuja cabulla cabureiba caburn cabuya cabuyas caca cacaesthesia cacafogo cacafogos cacafuego cacafuegos cacafugo cacajao cacalia cacam cacanapa cacanthrax cacao cacaos cacas cacatua cacaxte caccagogue caccia caccias cacciatora cacciatore cace cacei cacemphaton cacesthesia cacesthesis cachaca cachacas cachaemia cachaemias cachaemic cachalot cachalote cachalots cachaza cache cachectic cachectical cached cachemia cachemic cachepot cachepots caches cachespell cachet cacheted cachetic cacheting cachets cachexia cachexias cachexic cachexies cachexy cachi cachibou cachila cachimailla cachina cachinate caching cachinnate cachinnated cachinnates cachinnating cachinnation cachinnations cachinnator cachinnators cachinnatory cachoeira cacholong cacholongs cacholot cacholots cachot cachou cachous cachrys cachua cachucha cachuchas cachucho cachunde caci cacicus cacidrosis cacimbo cacimbos caciocavallo cacique caciques caciqueship caciquism caciquisms cack cacked cackel cackerel cacking cackle cackled cackler cacklers cackles cackling cackly cacks cacoaethes cacocholia cacochroia cacochylia cacochymia cacochymic cacochymical cacochymy cacocnemia cacodaemon cacodaemoniac cacodaemonial cacodaemonic cacodaemons cacodemon cacodemonia cacodemoniac cacodemonial cacodemonic cacodemonize cacodemonomania cacodemons cacodontia cacodorous cacodoxian cacodoxical cacodoxies cacodoxy cacodyl cacodylate cacodylic cacodyls cacoeconomy cacoenthes cacoepies cacoepist cacoepistic cacoepy cacoethes cacoethic cacogalactia cacogastric cacogenesis cacogenic cacogenics cacogeusia cacoglossia cacographer cacographers cacographic cacographical cacographies cacography cacolet cacolets cacolike cacological cacologies cacology cacomagician cacomelia cacomistle cacomistles cacomixl cacomixle cacomixles cacomixls cacomorphia cacomorphosis caconychia caconym caconymic caconymies caconyms caconymy cacoon cacoons cacopathy cacopharyngia cacophonia cacophonic cacophonical cacophonically cacophonies cacophonious cacophonist cacophonists cacophonize cacophonous cacophonously cacophony cacophthalmia cacoplasia cacoplastic cacoproctia cacorhythmic cacorrhachis cacorrhinia cacosmia cacospermia cacosplanchnia cacostomia cacothansia cacothelin cacotheline cacothes cacothesis cacothymia cacotopia cacotopian cacotopias cacotrichia cacotrophia cacotrophic cacotrophies cacotrophy cacotype cacoxene cacoxenite cacozeal cacozealous cacozyme cacqueteuse cacqueteuses cactaceae cactaceous cactal cacti cactiform cactoid cactus cactuses cactuslike cacumen cacumina cacuminal cacuminals cacuminate cacumination cacuminous cacur cad cadalene cadamba cadaster cadasters cadastral cadastrally cadastration cadastre cadastres cadaver cadaveric cadaverin cadaverine cadaverines cadaverise cadaverize cadaverous cadaverously cadaverousness cadaverousnesses cadavers cadbait cadbit cadbote cadded caddesse caddice caddiced caddicefly caddices caddie caddied caddies caddiing cadding caddis caddised caddises caddisflies caddisfly caddish caddishly caddishness caddishnesses caddisworm caddisworms caddle caddo caddoan caddow caddy caddying caddyss caddysses cade cadeau cadeaux cadee cadees cadelle cadelles cadence cadenced cadences cadencies cadencing cadency cadenette cadent cadential cadenza cadenzas cader caderas cadere cades cadesse cadet cadetcy cadets cadetship cadetships cadette cadettes cadew cadge cadged cadger cadgers cadges cadgier cadgiest cadgily cadginess cadging cadgy cadi cadie cadies cadilesker cadillac cadillacs cadillo cadinene cadis cadish cadism cadiueio cadiz cadjan cadlock cadmean cadmia cadmic cadmide cadmiferous cadmium cadmiumise cadmiumize cadmiums cadmus cados cadouk cadra cadrans cadranses cadre cadres cads cadua caduac caduacs caduca caducary caducean caducecaducean caducecei caducei caduceus caduciaries caduciary caducibranch caducibranchiate caducicorn caducities caducity caducous caduke cadus cadweed cadwell cady cadying caeca caecal caecally caecectomy caecias caeciform caecilian caecilians caeciliidae caecitis caecitises caecity caecocolic caecostomy caecotomy caecum caelometer caelum caenogeneses caenogenesis caenogenetic caenogenetically caenolestes caenolestidae caenostylic caenostyly caenozoic caeoma caeomas caeremoniarius caerphillies caerphilly caerule caerulean caesalpinia caesalpiniaceae caesalpiniaceous caesalpinioideae caesar caesarean caesareans caesarian caesarians caesarism caesarists caesaropapacy caesaropapism caesaropapisms caesaropapist caesaropopism caesars caese caesious caesium caesiums caespitose caespitosely caestus caestuses caesura caesurae caesural caesuras caesuric caf cafa cafard cafardise cafards cafas cafe cafeneh cafenet cafes cafetal cafeteria cafeterias cafetiere cafetieres cafetoria cafetorium cafetoriums caff caffa caffeate caffeic caffein caffeina caffeinated caffeine caffeines caffeinic caffeinism caffeinisms caffeins caffeism caffeisms caffeol caffeone caffer caffetannic caffetannin caffiaceous caffila caffilas caffiso caffle caffled caffling caffoline caffoy caffre caffs cafh cafila cafilas cafiz cafoy caftan caftaned caftans cafuso café cafés cag cagayan cagayans cage cagebird cagebirds caged cageful cagefuls cageless cagelike cageling cagelings cageman cageot cager cagers cages cagester cagework cageworks cagey cageyly cageyness cageynesses caggy cagier cagiest cagily caginess caginesses caging cagit cagmag cagot cagots cagoul cagoule cagoules cagouls cagui cagy cagyness cagynesses cahier cahiers cahill cahincic cahita cahiz cahoot cahoots cahot cahow cahows cahuita cahuy cai caiarara caic caickle caid caids cailcedra caillach caillachs caille cailleach cailleachs cailles cailliach cailliachs caimac caimacam caimacams caimacs caimakam caiman caimans caimitillo caimito cain caingin cainogenesis cainozoic cains caique caiquejee caiques cair caird cairds cairene cairina cairn cairned cairngorm cairngorms cairngorum cairns cairny cairo caisse caisson caissoned caissons caitif caitiff caitiffs caitifty caitive caitives caixinha cajan cajang cajanus cajaput cajaputs cajava cajeput cajeputol cajeputole cajeputs cajeta cajole cajoled cajolement cajolements cajoler cajoleries cajolers cajolery cajoles cajoling cajolingly cajon cajones cajou cajuela cajun cajuns cajuput cajuputene cajuputol cajuputs cakchiquel cake cakebox cakebread caked cakehouse cakemaker cakemaking caker cakes cakette cakewalk cakewalked cakewalker cakewalkers cakewalking cakewalks cakey cakier cakiest cakile cakiness cakinesses caking cakings cakra cakras cakravartin caky cal calaba calabar calabash calabashes calabaza calabazilla calaber calaboose calabooses calabozo calabrasella calabrese calabreses calabria calabrian calabrians calabur calabura calache calaches calade caladenia caladium caladiums calahan calais calaite calaloo calaloos calalu calalus calamagrostis calamanco calamancoes calamancos calamander calamanders calamansi calamar calamari calamariaceous calamarian calamaries calamarioid calamaris calamarmar calamaroid calamars calamary calambac calambour calami calamiferious calamiferous calamiform calaminaris calaminary calamine calamined calamines calamining calamint calamintha calamints calamistral calamistrate calamistrum calamite calamitean calamites calamities calamitoid calamitous calamitously calamitousness calamitousnesses calamity calamondin calamondins calamumi calamus calamuses calan calander calando calandre calandria calandrias calandrinia calangay calanid calanque calantas calanthe calanthes calapite calapitte calapooya calapuya calascione calash calashes calastic calathea calatheas calathi calathian calathidia calathidium calathiform calathisci calathiscus calathos calaththi calathus calavance calavances calaverite calaverites calbroben calc calcaemia calcaire calcanea calcaneal calcanean calcanei calcaneoastragalar calcaneoastragaloid calcaneocuboid calcaneofibular calcaneonavicular calcaneoplantar calcaneoscaphoid calcaneotibial calcaneum calcaneums calcaneus calcannea calcannei calcar calcarate calcarated calcareoargillaceous calcareobituminous calcareocorneous calcareosiliceous calcareosulphurous calcareous calcareously calcareousness calcareousnesses calcaria calcariferous calcariform calcarine calcarium calcars calcate calcavella calceamentum calceamentums calceate calceated calceates calceating calced calcedon calcedonies calcedonio calcedonios calcedony calceiform calcemia calceolaria calceolarias calceolate calceolately calces calceus calchas calche calci calcic calciclase calcicole calcicoles calcicolous calcicosis calciferol calciferols calciferous calcific calcification calcifications calcified calcifies calciform calcifugal calcifuge calcifuges calcifugous calcify calcifying calcigenous calcigerous calcimeter calcimine calcimined calciminer calcimines calcimining calcinable calcinate calcination calcinations calcinator calcinatory calcine calcined calciner calcines calcining calcinize calcino calcinoses calcinosis calciobiotite calciocarnotite calcioferrite calcioscheelite calciovolborthite calcipexy calciphile calciphilia calciphilic calciphilous calciphobe calciphobic calciphobous calciphylactic calciphylactically calciphylaxis calciphyre calciprivic calcisponge calcite calcites calcitestaceous calcitic calcitonin calcitonins calcitrant calcitrate calcitration calcitreation calcitriol calcitriols calcium calciums calcivorous calcographer calcographic calcography calcomp calcrete calcretes calcsinter calcspar calcspars calctufa calctufas calctuff calctuffs calculabilities calculability calculable calculableness calculably calcular calculary calculate calculated calculatedly calculatedness calculatednesses calculates calculating calculatingly calculation calculational calculations calculative calculator calculators calculatory calculer calculi calculiform calculifrage calculist calculose calculous calculus calculuses calcutta calcuttan caldadaria caldaria caldarium calden caldera calderas calderium calderon caldron caldrons calean calebite calebites caleche caleches caledonian caledonite calef calefacient calefacients calefaction calefactions calefactive calefactor calefactories calefactors calefactory calefied calefies calefy calefying calelectric calelectrical calelectricity calembour calembours calenda calendal calendar calendared calendarer calendarers calendarial calendarian calendaric calendaring calendarisation calendarisations calendarise calendarised calendarises calendarising calendarist calendarists calendarization calendarizations calendarize calendarized calendarizes calendarizing calendars calendas calender calendered calenderer calenderers calendering calenderings calenders calendrer calendrers calendric calendrical calendries calendry calends calendula calendulas calendulin calentural calenture calentured calentures calenturing calenturish calenturist calepin calesa calesas calescence calescences calescent calesero calesin calf calfbound calfdozer calfdozers calfhood calfish calfkill calfless calflick calflicks calflike calfling calfret calfs calfskin calfskins calgary calgon caliatour caliatours caliban caliber calibered calibers calibogus calibrate calibrated calibrater calibrates calibrating calibration calibrations calibrator calibrators calibre calibred calibres caliburn calic calicate calices caliche caliches caliciform calicle calicles calico calicoback calicobacks calicoed calicoes calicos calicular caliculate caliculi caliculus calid calidities calidity calidris caliduct calif califate califates califont califonts california californian californiana californians californicus californite californites californium californiums califs caliga caligate caligated caligation caliginosities caliginosity caliginous caliginously caliginousness caligo caligoes caligos caligrapher caligraphy caligulism calili calima calimanco calimancos calimas calin calina calinda calindas caline calinut caliological caliologies caliologist caliology calipash calipashes calipee calipees caliper calipered caliperer calipering calipers calipeva caliph caliphal caliphate caliphates caliphs caliphship calippic calisaya calisayas calistheneum calisthenic calisthenical calisthenics caliver calivers calix calixtin calk calkage calked calker calkers calkin calking calkings calkins calks call calla callable callaesthetic callainite callais callaises callaloo callaloos callan callans callant callants callas callat callate callathump callback callbacks callboard callboards callboy callboys called caller callers calles callet callets calli calliandra calliature calliatures callicebus callid callidities callidity callidness calligram calligramme calligrammes calligrams calligraph calligrapha calligrapher calligraphers calligraphic calligraphical calligraphically calligraphies calligraphist calligraphists calligraphy callimorpha callinectes calling callings callionymidae calliope calliopean calliopes calliophis calliophone calliopsis calliopsises callipash callipee callipees calliper callipered calliperer callipering callipers calliphora calliphorid calliphoridae calliphorine callippic callipygean callipygian callipygous callirhoe callisaurus callisection callisteia callistephus callisthenic callisthenics callisto callithricidae callithrix callithump callithumpian callithumps callitrichaceae callitrichaceous callitriche callitris callitype callityped callityping callo calloo callop callophis callorhinus callosal callose calloses callosities callosity callosomarginal callosum callot callous calloused callouses callousing callously callousness callousnesses callout callow callower callowest callowly callowman callowness callownesses callows calls callum calluna callunas callus callused calluses callusing calm calmant calmants calmative calmatives calmato calmecac calmed calmer calmest calmier calmierer calmiest calming calmingly calmly calmness calmnesses calmodulin calmodulins calms calmstone calmstones calmy calo calocarpum calocedrus calochortus calodaemon calodemon calodemonial calogram calography calomba calombigas calombo calomel calomels calomorphic calool calophyllum calopogon calor caloreceptor calorescence calorescences calorescent caloric calorically caloricities caloricity calorics caloriduct calorie calories calorifacient calorific calorifical calorifically calorification calorifications calorifics calorifier calorifiers calorify calorigenic calorimeter calorimeters calorimetric calorimetrical calorimetrically calorimetries calorimetry calorimotor caloris calorisator calorist calorists calorize calorized calorizer calorizes calorizing calory calos calosoma calostomataceae calotermitid calotin calotte calottes calotype calotypes calotypic calotypist calotypists caloyer caloyers calp calpa calpac calpack calpacked calpacks calpacs calpain calpains calpas calpe calpolli calps calpul calpulli calque calqued calques calquing cals calsouns caltha calthas calthrop calthrops caltrap caltraps caltrop caltrops calumba calumbas calumet calumets calumnia calumniate calumniated calumniates calumniating calumniation calumniations calumniative calumniator calumniators calumniatory calumnies calumnious calumniously calumniousness calumny caluptra calusar calutron calutrons calvados calvadoses calvaire calvaria calvarial calvarias calvaries calvarium calvariums calvary calvatia calve calved calver calvered calvering calvers calves calvin calving calvinian calvinism calvinist calvinistic calvinistical calvinists calvinize calvish calvities calvity calvous calvus calx calxes calybite calycanth calycanthaceae calycanthaceous calycanthemies calycanthemous calycanthemy calycanthin calycanthine calycanthus calycanthuses calycate calyceal calyceraceous calyces calyciferous calycifloral calyciflorate calyciflorous calyciform calycinal calycine calycle calycled calycles calycli calycoid calycoideous calycophoran calycophyllum calycozoan calycozoic calycozoon calycular calyculate calyculated calycule calycules calyculi calyculus calymma calyon calyphyomy calypsist calypso calypsoes calypsonian calypsonians calypsos calypter calyptera calypteras calypters calyptoblastic calyptra calyptras calyptrate calyptriform calyptrimorphous calyptro calyptrogen calyptrogens calystegia calyx calyxes calzada calzone calzoneras calzones calzoni calzoons cam camaca camacey camachile camagon camaieu camaieux camail camaile camailed camails camaka camaldolite camalig camalote caman camanachd camanachds camanay camanchaca camans camansi camara camarada camarade camaraderie camaraderies camarasaurus camarera camarilla camarillas camarin camarine camaron camarons camas camases camash camashes camass camasses camassia camata camatina camauro camauros camay camaïeu camaïeux camb cambarus cambaye camber cambered cambering camberings cambers cambia cambial cambiata cambibia cambiform cambio cambiogenetic cambion cambism cambisms cambist cambistries cambistry cambists cambium cambiums camblet cambodia cambodian cambodians camboge camboges cambogia cambogias camboose cambouis cambrel cambrels cambresine cambrian cambric cambricleaf cambrics cambridge cambuca camcorder camcorders camden came cameist camel camelback camelbacks cameleer cameleers cameleon cameleons cameleopard cameleopards camelhair camelhairs camelia camelias camelid camelidae camelids camelina cameline camelines camelion camelish camelishness camelkeeper camellia camellias camellike camellin camelman cameloid cameloids camelopard camelopardel camelopards camelot camelots camelries camelry camels camelus camembert camenes cameo cameoed cameograph cameography cameoing cameos camera camerae cameral cameralism cameralist cameralistic cameralistics cameraman cameramen cameraperson camerapersons cameras camerate camerated cameration camerations camerawoman camerawomen camerawork cameraworks camerier cameriera camerieri camerine camerist camerlengo camerlengos camerlingo camerlingos cameronian cameronians cameroon cameroonian cameroonians cameroun camery cames camese cameses camestres camfer cami camias camiknickers camilla camillus camino camion camions camis camisa camisade camisades camisado camisadoes camisados camisard camisards camisas camiscia camise camises camisia camisias camisole camisoles camister camize camla camlet camleted camleteen camletine camleting camlets camletted camletting cammas cammed cammie cammies camming cammock cammocky camo camoca camogie camogies camois camomile camomiles camooch camoodi camoodie camoodis camorra camorras camorrism camorrista camorristi camos camosh camote camotes camoudie camouflage camouflageable camouflaged camouflager camouflagers camouflages camouflagic camouflaging camouflet camouflets camoufleur camoufleurs camp campagi campagna campagne campagnol campagnols campagus campaign campaigned campaigner campaigners campaigning campaigns campal campana campanas campane campanella campanero campaneros campania campaniform campanile campaniles campanili campaniliform campanilla campanini campanist campanistic campanists campanologer campanological campanologically campanologies campanologist campanologists campanology campanula campanulaceae campanulaceous campanulales campanular campanularian campanulas campanulate campanulated campanulous campbell campbellism campbellisms campbellite campbellites campcraft campcrafts campeachy campeador campeadors campeche camped campement campephagine campephilus camper campers campership campesino campesinos campest campestral campestrian campfight campfire campfires campground campgrounds camphane camphanes camphanic camphanone camphanyl camphene camphenes camphine camphines camphire camphires campho camphocarboxylic camphoid camphol campholic campholide camphols campholytic camphor camphoraceous camphorate camphorated camphorates camphorating camphoric camphorize camphorone camphoronic camphoroyl camphorphorone camphors camphorweed camphorweeds camphorwood camphory camphoryl camphylene campi campier campiest campilan campily campimeter campimetrical campimetry campiness campinesses camping campings campion campions campit cample campled camples campling camply campman campmaster campmate campness campnesses campo campodean campodeid campodeids campodeiform campodeoid campody campong campongs camponotus campoo campoody camporee camporees campos campout camps campshed campshedding campsheeting campshot campsite campsites campstool campstools camptodrome camptonite camptosorus campulitropal campulitropous campus campused campuses campusing campusses campward campy campylite campylobacter campylobacterioses campylobacteriosis campylobacters campylodrome campylometer campyloneurum campylorhynchus campylospermous campylotropal campylotropous cams camshach camshachle camshaft camshafts camsheugh camsho camshoch camstairy camstane camstanes camsteary camsteerie camsteery camstone camstones camstrary camuning camus camuse camused camuses camwood camwoods can canaan canaanite canaanites canaanitic canaba canabae canachites canacuas canada canadas canadian canadianisms canadians canadine canadite canadol canafistola canafistolo canafistula canafistulo canaglia canaigre canaigres canaille canailles canajong canakin canakins canal canalage canalatura canalboat canale canaled canaler canalers canales canalete canali canalicular canaliculate canaliculated canaliculation canaliculi canaliculization canaliculus canaliferous canaliform canaling canalis canalisation canalisations canalise canalised canalises canalising canalization canalizations canalize canalized canalizes canalizing canalla canalled canaller canallers canalling canalman canals canalside canamo cananga canangium canap canapa canapas canape canapes canapina canapé canapés canard canards canari canaried canaries canarin canarine canary canarying canasta canastas canaster canasters canaut canavalia canavalin canavanine canbank canbanks canberra canc cancan cancans canccelli cancel cancelability cancelable cancelate cancelated cancelation cancelations canceled canceleer canceleered canceleering canceleers canceler cancelers cancelier canceliered canceliering canceliers canceling cancellability cancellable cancellarial cancellarian cancellariate cancellariates cancellarius cancellate cancellated cancellation cancellations cancelled canceller cancellers cancelli cancelling cancellous cancellus cancelment cancelous cancels cancer cancerate cancerated cancerates cancerating canceration cancerations cancerdrops cancered cancerigenic cancerin cancerism cancerite cancerization cancerlog cancerogenic cancerophobe cancerophobia cancerophobias cancerous cancerously cancerousness cancerphobia cancerphobias cancerroot cancers cancerweed cancerwort canch cancha canchalagua canchas canchito cancion cancionero cancioneros canciones canciun cancrid cancridae cancriform cancrine cancrinite cancrisocial cancrivorous cancrizans cancroid cancroids cancrophagous cancrum cancrums cancun cand candareen candela candelabra candelabras candelabrum candelabrums candelas candelilla candelillas candency candent candescence candescences candescent candescently candid candida candidacies candidacy candidal candidas candidate candidated candidates candidateship candidateships candidating candidature candidatures candide candider candidest candidiases candidiasis candidly candidness candidnesses candids candie candied candiel candier candies candify candil candiru candite candle candleball candlebeam candleberries candleberry candlebomb candlebox candled candlefish candlefishes candleholder candleholders candlelight candlelighted candlelighter candlelighters candlelighting candlelights candlelit candlemaker candlemaking candlemas candlenut candlenuts candlepin candlepins candlepower candlepowers candler candlerent candlers candles candleshine candleshrift candlesnuffer candlesnuffers candlestand candlestick candlesticked candlesticks candlestickward candlewaster candlewasting candlewick candlewicking candlewickings candlewicks candlewood candlewoods candlewright candling candock candocks candolleaceous candor candors candour candours candroy candroys canduc candy candyass candyasses candyfloss candyflosses candygram candygrams candyh candying candylike candymaker candymaking candys candystick candystriper candytuft candytufts candyweed cane canebrake canebrakes canecutter caned canefruit canefruits caneh canehs canel canela canelas canelike canell canella canellaceae canellaceous canellas canelle canellini canelo canelos caneology canephor canephora canephorae canephoras canephore canephores canephori canephoroe canephoroi canephoros canephors canephorus canephoruses canephroi canepin caner caners canes canescence canescences canescene canescent caneton canette caneva caneware canewares canewise canework caneworks canezou canfield canfieldite canfields canful canfuls cang cangan cangenet cangia cangle cangled cangler cangles cangling cangs cangue cangues cangy canham canhoop canicide canicola canicula canicular canicule canid canidae canids canier caniest canikin canikins canille caninal canine canines caning canings caniniform caninities caninity caninus canion canioned canions canis canistel canistels canister canistered canistering canisterisation canisterisations canisterise canisterised canisterises canisterising canisterization canisterizations canisterize canisterized canisterizes canisterizing canisters canities canjac cank canker cankerberry cankerbird cankereat cankered cankeredly cankeredness cankerednesses cankerflower cankerfret cankering cankerous cankerroot cankerroots cankers cankerweed cankerworm cankerworms cankerwort cankery canli canmaker canmaking canman cann canna cannabic cannabidaceae cannabidiol cannabidiols cannabin cannabinaceous cannabine cannabinoid cannabinoids cannabinol cannabinols cannabins cannabis cannabises cannabism cannaceae cannaceous cannach cannachs cannae cannaled cannalling cannas cannat canned cannel cannelated cannele cannellate cannellated cannelle cannellini cannelloni cannelon cannelons cannels cannelure cannelured cannelures cannequin canner canneries canners cannery cannes cannet cannetille cannibal cannibalean cannibalic cannibalisation cannibalisations cannibalise cannibalised cannibalises cannibalish cannibalising cannibalism cannibalisms cannibalistic cannibalistically cannibality cannibalization cannibalizations cannibalize cannibalized cannibalizes cannibalizing cannibally cannibals cannie cannier canniest cannikin cannikins cannily canniness canninesses canning cannings cannister cannisters cannoli cannolis cannon cannonade cannonaded cannonades cannonading cannonarchy cannonball cannonballed cannonballing cannonballs cannoned cannoneer cannoneering cannoneers cannonfodder cannonfodders cannonier cannoniers cannoning cannonism cannonproof cannonries cannonry cannons cannophori cannot canns cannula cannulae cannular cannulas cannulate cannulated cannulates cannulating cannulation cannulations cannulization canny canoe canoeable canoed canoeing canoeings canoeist canoeists canoeload canoeman canoes canoewood canoing canola canolas canon canoncito canones canoness canonesses canonic canonical canonicalisation canonicalise canonicalised canonicalises canonicalising canonicalization canonicalize canonicalized canonicalizes canonicalizing canonically canonicalness canonicals canonicate canonicates canonici canonicities canonicity canonics canonisation canonisations canonise canonised canoniser canonisers canonises canonising canonist canonistic canonistical canonists canonizant canonization canonizations canonize canonized canonizer canonizers canonizes canonizing canonlike canonries canonry canons canonship canoodle canoodled canoodler canoodles canoodling canophilia canophilias canophilist canophilists canophobia canophobias canopic canopid canopied canopies canopus canopy canopying canorous canorously canorousness canorousnesses canos canotier canreply canroy canroyer cans cansful canso cansos canst canstick cansticks cant cantab cantabank cantabanks cantabile cantabiles cantabrigian cantador cantal cantala cantalas cantalever cantalite cantaliver cantaloup cantaloupe cantaloupes cantaloups cantando cantankerous cantankerously cantankerousness cantankerousnesses cantar cantara cantare cantaro cantars cantata cantatas cantate cantates cantation cantative cantator cantatory cantatrice cantatrices cantatrici cantboard cantdog cantdogs canted canteen canteens cantefable cantel canteloupe canter canterburian canterburies canterbury canterburys cantered canterelle canterer cantering canters cantest canthal cantharellus canthari cantharic cantharid cantharidal cantharidate cantharidated cantharidating cantharidean cantharides cantharidian cantharidic cantharidin cantharidine cantharidines cantharidins cantharidism cantharidize cantharidized cantharidizing cantharids cantharis cantharophilous cantharus canthathari canthaxanthin canthaxanthine canthaxanthines canthaxanthins canthectomy canthi canthitis cantholysis canthook canthooks canthoplasty canthorrhaphy canthotomy canthus canthuthi cantic canticle canticles cantico canticoed canticoing canticos canticoy canticoyed canticoying canticoys canticum canticums cantier cantiest cantiga cantil cantilated cantilating cantilena cantilenas cantilene cantilenes cantilever cantilevered cantilevering cantilevers cantillate cantillated cantillates cantillating cantillation cantillations cantillatory cantily cantimo cantimos cantina cantinas cantiness cantinesses canting cantingly cantingness cantings cantinier cantino cantion cantions cantish cantle cantled cantles cantlet cantlets cantline cantling canto canton cantonal cantonalism cantoned cantoner cantonese cantoning cantonisation cantonisations cantonise cantonised cantonises cantonising cantonization cantonizations cantonize cantonized cantonizes cantonizing cantonment cantonments cantons cantoon cantor cantoral cantoria cantorial cantoris cantorous cantors cantorship cantos cantrail cantrails cantraip cantraips cantrap cantraps cantred cantreds cantref cantrefs cantrip cantrips cants cantus cantut cantuta cantwise canty canuck canucks canula canulae canular canulas canulate canulated canulates canulating canulation canulization canun canvas canvasado canvasback canvasbacks canvased canvaser canvasers canvases canvasing canvaslike canvasman canvass canvassed canvasser canvassers canvasses canvassing canvassy cany canyon canyoning canyons canyonside canzo canzon canzona canzonas canzone canzones canzonet canzonets canzonetta canzonette canzoni canzos caoba caoine caon caoque caoutchin caoutchouc caoutchoucin caoutchoucs cap capa capabilities capability capable capableness capablenesses capabler capablest capably capacify capacious capaciously capaciousness capaciousnesses capacitance capacitances capacitate capacitated capacitates capacitating capacitation capacitations capacitative capacitativly capacitator capacities capacitive capacitively capacitor capacitors capacity capanna capanne caparison caparisoned caparisoning caparisons capas capataces capataz capax capcase cape capeador capeadores capeadors caped capel capelan capelans capelet capelets capelin capeline capelines capelins capella capellane capellet capellets capelline capellines capellini capellinis capellmeister capellmeisters capelocracy caper caperbush capercaillie capercaillies capercailye capercailzie capercailzies capercally capercut caperdewsie capered caperer caperers capering caperingly capernaite capernaitically capernoited capernoitie capernoities capernoity capernutie capers capersome capersomeness caperwort capes capeskin capeskins capetian capetown capette capeweed capewise capework capeworks capful capfuls caph caphar capharnaism caphite caphs capi capias capiases capiatur capibara capicha capilaceous capillaceous capillaire capillaires capillament capillarectasia capillaries capillarily capillarimeter capillariness capillariomotor capillarities capillaritis capillarity capillary capillation capillatus capilli capilliculture capilliform capillitia capillitial capillitium capillitiums capillose capillus capilotade caping capistrate capita capital capitaldom capitaled capitaling capitalisable capitalisation capitalisations capitalise capitalised capitaliser capitalisers capitalises capitalising capitalism capitalisms capitalist capitalistic capitalistically capitalists capitalizable capitalization capitalizations capitalize capitalized capitalizer capitalizers capitalizes capitalizing capitally capitalness capitals capitan capitana capitani capitano capitanos capitans capitare capitasti capitate capitated capitatim capitation capitations capitative capitatum capitayn capitayns capite capiteaux capitella capitellar capitellate capitelliform capitellum capitellums capitle capitol capitolian capitoline capitols capitonidae capitoul capitoulate capitula capitulant capitulants capitular capitularies capitularly capitulars capitulary capitulate capitulated capitulates capitulating capitulation capitulations capitulator capitulators capitulatory capituliform capitulum capiturlary capivi capiz capizes capkin caplan caple caples capless caplet caplets caplin capling caplins caplock capmaker capmakers capmaking capman capmint capnomancies capnomancy capnomor capo capoc capocchia capocchias capoche capodastro capodastros capoeira capoeiras capomo capon caponata caponatas capone caponette caponier caponiere caponieres caponiers caponisation caponise caponised caponiser caponises caponising caponization caponize caponized caponizer caponizes caponizing caponniere capons caporal caporals caporetto capos capot capotasto capotastos capote capoted capoten capotes capoting capots capotted capotting capouch capouches cappadine cappadochio cappae cappagh capparid capparidaceae capparidaceous capparis capped cappelenite cappella cappelletti capper cappernoities cappernoity cappers cappie cappier cappiest capping cappings capple cappuccino cappuccinos cappy capra caprate caprates caprella caprelline capreol capreolar capreolary capreolate capreoline capreolus capreomycin capretto capri capric capriccetto capriccettos capricci capriccio capriccios capriccioso caprice caprices capricious capriciously capriciousness capriciousnesses capricorn capricornis capricorns capricornus caprid caprids caprificate caprification caprifications caprificator caprified caprifies caprifig caprifigs caprifoil caprifoils caprifole caprifoles caprifoliaceae caprifoliaceous caprifolium capriform caprify caprifying caprigenous caprimulgid caprimulgidae caprimulgiformes caprimulgine caprimulgus caprin caprine caprinic capriole caprioled caprioles caprioling capriped capripede capris caprizant caproate caproates caprock caprocks caproic caproidae caproin caprolactam caprolactams capromyidae capron caprone capronic capronyl capros caproyl capryl caprylate caprylates caprylene caprylic caprylin caprylone caprylyl caps capsa capsaicin capsaicins capsella capsful capsheaf capshore capsian capsicin capsicins capsicum capsicums capsid capsidae capsidal capsids capsizable capsizal capsizals capsize capsized capsizes capsizing capsomer capsomere capsomeres capsomers capstan capstans capstone capstones capsula capsulae capsular capsulary capsulate capsulated capsulation capsulations capsule capsulectomy capsuled capsuler capsules capsuliferous capsuliform capsuligerous capsuling capsulise capsulised capsulises capsulising capsulitis capsulize capsulized capsulizes capsulizing capsulociliary capsulogenous capsulolenticular capsulopupillary capsulorrhaphy capsulotome capsulotomies capsulotomy capsumin capt captacula captaculum captain captaincies captaincy captained captainess captaining captainly captainries captainry captains captainship captainships captan captance captandum captans captate captation caption captioned captioning captionless captions captious captiously captiousness captiousnesses captivance captivances captivate captivated captivately captivates captivating captivatingly captivation captivations captivative captivator captivators captivatrix captivaunce captivaunces captive captived captives captiving captivities captivity captopril captoprils captor captors captress capturable capture captured capturer capturers captures capturing capuccino capuccio capuccios capuche capuched capuches capuchin capuchins capucine capuera capueras capul capulet capuli capulin capuls caput caputium capybara capybaras caque caquet caqueterie caqueteuse caqueteuses caquetoire caquetoires car carabao carabaos carabeen carabid carabidae carabidan carabideous carabidoid carabids carabin carabine carabineer carabineers carabiner carabinero carabineros carabiners carabines carabinier carabiniere carabinieri carabiniers carabins caraboa caraboid carabus caracal caracals caracara caracaras caracas carack caracks caraco caracoa caracol caracole caracoled caracoler caracoles caracoli caracoling caracolite caracolito caracolled caracoller caracolling caracols caracora caracore caract caracter caracts caracul caraculs carafate carafe carafes carafon caragana caraganas carageen carageens caragheen caraguata caraibe caraipe caraipi carajo carajura caramba carambola carambolas carambole caramboled caramboles caramboling caramel caramelan caramelen caramelin caramelisation caramelisations caramelise caramelised caramelises caramelising caramelization caramelizations caramelize caramelized caramelizes caramelizing caramelled caramelling caramels caramoussal carancha carancho caranda caranday carane carangid carangidae carangids carangin carangoid carangoids caranna carannas caranx carap carapa carapace carapaced carapaces carapacial carapacic carapato carapax carapaxes carapidae carapine carapo caraps carassius carassow carassows carat caratacus caratch carate carates carats carauna caraunas caraunda caravan caravance caravances caravaned caravaneer caravaneers caravaner caravaners caravanette caravanettes caravaning caravanist caravanned caravanner caravanners caravanning caravans caravansarai caravansarais caravansaries caravansary caravanserai caravanserais caravanserial caravansery caravel caravelle caravelles caravels caraway caraways carb carbachol carbachols carbacidometer carbamate carbamates carbamazepine carbamazepines carbamic carbamide carbamides carbamidine carbamido carbamine carbamino carbamoyl carbamyl carbamyls carbanil carbanilic carbanilid carbanilide carbanion carbanions carbarn carbarns carbaryl carbaryls carbasus carbazic carbazide carbazin carbazine carbazole carbazoles carbazylic carbeen carbene carbenes carberry carbethoxy carbethoxyl carbide carbides carbies carbimide carbin carbine carbineer carbineers carbines carbinier carbiniers carbinol carbinols carbinyl carbo carboazotine carbocer carbocinchomeronic carbocyclic carbodiimide carbodynamite carbogelatin carbohemoglobin carbohydrase carbohydrases carbohydrate carbohydrates carbohydraturia carbohydrazide carbohydride carbohydrogen carbolate carbolated carbolating carbolfuchsin carbolic carbolics carboline carbolineate carbolise carbolised carbolises carbolising carbolize carbolized carbolizes carbolizing carboloy carboluria carbolxylol carbomethene carbomethoxy carbomethoxyl carbomycin carbon carbona carbonaceous carbonade carbonades carbonado carbonadoed carbonadoes carbonadoing carbonados carbonara carbonaras carbonari carbonatation carbonate carbonated carbonates carbonating carbonation carbonations carbonatisation carbonatite carbonatites carbonatization carbonator carbonators carbondale carbone carboned carbonemia carbonero carbones carbonic carbonide carboniferous carbonification carbonify carbonigenous carbonimeter carbonimide carbonisable carbonisation carbonisations carbonise carbonised carboniser carbonisers carbonises carbonising carbonite carbonitride carbonium carboniums carbonizable carbonization carbonizations carbonize carbonized carbonizer carbonizers carbonizes carbonizing carbonless carbonnade carbonnades carbonometer carbonometry carbonous carbons carbonuria carbonyl carbonylate carbonylated carbonylates carbonylating carbonylation carbonylations carbonylene carbonylic carbonyls carbophilous carbora carboras carborne carborundum carbos carbosilicate carbostyril carboxide carboxy carboxyhemoglobin carboxyhemoglobins carboxyl carboxylase carboxylases carboxylate carboxylated carboxylates carboxylating carboxylation carboxylations carboxylic carboxyls carboxymethylcellulose carboxymethylcelluloses carboxypeptidase carboxypeptidases carboy carboyed carboys carbro carbromal carbs carbuilder carbuncle carbuncled carbuncles carbuncular carbunculation carbungi carburan carburant carburate carburated carburates carburating carburation carburations carburator carbure carburet carburetant carbureted carbureter carbureters carburetest carbureting carburetion carburetions carburetor carburetors carburets carburetted carburetting carburisation carburisations carburise carburised carburiser carburises carburising carburization carburizations carburize carburized carburizer carburizes carburizing carburometer carby carbyl carbylamine carcajou carcajous carcake carcakes carcan carcanet carcaneted carcanets carcanetted carcased carcasing carcass carcassed carcasses carcassing carcassless carceag carcel carcels carcer carceral carcerate carcerated carcerating carceration carcerist carcharhinidae carcharhinus carcharias carchariid carchariidae carcharioid carcharodon carcharodont carcinemia carcinogen carcinogeneses carcinogenesis carcinogenic carcinogenicities carcinogenicity carcinogenics carcinogens carcinoid carcinoids carcinological carcinologies carcinologist carcinologists carcinology carcinolysin carcinolytic carcinoma carcinomas carcinomata carcinomatoid carcinomatoses carcinomatosis carcinomatous carcinomorphic carcinophagous carcinophobia carcinopolypus carcinosarcoma carcinosarcomas carcinosarcomata carcinoses carcinosis carcinus carcoon card cardaissin cardamine cardamines cardamom cardamoms cardamon cardamons cardamum cardamums cardanol cardboard cardboards cardboardy cardcase cardcases cardcastle cardcastles cardecu cardecue cardecues cardecus carded cardel carder carders cardholder cardholders cardhouse cardi cardia cardiac cardiacal cardiacean cardiacle cardiacs cardiae cardiagra cardiagram cardiagraph cardiagraphy cardial cardialgia cardialgias cardialgic cardialgies cardialgy cardiameter cardiamorphia cardianesthesia cardianeuria cardiant cardiaplegia cardiarctia cardias cardiasthenia cardiasthma cardiataxia cardiatomy cardiatrophia cardiauxe cardicentesis cardie cardiectasis cardiectomize cardiectomy cardielcosis cardiemphraxia cardies cardiff cardiform cardigan cardiganed cardigans cardiidae cardin cardinal cardinalate cardinalated cardinalates cardinalatial cardinalfish cardinalfishes cardinalic cardinalism cardinalist cardinalitial cardinalitian cardinalities cardinality cardinally cardinals cardinalship cardinalships cardines carding cardings cardioacceleration cardioaccelerations cardioaccelerator cardioaccelerators cardioarterial cardioblast cardiocarpum cardiocele cardiocentesis cardiocirrhosis cardioclasia cardioclasis cardiod cardiodilator cardiodynamics cardiodynia cardiodysesthesia cardiodysneuria cardiogenesis cardiogenic cardiogram cardiograms cardiograph cardiographer cardiographers cardiographic cardiographies cardiographs cardiography cardiohepatic cardioid cardioids cardiokinetic cardiolith cardiologic cardiological cardiologies cardiologist cardiologists cardiology cardiolysis cardiomalacia cardiomegalia cardiomegaly cardiomelanosis cardiometer cardiometric cardiometry cardiomotility cardiomotor cardiomyoliposis cardiomyomalacia cardiomyopathies cardiomyopathy cardioncus cardionecrosis cardionephric cardioneural cardioneurosis cardionosus cardioparplasis cardiopath cardiopathic cardiopathies cardiopathy cardiopericarditis cardiophobe cardiophobia cardiophrenia cardioplasty cardioplegia cardiopneumatic cardiopneumograph cardioptosis cardiopulmonary cardiopuncture cardiopyloric cardiorenal cardiorespiratory cardiorrhaphy cardiorrheuma cardiorrhexis cardioschisis cardiosclerosis cardioscope cardiospasm cardiospermum cardiosphygmogram cardiosphygmograph cardiosymphysis cardiotherapies cardiotherapy cardiothoracic cardiotomy cardiotonic cardiotonics cardiotoxic cardiotoxicities cardiotoxicity cardiotrophia cardiotrophotherapy cardiovascular cardiovisceral cardipaludism cardipericarditis cardis cardisophistical cardita carditic carditides carditis carditises cardium cardizem cardlike cardmaker cardmaking cardo cardol cardon cardona cardoncillo cardons cardooer cardoon cardoons cardophagus cardophaguses cardosanto cardphone cardphones cardplayer cardplayers cardplaying cardpunch cardpunches cardroom cards cardshark cardsharp cardsharper cardsharpers cardsharping cardsharpings cardsharps cardstock carduaceous carduelinae cardueline carduelis carduus carduuses cardy care carecloth cared careen careenage careenages careened careener careeners careening careens career careered careerer careerers careering careeringly careerism careerisms careerist careeristic careerists careers carefox carefree carefreeness careful carefull carefuller carefullest carefully carefulness carefulnesses caregiver caregivers caregiving caregivings careless carelessly carelessness carelessnesses carelian careme carene carer carers cares caress caressable caressant caressed caresser caressers caresses caressing caressingly caressings caressive caressively carest caret caretake caretaken caretaker caretakers caretakes caretaking caretakings caretook carets caretta careworker careworkers careworn carex carey careys carf carfare carfares carfax carfaxes carfloat carfour carfox carfoxes carfuffle carfuffled carfuffles carfuffling carful carfuls carga cargador cargadores cargason cargeese cargo cargoed cargoes cargoing cargoose cargos cargued carhop carhopped carhopping carhops carhouse cariacine cariacou cariacous cariama cariamas cariamidae carib cariban caribbean caribbeans caribe caribed caribees caribes caribing caribou caribous carica caricaceae caricaceous caricatura caricaturable caricatural caricaturas caricature caricatured caricatures caricaturing caricaturisation caricaturist caricaturists caricaturization carices caricetum caricographer caricography caricologist caricology caricous carid caridean carideer caridoid caried carien cariere carieres caries cariform carillon carilloned carilloneur carilloneurs carilloning carillonist carillonists carillonned carillonneur carillonneurs carillonning carillons carina carinae carinal carinaria carinas carinate carinated carination caring caringly carings cariniform carinula carinulate carinule carioca cariocas cariogenic cariole carioles carioling cariose cariosities cariosity carious cariousness cariousnesses caripeta carisoprodol carissa caritas caritases caritative carites caritive carity carjack carjacked carjacker carjackers carjacking carjackings carjacks carjacou carjacous cark carked carking carkingly carkled carks carl carlage carle carles carless carlet carli carlie carlin carlina carline carlines carling carlings carlino carlins carlish carlishness carlism carlist carlo carload carloading carloadings carloads carlock carlocks carlot carlots carlovingian carls carlylism carmagnole carmagnoles carmaker carmakers carmalum carman carmel carmele carmelite carmelites carmeloite carmen carmetta carminate carminative carminatives carmine carmines carminette carminic carminite carminophilous carmoisin carmot carn carnac carnage carnaged carnages carnahuba carnahubas carnal carnalise carnalised carnalises carnalising carnalism carnalisms carnalist carnalists carnalite carnalities carnality carnalize carnalized carnalizes carnalizing carnalled carnalling carnallite carnallites carnally carnalness carnals carnaper carnapers carnaptious carnary carnassial carnassials carnate carnation carnationed carnationist carnations carnauba carnaubas carnaubic carnaubyl carne carneau carnegie carnegiea carnel carnelian carnelians carneol carneole carneous carnet carnets carney carneyed carneying carneys carnic carnie carnied carnier carnies carniest carniferous carniferrin carnifex carnifexes carnification carnifications carnifices carnificial carnified carnifies carniform carnify carnifying carnitine carnitines carnival carnivaler carnivalesque carnivaller carnivallike carnivals carnivora carnivoracity carnivoral carnivore carnivores carnivorism carnivority carnivorous carnivorously carnivorousness carnivorousnesses carnosaur carnosaura carnose carnosin carnosine carnosities carnosity carnotite carnotites carnous carns carny carnying caroa caroach caroaches carob caroba carobs caroch caroche caroches caroigne carol carole carolean caroled caroler carolers caroli carolin carolina carolinas caroline carolines caroling carolingian carolinian carolinians carolitic carolled caroller carollers carolling carols carolus caroluses carolyn carom carombolette caromed caromel caromelled caromelling caromels caroming caroms carone caronic caroome caroon carosella carosse carot caroteel carotene carotenemia carotenes carotenoid carotenoids carotic carotid carotidal carotidean carotids carotin carotinaemia carotinemia carotinoid carotinoids carotins carotol carotte carouba caroubier carousal carousals carouse caroused carousel carousels carouser carousers carouses carousing carousingly carp carpaccio carpaccios carpaine carpal carpale carpalia carpals carpark carparks carpe carped carpel carpellary carpellate carpellates carpellum carpels carpent carpentaria carpentarias carpenter carpentered carpenteria carpentering carpenters carpentership carpenterworm carpentries carpentry carper carpers carpet carpetbag carpetbagged carpetbagger carpetbaggeries carpetbaggers carpetbaggery carpetbagging carpetbaggism carpetbagism carpetbags carpetbeater carpeted carpeting carpetings carpetlayer carpetless carpetmaker carpetmaking carpetmonger carpetmongers carpets carpetweb carpetweed carpetweeds carpetwork carpetwoven carpholite carphologies carphology carphophis carphosiderite carpi carpid carpidium carpinaceae carpincho carping carpingly carpings carpintero carpinus carpitis carpium carpobrotus carpocace carpocapsa carpocarpal carpocephala carpocephalum carpocerite carpocervical carpocratian carpodacus carpogam carpogamy carpogenic carpogenous carpognia carpogone carpogonia carpogonial carpogonium carpogoniums carpolite carpolith carpological carpologically carpologies carpologist carpology carpomania carpometacarpal carpometacarpi carpometacarpus carpompi carpool carpooled carpooler carpoolers carpooling carpools carpopedal carpophagous carpophalangeal carpophore carpophores carpophyl carpophyll carpophyte carpopodite carpopoditic carpoptosia carpoptosis carport carports carpos carposperm carposporangia carposporangial carposporangium carpospore carpospores carposporic carposporous carpostome carps carpsucker carpus carpuses carpuspi carquaise carr carrack carracks carract carracts carrageen carrageenan carrageenans carrageenin carrageenins carrageens carragheen carragheenin carragheenins carragheens carrat carrats carraway carraways carreau carrect carrects carree carrefour carrefours carrel carrell carrells carrels carreta carretela carretera carreton carretta carri carriable carriage carriageable carriageful carriageless carriages carriagesmith carriageway carriageways carrick carried carrier carriers carries carrigeen carriole carrioles carrion carrions carritch carritches carriwitchet carriwitchets carrizo carrocci carroccio carroch carroches carroll carrollite carrom carromata carromatas carromed carroming carroms carronade carronades carroon carrosserie carrot carrotage carroter carrotier carrotiest carrotin carrotiness carroting carrotins carrots carrottop carrottopped carrottops carrotweed carrotwood carroty carrousel carrousels carrow carrozza carrs carrus carry carryable carryall carryalls carryback carrybacks carrycot carrycots carryed carryforward carryforwards carrying carryings carryke carryon carryons carryout carryouts carryover carryovers carrys carrytale carrytales cars carse carses carsey carseys carshop carshops carsick carsickness carsicknesses carsmith carson carstone cart carta cartable cartaceous cartage cartagena cartages cartas cartboot cartbote carte carted cartel cartelisation cartelisations cartelise cartelised cartelises cartelising cartelism cartelisms cartelist cartelistic cartelists cartelization cartelizations cartelize cartelized cartelizes cartelizing cartellist cartels carter carterly carters cartes cartesian cartful carthage carthaginian carthame carthamic carthamin carthamine carthamines carthamus carthorse carthorses carthusian cartier cartiest cartilage cartilages cartilaginean cartilagineous cartilaginification cartilaginoid cartilaginous carting cartisane cartload cartloads cartmaker cartmaking cartman cartobibliography cartogram cartograms cartograph cartographer cartographers cartographic cartographical cartographically cartographies cartography cartological cartologies cartology cartomancies cartomancy carton cartonage cartonages cartoned cartoner cartonful cartoning cartonnage cartonnages cartonnier cartonniers cartons cartoon cartooned cartooning cartoonings cartoonish cartoonishly cartoonist cartoonists cartoonlike cartoons cartoony cartop cartophile cartophiles cartophilic cartophilies cartophilist cartophilists cartophily cartopper cartoppers cartouch cartouche cartouches cartridge cartridges cartroad cartroads carts cartsale cartularies cartulary cartware cartway cartways cartwheel cartwheeled cartwheeler cartwheelers cartwheeling cartwheels cartwhip cartwright cartwrighting cartwrights carty carua caruage carucage carucages carucal carucarius carucate carucated carucates carum caruncle caruncles caruncula carunculae caruncular carunculate carunculated carunculous carus carvacrol carvacrols carvacryl carvage carval carve carved carvel carvels carven carvene carver carveries carvers carvership carvery carves carvestrene carvies carving carvings carvist carvoeira carvoepra carvol carvomenthene carvone carvy carvyl carwash carwashes carwitchet carya caryatic caryatid caryatidal caryatidean caryatides caryatidic caryatids caryl caryocar caryocaraceae caryocaraceous caryophyllaceae caryophyllaceous caryophyllales caryophyllene caryophylleous caryophyllidae caryophyllin caryophyllous caryopilite caryopses caryopsides caryopsis caryopteris caryopterises caryota caryotin caryotins carzey carême casa casaba casabas casabe casablanca casal casalty casanova casanovas casaque casaques casaquin casas casate casaun casava casavas casave casavi casbah casbahs cascabel cascabels cascable cascables cascadable cascade cascaded cascades cascading cascadite cascado cascadoo cascadoos cascadura cascaduras cascalho cascalote cascan cascara cascaras cascarilla cascarillas cascaron cascavel caschielawis caschrom caschroms casco cascol cascos cascrom cascrome case casease caseases caseate caseated caseates caseating caseation caseations casebearer casebearers casebook casebooks casebound casebox caseconv cased casefied casefies caseful casefy casefying caseharden casehardened casehardening casehardens caseic casein caseinate caseinates caseine caseinogen caseinogens caseins casekeeper caseless caselessly caseload caseloads caselty casemaker casemakers casemaking caseman casemate casemated casemates casemen casement casemented casements caseolysis caseose caseoses caseous caser caserio caserios casern caserne casernes caserns cases casette casettes caseum caseweed casewood casework caseworker caseworkers caseworks caseworm caseworms cash casha cashable cashableness cashaw cashaws cashbook cashbooks cashbox cashboxes cashboy cashcard cashcards cashcuttee cashdrawer cashed casheen cashel casher cashers cashes cashew cashews cashflow cashgirl cashier cashiered cashierer cashierers cashiering cashierings cashierment cashierments cashiers cashing cashkeeper cashless cashment cashmere cashmeres cashmerette cashoo cashoos cashou casimere casimeres casimire casimires casina casinet casing casinghead casingheads casings casini casino casinos casiri casita casitas cask caskanet casked casket casketed casketing casketlike caskets caskful casking casklike casks caskstand caskstands casky casmerodius casper caspian casque casqued casques casquet casquetel casquette cass cassaba cassabanana cassabas cassabully cassada cassady cassalty cassan cassandra cassandras cassapanca cassare cassareep cassareeps cassaripe cassaripes cassata cassatas cassate cassation cassations cassava cassavas casse casselty cassena cassenas cassene cassenes casserole casseroled casseroles casseroling cassette cassettes casshe cassia cassias cassican cassideous cassidid cassidoine cassidony cassiduloid cassie cassimere cassimeres cassina cassinas cassine cassines cassinette cassingle cassingles cassinian cassino cassinoid cassinos cassioberry cassiope cassiopeia cassiopeian cassiopeium cassiopeiums cassique cassiri cassis cassises cassite cassiterite cassiterites cassites cassius cassock cassocked cassocks cassolette cassolettes casson cassonade cassonades cassone cassones cassoni cassons cassoon cassoulet cassoulets cassowaries cassowary cassumunar cassumunars cassumuniar cassy cast castabilities castability castable castagnole castalia castana castane castanea castanean castaneous castanet castanets castanian castano castanopsis castanospermine castanospermines castanospermum castaway castaways caste casted casteism casteisms casteless castelet castella castellan castellanies castellano castellans castellanship castellanus castellany castellar castellate castellated castellation castellations castellatus castellet castelli castellum castellums casten caster casterless casters castes casteth casthouse castice castigable castigate castigated castigates castigating castigation castigations castigative castigator castigatories castigators castigatory castile castilian castilla castilleia castilleja castillo casting castings castle castled castlelike castlery castles castlet castleward castlewards castlewise castling castock castocks castoff castoffs castor castoreum castoreums castorial castoridae castories castorin castorised castorite castorized castoroides castors castory castra castral castrametation castrametations castrate castrated castrater castraters castrates castrati castrating castration castrations castrato castrator castrators castratory castratos castrensial castrensian castries castro castroism castrum casts castuli casual casualisation casualisations casualise casualised casualises casualising casualism casualisms casualist casuality casualization casualizations casualize casualized casualizes casualizing casually casualness casualnesses casuals casualties casualty casuaridae casuariiformes casuarina casuarinaceae casuarinaceous casuarinales casuarinas casuarius casuary casuist casuistess casuistic casuistical casuistically casuistries casuistry casuists casula casule casus casusistry caswellite cat catabaptist catabases catabasion catabasis catabatic catabibazon catabiosis catabiotic catabolic catabolically catabolin catabolise catabolism catabolisms catabolite catabolites catabolize catabolized catabolizes catabolizing catacala catacaustic catacaustics catachreses catachresis catachresti catachrestic catachrestical catachrestically catachthonian catachthonic cataclases cataclasis cataclasm cataclasmic cataclasms cataclastic cataclinal cataclysm cataclysmal cataclysmatic cataclysmatist cataclysmic cataclysmically cataclysmist cataclysms catacomb catacombic catacombs catacorner catacorolla catacoustics catacromyodian catacrotic catacrotism catacumba catacumbal catacylsmic catadicrotic catadicrotism catadioptric catadioptrical catadioptrics catadrome catadromous catadupe catafalco catafalcoes catafalque catafalques cataflam catagenesis catagenetic catagmatic catagories cataian catakinesis catakinetic catakinetomer catakinomeric catalan catalase catalases catalatic catalecta catalectic catalecticant catalectics catalects catalepsies catalepsis catalepsy cataleptic cataleptically cataleptics cataleptiform cataleptize cataleptoid catalexes catalexis catalin catalina catalineta catalinite catallactic catallactically catallactics catallum catalo cataloes catalog cataloged cataloger catalogers catalogia catalogic catalogical cataloging catalogist catalogistic catalogists catalogize catalogized catalogizes catalogizing catalogs catalogue catalogued cataloguer cataloguers catalogues cataloguing cataloguise cataloguised cataloguises cataloguish cataloguising cataloguist cataloguize cataloguized cataloguizes cataloguizing catalonia cataloon catalos catalowne catalpa catalpas catalufa catalufas catalyse catalysed catalyser catalysers catalyses catalysing catalysis catalyst catalysts catalyte catalytic catalytical catalytically catalyzator catalyze catalyzed catalyzer catalyzers catalyzes catalyzing catamaran catamarans catamenia catamenial catamite catamited catamites catamiting catamneses catamnesis catamnestic catamount catamountain catamountains catamounts catan catanadromous catananche catapan catapans catapasm catapetalous cataphasia cataphatic cataphonic cataphonics cataphora cataphoras cataphoreses cataphoresis cataphoretic cataphoretically cataphoria cataphoric cataphract cataphracted cataphractic cataphracts cataphrenia cataphrenic cataphrygian cataphrygianism cataphyll cataphylla cataphyllary cataphylls cataphyllum cataphysic cataphysical cataplane cataplasia cataplasias cataplasis cataplasm cataplasms cataplastic cataplectic catapleiite cataplexies cataplexy catapres catapuce catapult catapulted catapultian catapultic catapultier catapultiers catapulting catapults cataract cataractal cataracted cataracteg cataractine cataractous cataracts cataractwise catarhine cataria catarinite catarrh catarrhal catarrhally catarrhed catarrhine catarrhines catarrhinian catarrhous catarrhs catasarka catasetum cataspilite catasta catastaltic catastas catastases catastasis catastate catastatic catasterism catastrophal catastrophe catastrophes catastrophic catastrophical catastrophically catastrophism catastrophisms catastrophist catastrophists catathymic catatonia catatoniac catatonias catatonic catatonically catatonics catatonies catatony catawampous catawampously catawamptious catawamptiously catawampus catawba catawbas catberry catbird catbirds catboat catboats catbrier catbriers catcall catcalled catcaller catcalling catcalls catch catchable catchall catchalls catchcry catched catchen catcher catchers catches catchflies catchfly catchie catchier catchiest catchiness catchinesses catching catchingly catchingness catchings catchland catchlight catchline catchlines catchment catchments catchpennies catchpenny catchphrase catchphrases catchplate catchpole catchpoled catchpolery catchpoles catchpoleship catchpoling catchpoll catchpolled catchpollery catchpolling catchpolls catcht catchup catchups catchwater catchweed catchweeds catchweight catchword catchwords catchwork catchy catclaw catclaws catdom cate catecheses catechesis catechetic catechetical catechetically catechetics catechin catechins catechisable catechisation catechisations catechise catechised catechiser catechisers catechises catechising catechisings catechism catechismal catechisms catechist catechistic catechistical catechistically catechists catechizable catechization catechizations catechize catechized catechizer catechizers catechizes catechizing catechizings catechol catecholamine catecholaminergic catecholamines catechols catechu catechumen catechumenal catechumenate catechumenates catechumenical catechumenically catechumenism catechumenisms catechumens catechumenship catechumenships catechus catechutannic categorem categorematic categorematical categorematically categorial categorially categoric categorical categorically categoricalness categoricalnesses categories categorisation categorisations categorise categorised categoriser categorisers categorises categorising categorist categorists categorizable categorization categorizations categorize categorized categorizer categorizers categorizes categorizing category catel catelectrode catelectrotonic catelectrotonus catella catelog catelogs catena catenae catenane catenanes catenarian catenaries catenary catenas catenate catenated catenates catenating catenation catenations catenative catenoid catenoids catenulate catepuce cater cateran caterans caterbrawl catercap catercorner catercornered catercornerways catercousin catered caterer caterers caterership cateress cateresses catering cateringly caterings caterpillar caterpillared caterpillarlike caterpillars caters caterva caterwaul caterwauled caterwauler caterwauling caterwaulings caterwauls catery cates catesbeiana cateye catface catfaced catfaces catfacing catfacings catfall catfalls catfight catfights catfish catfishes catfoot catfooted catgut catguts cath cathar catharacta catharan catharanthus catharine catharise catharised catharises catharising catharist catharization catharize catharized catharizes catharizing catharses catharsis cathartes cathartic cathartical cathartically catharticalness cathartics cathartid cathartidae cathartin cathay cathaya cathead catheads cathect cathected cathectic cathecting cathection cathects cathedra cathedrae cathedral cathedraled cathedralesque cathedralic cathedrallike cathedrals cathedralwise cathedras cathedrated cathedratic cathedratica cathedratical cathedratically cathedraticum cathepsin cathepsins catheptic catheretic catherine cathern catheter catheterisation catheterisations catheterise catheterised catheterises catheterising catheterism catheterisms catheterization catheterizations catheterize catheterized catheterizes catheterizing catheters catheti cathetometer cathetometers cathetometric cathetus cathetuses cathetusti cathexes cathexion cathexis cathidine cathin cathine cathinine cathion cathisma cathismas cathismata cathodal cathodally cathode cathodegraph cathodes cathodic cathodical cathodically cathodofluorescence cathodograph cathodographer cathodographers cathodographies cathodographs cathodography cathodoluminescence cathodoluminescent cathograph cathography cathole catholes catholic catholical catholically catholicalness catholicate catholicates catholici catholicisation catholicisations catholicise catholicised catholiciser catholicises catholicising catholicism catholicisms catholicist catholicities catholicity catholicization catholicizations catholicize catholicized catholicizer catholicizes catholicizing catholicly catholicness catholicoi catholicon catholicons catholicos catholicoses catholics catholicus catholyte cathood cathoods cathop cathouse cathouses cathro cathud cathy catilinarian catiline cating cation cationic cationically cations cativo catjang catjangs catkin catkinate catkins catlap catlike catlin catline catling catlings catlinite catlins catmalison catmint catmints catnache catnap catnaper catnapers catnapped catnapper catnappers catnapping catnaps catnep catneps catnip catnips catoblepas catocalid catocarthartic catocathartic catochus catoctin catodont catogene catogenic catonian catoptric catoptrical catoptrically catoptrics catoptrite catoptromancy catoptromantic catoptrophorus catostomid catostomidae catostomoid catostomus catouse catpiece catpipe catproof catrigged cats catskill catskills catskin catskinner catskins catslide catso catsos catspaw catspaws catstane catstep catstick catstitch catstitcher catstone catsuit catsuits catsup catsups cattabu cattabus cattail cattails cattalo cattaloes cattalos cattan catted catter catteries cattery cattie cattier catties cattiest cattily cattimandoo cattiness cattinesses catting cattish cattishly cattishness cattishnesses cattle cattlebush cattlefold cattlegate cattlehide cattleless cattleman cattlemen cattleship cattleya cattleyak cattleyas catty cattycorner cattycornered cattyman cattyphoid catur catvine catwalk catwalks catwise catwood catworks catworm catworms catwort catydid catzerie cauada caubeen cauboge caucasia caucasian caucasians caucasoid caucasoids caucasus cauch cauchemar cauchemars cauchillo caucho caucus caucused caucuses caucusing caucussed caucusses caucussing cauda caudad caudae caudaite caudal caudally caudalward caudata caudate caudated caudates caudation caudations caudatolenticular caudatory caudatum caudebeck caudex caudexes caudices caudicle caudicles caudiform caudillism caudillismo caudillismos caudillo caudillos caudle caudled caudles caudling caudocephalad caudodorsal caudofemoral caudolateral caudotibial caudotibialis caudron caudrons cauf caufle caught cauk cauked cauker caukers cauking cauks caul cauld caulder cauldest cauldrife cauldrifeness cauldron cauldrons caulds caulerpaceous caules caulescent cauli caulicle caulicles caulicole caulicolous cauliculate caulicule cauliculi cauliculus cauliculuses cauliferous cauliflories cauliflorous cauliflory cauliflower caulifloweret cauliflowerets cauliflowers cauliform cauligenous caulinar caulinary cauline caulis caulivorous caulk caulked caulker caulkers caulking caulkings caulks caulocarpic caulocarpous caulome caulomer caulomes caulomic caulophylline caulophyllum caulopteris caulosarc caulotaxis caulotaxy caulote cauls caum cauma caumatic caumed cauming caums caumstone caumstones caunch caunter cauon caup caupo cauponate cauponation caupones cauponize caups caurale caus causa causabilities causability causable causae causal causaless causalgia causalgias causalgic causalities causality causally causals causans causata causate causation causational causationism causationisms causationist causationists causations causative causatively causativeness causativenesses causatives causativity causator causatum cause caused causeful causeless causelessly causelessness causelessnesses causen causer causerie causeries causers causes causeur causeuse causeuses causeway causewayed causewaying causewayman causeways causey causeyed causeys causidical causing causingness causon causse causson caustic caustical caustically causticisation causticise causticiser causticism causticities causticity causticization causticize causticized causticizer causticizing causticly causticness causticnesses caustics caustification caustified caustify caustifying cautel cautela cautelous cautelously cautelousness cautels cauter cauterant cauterants cauteries cauterisation cauterisations cauterise cauterised cauterises cauterising cauterism cauterisms cauterization cauterizations cauterize cauterized cauterizer cauterizes cauterizing cauters cautery cautio caution cautionaries cautionary cautioned cautioner cautioners cautiones cautioning cautionings cautionries cautionry cautions cautious cautiously cautiousness cautiousnesses cautivo cauves cav cava cavae cavaedia cavaedium caval cavalcade cavalcaded cavalcades cavalcading cavalero cavaleros cavaletti cavalier cavaliere cavaliered cavalieres cavalieri cavaliering cavalierish cavalierishness cavalierism cavalierisms cavalierly cavalierness cavaliernesses cavaliero cavaliers cavaliership cavalla cavallas cavalletti cavallies cavally cavalries cavalry cavalryman cavalrymen cavascope cavass cavasses cavate cavated cavatina cavatinas cavatine cavayard cavdia cave cavea caveae caveat caveated caveatee caveating caveator caveators caveats caveatted caveatting caved cavefish cavefishes cavekeeper cavel cavelet cavelike cavels caveman cavemen cavendish cavendishes caver cavern cavernal caverned cavernicolous caverning cavernitis cavernlike cavernoma cavernous cavernously caverns cavernulous cavers caves cavesson cavessons cavetti cavetto cavettos cavey cavia caviar caviare caviares caviarie caviaries caviars cavicorn cavicorns cavie cavier caviers cavies caviidae cavil cavilation caviled caviler cavilers caviling cavilingly cavilingness cavilings cavillation cavillations cavillatory cavilled caviller cavillers cavilling cavillingly cavillingness cavillings cavillous cavilous cavils cavin caving cavings cavish cavitand cavitands cavitary cavitate cavitated cavitates cavitating cavitation cavitations caviteno cavitied cavities cavity caviya cavort cavorted cavorter cavorters cavorting cavorts cavu cavum cavus cavy cavyyard caw cawed cawing cawings cawk cawker cawkers cawks cawky cawl cawney cawnie cawny cawquaw caws caxiri caxon caxons caxton cay cayenne cayenned cayennes cayleyan cayman caymans caynard cayos cays cayuca cayuco cayuga cayugas cayuse cayuses caza cazibi cazimi cazique caziques cañada cañadas cb cbc cc ccesser cchaddoorck ccid ccitt cckw ccm ccw ccws cd cdf cdg cdr ce ceanothus ceanothuses cearin ceas cease ceased ceasefire ceasefires ceaseless ceaselessly ceaselessness ceaselessnesses ceases ceasing ceasings ceasmic ceaze ceazed ceazes ceazing cebadilla cebadillas cebell cebian cebid cebidae cebids cebil cebine ceboid ceboids cebollite cebu cebuan cebuano cebuella cebur cebus ceca cecal cecally cecca cecchine cecidiologist cecidiology cecidium cecidogenous cecidologist cecidology cecidomyian cecidomyidae cecidomyiid cecidomyiidous cecil cecilite cecils cecities cecitis cecitises cecity cecograph cecomorphic cecopexy cecostomy cecotomy cecropia cecropiaceae cecropias cecum cecums cecutiencies cecutiency cedar cedarbird cedarbirds cedared cedarn cedars cedarware cedarwood cedarwoods cedary cede ceded cedens cedent ceder ceders cedes cedi cedilla cedillas ceding cedis cedrat cedrate cedrates cedre cedrela cedrelaceous cedrene cedrin cedrine cedriret cedrium cedrol cedron cedrus cedry cedula cedulas cedule ceduous cee ceennacuelum cees cefaclor cefaclors cefobid cefoperazone cefotaxime ceftazidime ceftin ceftriaxone cefuroxime cegep cegeps ceiba ceibas ceibo ceibos ceil ceile ceiled ceiler ceilers ceili ceilidh ceilidhe ceilidhs ceiling ceilinged ceilings ceilingward ceilingwards ceilis ceilometer ceilometers ceils ceint ceinte ceinture ceintures ceja cel celadon celadonite celadons celandine celandines celarent celastraceae celastraceous celastrus celation celative celature cele celeb celebe celebes celebrant celebrants celebrate celebrated celebratedly celebratedness celebratednesses celebrater celebrates celebrating celebration celebrationis celebrations celebrative celebrator celebrators celebratory celebre celebres celebret celebrious celebrities celebrity celebrityhood celebs celemin celemines celeomorph celeomorphic celeriac celeriacs celeries celerities celerity celery celesta celestas celeste celestes celestial celestialise celestiality celestialize celestialized celestially celestialness celestials celestify celestina celestine celestines celestite celestites celestitude celeusma celiac celiacs celiadelphus celiagra celialgia celibacies celibacy celibataire celibatarian celibate celibates celibatic celibatist celibatory celidographer celidography celiectasia celiectomy celiemia celiitis celiocele celiocentesis celiocolpotomy celiocyesis celiodynia celioelytrotomy celioenterotomy celiogastrotomy celiohysterotomy celiolymph celioma celiomyalgia celiomyodynia celiomyomectomy celiomyomotomy celiomyositis celioncus celioparacentesis celiopyosis celiorrhaphy celiorrhea celiosalpingectomy celiosalpingotomy celioschisis celioscope celioscopy celiotomies celiotomy celite cell cella cellae cellager cellar cellarage cellarages cellared cellarer cellarers cellaress cellaret cellarets cellarette cellarettes cellaring cellarist cellarists cellarless cellarman cellarmen cellarous cellars cellarway cellarwoman cellated cellblock cellblocks celled cellepore celli celliferous celliform cellifugal celling cellipetal cellist cellists cellmate cellmates cello cellobiose cellobioses cellocut celloid celloidin celloidins celloist cellophane cellophanes cellos cellose celloses cellphone cellphones cells cellular cellularities cellularity cellularly cellulars cellulase cellulases cellulate cellulated cellulating cellulation cellule cellules cellulicidal celluliferous cellulifugal cellulifugally cellulin cellulipetal cellulipetally cellulite cellulites cellulitis cellulitises cellulocutaneous cellulofibrous celluloid celluloided celluloids cellulolytic cellulose cellulosed celluloses cellulosic cellulosics cellulosid cellulosing cellulosities cellulosity cellulotoxic cellulous celom celoma celomata celoms celoscope celosia celosias celotex celotexes celotomies celotomy cels celsian celsitude celsitudes celsius celt celtic celticist celtiform celtis celtium celts celtuce celure cembali cembalist cembalists cembalo cembalon cembalos cembra cembras cement cementa cemental cementation cementations cementatory cemented cementer cementers cementification cementing cementite cementites cementitious cementless cementlike cementmaker cementmaking cementoblast cementoma cements cementum cementums cementwork cemetaries cemetary cemeterial cemeteries cemetery cemitare cemitares cen cenacle cenacles cenaculum cenanthous cenanthy cenation cenatory cencerro cencerros cenchrus cendre cendré cene cenestheses cenesthesia cenesthesias cenesthesis cenesthetic cenizo cenobe cenobian cenobies cenobite cenobites cenobitic cenobitical cenobitically cenobitism cenobium cenoby cenogamy cenogeneses cenogenesis cenogenetic cenogenetically cenogonous cenosite cenosity cenospecies cenospecific cenospecifically cenotaph cenotaphic cenotaphies cenotaphs cenotaphy cenote cenotes cenozoic cenozoology cens cense censed censer censerless censers censes censing censitaire censive censor censorable censorate censored censorial censorian censoring censorious censoriously censoriousness censoriousnesses censors censorship censorships censual censurabilities censurability censurable censurableness censurablenesses censurably censure censured censureless censurer censurers censures censureship censuring census censused censuses censusing cent centage centages centai cental centals centare centares centas centaur centaurdom centaurea centaureas centauress centauri centaurial centaurian centauric centauries centaurium centauromachia centauromachy centaurs centaurus centaury centavo centavos centena centenar centenarian centenarianism centenarianisms centenarians centenaries centenary centenier centeniers centenionales centenionalis centennia centennial centennially centennials centennium center centerable centerboard centerboards centered centeredly centeredness centerednesses centerer centerfield centerfold centerfolds centering centerings centerless centerline centerlines centermost centerpiece centerpieces centerpunch centers centervelic centerward centerwise centeses centesimal centesimally centesimate centesimation centesimi centesimo centesimos centesis centesm centetid centgener centgrave centi centiar centiare centiares centibar centiday centifolious centigrade centigrado centigram centigramme centigrammes centigrams centile centiles centiliter centiliters centilitre centilitres centillion centillions centillionth centillionths centiloquy centime centimes centimeter centimeters centimetre centimetres centimetric centimo centimolar centimorgan centimorgans centimos centinel centinell centinells centinels centinody centinormal centipedal centipede centipedes centiplume centipoise centipoises centistere centistoke centner centners cento centoist centoists centon centonate centonel centonell centonells centonels centones centonical centonism centonist centonists centonization centos centra centrad central centrale centraler centrales centralest centralia centralisation centralisations centralise centralised centraliser centralisers centralises centralising centralism centralisms centralist centralistic centralists centralities centrality centralization centralizations centralize centralized centralizer centralizers centralizes centralizing centrally centralness centrals centranth centranthus centrarchid centrarchidae centrarchoid centration centraxonial centre centreable centreboard centreboards centred centref centrefold centrefolds centreing centreings centreless centreline centrelines centremost centrepiece centrepieces centrer centres centrev centrex centric centrical centricality centrically centricalness centricalnesses centricipital centriciput centricities centricity centries centriffed centrifugal centrifugalisation centrifugalisations centrifugalise centrifugalised centrifugalises centrifugalising centrifugalism centrifugalisms centrifugalization centrifugalizations centrifugalize centrifugalized centrifugalizes centrifugalizing centrifugaller centrifugally centrifugals centrifugate centrifugation centrifugations centrifuge centrifuged centrifugence centrifugences centrifuges centrifuging centring centrings centriole centrioles centripetal centripetalism centripetalisms centripetally centripetence centripetency centriscid centriscidae centrisciform centriscoid centrism centrisms centrist centrists centro centroacinar centrobaric centrobarical centrocercus centroclinal centrode centrodes centrodesmose centrodesmus centrodorsal centrodorsally centroid centroidal centroids centrolecithal centrolepidaceous centrolinead centrolineal centrolobium centromere centromeres centromeric centronote centronucleus centroplasm centropomidae centropomus centropristis centropus centrosema centrosome centrosomes centrosomic centrospermae centrosphere centrospheres centrosymmetric centrosymmetrical centrosymmetry centrum centrums centrutra centry cents centu centum centums centumvir centumviral centumvirate centumvirates centumviri centunculus centuple centupled centuples centuplicate centuplicated centuplicates centuplicating centuplication centuplications centupling centuply centure centuria centurial centuriate centuriation centuriations centuriator centuriators centuried centuries centurion centurions centurist century ceo ceonocyte ceorl ceorlish ceorls cep cepa cepaceous cepe cepes cephadia cephaeline cephala cephalad cephalagra cephalagras cephalalgia cephalalgias cephalalgic cephalalgy cephalanthera cephalanthium cephalanthous cephalaspid cephalaspida cephalaspis cephalate cephaldemae cephalemia cephaletron cephalexin cephalexins cephalhematoma cephalhydrocele cephalic cephalically cephalics cephalin cephaline cephalins cephalisation cephalisations cephalism cephalitis cephalitises cephalization cephalizations cephaloauricular cephalob cephalobidae cephalobranchiate cephalocathartic cephalocaudal cephalocele cephaloceles cephalocentesis cephalocercal cephalochord cephalochordal cephalochordata cephalochordate cephalochordates cephaloclasia cephaloclast cephalocone cephaloconic cephalocyst cephalodia cephalodiscid cephalodium cephalodymia cephalodymus cephalodynia cephalofacial cephalogenesis cephalogram cephalograph cephalohematoma cephalohumeral cephalohumeralis cephaloid cephalology cephalom cephalomancy cephalomant cephalomelus cephalomenia cephalomeningitis cephalomere cephalometer cephalometers cephalometric cephalometries cephalometry cephalomotor cephalomyitis cephalon cephalonasal cephalopagus cephalopathy cephalopharyngeal cephalophine cephalophorous cephalophyma cephaloplegia cephaloplegic cephalopod cephalopoda cephalopodan cephalopodans cephalopodic cephalopodous cephalopods cephalopterus cephalorachidian cephalorhachidian cephaloridine cephaloridines cephalosome cephalospinal cephalosporin cephalosporins cephalostyle cephalotaceae cephalotaceous cephalotaxaceae cephalotaxus cephalotheca cephalothecal cephalothin cephalothins cephalothoraces cephalothoracic cephalothoracopagus cephalothorax cephalothoraxes cephalotome cephalotomies cephalotomy cephalotractor cephalotribe cephalotripsy cephalotrocha cephalotus cephalous cepheid cepheids cephen cepheus cephid cepous cepphus ceps cepter ceptor cequi cer cera ceraceous cerago ceral ceramal ceramals cerambycid cerambycidae ceramiaceous ceramic ceramicist ceramicists ceramicite ceramics ceramidium ceramist ceramists ceramium ceramographic ceramographies ceramography cerapteryx cerargyrite cerargyrites ceras cerasein cerasin cerasins cerastes cerastium cerastiums cerat cerata cerate ceratectomy cerated cerates ceratiasis ceratiid ceratin ceratinous ceratins ceratioid ceration ceratite ceratitic ceratitis ceratitises ceratitoid ceratium ceratoblast ceratobranchial ceratocricoid ceratocystis ceratodontidae ceratodus ceratoduses ceratofibrous ceratoglossal ceratoglossus ceratohyal ceratohyoid ceratoid ceratomandibular ceratomania ceratonia ceratopetalum ceratophyllaceae ceratophyllaceous ceratophyllum ceratophyte ceratopogon ceratopogonidae ceratopsia ceratopsian ceratopsians ceratopsid ceratopsidae ceratopsids ceratopteridaceous ceratopteris ceratorhine ceratosaur ceratosaurus ceratospongian ceratostomataceae ceratostomella ceratotheca ceratothecae ceratothecal ceratotherium ceratozamia ceraunia ceraunics ceraunite ceraunogram ceraunograph ceraunomancy ceraunophone ceraunoscope ceraunoscopy cerberean cerberian cerberus cercal cercaria cercariae cercarial cercarian cercarias cercariform cercelae cercelee cerci cercidiphyllaceae cercidiphyllum cercidium cercis cercises cercle cercocebus cercomonad cercopid cercopidae cercopithecid cercopithecidae cercopithecids cercopithecoid cercopithecoids cercopithecus cercopod cercospora cercosporella cercus cercuses cere cereal cerealian cerealin cerealism cerealist cerealists cerealose cereals cerebbella cerebella cerebellar cerebellic cerebellifugal cerebellipetal cerebellitis cerebellocortex cerebellopontile cerebellopontine cerebellorubral cerebellospinal cerebellous cerebellum cerebellums cerebra cerebral cerebralgia cerebralisation cerebralise cerebralism cerebralisms cerebralist cerebralists cerebralization cerebralize cerebrally cerebrals cerebrasthenia cerebrasthenic cerebrate cerebrated cerebrates cerebrating cerebration cerebrational cerebrations cerebri cerebric cerebricity cerebriform cerebriformly cerebrifugal cerebrin cerebripetal cerebritis cerebritises cerebrize cerebrocardiac cerebrogalactose cerebroganglion cerebroganglionic cerebroid cerebrology cerebroma cerebromalacia cerebromedullary cerebromeningeal cerebromeningitis cerebrometer cerebron cerebronic cerebroparietal cerebropathy cerebropedal cerebrophysiology cerebropontile cerebropsychosis cerebrorachidian cerebrosclerosis cerebroscope cerebroscopy cerebrose cerebrosensorial cerebroside cerebrosides cerebrosis cerebrospinal cerebrospinant cerebrosuria cerebrotomy cerebrotonia cerebrotonias cerebrotonic cerebrovascular cerebrovisceral cerebrum cerebrums cerecloth cerecloths cered cereless cerement cerements ceremonial ceremonialise ceremonialism ceremonialisms ceremonialist ceremonialists ceremonialize ceremonially ceremonialness ceremonials ceremoniary ceremonies ceremonious ceremoniously ceremoniousness ceremoniousnesses ceremony cerenkov cereous cerer cererite ceres ceresin ceresine ceresines ceresins cereus cereuses cerevis cerevisial cereza cerfoil cerge cerges ceria cerianthid cerianthoid cerias ceric ceride ceriferous cerigerous cerilla cerillo ceriman cerimans cerin cerine cering cerinthian ceriops ceriph ceriphs cerise cerises cerite cerites cerithioid cerium ceriums cermet cermets cern cerne cerned cernes cerning cerniture cernuous cero cerograph cerographer cerographic cerographical cerographies cerographist cerographists cerographs cerography ceroid ceroline cerolite ceroma ceromancies ceromancy ceromez ceroon ceroons cerophilous ceroplast ceroplastic ceroplastics ceroplasty ceros cerosin cerotate cerote cerotene cerotic cerotin cerotype cerotypes cerous ceroxyle ceroxylon cerrero cerrial cerriped cerripede cerris cerrises cert certain certainer certainest certainly certainness certainties certainty certes certhia certhiidae certie certif certifiability certifiable certifiableness certifiably certificate certificated certificates certificating certification certifications certificative certificator certificatories certificatory certified certifier certifiers certifies certify certifying certiorari certioraris certiorate certiorating certioration certis certitude certitudes certosa certose certosina certosino certs certy cerule cerulean ceruleans cerulein ceruleins ceruleite ceruleolactite ceruleous cerulescent ceruleum cerulific cerulignol cerulignone ceruloplasmin ceruloplasmins cerumen cerumens ceruminal ceruminiferous ceruminous cerumniparous ceruse ceruses cerusite cerusites cerussite cerussites cervalet cervantes cervantic cervantite cervelas cervelases cervelat cervelats cerveliere cervelliare cervelliere cervical cervicaprine cervicectomy cervices cervicicardiac cervicide cerviciplex cervicispinal cervicitis cervicitises cervicoauricular cervicoaxillary cervicobasilar cervicobrachial cervicobregmatic cervicobuccal cervicodorsal cervicodynia cervicofacial cervicographies cervicography cervicohumeral cervicolabial cervicolingual cervicolumbar cervicomuscular cerviconasal cervicorn cervicoscapular cervicothoracic cervicovaginal cervicovesical cervid cervidae cervids cervine cervisia cervisial cervix cervixes cervoid cervuline cervus ceryl ceryle cesar cesare cesarean cesareans cesarevich cesareviches cesarevitch cesarevitches cesarevna cesarevnas cesarewitch cesarewitches cesarian cesarians cesarolite cesious cesium cesiums cespititious cespititous cespitose cespitosely cespitulose cess cessant cessantly cessation cessations cessative cessavit cesse cessed cesser cessers cesses cessible cessing cessio cession cessionaire cessionaries cessionary cessionee cessions cessment cessor cesspipe cesspit cesspits cesspool cesspools cest cesta cestas ceste cesti cestida cestidae cestoda cestode cestodes cestoi cestoid cestoidean cestoideans cestoids ceston cestos cestoses cestraciont cestraction cestrian cestrum cestui cestuis cestum cestus cestuses cestuy cesura cesurae cesural cesuras cesure cesures cetacea cetacean cetaceans cetaceous cetaceum cetane cetanes cetchup cete cetene ceteosaur ceteosaurus ceteosauruses cetera ceterach ceterachs cetes ceti cetic ceticide cetin cetiosaurian cetiosaurus cetological cetologies cetologist cetologists cetology cetomorphic cetonia cetonian cetoniidae cetorhinid cetorhinidae cetorhinoid cetorhinus cetotolite cetraria cetraric cetrarin cetrimide cetus cetyl cetylene cetylic cetyls cetywall cetywalls cevadilla cevadillas cevadilline cevadine cevapcici cevian ceviche ceviches cevine cevitamic ceylanite ceylanites ceylon ceylonese ceylonite ceylonites ceyssatite cf cfc cfd cfh cfi cfm cfs cg cgm cgs ch cha chaa chab chabasie chabasite chabazite chabazites chaber chablis chabot chabouk chabouks chabuk chabuks chabutra chacate chaccon chace chaced chaces chachalaca chachalakas chachia chachka chachkas chacing chack chacked chacker chacking chackle chackled chackler chackling chacks chacma chacmas chaco chacoes chacoli chacona chaconia chaconias chaconne chaconnes chacos chacra chacte chacun chad chadacryst chadar chadarim chadars chaddar chaddars chaddor chaddors chadelle chadian chadic chadless chadlock chador chadors chadri chads chaebol chaenactis chaenomeles chaenomeleses chaenopsis chaeronea chaeta chaetae chaetal chaetiferous chaetodipterus chaetodon chaetodons chaetodont chaetodontid chaetodontidae chaetognath chaetognatha chaetognathan chaetognathous chaetognaths chaetophobia chaetophoraceous chaetophorous chaetopod chaetopodan chaetopodous chaetopods chaetopterin chaetosema chaetotactic chaetotaxy chafe chafed chafer chaferies chafers chafery chafes chafewax chafeweed chaff chaffcutter chaffed chaffer chaffered chafferer chafferers chafferies chaffering chaffers chaffery chaffier chaffiest chaffinch chaffinches chaffiness chaffing chaffingly chaffings chaffless chafflike chaffman chaffron chaffrons chaffs chaffseed chaffwax chaffweed chaffy chafing chaft chafted chafts chaga chagal chagan chagans chagatai chagga chagigah chagoma chagrin chagrined chagrining chagrinned chagrinning chagrins chaguar chagul chahar chahars chahta chai chain chainage chainbearer chainbrake chainbrakes chainbreak chaine chained chainer chaines chainette chaining chainless chainlet chainlets chainlike chainmaker chainmaking chainman chainmen chainomatic chainon chainplate chainplates chains chainsaw chainsawed chainsawing chainsaws chainshot chainshots chainsman chainsmen chainsmith chainstitch chainstitches chainwale chainwheel chainwheels chainwork chainworks chair chairbed chairbeds chairborne chairbound chairdays chaired chairer chairing chairladies chairlady chairless chairlift chairlifts chairmaker chairmaking chairman chairmaned chairmaning chairmanned chairmanning chairmans chairmanship chairmanships chairmen chairmender chairmending chairperson chairpersons chairs chairwarmer chairway chairwoman chairwomen chais chaise chaiseless chaises chait chaitra chaitya chaityas chaja chaka chakar chakari chakazi chakdar chakobu chakra chakram chakras chakravartin chaksi chal chalaco chalah chalahs chalan chalana chalaned chalaning chalans chalastic chalaza chalazae chalazal chalazas chalaze chalazia chalazian chalaziferous chalazion chalazions chalazium chalazogam chalazogamic chalazogamies chalazogamy chalazoidite chalazoin chalcanth chalcanthite chalcanthites chalcedonian chalcedonic chalcedonies chalcedonous chalcedony chalcedonyx chalcedonyxes chalchihuitl chalchuite chalcid chalcidae chalcidfly chalcidian chalcidica chalcidicum chalcidid chalcididae chalcidiform chalcidoid chalcids chalcis chalcites chalcocite chalcocites chalcogen chalcogenide chalcogenides chalcogens chalcograph chalcographer chalcographers chalcographic chalcographical chalcographies chalcographist chalcographists chalcography chalcolite chalcolithic chalcomancy chalcomenite chalcon chalcone chalcophanite chalcophile chalcophyllite chalcopyrite chalcopyrites chalcosiderite chalcosine chalcostibite chalcostigma chalcotrichite chalcotript chalcus chaldaic chaldaism chaldean chaldee chalder chalders chaldese chaldron chaldrons chaleh chalehs chalet chalets chalice chaliced chalices chalicosis chalicothere chalicotheres chalicotheriid chalicotherioid chalinine chalk chalkboard chalkboards chalkcutter chalked chalker chalkface chalkfaces chalkier chalkiest chalkiness chalkinesses chalking chalklike chalkline chalkography chalkone chalkos chalkosideric chalkotheke chalkpit chalkpits chalkrail chalks chalkstone chalkstones chalkstony chalkworker chalky challa challah challahs challan challaned challaning challans challas challengable challenge challengeable challenged challengee challengeful challenger challengers challenges challenging challengingly challie challies challiho challihos challis challises challot challote challoth chally chalmer chalon chalone chalones chalonic chalons chalot chaloth chaloupe chalque chals chalta chaluka chalumeau chalumeaux chalutz chalutzes chalutzim chalybean chalybeate chalybeates chalybeous chalybite chalybites cham chama chamade chamades chamaea chamaecranial chamaecrista chamaecyparis chamaecytisus chamaedaphne chamaeleo chamaeleon chamaeleonidae chamaeleons chamaeleontidae chamaemelum chamaephyte chamaephytes chamaeprosopic chamaerops chamaerrhine chamal chamar chambellan chamber chamberdeacon chambered chamberer chamberers chamberfellow chambering chamberings chamberlain chamberlainry chamberlains chamberlainship chamberlainships chamberlet chamberleted chamberletted chambermaid chambermaids chamberpot chamberpots chambers chambertin chamberwoman chambranle chambranles chambray chambrays chambre chambrel chambré chambul chamecephalic chamecephalous chamecephalus chamecephaly chameleon chameleonic chameleonise chameleonize chameleonlike chameleons chamelot chamelots chametz chametzes chamfer chamfered chamferer chamfering chamfers chamfrain chamfrains chamfron chamfrons chamisal chamisals chamise chamises chamiso chamisos chamite chamlet chamlets chamm chamma chammied chammies chammy chammying chamois chamoised chamoises chamoising chamoisite chamoix chamoline chamomile chamomiles chamosite chamotte champ champac champaca champacas champacol champacs champagne champagned champagneless champagnes champagning champagnize champagnized champagnizing champaign champaigns champain champak champaka champaks champart champarts champe champed champer champerator champers champerses champert champerties champertor champertous champerty champian champignon champignons champine champing champion championed championess championesses championing championise championize championless championlike champions championship championships champlev champleva champleve champleves champlevé champlevés champs champy chams chamsin chan chanal chanar chance chanceable chanceably chanced chanceful chancefully chancefulness chancel chanceled chanceless chancelled chancelleries chancellery chancellor chancellorate chancelloress chancellories chancellorism chancellors chancellorship chancellorships chancellorsville chancellory chancelor chancelry chancels chanceman chancemen chancer chancered chanceries chancering chancers chancery chances chancewise chancey chanche chanchito chancier chanciest chancily chanciness chancinesses chancing chancito chanco chancre chancres chancriform chancroid chancroidal chancroids chancrous chancy chandala chandam chandelier chandeliered chandeliers chandelle chandelled chandelles chandelling chandi chandler chandleress chandleries chandlering chandlerings chandlerly chandlers chandlery chandoo chandrakanta chandrakhi chandry chandu chandui chandul chanduy chaneled chaneling chanelled chanfrin chanfron chanfrons chang changa changable changan changar change changeabilities changeability changeable changeableness changeablenesses changeably changeabout changed changedale changedness changeful changefully changefulness changefulnesses changeless changelessly changelessness changelessnesses changeling changelings changemaker changement changeover changeovers changepocket changer changers changes changeup changeups changing changs changtzu chank chankings chanks channel channelbill channeled channeler channelers channeling channelings channelisation channelisations channelise channelised channelises channelising channelization channelizations channelize channelized channelizes channelizing channelled channeller channellers channelling channelly channels channelure channelwards channer channers chanoyu chanoyus chanson chansonette chansonettes chansonnette chansonnier chansonniers chansons chanst chant chantable chantage chantages chantant chantarelle chantarelles chantecler chanted chantefable chantepleure chanter chanterelle chanterelles chanters chantership chanteur chanteuse chanteuses chantey chanteyman chanteys chanticleer chanticleers chantie chantier chanties chantilly chanting chantingly chantings chantlate chantlike chantment chantor chantors chantress chantresses chantries chantry chants chanty chanukah chao chaogenous chaologies chaology chaona chaonas chaori chaos chaoses chaotic chaotical chaotically chaoticness chaoua chaoush chap chapah chapapote chaparajos chaparejos chaparral chaparrals chaparraz chaparro chapati chapaties chapatis chapatti chapatties chapattis chapatty chapbook chapbooks chape chapeau chapeaus chapeaux chaped chapel chapeled chapeless chapelet chapelgoer chapelgoing chapeling chapelize chapellage chapellany chapelled chapelling chapelman chapelmaster chapelmasters chapelries chapelry chapels chapelward chaperno chaperon chaperonage chaperonages chaperone chaperoned chaperones chaperoning chaperonless chaperons chapes chapess chapesses chapfallen chapfallenly chapin chapiter chapiters chapitle chapitral chapka chapkas chaplain chaplaincies chaplaincy chaplainries chaplainry chaplains chaplainship chaplainships chaplanry chapless chaplet chapleted chaplets chaplin chapman chapmanship chapmen chapon chapote chapourn chapournet chapournetted chappal chappals chappati chappatis chappaul chappe chapped chapper chappess chappesses chappie chappier chappies chappiest chappin chapping chappow chappy chaprasi chaprassi chaprassies chaprassis chaprassy chaps chapstick chapsticks chapt chaptalisation chaptalisations chaptalise chaptalised chaptalises chaptalising chaptalization chaptalizations chaptalize chaptalized chaptalizes chaptalizing chapter chapteral chaptered chapterful chapterhouse chapterhouses chaptering chapters chaptrel chaptrels chapultepec chapwoman chaqueta chaquetas char chara charabanc charabancer charabancs charac characeae characeous characetum characid characidae characids characin characine characinid characinidae characinoid characins charact character charactered characterful characterial characterical characteries charactering characterisable characterisation characterisations characterise characterised characteriser characterisers characterises characterising characterism characterisms characterist characteristic characteristical characteristically characteristicalness characteristicness characteristics characterizable characterization characterizations characterize characterized characterizer characterizers characterizes characterizing characterless characterlessness characterlessnesses characterological characterologically characterologies characterologist characterologists characterology characters characterstring charactery charactonym characts charade charades charadrii charadriidae charadriiform charadriiformes charadrine charadrioid charadrius charales charanga charangas charango charangos chararas charas charases charbocle charbon charbonnier charbroil charbroiled charbroiler charbroilers charbroiling charbroils charcia charco charcoal charcoaled charcoaling charcoalist charcoals charcoaly charcuterie charcuteries charcutier charcutiers chard chardock chardonnay chardonnays chards chare charecin chared charely charer chares charet chareter charets charette chargable charge chargeabilities chargeability chargeable chargeableness chargeablenesses chargeably chargeant charged chargedness chargee chargeful chargehand chargehands chargehouse chargeless chargeling chargeman chargenurse chargenurses charger chargers charges chargesheet chargesheets chargeship chargfaires charging chargrill chargrilled chargrilling chargrills charie charier charies chariest charily charina chariness charinesses charing chariot charioted chariotee charioteer charioteered charioteering charioteers charioteership charioting chariotlike chariotman chariotry chariots chariotway charism charisma charismas charismata charismatic charismatically charismatics charisms charisticary charitable charitableness charitablenesses charitably charitative charities charity charityless charivan charivari charivaried charivariing charivaris chark charka charkas charked charkha charkhana charkhas charking charks charladies charlady charlatan charlatanic charlatanical charlatanically charlatanish charlatanism charlatanisms charlatanistic charlatanries charlatanry charlatans charlatanship charlemagne charles charleston charlestoned charlestoning charlestons charlesworth charlet charley charleyhorse charleys charlie charlies charlock charlocks charlotte charlottes charlottesville charlottetown charm charmed charmedly charmel charmer charmers charmeuse charmeuses charmful charmfully charmfulness charming charminger charmingest charmingly charmingness charmless charmlessly charmonium charms charmwise charneco charnecos charnel charnels charnockite charnockites charnu charolais charon charophyceae charophyta charoses charoset charoseth charoseths charosets charpai charpais charpie charpies charpit charpoy charpoys charque charqued charqui charquid charquis charr charras charre charred charrette charrier charriest charring charro charronia charros charrs charry chars charshaf charsingha chart charta chartable chartaceous chartae chartas chartbuster chartbusters charted charter charterable charterage chartered charterer charterers charterhouse chartering charterism charterless chartermaster charterparties charterparty charters charthouse charthouses charting chartings chartism chartisms chartist chartists chartless chartlet chartographer chartographic chartographical chartographically chartographies chartographist chartography chartology chartometer chartophylacia chartophylacium chartophylax chartophylaxes chartreuse chartreuses chartreux chartroom chartrooms charts chartula chartulae chartularies chartulary chartulas charuk charvet charwoman charwomen chary charybdis chas chasable chase chaseable chased chaseport chaseports chaser chasers chases chashitsu chasid chasing chasings chasm chasma chasmal chasmed chasmic chasmier chasmiest chasmogamic chasmogamies chasmogamous chasmogamy chasmophyte chasms chasmy chass chassa chassad chassaing chasse chassed chasseed chasseing chasselas chassepot chassepots chasses chasseur chasseurs chassignite chassis chassé chassés chaste chastelain chastely chasten chastened chastener chasteners chasteness chastenesses chastening chasteningly chastenment chastenments chastens chaster chastest chasteweed chastiment chastisable chastise chastised chastisement chastisements chastiser chastisers chastises chastising chastities chastity chastize chastizer chasty chasuble chasubled chasubles chat chataka chatchka chatchkas chatchke chatchkes chateau chateaubriand chateaubriands chateaugray chateaus chateaux chatelain chatelaine chatelaines chatelainry chatelains chatelet chatellany chateura chateus chathamite chathamites chati chatline chatlines chaton chatons chatoyance chatoyances chatoyancies chatoyancy chatoyant chatoyants chatroom chatrooms chats chatsome chatta chattable chattack chattah chattanooga chattas chattation chatted chattel chattelhood chattelisation chattelise chattelism chattelization chattelize chattelized chattelizing chattels chattelship chatter chatteration chatterbag chatterbox chatterboxes chattered chatterer chatterers chattererz chattering chatteringly chatterings chattermag chattermagging chatters chattery chatti chattier chatties chattiest chattily chattiness chattinesses chatting chattingly chattis chatty chatwood chaucer chaucerian chaudfroid chaudfroids chaudron chaufe chaufed chaufer chaufers chaufes chauff chauffage chauffed chauffer chauffers chauffeur chauffeured chauffeuring chauffeurs chauffeurship chauffeuse chauffeused chauffeuses chauffeusing chauffing chauffs chaufing chauk chaukidari chauldron chaule chaulmaugra chaulmoogra chaulmoogras chaulmoograte chaulmoogric chaulmugra chaulmugras chaum chaumer chaumers chaumiere chaumontel chauna chaunce chaunced chaunces chauncing chaunge chaunged chaunges chaunging chaunoprockt chaunt chaunted chaunter chaunters chaunting chauntress chauntresses chauntries chauntry chaunts chauri chaus chausse chaussee chausseemeile chaussees chausses chaussure chaussures chautauqua chautauquas chaute chauth chauve chauvin chauvinism chauvinisms chauvinist chauvinistic chauvinistically chauvinists chauvins chave chavel chavender chavenders chaver chavibetol chavicin chavicine chavicol chavish chaw chawan chawbacon chawbacons chawbone chawbuck chawdron chawdrons chawed chawer chawers chawing chawk chawl chawle chawn chaws chawstick chay chaya chayaroot chayas chayote chayotes chayroot chayroots chays chazan chazanim chazans chazanut chazerai chazzan chazzanim chazzans chazzanut chazzen chazzenim chazzens chaîné che cheap cheapen cheapened cheapener cheapeners cheapening cheapens cheaper cheapery cheapest cheapie cheapies cheaping cheapish cheapishly cheapjack cheapjacks cheaply cheapness cheapnesses cheapo cheapos cheaps cheapskate cheapskates cheapy cheare cheat cheatable cheatableness cheated cheatee cheater cheateries cheaters cheatery cheatgrass cheating cheatingly cheatings cheatrie cheatry cheats chebacco chebec chebeck chebecs chebel chebog chebule chebulic chebulinic chechako chechakoes chechakos chechaqua chechaquas chechaquo chechaquos chechem chechia chechias chechoslovak check checkable checkage checkback checkbird checkbit checkbite checkbits checkbook checkbooks checkclerk checkclerks checke checked checker checkerbellies checkerbelly checkerberries checkerberry checkerbloom checkerblooms checkerboard checkerboarded checkerboarding checkerboards checkerbreast checkered checkering checkerist checkers checkerspot checkerwise checkerwork checkery checkhook checking checklaton checklatons checkle checkless checkline checklist checklists checkman checkmark checkmarked checkmarking checkmarks checkmate checkmated checkmates checkmating checkoff checkoffs checkout checkouts checkpoint checkpointed checkpointing checkpoints checkrack checkrail checkrails checkrein checkreins checkroll checkroom checkrooms checkrope checkrow checkrowed checkrower checkrowing checkrows checks checkstone checkstrap checkstring checksum checksummed checksumming checksums checkup checkups checkweigher checkweighers checkweighman checkweighmen checkwork checkwriter checky chedar chedarim cheddar cheddaring cheddars cheddary cheddite cheddites cheder cheders chedite chedites chedlock chedreux chee cheecha cheechaco cheechako cheechakoes cheechakos cheechalko cheechalkoes cheechalkos cheeful cheefuller cheefullest cheek cheekbone cheekbones cheeked cheeker cheekful cheekfuls cheekier cheekiest cheekily cheekiness cheekinesses cheeking cheekish cheekless cheekpiece cheekpieces cheekpouch cheekpouches cheeks cheekteeth cheektooth cheeky cheeney cheep cheeped cheeper cheepers cheepier cheepiest cheepily cheepiness cheeping cheeps cheepy cheer cheered cheerer cheerers cheerful cheerfulise cheerfulize cheerfuller cheerfullest cheerfully cheerfulness cheerfulnesses cheerfulsome cheerier cheeriest cheerily cheeriness cheerinesses cheering cheeringly cheerio cheerios cheerishness cheerishnesses cheerlead cheerleader cheerleaders cheerleading cheerleads cheerled cheerless cheerlessly cheerlessness cheerlessnesses cheerly cheero cheeros cheers cheerses cheery cheese cheeseboard cheeseboards cheesebox cheeseburger cheeseburgers cheesecake cheesecakes cheesecloth cheesecloths cheesecurd cheesecutter cheesecutters cheesed cheeseflower cheesehopper cheesehoppers cheeselep cheeselike cheeselip cheesemaker cheesemaking cheesemite cheesemites cheesemonger cheesemongering cheesemongerly cheesemongers cheesemongery cheeseparer cheeseparers cheeseparing cheeseparings cheesepress cheesepresses cheeser cheesery cheeses cheesetaster cheesetasters cheesevat cheesevats cheesewire cheesewires cheesewood cheesewoods cheesewring cheesewrings cheesier cheesiest cheesily cheesiness cheesinesses cheesing cheesy cheet cheetah cheetahs cheetal cheeter cheetie cheetul cheewink cheewinks cheezit chef chefdom chefdoms cheffed cheffing chefs chego chegoe chegoes chegre cheiceral cheilanthes cheilion cheilitis cheilitises cheiloplasties cheiloplasty cheiloschisis cheilosis cheilostomatous cheilotomies cheilotomy cheimaphobia cheimatophobia cheir cheiragra cheiranthus cheirognomy cheirography cheirolin cheiroline cheirology cheiromancy cheiromegaly cheiropatagium cheiropod cheiropodist cheiropody cheiropompholyx cheiroptera cheiropterygium cheirosophy cheirospasm cheirotherium cheka chekan chekas cheke cheken chekhov cheki chekist chekists chekker chekmak chekov chela chelae chelas chelaship chelaships chelatable chelate chelated chelates chelating chelation chelations chelator chelators chelem chelerythrin chelerythrine chelicer chelicera chelicerae cheliceral chelicerata chelicerate chelicerates chelicere chelicerous chelide chelidon chelidonate chelidonian chelidonic chelidonin chelidonine chelidonium chelifer cheliferous cheliform chelinga chelingas chelingo chelingos cheliped chelipeds chellean chello chelodine cheloid cheloidal cheloids chelone chelones chelonethida chelonia chelonian chelonians chelonid chelonidae cheloniid cheloniidae chelonin chelophore chelp cheluviation cheluviations chelyabinsk chelydra chelydre chelydridae chelydroid chelys chem chemakuan chemakum chemasthenia chemawinite chemesthesis chemiatric chemiatrist chemiatry chemic chemical chemicalisation chemicalise chemicalization chemicalize chemically chemicals chemick chemicked chemicker chemicking chemicoastrological chemicobiologic chemicobiological chemicobiology chemicocautery chemicodynamic chemicoengineering chemicoluminescence chemicoluminescent chemicomechanical chemicomineralogical chemicopharmaceutical chemicophysical chemicophysics chemicophysiological chemicovital chemics chemiculture chemigraph chemigrapher chemigraphic chemigraphically chemigraphy chemiloon chemiluminescence chemiluminescences chemiluminescent chemin cheminee chemins chemiosmotic chemiotactic chemiotaxic chemiotaxis chemiotropic chemiotropism chemiphotic chemis chemise chemises chemisette chemisettes chemism chemisms chemisorb chemisorbed chemisorbing chemisorbs chemisorption chemisorptions chemisorptive chemist chemistries chemistry chemists chemitype chemitypes chemitypies chemitypy chemizo chemmies chemmy chemo chemoattractant chemoattractants chemoautotroph chemoautotrophic chemoautotrophically chemoautotrophies chemoautotrophs chemoautotrophy chemoceptor chemokineses chemokinesis chemokinetic chemolysis chemolytic chemolyze chemonasties chemonasty chemonite chemopallidectomies chemopallidectomy chemopause chemophysiological chemophysiology chemoprevention chemopreventions chemoprophyalctic chemoprophylactic chemoprophylaxes chemoprophylaxis chemopsychiatric chemopsychiatries chemopsychiatry chemoreception chemoreceptions chemoreceptive chemoreceptivities chemoreceptivity chemoreceptor chemoreceptors chemoreflex chemoresistance chemos chemosensitive chemosensitivities chemosensitivity chemosensory chemoserotherapy chemoses chemosis chemosmoic chemosmoses chemosmosis chemosmotic chemosorb chemosorbed chemosorbing chemosorbs chemosorption chemosorptive chemosphere chemospheres chemospheric chemostat chemostats chemosterilant chemosterilants chemosurgeries chemosurgery chemosurgical chemosyntheses chemosynthesis chemosynthetic chemosynthetically chemotactic chemotactically chemotaxes chemotaxis chemotaxonomic chemotaxonomically chemotaxonomies chemotaxonomist chemotaxonomists chemotaxonomy chemotaxy chemotherapeutic chemotherapeutical chemotherapeutically chemotherapeuticness chemotherapeutics chemotherapies chemotherapist chemotherapists chemotherapy chemotic chemotroph chemotrophic chemotropic chemotropically chemotropism chemotropisms chempaduk chemurgic chemurgical chemurgically chemurgies chemurgy chemzyme chemzymes chen chena chenar chenars chende cheneau cheneaus cheneaux chenet chenets chenevixite chenfish cheng chengal chenica chenier chenille cheniller chenilles chenix chenixes chenopod chenopodiaceae chenopodiaceous chenopodiales chenopodium chenopods cheongsam cheongsams cheoplastic cheoplasty chepster cheque chequebook chequebooks chequed chequeen chequer chequerboard chequerboards chequered chequering chequers chequerwise chequerwork chequerworks cheques chequin chequing chequinn chequy cher cheralite cheralites cherchez chercock chere cherely cherem cheremis cheremiss cherems cherenkov chergui cherie cheries cherimolla cherimoya cherimoyas cherimoyer cherimoyers cherish cherishable cherished cherisher cherishers cherishes cherishing cherishingly cherishment cherishments chermes chermidae cherna chernites chernobyl chernozem chernozemic chernozems cherogril cherokee cherokees cheroot cheroots cherried cherrier cherries cherriest cherry cherryblossom cherrying cherrylike cherrypick cherrypicked cherrypicking cherrypicks cherrystone cherrystones chersonese chersoneses chert cherte chertier chertiest cherts cherty cherub cherubfish cherubfishes cherubic cherubical cherubically cherubim cherubimic cherubimical cherubims cherubin cherubins cherublike cherubs cherup cheruped cheruping cherups chervil chervils chervonei chervonets chervonetz chervontsi chesapeake chesboil chesboll chese cheselip cheshire cheshires chesil chesils cheskey cheskeys cheslep chesnut chesnuts cheson chesoun chess chessart chessboard chessboards chessdom chessel chessels chesser chesses chesset chessist chessman chessmen chessner chessom chesspiece chesspieces chessplayer chessplayers chesstree chessylite chessylites chest chested chesteine chester chesterbed chesterfield chesterfields chesterlite chestful chestfuls chestier chestiest chestily chestiness chestinesses chesting chestnut chestnuts chestnutty chests chesty chetah chetahs cheteau cheteaus cheteaux cheth cheths chetif chetive chetnik chetniks chetopod chetrum chetrums chettik chetty chetverik chetvert cheung chevachee chevachie chevage cheval chevalet chevalets chevalier chevaliers chevaline chevance chevaux cheve chevee chevelure chevelures cheven chevener chevens cheventayn cheverel cheverels cheveret cheveril cheverils cheveron cheverons cheverye cheveryes chevesaile chevesailes chevesne chevet chevetaine chevets cheveys chevied chevies cheville chevilles chevin chevins cheviot cheviots chevisance chevisances chevise chevon chevre chevres chevret chevrets chevrette chevrettes chevreuil chevrolet chevrolets chevron chevrone chevroned chevronel chevronelly chevronny chevrons chevronwise chevrony chevrotain chevrotains chevvy chevy chevying chew chewa chewable chewables chewbark chewed cheweler chewer chewers chewet chewets chewie chewier chewies chewiest chewiness chewinesses chewing chewink chewinks chews chewstick chewy cheyenne cheyennes cheyney cheyneys chez chg chge chhatri chi chia chiack chiacked chiacking chiackings chiacks chian chianti chiantis chiao chiarezza chiarezze chiarooscurist chiarooscuro chiarooscuros chiaroscurist chiaroscurists chiaroscuro chiaroscuros chias chiasm chiasma chiasmal chiasmas chiasmata chiasmatic chiasmatype chiasmatypies chiasmatypy chiasmi chiasmic chiasmodontid chiasms chiasmus chiasmuses chiastic chiastolite chiastolites chiastoneural chiastoneurous chiastoneury chiaus chiaused chiauses chiausing chiave chiavetta chiba chibcha chibchan chibinite chibol chibols chibouk chibouks chibouque chibouques chibrit chic chica chicadee chicago chicagoan chicagoans chicalote chicana chicanas chicane chicaned chicaner chicaneries chicaners chicanery chicanes chicaning chicanings chicano chicanos chicaric chicas chicayote chiccories chiccory chicer chicest chich chicha chicharra chichas chiches chichevache chichewa chichi chichicaste chichier chichiest chichili chichimecan chichipate chichipe chichis chichituna chichling chick chickabiddy chickadee chickadees chickamauga chickaree chickarees chickasaw chickasaws chickee chickees chickell chicken chickenberry chickenbill chickenbreasted chickened chickenfeed chickenhearted chickenheartedly chickenheartedness chickenhood chickening chickenpox chickenpoxes chickens chickenshit chickenshits chickenweed chickenwort chicker chickeree chickery chickhood chickies chickling chicklings chickories chickory chickowee chickowees chickpea chickpeas chicks chickstone chickweed chickweeds chickwit chicky chicle chiclero chicles chicly chicness chicnesses chico chicon chicons chicories chicory chicos chicot chicote chicqued chicquer chicquest chicquing chics chid chidden chide chided chider chiders chides chiding chidingly chidingness chidings chidlings chidra chief chiefage chiefdom chiefdoms chiefer chieferies chiefery chiefess chiefesses chiefest chiefish chiefless chiefling chieflings chiefly chiefries chiefry chiefs chiefship chiefships chieftain chieftaincies chieftaincy chieftainess chieftainesses chieftainries chieftainry chieftains chieftainship chieftainships chieftess chiefty chiel chield chields chiels chien chierete chievance chieve chiffchaff chiffchaffs chiffer chifferobe chifferobes chiffon chiffonade chiffonades chiffonier chiffoniers chiffonnier chiffonnieres chiffonniers chiffons chiffony chifforobe chifforobes chiffre chiffrobe chigetai chigetais chigga chiggak chigger chiggerflower chiggers chiggerweed chignon chignoned chignons chigoe chigoes chigre chigres chih chihfu chihuahua chihuahuas chik chikara chikaras chikee chikhor chikhors chikor chikors chiks chil chilacavote chilacayote chilalgia chilaria chilarium chilblain chilblained chilblains child childage childbear childbearing childbearings childbed childbeds childbirth childbirths childcare childcares childcrowing childcrowings childe childed childer childermas childes childhood childhoods childing childish childishly childishness childishnesses childkind childless childlessness childlessnesses childlier childliest childlike childlikeness childlikenesses childly childminder childminders childminding childness childnesses childproof childproofed childproofing childproofs childre children childrenite childridden childs childship childward childwife childwite chile chilean chileans chilectropion chilenite chiles chili chiliad chiliadal chiliadic chiliadron chiliads chiliaedron chiliagon chiliagons chiliahedra chiliahedron chiliahedrons chiliarch chiliarchia chiliarchies chiliarchs chiliarchy chiliasm chiliasms chiliast chiliastic chiliasts chiliburger chiliburgers chilicote chilicothe chilidium chilidog chilidogs chilies chilindre chiliomb chilipepper chilis chilitis chill chilla chillada chilladas chillagite chilled chiller chillers chillest chilli chillier chillies chilliest chillily chilliness chillinesses chilling chillingly chillings chillis chillish chillness chillnesses chillo chilloes chillroom chills chillsome chillum chillumchee chillums chilly chilodon chiloe chilognath chilognathan chilognathous chilogrammo chiloma chilomastix chilomata chilomeniscus chilomycterus chiloncus chiloplasty chilopod chilopoda chilopodan chilopodans chilopodous chilopods chilopsis chilostomatous chilostome chilotomies chilotomy chilte chiltern chilver chimachima chimaera chimaeras chimaeric chimaerical chimaerid chimaeridae chimaerids chimaerism chimaerisms chimaeroid chimakum chimango chimaphila chimar chimariko chimars chimb chimbe chimble chimbley chimbleys chimblies chimbly chimborazo chimbs chime chimed chimer chimera chimeral chimeras chimere chimeres chimeric chimerical chimerically chimericalness chimerid chimerids chimerism chimerisms chimers chimes chimesmaster chimichanga chimichangas chimin chiminage chiming chimla chimlas chimley chimleys chimney chimneyboard chimneyboards chimneybreast chimneybreasts chimneyed chimneyhead chimneying chimneyless chimneylike chimneyman chimneypiece chimneypieces chimneypot chimneys chimneystack chimneysweep chimneysweeper chimo chimonanthus chimopeelagic chimopelagic chimp chimpanzee chimpanzees chimps chimwini chin china chinaberries chinaberry chinachina chinachinas chinafish chinafy chinalike chinaman chinamania chinamaniac chinamen chinampa chinampas chinanta chinaphthol chinar chinaroot chinaroots chinars chinas chinatown chinaware chinawares chinawoman chinband chinbeak chinbone chinbones chincapin chincapins chinch chincha chinchayote chinche chincher chincherinchee chincherinchees chinches chinchier chinchiest chinchilla chinchillas chinchillette chinchillidae chinchillon chinchiness chinching chinchona chinchy chincloth chincof chincona chincough chincoughs chindee chindi chindit chindits chine chined chinela chinenses chines chinese chinfest ching chingma chingpo chinik chiniks chinin chining chiniofon chink chinkapin chinkapins chinkara chinkaras chinked chinker chinkerinchee chinkerinchees chinkers chinkie chinkier chinkies chinkiest chinking chinkle chinks chinky chinles chinless chinnam chinned chinner chinners chinnier chinniest chinning chinny chino chinoa chinoidin chinoidine chinois chinoiserie chinoiseries chinol chinoleine chinoline chinologist chinone chinones chinook chinookan chinooks chinos chinotoxine chinotti chinotto chinovnik chinovniks chinpiece chinquapin chinquapins chins chinse chinsed chinsing chinstrap chinstraps chint chints chintses chintz chintze chintzes chintzier chintziest chintzily chintziness chintzy chinwag chinwagged chinwagging chinwags chinwood chiococca chiococcine chiolite chionablepsia chionanthus chionodoxa chionodoxas chionophobia chiopin chios chiotilla chip chipboard chipboards chipchap chipchop chipewyan chiphead chipheads chiplet chipling chipmuck chipmucks chipmunk chipmunks chipochia chipochias chipolata chipolatas chipotle chipotles chippable chippage chipped chippendale chipper chippered chippering chippers chippewa chippewaian chippewas chippewyan chippie chippier chippies chippiest chipping chippings chipproof chippy chips chipses chipset chipsets chipwood chipyard chiquero chiquest chiquichiqui chiquichiquis chiragra chiragras chiragric chiragrical chiral chiralgia chiralities chirality chirapsia chirarthritis chirata chirayta chirimen chirimia chirimoya chirimoyas chirimoyer chirinola chiripa chirivita chirk chirked chirker chirkest chirking chirks chirl chirled chirling chirls chirm chirmed chirming chirms chiro chirocephalus chirocosmetics chirogale chirognomic chirognomically chirognomies chirognomist chirognomy chirognostic chirograph chirographary chirographer chirographers chirographic chirographical chirographies chirographist chirographists chirographs chirography chirogymnast chirolas chirological chirologically chirologies chirologist chirologists chirology chiromance chiromancer chiromancers chiromancies chiromancist chiromancy chiromant chiromantic chiromantical chiromegaly chirometer chironomer chironomers chironomic chironomid chironomidae chironomids chironomies chironomus chironomy chironym chiropatagium chiroplasty chiropod chiropodial chiropodic chiropodical chiropodies chiropodist chiropodistry chiropodists chiropodous chiropody chiropompholyx chiropractic chiropractics chiropractor chiropractors chiropraxis chiropter chiroptera chiropteran chiropterans chiropterite chiropterophilous chiropterous chiropters chiropterygian chiropterygious chiropterygium chiroromantical chiros chirosophist chirospasm chirotherian chirothesia chirotonsor chirotonsory chirotony chirotype chirp chirped chirper chirpers chirpier chirpiest chirpily chirpiness chirpinesses chirping chirpingly chirpling chirps chirpy chirr chirre chirred chirren chirres chirring chirrs chirrup chirruped chirruper chirruping chirrupped chirrupper chirrupping chirrups chirrupy chirt chirted chirting chirts chiru chirurgeon chirurgeonly chirurgeons chirurgeries chirurgery chirurgic chirurgical chirurgy chis chisel chiseled chiseler chiselers chiseling chiselled chiseller chisellers chisellike chiselling chisellings chiselly chiselmouth chisels chishona chisinau chisled chislev chistera chistka chit chitak chital chitals chitarra chitarrino chitarrone chitarroni chitchat chitchats chitchatted chitchatting chitchatty chithe chitin chitinization chitinized chitinocalcareous chitinogenous chitinoid chitinous chitins chitlin chitling chitlings chitlins chiton chitons chitosamine chitosan chitosans chitose chitra chits chittack chittagong chittagongs chittak chittamwood chitted chitter chittered chittering chitterings chitterling chitterlings chitters chittier chitties chittiest chittimwood chitting chitty chiule chiurm chiv chivachee chivage chivalresque chivalric chivalries chivalrous chivalrously chivalrousness chivalrousnesses chivalry chivaree chivareed chivareeing chivarees chivareing chivari chivaried chivaries chivariing chivaring chivaris chivarra chivarras chivarro chive chived chiver chiveret chives chivey chiviatite chivied chivies chiving chivs chivved chivvied chivvies chivving chivvy chivvying chivw chivy chivying chiwere chiyogami chiyogamis chiz chized chizes chizing chizz chizzed chizzel chizzes chizzing chkalik chkfil chkfile chladnite chlamyd chlamydate chlamydeous chlamydera chlamydes chlamydia chlamydiaceae chlamydiae chlamydial chlamydias chlamydobacteriaceous chlamydomonadaceae chlamydomonas chlamydomonases chlamydophore chlamydosaurus chlamydospore chlamydospores chlamydosporic chlamydozoan chlamyphore chlamyphorus chlamys chlamyses chloanthite chloanthites chloasma chloasmas chloasmata chloe chlor chloracetate chloracne chloracnes chloraemia chloragen chloragogen chloragogue chloral chloralformamide chloralide chloralism chloralisms chloralization chloralize chloralized chloralizing chloralose chloralosed chloraloses chlorals chloralum chlorambucil chlorambucils chloramide chloramin chloramine chloramines chloramphenicol chloramphenicols chloranaemia chloranemia chloranemic chloranhydride chloranil chloranthaceae chloranthaceous chloranthus chloranthy chlorapatite chlorargyrite chlorargyrites chlorastrolite chlorate chlorates chlorazide chlorcosane chlordan chlordane chlordanes chlordans chlordiazepoxide chlordiazepoxides chlore chlored chlorella chlorellaceous chlorellas chloremia chloremic chlorenchyma chlorenchymas chlorenchymata chlorguanide chlorhexidine chlorhydrate chlorhydric chloriamb chloriambus chloric chlorid chloridate chloridated chloridates chloridating chloridation chloride chlorider chlorides chloridic chloridise chloridised chloridises chloridising chloridize chloridized chloridizes chloridizing chlorids chlorimeter chlorimeters chlorimetric chlorimetries chlorimetry chlorin chlorinate chlorinated chlorinates chlorinating chlorination chlorinations chlorinator chlorinators chlorine chlorines chlorinise chlorinised chlorinises chlorinising chlorinities chlorinity chlorinize chlorinized chlorinizes chlorinizing chlorinous chlorins chloriodide chloris chlorite chlorites chloritic chloritisation chloritisations chloritization chloritizations chloritize chloritoid chlorize chlormethane chlormethylic chlornal chloro chloroacetate chloroacetic chloroacetone chloroacetophenone chloroamide chloroamine chloroanaemia chloroanemia chloroaurate chloroauric chloroaurite chlorobenzene chlorobenzenes chlorobromide chlorobromides chlorobromomethane chlorocalcite chlorocarbon chlorocarbonate chlorocarbons chlorochromates chlorochromic chlorochrous chlorococcales chlorococcum chlorocresol chlorocruorin chlorocruorins chlorodize chlorodized chlorodizing chlorodyne chlorodynes chloroethene chloroethylene chlorofluorocarbon chlorofluorocarbons chlorofluoromethane chlorofluoromethanes chloroform chloroformate chloroformed chloroformer chloroformers chloroformic chloroforming chloroformisation chloroformise chloroformism chloroformist chloroformists chloroformization chloroformize chloroforms chlorogenic chlorogenine chloroguanide chlorohydrin chlorohydrins chlorohydrocarbon chlorohydroquinone chloroid chloroiodide chloroleucite chloroma chloromata chloromelanite chlorometer chlorometers chloromethane chlorometric chlorometries chlorometry chloromycetin chloronaphthalene chloronitrate chloropal chloropalladates chloropalladic chlorophaeite chlorophane chlorophenol chlorophenothane chlorophis chlorophoenicite chlorophoneus chlorophthalmidae chlorophyceae chlorophyceous chlorophyll chlorophyllaceous chlorophyllan chlorophyllase chlorophyllian chlorophyllide chlorophylliferous chlorophylligenous chlorophylligerous chlorophyllin chlorophyllite chlorophylloid chlorophyllose chlorophyllous chlorophylls chlorophyta chlorophyte chloropia chloropicrin chloropicrins chloroplast chloroplastal chloroplastic chloroplastid chloroplasts chloroplatinate chloroplatinic chloroplatinite chloroplatinous chloroprene chloroprenes chloropsia chloroquin chloroquine chloroquines chloroquins chloroses chlorosilicate chlorosis chlorospinel chlorosulphonic chlorothiazide chlorothiazides chlorotic chlorotically chlorotrifluoroethylene chlorotrifluoromethane chlorous chloroxylon chlorozincate chlorpheniramine chlorphenol chlorpicrin chlorpicrins chlorpikrin chlorpromazine chlorpromazines chlorpropamide chlorpropamides chlorprophenpyridamine chlorsalol chlortetracycline chlortetracyclines chlorura chloryl chm chmn chn cho choachyte choak choana choanae choanate choanite choanocytal choanocyte choanocytes choanoflagellate choanoid choanophorous choanosomal choanosome choate choaty chob chobdar chobdars chobie choc choca chocaholic chocaholics chocalho chocard choccier choccies chocciest choccy chocho chochos chock chockablock chocked chocker chockful chockfull chocking chockler chockman chocko chockos chocks chockstone chockstones choco chocoholic chocoholics chocolate chocolates chocolatey chocolatier chocolatiere chocolatiers chocolatiest chocolaty chocos chocs choctaw choctaws chode choel choenix choenixes choeronycteris choffer choga chogak chogset choice choiceful choiceless choicelessness choicely choiceness choicenesses choicer choices choicest choicier choiciest choicy choil choile choiler choir choirboy choirboys choired choirgirl choirgirls choiring choirlike choirman choirmaster choirmasters choirmen choirmistress choirmistresses choirs choirscreen choirscreens choirstalls choirwise choise chok chokage choke chokeable chokeberries chokeberry chokebore chokebores chokecherries chokecherry chokecoil chokecoils choked chokedamp chokedamps chokehold chokeholds chokepoint chokepoints choker chokered chokerman chokers chokes chokestrap chokeweed chokidar chokidars chokies choking chokingly choko chokos chokra chokras chokri chokris choky chol chola cholaemia cholaemias cholaemic cholagogic cholagogue cholagogues cholalic cholam cholane cholangiogram cholangiograms cholangiographic cholangiographies cholangiography cholangioitis cholangitis cholanic cholanthrene cholas cholate cholates chold choleate cholecalciferol cholecalciferols cholecarciferol cholecyanin cholecyanine cholecyst cholecystalgia cholecystectasia cholecystectomies cholecystectomized cholecystectomy cholecystenterorrhaphy cholecystenterostomy cholecystgastrostomy cholecystic cholecystis cholecystitides cholecystitis cholecystitises cholecystnephrostomy cholecystocolostomy cholecystocolotomy cholecystoduodenostomy cholecystogastrostomy cholecystogram cholecystographies cholecystography cholecystoileostomy cholecystojejunostomy cholecystokinin cholecystokinins cholecystolithiasis cholecystolithotripsy cholecystonephrostomy cholecystopexy cholecystorrhaphy cholecystostomies cholecystostomy cholecystotomies cholecystotomy cholecysts choledoch choledochal choledochectomy choledochitis choledochoduodenostomy choledochoenterostomy choledocholithiasis choledocholithotomy choledocholithotripsy choledochoplasty choledochorrhaphy choledochostomies choledochostomy choledochotomies choledochotomy choledography cholee cholehematin choleic choleine choleinic cholelith cholelithiases cholelithiasis cholelithic cholelithotomy cholelithotripsy cholelithotrity choleliths cholemia cholemias cholent cholents choleokinase cholepoietic choler cholera choleraic choleras choleric cholerically cholericly cholericness choleriform cholerigenous cholerine choleroid choleromania cholerophobia cholerrhagia cholers cholestane cholestanol cholestases cholestasis cholestatic cholesteatoma cholesteatomatous cholestene cholesterate cholesteremia cholesteric cholesterin cholesterinemia cholesterinic cholesterins cholesterinuria cholesterol cholesterolaemia cholesterolaemias cholesterolemia cholesterolemias cholesterols cholesteroluria cholesterosis cholesteryl cholestyramine cholestyramines choletelin choletherapy choleuria choli choliamb choliambic choliambics choliambist choliambs cholic cholick choline cholinergic cholinergically cholines cholinesterase cholinesterases cholinic cholinolytic cholis cholla chollas choller chollers cholo cholochrome cholocyanine choloepus chologenetic choloid choloidic choloidinic chololith chololithic cholophaein cholophein cholorrhea cholos choloscopy cholralosed cholterheaded choltries choltry cholum choluria chomage chomer chometz chometzes chomp chomped chomper chompers chomping chomps chon chonchina chondral chondralgia chondrarsenite chondre chondrectomy chondrenchyma chondres chondri chondria chondric chondrichthian chondrichthyes chondrification chondrifications chondrified chondrifies chondrify chondrifying chondrigen chondrigenous chondrin chondrinous chondrins chondriocont chondrioma chondriome chondriomere chondriomite chondriosomal chondriosome chondriosomes chondriosphere chondrite chondrites chondritic chondritis chondritises chondroadenoma chondroalbuminoid chondroangioma chondroarthritis chondroblast chondroblastoma chondroblasts chondrocarcinoma chondrocele chondroclasis chondroclast chondrocoracoid chondrocostal chondrocrania chondrocranial chondrocranium chondrocraniums chondrocyte chondrodite chondroditic chondrodynia chondrodystrophia chondrodystrophy chondroendothelioma chondroepiphysis chondrofetal chondrofibroma chondrofibromatous chondrogen chondrogeneses chondrogenesis chondrogenetic chondrogenous chondrogeny chondroglossal chondroglossus chondrography chondroid chondroitic chondroitin chondroitins chondrolipoma chondrology chondroma chondromalacia chondromas chondromata chondromatoses chondromatosis chondromatous chondromucoid chondromyoma chondromyxoma chondromyxosarcoma chondropharyngeal chondropharyngeus chondrophore chondrophorine chondrophorines chondrophyte chondroplast chondroplastic chondroplasty chondroprotein chondropterygian chondropterygii chondropterygious chondrosamine chondrosarcoma chondrosarcomas chondrosarcomata chondrosarcomatous chondroseptum chondrosin chondrosis chondroskeleton chondrostean chondrosteoma chondrosteous chondrosternal chondrostian chondrostians chondrotome chondrotomy chondroxiphoid chondrule chondrules chondrus chonicrite chonk chonolith chons chonta chontawood choochoo choof choofed choofing choofs chook chookie chookies chooks chooky choom chooms choop choora choosable choosableness choose chooseable chooser choosers chooses choosey choosier choosiest choosiness choosinesses choosing choosingly choosy chop chopa chopas chopboat chopdar chopfallen chophouse chophouses chopin chopine chopines chopins choplogic choplogical choplogics chopped chopper choppered choppering choppers choppier choppiest choppily choppin choppiness choppinesses chopping choppings choppy chops chopsteak chopstick chopsticks choragi choragic choragion choragium choragus choraguses choragy choral choralcelo chorale choraleon chorales choralist choralists chorally chorals chord chorda chordacentrous chordacentrum chordaceous chordae chordal chordally chordamesoderm chordamesodermal chordamesodermic chordamesoderms chordata chordate chordates chorded chordee chordees chordeiles chording chordings chorditis chordoid chordomesoderm chordophone chordophones chordophonic chordospartium chordotomies chordotomy chordotonal chords chore chorea choreal choreas choreatic chored choree chorees choregi choregic choregraph choregraphed choregrapher choregraphers choregraphic choregraphically choregraphies choregraphing choregraphs choregraphy choregus choreguses choregy chorei choreic choreiform choreman choremen choreodrama choreograph choreographed choreographer choreographers choreographic choreographical choreographically choreographies choreographing choreographs choreography choreoid choreologies choreologist choreologists choreology choreomania chorepiscopal chorepiscope chorepiscopus chores choreus choreuses choreutic chorgi choria chorial choriamb choriambi choriambic choriambics choriambize choriambs choriambus choriambuses choribi choric chorically chorine chorines choring chorio chorioadenoma chorioallantoic chorioallantoid chorioallantoides chorioallantois choriocapillaris choriocapillary choriocarcinoma choriocarcinomas choriocarcinomata choriocele chorioepithelioma chorioepitheliomas chorioepitheliomata chorioid chorioidal chorioiditis chorioidocyclitis chorioidoiritis chorioidoretinitis chorioids chorioma choriomas choriomata chorion chorionepithelioma chorionic chorions chorioptic chorioretinal chorioretinitis choriotis choripetalae choripetalous choriphyllous chorisation chorisations chorisepalous chorises chorisis chorism chorisms choriso chorisos chorist choristate chorister choristers choristership choristic choristoblastoma choristoma choristoneura choristry chorists chorizagrotis chorization chorizations chorizema chorizo chorizont chorizontal chorizontes chorizontic chorizontist chorizontists chorizonts chorizos chorobates chorogi chorograph chorographer chorographers chorographic chorographical chorographically chorographies chorography choroid choroidal choroidea choroiditis choroiditises choroidocyclitis choroidoiritis choroidoretinitis choroids chorological chorologies chorologist chorologists chorology choromania choromanic chorometry chorook chorous chort chorten chortle chortled chortler chortlers chortles chortling chortosterol chorus chorused choruser choruses chorusing choruslike chorusmaster chorusmasters chorussed chorusses chorussing choryos chose chosen choses chosing choson chota chott chotts chou chouan choucroute choucroutes chouette chouettes choufleur chough choughs chouka choule choultries choultry chounce chounter chountered chountering chounters choup choupic chouquette chous chouse choused chouser chousers chouses choush choushes chousing chousingha chout chouts choux chow chowchow chowchows chowder chowdered chowderhead chowderheaded chowderheadedness chowderheads chowdering chowders chowed chowhound chowhounds chowing chowk chowkidar chowkidars chowri chowries chowris chowry chows chowse chowsed chowses chowsing chowtime chowtimes choy choya choyaroot choyroot chrematheism chrematist chrematistic chrematistics chrematists chremsel chremzel chremzlach chreotechnics chresard chresards chresmology chrestomathic chrestomathical chrestomathics chrestomathies chrestomathy chria chrimsel chrism chrisma chrismal chrismale chrismals chrismary chrismatine chrismation chrismations chrismatite chrismatize chrismatories chrismatory chrismon chrismons chrisms chrisom chrisomloosing chrisoms chrisroot christ christcross christdom christed christella christen christendom christened christener christeners christenhead christening christenings christens christhood christian christiania christianias christianisation christianisations christianise christianised christianiser christianisers christianises christianising christianism christianite christianity christianization christianizations christianize christianized christianizer christianizers christianizes christianizing christianlike christianly christians christie christies christine christingle christingles christless christlike christly christmas christmasberry christmases christmastide christmastime christological christology christom christoms christophanies christophany christopher christs christward christy chroatol chroma chromaesthesia chromaffin chromaffinic chromakey chromakeys chromamamin chromammine chromaphil chromaphore chromas chromascope chromate chromates chromatic chromatical chromatically chromatician chromaticism chromaticisms chromaticities chromaticity chromaticness chromatics chromatid chromatids chromatin chromatinic chromatins chromatise chromatism chromatisms chromatist chromatists chromatize chromatocyte chromatodysopia chromatogenous chromatogram chromatograms chromatograph chromatographed chromatographer chromatographers chromatographic chromatographical chromatographically chromatographies chromatographing chromatographs chromatography chromatoid chromatologies chromatology chromatolyses chromatolysis chromatolytic chromatometer chromatone chromatopathia chromatopathic chromatopathy chromatophil chromatophile chromatophilia chromatophilic chromatophilous chromatophobia chromatophore chromatophores chromatophoric chromatophorous chromatoplasm chromatopsia chromatopsias chromatoptometer chromatoptometry chromatoscope chromatoscopy chromatosis chromatosphere chromatospheres chromatospheric chromatrope chromaturia chromatype chromatypes chromazurine chromdiagnosis chrome chromed chromel chromels chromene chromenes chromeplate chromeplated chromeplating chromes chromesthesia chrometophobia chromhidrosis chromic chromicise chromicize chromicizing chromid chromide chromides chromidia chromidial chromidiogamy chromidiosome chromidium chromidrosis chromier chromiest chromiferous chrominance chrominances chroming chromings chromiole chromise chromised chromises chromising chromism chromite chromites chromitite chromium chromiums chromize chromized chromizes chromizing chromo chromoblast chromoblastomycosis chromocenter chromocenters chromocentral chromochalcographic chromochalcography chromocollograph chromocollographic chromocollography chromocollotype chromocollotypy chromocratic chromoctye chromocyte chromocytometer chromodermatosis chromodiascope chromodynamics chromogen chromogene chromogenesis chromogenetic chromogenic chromogenous chromogens chromogram chromograms chromograph chromoisomer chromoisomeric chromoisomerism chromoleucite chromolipoid chromolith chromolithic chromolithograph chromolithographed chromolithographer chromolithographers chromolithographic chromolithographies chromolithographing chromolithographs chromolithography chromolysis chromomere chromomeres chromomeric chromometer chromone chromonema chromonemal chromonemata chromonematal chromonematic chromonemic chromoparous chromophage chromophane chromophil chromophile chromophilia chromophilic chromophilous chromophils chromophobe chromophobia chromophobic chromophonic chromophor chromophore chromophores chromophoric chromophorous chromophotograph chromophotographic chromophotography chromophotolithograph chromophyl chromophyll chromoplasm chromoplasmic chromoplast chromoplastid chromoplasts chromoprotein chromoproteins chromopsia chromoptometer chromoptometrical chromos chromosantonin chromoscope chromoscopes chromoscopic chromoscopy chromosomal chromosomally chromosome chromosomes chromosomic chromosphere chromospheres chromospheric chromotherapies chromotherapist chromotherapy chromotrope chromotropic chromotropism chromotropy chromotype chromotypes chromotypic chromotypographic chromotypographies chromotypography chromotypy chromous chromoxylograph chromoxylographies chromoxylographs chromoxylography chromule chromy chromyl chromyls chron chronal chronanagram chronaxia chronaxie chronaxies chronaxy chroncmeter chronic chronica chronical chronically chronicities chronicity chronicle chronicled chronicler chroniclers chronicles chronicling chronicon chronics chronique chronisotherm chronist chronobarometer chronobiologic chronobiological chronobiologically chronobiologies chronobiologist chronobiologists chronobiology chronocarator chronocinematography chronocrator chronocyclegraph chronodeik chronogeneous chronogenesis chronogenetic chronogram chronogrammatic chronogrammatical chronogrammatically chronogrammatist chronogrammic chronograms chronograph chronographer chronographers chronographic chronographical chronographically chronographies chronographs chronography chronoisothermal chronol chronologer chronologers chronologic chronological chronologically chronologies chronologise chronologised chronologises chronologising chronologist chronologists chronologize chronologized chronologizes chronologizing chronology chronomancy chronomantic chronomastix chronometer chronometers chronometric chronometrical chronometrically chronometries chronometry chronon chrononomy chronons chronoperates chronopher chronophotograph chronophotographic chronophotography chronoscope chronoscopes chronoscopic chronoscopically chronoscopv chronoscopy chronosemic chronostichon chronotherapies chronotherapy chronothermal chronothermometer chronotron chronotrons chronotropic chronotropism chroococcaceous chroococcoid chrotta chry chrysal chrysalid chrysalida chrysalidal chrysalides chrysalidian chrysalids chrysaline chrysalis chrysalises chrysaloid chrysamine chrysammic chrysamminic chrysanilin chrysaniline chrysanisic chrysanth chrysanthemin chrysanthemum chrysanthemums chrysanthous chrysanths chrysaora chrysarobin chrysarobins chrysatropic chrysazin chrysazol chryseis chryselectrum chryselephantine chrysemys chrysene chrysenic chrysid chrysidid chrysin chrysler chryslers chrysoaristocracy chrysobalanus chrysoberyl chrysoberyls chrysobull chrysocale chrysocarpous chrysochlore chrysochloridae chrysochloris chrysochlorous chrysochrous chrysocolla chrysocollas chrysocracies chrysocracy chrysoeriol chrysogen chrysograph chrysographer chrysography chrysohermidin chrysoidine chrysolepis chrysolite chrysolites chrysolitic chrysology chrysolophus chrysome chrysomelid chrysomelidae chrysomelids chrysomonad chrysomonadine chrysopal chrysopee chrysophan chrysophane chrysophanic chrysophans chrysophenin chrysophenine chrysophilist chrysophilite chrysophilites chrysophrys chrysophyceae chrysophyll chrysophyllum chrysophyta chrysophyte chrysophytes chrysopid chrysopidae chrysopoeia chrysopoetic chrysopoetics chrysoprase chrysoprases chrysoprasus chrysopsis chrysorin chrysosperm chrysosplenium chrysostomic chrysothamnus chrysotherapy chrysotile chrysotiles chrystocrene chs chteau chthonian chthonic chthonophagia chthonophagy chuana chub chubasco chubascos chubb chubbed chubbedness chubbier chubbiest chubbily chubbiness chubbinesses chubby chubs chubsucker chuck chuckawalla chuckawallas chucked chucker chuckfarthing chuckfull chuckhole chuckholes chuckie chuckies chucking chuckingly chuckle chuckled chucklehead chuckleheaded chuckleheadedness chuckleheads chuckler chucklers chuckles chucklesome chuckling chucklingly chucklings chuckram chuckrum chucks chuckstone chuckwalla chuckwallas chucky chuddah chuddahs chuddar chuddars chudder chudders chuddies chuddy chuet chufa chufas chuff chuffed chuffer chuffest chuffier chuffiest chuffily chuffiness chuffinesses chuffing chuffle chuffled chuffles chuffling chuffs chuffy chug chugalug chugalugged chugalugging chugalugs chugged chugger chuggers chugging chughole chugs chuhra chukar chukars chukka chukkar chukkars chukkas chukker chukkers chukor chukors chulan chulha chullo chullpa chulpa chultun chum chumar chumble chumley chumleys chummage chummages chummed chummer chummery chummier chummies chummiest chummily chumminess chumminesses chumming chummy chump chumpa chumpaka chumped chumpiness chumping chumpings chumpish chumpishness chumps chumpy chums chumship chumships chun chunam chunari chundari chunder chundered chundering chunderous chunders chung chunga chungking chunk chunked chunkhead chunkier chunkiest chunkily chunkiness chunkinesses chunking chunkings chunks chunky chunnel chunnels chunner chunnered chunnering chunners chunnia chunter chuntered chuntering chunters chupak chupati chupatis chupatti chupattis chupatty chupon chupot chuppah chuppahs chuppot chuppoth chuprassi chuprassie chuprassies chuprassy churada church churchanity churchcraft churchdom churched churches churchful churchgo churchgoer churchgoers churchgoing churchgoings churchgrith churchianities churchianity churchier churchiest churchified churchill churchillian churchiness churching churchings churchish churchism churchisms churchite churchless churchlet churchlier churchliest churchlike churchliness churchlinesses churchly churchman churchmanly churchmanship churchmanships churchmaster churchmen churchpeople churchreeve churchscot churchshot churchward churchwarden churchwardenism churchwardenize churchwardens churchwardenship churchwards churchway churchways churchwise churchwoman churchwomen churchy churchyard churchyards churel churidars churinga churingas churl churled churlhood churlier churliest churlish churlishly churlishness churlishnesses churls churly churm churn churnability churnable churned churner churners churnful churning churnings churnmilk churnmilks churns churnstaff churr churrasco churred churrigueresco churrigueresque churring churrip churro churros churrs churruck churrus churruses churrworm chuse chuser chuses chusing chusite chut chute chuted chuter chutes chuting chutist chutists chutnee chutnees chutney chutneys chuts chuttie chutzpa chutzpadik chutzpah chutzpahs chutzpanik chutzpas chuumnapm chuvash chuvashes chuzwi chwas chyack chyacked chyacking chyacks chyak chyazic chylaceous chylangioma chylaqueous chylde chyle chylemia chyles chylidrosis chylifaction chylifactive chylifactory chyliferous chylific chylification chylifications chylificatory chylified chylifies chyliform chylify chylifying chylocaulous chylocaulously chylocauly chylocele chylocyst chyloderma chyloid chylomicra chylomicron chylomicrons chylopericardium chylophyllous chylophyllously chylophylly chylopoetic chylopoiesis chylopoietic chylosis chylothorax chylous chyluria chylurias chymaqueous chymase chyme chymes chymia chymic chymics chymiferous chymification chymifications chymified chymifies chymify chymifying chymist chymistries chymistry chymists chymopapain chymopapains chymosin chymosinogen chymosins chymotrypsin chymotrypsinogen chymotrypsinogens chymotrypsins chymotryptic chymous chynd chyometer chypre chypres chytra chytrid chytridiaceae chytridiaceous chytridial chytridiales chytridiomycetes chytridiose chytridiosis chytrids château châteaux châtelain châtelaine châtelaines châtelains chèvre chéchia chéchias ci cia ciabatta ciabattas ciabatte cianaga ciao ciaos cibachrome cibachromes cibaria cibarial cibarian cibaries cibarious cibarium cibation cibations cibbaria cibboria cibol cibolero cibols cibophobia cibophobiafood ciboria ciborium cibory cibotium ciboule ciboules cicad cicada cicadae cicadas cicadellid cicadellidae cicadellids cicadid cicadidae cicala cicalas cicale cicatrice cicatrices cicatrichule cicatrichules cicatricial cicatricle cicatricles cicatricose cicatricula cicatriculae cicatriculas cicatricule cicatrisant cicatrisate cicatrisation cicatrisations cicatrise cicatrised cicatriser cicatrises cicatrising cicatrisive cicatrix cicatrizant cicatrizate cicatrization cicatrizations cicatrize cicatrized cicatrizer cicatrizes cicatrizing cicatrose cicelies cicely cicer cicero ciceronage cicerone ciceroned ciceroneing cicerones ciceroni ciceronian ciceronianism ciceronianisms ciceronianist ciceronianists ciceronians ciceroning ciceronism ciceronize ciceros cichar cichlid cichlidae cichlids cichloid cichoraceous cichoriaceous cichorium cicindelid cicindelidae cicinnus cicinnuses cicisbei cicisbeism cicisbeisms cicisbeo cicisbeos ciclaton ciclatons ciclatoun ciclatouns cicone ciconia ciconian ciconiform ciconiid ciconiidae ciconiiform ciconiiformes ciconine ciconioid cicoree cicorees cicrumspections cicurate cicuta cicutas cicutoxin cid cidarid cidaris cidarises cide cided cider ciderish ciderist ciderkin ciderkins ciderlike ciderpress ciders cidery cides ciding cids cie ciel cieled cieling cielings ciels cienaga cienagas cienega cienegas cierge cierges cierzo cierzos cif cig cigala cigale cigar cigaresque cigaret cigarets cigarette cigarettes cigarfish cigarillo cigarillos cigarito cigaritos cigarless cigars ciggie cigs cigua ciguatera ciguateras cilantro cilantros cilectomy cilery cilia cilial ciliary ciliata ciliate ciliated ciliately ciliates ciliation ciliations cilice cilices cilicious cilicism ciliectomy ciliella ciliferous ciliform ciliiferous ciliiform ciliium cilioflagellata cilioflagellate ciliograde ciliola ciliolate ciliolum ciliophora ciliophoran cilioretinal cilioscleral ciliospinal ciliotomy cilium cill cillosis cills cima cimabue cimaise cimar cimaroon cimarron cimars cimbal cimbalom cimbaloms cimbia cimborio cimcumvention cimelia cimeliarch cimelium cimeter cimetidine cimetidines cimex cimices cimicid cimicidae cimicide cimiciform cimicifuga cimicifugin cimicoid cimier cimiers ciminite ciminites cimline cimmaron cimmerian cimnel cimolite cimolites cinch cincha cinched cincher cinches cinching cinchings cincholoipon cincholoiponic cinchomeronic cinchona cinchonaceous cinchonamin cinchonamine cinchonas cinchonate cinchonia cinchonic cinchonicin cinchonicine cinchonidia cinchonidine cinchonin cinchonine cinchonines cinchoninic cinchonisation cinchonisations cinchonise cinchonised cinchonises cinchonising cinchonism cinchonisms cinchonization cinchonizations cinchonize cinchonized cinchonizes cinchonizing cinchonology cinchophen cinchotine cinchotoxine cincinatti cincinnal cincinnate cincinnati cincinni cincinnus cincinnuses cinclidae cinclides cinclis cinclus cinct cincture cinctured cinctures cincturing cinder cinderblock cinderblocks cindered cinderella cindering cinderlike cinderman cinderous cinders cindery cine cineangiocardiographic cineangiocardiography cineangiographic cineangiographies cineangiography cineast cineaste cineastes cineasts cinecamera cinefaction cinefilm cinel cinema cinemactic cinemagoer cinemagoers cinemas cinematheque cinematheques cinematic cinematical cinematically cinematics cinematise cinematization cinematize cinematized cinematizes cinematizing cinematograph cinematographer cinematographers cinematographic cinematographical cinematographically cinematographies cinematographist cinematographists cinematographs cinematography cinemelodrama cinemese cinemicrographies cinemicrography cinemize cinemograph cinenchym cinenchyma cinenchymatous cinene cinenegative cineol cineole cineoles cineolic cineols cinephile cinephiles cinephone cinephotomicrography cineplastics cineplasty cineplex cineplexes cineraceous cineradiography cinerama cineramic cinerararia cineraria cinerarias cinerarium cinerary cineration cinerations cinerator cinerators cinerea cinereal cinereas cinereous cinerin cinerins cineritious cinerous cines cinevariety cingalese cingle cingula cingular cingulate cingulated cingulectomies cingulectomy cingulum cinibar ciniphes cinnabar cinnabaric cinnabarine cinnabars cinnamal cinnamaldehyde cinnamate cinnamein cinnamene cinnamenyl cinnamic cinnamol cinnamomic cinnamomum cinnamon cinnamoned cinnamonic cinnamonlike cinnamonroot cinnamons cinnamonwood cinnamoyl cinnamyl cinnamylidene cinnamyls cinnarizine cinnarizines cinnolin cinnoline cinnyl cinofoil cinquain cinquains cinquanter cinque cinquecentism cinquecentist cinquecentisti cinquecentists cinquecento cinquecentos cinquedea cinquefoil cinquefoiled cinquefoils cinquepace cinques cinter cintre cinuran cinurous cinécamera cion cionectomy cionitis cionocranial cionocranian cionoptosis cionorrhaphia cionotome cionotomy cions cioppino cioppinos cipaye cipher cipherable cipherdom ciphered cipherer cipherers cipherhood ciphering cipherings ciphers ciphertext ciphertexts ciphonies ciphony cipo cipolin cipolins cipollino cipollinos cippi cippus cipro ciprofloxacin cir cira circ circa circadian circadianly circaea circaetus circar circars circassian circassians circassienne circassiennes circe circensial circensian circinal circinate circinately circination circinus circiter circle circled circler circlers circles circlet circleting circlets circlewise circline circling circlings circlip circlips circocele circovarian circs circue circuit circuitable circuital circuited circuiteer circuiteers circuiter circuities circuiting circuition circuitman circuitmen circuitor circuitous circuitously circuitousness circuitousnesses circuitries circuitry circuits circuituously circuity circulable circulant circular circularisation circularisations circularise circularised circulariser circularisers circularises circularising circularism circularities circularity circularization circularizations circularize circularized circularizer circularizers circularizes circularizing circularly circularness circularnesses circulars circularwise circulatable circulate circulated circulates circulating circulatings circulation circulations circulative circulator circulatories circulators circulatory circule circulet circuli circulin circulus circum circumaction circumadjacent circumagitate circumagitation circumambages circumambagious circumambience circumambiences circumambiencies circumambiency circumambient circumambiently circumambulate circumambulated circumambulates circumambulating circumambulation circumambulations circumambulator circumambulatory circumanal circumantarctic circumarctic circumarticular circumaviate circumaviation circumaviator circumaxial circumaxile circumaxillary circumbasal circumbendibus circumbendibuses circumboreal circumbuccal circumbulbar circumcallosal circumcellion circumcenter circumcenters circumcentral circumcentre circumcentres circumcinct circumcincture circumcircle circumcircles circumcise circumcised circumciser circumcisers circumcises circumcising circumcision circumcisions circumcission circumclude circumclusion circumcolumnar circumcone circumconic circumcorneal circumcrescence circumcrescent circumdate circumdenudation circumdenudations circumdiction circumduce circumduced circumduces circumducing circumduct circumducted circumducting circumduction circumductions circumductory circumducts circumesophagal circumesophageal circumfer circumference circumferences circumferent circumferential circumferentially circumferentor circumferentors circumflant circumflect circumflected circumflecting circumflects circumflex circumflexed circumflexes circumflexing circumflexion circumflexions circumfluence circumfluences circumfluent circumfluous circumforanean circumforaneous circumfulgent circumfuse circumfused circumfuses circumfusile circumfusing circumfusion circumfusions circumgenital circumgestation circumgyrate circumgyrated circumgyrates circumgyrating circumgyration circumgyrations circumgyratory circumhorizontal circumincession circumincessions circuminsession circuminsessions circuminsular circumintestinal circumitineration circumjacence circumjacencies circumjacency circumjacent circumjovial circumlental circumlitio circumlittoral circumlocute circumlocuted circumlocutes circumlocuting circumlocution circumlocutional circumlocutionary circumlocutionist circumlocutionists circumlocutions circumlocutious circumlocutory circumlunar circummeridian circummeridional circummigrate circummigration circummundane circummure circummured circummures circummuring circumnatant circumnavigable circumnavigate circumnavigated circumnavigates circumnavigating circumnavigation circumnavigational circumnavigations circumnavigator circumnavigators circumnavigatory circumneutral circumnuclear circumnutate circumnutated circumnutates circumnutating circumnutation circumnutations circumnutatory circumocular circumoesophagal circumoral circumorbital circumpacific circumpallial circumparallelogram circumpentagon circumplanetary circumplect circumplicate circumplication circumpolar circumpolygon circumpose circumposed circumposes circumposing circumposition circumpositions circumquaque circumradii circumradius circumradiuses circumrenal circumrotate circumrotated circumrotates circumrotating circumrotation circumrotations circumrotatory circumsail circumsaturnian circumsciss circumscissile circumscribable circumscribe circumscribed circumscriber circumscribers circumscribes circumscribing circumscript circumscription circumscriptions circumscriptive circumscriptively circumscriptly circumscrive circumsession circumsinous circumsolar circumspangle circumspatial circumspect circumspection circumspections circumspective circumspectively circumspectly circumspectness circumspectnesses circumspheral circumsphere circumstance circumstanced circumstances circumstancing circumstant circumstantiability circumstantiable circumstantial circumstantialities circumstantiality circumstantially circumstantialness circumstantials circumstantiate circumstantiated circumstantiates circumstantiating circumstantiation circumstantiations circumstellar circumtabular circumterraneous circumterrestrial circumtonsillar circumtropical circumumbilical circumundulate circumundulation circumvallate circumvallated circumvallates circumvallating circumvallation circumvallations circumvascular circumvent circumventable circumvented circumventer circumventers circumventing circumvention circumventions circumventive circumventor circumventors circumvents circumvest circumviate circumvoisin circumvolant circumvolute circumvolution circumvolutions circumvolutory circumvolve circumvolved circumvolves circumvolving circumzenithal circus circuses circussy circusy circut circuted circuting circuts cire cires cirio cirl cirls cirmcumferential cirque cirques cirrate cirrated cirrhipede cirrhipedes cirrhopod cirrhopods cirrhose cirrhosed cirrhoses cirrhosis cirrhotic cirrhotics cirrhous cirrhus cirri cirribranch cirriferous cirriform cirrigerous cirrigrade cirriped cirripede cirripedes cirripedia cirripedial cirripeds cirrocumular cirrocumulative cirrocumuli cirrocumulous cirrocumulus cirrolite cirropodous cirrose cirrosely cirrostome cirrostrati cirrostrative cirrostratus cirrous cirrus cirsectomies cirsectomy cirsium cirsocele cirsoid cirsomphalos cirsophthalmia cirsotome cirsotomies cirsotomy cirterion ciruela cirurgian ciruses ciré cirés cis cisalpine cisandine cisatlantic cisc cisco ciscoes ciscos cise ciseaux cisela cisele ciseleur ciseleurs ciselure ciselures cisgangetic cising cisium cisjurane cisleithan cislunar cismarine cismontane cisoceanic cispadane cisplatin cisplatine cisplatins cispontine cisrhenane cissier cissiest cissing cissings cissoid cissoidal cissoids cissus cissuses cist cista cistaceae cistaceous cistae cisted cistercian cistern cisterna cisternae cisternal cisterns cistic cistophori cistophoric cistophorus cistori cistothorus cistron cistronic cistrons cists cistus cistuses cistvaen cistvaens cit citable citadel citadels cital citals citation citational citations citator citators citatory citatum cite citeable cited citee citellus citer citers cites citess citesses cithara citharas citharichthys citharist citharista citharistic citharists citharoedi citharoedic citharoedus cither cithern citherns cithers cithren cithrens citicism citicorp citied cities citification citifications citified citifies citify citifying citigrade citing citizen citizendom citizeness citizenesses citizenhood citizenise citizenised citizenises citizenish citizenising citizenism citizenize citizenized citizenizes citizenizing citizenly citizenries citizenry citizens citizenship citizenships citlaltepetl cito citola citolas citole citoler citolers citoles citoyen citoyenne citoyens citraconate citraconic citral citrals citramide citramontane citrange citrangeade citranges citrate citrated citrates citrean citrene citreous citric citriculture citricultures citriculturist citriculturists citril citrin citrination citrine citrines citrinin citrinins citrinous citrins citrocola citrometer citron citronade citronalis citroncirus citronella citronellal citronellals citronellas citronelle citronellic citronellol citronellols citronin citronize citrons citronwood citropten citrous citrul citrullin citrulline citrullines citrullus citrus citruses citrusy citrylidene cits cittern citternhead citterns citua city citybuster citycism citydom cityfication cityfications cityfied cityfies cityfolk cityful cityfy cityfying cityish cityless citylike cityness citynesses cityscape cityscapes cityward citywards citywide ciudad civ cive cives civet civetlike civetone civets civic civical civically civicism civicisms civics civie civies civil civile civiler civilest civilian civilianisation civilianisations civilianise civilianised civilianises civilianising civilianization civilianizations civilianize civilianized civilianizes civilianizing civilians civilisable civilisation civilisational civilisations civilisatory civilise civilised civilisedness civiliser civilisers civilises civilising civilist civilists civilite civilities civility civilizable civilizade civilization civilizational civilizationally civilizations civilizatory civilize civilized civilizedness civilizee civilizer civilizers civilizes civilizing civilly civilness civism civisms civitas civite civory civs civvies civvy civy ciwies cixiid cizar cize cizers ck ckw cl clabber clabbered clabbering clabbers clabbery clablaria clabularia clabularium clach clachan clachans clachs clack clackbox clackboxes clackdish clackdishes clacked clacker clackers clacket clackety clacking clacks clactonian clad cladanthous cladautoicous claddagh claddaghs cladded cladder cladders cladding claddings clade clades cladine cladism cladisms cladist cladistic cladistically cladistics cladists cladocarpous cladoceran cladocerans cladocerous cladode cladodes cladodial cladodium cladodont cladodontid cladogeneses cladogenesis cladogenetic cladogenetically cladogenous cladogram cladograms cladonia cladoniaceae cladoniaceous cladonioid cladophora cladophoraceous cladophyll cladophylla cladophylls cladophyllum cladoptosis cladorhyncus cladose cladoselachian cladosiphonic cladosporia cladosporium cladrastis clads cladus claes claforan clafouti clafoutis clag clagged claggier claggiest clagging claggum claggy clags claik claim claimable claimant claimants claimed claimer claimers claiming claimless claims claimsman claimsmen clair clairaudience clairaudiences clairaudient clairaudiently clairaudients clairce claircolle claircolles claire clairecole clairecolle claires clairschach clairschacher clairschachs clairseach clairseacher clairsentience clairsentient clairvoyance clairvoyances clairvoyancies clairvoyancy clairvoyant clairvoyantly clairvoyants claith claithes claiver clake clam clamancies clamancy clamant clamantly clamaroo clamation clamative clamatores clamatorial clamatory clamb clambake clambakes clambe clamber clambered clamberer clamberers clambering clambers clamcracker clamdiggers clame clamehewit clamer clames clamflat clamjamfery clamjamfries clamjamfry clamjamphrie clamjamphries clamlike clammed clammer clammers clammersome clammier clammiest clammily clamminess clamminesses clamming clammish clammy clammyweed clamor clamored clamorer clamorers clamoring clamorist clamorous clamorously clamorousness clamorousnesses clamors clamorsome clamour clamoured clamourer clamourers clamouring clamourist clamourous clamours clamoursome clamp clampdown clampdowns clamped clamper clampered clampering clampers clamping clamps clams clamshell clamshells clamworm clamworms clamydospore clan clancular clancularly clandestine clandestinely clandestineness clandestinenesses clandestinities clandestinity clanfellow clang clangbox clangboxes clanged clanger clangers clangful clanging clangingly clangings clangor clangored clangoring clangorous clangorously clangorousness clangors clangour clangoured clangouring clangours clangs clangula clanjamfray clanjamfrays clanjamfrey clanjamfrie clanjamphrey clank clanked clankety clanking clankingly clankingness clankings clankless clanks clankum clanky clanless clanned clanning clannish clannishly clannishness clannishnesses clans clansfolk clanship clanships clansman clansmanship clansmen clanswoman clanswomen clap clapboard clapboarded clapboarding clapboards clapbread clapbreads clapcake clapdish clapdishes clape clapholt clapmatch clapnest clapnet clapnets clapometer clapometers clapotis clappe clapped clapper clapperboard clapperboards clapperboy clapperboys clapperclaw clapperclawed clapperclawer clapperclawers clapperclawing clapperclaws clapperdudgeon clappered clappering clapperings clappermaclaw clappers clapping clappings claps clapstick clapt claptrap claptrapperies claptrappery claptraps clapwort claque claquer claquers claques claqueur claqueurs clar clarabella clarabellas clarain clarains clare clarence clarences clarenceux clarendon clarendons clares claret clareted claretian clareting clarets claribel claribella clarichord clarichords claries clarifiable clarifiant clarificant clarification clarifications clarified clarifier clarifiers clarifies clarify clarifying clarigate clarigation clarigold clarin clarina clarine clarinet clarinetist clarinetists clarinets clarinettist clarinettists clarini clarino clarinos clarion clarioned clarionet clarionets clarioning clarions clarissimo clarities claritude clarity clark clarke clarkeite clarkeites clarkia clarkias clarksburg clarksville claro claroes claros clarre clarsach clarsachs clarseach clarsech clarseth clarshech clart clarted clartier clartiest clarting clarts clarty clary clash clashed clashee clasher clashers clashes clashing clashingly clashings clashy clasmatocyte clasmatocytic clasmatosis clasp clasped clasper claspers clasping claspings clasps claspt class classable classbook classed classer classers classes classfellow classible classic classical classicalise classicalism classicalisms classicalist classicalists classicalities classicality classicalize classically classicalness classicalnesses classicise classicised classicises classicising classicism classicisms classicist classicistic classicists classicize classicized classicizes classicizing classico classicolatry classics classier classiest classifiable classific classifically classification classificational classifications classificator classificatorily classificatory classified classifieds classifier classifiers classifies classify classifying classily classiness classinesses classing classis classism classisms classist classists classless classlessness classlessnesses classman classmanship classmate classmates classmen classon classons classroom classrooms classwise classwork classy clast clastic clastics clasts clat clatch clatched clatches clatching clatchy clathraceae clathraceous clathrarian clathrate clathrates clathroid clathrose clathrulate clathrus clats clatted clatter clattered clatterer clatterers clattering clatteringly clatters clattertrap clattertraps clattery clatting clatty clauber claucht clauchted clauchting clauchts claudent claudetite claudetites claudicant claudicate claudication claudications claudius claught claughted claughting claughts claus clausal clause clauses clauster clausthalite claustra claustral claustration claustrations claustrophilia claustrophobe claustrophobes claustrophobia claustrophobiac claustrophobias claustrophobic claustrophobically claustrum clausula clausulae clausular clausule clausum clausure claut clauted clauting clauts clava clavacin clavae claval clavariaceae clavariaceous clavate clavated clavately clavatin clavation clavations clave clavecin clavecinist clavecinists clavecins clavel clavelization clavelize clavellate clavellated claver clavered clavering clavers claves clavi clavial claviature clavicembali clavicembalist clavicembalo clavicembalos claviceps clavichord clavichordist clavichordists clavichords clavicipitaceae clavicithern clavicittern clavicle clavicles clavicor clavicorn clavicornate clavicorns clavicotomy clavicula claviculae clavicular clavicularium claviculas claviculate claviculus clavicylinder clavicymbal clavicytheria clavicytherium clavicytheriums clavicythetheria clavie clavier clavierist clavieristic clavierists claviers clavies claviform claviger clavigerous clavigers claviharp clavilux claviol claviole clavipectoral clavis clavises clavodeltoid clavodeltoideus clavola clavolae clavolet clavulate clavus clavuvi clavy claw clawback clawbacks clawed clawer clawers clawfoot clawhammer clawing clawk clawker clawless clawlike claws clawsick claxon claxons clay claybank claybanks claybrained claye clayed clayen clayer clayey clayier clayiest clayiness claying clayish claylike clayman claymation claymations claymore claymores claypan claypans clays claystone claystones claytonia claytonias clayware claywares clayweed cleach clead cleaded cleading cleam cleamer clean cleanabilities cleanability cleanable cleaned cleaner cleaners cleanest cleanhanded cleanhandedness cleanhearted cleaning cleanings cleanish cleanlier cleanliest cleanlily cleanliness cleanlinesses cleanly cleanness cleannesses cleanout cleans cleansable cleanse cleansed cleanser cleansers cleanses cleansing cleansings cleanskin cleanskins cleanup cleanups clear clearable clearage clearages clearance clearances clearcole clearcoles clearcut clearcutness clearcuts clearcutting cleared clearedness clearer clearers clearest clearheaded clearheadedly clearheadedness clearheadednesses clearhearted clearing clearinghouse clearinghouses clearings clearish clearly clearminded clearness clearnesses clears clearsighted clearsightedness clearskin clearskins clearstarch clearstarcher clearstoried clearstories clearstory clearwater clearway clearways clearweed clearwing clearwings cleat cleated cleating cleats cleavability cleavable cleavableness cleavablenesses cleavage cleavages cleave cleaved cleaveful cleavelandite cleaver cleavers cleaverwort cleaves cleaving cleavingly cleavings clecha cleche clechee clechy cleché cleck clecked clecking cleckings clecks cled cledde cledge cledgy cledonism clee cleech cleek cleeked cleeking cleekit cleeks cleeky cleep cleeped cleeping cleeps cleeve cleeves clef clefs cleft clefted clefting clefts cleg clegg clegs cleidagra cleidarthritis cleidocostal cleidocranial cleidohyoid cleidoic cleidomancy cleidomastoid cleidorrhexis cleidoscapular cleidosternal cleidotomy cleidotripsy cleistes cleistocarp cleistocarpous cleistogamic cleistogamically cleistogamies cleistogamous cleistogamously cleistogamy cleistogene cleistogenous cleistogeny cleistotcia cleistothecia cleistothecium cleithral cleithrum clem clematis clematises clematite clemence clemencies clemency clement clementine clementines clemently clementness clements clemmed clemming clems clenbuterol clenbuterols clench clenched clencher clenchers clenches clenching cleoid cleome cleomes cleopatra clep clepe cleped clepes cleping clepsydra clepsydrae clepsydras clept cleptobioses cleptobiosis cleptobiotic cleptomania cleptomaniac cleptomanias clerecole clerecoles clerestoried clerestories clerestory clerete clergess clergiable clergies clergion clergy clergyable clergylike clergyman clergymen clergywoman clergywomen cleric clerical clericalise clericalism clericalisms clericalist clericalists clericality clericalize clerically clericals clericate clericates clericature clericism clericities clericity clerics clericum clerid cleridae clerids clerihew clerihews clerisies clerisy clerk clerkage clerkdom clerkdoms clerked clerkery clerkess clerkesses clerkhood clerking clerkish clerkless clerklier clerkliest clerklike clerkliness clerklinesses clerkling clerklings clerkly clerks clerkship clerkships clernly cleromancies cleromancy cleronomy clerstory cleruch cleruchia cleruchial cleruchias cleruchic cleruchies cleruchs cleruchy clerum cletch clethra clethraceae clethraceous clethrionomys cleuch cleuchs cleugh cleughs cleuk cleuks cleve cleveite cleveites cleveland clever cleveralities cleverality cleverdick cleverdicks cleverer cleverest cleverish cleverishly cleverly cleverness clevernesses cleves clevis clevises clew clewed clewgarnet clewing clews cli cliack clianthus clianthuses clich clicha cliche cliched clicheed cliches cliché clichéd clichéed clichés click clickable clicked clicker clickers clicket clicketed clicketing clickets clicking clickings clickless clicks clickstream clickstreams clicky clied cliency client clientage clientages cliental cliented clientelage clientele clienteles clientless clientry clients clientship clientships clientèle clientèles clies cliff cliffbrake cliffed cliffhang cliffhanger cliffhangers cliffhanging cliffhangings cliffhangs cliffhung cliffier cliffiest cliffing cliffless clifflet clifflike cliffs cliffside cliffsman clifftop clifftops cliffweed cliffy clift clifted cliftier cliftiest cliftonia cliftonite clifts clifty clii clima climaciaceous climacter climacterial climacteric climacterical climacterically climacterics climactery climactic climactical climactically climacus climant climata climatal climatarchic climate climated climates climath climatic climatical climatically climating climatise climatised climatises climatising climatize climatized climatizes climatizing climatographical climatographies climatography climatologic climatological climatologically climatologies climatologist climatologists climatology climatometer climatotherapeutics climatotherapies climatotherapy climature climatures climax climaxed climaxes climaxing climaxless climb climbable climbdown climbed climber climbers climbing climbingfish climbingfishes climbings climbs clime climes climograph clin clinah clinal clinally clinamen clinamens clinamina clinandrdria clinandria clinandrium clinanthia clinanthium clinch clinched clincher clinchers clinches clinching clinchingly clinchingness clinchpoop clindamycin clindamycins cline clines cling clinged clinger clingers clingfilm clingfilms clingfish clingfishes clingier clingiest clinginess clinginesses clinging clingingly clingingness clings clingstone clingstones clingy clinia clinic clinical clinically clinician clinicians clinicist clinicopathologic clinicopathological clinicopathologically clinics clinid clinidae clinique cliniques clinium clink clinkant clinked clinker clinkered clinkerer clinkering clinkers clinkery clinking clinks clinkstone clinkstones clinkum clinoaxes clinoaxis clinocephalic clinocephalism clinocephalous clinocephalus clinocephaly clinochlore clinochlores clinoclase clinoclasite clinodactyly clinodiagonal clinodiagonals clinodomatic clinodome clinograph clinographic clinohedral clinohedrite clinohumite clinoid clinologic clinology clinometer clinometers clinometria clinometric clinometrical clinometries clinometry clinophobia clinopinacoid clinopinacoidal clinopinacoids clinopinakoid clinopinakoids clinopodium clinoprism clinopyramid clinopyroxene clinorhombic clinoril clinospore clinostat clinquant clinquants clint clinting clinton clintonia clintonias clintonite clints clinty clio cliometric cliometrically cliometrician cliometricians cliometrics clip clipart cliparts clipboard clipboards clipe cliped clipei clipes clipeus cliping clippable clipped clipper clipperman clippers clippie clippies clipping clippingly clippings clips clipse clipsheet clipsheets clipsome clipt clique cliqued cliquedom cliqueier cliqueiest cliqueless cliques cliquey cliqueyness cliquier cliquiest cliquiness cliquinesses cliquing cliquish cliquishly cliquishness cliquishnesses cliquism cliquisms cliquy cliseometer clisere clises clishmaclaver clishmaclavers clisis clistocarp clistocarpous clistogamies clistogamy clistothcia clistothecia clistothecium clit clitch clite clitella clitellar clitelliferous clitelline clitellum clitellus clites clithe clithral clithridiate clitia clitic cliticization cliticizations cliticize cliticized cliticizes cliticizing clitics clition clitocybe clitoral clitorectomies clitorectomy clitoria clitoric clitoridauxe clitoridean clitoridectomies clitoridectomy clitorides clitoriditis clitoridotomy clitoris clitorises clitorism clitoritis clitoromania clitoromaniac clitoromaniacal clits clitter clitterclatter clittered clittering clitters cliv clival clive cliver clivers clivia clivias clivis clivises clivus clix clk clo cloaca cloacae cloacal cloacalin cloacaline cloacas cloacean cloacinal cloacinean cloacitis cloak cloakage cloaked cloakedly cloaking cloakless cloaklet cloakmaker cloakmaking cloakroom cloakrooms cloaks cloakwise cloam cloamen cloamer cloams clobber clobbered clobberer clobbering clobbers clochan clochard clochards cloche clocher cloches clochette clock clockbird clockcase clocked clocker clockers clockface clockfaces clockhouse clocking clockings clockkeeper clockless clocklike clockmaker clockmakers clockmaking clockmutch clockroom clocks clocksmith clockwatcher clockwatchers clockwise clockwork clockworked clockworks clod clodbreaker clodded clodder cloddier cloddiest cloddily cloddiness clodding cloddish cloddishly cloddishness cloddishnesses cloddy clodhead clodhopper clodhopperish clodhoppers clodhopping clodknocker clodlet clodlike clodly clodpate clodpated clodpates clodpole clodpoles clodpoll clodpolls clods cloes clof cloff cloffs clofibrate clofibrates clog clogdance clogdances clogdogdo clogged clogger cloggers cloggier cloggiest cloggily clogginess clogginesses clogging cloggy cloghad cloghaun cloghead cloglike clogmaker clogmaking clogs clogwheel clogwood clogwyn cloine cloiochoanitic cloison cloisonless cloisonn cloisonna cloisonnage cloisonnages cloisonne cloisonnes cloisonnism cloisonné cloisons cloister cloisteral cloistered cloisterer cloisterers cloistering cloisterless cloisterlike cloisterliness cloisterly cloisters cloisterwise cloistral cloistress cloistresses cloit cloke cloked clokes clokies cloking cloky clomb clomben clomid clomiphene clomiphenes clomipramine clomp clomped clomping clomps clon clonal clonally clonazepam clonazepams clone cloned cloner cloners clones clong clonic clonicities clonicity clonicotonic clonidine clonidines cloning clonings clonism clonisms clonk clonked clonking clonks clonorchiasis clonos clons clonus clonuses cloof cloop cloops cloot clootie cloots clop clopped clopping clops cloque cloques cloqué cloragen clorargyrite clorinator cloriodid clorox clos closable close closeable closecross closed closedown closedowns closefisted closefistedly closefistedness closefistednesses closefitting closehanded closehauled closehead closeheads closehearted closelipped closely closemouth closemouthed closen closeness closenesses closeout closeouts closer closers closes closest closestool closestools closet closeted closetful closetfuls closeting closets closeup closeups closewing closh closing closings closish closkey closky closter clostridia clostridial clostridian clostridium clostridiums closure closured closures closuring clot clotbur clotburs clote clotebur cloteburs clotes cloth clothbound clothe clothed clothes clothesbag clothesbasket clothesbrush clotheshorse clotheshorses clothesless clothesline clotheslined clotheslines clotheslining clothesman clothesmen clothesmonger clothespin clothespins clothespress clothespresses clothesyard clothier clothiers clothify clothing clothings clothlike clothmaker clothmaking clotho cloths clothworker clothy clotpoll clotpolls clotrimazole clotrimazoles clots clottage clotted clottedness clotter clottered clottering clotters clottier clottiest clottiness clottinesses clotting clottings clottish clotty cloture clotured clotures cloturing clotweed clou cloud cloudage cloudages cloudberries cloudberry cloudburst cloudbursts cloudcap clouded cloudful cloudier cloudiest cloudily cloudiness cloudinesses clouding cloudings cloudland cloudlands cloudless cloudlessly cloudlessness cloudlessnesses cloudlet cloudlets cloudlike cloudling cloudology clouds cloudscape cloudscapes cloudship cloudtown cloudtowns cloudward cloudwards cloudy clouee clough cloughs clour cloured clouring clours clous clout clouted clouter clouterly clouters clouting clouts clouty clove cloven clovene clovepink clovepinks clover clovered clovergrass clovergrasses cloverlay cloverleaf cloverleafs cloverleaves cloverley cloveroot cloverroot clovers clovery cloves clovewort clovis clow clowder clowders clower clowlike clown clownade clownage clowned clowneries clownery clownheal clowning clownings clownish clownishly clownishness clownishnesses clowns clownship clowre clowring clows cloxacillin cloxacillins cloy cloye cloyed cloyedness cloyer cloyes cloying cloyingly cloyingness cloyingnesses cloyless cloyment cloyments cloyne cloys cloysome clozapine clozapines cloze clozes clr club clubabilities clubability clubable clubbabilities clubbability clubbable clubbed clubber clubbers clubbier clubbiest clubbily clubbiness clubbinesses clubbing clubbings clubbish clubbishness clubbism clubbisms clubbist clubbists clubby clubdom clubface clubfaces clubfeet clubfellow clubfist clubfisted clubfoot clubfooted clubhand clubhands clubhaul clubhauled clubhauling clubhauls clubhead clubhouse clubhouses clubionid clubland clublands clubman clubmanship clubmanships clubmaster clubmasters clubmate clubmen clubmobile clubmonger clubmoss clubridden clubroom clubrooms clubroot clubroots clubrush clubrushes clubs clubstart clubster clubweed clubwoman clubwomen clubwood cluck clucked cluckier cluckiest clucking clucks clucky cludder cludgie cludgies clue clued clueing clueless cluelessly cluelessness clues cluff cluing clum clumber clumbers clump clumped clumper clumpers clumpier clumpiest clumpily clumpiness clumpinesses clumping clumpish clumpishness clumplike clumproot clumps clumpst clumpy clumse clumsier clumsiest clumsily clumsiness clumsinesses clumsy clunch clunches clung cluniac clunk clunked clunker clunkers clunkier clunkiest clunking clunks clunky clunter clupanodonic clupea clupeid clupeidae clupeids clupeiform clupein clupeine clupeiod clupeoid clupeoids clupien cluppe cluricaune clusia clusiaceae clusiaceous clusias cluster clusterberry clustered clusterfist clustering clusteringly clusterings clusters clustery clutch clutched clutcher clutches clutching clutchingly clutchman clutchy cluther clutter cluttered clutterer cluttering clutterment clutters cluttery clvi clvii clxi clxii clxiv clxix clxvi clxvii cly clydesdale clyer clyers clyfaker clyfaking clying clype clypeal clypeaster clypeastroid clypeate clypeated clyped clypei clypeiform clypeola clypeolar clypeolate clypeole clypes clypeus clypeuses clyping clyses clysis clysma clysmian clysmic clyssus clyster clysterize clysters clytemnestra cm cmd cmdg cmdr cml cnemapophysis cnemial cnemic cnemides cnemidium cnemidophorus cnemis cneoraceous cnibophore cnicin cnicus cnida cnidae cnidaria cnidarian cnidarians cnidoblast cnidoblasts cnidocell cnidocil cnidocils cnidocyst cnidogenous cnidophobia cnidophore cnidophorous cnidopod cnidosac cnidoscolus cnidosis cnidosporidia cns co coabode coabound coabsume coacceptor coacervate coacervated coacervates coacervating coacervation coacervations coach coachability coachable coachbuilder coachbuilders coachbuilding coachbuildings coachbuilt coachdog coachdogs coached coachee coachees coacher coachers coaches coachfellow coachful coachies coaching coachings coachlet coachline coachlines coachload coachloads coachmaker coachmaking coachman coachmanship coachmaster coachmen coachs coachsmith coachsmithing coachway coachwhip coachwhips coachwise coachwoman coachwood coachwoods coachwork coachworks coachwright coachy coact coacted coacting coaction coactions coactive coactively coactivities coactivity coactor coactors coacts coadamite coadapt coadaptation coadaptations coadapted coadapting coadequate coadjacence coadjacencies coadjacency coadjacent coadjacently coadjudicator coadjument coadjust coadjustment coadjutant coadjutants coadjutator coadjute coadjutement coadjutive coadjutor coadjutors coadjutorship coadjutorships coadjutress coadjutresses coadjutrice coadjutrices coadjutrix coadjutrixes coadjuvancy coadjuvant coadjuvate coadminister coadministration coadministrations coadministrator coadministratrix coadmiration coadmire coadmired coadmires coadmiring coadmit coadmits coadmitted coadmitting coadnate coadore coadsorbent coadunate coadunated coadunates coadunating coadunation coadunations coadunative coadunatively coadunite coadventure coadventured coadventurer coadventuress coadventuring coadvice coaeval coaevals coaffirmation coafforest coaged coagel coagencies coagency coagent coagents coaggregate coaggregated coaggregation coagitate coagitator coagment coagmentation coagonize coagriculturist coagula coagulabilities coagulability coagulable coagulant coagulants coagulase coagulases coagulate coagulated coagulates coagulating coagulation coagulations coagulative coagulator coagulators coagulatory coagule coagulin coaguline coagulometer coagulose coagulum coagulums coaid coaita coaitas coak coakum coal coala coalas coalbag coalbagger coalball coalballs coalbin coalbins coalbox coalboxes coaldealer coaled coaler coalers coalesce coalesced coalescence coalescences coalescency coalescent coalesces coalescing coalface coalfaces coalfield coalfields coalfish coalfishes coalfitter coalheugh coalhole coalholes coalhouse coalhouses coalier coaliest coalification coalifications coalified coalifies coalify coalifying coaling coalise coalised coaliser coalises coalising coalite coalition coalitional coalitioner coalitioners coalitionism coalitionisms coalitionist coalitionists coalitions coalize coalized coalizer coalizes coalizing coalless coalman coalmaster coalmasters coalmen coalmine coalminer coalminers coalmines coalmonger coalmouse coalpit coalpits coalrake coals coalsack coalsacks coalshed coalsheds coaltar coaltars coalternate coalternation coalternative coaltitude coaly coalyard coalyards coambassador coambulant coamiable coaming coamings coanchor coanchored coanchoring coanchors coanimate coannex coannexed coannexes coannexing coannihilate coapostate coapparition coappear coappearance coappeared coappearing coappears coappellee coapprehend coapprentice coappriser coapprover coapt coaptate coaptation coaptations coapted coapting coapts coaration coarb coarbiter coarbitrator coarbs coarct coarctate coarctated coarctates coarctating coarctation coarctations coarcted coarcting coardent coarrange coarrangement coarse coarsely coarsen coarsened coarseness coarsenesses coarsening coarsens coarser coarsest coarsish coart coarticulate coarticulation coascend coassert coasserter coassession coassessor coassignee coassist coassistance coassistant coassisted coassisting coassists coassume coassumed coassumes coassuming coast coastal coastally coasted coaster coasters coastguard coastguardman coastguardmen coastguards coastguardsman coastguardsmen coasting coastings coastland coastlands coastline coastlines coastman coastmen coasts coastside coastwaiter coastward coastwards coastways coastwise coat coatdress coatdresses coate coated coatee coatees coater coaters coates coathangers coati coatie coatimondi coatimondie coatimondis coatimundi coatimundis coating coatings coation coatis coatless coatrack coatracks coatroom coatrooms coats coatstand coatstands coattail coattailed coattails coattend coattended coattending coattends coattest coattestation coattestator coattested coattesting coattests coaudience coauditor coaugment coauthered coauthor coauthored coauthoring coauthority coauthors coauthorship coauthorships coawareness coax coaxal coaxation coaxed coaxer coaxers coaxes coaxial coaxially coaxing coaxingly coaxy coazervate coazervation cob cobaea cobalamin cobalamine cobalamines cobalamins cobalt cobaltamine cobaltammine cobaltic cobalticyanic cobalticyanides cobaltiferous cobaltine cobaltines cobaltinitrite cobaltite cobaltites cobaltocyanic cobaltocyanide cobaltous cobalts cobang cobb cobbed cobber cobberer cobbers cobbier cobbiest cobbin cobbing cobble cobbled cobbler cobblerfish cobbleries cobblerism cobblerless cobblers cobblership cobblery cobbles cobblestone cobblestoned cobblestones cobblestoning cobbling cobblings cobbly cobbra cobbs cobby cobcab cobdenism cobego cobelief cobeliever cobelligerent cobelligerents cobenignity coberger cobewail cobhead cobhouse cobia cobias cobiron cobishop cobitidae coble cobleman cobles cobless cobloaf cobloaves cobnut cobnuts cobol cobola coboss coboundless cobourg cobra cobras cobreathe cobric cobridgehead cobriform cobrother cobs cobstone coburg coburgess coburgher coburghership coburgs cobweb cobwebbed cobwebberies cobwebbery cobwebbier cobwebbiest cobwebbing cobwebby cobwebs cobwork cobza cobzas coca cocaceous cocaigne cocaine cocaines cocainisation cocainisations cocainise cocainised cocainises cocainising cocainism cocainisms cocainist cocainists cocainization cocainizations cocainize cocainized cocainizes cocainizing cocainomania cocainomaniac cocains cocamine cocao cocaptain cocaptained cocaptaining cocaptains cocarboxylase cocarboxylases cocarcinogen cocarcinogenic cocarcinogens cocarde cocas cocash cocashweed cocatalyst cocatalysts cocause cocautioner coccaceous coccagee coccal cocceian coccerin cocci coccic coccid coccidae coccidia coccidial coccidian coccidioidal coccidioidomycoses coccidioidomycosis coccidiomycosis coccidioses coccidiosis coccidiostat coccidiostats coccidium coccidology coccids cocciferous cocciform coccigenic coccin coccinella coccinellid coccinellidae coccineous coccionella coccis cocco coccobaccilli coccobacilli coccobacillus coccochromatic coccogone coccogonium coccoid coccoidal coccoidea coccoids coccolite coccolites coccolith coccolithophorid coccoliths coccos coccosphere coccostean coccosteid coccothraustes coccothraustine coccous coccule cocculiferous cocculus coccus coccydynia coccygalgia coccygeal coccygean coccygectomy coccygerector coccyges coccygeus coccygian coccygine coccygodynia coccygomorph coccygomorphic coccygotomy coccyodynia coccyx coccyxes coccyzus cocentric coch cochair cochaired cochairing cochairman cochairmanship cochairmen cochairperson cochairpersons cochairs cochairwoman cochairwomen cochal cochampion cochampions cocher cochero coches cochief cochimi cochin cochineal cochineals cochins cochlea cochleae cochlear cochleare cochlearia cochlearifoliate cochleariform cochlearius cochleary cochleas cochleate cochleated cochleiform cochleitis cochleleae cochleleas cochleous cochlidiid cochliodont cochlite cochlitis cochlospermaceous cochon cochromatography cochurchwarden cochylis cocillana cocin cocinera cocineras cocinero cocircular cocircularity cocitizen cocitizenship cock cockabondy cockabullies cockabully cockade cockaded cockades cockadoodledoo cockaigne cockal cockalan cockaleekie cockaleekies cockalorum cockalorums cockamamie cockamamy cockamaroo cockandy cockapoo cockapoos cockard cockarouse cockateel cockateels cockatiel cockatiels cockatoo cockatoos cockatrice cockatrices cockawee cockbell cockbill cockbilled cockbilling cockbills cockbird cockbirds cockboat cockboats cockbrain cockchafer cockchafers cockcrow cockcrower cockcrowing cockcrows cocked cocker cockered cockerel cockerels cockerie cockering cockermeg cockernonies cockernonnie cockernony cockerouse cockers cocket cocketed cocketing cockets cockeye cockeyed cockeyedly cockeyedness cockeyednesses cockeyes cockfight cockfighter cockfighting cockfightings cockfights cockhead cockhorse cockhorses cockie cockieleekie cockieleekies cockier cockies cockiest cockily cockiness cockinesses cocking cockish cockishly cockishness cocklaird cocklairds cockle cockleboat cockleboats cocklebur cockleburr cockleburs cockled cockleman cocklemen cockler cockles cockleshell cockleshells cocklet cocklewife cocklight cocklike cockling cockloche cockloft cocklofts cockly cockmaster cockmatch cockmatches cockmate cockneian cockneity cockney cockneybred cockneydom cockneydoms cockneyese cockneyess cockneyfication cockneyfications cockneyfied cockneyfies cockneyfy cockneyfying cockneyish cockneyishly cockneyism cockneyisms cockneyize cockneyland cockneylike cockneys cockneyship cocknified cocknifies cocknify cocknifying cockpaddle cockpit cockpits cockroach cockroaches cocks cockscomb cockscombed cockscombs cocksfoot cocksfoots cockshead cockshies cockshoot cockshot cockshots cockshut cockshuts cockshy cockshying cocksier cocksiest cocksiness cocksinesses cocksparrow cockspur cockspurs cockstone cocksucker cocksuckers cocksure cocksuredom cocksureism cocksurely cocksureness cocksurenesses cocksurety cockswain cockswained cockswaining cockswains cocksy cocktail cocktailed cocktailing cocktails cockteaser cockteasers cockthrowing cockthrowings cockup cockups cockweed cocky cockyleekies cockyleeky cockyolly coclea coco cocoa cocoach cocoanut cocoanuts cocoas cocoawood cocobola cocobolas cocobolo cocobolos cocodette cocomat cocomats cocomposer cocomposers cocona coconnection coconqueror coconscious coconsciously coconsciousness coconsciousnesses coconsecrator coconspirator coconspirators coconstituent cocontractor coconut coconuts cocoon cocooned cocooneries cocoonery cocooning cocoonings cocoons cocopa cocopah cocopan cocopans cocoplum cocoplums cocorico cocoroot cocos cocoswood cocotte cocottes cocounsel cocounseled cocounseling cocounselled cocounselling cocounsels cocovenantor cocowood cocowort cocoyam cocoyams cocozelle cocreate cocreated cocreates cocreating cocreator cocreators cocreatorship cocreditor cocrucify coct coctile coction coctions coctoantigen coctoprecipitin cocuisa cocuiza cocullo cocultivate cocultivated cocultivates cocultivating cocultivation cocultivations coculture cocultured cocultures coculturing cocurator cocurators cocurrent cocurricular cocus cocuswood cocuswoods cocuyo cocytus cod coda codable codal codamin codamine codariocalyx codas codbank codded codder codders codding coddle coddled coddler coddlers coddles coddling coddy code codebook codebooks codebreak codebreaker codebtor codebtors codec codeclination codeclinations codecree codecs coded codefendant codefendants codeia codeias codein codeina codeinas codeine codeines codeins codeless codelight codelinquency codelinquent coden codename codenamed codenization codens codependence codependences codependencies codependency codependent codependents codeposit coder coderive coderived coderives coderiving coders codes codescendant codesign codesigned codesigner codesigners codesigning codesigns codespairer codetermination codeterminations codetermine codetta codettas codette codevelop codeveloped codeveloper codevelopers codeveloping codevelops codeword codewords codex codfish codfisher codfisheries codfishery codfishes codfishing codger codgers codhead codheaded codiaceous codiaeum codical codices codicil codicilic codicillary codicils codicological codicologies codicology codictatorship codifiabilities codifiability codification codifications codified codifier codifiers codifies codify codifying codilla codillas codille codilles coding codings codiniac codirect codirected codirecting codirection codirectional codirections codirector codirectors codirectorship codirects codiscover codiscovered codiscoverer codiscoverers codiscovering codiscovers codisjunct codist codists codivine codlin codline codling codlings codlins codman codo codol codomain codomestication codominance codominances codominant codominants codon codons codpiece codpieces codpitchings codrive codriven codriver codrivers codrives codriving codrove cods codshead codswallop codswallops codworm coe coecal coecum coed coedit coedited coediting coeditor coeditors coeditorship coedits coeds coeducate coeducation coeducational coeducationalise coeducationalism coeducationalize coeducationally coeducations coef coeff coeffect coeffects coefficacy coefficient coefficiently coefficients coeffluent coeffluential coehorn coehorns coelacanth coelacanthic coelacanthid coelacanthine coelacanthoid coelacanthous coelacanths coelanaglyphic coelar coelarium coelastraceous coelder coeldership coelect coelection coelector coelectron coelelminth coelelminthic coelentera coelenterata coelenterate coelenterates coelenteric coelenteron coelestial coelestine coelevate coelho coelia coeliac coeliacs coelialgia coelian coeligenous coelin coeline coeliomyalgia coeliorrhea coeliorrhoea coelioscopy coeliotomy coeloblastic coeloblastula coelodont coelogastrula coeloglossum coelogyne coelom coeloma coelomata coelomate coelomates coelomatic coelomatous coelome coelomes coelomesoblast coelomic coelomopore coeloms coelonavigation coelongated coelophysis coeloplanula coeloscope coelosperm coelospermous coelostat coelostats coelozoic coeltera coelurosaur coelurosaurs coemanate coembedded coembodied coembodies coembody coembodying coembrace coeminency coemperor coemploy coemployed coemployee coemploying coemployment coemploys coempt coempted coempting coemptio coemption coemptional coemptionator coemptions coemptive coemptor coempts coenacle coenact coenacted coenacting coenactor coenacts coenacula coenaculous coenaculum coenaestheses coenaesthesia coenaesthesias coenaesthesis coenamor coenamored coenamoring coenamorment coenamors coenamour coenamoured coenamouring coenamourment coenamours coenanthium coendear coendure coendured coendures coenduring coenenchym coenenchyma coenenchymal coenenchymas coenenchymata coenenchymatous coenenchyme coenesthesia coenesthesias coenesthesis coenflame coengage coengager coenjoy coenla coeno coenobe coenobia coenobiar coenobic coenobiod coenobioid coenobite coenobites coenobitic coenobitical coenobitism coenobitisms coenobium coenoblast coenoblastic coenoby coenocentrum coenocyte coenocytes coenocytic coenodioecism coenoecial coenoecic coenoecium coenogamete coenogenesis coenogenetic coenomonoecism coenosarc coenosarcal coenosarcous coenosarcs coenosite coenospecies coenospecific coenospecifically coenosteal coenosteum coenosteums coenotrope coenotype coenotypic coenourus coenthrone coenunuri coenure coenures coenuri coenurus coenzymatic coenzymatically coenzyme coenzymes coequal coequalise coequalities coequality coequalize coequally coequalness coequals coequate coequated coequates coequating coequation coerce coerceable coerced coercement coercend coercends coercer coercers coerces coercibility coercible coercibleness coercibly coercimeter coercimeters coercing coercion coercionary coercionist coercionists coercions coercitive coercive coercively coerciveness coercivenesses coercivities coercivity coereba coerebidae coerect coerected coerecting coerects coeruleolactite coes coesite coesites coessential coessentialities coessentiality coessentially coessentialness coessentialnesses coestablishment coestate coetanean coetaneity coetaneous coetaneously coetaneousness coetaneousnesses coeternal coeternally coeternities coeternity coetus coeval coevalities coevality coevally coevalneity coevalness coevals coevolution coevolutionary coevolutions coevolve coevolved coevolvedcoevolves coevolves coevolving coexchangeable coexclusive coexecutant coexecutor coexecutors coexecutrices coexecutrix coexert coexerted coexerting coexertion coexerts coexist coexisted coexistence coexistences coexistency coexistent coexisting coexists coexpand coexpanded coexperiencer coexpire coexplosion coextend coextended coextending coextends coextension coextensions coextensive coextensively coextensiveness coextent cofactor cofactors cofaster cofather cofathership cofavorite cofavorites cofeature cofeatured cofeatures cofeaturing cofeoffee coferment cofermentation coff coffea coffed coffee coffeeberries coffeeberry coffeebush coffeecake coffeecakes coffeecup coffeegrower coffeegrowing coffeehouse coffeehoused coffeehouses coffeehousing coffeeleaf coffeemaker coffeemakers coffeeman coffeepot coffeepots coffeeroom coffees coffeetime coffeeweed coffeewood coffer cofferdam cofferdams coffered cofferer cofferfish coffering cofferlike coffers cofferwork coffin coffined coffing coffining coffinite coffinites coffinless coffinmaker coffinmaking coffins coffle coffled coffles coffling coffret coffrets coffs cofighter cofinal cofinance cofinanced cofinances cofinancing coforeknown coformulator cofound cofounded cofounder cofounders cofounding cofoundress cofounds cofreighter coft cofunction cofunctions cog cogboat cogence cogences cogencies cogency cogener cogeneration cogenerations cogenerator cogenerators cogeneric cogeners cogenial cogent cogently cogged cogger coggers coggie coggies cogging coggings coggle coggled coggledy coggles cogglety cogglier coggliest coggling coggly coghle cogida cogie cogies cogit cogitability cogitable cogitabund cogitabundity cogitabundly cogitabundous cogitant cogitantly cogitate cogitated cogitates cogitating cogitatingly cogitation cogitations cogitative cogitatively cogitativeness cogitativenesses cogitativity cogitator cogitators cogito cogitos coglorify coglorious cogman cogmen cognac cognacs cognate cognately cognateness cognatenesses cognates cognati cognatic cognatical cognation cognations cognatus cognisability cognisable cognisableness cognisably cognisance cognisances cognisant cognise cognised cogniser cognisers cognises cognising cognition cognitional cognitions cognitive cognitively cognitives cognitivities cognitivity cognitum cognizability cognizable cognizableness cognizably cognizance cognizances cognizant cognize cognized cognizee cognizer cognizers cognizes cognizing cognizor cognomen cognomens cognomina cognominal cognominally cognominate cognominated cognominates cognominating cognomination cognominations cognosce cognosced cognoscent cognoscente cognoscenti cognosces cognoscibility cognoscible cognoscing cognoscitive cognoscitively cognovit cognovits cogon cogonal cogons cogovernment cogovernor cogracious cograil cogrediency cogredient cogroad cogs coguarantor coguardian cogue cogues cogware cogway cogways cogweel cogweels cogwheel cogwheels cogwood cohab cohabit cohabitancy cohabitant cohabitants cohabitate cohabitation cohabitational cohabitations cohabited cohabitee cohabitees cohabiter cohabiters cohabiting cohabitor cohabitors cohabits cohabs cohanim cohanims coharmonious coharmoniously coharmonize cohead coheaded coheading coheads coheartedness coheir coheiress coheiresses coheirs coheirship cohelper cohelpership cohen cohenite cohens coherald cohere cohered coherence coherences coherencies coherency coherent coherently coherer coherers coheres coheretic cohering coheritage coheritor coheritors cohert cohesibilities cohesibility cohesible cohesion cohesionless cohesions cohesive cohesively cohesiveness cohesivenesses cohibit cohibited cohibiting cohibition cohibitions cohibitive cohibitor cohibits cohitre coho cohob cohoba cohobate cohobated cohobates cohobating cohobation cohobator cohoe cohoes cohog cohogs cohol coholder coholders cohomological cohomologies cohomology cohorn cohorns cohort cohortation cohortative cohortatives cohorts cohos cohosh cohoshes cohost cohosted cohostess cohostessed cohostesses cohostessing cohosting cohosts cohousing cohousings cohow cohue cohune cohunes cohusband cohyponym cohyponyms coidentity coif coifed coiffe coiffed coiffes coiffeur coiffeurs coiffeuse coiffeuses coiffing coiffure coiffured coiffures coiffuring coifing coifs coign coigne coigned coignes coigning coigns coigny coigue coil coilabilities coilability coiled coiler coilers coiling coillen coils coilsmith coilyear coimmense coimplicant coimplicate coimplore coin coinable coinage coinages coincide coincided coincidence coincidences coincidencies coincidency coincident coincidental coincidentally coincidently coincidents coincider coincides coinciding coinclination coincline coinclude coincorporate coindicant coindicate coindication coindwelling coined coiner coiners coinfeftment coinfer coinferred coinferring coinfers coinfinite coinfinity coing coinhabit coinhabitant coinhabitor coinhere coinhered coinherence coinherences coinherent coinheres coinhering coinheritance coinheritances coinheritor coinheritors coining coinings coinitial coinmaker coinmaking coinmate coinmates coinop coinquinate coins coinspire coinstantaneities coinstantaneity coinstantaneous coinstantaneously coinstantaneousness coinstantaneousnesses coinsurable coinsurance coinsurances coinsure coinsured coinsurer coinsurers coinsures coinsuring cointense cointension cointensity cointer cointerest cointerred cointerring cointers cointersecting cointise cointreau coinvent coinvented coinventing coinventor coinventors coinvents coinvestigator coinvestigators coinvestor coinvestors coinvolve coiny coir coirs coislander coisns coistrel coistrels coistril coistrils coit coital coitally coition coitional coitions coitophobia coits coiture coitus coituses cojoin cojoined cojoining cojoins cojones cojudge cojudices cojuror cojusticiar coke coked cokehead cokeheads cokelike cokeman cokeney coker cokernut cokernuts cokers cokery cokes cokeses cokewold cokey cokie cokier cokiest coking cokneyfy cokuloris coky col cola colaborer colacobioses colacobiosis colacobiotic colage colalgia colament colander colanders colane colaphize colaptes colarin colas colascione colasciones colascioni colat colate colation colatitude colatitudes colatorium colature colauxe colazione colback colbert colberter colbertine colbies colby colcannon colcannons colchica colchicaceae colchicia colchicin colchicine colchicines colchicum colchicums colchine colchis colchyte colcothar colcothars cold coldblood coldblooded coldbloodedness coldbloods coldboot coldbooted coldbooting coldboots coldcock coldcocked coldcocking coldcocks coldcream colder coldest coldfinch coldhearted coldheartedly coldheartedness coldheartednesses coldhouse coldhouses coldish coldly coldness coldnesses coldong coldproof colds coldshoulder coldshouldered coldshouldering coldshoulders coldslaw coldturkey cole colead coleader coleaders coleading coleads colecannon colectomies colectomy coled colegatee colegislator colemanite colemanites colemouse colen colent coleochaetaceous coleonyx coleopter coleoptera coleopteral coleopteran coleopterans coleopterist coleopterists coleopteroid coleopterological coleopterology coleopteron coleopterons coleopterous coleoptile coleoptiles coleoptilum coleopttera coleorhiza coleorhizae coleorhizas coleorrhiza coleorrhizae coleplant colera coleridge coleridgean coleridgian coles coleseed coleseeds coleslaw coleslaws colessee colessees colessor colessors colet coletit coletits coleur coleus coleuses colewort coleworts coley coleys colfox coli coliander colibacillosis colibacterin colibert colibertus colibri colibris colic colical colichemarde colicin colicine colicines colicins colicker colickier colickiest colicky colicolitis colicroot colicroots colics colicweed colicwort colicystitis colicystopyelitis colies coliform coliforms colilysin colima colin colinear colinearities colinearity colinephritis coling colins colinus coliphage coliphages coliplication colipuncture colipyelitis colipyuria colisepsis coliseum coliseums colistin colistins colitic colitis colitises colitoxemia coliuria colk coll colla collab collabent collaborate collaborated collaborates collaborateur collaborating collaboration collaborationism collaborationisms collaborationist collaborationists collaborations collaborative collaboratively collaborativeness collaboratives collaborator collaborators collada colladas collage collaged collagen collagenase collagenases collagenic collagenous collagens collages collaging collagist collagists collapsabilities collapsability collapsable collapsar collapsars collapse collapsed collapses collapsibilities collapsibility collapsible collapsing collar collarband collarbird collarbone collarbones collard collards collare collared collaret collarets collarette collarettes collaring collarino collarinos collarless collarman collars collat collatable collate collated collatee collateral collateralise collateralities collaterality collateralization collateralizations collateralize collateralized collateralizes collateralizing collaterally collateralness collaterals collates collating collation collational collationer collations collatitious collative collator collators collatress collaud collaudation colleague colleagued colleagues colleagueship colleagueships colleaguesmanship colleaguing collect collectability collectable collectables collectanea collectarium collected collectedly collectedness collectednesses collectibility collectible collectibles collecting collectings collection collectional collectioner collections collective collectively collectiveness collectivenesses collectives collectivisation collectivisations collectivise collectivised collectivises collectivising collectivism collectivisms collectivist collectivistic collectivistically collectivists collectivities collectivity collectivization collectivizations collectivize collectivized collectivizes collectivizing collectivum collector collectorate collectorates collectors collectorship collectorships collectress collects colled colleen colleens collegatary college colleger collegers colleges collegese collegia collegial collegialism collegialisms collegialities collegiality collegially collegian collegianer collegianers collegians collegiate collegiately collegiateness collegiates collegiation collegiugia collegium collegiums collembola collembolan collembolans collembole collembolic collembolous collen collenchyma collenchymas collenchymata collenchymatic collenchymatous collenchyme collencytal collencyte collery collet colletarium colleted colleter colleterial colleterium colletic colleting collets colletside colley collibert collicle colliculate colliculi colliculus collide collided collider colliders collides collidin collidine colliding collie collied collielike collier collieries colliers colliery collies collieshangie collieshangies colliflower colliform colligance colligate colligated colligates colligating colligation colligations colligative colligible collimate collimated collimates collimating collimation collimations collimator collimators collin collinal colline collinear collinearities collinearity collinearly collineate collineation colling collingly collings collingual collins collinses collinsia collinsias collinsite collinsonia colliquable colliquament colliquant colliquate colliquated colliquates colliquating colliquation colliquations colliquative colliquativeness colliquefaction colliquescence colliquescences collis collision collisional collisionally collisions collisive colloblast collobrierite collocal collocalia collocate collocated collocates collocating collocation collocationable collocational collocations collocative collocatory collochemistry collochromate collock collocution collocutor collocutors collocutory collodiochloride collodion collodionization collodionize collodions collodiotype collodium collogen collogue collogued collogues colloguing colloid colloidal colloidality colloidally colloider colloidize colloidochemical colloids collomia collop colloped collophane collophanite collophore collops colloq colloque colloqued colloques colloquia colloquial colloquialise colloquialism colloquialisms colloquialist colloquialists colloquialities colloquiality colloquialize colloquializer colloquially colloquialness colloquialnesses colloquials colloquied colloquies colloquing colloquiquia colloquiquiums colloquise colloquised colloquises colloquising colloquist colloquists colloquium colloquiums colloquize colloquized colloquizes colloquizing colloququia colloquy colloquying collossians collothun collotype collotyped collotypes collotypic collotyping collotypy collow colloxylin colls colluctation colluctations collude colluded colluder colluders colludes colluding collum collumelliaceous collun collunaria collunarium collusion collusions collusive collusively collusiveness collusivenesses collusory collut collution collutoria collutories collutorium collutory colluvia colluvial colluvies colluvium colluviums colly collyba collybist collying collylyria collyr collyria collyridian collyrie collyrite collyrium collyriums collywest collyweston collywobbles colmar colmars colmose colnaria colob colobi colobid colobin colobium coloboma colobomata colobomatous colobus colobuses colocasia colocate colocated colocates colocating colocentesis colocephalous coloclysis colocola colocolic colocolo colocynth colocynthin colocynths colodyspepsia coloenteritis colog cologarithm cologarithms cologne cologned colognes cologs colola cololite colomb colombia colombian colombians colombier colombin colombo colometric colometrically colometry colon colonaded colonalgia colonate colone colonel colonelcies colonelcy colonelling colonellings colonels colonelship colonelships coloner colones colonette colongitude coloni colonia colonial colonialise colonialised colonialises colonialising colonialism colonialisms colonialist colonialistic colonialists colonialization colonializations colonialize colonialized colonializes colonializing colonially colonialness colonialnesses colonials colonias colonic colonical colonics colonies colonisability colonisable colonisation colonisationist colonisationists colonisations colonise colonised coloniser colonisers colonises colonising colonist colonists colonitis colonitises colonizability colonizable colonization colonizationist colonizationists colonizations colonize colonized colonizer colonizers colonizes colonizing colonnade colonnaded colonnades colonnette colonopathy colonopexy colonoscope colonoscopes colonoscopic colonoscopies colonoscopy colons colonus colony colopexia colopexotomy colopexy colophan colophane colophany colophene colophenic colophon colophonate colophonic colophonies colophonist colophonite colophonium colophons colophony coloplication coloppe coloproctitis coloptosis colopuncture coloquies coloquintid coloquintida coloquintidas color colorabilities colorability colorable colorableness colorablenesses colorably coloradan coloradans coloradillo colorado coloradoite colorant colorants colorate coloration colorational colorationally colorations colorative coloratura coloraturas colorature colorbearer colorblind colorblindness colorblindnesses colorbred colorbreed colorbreeding colorbreeds colorcast colorcasted colorcaster colorcasting colorcasts colorectal colorectitis colorectostomy colored coloreds colorer colorers colorfast colorfastness colorfastnesses colorfield colorful colorfully colorfulness colorfulnesses colorific colorifics colorimeter colorimeters colorimetric colorimetrical colorimetrically colorimetrics colorimetries colorimetrist colorimetry colorin coloring colorings colorism colorisms colorist coloristic coloristically colorists colorization colorizations colorize colorized colorizes colorizing colorless colorlessly colorlessness colorlessnesses colormaker colormaking colorman colormen coloroto colorpoint colorpoints colorrhaphy colors colortype colorway colorways colory coloslossi coloslossuses coloss colossal colossality colossally colossean colosseum colosseums colossi colossian colossians colosso colossus colossuses colostomies colostomy colostral colostration colostric colostrous colostrum colostrums colotomies colotomy colotyphoid colour colourabilities colourability colourable colourableness colourablenesses colourably colouradan colouradans colourado colouradoite colourant colourants colourate colouration colourational colourationally colourations colourative colourbearer colourblind colourblindness colourblindnesses colourbred colourbreed colourbreeding colourbreeds colourcast colourcasted colourcaster colourcasting colourcasts colourectal colourectitis colourectostomy coloured coloureds colourer colourers colourfast colourfastness colourfastnesses colourful colourfully colourfulness colourfulnesses colourific colourifics colourimetrical colourimetrically colourimetrist colourin colouring colourings colourisation colourisations colourise colourised colourises colourising colourism colourisms colourist colouristic colouristically colourists colourization colourizations colourize colourized colourizes colourizing colourless colourlessly colourlessness colourlessnesses colourmaker colourmaking colourman colourmen colouroto colourpoint colourpoints colourrhaphy colours colourtype colourwash colourwashed colourwashes colourwashing colourway colourways coloury colove colp colpenchyma colpeo colpeurynter colpeurysis colpheg colpindach colpitis colpitises colpocele colpocystitis colpocystocele colpoda colpodas colpohyperplasia colpohysterotomy colpoperineoplasty colpoperineorrhaphy colpoplastic colpoplasty colpoptosis colporrhagia colporrhaphy colporrhea colporrhexis colport colportage colportages colporter colporteur colporteurs colposcope colposcopes colposcopic colposcopical colposcopically colposcopies colposcopy colpostat colpotomies colpotomy colpoxerosis colpus cols colstaff colt colted colter colters colthood colting coltish coltishly coltishness coltishnesses coltlike coltoria coltpixie coltpixy colts coltsfoot coltsfoots coltskin coltwood coltwoods colubaria coluber colubers colubriad colubriads colubrid colubridae colubrids colubriform colubrina colubrine colubroid colugo colugos columba columbaceous columbaria columbaries columbarium columbary columbate columbates columbeia columbeion columbia columbiad columbian columbic columbidae columbier columbiferous columbiformes columbin columbine columbines columbite columbites columbium columbiums columbo columboid columbotantalate columbotitanate columbous columbus columel columella columellae columellar columellas columellate columelliform columels column columna columnal columnar columnarian columnarities columnarity columnarized columnate columnated columnates columnating columnation columnea columneas columned columner columniated columniation columniations columniferous columniform columning columnisation columnise columnised columnises columnising columnist columnistic columnists columnization columnize columnized columnizes columnizing columnlike columns columnwise colunar colure colures colusite colutea coly colyba colymbiform colymbiformes colymbion colyone colyonic colytic colyum colyumist colza colzas com coma comacine comade comae comagistracy comagmatic comake comaker comakers comakes comaking comal comales comals comamie comanage comanaged comanagement comanagements comanager comanagers comanages comanaging comanche comanchean comanchero comancheros comanches comandante comandantes comandanti comandra comanic comaraderie comarb comarbs comarca comart comarts comarum comas comate comates comatic comatik comatiks comatose comatosely comatoseness comatosity comatous comatula comatulae comatulid comatulids comb combaron combasou combat combatable combatant combatants combated combater combaters combating combative combatively combativeness combativenesses combativity combats combattant combattants combatted combatter combatting combe combed comber combers combes combfish combfishes combflower combi combier combies combiest combinabilities combinability combinable combinableness combinably combinant combinantive combinate combination combinational combinations combinative combinator combinatorial combinatorially combinatoric combinatorics combinators combinatory combind combine combined combinedly combinedness combinement combiner combiners combines combing combings combining combis combite comble combless comblessness comblike combmaker combmaking combo comboloio combos comboy combre combretaceae combretaceous combretum combretums combs comburant combure comburendo comburent comburgess comburgesses comburimeter comburimetry comburivorous combust combusted combustibilities combustibility combustible combustibleness combustiblenesses combustibles combustibly combusting combustion combustions combustious combustive combustively combustor combustors combusts combwise combwright comby comd comdg comdia comdr comdt come comeatable comeback comebacker comebacks comeddle comeddled comeddles comeddling comedia comedial comedian comedians comediant comedic comedical comedically comedienne comediennes comedies comedietta comediettas comediette comedist comedo comedogenic comedones comedos comedown comedowns comedy comelier comeliest comelily comeliness comelinesses comeling comely comember comembers comendite comenic comephorous comer comers comes comessation comestible comestibles comestion comet cometaria cometarium cometary cometh comether comethers cometic cometical cometlike cometographer cometographical cometographies cometography cometoid cometologies cometology comets cometwise comeupance comeuppance comeuppances comfier comfiest comfily comfiness comfit comfits comfiture comfitures comfort comfortabilities comfortability comfortable comfortableness comfortablenesses comfortably comfortation comfortative comforted comforter comforters comfortful comforting comfortingly comfortless comfortlessly comfortlessness comfortlessnesses comfortress comfortroot comforts comfrey comfreys comfy comic comical comicalities comicality comically comicalness comicalnesses comice comices comicocratic comicocynical comicodidactic comicography comicoprosaic comicotragedy comicotragic comicotragical comicry comics comida comiferous cominformist cominformists coming comingle comingled comingles comingling comings comino comint comintern comique comiques comism comitadji comitadjis comital comitant comitatensian comitative comitatives comitatus comitatuses comite comites comitia comitial comities comitiva comitje comitragedy comity comix coml comm comma commaes commaing command commandable commandant commandants commandantship commandantships commandatory commanded commandedness commandeer commandeered commandeering commandeers commander commanderies commanders commandership commanderships commandery commanding commandingly commandingness commandite commandless commandment commandments commando commandoes commandoman commandos commandress commandrie commandries commandry commands commark commas commassation commassee commata commaterial commatic commation commatism comme commeasurable commeasure commeasured commeasures commeasuring commeddle commelina commelinaceae commelinaceous commelinales commelinidae commem commemorable commemorate commemorated commemorates commemorating commemoration commemorational commemorations commemorative commemoratively commemorativeness commemoratives commemorator commemorators commemoratory commemorize commemorized commemorizing commence commenceable commenced commencement commencements commencer commencers commences commencing commend commenda commendable commendableness commendablenesses commendably commendador commendam commendams commendatary commendation commendations commendator commendatories commendatorily commendators commendatory commended commender commenders commending commendingly commendment commends commensal commensalism commensalisms commensalist commensalistic commensalities commensality commensally commensals commensurabilities commensurability commensurable commensurableness commensurablenesses commensurably commensurate commensurated commensurately commensurateness commensuratenesses commensurating commensuration commensurations comment commentable commentarial commentarialism commentaries commentary commentate commentated commentates commentating commentation commentations commentative commentator commentatorial commentatorially commentators commentatorship commented commenter commenters commenting commentitious commentor commentors comments commer commerce commerced commerceless commercer commerces commercia commerciable commercial commercialese commercialeses commercialisation commercialisations commercialise commercialised commercialises commercialising commercialism commercialisms commercialist commercialistic commercialists commercialities commerciality commercialization commercializations commercialize commercialized commercializes commercializing commercially commercialness commercials commercing commercium commere commeres commerge commerged commerges commerging commers commesse commesses commesso commie commies commigration commilitant comminate comminated comminates comminating commination comminations comminative comminator comminatory commingle commingled comminglement commingler commingles commingling comminister comminuate comminute comminuted comminutes comminuting comminution comminutions comminutor commiphora commis commisce commise commiserable commiserate commiserated commiserates commiserating commiseratingly commiseration commiserations commiserative commiseratively commiserator commiserators commissar commissarial commissariat commissariats commissaries commissars commissary commissaryship commissaryships commission commissionable commissionaire commissionaires commissional commissionary commissionate commissionated commissionating commissioned commissioner commissioners commissionership commissionerships commissioning commissions commissionship commissive commissively commissoria commissural commissure commissures commissurotomies commissurotomy commistion commit commitedness commitment commitments commits committable committal committals committed committedly committedness committee committeeism committeeman committeemen committees committeeship committeeships committeewoman committeewomen committent committer committers committible committing committitur committment committor commix commixed commixes commixing commixt commixtion commixtions commixture commixtures commo commodata commodatary commodate commodation commodatum commode commoderate commodes commodification commodifications commodified commodifies commodify commodifying commodious commodiously commodiousness commodiousnesses commoditable commodities commodity commodo commodore commodores commoigne commolition common commonable commonage commonages commonalities commonality commonalties commonalty commonance commoned commonefaction commoner commoners commonership commonest commoney commoneys commonhold commonholds commoning commonings commonise commonish commonition commonize commonly commonness commonnesses commonplace commonplaced commonplaceism commonplacely commonplaceness commonplacenesses commonplacer commonplaces commonplacing commons commonsense commonsensible commonsensibly commonsensical commonsensically commonty commonweal commonweals commonwealth commonwealthism commonwealths commonwealthsman commonwealthsmen commorancies commorancy commorant commorants commorient commorientes commorse commorth commos commot commote commotes commotion commotional commotions commotive commots commove commoved commoves commoving commulation commulative communa communal communalisation communalisations communalise communalised communaliser communalises communalising communalism communalisms communalist communalistic communalists communalities communality communalization communalizations communalize communalized communalizer communalizes communalizing communally communard communards communautaire communautaires communbus commune communed communer communers communes communicabilities communicability communicable communicableness communicablenesses communicably communicant communicants communicate communicated communicatee communicatees communicates communicating communication communicational communications communicative communicatively communicativeness communicativenesses communicator communicators communicatory communing communings communion communionable communional communionist communions communiqu communiqua communique communiques communis communisation communisations communise communised communises communising communism communisms communist communisteries communistery communistic communistical communistically communists communitaire communitaires communital communitarian communitarianism communitarianisms communitarians communitary communities communitive communitorium community communitywide communization communizations communize communized communizes communizing commutabilities commutability commutable commutableness commutant commutate commutated commutates commutating commutation commutations commutative commutatively commutativities commutativity commutator commutators commute commuted commuter commuters commutes commuting commutual commutuality commy commère commères comodato comodo comoedia comoedus comoid comolecule comonomer comonomers comonte comoquer comorado comoros comortgagee comose comourn comourner comournful comous comp compaa compact compactability compactable compacted compactedly compactedness compactednesses compacter compacters compactest compactible compactification compactifications compactified compactifies compactify compactifying compactile compacting compaction compactions compactly compactness compactnesses compactor compactors compacts compacture compactures compadre compadres compage compages compaginate compaginated compaginates compaginating compagination compaginations compagnie compagnies companable companage companator compand companded compander companders companding compandor compandors compands companero companeros compania companiable companias companied companies companing companion companionabilities companionability companionable companionableness companionablenesses companionably companionage companionate companionates companioned companionhood companionhoods companioning companionise companionize companionized companionizing companionless companions companionship companionships companionway companionways company companying companyless compar comparabilities comparability comparable comparableness comparablenesses comparably comparascope comparate comparatist comparatists comparatival comparative comparatively comparativeness comparativenesses comparatives comparativist comparativists comparator comparators comparcioner compare compared comparer comparers compares comparing comparison comparisons comparition comparograph comparsa compart comparted compartimenti compartimento comparting compartition compartment compartmental compartmentalisation compartmentalisations compartmentalise compartmentalised compartmentalises compartmentalising compartmentalization compartmentalizations compartmentalize compartmentalized compartmentalizes compartmentalizing compartmentally compartmentation compartmentations compartmented compartmenting compartmentise compartmentize compartments compartner comparts compass compassability compassable compassed compasser compasses compassing compassings compassion compassionable compassionate compassionated compassionately compassionateness compassionatenesses compassionates compassionating compassioned compassioning compassionless compassions compassive compassivity compassless compassment compast compatability compatable compaternity compathy compatibilities compatibility compatible compatibleness compatiblenesses compatibles compatibly compatience compatient compatriot compatriotic compatriotism compatriotisms compatriots compauero compaueros compauia compauias compd compear compearance compearances compearant compearants compeared compearing compears comped compeer compeered compeering compeers compel compellability compellable compellably compellation compellations compellative compellatives compelled compellent compeller compellers compelling compellingly compels compend compendency compendent compendia compendiary compendiate compendious compendiously compendiousness compendiousnesses compendium compendiums compends compenetrate compenetration compensabilities compensability compensable compensate compensated compensates compensating compensatingly compensation compensational compensations compensative compensatively compensativeness compensator compensators compensatory compense compenser comper compere compered comperes compering compers compert compesce compesced compesces compescing compester compete competed competence competences competencies competency competent competently competentness competer competers competes competible competing competingly competition competitioner competitions competitive competitively competitiveness competitivenesses competitor competitors competitorship competitory competitress competitrix compilable compilation compilations compilator compilators compilatory compile compileable compiled compilement compilements compiler compilers compiles compiling comping compinge compings compital compitum complacence complacences complacencies complacency complacent complacential complacentially complacently complain complainable complainant complainants complained complainer complainers complaining complainingly complainingness complainings complains complaint complaintful complaintive complaintiveness complaints complaisance complaisances complaisant complaisantly complaisantness complanar complanate complanation complanations complant compleat compleated compleating compleats complect complected complecting complection complects complement complemental complementally complementalness complementaries complementarily complementariness complementarinesses complementarism complementarities complementarity complementary complementation complementations complementative complemented complementer complementers complementing complementiser complementizer complementizers complementoid complements completable complete completed completedness completely completement completeness completenesses completer completers completes completest completing completion completions completist completists completive completively completories completory complex complexation complexations complexed complexedness complexednesses complexer complexes complexest complexification complexifications complexified complexifier complexifies complexify complexifying complexing complexion complexionably complexional complexionally complexionary complexioned complexionist complexionless complexions complexities complexity complexive complexively complexly complexness complexnesses complexometric complexometry complexus complexuses compliable compliableness compliably compliance compliances compliancies compliancy compliant compliantly complicacies complicacy complicant complicate complicated complicatedly complicatedness complicatednesses complicates complicating complication complications complicative complicator complicators complice complices complicit complicities complicitous complicity complied complier compliers complies compliment complimentable complimental complimentally complimentalness complimentarily complimentariness complimentarity complimentary complimentation complimentative complimented complimenter complimenters complimenting complimentingly compliments complin compline complines complins complish complished complishes complishing complot complotment complots complotted complotter complotting complutensian compluvia compluvium compluviums comply complying compo compoed compoer compoing compole compone componed componencies componency componendo component componental componented componential componentry components componentwise compony componé comport comportable comportance comportances comported comporting comportment comportments comports compos composable composal composant compose composed composedly composedness composednesses composer composers composes composing composit composita compositae composite composited compositely compositeness compositenesses composites compositing composition compositional compositionally compositions compositive compositively compositor compositorial compositors compositous compositure composograph compossibilities compossibility compossible compost compostable composted composter composters composting composts composture compostured compostures composturing composure composures compot compotation compotations compotationship compotationships compotator compotators compotatory compote compotes compotier compotiers compotor compots compound compoundable compounded compoundedness compounder compounders compounding compoundness compounds comprachico comprachicos comprador compradore compradores compradors comprecation compreg compregnate comprehend comprehended comprehender comprehendible comprehending comprehendingly comprehends comprehense comprehensibilities comprehensibility comprehensible comprehensibleness comprehensiblenesses comprehensibly comprehension comprehensions comprehensive comprehensively comprehensiveness comprehensivenesses comprehensives comprehensivisation comprehensivisations comprehensivise comprehensivised comprehensivises comprehensivising comprehensivization comprehensivizations comprehensivize comprehensivized comprehensivizes comprehensivizing comprehensor comprend compresbyter compresbyterial compresence compresent compress compressed compressedly compresses compressibilities compressibility compressible compressibleness compressiblenesses compressibly compressing compressingly compression compressional compressions compressive compressively compressometer compressor compressors compressure compressures comprest compriest comprimario comprimarios comprint comprinted comprinting comprints comprisable comprisal comprisals comprise comprised comprises comprising comprizable comprizal comprize comprized comprizes comprizing comprobate comprobation comproduce compromis compromisable compromise compromised compromiser compromisers compromises compromising compromisingly compromissary compromission compromissorial compromit compromitment compromitted compromitting comprovincial comps compsognathus compt comptable compte compted compter compters comptible comptie compting comptly comptness comptoir comptometer comptonia comptonite comptrol comptroll comptrolled comptroller comptrollers comptrollership comptrollerships comptrolling comptrolls compts compulsative compulsatively compulsatorily compulsatory compulse compulsed compulses compulsing compulsion compulsionist compulsionists compulsions compulsitor compulsitors compulsive compulsively compulsiveness compulsivenesses compulsives compulsivities compulsivity compulsories compulsorily compulsoriness compulsorinesses compulsory compunct compunction compunctionary compunctionless compunctions compunctious compunctiously compunctive compupil compurgation compurgations compurgator compurgatorial compurgatories compurgators compurgatory compursion compursions computabilities computability computable computably computant computants computate computation computational computationally computations computative computatively computativeness computator computators compute computed computer computerate computerdom computerdoms computerese computereses computerisable computerisation computerisations computerise computerised computerises computerising computerist computerists computerite computerizable computerization computerizations computerize computerized computerizes computerizing computerless computerlike computernik computerniks computerphobe computerphobes computerphobia computerphobias computerphobic computers computes computing computist computists computus compère compèred compères compèring comr comrade comradeliness comradelinesses comradely comraderies comradery comrades comradeship comradeships comrado comrogue coms comsat comstock comstocker comstockeries comstockers comstockery comstockism comstockisms comsymp comsymps comte comtemplate comtemplated comtemplates comtemplating comtes comtesse comtesses comtian comunidad comurmurer comus comuses comvia con conable conacaste conacre conacred conacreism conacreisms conacres conacring conakry conal conalbumin conamarin conamed conand conaria conarial conarium conation conational conationalistic conations conative conatural conatus conaxial conbinas conc concactenated concamerate concamerated concameration concanavalin concanavalins concannon concaptive concarnation concassation concatenary concatenate concatenated concatenates concatenating concatenation concatenations concatenator concatervate concaulescence concausal concause concauses concavation concave concaved concavely concaveness concavenesses concaver concaves concaving concavities concavity concavo conceal concealable concealed concealedly concealedness concealer concealers concealing concealingly concealment concealments conceals concede conceded concededly conceder conceders concedes conceding concedo conceit conceited conceitedly conceitedness conceitednesses conceitful conceiting conceitless conceits conceity conceivabilities conceivability conceivable conceivableness conceivablenesses conceivably conceive conceived conceiver conceivers conceives conceiving concelebrant concelebrants concelebrate concelebrated concelebrates concelebrating concelebration concelebrations concent concenter concentered concentering concenters concentive concento concentralization concentralize concentrate concentrated concentratedly concentrates concentrating concentration concentrations concentrative concentratively concentrativeness concentrativenesses concentrator concentrators concentre concentred concentres concentric concentrical concentrically concentricate concentricities concentricity concentring concents concentual concentus concept conceptacle conceptacles conceptacular conceptaculum concepti conceptible conception conceptional conceptionist conceptionists conceptions conceptious conceptism conceptive conceptively conceptiveness concepts conceptual conceptualisation conceptualisations conceptualise conceptualised conceptualiser conceptualises conceptualising conceptualism conceptualisms conceptualist conceptualistic conceptualistically conceptualists conceptualities conceptuality conceptualization conceptualizations conceptualize conceptualized conceptualizer conceptualizers conceptualizes conceptualizing conceptually conceptus conceptuses concern concernancies concernancy concerned concernedly concernedness concernednesses concerning concerningly concerningness concernment concernments concerns concert concertante concertantes concertanti concertanto concertati concertation concertato concertatos concerted concertedly concertedness concertednesses concertgoer concertgoers concertgoing concertgoings concerti concertina concertinaed concertinaing concertinas concerting concertini concertinist concertinists concertino concertinos concertion concertise concertised concertiser concertises concertising concertist concertize concertized concertizer concertizes concertizing concertmaster concertmasters concertmeister concertmeisters concertment concertmistress concertmistresses concerto concertos concerts concertstck concertstuck concertstück concessible concession concessionaire concessionaires concessional concessionaries concessionary concessioner concessioners concessionist concessionists concessionnaire concessionnaires concessions concessit concessive concessively concessiveness concessor concessory concetti concettism concettisms concettist concettists concetto conch concha conchae conchal conchas conchate conche conched concher conches conchfish conchfishes conchie conchies conchiferous conchiform conchiglie conching conchinin conchinine conchiolin conchiolins conchite conchitic conchitis conchitises concho conchoid conchoidal conchoidally conchoids conchol conchological conchologically conchologies conchologist conchologists conchologize conchology conchometer conchometry conchospiral conchotome conchs conchuela conchy conchyle conchylia conchyliated conchyliferous conchylium conciator concierge concierges concile conciliable conciliabule conciliabulum conciliar conciliarism conciliarly conciliary conciliate conciliated conciliates conciliating conciliatingly conciliation conciliationist conciliations conciliative conciliator conciliatorily conciliatoriness conciliatorinesses conciliators conciliatory concilium concinnate concinnated concinnating concinnities concinnity concinnous concinnously concio concion concional concionary concionate concionator concionatory conciousness concipiencies concipiency concipient concise concised concisely conciseness concisenesses conciser concises concisest concising concision concisions concitation concite concitizen conclamant conclamation conclamations conclave conclaves conclavist conclavists concludable conclude concluded concludence concludency concludendi concludent concludently concluder concluders concludes concludible concluding concludingly conclusible conclusion conclusional conclusionally conclusionary conclusions conclusive conclusively conclusiveness conclusivenesses conclusory conclusum concn concoagulate concoagulation concoct concocted concocter concocters concocting concoction concoctions concoctive concoctor concoctors concocts concolor concolorate concolorous concolour concolourous concomitance concomitances concomitancies concomitancy concomitant concomitantly concomitants concomitate concommitant concommitantly conconscious concord concordable concordably concordal concordance concordanced concordancer concordances concordancy concordant concordantial concordantly concordat concordatory concordats concordatum concorded concorder concordial concording concordist concordity concordly concords concorporate concorporated concorporates concorporating concorporation concours concourse concourses concreate concreated concreates concreating concredit concremation concremations concrement concresce concrescence concrescences concrescent concrescible concrescive concrete concreted concretely concreteness concretenesses concreter concretes concreting concretion concretional concretionary concretions concretisation concretisations concretise concretised concretises concretising concretism concretisms concretist concretistic concretists concretive concretively concretization concretizations concretize concretized concretizes concretizing concretor concrew concrewed concrewing concrews concrfsce concubinage concubinages concubinal concubinarian concubinaries concubinary concubinate concubine concubinehood concubines concubitancies concubitancy concubitant concubitants concubitous concubitus conculcate conculcation concumbency concupies concupiscence concupiscences concupiscent concupiscible concupiscibleness concupy concur concurbit concurred concurrence concurrences concurrencies concurrency concurrent concurrently concurrentness concurrents concurring concurringly concurs concursion concurso concursus concuss concussant concussation concussed concusses concussing concussion concussional concussions concussive concussively concutient concyclic concyclically cond condecent condemn condemnable condemnably condemnate condemnation condemnations condemnatory condemned condemner condemners condemning condemningly condemnor condemnors condemns condensabilities condensability condensable condensance condensaries condensary condensate condensated condensates condensating condensation condensational condensations condensative condensator condense condensed condensedly condensedness condenser condenseries condensers condensery condenses condensibilities condensibility condensible condensing condensity conder conders condescend condescended condescendence condescendences condescendent condescender condescenders condescending condescendingly condescendingness condescends condescension condescensions condescensive condescensively condescensiveness condescent condiction condictious condiddle condiddled condiddlement condiddles condiddling condie condies condign condigness condignity condignly condignness condignnesses condiment condimental condimentary condimented condimenting condiments condisciple condisciples condistillation condite condition conditionable conditional conditionalise conditionalism conditionalist conditionalities conditionality conditionalize conditionally conditionals conditionate conditionated conditionates conditionating conditione conditioned conditioner conditioners conditioning conditionings conditions condititivia conditivia conditivium conditoria conditorium conditory conditotoria condivision condo condoes condog condolatory condole condoled condolement condolements condolence condolences condolent condoler condolers condoles condoling condolingly condom condominate condominia condominial condominiia condominiiums condominium condominiums condoms condonable condonance condonation condonations condonative condone condoned condonement condoner condoners condones condoning condor condordance condores condors condos condottiere condottieri conduce conduceability conduced conducement conducements conducent conducer conducers conduces conducible conducibleness conducibly conducing conducingly conducive conduciveness conducivenesses conduct conducta conductance conductances conducted conducti conductibilities conductibility conductible conductility conductimeter conductimetric conducting conductio conduction conductional conductions conductitious conductive conductively conductivities conductivity conductometer conductometric conductor conductorial conductorless conductors conductorship conductorships conductory conductress conductresses conducts conductus condue conduit conduits conduplicate conduplicated conduplication conduplications condurangin condurango condurrite condylar condylarth condylarthrosis condylarthrous condyle condylectomy condyles condylion condyloid condyloma condylomas condylomata condylomatous condylome condylopod condylopodous condylos condylotomy condylura condylure cone coned coneen coneflower coneflowers conehead coneighboring coneine conelet conelike conelrad conelrads conemaker conemaking conenchyma conenose conenoses conepate conepates conepatl conepatls conepatus coner cones conessi conessine conestoga coney coneys conf confab confabbed confabbing confabs confabular confabulate confabulated confabulates confabulating confabulation confabulations confabulator confabulators confabulatory confact confarreate confarreated confarreation confarreations confated confect confected confecting confection confectionaries confectionary confectioned confectioner confectioneries confectioners confectionery confectiones confectioning confectionist confections confectory confects confecture confeder confederacies confederacy confederal confederalist confederalists confederate confederated confederater confederates confederating confederatio confederation confederationism confederationisms confederationist confederationists confederations confederatise confederatism confederative confederatize confederator confelicity confer conferee conferees conference conferenced conferences conferencier conferenciers conferencing conferencings conferential conferer conferment conferments conferrable conferral conferrals conferred conferree conferrees conferrence conferrences conferrer conferrers conferring conferruminate confers conferted conferva confervaceous confervae conferval confervalike confervas confervoid confervous confess confessable confessant confessants confessarius confessary confessed confessedly confesser confesses confessing confessingly confession confessional confessionalian confessionalism confessionalisms confessionalist confessionalists confessionally confessionals confessionaries confessionary confessionist confessions confessor confessoress confessoresses confessors confessorship confessorships confessory confest confestly confetti confetto conficient confidant confidante confidantes confidants confide confided confidence confidences confidencies confidency confident confidente confidential confidentialities confidentiality confidentially confidentialness confidentialnesses confidentiary confidently confidentness confidents confider confiders confides confiding confidingly confidingness confidingnesses configurable configural configurate configurated configurates configurating configuration configurational configurationally configurationism configurationisms configurationist configurations configurative configure configured configures configuring confinable confine confineable confined confinedly confinedness confinednesses confineless confinement confinements confiner confiners confines confining confinity confirm confirmabilities confirmability confirmable confirmand confirmands confirmation confirmational confirmations confirmative confirmatively confirmator confirmatorily confirmators confirmatory confirmed confirmedly confirmedness confirmednesses confirmee confirmees confirmer confirmers confirming confirmingly confirmings confirmity confirmment confirmor confirmors confirms confiscable confiscatable confiscate confiscated confiscates confiscating confiscation confiscations confiscator confiscators confiscatory confiserie confiseur confisk confisticating confit confitent confiteor confiteors confits confiture confitures confix confixed confixes confixing conflab conflagrant conflagrate conflagrated conflagrates conflagrating conflagration conflagrations conflagrative conflagrator conflagratory conflate conflated conflates conflating conflation conflations conflexure conflict conflicted conflictful conflicting conflictingly confliction conflictions conflictive conflictless conflictory conflicts conflictual conflow confluence confluences confluent confluently confluents conflux confluxes confluxibility confluxible confluxibleness confocal confocally conforbably conform conformabilities conformability conformable conformableness conformablenesses conformably conformal conformance conformances conformant conformate conformation conformational conformationally conformations conformator conformed conformer conformers conforming conformingly conformism conformisms conformist conformists conformities conformity conforms confort confound confoundable confounded confoundedly confoundedness confoundednesses confounder confounders confounding confoundingly confoundment confounds confr confract confraction confragose confrater confraternal confraternities confraternity confraternization confrere confreres confrerie confreries confriar confricamenta confricamentum confrication confront confrontal confrontals confrontation confrontational confrontationism confrontationisms confrontationist confrontationists confrontations confrontative confronte confronted confronter confronters confronting confrontment confrontments confronts confronté confrère confrères confrérie confréries confs confucian confucianism confucians confucius confusabilities confusability confusable confusables confusably confuse confused confusedly confusedness confusednesses confuser confusers confuses confusible confusibles confusing confusingly confusion confusional confusions confusive confusticate confustication confutability confutable confutation confutational confutations confutative confutator confute confuted confutement confutements confuter confuters confutes confuting conférencier conférenciers cong conga congaed congaing congas conge congeable congeal congealability congealable congealableness congealablenesses congealed congealedness congealer congealers congealing congealment congealments congeals conged congee congeed congeeing congees congeing congelable congelation congelations congelative congelifract congelifraction congeliturbate congeliturbation congenator congener congeneracy congeneric congenerical congenerics congenerous congenerousness congeners congenetic congenial congenialise congenialities congeniality congenialize congenially congenialness congenialnesses congenic congenital congenitally congenitalness congenitalnesses congenite congeon conger congeree congerie congeries congers congery conges congession congest congested congestedness congestible congesting congestion congestions congestive congests congestus congiaries congiary congii congius conglaciate conglobate conglobated conglobately conglobates conglobating conglobation conglobations conglobe conglobed conglobes conglobing conglobulate conglobulated conglobulates conglobulating conglobulation conglobulations conglomerate conglomerated conglomerates conglomerateur conglomerateurs conglomeratic conglomerating conglomeration conglomerations conglomerative conglomerator conglomerators conglomeritic conglutin conglutinant conglutinate conglutinated conglutinates conglutinating conglutination conglutinations conglutinative conglutinator conglutinators conglution congo congoes congolese congoni congos congou congous congrats congratulable congratulant congratulants congratulate congratulated congratulates congratulating congratulation congratulational congratulations congratulative congratulator congratulators congratulatory congredient congree congreed congreeing congrees congreet congreeted congreeting congreets congregable congreganist congregant congregants congregate congregated congregates congregating congregation congregational congregationalise congregationalism congregationalisms congregationalist congregationalists congregationalize congregationally congregationist congregations congregative congregativeness congregativenesses congregator congregators congresional congress congressed congresser congresses congressing congressional congressionalist congressionalists congressionally congressionist congressist congressive congressman congressmen congresspeople congressperson congresspersons congresswoman congresswomen congreve congrid congridae congrio congroid congrue congrued congruence congruences congruencies congruency congruent congruential congruently congrues congruing congruism congruist congruistic congruities congruity congruous congruously congruousness congruousnesses congustable congé congéd congéing conhydrin conhydrine coni conia conias conic conical conicality conically conicalness conicals conicein coniceine conichalcite conicine conicities conicity conicle conicoid conicopoly conics conidia conidial conidian conidiiferous conidioid conidiophore conidiophores conidiophorous conidiospore conidiospores conidium conies conifer coniferales coniferin coniferophyta coniferophyte coniferophytina coniferopsida coniferous conifers conification coniform coniine coniines conilurus conima conimas conimene conin conine conines coning coninidia conins coniogramme coniology coniomycetes conioses coniosis coniospermous coniroster conirostral conisance conite conium coniums conj conject conjected conjecting conjective conjects conjecturable conjecturableness conjecturably conjectural conjecturalist conjecturality conjecturally conjecture conjectured conjecturer conjecturers conjectures conjecturing conjee conjeed conjeeing conjees conjegates conjobble conjoin conjoined conjoinedly conjoiner conjoiners conjoining conjoins conjoint conjointly conjointment conjointness conjoints conjon conjubilant conjuctiva conjugable conjugably conjugacy conjugal conjugalities conjugality conjugally conjugant conjugants conjugata conjugate conjugated conjugately conjugateness conjugatenesses conjugates conjugating conjugatings conjugation conjugational conjugationally conjugations conjugative conjugator conjugators conjugial conjugium conjunct conjuncted conjunction conjunctional conjunctionally conjunctions conjunctiva conjunctivae conjunctival conjunctivas conjunctive conjunctively conjunctiveness conjunctivenesses conjunctives conjunctivitis conjunctivitises conjunctly conjuncts conjunctur conjunctural conjuncture conjunctures conjunto conjuntos conjuration conjurations conjurator conjurators conjure conjured conjurement conjurements conjurer conjurers conjurership conjures conjuries conjuring conjurings conjurison conjuror conjurors conjury conk conkanee conked conker conkers conkier conkies conkiest conking conks conky conli conman conn connach connaisseur connaraceae connaraceous connarite connarus connascence connascences connascencies connascency connascent connatal connate connately connateness connatenesses connation connations connatural connaturalise connaturalised connaturalises connaturalising connaturalities connaturality connaturalize connaturalized connaturalizes connaturalizing connaturally connaturalness connaturalnesses connature connatures connaught conne connect connectable connectant connected connectedly connectedness connectednesses connecter connecters connectibility connectible connectibly connecticut connecticuter connecting connection connectional connectionism connectionisms connectionless connections connectival connective connectively connectives connectivities connectivity connector connectors connects conned connellite conner conners connes connex connexes connexion connexional connexionalism connexions connexities connexity connexiva connexive connexivum connexure connexus connie connies conning connings conniption conniptions connivance connivances connivancies connivancy connivant connivantly connive connived connivence connivences connivencies connivency connivent connivently conniver conniveries connivers connivery connives conniving connivingly connixation connochaetes connoissance connoisseur connoisseurs connoisseurship connoisseurships connotate connotated connotates connotating connotation connotational connotations connotative connotatively connote connoted connotes connoting connotive connotively conns connu connubial connubialism connubialisms connubialities connubiality connubially connubiate connubium connumerate connumerated connumerates connumerating connumeration connumerations connusable conny conocarp conocarpus conoclinium conocuneus conodont conodonta conodontophorida conodonts conoid conoidal conoidally conoidic conoidical conoidically conoids conominee conominees cononintelligent conopid conoplain conopodium conormal conoscente conoscenti conoscope conoscopic conospermum conourish conoy conphaseolin conplane conquassate conquedle conquer conquerable conquerableness conquerablenesses conquered conquerer conquerers conqueress conqueresses conquering conqueringly conquerment conqueror conquerors conquers conquest conquests conquian conquians conquinamine conquinine conquisition conquistador conquistadores conquistadors conradina conrail conrector conrectorship conred conrey cons consacre consanguine consanguineal consanguinean consanguineous consanguineously consanguinities consanguinity consarcinate consarn consarned conscience conscienceless consciencelessly consciencelessness consciences consciencewise conscient conscientious conscientiously conscientiousness conscientiousnesses conscientisation conscientisations conscientise conscientised conscientises conscientising conscientization conscientizations conscientize conscientized conscientizes conscientizing conscionable conscionableness conscionablenesses conscionably conscious consciouses consciously consciousness consciousnesses conscive conscribe conscribed conscribes conscribing conscript conscripted conscripting conscription conscriptional conscriptionist conscriptionists conscriptions conscriptive conscripts conscripttion consderations consecrate consecrated consecratedness consecratednesses consecrater consecrates consecrating consecration consecrations consecrative consecrator consecrators consecratory consectaneous consectaries consectary consecute consecution consecutions consecutive consecutively consecutiveness consecutivenesses consecutives consed conseil consence consenescence consenescences consenescencies consenescency consension consensions consensual consensually consensus consensuses consent consentable consentaneities consentaneity consentaneous consentaneously consentaneousness consentaneousnesses consentant consented consenter consenters consentful consentfully consentience consentiences consentient consentiently consenting consentingly consentingness consentive consentively consentment consents consequence consequenced consequences consequencing consequency consequent consequential consequentialism consequentialisms consequentialities consequentiality consequentially consequentialness consequentialnesses consequently consequents consertal consertion conservable conservacy conservancies conservancy conservant conservate conservation conservational conservationism conservationist conservationists conservations conservatise conservatised conservatises conservatising conservatism conservatisms conservatist conservative conservatively conservativeness conservativenesses conservatives conservativist conservatize conservatized conservatizes conservatizing conservatoire conservatoires conservator conservatorial conservatories conservatorio conservatorium conservatoriums conservators conservatorship conservatorships conservatory conservatrices conservatrix conservatrixes conserve conserved conserver conservers conserves conserving conses consider considerability considerable considerableness considerablenesses considerables considerably considerance considerances considerate considerately considerateness consideratenesses consideration considerations considerative consideratively considerativeness considerator considered considerer considerers considering consideringly considerings considers consigliere consiglieri consign consignable consignataries consignatary consignation consignations consignatories consignatory consigne consigned consignee consignees consigneeship consigner consigners consignificant consignificate consignification consignifications consignificative consignificator consignified consignifies consignify consignifying consigning consignment consignments consignor consignors consigns consiliary consilience consiliences consilient consimilar consimilarities consimilarity consimilate consimilated consimilating consimile consimilities consimilitude consimilitudes consimility consing consisently consist consisted consistence consistences consistencies consistency consistent consistently consistible consisting consistorial consistorian consistories consistory consists consition consitutional consociate consociated consociates consociating consociation consociational consociationism consociations consociative consocies consol consolable consolableness consolably consolan consolate consolated consolates consolating consolation consolations consolator consolatories consolatorily consolatoriness consolatory consolatrices consolatrix consolatrixes console consoled consolement consolements consoler consolers consoles consolette consolida consolidant consolidate consolidated consolidates consolidating consolidation consolidationist consolidations consolidative consolidator consolidators consoling consolingly consolitorily consolitoriness consols consolute consomm consomma consomme consommes consommé consommés consonance consonances consonancies consonancy consonant consonantal consonantalize consonantalized consonantalizing consonantally consonantic consonantise consonantised consonantising consonantism consonantize consonantized consonantizing consonantly consonantness consonants consonate consonous consopite consort consortable consorted consorter consorters consortia consortial consorting consortion consortism consortisms consortitia consortium consortiums consorts consortship consoude consound conspecies conspecific conspecifics conspect conspection conspectuities conspectuity conspectus conspectuses consperg consperse conspersion conspicuities conspicuity conspicuous conspicuously conspicuousness conspicuousnesses conspiracies conspiracist conspiracists conspiracy conspirant conspiration conspirational conspirations conspirative conspirator conspiratorial conspiratorially conspirators conspiratory conspiratress conspiratresses conspire conspired conspirer conspirers conspires conspiring conspiringly conspissate conspue conspurcate conspurcation conspurcations const constable constablery constables constableship constableships constabless constablewick constablewicks constabular constabularies constabulary constance constances constancies constancy constant constantan constantans constantinian constantinople constantinopolitan constantly constantness constants constat constatation constatations constate constated constates constating constative constatives constatory constellate constellated constellates constellating constellation constellational constellations constellatory conster constered constering consternate consternated consternates consternating consternation consternations consters constipate constipated constipates constipating constipation constipations constituencies constituency constituent constituently constituents constitute constituted constituter constituters constitutes constituting constitution constitutional constitutionalisation constitutionalisations constitutionalise constitutionalised constitutionalises constitutionalising constitutionalism constitutionalisms constitutionalist constitutionalists constitutionalities constitutionality constitutionalization constitutionalizations constitutionalize constitutionalized constitutionalizes constitutionalizing constitutionally constitutionals constitutionary constitutioner constitutionist constitutionists constitutionless constitutions constitutive constitutively constitutiveness constitutor constitutors constr constrain constrainable constrained constrainedly constrainedness constrainer constrainers constraining constrainingly constrainment constrains constraint constraints constrict constricted constricting constriction constrictions constrictive constrictively constrictor constrictors constricts constringe constringed constringencies constringency constringent constringes constringing construabilities construability construable construal construals construct constructable constructed constructer constructers constructibility constructible constructing construction constructional constructionally constructionism constructionisms constructionist constructionists constructions constructive constructively constructiveness constructivenesses constructivism constructivisms constructivist constructivists constructor constructors constructorship constructs constructure constructures construe construed construer construers construes construing constuctor constuprate constuprated constuprates constuprating constupration constuprations consubsist consubsisted consubsistency consubsisting consubsists consubstantial consubstantialism consubstantialisms consubstantialist consubstantialists consubstantialities consubstantiality consubstantially consubstantiate consubstantiated consubstantiates consubstantiating consubstantiation consubstantiationist consubstantiationists consubstantiations consubstantive consuete consuetitude consuetude consuetudes consuetudinal consuetudinaries consuetudinary consul consulage consulages consular consularity consulars consulary consulate consulated consulates consulating consuls consulship consulships consult consulta consultable consultancies consultancy consultant consultants consultantship consultantships consultary consultas consultation consultations consultative consultatively consultatory consulted consultee consultees consulter consulters consulting consultive consultively consulto consultor consultors consultory consults consumable consumables consumate consumated consumating consumation consume consumed consumedly consumeless consumer consumerism consumerisms consumerist consumeristic consumerists consumers consumership consumerships consumes consuming consumingly consumingness consumings consummate consummated consummately consummates consummating consummation consummations consummative consummatively consummativeness consummator consummators consummatory consumo consumpt consumpted consumptible consumption consumptional consumptions consumptive consumptively consumptiveness consumptivenesses consumptives consumptivities consumptivity consumpts consute consy cont conta contabescence contabescences contabescent contact contactable contactant contacted contactee contactees contactile contacting contaction contactor contactors contacts contactual contactually contadina contadinas contadine contadini contadino contaggia contagia contagion contagioned contagionist contagionists contagions contagiosity contagious contagiously contagiousness contagiousnesses contagium contagiums contain containable contained containedly container containerboard containerboards containerful containerisation containerisations containerise containerised containerises containerising containerization containerizations containerize containerized containerizes containerizing containerless containerport containerports containers containership containerships containing containment containments contains contakia contakion contakionkia contam contaminable contaminant contaminants contaminate contaminated contaminates contaminating contamination contaminations contaminative contaminator contaminators contaminous contangential contango contangoed contangoes contangoing contangos contas contchar contd conte conteck contecks contect contection contek conteke contemn contemned contemner contemners contemnible contemnibly contemning contemningly contemnor contemnors contemns contemp contemper contemperate contemperation contemperations contemperature contemperatures contempered contempering contempers contemplable contemplamen contemplance contemplant contemplants contemplate contemplated contemplatedly contemplates contemplating contemplatingly contemplation contemplations contemplatist contemplatists contemplative contemplatively contemplativeness contemplativenesses contemplatives contemplator contemplators contemplature contemple contempo contemporanean contemporaneans contemporaneities contemporaneity contemporaneous contemporaneously contemporaneousness contemporaneousnesses contemporaries contemporarily contemporariness contemporarinesses contemporarization contemporarizations contemporary contemporise contemporised contemporises contemporising contemporize contemporized contemporizes contemporizing contempt contemptful contemptibilities contemptibility contemptible contemptibleness contemptiblenesses contemptibly contempts contemptuous contemptuously contemptuousness contemptuousnesses contend contended contendent contendents contender contendere contenders contending contendingly contendings contendress contends contenement contenements content contentable contentation contentations contented contentedly contentedness contentednesses contentful contenting contention contentional contentions contentious contentiously contentiousness contentiousnesses contentless contently contentment contentments contentness contents contenu conter conterminable conterminal conterminant conterminate contermine conterminous conterminously conterminousness conterminousnesses conterraneous contes contessa contessas contesseration contesserations contest contestability contestable contestableness contestably contestant contestants contestate contestation contestations contested contestee contester contesters contesting contestingly contestless contests conteur contex context contextive contextless contexts contextual contextualisation contextualisations contextualise contextualised contextualises contextualising contextualism contextualist contextualization contextualizations contextualize contextualized contextualizes contextualizing contextually contextural contexture contextured contextures contg conticent contignate contignation contignations contiguate contiguities contiguity contiguous contiguously contiguousness contiguousnesses contin continence continences continencies continency continent continental continentalism continentalisms continentalist continentalists continentality continentally continentals continently continents contineu contingence contingences contingencies contingency contingent contingential contingentialness contingentiam contingently contingentness contingents continua continuable continual continuality continually continualness continualnesses continuance continuances continuancy continuando continuant continuantly continuants continuate continuately continuateness continuation continuations continuative continuatively continuativeness continuatives continuator continuators continue continued continuedly continuedness continuednesses continuer continuers continues continuing continuingly continuist continuities continuity continuo continuos continuous continuousities continuousity continuously continuousness continuousnesses continuua continuum continuums contise contline contlines conto contoid contoise contopus contorniate contorniates contorno contornos contorsion contorsive contort contorta contorted contortedly contortedness contortednesses contorting contortion contortional contortionate contortioned contortionism contortionisms contortionist contortionistic contortionists contortions contortive contortively contorts contortuplicate contos contour contoured contouring contourne contours contr contra contraband contrabandage contrabandages contrabandery contrabandism contrabandisms contrabandist contrabandista contrabandists contrabands contrabass contrabasses contrabassist contrabassists contrabasso contrabassoon contrabassoonist contrabassoonists contrabassoons contrabassos contrabbasso contrabbassos contracapitalist contraception contraceptionist contraceptions contraceptive contraceptives contracivil contraclockwise contract contractabilities contractability contractable contractant contractation contracted contractedly contractedness contractednesses contractee contracter contractibilities contractibility contractible contractibleness contractiblenesses contractibly contractile contractilities contractility contracting contraction contractional contractionary contractionist contractions contractive contractively contractiveness contractly contractor contractors contracts contractu contractual contractually contractural contracture contractured contractures contractus contracyclical contrada contradance contradances contradanse contradanses contrade contradebt contradict contradictable contradicted contradictedness contradicter contradicters contradicting contradiction contradictional contradictions contradictious contradictiously contradictiousness contradictive contradictively contradictiveness contradictivenesses contradictor contradictories contradictorily contradictoriness contradictorinesses contradictors contradictory contradicts contradiscriminate contradistinct contradistinction contradistinctions contradistinctive contradistinctively contradistinctly contradistinguish contradistinguished contradistinguishes contradistinguishing contradivide contrafacture contrafagotto contrafagottos contrafissura contrafissure contraflexure contraflow contraflows contrafocal contragestion contragestions contragestive contragestives contragredience contragredient contrahent contrahents contrail contrails contraindicant contraindicants contraindicate contraindicated contraindicates contraindicating contraindication contraindications contraindicative contrair contraire contralateral contralti contralto contraltos contramarque contramure contranatant contranatural contrantiscion contraoctave contraoctaves contraorbital contraorbitally contraparallelogram contrapletal contraplete contraplex contrapolarization contrapone contraponend contrapose contraposed contraposing contraposit contraposita contraposition contrapositions contrapositive contrapositives contrapposto contrappostos contraprogressist contraprop contrapropeller contrapropellers contraproposal contraprops contraprovectant contraption contraptions contraptious contrapuntal contrapuntalist contrapuntally contrapuntist contrapuntists contrapunto contrarational contraregular contraregularity contraremonstrance contraremonstrant contrarevolutionary contrarian contrarianism contrarians contrariant contrariantly contraried contraries contrarieties contrariety contrarily contrariness contrarinesses contrarious contrariously contrariousness contrariousnesses contrariwise contrarotating contrarotation contrary contrarying contras contrascriptural contrast contrastable contrastably contraste contrasted contrastedly contraster contrasters contrastimulant contrastimulation contrastimulus contrasting contrastingly contrastive contrastively contrastiveness contrastment contrasts contrasty contrasuggestible contrat contratabular contrate contratempo contratenor contraterrene contratulations contravalence contravallation contravallations contravariant contravene contravened contravener contraveners contravenes contravening contravention contraventions contraversion contravindicate contravindication contrawise contrayerva contrayervas contrecoup contrecoups contrectation contredance contredances contredanse contredanses contreface contrefort contrepartie contretemps contrib contributable contributaries contributary contribute contributed contributes contributing contribution contributional contributions contributive contributively contributiveness contributivenesses contributor contributorial contributories contributorily contributors contributorship contributory contrist contristation contristations contristed contristing contrists contrite contritely contriteness contritenesses contrition contritions contriturate contriturated contriturates contriturating contrivable contrivance contrivances contrivancy contrive contrived contrivedly contrivement contrivements contriver contrivers contrives contriving control controle controled controlee controling controllabilities controllability controllable controllableness controllably controlled controller controllers controllership controllerships controlless controlling controllingly controlment controlments controls controul controuled controuling controuls controversal controverse controversed controverses controversial controversialise controversialism controversialisms controversialist controversialists controversialities controversiality controversialize controversially controversies controversion controversional controversionalism controversionalist controversy controvert controverted controverter controverters controvertibility controvertible controvertibly controverting controvertist controvertists controverts contrude contrôlé contrôlée conttinua contubernal contubernial contubernium contubernyal contumaceous contumacies contumacious contumaciously contumaciousness contumaciousnesses contumacities contumacity contumacy contumax contumelies contumelious contumeliously contumeliousness contumeliousnesses contumely contund contunded contunding contunds contune conturb conturbation contuse contused contuses contusing contusion contusioned contusions contusive conubium conule conumerary conumerous conundrum conundrumise conundrumize conundrums conurban conurbation conurbations conurbia conurbias conure conures conuropsis conus conusable conusance conusant conusee conuses conusor conutrition conuzee conuzor conv convalesce convalesced convalescence convalescences convalescencies convalescency convalescent convalescently convalescents convalesces convalescing convallamarin convallaria convallariaceae convallariaceous convallarin convally convect convected convecting convection convectional convections convective convectively convector convectors convects convell convenable convenably convenance convenances convene convened convenee convener conveneries conveners convenership convenery convenes convenience convenienced conveniences conveniencies conveniency conveniens convenient conveniently convenientness convening convenor convenors convent convented conventical conventically conventicle conventicled conventicler conventiclers conventicles conventicling conventicular conventing convention conventional conventionalisation conventionalisations conventionalise conventionalised conventionalises conventionalising conventionalism conventionalisms conventionalist conventionalists conventionalities conventionality conventionalization conventionalizations conventionalize conventionalized conventionalizes conventionalizing conventionally conventionary conventioneer conventioneers conventioner conventioners conventionise conventionism conventionist conventionists conventionize conventions convento convents conventual conventually conventuals converge converged convergement convergence convergences convergencies convergency convergent convergently converges convergescence converginerved converging conversable conversableness conversably conversance conversances conversancies conversancy conversant conversantly conversation conversationable conversational conversationalism conversationalist conversationalists conversationally conversationise conversationism conversationisms conversationist conversationists conversationize conversations conversative conversazione conversaziones conversazioni converse conversed conversely converser conversers converses conversi conversibility conversible conversing conversion conversional conversionary conversionism conversionist conversions conversive converso conversus conversusi convert convertable convertaplane convertaplanes converted convertend convertends converter converters convertibilities convertibility convertible convertibleness convertiblenesses convertibles convertibly convertin converting convertingness convertiplane convertiplanes convertise convertism convertite convertites convertive convertoplane convertor convertors converts conveth convex convexed convexedly convexedness convexes convexing convexities convexity convexly convexness convexnesses convexo convexoconcave convey conveyability conveyable conveyal conveyals conveyance conveyancer conveyancers conveyances conveyancing conveyancings conveyed conveyer conveyers conveying conveyor conveyorise conveyorised conveyorises conveyorising conveyorization conveyorizations conveyorize conveyorized conveyorizer conveyorizes conveyorizing conveyors conveys conviciate convicinities convicinity convict convictable convicted convictfish convictfishes convictible convicting conviction convictional convictions convictism convictisms convictive convictively convictiveness convictment convictor convicts convince convinced convincedly convincedness convincement convincements convincer convincers convinces convincibility convincible convincing convincingly convincingness convincingnesses convite convito convival convive convived convives convivial convivialise convivialist convivialists convivialities conviviality convivialize convivially conviving convivio convo convocant convocate convocated convocates convocating convocation convocational convocationally convocationist convocationists convocations convocative convocator convoke convoked convoker convokers convokes convoking convolute convoluted convolutedly convolutedness convolutednesses convolutely convolutes convoluting convolution convolutional convolutionary convolutions convolutive convolve convolved convolvement convolves convolving convolvulaceae convolvulaceous convolvulad convolvuli convolvulic convolvulin convolvulinic convolvulinolic convolvulus convolvuluses convos convoy convoyed convoying convoys convulsant convulsants convulse convulsed convulsedly convulses convulsibility convulsible convulsing convulsion convulsional convulsionaries convulsionary convulsionism convulsionist convulsionists convulsions convulsive convulsively convulsiveness convulsivenesses cony conycatcher conyger conylene conynge conyrin conyrine conyza coo cooba coobah cooboo cooboos cooccur cooccurred cooccurring cooccurs cooch cooches coocoo coodle cooed cooee cooeed cooeeing cooees cooer cooers cooey cooeyed cooeying cooeys coof coofs cooghneiorvlt cooing cooingly cooings cooja cook cookable cookbook cookbooks cookdom cooked cookee cookeite cooker cookeries cookers cookery cookey cookeys cookfire cookhouse cookhouses cookie cookies cooking cookings cookish cookishly cookless cookmaid cookmaids cookoff cookoffs cookout cookouts cookroom cookrooms cooks cookshack cookshacks cookshop cookshops cookstove cookstoves cooktop cooktops cookware cookwares cooky cool coolabah coolabahs coolaman coolamon coolamons coolant coolants cooldown cooldowns cooled coolen cooler coolerman coolers coolest cooley coolheaded coolheadedly coolheadedness coolhouse coolhouses coolibah coolibahs coolibar coolibars coolidge coolie coolies cooliman cooling coolingly coolingness coolish coolly coolness coolnesses cools coolth coolths coolung coolwart coolweed coolwort cooly coom coomb coombe coombes coombs coomceiled coomed coomier coomiest cooming cooms coomy coon coonass coonasses cooncan cooncans coondog coondogs cooner coonhound coonhounds coonier cooniest coonily cooniness coonjine coonroot coons coonskin coonskins coontah coontail coontie coonties coonty coony coop cooped coopee cooper cooperage cooperages cooperancy cooperant cooperate cooperated cooperates cooperating cooperatingly cooperation cooperationist cooperationists cooperations cooperative cooperatively cooperativeness cooperativenesses cooperatives cooperator cooperators coopered cooperies coopering cooperings cooperite coopers coopery cooping coops coopt cooptate cooptation cooptative coopted coopting cooption cooptions cooptive coopts coordain coordinal coordinance coordinances coordinate coordinated coordinately coordinateness coordinatenesses coordinates coordinating coordination coordinations coordinative coordinator coordinators coordinatory cooree coorie cooried coorieing coories cooruptibly coos coosen coosened coosening coosens cooser coosers coosify coosin coosined coosining coosins coost coot cootch cooter cooters cootfoot cooth coothay cootie cooties cootikin cootikins coots cooty cop copa copable copacetic copaene copaiba copaibas copaibic copain copaiva copaivas copaivic copaiye copal copalche copalchi copalcocote copaliferous copaline copalite copaljocote copalm copalms copals coparallel coparcenar coparcenaries coparcenary coparcener coparceneries coparceners coparcenery coparceny coparenary coparent coparented coparenting coparents copart copartaker copartiment copartner copartnered copartneries copartnering copartners copartnership copartnerships copartnery coparty copasetic copassionate copastor copastorate copastors copatain copataine copatentee copatriot copatriots copatron copatroness copatrons copay copayment copayments copays cope copeck copecks coped copehan copei copeia copelate copelidine copellidine copeman copemate copemates copen copending copenetrate copenhagen copens copepod copepoda copepodan copepodous copepods coper coperception copered copering coperiodic copernican copernicans copernicia copernicus coperose copers coperta copes copesetic copesettic copesman copesmate copestone copestones copetitioner cophasal cophosis cophouse copia copiability copiable copiapite copied copier copiers copies copihue copihues copilot copilots coping copings copingstone copingstones copintank copiopia copiopsia copiosity copious copiously copiousness copiousnesses copis copist copita copitas coplaintiff coplanar coplanarities coplanarity coplanation copleased coplot coplots coplotted coplotter coplotting coploughing coplowing copolar copolymer copolymeric copolymerisation copolymerisations copolymerise copolymerised copolymerises copolymerising copolymerism copolymerization copolymerizations copolymerize copolymerized copolymerizes copolymerizing copolymerous copolymers copopoda copopsia coportion copout copouts coppa coppaelite coppas copped copper copperah copperahs copperas copperases copperbottom coppered copperer copperhead copperheadism copperheads coppering copperings copperisation copperise copperish copperization copperize copperleaf coppernose coppernosed copperplate copperplated copperplates copperproof coppers coppersidesman copperskin copperskins coppersmith coppersmithing coppersmiths copperware copperwares copperwing copperwork copperworks copperworm copperworms coppery copperytailed coppet coppice coppiced coppices coppicing coppicings coppies coppin copping coppins copple copplecrown coppled copples coppling coppra coppras copps coppy copr copra copraemia copraemic coprah coprahs copras coprecipitate coprecipitated coprecipitating coprecipitation copremia copremias copremic copresbyter copresence copresences copresent copresented copresenting copresents copresident copresidents coprinaceae coprince coprinces coprincipal coprincipals coprincipate coprinus coprisoner coprisoners coprocessing coprocessings coprocessor coprocessors coprodaeum coproduce coproduced coproducer coproducers coproduces coproducing coproduct coproduction coproductions coproducts coproite coprojector coprolagnia coprolagnist coprolalia coprolaliac coprolalias coprolite coprolites coprolith coproliths coprolitic coprologies coprology copromisor copromote copromoted copromoter copromoters copromotes copromoting coprophagan coprophagans coprophagia coprophagic coprophagies coprophagist coprophagists coprophagous coprophagy coprophilia coprophiliac coprophiliacs coprophilias coprophilic coprophilism coprophilous coprophobia coprophobic coprophyte coproprietor coproprietors coproprietorship coproprietorships coprose coprosma coprosmas coprosperities coprosperity coprostanol coprostasia coprostasis coprostasophobia coprosterol coprosterols coprozoic cops copse copsed copses copsewood copsewooded copsewoods copshop copshops copsier copsiest copsing copsole copsy copt copter copters coptic coptine coptis copublish copublished copublisher copublishers copublishes copublishing copula copulable copulae copular copularium copulas copulate copulated copulates copulating copulation copulations copulative copulatively copulatives copulatory copunctal copurchaser copurified copurifies copurify copurifying copus copy copyable copybook copybooks copyboy copyboys copycat copycats copycatted copycatting copycutter copydesk copydesks copyedit copyedited copyediting copyeditor copyeditors copyedits copyfitter copyfitting copygirl copygirls copygraph copygraphed copyhold copyholder copyholders copyholding copyholds copying copyism copyisms copyist copyists copyleft copylefts copyman copyread copyreader copyreaders copyreading copyreadings copyreads copyright copyrightable copyrighted copyrighter copyrighters copyrighting copyrights copywise copywriter copywriters copywriting copywritings coque coquecigrue coquelicot coquelicots coqueluche coquet coquetoon coquetries coquetry coquets coquette coquetted coquettes coquetting coquettish coquettishly coquettishness coquettishnesses coquicken coquilla coquillage coquillas coquille coquilles coquimbite coquimbites coquin coquina coquinas coquita coquito coquitos cor cora coracan corach coracial coracias coraciidae coraciiform coraciiformes coracine coracle coracler coracles coracoacromial coracobrachial coracobrachialis coracoclavicular coracocostal coracohumeral coracohyoid coracoid coracoidal coracoids coracomandibular coracomorph coracomorphic coracopectoral coracoprocoracoid coracoradialis coracoscapular coracosteon coracovertebral coradical coradicate corage coraggio coraggios coragio coragyps corah coraise coraji corakan coral coralbells coralberries coralberry coralbush coraled coralene coralflower coralist coralita coralla corallaceous coralled corallet corallic corallidomous coralliferous coralliform coralligenous coralligerous corallike corallin corallinaceous coralline corallines corallita corallite corallites coralloid coralloidal corallorhiza corallum coralroot coralroots corals coralwood coralwort coralworts coram coramine coramines coran coranach coranachs corance coranoch coranto corantoes corantos coraveca corban corbans corbe corbeau corbeaus corbed corbeil corbeille corbeilles corbeils corbel corbeled corbeling corbelings corbelled corbelling corbellings corbels corbes corbet corbicula corbiculae corbiculas corbiculate corbiculum corbie corbies corbiestep corbiesteps corbina corbinas corbleu corblimey corblimy corbovinum corbula corby corcass corcasses corchat corchorus corcir corcle corcopali cord cordage cordages cordaitaceae cordaitaceous cordaitalean cordaitales cordaitean cordaites cordal cordant cordarone cordate cordately cordax cordectomies cordectomy corded cordel cordelier cordeliere cordelle cordelled cordelles cordelling corder corders cordewane cordgrass cordgrasses cordia cordial cordialise cordialised cordialises cordialising cordialities cordiality cordialize cordialized cordializes cordializing cordially cordialness cordialnesses cordials cordiceps cordicole cordierite cordierites cordies cordiform cordigeri cordillera cordilleran cordilleras cordinar cordiner cordiners cording cordings cordis cordite cordites corditis cordleaf cordless cordlessly cordlike cordmaker cordoba cordoban cordobas cordocenteses cordocentesis cordon cordonazo cordonazos cordoned cordoning cordonnet cordons cordotomies cordotomy cordova cordovan cordovans cords corduroy corduroyed corduroying corduroys cordwain cordwainer cordwaineries cordwainers cordwainery cordwains cordwood cordwoods cordy cordycepin cordyl cordylidae cordyline cordylines cordylus core corebel corebox coreceiver corecipient corecipients coreciprocal corectome corectomy corector cored coredeem coredeemed coredeemer coredeeming coredeems coredemptress coreductase coredump coredumps coreference coreferential coreflexed coregence coregency coregent coregents coregnancy coregnant coregonid coregonidae coregonine coregonoid coregonus coreid coreidae coreign coreigner coreigns corejoice corelate corelated corelates corelating corelation corelational corelations corelative corelatively corelatives coreless coreligionist coreligionists corella corellas corelysis coremaker coremaking coremia coremium coremiumia coremorphosis corenounce coreometer coreopsis coreopsises coreplastic coreplasty corepressor corepressors coreq coreqs corequisite corequisites corer corers cores coresearcher coresearchers coresidence coresident coresidential coresidents coresidual coresign coresonant coresort corespect corespondencies corespondency corespondent corespondents coretomy coreveler coreveller corevolve corey coreys corf corfhouse corfhouses corgard corge corgi corgis coria coriaceous corial coriamyrtin coriander corianders coriandrol coriandrum coriariaceous coriaus coricidin cories coriin corindon coring corinne corinth corinthes corinthiac corinthian corinthianise corinthianised corinthianises corinthianising corinthianize corinthianized corinthianizes corinthianizing corinthians corious coriparian corita corium coriums corival corivalled corivalling corivalries corivalry corivals corivalship corivalships corixa corixidae cork corkage corkages corkboard corkboards corkborer corkborers corke corked corker corkers corkier corkiest corkiness corkinesses corking corkir corkirs corkish corkite corklike corkline corkmaker corkmaking corks corkscrew corkscrewed corkscrewing corkscrews corkscrewy corktree corktrees corkwing corkwings corkwood corkwoods corky corm cormel cormels cormidia cormidium cormlike cormogen cormoid cormophyte cormophytes cormophytic cormorant cormorants cormose cormous corms cormus cormuses corn cornaceae cornaceous cornacre cornacred cornacres cornacring cornada cornage cornages cornamute cornball cornballs cornbell cornberry cornbin cornbind cornbinks cornbird cornbole cornborer cornborers cornbottle cornbraid cornbraided cornbraiding cornbraids cornbrake cornbrakes cornbrandies cornbrandy cornbrash cornbrashes cornbread cornbreads corncake corncakes corncob corncobs corncockle corncockles corncracker corncrake corncrakes corncrib corncribs corncrusher corncutter corncutting corndodger corndodgers cornea corneae corneagen corneal corneas corned cornein corneine corneitis cornel cornelian cornelians cornell cornels cornemuse cornemuses corneocalcareous corneosclerotic corneosiliceous corneous corner cornerback cornerbacks cornerbind cornercap cornered cornerer cornering cornerman cornermen cornerpiece corners cornerstone cornerstones cornerways cornerwise cornet cornetcies cornetcy corneter cornetfish cornetfishes cornetist cornetists cornets cornett cornette cornetter cornetti cornettino cornettinos cornettist cornettists cornetto cornetts corneule corneum cornfactor cornfed cornfield cornfields cornflag cornflags cornflake cornflakes cornflies cornfloor cornflour cornflours cornflower cornflowers cornfly corngrower cornhole cornhouse cornhusk cornhusker cornhuskers cornhusking cornhuskings cornhusks corni cornic cornice corniced cornices corniche corniches cornichon cornichons cornicing cornicle cornicles cornicula cornicular corniculate corniculer corniculum corniculums cornier corniest corniferous cornific cornification cornifications cornified cornifies corniform cornify cornifying cornigeous cornigerous cornily cornin corniness corninesses corning corniplume cornish cornishman cornishmen cornishwoman cornist cornists cornix cornland cornlands cornless cornloft cornlofts cornmaster cornmeal cornmeals cornmill cornmiller cornmillers cornmills cornmonger cornmoth cornmoths cornmuse corno cornopean cornopeans cornpipe cornpipes cornpone cornpones cornrent cornrents cornrick cornroot cornrow cornrowed cornrowing cornrows corns cornsack cornsmut cornstalk cornstalks cornstarch cornstarches cornstone cornstones cornstook cornu cornua cornual cornuate cornuated cornubianite cornucopia cornucopian cornucopias cornucopiate cornule cornulite cornupete cornus cornuses cornute cornuted cornutes cornutin cornutine cornuting cornuto cornutos cornutus cornwall cornwallis cornwallises cornwallite cornworm cornworms corny coroa corocleisis corocore corocores corocoro corocoros corodiary corodiastasis corodiastole corodies corody corojo corol corolitic coroll corolla corollaceous corollarial corollarially corollaries corollary corollas corollate corollated corollet corolliferous corollifloral corolliflorous corolliform corollike corolline corollitic coromandel coromandels coromell corometer corona coronach coronachs coronad coronadite coronado coronados coronae coronagraph coronagraphic coronagraphs coronal coronale coronaled coronalled coronally coronals coronamen coronaries coronary coronas coronate coronated coronates coronating coronation coronations coronatorial coronavirus corone coronel coronels coronene coroner coroners coronership coronerships coronet coroneted coronetlike coronets coronetted coronettee coronetty coroniform coronilla coronillin coronillo coronion coronis coronises coronitis coronium coroniums coronize coronobasilar coronofacial coronofrontal coronograph coronographic coronographs coronoid coronule coroparelcysis coroplast coroplasta coroplastae coroplastic coroplasty coropuna coroscopy corosif corotate corotated corotates corotating corotation corotational corotations corotomy coroun coroutine coroutines corozo corozos corp corpl corpn corpora corporacies corporacy corporal corporalcies corporalcy corporale corporales corporalism corporalities corporality corporally corporals corporalship corporalships corporas corporases corporate corporately corporateness corporatenesses corporates corporation corporational corporationer corporationism corporations corporatism corporatisms corporatist corporatists corporative corporatively corporativism corporativisms corporativist corporator corporators corporature corpore corporeal corporealisation corporealise corporealised corporealises corporealising corporealism corporealisms corporealist corporealists corporealities corporeality corporealization corporealize corporealized corporealizes corporealizing corporeally corporealness corporealnesses corporeals corporeities corporeity corporeous corporification corporifications corporified corporifies corporify corporifying corporosity corposant corposants corps corpsbruder corpse corpsed corpselike corpselikeness corpses corpsing corpsman corpsmen corpsy corpulence corpulences corpulencies corpulency corpulent corpulently corpulentness corpus corpuscle corpuscles corpuscular corpuscularian corpuscularians corpuscularities corpuscularity corpusculated corpuscule corpuscules corpusculous corpusculum corpuses corr corrade corraded corrades corradial corradiate corradiated corradiating corradiation corrading corral corralled corralling corrals corrasion corrasions corrasive correal correality correct correctable correctant corrected correctedness correcter correctest correctible correctify correcting correctingly correction correctional correctionalist correctioner correctioners corrections correctitude correctitudes corrective correctively correctiveness correctives correctly correctness correctnesses corrector correctors correctorship correctory correctress correctrice corrects corregidor corregidores corregidors corregimiento corregimientos correl correlatable correlate correlated correlates correlating correlation correlational correlations correlative correlatively correlativeness correlativenesses correlatives correlativism correlativities correlativity correlator correlators correligionist correligionists correllated correllation correllations corrente correo correption correptions corresol corresp correspond corresponded correspondence correspondences correspondencies correspondency correspondent correspondential correspondentially correspondently correspondents correspondentship corresponder corresponding correspondingly corresponds corresponsion corresponsive corresponsively corrida corridas corrido corridor corridored corridors corridos corrie corriedale corries corrige corrigenda corrigendas corrigendum corrigent corrigents corrigibilities corrigibility corrigible corrigibleness corrigibly corrival corrivality corrivalled corrivalling corrivalries corrivalry corrivals corrivalship corrivalships corrivate corrivation corrive corrobboree corrober corroborable corroborant corroborants corroborate corroborated corroborates corroborating corroboration corroborations corroborative corroboratively corroboratives corroborator corroboratorily corroborators corroboratory corroboree corroboreed corroboreeing corroborees corrobori corrodant corrode corroded corrodent corrodentia corrodents corroder corroders corrodes corrodiary corrodibilities corrodibility corrodible corrodier corrodies corroding corrodingly corrody corrosibilities corrosibility corrosible corrosibleness corrosion corrosional corrosionproof corrosions corrosive corrosived corrosively corrosiveness corrosivenesses corrosives corrosiving corrosivity corrugant corrugate corrugated corrugates corrugating corrugation corrugations corrugator corrugators corrugent corrump corrumpable corrup corrupable corrupt corrupted corruptedly corruptedness corrupter corrupters corruptest corruptful corruptibilities corruptibility corruptible corruptibleness corruptiblenesses corruptibly corrupting corruptingly corruption corruptionist corruptionists corruptions corruptious corruptive corruptively corruptless corruptly corruptness corruptnesses corruptor corruptors corruptress corrupts corruscation cors corsac corsacs corsage corsages corsaint corsair corsairs corsak corse corselet corseleted corseleting corselets corselette corselettes corsepresent corseque corser corses corsesque corset corseted corsetier corsetiere corsetieres corsetiers corseting corsetior corsetière corsetières corsetless corsetries corsetry corsets corsica corsican corsie corsite corsive corsives corslet corsleted corslets corsned corsneds corso corsos corsy cort corta cortaderia cortage cortages cortaro cortege corteges corteise cortes cortex cortexes cortez cortian cortical cortically corticate corticated corticating cortication cortices corticiferous corticiform corticifugal corticifugally corticin corticine corticipetal corticipetally corticium corticoafferent corticoefferent corticofugal corticoid corticoids corticole corticoline corticolous corticopeduncular corticose corticospinal corticosteroid corticosteroids corticosterone corticosterones corticostriate corticotrophin corticotrophins corticotropin corticotropins corticous cortile cortili cortin cortina cortinae cortinariaceae cortinarious cortinarius cortinas cortinate cortine cortins cortisol cortisols cortisone cortisones cortland cortlandtite cortège cortèges coruco coruler corulers corundom corundophilite corundum corundums corupay coruscant coruscate coruscated coruscates coruscating coruscation coruscations coruscative corv corvae corve corved corvee corvees corven corver corves corvet corveted corveting corvets corvette corvetted corvettes corvetting corvetto corvid corvidae corvids corviform corvillosum corvina corvinas corvine corviser corvisor corvktte corvo corvoid corvorant corvus corvuses corvée corvées cory coryanthes corybant corybantes corybantiasm corybantic corybantish corybantism corybantisms corybants corybulbin corybulbine corycavamine corycavidin corycavidine corycavine corydalidae corydalin corydaline corydalines corydalis corydalises corydalus corydine corydon corydora coryl corylaceae corylaceous corylet corylin corylopsis corylopsises corylus coryluses corymb corymbed corymbiate corymbiated corymbiferous corymbiform corymblike corymbose corymbosely corymbous corymbs corynebacteria corynebacterial corynebacterium coryneform corynid corynine corynite corynocarpaceous corynteria coryph corypha coryphae coryphaei coryphaenid coryphaenidae coryphaenoid coryphaes coryphaeus coryphantha coryphe coryphee coryphees coryphene coryphenes coryphes coryphodon coryphodont coryphylly corypphaei corystoid corythosaur corythosaurus corytuberine coryza coryzal coryzas cos cosalite cosaque cosavior coscet coscinomancies coscinomancy coscoroba coscript coscripted coscripting coscripts cose coseasonal coseat cosec cosecant cosecants cosech cosechs cosecs cosectarian cosectional cosed cosegment coseier coseiest coseism coseismal coseismals coseismic cosen cosenator cosentiency cosentient coservant coses cosession coset cosets cosettler cosey coseys cosh cosharer cosheath coshed cosher coshered cosherer cosherers cosheries coshering cosherings coshers coshery coshes coshing cosie cosied cosier cosiers cosies cosiest cosign cosignatories cosignatory cosigned cosigner cosigners cosignificative cosigning cosignitary cosigns cosily cosin cosinage cosine cosines cosiness cosing cosingular cosins cosinusoid cosmea cosmeas cosmeceutical cosmeceuticals cosmecology cosmeses cosmesis cosmete cosmetic cosmetical cosmetically cosmetician cosmeticians cosmeticise cosmeticised cosmeticises cosmeticising cosmeticism cosmeticisms cosmeticize cosmeticized cosmeticizes cosmeticizing cosmetics cosmetiste cosmetize cosmetized cosmetizes cosmetizing cosmetological cosmetologies cosmetologist cosmetologists cosmetology cosmic cosmical cosmicality cosmically cosmid cosmids cosmine cosmism cosmisms cosmist cosmists cosmo cosmocampus cosmochemical cosmochemist cosmochemistries cosmochemistry cosmochemists cosmocracy cosmocrat cosmocratic cosmocrats cosmodrome cosmodromes cosmogenesis cosmogenetic cosmogenic cosmogenies cosmogeny cosmognosis cosmogonal cosmogoner cosmogonic cosmogonical cosmogonically cosmogonies cosmogonist cosmogonists cosmogonize cosmogony cosmographer cosmographers cosmographic cosmographical cosmographically cosmographies cosmographist cosmography cosmoid cosmolabe cosmolatries cosmolatry cosmoline cosmolined cosmolining cosmologic cosmological cosmologically cosmologies cosmologist cosmologists cosmology cosmologygy cosmometry cosmonaut cosmonautic cosmonautical cosmonautically cosmonautics cosmonauts cosmopathic cosmoplastic cosmopoietic cosmopolicy cosmopolis cosmopolises cosmopolitan cosmopolitanisation cosmopolitanise cosmopolitanised cosmopolitanising cosmopolitanism cosmopolitanisms cosmopolitanization cosmopolitanize cosmopolitanized cosmopolitanizing cosmopolitanly cosmopolitans cosmopolite cosmopolites cosmopolitic cosmopolitical cosmopolitics cosmopolitism cosmopolitisms cosmorama cosmoramas cosmoramic cosmorganic cosmos cosmoscope cosmoses cosmosophy cosmosphere cosmospheres cosmotellurian cosmotheism cosmotheisms cosmotheist cosmotheistic cosmothetic cosmothetical cosmotron cosmotrons cosmozoan cosmozoans cosmozoic cosmozoism cosonant cosounding cosovereign cosovereignty cospecies cospecific cosphered cosplendor cosplendour cosponsor cosponsored cosponsoring cosponsors cosponsorship cosponsorships coss cossack cossacks cossas cosse cosses cosset cosseted cosseting cossets cossette cossetted cossetting cosshen cossic cossid cossie cossies cossnent cossyrite cost costa costae costage costal costalgia costalgias costally costals costander costanoan costar costard costardmonger costardmongers costards costarred costarring costars costate costated coste costean costeaned costeaning costeanings costeans costectomies costectomy costed costeen costellate coster costerdom costermonger costermongers costers costes costful costia costiasis costicartilage costicartilaginous costicervical costiferous costiform costing costings costious costipulator costispinal costive costively costiveness costivenesses costless costlessly costlessness costlessnesses costlew costlier costliest costliness costlinesses costly costmaries costmary costoabdominal costoapical costocentral costochondral costochondritis costoclavicular costocolic costocoracoid costodiaphragmatic costogenic costoinferior costophrenic costopleural costopneumopexy costopulmonary costoscapular costosternal costosuperior costothoracic costotome costotomies costotomy costotrachelian costotransversal costotransverse costovertebral costoxiphoid costraight costrel costrels costs costula costulation costume costumed costumer costumeries costumers costumery costumes costumey costumic costumier costumiere costumiers costuming costumire costumist costus costuses costusroot cosubject cosubordinate cosuffer cosufferer cosuggestion cosuitor cosurety cosuretyship cosurfactant cosurfactants cosustain coswearer cosy cosying cosymmedian cot cotabulate cotacachi cotan cotangent cotangential cotangents cotans cotarius cotarnin cotarnine cotbetty cotch cote coteau coteaus coteaux coted coteen coteful cotehardie cotele cotelette cotelettes coteline cotelines coteller cotemporane cotemporanean cotemporaneans cotemporaneities cotemporaneity cotemporaneous cotemporaneously cotemporaneousness cotemporaneousnesses cotemporaries cotemporarily cotemporary cotenancies cotenancy cotenant cotenants cotenure cotenures coterell coterie coteries coterminal coterminous coterminously coterminousness cotery cotes cotesian coth cotham cothamore cothe cotheorist cothish cothon cothouse coths cothurn cothurnal cothurnate cothurned cothurni cothurnian cothurnni cothurns cothurnus cothurnuses cothy cotice coticed coticing coticular cotidal cotilion cotillage cotillion cotillions cotillon cotillons coting cotinga cotingas cotingid cotingidae cotingoid cotinine cotinines cotinus cotise cotised cotises cotising cotitular cotland cotlands cotman coto cotoin cotoneaster cotoneasters cotonia cotonier cotopaxi cotorment cotoro cotoros cotorture cotquean cotqueans cotraitor cotransduce cotransduced cotransduces cotransducing cotransduction cotransductions cotransfer cotransferred cotransferring cotransfers cotransfuse cotranslator cotranspire cotransport cotransported cotransporting cotransports cotransubstantiate cotrespasser cotrine cotripper cotrustee cotrustees cots cotset cotsetla cotsetland cotsetle cotswold cotswolds cott cotta cottabus cottabuses cottae cottage cottaged cottager cottagers cottages cottagey cottaging cottagings cottar cottars cottas cotte cotted cotter cottered cotterel cottering cotterite cotterless cotters cotterway cottid cottidae cottids cottier cottierism cottierisms cottiers cottiest cottiform cottise cottised cottises cottising cottoid cottoids cotton cottonade cottonades cottonbush cottoned cottonee cottoneer cottoner cottoning cottonisation cottonise cottonization cottonize cottonless cottonmouth cottonmouths cottonocracies cottonocracy cottonopolis cottonpicking cottons cottonseed cottonseeds cottontail cottontails cottontop cottonweed cottonweeds cottonwick cottonwood cottonwoods cottony cottown cottowns cottrel cotts cottus cottuses cotty cotuit cotula cotunnite coturnix coturnixes cotutor cotwal cotwals cotwin cotwinned cotwist cotyla cotylae cotylar cotyle cotyledon cotyledonal cotyledonar cotyledonary cotyledonoid cotyledonous cotyledons cotyles cotyliform cotyligerous cotyliscus cotyloid cotyloidal cotylophorous cotylopubic cotylosacral cotylosaur cotylosaurian cotylosaurs cotype cotypes coua couac coucal coucals couch coucha couchancy couchant couchantly couche couched couchee couchees coucher couchers couches couchette couchettes couching couchings couchmaker couchmaking couchmate couchy couché coud coude coudee coudes coudé coue coueism cougar cougars cough coughed cougher coughers coughing coughings coughroot coughs coughweed coughwort cougnar couguar couguars couhage coul coulae coulage could couldest couldn couldna couldnt couldron couldst coulee coulees couleur coulibiaca coulie coulier coulis coulises coulisse coulisses couloir couloirs coulomb coulombic coulombmeter coulombmeters coulombs coulometer coulometers coulometric coulometrically coulometries coulometry coulter coulterneb coulters coulthard coulure coulée coulées couma coumadin coumalic coumalin coumaphos coumara coumaran coumarane coumarate coumaric coumarilic coumarin coumarinic coumarins coumarone coumarones coumarou coumarouna coumarous coumbite council councilist councillary councillor councillors councillorship councillorships councilman councilmanic councilmen councilor councilors councilorship councilorships councilperson councilpersons councils councilwoman councilwomen counderstand counite couniversal counsel counselable counseled counselee counselees counselful counseling counselings counsellable counselled counsellee counselling counsellings counsellor counsellors counsellorship counsellorships counselor counselors counselorship counselorships counsels counsinhood count countabilities countability countable countableness countably countdom countdown countdowns counted countenance countenanced countenancer countenancers countenances countenancing counter counterabut counteraccusation counteraccusations counteracquittance counteract counteractant counteracted counteracter counteracting counteractingly counteraction counteractions counteractive counteractively counteractivity counteractor counteracts counteradaptation counteradaptations counteraddress counteradvance counteradvantage counteradvertising counteradvertisings counteradvice counteradvise counteraffirm counteraffirmation counteragency counteragent counteragents counteraggression counteraggressions counteragitate counteragitation counteralliance counterambush counterannouncement counteranswer counterappeal counterappellant counterapproach counterapse counterarch counterargue counterargued counterargues counterarguing counterargument counterarguments counterartillery counterassault counterassaults counterassertion counterassociation counterassurance counterattack counterattacked counterattacker counterattackers counterattacking counterattacks counterattestation counterattired counterattraction counterattractive counterattractively counteraverment counteravouch counteravouchment counterbade counterbalance counterbalanced counterbalances counterbalancing counterband counterbarrage counterbase counterbases counterbattery counterbeating counterbend counterbewitch counterbid counterbidden counterbidder counterbidders counterbidding counterbids counterblast counterblasts counterblockade counterblockaded counterblockades counterblockading counterblow counterblows counterbluff counterbluffs counterbombardment counterbond counterbonds counterborder counterbore counterbored counterborer counterbores counterboring counterboulle counterboycott counterbrace counterbraced counterbraces counterbracing counterbranch counterbrand counterbreastwork counterbuff counterbuffed counterbuffing counterbuffs counterbuilding countercampaign countercampaigns countercarte countercathexis countercause counterchallenge counterchallenges counterchange counterchanged counterchanges counterchanging countercharge countercharged countercharges countercharging countercharm countercharmed countercharming countercharms countercheck counterchecked counterchecking counterchecks countercheer counterclaim counterclaimant counterclaimants counterclaimed counterclaiming counterclaims counterclassification counterclassifications counterclockwise countercolored countercoloured countercommand countercommercial countercompany countercompetition countercomplaint countercomplaints countercompony countercondemnation counterconditioning counterconditionings counterconquest counterconspiracies counterconspiracy counterconvention counterconventions counterconversion countercouchant countercountermeasure countercountermeasures countercoup countercoupe countercoups countercourant countercraft countercries countercriticism countercriticisms countercross countercry countercultural counterculturalism counterculturalisms counterculture countercultures counterculturist counterculturists countercurrent countercurrently countercurrents countercurrentwise countercyclical countercyclically counterdance counterdash counterdecision counterdeclaration counterdecree counterdefender counterdemand counterdemands counterdemonstrate counterdemonstrated counterdemonstrates counterdemonstrating counterdemonstration counterdemonstrations counterdemonstrator counterdemonstrators counterdeployment counterdeployments counterdeputation counterdesire counterdevelopment counterdifficulty counterdigged counterdike counterdiscipline counterdisengage counterdisengagement counterdistinct counterdistinction counterdistinguish counterdoctrine counterdogmatism counterdraft counterdrain counterdraw counterdrawing counterdrawn counterdraws counterdrew counterdrive counterearth countered countereducational countereffect countereffects counterefficiency countereffort counterefforts counterembargo counterembargos counterembattled counterembowed counterenamel counterend counterenergy counterengagement counterengine counterenthusiasm counterentry counterequivalent counterermine counterespionage counterespionages counterestablishment counterevidence counterevidences counterexaggeration counterexample counterexamples counterexcitement counterexcommunication counterexercise counterexplanation counterexposition counterexpostulation counterextend counterextension counterextensions counterfact counterfactual counterfactuality counterfactually counterfactuals counterfallacy counterfaller counterfect counterfeisance counterfeisances counterfeit counterfeited counterfeiter counterfeiters counterfeiting counterfeitly counterfeitment counterfeitness counterfeits counterferment counterfesaunce counterfesaunces counterfessed counterfire counterfired counterfires counterfiring counterfix counterflange counterflashing counterfleury counterflight counterflory counterflow counterflows counterflux counterfoil counterfoils counterforce counterforces counterformula counterfort counterforts counterfugue countergabble countergabion countergage countergager countergambit countergarrison countergauge countergauger countergift countergirded counterglow counterglows countergovernment countergovernments counterguard counterguerilla counterguerillas counterguerrila counterguerrilla counterguerrillas counterhaft counterhammering counterhypotheses counterhypothesis counteridea counterideal counterimage counterimages counterimagination counterimitate counterimitation counterimpulse counterincentive counterincentives counterindentation counterindented counterindicate counterindication counterindoctrinate counterindoctrination counterinflation counterinflationary counterinfluence counterinfluenced counterinfluences counterinfluencing countering counterinstance counterinstances counterinstitution counterinstitutions counterinsult counterinsurgencies counterinsurgency counterinsurgent counterinsurgents counterintelligence counterintelligences counterinterest counterinterpretation counterinterpretations counterintrigue counterintrigues counterintuitive counterintuitively counterinvective counterinvestment counterion counterions counterirritant counterirritants counterirritate counterirritation counterirritations counterjudging counterjumper counterlath counterlathed counterlathing counterlatration counterlaw counterleague counterlegislation counterlife counterlight counterlighted counterlighting counterlights counterlilit counterlit counterlocking counterlode counterlove counterly countermachination countermaid counterman countermand countermandable countermanded countermanding countermands countermaneuver countermanifesto countermanifestoes countermarch countermarched countermarches countermarching countermark countermarks countermarriage countermeasure countermeasures countermeet countermelodies countermelody countermemo countermemos countermen countermessage countermigration countermine countermined countermines countermining countermissile countermission countermobilization countermobilizations countermotion countermotions countermount countermove countermoved countermovement countermovements countermoves countermoving countermure countermured countermures countermuring countermutiny countermyth countermyths counternaiant counternarrative counternatural counternecromancy counternoise counternotice counterobjection counterobligation counteroffensive counteroffensives counteroffer counteroffers counteropening counteropponent counteropposite counterorator counterorder counterordered counterordering counterorders counterorganization counterpace counterpaces counterpaled counterpaly counterpane counterpaned counterpanes counterparadox counterparallel counterparole counterparry counterpart counterparts counterpassant counterpassion counterpeise counterpeised counterpeises counterpeising counterpenalty counterpendent counterperson counterpersons counterpetition counterpetitioned counterpetitioning counterpetitions counterphobic counterpicket counterpicketed counterpicketing counterpickets counterpicture counterpillar counterplan counterplans counterplay counterplayer counterplayers counterplays counterplea counterplead counterpleaded counterpleading counterpleads counterpleas counterplease counterpled counterplot counterplots counterplotted counterplotter counterplotting counterploy counterploys counterpoint counterpointe counterpointed counterpointing counterpoints counterpoise counterpoised counterpoises counterpoising counterpoison counterpole counterpoles counterponderate counterpose counterposed counterposes counterposing counterposition counterposting counterpotence counterpotency counterpotent counterpower counterpowers counterpractice counterpray counterpreach counterpreparation counterpressure counterpressures counterprick counterprinciple counterprocess counterproductive counterproductively counterproductiveness counterproductivenesses counterproductivity counterprogram counterprogrammed counterprogramming counterprogrammings counterprograms counterproject counterprojects counterpronunciamento counterproof counterproofs counterpropaganda counterpropagandas counterpropagandize counterpropagation counterpropagations counterprophet counterproposal counterproposals counterproposition counterprotection counterprotest counterprotests counterprove counterpull counterpunch counterpunched counterpuncher counterpunchers counterpunches counterpunching counterpuncture counterpush counterquartered counterquarterly counterquery counterquestion counterquestioned counterquestioning counterquestions counterquip counterradiation counterraid counterraided counterraiding counterraids counterraising counterrallied counterrallies counterrally counterrallying counterrampant counterrate counterreaction counterreactions counterreason counterrebuttal counterrebuttals counterreckoning counterrecoil counterreconnaissance counterrefer counterreflected counterreform counterreformation counterreformations counterreformer counterreformers counterreforms counterreligion counterremonstrant counterreplied counterreplies counterreply counterreplying counterreprisal counterresolution counterresponse counterresponses counterrestoration counterretaliation counterretaliations counterretreat counterrevolution counterrevolutionaries counterrevolutionary counterrevolutionist counterrevolutionists counterrevolutionize counterrevolutions counterriposte counterroll counterrotating counterround counterruin counters countersale countersalient countersank counterscale counterscalloped counterscarp counterscarps counterscientific counterscoff countersconce counterscrutiny countersea counterseal countersealed countersealing counterseals countersecure countersecurity counterselection countersense counterservice countershade countershading countershadings countershaft countershafting countershafts countershear countershine countershock countershot countershots countershout counterside countersiege countersign countersignal countersignature countersignatures countersigned countersigning countersigns countersink countersinking countersinks countersleight counterslope countersmile countersnarl countersniper countersnipers counterspell counterspells counterspies counterspy counterspying counterspyings counterstain counterstained counterstaining counterstains counterstamp counterstand counterstatant counterstate counterstated counterstatement counterstatements counterstates counterstating counterstatute counterstep counterstepped counterstepping countersteps counterstimulate counterstimulation counterstimulus counterstock counterstratagem counterstrategies counterstrategist counterstrategists counterstrategy counterstream counterstreams counterstrike counterstrikes counterstroke counterstrokes counterstruggle counterstyle counterstyles countersubject countersubjects countersubversion countersue countersued countersues countersuggestion countersuggestions countersuing countersuit countersuits countersun countersunk countersunken countersurprise countersurveillance countersurveillances countersway counterswing countersworn countersympathy countersynod countertack countertactics countertail countertally countertaste countertechnicality countertendencies countertendency countertenor countertenors counterterm counterterror counterterrorism counterterrorisms counterterrorist counterterrorists counterterrors countertheme countertheory counterthought counterthreat counterthreats counterthrust counterthrusts counterthwarting countertierce countertime countertop countertops countertouch countertraction countertrade countertrader countertraders countertrades countertradition countertraditions countertransference countertransferences countertranslation countertraverse countertreason countertree countertrench countertrend countertrends countertrespass countertrippant countertripping countertruth countertug counterturn counterturned countertype countertypes countervail countervailable countervailed countervailing countervails countervair countervairy countervallation countervalue countervaunt countervene countervengeance countervenom countervibration counterview counterviews countervindication counterviolence counterviolences countervolition countervolley countervote counterwager counterwall counterwarmth counterwave counterweigh counterweighed counterweighing counterweighs counterweight counterweighted counterweighting counterweights counterwheel counterwill counterwilling counterwind counterwitness counterwoman counterwomen counterword counterwork counterworked counterworker counterworking counterworks counterworld counterworlds counterwrite countess countesses countfish countian countians counties counting countinghouse countinghouses countless countlessly countlessness countline countlines countor countour countree countreeman countrie countrieman countries countrification countrified countrifiedness countrify countrol countrolled countrolling countrols country countryfied countryfiedness countryfolk countryish countryman countrymen countrypeople countryseat countryseats countryside countrysides countryward countrywide countrywoman countrywomen counts countship countships county countys countywide coup coupa coupage coupe couped coupee coupees coupelet couper couperationist couperatively couperativeness couperator coupers coupes couping couple coupled coupledom coupledoms couplement couplements coupler coupleress couplers couples couplet coupleteer couplets coupling couplings coupon couponed couponing couponings couponless coupons coups coupstick couptation couptative couption coupure coupures cour courage courageful courageous courageously courageousness courageousnesses courager courages courant courante courantes couranto courantoes courantos courants courap couratari courb courbache courbaril courbarils courbash courbe courbed courbette courbettes courbing courbs courche courd courdinately courdinateness courdinative courdinator coure coured coures courge courgette courgettes courida courie courier couriered couriering couriers couril couring courlan courlans couronne cours course coursebook coursebooks coursed courser coursers courses courseware coursewares coursework courseworks coursey coursing coursings coursy court courtage courtal courtbred courtby courtcraft courtcrafts courted courtelle courteous courteously courteousness courteousnesses courtepy courter courters courtesan courtesanry courtesans courtesanship courtesied courtesies courtesy courtesying courtezan courtezanry courtezans courtezanship courthouse courthouses courtier courtierism courtierisms courtierlike courtierly courtiers courtiership courtiery courtin courting courtings courtless courtlet courtlets courtlier courtliest courtlike courtliness courtlinesses courtling courtlings courtly courtman courtnoll courtroll courtroom courtrooms courts courtship courtships courtside courtsides courty courtyard courtyards courtzilite couscous couscouses couscousou couscousous couseranite cousin cousinage cousinages cousiness cousinhood cousinhoods cousinly cousinries cousinry cousins cousinship cousinships cousiny coussinet coustumier couteau couteaux coutel coutelle couter couters couth couthe couther couthest couthie couthier couthiest couthily couthiness couthless couthly couths couthy coutil coutille coutilles coutils coutumier couture coutures couturiare couturiares couturier couturiere couturieres couturiers couturire couturière couturières couvade couvades couve couvert couverte couverts couveuse couxia couxio covado covalence covalences covalencies covalency covalent covalently covariable covariables covariance covariances covariant covariants covariate covariates covariation covariations covaried covaries covary covarying covassal cove coved covelet covelets covelline covellines covellite covellites coven covenable covenably covenance covenant covenantal covenantally covenanted covenantee covenantees covenanter covenanters covenanting covenantor covenantors covenants covens covent coventrate coventries coventrize coventry covents cover coverable coverage coverages coverall coveralled coveralls coverchief covercle covered coverer coverers covering coverings coverless coverlet coverlets coverlid coverlids covers coversed coversheet coverside coversine coverslip coverslips coverslut covert covertical covertly covertness covertnesses coverts coverture covertures coverup coverups coves covet covetable coveted coveter coveters coveting covetingly covetise covetises covetiveness covetivenesses covetous covetously covetousness covetousnesses covets covey coveys covibrate covibration covid covido covillager coville covin covine coving covings covinous covinously covins covisit covisitor covite covolume covotary covyne covynes cow cowage cowages cowal cowals cowan cowans coward cowarded cowardic cowardice cowardices cowarding cowardish cowardliness cowardlinesses cowardly cowardness cowardree cowardrees cowardries cowardry cowards cowardship cowardships cowardy cowbane cowbanes cowbarn cowbell cowbells cowberries cowberry cowbind cowbinds cowbird cowbirds cowboy cowboys cowbrute cowbyre cowcatcher cowcatchers cowdie cowed cowedly coween cower cowered cowerer cowerers cowering coweringly cowers cowfeeder cowfeeders cowfish cowfishes cowflap cowflaps cowflop cowflops cowgate cowgirl cowgirls cowgram cowgrass cowgrasses cowhage cowhages cowhand cowhands cowheard cowheards cowheart cowhearted cowheel cowheels cowherb cowherbs cowherd cowherds cowhide cowhided cowhides cowhiding cowhorn cowhouse cowhouses cowier cowiest cowing cowinner cowinners cowish cowishness cowitch cowitches cowk cowkeeper cowkine cowl cowle cowled cowleech cowleeching cowlick cowlicks cowlike cowling cowlings cowlneck cowlnecks cowls cowlstaff cowlstaffs cowlstaves cowman cowmen coworker coworkers coworking cowp cowpat cowpath cowpats cowpea cowpeas cowped cowpen cowpens cowper cowperian cowperitis cowpie cowpies cowping cowplop cowplops cowpock cowpoke cowpokes cowpony cowpox cowpoxes cowps cowpunch cowpuncher cowpunchers cowquake cowrie cowries cowrite cowriter cowriters cowrites cowriting cowritten cowroid cowrote cowry cows cowshard cowsharn cowshed cowsheds cowshot cowshut cowskin cowskins cowslip cowslipped cowslips cowson cowsucker cowtail cowthwort cowtongue cowtown cowtree cowtrees cowweed cowwheat cowy cowyard cox coxa coxae coxal coxalgia coxalgias coxalgic coxalgies coxalgy coxankylometer coxarthritis coxarthrocace coxarthropathy coxbones coxcomb coxcombess coxcombhood coxcombic coxcombical coxcombicalities coxcombicality coxcombically coxcombity coxcombries coxcombry coxcombs coxcomby coxcomical coxcomically coxed coxendix coxes coxier coxiest coxiness coxinesses coxing coxite coxitides coxitis coxless coxocerite coxoceritic coxodynia coxofemoral coxopodite coxsackievirus coxsackieviruses coxswain coxswained coxswaining coxswains coxwain coxwaining coxwains coxy coy coyan coydog coydogs coyed coyer coyest coying coyish coyishly coyishness coyishnesses coyly coyn coyness coynesses coynye coyo coyol coyos coyote coyotes coyotillo coyotillos coyoting coypou coypous coypu coypus coys coystrel coystrels coystril coystrils coyure coz coze cozed cozeier cozeiest cozen cozenage cozenages cozened cozener cozeners cozening cozeningly cozens cozes cozey cozeys cozie cozied cozier coziers cozies coziest cozily coziness cozinesses cozing cozy cozying cozzes cp cpa cpd cpi cpl cpm cpo cpr cps cpt cpu cpus cputime cq cr craal craaled craaling craals crab crabapple crabbed crabbedly crabbedness crabbednesses crabber crabbers crabbery crabbier crabbiest crabbily crabbiness crabbinesses crabbing crabbings crabbish crabbit crabby crabcatcher crabeater crabeating craber crabfish crabgrass crabgrasses crabhole crabier crabit crablet crablike crabman crabmeat crabmeats crabmill crabs crabsidle crabstick crabsticks crabut crabweed crabwise crabwood craccus crache crachoir cracidae crack crackability crackable crackableness crackajack crackajacks crackback crackbacks crackbrain crackbrained crackbrainedness crackbrains crackdown crackdowns cracked crackedness cracker crackerberries crackerberry crackerjack crackerjacks crackers cracket crackhead crackheads crackhemp crackiness cracking crackings crackjaw crackle crackled crackles crackless crackleware cracklewares cracklier crackliest crackling cracklings crackly crackmans cracknel cracknels crackpot crackpotism crackpots crackpottedness crackrope cracks crackskull cracksman cracksmen crackup crackups cracky cracovienne cracoviennes cracow cracowe cracowes cracticidae cracticus craddy cradge cradle cradleboard cradleboards cradlechild cradled cradlefellow cradleland cradlelike cradlemaker cradlemaking cradleman cradlemate cradlemen cradler cradlers cradles cradleside cradlesong cradlesongs cradletime cradlewalk cradlewalks cradling cradlings craft crafted crafter crafters craftier craftiest craftily craftiness craftinesses crafting craftless craftly craftmanship craftmanships crafts craftsman craftsmanlike craftsmanly craftsmanship craftsmanships craftsmaster craftsmasters craftsmen craftsmenship craftsmenships craftspeople craftsperson craftspersons craftswoman craftswomen craftwork craftworker craftworks crafty crag cragfast craggan cragged craggedly craggedness craggednesses craggier craggiest craggily cragginess cragginesses craggy craglike crags cragsman cragsmen cragwork craichy craie craig craigfluke craigflukes craighle craigmontite craigs craik crain craisey craizey crajuru crake crakeberries crakeberry craked crakefeet craker crakes craking crakow cram cramasie crambambulee crambambuli crambe cramberry crambes crambid cramble crambly crambo cramboclink cramboclinks cramboes crambos crame cramel crames cramesies cramesy crammable crammed crammel crammer crammers cramming crammingly cramoisie cramoisies cramoisy cramp crampbark crampbarks crampbit cramped crampedness cramper crampet crampets crampette crampfish crampfishes crampier crampiest cramping crampingly crampish crampit crampits crampon cramponnae cramponnee crampons crampoon crampoons cramps crampy crams cran cranage cranages cranberries cranberry crance crancelin cranch cranched cranches cranching crandall crandallite crane cranebill craned craneflies cranefly cranelike cranely craneman cranemanship cranemen craner cranes cranesbill cranesbills cranesman cranet craneway craney crang crangon crangonidae crania craniacromial craniad cranial cranially cranian craniata craniate craniates cranic craniectomies craniectomy craning craninia craniniums craniocele craniocerebral cranioclasis cranioclasm cranioclast cranioclasty craniodidymus craniofacial craniognomic craniognomies craniognomy craniognosy craniograph craniographer craniography cranioid craniol craniological craniologically craniologies craniologist craniologists craniology craniom craniomalacia craniomaxillary craniometer craniometers craniometric craniometrical craniometrically craniometries craniometrist craniometrists craniometry craniopagus craniopathic craniopathy craniopharyngeal craniopharyngioma craniopharyngiomas craniopharyngiomata craniophore cranioplasty craniopuncture craniorhachischisis craniosacral cranioschisis cranioscopical cranioscopies cranioscopist cranioscopists cranioscopy craniospinal craniostenosis craniostosis craniota craniotabes craniotome craniotomies craniotomy craniotopography craniotympanic craniovertebral cranium craniums crank crankbird crankcase crankcases crankdisk cranked cranker crankery crankest crankhandle crankhandles crankier crankiest crankily crankiness crankinesses cranking crankish crankism crankle crankled crankles crankless crankling crankly crankman crankness cranknesses crankous crankpin crankpins crankplate cranks crankshaft crankshafts crankum cranky crannage crannel crannequin crannia crannied crannies crannock crannog crannoge crannoger crannoges crannogs cranny crannying cranreuch cranreuchs crans cranshaw cranshaws cransier crantara crants crantses crany crap crapaud crapaudine crapauds crape craped crapefish crapehanger crapehangers crapehanging crapehangings crapelike crapes crapette crapier crapiest craping craple craples crapola crapolas crapon crapped crapper crappers crappie crappier crappies crappiest crappin crappiness crapping crapple crappo crappy craps crapshoot crapshooter crapshooters crapshooting crapshoots crapshot crapula crapulate crapulence crapulences crapulency crapulent crapulosities crapulosity crapulous crapulously crapulousness crapulousnesses crapwa crapy craquelure craquelures crare crares crases crash crashed crasher crashers crashes crashing crashingly crashland crashlanded crashlanding crashlands crashpad crashpads crashproof crashworthiness crashworthinesses crashworthy crasis craspedal craspedia craspedodromous craspedon craspedotal craspedote craspedum crass crassament crassamenta crassamentum crassamentums crasser crassest crassier crassilingual crassis crassities crassitude crassitudes crassly crassness crassnesses crassostrea crassula crassulaceae crassulaceous crataegus cratch cratchens cratches cratchins crate crated crateful cratemaker cratemaking crateman cratemen crater crateral cratered crateriform cratering crateris craterkin craterless craterlet craterlets craterlike craterous craters crates craticular crating cratometer cratometric cratometry craton cratonic cratons cratsmanship cratur craturs craunch craunched craunches craunching craunchingly cravat cravats cravatted cravatting crave craved craven cravened cravenette cravenhearted cravening cravenly cravenness cravennesses cravens craver cravers craves craving cravingly cravingness cravings cravo craw crawberry crawdad crawdaddies crawdaddy crawdads crawfish crawfished crawfishes crawfishing crawfoot crawfoots crawful crawl crawled crawler crawlerise crawlerize crawlers crawley crawleyroot crawlie crawlier crawlies crawliest crawling crawlingly crawlings crawls crawlsome crawlspace crawlspaces crawlway crawlways crawly crawm craws crawtae crax cray craye crayer crayers crayfish crayfishes crayfishing craylet crayola crayolas crayon crayoned crayoner crayoners crayoning crayonist crayonists crayons crayonstone crays craythur craze crazed crazedly crazedness crazes crazier crazies craziest crazily craziness crazinesses crazing crazingmill crazings crazy crazycat crazyweed crazyweeds crc crcao crche cre crea creach creachs creachy cread creagh creaghs creaght creak creaked creaker creakier creakiest creakily creakiness creakinesses creaking creakingly creaks creaky cream creambush creamcake creamcup creamcups creamed creamer creameries creamers creamery creameryman creamerymen creamfruit creamier creamiest creamily creaminess creaminesses creaming creamlaid creamless creamlike creammaker creammaking creamometer creampuff creampuffs creams creamsacs creamware creamwares creamwove creamy creance creancer creances creant crease creased creaseless creaseproof creaser creasers creases creashak creashaks creasier creasiest creasing creasol creasot creasote creasoted creasotes creasoting creasy creat creatable create created createdness creates creatianism creatianisms creatic creatin creatine creatinephosphoric creatines creating creatinin creatinine creatininemia creatinines creatins creatinuria creation creational creationary creationism creationisms creationist creationistic creationists creations creative creatively creativeness creativenesses creatives creativities creativity creatophagous creator creatorhood creatorrhea creators creatorship creatorships creatotoxism creatress creatresses creatrix creatrixes creatural creature creaturehood creaturehoods creatureless creatureliness creaturelinesses creatureling creaturely creatures creatureship creatureships creaturise creaturize creaze crebricostate crebrisulcate crebrity crebrous creche creches crecy cred creda credal creddock credence credences credencive credenciveness credenda credendum credens credensive credensiveness credent credential credentialed credentialing credentialism credentialisms credentialled credentialling credentials credently credenza credenzas credere credibilities credibility credible credibleness crediblenesses credibly credit creditabilities creditability creditable creditableness creditablenesses creditably credited crediting creditive creditless creditor creditors creditorship creditress creditrix credits creditworthiness creditworthinesses creditworthy crednerite credo credos creds credulities credulity credulous credulously credulousness credulousnesses cree creed creedal creedalism creedalist creedbound creeded creedist creedite creedless creedlessness creedmore creeds creedsman creeing creek creeker creekfish creekfishes creekier creekiest creeks creekside creekstuff creeky creel creeled creeler creeling creels creem creen creep creepage creepages creeped creeper creepered creeperless creepers creephole creepie creepier creepies creepiest creepily creepiness creepinesses creeping creepingly creepmouse creepmousy creeps creepy crees creese creesed creeses creesh creeshed creeshes creeshie creeshier creeshiest creeshing creeshy creesing creirgist cremaillere cremailleres cremains cremant cremaster cremasterial cremasteric cremasters cremate cremated cremates cremating cremation cremationism cremationist cremationists cremations cremator crematoria crematorial crematories crematoriria crematoririums crematorium crematoriums cremators crematory crembalum creme cremerie cremes cremini creminis cremnophobia cremocarp cremocarps cremometer cremona cremonas cremone cremor cremorne cremornes cremors cremosin cremsin cremule crena crenae crenallation crenas crenate crenated crenately crenation crenations crenature crenatures crenel crenelate crenelated crenelates crenelating crenelation crenelations crenele creneled crenelee crenelet creneling crenella crenellate crenellated crenellates crenellating crenellation crenellations crenelle crenelled crenelles crenelling crenels crengle crenic crenitic crenology crenotherapy crenshaw crenshaws crenula crenulate crenulated crenulation crenulations creodont creodonta creodonts creole creoleize creoles creolian creolians creolisation creolisations creolise creolised creolises creolising creolism creolist creolists creolite creolization creolizations creolize creolized creolizes creolizing creophagia creophagism creophagist creophagous creophagy creosol creosols creosote creosoted creosoter creosotes creosotic creosoting crepance crepances crepe creped crepehanger crepehangers crepehanging crepehangings crepeier crepeiest creperie creperies crepes crepey crepidoma crepidomata crepier crepiest crepine crepiness crepinesses creping crepis crepitacula crepitaculum crepitant crepitate crepitated crepitates crepitating crepitation crepitations crepitative crepitous crepitus crepituses creply crepoline crepolines crepon crepons crept crepuscle crepuscles crepuscular crepuscule crepuscules crepusculine crepusculous crepusculum crepy cres cresamine cresc crescence crescendi crescendo crescendoed crescendoes crescendoing crescendos crescent crescentade crescentader crescentades crescented crescentia crescentic crescentiform crescenting crescentlike crescentoid crescents crescentwise crescive crescively crescograph crescographic crescographs cresegol cresive cresol cresolin cresoline cresols cresorcin cresorcinol cresotate cresotic cresotinate cresotinic cresoxid cresoxide cresoxy cresphontes cress cressed cresselle cresses cresset cressets cressida cressier cressiest cresson cressweed cresswort cressy crest crestal crested crestfallen crestfallenly crestfallenness crestfallennesses crestfallens crestfish cresting crestings crestless crestline crestmoreite creston crestons crests cresyl cresylate cresylene cresylic cresylite cresyls creta cretaceous cretaceously cretan crete cretefaction cretic creticism cretics cretification cretify cretin cretinic cretinisation cretinise cretinised cretinises cretinising cretinism cretinisms cretinistic cretinization cretinize cretinized cretinizes cretinizing cretinoid cretinoids cretinous cretins cretion cretionary cretism cretisms cretize cretonne cretonnes cretons cretoria creutzer creutzers crevalle crevalles crevass crevasse crevassed crevasses crevassing crevet crevette crevettes crevice creviced crevices crevis crew crewcut crewcuts crewe crewed crewel creweler crewelers crewelist crewelists crewelled crewelleries crewellery crewelling crewels crewelwork crewelworks crewer crewes crewet crewing crewless crewman crewmanship crewmate crewmates crewmen crewneck crewnecks crews crex criance criant crib cribbage cribbages cribbed cribber cribbers cribbing cribbings cribbiter cribbiting cribble cribbled cribbles cribbling cribella cribellar cribellum cribellums cribla crible criblee criblé criblée cribo cribose cribral cribrate cribrately cribration cribrations cribriform cribriformity cribrose cribrosity cribrous cribs cribwork cribworks cric cricetid cricetidae cricetids cricetine cricetus crick cricke cricked cricket cricketed cricketeer cricketer cricketers cricketing cricketings cricketlike crickets crickety crickey crickeys cricking crickle cricks cricky cricoarytenoid cricoid cricoidectomy cricoids cricopharyngeal cricothyreoid cricothyreotomy cricothyroid cricothyroidean cricotomy cricotracheotomy criddle cried crier criers cries criey crig crikey crikeys crile crim crimble crime crimea crimean crimed crimeful crimeless crimelessness crimen crimeproof crimes crimina criminal criminaldom criminalese criminaleses criminalisation criminalisations criminalise criminalised criminalises criminalising criminalism criminalist criminalistic criminalistician criminalistics criminalists criminalities criminality criminalization criminalizations criminalize criminalized criminalizes criminalizing criminally criminalness criminaloid criminals criminate criminated criminates criminating crimination criminations criminative criminator criminators criminatory crimine crimines criming crimini criminis criminogenesis criminogenic criminol criminologic criminological criminologically criminologies criminologist criminologists criminology criminosis criminous criminously criminousness criminousnesses criminy crimison crimmer crimmers crimmy crimogenic crimp crimpage crimped crimper crimpers crimpier crimpiest crimpiness crimpinesses crimping crimple crimpled crimples crimpling crimpness crimps crimpy crims crimson crimsoned crimsoning crimsonly crimsonness crimsons crimsony crin crinal crinanite crinate crinated crinatory crinch crine crined crinel crines crinet cringe cringed cringeling cringelings cringer cringers cringes cringeworthy cringing cringingly cringingness cringings cringle cringles crinicultural criniculture crinid criniere criniferous crinigerous crining crinion criniparous crinital crinite crinites crinitory crinivorous crink crinkle crinkled crinkleroot crinkleroots crinkles crinklier crinklies crinkliest crinkliness crinklinesses crinkling crinkly crinkum crinogenic crinoid crinoidal crinoidea crinoidean crinoideans crinoids crinolette crinolettes crinoline crinolined crinolines crinose crinosity crinula crinum crinums criobolium crioboly criocephalus crioceratite crioceratitic criolla criollas criollo criollos criophore criosphinges criosphinx criosphinxes crip cripe cripes cripeses crippied crippingly cripple crippled crippledom crippledoms crippleness crippler cripplers cripples crippleware cripplewares crippling cripplingly cripplings cripply crips cris crise crises crisic crisis crisle crisp crispate crispated crispation crispations crispature crispatures crispbread crispbreads crisped crispen crispened crispening crispens crisper crispers crispest crispier crispiest crispily crispin crispine crispiness crispinesses crisping crispins crisply crispness crispnesses crisps crispy criss crissa crissal crisscross crisscrossed crisscrosses crisscrossing crisset crissum crista cristae cristas cristate cristated cristiform cristobalite cristobalites cristy crit critch critchfield criteria criterial criteriia criteriions criteriology criterion criterional criterions criterium criteriums crith crithidial crithmene crithomancies crithomancy criths critic critical criticalities criticality critically criticalness criticalnesses criticaster criticasterism criticasters criticastry criticisable criticise criticised criticiser criticisers criticises criticising criticisingly criticism criticisms criticist criticizable criticize criticized criticizer criticizers criticizes criticizing criticizingly critickin critics criticship criticsm criticule critique critiqued critiques critiquing critism critize critling crits critter critteria critters crittur critturs crius crivens crivetz crivvens crizzel crizzle crizzled crizzling crl cro croak croaked croaker croakers croakier croakiest croakily croakiness croaking croakings croaks croaky croape croat croatia croatian croc crocard croceate croceic crocein croceine croceines croceins croceous crocethia crocetin croceus croche croches crochet crocheted crocheter crocheters crocheteur crocheting crochetings crochets croci crociary crociate crocidolite crocidolites crocin crocine crock crockard crocked crocker crockeries crockery crockeryware crocket crocketed crocketing crockets crocking crocko crockpot crockpots crocks crocky crocodile crocodilean crocodiles crocodilia crocodilian crocodilians crocodiline crocodilite crocodility crocodiloid crocodilus crocodylia crocodylidae crocodylus crocoisite crocoisites crocoite crocoites croconate croconic crocosmia crocosmias crocs crocus crocused crocuses crocuta croft crofter crofterisation crofterise crofterization crofterize crofters crofting croftings croftland crofts croh croighle croiik crois croisad croisade croisard croise croisee croises croisette croissant croissante croissants crojack crojik crojiks croker cromack cromacks cromaltite cromb crombec crombed crombie crombies crombing crombs crome cromed cromes cromfordite croming cromlech cromlechs cromme crommel cromorna cromornas cromorne cromornes cromster cromwell cromwellian cronartium crone croneberry cronel crones cronet cronets cronian cronie cronied cronies cronish cronk cronker cronkest cronkness cronstedtite cronus crony cronying cronyism cronyisms crooch crood croodle croodled croodles croodling crooisite crook crookback crookbacked crookbacks crookbill crookbilled crooked crookedbacked crookeder crookedest crookedly crookedness crookednesses crooken crooker crookeries crookery crookesite crookest crookfingered crookheaded crooking crookkneed crookle crooklegged crookneck crooknecked crooknecks crooknosed crooks crookshouldered crooksided crooksterned crooktoothed crool croon crooned crooner crooners crooning crooningly croonings croons croose croove crooves crop cropbound cropduster cropdusters cropful cropfull cropfuls crophead cropland croplands cropless cropman croppa cropped cropper croppers croppie croppies cropping croppings cropplecrown croppy crops cropshin cropsick cropsickness cropweed croquante croquantes croquet croqueted croqueting croquets croquette croquettes croquignole croquignoles croquis crore crores crosa crosby crose croset crosette croshabell crosier crosiered crosiers croslet crosne crosnes cross crossabilities crossability crossable crossandra crossandras crossarm crossarms crossband crossbanded crossbanding crossbandings crossbands crossbar crossbarred crossbarring crossbars crossbbred crossbeak crossbeam crossbeams crossbearer crossbearers crossbelt crossbench crossbencher crossbenchers crossbenches crossbill crossbills crossbirth crossbirths crossbit crossbite crossbites crossbiting crossbitten crossbolt crossbolted crossbones crossbow crossbower crossbowers crossbowman crossbowmen crossbows crossbred crossbreds crossbreed crossbreeded crossbreeding crossbreedings crossbreeds crossbuck crossbucks crosscheck crosschecked crosschecking crosschecks crossclaim crossclaims crosscourt crosscrosslet crosscurrent crosscurrented crosscurrents crosscut crosscuts crosscutter crosscutting crosscuttings crosse crossed crosser crossers crosses crossest crossette crossettes crossfall crossfalls crossfertilizable crossfield crossfire crossfired crossfires crossfiring crossfish crossfishes crossflow crossflower crossfoot crossgrainedness crosshackle crosshair crosshairs crosshand crosshatch crosshatched crosshatcher crosshatches crosshatching crosshatchings crosshaul crosshauling crosshead crossheading crossheads crossing crossings crossish crossite crossjack crossjacks crosslap crosslegs crosslet crossleted crosslets crossley crosslight crosslighted crosslights crosslike crossline crosslinguistic crosslinguistically crosslink crossly crossmatch crossmatched crossmatches crossmatching crossness crossnesses crossopodia crossopt crossopterygian crossopterygians crossopterygii crossosomataceous crossover crossovers crosspatch crosspatches crosspath crosspiece crosspieces crosspoint crosspoints crosspollinate crosspollination crosspost crossrail crossroad crossroading crossroads crossrow crossruff crossruffed crossruffing crossruffs crosstail crosstalk crosstalks crosstie crosstied crossties crosstoes crosstown crosstrack crosstree crosstrees crosswalk crosswalks crossway crossways crossweb crossweed crosswind crosswinds crosswise crosswiseness crossword crossworder crosswords crosswort crossworts crost crostarie crostini crostinis crotal crotala crotalaria crotalarias crotalic crotalid crotalidae crotaliform crotalin crotaline crotalism crotalisms crotalo crotaloid crotals crotalum crotalums crotalus crotaphic crotaphion crotaphite crotaphitic crotaphytus crotch crotched crotches crotchet crotcheted crotcheteer crotcheteers crotchetier crotchetiest crotchetiness crotchetinesses crotcheting crotchets crotchety crotching crotchless crotchwood crotchy crotesco crotin croton crotonaldehyde crotonate crotonbug crotonic crotonization crotons crotonyl crotonylene crotophaga crotoxin crotoxins crottal crottels crottin crottins crottle crottles crotyl crouch crouchant crouchback crouche crouched croucher crouchers crouches crouchie crouching crouchingly crouchmas crouke crounotherapy croup croupade croupades croupal croupe crouped crouper crouperbush croupers croupes croupier croupiers croupiest croupily croupiness croupinesses crouping croupon croupons croupous croups croupy crouse crousely croustade croustades crout croute croutes crouth crouton croutons crouts crow crowbait crowbar crowbarred crowbarring crowbars crowbell crowberries crowberry crowbill crowboot crowboots crowd crowded crowdedly crowdedness crowdednesses crowder crowders crowdie crowdies crowding crowdle crowds crowdweed crowdy crowed crower crowers crowfeet crowflower crowfoot crowfooted crowfoots crowhop crowhopper crowing crowingly crowkeeper crowkeepers crowl crown crownal crownation crownband crownbeard crowncapping crowned crowner crowners crownet crownets crowning crownings crownland crownless crownlet crownlets crownlike crownling crownmaker crownment crownpiece crowns crownwork crownworks crownwort crows crowshay crowstep crowstepped crowsteps crowstick crowstone crowtoe croy croyden croydon croyl croze crozed crozer crozers crozes crozier croziers crozing crozle crozzle crozzly croûte croûtes croûton croûtons crpe crs crt crts cru crub crubeen crubeens cruce cruces crucethouse cruche crucial cruciality crucially crucialness crucian crucians cruciate cruciated cruciately cruciating cruciation crucible crucibles crucifer cruciferae cruciferous crucifers crucifiable crucificial crucified crucifier crucifiers crucifies crucifige crucifix crucifixes crucifixion crucifixions cruciform cruciformity cruciformly cruciforms crucify crucifyfied crucifyfying crucifying crucigerous crucilly crucily crucis cruciverbal cruciverbalism cruciverbalisms cruciverbalist cruciverbalists cruck crucks crud crudded cruddier cruddiest crudding cruddle cruddled cruddles cruddling cruddy crude crudelity crudely crudeness crudenesses cruder crudes crudest crudites crudities crudity crudités crudle cruds crudwort crudy crue cruel crueler cruelest cruelhearted cruelise cruelize crueller cruellest cruells cruelly cruelness cruelnesses cruels cruelties cruelty cruent cruentate cruentation cruentous crues cruet cruets cruety cruft crufted crufties crufting crufts crufty cruise cruised cruiser cruisers cruiserweight cruiserweights cruises cruiseway cruiseways cruisewear cruisewears cruisie cruisies cruising cruisingly cruisings cruiskeen cruisken cruive cruives crull cruller crullers crum crumb crumbable crumbcloth crumbcloths crumbed crumber crumbers crumbier crumbiest crumbing crumble crumbled crumblement crumbles crumblet crumblier crumblies crumbliest crumbliness crumblinesses crumbling crumblingness crumblings crumbly crumbs crumbses crumbum crumbums crumby crumen crumena crumenal crumenals crumens crumhorn crumhorns crumlet crummable crummack crummacks crummed crummer crummie crummier crummies crummiest crumminess crumminesses crumming crummock crummocks crummy crump crumped crumper crumpest crumpet crumpets crumpier crumpiest crumping crumple crumpled crumpler crumples crumplier crumpliest crumpling crumplings crumply crumps crumpy crumster crunch crunchable crunched cruncher crunchers crunches crunchier crunchiest crunchily crunchiness crunchinesses crunching crunchingly crunchingness crunchweed crunchy crunk crunkle crunkled crunkles crunkling crunodal crunode crunodes crunt cruor cruores cruorin cruors crup cruppen crupper cruppered cruppering cruppers crura crural crureus crurogenital cruroinguinal crurotarsal crus crusade crusaded crusader crusaders crusades crusading crusado crusadoes crusados cruse cruses cruset crusets crush crushability crushable crushableness crushed crusher crushers crushes crushing crushingly crushproof crusian crusians crusie crusies crusile crusilee crusily crust crusta crustacea crustaceal crustacean crustaceans crustaceological crustaceologist crustaceology crustaceorubrin crustaceous crustade crustae crustal crustalogical crustalogist crustalogy crustate crustated crustation crustations crusted crustedly cruster crustie crustier crusties crustiest crustific crustification crustily crustiness crustinesses crusting crustless crustlike crustose crustosis crusts crusty crusy crut crutch crutched crutcher crutches crutching crutchlike cruth crutter cruve cruves crux cruxes cruzado cruzadoes cruzados cruzeiro cruzeiros cruziero cruzieros crwd crwth crwths cry cryable cryaesthesia cryal cryalgesia cryanesthesia crybabies crybaby cryer cryesthesia crying cryingly cryings crymoanesthesia crymodynia crymotherapies crymotherapy cryoanaesthesia cryoanesthesia cryobank cryobanks cryobiological cryobiologically cryobiologies cryobiologist cryobiologists cryobiology cryocautery cryochore cryochoric cryoconite cryoconites cryogen cryogenic cryogenically cryogenics cryogenies cryogens cryogeny cryoglobulin cryoglobulins cryohydrate cryohydric cryolite cryolites cryological cryology cryometer cryometers cryometric cryometry cryonic cryonics cryopathy cryophile cryophilic cryophobia cryophoric cryophorus cryophoruses cryophyllite cryophysics cryophyte cryophytes cryoplankton cryoprecipitate cryoprecipitates cryopreservation cryopreservations cryopreserve cryopreserved cryopreserves cryopreserving cryoprobe cryoprobes cryoprotectant cryoprotectants cryoprotective cryoscope cryoscopes cryoscopic cryoscopies cryoscopy cryosel cryosphere cryospheric cryostase cryostat cryostatic cryostats cryosurgeon cryosurgeons cryosurgeries cryosurgery cryosurgical cryotherapies cryotherapy cryotron cryotrons crypt crypta cryptacanthodes cryptadia cryptaesthesia cryptaesthesias cryptaesthetic cryptal cryptamnesia cryptamnesic cryptanalyses cryptanalysis cryptanalyst cryptanalysts cryptanalytic cryptanalytical cryptanalytically cryptanalytics cryptanalyze cryptanalyzed cryptanalyzes cryptanalyzing cryptarch cryptarchy cryptarithm cryptarithms crypted cryptesthesia cryptesthesias cryptesthetic cryptic cryptical cryptically crypticness crypticnesses crypto cryptoagnostic cryptoanalysis cryptoanalyst cryptoanalytic cryptoanalytically cryptoanalytics cryptobatholithic cryptobiosis cryptobiotic cryptobranch cryptobranchiate cryptobranchidae cryptobranchus cryptocarp cryptocarpic cryptocarpous cryptocephalous cryptocercidae cryptocercus cryptocerous cryptoclastic cryptoclimate cryptoclimatology cryptococcal cryptococci cryptococcic cryptococcoses cryptococcosis cryptococcus cryptocommercial cryptocoryne cryptocrystalline cryptocrystallization cryptodeist cryptodiran cryptodire cryptodirous cryptodouble cryptodynamic cryptogam cryptogame cryptogamia cryptogamian cryptogamic cryptogamical cryptogamies cryptogamist cryptogamists cryptogamous cryptogams cryptogamy cryptogenetic cryptogenic cryptogenous cryptoglioma cryptogram cryptogramma cryptogrammataceae cryptogrammatic cryptogrammatical cryptogrammatist cryptogrammic cryptograms cryptograph cryptographal cryptographer cryptographers cryptographic cryptographical cryptographically cryptographies cryptographist cryptographists cryptographs cryptography cryptoheresy cryptoheretic cryptoinflationist cryptolite cryptolith cryptologic cryptological cryptologies cryptologist cryptologists cryptology cryptolunatic cryptomere cryptomeria cryptomerias cryptomerous cryptometer cryptomnesia cryptomnesias cryptomnesic cryptomonad crypton cryptonema cryptoneurous cryptons cryptonym cryptonymic cryptonymous cryptonyms cryptopapist cryptoperthite cryptophthalmos cryptophyceae cryptophyta cryptophyte cryptophytic cryptopin cryptopine cryptoporticus cryptoprocta cryptoproselyte cryptoproselytism cryptopyic cryptopyrrole cryptorchid cryptorchidism cryptorchidisms cryptorchids cryptorchidy cryptorchis cryptorchism cryptorchisms cryptorrhesis cryptorrhetic cryptos cryptoscope cryptoscopy cryptosplenetic cryptosporidia cryptosporidioses cryptosporidiosis cryptosporidium cryptostoma cryptostomate cryptostome cryptotermes cryptotis cryptous cryptovalence cryptovalency cryptovolcanic cryptovolcanism cryptoxanthin cryptozoic cryptozoite cryptozoites cryptozonate cryptozoological cryptozoologies cryptozoologist cryptozoologists cryptozoology cryptozygosity cryptozygous cryptozygy crypts cryst crystal crystaled crystaling crystalitic crystalize crystalized crystalizes crystalizing crystall crystalled crystallic crystalliferous crystalliform crystalligerous crystallike crystallin crystalline crystallines crystalling crystallinities crystallinity crystallisabilities crystallisability crystallisable crystallisation crystallisations crystallise crystallised crystalliser crystallisers crystallises crystallising crystallite crystallites crystallitic crystallitis crystallitises crystallizabilities crystallizability crystallizable crystallization crystallizations crystallize crystallized crystallizer crystallizers crystallizes crystallizing crystalloblastic crystallochemical crystallochemistry crystallod crystallogeneses crystallogenesis crystallogenetic crystallogenic crystallogenical crystallogeny crystallogram crystallograph crystallographer crystallographers crystallographic crystallographical crystallographically crystallographies crystallography crystallogy crystalloid crystalloidal crystalloids crystallology crystalloluminescence crystallomagnetic crystallomancies crystallomancy crystallometric crystallometry crystallophobia crystallophyllian crystallose crystallurgy crystals crystalwort cryste crystic crystograph crystoleum crystosphene crzette crèche crèches crémaillère crémaillères cs csardas csardases csc csch csect csects csi csk csmp csnet csp cst csw csárdás csárdáses ct cte ctelette ctene ctenes ctenidia ctenidial ctenidium cteniform ctenii cteninidia ctenizid ctenizidae ctenocephalides ctenocyst ctenodactyl ctenodont ctenoid ctenoidean ctenoidian ctenolium ctenophora ctenophoral ctenophoran ctenophorans ctenophore ctenophores ctenophoric ctenophorous ctenostomatous ctenostome ctetology ctf ctg ctge ctimo ctn cto ctr ctrl cts cu cuadra cuadrilla cuadrillas cuadrillero cuamuchil cuapinole cuarenta cuarta cuartel cuarteron cuartilla cuartillo cuartino cuarto cuatro cuatros cub cuba cubage cubages cubalaya cuban cubane cubangle cubanite cubans cubas cubation cubatory cubature cubatures cubbed cubbies cubbing cubbings cubbish cubbishly cubbishness cubby cubbyhole cubbyholes cubbyhouse cubbyu cubbyyew cubdom cube cubeb cubebs cubed cubehead cubelet cubelike cuber cubera cubers cubes cubhood cubhoods cubi cubic cubica cubical cubically cubicalness cubicalnesses cubicas cubicities cubicity cubicle cubicles cubicly cubicone cubicontravariant cubicovariant cubics cubicula cubicular cubiculary cubiculo cubiculum cubiform cubing cubinged cubinging cubings cubism cubisms cubist cubistic cubistically cubists cubit cubital cubitale cubitalia cubited cubiti cubitiere cubito cubitocarpal cubitocutaneous cubitodigital cubitometacarpal cubitopalmar cubitoplantar cubitoradial cubits cubitus cubituses cubla cubless cubmaster cubocalcaneal cuboctahedron cubocube cubocuneiform cubododecahedral cuboid cuboidal cuboides cuboids cubomancy cubomedusan cubometatarsal cubonavicular cubs cubti cuca cucaracha cuchia cuchifrito cuchifritos cuck cuckhold cucking cuckold cuckolded cuckolding cuckoldise cuckoldised cuckoldises cuckoldising cuckoldize cuckoldized cuckoldizes cuckoldizing cuckoldly cuckoldom cuckoldoms cuckoldries cuckoldry cuckolds cuckoldy cuckoo cuckooed cuckooflower cuckooflowers cuckooing cuckoomaid cuckoomaiden cuckoomate cuckoopint cuckoopintle cuckoopints cuckoos cuckquean cuckstool cucoline cucularis cucule cuculidae cuculiform cuculiformes cuculine cuculla cucullaris cucullate cucullated cucullately cuculle cuculliform cucullus cuculoid cuculus cucumber cucumbers cucumiform cucumis cucupha cucurb cucurbit cucurbita cucurbitaceae cucurbitaceous cucurbital cucurbite cucurbitine cucurbits cucuy cucuyo cud cuda cudava cudbear cudbears cuddeehih cuddeehihs cudden cuddens cuddie cuddies cuddin cuddins cuddle cuddleable cuddled cuddler cuddlers cuddles cuddlesome cuddlier cuddliest cuddliness cuddling cuddly cuddy cuddyhole cudeigh cudgel cudgeled cudgeler cudgelers cudgeling cudgelings cudgelled cudgeller cudgellers cudgelling cudgellings cudgels cudgerie cuds cudweed cudweeds cudwort cue cueball cueca cuecas cued cueing cueist cueists cueman cuemanship cuemen cuerda cuerpo cues cuesta cuestas cuff cuffed cuffer cuffin cuffing cuffins cuffle cuffled cuffles cuffless cuffling cufflink cufflinks cuffo cuffs cuffuffle cuffuffled cuffuffles cuffuffling cuffy cuffyism cufic cuggermugger cuiajo cuiajos cuichunchulli cuidado cuiejo cuiejos cuif cuifs cuinage cuinfo cuing cuir cuirass cuirassed cuirasses cuirassier cuirassiers cuirassing cuirie cuish cuishes cuisinary cuisine cuisines cuisinier cuisiniers cuissard cuissart cuisse cuissen cuisser cuissers cuisses cuisten cuit cuiter cuitered cuitering cuiters cuitikin cuitikins cuitle cuitled cuitling cuits cuittikin cuittle cuittled cuittles cuittling cuj cuke cukes cul culation culbert culbut culbute culbuter culch culches culchie culchies culcita culdee culdoscope culdoscopy culebra culerage culet culets culett culeus culex culexes culgee culices culicid culicidae culicidal culicide culicids culiciform culicifugal culicifuge culicine culicines culilawan culinarian culinarians culinarily culinary cull culla cullage cullas cullay cullays culled cullender cullenders culler cullers cullet cullets cullibility cullible cullied cullies culling cullings cullion cullionly cullionry cullions cullis cullisance cullises culls cully cullying cullyism cullyisms culm culmed culmen culmens culmicolous culmiferous culmigenous culminal culminant culminatation culminatations culminate culminated culminates culminating culmination culminations culminative culming culms culmy culot culotte culottes culottic culottism culp culpa culpabilis culpabilities culpability culpable culpableness culpablenesses culpably culpae culpas culpate culpatory culpeo culpon culpose culprit culprits culrage culsdesac cult cultch cultches cultellation cultelli cultellus culter culteranismo culters culti cultic culticolour cultigen cultigens cultirostral cultish cultishly cultishness cultishnesses cultism cultismo cultisms cultist cultistic cultists cultivabilities cultivability cultivable cultivably cultivar cultivars cultivatability cultivatable cultivatation cultivatations cultivate cultivated cultivates cultivating cultivation cultivations cultivative cultivator cultivators cultive cultlike cultrate cultrated cultriform cultrirostral cults culttelli cultual culturable cultural culturalist culturally culturati culture cultured cultureless cultures culturine culturing culturisation culturise culturist culturists culturization culturize culturological culturologically culturologist culturology cultus cultuses culver culverfoot culverhouse culverin culverineer culverineers culveriner culverins culverkey culverkeys culvers culvert culvertage culvertages culvertailed culverts culverwort cum cumacean cumaceous cumal cumaldehyde cumaphyte cumaphytic cumaphytism cumara cumarin cumarins cumarone cumaru cumay cumbent cumber cumberbund cumberbunds cumbered cumberer cumberers cumbering cumberland cumberlandite cumberless cumberment cumberments cumbers cumbersome cumbersomely cumbersomeness cumbersomenesses cumberworld cumbha cumbia cumbias cumble cumbly cumbraite cumbrance cumbrances cumbre cumbrous cumbrously cumbrousness cumbrousnesses cumbu cumec cumecs cumene cumengite cumenyl cumflutter cumfrey cumhal cumic cumidin cumidine cumin cuminal cuminic cuminoin cuminol cuminole cumins cuminseed cuminum cuminyl cumly cummer cummerbund cummerbunds cummers cummin cumming cummingtonite cummingtonites cummins cummock cumol cump cumquat cumquats cums cumsha cumshaw cumshaws cumulant cumular cumulate cumulated cumulately cumulates cumulating cumulation cumulations cumulatist cumulative cumulatively cumulativeness cumulativenesses cumulene cumulet cumuli cumuliform cumulite cumulocirri cumulocirrus cumulonimbi cumulonimbus cumulonimbuses cumulophyric cumulose cumulostrati cumulostratus cumulous cumulus cumyl cun cunabula cunabular cunaxa cunctation cunctations cunctatious cunctative cunctator cunctators cunctatorship cunctatory cunctatury cunctipotent cund cundeamor cundies cundite cundum cundums cundurango cundy cunea cuneal cuneate cuneated cuneately cuneatic cuneator cunei cuneiform cuneiformist cuneiforms cunenei cuneocuboid cuneonavicular cuneoscaphoid cunette cunettes cuneus cungeboi cungevoi cunicular cuniculi cuniculus cuniform cuniforms cunila cunili cunit cunjah cunjer cunjevoi cunjevois cunner cunners cunni cunnilinctus cunnilinctuses cunnilingual cunnilinguism cunnilingus cunnilinguses cunning cunningaire cunninger cunningest cunningly cunningness cunningnesses cunnings cunny cunoniaceae cunoniaceous cunt cunts cunye cunyie cunzie cuon cuorin cup cupay cupbearer cupbearers cupboard cupboarded cupboarding cupboards cupcake cupcakes cupel cupelation cupeled cupeler cupelers cupeling cupellation cupellations cupelled cupeller cupellers cupelling cupels cupflower cupful cupfulfuls cupfuls cupgall cupgalls cuphead cupheads cupholder cupid cupidinous cupidinously cupidities cupidity cupidon cupidone cupids cupiuba cupless cuplike cupmaker cupmaking cupman cupmate cupmen cupola cupolaed cupolaing cupolaman cupolar cupolas cupolated cuppa cuppas cupped cuppen cupper cuppers cuppier cuppiest cuppin cupping cuppings cuppy cuprammonia cuprammonium cuprammoniums cuprate cuprein cupreine cuprene cupreous cupressaceae cupressineous cupressus cupric cupride cupriferous cuprite cuprites cuproammonium cuprobismutite cuprocyanide cuprodescloizite cuproid cuproiodargyrite cupromanganese cupronickel cupronickels cuproplumbite cuproscheelite cuprose cuprosilicon cuprotungstite cuprous cuprum cuprums cups cupseed cupsful cupstone cupula cupulae cupular cupulate cupule cupules cupuliferous cupuliform cuquenan cur cura curabilities curability curable curableness curablenesses curably curacao curacaos curace curacies curacoa curacoas curacy curage curagh curaghs curandera curanderas curandero curanderos curara curaras curare curares curari curarine curarines curaris curarise curarised curarises curarising curarization curarizations curarize curarized curarizes curarizing curas curassow curassows curat curatage curate curated curatel curates curateship curateships curatess curatial curatic curatical curating curation curatise curative curatively curativeness curativenesses curatives curatize curatolatry curator curatorial curatorium curators curatorship curatorships curatory curatrices curatrix curatrixes curats curaçao curaçaos curaçoa curaçoas curb curbable curbash curbed curber curbers curbing curbings curbless curblike curbline curbs curbside curbsides curbstone curbstoner curbstones curby curcas curch curchef curches curchy curcuddoch curculio curculionid curculionidae curculionist curculios curcuma curcumas curcumin curcumine curcumines curcumins curd curded curdier curdiest curdiness curdinesses curding curdle curdled curdler curdlers curdles curdling curdly curdoo curds curdwort curdy cure cured cureless curelessly curelessness curemaster curer curers cures curet curets curettage curettages curette curetted curettement curettements curettes curetting curf curfew curfewed curfewing curfews curfs curfuffle curfuffled curfuffles curfuffling curia curiae curiage curial curialism curialisms curialist curialistic curialists curialities curiality curiam curiara curias curiate curiboca curie curiegram curies curiescopy curiet curietherapies curietherapy curiets curin curine curing curio curiolofic curiologic curiological curiologically curiologics curiology curiomaniac curios curiosa curiosi curiosities curiosity curioso curiosos curious curiouser curiousest curiously curiousness curiousnesses curite curites curium curiums curl curled curledly curledness curler curlers curlew curlewberry curlews curlicue curlicued curlicues curlicuing curlier curliest curliewurlie curliewurlies curliewurly curlike curlily curliness curlinesses curling curlingly curlings curlpaper curlpapers curls curly curlycue curlycues curlyhead curlyheads curlylocks curmudgeon curmudgeonery curmudgeonish curmudgeonliness curmudgeonlinesses curmudgeonly curmudgeonries curmudgeonry curmudgeons curmurging curmurring curmurrings curn curnaptious curney curneys curnie curnier curnies curniest curnock curns curny curpel curpels curpin curple curr currach currachs currack curragh curraghs currajong currajongs curran currance currane currans currant currantier currantiest currants currantworm curranty curratow currawang currawong currawongs curred currencies currency current currently currentness currentnesses currents currentwise curricla curricle curricled curricles curricling curricula curricular curricularisation curricularise curricularization curricularize curriculum curriculums currie curried currier currieries curriers curriery curries curriing currijong curring currish currishly currishness currishnesses currock currs curry currycomb currycombed currycombing currycombs curryfavel curryfavour currying curryings curs cursal cursaro curse cursed curseder cursedest cursedly cursedness cursednesses curselarie cursement cursen cursenary curser cursers curses curship cursi cursillo cursing cursings cursitate cursitor cursitors cursitory cursive cursively cursiveness cursivenesses cursives cursor cursorary cursored cursores cursorial cursorily cursoriness cursorinesses cursoring cursorious cursorius cursors cursory curst curstful curstfully curstly curstness curstnesses cursus curt curtail curtailed curtailedly curtailer curtailers curtailing curtailment curtailments curtails curtain curtained curtaining curtainless curtains curtainwise curtal curtalax curtalaxe curtalaxes curtals curtana curtanas curtate curtation curtations curtaxe curtaxes curtays curted curtein curtelace curteous curter curtesies curtest curtesy curtilage curtilages curtlax curtly curtness curtnesses curtsey curtseyed curtseying curtseys curtsied curtsies curtsy curtsying curua curuba curucucu curucui curule curupay curupays curupey cururo cururos curvaceous curvaceously curvaceousness curvaceousnesses curvacious curval curvant curvate curvated curvation curvations curvative curvature curvatures curve curveball curveballed curveballing curveballs curved curvedly curvedness curver curves curvesome curvesomeness curvet curveted curveting curvets curvette curvetted curvetting curvey curvicaudate curvicostate curvidentate curvier curviest curvifoliate curviform curvilinead curvilineal curvilinear curvilinearities curvilinearity curvilinearly curvimeter curvinervate curvinerved curviness curving curvirostral curviserial curvital curvities curvity curvle curvograph curvometer curvous curvulate curvy curwhibble curwillet cury curying cuscohygrin cuscohygrine cusconin cusconine cuscus cuscuses cuscuta cuscutaceous cusec cusecs cuselite cush cushag cushat cushats cushaw cushaws cushes cushewbird cushie cushier cushiest cushily cushiness cushinesses cushing cushion cushioncraft cushioned cushionet cushionets cushionflower cushioniness cushioning cushionless cushionlike cushions cushiony cushitic cushlamochree cushy cusie cusinero cusk cusks cusp cuspal cusparia cusparidine cusparine cuspate cuspated cusped cuspid cuspidal cuspidate cuspidated cuspidation cuspidations cuspides cuspidine cuspidor cuspidore cuspidores cuspidors cuspids cusping cuspis cusps cuspule cuss cussed cussedly cussedness cussednesses cusser cussers cusses cussing cusso cussos cussword cusswords cust custard custards custardy custerite custock custocks custode custodee custodes custodia custodial custodiam custodian custodians custodianship custodianships custodier custodiers custodies custody custom customable customableness customably customance customaries customarily customariness customarinesses customary customed customer customers customhouse customhouses customing customisable customisation customisations customise customised customiser customisers customises customising customizable customization customizations customize customized customizer customizers customizes customizing customly customs customshouse customshouses custos custrel custrels custron custroun custumal custumals custumaries custumary cut cutabilities cutability cutaneal cutaneous cutaneously cutaway cutaways cutback cutbacks cutbank cutbanks cutch cutcha cutcher cutcheries cutcherries cutcherry cutchery cutches cutdown cutdowns cute cutely cuteness cutenesses cuter cuterebra cuterebridae cutes cutesier cutesiest cutesiness cutesinesses cutest cutesy cutey cuteys cutglass cutgrass cutgrasses cutheal cuticle cuticles cuticolor cuticolour cuticula cuticulae cuticular cuticularization cuticularize cuticulate cutidure cutiduris cutie cuties cutification cutify cutigeral cutikin cutikins cutin cutinisation cutinisations cutinise cutinised cutinises cutinising cutinization cutinizations cutinize cutinized cutinizes cutinizing cutins cutireaction cutis cutisation cutisector cutises cutitis cutization cutlash cutlass cutlasses cutlassfish cutlassfishes cutler cutleress cutleriaceous cutleries cutlers cutlery cutlet cutlets cutline cutlines cutling cutlings cutlips cutocellulose cutoff cutoffs cutose cutout cutouts cutover cutovers cutpurse cutpurses cuts cutset cuttable cuttage cuttages cuttail cuttanee cutted cutter cutterhead cutterman cutters cutthroat cutthroats cuttier cutties cuttiest cuttikin cutting cuttingly cuttingness cuttings cuttle cuttlebone cuttlebones cuttled cuttlefish cuttlefishes cuttler cuttles cuttling cutto cuttoe cuttoes cuttoo cuttoos cutty cuttyhunk cutup cutups cutwal cutwater cutwaters cutweed cutwork cutworks cutworm cutworms cuvae cuvage cuve cuvee cuvees cuvette cuvettes cuvies cuvy cuvée cuvées cuya cuyas cuz cuzceno cuzzes cv cva cw cwierc cwm cwms cwo cwrite cwt cy cyaathia cyamelid cyamelide cyamid cyamoid cyamopsis cyamus cyan cyanacetic cyanamid cyanamide cyanamides cyanamids cyananthrol cyanate cyanates cyanaurate cyanauric cyanbenzyl cyancarbonic cyanea cyanean cyanemia cyaneous cyanephidrosis cyanformate cyanformic cyanhidrosis cyanhydrate cyanhydric cyanhydrin cyanic cyanicide cyanid cyanidation cyanide cyanided cyanides cyanidin cyanidine cyaniding cyanidings cyanidrosis cyanids cyanimide cyanin cyanine cyanines cyanins cyanise cyanised cyanises cyanising cyanite cyanites cyanitic cyanize cyanized cyanizes cyanizing cyanmethemoglobin cyano cyanoacetate cyanoacetic cyanoacetylene cyanoacetylenes cyanoacrylate cyanoacrylates cyanoaurate cyanoauric cyanobacteria cyanobacterial cyanobacterium cyanobenzene cyanocarbonic cyanochlorous cyanochroia cyanochroic cyanocitta cyanocobalamin cyanocobalamine cyanocobalamines cyanocobalamins cyanocrystallin cyanoderma cyanoethylate cyanoethylated cyanoethylates cyanoethylating cyanoethylation cyanoethylations cyanogen cyanogenamide cyanogeneses cyanogenesis cyanogenetic cyanogenic cyanogens cyanoguanidine cyanohermidin cyanohydrin cyanohydrins cyanol cyanole cyanomaclurin cyanometer cyanometers cyanomethaemoglobin cyanomethemoglobin cyanometric cyanometries cyanometry cyanopathic cyanopathy cyanophil cyanophile cyanophilous cyanophoric cyanophose cyanophyceae cyanophycean cyanophyceous cyanophycin cyanophyta cyanophyte cyanophytes cyanopia cyanoplastid cyanoplatinite cyanoplatinous cyanopsia cyanose cyanosed cyanoses cyanosis cyanosite cyanotic cyanotrichite cyanotype cyanotypes cyans cyanuramide cyanurate cyanuret cyanurets cyanuric cyanurin cyanurine cyanus cyaphenine cyath cyathea cyatheaceae cyatheaceous cyathi cyathia cyathiform cyathium cyathiums cyathoid cyatholith cyathophylline cyathophylloid cyathos cyathozooid cyathus cyathuses cybele cyberart cybercafe cybercafes cybercafé cybercafés cybercultural cyberculture cybernate cybernated cybernates cybernating cybernation cybernations cybernaut cybernetic cybernetical cybernetically cybernetician cyberneticians cyberneticist cyberneticists cybernetics cybernion cyberpet cyberpets cyberphobia cyberphobias cyberpunk cyberpunks cybersex cybersexes cyberspace cyberspaces cybersquat cybersquats cybersquatted cybersquatter cybersquatters cybersquatting cyborg cyborgs cybrid cybrids cyc cycad cycadaceae cycadaceous cycadales cycadean cycadeoid cycadeoids cycadeous cycadiform cycadite cycadlike cycadofilicale cycadofilicales cycadofilicinean cycadophyta cycadophyte cycadophytes cycadophytina cycadopsida cycads cycas cycases cycasin cycasins cycl cyclable cyclades cyclamate cyclamates cyclamen cyclamens cyclamin cyclamine cyclammonium cyclandelate cyclandelates cyclane cyclanthaceous cyclar cyclarthrodial cyclarthrosis cyclarthrsis cyclas cyclase cyclases cyclazocine cyclazocines cycle cyclecar cyclecars cycled cycledom cyclene cycler cycleries cyclers cyclery cycles cyclesmith cycleway cycleways cyclian cyclic cyclical cyclicalities cyclicality cyclically cyclicalness cyclicals cyclicism cyclicisms cyclicities cyclicity cyclicly cyclide cyclin cyclindroid cycling cyclings cyclins cycliophora cyclisation cyclisations cyclise cyclised cyclises cyclising cyclism cyclist cyclistic cyclists cyclitic cyclitis cyclitol cyclitols cyclization cyclizations cyclize cyclized cyclizes cyclizine cyclizines cyclizing cyclo cycloacetylene cycloaddition cycloadditions cycloaliphatic cycloalkane cyclobarbitone cyclobarbitones cyclobutane cyclocephaly cyclocoelic cyclocoelous cyclode cyclodextrin cyclodextrins cyclodialyses cyclodialysis cyclodiene cyclodienes cyclodiolefin cyclodiolefine cycloganoid cyclogeneses cyclogenesis cyclogram cyclograph cyclographer cyclographic cyclographs cycloheptane cycloheptanone cyclohexadienyl cyclohexane cyclohexanes cyclohexanol cyclohexanone cyclohexanones cyclohexatriene cyclohexene cycloheximide cycloheximides cyclohexyl cyclohexylamine cyclohexylamines cycloid cycloidal cycloidally cycloidean cycloidian cycloidians cycloidotrope cycloids cyclolith cycloliths cycloloma cyclolysis cyclomania cyclometer cyclometers cyclometric cyclometrical cyclometries cyclometry cyclomyarian cyclonal cyclone cyclones cyclonic cyclonical cyclonically cyclonist cyclonite cyclonites cyclonologist cyclonology cyclonometer cyclonoscope cycloolefin cycloolefine cycloolefinic cycloolefins cyclop cyclopaedia cyclopaedias cyclopaedic cyclopaedically cyclopaedist cycloparaffin cycloparaffins cyclope cyclopean cyclopedia cyclopedias cyclopedic cyclopedical cyclopedically cyclopedist cyclopedists cyclopentadiene cyclopentane cyclopentanes cyclopentanone cyclopentene cyclopentolate cyclopentolates cyclopes cyclophoria cyclophoric cyclophorus cyclophosphamide cyclophosphamides cyclophrenia cyclopia cyclopian cyclopic cyclopism cyclopite cycloplegia cycloplegias cycloplegic cyclopoid cyclopropane cyclopropanes cyclops cyclopses cyclopteridae cyclopteroid cyclopterous cyclopterus cyclopy cyclorama cycloramas cycloramic cyclorrhaphous cyclos cycloscope cyclose cycloserine cycloserines cycloses cyclosilicate cyclosis cyclosorus cyclospermous cyclospondylic cyclospondylous cyclosporeae cyclosporin cyclosporine cyclosporines cyclosporins cyclosporous cyclostomata cyclostomate cyclostomatous cyclostome cyclostomes cyclostomous cyclostrophic cyclostylar cyclostyle cyclostyled cyclostyles cyclostyling cyclothem cyclothure cyclothurine cyclothyme cyclothymes cyclothymia cyclothymiac cyclothymias cyclothymic cyclothymics cyclotome cyclotomic cyclotomies cyclotomy cyclotrimethylenetrinitramine cyclotron cyclotrons cyclovertebral cyclus cycluses cycnoches cydippe cydippea cydippian cydippid cydippida cydippidea cydon cydonia cydonium cyeses cyesiology cyesis cyetic cygneous cygnet cygnets cygnine cygnus cyke cyl cylices cylinder cylindered cylinderer cylindering cylinderlike cylinders cylindraceous cylindrarthrosis cylindrelloid cylindrenchema cylindrenchyma cylindric cylindrical cylindricalities cylindricality cylindrically cylindricalness cylindricities cylindricity cylindricule cylindriform cylindrite cylindrites cylindrocellular cylindrocephalic cylindroconical cylindroconoidal cylindrocylindric cylindrodendrite cylindrograph cylindroid cylindroidal cylindroids cylindroma cylindromata cylindromatous cylindrometric cylindroogival cylindruria cylix cylloses cyllosis cyma cymae cymagraph cymagraphs cymaise cymaphen cymaphyte cymaphytic cymaphytism cymar cymarin cymarose cymars cymas cymatia cymatics cymatiidae cymation cymatium cymatiums cymba cymbaeform cymbal cymbaled cymbaleer cymbaleers cymbaler cymbalers cymbaline cymbalist cymbalists cymballed cymballike cymballing cymbalo cymbaloes cymbalom cymbaloms cymbalon cymbalos cymbals cymbate cymbel cymbid cymbidia cymbidium cymbidiums cymbiform cymblin cymbling cymblings cymbocephalic cymbocephalous cymbocephaly cyme cymelet cymene cymenes cymes cymiferous cymlin cymling cymlings cymlins cymobotryose cymogene cymogenes cymograph cymographic cymographs cymoid cymol cymols cymometer cymophane cymophanes cymophanous cymophenol cymophobia cymoscope cymose cymosely cymotrichies cymotrichous cymotrichy cymous cymric cymrite cymru cymry cymtia cymule cymulose cynanche cynanches cynancum cynanthropy cynara cynaraceous cynarctomachy cynareous cynaroid cynebot cynegetic cynegetics cynegild cynghanedd cynghanedds cynhyena cyniatria cyniatrics cynic cynical cynically cynicalness cynicalnesses cynicism cynicisms cynicist cynics cynipid cynipidae cynipidous cynipids cynipoid cynips cynism cynocephalic cynocephalidae cynocephalous cynocephalus cynoclept cynocrambaceous cynodictis cynodon cynodont cynodontia cynogenealogist cynogenealogy cynoglossidae cynoglossum cynography cynoid cynology cynomolgi cynomolgus cynomoriaceous cynomorphic cynomorphous cynomys cynophile cynophilia cynophilias cynophilic cynophilist cynophilists cynophobe cynophobia cynophobias cynopithecoid cynopodous cynopterus cynorrhoda cynorrhodon cynoscephalae cynoscion cynosural cynosure cynosures cynotherapy cynthia cyon cyp cyperaceae cyperaceous cyperus cyphella cyphellae cyphellate cypher cyphomandra cyphonautes cyphonism cyphosis cypraea cypraeid cypraeidae cypraeiform cypraeoid cypre cypres cypreses cypress cypressed cypresses cypressroot cyprian cyprians cyprid cyprides cypridinoid cyprids cyprine cyprinid cyprinidae cyprinids cypriniform cypriniformes cyprinin cyprinine cyprinodont cyprinodontidae cyprinodontoid cyprinodonts cyprinoid cyprinoidean cyprinoids cyprinus cypriot cypriote cypriotes cypriots cypripedia cypripedin cypripedium cypripediums cypris cyproheptadine cyproheptadines cyproterone cyproterones cyprus cypruses cypsela cypselae cypseliform cypseline cypseloid cypselomorph cypselomorphic cypselous cyptozoic cyrenaic cyrilla cyrillaceous cyrilliaceae cyrillic cyriologic cyriological cyrtoceracone cyrtoceratite cyrtoceratitic cyrtograph cyrtolite cyrtometer cyrtomium cyrtopia cyrtosis cyrtostyle cyrus cyst cystadenoma cystadenosarcoma cystal cystalgia cystamine cystaster cystathionine cystatrophia cystatrophy cysteamine cysteamines cystectasia cystectasy cystectomies cystectomy cysted cystein cysteine cysteines cysteinic cysteins cystelcosis cystenchyma cystenchymatous cystenchyme cystencyte cysterethism cystic cysticarpic cysticarpium cysticercerci cysticerci cysticercoid cysticercoidal cysticercoids cysticercoses cysticercosis cysticercus cysticerus cysticle cysticolous cystid cystidean cystideans cystidia cystidicolous cystidium cystidiums cystids cystiferous cystiform cystigerous cystignathine cystin cystine cystines cystinoses cystinosis cystinuria cystinurias cystirrhea cystis cystitides cystitis cystitises cystitome cystoadenoma cystocarcinoma cystocarp cystocarpic cystocarps cystocele cystoceles cystocolostomy cystocyte cystodynia cystoelytroplasty cystoenterocele cystoepiplocele cystoepithelioma cystofibroma cystoflagellate cystogenesis cystogenous cystogram cystoid cystoidean cystoids cystolith cystolithectomy cystolithiases cystolithiasis cystolithic cystoliths cystoma cystomas cystomata cystomatous cystometer cystomorphous cystomyoma cystomyxoma cystonectous cystonephrosis cystoneuralgia cystoparalysis cystophora cystophore cystophotography cystophthisis cystoplasty cystoplegia cystoproctostomy cystopteris cystoptosis cystopyelitis cystopyelography cystopyelonephritis cystoradiography cystorrhagia cystorrhaphy cystorrhea cystosarcoma cystoschisis cystoscope cystoscopes cystoscopic cystoscopies cystoscopy cystose cystospasm cystospastic cystospore cystostomies cystostomy cystosyrinx cystotome cystotomies cystotomy cystotrachelotomy cystoureteritis cystourethritis cystourethrography cystous cysts cytase cytases cytasic cytaster cytasters cyte cytes cythera cytherea cytherean Cython cytidine cytidines cytinaceous cytioderm cytioderma cytisi cytisine cytisines cytisus cytitis cytoanalyzer cytoarchitectonic cytoarchitectonics cytoarchitectural cytoarchitecturally cytoarchitecture cytoblast cytoblastema cytoblastemal cytoblastematous cytoblastemic cytoblastemous cytocentrum cytochalasin cytochalasins cytochemical cytochemistries cytochemistry cytochrome cytochromes cytochylema cytocide cytoclasis cytoclastic cytococci cytococcus cytocyst cytode cytodendrite cytoderm cytodes cytodiagnoses cytodiagnosis cytodieresis cytodieretic cytodifferentiation cytodifferentiations cytoecology cytogamy cytogene cytogeneses cytogenesis cytogenetic cytogenetical cytogenetically cytogeneticist cytogeneticists cytogenetics cytogenic cytogenies cytogenous cytogeny cytoglobin cytoglobulin cytohyaloplasm cytoid cytokine cytokines cytokineses cytokinesis cytokinetic cytokinin cytokinins cytol cytolist cytologic cytological cytologically cytologies cytologist cytologists cytology cytolymph cytolyses cytolysin cytolysins cytolysis cytolytic cytoma cytome cytomegalic cytomegalovirus cytomegaloviruses cytomembrane cytomembranes cytomere cytometer cytometers cytometric cytometries cytometry cytomicrosome cytomitome cytomorphological cytomorphology cytomorphosis cyton cytone cytons cytopahgous cytoparaplastin cytopathic cytopathogenic cytopathogenicities cytopathogenicity cytopathologic cytopathological cytopathologically cytopathologies cytopathology cytopenia cytopenias cytophagic cytophagous cytophagy cytopharynges cytopharynx cytopharynxes cytophil cytophilic cytophotometer cytophotometers cytophotometric cytophotometrically cytophotometries cytophotometry cytophysics cytophysiology cytoplasm cytoplasmic cytoplasmically cytoplasms cytoplast cytoplastic cytoplasts cytoproct cytopyge cytoreticulum cytoryctes cytosin cytosine cytosines cytoskeletal cytoskeleton cytoskeletons cytosol cytosolic cytosols cytosome cytosomes cytospectrophotometry cytost cytostatic cytostatically cytostatics cytostomal cytostome cytostroma cytostromatic cytotactic cytotaxis cytotaxonomic cytotaxonomically cytotaxonomies cytotaxonomist cytotaxonomists cytotaxonomy cytotechnologies cytotechnologist cytotechnologists cytotechnology cytotoxic cytotoxicities cytotoxicity cytotoxin cytotoxins cytotrophoblast cytotrophoblastic cytotrophy cytotropic cytotropism cytotropisms cytovirin cytozoa cytozoic cytozoon cytozymase cytozyme cytozzoa cytula cytulae cyul cywydd cyzicene czapka czapkas czar czardas czardases czardom czardoms czarevich czareviches czarevitch czarevitches czarevna czarevnas czarian czaric czarina czarinas czarinian czarish czarism czarisms czarist czaristic czarists czaritsa czaritsas czaritza czaritzas czarowitch czarowitz czars czarship czech czechoslavakian czechoslovak czechoslovakia czechoslovakian czechoslovakians czechoslovaks czechs czigany córdoba córdobas côtelette côtelettes d da daal daalder daals dab daba dabb dabba dabbed dabber dabbers dabbing dabbities dabbity dabble dabbled dabbler dabblers dabbles dabbling dabblingly dabblingness dabblings dabby dabchick dabchicks dablet daboecia daboia daboias daboota dabootas daboucha daboya dabs dabster dabsters dabuh dacca dace dacelo dacelonine daces dacha dachas dachau dachs dachshound dachshund dachshunde dachshunds dachsie dacite dacites dacitic dacker dackered dackering dackers daclassa dacninae dacoit dacoitage dacoitages dacoited dacoities dacoiting dacoits dacoity dacolleta dacolletage dacor dacquoise dacquoises dacron dacrons dacrya dacryadenalgia dacryadenitis dacryagogue dacrycarpus dacrycystalgia dacryd dacrydium dacryelcosis dacrymyces dacrymycetaceae dacryoadenalgia dacryoadenitis dacryoblenorrhea dacryocele dacryocyst dacryocystalgia dacryocystitis dacryocystoblennorrhea dacryocystocele dacryocystoptosis dacryocystorhinostomy dacryocystosyringotomy dacryocystotome dacryocystotomy dacryohelcosis dacryohemorrhea dacryolin dacryolite dacryolith dacryolithiasis dacryoma dacryon dacryops dacryopyorrhea dacryopyosis dacryorrhea dacryosolenitis dacryostenosis dacryosyrinx dacryuria dactyl dactylar dactylate dactyli dactylic dactylically dactylics dactylioglyph dactylioglyphic dactylioglyphist dactylioglyphtic dactylioglyphy dactyliographer dactyliographic dactyliographies dactyliography dactyliologies dactyliology dactyliomancies dactyliomancy dactylion dactyliotheca dactylis dactylist dactylists dactylitic dactylitis dactyloctenium dactylogram dactylograms dactylograph dactylographer dactylographic dactylographies dactylography dactyloid dactylologies dactylology dactylomegaly dactylonomy dactylopatagium dactylopiidae dactylopius dactylopodite dactylopore dactylopteridae dactylopterus dactylorhiza dactyloscopic dactyloscopidae dactyloscopies dactyloscopy dactylose dactylosternal dactylosymphysis dactylotheca dactylous dactylozooid dactyls dactylus dacyorrhea dad dada dadaism dadaisms dadaist dadaistic dadaistically dadaists dadap dadas dadburned dadded dadder daddies dadding daddle daddled daddles daddling daddock daddocks daddocky daddums daddy daddyish daddynut dade dadenhudd dadgum dading dado dadoed dadoes dadoing dados dadouchos dads daduchus dae daedal daedaleous daedalian daedalic daedalist daedaloid daedalous daedalus daeing daekon daemon daemones daemonian daemonic daemonies daemonistic daemonology daemons daemonurgist daemonurgy daemony daer daes daeva daff daffadillies daffadilly daffadowndillies daffadowndilly daffed daffery daffier daffies daffiest daffily daffiness daffinesses daffing daffings daffish daffle daffled daffling daffo daffodil daffodillies daffodilly daffodils daffodowndillies daffodowndilly daffs daffy daffydowndilly dafla daft daftar daftardar daftars daftberry dafter daftest daftie dafties daftlike daftly daftness daftnesses dag dagaba dagabas dagaga dagame dagan dagassa dagda dagesh dagga daggar daggas dagged dagger daggerboard daggerboards daggerbush daggered daggering daggerlike daggerproof daggers daggier daggiest dagging daggings daggle daggled daggles daggletail daggletailed daggling daggly daggy daghesh daglock daglocks dago dagoba dagobas dagoes dagon dagos dags dagswain daguerrean daguerreotype daguerreotyped daguerreotyper daguerreotypers daguerreotypes daguerreotypic daguerreotypies daguerreotyping daguerreotypist daguerreotypists daguerreotypy daguerrotype daguilla dagwood dagwoods dah dahabeah dahabeahs dahabeeah dahabeeahs dahabeeyah dahabeeyahs dahabiah dahabiahs dahabieh dahabiehs dahabiya dahabiyah dahabiyahs dahabiyas dahabiyeh dahabiyehs dahl dahlia dahlias dahlin dahls dahlsten dahms dahomey dahoon dahoons dahs daidle daidled daidles daidlie daidling daidly daiker daikered daikering daikers daikon daikons dail dailies dailiness dailinesses daily daimen daimiate daimiel daimio daimioate daimios daimiote daimon daimones daimonic daimonion daimonistic daimonology daimons daimyo daimyos dain daincha dainchas daine dained daines dainful daining daint dainteous dainteth daintier dainties daintiest daintified daintify daintifying daintihood daintily daintiness daintinesses daintith daintrel dainty daiquiri daiquiris daira dairi dairies dairous dairt dairy dairyer dairyers dairying dairyings dairymaid dairymaids dairyman dairymen dairywoman dairywomen dais daised daisee daises daishiki daishikis daisied daisies daising daisy daisybush daisycutter daisylike daisywheel daitya daiva dajeuner dajeuners dak dakar daker dakered dakerhen dakerhens dakering dakers dakhma dakir dakoit dakoiti dakoities dakoitis dakoits dakoity dakota dakotan dakotans dakotas daks daktylon daktylos dal dalaga dalai dalan dalapon dalapons dalar dalasi dalasis dalbergia dale dalea daled daledh daledhs daleds daleman daler dales dalesfolk dalesman dalesmen dalespeople daleswoman dalet daleth daleths dalets dalf dali daliance dalis dalk dallack dallan dallas dalle dalles dalliance dalliances dallied dallier dalliers dallies dallis dallisgrass dallop dallops dally dallying dallyingly dallyman dalmahoy dalmahoys dalmatia dalmatian dalmatians dalmatic dalmatics dalo dals dalt dalteen dalton daltonian daltonic daltonism daltonisms daltons dalts dam dama damage damageabilities damageability damageable damageableness damageably damaged damagement damageous damager damagers damages damaging damagingly damalic damaliscus daman damans damar damarche damarches damars damas damasceene damasceened damasceenes damasceening damascene damascened damascener damasceners damascenes damascenine damascening damascenings damascus damask damasked damaskeen damaskeened damaskeening damaskeens damaskin damaskine damaskined damasking damaskining damaskins damasks damasquin damasquined damasquining damasquins damasse damassin damassins damboard damboards dambonite dambonitol dambose dambrod dambrods dame damenization damenti damentis dames damewort dameworts damfool damfoolish damgalnunna damiana damianas damie damier damine daminozide daminozides damkina damkjernite damlike dammar dammara dammaret dammars damme dammed dammer dammers dammes damming dammish dammit dammits damn damnabilities damnability damnable damnableness damnablenesses damnably damnation damnations damnatory damndest damndests damned damneder damnedest damnedests damner damners damnification damnifications damnificatus damnified damnifies damnify damnifying damning damningly damningness damningnesses damnit damnonians damnosa damnous damnously damns damnum damnyankee damocles damoda damoiseau damoisel damoiselle damoiselles damoisels damolic damon damonico damosel damosels damourite damozel damozels damp dampang dampcourse damped dampen dampened dampener dampeners dampening dampens damper dampers dampest dampier dampiest damping dampings dampish dampishly dampishness dampishnesses damply dampne dampness dampnesses dampproof dampproofer dampproofing damps dampy dams damsel damselfish damselfishes damselflies damselfly damselhood damsels damsite damson damsons damyankee dan dana danae danaea danaid danaidae danaide danaine danaite danalite danaro danaus danburite dancalite dance danceabilities danceability danceable danced dancer dancercise dancercises danceress dancerly dancers dancery dances dancetta dancette dancettee dancettes dancetty dancewear dancey dancier danciest dancing dancingly dancings dancy dand danda dandelion dandelions dander dandered dandering danders dandiacal dandiacally dandically dandie dandier dandies dandiest dandification dandifications dandified dandifies dandify dandifying dandilly dandily dandiprat dandiprats dandis dandisette dandizette dandle dandled dandler dandlers dandles dandling dandlingly dandriff dandriffs dandriffy dandruff dandruffs dandruffy dandy dandydom dandyfunk dandyfunks dandyise dandyish dandyishly dandyishy dandyism dandyisms dandyize dandyling dandyprat dandyprats dane danebrog danegeld danegelds danegelt danegelts danelagh danelaghs danelaw danelaws danes daneweed daneweeds danewort daneworts dang dangaleat danged danger dangered dangerful dangerfully dangering dangerless dangerous dangerously dangerousness dangerousnesses dangers dangersome danging dangla dangle dangleberries dangleberry dangled danglement dangler danglers dangles danglier dangliest danglin dangling danglingly danglings dangly dangs danic danicism daniel danio danios danish danishes danism dank danke danker dankest dankish dankishness dankly dankness danknesses danks danli danmark dannebrog dannebrogs dannemorite danner dannock danny danoranja dans dansant dansants danseur danseurs danseuse danseuses danseusse dansk dansker dansy dant danta dante dantean danted dantescan dantesque danthonia danting danton dantoned dantoning dantons dants danu danube danzig danzon dao daoine daoism dap dapartement dapartements daphnad daphne daphnes daphnetin daphni daphnia daphnias daphnid daphnids daphnin daphnioid daphnis daphnite daphnoid dapicho dapico dapifer dapped dapper dapperer dapperest dapperling dapperlings dapperly dapperness dappernesses dappers dapping dapple dappled dappledness dappleness dapples dappling daps dapsang dapson dapsone dapsones daquiri daquiris dar darabukka darac daraf darafs darapti darat darb darbar darbars darbha darbies darbs darbukka darby darbyism darcies darcy darcys dard dardan dardanarius dardanelles dardanium dardaol dardic dare dareall dared daredevil daredevilism daredevilries daredevilry daredevils daredeviltries daredeviltry dareful darer darers dares daresay darg darga dargah dargas darger dargle dargles dargs dargsman dargue dari daribah daric darics darii daring daringly daringness daringnesses darings dariole darioles daris darjeeling dark darked darken darkened darkener darkeners darkening darkens darker darkest darkey darkeys darkful darkhaired darkhearted darkheartedness darkie darkies darking darkish darkishness darkle darkled darkles darklier darkliest darkling darklings darkly darkmans darkness darknesses darkroom darkrooms darks darkskin darksome darksomeness darksum darktown darky darling darlingly darlingness darlingnesses darlings darlingtonia darmera darn darnation darnations darndest darndests darned darneder darnedest darnel darnels darner darners darnex darning darnings darnix darns daroga darogah darogha daroo darr darraign darraigne darraigned darraignes darraigning darraigns darrain darraine darrained darraines darraining darrains darrayn darrayned darrayning darrayns darre darred darrein darres darring darshan darshana darshans darst dart dartars dartboard dartboards darted darter darters darting dartingly dartingness dartle dartled dartles dartlike dartling dartman dartmouth dartoic dartoid dartos dartre dartres dartrose dartrous darts dartsman darvon darwan darwesh darwin darwinian darwinians darwinism darwinist darwinistic darwinists darwinite darya darzee darzi darzis das dase dasein dasewe dash dashboard dashboards dashed dashedly dashee dasheen dasheens dasheki dashekis dashel dasher dashers dashes dashi dashier dashiest dashiki dashikis dashing dashingly dashis dashmaker dashplate dashpot dashpots dasht dashwheel dashy dasi dasnt dassent dassie dassies dassy dast dastard dastardies dastardise dastardize dastardliness dastardlinesses dastardly dastardness dastardnesses dastards dastardy dastur dasturi daswen dasyatidae dasyatis dasycladaceous dasymeter dasypaedal dasypaedes dasypaedic dasyphyllous dasypod dasypodidae dasypodoid dasypods dasyprocta dasyproctidae dasyproctine dasypus dasypygal dasyure dasyures dasyurid dasyuridae dasyurids dasyurine dasyuroid dasyurus dat data databank databanks database databased databases databasing datable datableness datably databus databuses databusses datacell datacomms datafile dataflow dataglove datagloves datagram datagrams datakit datal dataller datallers datals datamation datamations datamedia datana datapac datapoint datapunch dataria datarias dataries datary dataset datasetname datasets datatype datatypes datch datcha datchas date dateable dateableness datebook datebooks dated datedly datedness datednesses dateless datelessness dateline datelined datelines datelining datemark datente datentes datenu datenue datenues datenus dater daterman daters dates datil dating datings dation datisca datiscaceous datiscetin datiscin datiscosid datiscoside datisi datival dative datively datives dativogerundial dato datolite datolites datolitic datos datril datsun datsuns datsw datto dattock dattos datum datums datura daturas daturic daturine daturines daturism dau daub daube daubed daubentonia daubentoniidae dauber dauberies daubers daubery daubes daubier daubiest daubing daubingly daubings daubreeite daubreelite daubreite daubries daubry daubs daubster dauby daucus daud dauded dauding daudit dauds dauerlauf dauerschlaf daughter daughterboard daughterboards daughterhood daughterkin daughterless daughterlike daughterliness daughterlinesses daughterling daughterlings daughterly daughters daughtership dauk dauke daukin dault daults daun daunch dauncy daunder daundered daundering daunders dauner daunered daunering dauners daunomycin daunomycins daunorubicin daunorubicins daunt daunted daunter daunters daunting dauntingly dauntingness dauntless dauntlessly dauntlessness dauntlessnesses daunton dauntoned dauntoning dauntons daunts dauphin dauphine dauphines dauphiness dauphinesses dauphins daur daured dauring daurna daurs daut dauted dautie dauties dauting dauts dauw davach davainea davallia davalliaceae dave daven davened davening davenport davenports davens daver daverdy david davidia davidias davidist davidsonite daviely davies daviesia daviesite davis davit davits davoch davy davyne davyum daw dawbries dawbry dawcock dawcocks dawd dawded dawding dawdle dawdled dawdler dawdlers dawdles dawdling dawdlingly dawdlings dawds dawdy dawe dawed dawen dawing dawish dawk dawkin dawks dawn dawned dawner dawnered dawnering dawners dawning dawnings dawnlight dawnlike dawns dawnstreak dawnward dawny dawpate daws dawsoniaceous dawsonite dawsonites dawt dawted dawtet dawtie dawties dawting dawtit dawts dawut day dayabhaga dayak dayal dayan dayanim daybeacon daybeam daybed daybeds dayberry daybill dayblush daybook daybooks dayboy daybreak daybreaks daycare daycares daycoach daycoaches daydawn daydream daydreamed daydreamer daydreamers daydreaming daydreamlike daydreams daydreamt daydreamy daydrudge dayflies dayflower dayflowers dayfly daygirl dayglo dayglow dayglows daygoing dayhop dayhops daying dayless daylight daylighted daylighting daylightings daylights daylilies daylily daylit daylong dayman daymare daymares daymark daymarks daymen dayment daynet daynt daypack daypacks daypeep daypro dayroom dayrooms days daysack daysacks dayshift dayshifts dayshine dayside daysides daysman daysmen dayspring daysprings daystar daystars daystreak daytale daytaler daytalers daytales daytide daytime daytimes dayton daytrader daytraders dayward daywear daywork dayworker dayworks daywrit daze dazed dazedly dazedness dazednesses dazement dazer dazers dazes dazing dazingly dazy dazzle dazzled dazzlement dazzlements dazzler dazzlers dazzles dazzling dazzlingly dazzlingness dazzlings db dbl dbms dbridement dbrn dc dca dcb dcbname dclass dcollet dcolletage dcor dd dded dding ddname dds ddt de dea deaccession deaccessioned deaccessioning deaccessions deacetylate deacetylated deacetylating deacetylation deacidification deacidifications deacidified deacidifies deacidify deacidifying deacon deaconal deaconate deaconed deaconess deaconesses deaconhood deaconhoods deaconing deaconise deaconize deaconries deaconry deacons deaconship deaconships deactivate deactivated deactivates deactivating deactivation deactivations deactivator deactivators dead deadbeat deadbeats deadbolt deadbolts deadborn deadcenter deaded deaden deadend deadened deadener deadeners deadening deadeningly deadenings deadens deader deaders deadest deadeye deadeyes deadfall deadfalls deadflat deadhand deadhead deadheaded deadheading deadheadism deadheads deadhearted deadheartedly deadheartedness deadhouse deadhouses deading deadish deadishly deadishness deadlatch deadlier deadliest deadlift deadlifted deadlifting deadlifts deadlight deadlights deadlihead deadlily deadline deadlined deadlines deadliness deadlinesses deadlining deadlock deadlocked deadlocking deadlocks deadly deadman deadmelt deadmen deadness deadnesses deadpan deadpanned deadpanner deadpanners deadpanning deadpans deadpay deadrise deadrize deads deadstock deadstocks deadstroke deadtongue deadweight deadweights deadwood deadwoods deadwork deadworks deadwort deady deadzone deadzones deaerate deaerated deaerates deaerating deaeration deaerations deaerator deaerators deaf deafen deafened deafening deafeningly deafenings deafens deafer deafest deafforest deafforestation deafish deafly deafmuteness deafness deafnesses deair deaired deairing deairs deal dealable dealate dealated dealateds dealates dealation dealations dealbate dealbation dealbations dealbuminize dealcoholise dealcoholised dealcoholises dealcoholising dealcoholist dealcoholization dealcoholizations dealcoholize dealcoholized dealcoholizes dealcoholizing dealer dealerdom dealers dealership dealerships dealfish dealfishes dealignment dealing dealings dealkalize dealkylate dealkylation deallocate deallocated deallocates deallocating deallocation deallocations dealmaker dealmakers dealmaking dealmakings deals dealt deambulate deambulation deambulatories deambulatory deamidase deamidate deamidation deamidization deamidize deaminase deaminases deaminate deaminated deaminates deaminating deamination deaminations deaminise deaminization deaminizations deaminize deaminized deaminizes deaminizing deammonation dean deanathematize deaned deaner deaneries deaners deanery deaness deanimalize deaning deans deanship deanships deanthropomorphic deanthropomorphism deanthropomorphization deanthropomorphize deappetizing deaquation dear dearborn dearbought deare deared dearer deares dearest dearests dearie dearies dearing dearling dearlings dearly dearn dearness dearnesses dearnful dearnly dearns dearomatize dears dearsenicate dearsenicator dearsenicize dearth dearthfu dearths dearticulate dearticulated dearticulates dearticulating dearticulation dearworth dearworthily dearworthiness deary deas deash deashed deashes deashing deasil deasils deasiul deasiuls deasoil deasoils deaspirate deaspirated deaspirates deaspirating deaspiration deaspirations deassimilation death deathbed deathbeds deathblow deathblows deathcup deathcups deathday deathful deathfully deathfulness deathier deathiest deathify deathin deathiness deathless deathlessly deathlessness deathlessnesses deathlier deathliest deathlike deathlikeness deathliness deathlinesses deathling deathly deathrate deathrates deathroot deaths deathshot deathsman deathsmen deathtime deathtrap deathtraps deathward deathwards deathwatch deathwatches deathweed deathworm deathy deattribute deattributed deattributes deattributing deattribution deattributions deaurate deave deaved deavely deaves deaving deaw deawie deaws deawy deb debacchate debacle debacles debadge debag debagged debagging debaggings debags debamboozle debar debarbarization debarbarize debarbarized debarcation debarcations debark debarkation debarkations debarked debarker debarkers debarking debarkment debarks debarment debarments debarrance debarrass debarrassed debarrasses debarrassing debarration debarred debarring debars debase debased debasedness debasednesses debasement debasements debaser debasers debases debasing debasingly debat debatable debatably debate debateable debated debateful debatefully debatement debatements debater debaters debates debating debatingly debatter debauch debauched debauchedly debauchedness debauchednesses debauchee debauchees debaucher debaucheries debauchers debauchery debauches debauching debauchment debauchments debbie debbier debbies debbiest debby debcle debe debeak debeaked debeaker debeaking debeaks debeige debel debell debellate debellation debellator debelled debelling debels deben debenture debentured debentureholder debentures debenzolize debile debilissima debilitant debilitate debilitated debilitates debilitating debilitatingly debilitation debilitations debilitative debilities debility debind debit debitable debite debited debiteuse debiting debitor debitors debitrix debits debitum debitumenize debituminization debituminize deblai deblaterate deblateration deblock deblocked deblocking deboise deboist deboistly deboistness deboite deboites debonair debonaire debonairity debonairly debonairness debonairnesses debonairty debone deboned deboner deboners debones deboning debonnaire deborah debord debordment debosh deboshed deboshes deboshing deboshment deboss debossed debosses debossing debouch debouche debouched debouches debouching debouchment debouchments debouchure debouchures debout debowel debride debrided debridement debridements debrides debriding debrief debriefed debriefing debriefings debriefs debris debrominate debromination debruise debruised debruises debruising debs debt debted debtee debtees debtful debtless debtor debtors debtorship debts debud debudded debudding debuds debug debugged debugger debuggers debugging debugs debullition debunk debunked debunker debunkers debunking debunkment debunks deburr deburred deburring deburrs deburse debus debused debusing debussed debusses debussing debussy debut debutant debutante debutantes debutants debuted debuting debuts debye debyes dec decachord decachords decad decadactylous decadal decadally decadarch decadarchy decadary decadation decade decadence decadences decadencies decadency decadent decadentism decadently decadents decadenza decades decadescent decadi decadianome decadic decadist decadrachm decadrachma decadrachmae decadron decads decaedron decaesarize decaf decaff decaffeinate decaffeinated decaffeinates decaffeinating decaffeination decaffeinations decaffeinize decaffs decafid decafs decagon decagonal decagonally decagons decagram decagramme decagrammes decagrams decagynian decagynous decahedra decahedral decahedrodra decahedron decahedrons decahydrate decahydrated decahydronaphthalene decal decalage decalcification decalcifications decalcified decalcifier decalcifiers decalcifies decalcify decalcifying decalcomania decalcomaniac decalcomanias decalescence decalescences decalescent decaliter decaliters decalitre decalitres decalobate decalog decalogist decalogists decalogs decalogue decalogues decalomania decals decalvant decalvation decameral decameron decameronic decamerous decameter decameters decamethonium decamethoniums decametre decametres decametric decamp decamped decamping decampment decampments decamps decan decanal decanally decanate decancellate decancellated decancellating decancellation decandently decandria decandrian decandrous decane decanery decanes decangular decani decanically decannulation decanol decanonization decanonize decanormal decanoyl decant decantate decantated decantates decantating decantation decantations decanted decanter decanters decantherous decanting decantist decants decap decapetalous decaphyllous decapitable decapitalisation decapitalisations decapitalise decapitalised decapitalises decapitalising decapitalization decapitalizations decapitalize decapitalized decapitalizes decapitalizing decapitatation decapitatations decapitate decapitated decapitates decapitating decapitation decapitations decapitator decapitators decapod decapoda decapodal decapodan decapodans decapodiform decapodous decapods decapper decapsulate decapsulation decapterus decarb decarbed decarbing decarbonate decarbonated decarbonates decarbonating decarbonation decarbonations decarbonator decarbonisation decarbonisations decarbonise decarbonised decarboniser decarbonisers decarbonises decarbonising decarbonization decarbonizations decarbonize decarbonized decarbonizer decarbonizers decarbonizes decarbonizing decarbonylate decarbonylated decarbonylating decarbonylation decarboxylase decarboxylases decarboxylate decarboxylated decarboxylates decarboxylating decarboxylation decarboxylations decarboxylization decarboxylize decarbs decarburation decarburisation decarburisations decarburise decarburised decarburises decarburising decarburization decarburizations decarburize decarburized decarburizes decarburizing decarch decarchies decarchy decard decardinalize decare decares decarhinus decarnate decarnated decart decartelization decartelize decartelized decartelizing decasemic decasepalous decaspermal decaspermous decast decastellate decastere decasteres decastich decastichs decastylar decastyle decastyles decastylos decasualisation decasualisations decasualise decasualised decasualising decasualization decasualizations decasualize decasualized decasualizing decasyllabic decasyllabics decasyllable decasyllables decasyllabon decate decathlete decathletes decathlon decathlons decatholicize decating decatize decatizer decatizing decatoic decator decatyl decaudate decaudated decaudates decaudating decaudation decay decayable decayed decayedness decayer decayers decaying decayless decays deccennia decciare decciares deccie deccies decd decease deceased deceases deceasing decede decedent decedents deceit deceitful deceitfully deceitfulness deceitfulnesses deceits deceivabilities deceivability deceivable deceivableness deceivablenesses deceivably deceivance deceive deceived deceiver deceivers deceives deceiving deceivingly decelerate decelerated decelerates decelerating deceleration decelerations decelerator decelerators decelerometer decelerometers deceleron decem december decembrist decemcostate decemdentate decemfid decemflorous decemfoliate decemfoliolate decemjugate decemlocular decempartite decempeda decempedal decempedate decempennate decemplex decemplicate decempunctate decemstriate decemuiri decemvii decemvir decemviral decemvirate decemvirates decemviri decemvirs decemvirship decenaries decenary decence decencies decency decene decener decennal decennaries decennary decennia decenniad decennial decennially decennials decennium decenniums decennoval decent decenter decentered decentering decenters decentest decently decentness decentnesses decentralisation decentralisationist decentralisations decentralise decentralised decentralises decentralising decentralism decentralist decentralization decentralizationist decentralizations decentralize decentralized decentralizes decentralizing decentration decentre decentred decentres decentring decenyl decephalization decephalize deceptibilities deceptibility deceptible deception deceptional deceptions deceptious deceptiously deceptitious deceptive deceptively deceptiveness deceptivenesses deceptivity deceptory decerebrate decerebrated decerebrates decerebrating decerebration decerebrations decerebrise decerebrised decerebrises decerebrising decerebrize decerebrized decerebrizes decerebrizing decern decerned decerning decerniture decernment decerns decerp decertation decertification decertifications decertificaton decertified decertifies decertify decertifying decess decession decessions decessit decessor decharm decheance dechemicalization dechemicalize dechenite dechlore dechloridation dechloridize dechloridized dechloridizing dechlorinate dechlorinated dechlorinates dechlorinating dechlorination dechlorinations dechoralize dechristianisation dechristianisations dechristianise dechristianised dechristianises dechristianising dechristianization dechristianizations dechristianize dechristianized dechristianizes dechristianizing deciare deciares deciatine decibar decibel decibels deciceronize decidabilities decidability decidable decide decided decidedly decidedness decidednesses decidement decidence decidendi decident decider deciders decides deciding decidingly decidua deciduae decidual deciduary deciduas deciduata deciduate deciduitis deciduity deciduoma deciduous deciduously deciduousness deciduousnesses decigram decigramme decigrammes decigrams decil decile deciles deciliter deciliters decilitre decilitres decillion decillions decillionth decillionths decima decimal decimalisation decimalisations decimalise decimalised decimalises decimalising decimalism decimalisms decimalist decimalists decimalization decimalizations decimalize decimalized decimalizes decimalizing decimally decimals decimate decimated decimates decimating decimation decimations decimator decimators decime decimes decimestrial decimeter decimeters decimetre decimetres decimolar decimole decimosexto decimus decine decinormal decipher decipherabilities decipherability decipherable decipherably deciphered decipherer decipherers deciphering decipherment decipherments deciphers decipium decipolar decise decision decisional decisioned decisioning decisionmake decisions decisis decisive decisively decisiveness decisivenesses decisory decistere decisteres decitizenise decitizenised decitizenises decitizenising decitizenize decitizenized decitizenizes decitizenizing decivilise decivilised decivilises decivilising decivilization decivilize decivilized decivilizes decivilizing deck deckchair deckchairs decke decked deckedout deckel deckels decken decker deckers deckhand deckhands deckhead deckhouse deckhouses deckie decking deckings deckle deckled deckles deckload deckman decko deckoed deckoing deckos deckpipe decks deckswabber decl declaim declaimant declaimants declaimed declaimer declaimers declaiming declaimings declaims declamando declamation declamations declamator declamatorily declamatoriness declamatory declarable declarant declarants declaration declarations declarative declaratively declaratives declarator declaratorily declarators declaratory declare declared declaredly declaredness declarer declarers declares declaring declass declasse declassed declassee declassees declasses declassicize declassifiable declassification declassifications declassified declassifies declassify declassifying declassing declaw declawed declawing declaws declension declensional declensionally declensions declericalize declimatize declinable declinal declinant declinate declination declinational declinations declinator declinators declinatory declinature declinatures decline declined declinedness decliner decliners declines declining declinograph declinometer declinometers declivate declive declivent declivities declivitous declivitously declivity declivous declutch declutched declutches declutching decnet deco decoagulant decoagulate decoagulated decoagulation decoat decocainize decoct decocted decoctible decoctibles decocting decoction decoctions decoctive decocts decoctum decocture decoctures decodable decode decoded decoder decoders decodes decoding decodings decohere decoherence decoherer decoherers decohesion decoic decoke decoked decokes decoking decoll decollate decollated decollates decollating decollation decollations decollator decollators decollectivization decollectivizations decollectivize decollectivized decollectivizes decollectivizing decolletage decolletages decollete decolletee decolletes decollimate decolonisation decolonisations decolonise decolonised decolonises decolonising decolonization decolonizations decolonize decolonized decolonizes decolonizing decolor decolorant decolorants decolorate decolorated decolorates decolorating decoloration decolorations decolored decolorimeter decoloring decolorisation decolorisations decolorise decolorised decoloriser decolorises decolorising decolorization decolorizations decolorize decolorized decolorizer decolorizers decolorizes decolorizing decolors decolour decolourant decolourants decolourate decolourated decolourates decolouration decolourations decoloured decolourimeter decolouring decolourisation decolourisations decolourise decolourised decolouriser decolourisers decolourises decolourising decolourization decolourizations decolourize decolourized decolourizer decolourizers decolourizes decolourizing decolours decommission decommissioned decommissioner decommissioners decommissioning decommissionings decommissions decompensate decompensated decompensates decompensating decompensation decompensations decompensatory decompile decompiled decompiler decompiles decompiling decomplex decomponent decomponible decomposabilities decomposability decomposable decompose decomposed decomposer decomposers decomposes decomposing decomposite decomposition decompositional decompositions decomposure decompound decompoundable decompounded decompounding decompoundly decompounds decompress decompressed decompresses decompressing decompression decompressions decompressive decompressor decompressors decon deconcatenate deconcentrate deconcentrated deconcentrates deconcentrating deconcentration deconcentrations deconcentrator decondition deconditioned deconditioning deconditions decongest decongestant decongestants decongested decongesting decongestion decongestions decongestive decongests deconned deconning decons deconsecrate deconsecrated deconsecrates deconsecrating deconsecration deconsecrations deconsider deconsideration deconstruct deconstructed deconstructing deconstruction deconstructionism deconstructionisms deconstructionist deconstructionists deconstructions deconstructive deconstructor deconstructors deconstructs decontaminant decontaminants decontaminate decontaminated decontaminates decontaminating decontamination decontaminations decontaminative decontaminator decontaminators decontrol decontrolled decontrolling decontrols deconventionalize deconvolution deconvolve decopperization decopperize decor decorability decorable decorably decorament decorate decorated decorates decorating decoration decorationist decorations decorative decoratively decorativeness decorativenesses decorator decorators decoratory decore decorement decorist decorous decorously decorousness decorousnesses decorrugative decors decorticate decorticated decorticates decorticating decortication decortications decorticator decorticators decorticosis decortization decorum decorums decos decostate decoupage decoupaged decoupages decoupaging decouple decoupled decoupler decouplers decouples decoupling decouplings decourse decourt decousu decoy decoyed decoyer decoyers decoying decoyman decoymen decoys decrassified decrassifies decrassify decrassifying decream decrease decreased decreaseless decreases decreasing decreasingly decreation decreative decree decreeable decreed decreeing decreement decreer decreers decrees decreet decreets decreing decrement decremental decremented decrementing decrementless decrements decremeter decreolization decreolizations decrepid decrepit decrepitate decrepitated decrepitates decrepitating decrepitation decrepitations decrepitly decrepitness decrepitnesses decrepitude decrepitudes decrepity decreptitude decresc decrescence decrescences decrescendi decrescendo decrescendos decrescent decretal decretalist decretals decrete decretion decretist decretists decretive decretively decretorial decretorian decretorily decretory decretum decrew decrewed decrewing decrews decrial decrials decried decrier decriers decries decriminalisation decriminalisations decriminalise decriminalised decriminalises decriminalising decriminalization decriminalizations decriminalize decriminalized decriminalizes decriminalizing decrown decrowned decrowning decrowns decrudescence decrustation decrustations decry decrying decrypt decrypted decrypting decryption decryptions decryptograph decrypts decrystallization dectet dectets decubation decubital decubiti decubitus decubituses decultivate deculturate decuma decuman decumana decumani decumans decumanus decumaria decumary decumbence decumbences decumbencies decumbency decumbent decumbently decumbiture decumbitures decuple decupled decuples decuplet decupling decuply decuria decurias decuries decurion decurionate decurionates decurions decurrence decurrences decurrencies decurrency decurrent decurrently decurring decursion decursions decursive decursively decurt decurtate decurvation decurvations decurvature decurve decurved decurves decurving decury decus decuss decussate decussated decussately decussates decussating decussation decussations decussatively decussion decussis decussoria decussorium decustomised decwriter decyl decylene decylenic decylic decyne ded deda dedal dedalian dedans dedd deddy dedecorate dedecoration dedecorous dedenda dedendum dedentition dedicant dedicants dedicate dedicated dedicatedly dedicatee dedicatees dedicates dedicating dedication dedicational dedications dedicative dedicator dedicatorial dedicatorily dedicators dedicatory dedicature dedifferentiate dedifferentiated dedifferentiates dedifferentiating dedifferentiation dedifferentiations dedignation dedimus dedimuses dedit deditician dediticiancy dedition dedo dedoggerelize dedogmatize dedolation dedolence dedolency dedolent dedolomitization dedolomitize dedolomitized dedolomitizing dedramatise dedramatised dedramatises dedramatising dedramatize dedramatized dedramatizes dedramatizing deduce deduced deducement deducements deducer deduces deducibilities deducibility deducible deducibleness deduciblenesses deducibly deducing deducive deduct deducted deductibilities deductibility deductible deductibles deductile deducting deductio deduction deductions deductive deductively deductory deducts deduit deduplication dee deecodder deed deedbote deedbox deeded deedeed deeder deedest deedful deedfully deedholder deedier deediest deedily deediness deeding deedless deeds deedy deeing deejay deejayed deejaying deejays deek deem deemed deemer deemie deeming deemphases deemphasis deemphasise deemphasised deemphasises deemphasising deemphasize deemphasized deemphasizes deemphasizing deems deemster deemsters deemstership deen deener deens deeny deep deepen deepened deepener deepeners deepening deepeningly deepens deeper deepest deepfelt deepfreeze deepfreezed deepfreezes deepfreezing deepfroze deepfrozen deepgoing deepie deepies deeping deepish deeplier deeply deepmost deepmouthed deepness deepnesses deeps deepsome deepwater deepwaterman deepwatermen deer deerberries deerberry deerdog deerdrive deere deerflies deerfly deerflys deerfood deergrass deerhair deerherd deerhorn deerhorns deerhound deerhounds deerkill deerlet deerlets deerlike deermeat deers deerskin deerskins deerstalker deerstalkers deerstalking deerstalkings deerstand deerstealer deertongue deervetch deerweed deerweeds deerwood deeryard deeryards dees deescalate deescalated deescalates deescalating deescalation deescalations deeses deesis deess deet deets deev deeve deeved deeves deevey deevilick deeving deevs deewan deewans def deface defaceable defaced defacement defacements defacer defacers defaces defacing defacingly defacto defade defaecate defaecated defaecates defaecating defail defailance defaillance defailment defaisance defaitisme defaitiste defalcate defalcated defalcates defalcating defalcation defalcations defalcator defalcators defalk defamation defamations defamatorily defamatory defame defamed defamer defamers defames defaming defamingly defamings defamous defamy defang defanged defanging defangs defassa defast defaste defat defatigable defatigate defatigated defatigation defats defatted defatting default defaultant defaulted defaulter defaulters defaulting defaultless defaults defaulture defeasance defeasanced defeasances defease defeasibilities defeasibility defeasible defeasibleness defeasiblenesses defeasive defeat defeated defeatee defeater defeaters defeating defeatism defeatisms defeatist defeatists defeatment defeats defeature defeatured defeatures defeaturing defecant defecate defecated defecates defecating defecation defecations defecator defecators defecatory defect defected defecter defecters defectibilities defectibility defectible defecting defection defectionist defectionists defections defectious defective defectively defectiveness defectivenesses defectives defectless defectlessness defectology defector defectors defectoscope defects defectum defectuous defedation defeise defeit defeminisation defeminise defeminised defeminises defeminising defeminization defeminizations defeminize defeminized defeminizes defeminizing defence defenceable defenced defenceless defencelessly defencelessness defencelessnesses defenceman defencemen defences defencing defencive defend defendable defendant defendants defended defender defenders defending defendress defends defenestrate defenestrated defenestrates defenestrating defenestration defenestrations defensative defensatives defense defensed defenseless defenselessly defenselessness defenselessnesses defenseman defensemen defenser defenses defensibilities defensibility defensible defensibleness defensiblenesses defensibly defensin defensing defensins defension defensive defensively defensiveness defensivenesses defensives defensor defensorship defensory defer deferable deference deferences deferens deferent deferentectomy deferential deferentiality deferentially deferentitis deferents deferment deferments deferrable deferrables deferral deferrals deferred deferrer deferrers deferring deferrization deferrize deferrized deferrizing defers defervesce defervesced defervescence defervescences defervescencies defervescency defervescent defervesces defervescing defet defeudalise defeudalised defeudalises defeudalising defeudalize defeudalized defeudalizes defeudalizing deffer deffest deffly defi defiable defial defiance defiances defiant defiantly defiantness defiantnesses defiatory defiber defibrillate defibrillated defibrillates defibrillating defibrillation defibrillations defibrillative defibrillator defibrillators defibrillatory defibrinate defibrinated defibrinates defibrinating defibrination defibrinations defibrinise defibrinised defibrinises defibrinising defibrinize defibrinized defibrinizes defibrinizing deficience deficiences deficiencies deficiency deficient deficiently deficientness deficientnesses deficients deficit deficits defied defier defiers defies defiguration defigure defilable defilade defiladed defilades defilading defile defiled defiledness defilement defilements defiler defilers defiles defiliation defiliations defiling defilingly definabilities definability definable definably define defined definedly definement definements definer definers defines definienda definiendum definiens definientia defining definish definite definitely definiteness definitenesses definition definitional definitiones definitions definitisation definitise definitised definitises definitising definitive definitively definitiveness definitivenesses definitives definitization definitize definitized definitizes definitizing definitor definitude definitudes defis defix deflagrabilities deflagrability deflagrable deflagrate deflagrated deflagrates deflagrating deflagration deflagrations deflagrator deflagrators deflatable deflate deflated deflater deflaters deflates deflating deflation deflationary deflationist deflationists deflations deflator deflators deflea defleaed defleaing defleas deflect deflectable deflected deflecting deflection deflectional deflectionisation deflectionise deflectionization deflectionize deflections deflective deflectometer deflector deflectors deflects deflesh deflex deflexed deflexes deflexibility deflexible deflexing deflexion deflexional deflexionize deflexions deflexure deflexures deflocculant deflocculate deflocculated deflocculating deflocculation deflocculator deflocculent deflorate deflorated deflorates deflorating defloration deflorations deflore deflorescence deflourish deflow deflower deflowered deflowerer deflowerers deflowering deflowerment deflowers defluent defluous defluvium deflux defluxion defluxions defoam defoamed defoamer defoamers defoaming defoams defocus defocused defocuses defocusing defocussed defocusses defocussing defoedation defog defogged defogger defoggers defogging defogs defoil defoliage defoliant defoliants defoliate defoliated defoliates defoliating defoliation defoliations defoliator defoliators deforce deforced deforcement deforcements deforceor deforcer deforcers deforces deforciant deforciants deforciation deforciations deforcing deforest deforestation deforestations deforested deforester deforesters deforesting deforests deform deformabilities deformability deformable deformalise deformalization deformalizations deformalize deformalized deformalizes deformalizing deformation deformational deformations deformative deformed deformedly deformedness deformednesses deformer deformers deformeter deforming deformism deformities deformity deforms deforse defortify defossion defoul defouled defouling defouls defrag defragged defragging defragment defragmented defragmenting defragments defrags defraud defraudation defraudations defrauded defrauder defrauders defrauding defraudment defraudments defrauds defray defrayable defrayal defrayals defrayed defrayer defrayers defraying defrayment defrayments defrays defreeze defreezes defreezing defrication defrock defrocked defrocking defrocks defrost defrosted defroster defrosters defrosting defrosts defroze defrozen defs deft defter defterdar deftest deftly deftness deftnesses defuel defueled defueling defuelled defuelling defuels defunct defunction defunctionalisation defunctionalise defunctionalization defunctionalize defunctions defunctive defunctness defunctnesses defuncts defund defunded defunding defunds defuse defused defuser defusers defuses defusing defusion defuze defuzed defuzes defuzing defy defying defyingly deg degage degame degames degami degamis deganglionate degarnish degarnished degarnishes degarnishing degas degases degasification degasifier degasify degass degassed degasser degassers degasses degassing degauss degaussed degausser degaussers degausses degaussing degelatinize degelation degender degendered degendering degenderize degenderized degenderizes degenderizing degenders degener degeneracies degeneracy degeneralize degenerate degenerated degenerately degenerateness degeneratenesses degenerates degenerating degeneration degenerationist degenerationists degenerations degenerative degeneratively degenerescence degenerescent degeneroos degenerous degentilize degerm degermed degerminate degerminator degerming degerms degged degger degging deglaciated deglaciation deglaciations deglamorization deglamorizations deglamorize deglamorized deglamorizes deglamorizing deglamourize deglamourized deglamourizes deglamourizing deglaze deglazed deglazes deglazing deglory deglut deglute deglutinate deglutinated deglutinates deglutinating deglutination deglutinations deglutition deglutitions deglutitious deglutitive deglutitory deglycerin deglycerine deglycerolize degold degomme degorder degorge degout degradabilities degradability degradable degradand degradation degradational degradations degradative degrade degraded degradedly degradedness degradednesses degradement degrader degraders degrades degrading degradingly degradingness degraduate degraduation degrain degranulation degranulations degras degratia degravate degreasant degreasants degrease degreased degreaser degreasers degreases degreasing degree degreed degreeing degreeless degrees degreewise degression degressions degressive degressively degringolade degringolades degringoler degringolered degringolering degringolers degu deguelin degum degummed degummer degummers degumming degums degust degustate degustated degustates degustating degustation degustations degustatory degusted degusting degusts dehache dehair dehairer deheathenize dehematize dehepatize dehire dehired dehires dehiring dehisce dehisced dehiscence dehiscences dehiscent dehisces dehiscing dehistoricize dehnstufe dehonestate dehonestation dehorn dehorned dehorner dehorners dehorning dehorns dehors dehort dehortation dehortations dehortative dehortatory dehorted dehorter dehorters dehorting dehorts dehull dehumanisation dehumanisations dehumanise dehumanised dehumanises dehumanising dehumanization dehumanizations dehumanize dehumanized dehumanizes dehumanizing dehumidification dehumidifications dehumidified dehumidifier dehumidifiers dehumidifies dehumidify dehumidifying dehusk dehydrant dehydrase dehydratase dehydrate dehydrated dehydrater dehydraters dehydrates dehydrating dehydration dehydrations dehydrator dehydrators dehydroascorbic dehydrochlorinase dehydrochlorinases dehydrochlorinate dehydrochlorinated dehydrochlorinates dehydrochlorinating dehydrochlorination dehydrochlorinations dehydrocorticosterone dehydrocorydaline dehydroffroze dehydroffrozen dehydrofreeze dehydrofreezing dehydrofroze dehydrofrozen dehydrogenase dehydrogenases dehydrogenate dehydrogenated dehydrogenates dehydrogenating dehydrogenation dehydrogenations dehydrogenisation dehydrogenise dehydrogenised dehydrogeniser dehydrogenising dehydrogenization dehydrogenizations dehydrogenize dehydrogenized dehydrogenizer dehydrogenizes dehydrogenizing dehydromucic dehydroretinol dehydrosparteine dehydrotestosterone dehypnotisation dehypnotisations dehypnotise dehypnotised dehypnotises dehypnotising dehypnotization dehypnotizations dehypnotize dehypnotized dehypnotizes dehypnotizing dei deia deicate deice deiced deicer deicers deices deicidal deicide deicides deicing deictic deictical deictically deictics deid deidealize deider deidest deids deific deifical deification deifications deificatory deified deifier deifiers deifies deiform deiformity deify deifying deign deigned deigning deignous deigns deiist deil deils deincrustant deindividualization deindividualize deindividuate deindustrialisation deindustrialisations deindustrialise deindustrialised deindustrialises deindustrialising deindustrialization deindustrializations deindustrialize deindustrialized deindustrializes deindustrializing deink deinocheirus deinonychus deinonychuses deinos deinosaur deinosaurs deinothere deinotheres deinotherium deinotheriums deinstitutionalization deinstitutionalizations deinstitutionalize deinstitutionalized deinstitutionalizes deinstitutionalizing deinsularize deintellectualization deintellectualize deionisation deionise deionised deionises deionising deionization deionizations deionize deionized deionizer deionizers deionizes deionizing deipara deiparous deipnodiplomatic deipnophobia deipnosophism deipnosophist deipnosophistic deipnosophists deipotent deirid deis deiseal deiseals deisheal deisheals deisidaimonia deisin deism deisms deist deistic deistical deistically deisticalness deists deitate deities deity deityship deixes deixis deixises deja deject dejecta dejected dejectedly dejectedness dejectednesses dejectile dejecting dejection dejections dejectly dejectory dejects dejecture dejerate dejeration dejerator dejeune dejeuner dejeuners dejeunes dejunkerize dekadarchy dekadrachm dekagram dekagramme dekagrammes dekagrams dekaliter dekaliters dekalitre dekalitres dekalogies dekalogy dekameter dekameters dekametre dekametres dekametric dekaparsec dekapode dekarch dekare dekares dekastere deke deked dekes deking dekko dekkoed dekkoing dekkos dekle deknight del delabialization delabialize delabialized delabializing delace delacerate delacrimation delactation delaine delaines delairea delaminate delaminated delaminates delaminating delamination delaminations delapidate delapse delapsed delapses delapsing delapsion delapsions delassation delassement delate delated delater delaters delates delating delatinization delatinize delation delations delative delator delatorian delators delaw delaware delawarean delawarian delawn delay delayable delayage delayed delayer delayered delayering delayers delayful delaying delayingly delays dele delead deleaded deleading deleads deleatur deleave deleaved deleaves deleaving deleble delectabilities delectability delectable delectableness delectablenesses delectables delectably delectate delectated delectating delectation delectations delectible delectus deled deleerit delegable delegacies delegacy delegalize delegalized delegalizes delegalizing delegant delegare delegate delegated delegatee delegatees delegates delegateship delegati delegating delegation delegations delegative delegator delegators delegatory delegatus delegitimation delegitimations delegitimization delegitimizations delegitimize delegitimized delegitimizes delegitimizing deleing delenda deleniate deles delesseriaceous deletable delete deleted deleter deleterious deleteriously deleteriousness deleteriousnesses deletery deletes deleting deletion deletions deletive deletory delf delfs delft delfts delftware delftwares delhi deli delian delibate delibated delibates delibating delibation delibations deliber deliberalization deliberalize deliberandum deliberant deliberate deliberated deliberately deliberateness deliberatenesses deliberates deliberating deliberation deliberations deliberative deliberatively deliberativeness deliberativenesses deliberator deliberators delible delicacies delicacy delicat delicate delicately delicateness delicatenesses delicates delicatesse delicatessen delicatessens delice delicense delices delichon deliciae deliciate delicioso delicious deliciouses deliciously deliciousness deliciousnesses delict delicti delicto delicts delictual delictum delictus delieret delies deligated deligation deligations delight delightable delighted delightedly delightedness delightednesses delighter delighters delightful delightfully delightfulness delightfulnesses delighting delightingly delightless delights delightsome delightsomely delightsomeness delignate delignated delignification delilah deliliria delim delime delimed delimer delimes deliminator deliminators deliming delimit delimitate delimitated delimitates delimitating delimitation delimitations delimitative delimited delimiter delimiters delimiting delimitise delimitize delimitized delimitizing delimits deline delineable delineament delineate delineated delineates delineating delineation delineations delineative delineator delineators delineatory delineature delineavit delinition delinquence delinquencies delinquency delinquent delinquently delinquents delint delinted delinter delinting delints deliquate deliquesce deliquesced deliquescence deliquescences deliquescent deliquesces deliquescing deliquiate deliquiesce deliquium deliquiums deliracy delirament delirant delirate deliration delirations delire deliria deliriant deliriants deliriate delirifacient delirifacients delirious deliriously deliriousness deliriousnesses delirium deliriums delirous delis delish delisk delist delisted delisting delists delit delitescence delitescences delitescency delitescent delitous deliver deliverabilities deliverability deliverable deliverables deliverance deliverances delivered deliverer deliverers deliveress deliveries delivering deliverly deliveror delivers delivery deliveryman deliverymen dell della dellaring dellenite dellies dells delly delocalisation delocalisations delocalise delocalised delocalises delocalising delocalization delocalizations delocalize delocalized delocalizes delocalizing delomorphic delomorphous delonix deloo delope deloped delopes deloping deloul delouse deloused delouser delousers delouses delousing delph delphacid delphi delphian delphic delphically delphin delphinapterus delphine delphinia delphinic delphinidae delphinin delphinine delphinite delphinium delphiniums delphinoid delphinoidine delphinus delphocurarine delphs dels delt delta deltafication deltahedra deltahedron deltaic deltaite deltal deltalike deltarium deltas deltation delthyria delthyrial delthyrium deltic deltidia deltidial deltidium deltiologies deltiologist deltiologists deltiology deltohedra deltohedron deltoid deltoidal deltoidei deltoideus deltoids delts delubra delubrubra delubrum delubrums deluce deludable delude deluded deludedly deluder deluders deludes deludher deluding deludingly deluge deluged deluges deluging delumbate deluminize delundung delundungs delusion delusional delusionary delusionist delusionists delusions delusive delusively delusiveness delusivenesses delusory deluster delusterant delustered delustering delusters delustrant delustrants delustre deluxe delve delved delver delvers delves delving dely dem demagnetisable demagnetisation demagnetisations demagnetise demagnetised demagnetiser demagnetisers demagnetises demagnetising demagnetizable demagnetization demagnetizations demagnetize demagnetized demagnetizer demagnetizers demagnetizes demagnetizing demagnification demagnify demagog demagoged demagogic demagogical demagogically demagogies demagoging demagogism demagogisms demagogry demagogs demagogue demagogued demagogueries demagoguery demagogues demagoguing demagoguism demagoguisms demagogy demain demaine demaines demains demal deman demand demandable demandant demandants demandative demanded demander demanders demanding demandingly demandingness demandingnesses demands demanganization demanganize demanned demanning demannings demans demantoid demantoids demarcate demarcated demarcates demarcating demarcation demarcations demarcative demarcator demarcatordemarcators demarcators demarcature demarch demarche demarches demarchy demaree demargarinate demark demarkation demarkations demarked demarking demarks demasculinisation demasculinise demasculinised demasculinising demasculinization demasculinize demasculinized demasculinizing demast demasted demasting demasts dematerialisation dematerialisations dematerialise dematerialised dematerialises dematerialising dematerialization dematerializations dematerialize dematerialized dematerializes dematerializing dematiaceae dematiaceous demavend demayne demaynes deme demean demeane demeaned demeanes demeaning demeaningly demeanor demeanored demeanors demeanour demeanours demeans demeasnure demeasnures demegoric demele demembration demembre demency dement dementate dementated dementates dementating dementation demented dementedly dementedness dementednesses dementholize dementi dementia demential dementias dementie dementing dementis dements demeore demephitize demerara demeraras demerge demerged demerger demergered demergering demergers demerges demerging demerit demerited demeriting demeritorious demeritoriously demerits demerol demersal demerse demersed demerses demersing demersion demersions demes demesgne demesgnes demesman demesmerize demesne demesnes demesnial demetallize demeter demethylate demethylation demethylchlortetracycline demeton demetons demetricize demetrius demi demiadult demiangel demiassignation demiatheism demiatheist demibarrel demibastion demibastioned demibath demibeast demibelt demibob demibombard demibrassart demibrigade demibrute demibuckram demic demicadence demicannon demicanon demicanton demicaponier demichamfron demicircle demicircular demicivilized demicolumn demicoronal demicritic demicuirass demiculverin demicylinder demicylindrical demidandiprat demideify demideity demidevil demidigested demidistance demiditone demidoctor demidog demidolmen demidome demieagle demies demifarthing demifigure demiflouncing demifusion demigardebras demigauntlet demigentleman demiglace demiglobe demigod demigoddess demigoddesses demigoddessship demigods demigorge demigrate demigration demigrations demigriffin demigroat demihag demihagbut demihague demihake demihaque demihearse demiheavenly demihigh demihogshead demihorse demihuman demijambe demijohn demijohns demikindred demiking demilance demilancer demilawyer demilegato demilion demilitarisation demilitarisations demilitarise demilitarised demilitarises demilitarising demilitarization demilitarizations demilitarize demilitarized demilitarizes demilitarizing demiliterate demilune demilunes demiluster demilustre demiman demimark demimentoniere demimetope demimillionaire demimondain demimondaine demimondaines demimonde demimondes demimonk deminatured demineralisation demineralisations demineralise demineralised demineraliser demineralises demineralising demineralization demineralizations demineralize demineralized demineralizer demineralizers demineralizes demineralizing deminude deminudity demioctagonal demioctangular demiofficial demiorbit demiourgoi demiowl demiox demipagan demiparadise demiparallel demipauldron demipectinate demipesade demipike demipillar demipique demipiques demiplacate demiplate demipomada demipremise demipremiss demipriest demipronation demipuppet demiquaver demiracle demiram demirelief demireliefs demirep demirepdom demirepdoms demireps demirevetment demirhumb demirilievo demirobe demisability demisable demisacrilege demisang demisangue demisavage demiscible demise demiseason demisecond demised demisemiquaver demisemiquavers demisemitone demises demisheath demishirt demising demisolde demisovereign demisphere demiss demission demissionary demissions demissive demissly demissness demissory demist demisted demister demisters demisting demists demisuit demit demitasse demitasses demitint demitoilet demitone demitrain demitranslucence demits demitted demitting demitube demiturned demiurge demiurgeous demiurges demiurgic demiurgical demiurgically demiurgism demiurgos demiurgus demiurguses demivambrace demivierge demivirgin demivoice demivol demivolt demivolte demivoltes demivolts demivotary demiwivern demiwolf demiworld demiworlds demnition demo demob demobbed demobbing demobilisation demobilisations demobilise demobilised demobilises demobilising demobilization demobilizations demobilize demobilized demobilizes demobilizing demobs demochelys democracies democracy democrat democratian democratic democratical democratically democraties democratifiable democratisation democratisations democratise democratised democratiser democratises democratising democratism democratist democratists democratization democratizations democratize democratized democratizer democratizers democratizes democratizing democrats democraty democraw democritean demode demodectic demoded demodex demodulate demodulated demodulates demodulating demodulation demodulations demodulator demodulators demoed demogenic demogorgon demographer demographers demographic demographical demographically demographics demographies demographist demography demoid demoing demoiselle demoiselles demolish demolished demolisher demolishers demolishes demolishing demolishment demolishments demolition demolitionary demolitionist demolitionists demolitions demological demologies demology demon demonastery demoness demonesses demonetisation demonetisations demonetise demonetised demonetises demonetising demonetization demonetizations demonetize demonetized demonetizes demonetizing demoniac demoniacal demoniacally demoniacism demoniacisms demoniacs demonial demonian demonianism demonianisms demoniast demonic demonical demonically demonifuge demonio demonisation demonise demonised demonises demonish demonishness demonising demonism demonisms demonist demonists demonization demonizations demonize demonized demonizes demonizing demonkind demonland demonlike demonocracies demonocracy demonograph demonographer demonographies demonography demonolater demonolaters demonolatries demonolatrous demonolatrously demonolatry demonologer demonologic demonological demonologically demonologies demonologist demonologists demonology demonomancy demonomania demonomanias demonomanie demonomist demonomy demonophobia demonopolize demonries demonry demons demonship demonstrabilities demonstrability demonstrable demonstrableness demonstrablenesses demonstrably demonstrance demonstrandum demonstrant demonstratability demonstratable demonstrate demonstrated demonstratedly demonstrater demonstrates demonstrating demonstration demonstrational demonstrationist demonstrationists demonstrations demonstrative demonstratively demonstrativeness demonstrativenesses demonstratives demonstrator demonstrators demonstratorship demonstratory demophil demophile demophilism demophobe demophobia demorage demoralisation demoralisations demoralise demoralised demoraliser demoralisers demoralises demoralising demoralisingly demoralization demoralizations demoralize demoralized demoralizer demoralizers demoralizes demoralizing demoralizingly demorphinization demorphism demos demoses demosthenes demosthenic demot demote demoted demotes demothball demotic demoticist demoticists demotics demoting demotion demotions demotist demotists demotivate demotivated demotivates demotivating demount demountability demountable demounted demounting demounts demove dempne dempster dempsters dempt demulce demulceate demulcent demulcents demulsibility demulsification demulsifications demulsified demulsifier demulsifiers demulsifies demulsify demulsifying demulsion demultiplex demultiplexed demultiplexer demultiplexers demultiplexes demultiplexing demur demure demured demurely demureness demurenesses demurer demures demurest demuring demurity demurrable demurrage demurrages demurral demurrals demurrant demurred demurrer demurrers demurring demurringly demurs demutization demutualisation demutualisations demutualise demutualised demutualises demutualising demutualization demutualizations demutualize demutualized demutualizes demutualizing demy demyelinate demyelinated demyelinates demyelinating demyelination demyelinations demyship demyships demystification demystifications demystified demystifier demystifiers demystifies demystify demystifying demythify demythologisation demythologisations demythologise demythologised demythologiser demythologises demythologising demythologization demythologizations demythologize demythologized demythologizer demythologizers demythologizes demythologizing den dename denar denarcotization denarcotize denari denaries denarii denarinarii denarius denaro denars denary denasalize denasalized denasalizing denat denationalisation denationalisations denationalise denationalised denationalises denationalising denationalization denationalizations denationalize denationalized denationalizes denationalizing denaturalisation denaturalisations denaturalise denaturalised denaturalises denaturalising denaturalization denaturalizations denaturalize denaturalized denaturalizes denaturalizing denaturant denaturants denaturate denaturation denaturational denaturations denature denatured denatures denaturing denaturisation denaturise denaturised denaturiser denaturises denaturising denaturization denaturize denaturized denaturizer denaturizes denaturizing denay denayed denaying denays denazification denazifications denazified denazifies denazify denazifying denda dendra dendrachate dendrachates dendral dendranthema dendraspis dendraxon dendric dendriform dendrite dendrites dendritic dendritical dendritically dendritiform dendroaspis dendrobe dendrobium dendrobiums dendrocalamus dendroceratine dendrochronological dendrochronologically dendrochronologies dendrochronologist dendrochronologists dendrochronology dendroclastic dendroclimatologies dendroclimatology dendrocoelan dendrocoele dendrocoelous dendrocolaptes dendrocolaptidae dendrocolaptine dendroctonus dendrodic dendrodont dendrodra dendroglyph dendroglyphs dendrogram dendrograms dendrograph dendrography dendroica dendroid dendroidal dendrolagus dendrolater dendrolatries dendrolatry dendrolite dendrologic dendrological dendrologies dendrologist dendrologists dendrologous dendrology dendromecon dendrometer dendrometers dendron dendrons dendrophagous dendrophil dendrophile dendrophilous dendrophis dendrophises dene deneb denegate denegation denegations denehole denervate denervated denervates denervating denervation denervations denes denet denets denetted denetting deneutralization dengue dengues deni deniabilities deniability deniable deniably denial denials denicotine denicotinise denicotinize denicotinized denicotinizes denicotinizing denied denier denierage denierer deniers denies denigrate denigrated denigrates denigrating denigration denigrations denigrative denigrator denigrators denigratory denim denimed denims denisonia denitrate denitrated denitrates denitrating denitration denitrations denitrator denitrificant denitrification denitrifications denitrificator denitrificators denitrified denitrifier denitrifiers denitrifies denitrify denitrifying denitrize denizate denization denizations denize denizen denizenation denizened denizening denizenise denizenize denizens denizenship denizenships denmark denned dennet dennets denning dennis dennstaedtia dennstaedtiaceae denom denominable denominal denominant denominate denominated denominates denominating denomination denominational denominationalise denominationalism denominationalisms denominationalist denominationalists denominationalize denominationally denominations denominative denominatively denominatives denominator denominators denormalized denotable denotate denotated denotates denotating denotation denotational denotationally denotations denotative denotatively denotativeness denotatum denote denoted denotement denotements denotes denoting denotive denouement denouements denounce denounced denouncement denouncements denouncer denouncers denounces denouncing dens densate densation dense densely densen denseness densenesses denser densest denshare densher denshire densification densifications densified densifier densifiers densifies densify densifying densimeter densimeters densimetric densimetrically densimetries densimetry densities densitometer densitometers densitometric densitometries densitometry density densus dent dentagra dental dentale dentalgia dentalia dentalisation dentalise dentalised dentalising dentalism dentality dentalium dentaliums dentalization dentalize dentalized dentalizing dentallia dentally dentalman dentalmen dentals dentaphone dentaria dentarias dentaries dentary dentata dentate dentated dentately dentation dentations dentatoangulate dentatocillitate dentatocostate dentatocrenate dentatoserrate dentatosetaceous dentatosinuate dented dentel dentelated dentellated dentelle dentelles dentelliere dentello dentels dentelure denter dentes dentex dentexes dentical denticate denticete denticle denticles denticular denticulate denticulated denticulately denticulation denticulations denticule dentiferous dentification dentiform dentifrice dentifrices dentigerous dentil dentilabial dentilated dentilation dentile dentiled dentilingual dentilinguals dentiloguy dentiloquist dentiloquy dentils dentimeter dentin dentinal dentinalgia dentinasal dentine dentines denting dentinitis dentinoblast dentinocemental dentinoid dentinoma dentins dentiparous dentiphone dentiroster dentirostral dentirostrate dentiscalp dentist dentistic dentistical dentistries dentistry dentists dentition dentitions dentoid dentolabial dentolingual dentololabial dentonasal dentosurgical dents dentulous dentural denture dentures denturist denturists denty denuclearisation denuclearisations denuclearise denuclearised denuclearises denuclearising denuclearization denuclearizations denuclearize denuclearized denuclearizes denuclearizing denucleate denudant denudate denudated denudates denudating denudation denudational denudations denudative denudatory denude denuded denudement denudements denuder denuders denudes denuding denumberment denumerabilities denumerability denumerable denumerably denumeral denumerant denumerantive denumeration denumerative denunciable denunciant denunciate denunciated denunciates denunciating denunciation denunciations denunciative denunciatively denunciator denunciators denunciatory denutrition denver deny denyer denying denyingly deobstruct deobstruent deobstruents deoccidentalize deoculate deodand deodands deodar deodara deodaras deodars deodate deodates deodorant deodorants deodorisation deodorisations deodorise deodorised deodoriser deodorisers deodorises deodorising deodorization deodorizations deodorize deodorized deodorizer deodorizers deodorizes deodorizing deonerate deontic deontics deontological deontologies deontologist deontologists deontology deoperculate deoppilant deoppilate deoppilated deoppilates deoppilating deoppilation deoppilations deoppilative deorbit deorbited deorbiting deorbits deordination deorganization deorganize deorientalize deorsum deorsumvergence deorsumversion deorusumduction deosculate deossification deossify deota deoxidant deoxidate deoxidated deoxidates deoxidating deoxidation deoxidations deoxidative deoxidator deoxidisation deoxidisations deoxidise deoxidised deoxidiser deoxidisers deoxidises deoxidising deoxidization deoxidizations deoxidize deoxidized deoxidizer deoxidizers deoxidizes deoxidizing deoxy deoxycorticosterone deoxycorticosterones deoxyephedrine deoxygenate deoxygenated deoxygenates deoxygenating deoxygenation deoxygenations deoxygenise deoxygenised deoxygenises deoxygenising deoxygenization deoxygenize deoxygenized deoxygenizes deoxygenizing deoxyribonuclease deoxyribonucleases deoxyribonucleic deoxyribonucleoprotein deoxyribonucleotide deoxyribonucleotides deoxyribose deoxyriboses deozonization deozonize deozonizer dep depa depaganize depaint depainted depainting depaints depair depancreatization depancreatize depardieu deparia depark deparliament depart departed departee departees departement departements departer departers departing departings departisanize departition department departmental departmentalisation departmentalisations departmentalise departmentalised departmentalises departmentalising departmentalism departmentalisms departmentalization departmentalizations departmentalize departmentalized departmentalizes departmentalizing departmentally departmentisation departmentise departmentization departmentize departments departs departure departures depas depascent depass depasturable depasturage depasturation depasture depastured depastures depasturing depatriate depauperate depauperated depauperates depauperating depauperation depauperations depauperisation depauperise depauperised depauperises depauperising depauperization depauperize depauperized depauperizes depauperizing depayse depaysee depe depeach depeche depectible depeculate depeinct depeincted depeincting depeincts depel depencil depend dependabilities dependability dependable dependableness dependablenesses dependably dependacie dependacies dependance dependances dependancies dependancy dependant dependantly dependants depended dependence dependences dependencies dependency dependent dependently dependents depender depending dependingly depends depeople depeopled depeoples depeopling deperdit deperdite deperditely deperdition deperition deperm depermed deperming deperms depersonalisation depersonalisations depersonalise depersonalised depersonalises depersonalising depersonalization depersonalizations depersonalize depersonalized depersonalizes depersonalizing depersonize depertible depetalize depeter depetticoat dephase dephased dephasing dephilosophize dephlegm dephlegmate dephlegmated dephlegmates dephlegmating dephlegmation dephlegmations dephlegmatize dephlegmator dephlegmators dephlegmatory dephlegmedness dephlogisticate dephlogisticated dephlogisticates dephlogisticating dephlogistication dephosphorization dephosphorize dephosphorylate dephosphorylated dephosphorylates dephosphorylating dephosphorylation dephosphorylations dephycercal dephysicalization dephysicalize depickle depict depicted depicter depicters depicting depiction depictions depictive depictment depictor depictors depicts depicture depictured depictures depicturing depiedmontize depigment depigmentate depigmentation depigmentations depigmentize depilate depilated depilates depilating depilation depilations depilator depilatories depilators depilatory depilitant depilous depit deplace deplaceable deplane deplaned deplanes deplaning deplant deplantation deplasmolysis deplaster deplenish depletable deplete depleteable depleted depletes deplethoric depleting depletion depletions depletive depletory deploitation deplorabilia deplorabilities deplorability deplorable deplorableness deplorablenesses deplorably deplorate deploration deplorations deplore deplored deploredly deploredness deplorer deplorers deplores deploring deploringly deploy deployability deployable deployed deployer deployers deploying deployment deployments deploys deplumate deplumated deplumation deplumations deplume deplumed deplumes depluming deplump depoetize depoh depolarisation depolarisations depolarise depolarised depolariser depolarisers depolarises depolarising depolarization depolarizations depolarize depolarized depolarizer depolarizers depolarizes depolarizing depolish depolished depolishes depolishing depoliticisation depoliticise depoliticised depoliticises depoliticising depoliticization depoliticizations depoliticize depoliticized depoliticizes depoliticizing depollute depolluted depollutes depolluting depolymerisation depolymerisations depolymerise depolymerised depolymerises depolymerising depolymerization depolymerizations depolymerize depolymerized depolymerizes depolymerizing depone deponed deponent deponents deponer depones deponing depopularize depopulate depopulated depopulates depopulating depopulation depopulations depopulative depopulator depopulators deport deportability deportable deportation deportations deporte deported deportee deportees deporter deporters deporting deportment deportments deports deporture deposable deposal deposals depose deposed deposer deposers deposes deposing deposit deposita depositaries depositary depositation depositations deposited depositee depositing deposition depositional depositions depositive deposito depositor depositories depositors depository deposits depositum depositure deposure depot depotentiate depotentiation depots depr depravate depravation depravations deprave depraved depravedly depravedness depravednesses depravement depravements depraver depravers depraves depraving depravingly depravities depravity deprecable deprecate deprecated deprecates deprecating deprecatingly deprecation deprecations deprecative deprecatively deprecator deprecatorily deprecatoriness deprecators deprecatory depreciable depreciant depreciate depreciated depreciates depreciating depreciatingly depreciation depreciations depreciative depreciatively depreciator depreciatoriness depreciators depreciatory depredable depredate depredated depredates depredating depredation depredationist depredations depredator depredators depredatory depredicate deprehend deprehended deprehending deprehends deprehensible deprehension depress depressant depressanth depressants depressed depresses depressibilities depressibility depressible depressing depressingly depressingness depression depressional depressionary depressions depressive depressively depressiveness depressivenesses depressives depressomotor depressor depressors depressure depressurisation depressurisations depressurise depressurised depressurises depressurising depressurization depressurizations depressurize depressurized depressurizes depressurizing deprest depreter deprevation depriment deprint depriorize deprisure deprivable deprival deprivals deprivate deprivation deprivations deprivative deprive deprived deprivement deprivements depriver deprivers deprives depriving deprocedured deproceduring deprogram deprogramed deprograming deprogramme deprogrammed deprogrammer deprogrammers deprogrammes deprogramming deprogrammings deprograms deprome deprostrate deprotestantize deprovincialize depsid depside depsides dept depth depthen depthing depthless depthlessness depthometer depths depthways depthwise depucel depudorate depullulation depulse depurant depurants depurate depurated depurates depurating depuration depurations depurative depuratives depurator depurators depuratory depure depurge depurged depurging depurition depursement deputable deputation deputational deputationise deputationist deputationize deputations deputative deputatively deputator depute deputed deputes deputies deputing deputisation deputise deputised deputises deputising deputization deputizations deputize deputized deputizes deputizing deputy deputyship dequantitate dequeen dequeue dequeued dequeues dequeuing der derabbinize deracialise deracialised deracialises deracialising deracialize deracialized deracializes deracializing deracinate deracinated deracinates deracinating deracination deracinations deracine deradelphus deradenitis deradenoncus derah deraign deraigned deraigning deraignment deraigns derail derailed derailer derailers derailing derailleur derailleurs derailment derailments derails derange derangeable deranged derangement derangements deranger derangers deranges deranging derat derate derated derater derates derating deratings deration derationalisation derationalise derationalization derationalize derationed derationing derations deratisation deratization deratize deratized deratizing derats deratted deratting deray derayed deraying derays derbies derbukka derby derbylite derbyshire dere derealisation derealization derealizations derecho derecognise derecognised derecognises derecognising derecognition derecognitions derecognize derecognized derecognizes derecognizing dered dereference dereferenced dereferences dereferencing deregister deregistered deregistering deregisters deregistration deregistrations deregulate deregulated deregulates deregulating deregulation deregulationise deregulationize deregulations deregulator deregulators deregulatory dereign dereism dereistic dereistically derelict derelicta dereliction derelictions derelictly derelictness derelicts dereligion dereligionise dereligionised dereligionises dereligionising dereligionize dereligionized dereligionizes dereligionizing dereling derelinquendi derelinquish derencephalocele derencephalus derepress derepressed derepresses derepressing derepression derepressions derequisition derequisitioned derequisitioning derequisitions derere deres deresinate deresinize derestrict derestricted derestricting derestriction derestrictions derestricts derf derfly derfness derham derhams derib deribbed deribbing deribs deric deride derided derider deriders derides deriding deridingly derig derigged derigging derigs dering deringer deringers derisible derision derisions derisive derisively derisiveness derisivenesses derisorily derisory deriv derivability derivable derivably derival derivant derivate derivately derivates derivation derivational derivationally derivationist derivationists derivations derivatist derivative derivatively derivativeness derivativenesses derivatives derivatization derivatizations derivatize derivatized derivatizes derivatizing derive derived derivedly derivedness deriver derivers derives deriving derk derm derma dermabrasion dermabrasions dermacentor dermad dermahemia dermal dermalgia dermalith dermamycosis dermamyiasis dermanaplasty dermapostasis dermaptera dermapteran dermapterans dermapterous dermas dermaskeleton dermasurgery dermatagra dermatalgia dermataneuria dermatatrophia dermatauxe dermathemia dermatherm dermatic dermatine dermatitides dermatitis dermatitises dermatobia dermatocele dermatocellulitis dermatoconiosis dermatocoptic dermatocyst dermatodynia dermatogen dermatogens dermatoglyphic dermatoglyphics dermatograph dermatographia dermatographias dermatographic dermatographies dermatographism dermatography dermatoheteroplasty dermatoid dermatologic dermatological dermatologies dermatologist dermatologists dermatology dermatolysis dermatoma dermatomal dermatome dermatomere dermatomes dermatomic dermatomuscular dermatomyces dermatomycosis dermatomyoma dermatomyositis dermatomyositises dermatoneural dermatoneurology dermatoneurosis dermatonosus dermatopathia dermatopathic dermatopathology dermatopathophobia dermatophobia dermatophone dermatophony dermatophyte dermatophytes dermatophytic dermatophytoses dermatophytosis dermatoplasm dermatoplast dermatoplastic dermatoplasties dermatoplasty dermatopnagic dermatopsy dermatoptic dermatorrhagia dermatorrhea dermatorrhoea dermatosclerosis dermatoscopy dermatoses dermatosiophobia dermatosis dermatoskeleton dermatotherapy dermatotome dermatotomy dermatotropic dermatoxerasia dermatozoon dermatozoonosis dermatozzoa dermatrophia dermatrophy dermatropic dermenchysis dermestes dermestid dermestidae dermestids dermestoid dermic dermis dermises dermitis dermititis dermoblast dermobranchiata dermobranchiate dermochelyidae dermochrome dermococcus dermogastric dermographia dermographic dermographies dermographism dermography dermohemal dermohemia dermohumeral dermoid dermoidal dermoidectomy dermoids dermol dermolysis dermomuscular dermomycosis dermonecrotic dermoneural dermoneurosis dermonosology dermoosseous dermoossification dermopathic dermopathy dermophlebitis dermophobe dermophyte dermophytic dermoplasty dermoptera dermopteran dermopterous dermoreaction dermorhynchous dermosclerite dermoskeletal dermoskeleton dermostenosis dermostosis dermosynovitis dermotherm dermotropic dermovaccine derms dermutation dern derned derner dernful dernier derning dernly derns dero derobe derodidymus derog derogate derogated derogately derogates derogating derogation derogations derogative derogatively derogator derogatorily derogatoriness derogatorinesses derogatory deromanticize derotremate derotrematous derotreme derout derri derriare derrick derricked derricking derrickman derrickmen derricks derrid derride derriere derrieres derries derringer derringers derrire derris derrises derrière derrières derry derth derths dertra dertrotheca dertrum deruinate deruralize derust derv derve dervish dervishes dervishhood dervishism dervishlike dervs des desaccharification desacralisation desacralisations desacralise desacralised desacralises desacralising desacralization desacralizations desacralize desacralized desacralizes desacralizing desagrement desalinate desalinated desalinates desalinating desalination desalinations desalinator desalinators desalinisation desalinisations desalinise desalinised desalinises desalinising desalinization desalinizations desalinize desalinized desalinizes desalinizing desalt desalted desalter desalters desalting desaltings desalts desamidase desamidization desaminase desand desanded desanding desands desaturate desaturated desaturation desaturations desaurin desaurine desc descale descaled descales descaling descamisado descamisados descant descanted descanter descanters descanting descantist descants descartes descend descendability descendable descendance descendant descendants descended descendence descendent descendental descendentalism descendentalist descendentalistic descendents descender descenders descendibility descendible descending descendingly descendings descends descension descensional descensionist descensions descensive descensories descensory descent descents deschool deschooled deschooler deschoolers deschooling deschoolings deschools descloizite descort descramble descrambled descrambler descramblers descrambles descrambling descrial describability describable describably describe described describent describer describers describes describing descried descrier descriers descries descript description descriptionist descriptionless descriptions descriptive descriptively descriptiveness descriptivenesses descriptives descriptivism descriptivisms descriptivist descriptivists descriptor descriptors descriptory descrive descrived descrives descriving descry descrying descurainia descure desdemona deseam deseasonalize desecate desecrate desecrated desecrater desecraters desecrates desecrating desecration desecrations desecrator desecrators desectionalize deseed desegmentation desegmented desegrated desegregate desegregated desegregates desegregating desegregation desegregationist desegregationists desegregations deselect deselected deselecting deselection deselections deselects desemer desensitisation desensitisations desensitise desensitised desensitiser desensitisers desensitises desensitising desensitization desensitizations desensitize desensitized desensitizer desensitizers desensitizes desensitizing desentimentalize deseret deserpidine deserpidines desert deserted desertedly desertedness deserter deserters desertful desertfully desertic deserticolous desertification desertifications deserting desertion desertions desertisation desertisations desertism desertization desertizations desertless desertlessly desertlike desertness desertress desertrice deserts desertward deserve deserved deservedly deservedness deservednesses deserveless deserver deservers deserves deserving deservingly deservingness deservingnesses deservings desesperance desex desexed desexes desexing desexualisation desexualisations desexualise desexualised desexualises desexualising desexualization desexualizations desexualize desexualized desexualizes desexualizing deshabille deshabilles desi desiatin desicate desiccant desiccants desiccate desiccated desiccates desiccating desiccation desiccations desiccative desiccatives desiccator desiccators desiccatory desiderable desiderant desiderata desiderate desiderated desiderates desiderating desideration desiderations desiderative desideratum desideria desiderium desiderta desidiose desidious desight desightment design designable designado designate designated designates designating designation designational designations designative designator designators designatory designatum designed designedly designedness designee designees designer designers designful designfully designfulness designing designingly designings designless designlessly designlessness designment designments designs desilicate desilicated desilicating desilicification desilicified desilicify desiliconization desiliconize desilt desilver desilvered desilvering desilverisation desilverisations desilverise desilverised desilverises desilverising desilverization desilverizations desilverize desilverized desilverizer desilverizes desilverizing desilvers desine desined desinence desinences desinent desinential desines desining desiodothyroxine desipience desipiences desipiency desipient desipramine desipramines desirabilia desirabilities desirability desirable desirableness desirablenesses desirables desirably desire desireable desired desiredly desiredness desireful desirefulness desireless desirelessness desirer desirers desires desiring desiringly desirous desirously desirousness desirousnesses desist desistance desistances desisted desistence desistences desisting desistive desists desition desitive desize desk deskbound deskill deskilled deskilling deskills desklike deskman deskmen desks desktop desktops deslime desma desmachymatous desmachyme desmacyte desman desmans desmanthus desmarestiaceous desmectasia desmepithelium desmic desmid desmidiaceae desmidiaceous desmidian desmidiologist desmidiology desmidium desmids desmine desmines desmitis desmocyte desmocytoma desmodium desmodiums desmodont desmodontidae desmodromic desmodus desmodynia desmogen desmogenous desmognathism desmognathous desmography desmograthus desmohemoblast desmoid desmoids desmolase desmology desmoma desmon desmoneme desmoneoplasm desmonosology desmopathologist desmopathology desmopathy desmopelmous desmopexia desmopyknosis desmorrhexis desmose desmosis desmosite desmosomal desmosome desmosomes desmotomy desmotrope desmotropic desmotropism desmotropy desobligeant desobligeante desobligeantes desocialization desocialize desoeuvre desolate desolated desolately desolateness desolatenesses desolater desolaters desolates desolating desolatingly desolation desolations desolative desolator desolators desolatory desole desonation desophisticate desophisticated desophistication desorb desorbed desorbing desorbs desoriente desorption desorptions desoxalate desoxalic desoxy desoxyanisoin desoxybenzoin desoxycinchonine desoxycorticosterone desoxyephedrine desoxymorphine desoxyribonuclease desoxyribonucleic desoxyribonucleoprotein desoxyribose despair despaired despairer despairers despairful despairfully despairfulness despairing despairingly despairingness despairs desparple despatch despatched despatcher despatchers despatches despatching despeche despecialization despecialize despecificate despecification despect despectant despeed despend desperacy desperado desperadoes desperadoism desperados desperance desperate desperately desperateness desperatenesses desperation desperations despert despicabilities despicability despicable despicableness despicablenesses despicably despiciency despight despights despin despiritualisation despiritualise despiritualization despiritualize despiritualized despiritualizes despiritualizing despisable despisableness despisal despisals despise despised despisedness despisednesses despisement despisements despiser despisers despises despising despisingly despite despited despiteful despitefully despitefulness despitefulnesses despiteous despiteously despites despiting despitous despoil despoiled despoiler despoilers despoiling despoilment despoilments despoils despoina despoliation despoliations despond desponded despondence despondences despondencies despondency despondent despondently despondentness desponder desponding despondingly despondings desponds desponsage desponsate desponsories despose despot despotat despotate despotates despotats despotic despotical despotically despoticalness despoticalnesses despoticly despotise despotism despotisms despotist despotize despotocracies despotocracy despots despouse despraise despumate despumated despumates despumating despumation despumations despume desquamate desquamated desquamates desquamating desquamation desquamations desquamative desquamatory desray dess dessa desse dessert desserts dessertspoon dessertspoonful dessertspoonfuls dessertspoons dessertspoonsful desses dessiatine dessiatines dessicate dessicated dessication dessignment dessignments dessil dessous dessus dessyatine dessyatines destabilisation destabilise destabilised destabiliser destabilisers destabilises destabilising destabilization destabilizations destabilize destabilized destabilizer destabilizers destabilizes destabilizing destain destained destaining destains destalinise destalinization destalinize destandardize destemper destempered destempering destempers desterilise desterilization desterilize desterilized desterilizes desterilizing destigmatisation destigmatization destigmatize destigmatizing destin destinal destinate destinated destinates destinating destination destinations destine destined destines destinezite destinies destining destinism destinist destiny destituent destitute destituted destitutely destituteness destitutenesses destitutes destituting destitution destitutions desto destool destoolment destour destrer destress destressed destrier destriers destroy destroyable destroyed destroyer destroyers destroying destroyingly destroys destruct destructed destructibilities destructibility destructible destructibleness destructiblenesses destructing destruction destructional destructionism destructionist destructionists destructions destructive destructively destructiveness destructivenesses destructives destructivism destructivist destructivists destructivities destructivity destructor destructors destructory destructs destructuralize destrudo destry destuff destuffing destuffs desubstantialize desubstantiate desucration desudation desuete desuetude desuetudes desugar desugared desugaring desugarize desugars desulfur desulfurate desulfurated desulfurating desulfuration desulfured desulfuring desulfurisation desulfurise desulfurised desulfuriser desulfurising desulfurization desulfurizations desulfurize desulfurized desulfurizer desulfurizers desulfurizes desulfurizing desulfurs desulphur desulphurate desulphurated desulphurates desulphurating desulphuration desulphurations desulphured desulphuret desulphuring desulphurisation desulphurisations desulphurise desulphurised desulphuriser desulphurisers desulphurises desulphurising desulphurization desulphurizations desulphurize desulphurized desulphurizer desulphurizers desulphurizes desulphurizing desulphurs desultor desultorily desultoriness desultorinesses desultorious desultory desume desuperheater desuvre desyatin desyatins desyl desynapsis desynaptic desynchronisation desynchronise desynchronising desynchronization desynchronize desynchronizing desyne desyned desynes desyning desynonymization desynonymize det detach detachabilities detachability detachable detachableness detachably detache detached detachedly detachedness detachednesses detacher detachers detaches detaching detachment detachments detachs detacwable detail detailed detailedly detailedness detailednesses detailer detailers detailing detailism detailist details detain detainable detainal detained detainee detainees detainer detainers detaining detainingly detainment detainments detains detant detar detassel detasseled detasseling detasselled detasselling detassels detat detax detd detect detectabilities detectability detectable detectably detectaphone detected detecter detecters detectible detecting detection detections detective detectivelike detectives detectivism detectivist detectivists detectophone detectophones detector detectors detects detenant detenebrate detent detente detentes detention detentions detentive detents detenu detenue detenues detenus deter deterge deterged detergence detergences detergencies detergency detergent detergents deterger detergers deterges detergible deterging detering deteriorate deteriorated deteriorates deteriorating deterioration deteriorationist deteriorationists deteriorations deteriorative deteriorator deteriorism deteriorisms deteriorities deteriority determ determa determent determents determinabilities determinability determinable determinableness determinablenesses determinably determinacies determinacy determinant determinantal determinants determinate determinated determinately determinateness determinatenesses determinates determinating determination determinations determinative determinatively determinativeness determinativenesses determinatives determinator determinators determine determined determinedly determinedness determinednesses determiner determiners determines determining determinism determinisms determinist deterministic deterministically determinists determinoid deterrabilities deterrability deterrable deterration deterred deterrence deterrences deterrent deterrently deterrents deterrer deterrers deterring deters detersion detersions detersive detersively detersiveness detersives detest detestabilities detestability detestable detestableness detestablenesses detestably detestation detestations detested detester detesters detesting detests dethatch dethatched dethatches dethatching dethronable dethrone dethroned dethronement dethronements dethroner dethroners dethrones dethroning dethronings dethyroidism deti detick deticked deticker detickers deticking deticks detin detinet detinue detinues detinuit detn detonabilities detonability detonable detonatability detonatable detonate detonated detonates detonating detonation detonational detonations detonative detonator detonators detonize detorsion detorsions detort detorted detorting detortion detortions detorts detour detoured detouring detournement detours detox detoxed detoxes detoxicant detoxicants detoxicate detoxicated detoxicates detoxicating detoxication detoxications detoxicator detoxification detoxifications detoxified detoxifier detoxifies detoxify detoxifying detoxing detract detracted detracter detracting detractingly detractings detraction detractions detractive detractively detractiveness detractor detractors detractory detractress detractresses detracts detrain detrained detraining detrainment detrainments detrains detransitivize detraque detraquee detraquees detraques detray detrect detrench detribalisation detribalisations detribalise detribalised detribalises detribalising detribalization detribalizations detribalize detribalized detribalizes detribalizing detriment detrimental detrimentality detrimentally detrimentalness detrimentals detriments detrital detrited detrition detritions detritivorous detritus detrivorous detroit detruck detrude detruded detrudes detruding detruncate detruncated detruncates detruncating detruncation detruncations detrusion detrusions detrusive detrusor detruss dette detubation detumesce detumescence detumescences detumescent detune detuned detunes detuning detur deturb deturn deturpate detusk deucalion deuce deuced deucedly deuces deucing deuddarn deuddarns deul deunam deuniting deurbanize deurwaarder deus deusan deutencephalic deutencephalon deuteragonist deuteragonists deuteranomal deuteranomalies deuteranomalous deuteranomaly deuteranope deuteranopes deuteranopia deuteranopias deuteranopic deuterate deuterated deuterates deuterating deuteration deuterations deuteric deuteride deuterides deuterium deuteriums deuteroalbumose deuterocanonical deuterocasease deuterocone deuteroconid deuterodome deuteroelastose deuterofibrinose deuterogamies deuterogamist deuterogamists deuterogamy deuterogelatose deuterogenesis deuterogenic deuteroglobulose deuteromorphic deuteromycetes deuteromycota deuteromycotina deuteromyosinose deuteron deuteronomic deuteronomist deuteronomy deuterons deuteropathic deuteropathy deuteroplasm deuteroplasms deuteroprism deuteroproteose deuteroscopic deuteroscopies deuteroscopy deuterostoma deuterostomatous deuterostome deuterostomes deuterosy deuterotokous deuterotoky deuterotype deuterovitellose deuterozooid deutobromide deutocarbonate deutochloride deutomala deutomalal deutomalar deutomerite deuton deutonephron deutons deutonymph deutonymphal deutoplasm deutoplasmic deutoplasms deutoplastic deutoscolex deutovum deutoxide deutsche deutschemark deutschemarks deutschland deutschmark deutzia deutzias deux deuzan dev deva devachan devadasi deval devall devalled devalling devalls devaloka devalorisation devalorisations devalorise devalorised devalorises devalorising devalorization devalorizations devalorize devalorized devalorizes devalorizing devaluate devaluated devaluates devaluating devaluation devaluations devalue devalued devalues devaluing devanagari devanagaris devance devant devaporate devaporation devaraja devarshi devas devast devastate devastated devastates devastating devastatingly devastation devastations devastative devastator devastators devastavit devastavits devaster devata devaul devaunt devchar deve devein deveined deveining deveins devel develed develin develing develled develling develop developability developable develope developed developedness developement developer developers developes developing developist development developmental developmentalist developmentally developmentarian developmentary developmentist developments developoid developpa developpas developpe developpes develops devels devenustate deverbal deverbals deverbative deverbatives devertebrated devest devested devesting devests devex devexity devi deviability deviable deviance deviances deviancies deviancy deviant deviants deviascope deviate deviated deviately deviates deviating deviation deviational deviationism deviationisms deviationist deviationists deviations deviative deviator deviators deviatory device deviceful devicefully devicefulness devices devide devil devilbird devildom devildoms deviled deviler deviless devilesses devilet devilets devilfish devilfishes devilhood deviling devilings devilise devilish devilishly devilishness devilishnesses devilism devilisms devility devilize devilized devilizing devilkin devilkins devilled devillike devilling devilman devilment devilments devilmonger devilries devilry devils devilship devilships deviltries deviltry devilward devilwise devilwood devilwoods devily devinct devious deviously deviousness deviousnesses devirginate devirgination devirginator devirilize devisability devisable devisal devisals deviscerate devisceration devise devised devisee devisees deviser devisers devises devising devisings devisor devisors devitalisation devitalisations devitalise devitalised devitalises devitalising devitalization devitalizations devitalize devitalized devitalizes devitalizing devitaminize devitation devitrifiable devitrification devitrifications devitrified devitrifies devitrify devitrifying devling devlings devocalisation devocalise devocalised devocalises devocalising devocalization devocalizations devocalize devocalized devocalizes devocalizing devocate devocation devoice devoiced devoices devoicing devoid devoir devoirs devolatilisation devolatilisations devolatilise devolatilised devolatilises devolatilising devolatilization devolatilizations devolatilize devolatilized devolatilizes devolatilizing devolute devolution devolutionary devolutionist devolutionists devolutions devolutive devolve devolved devolvement devolvements devolves devolving devon devonian devonite devonport devonports devons devonshire devoration devorative devore devores devot devota devotary devote devoted devotedly devotedness devotednesses devotee devoteeism devotees devotement devotements devoter devotes devoting devotion devotional devotionalism devotionalist devotionalists devotionalities devotionality devotionally devotionalness devotionalnesses devotionals devotionary devotionate devotionist devotionists devotions devoto devots devour devourable devoured devourer devourers devouress devouring devouringly devouringness devourment devourments devours devout devouter devoutest devoutful devoutless devoutlessly devoutlessness devoutly devoutness devoutnesses devove devow devs devulcanization devulcanize devulgarize devulgarized devvel devvelled devvelling devvels devwsor dew dewal dewan dewanee dewani dewanis dewannies dewanny dewans dewanship dewar dewars dewata dewater dewatered dewaterer dewaterers dewatering dewaterings dewaters dewax dewaxed dewaxes dewaxing dewbeam dewberries dewberry dewcap dewclaw dewclawed dewclaws dewcup dewdamp dewdrop dewdropper dewdrops dewed dewer dewey deweyan deweylite dewfall dewfalls dewflower dewfull dewier dewiest dewily dewiness dewinesses dewing dewitt dewitted dewitting dewitts dewlap dewlapped dewlaps dewlapt dewless dewlight dewlike dewool dewooled dewooling dewools deworm dewormed dewormer dewormers deworming deworms dewpoint dewpoints dewret dewrot dews dewtry dewworm dewy dex dexamethasone dexamethasones dexamphetamine dexamphetamines dexedrine dexes dexie dexies dexiocardia dexiotrope dexiotropic dexiotropism dexiotropous dexter dexterical dexterities dexterity dexterous dexterously dexterousness dexterousnesses dexters dexterwise dextorsal dextrad dextral dextralities dextrality dextrally dextran dextranase dextranases dextrane dextrans dextraural dextrer dextrin dextrinase dextrinate dextrine dextrines dextrinize dextrinous dextrins dextro dextroamphetamine dextroamphetamines dextroaural dextrocardia dextrocardiac dextrocardiacs dextrocardial dextrocardias dextrocerebral dextrocular dextrocularity dextroduction dextroglucose dextroglucoses dextrogyrate dextrogyration dextrogyratory dextrogyre dextrogyrous dextrolactic dextrolimonene dextromanual dextropedal dextrophosphate dextrophosphates dextropinene dextrorotary dextrorotatary dextrorotation dextrorotations dextrorotatory dextrorsal dextrorse dextrorsely dextrosazone dextrose dextroses dextrosinistral dextrosinistrally dextrosuria dextrotartaric dextrotropic dextrotropous dextrous dextrously dextrousness dextrousnesses dextroversion dexy dey deyhouse deynt deys deyship deywoman dezinc dezincation dezinced dezincification dezincified dezincify dezincifying dezincing dezincked dezincking dezincs dezinkify dezymotize dfault dfsenwind dft dg dgag dghaisa dha dhabb dhai dhak dhaka dhaks dhal dhals dhaman dhamma dhamnoo dhan dhangar dhansak dhansaks dhanuk dhanush dharana dharani dharma dharmakaya dharmas dharmashastra dharmasmriti dharmasutra dharmic dharmsala dharmsalas dharmshala dharmshalas dharna dharnas dhaulagiri dhaura dhauri dhava dhaw dhawa dhegiha dheri dhikr dhikrs dhobee dhobey dhobi dhobie dhobies dhobis dhoby dhol dhole dholes dholl dholls dhols dhoney dhoni dhooley dhoolies dhooly dhoon dhoora dhooras dhooti dhootie dhooties dhootis dhotee dhoti dhotie dhoties dhotis dhoty dhoul dhourra dhourras dhow dhows dhu dhunchee dhunchi dhurna dhurnas dhurra dhurras dhurrie dhurries dhurry dhuti dhutis dhyal dhyana di dia diabantite diabase diabases diabasic diabaterial diabatic diabeta diabetes diabetic diabetical diabetics diabetogenic diabetogenous diabetologist diabetologists diabetometer diabetophobia diable diablene diablerie diableries diablery diables diablo diablotin diabolarch diabolarchy diabolatry diabolepsy diaboleptic diabolic diabolical diabolically diabolicalness diabolicalnesses diabolification diabolifuge diabolify diabolisation diabolise diabolised diabolises diabolising diabolism diabolisms diabolist diabolists diabolization diabolize diabolized diabolizes diabolizing diabolo diabological diabologies diabology diabolologies diabolology diabolonian diabolos diabolus diabrosis diabrotic diacalpa diacanthous diacatholicon diacatholicons diacaustic diacaustics diacetamide diacetate diacetic diacetin diacetine diacetonuria diaceturia diacetyl diacetylene diacetylmorphine diacetylmorphines diacetyls diachaenium diachoresis diachoretic diachronic diachronically diachronicness diachronies diachronism diachronisms diachronistic diachronous diachrony diachylon diachylons diachylum diachylums diachyma diacid diacidic diacids diacipiperazine diaclase diaclasis diaclasite diaclastic diacle diaclinal diacoca diacodion diacodions diacodium diacodiums diacoele diacoelia diacoelosis diaconal diaconate diaconates diaconia diaconica diaconicon diaconicons diaconicum diaconus diacope diacoustic diacoustics diacranterian diacranteric diacrisis diacritic diacritical diacritically diacriticals diacritics diacromyodian diact diactin diactinal diactine diactinic diactinism diactinisms diaculum diadelphia diadelphian diadelphic diadelphous diadem diademed diademing diadems diaderm diadermic diadic diadkokinesia diadoche diadochi diadochian diadochic diadochies diadochite diadochokinesia diadochokinesis diadochokinetic diadochy diadokokinesis diadophis diadoumenos diadrom diadrome diadromous diadroms diadumenus diaene diaereses diaeresis diaeretic diaetetae diag diageneses diagenesis diagenetic diagenetically diageotropic diageotropically diageotropism diageotropisms diageotropy diaglyph diaglyphic diaglyphs diaglyptic diagnosabilities diagnosability diagnosable diagnose diagnoseable diagnosed diagnoses diagnosing diagnosis diagnostic diagnostical diagnostically diagnosticate diagnosticated diagnosticating diagnostication diagnostician diagnosticians diagnostics diagometer diagometers diagonal diagonalisable diagonalisation diagonalise diagonalised diagonalises diagonalising diagonality diagonalizable diagonalization diagonalizations diagonalize diagonalized diagonalizes diagonalizing diagonally diagonals diagonalwise diagonial diagonic diagram diagramed diagraming diagrammable diagrammatic diagrammatical diagrammatically diagrammatician diagrammatize diagrammed diagrammer diagrammers diagrammeter diagramming diagrammitically diagrams diagraph diagraphic diagraphical diagraphics diagraphs diagredium diagrid diagrids diagrydium diaheliotropic diaheliotropically diaheliotropism diaheliotropisms diaka diakineses diakinesis diakinetic diakonika diakonikon dial dialcohol dialdehyde dialect dialectal dialectalize dialectally dialectic dialectical dialectically dialectician dialecticians dialecticise dialecticism dialecticisms dialecticize dialectics dialectologer dialectologic dialectological dialectologically dialectologies dialectologist dialectologists dialectology dialector dialects dialed dialer dialers dialeurodes dialin dialiness dialing dialings dialist dialists dialkyl dialkylamine dialkylic diallage diallages diallagic diallagite diallagoid dialled diallel diallela dialleli diallelon diallelus dialler diallers dialling diallings diallist diallists diallyl dialog dialoged dialoger dialogers dialogged dialogging dialogic dialogical dialogically dialoging dialogise dialogised dialogises dialogising dialogism dialogist dialogistic dialogistical dialogistically dialogists dialogite dialogites dialogize dialogized dialogizes dialogizing dialogs dialogue dialogued dialoguer dialoguers dialogues dialoguing dials dialup dialuric dialycarpous dialypetalous dialyphyllous dialysabilities dialysability dialysable dialysate dialysates dialysation dialyse dialysed dialysepalous dialyser dialysers dialyses dialysing dialysis dialystaminous dialystelic dialystely dialytic dialytically dialyzabilities dialyzability dialyzable dialyzate dialyzates dialyzation dialyzations dialyzator dialyze dialyzed dialyzer dialyzers dialyzes dialyzing diam diamagnet diamagnetic diamagnetically diamagnetism diamagnetisms diamagnetize diamagnetometer diamagnets diamant diamante diamantes diamantiferous diamantine diamantoid diamanté diamantés diamat diamb diamber diambic diamegnetism diamesogamous diameter diameters diametral diametrally diametric diametrical diametrically diamicton diamide diamides diamido diamidogen diamin diamine diamines diaminogen diaminogene diaminopropyltetramethylenediamine diamins diammine diamminobromide diamminonitrate diammonium diamond diamondback diamondbacked diamondbacks diamonded diamondiferous diamonding diamondise diamondize diamondized diamondizing diamondlike diamonds diamondwise diamondwork diamorphine diamorphines diamorphosis diamyl diamylene diamylose dian diana diander diandria diandrian diandries diandrous diandry diane dianetics dianilid dianilide dianisidin dianisidine dianite dianodal dianoetic dianoetical dianoetically dianoia dianoialogy dianthus dianthuses diantre diapalma diapase diapases diapasm diapason diapasonal diapasons diapause diapaused diapauses diapausing diapedeses diapedesis diapedetic diapensia diapensiaceae diapensiaceous diapensiales diapente diapentes diaper diapered diapering diaperings diapers diapery diaphane diaphaneities diaphaneity diaphanie diaphanometer diaphanometers diaphanometric diaphanometry diaphanoscope diaphanoscopy diaphanotype diaphanous diaphanously diaphanousness diaphanousnesses diaphany diaphemetric diapheromera diaphone diaphones diaphonia diaphonic diaphonical diaphonies diaphony diaphorase diaphorases diaphoreses diaphoresis diaphoretic diaphoretical diaphoretics diaphorite diaphote diaphototropic diaphototropies diaphototropism diaphototropisms diaphototropy diaphragm diaphragmal diaphragmatic diaphragmatically diaphragmatitis diaphragmatitises diaphragmed diaphragming diaphragms diaphtherin diaphyseal diaphyses diaphysial diaphysis diapir diapiric diapirism diapirisms diapirs diaplases diaplasis diaplasma diaplex diaplexal diaplexus diapnoe diapnoic diapnotic diapophyses diapophysial diapophysis diaporesis diapositive diapositives diapsid diapsida diapsidan diapsids diapyeses diapyesis diapyetic diapyetics diarch diarchal diarchial diarchic diarchies diarchy diarhemia diarial diarian diaries diarise diarised diarises diarising diarist diaristic diarists diarize diarized diarizes diarizing diarrhea diarrheal diarrheas diarrheic diarrhetic diarrhoea diarrhoeal diarrhoeas diarrhoeic diarrhoetic diarsenide diarthric diarthrodial diarthroses diarthrosis diarticular diary dias diaschisis diaschisma diaschistic diascope diascopes diascopy diascord diascordium diascordiums diasene diaskeuasis diaskeuast diaskeuasts diasper diaspididae diaspidine diaspine diaspirin diaspora diasporas diaspore diaspores diastalses diastalsis diastaltic diastase diastases diastasic diastasimetry diastasis diastataxic diastataxy diastatic diastatically diastem diastema diastemata diastematic diastematomyelia diastems diaster diastereoisomer diastereoisomeric diastereoisomerism diastereoisomerisms diastereoisomers diastereomer diastereomeric diastereomers diasters diastimeter diastole diastoles diastolic diastomatic diastral diastrophe diastrophic diastrophically diastrophism diastrophisms diastrophy diastyle diastyles diasynthesis diasyrm diasystem diatessaron diatessarons diatesseron diathermacies diathermacy diathermal diathermance diathermancies diathermancy diathermaneities diathermaneity diathermanous diathermia diathermias diathermic diathermies diathermize diathermometer diathermotherapy diathermous diathermy diatheses diathesic diathesis diathetic diatom diatomacean diatomaceoid diatomaceous diatomean diatomic diatomicities diatomicity diatomiferous diatomin diatomine diatomist diatomists diatomite diatomites diatomophyceae diatomous diatoms diatonic diatonical diatonically diatonicism diatonicisms diatonics diatonous diatoric diatreme diatremes diatretum diatretums diatribe diatribes diatribist diatribists diatron diatrons diatropic diatropism diatropisms diatryma diauli diaulic diaulos diavolo diaxial diaxon diaxone diaxonic diaxons diazenithal diazepam diazepams diazeuctic diazeutic diazeuxes diazeuxis diazid diazide diazin diazine diazines diazinon diazinons diazins diazo diazoalkane diazoamin diazoamine diazoamino diazoaminobenzene diazoanhydride diazoate diazobenzene diazoes diazohydroxide diazoic diazoimide diazoimido diazole diazoles diazoma diazomethane diazonium diazoniums diazos diazotate diazotic diazotizability diazotizable diazotization diazotizations diazotize diazotized diazotizes diazotizing diazotype dib dibase dibasic dibasicities dibasicity dibatag dibbed dibber dibbers dibbing dibble dibbled dibbler dibblers dibbles dibbling dibbs dibbuk dibbukim dibbuks dibenzofuran dibenzofurans dibenzophenazine dibenzopyrrole dibenzoyl dibenzyl dibhole diblastula diborate dibrach dibranch dibranchia dibranchiata dibranchiate dibranchiates dibranchious dibrom dibromid dibromide dibromides dibromoacetaldehyde dibromobenzene dibs dibstone dibstones dibucaine dibutyl dibutyrate dibutyrin dicacious dicacities dicacity dicacodyl dicaeology dicalcic dicalcium dicamptodon dicamptodontid dicamptodontidae dicarbonate dicarbonic dicarboxylate dicarboxylic dicarpellary dicaryon dicaryophase dicaryophyte dicaryotic dicast dicasteries dicastery dicastic dicasts dicatalectic dicatalexis dice diceboard dicebox dicecup diced dicellate diceman dicentra dicentras dicentric dicentrics dicentrin dicentrine dicephalism dicephalous dicephalus diceplay dicer dicerion diceros dicerous dicers dices dicetyl dicey dich dichas dichasia dichasial dichasially dichasium dichastasis dichastic dichlamydeous dichlone dichloralphenazone dichloralphenazones dichloramin dichloramine dichlorhydrin dichloride dichlorides dichloroacetic dichlorobenzene dichlorobenzenes dichlorodifluoromethane dichlorodifluoromethanes dichlorodiphenyltrichloroethane dichlorodiphenyltrichloroethanes dichloroethane dichloroethanes dichlorohydrin dichloromethane dichlorvos dichlorvoses dichocarpism dichocarpous dichogamic dichogamies dichogamous dichogamy dichondra dichondras dichopodial dichoptic dichord dichords dichoree dichotic dichotically dichotomal dichotomic dichotomically dichotomies dichotomisation dichotomisations dichotomise dichotomised dichotomises dichotomising dichotomist dichotomistic dichotomists dichotomization dichotomizations dichotomize dichotomized dichotomizes dichotomizing dichotomous dichotomously dichotomousness dichotomousnesses dichotomy dichotriaene dichroic dichroiscope dichroiscopic dichroism dichroisms dichroite dichroites dichroitic dichromasia dichromasy dichromat dichromate dichromates dichromatic dichromaticism dichromatics dichromatism dichromatisms dichromatopsia dichromats dichromic dichromism dichromisms dichronous dichrooscope dichrooscopes dichrooscopic dichroous dichroscope dichroscopes dichroscopic dicht dichted dichting dichts dicier diciest dicing dicings dick dickcissel dickcissels dicked dickens dickenses dickensian dicker dickered dickering dickers dickey dickeybird dickeys dickhead dickheads dickie dickier dickies dickiest dicking dickinsonite dickite dicks dicksonia dicksoniaceae dicktier dicktiest dickty dicky dickybird dickybirds dickys diclesium diclinic diclinies diclinism diclinisms diclinous dicliny dicoccous dicodeine dicoelious dicoelous dicofol dicofols dicolic dicolon dicondylian dicophane dicot dicots dicotyl dicotyledon dicotyledonae dicotyledonary dicotyledones dicotyledonous dicotyledons dicotylous dicotyls dicoumarin dicoumarins dicoumarol dicoumarols dicranaceae dicranaceous dicranales dicranoid dicranopteris dicranterian dicranum dicrostonyx dicrotal dicrotic dicrotism dicrotisms dicrotous dict dicta dictagraph dictamen dictamina dictamnus dictaphone dictaphones dictate dictated dictates dictating dictatingly dictation dictational dictations dictative dictator dictatorial dictatorialism dictatorially dictatorialness dictatorialnesses dictators dictatorship dictatorships dictatory dictatress dictatresses dictatrix dictatrixes dictature dictatures dicted dictery dictic dictier dictiest dicting diction dictional dictionally dictionarian dictionaries dictionary dictions dictograph dictostylium dictronics dicts dictum dictums dicty dictynid dictyoceratine dictyodromous dictyogen dictyogenous dictyogens dictyoid dictyonine dictyophera dictyoptera dictyopteran dictyosiphonaceous dictyosome dictyosomes dictyostele dictyosteles dictyostelic dictyotaceous dictyotic dicumarol dicumarols dicy dicyan dicyandiamide dicyanid dicyanide dicyanin dicyanine dicyanodiamide dicyanogen dicycle dicyclic dicyclies dicyclist dicyclopentadienyliron dicycly dicyemid dicynodont dicynodontia dicynodonts did didache didact didactic didactical didacticality didactically didactician didacticism didacticisms didacticity didactics didactive didacts didactyl didactylism didactylous didactyls didakai didakais didakei didakeis didal didapper didappers didascalar didascaliae didascalic didascalos didascaly didder diddered diddering didders diddest diddicoy diddicoys diddier diddies diddiest diddikai diddle diddled diddler diddlers diddles diddley diddleys diddlies diddling diddly diddlysquat diddlysquats diddums diddy diddycoy diddycoys didelph didelphian didelphic didelphid didelphidae didelphids didelphine didelphis didelphoid didelphous didepsid didepside didest didgeridoo didgeridoos didicoi didicois didicoy didicoys didie didies didine didjeridoo didjeridoos didle didler didn didna didnt dido didodecahedral didodecahedron didoes didonia didos didrachm didrachma didrachmal didrachmas didrachms didric didromies didromy didst diduce diduced diducing diduction diductively diductor didy didym didymate didymia didymis didymitis didymium didymiums didymoid didymolite didymous didymus didynamia didynamian didynamic didynamies didynamous didynamy die dieb dieback diebacks diebs diecase diecious dieciously diectasis died diedral diedrals diedre diedres diedric dieffenbachia dieffenbachias diegeses diegesis diego diegueno diehard diehardism diehardisms diehards dieing diel dieldrin dieldrins dielec dielectric dielectrical dielectrically dielectrics dielike dielytra dielytras diem diemaker diemakers diemaking diencephala diencephalic diencephalon diencephalons diene diener dienes dieoff dieoffs dier diereses dieresis dieretic diervilla dies diesel dieseled dieseling dieselings dieselisation dieselisations dieselise dieselised dieselises dieselising dieselization dieselizations dieselize dieselized dieselizes dieselizing diesels dieses diesinker diesinkers diesinking diesinkings diesis diester diesters diestock diestocks diestrous diestrual diestrum diestrums diestrus diestruses diet dietal dietarian dietarians dietaries dietarily dietary dieted dieter dieters dietetic dietetical dietetically dietetics dietetist diethanolamine diether diethers diethyl diethylacetal diethylamide diethylamine diethylamines diethylaminoethanol diethylcarbamazine diethylcarbamazines diethylenediamine diethylethanolamine diethylmalonylurea diethylstilbestrol diethylstilbestrols diethylstilboestrol diethyltryptamine dietic dietical dietician dieticians dietics dieties dietine dietines dieting dietist dietists dietitian dietitians dietotherapeutics dietotherapy dietotoxic dietotoxicity dietrichite diets dietted diety dietzeite dieugard diewise diezeugmenon dif diferrion diff diffame diffareation diffarreation diffarreations diffed diffeomorphic diffeomorphism differ differed differen difference differenced differences differencies differencing differencingly differency different differentia differentiabilities differentiability differentiable differentiae differential differentialise differentialize differentially differentials differentiant differentiate differentiated differentiates differentiating differentiation differentiations differentiative differentiator differentiators differently differentness differentnesses differer differers differing differingly differs difficile difficileness difficilitate difficult difficulties difficultly difficultness difficulty diffidation diffide diffided diffidence diffidences diffident diffidently diffidentness diffiding diffing diffinity difflation diffluence diffluent difflugia difform difforme difformed difformities difformity diffract diffracted diffracting diffraction diffractional diffractions diffractive diffractively diffractiveness diffractivenesses diffractometer diffractometers diffractometric diffractometries diffractometry diffracts diffranchise diffrangibilities diffrangibility diffrangible diffs diffugient diffund diffusate diffuse diffused diffusedly diffusedness diffusednesses diffusely diffuseness diffusenesses diffuser diffusers diffuses diffusibilities diffusibility diffusible diffusibleness diffusibly diffusimeter diffusing diffusiometer diffusion diffusional diffusionism diffusionisms diffusionist diffusionists diffusions diffusive diffusively diffusiveness diffusivenesses diffusivities diffusivity diffusor diffusors difluence diflunisal difluoride diformin difs difunctional dig digallate digallic digametic digamies digamist digamists digamma digammas digammate digammated digammic digamous digamy digastric digastrics digeneous digenesis digenetic digenic digenite digenous digeny digerati digerent digest digestant digested digestedly digestedness digester digesters digestibilities digestibility digestible digestibleness digestibly digestif digestifs digesting digestion digestional digestions digestive digestively digestiveness digestivenesses digestives digestment digestor digestors digestory digests digesture diggable digged digger diggers digging diggings dight dighted dighter dighting dights digit digital digitalein digitalic digitaliform digitalin digitalins digitalis digitalisation digitalisations digitalise digitalised digitalises digitalising digitalism digitalization digitalizations digitalize digitalized digitalizes digitalizing digitally digitals digitaria digitate digitated digitately digitation digitations digitiform digitigrade digitigrades digitigradism digitinervate digitinerved digitipinnate digitisation digitisations digitise digitised digitiser digitisers digitises digitising digitization digitizations digitize digitized digitizer digitizers digitizes digitizing digitogenin digitonin digitonins digitoplantar digitorium digitoriums digitoxigenin digitoxigenins digitoxin digitoxins digitoxose digitron digits digitule digitus digizine digizines digladiate digladiated digladiates digladiating digladiation digladiations digladiator digladiators diglossia diglossias diglossic diglot diglots diglottic diglottism diglottist diglucoside diglyceride diglycerides diglyph diglyphic diglyphs digmeat dignation digne dignification dignifications dignified dignifiedly dignifiedness dignifies dignify dignifying dignitarial dignitarian dignitaries dignitary dignitas dignities dignity dignosce dignosle dignotion digonal digoneutic digoneutism digonoporous digonous digoxin digoxins digram digrams digraph digraphic digraphically digraphs digredience digrediency digredient digress digressed digresser digresses digressing digressingly digression digressional digressionary digressions digressive digressively digressiveness digressivenesses digressory digs diguanide digue digynia digynian digynous dihalid dihalide dihalo dihalogen dihdroxycholecalciferol dihedra dihedral dihedrals dihedron dihedrons dihelios dihelium dihely dihexagonal dihexahedral dihexahedron dihybrid dihybridism dihybridisms dihybrids dihydrate dihydrated dihydrazone dihydric dihydride dihydrite dihydrochloride dihydrocupreine dihydrocuprin dihydroergotamine dihydroergotamines dihydrogen dihydrol dihydromorphinone dihydronaphthalene dihydronicotine dihydrosphingosine dihydrostreptomycin dihydrotachysterol dihydroxy dihydroxyacetone dihydroxyacetones dihydroxysuccinic dihydroxytoluene dihysteria diiamb diiambus diiodid diiodide diiodo diiodoform diiodotyrosine diipenates diisatogen dijudicant dijudicate dijudicated dijudicates dijudicating dijudication dijudications dika dikage dikamali dikamalli dikaryon dikaryons dikaryophase dikaryophasic dikaryophyte dikaryophytic dikaryotic dikas dikast dikasts dikdik dikdiks dike diked dikegrave dikelet dikelocephalid dikephobia diker dikereeve dikeria dikerion dikers dikes dikeside diketene diketo diketone dikey dikier dikiest diking dikkop dikkops diksha diktat diktats diktyonite dil dilacerate dilacerated dilacerates dilacerating dilaceration dilacerations dilactic dilactone dilambdodont dilamination dilaniate dilantin dilapidate dilapidated dilapidates dilapidating dilapidation dilapidations dilapidator dilapidators dilatabilities dilatability dilatable dilatableness dilatably dilatancies dilatancy dilatant dilatants dilatate dilatation dilatational dilatations dilatative dilatator dilatators dilatatory dilate dilated dilatedly dilatedness dilatement dilater dilaters dilates dilating dilatingly dilation dilations dilative dilatometer dilatometers dilatometric dilatometrically dilatometries dilatometry dilator dilatorily dilatoriness dilatorinesses dilators dilatory dildo dildoe dildoes dildos dilection dilemma dilemmas dilemmatic dilemmatical dilemmatically dilemmic diletant dilettanist dilettant dilettante dilettanteish dilettanteism dilettanteisms dilettantes dilettanteship dilettanti dilettantish dilettantism dilettantisms dilettantist dilettantship diligence diligences diligency diligent diligentia diligently diligentness dilis dilker dill dilled dillenia dilleniaceae dilleniaceous dilleniad dilleniidae dillesk dilli dillier dillies dilliest dilligrout dilling dillings dillis dillisk dills dillseed dillue dilluer dillweed dilly dillybag dillybags dillydallied dillydallier dillydallies dillydally dillydallying dillyman dillymen dilo dilogarithm dilogical dilogy dilos diltiazem dilucid dilucidate dilucidated dilucidates dilucidating dilucidation dilucidations diluendo diluent diluents dilutable dilutables dilutant dilute diluted dilutedly dilutedness dilutee dilutees dilutely diluteness dilutenesses dilutent diluter diluters dilutes diluting dilution dilutionary dilutions dilutive dilutor dilutors diluvia diluvial diluvialism diluvialisms diluvialist diluvialists diluvian diluvianism diluviate diluvion diluvions diluvium diluviums diluvy dim dimagnesic dimane dimanganion dimanganous dimaris dimastigate dimber dimberdamber dimble dimbles dime dimedon dimedone dimenhydrinate dimenhydrinates dimensible dimension dimensional dimensionalities dimensionality dimensionally dimensioned dimensioning dimensionless dimensions dimensive dimensum dimensuration dimer dimeran dimercaprol dimercaprols dimercuric dimercurion dimercury dimeric dimeride dimerisation dimerisations dimerise dimerised dimerises dimerising dimerism dimerisms dimerization dimerizations dimerize dimerized dimerizes dimerizing dimerlie dimerous dimers dimes dimetallic dimeter dimeters dimethoate dimethoates dimethoxy dimethoxymethane dimethyl dimethylamine dimethylamines dimethylamino dimethylaniline dimethylanilines dimethylanthranilate dimethylbenzene dimethylcarbinol dimethyldiketone dimethylglyoxime dimethylhydrazine dimethylhydrazines dimethylketol dimethylketone dimethylmethane dimethylnitrosamine dimethylnitrosamines dimethyls dimethylsulfoxide dimethylsulfoxides dimethylsulphoxide dimethyltryptamine dimethyltryptamines dimetient dimetria dimetric dimetrodon dimication dimidiate dimidiated dimidiates dimidiating dimidiation dimidiations dimin diminish diminishable diminishableness diminished diminisher diminishes diminishing diminishingly diminishings diminishingturns diminishment diminishments diminue diminuendi diminuendo diminuendoed diminuendoes diminuendos diminuent diminutal diminute diminuted diminutely diminuting diminution diminutional diminutions diminutival diminutive diminutively diminutiveness diminutivenesses diminutives diminutivise diminutivize dimiss dimissaries dimission dimissorial dimissory dimit dimities dimitted dimitting dimity dimly dimmable dimmed dimmedness dimmer dimmers dimmest dimmet dimming dimmish dimmit dimmock dimmy dimness dimnesses dimocarpus dimolecular dimoric dimorph dimorphic dimorphism dimorphisms dimorphite dimorphotheca dimorphous dimorphs dimout dimouts dimple dimpled dimplement dimplements dimples dimplier dimpliest dimpling dimply dimps dimpsy dims dimuence dimunitional dimwit dimwits dimwitted dimwittedly dimwittedness dimwittednesses dimyarian dimyaric dimyary din dinamode dinanderie dinanderies dinaphthyl dinar dinarchies dinarchy dinars dinder dindle dindled dindles dindling dindon dindymene dine dined diner dinergate dineric dinero dineros diners dines dinetic dinette dinettes dineuric dineutron dinful ding dingar dingbat dingbats dingdong dingdonged dingdonging dingdongs dinge dinged dingee dingeing dinger dingers dinges dingeses dingey dingeys dinghee dinghies dinghy dingier dingies dingiest dingily dinginess dinginesses dinging dingle dingleberries dingleberry dinglebird dingled dingledangle dingles dingling dingly dingman dingmaul dingo dingoes dings dingthrift dingus dinguses dingwall dingy dinheiro dinic dinical dinichthyid dinics dining dininghall diningroom dinitrate dinitril dinitrile dinitro dinitrobenzene dinitrobenzenes dinitrocellulose dinitrophenol dinitrophenols dinitrophenylhydrazine dinitrotoluene dink dinka dinked dinker dinkest dinkey dinkeys dinkie dinkier dinkies dinkiest dinking dinkly dinks dinkum dinkums dinky dinman dinmont dinmonts dinned dinner dinnered dinnering dinnerless dinnerly dinners dinnertime dinnertimes dinnerware dinnerwares dinnery dinning dinnle dinnled dinnles dinnling dino dinoceras dinocerata dinoceratan dinocerate dinoceratid dinoflagellata dinoflagellate dinoflagellates dinomania dinomanias dinomic dinornis dinornithic dinornithid dinornithidae dinornithiformes dinornithine dinornithoid dinos dinosaur dinosaurian dinosauric dinosaurs dinothere dinotheres dinotherian dinotherium dinotheriums dinoturbation dinoturbations dins dinsome dint dinted dinting dintless dints dinucleotide dinucleotides dinumeration dinus diobely diobol diobolon diobolons diobols dioc diocesan diocesans diocese dioceses diocesian diocoel dioctahedral diode diodes diodon diodont diodontidae dioecia dioecian dioecies dioeciodimorphous dioeciopolygamous dioecious dioeciously dioeciousness dioeciousnesses dioecism dioecisms dioecy dioestrous dioestrual dioestrum dioestrus dioestruses diogenes diogenite dioicous dioicously dioicousness diol diolefin diolefine diolefinic diolefins diols diomate diomedeidae diomedes dionaea dionise dionize dionym dionymal dionysia dionysiac dionysian dionysus dioon diophantine diophysite diophysites diopside diopsides diopsidic diopsimeter dioptase dioptases diopter diopters dioptograph dioptometer dioptometers dioptometries dioptometry dioptomiter dioptoscopy dioptra dioptral dioptrate dioptre dioptres dioptric dioptrical dioptrically dioptrics dioptrometer dioptrometry dioptroscopy dioptry diorama dioramas dioramic diordinal diorism diorisms dioristic dioristical dioristically diorite diorites dioritic diorthoses diorthosis diorthotic dioscorea dioscoreaceae dioscoreaceous dioscorein dioscorine dioscuri diose diosgenin diosgenins diosmin diosmose diosmosed diosmosing diosmosis diosmotic diosphenol diospyraceous diospyros diota diotas diothelete diotheletes diotheletic diotheletical diothelism diothelisms diothelite diothelites dioti diotic diotrephes diovular dioxan dioxane dioxanes dioxans dioxid dioxide dioxides dioxids dioxime dioxin dioxindole dioxins dioxy dip diparentum dipartite dipartition dipaschal dipchick dipchicks dipcoat dipentene dipentine dipeptid dipeptidase dipeptidases dipeptide dipeptides dipetalous dipetto diphase diphaser diphasic diphead diphenan diphenhydramine diphenhydramines diphenol diphenoxylate diphenyl diphenylacetylene diphenylamine diphenylaminechlorarsine diphenylamines diphenylchloroarsine diphenylene diphenylenimide diphenylenimine diphenylguanidine diphenylhydantoin diphenylhydantoins diphenylketone diphenylketones diphenylmethane diphenylquinomethane diphenyls diphenylthiourea diphone diphones diphonia diphosgene diphosgenes diphosphate diphosphates diphosphid diphosphide diphosphoric diphosphothiamine diphrelatic diphtheria diphtherial diphtherian diphtheriaphor diphtherias diphtheric diphtheritic diphtheritically diphtheritis diphtheritises diphtheroid diphtheroidal diphtheroids diphtherotoxin diphthong diphthongal diphthongalize diphthongally diphthongation diphthonged diphthongia diphthongic diphthonging diphthongisation diphthongisations diphthongise diphthongised diphthongises diphthongising diphthongization diphthongizations diphthongize diphthongized diphthongizes diphthongizing diphthongous diphthongs diphycercal diphycercy diphyesis diphygenic diphyletic diphylla diphyllous diphyodont diphyodonts diphyozooid diphysite diphysites diphysitism diphysitisms diphyzooid dipicrate dipicrylamin dipicrylamine dipl diplacuses diplacusis dipladenia diplanar diplanetic diplanetism diplantidian diplarthrism diplarthrous diplasiasmus diplasic diplasion diple diplegia diplegias diplegic diplegics dipleidoscope dipleidoscopes dipleiodoscope dipleura dipleural dipleuric dipleurobranchiate dipleurogenesis dipleurogenetic dipleurula dipleurulas dipleurule diplex diplexer diplexers diploae diplobacillus diplobacterium diploblastic diplocardia diplocardiac diplocaulescent diplocephalous diplocephalus diplocephaly diplochlamydeous diplococcal diplococcemia diplococci diplococcic diplococcocci diplococcoid diplococcus diploconical diplocoria diplodocus diplodocuses diploe diploes diploetic diplogangliate diplogen diplogeneses diplogenesis diplogenetic diplogenic diplogens diploglossate diplograph diplographic diplographical diplography diplohedral diplohedron diploic diploid diploidic diploidies diploidion diploidize diploids diploidy diplois diplokaryon diploma diplomacies diplomacy diplomaed diplomaing diplomas diplomat diplomata diplomate diplomated diplomates diplomatese diplomateses diplomatic diplomatical diplomatically diplomatics diplomating diplomatique diplomatise diplomatised diplomatises diplomatising diplomatism diplomatist diplomatists diplomatize diplomatized diplomatizes diplomatizing diplomatologies diplomatology diplomats diplomyelia diplon diplonema diplonephridia diploneural diplons diplont diplontic diplonts diploperistomic diplophase diplophases diplophonia diplophonic diplophyte diplopia diplopiaphobia diplopias diplopic diploplacula diploplacular diploplaculate diplopod diplopoda diplopodic diplopodous diplopods diplopterous diplopterygium diplopy diploses diplosis diplosome diplosphenal diplosphene diplospondylic diplospondylism diplostemonous diplostemony diplostichous diplotaxis diplotegia diplotene diplotenes diplozoa diplozoon diplumbic dipmeter dipneedle dipnet dipnets dipnetted dipnetting dipneumonous dipneust dipneustal dipnoan dipnoans dipnoi dipnoid dipnoous dipode dipodic dipodid dipodidae dipodies dipodomys dipody dipogon dipolar dipolarization dipolarize dipole dipoles dipolsphene diporpa dipotassic dipotassium dippable dipped dipper dipperful dipperfuls dippers dippier dippiest dipping dippings dipppier dipppiest dipppy dippy diprimary diprionidian diprismatic dipropargyl dipropellant dipropellants dipropyl diprotic diprotodan diprotodon diprotodons diprotodont diprotodontid diprotodontids diprotodonts dips dipsacaceae dipsacaceous dipsaceous dipsacus dipsades dipsadine dipsas dipsetic dipsey dipshit dipshits dipsie dipso dipsomania dipsomaniac dipsomaniacal dipsomaniacs dipsomanias dipsopathy dipsos dipsosaurus dipsosis dipstick dipsticks dipsy dipt dipter diptera dipteraceous dipterad dipteral dipteran dipterans dipteras dipterist dipterists dipterocarp dipterocarpaceae dipterocarpaceous dipterocarpous dipterocarps dipterocecidium dipteroi dipterological dipterologist dipterology dipteron dipteronia dipteros dipteroses dipterous dipterus dipterygian dipteryx dipththeria dipththerias diptote diptyca diptycas diptych diptychon diptychs dipus dipware dipygi dipygus dipylon dipyramid dipyramidal dipyre dipyrenous dipyridamole dipyridamoles dipyridyl diquat diquats dir diradiation dirca dircaean dird dirdam dirdams dirdum dirdums dire direcly direct directable directcarving directdiscourse directed directedness directednesses directer directest directeur directexamination directing direction directional directionalities directionality directionalize directionally directionals directionize directionless directionlessness directionlessnesses directions directitude directive directively directiveness directives directivities directivity directly directness directnesses directoire director directoral directorate directorates directorial directorially directories directors directorship directorships directory directress directresses directrice directrices directrix directrixes directs direful direfully direfulness direfulnesses direly dirempt dirempted dirempting diremption diremptions dirempts direness direnesses direption direr direst direx direxit dirge dirged dirgeful dirgelike dirgeman dirges dirgie dirging dirgler dirgy dirham dirhams dirhem dirhems dirhinous dirige dirigent diriges dirigibilities dirigibility dirigible dirigibles dirigism dirigisme dirigismes dirigisms dirigiste dirigo dirigomotor diriment dirity dirk dirke dirked dirkes dirking dirks dirl dirled dirling dirls dirndl dirndls dirt dirtbag dirtbags dirtball dirtballs dirtbird dirtboard dirted dirten dirtfarmer dirtied dirtier dirties dirtiest dirtily dirtiness dirtinesses dirting dirtplate dirts dirty dirtying diruption dis disa disabilities disability disable disabled disablement disablements disableness disabler disablers disables disabling disabusal disabusals disabuse disabused disabuses disabusing disacceptance disaccharid disaccharidase disaccharidases disaccharide disaccharides disaccharose disaccommodate disaccommodated disaccommodates disaccommodating disaccommodation disaccommodations disaccomodate disaccord disaccordance disaccordant disaccorded disaccording disaccords disaccredit disaccredited disaccrediting disaccredits disaccustom disaccustomed disaccustomedness disaccustoming disaccustoms disacidified disacidify disacknowledge disacknowledged disacknowledgement disacknowledgements disacknowledges disacknowledging disacquaint disacquaintance disacryl disadjust disadorn disadorned disadorning disadorns disadvance disadvanced disadvances disadvancing disadvantage disadvantageable disadvantaged disadvantagedness disadvantagednesses disadvantageous disadvantageously disadvantageousness disadvantageousnesses disadvantages disadvantaging disadventure disadventures disadventurous disadvise disadvised disadvising disaffect disaffectation disaffected disaffectedly disaffectedness disaffectednesses disaffecting disaffection disaffectionate disaffections disaffects disaffiliate disaffiliated disaffiliates disaffiliating disaffiliation disaffiliations disaffinity disaffirm disaffirmance disaffirmances disaffirmation disaffirmations disaffirmative disaffirmed disaffirming disaffirms disafforest disafforestation disafforestations disafforested disafforesting disafforestment disafforestments disafforests disagglomeration disaggregate disaggregated disaggregates disaggregating disaggregation disaggregations disaggregative disagio disagree disagreeabilities disagreeability disagreeable disagreeableness disagreeablenesses disagreeables disagreeably disagreeance disagreed disagreeing disagreement disagreements disagreer disagrees disagreing disalicylide disalign disaligned disaligning disalignment disalike disallied disalliege disallies disallow disallowable disallowableness disallowance disallowances disallowed disallowing disallows disally disallying disaltern disambiguate disambiguated disambiguates disambiguating disambiguation disambiguations disamenities disamenity disamis disanagrammatize disanalogies disanalogous disanalogy disanchor disanchored disanchoring disanchors disangelical disangularise disangularize disanimal disanimate disanimated disanimates disanimating disanimation disannex disannexation disannexed disannexes disannexing disanney disannul disannulled disannuller disannullers disannulling disannullings disannulment disannulments disannuls disanoint disanointed disanointing disanoints disanswerable disapostle disapparel disapparelled disapparelling disapparels disappear disappearance disappearances disappeared disappearer disappearing disappears disappendancy disappendant disapplication disapplications disapplied disapplies disapply disapplying disappoint disappointed disappointedly disappointer disappointing disappointingly disappointingness disappointment disappointments disappoints disappreciate disappreciation disapprobation disapprobations disapprobative disapprobatory disappropriate disappropriated disappropriates disappropriating disappropriation disapprovable disapproval disapprovals disapprove disapproved disapprover disapprovers disapproves disapproving disapprovingly disaproned disarchbishop disard disarm disarmament disarmaments disarmature disarmed disarmer disarmers disarming disarmingly disarms disarrange disarranged disarrangement disarrangements disarranger disarranges disarranging disarray disarrayed disarraying disarrays disarrest disarticulate disarticulated disarticulates disarticulating disarticulation disarticulations disarticulator disarticulators disas disasinate disasinize disassemble disassembled disassembler disassemblers disassembles disassemblies disassembling disassembly disassent disassiduity disassimilate disassimilated disassimilates disassimilating disassimilation disassimilations disassimilative disassociable disassociate disassociated disassociates disassociating disassociation disassociations disaster disasterly disasters disastimeter disastrous disastrously disastrousness disastrousnesses disattaint disattire disattired disattires disattiring disattribution disattributions disattune disattuned disattunes disattuning disaugment disauthentic disauthenticate disauthorise disauthorised disauthorises disauthorising disauthorize disauthorized disauthorizes disauthorizing disavail disavaunce disavaunced disavaunces disavauncing disaventrous disaventure disaventures disavouch disavouched disavouches disavouching disavow disavowable disavowal disavowals disavowance disavowed disavowedly disavower disavowers disavowing disavowment disavows disawa disazo disbalance disbalancement disband disbanded disbanding disbandment disbandments disbands disbar disbark disbarked disbarking disbarks disbarment disbarments disbarred disbarring disbars disbase disbecome disbelief disbeliefs disbelieve disbelieved disbeliever disbelievers disbelieves disbelieving disbelievingly disbench disbenched disbenches disbenching disbenchment disbend disbenefit disbenefits disbind disblame disbloom disboard disbodied disbody disbogue disboscation disbosom disbosomed disbosoming disbosoms disbound disbowel disboweled disboweling disbowelled disbowelling disbowels disbrain disbranch disbranched disbranches disbranching disbud disbudded disbudder disbudding disbuds disburden disburdened disburdening disburdenment disburdenments disburdens disburgeon disbursable disbursal disbursals disburse disbursed disbursement disbursements disburser disbursers disburses disbursing disburthen disburthened disburthening disburthens disbury disbutton disc discabinet discage discaged discages discaging discal discalceate discalceates discalced discamp discandering discanderings discandie discandied discandies discandy discandying discandyings discanonisation discanonise discanonization discanonize discanonized discant discanted discanter discanting discants discantus discapacitate discapacitated discapacitates discapacitating discard discardable discarded discarder discarders discarding discardment discardments discards discarnate discarnation discase discased discases discasing discastle discatter disced discede discept disceptation disceptations disceptatious disceptator disceptatorial disceptators discepted discepting discepts discern discernability discernable discernableness discernably discerned discerner discerners discernibility discernible discernibleness discernibly discerning discerningly discernment discernments discerns discerp discerped discerpibilities discerpibility discerpible discerpibleness discerping discerps discerptibility discerptible discerptibleness discerption discerptions discerptive discession discharacter discharge dischargeable discharged dischargee dischargees discharger dischargers discharges discharging discharity discharm dischase dischevel dischuffed dischurch dischurched dischurches dischurching disci discide discided discides disciding disciferous discifloral disciflorous disciform discigerous discina discinct discind discing discinoid disciple discipled disciplelike disciples discipleship discipleships disciplinability disciplinable disciplinableness disciplinal disciplinant disciplinants disciplinarian disciplinarianism disciplinarians disciplinarily disciplinarities disciplinarity disciplinarium disciplinariums disciplinary disciplinate disciplinative disciplinatory discipline disciplined discipliner discipliners disciplines discipling disciplining discipular discircumspection discission discissions discitis disclaim disclaimant disclaimed disclaimer disclaimers disclaiming disclaims disclamation disclamations disclamatory disclander disclass disclassify disclike disclimax disclimaxes discloak discloister disclosable disclose disclosed discloser disclosers discloses disclosing disclosive disclost disclosure disclosures discloud disclout disclusion disco discoach discoactine discoast discoblastic discoblastula discoboli discobolos discobolus discocarp discocarpium discocarpous discocephali discocephalous discodactyl discodactylous discoed discoer discoers discogastrula discoglossid discoglossidae discoglossoid discographer discographers discographic discographical discographically discographies discography discoherent discohexaster discoid discoidal discoids discoing discolichen discolith discology discolor discolorate discolorated discoloration discolorations discolored discoloredness discoloring discolorization discolorize discolorment discolorments discolors discolour discolourate discolourated discolouration discolourations discoloured discolouredness discolouring discolourisation discolourization discolourment discolourments discolours discomboberate discomboberated discomboberates discomboberating discombobulate discombobulated discombobulates discombobulating discombobulation discombobulations discomedusan discomedusans discomedusoid discomfit discomfited discomfiter discomfiters discomfiting discomfits discomfiture discomfitures discomfort discomfortable discomfortableness discomfortably discomforted discomforter discomforting discomfortingly discomforts discommend discommendable discommendableness discommendablenesses discommendably discommendation discommendations discommended discommender discommending discommends discommission discommissioned discommissioning discommissions discommodate discommode discommoded discommodes discommoding discommodious discommodiously discommodiousness discommodities discommodity discommon discommoned discommoning discommons discommune discommunities discommunity discomorula discompanied discomplexion discompliance discompose discomposed discomposedly discomposedness discomposes discomposing discomposingly discomposure discomposures discompt discomycete discomycetes discomycetous disconanthous disconcert disconcerted disconcertedly disconcertedness disconcerting disconcertingly disconcertingness disconcertion disconcertions disconcertment disconcertments disconcerts disconcord disconduce disconducive disconfirm disconfirmation disconfirmations disconfirmed disconfirming disconfirms disconform disconformable disconformably disconformities disconformity discongruity disconjure disconnect disconnected disconnectedly disconnectedness disconnectednesses disconnecter disconnecters disconnecting disconnection disconnections disconnective disconnectiveness disconnector disconnects disconnexion disconnexions disconsent disconsented disconsenting disconsents disconsider disconsideration disconsolacy disconsolance disconsolate disconsolately disconsolateness disconsolatenesses disconsolation disconsolations disconsonancy disconsonant discontent discontented discontentedly discontentedness discontentednesses discontentful discontenting discontentive discontentment discontentments discontents discontiguities discontiguity discontiguous discontiguousness discontinuable discontinual discontinuance discontinuances discontinuation discontinuations discontinue discontinued discontinuee discontinuer discontinuers discontinues discontinuing discontinuities discontinuity discontinuor discontinuous discontinuously discontinuousness discontinuousnesses disconula disconvenience disconvenient disconventicle discophile discophiles discophoran discophorans discophore discophorous discoplacenta discoplacental discoplacentalian discoplasm discopodous discord discordable discordance discordances discordancies discordancy discordant discordantly discordantness discorded discorder discordful discording discordous discords discorporate discorrespondency discorrespondent discos discost discostate discostomatous discotheque discotheques discothque discounsel discounselled discounselling discounsels discount discountability discountable discounted discountenance discountenanced discountenancer discountenances discountenancing discounter discounters discounting discountinuous discounts discouple discour discourage discourageable discouraged discouragedly discouragement discouragements discourager discouragers discourages discouraging discouragingly discouragingness discouragings discoure discoured discoures discouring discoursal discourse discoursed discourseless discourser discoursers discourses discoursing discoursive discoursively discoursiveness discourt discourteise discourteous discourteously discourteousness discourteousnesses discourtesies discourtesy discourtship discous discovenant discover discoverability discoverable discoverably discovered discoverer discoverers discoveries discovering discovers discovert discoverture discovertures discovery discradle discreate discreated discreating discreation discredence discredit discreditability discreditable discreditableness discreditably discredited discrediting discredits discreet discreeter discreetest discreetly discreetness discreetnesses discrepance discrepances discrepancies discrepancries discrepancy discrepant discrepantly discrepate discrepated discrepating discrepation discrepencies discrested discrete discretely discreteness discretenesses discreter discretest discretion discretional discretionally discretionarily discretionary discretions discretive discretively discretiveness discriminabilities discriminability discriminable discriminably discriminal discriminant discriminantal discriminants discriminate discriminated discriminately discriminateness discriminates discriminating discriminatingly discriminatingness discrimination discriminational discriminations discriminative discriminatively discriminativeness discriminator discriminatorily discriminators discriminatory discriminoid discriminous discrive discrown discrowned discrowning discrownment discrowns discruciate discs discubation discubitory disculpate disculpated disculpates disculpating disculpation disculpatory discumb discumber discumbered discumbering discumbers discure discured discuren discures discuring discurre discurrent discursative discursativeness discursify discursion discursions discursist discursists discursive discursively discursiveness discursivenesses discursory discursus discurtain discus discuses discuss discussable discussant discussants discussed discusser discussers discusses discussible discussing discussion discussional discussionis discussionism discussionist discussions discussive discussment discustom discutable discute discutient discutients disdain disdainable disdained disdainer disdainful disdainfully disdainfulness disdainfulnesses disdaining disdainly disdainous disdains disdar disdeceive disdeify disdein disdenominationalise disdenominationalize disdiaclasis disdiaclast disdiaclastic disdiapason disdiazo disdiplomatise disdiplomatize disdodecahedroid disdub disease diseased diseasedly diseasedness diseasednesses diseaseful diseasefulness diseases diseasing diseasy disecondary diseconomies diseconomy disedge disedged disedges disedging disedification disedify diseducate disegno diselder diselectrification diselectrify diselenid diselenide disematism disembalm disembargo disembargoed disembargoing disembark disembarkation disembarkations disembarked disembarking disembarkment disembarkments disembarks disembarrass disembarrassed disembarrasses disembarrassing disembarrassment disembarrassments disembattle disembay disembed disembellish disembellished disembellishes disembellishing disembitter disembittered disembittering disembitters disembocation disembodied disembodies disembodiment disembodiments disembody disembodying disembogue disembogued disemboguement disemboguements disembogues disemboguing disembosom disembosomed disembosoming disembosoms disembowel disemboweled disemboweling disembowelled disembowelling disembowelment disembowelments disembowels disembower disembrace disembrangle disembrangled disembrangles disembrangling disembroil disembroiled disembroiling disembroilment disembroils disemburden disemburdened disemburdening disemburdens diseme disemic disemplane disemplaned disemploy disemployed disemploying disemployment disemployments disemploys disempower disempowered disempowering disempowerment disempowerments disempowers disemprison disenable disenabled disenablement disenables disenabling disenact disenactment disenamor disenamour disenchain disenchained disenchaining disenchains disenchant disenchanted disenchanter disenchanters disenchanting disenchantingly disenchantment disenchantments disenchantress disenchantresses disenchants disencharm disenclose disenclosed disencloses disenclosing disencourage disencrease disencumber disencumbered disencumbering disencumberment disencumberments disencumbers disencumbrance disencumbrances disendow disendowed disendower disendowers disendowing disendowment disendowments disendows disenfranchise disenfranchised disenfranchisement disenfranchisements disenfranchises disenfranchising disengage disengaged disengagedness disengagednesses disengagement disengagements disengages disengaging disengirdle disenjoy disenjoyment disenmesh disennoble disennobled disennobles disennobling disennui disenorm disenrol disenroll disenrolled disenrolling disenrols disensanity disenshroud disenshrouded disenshrouding disenshrouds disenslave disenslaved disenslaves disenslaving disensoul disensure disentail disentailed disentailing disentailment disentailments disentails disentangle disentangled disentanglement disentanglements disentangler disentangles disentangling disenter disenthral disenthrall disenthralled disenthralling disenthrallment disenthrallments disenthralls disenthralment disenthralments disenthrals disenthrone disenthroned disenthronement disenthrones disenthroning disentitle disentitled disentitlement disentitles disentitling disentomb disentombed disentombing disentombment disentombs disentraced disentrail disentrailed disentrailing disentrails disentrain disentrained disentraining disentrainment disentrainments disentrains disentrammel disentrance disentranced disentrancement disentrancements disentrances disentrancing disentrayle disentrayled disentrayles disentrayling disentwine disentwined disentwines disentwining disenvelop disenveloped disenveloping disenvelops disenviron disenvironed disenvironing disenvirons disepalous disequalise disequaliser disequality disequalization disequalize disequalizer disequilibrate disequilibrated disequilibrates disequilibrating disequilibration disequilibrations disequilibria disequilibrium disequilibriums disert disespouse disespoused disespouses disespousing disestablish disestablished disestablisher disestablishes disestablishing disestablishment disestablishmentarian disestablishmentarianism disestablishmentarianisms disestablishmentarians disestablishments disestablismentarian disestablismentarianism disesteem disesteemed disesteemer disesteeming disesteems disestimation disestimations diseur diseurs diseuse diseuses disexcommunicate disexercise disfaith disfame disfames disfashion disfavor disfavored disfavorer disfavorers disfavoring disfavors disfavour disfavourable disfavoured disfavourer disfavourers disfavouring disfavours disfeature disfeatured disfeaturement disfeaturements disfeatures disfeaturing disfellowship disfellowshipped disfellowshipping disfellowships disfen disfiguration disfigurations disfigurative disfigure disfigured disfigurement disfigurements disfigurer disfigurers disfigures disfiguring disfiguringly disflesh disfleshed disfleshes disfleshing disfluencies disfluency disfluent disfoliage disfoliaged disforest disforestation disforested disforesting disforests disform disformed disforming disformity disforms disfortune disframe disfranchise disfranchised disfranchisement disfranchisements disfranchiser disfranchisers disfranchises disfranchising disfrancnise disfrequent disfriar disfrock disfrocked disfrocking disfrocks disfunction disfunctional disfunctions disfurnish disfurnished disfurnishes disfurnishing disfurnishment disfurnishments disfurniture disgage disgallant disgarland disgarnish disgarnished disgarnishes disgarnishing disgarrison disgarrisoned disgarrisoning disgarrisons disgavel disgaveled disgaveling disgavelled disgavelling disgavels disgeneric disgenic disgenius disgest disgested disgesting disgestion disgestions disgests disgig disglorified disglorifies disglorify disglorifying disglory disglut disgodded disgood disgorge disgorged disgorgement disgorgements disgorger disgorges disgorging disgospel disgospelize disgospelling disgout disgown disgowned disgowning disgowns disgrace disgraced disgraceful disgracefully disgracefulness disgracefulnesses disgracement disgracer disgracers disgraces disgracia disgracing disgracious disgracive disgradation disgradations disgrade disgraded disgrades disgrading disgradulate disgregate disgregated disgregating disgregation disgregations disgress disgross disgruntle disgruntled disgruntlement disgruntlements disgruntles disgruntling disguisable disguisal disguisay disguise disguised disguisedly disguisedness disguisednesses disguiseless disguisement disguisements disguiser disguisers disguises disguising disguisings disgulf disgust disgusted disgustedly disgustedness disgustednesses disguster disgustful disgustfully disgustfulness disgustfulnesses disgusting disgustingly disgustingness disgustingnesses disgusts dish dishabilitate dishabilitated dishabilitates dishabilitating dishabilitation dishabilitations dishabille dishabilles dishabit dishabited dishabiting dishabits dishabituate dishabituated dishabituating dishable dishabled dishables dishabling dishallow dishallowed dishallowing dishallows dishallucination disharmonic disharmonical disharmonies disharmonious disharmoniously disharmonise disharmonised disharmonises disharmonising disharmonism disharmonize disharmonized disharmonizes disharmonizing disharmony dishaunt dishboard dishcloth dishcloths dishclout dishclouts dishcross disheart dishearten disheartened disheartenedly disheartener disheartening dishearteningly disheartenment disheartenments disheartens disheathing disheaven dished disheir dishellenize dishelm dishelmed dishelming dishelms disher disherent disherison disherisons disherit disherited disheriting disheritment disheritor disheritors disherits dishes dishevel disheveled disheveling dishevelled dishevelling dishevelment dishevelments dishevels dishevely dishexecontahedroid dishful dishfuls dishier dishiest dishing dishings dishlick dishlicks dishlike dishling dishmaker dishmaking dishmonger dishmop dishome dishomed dishomes dishoming dishonest dishonesties dishonestly dishonesty dishonor dishonorable dishonorableness dishonorablenesses dishonorably dishonorary dishonored dishonorer dishonorers dishonoring dishonors dishonour dishonourable dishonourableness dishonourablenesses dishonourably dishonourary dishonoured dishonourer dishonourers dishonouring dishonours dishorn dishorned dishorner dishorning dishorns dishorse dishorsed dishorses dishorsing dishouse dishoused dishouses dishousing dishpan dishpanful dishpans dishrag dishrags dishtowel dishtowels dishumanise dishumanize dishumor dishumored dishumors dishumour dishumoured dishumouring dishumours dishware dishwares dishwash dishwasher dishwashers dishwashing dishwashings dishwater dishwaters dishwatery dishwiper dishwiping dishy disidentify disilane disilicane disilicate disilicic disilicid disilicide disillude disilluded disilludes disilluding disilluminate disilluminated disilluminates disilluminating disillusion disillusionary disillusioned disillusioning disillusionise disillusionised disillusioniser disillusionises disillusionising disillusionist disillusionize disillusionized disillusionizer disillusionizes disillusionizing disillusionment disillusionments disillusions disillusive disimagine disimagined disimagines disimagining disimbitter disimitate disimitation disimmure disimmured disimmures disimmuring disimpark disimpassioned disimprison disimprisoned disimprisoning disimprisonment disimprisonments disimprisons disimprove disimproved disimprovement disimproves disimproving disincarcerate disincarcerated disincarcerates disincarcerating disincarceration disincarcerations disincarnate disincarnation disincentive disincentives disinclination disinclinations disincline disinclined disinclines disinclining disinclose disinclosed disincloses disinclosing disincorporate disincorporated disincorporates disincorporating disincorporation disincorporations disincrease disincrust disincrustant disincrustion disindividualise disindividualised disindividualises disindividualising disindividualize disindividualized disindividualizes disindividualizing disindustrialisation disindustrialisations disindustrialise disindustrialised disindustrialises disindustrialising disindustrialization disindustrializations disindustrialize disindustrialized disindustrializes disindustrializing disinfect disinfectant disinfectants disinfected disinfecter disinfecting disinfection disinfections disinfective disinfector disinfectors disinfects disinfest disinfestant disinfestants disinfestation disinfestations disinfested disinfesting disinfests disinfeudation disinflame disinflate disinflated disinflating disinflation disinflationary disinflations disinform disinformation disinformations disinformed disinforming disinforms disingenious disingenuities disingenuity disingenuous disingenuously disingenuousness disingenuousnesses disinhabit disinherison disinherisons disinherit disinheritable disinheritance disinheritances disinherited disinheriting disinherits disinhibit disinhibited disinhibiting disinhibition disinhibitions disinhibitory disinhibits disinhume disinhumed disinhumes disinhuming disinsection disinsectization disinsulation disinsure disintegrable disintegrant disintegrate disintegrated disintegrates disintegrating disintegration disintegrationist disintegrations disintegrative disintegrator disintegrators disintegratory disintegrity disintegrous disintensify disinter disinteress disinterest disinterested disinterestedly disinterestedness disinterestednesses disinteresting disinterests disintermediation disintermediations disinterment disinterments disinterred disinterring disinters disintertwine disinthral disinthrall disinthralled disinthralling disinthrals disintoxicate disintoxicated disintoxicates disintoxicating disintoxication disintoxications disintrench disintricate disintricated disintricates disintricating disinure disinured disinures disinuring disinvagination disinvent disinvented disinventing disinvents disinvest disinvested disinvesting disinvestiture disinvestitures disinvestment disinvestments disinvests disinvigorate disinvigorated disinvigorates disinvigorating disinvitation disinvitations disinvite disinvited disinvites disinviting disinvolve disinvolved disinvolvement disinvolves disinvolving disjasked disjasket disjaskit disject disjected disjecting disjection disjections disjects disjeune disjoin disjoinable disjoined disjoining disjoins disjoint disjointed disjointedly disjointedness disjointednesses disjointing disjointly disjointness disjoints disjointure disjudication disjunct disjunction disjunctions disjunctive disjunctively disjunctives disjunctor disjunctors disjuncts disjuncture disjunctures disjune disjunes disk disked diskelion disker diskery diskette diskettes diskindness disking diskjockey diskless disklike disknow diskography diskophile diskos disks dislade dislady dislaurel disleaf disleafed disleafing disleafs disleal disleave disleaved disleaves disleaving dislegitimate dislevelment disli dislicense dislikable dislike dislikeable disliked dislikeful dislikelihood disliken dislikened dislikeness dislikenesses dislikening dislikens disliker dislikers dislikes disliking dislimb dislimbed dislimbing dislimbs dislimn dislimned dislimning dislimns dislink dislinked dislinking dislinks dislip dislive dislluminate disload disloaded disloading disloads dislocability dislocable dislocate dislocated dislocatedly dislocatedness dislocates dislocating dislocation dislocations dislocator dislocatory dislock dislodge dislodgeable dislodged dislodgement dislodgements dislodges dislodging dislodgment dislodgments dislogistic disloign disloigned disloigning disloigns dislove disloyal disloyalist disloyalists disloyally disloyalties disloyalty disluster dislustered dislustering dislustre dislustred dislustres dislustring dismail dismain dismal dismaler dismalest dismalise dismalities dismality dismalize dismaller dismallest dismally dismalness dismalnesses dismals disman dismanned dismanning dismans dismantle dismantled dismantlement dismantlements dismantler dismantlers dismantles dismantling dismarble dismarch dismark dismarket dismarketed dismarketing dismarry dismarshall dismask dismasked dismasking dismasks dismast dismasted dismasting dismastment dismastments dismasts dismaw dismay dismayable dismayd dismayed dismayedness dismayednesses dismayful dismayfully dismaying dismayingly dismayingness dismayl dismayled dismayling dismayls dismays disme dismeasurable dismeasured dismember dismembered dismemberer dismemberers dismembering dismemberment dismemberments dismembers dismembrate dismembrated dismembrator dismerit dismes dismettled disminion disminister dismiss dismissable dismissal dismissals dismissed dismisser dismissers dismisses dismissible dismissing dismissingly dismission dismissions dismissive dismissively dismissiveness dismissory dismit dismoded dismortgage dismortgaged dismortgaging dismount dismountable dismounted dismounting dismounts dismutation dismutations disna disnatural disnaturalisation disnaturalise disnaturalised disnaturalises disnaturalising disnaturalization disnaturalize disnaturalized disnaturalizes disnaturalizing disnature disnatured disnaturing disnest disnested disnesting disnests disnew disney disneyland disniche disnosed disnumber disobedience disobediences disobedient disobediently disobey disobeyal disobeyed disobeyer disobeyers disobeying disobeys disobligation disobligations disobligatory disoblige disobliged disobligement disobligements disobliger disobliges disobliging disobligingly disobligingness disobligingnesses disobstruct disoccident disocclude disoccluded disoccluding disoccupation disoccupied disoccupy disoccupying disodic disodium disomatic disomatous disomaty disomic disomies disomus disomy disoperation disoperations disoperculate disopinion disoppilate disorb disorbed disorchard disordain disordained disordeine disorder disordered disorderedly disorderedness disorderednesses disorderer disordering disorderlies disorderliness disorderlinesses disorderly disorders disordinance disordinate disordinated disordinately disordination disorganic disorganisation disorganisations disorganise disorganised disorganiser disorganisers disorganises disorganising disorganization disorganizations disorganize disorganized disorganizer disorganizers disorganizes disorganizing disorient disorientate disorientated disorientates disorientating disorientation disorientations disoriented disorienting disorients disour disown disownable disowned disowner disowners disowning disownment disownments disowns disoxidate disoxygenate disoxygenation disozonise disozonize disp dispace dispaced dispaces dispacing dispaint dispair dispand dispansive dispapalise dispapalize dispar disparadise disparage disparageable disparaged disparagement disparagements disparager disparagers disparages disparaging disparagingly disparate disparately disparateness disparatenesses disparates disparation disparatum disparish disparison disparities disparition disparity dispark disparked disparking disparkle disparks disparple disparpled disparpling dispart disparted disparting dispartment disparts dispassion dispassionate dispassionately dispassionateness dispassionatenesses dispassioned dispassions dispatch dispatched dispatcher dispatchers dispatches dispatchful dispatching dispathies dispathy dispatriated dispauper dispaupered dispaupering dispauperise dispauperised dispauperises dispauperising dispauperize dispauperized dispauperizes dispauperizing dispaupers dispeace dispeaceful dispeaces dispeed dispel dispell dispellable dispelled dispeller dispellers dispelling dispells dispels dispence dispenced dispences dispencing dispend dispended dispender dispending dispendious dispendiously dispenditure dispends dispensabilities dispensability dispensable dispensableness dispensablenesses dispensably dispensaries dispensary dispensate dispensated dispensating dispensation dispensational dispensationalism dispensations dispensative dispensatively dispensator dispensatories dispensatorily dispensators dispensatory dispensatress dispensatrix dispense dispensed dispenser dispensers dispenses dispensible dispensing dispensingly dispensive dispeople dispeopled dispeoplement dispeopler dispeoples dispeopling disperato dispergate dispergated dispergating dispergation dispergator disperge dispericraniate disperiwig dispermic dispermous dispermy disperple dispersal dispersals dispersant dispersants disperse dispersed dispersedelement dispersedly dispersedness dispersednesses dispersedye dispersement disperser dispersers disperses dispersibility dispersible dispersing dispersion dispersions dispersity dispersive dispersively dispersiveness dispersivenesses dispersoid dispersoidological dispersoidology dispersoids dispersonalise dispersonalize dispersonate dispersonification dispersonify dispetal disphenoid dispicion dispiece dispirem dispireme dispirit dispirited dispiritedly dispiritedness dispiritednesses dispiriting dispiritingly dispiritment dispiritments dispirits dispiteous dispiteously dispiteousness dispiteousnesses displace displaceability displaceable displaced displacement displacements displacency displacer displacers displaces displacing displant displantation displantations displanted displanting displants displat display displayable displayed displayer displayers displaying displays disple displeasance displeasances displeasant displease displeased displeasedly displeasedness displeasednesses displeaser displeases displeasing displeasingly displeasingness displeasingnesses displeasurable displeasurably displeasure displeasureable displeasureably displeasured displeasurement displeasures displeasuring displed displenish displenished displenishes displenishing displenishment displenishments disples displicence displicency displing displode disploded displodes disploding displosion displosions displume displumed displumes displuming displuviate dispoint dispond dispondaic dispondee dispondees dispone disponed disponee disponees disponent disponer disponers dispones disponge disponged disponges disponging disponing dispope dispopularise dispopularize disporous disport disported disporting disportive disportment disportments disports disposabilities disposability disposable disposableness disposablenesses disposables disposably disposal disposals dispose disposed disposedly disposedness disposement disposer disposers disposes disposing disposingly disposings disposit disposition dispositional dispositionally dispositioned dispositions dispositive dispositively dispositor dispositors dispossed dispossess dispossessed dispossesses dispossessing dispossession dispossessions dispossessor dispossessors dispossessory dispost disposted disposting disposts disposure disposures dispowder dispractice disprad dispraise dispraised dispraiser dispraisers dispraises dispraising dispraisingly dispread dispreader dispreading dispreads dispred dispredden dispredding dispreds disprejudice disprepare dispress disprince disprinced disprison disprisoned disprisoning disprisons disprivacied disprivilege disprivileged disprivileges disprivileging disprize disprized disprizes disprizing disprobabilization disprobabilize disprobative disprofess disprofessed disprofesses disprofessing disprofit disprofitable disprofits dispromise disproof disproofs disproove disprooved disprooves disprooving dispropertied disproperties disproperty dispropertying disproportion disproportionable disproportionableness disproportionablenesses disproportionably disproportional disproportionality disproportionally disproportionalness disproportionate disproportionated disproportionately disproportionateness disproportionatenesses disproportionates disproportionating disproportionation disproportionations disproportioned disproportioning disproportions dispropriate dispropriated dispropriates dispropriating disprovable disproval disprovals disprove disproved disprovement disproven disprover disproves disprovide disprovided disprovides disproviding disproving dispulp dispunct dispunge dispunged dispunges dispunging dispunishable dispunitive dispurpose dispurse dispursed dispurses dispursing dispurvey dispurveyance dispurveyances dispurveyed dispurveying dispurveys disputabilities disputability disputable disputableness disputablenesses disputably disputacity disputant disputants disputation disputations disputatious disputatiously disputatiousness disputatiousnesses disputative disputatively disputativeness disputativenesses disputator dispute disputed disputeful disputeless disputer disputers disputes disputing disputisoun disqualifiable disqualification disqualifications disqualified disqualifier disqualifiers disqualifies disqualify disqualifying disquantitied disquantities disquantity disquantitying disquarter disquiet disquieted disquietedly disquietedness disquieten disquietened disquietening disquietens disquieter disquietful disquieting disquietingly disquietingness disquietive disquietly disquietness disquietnesses disquietous disquiets disquietude disquietudes disquiparancy disquiparant disquiparation disquisit disquisite disquisited disquisiting disquisition disquisitional disquisitionary disquisitions disquisitive disquisitively disquisitor disquisitorial disquisitory disquixote disraeli disrange disrank disranked disranking disranks disrate disrated disrates disrating disray disrealise disrealize disreason disrecommendation disregard disregardable disregardance disregardant disregarded disregarder disregarders disregardful disregardfully disregardfulness disregardfulnesses disregarding disregardless disregards disregular disrelate disrelated disrelation disrelations disrelish disrelishable disrelished disrelishes disrelishing disremember disremembered disremembering disremembers disrepair disrepairs disreport disreputabilities disreputability disreputable disreputableness disreputablenesses disreputably disreputation disreputations disrepute disreputed disreputes disrespect disrespectabilities disrespectability disrespectable disrespected disrespecter disrespectful disrespectfully disrespectfulness disrespectfulnesses disrespecting disrespective disrespects disrespondency disrest disrestore disreverence disring disrobe disrobed disrobement disrober disrobers disrobes disrobing disroof disroost disroot disrooted disrooting disroots disrout disrudder disruddered disruly disrump disrupt disruptability disruptable disrupted disrupter disrupters disrupting disruption disruptionist disruptions disruptive disruptively disruptiveness disruptivenesses disruptment disruptor disruptors disrupts disrupture diss dissait dissassociate dissatisfaction dissatisfactions dissatisfactorily dissatisfactoriness dissatisfactorinesses dissatisfactory dissatisfied dissatisfiedly dissatisfiedness dissatisfies dissatisfy dissatisfying dissatisfyingly dissaturate dissava dissavage dissave dissaved dissaves dissaving dissavings dissavs disscepter dissceptered dissceptre dissceptred dissceptring disscussive disseason disseat disseated disseating disseats dissect dissected dissectible dissecting dissectings dissection dissectional dissections dissective dissector dissectors dissects dissed disseise disseised disseisee disseises disseisin disseising disseisins disseisor disseisoress disseisors disseize disseized disseizee disseizees disseizes disseizin disseizing disseizins disseizor disseizoress disseizors disseizure disselboom disselbooms dissemblance dissemblances dissemble dissembled dissembler dissemblers dissembles dissemblies dissembling dissemblingly dissemblings dissembly dissemilative disseminate disseminated disseminates disseminating dissemination disseminations disseminative disseminator disseminators disseminule disseminules dissension dissensions dissensious dissensualise dissensualize dissensualized dissensus dissensuses dissent dissentaneous dissentaneousness dissentation dissented dissenter dissenterish dissenterism dissenterisms dissenters dissentiate dissentience dissentiences dissentiencies dissentiency dissentient dissentiently dissentients dissenting dissentingly dissention dissentions dissentious dissentiously dissentism dissentive dissentment dissents dissepiment dissepimental dissepiments dissert dissertate dissertated dissertates dissertating dissertation dissertational dissertationist dissertationists dissertations dissertative dissertator dissertators disserted disserting disserts disserve disserved disserves disservice disserviceable disserviceableness disserviceably disservices disserving disses dissettle dissettlement dissever disseverance disseverances disseveration disseverations dissevered dissevering disseverment disseverments dissevers disshadow dissheathe dissheathed dissheathes dissheathing disship disshiver disshivered disshivering disshivers disshroud dissidence dissidences dissident dissidently dissidents dissight dissightly dissights dissilience dissiliences dissiliency dissilient dissilition dissimilar dissimilarities dissimilarity dissimilarly dissimilars dissimilate dissimilated dissimilates dissimilating dissimilation dissimilations dissimilative dissimilatory dissimile dissimiles dissimilitude dissimilitudes dissimulate dissimulated dissimulates dissimulating dissimulation dissimulations dissimulative dissimulator dissimulators dissimule dissimuler dissinew dissing dissipable dissipate dissipated dissipatedly dissipatedness dissipatednesses dissipater dissipaters dissipates dissipating dissipation dissipations dissipative dissipativity dissipator dissipators dissite disslander dissociabilities dissociability dissociable dissociableness dissociablenesses dissociably dissocial dissocialise dissocialised dissocialises dissocialising dissocialities dissociality dissocialize dissocialized dissocializes dissocializing dissociant dissociate dissociated dissociates dissociating dissociation dissociations dissociative dissociatively dissoconch dissogeny dissogony dissolubilities dissolubility dissoluble dissolubleness dissolublenesses dissolute dissolutely dissoluteness dissolutenesses dissolutes dissolution dissolutional dissolutionism dissolutionisms dissolutionist dissolutionists dissolutions dissolutive dissolvabilities dissolvability dissolvable dissolvableness dissolvablenesses dissolvative dissolve dissolveability dissolved dissolvent dissolvents dissolver dissolvers dissolves dissolving dissolvingly dissolvings dissonance dissonances dissonancies dissonancy dissonant dissonantly dissonate dissonous dissoul dissour disspirit disspread disspreading disstate dissuadable dissuade dissuaded dissuader dissuaders dissuades dissuading dissuasion dissuasions dissuasive dissuasively dissuasiveness dissuasivenesses dissuasives dissuasories dissuasory dissue dissuit dissuitable dissuited dissunder dissundered dissundering dissunders dissweeten dissyllabic dissyllabification dissyllabify dissyllabise dissyllabised dissyllabising dissyllabism dissyllabize dissyllabized dissyllabizing dissyllable dissyllables dissymmetric dissymmetrical dissymmetrically dissymmetries dissymmetry dissymmettric dissympathise dissympathize dissympathy dist distad distaff distaffs distain distained distaining distains distal distale distalia distally distalwards distance distanced distanceless distances distancing distancy distannic distant distantly distantness distantnesses distaste distasted distasteful distastefully distastefulness distastefulnesses distastes distasting distater distaves distelfink distelfinks distemonous distemper distemperance distemperate distemperature distemperatures distempered distemperedly distemperedness distemperer distempering distemperment distemperoid distempers distemperure distenant distend distended distendedly distendedness distender distenders distending distends distensibilities distensibility distensible distensile distension distensions distensive distent distention distentions dister disterminate disterr disthene disthenes disthrall disthrone disthroned disthrones disthroning disthronize disthronized disthronizes disthronizing distich distichal distichiasis distichous distichously distichs distil distileries distilery distill distillable distillage distilland distillands distillate distillates distillation distillations distillator distillatory distilled distiller distilleries distillers distillery distilling distillings distillment distillmint distills distilment distilments distils distinct distincter distinctest distinctify distinctio distinction distinctional distinctionless distinctions distinctity distinctive distinctively distinctiveness distinctivenesses distinctives distinctly distinctness distinctnesses distinctor distincture distinctures distingu distingua distingue distinguee distinguish distinguishabilities distinguishability distinguishable distinguishableness distinguishably distinguished distinguishedly distinguisher distinguishers distinguishes distinguishing distinguishingly distinguishment distinguishments distingué distinguée distintion distitle distn distoclusion distoma distomatosis distomatous distome distomes distomian distomiasis distort distortable distorted distortedly distortedness distortednesses distorter distorters distorting distortion distortional distortionary distortionist distortionless distortions distortive distorts distr distract distractable distracted distractedly distractedness distractednesses distracter distracters distractibilities distractibility distractible distractile distracting distractingly distraction distractions distractive distractively distracts distrail distrails distrain distrainable distrained distrainee distrainees distrainer distrainers distraining distrainment distrainments distrainor distrainors distrains distraint distraints distrait distraite distraught distraughted distraughtly distream distress distressed distressedly distressedness distresser distressers distresses distressful distressfully distressfulness distressfulnesses distressing distressingly distrest distribuend distribuends distributable distributaries distributary distribute distributed distributedly distributee distributees distributer distributers distributes distributing distribution distributional distributionist distributions distributival distributive distributively distributiveness distributivenesses distributives distributivities distributivity distributor distributors distributorship distributorships distributress distributution district districted districting distriction districtly districts distringas distringases distritbute distritbuted distritbutes distritbuting distrito distritos distrix distrouble distroubled distroubles distroubling distrouser distruss distrust distrusted distruster distrusters distrustful distrustfully distrustfulness distrustfulnesses distrusting distrustingly distrustless distrusts distune distuned distunes distuning disturb disturbance disturbances disturbant disturbants disturbation disturbative disturbed disturbedly disturber disturbers disturbing disturbingly disturbor disturbs disturn disturnpike disty distylar distyle distyles disubstituted disubstitution disulfate disulfates disulfid disulfide disulfides disulfids disulfiram disulfirams disulfonic disulfoton disulfotons disulfoxid disulfoxide disulfuret disulfuric disulphate disulphates disulphid disulphide disulphides disulphonate disulphone disulphonic disulphoxid disulphoxide disulphuret disulphurets disulphuric disunified disuniform disuniformity disunify disunifying disunion disunionism disunionisms disunionist disunionists disunions disunite disunited disuniter disuniters disunites disunities disuniting disunity disusage disusages disusance disuse disused disuses disusing disutilise disutilities disutility disutilize disvaluation disvalue disvalued disvalues disvaluing disvantage disvelop disventure disvertebrate disvisage disvisor disvoice disvouch disvouched disvouches disvouching disvulnerability diswarn diswarren diswarrened diswarrening diswashing disweapon diswench diswere diswit diswont diswood disworkmanship disworship disworships disworth disyllabic disyllabification disyllabifications disyllabified disyllabifies disyllabify disyllabifying disyllabism disyllabisms disyllabize disyllabized disyllabizing disyllable disyllables disyntheme disyoke disyoked disyokes disyoking dit dita dital ditali ditalini ditals ditas ditation ditch ditchbank ditchbur ditchdigger ditchdiggers ditchdigging ditchdown ditched ditcher ditchers ditches ditching ditchless ditchmoss ditchside ditchwater dite dited diter diterpene ditertiary dites ditetragonal ditetrahedral dithalous dithecal dithecous ditheism ditheisms ditheist ditheistic ditheistical ditheists dithelete ditheletes ditheletic ditheletical ditheletism ditheletisms dithelism dithelisms dithelitism dithelitisms dithematic dither dithered ditherer ditherers ditherier ditheriest dithering dithers dithery dithiobenzoic dithiocarbamate dithiocarbamates dithioglycol dithioic dithiol dithion dithionate dithionates dithionic dithionite dithionous dithymol dithyramb dithyrambic dithyrambically dithyrambist dithyrambists dithyrambs diting dition ditokous ditolyl ditone ditones ditransitive ditransitives ditrematous ditremid ditrichotomous ditriglyph ditriglyphic ditriglyphs ditrigonal ditrigonally ditrochean ditrochee ditrochees ditrochous ditroite dits ditsier ditsiest ditsy ditt dittamy dittander dittanders dittanies dittany dittay dittays ditted dittied ditties ditting dittit ditto dittoed dittoes dittogram dittograph dittographic dittographies dittography dittoing dittologies dittology ditton dittos ditts ditty dittying ditz ditzes ditzier ditziest ditzy diumvirate diuranate diureide diureses diuresis diuretic diuretical diuretically diureticalness diuretics diuril diurn diurnal diurnalist diurnalists diurnally diurnalness diurnals diurnation diurne diurnule diuron diurons diuturnal diuturnities diuturnity div diva divagate divagated divagates divagating divagation divagational divagationally divagations divagatory divalence divalencies divalency divalent divalents divan divans divaporation divariant divaricate divaricated divaricately divaricates divaricating divaricatingly divarication divarications divaricator divaricators divas divast divata dive divebomb divebombed divebomber divebombers divebombing divebombs dived divekeeper divel divell divelled divellent divellicate divellicated divellicates divellicating divelling diver diverb diverberate diverge diverged divergement divergements divergence divergences divergencies divergency divergenge divergent divergently diverges diverging divergingly divers diverse diversed diversely diverseness diversenesses diverses diversicolored diversicoloured diversifiabilities diversifiability diversifiable diversification diversifications diversified diversifier diversifiers diversifies diversiflorate diversiflorous diversifoliate diversifolious diversiform diversify diversifying diversing diversion diversional diversionary diversionist diversionists diversions diversipedate diversisporous diversities diversity diversly diversory divert diverted divertedly diverter diverters divertibilities divertibility divertible diverticle diverticula diverticular diverticulate diverticulated diverticulitis diverticulitises diverticuloses diverticulosis diverticulum divertila divertimenti divertimento divertimentos diverting divertingly divertingness divertise divertisement divertisements divertissant divertissement divertissements divertive divertor diverts dives divest divested divestible divesting divestitive divestiture divestitures divestment divestments divests divesture divestures divet divi divia divid dividable dividableness dividant divide divided dividedly dividedness dividednesses dividend dividendless dividends dividendus divident divider dividers divides dividing dividingly dividings dividivi dividivis dividual dividualism dividually dividuity dividuous divied divies divinability divinable divinail divination divinations divinator divinatorial divinators divinatory divine divined divinely divineness divinenesses diviner divineress divineresses diviners divines divinesse divinest diving divings divinified divinifies divinify divinifying divining diviningly divinisation divinise divinised divinises divinising divinister divinistre divinities divinity divinityship divinization divinize divinized divinizes divinizing divinyl divis divisa divise divisi divisibilities divisibility divisible divisibleness divisiblenesses divisibly divisim division divisional divisionalisation divisionalisations divisionalization divisionalizations divisionally divisionary divisionism divisionisms divisionist divisionistic divisionists divisions divisive divisively divisiveness divisivenesses divisor divisorial divisors divisory divisural divorca divorce divorceable divorced divorcee divorcees divorcement divorcements divorcer divorcers divorces divorceuse divorcible divorcing divorcive divorcée divorcées divort divot divoto divots divs divulgate divulgated divulgater divulgates divulgating divulgation divulgations divulgator divulgatory divulge divulged divulgement divulgements divulgence divulgences divulger divulgers divulges divulging divulse divulsed divulses divulsing divulsion divulsions divulsive divulsor divus divvied divvies divvy divvying divying diwan diwani diwans diwata dix dixain dixenite dixi dixie dixiecrat dixiecrats dixieland dixies dixit dixits dixy dizain dizaine dizains dizdar dizen dizened dizening dizenment dizenments dizens dizoic dizygotic dizygous dizz dizzard dizzardly dizzards dizzen dizzied dizzier dizzies dizziest dizzily dizziness dizzinesses dizzy dizzying dizzyingly dièdre dièdres dj djagoong djakarta djalmaite djasakid djave djebel djebels djehad djelab djelfa djellab djellaba djellabah djellabahes djellabahs djellabas djerib djersa djibbah djibbahs djibouti djiboutian djin djinn djinni djinns djinny djins djs dk dkg dkl dkm dks dl dle dlr dlvy dm dmarche dmd dmod dmus dn dna dnieper do doa doab doability doable doabs doand doarium doat doated doater doaters doating doatings doatish doats doaty dob dobbed dobber dobbers dobbie dobbies dobbin dobbing dobbins dobby dobchick dobchicks dobe doberman dobermans dobhash dobhashes dobie dobies dobl dobla doblas doblon doblones doblons doblun dobos dobra dobrao dobras dobro dobroes dobros dobs dobson dobsonflies dobsonfly dobsons dobule doby dobzhansky doc docent docents docentship docetae docetic docetism dochmiac dochmiacal dochmiasis dochmii dochmius dochmiuses docht dochter docibilities docibility docible docibleness dociblenesses docile docilely dociler docilest docilities docility docimasia docimasies docimastic docimastical docimasy docimologies docimology docious docity dock dockage dockages docked docken dockens docker dockers docket docketed docketing dockets dockhand dockhands dockhead dockhouse docking dockings dockisation dockisations dockise dockised dockises dockising dockization dockizations dockize dockized dockizes dockizing dockland docklands dockmackie dockmackies dockman dockmaster dockmasters dockominium dockominiums docks dockside docksides dockworker dockworkers dockyard dockyardman dockyards docmac docoglossan docoglossate docosane docosanoic docquet docqueted docqueting docquets docs doctor doctoral doctorally doctorand doctorands doctorate doctorated doctorates doctorating doctorbird doctordom doctored doctoress doctoresses doctorfish doctorfishes doctorhood doctorial doctorially doctoring doctorisation doctorise doctorization doctorize doctorless doctorlike doctorly doctors doctorship doctorships doctress doctresses doctrinable doctrinaire doctrinaires doctrinairism doctrinairisms doctrinal doctrinalism doctrinalist doctrinalities doctrinality doctrinally doctrinarian doctrinarianism doctrinarianisms doctrinarians doctrinarily doctrinarity doctrinary doctrinate doctrine doctrines doctrinisation doctrinise doctrinism doctrinist doctrinization doctrinize doctrinized doctrinizing doctrix doctus docudrama docudramas docudramatic document documentable documental documentalist documentalists documentarian documentarians documentaries documentarily documentarisation documentarisations documentarise documentarised documentarises documentarising documentarist documentarists documentarization documentarizations documentarize documentarized documentarizes documentarizing documentary documentation documentational documentations documented documenter documenters documenting documentise documentize documentor documents docusoap docusoaps dod dodd doddard doddart dodded dodder doddered dodderer dodderers dodderier dodderiest doddering dodders doddery doddie doddier doddies doddiest dodding doddipoll doddipolls doddle doddles doddy doddypoll doddypolls dodecade dodecadrachm dodecafid dodecagon dodecagonal dodecagons dodecagynian dodecagynous dodecaheddra dodecahedra dodecahedral dodecahedric dodecahedron dodecahedrons dodecahydrate dodecahydrated dodecamerous dodecanal dodecandrous dodecane dodecanoic dodecant dodecapartite dodecapetalous dodecaphonic dodecaphonically dodecaphonies dodecaphonism dodecaphonisms dodecaphonist dodecaphonists dodecaphony dodecarch dodecarchy dodecasemic dodecastylar dodecastyle dodecastyles dodecastylos dodecasyllabic dodecasyllable dodecasyllables dodecatemory dodecatoic dodecatyl dodecatylic dodecuplet dodecyl dodecylene dodecylic dodecylphenol dodgasted dodge dodgeball dodgeballs dodged dodgeful dodgem dodgems dodger dodgeries dodgers dodgery dodges dodgier dodgiest dodgily dodginess dodginesses dodging dodgings dodgson dodgy dodipole dodkin dodkins dodlet dodman dodmans dodo dodoes dodoism dodoisms dodoma dodonaena dodos dodrans dodrantal dods dodunk doe doebird doeglic doegling doek doeks doeling doen doer doers does doeskin doeskins doesn doesnt doest doeth doeuvre doff doffed doffer doffers doffing doffs doftberry dofunny dog dogal dogana dogaressa dogaressas dogate dogates dogbane dogbanes dogberries dogberry dogbite dogblow dogboat dogbodies dogbody dogbolt dogbolts dogbush dogcart dogcarts dogcatcher dogcatchers dogdays dogdom dogdoms doge dogear dogeared dogearing dogears dogeate dogeates dogedom dogedoms dogeless doges dogeship dogeships dogey dogeys dogface dogfaces dogfall dogfennel dogfight dogfighting dogfightings dogfights dogfish dogfishes dogfoot dogfought dogfox dogfoxes dogged doggeder doggedest doggedly doggedness doggednesses dogger doggerel doggereled doggereler doggerelism doggerelist doggerelize doggerelizer doggerelizing doggerelled doggerelling doggerels doggeries doggerman doggermen doggers doggery doggess doggesses dogget doggie doggier doggies doggiest dogginess dogginesses dogging doggings doggish doggishly doggishness doggishnesses doggle doggo doggone doggoned doggoneder doggonedest doggoner doggones doggonest doggoning doggrel doggrelize doggrels doggy doghanged doghead doghearted doghole dogholes doghood doghouse doghouses dogie dogies dogiron dogleg doglegged doglegging doglegs dogless doglike dogly dogma dogman dogmas dogmata dogmatic dogmatical dogmatically dogmaticalness dogmaticalnesses dogmatician dogmatics dogmatisation dogmatisations dogmatise dogmatised dogmatiser dogmatisers dogmatises dogmatising dogmatism dogmatisms dogmatist dogmatists dogmatization dogmatizations dogmatize dogmatized dogmatizer dogmatizers dogmatizes dogmatizing dogmatologies dogmatology dogmatory dogmeat dogmen dogmouth dognap dognaped dognaper dognapers dognaping dognapped dognapper dognappers dognapping dognaps dogplate dogproof dogs dogsbodies dogsbody dogship dogships dogshit dogshore dogshores dogsick dogskin dogskins dogsled dogsledded dogsledder dogsledders dogsledding dogsleds dogsleep dogsleeps dogstail dogstone dogstones dogtail dogteeth dogtie dogtooth dogtoothing dogtown dogtowns dogtrick dogtrot dogtrots dogtrotted dogtrotting dogvane dogvanes dogwatch dogwatches dogwinkle dogwood dogwoods doh doha dohickey dohs dohter dohyo dohyos doigt doigte doiled doiley doileys doilies doilt doilter doiltest doily doina doing doings doit doited doitit doitkin doitkins doitrified doits dojigger dojiggy dojo dojos doke dokhma dokimastic dol dola dolabra dolabrate dolabre dolabriform dolcan dolce dolcelatte dolcelattes dolcemente dolces dolci dolcian dolciano dolcinist dolcino dolcissimo doldrum doldrums dole doleance doled dolefish doleful dolefuller dolefullest dolefully dolefulness dolefulnesses dolefuls dolent dolente dolentissimo dolently dolerin dolerite dolerites doleritic dolerophanite doles dolesman dolesome dolesomely dolesomeness doless doley dolf doli dolia dolibid dolichoblond dolichocephal dolichocephali dolichocephalic dolichocephalies dolichocephalism dolichocephalisms dolichocephalize dolichocephalous dolichocephals dolichocephaly dolichocercic dolichocnemic dolichocranal dolichocranial dolichocranic dolichocrany dolichofacial dolichohieric dolichonyx dolichopellic dolichopodous dolichoprosopic dolichos dolichosaur dolichosaurus dolichoses dolichostylous dolichotis dolichotmema dolichuri dolichuric dolichurus dolichuruses dolina dolinas doline dolines doling dolioform doliolidae doliolum dolisie dolite dolittle dolium doll dollar dollarbird dollardee dollardom dollared dollarfish dollarfishes dollarisation dollarisations dollarization dollarizations dollarleaf dollarless dollarocracies dollarocracy dollars dollarship dollarships dollarwise dollbeer dolldom dolldoms dolled dolley dollface dollfaced dollfish dollhood dollhoods dollhouse dollhouses dollia dollie dollied dollier dolliers dollies dollin dolliness dollinesses dolling dollish dollishly dollishness dollishnesses dollmaker dollmaking dollop dolloped dolloping dollops dolls dollship dolly dollying dollyman dollymen dollyway dolma dolmades dolman dolmans dolmas dolmen dolmenic dolmens dolomite dolomites dolomitic dolomitisation dolomitisations dolomitise dolomitised dolomitises dolomitising dolomitization dolomitizations dolomitize dolomitized dolomitizes dolomitizing dolomization dolomize dolor dolores doloriferous dolorific dolorifuge dolorimeter dolorimetric dolorimetrically dolorimetry dolorogenic doloroso dolorous dolorously dolorousness dolorousnesses dolors dolos dolose dolour dolourous dolours dolous dolphin dolphinaria dolphinarium dolphinariums dolphinet dolphinets dolphinfish dolphinfishes dolphinlike dolphins dols dolt dolthead doltish doltishly doltishness doltishnesses dolts dolus dolven dom domable domage domain domainal domaine domainial domains domajig domajigger domal domanial domatia domatium domatophobia domba dombeya domboc domdaniel dome domed domelike doment domer domes domesday domesdays domestic domesticability domesticable domestical domesticality domestically domesticate domesticated domesticates domesticating domestication domestications domesticative domesticator domesticators domesticise domesticised domesticises domesticising domesticities domesticity domesticize domesticized domesticizes domesticizing domestics domestique domestiques domett domette domettes dometts domeykite domic domical domically domicil domicile domiciled domicilement domiciles domiciliar domiciliary domiciliate domiciliated domiciliates domiciliating domiciliation domiciliations domicilii domiciling domicils domiculture domier domiest domification domify domina dominae dominance dominances dominancies dominancy dominant dominantly dominants dominate dominated dominates dominating dominatingly domination dominations dominative dominator dominators dominatrices dominatrix dominatrixes domine dominee domineer domineered domineerer domineering domineeringly domineeringness domineeringnesses domineers dominees domines doming domini dominial dominica dominical dominicale dominican dominicans dominick dominicker dominickers dominicks dominie dominies dominion dominionism dominionist dominions dominique dominiques dominium dominiums domino dominoes dominos dominule dominus domitable domite domitic domn domnei domoid dompt dompteuse doms domus domy don dona donable donaciform donack donah donahs donald donar donaries donary donas donat donataries donatary donate donated donatee donates donating donatio donation donationes donations donatism donatisms donatist donatistic donatistical donative donatively donatives donator donatories donators donatory donatress donax donbas donbass doncella doncy dondaine donder dondered dondering donders dondine done donec donee donees doneness donenesses donet donetsk doney dong donga dongas donged donging dongle dongles dongola dongolas dongon dongs doni donicker doning donings donis donjon donjons donk donkey donkeyback donkeyish donkeyism donkeyman donkeymen donkeys donkeywork donkeyworks donna donnard donnart donnas donnat donnats donne donnean donned donnee donnees donnerd donnered donnert donnes donnian donnick donnicker donnickers donniker donnikers donning donnish donnishly donnishness donnishnesses donnism donnisms donnock donnot donnots donny donnybrook donnybrooks donné donnée données donnés donor donors donorship donorships donought donovan dons donship donships donsie donsier donsiest donsky donsy dont donum donut donuts donutses donutted donutting donzel donzella donzels doo doob doobie doobies doobs doocot doocots doodab doodad doodads doodah doodahs doodia doodies doodle doodlebug doodlebugs doodled doodler doodlers doodles doodlesack doodling doodoo doodoos doodskop doody doofer doofers doofus doofuses doohickey doohickeys doohickies doohickus doohinkey doohinkus dooja dook dooked dooket dookets dooking dookit dooks dool doolally doole doolee doolees dooles dooley doolfu dooli doolie doolies dools dooly doom doomage doombook doomed doomer doomful doomfully doomfulness doomier doomiest doomily dooming doomlike dooms doomsayer doomsayers doomsaying doomsayings doomsday doomsdayer doomsdayers doomsdays doomsman doomsmen doomstead doomster doomsters doomwatch doomwatched doomwatcher doomwatchers doomwatches doomwatching doomwatchings doomy doon doona doonas dooputty door doorba doorbell doorbells doorboy doorbrand doorcase doorcheek doored doorframe doorframes doorhandle doorhandles doorhawk doorhead dooring doorjamb doorjambs doorkeep doorkeeper doorkeepers doorknob doorknobs doorknock doorknocked doorknocker doorknockers doorknocking doorknocks doorless doorlike doorlock doormaid doormaker doormaking doorman doormat doormats doormen doorn doornail doornails doornboom doorns doorpiece doorplate doorplates doorpost doorposts doors doorsill doorsills doorsman doorsmen doorstead doorstep doorstepped doorstepper doorsteppers doorstepping doorsteppings doorsteps doorstone doorstones doorstop doorstopper doorstoppers doorstops doorward doorway doorways doorweed doorwise dooryard dooryards doos doover doowop doowops dooxidize doozer doozers doozie doozies doozy dop dopa dopamelanin dopamine dopaminergic dopamines dopant dopants dopaoxidase dopas dopastat dopatta dopattas dopchick dope dopebook doped dopehead dopeheads doper dopers dopes dopesheet dopester dopesters dopey dopier dopiest dopily dopiness dopinesses doping dopings dopped doppelganger doppelgangers doppelgänger doppelgängers doppelkummel doppelzentner dopper dopperbird doppers doppia doppie doppies dopping doppings doppio doppler dopplerite dopplerites dops dopster dopy dor dora dorab dorad doradilla dorado dorados dorads doralium doraphobia doray dorbeetle dorbeetles dorbel dorbie dorbug dorbugs dorcas dorcastry dore doree dorees dorestane dorey dorhawk dorhawks doria dorian doric doridoid doridoids dories dorippid doris dorise dorised dorises dorising dorism dorize dorized dorizes dorizing dorje dork dorkier dorkiest dorking dorks dorky dorlach dorlachs dorlot dorm dormancies dormancy dormant dormantly dormants dormer dormered dormers dormette dormeuse dormice dormie dormient dormilona dormin dormins dormitary dormition dormitions dormitive dormitives dormitories dormitory dormmice dormouse dorms dormy dorn dorneck dornecks dornic dornick dornicks dornock dornocks doronicum doronicums dorosacral doroscentral dorosternal dorotheanthus dorothy dorp dorper dorpers dorps dorr dorrbeetle dorred dorring dorrs dors dorsa dorsabdominal dorsabdominally dorsad dorsal dorsale dorsales dorsalgia dorsalis dorsally dorsalmost dorsals dorsalward dorsalwards dorse dorsel dorsels dorser dorsers dorses dorsi dorsibranch dorsibranchiate dorsicollar dorsicolumn dorsicommissure dorsicornu dorsiduct dorsiferous dorsifixed dorsiflex dorsiflexion dorsiflexions dorsiflexor dorsigerous dorsigrade dorsilateral dorsilumbar dorsimedian dorsimesal dorsimeson dorsiparous dorsipinal dorsispinal dorsiventral dorsiventralities dorsiventrality dorsiventrally dorsoabdominal dorsoanterior dorsoapical dorsocaudad dorsocaudal dorsocentral dorsocephalad dorsocephalic dorsocervical dorsocervically dorsodynia dorsoepitrochlear dorsointercostal dorsointestinal dorsolateral dorsolaterally dorsolum dorsolumbar dorsomedial dorsomedian dorsomesal dorsonasal dorsonuchal dorsopleural dorsoposteriad dorsoposterior dorsoradial dorsosacral dorsoscapular dorsosternal dorsothoracic dorsoventrad dorsoventral dorsoventralities dorsoventrality dorsoventrally dorsula dorsulum dorsum dorsumbonal dorsums dort dorted dorter dorters dortier dortiest dortiness dorting dortiship dortour dortours dorts dorty doruck dory dorylinae doryline doryman dorymen doryopteris doryphoros doryphorus dos dosa dosadh dosage dosages dosain dose dosed doseh dosehs dosemeter doser dosers doses dosh doshes dosimeter dosimeters dosimetric dosimetrician dosimetries dosimetrist dosimetry dosing dosiologies dosiology dosis dosologies dosology doss dossal dossals dossed dossel dossels dossennus dosser dosseret dosserets dossers dosses dossety dosshouse dosshouses dossier dossiere dossiers dossil dossils dossing dossman dossmen dossy dost dostoevski dostoevskian dostoevsky dostoievski dostoyevski dostoyevskian dostoyevsky dot dotage dotages dotal dotant dotants dotard dotardism dotardly dotards dotardy dotarie dotate dotation dotations dotchin dotcom dotcoms dote doted doter doters dotes doth dother dothideaceous dothienenteritis dotier dotiest dotiness doting dotingly dotingness dotings dotish dotishness dotkin dotless dotlet dotlike dotrel dotriacontane dots dottard dotted dottedness dottel dottels dotter dotterel dotterels dotters dottier dottiest dottily dottiness dottinesses dotting dottipoll dottipolls dottle dottled dottler dottles dottlest dottling dottrel dottrels dotty doty doua douala douane douanes douanier douaniers douar douars doub double doublecheck doublechecked doublechecking doublechecks doublecross doublecrossed doublecrosses doublecrossing doubled doubledamn doubleganger doublegear doublehanded doublehandedly doublehandedness doublehatching doubleheader doubleheaders doublehearted doubleheartedness doublehorned doublehung doubleleaf doublelunged doubleness doublenesses doubleprecision doubler doublers doubles doublespeak doublespeaker doublespeakers doublespeaks doublet doubletalk doubleted doublethink doublethinking doublethinks doublethought doubleton doubletone doubletons doubletree doubletrees doublets doublette doublewide doublewides doublewidth doubleword doublewords doubleyou doubling doublings doubloon doubloons doublure doublures doubly doubt doubtable doubtably doubtance doubted doubtedly doubter doubters doubtful doubtfully doubtfulness doubtfulnesses doubtfuls doubting doubtingly doubtingness doubtings doubtless doubtlessly doubtlessness doubtlessnesses doubtmonger doubtous doubts doubtsome doubty douc douce doucely douceness doucenesses doucepere douceperes doucer doucest doucet doucets douceur douceurs douche douched douches douching doucin doucine doucines doucker doucs doudle dough doughbellies doughbelly doughbird doughboy doughboys doughface doughfaced doughfaceism doughfaces doughfeet doughfoot doughfoots doughhead doughier doughiest doughiness doughinesses doughlike doughmaker doughmaking doughman doughmen doughnut doughnutlike doughnuts doughnutted doughnutting doughnuttings doughs dought doughtier doughtiest doughtily doughtiness doughtinesses doughty doughy dougl douglas doukhobor doula doulas doulce douleia douleias doulocracies doulocracy doum douma doumaist doumas doums doundake doup douper douping doupion doupioni doupionis douppioni doups dour doura dourade dourah dourahs douras dourer dourest douricouli dourine dourines dourly dourness dournesses douroucouli douroucoulis douse doused douser dousers douses dousing dout douted douter douters douting doutous douts douvecot doux douzaine douzaines douzainier douzeper douzepers douziame douziames douzieme douziemes dove dovecot dovecote dovecotes dovecots doved doveflower dovefoot dovehouse doveish doveishness doveishnesses dovekey dovekeys dovekie dovekies dovelet dovelets dovelike dovelikeness doveling doven dovened dovening dovens dover dovered dovering dovers doves dovetail dovetailed dovetailer dovetailing dovetailings dovetails dovetailwise doveweed dovewood dovey dovie dovier doviest doving dovish dovishness dovishnesses dovyalis dow dowable dowage dowager dowagerism dowagers dowar dowars dowcet dowcote dowd dowdier dowdies dowdiest dowdily dowdiness dowdinesses dowds dowdy dowdyish dowdyism dowdyisms dowed dowel doweled doweling dowelled dowelling dowellings dowels dower doweral dowered doweress doweries dowering dowerless dowers dowery dowf dowfart dowfness dowfnesses dowhacky dowie dowier dowiest dowily dowiness dowing dowitch dowitcher dowitchers dowl dowlas dowlases dowle dowles dowless dowlne dowlnes dowlney dowls dowly dowment down downa downbear downbeard downbeat downbeats downbend downbent downbound downbow downbows downburst downbursts downby downbye downcast downcastly downcastness downcasts downcome downcomer downcomers downcomes downcoming downcourt downcried downcry downcrying downcurve downcurved downcut downdale downdraft downdrafts downdraught downed downer downers downface downfall downfallen downfalling downfalls downfeed downfield downflow downflows downfold downfolded downforce downforces downgate downgoing downgone downgrade downgraded downgrades downgrading downgrowth downgyved downhanging downhaul downhauls downheaded downhearted downheartedly downheartedness downheartednesses downhill downhiller downhillers downhills downhole downholes downhome downier downiest downily downiness downinesses downing downland downlands downless downlie downlier downligging downlighter downlighters downlike downline downlink downlinked downlinking downlinks download downloadable downloaded downloading downloads downlooked downlooker downlying downmarket downmost downness downpipe downpipes downplay downplayed downplaying downplays downpour downpouring downpours downrange downrigger downriggers downright downrightly downrightness downrightnesses downriver downrush downrushes downrushing downs downscale downscaled downscales downscaling downset downshare downshift downshifted downshifting downshifts downshore downside downsides downsinking downsitting downsize downsized downsizes downsizing downslide downslides downsliding downslip downslope downsman downsome downspin downspins downspout downspouts downstage downstages downstair downstairs downstate downstater downstaters downstates downsteepy downstream downstreet downstroke downstrokes downswing downswings downtake downthrow downthrown downthrows downthrust downtick downticks downtime downtimes downtown downtowner downtowners downtowns downtrampling downtreading downtrend downtrends downtrod downtrodden downtroddenness downturn downturned downturns downward downwardly downwardness downwardnesses downwards downwarp downwash downwashes downway downweed downweigh downweight downweighted downwind downwith downy downzone downzoned downzones downzoning dowp dowps dowress dowries dowry dows dowsabel dowsabels dowse dowsed dowser dowsers dowses dowset dowsets dowsing dowt dowts dowve dowy doxa doxastic doxasticon doxastics doxepin doxie doxies doxographer doxographers doxographical doxographies doxography doxological doxologically doxologies doxologize doxologized doxologizing doxology doxorubicin doxorubicins doxy doxycycline doxycyclines doyen doyenne doyennes doyens doylies doylt doyly doyst doz doze dozed dozen dozened dozener dozening dozens dozent dozenth dozenths dozer dozers dozes dozier doziest dozily doziness dozinesses dozing dozings dozy dozzle dozzled dp dph dphil dpi dpt dr drab draba drabant drabbed drabber drabbers drabbest drabbet drabbets drabbier drabbiest drabbiness drabbinesses drabbing drabbish drabble drabbled drabbler drabblers drabbles drabbletail drabbletailed drabbling drabblings drabby drabette drabettes drabler drablers drably drabness drabnesses drabs dracaena dracaenaceae dracaenas dracena dracenaceae dracenas drachen drachm drachma drachmae drachmai drachmal drachmas drachms dracin drack dracma draco dracocephalum dracone dracones draconian draconic draconically draconin draconism draconisms draconites draconitic dracontian dracontiases dracontiasis dracontic dracontine dracontites dracontium dracula dracunculi dracunculidae dracunculus dracunculuses drad dradge draegerman draegermen draff draffier draffiest draffish draffman draffs draffsack draffy draft draftable draftage drafted draftee draftees drafter drafters draftier draftiest draftily draftiness draftinesses drafting draftings draftman draftmanship draftproof drafts draftsman draftsmanship draftsmanships draftsmen draftsperson draftspersons draftswoman draftswomanship draftswomen draftwoman drafty drag dragade dragaded dragading dragae dragbar dragboat dragbolt dragee dragees drageoir dragged dragger draggers draggier draggiest draggily dragginess dragging draggingly draggle draggled draggles draggletail draggletailed draggletailedly draggletailedness draggling draggly draggy draghound draghounds draglift draglifts dragline draglines dragman dragnet dragnets drago dragoman dragomanate dragomanic dragomanish dragomans dragomen dragon dragonade dragonesque dragoness dragonesses dragonet dragonets dragonfish dragonfishes dragonflies dragonfly dragonhead dragonheads dragonhood dragonise dragonised dragonises dragonish dragonising dragonism dragonisms dragonize dragonized dragonizes dragonizing dragonkind dragonlike dragonnade dragonnades dragonne dragonné dragonroot dragonroots dragons dragontail dragonwort dragoon dragoonable dragoonade dragoonage dragooned dragooner dragooning dragoons dragrope dragropes drags dragsaw dragsawing dragshoe dragsman dragsmen dragstaff dragster dragsters dragée dragées drahthaar drail drailed drailing drails drain drainable drainage drainages drainageway drainboard drainboards draine drained drainer drainerman drainermen drainers drainfield draining drainless drainman drainpipe drainpipes drainplug drains drainspout draintile drainway draisene draisenes draisine draisines drake drakefly drakelet drakes drakestone drakestones drakonite dram drama dramadies dramady dramalogue dramamine dramas dramatic dramatical dramatically dramaticism dramaticisms dramaticle dramatics dramaticule dramatis dramatisable dramatisation dramatisations dramatise dramatised dramatiser dramatisers dramatises dramatising dramatism dramatist dramatists dramatizable dramatization dramatizations dramatize dramatized dramatizer dramatizers dramatizes dramatizing dramaturg dramaturge dramaturges dramaturgic dramaturgical dramaturgically dramaturgies dramaturgist dramaturgists dramaturgs dramaturgy drame dramedies dramedy dramm drammach drammachs drammage dramme drammed drammer dramming drammock drammocks drams dramseller dramshop dramshops drang drank drant dranted dranting drants drap drapabilities drapability drapable drape drapeabilities drapeability drapeable draped draper draperess draperied draperies drapers drapery draperying drapes drapet drapetomania drapets drapey drapier drapiers draping drapped drappie drappies drapping drappy draps drassid drastic drastically drastics drat dratchell dratchells drate drats dratted dratting draught draughtboard draughtboards draughted draughter draughters draughthouse draughtier draughtiest draughtily draughtiness draughtinesses draughting draughtman draughtmanship draughtmen draughts draughtsboard draughtsman draughtsmanship draughtsmanships draughtsmen draughtsperson draughtswoman draughtswomanship draughtswomen draughty draunt draunted draunting draunts drave dravidian dravidic dravite dravya draw drawability drawable drawarm drawback drawbacks drawbar drawbars drawbeam drawbench drawboard drawbolt drawbore drawbored drawbores drawboring drawboy drawbridge drawbridges drawcansir drawcard drawcord drawcut drawdown drawdowns drawee drawees drawer drawerful drawerfuls drawers drawfile drawfiling drawgate drawgates drawgear drawglove drawhead drawhorse drawing drawings drawk drawknife drawknives drawknot drawl drawlatch drawled drawler drawlers drawlier drawliest drawling drawlingly drawlingness drawlingnesses drawlink drawloom drawls drawly drawn drawnet drawnly drawnness drawnwork drawnworks drawoff drawout drawplate drawplates drawpoint drawrod draws drawshave drawshaves drawsheet drawspan drawspring drawstop drawstring drawstrings drawtongs drawtube drawtubes dray drayage drayages drayed drayhorse draying drayman draymen drays drazel drazels drch dread dreadable dreaded dreader dreaders dreadful dreadfully dreadfulness dreadfulnesses dreadfuls dreading dreadingly dreadless dreadlessly dreadlessness dreadlessnesses dreadlock dreadlocks dreadly dreadnaught dreadnaughts dreadness dreadnought dreadnoughts dreads dream dreamage dreamboat dreamboats dreamed dreamer dreameries dreamers dreamery dreamful dreamfully dreamfulness dreamfulnesses dreamhole dreamholes dreamier dreamiest dreamily dreaminess dreaminesses dreaming dreamingful dreamingly dreamings dreamish dreamland dreamlands dreamless dreamlessly dreamlessness dreamlessnesses dreamlet dreamlike dreamlikeness dreamlit dreamlore dreams dreamscape dreamscapes dreamsily dreamsiness dreamsy dreamt dreamtide dreamtime dreamtimes dreamwhile dreamwhiles dreamwise dreamworld dreamworlds dreamy drear dreare drearer dreares drearest drearfully drearier drearies dreariest drearihead dreariheads drearihood drearihoods drearily dreariment dreariments dreariness drearinesses drearing drearings drearisome drearisomely drearisomeness drearly drearness drears dreary dreche dreck dreckier dreckiest drecks drecky dredge dredged dredgeful dredger dredgers dredges dredging dredgings dree dreed dreegh dreeing dreep dreepiness dreepy drees dreg dreggier dreggiest dreggily dregginess dregginesses dreggish dreggy dregless dregs dreich dreicher dreichest dreidel dreidels dreidl dreidls dreigh dreikanter dreikanters dreiling dreint dreissena dreissiger drek dreks drench drenched drencher drenchers drenches drenching drenchingly dreng drengage drengh drent drepane drepania drepanid drepanididae drepaniform drepanis drepanium drepaniums drepanoid drere dreres drerihead dreriheads dresden dress dressage dressages dressed dresser dressers dressership dresses dressguard dressguards dressier dressiest dressily dressiness dressinesses dressing dressings dressline dressmade dressmake dressmaker dressmakers dressmakership dressmakery dressmakes dressmaking dressmakings dressoir dressoirs dressy drest dretch drevel drevill drevills drew drewite drey dreyfus dreynt dreys drias drib dribbed dribber dribbers dribbet dribbing dribble dribbled dribblement dribbler dribblers dribbles dribblet dribblets dribblier dribbliest dribbling dribbly driblet driblets dribs drice drices dricksie dricksier dricksiest dridder driddle drie driech dried driegh drier drierman driers dries driest drift driftage driftages driftbolt drifted drifter drifters driftfish driftfishes driftier driftiest drifting driftingly driftland driftless driftlessness driftlet driftman driftnet driftnets driftpiece driftpin driftpins drifts driftway driftweed driftwind driftwood driftwoods drifty drighten drightin drill drillabilities drillability drillable drillbit drilled driller drillers drillet drilling drillings drillman drillmaster drillmasters drills drillship drillships drillstock drillstocks drilvis drily drimys dringle drink drinkabilities drinkability drinkable drinkableness drinkablenesses drinkables drinkably drinker drinkers drinkery drinking drinkings drinkless drinkproof drinks drinky drinn drip dripless dripolator drippage drippages dripped dripper drippers drippier drippiest drippily drippiness drippinesses dripping drippings dripple dripproof drippy drips dripstick dripstone dripstones dript drisheen drisheens drisk drissel drivabilities drivability drivable drivage drive driveabilities driveability driveable driveaway driveboat drivebolt driveby drivecap drivehead drivel driveled driveler drivelers driveline drivelines driveling drivelingly drivelled driveller drivellers drivelling drivellingly drivels driven drivenness drivennesses drivepipe driver driverless drivers drivership drives drivescrew driveshaft driveshafts drivethrough drivethroughs drivetrain drivetrains driveway driveways drivewell driving drivingly drivings drixoral drizzle drizzled drizzles drizzlier drizzliest drizzling drizzlingly drizzly drochuil droddum drof drofland droger drogerman drogermen drogers drogh drogheda drogher drogherman droghers droghlin drogoman drogue drogues droguet droguets droh droich droichier droichiest droichs droichy droid droids droil droiled droiling droils droit droits droitsman droitural droiture droiturel drole droler drolerie droles drolest droll drolled droller drolleries drollery drollest drolling drollingly drollings drollish drollishness drollist drollness drollnesses drolls drolly drolushness dromaeognathism dromaeognathous dromaeosaur dromaeosauridae dromaius drome dromed dromedare dromedares dromedarian dromedaries dromedarist dromedary dromes drometer dromic dromical dromioid dromograph dromoi dromomania dromometer dromon dromond dromonds dromons dromophobia dromophobias dromornis dromos dromotropic drona dronage drone droned dronel dronepipe droner droners drones dronet drongo drongoes drongos dronier droniest droning droningly dronish dronishly dronishness dronishnesses dronkelew dronkgrass dronte drony droob droobs droog droogish droogs drook drooked drooking drookings drookit drooks drool drooled droolier drooliest drooling drools drooly droome droomes droop drooped drooper droopier droopiest droopily droopiness droopinesses drooping droopingly droopingness droops droopt droopy drop dropax dropberry dropcloth dropcloths dropflies dropflower dropfly dropforge dropforged dropforger dropforges dropforging drophead dropheads dropkick dropkicker dropkickers dropkicks droplet droplets droplight droplights droplike dropline dropling dropman dropmeal dropout dropouts droppable droppage dropped dropper dropperful dropperfuls droppers droppersful dropping droppingly droppings dropple dropples droppy drops dropseed dropshot dropshots dropsical dropsically dropsicalness dropsied dropsies dropsonde dropstone dropstones dropsy dropsywort dropt dropvie dropwise dropworm dropwort dropworts drosera droseraceae droseraceous droseras droshkies droshky droshkys droskies drosky droskys drosograph drosometer drosometers drosophila drosophilae drosophilas drosophilidae drosophyllum dross drossed drossel drosser drosses drossier drossiest drossiness drossinesses drossing drossless drossy drostden drostdies drostdy drostdys drou droud droughermen drought droughtier droughtiest droughtiness droughtinesses droughts droughty drouk droukan drouked drouket drouking droukings droukit drouks droumy drouth drouthes drouthier drouthiest drouthiness drouthinesses drouths drouthy drove droved drover drovers droves droving drovings drovy drow drown drownd drownded drownding drownds drowned drowner drowners drowning drowningly drownings drownproofing drowns drows drowse drowsed drowses drowsier drowsiest drowsihead drowsiheads drowsihed drowsiheds drowsihood drowsily drowsiness drowsinesses drowsing drowsy drowte droyl drub drubbed drubber drubbers drubbing drubbings drubble drubbly drubly drubs drucken druckenness druckennesses drudge drudged drudger drudgeries drudgers drudgery drudges drudgework drudgeworks drudging drudgingly drudgism drudgisms druery druffen drug drugeteria drugge drugged drugger druggeries druggers druggery drugget druggeting druggets druggie druggier druggies druggiest drugging druggist druggister druggists druggy drugless drugmaker drugmakers drugman drugola drugolas drugs drugshop drugstore drugstores druid druidess druidesses druidic druidical druidism druidisms druidology druidry druids druith drum drumbeat drumbeater drumbeaters drumbeating drumbeatings drumbeats drumble drumbled drumbledor drumbledore drumbledors drumbler drumbles drumbling drumette drumettes drumfire drumfires drumfish drumfishes drumhead drumheads drumler drumlier drumliest drumlike drumlin drumline drumlinoid drumlins drumloid drumloidal drumly drummed drummer drummers drumming drummock drummocks drummy drumread drumreads drumroll drumrolls drums drumskin drumslade drumsler drumstick drumsticks drumwood drung drungar drunk drunkard drunkards drunkelew drunken drunkeness drunkenly drunkenness drunkennesses drunkensome drunkenwise drunker drunkeries drunkery drunkest drunkly drunkometer drunkometers drunks drunt drupaceous drupal drupe drupel drupelet drupelets drupels drupeole drupes drupetum drupiferous drupose drury druse drused druses drusier drusiest drusy druther druthers druttle druxey druxier druxiest druxiness druxy druze dry dryable dryad dryadella dryades dryadetum dryadic dryads dryas dryasdust dryasdusts drybeard drybeat drybeaten drybeating drybeats drybrained drybrush drybrushes drycoal drydenian drydock dryer dryerman dryermen dryers dryest dryfarm dryfarmer dryfat dryfist dryfoot drygoods drygoodsman dryhouse drying dryings dryinid dryish dryland drylot drylots dryly drymarchon drymoglossum drymouth drymouths drynaria dryness drynesses dryopithecid dryopithecine dryopithecines dryopithecus dryopteridaceae dryopteris dryopteroid drypis drypoint drypoints dryrot drys drysalter drysalteries drysalters drysaltery drysne dryster drystone dryth drywall drywalled drywalling drywalls drywell drywells dryworker drôle drôles ds dsect dsects dsname dsnames dso dsobo dsobos dsomo dsomos dsos dsp dsr dsri dt dtd dtente dtset du duad duadic duads dual duali dualin dualins dualisation dualise dualises dualism dualisms dualist dualistic dualistically dualists dualities duality dualization dualize dualized dualizes dualizing dualled dualling dually dualogue duals duan duans duant duar duarch duarchies duarchy duars dub dubash dubb dubba dubbah dubbed dubbeh dubbeltje dubber dubbers dubbin dubbing dubbings dubbins dubby dubieties dubiety dubio dubiocrystalline dubiosities dubiosity dubious dubiously dubiousness dubiousnesses dubitable dubitably dubitancies dubitancy dubitant dubitante dubitate dubitated dubitates dubitating dubitatingly dubitation dubitations dubitative dubitatively dublin dubliner dubnium dubniums duboisin duboisine dubonnet dubonnets dubrovnik dubs duc ducal ducally ducamara ducape ducat ducato ducaton ducatoon ducatoons ducats ducatus ducdame duce duces duchan duchery duchess duchesse duchesses duchesslike duchies duchy duci duck duckbill duckbills duckblind duckboard duckboards duckboat ducked ducker duckeries duckers duckery duckfoot duckfooted duckhearted duckhood duckhouse duckhunting duckie duckier duckies duckiest ducking duckings duckish ducklar ducklet duckling ducklings ducklingship duckmeat duckmole duckmoles duckpin duckpins duckpond ducks duckshove duckshoved duckshover duckshovers duckshoves duckshoving duckstone ducktail ducktails duckwalk duckwalked duckwalking duckwalks duckweed duckweeds duckwheat duckwife duckwing ducky ducs duct ductal ducted ductibility ductible ductile ductilely ductileness ductilenesses ductilibility ductilimeter ductilise ductilities ductility ductilize ductilized ductilizing ducting ductings duction ductless ductor ducts ductule ductules ductulus ducture ductus ductwork ductworks dud dudaim dudder dudderies dudders duddery duddie duddier duddies duddiest duddle duddy dude duded dudeen dudeens dudelsack dudes dudgen dudgeon dudgeons dudheen dudheens dudine duding dudish dudishly dudishness dudism dudisms dudler dudley dudleyite dudman duds due duecentist duecento duecentos dued dueful duel dueled dueler duelers dueling duelings duelist duelistic duelists duelled dueller duellers duelli duelling duellings duellist duellistic duellists duellize duello duellos duels duelsome duenas duende duendes dueness duenesses duenna duennadom duennas duennaship duennaships duer dues duet duets duett duette duetted duetti duetting duettino duettinos duettist duettists duetto duettos duetts duff duffadar duffed duffel duffels duffer dufferdom dufferdoms dufferism dufferisms duffers duffest duffies duffing duffings duffle duffles duffs duffy dufoil dufrenite dufrenoysite dufter dufterdar duftery duftite duftry dufus dufuses dug dugal dugdug dugento duggler dugong dugongidae dugongs dugout dugouts dugs dugway duh duhat dui duiker duikerbok duikerboks duikerbuck duikers duim duing duinhewassel duit duits dujan duka duke duked dukedom dukedoms dukeling dukelings dukely dukeries dukery dukes dukeship dukeships dukhn dukhobor duking dukker dukkeripen dukkeripens dukkha dukuma dulbert dulc dulcamara dulcamaras dulcarnon dulce dulcely dulceness dulcet dulcetly dulcetness dulcets dulcian dulciana dulcianas dulcians dulcid dulcification dulcifications dulcified dulcifies dulcifluous dulcify dulcifying dulcigenic dulciloquent dulciloquies dulciloquy dulcimer dulcimers dulcimore dulcimores dulcinea dulcineas dulcite dulcites dulcitol dulcitols dulcitone dulcitones dulcitude dulcitudes dulcity dulcor dulcorate dulcose dulcoses dule duledge duler dules dulfer dulfers dulia dulias dull dullard dullardism dullardness dullards dullbrained dulled duller dullery dullest dullhead dullhearted dullier dulliest dullification dullify dulling dullish dullishly dullity dullness dullnesses dullpate dulls dullsome dullsville dullsvilles dully dulness dulnesses dulocracies dulocracy duloses dulosis dulotic dulse dulseman dulses dult dultie duluth dulwilly duly dum duma dumaist dumaists dumas dumb dumba dumbass dumbasses dumbbell dumbbeller dumbbells dumbcane dumbcanes dumbcow dumbed dumber dumbest dumbfish dumbfound dumbfounded dumbfounder dumbfoundered dumbfoundering dumbfounderment dumbfounders dumbfounding dumbfoundment dumbfounds dumbhead dumbheaded dumbheads dumbing dumble dumbledore dumbledores dumbly dumbness dumbnesses dumbo dumbos dumbs dumbstricken dumbstruck dumbwaiter dumbwaiters dumby dumdum dumdums dumetella dumetose dumfound dumfounded dumfounder dumfoundered dumfoundering dumfounderment dumfounders dumfounding dumfounds dumka dumkas dumky dummel dummered dummerer dummerers dummied dummier dummies dummiest dumminess dumminesses dummkopf dummkopfs dummy dummying dummyism dummyweed dumontite dumortierite dumortierites dumose dumosities dumosity dumous dump dumpage dumpbin dumpbins dumpcart dumpcarts dumped dumper dumpers dumpfile dumpier dumpies dumpiest dumpily dumpiness dumpinesses dumping dumpings dumpish dumpishly dumpishness dumpishnesses dumple dumpled dumpler dumples dumpling dumplings dumpoke dumps dumpsite dumpsites dumpster dumpsters dumpty dumpy dumsola dumuzi dun dunair dunal dunam dunamis dunams dunbird dunce duncedom duncedoms duncehood dunceries duncery dunces dunch dunched dunches dunching dunciad duncical duncify duncifying duncish duncishly duncishness dundasite dundavoe dundee dundees dunder dunderbolt dunderfunk dunderfunks dunderhead dunderheaded dunderheadededness dunderheadedness dunderheadednesses dunderheadism dunderheadisms dunderheads dunderpate dunderpates dunders dundrearies dundreary dune duneland dunelands dunelike dunes dunfish dung dungannonite dungaree dungarees dungari dungas dungbeck dungbird dungbred dunged dungeon dungeoned dungeoner dungeoners dungeoning dungeonlike dungeons dunger dungheap dungheaps dunghill dunghills dunghilly dungier dungiest dunging dungmere dungmeres dungol dungon dungs dungy dungyard duniewassal duniewassals dunite dunites dunitic duniwassal duniwassals dunk dunkable dunkadoo dunkard dunked dunker dunkerque dunkers dunking dunkirk dunkle dunkled dunkling dunks dunlin dunlins dunnage dunnaged dunnages dunnaging dunnakin dunnakins dunnart dunnarts dunne dunned dunner dunness dunnesses dunnest dunnier dunnies dunniest dunniewassal dunniewassals dunniewassel dunning dunnings dunnish dunnite dunnites dunno dunnock dunnocks dunny dunpickle duns dunsh dunshed dunshes dunshing dunst dunstable dunster dunstone dunt dunted dunter dunting duntle dunts duny dunziekte duo duocosane duodecagon duodecahedral duodecahedron duodecane duodecastyle duodecennial duodecillion duodecillions duodecillionth duodecillionths duodecimal duodecimality duodecimally duodecimals duodecimfid duodecimo duodecimole duodecimomos duodecimos duodecuple duodedena duodedenums duodena duodenal duodenary duodenas duodenate duodenation duodene duodenectomies duodenectomy duodenitis duodenitises duodenocholangitis duodenocholecystostomy duodenocholedochotomy duodenocystostomy duodenoenterostomy duodenogram duodenojejunal duodenojejunostomies duodenojejunostomy duodenopancreatectomy duodenoscopy duodenostomy duodenotomy duodenum duodenums duodial duodiode duodiodepentode duodrama duodynatron duograph duogravure duole duoliteral duolog duologs duologue duologues duomachy duomi duomo duomos duopod duopolies duopolist duopolistic duopoly duopsonies duopsonistic duopsony duos duosecant duotone duotoned duotones duotriacontane duotriode duotype duoviri dup dupabilities dupability dupable dupatta dupattas dupe duped dupedom duper duperies dupers dupery dupes duping dupion dupioni dupions dupla duplation duple duplet duplets duplex duplexed duplexer duplexers duplexes duplexing duplexities duplexity duplexs duplicabilities duplicability duplicable duplicand duplicando duplicands duplicatable duplicate duplicated duplicately duplicates duplicating duplication duplications duplicative duplicator duplicators duplicature duplicatures duplicatus duplicia duplicident duplicidentata duplicidentate duplicious duplicipennate duplicitas duplicities duplicitous duplicitously duplicitousness duplicitousnesses duplicity duplied duplies duplification duplified duplify duplifying duplon duplone duply duplying dupondidii dupondii dupondius dupondiuses duppa dupped dupper duppies dupping duppy dups dur dura durabilities durability durable durableness durablenesses durables durably durabolin duracine durain dural durals duralumin duraluminium duraluminiums duralumins duramater duramatral duramen duramens durance durances durangite durant durante durants duraplasty duraquara duras duraspinalis duration durational durationless durations durative duratives durax durbachite durbar durbars durchkomponiert durdenite durdum durdums dure dured duree dureful durene durenol dureresque dures duress duresse duresses duressor duret duretto durezza durga durgah durgan durgans durgen durgier durgiest durgy durham durian durians duricrust duridine during duringly durio durion durions durity durmast durmasts durn durndest durned durneder durnedest durning durns duro duroc durocs durometer durometers duroquinone duros durous duroy duroys durr durra durras durrie durries durrin durrs durry durst durukuli durukulis durum durums durwan durwaun duryl durzee durzi durzis dusack dusanbe duscle dusenwind dush dushanbe dushed dushes dushing dusicyon dusio dusk dusked dusken duskened duskening duskens dusker duskest duskier duskiest duskily duskiness duskinesses dusking duskingtide duskish duskishly duskishness duskishnesses duskly duskness dusknesses dusks dusky dusseldorf dusserah dust dustband dustbin dustbins dustblu dustbox dustcart dustcarts dustcloth dustcloths dustcoat dustcover dustcovers dusted dustee duster dusterman dustermen dusters dustfall dustheap dustheaps dustier dustiest dustily dustiness dustinesses dusting dustings dustless dustlessness dustlike dustman dustmen dustmop dustoff dustoffs dustoor dustoori dustour dustpan dustpanful dustpans dustpoint dustproof dustrag dustrags dusts dustsheet dustsheets duststorm dusttight dustuck dustuk dustup dustups dustwoman dusty dustyfoot dutch dutched dutches dutchess dutchify dutching dutchman dutchmen duteous duteously duteousness duteousnesses dutiabilities dutiability dutiable dutied duties dutiful dutifully dutifulness dutifulnesses dutra dutuburi duty dutymonger duumvir duumviral duumvirate duumvirates duumviri duumvirs duvet duvetine duvetines duvets duvetyn duvetyne duvetynes duvetyns dux duxelles duxes duyker duykers dvaita dvandva dvandvas dvigu dvorak dvornik dvorniks dwaible dwaibly dwale dwales dwalm dwalmed dwalming dwalms dwam dwammed dwamming dwams dwang dwangs dwarf dwarfed dwarfer dwarfest dwarfing dwarfish dwarfishly dwarfishness dwarfishnesses dwarfism dwarfisms dwarflike dwarfling dwarfness dwarfnesses dwarfs dwarfy dwarves dwaum dwaumed dwauming dwaums dwayberry dweeb dweebish dweeble dweebs dwell dwelled dweller dwellers dwelling dwellings dwells dwelt dwight dwile dwiles dwindle dwindled dwindlement dwindlements dwindles dwindling dwine dwined dwines dwining dwt dx dy dyable dyad dyadic dyadically dyadics dyads dyak dyakisdodecahedron dyarchic dyarchical dyarchies dyarchy dyas dyaster dyaus dybbuk dybbukim dybbuks dyce dye dyeabilities dyeability dyeable dyebeck dyed dyehouse dyeing dyeings dyeleaves dyeline dyelines dyemaker dyemaking dyer dyers dyes dyester dyesters dyestuff dyestuffs dyeware dyeweed dyeweeds dyewood dyewoods dygogram dying dyingly dyingness dyingnesses dyings dyirbal dykage dyke dyked dykehopper dyker dykereeve dykes dykey dykier dykiest dyking dylan dyn dynactinometer dynagraph dynam dynameter dynametric dynametrical dynamic dynamical dynamically dynamicist dynamicists dynamicity dynamics dynamis dynamise dynamised dynamises dynamising dynamism dynamisms dynamist dynamistic dynamists dynamitard dynamitards dynamite dynamited dynamiter dynamiters dynamites dynamitic dynamitical dynamitically dynamiting dynamitish dynamitism dynamitist dynamization dynamize dynamized dynamizes dynamizing dynamo dynamoelectric dynamoelectrical dynamogeneses dynamogenesis dynamogenic dynamogenies dynamogenous dynamogenously dynamogeny dynamograph dynamographs dynamometamorphic dynamometamorphism dynamometamorphosed dynamometer dynamometers dynamometric dynamometrical dynamometries dynamometry dynamomorphic dynamoneure dynamophone dynamos dynamoscope dynamostatic dynamotor dynamotors dynapolis dynast dynastic dynastical dynastically dynasticism dynastid dynastidan dynasties dynasts dynasty dynatron dynatrons dyne dynein dyneins dynel dynels dynes dynode dynodes dyophone dyophysite dyophysites dyostyle dyotheism dyothelete dyotheletes dyotheletic dyotheletical dyotheletism dyotheletisms dyothelism dyothelisms dyothelite dyothelites dyothelitic dyothelitical dyphone dypnone dys dysacousia dysacousis dysacousma dysacusia dysadaptation dysaesthesia dysaesthesias dysaesthetic dysanagnosia dysanalyte dysaphia dysaptation dysarthria dysarthrias dysarthric dysarthrosis dysautonomia dysbarism dysbulia dysbulic dyschiria dyschroa dyschroas dyschroia dyschroias dyschromatopsia dyschromatoptic dyschronous dyscrase dyscrased dyscrasia dyscrasial dyscrasias dyscrasic dyscrasing dyscrasite dyscrasites dyscrasy dyscratic dyscrinism dyscrystalline dysdercus dysenteric dysenterical dysenteries dysentery dysepulotic dysepulotical dyserethisia dysergasia dysergia dysesthesia dysesthetic dysfunction dysfunctional dysfunctionally dysfunctioning dysfunctions dysgeneses dysgenesic dysgenesis dysgenetic dysgenic dysgenical dysgenics dysgeogenous dysgnosia dysgonic dysgraphia dysgraphias dysgraphic dysharmonic dysidrosis dyskeratosis dyskinesia dyskinesias dyskinetic dyslalia dyslalias dyslectic dyslectics dyslexia dyslexias dyslexic dyslexically dyslexics dyslogia dyslogies dyslogistic dyslogistically dyslogy dysluite dyslysin dysmelia dysmelias dysmelic dysmenorrhagia dysmenorrhea dysmenorrheal dysmenorrheas dysmenorrheic dysmenorrhoea dysmenorrhoeal dysmenorrhoeas dysmenorrhoeic dysmerism dysmeristic dysmerogenesis dysmerogenetic dysmeromorph dysmeromorphic dysmetria dysmnesia dysmorphism dysmorphophobia dysmorphophobias dysneuria dysnomy dysodil dysodile dysodiles dysodils dysodontiasis dysodyle dysodyles dysorexia dysorexy dysoxidation dysoxidizable dysoxidize dyspareunia dyspareunias dyspathetic dyspathies dyspathy dyspepsia dyspepsias dyspepsies dyspepsy dyspeptic dyspeptical dyspeptically dyspeptics dysphagia dysphagias dysphagic dysphagies dysphagy dysphasia dysphasias dysphasic dysphasics dysphemia dysphemism dysphemisms dysphemistic dysphemize dysphemized dysphonia dysphonias dysphonic dysphoria dysphorias dysphoric dysphotic dysphrasia dysphrenia dyspituitarism dysplasia dysplasias dysplastic dyspnea dyspneal dyspneas dyspneic dyspnoea dyspnoeal dyspnoeas dyspnoeic dyspnoi dyspnoic dysporomorph dyspraxia dyspraxias dysprosia dysprosium dysprosiums dysraphia dysrhythmia dysrhythmias dysrhythmic dyssnite dysspermatism dyssynergia dyssynergy dyssystole dystaxia dystaxias dystectic dysteleological dysteleologically dysteleologies dysteleologist dysteleologists dysteleology dysthesia dysthesias dysthetic dysthymia dysthymiac dysthymiacs dysthymias dysthymic dysthyroidism dystocia dystocial dystocias dystome dystomic dystomous dystonia dystonias dystonic dystopia dystopian dystopias dystrophia dystrophias dystrophic dystrophication dystrophications dystrophies dystrophin dystrophins dystrophy dysuria dysurias dysuric dysuries dysury dysyntribite dytiscid dytiscidae dytiscids dyushambe dyvour dyvouries dyvours dyvoury dz dzeren dzerens dzerin dzeron dzho dzhos dziggetai dziggetais dzo dzos débouché débride débrided débridement débrides débriding débutant débutante débutantes débutants déchéance décime décimes déclassé déclassée déclassées déclassés décolletage décolletages décolleté dégagé dégoût dégringolade dégringolades dégringoler dégringolered dégringolering dégringolers déjeuner déjeuners délassement démarche démarches démenti démentis démodé département départements dépêche déraciné dérailleur dérailleurs désagrément déshabillé déshabillés désobligeante désobligeantes désoeuvré désorienté détente détenu détenue détenues détenus détraqué détraquée détraquées détraqués dévot dévots e ea eably eaceworm eaceworms each eachwhere eacles ead eadi eadios eadish eadishes eager eagerer eagerest eagerly eagerness eagernesses eagers eagle eagled eaglehawk eaglelike eagles eagless eaglestone eaglet eaglets eaglewood eaglewoods eagling eagrass eagre eagres ealderman ealdorman ealdormen eale eales eam ean eaned eaning eanling eanlings eans ear earable earache earaches earbash earbashed earbashes earbashing earbob earbobs earcap earclip earcockle earcon earcons eard earded earding eardrop eardropper eardrops eardrum eardrums eards eared earflap earflaps earflower earful earfuls earhead earhole earing earings earjewel earl earlap earlaps earldom earldoms earlduck earless earlesss earlet earlier earlierise earlierised earlierises earlierising earlierize earlierized earlierizes earlierizing earlies earliest earlike earliness earlinesses earlish earlobe earlobes earlock earlocks earls earlship earlships early earlyish earlywood earlywoods earmark earmarked earmarking earmarkings earmarks earmindedness earmuff earmuffs earn earnable earned earner earners earnest earnestful earnestly earnestness earnestnesses earnests earnful earning earnings earns earock earphone earphones earpick earpicks earpiece earpieces earplug earplugs earreach earring earringed earrings ears earscrew earsh earshell earshot earshots earsore earsplitting earspool earst earstone earstones eartab eartag eartagged earth earthball earthboard earthborn earthbound earthbred earthdrake earthed earthen earthenhearted earthenware earthenwares earthfall earthfalls earthfast earthflax earthflaxes earthgall earthgrubber earthian earthier earthiest earthily earthiness earthinesses earthing earthkin earthless earthlier earthlies earthliest earthlight earthlights earthlike earthliness earthlinesses earthling earthlings earthly earthmaker earthmaking earthman earthmen earthmove earthmover earthmovers earthmoving earthmovings earthnut earthnuts earthpea earthpeas earthquake earthquaked earthquaken earthquakes earthquaking earthquave earthrise earthrises earths earthset earthsets earthshaker earthshakers earthshaking earthshakingly earthshattering earthshine earthshines earthshock earthslide earthsmoke earthstar earthstars earthtongue earthwall earthward earthwards earthwax earthwaxes earthwolf earthwolves earthwoman earthwomen earthwork earthworks earthworm earthworms earthy earwax earwaxes earwig earwigged earwigginess earwigging earwiggy earwigs earwitness earwitnesses earworm earworms earwort eas ease eased easeful easefully easefulness easefulnesses easel easeled easeless easels easement easements easer easers eases easier easies easiest easily easiness easinesses easing easle easles eassel easselgate easselward eassil east eastabout eastbound easted easter eastering easterlies easterliness easterling easterlings easterly eastermost eastern easterner easterners easternise easternization easternizations easternize easternized easternizes easternizing easternly easternmost easters eastertide easting eastings eastland eastlander eastlands eastlin eastling eastlings eastlins eastman eastmost eastness easts eastside eastward eastwardly eastwards easy easygoing easygoingly easygoingness easygoingnesses easylike eat eatability eatable eatableness eatables eatage eatages eatberry eatche eatches eaten eater eateries eaters eatery eath eathe eathly eating eatings eats eau eaus eaux eave eaved eavedrop eavedropper eavedropping eaver eaves eavesdrip eavesdrips eavesdrop eavesdropped eavesdropper eavesdroppers eavesdropping eavesdroppings eavesdrops eavesing ebauche ebauchoir ebb ebbed ebbet ebbets ebbing ebbless ebbman ebbs ebbtide ebbtides ebcasc ebcd ebcdic ebdomade ebenaceae ebenaceous ebenales ebeneous ebenezer ebenezers ebeniste ebenistes ebionise ebionised ebionises ebionising ebionism ebionisms ebionite ebionitic ebionitism ebionitisms ebionize ebionized ebionizes ebionizing eblis ebn eboe ebon ebonics ebonies ebonige ebonise ebonised ebonises ebonising ebonist ebonists ebonite ebonites ebonize ebonized ebonizes ebonizing ebons ebony ebook ebooks eboulement eboulements ebracteate ebracteolate ebraick ebriate ebriated ebricty ebrieties ebriety ebrillade ebrillades ebriose ebriosities ebriosity ebrious ebriously ebro ebs ebullate ebulliate ebullience ebulliences ebulliencies ebulliency ebullient ebulliently ebulliometer ebulliometry ebullioscope ebullioscopes ebullioscopic ebullioscopical ebullioscopically ebullioscopies ebullioscopy ebullition ebullitions ebullitive ebulus eburated eburin eburine eburnated eburnation eburnations eburnean eburneoid eburneous eburnian eburnification eburnifications eburophyton ec ecad ecads ecalcarate ecalcavate ecanda ecardinal ecardinate ecardine ecarinate ecart ecarte ecartes ecaudate ecb ecballium ecbasis ecbatic ecblasteses ecblastesis ecblastpsis ecbole ecboles ecbolic ecbolics ecc eccaleobion eccaleobions ecce eccentrate eccentric eccentrical eccentrically eccentricities eccentricity eccentrics eccentring eccentrometer ecch ecchondroma ecchondrosis ecchondrotome ecchymoma ecchymose ecchymosed ecchymoses ecchymosis ecchymotic eccl eccles ecclesia ecclesiae ecclesial ecclesiarch ecclesiarchs ecclesiarchy ecclesias ecclesiast ecclesiastes ecclesiastic ecclesiastical ecclesiasticalism ecclesiastically ecclesiasticalness ecclesiasticise ecclesiasticism ecclesiasticisms ecclesiasticize ecclesiastics ecclesiastry ecclesiasts ecclesioclastic ecclesiography ecclesiolater ecclesiolaters ecclesiolatries ecclesiolatry ecclesiologic ecclesiological ecclesiologically ecclesiologies ecclesiologist ecclesiologists ecclesiology ecclesiophobia eccm ecco eccoprotic eccoproticophoric eccoprotics eccrine eccrinologies eccrinology eccrises eccrisis eccritic eccritics eccyclema eccyesis ecdemic ecdemite ecderon ecderonic ecdyses ecdysial ecdysiasm ecdysiast ecdysiasts ecdysis ecdyson ecdysone ecdysones ecdysons eceses ecesic ecesis ecesises ecg ecgonin ecgonine ech echafaudage echappe echappee echappes echar echard echards eche echea eched echelette echelle echelles echelon echeloned echeloning echelonment echelons echeneid echeneidid echeneididae echeneidoid echeneis eches echevaria echeveria echeverias echevin echidna echidnae echidnas echidnine echidnines echidnophaga echinacea echinaceas echinal echinate echinated eching echini echinid echinidan echiniform echinital echinite echinocactus echinocereus echinochloa echinochrome echinococci echinococcoses echinococcosis echinococcus echinoderm echinodermal echinodermata echinodermatous echinodermic echinoderms echinoid echinoidea echinoids echinologist echinology echinops echinopsine echinostome echinostomiasis echinulate echinulated echinulation echinuliform echinus echinuses echitamine echites echium echiums echiurid echiuroid echiuroids echnida echo echocardiogram echocardiograms echocardiograph echocardiographer echocardiographers echocardiographic echocardiographies echocardiographs echocardiography echoed echoencephalogram echoencephalograms echoencephalograph echoencephalographic echoencephalographies echoencephalographs echoencephalography echoer echoers echoes echoey echogram echograms echograph echographies echography echoic echoing echoingly echoise echoised echoises echoising echoism echoisms echoist echoists echoize echoized echoizes echoizing echolalia echolalias echolalic echoless echolike echolocate echolocated echolocates echolocating echolocation echolocations echometer echopractic echopraxes echopraxia echopraxias echopraxis echos echovirus echoviruses echowise echt eciliate ecize ecklein eclair eclaircise eclaircissement eclaircissements eclairissement eclairs eclampsia eclampsias eclampsies eclampsy eclamptic eclat eclated eclating eclats eclectic eclectical eclectically eclecticise eclecticism eclecticisms eclecticist eclecticize eclectics eclectism eclectist eclegm eclegma eclegme eclipsable eclipsareon eclipsation eclipse eclipsed eclipser eclipsers eclipses eclipsing eclipsis eclipsises ecliptic ecliptical ecliptically ecliptics eclogic eclogite eclogites eclogue eclogues eclose eclosed ecloses eclosing eclosion eclosions ecm ecmnesia eco ecobabble ecocatastrophe ecocatastrophes ecocidal ecocide ecocides ecoclimate ecoclimates ecod ecodeme ecofreak ecofreaks ecofriendly ecoid ecol ecole ecoles ecologic ecological ecologically ecologies ecologist ecologists ecology ecomomist econ econobox econoboxes economese econometer econometric econometrical econometrically econometrician econometricians econometrics econometrist econometrists economic economical economically economicalness economics economies economisation economisations economise economised economiser economisers economises economising economism economisms economist economists economization economizations economize economized economizer economizers economizes economizing economy econut econuts ecophene ecophobia ecophobias ecophysiological ecophysiologies ecophysiology ecorch ecorche ecorches ecorticate ecosoc ecospecies ecospecific ecospecifically ecosphere ecospheres ecossaise ecossaises ecostate ecosystem ecosystems ecotage ecotages ecoterrorism ecoterrorisms ecoterrorist ecoterrorists ecotipically ecotonal ecotone ecotones ecotopic ecotourism ecotourisms ecotourist ecotourists ecotoxic ecotoxicologies ecotoxicologist ecotoxicologists ecotoxicology ecotype ecotypes ecotypic ecotypically ecoute ecphasis ecphonema ecphoneses ecphonesis ecphorable ecphore ecphoria ecphoriae ecphorias ecphorization ecphorize ecphory ecphova ecphractic ecphractics ecphrasis ecrase ecraseur ecraseurs ecrasite ecrevisse ecritoire ecritoires ecroulement ecru ecrus ecrustaceous ecstases ecstasied ecstasies ecstasis ecstasise ecstasised ecstasises ecstasising ecstasize ecstasized ecstasizes ecstasizing ecstasy ecstasying ecstatic ecstatica ecstatical ecstatically ecstaticise ecstaticize ecstatics ecstrophy ect ectad ectadenia ectal ectally ectases ectasia ectasias ectasis ectatic ectene ectental ectepicondylar ecteron ectethmoid ectethmoidal ecthetically ecthlipses ecthlipsis ecthyma ecthymas ecthymata ecthymatous ectiris ecto ectobatic ectoblast ectoblastic ectoblasts ectobronchium ectocardia ectocarpaceous ectocarpic ectocarpous ectocelic ectochondral ectocinerea ectocinereal ectocoelic ectocommensal ectocommensals ectocondylar ectocondyle ectocondyloid ectocornea ectocranial ectocrine ectocrines ectocuneiform ectocuniform ectocyst ectodactylism ectoderm ectodermal ectodermic ectodermoidal ectodermosis ectoderms ectodynamomorphic ectoentad ectoenzym ectoenzyme ectoenzymes ectoethmoid ectogeneous ectogeneses ectogenesis ectogenetic ectogenic ectogenies ectogenous ectogeny ectoglia ectolecithal ectoloph ectomere ectomeres ectomeric ectomesoblast ectomorph ectomorphic ectomorphies ectomorphism ectomorphs ectomorphy ectonephridium ectoparasite ectoparasites ectoparasitic ectoparasitism ectoparasitisms ectopatagia ectopatagium ectophloic ectophyte ectophytes ectophytic ectopia ectopias ectopic ectopically ectopies ectopistes ectoplacenta ectoplasm ectoplasmatic ectoplasmic ectoplasms ectoplastic ectoplasy ectoproct ectoprocta ectoproctan ectoproctous ectoprocts ectopterygoid ectopy ectoretina ectorganism ectorhinal ectosarc ectosarcous ectosarcs ectoskeleton ectosomal ectosome ectosphenoid ectosphenotic ectosphere ectosteal ectosteally ectostosis ectotheca ectotherm ectothermal ectothermic ectothermous ectotherms ectotoxin ectotrophic ectotropic ectozoa ectozoan ectozoans ectozoic ectozoon ectrodactylia ectrodactylism ectrodactylous ectrodactyly ectrogenic ectrogeny ectromelia ectromelian ectromelic ectromelus ectropic ectropion ectropionization ectropionize ectropionized ectropionizing ectropions ectropium ectropiums ectropometer ectropy ectrosyndactyly ectrotic ecttypal ectypal ectype ectypes ectypographies ectypography ecu ecuador ecuadoran ecuadorian ecuelle ecuelles ecuelling ecumenacy ecumene ecumenic ecumenical ecumenicalism ecumenicalisms ecumenicality ecumenically ecumenicism ecumenicisms ecumenicist ecumenicists ecumenicities ecumenicity ecumenicize ecumenics ecumenism ecumenisms ecumenist ecumenistic ecumenists ecumenopolis ecurie ecuries ecus ecyphellate eczema eczemas eczematization eczematoid eczematosis eczematous ed edacious edaciously edaciousness edaciousnesses edacities edacity edam edaphic edaphically edaphodont edaphologies edaphology edaphon edaphosaurid edaphosauridae edaphosaurus edd edda eddaic edder eddic eddied eddies eddington eddish eddishes eddo eddoes eddy eddying eddyroot edea edeagra edeitis edelstein edelweiss edelweisses edema edemas edemata edematose edematous edemic eden edenic edenite edental edentalous edentata edentate edentates edentulate edentulous edeodynia edeology edeomania edeoscopy edeotomy edestan edestin edgar edge edgebone edgeboned edgebones edged edgeless edgeling edgemaker edgemaking edgeman edger edgerman edgers edges edgeshot edgestone edgeway edgeways edgeweed edgewise edgier edgiest edgily edginess edginesses edging edgingly edgings edgrew edgrow edgy edh edhs edibile edibilities edibility edible edibleness ediblenesses edibles edict edictal edictally edicts edictum edicule ediface edificable edificant edificate edification edifications edificative edificator edificatory edifice edificed edifices edificial edificing edified edifier edifiers edifies edify edifying edifyingly edifyingness edile ediles edility edinburgh edingtonite edirne edison edit editable edital editchar edite edited edith editing edition editions editor editorial editorialisation editorialisations editorialise editorialised editorialiser editorialises editorialising editorialist editorialists editorialization editorializations editorialize editorialized editorializer editorializers editorializes editorializing editorially editorials editors editorship editorships editress editresses edits edituate edmonton edmontonia edmontosaurus edo edomite edomitish edp edplot edriophthalmatous edriophthalmian edriophthalmic edriophthalmous eds educ educabilian educabilities educability educable educables educand educatabilities educatability educatable educate educated educatedly educatedness educatednesses educatee educates educating education educationable educational educationalism educationalist educationalists educationally educationary educationese educationeses educationist educationists educations educative educator educators educatory educatress educe educed educement educements educes educible educing educive educt eduction eductions eductive eductor eductors educts edulcorant edulcorate edulcorated edulcorates edulcorating edulcoration edulcorations edulcorative edulcorator edulcorators eduskunta eduskuntas edutainment edutainments edward edwardian edwards ee eebree eec eech eeched eeches eeching eeg eegrass eek eeks eel eelback eelblennies eelblenny eelboat eelbob eelbobber eelcake eelcatcher eeler eelery eelfare eelfares eelfish eelgrass eelgrasses eelier eeliest eeling eellike eelpot eelpout eelpouts eels eelshop eelskin eelspear eelware eelworm eelworms eelwrack eelwracks eely eemis een eequinoctium eer eerie eerier eeriest eerily eeriness eerinesses eerisome eerock eery eesome eeten eeven eevens eevn eevning eevnings eevns eeyuch eeyuck ef efecks eff effable efface effaceable effaced effacement effacements effacer effacers effaces effacing effare effascinate effate effatum effect effected effecter effecters effectful effectible effecting effective effectively effectiveness effectivenesses effectives effectivities effectivity effectless effector effectors effectress effects effectual effectualise effectualities effectuality effectualize effectually effectualness effectualnesses effectuate effectuated effectuates effectuating effectuation effectuations effectuous effed effeir effeired effeiring effeirs effeminacies effeminacy effeminate effeminated effeminately effeminateness effeminatenesses effeminates effeminating effemination effeminatise effeminatize effeminisation effeminise effeminised effeminises effeminising effeminization effeminize effeminized effeminizes effeminizing effendi effendis effere effered efference efferences efferent efferently efferents efferes effering efferous effervesce effervesced effervescence effervescences effervescencies effervescency effervescent effervescently effervesces effervescible effervescing effervescingly effervescive effet effete effetely effeteness effetenesses effetman effetmen efficace efficacies efficacious efficaciously efficaciousness efficaciousnesses efficacities efficacity efficacy efficience efficiences efficiencies efficiency efficient efficiently efficients effierce effierced effierces effiercing effigial effigiate effigiated effigiating effigiation effigies effigurate effiguration effigurations effigy effing efflagitate efflate efflation effleurage effleuraged effleurages effleuraging effloresce effloresced efflorescence efflorescences efflorescency efflorescent effloresces efflorescing efflower effluence effluences effluency effluent effluents effluve effluvia effluviable effluvial effluvias effluviate effluviography effluvious effluvium effluviums effluvivia effluviviums efflux effluxes effluxion effluxions effodient effoliate efforce efforced efforces efforcing efford efform efformation efformative effort effortful effortfully effortfulness effortfulnesses effortless effortlessly effortlessness effortlessnesses efforts effossion effraction effractor effraide effranchise effranchisement effray effrayed effraying effrays effrenate effront effronted effronteries effrontery effs effude effulge effulged effulgence effulgences effulgent effulgently effulges effulging effumability effume effund effuse effused effusely effuses effusing effusiometer effusiometers effusion effusions effusive effusively effusiveness effusivenesses effuso effuviate efl eflagelliferous efoliolate efoliose efoveolate efph efractory efreet efs eft eftest efts eftsoon eftsoons eg egad egads egal egalitarian egalitarianism egalitarianisms egalitarians egalite egalites egalities egality egall egally egards egarement egence egences egencies egency eger egeran egeria egers egest egesta egested egesting egestion egestions egestive egests egg eggar eggars eggbeater eggbeaters eggberries eggberry eggcase eggcases eggcrate eggcup eggcupful eggcups eggeater egged egger eggeries eggers eggery eggfish eggfruit eggfruits egghead eggheaded eggheadedness eggheadednesses eggheads egghot eggier eggiest egging eggler egglers eggless egglike eggmass eggmasses eggment eggnog eggnogs eggplant eggplants eggroll eggrolls eggs eggshake eggshell eggshells eggwash eggwashes eggwhisk eggy egilops egipto egis egises eglandular eglandulose eglandulous eglantine eglantines eglatere eglateres eglestonite egling eglogue eglomerate eglomise egma egmas ego egocentric egocentrically egocentricities egocentricity egocentrics egocentrism egocentrisms egocentristic egohood egoise egoiser egoism egoisms egoist egoistic egoistical egoistically egoisticalness egoistry egoists egoities egoity egoize egoizer egol egolatrous egoless egomania egomaniac egomaniacal egomaniacally egomaniacs egomanias egomism egophonic egophony egos egosyntonic egotheism egotheisms egotise egotised egotises egotising egotism egotisms egotist egotistic egotistical egotistically egotisticalness egotists egotize egotized egotizes egotizing egotrip egracias egranulose egre egregious egregiously egregiousness egregiousnesses egremoigne egress egressed egresses egressing egression egressions egressive egressor egret egrets egretta egrid egrimonle egrimony egriot egritude egromancy egualmente egueiite egurgitate egurgitated egurgitates egurgitating eguttulate egypt egyptian egyptians egyptologist egyptology eh ehed eheu ehf ehing ehlite ehrman ehrwaldite ehs ehtanethial ehuawa eichbergite eichhornia eichwaldite eicosane eicosanoid eicosanoids eide eident eidently eider eiderdown eiderdowns eiders eidetic eidetically eidetics eidograph eidographs eidola eidolic eidolism eidology eidolology eidolon eidolons eidoptometry eidos eidouranion eiffel eigenfrequency eigenfunction eigenfunctions eigenmode eigenmodes eigenspace eigenstate eigenstates eigentone eigentones eigenvalue eigenvalues eigenvector eigenvectors eigh eight eightball eightballs eighteen eighteenfold eighteenmo eighteenmos eighteens eighteenth eighteenthly eighteenths eighter eightfoil eightfoils eightfold eightfoot eighth eighthes eighthly eighths eighties eightieth eightieths eightling eightpence eightpences eightpenny eights eightscore eightscores eightsman eightsmen eightsome eightsomes eightvo eightvos eighty eightyfold eigne eik eiked eiking eikon eikones eikonology eikons eiks eila eild eilding eildings eilds eimer eimeria eimeriidae eine einkanter einkorn einkorns einstein einsteinian einsteinium einsteiniums einsteins eir eira eirack eiracks eire eirenarch eirenic eirenicon eirenicons eiresione eiry eisegeses eisegesis eisegetic eisegetical eisel eisell eisells eisels eisenberg eisenhower eisodic eisoptrophobia eisteddfod eisteddfodau eisteddfodic eisteddfodism eisteddfods eiswein eisweins either ejacula ejaculate ejaculated ejaculates ejaculating ejaculation ejaculations ejaculative ejaculator ejaculators ejaculatory ejaculum eject ejecta ejectable ejectamenta ejected ejectee ejecting ejection ejections ejective ejectively ejectives ejectivity ejectment ejectments ejector ejectors ejects ejectum ejicient ejidal ejido ejidos ejoo ejulate ejulation ejurate ejuration ejusd ejusdem ekaboron ekacaesium ekaha ekamanganese ekasilicon ekatantalum eke ekebergite eked ekename eker ekerite ekes ekg ekhimi eking ekistic ekistical ekistician ekisticians ekistics ekka ekkas eklogite eklogites ekphore ekphoria ekphorias ekphorize ekphory ekphrases ekphrasis ekpwele ekpweles ektene ektenes ektexine ektexines ektodynamorphic ekuele el ela elabor elaborate elaborated elaborately elaborateness elaboratenesses elaborates elaborating elaboration elaborations elaborative elaboratively elaborator elaboratories elaborators elaboratory elabrate elachistaceous elacolite elaeagnaceae elaeagnaceous elaeagnus elaeis elaenia elaeoblast elaeoblastic elaeocarpaceae elaeocarpaceous elaeocarpus elaeodochon elaeolite elaeolites elaeomargaric elaeometer elaeopten elaeoptene elaeosaccharum elaeosia elaeothesia elaeothesium elagatis elaic elaidate elaidic elaidin elaidinic elain elaine elains elaioleucite elaioplast elaiosome elamite elamitic elamp elan elance elanced elances elancing eland elands elanet elanets elanoides elans elanus elaphe elaphine elaphure elaphurine elaphurus elapid elapidae elapids elapine elapoid elaps elapse elapsed elapses elapsing elargement elasmobranch elasmobranchian elasmobranchiate elasmobranchii elasmobranchs elasmosaur elasmosaurus elasmothere elastance elastances elastase elastases elastic elastica elastically elasticate elasticated elasticates elasticating elastician elasticin elasticise elasticised elasticiser elasticises elasticising elasticities elasticity elasticize elasticized elasticizer elasticizes elasticizing elasticness elasticnesses elastics elasticum elastin elastins elastivity elastodynamics elastomer elastomeric elastomers elastometer elastometry elastoplast elastose elatcha elate elated elatedly elatedness elatednesses elater elaterid elateridae elaterids elaterin elaterins elaterist elaterite elaterites elaterium elateriums elateroid elaterometer elaters elatery elates elatinaceous elating elation elations elative elatives elator elatrometer elavil elayl elb elbe elboic elbow elbowboard elbowbush elbowchair elbowed elbower elbowing elbowpiece elbowroom elbowrooms elbows elbowy elbuck elcaja elchee elchees elchi elchis eld elder elderberries elderberry elderbrotherhood elderbrotherish elderbrotherly elderbush eldercare eldercares elderflower elderflowers elderhood elderlies elderliness elderlinesses elderling elderly elderman eldermen eldern elders eldership elderships eldersisterly elderwoman elderwomen elderwood elderwort eldest eldfather eldin elding eldings eldins eldmother eldorado eldress eldresses eldrich eldritch elds eleanor eleatic elec elecampane elecampanes elechi elecive elecives elect electabilities electability electable electant electary elected electee electees electic electicism electing election electionary electioneer electioneered electioneerer electioneerers electioneering electioneerings electioneers elections elective electively electiveness electivenesses electives electivism electivities electivity electly electo elector electoral electorally electorate electorates electoress electoresses electorial electors electorship electorships electra electragist electragy electral electralize electre electrepeter electress electresses electret electrets electric electrical electricalise electricalize electrically electricalness electricals electrican electricans electrician electricians electricise electricities electricity electricize electrics electriferous electrifiable electrification electrifications electrified electrifier electrifiers electrifies electrify electrifying electrifyingly electrine electrion electrionic electrisation electrisations electrise electrised electrises electrising electrizable electrization electrizations electrize electrized electrizer electrizes electrizing electro electroacoustic electroacoustical electroacoustically electroacoustics electroaffinity electroamalgamation electroanaesthesia electroanalyses electroanalysis electroanalytic electroanalytical electroanesthesia electroballistic electroballistically electroballistician electroballistics electrobath electrobiological electrobiologically electrobiologies electrobiologist electrobiologists electrobiology electrobioscopy electroblasting electrobrasser electrobus electrocapillarity electrocapillary electrocardiogram electrocardiograms electrocardiograph electrocardiographic electrocardiographically electrocardiographies electrocardiographs electrocardiography electrocatalysis electrocatalytic electrocataphoresis electrocataphoretic electrocauteries electrocauterisation electrocauterization electrocautery electrocement electrocements electroceramic electrochemic electrochemical electrochemically electrochemist electrochemistries electrochemistry electrochemists electrochronograph electrochronographic electrochronometer electrochronometric electrocoagulation electrocoagulations electrocoating electrocolloidal electrocontractility electroconvulsive electrocorticogram electrocorticograms electrocratic electroculture electrocultures electrocute electrocuted electrocutes electrocuting electrocution electrocutional electrocutioner electrocutions electrocystoscope electrode electrodeless electrodentistry electrodeposit electrodepositable electrodeposited electrodepositing electrodeposition electrodepositions electrodepositor electrodeposits electrodermal electrodes electrodesiccate electrodesiccation electrodesiccations electrodiagnoses electrodiagnosis electrodiagnostic electrodiagnostically electrodialitic electrodialitically electrodialyse electrodialyser electrodialyses electrodialysis electrodialytic electrodialyze electrodialyzer electrodialyzes electrodiplomatic electrodispersive electrodissolution electrodynamic electrodynamical electrodynamics electrodynamism electrodynamometer electrodynamometers electroed electroencephalogram electroencephalograms electroencephalograph electroencephalographer electroencephalographers electroencephalographic electroencephalographical electroencephalographically electroencephalographies electroencephalographs electroencephalography electroendosmose electroendosmosis electroendosmotic electroengrave electroengraving electroergometer electroetching electroethereal electroextraction electroextractions electrofishing electrofishings electroform electroformed electroforming electroformings electroforms electrofuse electrofused electrofusion electrogalvanic electrogalvanise electrogalvanization electrogalvanize electrogasdynamics electrogen electrogeneses electrogenesis electrogenetic electrogenic electrogens electrogild electrogilding electrogildings electrogilt electrogram electrograms electrograph electrographic electrographies electrographite electrographs electrography electrograving electroharmonic electrohemostasis electrohomeopathy electrohomoeopathy electrohorticulture electrohydraulic electrohydraulically electroimpulse electroindustrial electroing electroionic electroirrigation electrojet electrojets electrokinematics electrokinetic electrokinetics electroless electrolier electroliers electrolithotrity electrologic electrological electrologies electrologist electrologists electrology electroluminescence electroluminescences electroluminescent electrolysation electrolyse electrolysed electrolyser electrolyses electrolysing electrolysis electrolysises electrolyte electrolytes electrolytic electrolytical electrolytically electrolyzability electrolyzable electrolyzation electrolyze electrolyzed electrolyzer electrolyzes electrolyzing electromagnet electromagnetally electromagnetic electromagnetical electromagnetically electromagnetics electromagnetism electromagnetisms electromagnetist electromagnetize electromagnets electromassage electromechanical electromechanically electromechanics electromedical electromer electromeric electromerism electromerisms electromers electrometallurgical electrometallurgies electrometallurgist electrometallurgists electrometallurgy electrometeor electrometer electrometers electrometric electrometrical electrometrically electrometries electrometry electromobile electromobilism electromotance electromotances electromotion electromotiv electromotive electromotivity electromotograph electromotor electromotors electromuscular electromyogram electromyograms electromyograph electromyographic electromyographical electromyographically electromyographies electromyographs electromyography electron electronarcosis electronegative electronegativities electronegativity electronervous electroneutral electroneutrality electronic electronica electronically electronics electronographic electronography electrons electronvolt electronystagmographies electronystagmography electrooculogram electrooculograms electrooculographies electrooculography electrooptic electrooptical electrooptically electrooptics electroori electroosmoses electroosmosis electroosmotic electroosmotically electrootiatrics electropathic electropathology electropathy electropercussive electropherogram electropherograms electrophile electrophiles electrophilic electrophilically electrophilicities electrophilicity electrophobia electrophone electrophonic electrophonically electrophore electrophorese electrophoresed electrophoreses electrophoresing electrophoresis electrophoretic electrophoretically electrophoretogram electrophoretograms electrophori electrophoric electrophoridae electrophorus electrophotographic electrophotographies electrophotography electrophotometer electrophotometry electrophotomicrography electrophototherapy electrophrenic electrophysicist electrophysics electrophysiologic electrophysiological electrophysiologically electrophysiologies electrophysiologist electrophysiologists electrophysiology electropism electroplaque electroplate electroplated electroplater electroplaters electroplates electroplating electroplatings electroplax electropneumatic electropneumatically electropoion electropolar electropolish electropositive electropotential electropower electropsychrometer electropult electropuncturation electropuncture electropuncturing electropyrometer electroreceptive electroreceptor electroreceptors electroreduction electrorefine electrorefining electroresection electroretinogram electroretinograms electroretinograph electroretinographic electroretinographies electroretinographs electroretinography electros electroscission electroscope electroscopes electroscopic electrosensitive electrosherardizing electroshock electroshocked electroshocking electroshocks electrosmosis electrosonde electrosondes electrostatic electrostatical electrostatically electrostatics electrosteel electrostenolysis electrostenolytic electrostereotype electrostriction electrostrictive electrosurgeries electrosurgery electrosurgical electrosurgically electrosynthesis electrosynthetic electrosynthetically electrotactic electrotautomerism electrotaxis electrotechnic electrotechnical electrotechnician electrotechnics electrotechnologies electrotechnologist electrotechnology electrotelegraphic electrotelegraphy electrotelethermometer electrotellurograph electrotest electrothanasia electrothanatosis electrotherapeutic electrotherapeutical electrotherapeutics electrotherapeutist electrotherapies electrotherapist electrotheraputic electrotheraputical electrotheraputically electrotheraputics electrotherapy electrothermal electrothermally electrothermancy electrothermic electrothermics electrothermies electrothermometer electrothermostat electrothermostatic electrothermotic electrothermy electrotint electrotints electrotitration electrotonic electrotonically electrotonicity electrotonise electrotonize electrotonus electrotonuses electrotrephine electrotropic electrotropism electrotype electrotyped electrotyper electrotypers electrotypes electrotypic electrotypies electrotyping electrotypist electrotypists electrotypy electrovalence electrovalences electrovalencies electrovalency electrovalent electrovalently electrovection electroviscous electrovital electroweak electrowin electrowinning electrowinnings electrum electrums elects electuaries electuary eledoisin eledoisins eledone eleemosinar eleemosynar eleemosynarily eleemosynariness eleemosynary elegance elegances elegancies elegancy elegant elegante eleganter elegantly elegiac elegiacal elegiacally elegiacs elegiambic elegiambus elegiast elegiasts elegibility elegies elegious elegise elegised elegises elegising elegist elegists elegit elegits elegize elegized elegizes elegizing elegy eleidin elektra elelments elem eleme element elemental elementalise elementalism elementalisms elementalist elementalistic elementalistically elementality elementalize elementally elementaloid elementals elementarily elementariness elementarinesses elementarism elementarist elementarity elementary elementate elementish elementoid elements elemi elemicin elemin elemis elemol elemong elench elenchi elenchic elenchical elenchically elenchize elenchs elenchtic elenchtical elenchus elenctic elenctical elenge elengely elengeness eleoblast eleocharis eleolite eleomargaric eleometer eleonorite eleoplast eleoptene eleostearate eleostearic eleotrid eleotridae elepaio elephancy elephant elephanta elephantiac elephantiases elephantiasic elephantiasis elephantic elephanticide elephantidae elephantine elephantlike elephantoid elephantoidal elephantopus elephantous elephantry elephants elephas elettaria eleuin eleusine eleusinian eleutherarch eleutherarchs eleutheri eleutherian eleutherism eleutherococcus eleutherococcuses eleutherodactyl eleutherodactylus eleutheromania eleutheromaniac eleutheromanias eleutheromorph eleutheropetalous eleutherophobia eleutherophobias eleutherophobic eleutherophobics eleutherophyllous eleutherosepalous eleutherozoan elev elevable elevate elevated elevatedly elevatedness elevateds elevates elevating elevatingly elevation elevational elevations elevato elevator elevators elevatory eleve eleven elevener elevenfold elevens elevenses eleventeenth eleventh eleventhly elevenths elevon elevons elf elfdom elfed elfenfolk elfhood elfhoods elfic elfin elfing elfins elfinwood elfish elfishly elfishness elfishnesses elfkin elfland elflands elflike elflock elflocks elfs elfship elfwife elfwort elhi eli eliad eliads eliasite elicit elicitable elicitate elicitation elicitations elicited eliciting elicitor elicitors elicitory elicits elide elided elides elidible eliding eligenda eligent eligibilities eligibility eligible eligibleness eligibles eligibly elijah eliminability eliminable eliminand eliminant eliminants eliminate eliminated eliminates eliminating elimination eliminations eliminative eliminator eliminators eliminatory elinguate elinguated elinguating elinguation elingued elint elints elinvar eliomys eliquate eliquated eliquating eliquation eliquidate elisha elision elisions elisor elite elites elitism elitisms elitist elitists elix elixate elixation elixed elixir elixirs elixiviate elizabeth elizabethan elizabethans elk elkhorn elkhound elkhounds elks elkslip elkwood ell ellachick ellagate ellagic ellagitannin ellan ellas elle ellebore elleck ellen ellenyard ellfish elli elling ellinge ellipse ellipses ellipsis ellipsograph ellipsographs ellipsoid ellipsoidal ellipsoids ellipsometer ellipsometry ellipsone ellipsonic elliptic elliptical elliptically ellipticalness ellipticals ellipticities ellipticity elliptograph elliptoid ellops ellopses ells ellul ellwand ellwands elm elmen elmer elmier elmiest elms elmwood elmwoods elmy elne elocation elocular elocute elocuted elocutes elocuting elocution elocutionary elocutioner elocutionist elocutionists elocutionize elocutions elocutive elocutory elod elodea elodeas eloge eloges elogies elogist elogists elogium elogiums elogy elohim elohist eloign eloigned eloigner eloigners eloigning eloignment eloignments eloigns eloin eloine eloined eloiner eloiners eloining eloinment eloinments eloins elong elongate elongated elongates elongating elongation elongations elongative elope eloped elopement elopements eloper elopers elopes elopidae eloping elops elopses eloquence eloquences eloquent eloquential eloquently eloquentness eloquentnesses elotillo elpasolite elpee elpees elpidite elrage elritch elroquite els elsass else elsehow elses elsewards elseways elsewhat elsewhen elsewhere elsewheres elsewhither elsewise elshin elshins elsholtzia elsin elsins elt eltchi eltchis eltime eltrot elts eluant eluants eluate eluated eluates eluating elucid elucidate elucidated elucidates elucidating elucidation elucidations elucidative elucidator elucidators elucidatory eluctate eluctation elucubrate elucubrated elucubrates elucubrating elucubration elucubrations elude eluded eluder eluders eludes eludible eludicatory eluding eluent eluents elul elumbated elusion elusions elusive elusively elusiveness elusivenesses elusoriness elusorinesses elusory elute eluted elutes eluting elution elutions elutor elutors elutriate elutriated elutriates elutriating elutriation elutriations elutriator elutriators eluvia eluvial eluviate eluviated eluviates eluviating eluviation eluviations eluvies eluvium eluviums eluvivia eluxate elvan elvanite elvanites elvanitic elvans elve elven elver elvers elves elvet elvis elvish elvishes elvishly elychnious elydoric elymus elysia elysian elysium elytra elytral elytriferous elytriform elytrigerous elytrin elytrocele elytroclasia elytroid elytron elytrons elytroplastic elytropolypus elytroposis elytroptosis elytrorhagia elytrorrhagia elytrorrhaphy elytrostenosis elytrotomy elytrous elytrtra elytrum elzevir em emacerate emacerated emaceration emaciate emaciated emaciates emaciating emaciation emaciations emaculate emagram email emailed emailing emails emajagua emalangeni emamelware emanant emanate emanated emanates emanating emanation emanational emanationism emanationist emanations emanatism emanatist emanatistic emanatists emanativ emanative emanatively emanator emanators emanatory emancipatation emancipatations emancipate emancipated emancipates emancipating emancipation emancipationist emancipationists emancipations emancipatist emancipative emancipator emancipators emancipatory emancipatress emancipist emancipists emandibulate emane emanent emanium emarcid emarginate emarginated emarginately emarginates emarginating emargination emarginations emasculatation emasculatations emasculate emasculated emasculates emasculating emasculation emasculations emasculative emasculator emasculators emasculatory embace embaced embaces embacing embacle embail embailed embailing embails embain embale embaled embales embaling emball emballed emballing emballings emballonurid emballonurine emballs embalm embalmed embalmer embalmers embalming embalmings embalmment embalmments embalms embank embanked embanker embankers embanking embankment embankments embanks embannered embaphium embar embarcadero embarcaderos embarcation embarcations embarge embargo embargoed embargoes embargoing embargoist embargos embark embarkation embarkations embarked embarking embarkment embarkments embarks embarment embarque embarquement embarquements embarras embarrased embarrass embarrassable embarrassed embarrassedly embarrasses embarrassing embarrassingly embarrassment embarrassments embarred embarrel embarren embarricado embarring embarrings embars embase embased embasement embasements embases embasing embassade embassades embassador embassadors embassadress embassage embassages embassiate embassies embassy embastardize embaste embastioned embathe embathed embathes embathing embatholithic embattle embattled embattlement embattlements embattles embattling embay embayed embaying embayld embayment embayments embays embden embeam embed embeddable embedded embedder embedding embeddings embedment embedments embeds embeggar embelic embelif embelin embellish embellished embellisher embellishers embellishes embellishing embellishingly embellishment embellishments ember embergeese embergoose emberiza emberizidae emberizine embers embetter embezzle embezzled embezzlement embezzlements embezzler embezzlers embezzles embezzling embiid embillow embind embiodea embioptera embiotocid embiotocidae embiotocoid embira embitter embittered embitterer embitterers embittering embitterings embitterment embitterments embitters embladder emblanch emblaze emblazed emblazer emblazers emblazes emblazing emblazon emblazoned emblazoner emblazoners emblazoning emblazonment emblazonments emblazonries emblazonry emblazons emblem emblema emblemata emblematic emblematical emblematically emblematicalness emblematicise emblematicize emblematise emblematised emblematises emblematising emblematist emblematists emblematize emblematized emblematizes emblematizing emblematology emblemed emblement emblements embleming emblemise emblemised emblemises emblemish emblemising emblemist emblemize emblemized emblemizes emblemizing emblemology emblems emblic emblics embliss embloom embloomed emblooming emblooms emblossom emblossomed emblossoming emblossoms embodied embodier embodiers embodies embodiment embodiments embody embodying embog embogged embogging embogs embogue embogued embogues emboguing emboil emboiled emboiling emboils emboite emboitement emboitements emboites embolden emboldened emboldener emboldeners emboldening emboldens embole embolectomies embolectomy embolemia emboli embolic embolies emboliform embolimeal embolisation embolism embolismal embolismic embolisms embolismus embolite embolium embolization embolizations embolize embolo embololalia embolomalerism embolomerism embolomerous embolomycotic embolon emboltement embolum embolus emboluses emboly embonpoint embonpoints emboota embootas emborder embordered embordering emborders emboscata emboscatas embosk embosked embosking embosks embosom embosomed embosoming embosoms emboss embossable embossage embossed embosser embossers embosses embossing embossman embossmen embossment embossments embost embosture embothrium embottle embouchement embouchment embouchure embouchures embound embounded embounding embounds embourgeoise embourgeoised embourgeoisement embourgeoisements embourgeoises embourgeoising embow embowed embowel emboweled emboweler emboweling embowelled emboweller embowelling embowelment embowelments embowels embower embowered embowering embowerment embowerments embowers embowing embowl embowment embows embox emboxed emboxes emboxing emboîtement embrace embraceable embraceably embraced embracement embracements embraceor embraceorr embraceors embracer embraceries embracers embracery embraces embracing embracingly embracingness embracingnesses embracive embraciveg embraid embraided embraiding embraids embrail embrake embranchment embranchments embrangle embrangled embranglement embranglements embrangles embrangling embrase embrasor embrasors embrasure embrasured embrasures embrasuring embrave embraved embraves embraving embrawn embrazure embrazures embreach embread embreaded embreading embreads embreastment embreathe embreathed embreathement embreathes embreathing embrectomy embrew embrewe embrewed embrewes embrewing embright embrighten embrittle embrittled embrittlement embrittlements embrittles embrittling embroaden embrocado embrocate embrocated embrocates embrocating embrocation embrocations embroche embroglio embroglios embroider embroidered embroiderer embroiderers embroideress embroideries embroidering embroiders embroidery embroil embroiled embroiler embroiling embroilment embroilments embroils embronze embroscopic embrothelled embrowd embrown embrowned embrowning embrowns embrue embrued embruement embruements embrues embruing embrute embruted embrutes embruting embryectomies embryectomy embryo embryocardia embryoctonic embryoctony embryoferous embryogeneses embryogenesis embryogenetic embryogenic embryogenies embryogeny embryogony embryographer embryographic embryography embryoid embryoids embryoism embryol embryologic embryological embryologically embryologies embryologist embryologists embryology embryoma embryomas embryomata embryon embryonal embryonally embryonary embryonate embryonated embryonic embryonically embryoniferous embryoniform embryons embryony embryopathology embryophagous embryophore embryophyte embryophytes embryoplastic embryos embryoscope embryoscopic embryotega embryotegae embryotic embryotome embryotomies embryotomy embryotroph embryotrophe embryotrophic embryotrophy embryous embryulci embryulcia embryulcias embryulculci embryulcus embryulcuses embubble embue embuia embulk embull embus embush embusied embusies embusk embuskin embusqu embusque embusques embusqué embusqués embussed embusses embussing embusy embusying emcee emceed emceeing emcees emceing emcumbering emda emdash emdashes emden eme emeer emeerate emeerates emeers emeership emend emendable emendals emendandum emendate emendated emendately emendates emendating emendation emendations emendator emendators emendatory emended emender emenders emendicate emending emends emer emerald emeraldine emeralds emerant emeras emeraude emeraudes emerge emerged emergence emergences emergencies emergency emergent emergently emergentness emergents emergers emerges emerging emerick emeried emeries emeril emerit emerita emeritae emeritas emerited emeriti emeritus emerituti emerize emerized emerizing emerod emerods emeroid emeroids emerse emersed emersion emersions emerson emery emerying emes emeses emeside emesis emetatrophia emetia emetic emetical emetically emetics emetin emetine emetines emetins emetocathartic emetology emetomorphine emetophobia emetophobias emetrol emeu emeus emeute emeutes emf emforth emfs emgalla emhpasizing emic emicant emicate emicated emicates emicating emication emications emiction emictions emictory emigate emigated emigates emigating emigr emigrant emigrants emigrate emigrated emigrates emigrating emigration emigrational emigrationist emigrationists emigrations emigrative emigrator emigratory emigre emigree emigres emile emilia emily eminence eminences eminencies eminency eminent eminential eminently emir emirate emirates emirs emirship emissaria emissaries emissarium emissary emissaryship emissi emissile emission emissions emissitious emissive emissivities emissivity emissory emit emits emittance emittances emitted emittent emitter emitters emitting emlen emma emmanthe emmantle emmarble emmarbled emmarbles emmarbling emmarvel emmas emmeleia emmenagogic emmenagogue emmenagogues emmenia emmenic emmeniopathy emmenologies emmenology emmensite emmental emmentaler emmenthal emmenthaler emmer emmergoose emmers emmesh emmeshed emmeshes emmeshing emmet emmetrope emmetropes emmetropia emmetropias emmetropic emmetropism emmetropy emmets emmew emmewed emmewing emmews emmies emmove emmoved emmoves emmoving emmy emmys emodin emodins emollescence emollescences emolliate emolliated emolliates emolliating emollience emollient emollients emollition emollitions emoloa emolument emolumental emolumentary emoluments emong emonges emongest emongst emony emory emote emoted emoter emoters emotes emoticon emoticons emoting emotiometabolic emotiomotor emotiomuscular emotion emotionable emotional emotionalisation emotionalise emotionalised emotionalises emotionalising emotionalism emotionalisms emotionalist emotionalistic emotionalists emotionalities emotionality emotionalization emotionalize emotionalized emotionalizes emotionalizing emotionally emotioned emotionise emotionist emotionize emotionless emotionlessly emotionlessness emotionlessnesses emotions emotiovascular emotive emotively emotiveness emotivenesses emotivism emotivisms emotivities emotivity emove emoved emoves emoving emp empacket empacketed empacketing empackets empaestic empair empaire empaired empaires empairing empaistic empale empaled empalement empalements empaler empalers empales empaling empall empanada empanadas empanel empaneled empaneling empanelled empanelling empanelment empanelments empanels empannel empanoplied empanoplies empanoply empanoplying empaper emparadise emparadised emparadises emparadising emparchment empare empared empares emparing empark emparl emparlaunce emparlaunces emparled emparling emparls empart emparted emparting emparts empasm empasma empassion empassionate empassioned empathetic empathetical empathetically empathic empathically empathies empathise empathised empathises empathising empathize empathized empathizes empathizing empathy empatron empatroned empatroning empatrons empayre empayred empayres empayring empeach empeached empeaches empeaching empearl empeine empeirema empemata empennage empennages empeople empeopled empeoplement empeoples empeopling emperce emperced emperces empercing emperess emperies emperil emperise emperised emperises emperish emperished emperishes emperishing emperising emperize emperized emperizes emperizing emperor emperors emperorship emperorships empery empest empestic empetraceae empetraceous empetrous empetrum empexa emphase emphases emphasis emphasise emphasised emphasises emphasising emphasize emphasized emphasizes emphasizing emphatic emphatical emphatically emphaticalness emphaticalnesses emphemeralness emphlyses emphlysis emphractic emphractics emphraxis emphrensy emphysema emphysemas emphysematous emphysemic emphysemics emphyteuses emphyteusis emphyteuta emphyteutic empicture empiecement empiecements empierce empierced empiercement empierces empiercing empight empire empirema empires empiric empirical empirically empiricalness empiricism empiricisms empiricist empiricists empirics empiricutic empirin empiriocritcism empiriocritical empiriological empirism empiristic empiry emplace emplaced emplacement emplacements emplaces emplacing emplane emplaned emplanement emplanes emplaning emplaster emplastered emplastering emplasters emplastic emplastics emplastra emplastration emplastron emplastrons emplastrum emplastrums empleach empleached empleaches empleaching emplead emplectic emplection emplectite emplecton emplectons emplectum emplectums empleomania emplonge emplonged emplonges emplonging emplore employ employabilities employability employable employables employe employed employee employees employer employers employes employing employless employment employments employs emplume emplumed emplumes empluming emplunge empocket empodia empodium empoison empoisoned empoisoner empoisoning empoisonment empoisonments empoisons empolder empoldered empoldering empolders emporetic emporeutic emporia emporial emporiria empoririums emporium emporiums emporte emportment empory empover empoverish empoverished empoverishes empoverishing empower empowered empowering empowerment empowerments empowers emprent empresa empresario empress empresse empressement empressements empresses empressment emprime emprint emprise emprises emprison emprosthotonic emprosthotonos emprosthotonus empt emptiable emptied emptier emptiers empties emptiest emptily emptiness emptinesses emptings emptins emptio emption emptional emptions emptive emptor emptores emptory empty emptyhearted emptying emptyings emptyses emptysis empurple empurpled empurples empurpling empusa empusas empuse empuses empuzzle empyema empyemas empyemata empyemic empyeses empyesis empyocele empyreal empyrean empyreans empyreum empyreuma empyreumas empyreumata empyreumatic empyreumatical empyreumatise empyreumatised empyreumatises empyreumatising empyreumatize empyreumatized empyreumatizes empyreumatizing empyrical empyromancy empyrosis emraud emrode ems emu emulable emulant emulate emulated emulates emulating emulation emulations emulative emulatively emulator emulators emulatory emulatress emulatresses emule emuled emules emulge emulged emulgence emulgences emulgens emulgent emulges emulging emuling emulous emulously emulousness emulousnesses emuls emulsibility emulsible emulsic emulsifiability emulsifiable emulsification emulsifications emulsified emulsifier emulsifiers emulsifies emulsify emulsifying emulsin emulsins emulsion emulsionise emulsionised emulsionises emulsionising emulsionize emulsionized emulsionizes emulsionizing emulsions emulsive emulsoid emulsoidal emulsoids emulsor emulsors emunct emunction emunctions emunctories emunctory emundation emunge emunged emunges emunging emure emured emures emuring emus emuscation emusified emusifies emusify emusifying emusive emyd emyde emydes emydian emydidae emydosaurian emyds emys en enable enabled enablement enabler enablers enables enabling enact enactable enacted enacting enaction enactions enactive enactment enactments enactor enactors enactory enacts enacture enactures enaena enage enalid enaliosaur enaliosaurian enalite enallachrome enallage enallages enaluron enalyron enam enamber enambush enamdar enamel enameled enameler enamelers enameling enamelings enamelist enamelists enamellar enamelled enameller enamellers enamelless enamelling enamellings enamellist enamellists enameloma enamels enamelware enamelwares enamelwork enamelworks enami enamine enamines enamor enamorado enamorados enamorate enamoration enamorations enamorato enamored enamoredness enamoring enamorment enamors enamour enamoured enamouredness enamouring enamourment enamours enanguish enanthem enanthema enanthematous enanthesis enantiobiosis enantioblastic enantioblastous enantiodromia enantiodromiacal enantiodromias enantiodromic enantiomer enantiomeric enantiomeride enantiomers enantiomorph enantiomorphic enantiomorphies enantiomorphism enantiomorphisms enantiomorphous enantiomorphously enantiomorphs enantiomorphy enantiopathia enantiopathic enantiopathies enantiopathy enantioses enantiosis enantiostylies enantiostylous enantiostyly enantiotropic enantiotropies enantiotropy enantobiosis enapt enarbor enarbour enarch enarched enarches enarching enargite enargites enarm enarme enarmed enarming enarms enarration enarrations enarthrodia enarthrodial enarthroses enarthrosis enascent enatant enate enates enatic enation enations enaunter enbaissing enbibe enbloc enbranglement enbrave enbusshe enc encadre encaenia encaenias encage encaged encages encaging encake encalendar encallow encalm encalmed encalming encalms encamp encamped encamping encampment encampments encamps encanker encanthis encanthises encapsulate encapsulated encapsulates encapsulating encapsulation encapsulations encapsulator encapsulators encapsule encapsuled encapsules encapsuling encaptivate encaptive encardion encarditis encarnadine encarnalise encarnalised encarnalises encarnalising encarnalize encarnalized encarnalizes encarnalizing encarpa encarpi encarpium encarpus encarpuses encarpuspi encase encased encasement encasements encases encash encashable encashed encashes encashing encashment encashments encasing encasserole encastage encastered encastra encastre encastrement encatarrhaphy encauma encaustes encaustic encaustically encaustics encave encaved encaves encaving encefalon enceint enceinte enceintes encelia enceliopsis encell encense encenter encephala encephalalgia encephalartos encephalasthenia encephalic encephalin encephaline encephalines encephalins encephalitic encephalitides encephalitis encephalitises encephalitogen encephalitogenic encephalitogens encephalocele encephaloceles encephalocoele encephalodialysis encephalogram encephalograms encephalograph encephalographic encephalographically encephalographies encephalographs encephalography encephaloid encephalola encephalolith encephalology encephaloma encephalomalacia encephalomalacosis encephalomalaxis encephalomas encephalomata encephalomeningitis encephalomeningocele encephalomere encephalomeric encephalometer encephalometric encephalomyelitic encephalomyelitides encephalomyelitis encephalomyelitises encephalomyelopathy encephalomyocarditis encephalomyocarditises encephalon encephalonarcosis encephalons encephalopathia encephalopathic encephalopathies encephalopathy encephalophyma encephalopsychesis encephalopyosis encephalorrhagia encephalos encephalosclerosis encephaloscope encephaloscopy encephalosepsis encephalosis encephalospinal encephalothlipsis encephalotome encephalotomies encephalotomy encephalous enchafe enchafed enchafes enchafing enchain enchained enchainement enchainements enchaining enchainment enchainments enchains enchair enchalice enchancement enchannel enchant enchanted enchantedly enchanter enchanters enchantery enchanting enchantingly enchantingness enchantment enchantments enchantress enchantresses enchants enchaonement enchaonements encharge encharged encharges encharging encharm encharmed encharming encharms encharnel enchase enchased enchaser enchasers enchases enchasing enchasten encheason encheasons encheat encheck encheer encheered encheering encheers encheiria encheiridion encheiridions enchequer encheson enchesoun enchest enchilada enchiladas enchiridia enchiridion enchiridions enchiriridia enchisel enchodontid enchodontoid enchondroma enchondromas enchondromata enchondromatous enchondrosis enchorial enchoric enchronicle enchurch enchylema enchylematous enchyma enchymatous enchytrae enchytraeid encia enciente encierro encierros encina encinal encinas encincture encinctured encinctures encincturing encinder encinillo encipher enciphered encipherer encipherers enciphering encipherment encipherments enciphers encircle encircled encirclement encirclements encircler encircles encircling encirclings encist encitadel encl enclaret enclasp enclasped enclasping enclasps enclave enclaved enclavement enclaves enclaving enclear enclises enclisis enclitic enclitical enclitically enclitics encloak enclog encloister encloistered encloistering encloisters enclosable enclose enclosed encloser enclosers encloses enclosing enclosure enclosures enclothe enclothed enclothes enclothing encloud enclouded enclouding enclouds encoach encode encoded encodement encodements encoder encoders encodes encoding encodings encoffin encoffinment encoignure encoignures encoil encolden encollar encolor encolored encoloring encolors encolour encoloured encolouring encolours encolpia encolpion encolpions encolpium encolpiums encolumn encolure encolures encomendero encomenderos encomia encomiast encomiastic encomiastical encomiastically encomiasts encomic encomienda encomiendas encomimia encomimiums encomiologic encomion encomions encomium encomiumia encomiums encommon encompany encompass encompassed encompasser encompasses encompassing encompassment encompassments encomy encoop encopreses encopresis encorbellment encorbelment encore encored encores encoring encoronal encoronate encoronet encorpore encounter encounterable encountered encounterer encounterers encountering encounters encourage encouraged encouragement encouragements encourager encouragers encourages encouraging encouragingly encouragings encover encowl encraal encradle encradled encradles encradling encranial encratic encraties encratism encratite encraty encrease encreased encreases encreasing encreel encrimson encrimsoned encrimsoning encrimsons encrinal encrinic encrinidae encrinital encrinite encrinites encrinitic encrinitical encrinoid encrinus encrisp encroach encroached encroacher encroachers encroaches encroaching encroachingly encroachment encroachments encrotchet encrown encrownment encrust encrustant encrustation encrustations encrusted encrusting encrustment encrustments encrusts encrypt encrypted encrypting encryption encryptions encrypts encuirassed enculturate enculturated enculturates enculturating enculturation enculturations enculturative encumber encumberance encumberances encumbered encumberer encumbering encumberingly encumberment encumberments encumbers encumbrance encumbrancer encumbrancers encumbrances encumbrous encup encurl encurtain encurtained encurtaining encurtains encushion ency encyc encycl encyclia encyclic encyclical encyclicals encyclics encyclopaedia encyclopaediac encyclopaedial encyclopaedian encyclopaedias encyclopaedic encyclopaedical encyclopaedically encyclopaedism encyclopaedisms encyclopaedist encyclopaedists encyclopaedize encyclopedia encyclopediac encyclopediacal encyclopedial encyclopedian encyclopedias encyclopediast encyclopedic encyclopedical encyclopedically encyclopedism encyclopedisms encyclopedist encyclopedists encyclopedize encydlopaedic encyrtid encyst encystation encystations encysted encysting encystment encystments encysts end endable endaemonism endamage endamageable endamaged endamagement endamagements endamages endamaging endamask endameba endamebae endamebas endamebiasis endamebic endamnify endamoeba endamoebae endamoebas endamoebiasis endamoebic endamoebidae endangeitis endanger endangered endangerer endangerers endangering endangerment endangerments endangers endangiitis endangitis endangium endaortic endaortitis endarch endarchies endarchy endark endart endarted endarterectomies endarterectomy endarteria endarterial endarteritis endarterium endarteteria endarting endarts endaseh endash endashes endaspidean endaze endball endboard endbrain endbrains enddamage enddamaged enddamaging ende endear endearance endeared endearedly endearedness endearing endearingly endearingness endearingnesses endearment endearments endears endeavor endeavored endeavorer endeavorers endeavoring endeavors endeavour endeavoured endeavourer endeavourers endeavouring endeavourment endeavourments endeavours endebt endecagon endecagons endecha ended endeictic endeign endeixes endeixis endeixises endellionite endemial endemic endemical endemically endemicities endemicity endemics endemiological endemiologies endemiology endemism endemisms endenization endenize endenizen endenizened endenizening endenizens endent ender endere endergonic endermatic endermic endermical endermically enderon enderonic enderons enders endevil endew endewed endewing endews endexine endexines endfile endgame endgames endgate endhand endia endiablee endiadem endiaper endict endimanche ending endings endiron endirons endite endited endites enditing endive endives endjunk endlang endleaf endleaves endless endlessly endlessness endlessnesses endlichite endlong endmatcher endmost endnote endnotes endo endoabdominal endoangiitis endoaortitis endoappendicitis endoarteritis endoauscultation endobatholithic endobiotic endoblast endoblastic endoblasts endobronchial endobronchially endobronchitis endocannibalism endocardia endocardiac endocardial endocarditic endocarditis endocarditises endocardium endocardiums endocarp endocarpal endocarpic endocarpoid endocarps endocast endocasts endocellular endocentric endoceratite endoceratitic endocervical endocervicitis endochondral endochorion endochorionic endochrome endochylous endoclinal endocline endocoelar endocoele endocoeliac endocolitis endocolpitis endocondensation endocone endoconidia endoconidium endocorpuscular endocortex endocrania endocranial endocranium endocrin endocrinal endocrine endocrines endocrinic endocrinism endocrinologic endocrinological endocrinologies endocrinologist endocrinologists endocrinology endocrinopath endocrinopathic endocrinopathy endocrinotherapy endocrinous endocritic endocycle endocyclic endocyemate endocyst endocystitis endocytic endocytose endocytosed endocytoses endocytosing endocytosis endocytotic endoderm endodermal endodermic endodermis endodermises endoderms endodontia endodontias endodontic endodontically endodontics endodontist endodontists endodontium endodontologist endodontology endodynamomorphic endodyne endoenteritis endoenzyme endoenzymes endoergic endoerythrocytic endoesophagitis endofaradism endogalvanism endogamic endogamies endogamous endogamy endogastric endogastrically endogastritis endogen endogenesis endogenetic endogenic endogenicity endogenies endogenous endogenously endogens endogeny endoglobular endognath endognathal endognathion endogonidium endointoxication endokaryogamy endolabyrinthitis endolaryngeal endolemma endolithic endolumbar endolymph endolymphangial endolymphatic endolymphic endolymphs endolysin endomastoiditis endome endomesoderm endometria endometrial endometrioses endometriosis endometritis endometritises endometrium endometriums endometry endomictic endomitoses endomitosis endomitotic endomixes endomixis endomixises endomorph endomorphic endomorphies endomorphism endomorphisms endomorphs endomorphy endomycetales endomysial endomysium endoneurial endoneurium endonuclear endonuclease endonucleases endonucleolus endonucleolytic endoparasite endoparasites endoparasitic endoparasitism endoparasitisms endopathic endopelvic endopeptidase endopeptidases endopericarditis endoperidial endoperidium endoperitonitis endoperoxide endoperoxides endophagies endophagous endophagy endophasia endophasic endophlebitis endophragm endophragmal endophyllous endophytal endophyte endophytes endophytic endophytically endophytous endoplasm endoplasma endoplasmic endoplasms endoplast endoplastic endoplastron endoplastular endoplastule endopleura endopleural endopleuras endopleurite endopleuritic endopod endopodite endopodites endopoditic endopods endopolyploid endopolyploidies endopolyploidy endoproct endoprocta endoproctous endopsychic endopterygote endopterygotic endopterygotism endopterygotous endorachis endoradiosonde endoradiosondes endoral endore endorhinitis endorhizal endorphin endorphins endorsable endorsation endorse endorsed endorsee endorsees endorsement endorsements endorser endorsers endorses endorsing endorsingly endorsor endorsors endosalpingitis endosarc endosarcode endosarcous endosarcs endosclerite endoscope endoscopes endoscopic endoscopically endoscopies endoscopist endoscopy endosecretory endosepsis endosiphon endosiphonal endosiphonate endosiphuncle endoskeletal endoskeleton endoskeletons endosmic endosmometer endosmometers endosmometric endosmos endosmose endosmoses endosmosic endosmosis endosmotic endosmotically endosome endosomes endosperm endospermic endospermous endosperms endospore endospores endosporia endosporic endosporium endosporous endosporously endoss endossed endosses endossing endostea endosteal endosteally endosteitis endosteoma endosteomas endosteomata endosternite endosternum endosteum endosteums endostitis endostoma endostomata endostome endostosis endostraca endostracal endostracum endostylar endostyle endostyles endostylic endosulfan endosulfans endosymbiont endosymbionts endosymbioses endosymbiosis endosymbiotic endotheca endothecal endothecate endothecia endothecial endothecium endothelia endothelial endothelioblastoma endotheliocyte endothelioid endotheliolysin endotheliolytic endothelioma endotheliomas endotheliomata endotheliomyoma endotheliomyxoma endotheliotoxin endotheliulia endothelium endotheloid endotherm endothermal endothermic endothermically endothermies endothermism endothermous endotherms endothermy endothoracic endothorax endothys endotoxic endotoxin endotoxins endotoxoid endotracheal endotracheitis endotrachelitis endotrophic endotropic endotys endoubt endoute endovaccination endovasculitis endovenous endover endow endowed endower endowers endowing endowment endowments endows endozoa endozoan endozoic endozoon endpaper endpapers endpiece endpin endpins endplate endplates endplay endplayed endplaying endplays endpleasure endpoint endpoints endrin endrins endrudge endrumpf ends endseal endshake endsheet endship endships endsweep endue endued enduement endues enduing endungeon endungeoned endungeoning endungeons endura endurabilities endurability endurable endurableness endurablenesses endurably endurance endurances endurant endure endured endurer endurers endures enduring enduringly enduringness enduringnesses enduro enduros endways endwise endyma endymal endymion endysis ene enecate eneclann ened eneid enema enemas enemata enemied enemies enemy enemying enemylike enemyship enent enepidermic energeia energesis energetic energetical energetically energeticalness energeticist energeticness energetics energetistic energiatye energic energical energico energid energids energies energisation energise energised energiser energisers energises energising energism energist energistic energization energizations energize energized energizer energizers energizes energizing energumen energumenon energumens energy enervate enervated enervates enervating enervation enervations enervative enervator enervators enerve enerved enerves enerving enervous enes enetophobia enets eneuch eneugh enew enewed enewing enews enface enfaced enfacement enfacements enfaces enfacing enfamish enfamous enfant enfants enfarce enfasten enfatico enfavor enfeature enfect enfeeble enfeebled enfeeblement enfeeblements enfeebler enfeeblers enfeebles enfeebling enfeeblish enfelon enfeloned enfeloning enfelons enfeoff enfeoffed enfeoffing enfeoffment enfeoffments enfeoffs enfested enfester enfestered enfetter enfettered enfettering enfetters enfever enfevered enfevering enfevers enfief enfield enfierce enfierced enfierces enfiercing enfigure enfilade enfiladed enfilades enfilading enfile enfiled enfin enfire enfired enfires enfiring enfirm enfix enfixed enfixes enfixing enflagellate enflagellation enflame enflamed enflames enflaming enflesh enfleshed enfleshes enfleshing enfleurage enfleurages enflower enflowered enflowering enflowers enflurane enfoeffment enfoil enfold enfolded enfolden enfolder enfolders enfolding enfoldings enfoldment enfoldments enfolds enfollow enfonce enfonced enfoncee enforce enforceabilities enforceability enforceable enforced enforcedly enforcement enforcements enforcer enforcers enforces enforcibility enforcible enforcing enforcingly enforcive enforcively enforest enforested enforesting enforests enfork enform enformed enforming enforms enfort enforth enfortune enfoul enfoulder enfouldered enfrai enframe enframed enframement enframements enframes enframing enfranch enfranchisable enfranchise enfranchised enfranchisement enfranchisements enfranchiser enfranchises enfranchising enfranchize enfree enfreed enfreedom enfreedomed enfreedoming enfreedoms enfreeing enfrees enfreeze enfreezes enfreezing enfrenzy enfrosen enfroward enfroze enfrozen enfuddle enfume enfuriate enfurrow eng engaga engage engaged engagedly engagedness engagee engagement engagements engager engagers engages engaging engagingly engagingness engagingnesses engallant engaol engaoled engaoling engaols engarb engarble engarde engarland engarlanded engarlanding engarlands engarment engarrison engarrisoned engarrisoning engarrisons engastrimyth engastrimythic engaud engaze engelmann engelmanni engelmannia engels engem engender engendered engenderer engenderers engendering engenderment engenderments engenders engendrure engendrures engendure engendures engerminate enghle enghosted engild engilded engilding engilds engilt engin engine engined engineer engineered engineering engineeringly engineerings engineers engineership engineery enginehouse engineless enginelike engineman enginemen enginer engineries enginers enginery engines engining enginous engird engirded engirding engirdle engirdled engirdles engirdling engirds engirt engiscope engiscopes engjateigur engl englacial englacially englad engladden england englander englanders englante engle engleim english englished englisher englishes englishing englishism englishly englishman englishmen englishry englishwoman englishwomen englobe englobed englobement englobes englobing engloom engloomed englooming englooms englory englue englut englute engluts englutted englutting englyn englyns engnessang engobe engobes engold engolden engore engored engores engorge engorged engorgement engorgements engorges engorging engoring engoue engouee engouement engouements engouled engoument engouments engoûment engoûments engr engrace engraced engraces engracing engraff engraffed engraffing engraffs engraft engraftation engraftations engrafted engrafter engrafting engraftment engraftments engrafts engrail engrailed engrailing engrailment engrailments engrails engrain engrained engrainedly engrainer engrainers engraining engrains engram engramma engrammas engrammatic engramme engrammes engrammic engrams engrandise engrandisement engrandize engrandizement engraphia engraphic engraphically engraphy engrapple engrasp engrasped engrasping engrasps engraulidae engraulis engrave engraved engravement engraven engraver engraveries engravers engravery engraves engraving engravings engreaten engreen engrege engregge engrenage engrid engrieve engrieved engrieves engrieving engroove engrooved engrooves engrooving engross engrossed engrossedly engrosser engrossers engrosses engrossing engrossingly engrossingness engrossment engrossments engs enguard enguarded enguarding enguards engulf engulfed engulfing engulfment engulfments engulfs engulph engulphed engulphing engulphs engyscope engyscopes engysseismology enhaemospore enhallow enhalo enhaloed enhaloes enhaloing enhalos enhamper enhance enhanceable enhanced enhancement enhancements enhancer enhancers enhances enhancing enhancive enhappy enharbor enharbour enharden enhardy enharmonic enharmonical enharmonically enhat enhaulse enhaunt enhazard enhearse enhearsed enhearses enhearsing enheart enhearten enheartened enheartening enheartens enheaven enhedge enhelm enhemospore enherit enheritage enheritance enhorror enhort enhuile enhunger enhungered enhungering enhungers enhusk enhydra enhydrite enhydrites enhydritic enhydros enhydroses enhydrous enhypostasia enhypostasias enhypostasis enhypostatic enhypostatise enhypostatised enhypostatises enhypostatising enhypostatize enhypostatized enhypostatizes enhypostatizing eniac eniacs enigma enigmas enigmata enigmatic enigmatical enigmatically enigmaticalness enigmatise enigmatised enigmatises enigmatising enigmatist enigmatists enigmatization enigmatize enigmatized enigmatizes enigmatizing enigmatographer enigmatographies enigmatography enigmatology enigua enisle enisled enisles enisling eniwetok enjail enjamb enjambed enjambement enjambements enjambing enjambment enjambments enjambs enjelly enjeopard enjeopardy enjewel enjoin enjoinder enjoinders enjoined enjoiner enjoiners enjoining enjoinment enjoinments enjoins enjoy enjoyability enjoyable enjoyableness enjoyablenesses enjoyably enjoyed enjoyer enjoyers enjoying enjoyingly enjoyment enjoyments enjoys enkennel enkephalin enkephaline enkephalines enkephalins enkerchief enkernel enkernelled enkernelling enkernels enki enkidu enkindle enkindled enkindler enkindlers enkindles enkindling enkolpia enkolpion enkraal enl enlace enlaced enlacement enlacements enlaces enlacing enlard enlarded enlarding enlards enlarge enlargeable enlargeableness enlarged enlargedly enlargedness enlargednesses enlargement enlargements enlargen enlargened enlargening enlargens enlarger enlargers enlarges enlarging enlargingly enlaurel enlay enleaf enleague enleagued enleen enlength enleve enlevement enlevements enlevé enlief enlife enlight enlighted enlighten enlightened enlightenedly enlightenedness enlightener enlighteners enlightening enlighteningly enlightenment enlightenments enlightens enlighting enlights enlil enlimn enlink enlinked enlinking enlinkment enlinks enlist enlisted enlistee enlistees enlister enlisters enlisting enlistment enlistments enlists enlit enlive enliven enlivened enlivener enliveners enlivening enliveningly enlivenment enlivenments enlivens enlock enlocked enlocking enlocks enlodge enlodgement enlumine enlumined enlumines enlumining enlure enlute enmagazine enmanche enmarble enmarbled enmarbling enmask enmass enmesh enmeshed enmeshes enmeshing enmeshment enmeshments enmew enmewed enmewing enmews enmist enmities enmity enmoss enmossed enmove enmoved enmoves enmoving enmuffle ennage ennages enneacontahedral enneacontahedron ennead enneadianome enneadic enneads enneaeteric enneagon enneagonal enneagons enneagynous enneahedra enneahedral enneahedria enneahedron enneahedrons enneandrian enneandrous enneapetalous enneaphyllous enneasemic enneasepalous enneaspermous enneastylar enneastyle enneastylos enneasyllabic enneateric enneatic enneatical ennedra ennerve ennew ennia enniche ennoble ennobled ennoblement ennoblements ennobler ennoblers ennobles ennobling ennoblingly ennoblment ennoic ennomic ennoy ennui ennuied ennuis ennuya ennuyae ennuyant ennuyante ennuye ennuyed ennuyee ennuying ennuyé enoch enocyte enodal enodally enodate enodation enode enoil enoint enoki enokidake enokidakes enokis enol enolase enolases enolate enolic enolisation enolise enolizable enolization enolize enolized enolizing enological enologies enologist enologists enology enols enomania enomaniac enomotarch enomoties enomoty enophile enophiles enophthalmos enophthalmus enoplan enoplion enoptromancy enorganic enorm enormious enormities enormity enormous enormously enormousness enormousnesses enorn enorthotrope enoses enosis enosises enosist enostosis enough enoughs enounce enounced enouncement enouncements enounces enouncing enow enows enphytotic enpia enplane enplaned enplanement enplanes enplaning enprint enprints enquarter enquere enqueue enqueued enqueues enquicken enquiration enquirations enquire enquired enquirer enquirers enquires enquiries enquiring enquiringly enquiry enrace enraced enraces enracing enrage enraged enragedly enragedness enragement enragements enrages enraging enrail enramada enranckle enranckled enranckles enranckling enrange enranged enranges enranging enrank enranked enranking enranks enrapt enrapted enrapting enrapts enrapture enraptured enrapturedly enrapturement enrapturements enrapturer enraptures enrapturing enraunge enraunged enraunges enraunging enravish enravished enravishes enravishing enravishingly enravishment enray enregiment enregimented enregimenting enregiments enregister enregistered enregistering enregisters enregistration enregistry enrheum enrheumed enrheuming enrheums enrib enrich enriched enrichener enricher enrichers enriches enriching enrichingly enrichment enrichments enridged enright enring enringed enringing enrings enripen enrive enriven enrobe enrobed enrobement enrober enrobers enrobes enrobing enrockment enrol enroll enrolle enrolled enrollee enrollees enroller enrollers enrolles enrolling enrollment enrollments enrolls enrolment enrolments enrols enroot enrooted enrooting enroots enrough enroughed enroughing enroughs enround enrounded enrounding enrounds enruin enrut ens ensafe ensaffron ensaint ensalada ensample ensampled ensampler ensamples ensampling ensand ensandal ensanguinated ensanguine ensanguined ensanguines ensanguining ensate enscale enscene enschedule enscheduled enschedules enscheduling ensconce ensconced ensconces ensconcing enscroll enscrolled enscrolling enscrolls ensculpture ense enseal ensealed ensealing enseals enseam enseamed enseaming enseams ensear ensearch ensearcher enseared ensearing ensears enseat enseated enseating enseel enseem ensellure ensemble ensembles ensepulcher ensepulchered ensepulchering ensepulcherred ensepulcherring ensepulchers ensepulchre ensepulchred ensepulchres ensepulchring enseraph enserf enserfed enserfing enserfment enserfments enserfs ensete ensew ensewed ensewing ensews enshade enshadow enshawl ensheath ensheathe ensheathed ensheathes ensheathing ensheaths enshell enshelled enshelling enshells enshelter ensheltered ensheltering enshelters enshield enshielded enshielding enshields enshrine enshrined enshrinee enshrinees enshrinement enshrinements enshrines enshrining enshroud enshrouded enshrouding enshrouds ensient ensiform ensign ensigncies ensigncy ensigned ensignhood ensigning ensignment ensignry ensigns ensignship ensignships ensilability ensilage ensilaged ensilageing ensilages ensilaging ensilate ensilation ensile ensiled ensiles ensiling ensilist ensilver ensindon ensis ensisternal ensisternum enskied enskies ensky enskyed enskying enslave enslaved enslavedness enslavement enslavements enslaver enslavers enslaves enslaving enslumber ensmall ensnare ensnared ensnarement ensnarements ensnarer ensnarers ensnares ensnaring ensnaringly ensnarl ensnarled ensnarling ensnarls ensnow ensober ensophic ensorcel ensorceled ensorceling ensorcelize ensorcell ensorcelled ensorcelling ensorcellment ensorcellments ensorcells ensorcels ensorcerize ensorrow ensoul ensouled ensouling ensoulment ensoulments ensouls enspangle enspell ensphere ensphered enspheres ensphering enspirit ensporia enstamp enstamped enstamping enstamps enstar enstate enstatite enstatites enstatitic enstatitite enstatolite ensteel ensteep ensteeped ensteeping ensteeps enstool enstore enstranged enstrengthen enstructured enstyle enstyled enstyles enstyling ensuable ensuance ensuant ensue ensued ensuer ensues ensuing ensuingly ensuite ensulphur ensurance ensure ensured ensurer ensurers ensures ensuring enswathe enswathed enswathement enswathements enswathes enswathing ensweep ensweeping ensweeps ensweeten enswept ensynopticity entablature entablatured entablatures entablement entablements entach entackle entad entail entailable entailed entailer entailers entailing entailment entailments entails ental entalent entally entame entameba entamebae entamebas entamebic entamed entames entaming entamoeba entamoebae entamoebas entamoebiasis entamoebic entandrophragma entangle entangleable entangled entangledly entangledness entanglement entanglements entangler entanglers entangles entangling entanglingly entapophysial entapophysis entarthrotic entases entasia entasias entasis entassment entastic entayle entayled entayles entayling entea entelam entelechial entelechies entelechy entellus entelluses entelodont entempest entemple entender entendered entendering entenders entendre entendres entente ententes entepicondylar enter entera enterable enteraden enteradenographic enteradenography enteradenological enteradenology enteral enteralgia enterally enterate enterauxe enterchaunge enterchaunged enterchaunges enterchaunging enterclose enterdeale enterdeales enterectomies enterectomy entered enterer enterers enterfeat entergogenic enteria enteric entericoid enterics entering enterings enteritides enteritidis enteritis enteritises entermete entermise enteroanastomosis enterobacteria enterobacteriaceae enterobacterial enterobacterium enterobiases enterobiasis enterobiliary enterobius enterocele enteroceles enterocenteses enterocentesis enteroceptor enterochirurgia enterochlorophyll enterocholecystostomy enterochromaffin enterocinesia enterocinetic enterocleisis enteroclisis enteroclysis enterococcal enterococci enterococcus enterocoel enterocoele enterocoeles enterocoelic enterocoelous enterocoels enterocolitis enterocolitises enterocolostomy enterocrinin enterocyst enterocystoma enterodelous enterodynia enteroepiplocele enterogastritis enterogastrone enterogastrones enterogenous enterogram enterograph enterography enterohelcosis enterohemorrhage enterohepatitis enterohydrocele enteroid enterointestinal enteroischiocele enterokinase enterokinases enterokinesia enterokinetic enterolith enterolithiasis enteroliths enterolobium enterologic enterological enterology enterolysis enteromegalia enteromegaly enteromere enteromesenteric enteromycosis enteromyiasis enteron enteroneuritis enterons enteroparalysis enteroparesis enteropathies enteropathogenic enteropathy enteropexia enteropexy enterophthisis enteroplasty enteroplegia enteropneust enteropneustal enteropneustan enteropneusts enteroptoses enteroptosis enteroptotic enterorrhagia enterorrhaphy enterorrhea enterorrhexis enteroscope enteroscopy enterosepsis enterospasm enterostasis enterostenosis enterostomal enterostomies enterostomy enterosyphilis enterotome enterotomies enterotomy enterotoxemia enterotoxication enterotoxin enterotoxins enteroviral enterovirus enteroviruses enterozoa enterozoan enterozoic enterozoon enterparlance enterpillar enterprise enterprised enterpriseless enterpriser enterprisers enterprises enterprising enterprisingly enterprisingness enterprize enterritoriality enterrologist enters entertain entertainable entertained entertainer entertainers entertaining entertainingly entertainingness entertainings entertainment entertainments entertains entertake entertaken entertakes entertaking entertissue entertissued entertook entete entetee entfaoilff enthalpies enthalpy entheal enthean entheasm entheate enthelmintha enthelminthes enthelminthic entheos enthetic enthral enthraldom enthraldoms enthrall enthralldom enthralled enthraller enthralling enthrallingly enthrallment enthrallments enthralls enthralment enthralments enthrals enthrill enthrone enthroned enthronement enthronements enthrones enthrong enthroning enthronisation enthronisations enthronise enthronised enthronises enthronising enthronization enthronizations enthronize enthronized enthronizes enthronizing enthuse enthused enthuses enthusiasm enthusiasms enthusiast enthusiastic enthusiastical enthusiastically enthusiasticalness enthusiastly enthusiasts enthusing enthymematic enthymematical enthymeme enthymemes entia entice enticeable enticed enticeful enticement enticements enticer enticers entices enticing enticingly enticingness enticings entier enties entifical entification entify entincture entire entirely entireness entirenesses entires entireties entirety entiris entirities entitative entitatively entities entitle entitled entitledness entitlement entitlements entitles entitling entitule entity ento entoblast entoblastic entoblasts entobranchiate entobronchium entocalcaneal entocarotid entocele entocnemial entocoel entocoele entocoelic entocondylar entocondyle entocondyloid entocone entoconid entocornea entocranial entocuneiform entocuniform entocyemate entocyst entoderm entodermal entodermic entoderms entogastric entogenous entoglossal entohyal entoil entoiled entoiling entoilment entoilments entoils entoire entoloma entolomataceae entom entomb entombed entombing entombment entombments entombs entomere entomeric entomic entomical entomion entomofauna entomofaunae entomofaunas entomogenous entomoid entomol entomolegist entomolite entomologic entomological entomologically entomologies entomologise entomologised entomologises entomologising entomologist entomologists entomologize entomologized entomologizes entomologizing entomology entomophagan entomophagies entomophagous entomophagy entomophilies entomophilous entomophily entomophobia entomophthora entomophthoraceae entomophthoraceous entomophthorales entomophthorous entomophytous entomostraca entomostracan entomostracans entomostracous entomotaxy entomotomist entomotomy entone entonement entonic entoolitic entoparasite entoparasitic entoperipheral entophytal entophyte entophytes entophytic entophytically entophytous entopic entopical entoplasm entoplastic entoplastral entoplastron entoplastrons entopopliteal entoproct entoprocta entoproctous entoprocts entopterygoid entoptic entoptical entoptically entoptics entoptoscope entoptoscopic entoptoscopy entoretina entorganism entortill entosarc entosclerite entosphenal entosphenoid entosphere entosterna entosternal entosternite entosternum entosthoblast entothorax entotic entotympanic entour entourage entourages entozoa entozoal entozoan entozoans entozoarian entozoic entozoological entozoologically entozoologist entozoology entozoon entr entracte entrada entradas entrae entrail entrailed entrailing entrails entrain entrained entrainement entrainements entrainer entrainers entraining entrainment entrainments entrains entrall entralles entrammel entrammelled entrammelling entrammels entrance entranced entrancedly entrancement entrancements entrancer entrances entranceway entranceways entrancing entrancingly entrant entrants entrap entrapment entrapments entrapped entrapper entrappers entrapping entrappingly entraps entraînement entre entreasure entreasured entreasures entreasuring entreat entreatable entreated entreater entreatful entreaties entreating entreatingly entreative entreatment entreatments entreats entreaty entrec entrechat entrechats entrecote entrecotes entrecôte entrecôtes entredeux entree entrees entrefer entrelac entremes entremess entremesse entremesses entremets entrench entrenched entrenches entrenching entrenchment entrenchments entrep entrepas entrepeneur entrepeneurs entrepot entrepots entreprenant entrepreneur entrepreneurial entrepreneurialism entrepreneurialisms entrepreneurially entrepreneurism entrepreneurisms entrepreneurs entrepreneurship entrepreneurships entrepreneuse entrepreneuses entrept entrer entresalle entresol entresols entresse entrez entria entries entrike entrism entrisms entrist entrists entrochite entrochus entrold entropic entropically entropies entropion entropionize entropions entropium entropiums entropy entrough entrust entrusted entrusting entrustment entrustments entrusts entry entryism entryisms entryist entryists entryman entrymen entryphone entryphones entryway entryways entrée entrées entsi entsy entte entune enturret entwine entwined entwinement entwinements entwines entwining entwist entwisted entwisting entwists entwite entypies entêté entêtée enucleate enucleated enucleates enucleating enucleation enucleations enucleator enuf enuki enumerabilities enumerability enumerable enumerably enumerate enumerated enumerates enumerating enumeration enumerations enumerative enumerator enumerators enunciability enunciable enunciate enunciated enunciates enunciating enunciation enunciations enunciative enunciatively enunciator enunciators enunciatory enure enured enuredness enurednesses enurement enurements enures enureses enuresis enuresises enuretic enuretics enuring enurny env envapor envapour envassal envassalage envassalled envassalling envassals envault envaulted envaulting envaults envaye enveigle enveigled enveigles enveigling enveil envelop envelope enveloped enveloper envelopers envelopes enveloping envelopment envelopments envelops envenom envenomation envenomed envenoming envenomisation envenomization envenomizations envenomous envenoms enventual enverdure envergure envermeil envermeiled envermeiling envermeils enviability enviable enviableness enviablenesses enviably envied envier enviers envies envigor envine envined envineyard envious enviously enviousness enviousnesses envire enviro enviroment environ environage environal environed environic environics environing environment environmental environmentalism environmentalisms environmentalist environmentalists environmentally environments environs enviros envisage envisaged envisagement envisagements envisages envisaging envision envisioned envisioning envisionment envisions envoi envois envolume envolupen envoy envoys envoyship envoyships envy envyful envying envyingly envyings enwall enwalled enwalling enwallow enwallowed enwallowing enwallows enwalls enweave enweaved enweaving enweb enwheel enwheeled enwheeling enwheels enwiden enwind enwinding enwinds enwing enwingly enwisen enwoman enwomb enwombed enwombing enwombs enwood enworthed enworthy enwound enwove enwoven enwrap enwrapment enwrapments enwrapped enwrapping enwrappings enwraps enwrapt enwreath enwreathe enwreathed enwreathes enwreathing enwrite enwrought enwwove enwwoven enzian enzians enzone enzoned enzones enzoning enzootic enzootically enzootics enzooty enzoutically enzygotic enzym enzymatic enzymatically enzyme enzymes enzymic enzymically enzymologies enzymologist enzymologists enzymology enzymolysis enzymolytic enzymosis enzymotic enzyms eo eoan eobiont eobionts eocene eodiscid eof eohippus eohippuses eoith eoiths eolation eole eolian eolic eolienne eoliennes eolipile eolipiles eolith eolithic eoliths eolopile eolopiles eolotropic eom eon eonian eonism eonisms eons eophyte eophytic eophyton eoraptor eorhyolite eorl eorls eos eosate eoside eosin eosinate eosine eosines eosinic eosinlike eosinoblast eosinophil eosinophile eosinophiles eosinophilia eosinophilias eosinophilic eosinophilous eosinophils eosins eosophobia eosphorite eothen eozoic eozoon eozoonal ep epa epacmaic epacme epacrid epacridaceae epacridaceous epacrids epacris epacrises epact epactal epacts epaenetic epagoge epagoges epagogic epagomenae epagomenal epagomenic epagomenous epainetic epaleaceous epalpate epalpebrate epanadiploses epanadiplosis epanalepses epanalepsis epanaleptic epanaphora epanaphoral epanaphoras epanastrophe epanisognathism epanisognathous epanodos epanodoses epanody epanorthoses epanorthosis epanorthotic epanthous epapillate epapophysial epapophysis epappose eparch eparchate eparchates eparchial eparchies eparchs eparchy eparcuale eparterial epatant epaule epaulement epaulements epaules epaulet epauleted epaulets epaulette epauletted epaulettes epauliere epaxial epaxially epazote epazotes epedaphic epee epeeist epeeists epees epeidia epeira epeiras epeiric epeirid epeirids epeirogeneses epeirogenesis epeirogenetic epeirogenic epeirogenically epeirogenies epeirogeny epeisodia epeisodion epembryonic epencephal epencephala epencephalic epencephalon epencephalons ependyma ependymal ependymary ependymas ependyme ependymitis ependymoma ependytes epenetic epenla epentheses epenthesis epenthesize epenthetic epeolatries epeolatry epephragmal epepophysial epepophysis eperdu eperdue epergne epergnes eperlan eperotesis eperva epeus epexegeses epexegesis epexegetic epexegetical epexegetically epha ephah ephahs ephapse epharmonic epharmony ephas ephebe ephebea ephebeia ephebeibeia ephebeion ephebes ephebeubea ephebeum ephebi ephebic epheboi ephebophilia ephebophilias ephebos ephebus ephectic ephedra ephedraceae ephedras ephedrin ephedrine ephedrines ephedrins ephelcystic ephelides ephelis ephemera ephemerae ephemeral ephemeralities ephemerality ephemerally ephemeralness ephemeralnesses ephemerals ephemeran ephemeras ephemeric ephemerid ephemerida ephemeridae ephemerides ephemeridian ephemerids ephemeris ephemerist ephemerists ephemeromorph ephemeromorphic ephemeron ephemerons ephemeroptera ephemeropteran ephemerous ephererist ephesian ephesians ephesine ephestia ephestian ephetae ephete ephetic ephialtes ephidrosis ephippia ephippial ephippidae ephippiorhynchus ephippium ephod ephods ephoi ephor ephoral ephoralties ephoralty ephorate ephorates ephori ephoric ephors ephorship ephorus ephphatha ephraim ephthianure ephydriad ephydrid ephymnium ephyra ephyrae ephyrula epi epibasal epibatholithic epibatus epibenthic epibenthos epibenthoses epibiotic epiblast epiblastema epiblastic epiblasts epiblema epiblemata epibole epibolic epibolies epibolism epiboly epiboulangerite epibranchial epic epical epically epicalyces epicalyx epicalyxes epicanthi epicanthic epicanthus epicanthuses epicardia epicardiac epicardial epicardium epicarid epicaridan epicarp epicarpal epicarps epicede epicedes epicedia epicedial epicedian epicedium epicele epicene epicenes epicenism epicenisms epicenity epicenter epicenters epicentra epicentral epicentre epicentres epicentrum epicentrums epicerastic epicerebral epicheirema epicheiremas epicheiremata epichil epichile epichilia epichilium epichindrotic epichirema epichlorohydrin epichlorohydrins epichondrosis epichondrotic epichordal epichorial epichoric epichorion epichoristic epichristian epicier epiciers epicine epicism epicisms epicist epicists epiclastic epicleidian epicleidium epicleses epiclesis epiclidal epiclike epiclinal epicly epicnemial epicoelar epicoele epicoelia epicoeliac epicoelian epicoeloma epicoelous epicolic epicondylar epicondyle epicondyles epicondylian epicondylic epicondylitis epicondylitises epicontinental epicoracohumeral epicoracoid epicoracoidal epicormic epicorolline epicortical epicostal epicotyl epicotyleal epicotyledonary epicotyls epicranial epicranium epicranius epicrasis epicrises epicrisis epicritic epicrystalline epics epicure epicurean epicureanism epicureanisms epicureans epicures epicurise epicurised epicurises epicurish epicurishly epicurising epicurism epicurisms epicurize epicurized epicurizes epicurizing epicurus epicuticle epicuticles epicuticular epicycle epicycles epicyclic epicyclical epicycloid epicycloidal epicycloids epicyemate epicyesis epicystotomy epicyte epideictic epideictical epideistic epidemial epidemic epidemical epidemically epidemicalness epidemicities epidemicity epidemics epidemiographist epidemiography epidemiologic epidemiological epidemiologically epidemiologies epidemiologist epidemiologists epidemiology epidemy epidendral epidendric epidendron epidendrone epidendrones epidendrum epidendrums epiderm epiderma epidermal epidermatic epidermatoid epidermatous epidermic epidermical epidermically epidermidalization epidermis epidermises epidermization epidermoid epidermoidal epidermolysis epidermomycosis epidermophytosis epidermose epidermous epiderms epidesmine epidia epidialogue epidiascope epidiascopes epidiascopic epidictic epidictical epididymal epididymectomy epididymides epididymis epididymite epididymitis epididymitises epididymodeferentectomy epididymodeferential epididymovasostomy epidiorite epidiorites epidiorthosis epidiplosis epidosite epidosites epidote epidotes epidotic epidotiferous epidotisation epidotisations epidotised epidotization epidotizations epidotized epidural epidurals epidymides epifascial epifauna epifaunae epifaunal epifaunas epifocal epifolliculitis epigaea epigaeal epigaean epigaeous epigamic epigaster epigastraeum epigastral epigastria epigastrial epigastric epigastrical epigastriocele epigastrium epigastriums epigastrocele epigeal epigean epigee epigeic epigene epigeneses epigenesis epigenesist epigenesists epigenetic epigenetically epigeneticist epigeneticists epigenetics epigenic epigenist epigenists epigenous epigeous epigeum epiglot epiglottal epiglottic epiglottidean epiglottides epiglottiditis epiglottis epiglottises epiglottitis epignathous epigne epigon epigonal epigonation epigone epigoneion epigones epigoni epigonic epigonism epigonisms epigonium epigonos epigonous epigonousepigons epigons epigonus epigram epigrammatarian epigrammatic epigrammatical epigrammatically epigrammatise epigrammatised epigrammatiser epigrammatises epigrammatising epigrammatism epigrammatisms epigrammatist epigrammatists epigrammatize epigrammatized epigrammatizer epigrammatizers epigrammatizes epigrammatizing epigramme epigrams epigraph epigraphed epigrapher epigraphers epigraphic epigraphical epigraphically epigraphies epigraphing epigraphist epigraphists epigraphs epigraphy epiguanine epigyne epigynies epigynous epigynum epigyny epihyal epihydric epihydrinic epikeia epikeratophakia epikia epikleses epiklesis epiky epil epilabra epilabrum epilachna epilamellar epilaryngeal epilate epilated epilates epilating epilation epilations epilator epilators epilatory epilegomenon epilemma epilemmal epileny epilepsia epilepsies epilepsy epileptic epileptical epileptically epileptics epileptiform epileptogenic epileptogenous epileptoid epileptologist epileptology epilimnetic epilimnia epilimnial epilimnion epilimnionia epilimnions epilithic epilobe epilobium epilobiums epilog epilogate epilogation epilogic epilogical epilogise epilogised epilogises epilogising epilogism epilogist epilogistic epilogists epilogize epilogized epilogizes epilogizing epilogs epilogue epilogued epilogues epiloguing epiloguise epiloguised epiloguises epiloguising epiloguize epiloguized epiloguizes epiloguizing epiloia epimacus epimandibular epimanikia epimanikion epimedium epimeletic epimer epimeral epimerase epimerases epimere epimeres epimeric epimeride epimerise epimerised epimerising epimerism epimerite epimeritic epimerize epimerized epimerizing epimeron epimers epimerum epimetheus epimorpha epimorphic epimorphism epimorphosis epimyocardial epimyocardium epimysia epimysium epimyth epinaoi epinaos epinard epinastic epinastically epinasties epinasty epineolithic epinephelus epinephrin epinephrine epinephrines epinephrins epinette epineuneuria epineural epineuria epineurial epineurium epineuriums epingle epinglette epinicia epinicial epinician epinicion epinicions epinikia epinikian epinikion epinikions epinine epinosic epinyctis epionychia epionychium epionynychia epiopticon epiotic epipactis epipaleolithic epipanies epipany epiparasite epiparodos epipastic epipedometry epipelagic epiperipheral epipetalous epiphanic epiphanies epiphanise epiphanised epiphanising epiphanize epiphanized epiphanizing epiphanous epiphany epipharyngeal epipharynx epiphenomena epiphenomenal epiphenomenalism epiphenomenalisms epiphenomenalist epiphenomenalists epiphenomenally epiphenomenon epiphenomenons epiphloedal epiphloedic epiphloeum epiphonema epiphonemae epiphonemas epiphora epiphragm epiphragmal epiphragms epiphylaxis epiphyll epiphylline epiphyllospermous epiphyllous epiphyllum epiphysary epiphyseal epiphyseolysis epiphyses epiphysial epiphysis epiphysitis epiphytal epiphyte epiphytes epiphytic epiphytical epiphytically epiphytism epiphytisms epiphytologies epiphytology epiphytotic epiphytotics epiphytous epipial epiplankton epiplanktonic epiplasm epiplasmic epiplastra epiplastral epiplastron epiplectic epipleura epipleurae epipleural epiplexis epiploce epiplocele epiploic epiploitis epiploon epiploons epiplopexy epipodia epipodial epipodiale epipodialia epipodite epipoditic epipodium epipolic epipolism epipolisms epipolize epiprecoracoid epipremnum epiproct epipteric epipterous epipterygoid epipubes epipubic epipubis epirhizous epirogenetic epirogenic epirogeny epirot epirotulian epirrhema epirrhemas epirrhematic epirrheme episarcine episarkine episcenia episcenium episcia episcias episclera episcleral episcleritis episcopable episcopacies episcopacy episcopal episcopalian episcopalianism episcopalianisms episcopalians episcopalism episcopalisms episcopality episcopally episcopant episcopants episcoparian episcopate episcopated episcopates episcopating episcopation episcopature episcope episcopes episcopicide episcopies episcopise episcopised episcopises episcopising episcopization episcopize episcopized episcopizes episcopizing episcopolatry episcopy episcotister episedia episematic episememe episemon episemons episepalous episiocele episiohematoma episioplasty episiorrhagia episiorrhaphy episiostenosis episiotomies episiotomy episkeletal episkotister episodal episode episodes episodial episodic episodical episodically episomal episomally episome episomes epispadia epispadiac epispadias epispastic epispastics episperm epispermic episperms epispinal episplenitis episporangium epispore epispores episporium epist epistapedial epistases epistasies epistasis epistasy epistatic epistaxes epistaxis epistaxises episteme epistemic epistemically epistemics epistemolog epistemological epistemologically epistemologies epistemologist epistemologists epistemology epistemonic epistemonical epistemophilia epistemophiliac epistemophilic epistena episterna episternal episternalia episternite episternum episternums episthotonos epistilbite epistilbites epistlar epistle epistled epistler epistlers epistles epistling epistolar epistolarian epistolarians epistolaries epistolarily epistolary epistolatory epistolean epistoler epistolers epistolet epistolets epistolic epistolical epistolise epistolised epistolises epistolising epistolist epistolists epistolizable epistolization epistolize epistolized epistolizer epistolizes epistolizing epistolographer epistolographic epistolographies epistolographist epistolography epistoma epistomal epistomata epistome epistomes epistomian epistroma epistrophe epistropheal epistrophes epistropheus epistrophic epistrophy epistylar epistyle epistyles episyllogism episynaloephe episynthetic episyntheton epit epitactic epitaph epitaphed epitapher epitaphers epitaphial epitaphian epitaphic epitaphical epitaphing epitaphise epitaphist epitaphists epitaphize epitaphless epitaphs epitases epitasis epitaxial epitaxially epitaxic epitaxies epitaxis epitaxy epitela epitendineum epitenon epithalami epithalamia epithalamial epithalamiast epithalamic epithalamion epithalamium epithalamiumia epithalamiums epithalamize epithalamus epithalamy epithalline epithamia epitheca epithecal epithecate epithecia epithecial epithecicia epithecium epithelia epithelial epithelialization epithelializations epithelialize epithelialized epithelializes epithelializing epithelilia epitheliliums epithelioblastoma epithelioceptor epitheliod epitheliogenetic epithelioglandular epithelioid epitheliolysin epitheliolysis epitheliolytic epithelioma epitheliomas epitheliomata epitheliomatous epitheliomuscular epitheliosis epitheliotoxin epitheliulia epithelium epitheliums epithelization epithelizations epithelize epithelized epithelizes epithelizing epitheloid epithem epithema epithemata epitheme epithems epithermal epithermally epitheses epithesis epithet epitheted epithetic epithetical epithetically epithetician epitheting epithetise epithetize epitheton epithetons epithets epithi epithumetic epithyme epithymetic epithymetical epitimesis epitoke epitomate epitomator epitomatory epitome epitomes epitomic epitomical epitomically epitomisation epitomisations epitomise epitomised epitomiser epitomisers epitomises epitomising epitomist epitomists epitomization epitomizations epitomize epitomized epitomizer epitomizers epitomizes epitomizing epitonic epitonion epitope epitopes epitoxoid epitra epitrachelia epitrachelion epitrachelions epitrchelia epitria epitrichial epitrichium epitrite epitrites epitritic epitrochlea epitrochlear epitrochoid epitrochoidal epitrochoids epitrope epitrophic epitrophy epituberculosis epituberculous epitympa epitympanic epitympanum epityphlitis epityphlon epiural epivalve epixylous epizeuxes epizeuxis epizeuxises epizoa epizoal epizoan epizoans epizoarian epizoic epizoicide epizoism epizoisms epizoite epizoites epizoology epizoon epizootic epizootically epizootics epizooties epizootiologic epizootiological epizootiologically epizootiologies epizootiology epizootology epizooty epizoutically epizzoa epkwele eplot epoch epocha epochal epochally epochas epoche epochism epochist epochs epode epodes epodic epoist epollicate epona eponge eponychia eponychium eponychiums eponym eponymic eponymies eponymism eponymist eponymize eponymous eponyms eponymus eponymy epoophoron epop epopee epopees epopoean epopoeia epopoeias epopoeist epopt epoptes epoptic epoptist epopts epornitic epornitically epos eposes epotation epoxidation epoxidations epoxide epoxides epoxidize epoxidized epoxidizes epoxidizing epoxied epoxies epoxy epoxyed epoxying eppes epris eprise eprom eproms eprosy eprouvette eprouvettes epruinose epsilon epsilonic epsilons epsom epsomite epsomites eptatretus eptesicus epuise epuisee epulary epulation epulations epulides epulis epulises epulo epuloid epulones epulosis epulotic epulotics epupillate epural epurate epurated epurates epurating epuration epurations epyllia epyllion epyllions eq eqpt equabilities equability equable equableness equablenesses equably equaeval equal equalable equaled equaling equalisation equalisations equalise equalised equaliser equalisers equalises equalising equalist equalitarian equalitarianism equalitarianisms equalitarians equalities equality equalization equalizations equalize equalized equalizer equalizers equalizes equalizing equalled equaller equalling equally equalness equalnesses equals equangular equanil equanimities equanimity equanimous equanimously equanimousness equant equants equatabilities equatability equatable equate equated equates equating equation equational equationally equationism equationist equations equative equatives equator equatoreal equatorial equatorially equatorials equators equatorward equatorwards equerries equerry equerryship eques equestrial equestrian equestrianise equestrianism equestrianisms equestrianize equestrians equestrianship equestrienne equestriennes equetus equianchorate equiangle equiangular equiangularities equiangularity equianharmonic equiarticulate equiatomic equiaxe equiaxed equiaxial equibalance equibalanced equibalances equibalancing equibiradiate equicaloric equicellular equichangeable equicohesive equicontinuous equiconvex equicostate equicrural equicurve equid equidae equidense equidensity equidiagonal equidifferent equidimensional equidist equidistance equidistances equidistant equidistantial equidistantly equidistribution equidiurnal equidivision equidominant equids equidurable equielliptical equiexcellency equiform equiformal equiformity equiglacial equigranular equijacent equilater equilateral equilaterally equilaterals equilibrant equilibrants equilibrate equilibrated equilibrates equilibrating equilibration equilibrations equilibrative equilibrator equilibrators equilibratory equilibria equilibrial equilibriate equilibrio equilibrious equilibriria equilibrist equilibristat equilibristic equilibrists equilibrities equilibrity equilibrium equilibriums equilibrize equilin equiliria equilisation equilobate equilobed equilocation equilucent equimodal equimolal equimolar equimolecular equimomental equimultiple equimultiples equinal equinate equine equinecessary equinely equines equinia equinias equinities equinity equinoctial equinoctially equinoctials equinovarus equinox equinoxes equinumerally equinus equiomnipotent equip equipaga equipage equipaged equipages equipaging equiparable equiparant equiparate equiparated equiparates equiparating equiparation equiparations equipartile equipartisan equipartition equipe equiped equipedal equipede equipendent equiperiodic equipes equipluve equipment equipments equipoise equipoised equipoises equipoising equipollence equipollences equipollencies equipollency equipollent equipollently equipollentness equipollents equiponderance equiponderances equiponderancies equiponderancy equiponderant equiponderate equiponderated equiponderates equiponderating equiponderation equiponderous equipondious equipostile equipotent equipotential equipotentialities equipotentiality equipped equipper equippers equipping equiprobabilism equiprobabilist equiprobabilities equiprobability equiprobable equiprobably equiproducing equiproportional equiproportionality equips equipt equiradial equiradiate equiradical equirotal equisegmented equiseta equisetaceae equisetaceous equisetales equisetatae equisetic equisetiform equisetum equisetums equisided equisignal equisized equison equisonance equisonant equispaced equispatial equisufficiency equisurface equitabilities equitability equitable equitableness equitablenesses equitably equitangential equitant equitation equitations equitative equitemporal equitemporaneous equites equities equitist equitriangular equity equiv equivale equivalence equivalenced equivalences equivalencies equivalencing equivalency equivalent equivalently equivalents equivaliant equivalue equivaluer equivalve equivalved equivalvular equivelocity equivocacies equivocacy equivocal equivocalities equivocality equivocally equivocalness equivocalnesses equivocate equivocated equivocates equivocating equivocatingly equivocation equivocations equivocator equivocators equivocatory equivoke equivokes equivoluminal equivoque equivoques equivorous equivote equoid equoidean equulei equuleus equus equvalent er era erade eradiate eradiated eradiates eradiating eradiation eradiations eradicable eradicably eradicant eradicate eradicated eradicates eradicating eradication eradications eradicative eradicator eradicators eradicatory eradiculose eragrostis eral eranist eranthis eras erasabilities erasability erasable erase erased erasement erasements eraser erasers erases erasing erasion erasions erasmian erasmus erastian erastianism erasure erasures erat erathem erathems erato eratosthenes erbia erbias erbium erbiums erd erdvark ere erebus erect erectable erected erecter erecters erectile erectilities erectility erecting erection erections erective erectly erectness erectnesses erectopatent erector erectors erects ered erelong eremacausis eremacausises eremic eremital eremite eremites eremiteship eremitic eremitical eremitish eremitism eremitisms eremochaetous eremology eremophilous eremophyte eremuri eremurus erenach erenow erepsin erepsins erept ereptase ereptic ereption erer eres ereshkigal ereshkigel erethic erethisia erethism erethismic erethisms erethistic erethitic erethizon erethizontidae eretmochelys erewhile erewhiles erewhon erf erg ergal ergamine ergasia ergasterion ergastic ergastoplasm ergastoplasmic ergastoplasms ergastulum ergatandromorph ergatandromorphic ergatandromorphs ergatandrous ergatandry ergataner ergataners ergate ergates ergative ergatives ergativities ergativity ergatocracies ergatocracy ergatocrat ergatogyne ergatogynes ergatogynous ergatogyny ergatoid ergatomorph ergatomorphic ergatomorphism ergatomorphs ergmeter ergo ergocalciferol ergocalciferols ergodic ergodicities ergodicity ergogram ergograms ergograph ergographic ergographs ergoism ergology ergomania ergomaniac ergomaniacs ergomanias ergometer ergometers ergometric ergometrine ergon ergonometric ergonomic ergonomically ergonomics ergonomist ergonomists ergonovine ergonovines ergophile ergophobia ergophobiac ergophobias ergophobic ergoplasm ergostat ergosterin ergosterol ergosterols ergot ergotamine ergotamines ergotaminine ergoted ergothioneine ergotic ergotin ergotine ergotinine ergotise ergotised ergotises ergotising ergotism ergotisms ergotist ergotization ergotize ergotized ergotizes ergotizing ergotoxin ergotoxine ergotropic ergotropism ergots ergs ergusia eria eriach eriachs erianthus eric erica ericaceae ericaceous ericad erical ericales ericas ericetal ericeticolous ericetum erichthoid erichthus erichtoid ericineous ericius erick ericks ericoid ericolin ericophyte erics erie erigeron erigerons erigible eriglossate erignathus erika erikite erin erinaceidae erinaceous erinaceus erineum ering eringo eringoes eringos erinite erinites erinnic erinose erinyes erinys eriobotrya eriocaulaceae eriocaulaceous eriocaulon eriodictyon erioglaucine eriogonum eriometer eriometers erionite erionites eriophorous eriophorum eriophorums eriophyid eriophyids eriophyllous eriophyllum eriosoma eris eristic eristical eristically eristics erithacus eritrea eritrean erivan erizo erk erke erks erlang erliche erlking erlkings erme ermelin ermelins ermiline ermine ermined erminee ermines erminette ermining erminites erminois ermit ermitophobia ern erne erned ernes ernesse ernest erning erns erodability erodable erode eroded erodent erodents erodes erodibilities erodibility erodible eroding erodium erodiums erogate erogeneity erogenesis erogenetic erogenic erogenous erogeny erolia eromania eros erose erosely eroses erosible erosion erosional erosionally erosionist erosions erosive erosiveness erosivenesses erosivities erosivity erostrate erotema erotemas eroteme erotemes eroteses erotesis erotetic erotic erotica erotical erotically eroticisation eroticise eroticised eroticises eroticising eroticism eroticisms eroticist eroticists eroticization eroticizations eroticize eroticized eroticizes eroticizing eroticomania eroticomaniac eroticomaniacal erotics eroticses erotism erotisms erotization erotizations erotize erotized erotizes erotizing erotogeneses erotogenesis erotogenetic erotogenic erotogenicity erotogenous erotographomania erotology erotomania erotomaniac erotomaniacal erotomaniacs erotomanias erotopath erotopathic erotopathy erotophobia erotophobias erotylid erpetologist erpetology err errability errable errableness errabund errancies errancy errand errands errant errantly errantness errantries errantry errants errata erratas erratic erratical erratically erraticalness erraticism erraticisms erraticness erratics erratum erratums erratuta erred errhine errhines erring erringly errings errite erron erroneous erroneously erroneousness erroneousnesses error errordump errorful errorist errorists errorless errors errs errsyn ers ersatz ersatzes erse erses ersh erst erstwhile erstwhiles ert erth erthen erthling erthly erub erubescence erubescences erubescencies erubescency erubescent erubescite erubescites erubs eruc eruca erucic eruciform erucin erucivorous eruct eructance eructate eructated eructates eructating eructation eructations eructative eructed eructing eruction eructs erudit erudite eruditely eruditeness eruditenesses erudites eruditical erudition eruditional eruditionist eruditions erugate erugation erugatory eruginous erugo erugos erump erumpent erupt erupted eruptible erupting eruption eruptional eruptions eruptive eruptively eruptiveness eruptivenesses eruptives eruptivities eruptivity erupts erupturient eruv eruvs ervalenta ervalentas erven ervenholder ervil ervils erwinia eryhtrism eryngium eryngiums eryngo eryngoes eryngos eryopid eryopsid erysimum erysipelas erysipelases erysipelatoid erysipelatous erysipeloid erysipeloids erysipelothrix erysipelous erysiphaceae erysiphales erysiphe erythema erythemal erythemas erythematic erythematous erythemic erythorbate erythorbates erythraean erythraemia erythrasma erythrean erythremia erythremias erythremomelalgia erythrene erythric erythrin erythrina erythrinas erythrine erythrism erythrismal erythrisms erythristic erythrite erythrites erythritic erythritol erythroblast erythroblastic erythroblastoses erythroblastosis erythroblastotic erythroblasts erythrocarpous erythrocatalysis erythrocebus erythrochroic erythrochroism erythroclasis erythroclastic erythrocyte erythrocytes erythrocytic erythrocytoblast erythrocytolysin erythrocytolysis erythrocytolytic erythrocytometer erythrocytometry erythrocytorrhexis erythrocytoschisis erythrocytosis erythrodegenerative erythroderma erythrodermia erythrodextrin erythrogen erythrogenesis erythrogenic erythroglucin erythrogonium erythroid erythrol erythrolein erythroleukaemia erythroleukaemias erythrolitmin erythrolysin erythrolysis erythrolytic erythromania erythromelalgia erythromycin erythromycins erythron erythroneocytosis erythronium erythrons erythropenia erythropenias erythrophage erythrophagous erythrophilous erythrophleine erythrophobia erythrophobias erythrophore erythrophyll erythrophyllin erythropia erythroplastid erythropoieses erythropoiesis erythropoietic erythropoietin erythropoietins erythropsia erythropsin erythrorrhexis erythroscope erythrose erythrosiderite erythrosin erythrosine erythrosines erythrosinophile erythrosins erythrosis erythroxylaceae erythroxylaceous erythroxyline erythroxylon erythroxylum erythrozincite erythrozyme erythrulose erzahler es esau esbat esbatement esbats esbay esc esca escadrille escadrilles escalade escaladed escalader escaladers escalades escalading escalado escaladoes escalan escalate escalated escalates escalating escalation escalations escalator escalators escalatory escalier escalin escallonia escalloniaceous escallonias escallop escalloped escalloping escallops escalope escaloped escalopes escaloping escambio escambron escamotage escamoteur escandalize escapable escapade escapades escapado escapadoes escapage escape escaped escapee escapees escapeful escapeless escapement escapements escaper escapers escapes escapeway escaping escapingly escapism escapisms escapist escapists escapologies escapologist escapologists escapology escar escarbuncle escargatoire escargot escargotiares escargotieres escargots escarmouche escarmouches escarole escaroles escarp escarped escarping escarpment escarpments escarps escars escarteled escartelly eschalot eschalots eschar eschara escharine escharoid escharotic escharotics eschars eschatocol eschatologic eschatological eschatologically eschatologies eschatologist eschatologists eschatology eschaufe eschaunge escheat escheatable escheatage escheatages escheated escheating escheatment escheatments escheator escheators escheatorship escheats eschel eschele escherichia escheve eschevin eschew eschewal eschewals eschewance eschewed eschewer eschewers eschewing eschews eschoppe eschrichtiidae eschrichtius eschrufe eschscholtzia eschscholtzias eschscholzia eschscholzias eschynite esclandre esclandres esclavage escoba escobadura escobedo escobilla escobita escocheon escolar escolars escollope escollopes esconson escopet escopeta escopette escopettes escort escortage escortages escorted escortee escorting escortment escorts escot escoted escoting escots escotted escotting escout escribano escribanos escribe escribed escribes escribiente escribientes escribing escrime escript escritoire escritoires escritorial escroc escrocs escrod escrol escroll escrolls escrols escropulo escrow escrowed escrowee escrowing escrows escruage escry escuage escuages escudero escudo escudos escuela esculapian esculent esculents esculetin esculic esculin escurialize escutcheon escutcheoned escutcheons escutellate esd esdragol ese esemplasies esemplastic esemplasy eseptate esere eserin eserine eserines eses esexual esguard eshin esidrix esile esiles esiphonal eskar eskars esker eskers eskies eskimo eskimoes eskimos esky eslabon eslisor esloign esloin esloined esloining esloins esloyne esloyned esloynes esloyning esm esmayle esmeralda esmeraldite esne esnecies esnecy esnes esoanhydride esocataphoria esocidae esociform esocyclic esodic esoenteritis esoethmoiditis esogastritis esonarthex esoneural esop esopgi esophagal esophagalgia esophageal esophagean esophagectasia esophagectomy esophagi esophagism esophagismus esophagitis esophago esophagocele esophagodynia esophagogastroscopy esophagogastrostomy esophagomalacia esophagometer esophagomycosis esophagopathy esophagoplasty esophagoplegia esophagoplication esophagoptosis esophagorrhagia esophagoscope esophagoscopy esophagospasm esophagostenosis esophagostomy esophagotome esophagotomy esophagus esophaguses esophoria esophoric esoteric esoterica esoterical esoterically esotericism esotericisms esotericist esotericists esoterics esoteries esoterism esoterisms esoterist esoterize esotery esothyropexy esotrope esotropia esotropias esotropic esox esp espace espacement espada espadas espadon espadrille espadrilles espagnole espagnoles espagnolette espagnolettes espalier espaliered espaliering espaliers espana espanol espanole espanoles espantoon esparcet esparsette esparto espartos espathate espauol espauoles espave espavel espec espece especial especially especialness espeire esperance esperances esperantido esperanto esphresis espiagle espiagleries espial espials espichellite espied espiegle espieglerie espiegleries espier espies espigle espiglerie espinal espinel espinette espingole espinillo espino espinos espionage espionages espiritual espiègle espièglerie esplanade esplanades esplees esponton espontoon espousage espousal espousals espouse espoused espousement espouser espousers espouses espousing espressivo espresso espressos espringal esprise esprit esprits esprove espumoso espumosos espundia espy espying esq esquamate esquamulose esquimau esquire esquirearchy esquired esquiredom esquires esquireship esquiress esquiresses esquiring esquisse esquisses esr esrog esrogim esrogs ess essancia essancias essang essart essay essayed essayer essayers essayette essayettes essayical essaying essayish essayism essayist essayistic essayistical essayists essaylet essays esse essed esseda essede essee esselen essen essence essenced essences essencing essency essene essenhout essentia essential essentialise essentialises essentialism essentialisms essentialist essentialists essentialities essentiality essentialization essentialize essentialized essentializes essentializing essentially essentialness essentialnesses essentials essentiate essenwood essera esses essexite essive essives essling essoign essoin essoined essoinee essoiner essoiners essoining essoinment essoins essonite essonites essorant essoyne essoynes est estab estable establish establishable established establisher establishers establishes establishing establishment establishmentarian establishmentarianism establishmentarianisms establishmentarians establishmentism establishments establismentarian establismentarianism estacade estacades estadal estadel estadio estado estafa estafet estafette estafetted estafettes estall estamene estamin estaminet estaminets estamp estampage estampede estampedero estampie estancia estancias estanciero estancieros estang estantion estate estated estately estates estatesman estatesmen estating estats esteem esteemable esteemed esteemer esteeming esteems estensible ester esterase esterases esterellite esteriferous esterifiable esterification esterifications esterified esterifies esterify esterifying esterisation esterise esterization esterize esterizing esterling esteros esters estevin esthematology esther estherian estheses esthesia esthesias esthesio esthesioblast esthesiogen esthesiogenic esthesiogens esthesiogeny esthesiography esthesiology esthesiometer esthesiometers esthesiometric esthesiometry esthesioneurosis esthesiophysiology esthesis esthesises esthete esthetes esthetic esthetical esthetician estheticians estheticism estheticisms estheticize estheticized estheticizes estheticizing esthetics esthetology esthetophore esthiomene esthiomenus esthonia esthonian estimable estimableness estimablenesses estimably estimate estimated estimates estimating estimatingly estimation estimations estimative estimator estimators estipulate estivage estival estivate estivated estivates estivating estivation estivations estivator estive estmark estoc estocada estocs estoil estoile estoiles estolide estonia estonian estonians estop estoppage estoppages estoppal estopped estoppel estoppels estopping estops estoque estover estovers estrada estradas estrade estrades estradiol estradiols estradiot estrado estragol estragole estragon estragons estral estramazone estramazones estrange estranged estrangedness estrangednesses estrangelo estrangelos estrangement estrangements estranger estrangers estranges estranghelo estranghelos estranging estrangle estrapade estrapades estray estrayed estraying estrays estre estreat estreated estreating estreats estrepe estreped estrepement estrepements estrepes estreping estriate estrich estriche estriches estridge estridges estrif estrilda estrildid estrildids estrildine estrin estrins estriol estriols estro estrogen estrogenic estrogenically estrogenicity estrogens estrone estrones estrous estrual estruate estruation estrum estrums estrus estruses ests estuant estuarial estuarian estuaries estuarine estuary estuate estudy estufa estuosity estuous esture estus esu esugarization esurience esuriences esuriencies esuriency esurient esuriently esurine et eta etaballi etabelli etacism etacisms etacist etaerio etaerios etage etagere etageres etages etagre etalage etalages etalon etalons etamin etamine etamines etamins etang etape etapes etas etat etatism etatisme etatisms etatist etatists etc etcetera etceteras etch etchant etchants etched etcher etchers etches etching etchings eten etens eteocles eteostic etepimeletic eterminable eternal eternalisation eternalisations eternalise eternalised eternalises eternalising eternalism eternalist eternalists eternalities eternality eternalization eternalizations eternalize eternalized eternalizes eternalizing eternally eternalness eternalnesses eternals eterne eternisation eternisations eternise eternised eternises eternish eternising eternities eternity eternization eternizations eternize eternized eternizes eternizing etesian etesians eth ethal ethaldehyde ethals ethambutol ethambutols ethamine ethamines ethanal ethanals ethanamide ethane ethanedial ethanediol ethanedithiol ethanes ethanethial ethanethiol ethanim ethanol ethanolamine ethanolamines ethanols ethanolysis ethanoyl ethchlorvynol ethe ethel etheling ethene ethenes ethenic ethenoid ethenoidal ethenol ethenyl etheostomine etheostomoid ethephon ethephons ether etherate ethercap ethercaps ethereal etherealisation etherealisations etherealise etherealised etherealises etherealising etherealism etherealities ethereality etherealization etherealizations etherealize etherealized etherealizes etherealizing ethereally etherealness etherealnesses etherean ethered etherene ethereous etherial etherialisation etherialise etherialised etherialising etherialism etherialization etherialize etherialized etherializing etherially etheric etherical etherification etherifications etherified etherifies etheriform etherify etherifying etherin etherion etherions etherisation etherisations etherise etherised etheriser etherisers etherises etherish etherising etherism etherisms etherist etherists etherization etherizations etherize etherized etherizer etherizers etherizes etherizing etherlike ethernet ethernets etherol etherolate etheromania etheromaniac etheromaniacs etheromanias etherous ethers ethic ethical ethicalism ethicalities ethicality ethically ethicalness ethicalnesses ethicals ethician ethicians ethicise ethicised ethicises ethicising ethicism ethicisms ethicist ethicists ethicize ethicized ethicizes ethicizing ethicoaesthetic ethicophysical ethicopolitical ethicoreligious ethicosocial ethics ethid ethide ethidene ethinamate ethine ethinyl ethinyls ethiodide ethion ethionamide ethionamides ethionic ethionine ethionines ethions ethiop ethiopia ethiopian ethiopians ethiopic ethiops ethiopses ethize ethmofrontal ethmoid ethmoidal ethmoiditis ethmoids ethmolachrymal ethmolith ethmomaxillary ethmonasal ethmopalatal ethmopalatine ethmophysal ethmopresphenoidal ethmose ethmosphenoid ethmosphenoidal ethmoturbinal ethmoturbinate ethmovomer ethmovomerine ethmyphitis ethnal ethnarch ethnarchies ethnarchs ethnarchy ethnic ethnical ethnically ethnicise ethnicism ethnicisms ethnicist ethnicities ethnicity ethnicize ethnicon ethnics ethnish ethnize ethnobiological ethnobiology ethnobotanic ethnobotanical ethnobotanically ethnobotanies ethnobotanist ethnobotanists ethnobotany ethnocentric ethnocentrically ethnocentricities ethnocentricity ethnocentrism ethnocentrisms ethnocide ethnocides ethnocracy ethnodicy ethnoflora ethnog ethnogenic ethnogenies ethnogenist ethnogeny ethnogeographer ethnogeographic ethnogeographical ethnogeographically ethnogeography ethnographer ethnographers ethnographic ethnographica ethnographical ethnographically ethnographies ethnographist ethnography ethnohistorian ethnohistorians ethnohistoric ethnohistorical ethnohistorically ethnohistories ethnohistory ethnol ethnolinguist ethnolinguistic ethnolinguistics ethnolinguists ethnologer ethnologic ethnological ethnologically ethnologies ethnologist ethnologists ethnology ethnomaniac ethnomanic ethnomethodologies ethnomethodologist ethnomethodologists ethnomethodology ethnomusicological ethnomusicologically ethnomusicologies ethnomusicologist ethnomusicologists ethnomusicology ethnonym ethnonyms ethnopsychic ethnopsychological ethnopsychology ethnos ethnoscience ethnosciences ethnoses ethnotechnics ethnotechnography ethnozoological ethnozoology ethogram ethograms ethography etholide ethologic ethological ethologically ethologies ethologist ethologists ethology ethonomic ethonomics ethonone ethopoeia ethopoetic ethos ethoses ethosuximide ethoxide ethoxies ethoxy ethoxycaffeine ethoxyethane ethoxyl ethoxyls ethrane ethrog ethrogim ethrogs eths ethyl ethylamide ethylamime ethylamin ethylamine ethylamines ethylate ethylated ethylates ethylating ethylation ethylations ethylbenzene ethylbenzenes ethyldichloroarsine ethylenation ethylene ethylenediamine ethylenediaminetetraacetate ethylenediaminetetraacetates ethylenes ethylenic ethylenically ethylenimine ethylenoid ethylhydrocupreine ethylic ethylidene ethylidyne ethylin ethylmorphine ethyls ethylsulphuric ethylthioethane ethylthioether ethyne ethynes ethynyl ethynylation ethynyls ethysulphuric etiam etic etiogenic etiolate etiolated etiolates etiolating etiolation etiolations etiolin etiolins etiolize etiologic etiological etiologically etiologies etiologist etiologists etiologue etiology etiophyllin etioporphyrin etiotropic etiotropically etiquet etiquette etiquettes etiquettical etna etnas etodolac etodolacs etoffe etoile etoiles eton etonian etouffe etouffee etouffees etourderie etourdi etourdie etranger etrangere etrangeres etrangers etrenne etrennes etrenness etrier etriers etrog etrogim etrogs etropus etruria etrurian etruscan etruscans ettercap ettercaps ettin ettins ettirone ettle ettled ettles ettling etua etude etudes etui etuis etuve etuvee etwas etwee etwees etwite ety etym etyma etymic etymography etymol etymologer etymologic etymological etymologically etymologicon etymologicons etymologicum etymologicums etymologies etymologisable etymologisation etymologise etymologised etymologises etymologising etymologist etymologists etymologizable etymologization etymologize etymologized etymologizes etymologizing etymology etymon etymonic etymons etypic etypical etypically eu euangiotic euarctos euascomycetes euaster eubacteria eubacteriales eubacterium euboic eubryales eubteria eucain eucaine eucaines eucains eucairite eucalyn eucalypt eucalypteol eucalypti eucalyptian eucalyptic eucalyptography eucalyptol eucalyptole eucalyptoles eucalyptols eucalypts eucalyptus eucalyptuses eucarpic eucarpous eucarya eucaryon eucaryons eucaryot eucaryote eucaryotes eucaryotic eucaryots eucatropine eucephalous eucgia eucharis eucharises eucharist eucharistial eucharistic eucharistical eucharistically eucharistize eucharistized eucharistizing eucharists euchite euchlorhydria euchloric euchlorine euchlorines euchlorite euchologia euchological euchologies euchologion euchologions euchology euchre euchred euchres euchring euchroic euchroite euchromatic euchromatin euchromatins euchrome euchromosome euchrone euchymous euchysiderite euciliate eucinostomus euclase euclases eucleid euclid euclidean euclidian eucolite eucone euconic eucosmid eucrasia eucrasite eucrasy eucre eucrite eucrites eucritic eucryphiaceous eucryptite eucrystalline eucti euctical eucyclic euda eudaemon eudaemonia eudaemonias eudaemonic eudaemonical eudaemonics eudaemonies eudaemonism eudaemonisms eudaemonist eudaemonistic eudaemonistical eudaemonistically eudaemonists eudaemonize eudaemons eudaemony eudaimon eudaimonia eudaimonism eudaimonisms eudaimonist eudaimons eudalene eudemon eudemonia eudemonic eudemonics eudemonism eudemonisms eudemonist eudemonistic eudemonistical eudemonistically eudemonists eudemons eudemony euderma eudesmol eudiagnostic eudialyte eudialytes eudiaphoresis eudidymite eudiometer eudiometers eudiometric eudiometrical eudiometrically eudiometries eudiometry eudipleural eudyptes euectic euemerism euflavine euge eugene eugenecist eugenecists eugenesic eugenesis eugenetic eugenia eugenias eugenic eugenical eugenically eugenicist eugenicists eugenics eugenism eugenisms eugenist eugenists eugenol eugenolate eugenols eugeny eugeosynclinal eugeosyncline eugeosynclines euges eugh eughen eughs euglena euglenaceae euglenas euglenid euglenids euglenoid euglenoids euglenophyceae euglenophyta euglenophyte euglobulin euglobulins eugonic eugranitic euhages euharmonic euhedral euhemerise euhemerised euhemerises euhemerising euhemerism euhemerisms euhemerist euhemeristic euhemeristically euhemerists euhemerize euhemerized euhemerizes euhemerizing euhyostylic euhyostyly euk eukairite eukaryon eukaryons eukaryot eukaryote eukaryotes eukaryotic eukaryots euked euking euks euktolite eulachan eulachans eulachon eulachons eulalia eulamellibranch eulamellibranchiate euler eulerian eulogia eulogiae eulogias eulogic eulogical eulogically eulogies eulogious eulogisation eulogise eulogised eulogiser eulogisers eulogises eulogising eulogism eulogist eulogistic eulogistical eulogistically eulogists eulogium eulogiums eulogization eulogize eulogized eulogizer eulogizers eulogizes eulogizing eulogy eulophid eulysite eulytin eulytine eulytite eumeces eumelanin eumelanins eumemorrhea eumenes eumenid eumenides eumenorrhea eumerism eumerisms eumeristic eumerogenesis eumerogenetic eumeromorph eumeromorphic eumetopias eumitosis eumitotic eumoiriety eumoirous eumolpique eumops eumorphic eumorphous eumycete eumycetes eumycetic eumycota eundem eunectes eunicid eunomy eunuch eunuchal eunuchise eunuchised eunuchises eunuchising eunuchism eunuchisms eunuchize eunuchized eunuchizes eunuchizing eunuchoid eunuchoidism eunuchoidisms eunuchoids eunuchry eunuchs euodic euoi euois euomphalid euonym euonymin euonymins euonymous euonymus euonymuses euonymy euornithic euosmite euouae euouaes eupad eupads eupathy eupatoriaceous eupatorin eupatorine eupatorium eupatory eupatrid eupatridae eupatrids eupepsia eupepsias eupepsies eupepsy eupeptic eupeptically eupepticism eupepticities eupepticity euphagus euphausiacea euphausiacean euphausiaceans euphausid euphausids euphausiid euphausiids euphemian euphemious euphemiously euphemisation euphemise euphemised euphemiser euphemisers euphemises euphemising euphemism euphemisms euphemist euphemistic euphemistical euphemistically euphemists euphemization euphemize euphemized euphemizer euphemizers euphemizes euphemizing euphemous euphemy euphenic euphenics euphobia euphobias euphon euphone euphonetic euphonetics euphonia euphoniad euphonias euphonic euphonical euphonically euphonicalness euphonies euphonious euphoniously euphoniousness euphoniousnesses euphonise euphonised euphonises euphonising euphonism euphonisms euphonium euphoniums euphonize euphonized euphonizes euphonizing euphonon euphonous euphons euphony euphonym euphorbia euphorbiaceae euphorbiaceous euphorbial euphorbias euphorbine euphorbium euphorbiums euphoria euphoriant euphoriants euphorias euphoric euphorically euphories euphory euphotic euphotide euphractus euphrasia euphrasies euphrasy euphrates euphroe euphroes euphrosyne euphues euphuise euphuised euphuises euphuising euphuism euphuisms euphuist euphuistic euphuistical euphuistically euphuists euphuize euphuized euphuizes euphuizing euphyllite eupion eupione eupittone eupittonic euplastic euplectella euploid euploidies euploids euploidy euplotid eupnea eupneas eupneic eupnoea eupnoeas eupnoeic eupolyzoan eupotamic eupractic eupraxia euproctis eupsychics eupyrchroite eupyrene eupyrion eurafrican euraquilo eurasia eurasian eurasians eurasiatic eure eureka eurekas eurhodine eurhodol eurhythmic eurhythmical eurhythmics eurhythmies eurhythmist eurhythmists eurhythmy euripi euripidean euripides euripos euripupi euripus euripuses eurite eurithermophile eurithermophilic euro eurobabble eurobin eurobond eurobonds eurocentric eurocheque eurocheques euroclydon eurocurrency eurodollar eurodollars eurokies eurokous euroky euroland eurolands euromarket euronithopod euronithopoda europa europan europe european europeanise europeanised europeanises europeanising europeanism europeanization europeanize europeanized europeanizes europeanizing europeans europhium europium europiums euros euroterminal euroterminals eurotiales eurotium eurous eurus euryale euryalean euryalida euryalidan eurybath eurybathic eurybaths eurybenthic eurycephalic eurycephalous eurycerous eurychoric eurydice eurygnathic eurygnathism eurygnathous euryhaline eurylaimi eurylaimidae eurylaimoid euryokies euryoky euryon euryphage euryphagous euryprognathous euryprosopic eurypterid eurypterida eurypterids eurypteroid eurypteroids eurypylous euryscope eurystomatous euryte eurytherm eurythermal eurythermic eurythermous eurytherms eurythmic eurythmical eurythmics eurythmies eurythmist eurythmists eurythmy eurytomid eurytopic eurytopicities eurytopicity eurytropic euryzygous eusebian euskarian eusocial eusol eusols eusporangiate eusporangium eustachian eustachium eustacies eustacy eustasies eustasy eustatic eustatically eustele eusteles eustoma eustomatous eustyle eustyles eusuchian eusynchite eutamias eutannin eutaxic eutaxie eutaxies eutaxite eutaxites eutaxitic eutaxy eutechnic eutechnics eutectic eutectics eutectoid eutectoids eutelegenic euterpe eutexia eutexias euthanasia euthanasias euthanasiast euthanasiasts euthanasic euthanasies euthanasy euthanatize euthanatized euthanatizes euthanatizing euthanize euthanized euthanizes euthanizing euthenasia euthenic euthenics euthenist euthenists eutheria eutherian eutherians euthermic euthycomic euthymy euthyneural euthyneurous euthynnus euthyroid euthytatic euthytropic eutocia eutomous eutony eutopia eutrapelia eutrapelias eutrapelies eutrapely eutrophic eutrophicate eutrophication eutrophications eutrophies eutrophy eutropic eutropies eutropous eutropy eutychian euvrou euxanthate euxanthic euxanthin euxanthone euxenite euxenites ev evacuant evacuants evacuate evacuated evacuates evacuating evacuation evacuations evacuative evacuator evacuators evacue evacuee evacuees evadable evade evaded evader evaders evades evadible evading evadingly evagation evagations evaginable evaginate evaginated evaginates evaginating evagination evaginations eval evaluable evaluate evaluated evaluates evaluating evaluation evaluational evaluations evaluative evaluator evaluators evalue evanesce evanesced evanescence evanescences evanescency evanescenrly evanescent evanescently evanesces evanescible evanescing evang evangel evangelary evangelian evangeliar evangeliaries evangeliarion evangeliarions evangeliarium evangeliariums evangeliars evangeliary evangelic evangelical evangelicalism evangelicalisms evangelicality evangelically evangelicalness evangelicalnesses evangelicals evangelican evangelicism evangelicisms evangelicity evangelies evangelion evangelisation evangelisations evangelise evangelised evangeliser evangelisers evangelises evangelising evangelism evangelisms evangelist evangelistaries evangelistarion evangelistarions evangelistarium evangelistary evangelistic evangelistically evangelistics evangelists evangelistship evangelium evangelization evangelizations evangelize evangelized evangelizer evangelizers evangelizes evangelizing evangels evangely evanid evanish evanished evanishes evanishing evanishment evanishments evanition evanitions evans evansite evap evaporabilities evaporability evaporable evaporate evaporated evaporates evaporating evaporation evaporations evaporative evaporatively evaporativity evaporator evaporators evaporimeter evaporimeters evaporite evaporites evaporitic evaporize evaporograph evaporographs evaporometer evaporometers evapotranspiration evapotranspirations evase evasible evasion evasional evasions evasive evasively evasiveness evasivenesses eve evechurr eveck evectant evected evectic evection evectional evections evector evejar evejars evelight evelong even evenblush evendown evene evened evenement evenements evener eveners evenest evenfall evenfalls evenforth evenglome evenglow evenhand evenhanded evenhandedly evenhandedness evenhandednesses evenhead evening evenings eveningwear evenk evenki evenlight evenlong evenly evenmete evenminded evenmindedness evenness evennesses evenoo evens evensong evensongs event eventail evented eventer eventerate eventers eventful eventfully eventfulness eventfulnesses eventide eventides eventilate eventime eventing eventings eventless eventlessly eventlessness eventognath eventognathous eventrate eventrated eventrates eventrating eventration eventrations events eventual eventualise eventualised eventualises eventualising eventualities eventuality eventualize eventualized eventualizes eventualizing eventually eventuate eventuated eventuates eventuating eventuation eventuations evenwise evenworthy eveque ever everbearer everbearing everbloomer everblooming everduring everest everglade everglades evergreen evergreenery evergreenite evergreens everich everlasting everlastingly everlastingness everlastingnesses everlastings everliving everly evermo evermore everness evernioid everse eversible eversion eversions eversive eversporting evert evertebral evertebrate everted evertile everting evertor evertors everts everwhere everwhich everwho every everybody everyday everydayness everydaynesses everydays everydeal everyhow everylike everyman everymen everyness everyone everyplace everything everyway everywhen everywhence everywhere everywhereness everywheres everywhither everywoman everywomen eves evese evestar evet evetide evets eveweed evg evhoe evhoes evibrate evicke evict evicted evictee evictees evicting eviction evictions evictor evictors evicts evidence evidenced evidences evidencing evidencive evident evidential evidentially evidentiary evidently evidentness evidents evigilation evil evildoer evildoers evildoing evildoings eviler evilest evilhearted eviller evillest evilly evilmouthed evilness evilnesses evilproof evils evilsayer evilspeaker evilspeaking evilwishing evince evinced evincement evincements evinces evincible evincibly evincing evincingly evincive evirate evirated evirates evirating eviration evirato evirtuate eviscerate eviscerated eviscerates eviscerating evisceration eviscerations eviscerator eviscerators evisite evitable evitate evitated evitates evitating evitation evitations evite evited eviternal eviternally eviternities eviternity evites eviting evittate evocable evocate evocated evocates evocating evocation evocations evocative evocatively evocativeness evocativenesses evocator evocators evocatory evocatrix evoe evoes evohe evohes evoke evoked evoker evokers evokes evoking evolate evolue evolues evolute evoluted evolutes evolutility evoluting evolution evolutional evolutionally evolutionarily evolutionary evolutionise evolutionism evolutionisms evolutionist evolutionistic evolutionistically evolutionists evolutionize evolutions evolutive evolutoid evolvable evolve evolved evolvement evolvements evolvent evolver evolvers evolves evolving evolvulus evomit evonymus evonymuses evovae evovaes evulgate evulgated evulgates evulgating evulgation evulge evulse evulsed evulses evulsing evulsion evulsions evviva evzone evzones ew ewder ewe ewelease ewenki ewer ewerer eweries ewers ewery ewes ewest ewftes ewghen ewhow ewing ewk ewked ewking ewks ewound ewry ewt ewte ewts ex exabyte exabytes exacerbate exacerbated exacerbates exacerbating exacerbatingly exacerbation exacerbations exacerbescence exacerbescences exacerbescent exacervation exacinate exact exacta exactable exactas exacted exacter exacters exactest exacting exactingly exactingness exactingnesses exaction exactions exactitude exactitudes exactive exactiveness exactly exactment exactments exactness exactnesses exactor exactors exactress exactresses exacts exactus exacuate exacum exadverso exadversum exaeretodon exaestuate exaggerate exaggerated exaggeratedly exaggeratedness exaggeratednesses exaggerates exaggerating exaggeratingly exaggeration exaggerations exaggerative exaggeratively exaggerativeness exaggerator exaggerators exaggeratory exagitate exagitation exahertz exairesis exalate exalbuminose exalbuminous exallotriote exalt exaltate exaltation exaltations exaltative exalte exalted exaltedly exaltedness exaltednesses exaltee exalter exalters exalting exaltment exalts exam examen examens exameter examinabilities examinability examinable examinant examinants examinate examinates examination examinational examinationism examinationist examinations examinative examinator examinatorial examinators examinatory examine examined examinee examinees examiner examiners examinership examinerships examines examining examiningly examplar examplars example exampled exampleless examples exampleship exampless exampling exams exanguin exanimate exanimation exanimations exannulate exanthalose exanthem exanthema exanthemas exanthemata exanthematic exanthematous exanthems exanthine exantlate exantlation exappendiculate exapted exaptive exarate exaration exarations exarch exarchal exarchate exarchates exarchateship exarchies exarchist exarchists exarchs exarchy exareolate exarillate exaristate exarteritis exarticulate exarticulation exasper exasperate exasperated exasperatedly exasperater exasperaters exasperates exasperating exasperatingly exasperation exasperations exasperative exasperator exasperators exaspidean exauctorate exaugural exaugurate exauguration exaun exauthorate exauthorize exauthorizeexc exboyfriend exc excalate excalation excalcarate excalceate excalceation excalfaction excalibur excamb excambed excamber excambing excambion excambions excambium excambiums excambs excandescence excandescency excandescent excantation excardination excarnate excarnated excarnates excarnating excarnation excarnations excarnificate excathedral excaudate excavate excavated excavates excavating excavation excavational excavationist excavations excavator excavatorial excavators excavatory excave excecate excecation excedent exceed exceedable exceedance exceedances exceeded exceeder exceeders exceeding exceedingly exceedingness exceeds excel excelente excelled excellence excellences excellencies excellency excellent excellently excelling excels excelse excelsin excelsior excelsiors excelsitude excentral excentric excentrical excentricity excentrics excepable except exceptant exceptants excepted excepter excepting exceptio exception exceptionabilities exceptionability exceptionable exceptionableness exceptionably exceptional exceptionalally exceptionalism exceptionalisms exceptionalities exceptionality exceptionally exceptionalness exceptionalnesses exceptionals exceptionary exceptioner exceptionless exceptions exceptious exceptiousness exceptive exceptively exceptiveness exceptless exceptor exceptors excepts excercise excerebrate excerebration excern excerp excerpt excerpta excerpted excerpter excerpters excerptible excerpting excerptings excerption excerptions excerptive excerptor excerptors excerpts excerptum excess excessed excesses excessing excessive excessively excessiveness excessivenesses excessman excessmen exch exchange exchangeabilities exchangeability exchangeable exchangeably exchanged exchangee exchanger exchangers exchanges exchanging excheat excheats exchequer exchequered exchequering exchequers excide excided excides exciding excimer excimers excipient excipients exciple exciples excipula excipular excipule excipuliform excipulum excircle excisable excise excised exciseman excisemanship excisemen excises excising excision excisional excisions excisor excitabilities excitability excitable excitableness excitablenesses excitably excitancies excitancy excitant excitants excitate excitation excitations excitative excitator excitatory excite excited excitedly excitedness excitednesses excitement excitements exciter exciters excites exciting excitingly excitive excitoglandular excitometabolic excitomotion excitomotor excitomotory excitomuscular exciton excitonic excitons excitonutrient excitor excitors excitory excitosecretory excitovascular excitron excl exclaim exclaimed exclaimer exclaimers exclaiming exclaimingly exclaims exclam exclamation exclamational exclamations exclamative exclamatively exclamatorily exclamatory exclaustration exclaustrations exclave exclaves exclosure exclosures excls excludabilities excludability excludable exclude excluded excludee excludees excluder excluders excludes excludible excluding excludingly exclusion exclusionary exclusioner exclusionism exclusionisms exclusionist exclusionistic exclusionists exclusions exclusive exclusively exclusiveness exclusivenesses exclusives exclusivism exclusivisms exclusivist exclusivistic exclusivists exclusivities exclusivity exclusory excoct excoction excogitable excogitate excogitated excogitates excogitating excogitation excogitations excogitative excogitator excogitators excommenge excommune excommunicable excommunicant excommunicate excommunicated excommunicates excommunicating excommunication excommunications excommunicative excommunicator excommunicators excommunicatory excommunion excommunions exconjugant excoriable excoriate excoriated excoriates excoriating excoriation excoriations excoriator excoriators excorticate excorticated excorticates excorticating excortication excortications excreation excrement excrementa excremental excrementally excrementary excrementitial excrementitious excrementitiously excrementitiousness excrementive excrementize excrementous excrements excrementum excresce excrescence excrescences excrescencies excrescency excrescent excrescential excrescently excresence excression excreta excretal excrete excreted excreter excreters excretes excreting excretion excretionary excretions excretitious excretive excretolic excretories excretory excriminate excruciable excruciate excruciated excruciates excruciating excruciatingly excruciatingness excruciation excruciations excruciator excubant excubitoria excubitorium excubittoria excud excudate excuderunt excudit exculpable exculpate exculpated exculpates exculpating exculpation exculpations exculpative exculpatorily exculpatory excur excurrent excurse excursed excurses excursing excursion excursional excursionary excursioned excursioner excursioning excursionise excursionised excursionises excursionising excursionism excursionist excursionists excursionize excursionized excursionizes excursionizing excursions excursive excursively excursiveness excursivenesses excursory excursus excursuses excurvate excurvated excurvation excurvature excurved excusability excusable excusableness excusablenesses excusably excusal excusals excusation excusative excusator excusatory excuse excused excuseful excusefully excuseless excuser excusers excuses excusing excusingly excusive excusively excuss excussed excussing excussio excussion excyst excystation excysted excystment exdelicto exdie exdividend exeat exeats exec execeptional execked execking execrable execrableness execrablenesses execrably execrate execrated execrates execrating execration execrations execrative execratively execrator execrators execratory execs exect executable executables executancies executancy executant executants execute executed executer executers executes executing execution executional executioneering executioner executioneress executioners executionist executions executive executively executiveness executives executiveship executonis executor executorial executors executorship executorships executory executress executresses executrices executries executrix executrixes executrixship executry exed exede exedent exedra exedrae exedral exedras exeem exeemed exeeming exeems exegeses exegesis exegesist exegete exegetes exegetic exegetical exegetically exegetics exegetist exegetists exembryonate exeme exemed exemes exeming exempla exemplar exemplaric exemplarily exemplariness exemplarinesses exemplarism exemplarities exemplarity exemplars exemplary exempli exemplifiable exemplification exemplificational exemplifications exemplificative exemplificator exemplified exemplifier exemplifiers exemplifies exemplify exemplifying exemplum exemplupla exempt exempted exemptible exemptile exempting exemption exemptionist exemptions exemptive exempts exencephalia exencephalic exencephalous exencephalus exendospermic exendospermous exenterate exenterated exenterates exenterating exenteration exenterations exenteritis exequatur exequaturs exequial exequies exequy exerce exercent exercisable exercise exercised exerciser exercisers exercises exercising exercitant exercitation exercitations exercite exercitor exercitorial exercitorian exercycle exeresis exergonic exergual exergue exergues exert exerted exerting exertion exertionless exertions exertive exerts exes exesion exestuate exeunt exfetation exfiguration exfigure exfiltrate exfiltration exflagellate exflagellation exflect exfodiate exfodiation exfoliant exfoliate exfoliated exfoliates exfoliating exfoliation exfoliations exfoliative exfoliator exfoliators exfoliatory exgorgitation exhalable exhalant exhalants exhalate exhalation exhalations exhalatory exhale exhaled exhalent exhalents exhales exhaling exhance exhaust exhaustable exhausted exhaustedly exhaustedness exhauster exhausters exhaustibilities exhaustibility exhaustible exhausting exhaustingly exhaustion exhaustions exhaustive exhaustively exhaustiveness exhaustivenesses exhaustivities exhaustivity exhaustless exhaustlessly exhaustlessness exhaustlessnesses exhausts exhbn exhedra exhedrae exheredate exheredated exheredates exheredating exheredation exheredations exhibit exhibitable exhibitant exhibited exhibiter exhibiters exhibiting exhibition exhibitional exhibitioner exhibitioners exhibitionise exhibitionism exhibitionisms exhibitionist exhibitionistic exhibitionistically exhibitionists exhibitionize exhibitions exhibitive exhibitively exhibitor exhibitorial exhibitors exhibitorship exhibitory exhibits exhilarant exhilarants exhilarate exhilarated exhilarates exhilarating exhilaratingly exhilaration exhilarations exhilarative exhilarator exhilarators exhilaratory exhilirative exhort exhortation exhortations exhortative exhortatively exhortator exhortatory exhorted exhorter exhorters exhorting exhortingly exhorts exhumate exhumated exhumates exhumating exhumation exhumations exhumator exhumatory exhume exhumed exhumer exhumers exhumes exhuming exhusband exibilate exies exigeant exigeante exigence exigences exigencies exigency exigent exigenter exigently exigents exigible exiguities exiguity exiguous exiguously exiguousness exiguousnesses exilable exilarch exilarchate exile exiled exiledom exilement exilements exiler exilers exiles exilian exilic exiling exilities exilition exility eximidus eximious eximiously eximiousness exinanite exinanition exindusiate exine exines exing exinguinal exinite exintine exion exist existability existant existed existence existences existent existential existentialise existentialism existentialisms existentialist existentialistic existentialistically existentialists existentialize existentially existentials existently existents exister existibility existible existimation existing existless existlessness exists exit exitance exitances exite exited exitial exiting exition exitious exitless exits exiture exitus exla exlex exmeridian exmoor exoarteritis exoascaceous exobiological exobiologies exobiologist exobiologists exobiology exocannibalism exocardia exocardiac exocardial exocarp exocarps exocataphoria exoccipital exocentric exochorion exoclinal exocline exocoelar exocoele exocoelic exocoelom exocoelum exocoetidae exocolitis exocone exocrine exocrines exocrinologies exocrinology exoculate exoculated exoculating exoculation exocyclic exocycloida exocytic exocytose exocytosed exocytoses exocytosing exocytosis exocytotic exode exoderm exodermal exodermis exodermises exoderms exodes exodic exodist exodists exodium exodoi exodontia exodontias exodontic exodontics exodontist exodontists exodos exodromic exodromy exodus exoduses exody exoenzyme exoenzymes exoenzymic exoergic exoerythrocytic exogamic exogamies exogamous exogamy exogastric exogastrically exogastritis exogen exogenetic exogenic exogenism exogenous exogenously exogens exogeny exognathion exognathite exograph exolemma exolete exolution exolve exometritis exomion exomions exomis exomises exomologesis exomorphic exomorphism exomphalos exomphalous exomphalus exon exonarthex exoner exonerate exonerated exonerates exonerating exoneration exonerations exonerative exonerator exonerators exoneretur exoneural exonic exons exonship exonuclease exonucleases exonumia exonym exonyms exopathic exopeptidase exopeptidases exoperidium exophagies exophagous exophagy exophasia exophasic exophoria exophoric exophthalmia exophthalmias exophthalmic exophthalmos exophthalmoses exophthalmus exophthalmuses exoplasm exoplasms exopod exopodite exopodites exopoditic exopods exopt exopterygota exopterygote exopterygotic exopterygotism exopterygotous exor exorabilities exorability exorable exorableness exorate exoration exorations exorbital exorbitance exorbitances exorbitancies exorbitancy exorbitant exorbitantly exorbitate exorbitated exorbitates exorbitating exorbitation exorcisation exorcise exorcised exorcisement exorciser exorcisers exorcises exorcising exorcism exorcismal exorcisms exorcisory exorcist exorcista exorcistic exorcistical exorcists exorcization exorcize exorcized exorcizement exorcizer exorcizers exorcizes exorcizing exordia exordial exordium exordiums exordize exorganic exorhason exormia exornate exornation exortion exosculation exosepsis exoskeletal exoskeleton exoskeletons exosmic exosmose exosmoses exosmosis exosmotic exosperm exosphere exospheres exospheric exospherical exosporal exospore exospores exosporium exosporous exossate exosseous exostome exostosed exostoses exostosis exostotic exostra exostracism exostracize exostrae exoteric exoterica exoterical exoterically exotericism exotericisms exoterics exotery exotheca exothecal exothecate exothecium exothermal exothermally exothermic exothermically exothermicities exothermicity exothermous exotic exotica exotically exoticalness exoticism exoticisms exoticist exoticity exoticness exoticnesses exotics exotism exotisms exotospore exotoxic exotoxin exotoxins exotropia exotropias exotropic exotropism exp expalpate expand expandabilities expandability expandable expanded expandedly expandedness expander expanders expandibility expandible expanding expandingly expandor expandors expands expanse expanses expansibilities expansibility expansible expansibleness expansibly expansile expansion expansional expansionary expansionism expansionisms expansionist expansionistic expansionists expansions expansive expansively expansiveness expansivenesses expansivities expansivity expansometer expansum expansure expat expatiate expatiated expatiater expatiates expatiating expatiatingly expatiation expatiations expatiative expatiator expatiators expatiatory expatriate expatriated expatriates expatriating expatriation expatriations expatriatism expatriatisms expats expdt expect expectable expectably expectance expectances expectancies expectancy expectant expectantly expectants expectation expectational expectations expectative expectatives expected expectedly expectedness expectednesses expecter expecters expecting expectingly expectings expection expective expectorant expectorants expectorate expectorated expectorates expectorating expectoration expectorations expectorative expectorator expectorators expects expede expeded expediate expedience expediences expediencies expediency expedient expediente expediential expedientially expedientist expediently expedients expediment expeding expedious expeditate expeditated expeditates expeditating expeditation expeditations expedite expedited expeditely expediteness expediter expediters expedites expediting expedition expeditionary expeditionist expeditions expeditious expeditiously expeditiousness expeditiousnesses expeditive expeditor expeditors expel expellable expellant expellants expelled expellee expellees expellent expellents expeller expellers expelling expels expend expendabilities expendability expendable expendables expended expender expenders expendible expending expenditor expenditrix expenditure expenditures expends expense expensed expenseful expensefully expensefulness expenseless expenselessness expenses expensilation expensing expensive expensively expensiveness expensivenesses expenthesis expergefacient expergefaction experience experienceable experienced experienceless experiencer experiencers experiences experiencible experiencing experient experiential experientialism experientialisms experientialist experientialistic experientialists experientially experiment experimental experimentalise experimentalised experimentalises experimentalising experimentalism experimentalisms experimentalist experimentalists experimentalize experimentalized experimentalizes experimentalizing experimentally experimentarian experimentation experimentations experimentative experimentator experimented experimentee experimenter experimenters experimenting experimentise experimentist experimentists experimentize experimently experimentor experiments expermentized experrection expert experted experting expertise expertised expertises expertising expertism expertisms expertize expertized expertizes expertizing expertly expertness expertnesses experts expertship expetible expiable expiate expiated expiates expiating expiation expiational expiations expiatist expiative expiator expiatoriness expiators expiatory expilate expilation expilator expirable expirant expirants expirate expiration expirations expirator expiratory expire expired expiree expirer expirers expires expiries expiring expiringly expiry expiscate expiscated expiscates expiscating expiscation expiscations expiscator expiscatory explain explainability explainable explainableness explained explainer explainers explaining explainingly explains explait explanate explanation explanations explanative explanatively explanator explanatorily explanatoriness explanatory explanitory explant explantation explantations explanted explanting explants explat explees explement explemental explementary explete expletive expletively expletiveness expletives expletory explicability explicable explicableness explicably explicanda explicandum explicans explicantia explicate explicated explicates explicating explication explications explicative explicatively explicator explicators explicatory explicit explicitly explicitness explicitnesses explicits explida explodable explode exploded explodent exploder exploders explodes exploding exploit exploitabilities exploitability exploitable exploitage exploitages exploitation exploitationist exploitations exploitative exploitatively exploitatory exploited exploitee exploiter exploiters exploiting exploitive exploitively exploits exploiture explorable explorate exploration explorational explorationist explorationists explorations explorative exploratively explorativeness explorator exploratory explore explored explorement explorer explorers explores exploring exploringly explosibility explosible explosimeter explosion explosionist explosions explosive explosively explosiveness explosivenesses explosives expo expoliate expolish expone exponence exponency exponent exponential exponentially exponentials exponentiate exponentiated exponentiates exponentiating exponentiation exponentiations exponention exponents exponible export exportabilities exportability exportable exportation exportations exported exporter exporters exporting exports expos exposa exposable exposal exposals expose exposed exposedness exposednesses exposer exposers exposes exposing exposit exposited expositing exposition expositional expositionary expositions expositive expositively expositor expositorial expositorially expositorily expositoriness expositors expository expositress expositresses exposits expostulate expostulated expostulates expostulating expostulatingly expostulation expostulations expostulative expostulatively expostulator expostulators expostulatory exposture expostures exposure exposures expound expoundable expounded expounder expounders expounding expounds expreme express expressable expressage expressages expressed expresser expressers expresses expressibility expressible expressibly expressing expressio expression expressionable expressional expressionful expressionism expressionisms expressionist expressionistic expressionistically expressionists expressionless expressionlessly expressionlessness expressionlessnesses expressions expressive expressively expressiveness expressivenesses expressivism expressivities expressivity expressless expressly expressman expressmen expressness expressnesses expresso expressor expressos expressure expressures expressway expressways exprimable exprobate exprobrate exprobrated exprobrates exprobrating exprobration exprobrations exprobrative exprobratory expromission expromissions expromissor expromissors expropriable expropriate expropriated expropriates expropriating expropriation expropriations expropriator expropriators expropriatory expt exptl expugn expugnable expugnation expugnations expugned expugning expugns expuition expulsatory expulse expulsed expulser expulses expulsing expulsion expulsionist expulsions expulsive expulsory expunct expuncted expuncting expunction expunctions expuncts expunge expungeable expunged expungement expunger expungers expunges expunging expurgate expurgated expurgates expurgating expurgation expurgational expurgations expurgative expurgator expurgatorial expurgators expurgatory expurge expurged expurges expurging expwy expy exquire exquisite exquisitely exquisiteness exquisitenesses exquisites exquisitism exquisitive exquisitively exquisitiveness exr exradio exradius exrupeal exrx exsanguinate exsanguinated exsanguinates exsanguinating exsanguination exsanguinations exsanguine exsanguined exsanguineous exsanguinities exsanguinity exsanguinous exsanguious exscind exscinded exscinding exscinds exscissor exscribe exscript exscriptural exsculp exsculptate exscutellate exsec exsecant exsecants exsect exsected exsectile exsecting exsection exsections exsector exsects exsequatur exsert exserted exsertile exserting exsertion exsertions exserts exsheath exship exsibilate exsibilation exsiccant exsiccatae exsiccate exsiccated exsiccates exsiccating exsiccation exsiccations exsiccative exsiccator exsiccators exsiliency exsolution exsolutions exsolve exsolved exsolving exsomatic exspoliation exspuition exsputory exstemporal exstemporaneous exstill exstimulate exstipulate exstrophy exstruct exsuccous exsuction exsudate exsufflate exsufflated exsufflates exsufflating exsufflation exsufflations exsufflicate exsufflicated exsufflicates exsufflicating exsuperance exsuperate exsurge exsurgent exsuscitate ext exta extacie extance extancy extant extasies extasy extatic extbook extemporal extemporally extemporalness extemporaneities extemporaneity extemporaneous extemporaneously extemporaneousness extemporaneousnesses extemporarily extemporariness extemporarinesses extemporary extempore extempores extemporisation extemporisations extemporise extemporised extemporiser extemporisers extemporises extemporising extemporization extemporizations extemporize extemporized extemporizer extemporizers extemporizes extemporizing extempory extend extendabilities extendability extendable extendant extended extendedly extendedness extendednesses extender extenders extendibilities extendibility extendible extending extendlessness extends extense extensibilities extensibility extensible extensibleness extensification extensifications extensile extensimeter extensimeters extension extensional extensionalism extensionalisms extensionalities extensionality extensionally extensionist extensionists extensionless extensions extensities extensity extensive extensively extensiveness extensivenesses extensivity extensivization extensivizations extensometer extensometers extensor extensors extensory extensum extensure extent extentions extents extenuate extenuated extenuates extenuating extenuatingly extenuatings extenuation extenuations extenuative extenuator extenuators extenuatory exter exterior exteriorate exterioration exteriorisation exteriorisations exteriorise exteriorised exteriorises exteriorising exteriorities exteriority exteriorization exteriorizations exteriorize exteriorized exteriorizes exteriorizing exteriorly exteriorness exteriors exterminable exterminate exterminated exterminates exterminating extermination exterminations exterminative exterminator exterminators exterminatory exterminatress exterminatrix extermine extermined extermines extermining exterminist extern externa external externalisation externalisations externalise externalised externalises externalising externalism externalisms externalist externalistic externalists externalities externality externalization externalizations externalize externalized externalizes externalizing externally externalness externals externat externate externation externe externes externity externization externize externomedian externs externship externships externum exteroception exteroceptist exteroceptive exteroceptor exteroceptors exterous exterraneous exterrestrial exterritorial exterritorialities exterritoriality exterritorialize exterritorially extersive extg extill extima extime extimulate extinct extincted extincteur extincting extinction extinctionist extinctions extinctive extinctor extincts extincture extinctures extine extines extinguised extinguish extinguishable extinguishant extinguishants extinguished extinguisher extinguishers extinguishes extinguishing extinguishment extinguishments extipulate extirp extirpable extirpate extirpated extirpateo extirpates extirpating extirpation extirpationist extirpations extirpative extirpator extirpatories extirpators extirpatory extirped extirping extirps extispex extispices extispicious extispicy extogenous extol extold extoled extoling extoll extollation extolled extoller extollers extolling extollingly extollment extollments extolls extolment extolments extols extoolitic extorsion extorsive extorsively extort extorted extorter extorters extorting extortion extortionary extortionate extortionately extortionateness extortioner extortioners extortionist extortionists extortions extortive extorts extra extrabold extraboldface extrabranchial extrabronchial extrabuccal extrabulbar extrabureau extraburghal extracalendar extracalicular extracampus extracanonical extracapsular extracardial extracarpal extracathedral extracellular extracellularly extracerebral extrachromosomal extracivic extracivically extraclassroom extraclaustral extracloacal extracollegiate extracolumella extracommunity extracondensed extraconscious extraconstellated extraconstitutional extracontinental extracorporeal extracorporeally extracorpuscular extracosmic extracosmical extracostal extracranial extract extractabilities extractability extractable extractant extractants extracted extractibility extractible extractiform extracting extraction extractions extractive extractively extractives extractor extractors extractorship extracts extracultural extracurial extracurricular extracurriculars extracurriculum extracutaneous extracystic extradecretal extradepartmental extradialectal extradict extradictable extradicted extradicting extradictionary extradiocesan extraditable extradite extradited extradites extraditing extradition extraditions extradomestic extrados extradosed extradoses extradotal extraduction extradural extraembryonal extraembryonic extraenteric extraepiphyseal extraequilibrium extraessential extraessentially extrafamilial extrafascicular extrafine extrafloral extrafocal extrafoliaceous extraforaneous extraformal extragalactic extragastric extragovernmental extrahazardous extrahepatic extrahuman extrait extrajudicial extrajudicially extralateral extralegal extralegally extraliminal extralimital extralimitary extralinguistic extralinguistically extralite extraliterary extralities extrality extralogical extramarginal extramarital extramatrical extramedullary extramental extrameridian extrameridional extrametaphysical extrametrical extrametropolitan extramission extramodal extramolecular extramorainal extramorainic extramoral extramoralist extramundane extramural extramurally extramusical extranational extranatural extranean extraneities extraneity extraneous extraneously extraneousness extraneousnesses extranet extranets extranidal extranormal extranuclear extraocular extraofficial extraoral extraorbital extraorbitally extraordinaire extraordinaries extraordinarily extraordinariness extraordinarinesses extraordinary extraorganismal extraovate extraovular extraparenchymal extraparental extraparietal extraparliamentary extraparochial extraparochially extrapatriarchal extrapelvic extraperineal extraperiodic extraperiosteal extraperitoneal extraphenomenal extraphysical extraphysiological extrapituitary extraplacental extraplanetary extrapleural extrapoetical extrapolar extrapolate extrapolated extrapolates extrapolating extrapolation extrapolations extrapolative extrapolator extrapolators extrapolatory extrapopular extrapose extraposed extraposes extraposing extraposition extrapositions extraprofessional extraprostatic extraprovincial extrapulmonary extrapunitive extrapyramidal extraquiz extrared extraregarding extraregular extraregularly extrarenal extraretinal extrarhythmical extras extrasacerdotal extrascholastic extraschool extrascientific extrascriptural extrascripturality extrasensible extrasensorial extrasensory extrasensuous extraserous extrasocial extrasolar extrasomatic extraspectral extraspherical extraspinal extrastapedial extrastate extrasterile extrastomachal extrasyllabic extrasyllogistic extrasyphilitic extrasystole extrasystoles extrasystolic extratabular extratarsal extratellurian extratelluric extratemporal extratension extratensive extraterrene extraterrestrial extraterrestrially extraterrestrials extraterritorial extraterritorialities extraterritoriality extraterritorially extraterritorials extratextual extrathecal extratheistic extrathermodynamic extrathoracic extratorrid extratracheal extratribal extratropical extratubal extratympanic extraught extrauterine extravagance extravagances extravagancies extravagancy extravagant extravagantly extravagantness extravagantnesses extravaganza extravaganzas extravagate extravagated extravagates extravagating extravagation extravagations extravagence extravaginal extravasate extravasated extravasates extravasating extravasation extravasations extravascular extravehicular extravenate extraventricular extraversion extraversions extraversive extraversively extravert extraverted extraverting extravertish extravertive extravertively extraverts extravillar extraviolet extravisceral extrazodiacal extreat extreats extrema extremal extreme extremeless extremely extremeness extremenesses extremer extremes extremest extremis extremism extremisms extremist extremistic extremists extremital extremities extremity extremum extremuma extricable extricably extricate extricated extricates extricating extrication extrications extrinsic extrinsical extrinsicalities extrinsicality extrinsically extrinsicalness extrinsicate extrinsication extroitive extromit extropical extrorsal extrorse extrorsely extrospect extrospection extrospective extroversion extroversions extroversive extroversively extrovert extroverted extrovertedness extroverting extrovertish extrovertive extrovertively extroverts extruct extrudabilities extrudability extrudable extrude extruded extruder extruders extrudes extruding extrusible extrusile extrusion extrusions extrusive extrusory extubate extubated extubates extubating extubation extuberance extuberant extuberate extumescence extund exturb extusion extypal exuberance exuberances exuberancies exuberancy exuberant exuberantly exuberantness exuberate exuberated exuberates exuberating exuberation exuccous exucontian exudate exudates exudation exudations exudative exudatory exude exuded exudence exudes exuding exul exulate exulcerate exulcerated exulcerates exulcerating exulceration exulcerations exulcerative exulceratory exulding exuls exult exultance exultances exultancies exultancy exultant exultantly exultation exultations exulted exultet exulting exultingly exults exululate exumbral exumbrella exumbrellar exundance exundancy exundate exundation exungulate exuperable exurb exurban exurbanite exurbanites exurbia exurbias exurbs exurge exuscitate exust exuvia exuviability exuviable exuviae exuvial exuviate exuviated exuviates exuviating exuviation exuviations exuvium exwife exxon exzodiacal ey eyah eyalet eyalets eyas eyases eyass eyasses eydent eye eyeable eyeball eyeballed eyeballing eyeballs eyebalm eyebar eyebars eyebath eyebeam eyebeams eyeberry eyeblack eyeblink eyebolt eyebolts eyebree eyebridled eyebright eyebrights eyebrow eyebrowed eyebrowing eyebrowless eyebrows eyecup eyecups eyed eyedness eyednesses eyedot eyedrop eyedropper eyedropperful eyedroppers eyedrops eyeflap eyefold eyefolds eyeful eyefuls eyeglance eyeglass eyeglasses eyeground eyehole eyeholes eyehook eyehooks eyeing eyeish eyelash eyelashes eyelast eyeless eyelessness eyelet eyeleted eyeleteer eyeleteers eyeleting eyelets eyeletted eyeletter eyeletting eyeliad eyeliads eyelid eyelids eyelift eyelifts eyelight eyelike eyeline eyeliner eyeliners eyemark eyen eyeopener eyeopeners eyeopening eyepatch eyepatches eyepiece eyepieces eyepit eyepoint eyepoints eyepopper eyepoppers eyer eyereach eyeroot eyers eyes eyesalve eyeseed eyeservant eyeserver eyeservice eyeshade eyeshades eyeshadow eyeshadows eyeshield eyeshine eyeshot eyeshots eyesight eyesights eyesome eyesore eyesores eyespot eyespots eyess eyestalk eyestalks eyestone eyestones eyestrain eyestrains eyestring eyestrings eyeteeth eyetooth eyewaiter eyewash eyewashes eyewater eyewaters eyewear eyewink eyewinker eyewinks eyewitness eyewitnesses eyewort eyey eyght eying eyl eyliad eyliads eyn eyne eyot eyots eyoty eyr eyra eyrant eyrar eyras eyre eyren eyrer eyres eyrie eyrir eysoge ezan ezba ezekiel ezo ezod ezra f fa faade faailk fab fabaceae fabaceous fabber fabbest fabella fabes fabian fabiana fabianism fabiform fable fabled fabledom fableist fableland fablemaker fablemonger fablemongering fabler fablers fables fabliau fabliaux fabling fablings fabric fabricable fabricant fabricants fabricate fabricated fabricates fabricating fabrication fabricational fabrications fabricative fabricator fabricators fabricatress fabricature fabricked fabricking fabrics fabrikoid fabrile fabrique fabs fabula fabular fabulate fabulated fabulates fabulating fabulise fabulised fabulises fabulising fabulist fabulistic fabulists fabulize fabulized fabulizes fabulizing fabulosities fabulosity fabulous fabulously fabulousness fabulousnesses faburden faburdens fac facadal facade facaded facades facadism facadisms face faceable facebar facebow facebread facecloth facecloths faced facedown facedowns faceharden faceless facelessness facelessnesses facelift facelifted facelifting facelifts facellite facemaker facemaking faceman facemark facemask facemasks facemen faceoff faceoffs facepiece faceplate faceplates facer facers faces facesaving facesheet facesheets facet facete faceted facetely faceteness facetiae facetiation faceting facetious facetiously facetiousness facetiousnesses facets facette facetted facetting faceup facewise facework faceworker faceworkers facia faciae facial facially facials facias faciata faciation facie faciend faciends faciendum facient facier facies faciest facile facilely facileness facilenesses facilitate facilitated facilitates facilitating facilitation facilitations facilitative facilitator facilitators facilitatory facilities facility facily facinerious facing facingly facings facinorous facinorousness facinorousnesses faciobrachial faciocervical faciolingual facioplegia facioscapulohumeral facit fack facked fackeltanz facking fackings fackins facks faconde faconne faconnes facsim facsimile facsimiled facsimileing facsimiles facsimiling facsimilise facsimilist facsimilists facsimilize fact factable factabling factfinder factful factice factices facticide facticities facticity faction factional factionalism factionalisms factionalist factionalists factionalize factionalized factionalizes factionalizing factionally factionaries factionary factionate factioneer factionism factionist factionistism factionists factions factious factiously factiousness factiousnesses factis factises factish factitial factitious factitiously factitiousness factitiousnesses factitive factitively factitude factive facto factoid factoidal factoids factor factorabilities factorability factorable factorage factorages factordom factored factoress factorial factorially factorials factories factoring factorings factorisable factorisation factorisations factorise factorised factorises factorising factorist factorization factorizations factorize factorized factorizes factorizing factors factorship factorships factory factorylike factoryship factotum factotums factrix facts factsheet factsheets factual factualism factualisms factualist factualistic factualists factualities factuality factually factualness factualnesses factum factums facture factures facty facula faculae facular faculas faculative faculous facultate facultative facultatively facultied faculties facultize faculty facund facundities facundity facy fad fadable fadaise fadaises faddier faddiest faddily faddiness faddinesses fadding faddish faddishly faddishness faddishnesses faddism faddisms faddist faddists faddle faddled faddles faddling faddy fade fadeaway fadeaways faded fadedly fadedness fadednesses fadednyess fadein fadeins fadeless fadelessly faden fadeout fadeouts fader faders fades fadeur fadge fadged fadges fadging fadier fadiest fading fadingly fadingness fadings fadlike fadme fadmonger fadmongering fadmongery fado fados fadridden fads fady fae faecal faecalith faeces faecula faeculence faena faenas faence faenus faerie faeries faeroes faeroese faery faeryland fafaronade faff faffed faffing faffle faffs faffy fafnir fag fagaceae fagaceous fagald fagales fagara fage fager fagged fagger faggeries faggery faggier faggiest fagging faggingly faggings faggot faggoted faggoting faggotings faggotries faggotry faggots faggoty faggy fagin fagine fagins fagopyrism fagopyrismus fagopyrum fagot fagoted fagoter fagoters fagoting fagotings fagots fagott fagotte fagotti fagottino fagottist fagottists fagotto fagottone fagoty fags fagus fah faham fahlband fahlbands fahlerz fahlerzes fahlore fahlores fahlunite fahlunitte fahr fahrenheit fahrenhett fahs faiade faiades faible faibles faience faiences faik faiked faikes faiking faiks fail failance failed failing failingly failingness failings faille failles fails failsafe failsoft failure failures fain fainaant fainaants fainaigue fainaigued fainaiguer fainaiguing fainant faine faineance faineances faineancies faineancy faineant faineantise faineantises faineantism faineants fained fainer faines fainest faining fainites fainly fainness fainnesses fains faint fainted fainter fainters faintest faintful faintheart fainthearted faintheartedly faintheartedness faintheartednesses faintier faintiest fainting faintingly faintings faintise faintish faintishness faintishnesses faintling faintly faintness faintnesses faints fainty fainéance fainéant fainéantise fainéants faipule fair fairbanks faire faired fairer fairest fairfieldite fairgoer fairgoing fairgrass fairground fairgrounds fairhead fairies fairily fairing fairings fairingses fairish fairishly fairishness fairkeeper fairlead fairleader fairleaders fairleads fairlike fairling fairly fairm fairness fairnesses fairnitickle fairnitickles fairniticle fairniticles fairnytickle fairnytickles fairnyticle fairnyticles fairs fairship fairsome fairstead fairtime fairwater fairway fairways fairy fairydom fairydoms fairyfloss fairyfolk fairyhood fairyhoods fairyish fairyism fairyisms fairyland fairylands fairylike fairyologist fairyology fairyship fairytale fairytales faisan faisceau fait faitery faith faithbreach faithbreaker faithcure faithcures faithed faithful faithfully faithfulness faithfulnesses faithfuls faithing faithless faithlessly faithlessness faithlessnesses faiths faithwise faithworthiness faithworthinesses faithworthy faitor faitors faitour faitours faits faix fajita fajitas fake faked fakeer fakeers fakement fakements faker fakeries fakers fakery fakes fakey faki fakiness faking fakir fakirism fakirisms fakirs faky fala falafel falafels falaj falanaka falangism falangisms falangist falangists falbala falbalas falbelo falcade falcades falcate falcated falcatifolium falcation falcations falcer falces falchion falchions falcial falcidian falciform falciparum falco falcon falconbill falconelle falconer falconers falconet falconets falconidae falconiform falconiformes falconine falconlike falconnoid falconoid falconries falconry falcons falcopern falcula falcular falculas falculate falda faldage faldages falderal falderals falderol falderols faldetta faldettas faldfee falding faldistories faldistory faldstool faldstools faldworth falern falernian falk fall falla fallace fallacia fallacies fallacious fallaciously fallaciousness fallaciousnesses fallacy fallage fallal fallaleries fallalery fallalishly fallals fallation fallaway fallaways fallback fallbacks fallboard fallboards fallectomy fallen fallency fallenness faller fallers fallfish fallfishes fallibilism fallibilisms fallibilist fallibilists fallibilities fallibility fallible fallibleness falliblenesses fallibly falling fallings falloff falloffs fallopian fallostomy fallotomy fallout fallouts fallow fallowed fallower fallowest fallowing fallowist fallowness fallownesses fallows falls falltime fallway fally falsary false falsed falsedad falseface falsehearted falseheartedly falseheartedness falsehood falsehoods falsely falsen falseness falsenesses falser falsers falses falsest falsettist falsetto falsettos falsework falseworks falsidical falsie falsies falsifiabilities falsifiability falsifiable falsificate falsification falsifications falsificator falsified falsifier falsifiers falsifies falsify falsifying falsing falsish falsism falsisms falsiteit falsities falsity falstaff falstaffian falsum faltboat faltboats faltche falter faltere faltered falterer falterers faltering falteringly falterings falters falun falus falutin falx fam famacide famatinite famble fame famed fameflower fameful fameless famelessly famelessness famelic fames fameworthy famiglietti familarity familia familial familiar familiarisation familiarisations familiarise familiarised familiariser familiarisers familiarises familiarising familiarisingly familiarism familiarities familiarity familiarization familiarizations familiarize familiarized familiarizer familiarizers familiarizes familiarizing familiarizingly familiarly familiarness familiarnesses familiars familiary familic families familism familisms familist familistere familistery familistic familistical familists famille family familyish famine famines faming famish famished famishes famishing famishment famishments famose famotidine famous famoused famouses famousing famously famousness famousnesses famp famular famulary famulative famuli famulli famulus famuluses fan fana fanac fanacs fanakalo fanal fanaloka fanals fanam fanatic fanatical fanatically fanaticalness fanaticalnesses fanaticise fanaticised fanaticises fanaticising fanaticism fanaticisms fanaticize fanaticized fanaticizes fanaticizing fanatico fanatics fanatism fanback fanbearer fanciable fancical fancied fancier fanciers fancies fanciest fancified fancifies fanciful fancifully fancifulness fancifulnesses fancify fancifying fanciless fancily fanciness fancinesses fancy fancying fancymonger fancysick fancywork fancyworks fand fandangle fandangles fandango fandangoes fandangos fanded fanding fandom fandoms fands fane fanega fanegada fanegadas fanegas fanes fanfarade fanfarades fanfare fanfared fanfares fanfaring fanfaron fanfarona fanfaronade fanfaronaded fanfaronades fanfaronading fanfaronas fanfarons fanfic fanfics fanfish fanfishes fanflower fanfold fanfolded fanfolding fanfolds fanfoot fang fanga fangas fanged fanger fanging fangle fangled fanglement fangles fangless fanglet fanglike fangling fanglomerate fango fangos fangot fangotherapy fangs fangy fanhouse faniente fanin fanins fanion fanioned fanions fanit fanjet fanjets fank fankle fankled fankles fankling fanks fanleaf fanlight fanlights fanlike fanmaker fanmaking fanman fanned fannel fanneling fannell fannells fannels fanner fanners fannier fannies fanning fannings fannon fanny fano fanon fanons fanos fanout fanouts fans fant fantabulous fantad fantaddish fantads fantail fantailed fantails fantaisie fantan fantaseid fantasia fantasias fantasie fantasied fantasies fantasise fantasised fantasiser fantasises fantasising fantasist fantasists fantasize fantasized fantasizer fantasizers fantasizes fantasizing fantasm fantasmagoria fantasmagoric fantasmagorically fantasmal fantasms fantasque fantasques fantassin fantast fantastic fantastical fantasticalities fantasticality fantastically fantasticalness fantasticalnesses fantasticate fantasticated fantasticates fantasticating fantastication fantastications fantasticism fantasticisms fantasticly fantasticness fantastico fantasticoes fantastics fantastries fantastry fantasts fantasy fantasying fantasyland fantasylands fanteague fantee fanteeg fanteegs fanterie fantigue fantigues fantoccini fantocine fantod fantoddish fantods fantom fantoms fantoosh fanum fanums fanweed fanwise fanwork fanwort fanworts fanwright fanzine fanzines fao faoence faon fap fapesmo faq faqir faqirs faquir faquirs far farad faradaic faraday faradays faradic faradisation faradisations faradise faradised faradiser faradisers faradises faradising faradism faradisms faradization faradizations faradize faradized faradizer faradizers faradizes faradizing faradmeter faradocontractility faradomuscular faradonervous faradopalpation farads farand farandine farandines farandman farandmen farandola farandole farandoles faraon farasula faraway farawayness farawaynesses faraways farborough farboroughs farce farced farcelike farcemeat farcer farcers farces farcetta farceur farceurs farceuse farceuses farci farcial farcialize farcical farcicalities farcicality farcically farcicalness farcicalnesses farcie farcied farcies farcified farcifies farcify farcifying farcilite farcin farcing farcings farcinoma farcins farcist farctate farcy fard fardage fardages farde farded fardel fardelet fardels farden fardens fardh farding fardings fardo fards fare farebeat farebeaten farebeating farebeats farebox fareboxes fared farenheit farer farers fares faretta farewell farewelled farewelling farewells farfal farfalle farfalles farfals farfara farfel farfels farfet farfetch farfetched farfetchedness farfetchednesses farforthly fargite fargo fargoing fargood farhand farhands farina farinaceous farinaceously farinacious farinas farine faring farinha farinhas farinometer farinose farinosel farinosely farinulent fario farish farkleberries farkleberry farl farle farles farleu farley farls farm farmable farmage farmed farmer farmeress farmeresses farmerette farmerettes farmeries farmerish farmerlike farmerly farmers farmership farmery farmhand farmhands farmhold farmhouse farmhouses farmhousey farming farmings farmland farmlands farmost farmout farmplace farms farmscape farmstay farmstays farmstead farmsteading farmsteads farmtown farmwife farmwives farmwoman farmwomen farmwork farmworker farmworkers farmworks farmy farmyard farmyards farmyardy farnesol farnesols farness farnesses faro faroeish faroelite faroes faroese faroff farolito farolitos faros farouche farrage farraginous farrago farragoes farragos farrand farrandine farrandines farrandly farrant farrantly farreachingly farreate farreation farred farrel farren farrens farrier farrieries farrierlike farriers farriery farring farris farrisite farrow farrowed farrowing farrows farruca farrucas fars farsakh farsalah farsang farse farsed farseeing farseeingness farseer farses farset farsi farside farsides farsight farsighted farsightedly farsightedness farsightednesses farsing farstepped fart farted farth farthel farthels farther fartherance fartherer farthermore farthermost farthest farthing farthingale farthingales farthingdeal farthingland farthinglands farthingless farthings farthingsworth farthingsworths farting fartlek fartleks farts farweltered fas fasc fasces fascet fasci fascia fasciae fascial fascias fasciate fasciated fasciately fasciation fasciations fascicle fascicled fascicles fascicular fascicularly fasciculate fasciculated fasciculately fasciculation fasciculations fascicule fascicules fasciculi fasciculite fasciculus fascili fascinate fascinated fascinatedly fascinates fascinating fascinatingly fascination fascinations fascinative fascinator fascinators fascinatress fascine fascinery fascines fascintatingly fascio fasciodesis fasciola fasciolae fasciolar fasciolas fasciole fascioles fasciolet fascioliases fascioliasis fasciolidae fascioloid fascioplasty fasciotomy fascis fascism fascisms fascist fascista fascistic fascistically fascisticisation fascisticise fascisticization fascisticize fascistisation fascistise fascistization fascistize fascists fasels fash fashed fasher fasherie fasheries fashery fashes fashing fashion fashionabilities fashionability fashionable fashionableness fashionablenesses fashionables fashionably fashional fashionative fashioned fashioner fashioners fashioning fashionise fashionist fashionista fashionistas fashionists fashionize fashionless fashionmonger fashionmongering fashionmongers fashionmonging fashions fashious fashiousness fashiousnesses fasibitikite fasiculus fasinite fasnacht fasola fass fassaite fassalite fast fastback fastbacks fastball fastballer fastballers fastballs fastbreak fasted fasten fastened fastener fasteners fastening fastenings fastens faster fasters fastest fastgoing fasthold fasti fastidiosity fastidious fastidiously fastidiousness fastidiousnesses fastidium fastiduous fastiduously fastiduousness fastiduousnesses fastigate fastigated fastigia fastigiate fastigiated fastigiately fastigious fastigium fastigiums fastiia fasting fastingly fastings fastish fastland fastly fastnacht fastness fastnesses fasts fastuous fastuously fastuousness fastus fastwalk fat fatal fatale fatales fatalise fatalism fatalisms fatalist fatalistic fatalistically fatalists fatalities fatality fatalize fatally fatalness fatalnesses fatals fatback fatbacks fatbird fatbirds fatbrained fatcake fate fated fateful fatefully fatefulness fatefulnesses fatelike fates fath fathead fatheaded fatheadedly fatheadedness fatheadednesses fatheads fathearted father fathercraft fathered fatherhood fatherhoods fathering fatherkin fatherland fatherlandish fatherlands fatherless fatherlessness fatherlessnesses fatherlike fatherliness fatherlinesses fatherling fatherly fathers fathership fatherships fathmur fathogram fathom fathomable fathomableness fathomage fathomed fathomer fathomers fathometer fathometers fathoming fathomless fathomlessly fathomlessness fathomlessnesses fathoms faticableness fatidic fatidical fatidically fatiferous fatigabilities fatigability fatigable fatigableness fatigablenesses fatigate fatigated fatigates fatigating fatigation fatiguabilities fatiguability fatiguable fatiguableness fatiguablenesses fatigue fatigued fatigueless fatigues fatiguesome fatiguing fatiguingly fatiha fatihah fatil fatiloquent fating fatiscence fatiscences fatiscent fatism fatless fatlike fatling fatlings fatly fatness fatnesses fator fats fatshedera fatshederas fatsia fatsias fatso fatsoes fatsos fatstock fatstocks fattable fatted fatten fattenable fattened fattener fatteners fattening fattenings fattens fatter fattest fattier fatties fattiest fattily fattiness fattinesses fatting fattish fattishness fattism fattisms fattist fattists fattrels fatty fatuate fatuism fatuities fatuitous fatuitousness fatuity fatuoid fatuous fatuously fatuousness fatuousnesses fatuus fatwa fatwah fatwahing fatwahs fatwaing fatware fatwares fatwas fatwood fatwoods faubourg faubourgs faucal faucalize faucals fauces faucet faucets fauchard fauchards fauchion fauchions fauchon fauchons faucial faucitis fauconnier faucre faufel faugh faughs faujasite faujdar faulchin faulchins faulchion faulchions fauld faulds faulkner fault faultage faulted faulter faultfind faultfinder faultfinders faultfinding faultfindings faultful faultfully faultier faultiest faultily faultiness faultinesses faulting faultless faultlessly faultlessness faultlessnesses faults faultsman faulty faulx faun fauna faunae faunal faunally faunas faunated faunch faunish faunist faunistic faunistical faunistically faunists faunlike faunological faunology fauns fauntleroy faunula faunule faunus faurd faured fausant fause fausen faussebraie faussebraye faussebrayed faust fauster faustian faustus faut faute fauterer fauteuil fauteuils fautor fautors fautorship fauve fauves fauvette fauvettes fauvism fauvisms fauvist fauvists faux fauxbourdon fauxbourdons fava favaginous favas fave favel favela favelas favelidium favell favella favellae favellas favellidia favellidium favellilidia favelloid faveolate faveoli faveoluli faveolus faver faverel faverole faves favest favi faviform favilla favillae favillous favism favisms favissa favissae favn favonian favor favorability favorable favorableness favorablenesses favorably favored favoredly favoredness favorednesses favorer favorers favoress favoring favoringly favorite favorites favoritism favoritisms favorless favors favose favosely favosite favosites favositoid favour favourable favourableness favourablenesses favourably favoured favouredly favouredness favourednesses favourer favourers favouress favouring favouringly favourite favourites favouritism favouritisms favourless favours favous favrile favriles favus favuses faw fawe fawkener fawn fawned fawner fawners fawnery fawnier fawniest fawning fawningly fawningness fawningnesses fawnings fawnlike fawns fawnskin fawny faws fax faxed faxes faxing fay fayalite fayalites fayed fayence fayences fayer fayest fayetteville faying fayles fayne fayned faynes fayning fayre fayres fays faze fazed fazenda fazendas fazendeiro fazendeiros fazes fazing façonné façonnés faïence faïences fb fbi fc fchar fcomp fconv fconvert fcp fcs fcy fdic fdname fdnames fdr fdtype fdub fdubs fe feaberry feague feagued feagueing feagues feaguing feak feaked feaking feal fealed fealing feals fealties fealty fear fearable fearbabe feare feared fearedly fearedness fearer fearers feares fearful fearfuller fearfullest fearfully fearfulness fearfulnesses fearie fearing fearingly fearless fearlessly fearlessness fearlessnesses fearnaught fearnought fearnoughts fears fearsome fearsomely fearsomeness fearsomenesses feasance feasances feasant fease feased feases feasibilities feasibility feasible feasibleness feasiblenesses feasibly feasing feasor feast feasted feasten feaster feasters feastful feastfully feasting feastings feastless feastly feastraw feasts feat feated feateous feateously feater featest feather featherback featherbed featherbedded featherbedding featherbeddings featherbeds featherbird featherbone featherbrain featherbrained featherbrains feathercut feathercuts featherdom feathered featheredge featheredged featheredges featheredging featherer featherers featherfew featherfoil featherhead featherheaded featherheads featherier featheriest featheriness featherinesses feathering featherings featherleaf featherless featherlessness featherlet featherlight featherlike featherman feathermonger featherpate featherpated feathers featherstitch featherstitched featherstitches featherstitching feathertop featherway featherweed featherweight featherweights featherwing featherwise featherwood featherwork featherworker feathery feating featish featishly featishness featless featlier featliest featliness featly featness featous feats featuous featural featurally feature featured featureful featureless featurelessness featureliness featurely features featurette featurettes featuring featurish featy feaze feazed feazes feazing feazings feb feblesse feblesses febres febricant febricide febricitant febricitation febricities febricity febricula febriculas febricule febricules febrifacient febriferous febrific febrifugal febrifuge febrifuges febrile febrilities febrility febriphobia febris febronian februaries february februation fec fecal fecalith fecaloid fecche feceris feces fecht fechted fechter fechters fechting fechts fecial fecials fecifork fecit feck fecket feckful feckfully feckless fecklessly fecklessness fecklessnesses feckly fecks feckulence fecula feculae feculas feculence feculences feculencies feculency feculent fecund fecundate fecundated fecundates fecundating fecundation fecundations fecundative fecundator fecundatory fecundify fecundise fecundities fecundity fecundize fed fedarie fedaries fedayee fedayeen feddan feddans fedelini fedelinis fedelline fedellini federacies federacy federal federalese federaleses federalisation federalisations federalise federalised federalises federalising federalism federalisms federalist federalistic federalists federalization federalizations federalize federalized federalizes federalizing federally federalness federals federarie federaries federary federate federated federates federating federation federational federationist federations federatist federative federatively federator federita fedex fedexed fedexes fedexing fedifragous fedity fedn fedora fedoras feds fee feeable feeb feeble feeblebrained feebled feeblehearted feebleheartedly feebleheartedness feebleminded feeblemindedly feeblemindedness feeblemindednesses feebleness feeblenesses feebler feebles feebless feeblest feebling feeblish feebly feebs feed feedable feedback feedbacks feedbag feedbags feedbin feedboard feedbox feedboxes feeded feeder feeders feedhead feedhole feedholes feedhorn feedhorns feeding feedings feedingstuff feedlot feedlots feedman feeds feedsman feedstock feedstocks feedstuff feedstuffs feedthrough feedthroughs feedwater feedway feedy feedyard feedyards feeing feel feelable feelbad feelbads feeler feelers feeless feelgood feelgoods feelies feeling feelingful feelingless feelinglessly feelingly feelingness feelingnesses feelings feels feely feer feere feered feerie feerin feering feerings feerins feers fees feese feesed feeses feesing feest feet feetage feetfirst feetless feeze feezed feezes feezing feff fefnicute fegaries fegary fegs feh fehm fehme fehmic fehs fei feif feigher feign feigned feignedly feignedness feignednesses feigner feigners feigning feigningly feignings feigns feijoa feijoada feijoadas feijoas feil feinschmecker feinschmeckers feint feinted feinter feintest feinting feints feirie feis feiseanna feist feistier feistiest feistily feistiness feistinesses feists feisty felafel felafels felaheen felahin felanders felapton feldene feldgrau feldgraus feldsher feldshers feldspar feldsparphyre feldspars feldspath feldspathic feldspathization feldspathoid feldspathoidal feldspathoids feldspathose feldspaths fele felicia felicias felicide felicific felicify felicitate felicitated felicitates felicitating felicitation felicitations felicitator felicitators feliciter felicities felicitous felicitously felicitousness felicitousnesses felicity felid felidae felids feliform feline felinely felineness felinenesses felines felinities felinity felinophile felinophobe felis felix fell fella fellable fellage fellagha fellah fellaheen fellahin fellahs fellas fellata fellate fellated fellatee fellates fellating fellatio fellation fellations fellatios fellator fellators fellatory fellatrice fellatrices fellatrix fellatrixes felled fellen feller fellers fellest fellfare fellic felliducous fellies fellifluous felling fellingbird fellinic fellmonger fellmongered fellmongeries fellmongering fellmongerings fellmongers fellmongery fellness fellnesses felloe felloes fellon fellow fellowcraft fellowed fellowess fellowheirship fellowing fellowless fellowlike fellowly fellowman fellowmen fellowred fellows fellowship fellowshiped fellowshiping fellowshipped fellowshipping fellowships fells fellside fellsman fellwalker fellwalkers felly feloid felon felones feloness felonies felonious feloniously feloniousness feloniousnesses felonous felonries felonry felons felonsetter felonsetting felonweed felonwood felonwort felony fels felsic felsite felsites felsitic felsobanyite felsophyre felsophyric felsosphaerite felspar felspars felspath felspathic felspathoid felspathoids felspathose felstone felstones felt felted felter feltered feltering felters feltier feltiest felting feltings feltlike feltmaker feltmaking feltman feltmonger feltness felts feltwork feltwort felty feltyfare feltyflier felucca feluccas felwort felworts fem femal female femalely femaleness femalenesses females femalise femalist femalities femality femalize femals femcee feme femerall femeralls femereil femerell femes femetaries femetary femic femicide feminacies feminacy feminal feminalities feminality feminate femineities femineity feminie feminilities feminility feminin feminine femininely feminineness femininenesses feminines femininism femininisms femininities femininity feminisation feminisations feminise feminised feminises feminising feminism feminisms feminist feministic feministics feminists feminities feminity feminization feminizations feminize feminized feminizes feminizing feminologist feminology feminophobe femiter femiters femme femmes femora femoral femoris femorocaudal femorocele femorococcygeal femorofibular femoropopliteal femororotulian femorotibial fempty fems femtometer femtometre femtosecond femtoseconds femur femurs fen fenagle fenagled fenagler fenagles fenagling fenbank fenberry fence fenced fenceful fenceless fencelessness fencelessnesses fencelet fencelike fenceplay fencepost fenceposts fencer fenceress fencerow fencerows fencers fences fenchene fenchol fenchone fenchyl fencible fencibles fencing fencings fend fendable fended fender fendered fendering fenderless fenders fendier fendiest fendillate fendillation fending fends fendy fenerate feneration fenestella fenestellae fenestellas fenestellid fenester fenestra fenestrae fenestral fenestrals fenestras fenestrate fenestrated fenestration fenestrations fenestrato fenestrone fenestrule fenetre fengite fengtien feni fenian fenis fenitar fenitars fenite fenks fenland fenlander fenlands fenman fenmen fennec fennecs fennel fennelflower fennels fenner fennic fennici fennier fennies fenniest fennig fennish fenny fenouillet fenouillette fens fensive fenster fent fentanyl fentanyls fenter fenthion fenthions fents fenugreek fenugreeks fenuron fenurons fenusa feod feodal feodality feodaries feodary feodatory feods feodum feoff feoffed feoffee feoffees feoffeeship feoffer feoffers feoffing feoffment feoffments feoffor feoffors feoffs feower fer feracious feracities feracity feral feralin feralised feralized ferally ferash ferbam ferbams ferberite ferd ferdwit fere ferer feres ferest feretories feretory feretra feretrum ferfathmur ferfel ferfet ferforth ferganite fergusite fergusonite feria feriae ferial ferias feriation feridgi feridjee feridji ferie ferigee ferijee ferine ferinely ferineness feringhee ferio ferison ferities ferity ferk ferkin ferlie ferlied ferlier ferlies ferliest ferling ferly ferlying ferm fermacy fermage fermail fermal fermat fermata fermatas fermate ferme ferment fermentabilities fermentability fermentable fermental fermentarian fermentate fermentation fermentations fermentative fermentatively fermentativeness fermentativenesses fermentatory fermented fermenter fermenters fermentescible fermenting fermentitious fermentive fermentologist fermentology fermentor fermentors ferments fermentum fermerer fermery fermi fermila fermillet fermion fermions fermis fermium fermiums fermorite ferms fern fernambuck fernandinite fernbird fernbirds fernbrake ferned ferneries fernery ferngale ferngrower fernier ferniest ferning fernings ferninst fernitickle fernitickles ferniticle ferniticles fernland fernleaf fernless fernlike ferns fernseed fernshaw fernshaws fernsick ferntickle ferntickled ferntickles fernticle fernticled fernticles fernwort ferny fernyear fernytickle fernytickles fernyticle fernyticles ferocactus feroce ferocious ferociously ferociousness ferociousnesses ferocities ferocity feroher ferous ferox ferr ferrado ferrament ferrandin ferrandine ferrandines ferrara ferrary ferrash ferrate ferrated ferrateen ferrates ferratin ferrean ferredoxin ferredoxins ferreiro ferrel ferreled ferreling ferrelled ferrelling ferrels ferren ferreous ferrer ferret ferreted ferreter ferreters ferreting ferretings ferrets ferretto ferrety ferri ferriage ferriages ferric ferrichloride ferricyanate ferricyanhydric ferricyanic ferricyanide ferricyanides ferricyanogen ferricyanogens ferried ferrier ferries ferriferous ferrihemoglobin ferrihydrocyanic ferrimagnet ferrimagnetic ferrimagnetically ferrimagnetism ferrimagnetisms ferrimagnets ferring ferriprussiate ferriprussic ferris ferrite ferrites ferritic ferritin ferritins ferritisation ferritization ferritungstite ferrivorous ferroalloy ferroalloys ferroaluminum ferroboron ferrocalcite ferrocene ferrocenes ferrocerium ferrochrome ferrochromium ferroconcrete ferroconcretes ferroconcretor ferrocyanate ferrocyanhydric ferrocyanic ferrocyanide ferrocyanides ferrocyanogen ferrocyanogens ferroelectric ferroelectrically ferroelectricities ferroelectricity ferroelectrics ferroglass ferrogoslarite ferrogram ferrograms ferrographies ferrography ferrohydrocyanic ferroinclave ferromagnesian ferromagnet ferromagnetic ferromagneticism ferromagnetism ferromagnetisms ferromagnets ferromanganese ferromanganeses ferrometer ferromolybdenum ferronatrite ferronickel ferroniere ferronieres ferronière ferronières ferronniere ferronnieres ferronnière ferronnières ferrophosphorus ferroprint ferroprussiate ferroprussiates ferroprussic ferrosilicon ferrosilicons ferrosoferric ferrotitanium ferrotungsten ferrotype ferrotyped ferrotyper ferrotypes ferrotyping ferrous ferrovanadium ferrozirconium ferruginate ferruginated ferruginating ferrugination ferruginean ferrugineous ferruginous ferrugo ferrugos ferrule ferruled ferruler ferrules ferruling ferrum ferruminate ferruminated ferruminating ferrumination ferrums ferry ferryage ferryboat ferryboats ferryhouse ferrying ferryman ferrymen ferryway fers fersmite ferter ferth ferther ferthumlungur fertile fertilely fertileness fertilenesses fertiler fertilest fertilisability fertilisable fertilisation fertilisational fertilisations fertilise fertilised fertiliser fertilisers fertilises fertilising fertilitate fertilities fertility fertilizability fertilizable fertilization fertilizational fertilizations fertilize fertilized fertilizer fertilizers fertilizes fertilizin fertilizing feru ferula ferulaceous ferulae ferulaic ferular ferulas ferule feruled ferules ferulic feruling ferv fervanite fervence fervencies fervency fervent ferventer ferventest fervently ferventness ferventnesses fervescence fervescent fervid fervider fervidest fervidities fervidity fervidly fervidness fervidnesses fervidor fervor fervorless fervorlessness fervorous fervors fervour fervourless fervours fes fesapo fescennine fescenninity fescue fescues fesels fess fesse fessed fessely fesses fessewise fessing fessways fesswise fest festa festae festal festally festals festellae fester festered festering festerment festers festilogies festilogy festin festinance festinate festinated festinately festinates festinating festination festinations festine festing festino festival festivalgoer festivalgoers festivally festivals festive festively festiveness festivenesses festivities festivity festivous festologies festology feston festoon festooned festooneries festoonery festooning festoons festoony fests festschrift festschriften festschrifts festshrifts festuca festucine festucous festy fet feta fetal fetalism fetalization fetas fetation fetations fetch fetched fetcher fetchers fetches fetching fetchingly fete feted feteless feterita feteritas fetes fetial fetiales fetialis fetials fetich fetiche fetiches fetichic fetichise fetichised fetichises fetichising fetichism fetichisms fetichist fetichistic fetichists fetichize fetichized fetichizes fetichizing fetichlike fetichmonger fetichry feticidal feticide feticides fetid fetider fetidest fetidities fetidity fetidly fetidness fetidnesses fetiferous feting fetiparous fetis fetise fetish fetisheer fetisher fetishes fetishic fetishisation fetishise fetishised fetishises fetishising fetishism fetishisms fetishist fetishistic fetishistically fetishists fetishization fetishize fetishized fetishizes fetishizing fetishlike fetishmonger fetishry fetlock fetlocked fetlocks fetlow fetography fetologies fetologist fetologists fetology fetometry fetoplacental fetoprotein fetoproteins fetor fetors fetoscope fetoscopes fetoscopic fetoscopies fetoscopy fets fett fetta fettas fetted fetter fetterbush fetterbushes fettered fetterer fetterers fettering fetterless fetterlock fetterlocks fetters fetticus fetting fettle fettled fettler fettlers fettles fettling fettlings fetts fettstein fettuccine fettuccines fettuccini fettucine fettucines fettucini fettucinis feture fetus fetuses fetwa fetwas feu feuage feuar feuars feucht feud feudal feudalisable feudalisation feudalisations feudalise feudalised feudalises feudalising feudalism feudalisms feudalist feudalistic feudalists feudalities feudality feudalizable feudalization feudalizations feudalize feudalized feudalizes feudalizing feudally feudaries feudary feudatary feudatorial feudatories feudatory feuded feudee feuder feuding feudings feudist feudists feudovassalism feuds feudum feued feuillage feuille feuillemorte feuillet feuillete feuilleton feuilletonism feuilletonisms feuilletonist feuilletonistic feuilletonists feuilletons feuilleté feuing feulamort feus feute feuter feuterer feutre feutred feutres feutring fever feverberries feverberry feverbush fevercup fevered feveret feverfew feverfews fevergum fevering feverish feverishly feverishness feverishnesses feverless feverlike feverous feverously feverroot fevers fevertrap fevertwig fevertwitch feverweed feverweeds feverwort feverworts fevery few fewer fewest fewmand fewmet fewmets fewnes fewneses fewness fewnesses fewsome fewter fewtered fewterer fewtering fewters fewtrils fey feyed feyer feyest feying feyly feyness feynesses feys fez fezes fezzed fezzes fezzy ff ffa fg fgn fgrid fha fhlmc fhrer fi fiacre fiacres fiador fianca fiancae fiancaes fiancailles fiancas fiance fianced fiancee fiancees fiances fianchetti fianchetto fianchettoed fianchettoes fianchettoing fianchettos fiancing fiancé fiancée fiancées fiancés fiant fiants fiançailles fiar fiard fiaroblast fiars fiaschi fiasco fiascoes fiascos fiat fiatconfirmatio fiated fiating fiats fiaunt fiaunts fib fibbed fibber fibberies fibbers fibbery fibbing fibdom fiber fiberage fiberages fiberboard fiberboards fibered fiberfill fiberfills fiberglass fiberglassed fiberglasses fiberglassing fiberization fiberizations fiberize fiberized fiberizer fiberizes fiberizing fiberless fiberoptic fiberoptics fiberous fibers fiberscope fiberscopes fiberware fibra fibranne fibrannes fibration fibratus fibre fibreboard fibreboards fibred fibrefill fibrefills fibreglass fibreglasses fibreless fibres fibrescope fibrescopes fibreware fibriform fibril fibrilated fibrilation fibrilations fibrilla fibrillae fibrillar fibrillary fibrillate fibrillated fibrillates fibrillating fibrillation fibrillations fibrillative fibrilled fibrilliferous fibrilliform fibrillin fibrillins fibrillose fibrillous fibrils fibrin fibrinase fibrinate fibrination fibrine fibrinemia fibrinoalbuminous fibrinocellular fibrinogen fibrinogenetic fibrinogenic fibrinogenically fibrinogenous fibrinogens fibrinoid fibrinoids fibrinokinase fibrinolyses fibrinolysin fibrinolysins fibrinolysis fibrinolytic fibrinopeptide fibrinopeptides fibrinoplastic fibrinoplastin fibrinopurulent fibrinose fibrinosis fibrinous fibrins fibrinuria fibrisation fibrise fibrised fibriser fibrises fibrising fibrization fibrize fibrized fibrizer fibrizes fibrizing fibro fibroadenia fibroadenoma fibroadipose fibroangioma fibroareolar fibroblast fibroblastic fibroblasts fibrobronchitis fibrocalcareous fibrocalcific fibrocarcinoma fibrocartilage fibrocartilages fibrocartilaginous fibrocaseose fibrocaseous fibrocellular fibrocement fibrocements fibrochondritis fibrochondroma fibrochondrosteal fibrocrystalline fibrocyst fibrocystic fibrocystoma fibrocyte fibrocytes fibrocytic fibroelastic fibroenchondroma fibrofatty fibroferrite fibroglia fibroglioma fibrohemorrhagic fibroid fibroids fibroin fibroins fibrointestinal fibroligamentous fibroline fibrolines fibrolipoma fibrolipomatous fibrolite fibrolites fibrolitic fibroma fibromas fibromata fibromatoid fibromatosis fibromatous fibromembrane fibromembranous fibromucous fibromuscular fibromyectomy fibromyitis fibromyoma fibromyomatous fibromyomectomy fibromyositis fibromyotomy fibromyxoma fibromyxosarcoma fibronectin fibronectins fibroneuroma fibronuclear fibronucleated fibropapilloma fibropericarditis fibroplasia fibroplasias fibroplastic fibropolypus fibropsammoma fibropurulent fibroreticulate fibros fibrosarcoma fibrosarcomas fibrosarcomata fibrose fibrosed fibroserous fibroses fibrosing fibrosis fibrosities fibrositis fibrositises fibrosity fibrotic fibrotuberculosis fibrous fibrously fibrousness fibrousnesses fibrovasal fibrovascular fibry fibs fibster fibsters fibula fibulae fibular fibulare fibularia fibulas fibulocalcaneal fica ficaries ficary ficche fice ficelle fices fichat fiche fiches fichtelite fichu fichus ficiform ficin ficins fickle fickled ficklehearted fickleness ficklenesses fickler fickles ficklest ficklety ficklewise fickling fickly fico ficoes ficoid ficoidal ficoides ficos fict fictation fictil fictile fictileness fictility fiction fictional fictionalisation fictionalisations fictionalise fictionalised fictionalises fictionalising fictionalities fictionality fictionalization fictionalizations fictionalize fictionalized fictionalizes fictionalizing fictionally fictionary fictioneer fictioneering fictioneerings fictioneers fictioner fictionisation fictionisations fictionise fictionised fictionises fictionising fictionist fictionistic fictionists fictionization fictionizations fictionize fictionized fictionizes fictionizing fictionmonger fictions fictious fictitious fictitiously fictitiousness fictitiousnesses fictive fictively fictiveness fictivenesses fictor fictors ficus ficuses fid fidalgo fidate fidation fidawi fidded fidding fiddious fiddioused fiddiouses fiddiousing fiddle fiddleback fiddlebacks fiddlebow fiddlebrained fiddlecome fiddled fiddlededee fiddledeedee fiddlefaced fiddlehead fiddleheaded fiddleheads fiddleneck fiddlenecks fiddler fiddlerfish fiddlerfishes fiddlers fiddlery fiddles fiddlestick fiddlesticks fiddlestring fiddlewood fiddlewoods fiddley fiddleys fiddlier fiddlies fiddliest fiddling fiddlings fiddly fide fideicommiss fideicommissa fideicommissaries fideicommissary fideicommission fideicommissioner fideicommissor fideicommissum fideicommissumissa fideism fideisms fideist fideistic fideists fidejussion fidejussionary fidejussor fidejussory fidel fideles fidelis fidelities fidelity fideos fidepromission fidepromissor fides fidfad fidge fidged fidges fidget fidgetation fidgeted fidgeter fidgeters fidgetier fidgetiest fidgetily fidgetiness fidgetinesses fidgeting fidgetingly fidgets fidgety fidging fidibus fidibuses fidicinal fidicinales fidicula fidiculae fidley fidleys fido fidos fids fiducia fiducial fiducially fiduciaries fiduciarily fiduciary fiducinales fie fied fiedlerite fief fiefdom fiefdoms fiefs fiel field fieldball fieldbird fieldboot fieldboots fielded fielden fielder fielders fieldfare fieldfares fieldfight fieldhand fieldie fielding fieldings fieldish fieldleft fieldman fieldmen fieldmice fieldmouse fieldpiece fieldpieces fields fieldsman fieldsmen fieldstone fieldstones fieldstrip fieldstripped fieldstripping fieldstrips fieldstript fieldvole fieldvoles fieldward fieldwards fieldwork fieldworker fieldworkers fieldworks fieldwort fieldy fiend fiendful fiendfully fiendhead fiendish fiendishly fiendishness fiendishnesses fiendism fiendlier fiendliest fiendlike fiendliness fiendly fiends fiendship fient fients fier fierasferid fierasferoid fierce fiercehearted fiercely fiercen fiercened fierceness fiercenesses fiercening fiercer fiercest fiercly fierding fiere fieres fieri fierier fieriest fierily fieriness fierinesses fierte fiery fies fiest fiesta fiestas fieulamort fife fifed fifer fifers fifes fifie fifing fifish fifo fifteen fifteener fifteeners fifteenfold fifteens fifteenth fifteenthly fifteenths fifth fifthly fifths fifties fiftieth fiftieths fifty fiftyfold fiftyish fiftypenny fig figaro figary figbird figboy figeater figeaters figent figeter figged figgeries figgery figgier figgiest figging figgle figgum figgy fight fightabilities fightability fightable fightback fightbacks fighter fighteress fighters fighting fightingly fightings fights fightwite figless figlike figment figmental figments figo figos figpecker figs figshell figulate figulated figuline figulines figura figurabilities figurability figurable figurae figural figurally figurant figurante figurantes figurants figurate figurately figuration figurational figurations figurative figuratively figurativeness figurativenesses figurato figure figured figuredly figurehead figureheadless figureheads figureheadship figureless figurer figurers figures figuresome figurette figurework figureworks figurial figurine figurines figuring figurings figurise figurism figurist figuriste figurists figurize figury figworm figwort figworts fiji fijian fijis fike fiked fikeries fikery fikes fikey fikh fikie fikier fikiest fiking fikish fiky fil fila filabeg filabegs filace filaceous filacer filacers filago filagree filagreed filagreeing filagrees filagreing filament filamentar filamentary filamented filamentiferous filamentlike filamentoid filamentose filamentous filaments filamentule filander filanders filao filar filaree filarees filaria filariae filarial filarian filarias filariases filariasis filaricidal filariform filariid filariidae filariids filarious filasse filasses filate filator filatories filatory filature filatures filaze filazer filazers filberd filberds filbert filberts filch filched filcher filchers filchery filches filching filchingly filchings file filea fileable filecard filechar filed filefish filefishes filelike filemaker filemaking filemark filemarks filemot filemots filename filenames filer filers files filesave filesmith filesniff filespec filestatus filesystem filesystems filet filets filfot filfots fili filial filiality filially filialness filialnesses filiate filiated filiates filiating filiation filiations filibeg filibegs filibranch filibranchiate filibuster filibustered filibusterer filibusterers filibustering filibusterings filibusterism filibusterisms filibusterous filibusters filibustrous filical filicales filicauline filicic filicidal filicide filicides filiciform filicin filicinae filicinean filicinian filicite filicoid filicoids filicologist filicology filicopsida filiety filiferous filiform filiformed filigerous filigrain filigrained filigrains filigrane filigraned filigranes filigree filigreed filigreeing filigrees filigreing filii filing filings filionymic filiopietistic filioque filioques filipendula filipendulous filipino filipinos filippi filippic filippo filipuncture filister filisters filite filius fill filla fillable fillagree fillagreed fillagreing fillar fille fillebeg filled fillemot filler fillercap fillers filles fillet filleted filleter filleting filletlike fillets filletster filleul fillibeg fillibegs fillies filling fillingly fillingness fillings fillip filliped fillipeen fillipeens filliping fillips fillister fillisters fillmass fillmore fillo fillock fillos fillowite fills filly film filmable filmcard filmcards filmdom filmdoms filmed filmer filmers filmet filmgoer filmgoers filmgoing filmi filmic filmically filmier filmiest filmiform filmily filminess filminesses filming filmis filmise filmish filmist filmize filmized filmizing filmland filmlands filmlike filmmake filmmaker filmmakers filmmaking filmmakings filmogen filmographies filmography films filmset filmsets filmsetter filmsetters filmsetting filmsettings filmslide filmstrip filmstrips filmy filo filoplumaceous filoplume filoplumes filopodia filopodium filos filose filoselle filoselles filosofe filosus fils filses filt filter filterabilities filterability filterable filterableness filtered filterer filterers filtering filterless filterman filtermen filters filth filthied filthier filthies filthiest filthified filthify filthifying filthily filthiness filthinesses filthless filths filthy filthying filtrabilities filtrability filtrable filtratable filtrate filtrated filtrates filtrating filtration filtrations filtre filum fimble fimbles fimbria fimbriae fimbrial fimbrias fimbriate fimbriated fimbriates fimbriating fimbriation fimbriations fimbriatum fimbricate fimbricated fimbrilla fimbrillae fimbrillate fimbrilliferous fimbrillose fimbriodentate fimetarious fimetic fimicolous fin finable finableness finagle finagled finagler finaglers finagles finagling final finale finales finalis finalisation finalisations finalise finalised finalises finalising finalism finalisms finalist finalists finalities finality finalization finalizations finalize finalized finalizer finalizers finalizes finalizing finally finals finance financeable financed financer finances financial financialist financialists financially financiare financier financiere financiered financiering financiers financiery financing financings financist finary finback finbacks finbone finca fincas finch finchbacked finched finchery finches find findability findable findal finder finders findfault findhorn finding findings findjan findon findram findrams finds findy fine fineable fineableness finebent finecomb fined finedraw finedrawing fineer fineered fineering fineers fineish fineleaf fineless finely finement fineness finenesses finer fineries finers finery fines finespun finesse finessed finesser finessers finesses finessing finessings finest finestill finestiller finestra finetop finew finewed finfish finfishes finfoot finfoots fingan fingans fingent finger fingerable fingerberry fingerboard fingerboards fingerbowl fingerbowls fingerbreadth fingerbreadths fingered fingerer fingerers fingerfish fingerfishes fingerflower fingerglass fingerglasses fingerguard fingerguards fingerhold fingerholds fingerhole fingerholes fingerhook fingering fingerings fingerleaf fingerless fingerlet fingerlike fingerling fingerlings fingermark fingermarks fingernail fingernails fingerpaint fingerpainted fingerpainting fingerpaints fingerparted fingerpick fingerpicked fingerpicking fingerpickings fingerpicks fingerplate fingerplates fingerpost fingerposts fingerprint fingerprinted fingerprinting fingerprintings fingerprints fingerroot fingers fingersmith fingerspelling fingerspellings fingerspin fingerstall fingerstalls fingerstone fingertip fingertips fingerwise fingerwork fingery fingian fingram fingrigo fini finial finialed finials finical finicalities finicality finically finicalness finicalnesses finicism finick finicketier finicketiest finickety finickier finickiest finickily finickin finickiness finickinesses finicking finickingly finickingness finickings finicky finific finify finikin finiking fining finings finis finises finish finishable finished finisher finishers finishes finishing finishings finitary finite finitely finiteness finitenesses finites finitesimal finitism finitive finitude finitudes finity finjan finjans fink finked finkel finking finks finky finland finlandization finless finlet finlike finmark finmarks finn finnac finnack finnacks finnacs finnan finnans finned finner finners finnesko finnic finnick finnickier finnickiest finnicking finnicky finnier finniest finning finnip finnish finnmark finnmarks finnoc finnochio finnochios finnock finnocks finns finnsko finny fino finocchio finocchios finochio finochios finos fins finsko finspot fintadores fiord fiorded fiords fiorin fiorins fiorite fioritura fioriture fip fipenny fippence fippences fipple fipples fiqh fique fiques fir firca fire fireable firearm firearmed firearms fireback firebacks fireball fireballer fireballers fireballing fireballs firebase firebases firebed firebird firebirds fireblende fireboard fireboards fireboat fireboats firebolt firebolted firebomb firebombed firebomber firebombers firebombing firebombings firebombs fireboot firebote firebox fireboxes fireboy firebrand firebrands firebrat firebrats firebreak firebreaks firebrick firebricks firebug firebugs fireburn firebush fireclay fireclays firecoat firecracker firecrackers firecrest firecrests fired firedamp firedamps firedog firedogs firedragon firedrake firedrakes firefall firefang firefanged firefanging firefangs firefight firefighter firefighters firefighting firefightings firefights fireflaught fireflies fireflirt firefloat firefloats fireflower firefly fireguard fireguards firehall firehalls firehose firehoses firehouse firehouses fireless firelight firelighter firelighters firelights firelike fireling firelit firelock firelocks fireman firemanic firemanship firemark firemarks firemaster firemen firenze firepan firepans firepink firepinks fireplace fireplaced fireplaces fireplough fireplow fireplug fireplugs firepot firepots firepower firepowers fireproof fireproofed fireproofing fireproofings fireproofness fireproofs firer fireroom firerooms firers fires firesafe firesafeness firesafety firescreen firescreens fireshaft fireshine fireship fireships fireside firesider firesides firesideship firespout firestone firestones firestop firestopping firestorm firestorms firetail firethorn firethorns firetop firetower firetrap firetraps firetruck firetrucks firewall firewalled firewalling firewalls fireward firewarden firewater firewaters fireweed fireweeds firewheel firewoman firewomen firewood firewoods firework fireworkless fireworks fireworky fireworm fireworms firiness firing firings firk firked firker firkin firking firkins firks firlot firlots firm firma firmament firmamental firmaments firman firmance firmans firmarii firmarius firmation firmed firmer firmers firmest firmhearted firmiana firming firmisternal firmisternial firmisternous firmitude firmity firmland firmless firmly firmness firmnesses firms firmware firmwares firn firnification firns firrier firriest firring firrings firry firs first firstborn firstborns firstcomer firster firstfruits firsthand firstling firstlings firstly firstness firsts firstship firth firths firy fisc fiscal fiscalify fiscalisation fiscalise fiscalism fiscality fiscalization fiscalize fiscalized fiscalizing fiscally fiscals fischerite fiscs fiscus fise fisetin fisgig fisgigs fish fishabilities fishability fishable fishback fishball fishballs fishbed fishberries fishberry fishboat fishboats fishbolt fishbolts fishbone fishbones fishbowl fishbowls fishburger fishburgers fishcake fishcakes fisheater fished fisher fisherboat fisherboy fisheress fisherfolk fishergirl fisheries fisherman fishermen fisherpeople fishers fisherwoman fisherwomen fishery fishes fishet fisheye fisheyes fishfall fishfinger fishfly fishful fishgarth fishgig fishgigs fishgrass fishhold fishhood fishhook fishhooks fishhouse fishier fishiest fishified fishifies fishify fishifying fishily fishiness fishinesses fishing fishingly fishings fishkill fishkills fishless fishlet fishlike fishline fishlines fishling fishman fishmeal fishmeals fishmen fishmonger fishmongers fishmouth fishnet fishnets fishpaste fishplate fishplates fishpole fishpoles fishpond fishponds fishpool fishpot fishpotter fishpound fishskin fishskins fishspear fishtail fishtailed fishtailing fishtails fishway fishways fishweed fishweir fishwife fishwives fishwoman fishwood fishworker fishworks fishworm fishworms fishy fishyard fishyback fishybacking fishybacks fisk fisked fisking fisks fisnoga fisnomie fisnomies fissate fissicostate fissidactyl fissidentaceous fissile fissileness fissilingual fissilities fissility fission fissionabilities fissionability fissionable fissionables fissional fissioned fissioning fissions fissipalmate fissipalmation fissiparation fissiparism fissiparisms fissiparities fissiparity fissiparous fissiparously fissiparousness fissiparousnesses fissiped fissipedal fissipedate fissipede fissipedes fissipedia fissipedial fissipeds fissirostral fissirostrate fissive fissle fissled fissles fissling fissura fissural fissuration fissure fissured fissureless fissurella fissurellidae fissures fissuriform fissuring fissury fist fisted fister fistfight fistfights fistfuck fistfucked fistfucking fistfucks fistful fistfuls fistiana fistic fistical fisticuff fisticuffer fisticuffers fisticuffery fisticuffing fisticuffs fistier fistiest fistify fistiness fisting fistinut fistle fistlike fistmele fistmeles fistnote fistnotes fists fistuca fistula fistulae fistular fistularia fistulariidae fistularioid fistulas fistulate fistulated fistulatome fistulatous fistule fistuliform fistulina fistulinaceae fistulization fistulize fistulized fistulizing fistulose fistulous fistwise fisty fit fitch fitche fitched fitchee fitcher fitchered fitchering fitchery fitches fitchet fitchets fitchew fitchews fitchy fitché fitchée fitful fitfully fitfulness fitfulnesses fitified fitlier fitliest fitly fitment fitments fitness fitnesses fitout fitroot fits fitt fittable fittage fitte fitted fittedness fitten fitter fitters fittes fittest fittier fittiest fittily fittiness fitting fittingly fittingness fittingnesses fittings fittit fitts fitty fittyfied fittyways fittywise fitweed fitz fiumara five fivebar fivefinger fivefingers fivefold fivefoldness fiveling fivepence fivepences fivepenny fivepin fivepins fiver fivers fives fivescore fivesome fivespot fivespots fivestones fivish fix fixable fixage fixate fixated fixates fixatif fixatifs fixating fixation fixations fixative fixatives fixator fixature fixatures fixe fixed fixedly fixedness fixednesses fixer fixers fixes fixgig fixidity fixing fixings fixion fixit fixities fixity fixive fixt fixture fixtureless fixtures fixup fixups fixure fixures fiz fizelyite fizgig fizgigs fizz fizzed fizzen fizzenless fizzens fizzer fizzers fizzes fizzgig fizzgigs fizzier fizziest fizzily fizziness fizzing fizzings fizzle fizzled fizzler fizzlers fizzles fizzling fizzwater fizzy fjarding fjeld fjelds fjerding fjord fjorded fjordic fjords fl flab flabbella flabbergast flabbergastation flabbergasted flabbergasting flabbergastingly flabbergasts flabbier flabbiest flabbily flabbiness flabbinesses flabby flabel flabella flabellarium flabellate flabellation flabellations flabellifoliate flabelliform flabellinerved flabellum flabellums flabile flabra flabrum flabs flaccid flaccider flaccidest flaccidities flaccidity flaccidly flaccidness flaccidnesses flache flacherie flachery flachette flachettes flacian flack flacked flacker flackered flackeries flackering flackers flackery flacket flackets flacking flacks flacon flacons flacourtia flacourtiaceae flacourtiaceous flaff flaffed flaffer flaffered flaffering flaffers flaffing flaffs flag flagarie flagboat flagella flagellant flagellantism flagellantisms flagellants flagellar flagellariaceous flagellata flagellate flagellated flagellates flagellating flagellation flagellations flagellative flagellator flagellators flagellatory flagelliferous flagelliform flagellin flagellins flagellist flagellomania flagellomaniac flagellomaniacs flagellomanias flagellosis flagellula flagellulae flagellum flagellums flageolet flageolets flagfall flagfish flagfishes flagged flaggelate flaggelated flaggelating flaggelation flaggella flagger flaggers flaggery flaggier flaggiest flaggily flagginess flagginesses flagging flaggingly flaggings flaggish flaggy flagilate flagitate flagitated flagitates flagitating flagitation flagitations flagitious flagitiously flagitiousness flagitiousnesses flagleaf flagless flaglet flaglike flagmaker flagmaking flagman flagmen flagon flagonet flagonless flagons flagpole flagpoles flagrance flagrances flagrancies flagrancy flagrant flagrante flagrantly flagrantness flagrate flagroot flags flagship flagships flagstaff flagstaffs flagstaves flagstick flagsticks flagstone flagstones flagwaving flagworm flail flailed flailing flaillike flails flain flair flairs flaite flaith flaithship flajolotite flak flakage flake flakeboard flaked flakeless flakelet flaker flakers flakes flakey flakier flakies flakiest flakily flakiness flakinesses flaking flaks flaky flam flamage flamages flamant flamb flamba flambage flambant flambe flambeau flambeaus flambeaux flambee flambeed flambeing flamberg flamberge flambes flamboyance flamboyances flamboyancies flamboyancy flamboyant flamboyante flamboyantes flamboyantise flamboyantism flamboyantize flamboyantly flamboyants flamboyer flambé flambéed flame flamed flamefish flamefishes flameflower flameholder flameless flamelet flamelets flamelike flamen flamenco flamencos flamens flamenship flameout flameouts flameproof flameproofed flameproofer flameproofers flameproofing flameproofs flamer flamers flames flamethrower flamethrowers flamfew flamfews flamier flamiest flamineous flamines flaming flamingly flamingo flamingoes flamingos flamings flaminica flaminical flaminius flamless flamm flammabilities flammability flammable flammables flammably flammant flammation flammed flammeous flammiferous flammigerous flamming flammivomous flamms flammulated flammulation flammulations flammule flammules flammulina flams flamy flan flancard flancards flanch flanchard flanche flanched flanches flanching flanchings flanconade flanconades flanconnade flandan flanderkin flanders flandowser flane flanerie flaneries flanes flaneur flaneurs flang flange flanged flangeless flanger flangers flanges flangeway flanging flank flankard flanked flanken flankens flanker flankerback flankerbacks flankered flankering flankers flanking flanks flankwise flanky flanned flannel flannelboard flannelboards flannelbush flannelcake flanneled flannelet flannelets flannelette flannelettes flannelflower flannelgraph flannelgraphs flanneling flannelleaf flannelleaves flannelled flannelling flannelly flannelmouth flannelmouthed flannelmouths flannels flannen flannens flanning flanque flans flap flapcake flapdock flapdoodle flapdoodles flapdragon flaperon flaperons flapjack flapjacks flapless flapmouthed flappable flapped flapper flapperdom flappered flapperhood flapperhoods flappering flapperish flapperism flappers flappet flappier flappiest flapping flappings flappy flaps flaptrack flaptracks flare flareback flarebacks flareboard flared flareless flarer flares flareup flareups flarfish flarfishes flarier flariest flaring flaringly flary flaser flasers flash flashback flashbacked flashbacking flashbacks flashboard flashboards flashbulb flashbulbs flashcard flashcards flashcube flashcubes flashed flasher flashers flashes flashest flashet flashflood flashforward flashforwarded flashforwarding flashforwards flashgun flashguns flashier flashiest flashily flashiness flashinesses flashing flashingly flashings flashlamp flashlamps flashlight flashlights flashlike flashly flashness flashover flashovers flashpan flashpoint flashpoints flashproof flashtester flashtube flashtubes flashy flask flasker flasket flaskets flaskful flasklet flasks flasque flat flatback flatbacks flatbed flatbeds flatboat flatboats flatbottom flatbread flatbreads flatbrod flatcap flatcaps flatcar flatcars flatdom flated flateria flatette flatfeet flatfish flatfishes flatfoot flatfooted flatfootedly flatfootedness flatfootednesses flatfooting flatfoots flathat flathe flathead flatheads flatiron flatirons flative flatland flatlander flatlanders flatlands flatlet flatlets flatline flatlined flatliner flatliners flatlines flatling flatlings flatlining flatlong flatly flatman flatmate flatmates flatmen flatness flatnesses flatnose flatout flatpack flatpacks flats flatshare flatshares flatted flatten flattened flattener flatteners flattening flattens flatter flatterable flattercap flatterdock flattered flatterer flatterers flatteress flatteries flattering flatteringly flatteringness flatterous flatterously flatters flattery flattest flatteur flattie flatties flatting flattings flattish flattop flattops flatty flatulence flatulences flatulencies flatulency flatulent flatulently flatulentness flatuosity flatuous flatus flatuses flatware flatwares flatwash flatwashes flatway flatways flatweed flatwise flatwoods flatwork flatworks flatworm flatworms flaubert flaucht flaught flaughtbred flaughted flaughter flaughtered flaughtering flaughters flaughting flaughts flaunch flaunche flaunched flaunches flaunching flaunchings flaune flaunes flaunt flaunted flaunter flaunters flauntier flauntiest flauntily flauntiness flauntinesses flaunting flauntingly flaunts flaunty flauta flautas flautino flautist flautists flauto flav flavanilin flavaniline flavanol flavanols flavanone flavanones flavanthrene flavanthrone flavedo flavedos flavescence flavescent flavic flavicant flavid flavin flavine flavines flavins flavo flavobacteria flavobacterium flavone flavones flavonoid flavonoids flavonol flavonols flavoprotein flavoproteins flavopurpurin flavor flavored flavorer flavorers flavorful flavorfully flavorfulness flavoriness flavoring flavorings flavorist flavorists flavorless flavorlessness flavorous flavorousness flavors flavorsome flavorsomeness flavory flavour flavoured flavourer flavourers flavourful flavourfully flavouring flavourings flavourless flavourous flavours flavoursome flavoury flavous flaw flawed flawedness flawflower flawful flawier flawiest flawing flawless flawlessly flawlessness flawlessnesses flawn flawns flaws flawy flax flaxbird flaxboard flaxbush flaxdrop flaxen flaxes flaxier flaxiest flaxlike flaxman flaxseed flaxseeds flaxtail flaxweed flaxwench flaxwife flaxwoman flaxwort flaxy flay flayed flayer flayers flayflint flaying flays flb flche flchette fld fldxt flea fleabag fleabags fleabane fleabanes fleabite fleabites fleabiting fleabitten fleabug fleabugs fleadock fleahopper fleahoppers fleak fleam fleamarket fleamarkets fleams fleamy fleapit fleapits flear fleas fleaseed fleasome fleaweed fleawood fleawort fleaworts fleay flebile flebotomy fleche fleches flechette flechettes fleck flecked flecken flecker fleckered fleckering fleckers fleckier fleckiest fleckiness flecking fleckled fleckless flecklessly flecks flecky flecnodal flecnode flect flection flectional flectionless flections flector fled fledge fledged fledgeless fledgeling fledgelings fledges fledgier fledgiest fledging fledgling fledglings fledgy flee fleece fleeceable fleeced fleeceflower fleeceless fleecelike fleecer fleecers fleeces fleech fleeched fleeches fleeching fleechings fleechment fleechments fleecier fleeciest fleecily fleeciness fleecinesses fleecing fleecy fleeing fleer fleered fleerer fleerers fleering fleeringly fleerings fleerish fleers flees fleet fleeted fleeten fleeter fleetest fleetful fleeting fleetingly fleetingness fleetingnesses fleetings fleetly fleetness fleetnesses fleets fleetwing fleg flegged flegging flegm flegs fleing fleishig fleme flemer flemes fleming flemings flemish flemished flemishes flemishing flemit flench flenched flenches flenching flenerie fleneur fleneurs flense flensed flenser flensers flenses flensing flentes flerried flerry flerrying flesh fleshbrush fleshed fleshen flesher fleshers fleshes fleshful fleshhood fleshhoods fleshhook fleshier fleshiest fleshily fleshiness fleshinesses fleshing fleshings fleshless fleshlessness fleshlier fleshliest fleshlike fleshlily fleshliness fleshlinesses fleshling fleshlings fleshly fleshment fleshments fleshmonger fleshmongers fleshpot fleshpots fleshquake fleshworm fleshworms fleshy flet fletch fletched fletcher fletcherism fletchers fletches fletching fletchings flether fletton flettons fleur fleuret fleurets fleurette fleurettee fleurettes fleuretty fleuron fleuronee fleuronne fleuronnee fleurons fleury flew flewed flewit flews flex flexagon flexagons flexanimous flexcash flexdollars flexed flexes flexibilities flexibility flexibilty flexible flexibleness flexiblenesses flexibly flexihours flexile flexility flexing flexion flexional flexionless flexions flexitime flexitimes flexity flexive flexo flexographer flexographers flexographic flexographically flexographies flexography flexor flexors flextime flextimes flexuose flexuosely flexuoseness flexuosities flexuosity flexuous flexuously flexuousness flexura flexural flexure flexured flexures fley fleyed fleyedly fleyedness fleying fleyland fleys fleysome flibbertigibbet flibbertigibbets flibbertigibbety flibustier flic flicflac flichter flichtered flichtering flichters flick flicked flicker flickered flickering flickeringly flickermouse flickerproof flickers flickertail flickertails flickery flicking flicks flicky flics flidder flidge flied flier fliers flies fliest fliffus fligged fligger flight flighted flighter flightful flighthead flightier flightiest flightily flightiness flightinesses flighting flightless flightpath flights flightshot flightworthiness flightworthinesses flightworthy flighty flimflam flimflammed flimflammer flimflammeries flimflammers flimflammery flimflamming flimflams flimmer flimp flimped flimping flimps flimsier flimsies flimsiest flimsily flimsilyst flimsiness flimsinesses flimsy flinch flinched flincher flinchers flinches flinching flinchingly flinchings flinder flinders flindersia flindersias flindosa flindosy fling flingdust flinger flingers flinging flings flingy flinkite flinkites flint flinted flinter flinthead flintheads flinthearted flintier flintiest flintified flintifies flintify flintifying flintily flintiness flintinesses flinting flintless flintlike flintlock flintlocks flints flintstone flintwood flintwork flintworker flinty flioma flip flipbook flipbooks flipe fliped flipflop flipflops fliping flipjack flippable flippance flippancies flippancy flippant flippantly flippantness flippantnesses flipped flipper flipperling flippers flippery flippest flippies flipping flippy flips flir flirs flirt flirtable flirtation flirtational flirtationless flirtations flirtatious flirtatiously flirtatiousness flirtatiousnesses flirted flirter flirters flirtier flirtiest flirtigig flirtily flirting flirtingly flirtings flirtish flirtishness flirtling flirts flirty flisk flisked fliskier fliskiest flisking flisks flisky flit flitch flitched flitchen flitches flitching flitchplate flite flited flites flitfold fliting flits flitt flitted flitter flitterbat flittered flittering flittermice flittermmice flittermouse flittern flitterns flitters flittiness flitting flittingly flittings flitty flitwite flivver flivvers flix flixed flixes flixing flixweed fll flnerie flneur flneuse flo fload float floatabilities floatability floatable floatage floatages floatant floatants floatation floatations floatative floatboard floated floatel floatels floater floaters floatier floatiest floatiness floating floatingly floatings floative floatless floatmaker floatman floatmen floatplane floatplanes floats floatsman floatsmen floatstone floaty flob flobby floc flocced flocci floccilation floccillation floccillations floccinaucinihilipilification floccinaucinihilipilifications floccing floccipend floccose floccosely flocculable flocculant flocculants floccular flocculate flocculated flocculates flocculating flocculation flocculations flocculator flocculators floccule flocculence flocculences flocculencies flocculency flocculent flocculently floccules flocculi flocculose flocculous flocculus floccus flock flockbed flocked flocker flockier flockiest flocking flockings flockless flocklike flockling flockman flockmaster flockowner flocks flockwise flocky flocoon flocs flodden flodge floe floeberg floes floey flog floggable flogged flogger floggers flogging floggingly floggings flogmaster flogs flogster floit flokati flokatis flokite flon flong flongs flood floodable floodage floodboard floodcock flooded flooder flooders floodgate floodgates floodhead flooding floodings floodless floodlet floodlight floodlighted floodlighting floodlightings floodlights floodlike floodlilit floodlit floodmark floodmarks floodometer floodplain floodplains floodproof floods floodtide floodtides floodtime floodwall floodwalls floodwater floodwaters floodway floodways floodwood floody flooey flooie flook flookan floor floorage floorages floorboard floorboards floorcloth floorcloths floorcover floored floorer floorers floorhead floorheads flooring floorings floorless floorman floormen floors floorshift floorshifts floorshow floorshows floorspace floorthrough floorwalker floorwalkers floorward floorway floorwise floosie floosies floosy floozie floozies floozy flop floperoo flophouse flophouses flopover flopovers flopped flopper floppers floppier floppies floppiest floppily floppiness floppinesses flopping floppy flops floptical flopwing flor flora florae floral floralise floralize florally florals floramor floramour floran floras florate floreal floreant floreat floreate floreated floreating florence florences florent florentine florentines florentium flores florescence florescences florescent floressence floret floreta floreted florets florette floretty floretum floriage floriate floriated floriation floriations floribunda floribundas florican floricane floricanes floricin floricomous floricultural floriculturally floriculture floricultures floriculturist floriculturists florid florida floridan floridans floridean florideans florideous florider floridest floridian floridians floridities floridity floridly floridness floridnesses florier floriest floriferous floriferously floriferousness floriferousnesses florification floriform florigen florigenic florigens florigraphy florikan floriken florilage florilege florilegia florilegium florimania florimanist florin florins floriparous floripondio floriscope florist floristic floristically floristics floristries floristry florists florisugent florivorous florizine floroon floroscope floroun flors floruit floruited floruiting floruits florula florulae florulas florulent flory floscular floscularian floscule floscules flosculet flosculose flosculous flosh floshes floss flossa flossed flosser flossers flosses flossflower flossie flossier flossies flossiest flossification flossily flossiness flossinesses flossing flossings flossy flot flota flotage flotages flotant flotas flotation flotations flotative flote flotel flotels floter flotes flotilla flotillas flotorial flots flotsam flotsams flotsan flotsen flotson flotten flotter flounce flounced flounces flouncey flouncier flounciest flouncing flouncings flouncy flounder floundered floundering flounderingly flounders flour floured flourescent flourier flouriest flouriness flouring flourish flourishable flourished flourisher flourishers flourishes flourishing flourishingly flourishment flourishy flourless flourlike flours floury flouse floused flouses floush floushed floushes floushing flousing flout flouted flouter flouters flouting floutingly floutingstock floutingstocks flouts flow flowable flowage flowages flowback flowbacks flowchart flowcharted flowcharting flowchartings flowcharts flowcontrol flowe flowed flower flowerage flowerages flowerbed flowerbeds flowered flowerer flowerers floweret flowerets flowerette flowerettes flowerfence flowerfly flowerful flowerier floweriest flowerily floweriness flowerinesses flowering flowerings flowerist flowerless flowerlessness flowerlet flowerlike flowerpecker flowerpot flowerpots flowers flowerwork flowery flowing flowingly flowingness flowingnesses flowk flowmanostat flowmeter flowmeters flown flowoff flows flowsheet flowsheets flowstone flowstones floyt flrie flt flu fluate fluates fluavil fluavile flub flubbed flubber flubbers flubbing flubdub flubdubberies flubdubbery flubdubs flubs flucan fluconazole fluconazoles fluctiferous fluctigerous fluctisonant fluctisonous fluctuability fluctuable fluctuant fluctuate fluctuated fluctuates fluctuating fluctuation fluctuational fluctuations fluctuosity fluctuous flue flued fluegelhorn fluegelhorns flueless fluellen fluellens fluellin fluellins fluellite flueman fluemen fluence fluences fluencies fluency fluent fluently fluentness fluentnesses fluents fluer flueric fluerics flues fluework flueworks fluey fluff fluffed fluffer fluffers fluffier fluffiest fluffily fluffiness fluffinesses fluffing fluffs fluffy flugel flugelhorn flugelhornist flugelhornists flugelhorns flugelman flugelmen flugels fluible fluid fluidacetextract fluidal fluidally fluidextract fluidextracts fluidglycerate fluidible fluidic fluidics fluidification fluidified fluidifier fluidifies fluidify fluidifying fluidimeter fluidisation fluidisations fluidise fluidised fluidiser fluidisers fluidises fluidising fluidism fluidist fluidities fluidity fluidization fluidizations fluidize fluidized fluidizer fluidizers fluidizes fluidizing fluidly fluidmeter fluidness fluidnesses fluidounce fluidounces fluidrachm fluidram fluidrams fluids fluier fluiest fluigram fluigramme fluing fluitant fluke fluked flukeless flukes flukeworm flukeworms flukewort flukey flukier flukiest flukily flukiness flukinesses fluking fluky flumadiddle flumdiddle flume flumed flumerin flumes fluming fluminose fluminous flummadiddle flummer flummeries flummery flummox flummoxed flummoxes flummoxing flummydiddle flump flumped flumping flumps flung flunk flunked flunker flunkers flunkey flunkeydom flunkeydoms flunkeyhood flunkeyish flunkeyism flunkeyisms flunkeyistic flunkeyite flunkeyize flunkeys flunkie flunkies flunking flunkout flunkouts flunks flunky flunkydom flunkyhood flunkyish flunkyism flunkyisms flunkyistic flunkyite flunkyize fluoaluminate fluoaluminic fluoarsenate fluoborate fluoboric fluoborid fluoboride fluoborite fluobromide fluocarbonate fluocerine fluocerite fluochloride fluohydric fluophosphate fluor fluoran fluorane fluoranthene fluorapatite fluorate fluorated fluorbenzene fluorboric fluorene fluorenes fluorenyl fluoresage fluoresce fluoresced fluorescein fluoresceine fluoresceins fluorescence fluorescences fluorescent fluorescents fluorescer fluorescers fluoresces fluorescigenic fluorescigenous fluorescing fluorhydric fluoric fluorid fluoridate fluoridated fluoridates fluoridating fluoridation fluoridations fluoride fluorides fluoridisation fluoridise fluoridised fluoridises fluoridising fluoridization fluoridize fluoridized fluoridizes fluoridizing fluorids fluorimeter fluorimeters fluorimetric fluorimetries fluorimetry fluorin fluorinate fluorinated fluorinates fluorinating fluorination fluorinations fluorindin fluorindine fluorine fluorines fluorins fluorite fluorites fluormeter fluorobenzene fluoroborate fluoroboride fluorocarbon fluorocarbons fluorochemical fluorochemicals fluorochrome fluorochromes fluoroform fluoroformol fluorogen fluorogenic fluorographic fluorographies fluorography fluoroid fluorometer fluorometers fluorometric fluorometries fluorometry fluorophosphate fluoroscope fluoroscoped fluoroscopes fluoroscopic fluoroscopically fluoroscopies fluoroscoping fluoroscopist fluoroscopists fluoroscopy fluoroses fluorosis fluorotic fluorotype fluorotypes fluorouracil fluorouracils fluors fluorspar fluorspars fluoryl fluosilicate fluosilicic fluotantalate fluotantalic fluotitanate fluotitanic fluoxetine fluoxetines fluozirconic fluphenazine fluphenazines flurbiprofen flurn flurr flurred flurried flurriedly flurries flurriment flurring flurrs flurry flurrying flurt flus flush flushable flushboard flushed flusher flusherman flushermen flushers flushes flushest flushgate flushier flushiest flushing flushingly flushings flushness flushnesses flushy flusk flusker fluster flusterate flusterated flusterating flusteration flustered flusteredly flusterer flustering flusterment flusterments flusters flustery flustrate flustrated flustrates flustrating flustration flustrations flustrine flustroid flustrum flute flutebird fluted flutelike flutemouth flutemouths fluter fluters flutes flutework flutey fluther flutier flutiest flutina flutinas fluting flutings flutist flutists flutter flutterable flutteration flutterboard flutterboards fluttered flutterer flutterers flutteriness fluttering flutteringly flutterless flutterment flutters fluttersome fluttery fluty fluvanna fluvial fluvialist fluvialists fluviatic fluviatile fluviation fluvicoline fluvio fluvioglacial fluviograph fluviolacustrine fluviology fluviomarine fluviometer fluviose fluvioterrestrial fluvious fluviovolcanic flux fluxation fluxed fluxer fluxes fluxgate fluxgates fluxgraph fluxibility fluxible fluxibleness fluxibly fluxile fluxility fluxing fluxion fluxional fluxionally fluxionary fluxionist fluxionists fluxions fluxive fluxmeter fluxroot fluxure fluxweed fluyt fluyts fly flyability flyable flyaway flyaways flyback flybacks flyball flybane flybanes flybelt flybelts flyblew flyblow flyblowing flyblown flyblows flyboat flyboats flybook flybooks flyboy flyboys flybridge flybridges flybrush flyby flybys flycaster flycatcher flycatchers flyeater flyer flyers flyest flyfish flyflap flyflapper flyflower flying flyingly flyings flyleaf flyleaves flyless flymaker flymakers flyman flymen flyness flyoff flyoffs flyover flyovers flypaper flypapers flypast flypasts flype flyped flypes flyping flypitch flypitcher flypitchers flypitches flyposting flypostings flyproof flysch flysches flysheet flysheets flyspeck flyspecked flyspecking flyspecks flyswat flyswatter flyswatters flytail flyte flyted flytes flytier flytiers flytime flyting flytings flytrap flytraps flyway flyways flyweight flyweights flywheel flywheels flywhisk flywhisks flywinch flywire flywort flânerie flâneur flâneurs flèche flèches fm fmt fn fname fnese fnma fo foal foaled foalfoot foalfoots foalhood foaling foals foaly foam foamable foambow foamed foamer foamers foamflower foamflowers foamier foamiest foamily foaminess foaminesses foaming foamingly foamings foamless foamlike foams foamy fob fobbed fobbing fobs focaccia focaccias focal focalisation focalisations focalise focalised focalises focalising focalization focalizations focalize focalized focalizes focalizing focally focaloid foci focimeter focimeters focimetry fockle focoids focometer focometry focsle focus focusable focused focuser focusers focuses focusing focusings focusless focussed focusses focussing fod fodda fodder foddered fodderer fodderers foddering fodderings fodderless fodders foder fodge fodgel fodient foe foedarie foedaries foederal foederati foederatus foederis foeffment foehn foehnlike foehns foeish foeless foelike foeman foemanship foemen foen foeniculum foenngreek foes foeship foetal foetalism foetalization foetation foeti foeticidal foeticide foeticides foetid foetider foetidest foetidness foetidnesses foetiferous foetiparous foetor foetors foetoscopies foetoscopy foeture foetus foetuses fofarraw fog fogas fogash fogashes fogbank fogbound fogbow fogbows fogdog fogdogs fogdom foge fogeater fogey fogeydom fogeydoms fogeyish fogeyism fogeyisms fogeys fogfruit fogfruits foggage foggaged foggages foggaging foggara fogged fogger foggers foggier foggiest foggily fogginess fogginesses fogging foggish foggy foghorn foghorns fogie fogies foglamp fogle fogles fogless foglietto fogman fogmen fogo fogon fogou fogproof fogram fogramite fogramites fogramities fogramity fograms fogrum fogs fogscoffer fogsignal fogsignals fogus fogy fogydom fogydoms fogyish fogyishness fogyism fogyisms foh fohat fohn fohns fohs foible foibles foiblesse foid foids foil foilable foilborne foiled foiler foiling foilings foilist foils foilsman foilsmen foin foined foining foiningly foins foison foisonless foisons foist foisted foister foisters foistiness foisting foists foisty foiter fokker fol folacin folacins folate folates folcgemot fold foldable foldage foldaway foldaways foldboat foldboater foldboating foldboats foldcourse folded foldedly folden folder folderol folderols folders folding foldings foldless foldout foldouts folds foldskirt foldstool foldup foldups foldure foldwards foldy fole foley foleye foleys folgerite folia foliaceous foliaceousness foliage foliaged foliageous foliages foliaging folial foliar foliary foliate foliated foliates foliating foliation foliations foliator foliature foliatures folic folie folies foliicolous foliiferous foliiform folily folio foliobranch foliobranchiate foliocellosis folioed folioing foliolate foliole folioles folioliferous foliolose folios foliose foliosity foliot folious foliously folium foliums folivore folivores folk folkboat folkcraft folkfree folkie folkier folkies folkiest folkish folkishness folkishnesses folkland folklands folklife folklike folklives folklore folklores folkloric folklorish folklorism folklorist folkloristic folklorists folkmoot folkmooter folkmoots folkmot folkmote folkmoter folkmotes folkmots folkright folks folksay folksey folksier folksiest folksily folksiness folksinesses folksinger folksingers folksinging folksingings folksong folksongs folksy folktale folktales folkway folkways folkweave folky foll foller folles folletage folletti folletto follicle follicles follicular folliculate folliculated follicule folliculin folliculitis folliculitises folliculose folliculosis folliculous follied follies folliful follily follis follow followable followed follower followers followership followerships followeth following followingly followings follows followup followups folly follyer follying follyproof folsom fomalhaut foment fomentation fomentations fomented fomenter fomenters fomenting fomento foments fomes fomite fomites fomor fomorian fon fonctionnaire fonctionnaires fond fonda fondaco fondak fondant fondants fondas fondateur fonded fonder fondest fonding fondish fondle fondled fondler fondlers fondles fondlesome fondlike fondling fondlingly fondlings fondly fondness fondnesses fondon fondouk fonds fondu fondue fondued fondues fonduing fonduk fondus fone fonly fonned fonning fonnish fono fons font fontal fontally fontanel fontanelle fontanelles fontanels fontange fontanges fonted fontenoy fontes fontful fonticuli fonticulus fonticuluses fontina fontinal fontinalaceous fontinalis fontinalises fontinas fontlet fontlets fonts foo foobar foobars food fooder foodful foodie foodies foodism foodisms foodless foodlessness foodlessnesses foods foodservices foodstuff foodstuffs foodways foody foofaraw foofaraws fool foolable foolbegged fooldom fooled fooler fooleries foolery fooless foolfish foolfishes foolhardier foolhardiest foolhardihood foolhardily foolhardiness foolhardinesses foolhardise foolhardised foolhardises foolhardiship foolhardising foolhardize foolhardized foolhardizes foolhardizing foolhardy foolhead foolheaded foolheadedness foolify fooling foolings foolish foolisher foolishest foolishly foolishness foolishnesses foolkiller foolkillers foollike foolmonger foolocracy foolproof foolproofness fools foolscap foolscaps foolship foon fooner foons foos fooster foosterer foot footage footages footback footbag footbags football footballene footballenes footballer footballers footballing footballist footballists footballs footband footbar footbars footbath footbaths footbeat footbed footbeds footblower footboard footboards footboy footboys footbreadth footbreadths footbridge footbridges footcandle footcandles footcloth footcloths footdragger footdraggers footed footedness footeite footer footers footfall footfalls footfarer footfault footfaulted footfaulting footfaults footfeed footfolk footful footganger footgear footgears footgeld footglove footgrip footguards foothalt foothil foothill foothills foothils foothold footholds foothook foothot footie footier footies footiest footing footingly footings footlambert footlamberts footle footled footler footlers footles footless footlessly footlessness footlessnesses footlet footlets footlicker footlicking footlight footlights footlike footling footlings footlining footlock footlocker footlockers footlog footlong footloose footmaker footman footmanhood footmanry footmanship footmark footmarks footmen footmenfootpad footmuff footmuffs footnote footnoted footnotes footnoting footpace footpaces footpad footpaddery footpads footpage footpages footpath footpaths footpick footplate footplateman footplatemen footplates footplatewoman footplatewomen footpost footposts footpound footpounds footprint footprints footra footrace footraces footracing footracings footrail footrails footras footrest footrests footrill footroom footrope footropes footrot footrots footrule footrules foots footscald footscraper footsie footsies footslog footslogged footslogger footsloggers footslogging footsloggings footslogs footsoldier footsoldiers footsore footsoreness footsorenesses footsores footstalk footstalks footstall footstalls footstep footsteps footstick footstock footstone footstones footstool footstooled footstools footsure footsy footwalk footwall footwalls footwarmer footwarmers footway footways footwear footwears footweary footwell footwells footwork footworks footworn footy fooyoung fooyung foozle foozled foozler foozlers foozles foozling foozlings fop fopdoodle fopling foplings fopped fopperies fopperly foppery fopping foppish foppishly foppishness foppishnesses foppy fops fopship for fora forage foraged foragement forager foragers forages foraging foralite foram foramen foramens foramina foraminal foraminate foraminated foramination foraminifer foraminifera foraminiferal foraminiferan foraminiferans foraminiferous foraminifers foraminose foraminous foraminulate foraminule foraminulose foraminulous forams forane foraneen foraneous foraramens foraramina forasmuch forastero foray forayed forayer forayers foraying forays forb forbad forbade forbar forbare forbarred forbathe forbbore forbborne forbear forbearable forbearance forbearances forbearant forbearantly forbearer forbearers forbearing forbearingly forbearingness forbears forbecause forbesite forbid forbidal forbidals forbiddable forbiddal forbiddals forbiddance forbiddances forbidden forbiddenly forbiddenness forbidder forbidders forbidding forbiddingly forbiddingness forbiddingnesses forbiddings forbids forbit forbite forblack forbled forblow forbode forboded forbodes forboding forbore forborn forborne forbow forbreak forbruise forbs forby forbye forbysen forbysening forcaria forcarve forcat forcats force forceable forced forcedly forcedness forcednesses forceful forcefully forcefulness forcefulnesses forceless forcelessness forcelet forcemeat forcemeats forcement forcene forceps forcepses forcepslike forceput forcer forcers forces forcet forchase forche forches forcibilities forcibility forcible forcibleness forciblenesses forcibly forcing forcingly forcipal forcipate forcipated forcipation forcipations forcipes forcipial forcipiform forcipressure forcipulate forcite forcive forcleave forclose forconceit forcut forcy ford fordable fordableness fordam fordays fordeal forded fordhooks fordid fording fordless fordo fordoes fordoing fordone fordrive fords fordull fordwine fordy fore foreaccounting foreaccustom foreacquaint foreact foreadapt foreadmonish foreadvertise foreadvice foreadvise foreallege foreallot foreanent foreannounce foreannouncement foreanswer foreappoint foreappointment forearm forearmed forearming forearms foreassign foreassurance forebackwardly forebar forebay forebays forebear forebearing forebears forebemoan forebemoaned forebespeak forebitt forebitten forebitter forebitters forebitts forebless foreboard forebode foreboded forebodement forebodements foreboder foreboders forebodes forebodies foreboding forebodingly forebodingness forebodingnesses forebodings forebody foreboom forebooms foreboot forebow forebowels forebowline forebows forebrace forebrain forebrains forebreast forebridge forebroads foreburton forebush foreby forebye forecabin forecabins forecaddie forecaddies forecar forecarriage forecarriages forecars forecast forecastable forecasted forecaster forecasters forecasting forecastingly forecastle forecastlehead forecastleman forecastlemen forecastles forecastors forecasts forecatching forecatharping forechamber forechase forecheck forechecked forechecker forecheckers forechecking forechecks forechoice forechoir forechoose forechosen forechurch forecited foreclaw foreclosable foreclose foreclosed forecloses foreclosing foreclosure foreclosures forecloth forecloths forecome forecomingness forecommend foreconceive foreconclude forecondemn foreconscious foreconsent foreconsider forecontrive forecool forecooler forecounsel forecount forecourse forecourses forecourt forecourts forecover forecovert foredamned foredate foredated foredates foredating foredawn foreday foredays foredeck foredecks foredeclare foredecree foredeem foredeep foredefeated foredefine foredenounce foredescribe foredeserved foredesign foredesignment foredesk foredestine foredestined foredestining foredestiny foredetermination foredetermine foredevised foredevote foredid forediscern foredispose foredivine foredo foredoes foredoing foredone foredoom foredoomed foredoomer foredooming foredooms foredoor foredune foreface forefaces forefather forefatherly forefathers forefault forefeel forefeeling forefeelingly forefeels forefeet forefelt forefence forefend forefended forefending forefends foreffelt forefield forefighter forefigure forefin forefinger forefingers forefit foreflank foreflap foreflipper forefoot forefront forefronts foregahger foregallery foregame foreganger foregate foregather foregathered foregathering foregathers foregift foregirth foreglance foregleam foregleams foreglimpse foreglimpsed foreglow forego foregoer foregoers foregoes foregoing foregoings foregone foregoneness foregonenesses foreground foregrounded foregrounding foregrounds foreguess foreguidance foregut foreguts forehalf forehall forehammer forehand forehanded forehandedly forehandedness forehandednesses forehanding forehands forehandsel forehard forehatch forehatchway forehead foreheaded foreheads forehear forehearth foreheater forehent forehented forehenting forehents forehew forehill forehinting forehock forehold forehood forehoof forehoofs forehook forehooves forehorse foreign foreigneering foreigner foreigners foreignership foreignisation foreignise foreignism foreignisms foreignization foreignize foreignly foreignness foreignnesses foreigns foreimagination foreimagine foreimpressed foreimpression foreinclined foreinstruct foreintend foreiron forejudge forejudged forejudgement forejudgements forejudger forejudges forejudging forejudgment forejudgments forekeel foreking forekings foreknee foreknew foreknow foreknowable foreknowableness foreknower foreknowing foreknowingly foreknowledge foreknowledges foreknown foreknows forel foreladies forelady forelaid forelain foreland forelands forelay forelaying forelays foreleader foreleech foreleg forelegs forelend forelending forelends forelent forelie forelied forelies forelift forelifted forelifting forelifts forelimb forelimbs forelive forellenstein forelock forelocked forelocking forelocks forelook foreloop forelooper foreloper forelouper forels forelying foremade foreman foremanship foremanships foremarch foremark foremartyr foremast foremasthand foremastman foremastmen foremasts foremean foremeaning foremeans foremeant foremelt foremen foremention forementioned foremessenger foremilk foremilks foremind foremisgiving foremistress foremost foremostly foremother foremothers forename forenamed forenames forenent forenews forenight forenights forenoon forenoons forenote forenoted forenotice forenotion forensal forensic forensical forensicalities forensicality forensically forensics foreordain foreordained foreordaining foreordainment foreordainments foreordains foreorder foreordinate foreordinated foreordinating foreordination foreordinations foreorlop forepad forepale forepaled forepaling foreparent foreparents forepart foreparts forepass forepassed forepast forepaw forepaws forepayment forepayments forepeak forepeaks foreperiod foreperson forepersons forepiece foreplace foreplan foreplanned foreplanning foreplans foreplanting foreplay foreplays forepleasure foreplot forepoint forepointed forepointer forepointing forepoints forepole forepoled forepoling foreporch forepossessed forepost forepredicament forepreparation foreprepare forepretended foreprise foreprize foreproduct foreproffer forepromise forepromised foreprovided foreprovision forepurpose forequarter forequarters forequoted forerake foreran forerank foreranks forereach forereached forereaches forereaching foreread forereading forereadings forereads forerecited forereckon forerehearsed foreremembered forereport forerequest forerevelation forerib foreribs forerigging foreright foreroom foreroyal forerun forerunner forerunners forerunnership forerunning forerunnings foreruns fores foresaddle foresaid foresail foresails foresaw foresay foresaying foresays forescene forescent foreschool foreschooling forescript foreseason foreseat foresee foreseeabilities foreseeability foreseeable foreseeing foreseeingly foreseen foreseer foreseers foresees foreseing foreseize foresend foresense foresentence foreset foresettle foresettled foresey foreshadow foreshadowed foreshadower foreshadowers foreshadowing foreshadowings foreshadows foreshaft foreshank foreshanks foreshape foresheet foresheets foreshew foreshewed foreshewing foreshewn foreshews foreshift foreship foreships foreshock foreshocks foreshoe foreshop foreshore foreshores foreshorten foreshortened foreshortening foreshortenings foreshortens foreshot foreshots foreshoulder foreshow foreshowed foreshower foreshowing foreshown foreshows foreshroud foreside foresides foresight foresighted foresightedly foresightedness foresightednesses foresightful foresightfulness foresightless foresights foresign foresignified foresignifies foresignify foresignifying foresin foresing foresinger foreskin foreskins foreskirt foreskirts foreslack foreslacked foreslacking foreslacks foresleeve foreslow foreslowed foreslowing foreslows foresound forespake forespeak forespeaker forespeaking forespeaks forespecified forespeech forespeed forespencer forespend forespending forespends forespent forespoke forespoken forest forestaff forestaffs forestage forestages forestair forestairs forestal forestall forestalled forestaller forestallers forestalling forestallings forestallment forestallments forestalls forestalment forestalments forestarling forestate forestation forestations forestaves forestay forestays forestaysail forestaysails forestcraft foresteal forested foresteep forestem forestep forester foresters forestership forestery forestful forestial forestick forestiera forestine foresting forestish forestland forestlands forestless forestlike forestology forestral forestress forestries forestry forests forestside forestudy forestwards foresty foresummer foresummon foreswear foresweared foreswearing foreswears foresweat foreswore foresworn foret foretack foretackle foretake foretalk foretalking foretaste foretasted foretaster foretastes foretasting foretaught foreteach foreteaches foreteaching foreteeth foretell foretellable foretellableness foreteller foretellers foretelling foretells forethink forethinker forethinkers forethinking forethinks forethough forethought forethoughted forethoughtful forethoughtfully forethoughtfulness forethoughtfulnesses forethoughtless forethoughts forethrift foretime foretimed foretimes foretoken foretokened foretokening foretokenings foretokens foretold foretooth foretop foretopgallant foretopman foretopmast foretopmasts foretopmen foretops foretopsail foretopsails foretrace foretriangle foretrysail foreturn foretype foretypified foreuse foreutter forevalue forever forevermore foreverness forevernesses forevers foreview forevision forevouch forevouched forevow foreward forewards forewarm forewarmer forewarn forewarned forewarner forewarners forewarning forewarningly forewarnings forewarns forewaters foreween foreweep foreweigh foreweighed foreweighing foreweighs forewent forewind forewinds forewing forewings forewinning forewisdom forewish forewit forewoman forewomen forewonted foreword forewords foreworld foreworn forewritten forewrought forex foreyard foreyards foreyear forfair forfaired forfairing forfairn forfairs forfaiter forfaiters forfaiting forfaitings forfalt forfar forfare forfars forfault forfaultable forfaulted forfaulter forfaulters forfaulting forfaults forfaulture forfaultures forfear forfeit forfeitable forfeitableness forfeited forfeiter forfeiters forfeiting forfeits forfeiture forfeitures forfend forfended forfending forfends forfeuchen forfex forfexes forficate forficated forfication forficiform forficula forficulate forficulidae forfit forfouchten forfoughen forfoughten forgab forgainst forgat forgather forgathered forgathering forgathers forgave forge forgeabilities forgeability forgeable forged forgedly forgeful forgeman forgemen forger forgeries forgers forgery forges forget forgetable forgetful forgetfully forgetfulness forgetfulnesses forgetive forgetness forgets forgett forgettable forgettably forgette forgetter forgetteries forgetters forgettery forgetting forgettingly forgettings forgie forgift forging forgings forgivable forgivableness forgivably forgive forgiveable forgiveably forgiveless forgiven forgiveness forgivenesses forgiver forgivers forgives forgiving forgivingly forgivingness forgivingnesses forgo forgoer forgoers forgoes forgoing forgone forgot forgotten forgottenness forgottennesses forgrow forgrown forhaile forhailed forhailes forhailing forhale forheed forhent forhented forhenting forhents forhoo forhooed forhooie forhooied forhooieing forhooies forhooing forhoos forhooy forhow forhowed forhowing forhows forinsec forinsecal forint forints forisfamiliate forisfamiliated forisfamiliates forisfamiliating forisfamiliation forisfamiliations forjaskit forjesket forjeskit forjudge forjudged forjudger forjudges forjudging forjudgment fork forkable forkball forkballer forkballers forkballs forkbeard forked forkedly forkedness forkednesses forker forkers forkful forkfuls forkhead forkheads forkier forkiest forkiness forkinesses forking forkless forklift forklifted forklifting forklifts forklike forkman forkmen forks forksful forksmith forktail forktails forkwise forky forlain forlana forlanas forlane forlay forleave forleaving forleft forleit forlend forlending forlends forlent forlese forleses forlesing forlet forletting forlie forlive forloin forlore forlorn forlorner forlornest forlornity forlornly forlornness forlornnesses forlorns form forma formabilities formability formable formably formae formagen formagenic formal formalazine formaldehyd formaldehyde formaldehydes formaldehydesulphoxylate formaldehydesulphoxylic formaldoxime formalesque formalin formalins formalisable formalisation formalisations formalise formalised formaliser formalisers formalises formalising formalism formalisms formalist formalistic formalistically formalists formaliter formalith formalities formality formalizable formalization formalizations formalize formalized formalizer formalizers formalizes formalizing formally formalness formalnesses formals formalwear formamide formamides formamidine formamido formamidoxime formanilide formant formants format formate formated formates formating formation formational formations formative formatively formativeness formatives formats formatted formatter formatters formatting formature formazan formazyl formboard formby forme formed formedon formee formel formelt formene formenic formentation former formeret formerly formerness formers formes formfeed formfeeds formfitting formful formiate formiates formic formica formican formicant formicaria formicarian formicaries formicariidae formicarioid formicarium formicarius formicaroid formicary formicas formicate formicated formicating formication formications formicative formicicide formicid formicidae formicide formicine formicivorous formidabilities formidability formidable formidableness formidablenesses formidably formidolous formin forminate forming formings formism formity formless formlessly formlessness formlessnesses formly formnail formol formolit formolite formols formonitrile formosa formosan formose formosity formous formoxime forms formula formulable formulae formulaic formulaically formulaize formular formularies formularisation formularisations formularise formularised formulariser formularisers formularises formularising formularism formularist formularistic formularization formularizations formularize formularized formularizer formularizers formularizes formularizing formulary formulas formulate formulated formulates formulating formulation formulations formulator formulators formulatory formule formulisation formulisations formulise formulised formuliser formulises formulising formulism formulisms formulist formulistic formulists formulization formulizations formulize formulized formulizer formulizers formulizes formulizing formwork formworks formy formyl formylal formylate formylated formylating formylation formyls fornacic fornaxid forncast fornenst fornent fornical fornicate fornicated fornicates fornicating fornication fornications fornicator fornicators fornicatory fornicatress fornicatresses fornicatrices fornicatrix fornices forniciform forninst fornix fornixes forold forpass forpet forpets forpine forpined forpines forpining forpit forpits forprise forra forrad forrader forrard forrarder forray forrayed forraying forrays forrel forren forride forril forrit forritsome forrue forsado forsaid forsake forsaken forsakenly forsakenness forsakennesses forsaker forsakers forsakes forsaking forsakings forsar forsay forsaying forsays forsee forseeable forseek forseen forset forseti forshape forslack forslacked forslacking forslacks forslake forsloe forsloed forsloeing forsloes forsloth forslow forslowed forslowing forslows forsook forsooth forspeak forspeaking forspeaks forspend forspending forspends forspent forspoke forspoken forspread forstall forstand forsteal forsterite forstraught forsung forswat forswatt forswear forswearer forswearing forswears forswink forswinked forswinking forswinks forswonck forswore forsworn forswornness forswornnesses forswunk forsythia forsythias fort fortake fortalice fortalices fortaxed fortaz forte forted fortemente fortepianist fortepianists fortepiano fortepianos fortes fortescue fortescure forth forthbring forthbringer forthbringing forthbrought forthby forthcall forthcame forthcome forthcomer forthcomes forthcoming forthcomingness forthcomings forthcut forthfare forthfigured forthgaze forthgo forthgoing forthgoings forthink forthinking forthinks forthon forthought forthputting forthright forthrightly forthrightness forthrightnesses forthrights forthset forthtell forthteller forthward forthwith forthy fortier forties fortieth fortieths fortifiable fortification fortifications fortified fortifier fortifiers fortifies fortify fortifying fortifyingly fortifys fortilage fortilages fortin forting fortiori fortis fortissimi fortissimo fortissimos fortississimo fortississimos fortitude fortitudes fortitudinous fortlet fortlets fortnight fortnightlies fortnightly fortnights fortran fortranh fortravail fortread fortress fortressed fortresses fortressing fortresslike forts fortuities fortuitism fortuitisms fortuitist fortuitists fortuitous fortuitously fortuitousness fortuitousnesses fortuitus fortuity fortuna fortunate fortunately fortunateness fortunatenesses fortunation fortune fortuned fortunel fortuneless fortunella fortunes fortunetell fortuneteller fortunetellers fortunetelling fortunetellings fortuning fortunite fortunize fortunized fortunizes fortunizing fortunous fortuuned forty fortyfive fortyfives fortyfold fortyish fortypenny forum forumise forumize forums forvay forwake forwaked forwalk forwander forwandered forwandering forwanders forward forwardable forwardal forwardation forwarded forwarder forwarders forwardest forwarding forwardings forwardly forwardness forwardnesses forwards forwardsearch forwarn forwarned forwarning forwarns forwaste forwasted forwastes forwasting forwean forwear forwearied forwearies forweary forwearying forweend forweep forwelk forwent forwhy forwoden forworden forwore forwork forworn forwrap foryield forz forzandi forzando forzandos forzati forzato forzatos forçat forçats foscarnet foscarnets fosh fosie foss fossa fossae fossage fossane fossarian fossas fossate fosse fossed fosses fosset fossette fossettes fossick fossicked fossicker fossickers fossicking fossickings fossicks fossified fossiform fossil fossilage fossilated fossilation fossildom fossiled fossiliferous fossilification fossilify fossilisable fossilisation fossilisations fossilise fossilised fossilises fossilising fossilism fossilist fossilizable fossilization fossilizations fossilize fossilized fossilizes fossilizing fossilled fossillike fossilogist fossilogy fossilological fossilologist fossilology fossils fosslfying fosslify fosslology fossor fossores fossorial fossorious fossors fossula fossulae fossulas fossulate fossule fossulet fostell foster fosterable fosterage fosterages fostered fosterer fosterers fosterhood fostering fosteringly fosterings fosterite fosterland fosterling fosterlings fosters fostership fostress fostresses fot fotch fotched fother fothered fothergilla fothergillas fothering fothers fotive fotmal fots fotui fou fouat fouats foud foudrie foudries foudroyant fouds fouer fouest fouet fouets fouett fouetta fouettas fouette fouettee fouettes fouetté fougade fougades fougasse fougasses fought foughten foughtier foughtiest foughty fougue foujdar foujdarry foujdary foul foulage foulard foulards foulbrood foulbroods foulder fouldered fouldering foulders fouldre foule fouled fouler foulers foulest fouling foulings foulish foully foulmart foulmarts foulminded foulmouth foulmouthed foulmouthedly foulmouthedness foulness foulnesses fouls foulsome foulé foumart foumarts foun founce found foundation foundational foundationally foundationary foundationed foundationer foundationers foundationless foundationlessness foundations founded founder foundered foundering founderous founders foundership foundery founding foundings foundling foundlings foundress foundresses foundries foundrous foundry foundryman foundrymen founds fount fountain fountained fountaineer fountainhead fountainheads fountaining fountainless fountainlet fountainlike fountainous fountainously fountains fountainwise founte fountful founts fouquieria fouquieriaceae fouquieriaceous four fourb fourbagger fourball fourberie fourble fourcha fourche fourchee fourcher fourchet fourchette fourchettes fourchite fourdrinier fourdriniers fourer foureyed fourfiusher fourflusher fourflushers fourfold fourfoldness fourfoldnesses fourgon fourgons fourhanded fourier fourierism fourling fourneau fourness fourniture fourpence fourpences fourpennies fourpenny fourplex fourplexes fourposter fourposters fourpounder fourquine fourrag fourragare fourragares fourragere fourrageres fourre fourrier fours fourscore fourscores fourscorth fourses foursome foursomes foursquare foursquarely foursquareness foursquares fourstrand fourteen fourteener fourteeners fourteenfold fourteens fourteenth fourteenthly fourteenths fourth fourther fourthly fourths fourwheeled fous foussa foussas foustier foustiest fousty foute fouter foutered foutering fouters fouth fouths foutra foutras foutre foutred foutres foutring fouty fovea foveae foveal foveas foveate foveated foveation foveiform fovent foveola foveolae foveolar foveolarious foveolas foveolate foveolated foveole foveoles foveolet foveolets fovilla fow fowage fowells fowent fowk fowl fowled fowler fowlerite fowlers fowlery fowlfoot fowling fowlingpiece fowlingpieces fowlings fowlpox fowlpoxes fowls fowth fowths fox foxbane foxberries foxberry foxchop foxed foxer foxery foxes foxfeet foxfinger foxfire foxfires foxfish foxfishes foxglove foxgloves foxhole foxholes foxhound foxhounds foxhunt foxhunted foxhunter foxhunters foxhunting foxhuntings foxhunts foxie foxier foxiest foxily foxiness foxinesses foxing foxings foxish foxite foxlike foxly foxproof foxshark foxsharks foxship foxships foxskin foxskins foxtail foxtailed foxtails foxtongue foxtrot foxtrots foxtrotted foxtrotting foxwood foxy foy foyaite foyaitic foyboat foyer foyers foyle foyled foyles foyling foyne foyned foynes foyning foys foysen fozier foziest foziness fozinesses fozy fp fplot fpm fps fpsps fr fra frab frabbed frabbing frabbit frabjous frabjously frabous frabs fracas fracases fracedinous frache fracid frack fracking frackings fract fractable fractabling fractal fractalities fractality fractals fracted fracti fractile fracting fraction fractional fractionalisation fractionalisations fractionalise fractionalised fractionalises fractionalising fractionalism fractionalisms fractionalist fractionalists fractionalization fractionalizations fractionalize fractionalized fractionalizes fractionalizing fractionally fractionary fractionate fractionated fractionates fractionating fractionation fractionations fractionator fractionators fractioned fractioning fractionisation fractionisations fractionise fractionised fractionises fractionising fractionization fractionizations fractionize fractionized fractionizes fractionizing fractionlet fractionlets fractions fractious fractiously fractiousness fractiousnesses fractocumulus fractographies fractography fractonimbus fractostratus fracts fractuosity fractur fracturable fracturableness fractural fracture fractured fractureproof fractures fracturing fracturs fractus fradicin frae fraela fraena fraenula fraenular fraenulum fraenum fraenums frag fragaria fragged fragger fraggers fragging fraggings fraghan fragile fragilely fragileness fragilenesses fragiler fragilest fragilities fragility fragment fragmental fragmentalize fragmentally fragmentarily fragmentariness fragmentarinesses fragmentary fragmentate fragmentated fragmentates fragmentating fragmentation fragmentations fragmented fragmenting fragmentisation fragmentise fragmentised fragmentiser fragmentises fragmentising fragmentist fragmentitious fragmentization fragmentizations fragmentize fragmentized fragmentizer fragmentizers fragmentizes fragmentizing fragments fragor fragors fragrance fragranced fragrances fragrancies fragrancing fragrancy fragrant fragrantly fragrantness fragrantnesses frags fraicheur fraid fraidycat fraik frail fraile frailejon frailer frailero fraileros frailes frailest frailish frailly frailness frailnesses frails frailtee frailtees frailties frailty fraim fraims fraischeur fraise fraised fraiser fraises fraising fraist fraken frakfurt fraktur frakturs framable framableness frambesia frambesias framboesia framboesias framboise framboises frame framea frameable frameableness frameae framed frameless framer framers frames frameshift frameshifts framesmith framework frameworks framing framings frammit frampal frampler framplers frampold franc franca francas france frances franchisability franchisable franchisal franchise franchised franchisee franchisees franchisement franchisements franchiser franchisers franchises franchising franchisor franchisors francia francic francis francisc francisca franciscan franciscans francisco francium franciums francize francized francizes francizing franco francoa francolin francolins francolite francomania francomanias francophil francophile francophiles francophils francophobe francophobes francophobia francophobias francophone francophones francs frangent franger frangibilities frangibility frangible frangibleness frangiblenesses frangipane frangipanes frangipani frangipanis frangipanni franglais frangula frangulic frangulin frangulinic franion franions frank frankability frankable frankalmoign frankalmoigne frankalmoigns frankalmoin franked frankeniaceous frankenstein frankensteins franker frankers frankest frankfold frankfort frankforter frankforters frankforts frankfurt frankfurter frankfurters frankfurts frankhearted frankheartedly frankheartedness frankheartness frankincense frankincensed frankincenses franking frankish franklandite franklin franklinian frankliniella franklinite franklinites franklins frankly frankmarriage frankness franknesses frankpledge frankpledges franks franseria franserias frantic frantically franticly franticness franticnesses franz franzier franziest franzy frap frape fraple frapler frapp frappa frappant frappe frapped frappee frappeed frappeing frappes frapping frappé frappée fraps frare frary fras frascati frascatis frasco frase fraser frasera frasier frass frasse frasses frat fratch fratched fratcheous fratcher fratches fratchety fratchier fratchiest fratching fratchy frate frater fratercula frateries fraternal fraternalism fraternalisms fraternalist fraternality fraternally fraternate fraternation fraternisation fraternisations fraternise fraternised fraterniser fraternisers fraternises fraternising fraternism fraternities fraternity fraternization fraternizations fraternize fraternized fraternizer fraternizers fraternizes fraternizing fraters fratery frati fratority fratriage fratricidal fratricide fratricides fratries fratry frats frau fraud frauder fraudful fraudfully fraudless fraudlessly fraudlessness fraudproof frauds fraudsman fraudsmen fraudster fraudsters fraudulence fraudulences fraudulencies fraudulency fraudulent fraudulently fraudulentness fraudulentnesses frauen fraughan fraught fraughtage fraughtages fraughted fraughter fraughtest fraughting fraughts fraulein frauleins fraunch fraus frautage frautages fravashi frawn fraxetin fraxin fraxinella fraxinellas fraxinus fray frayed frayedly frayedness fraying frayings frayn frayne frayproof frays fraze frazed frazer frazil frazils frazing frazzle frazzled frazzles frazzling fraîcheur frden freak freakdom freaked freakery freakful freakier freakiest freakily freakiness freakinesses freaking freakish freakishly freakishness freakishnesses freakout freakouts freakpot freaks freaky fream freath freck frecked frecken freckened frecket freckle freckled freckledness freckleproof freckles frecklier freckliest freckliness freckling frecklings frecklish freckly fred fredaine fredaines freddo frederick fredericksburg fredericton frederik fredricite free freebase freebased freebaser freebasers freebases freebasing freebee freebees freebie freebies freeboard freeboards freeboot freebooted freebooter freebooteries freebooters freebootery freebooties freebooting freebootings freeboots freebooty freeborn freeby freed freedman freedmen freedom freedoms freedoot freedstool freedwoman freedwomen freefd freeform freehand freehanded freehandedly freehandedness freehandednesses freehearted freeheartedly freeheartedness freehold freeholder freeholders freeholdership freeholding freeholds freeing freeings freeish freelage freelance freelanced freelancer freelancers freelances freelancing freeload freeloaded freeloader freeloaders freeloading freeloadings freeloads freeloving freelovism freely freeman freemanship freemartin freemartins freemason freemasonic freemasonical freemasonism freemasonries freemasonry freemasons freemen freen freend freeness freenesses freenet freenets freephone freephones freeport freer freers frees freesheet freesheets freesia freesias freesilverism freesilverite freesp freespac freespace freest freestanding freestone freestones freestyle freestyler freestylers freestyles freet freetail freethink freethinker freethinkers freethinking freethinkings freetier freetiest freetown freetrader freets freety freeward freeware freewares freeway freeways freewheel freewheeled freewheeler freewheelers freewheeling freewheelingly freewheelingness freewheelings freewheels freewill freewoman freewomen freewriting freewritings freezable freeze freezed freezer freezers freezes freezing freezingly freezings freezy fregata fregatidae fregit freibergite freieslebenite freiezlebenhe freight freightage freightages freighted freighter freighters freighting freightless freightliner freightliners freightment freights freightyard freijo freinage freir freit freith freitier freitiest freits freity fremd fremdly fremdness fremds fremescence fremescences fremescent fremit fremits fremitus fremituses fremontia fremontodendron fremt fren frena frenal frenate french frenched frenchen frenches frenchification frenchifications frenchified frenchifies frenchify frenchifying frenching frenchism frenchman frenchmen frenchwoman frenchwomen frenetic frenetical frenetically freneticism freneticisms frenetics frenne frenula frenular frenulum frenulums frenum frenums frenuna frenzelite frenzic frenzical frenzied frenziedly frenziedness frenzies frenzily frenzy frenzying freon freons freq frequence frequences frequencies frequency frequent frequentable frequentage frequentation frequentations frequentative frequentatives frequented frequenter frequenters frequentest frequenting frequently frequentness frequentnesses frequents frere freres frescade frescades fresco frescoed frescoer frescoers frescoes frescoing frescoings frescoist frescoists frescos fresh freshed freshen freshened freshener fresheners freshening freshens fresher fresherdom fresherdoms freshers freshes freshest freshet freshets freshhearted freshing freshish freshly freshman freshmanhood freshmanic freshmanship freshmanships freshmen freshment freshness freshnesses freshwater freshwaters freshwoman fresison fresne fresnel fresnels fresno fress fressed fresser fressers fresses fressing fret fretboard fretful fretfully fretfulness fretfulnesses fretish fretize fretless fretman fretmen frets fretsaw fretsaws fretsome frett frettage frettation frette fretted fretten fretter fretters frettier frettiest fretting frettingly frettings fretty fretum fretways fretwise fretwork fretworked fretworks freud freudian freudianism freudians frey freya freyalite freyja freyr frg fri friabilities friability friable friableness friablenesses friand friande friandise friar friarbird friarbirds friarhood friaries friarling friarly friars friary friation frib fribble fribbled fribbleism fribbler fribblers fribblery fribbles fribbling fribblish fribby friborg friborgh fribourg fricace fricadel fricadels fricandeau fricandeaus fricandeaux fricandel fricandelle fricando fricandoes fricassee fricasseed fricasseeing fricassees fricasseing frication fricative fricatives fricatrice fricht frichted frichting frichts frickle fricti friction frictionable frictional frictionally frictionise frictionize frictionized frictionizing frictionless frictionlessly frictionlessness frictionproof frictions friday fridays fridge fridged fridges fridging fridstool fried friedcake friedcakes friedelite friedman friedrichsdor friend friended friending friendings friendless friendlessness friendlessnesses friendlier friendlies friendliest friendlike friendlily friendliness friendlinesses friendliwise friendly friends friendship friendships frier friers fries friese frieseite friesian frieze friezed friezelike friezer friezes friezing friezy frig frigage frigate frigates frigatoon frigatoons frigefact friges frigg frigga frigged frigger friggers frigging friggings friggle fright frightable frighted frighten frightenable frightened frightenedly frightenedness frightener frighteners frightening frighteningly frighteningness frightens frighter frightful frightfully frightfulness frightfulnesses frighting frightless frightment frights frightsome frighty frigid frigidaire frigidaria frigidarium frigiddaria frigider frigidest frigidities frigidity frigidly frigidness frigidnesses frigidoreceptor frigiferous frigolabile frigor frigoric frigorie frigorific frigorifical frigorifico frigorificos frigorify frigorimeter frigostable frigot frigotherapy frigots frigs frijol frijole frijoles frijolillo frijolito frike frikkadel frikkadels frilal frill frillback frilled friller frillers frillery frillier frillies frilliest frillily frilliness frillinesses frilling frillings frills frilly frim frimaire frimitts fringe fringed fringeflower fringefoot fringehead fringeless fringelet fringelike fringent fringepod fringes fringier fringiest fringilla fringillaceous fringillid fringillidae fringilliform fringilline fringilloid fringiness fringing fringy fripon friponerie friponnerie fripons fripper fripperer fripperers fripperies frippers frippery frippet frippets fris frisa frisado frisbee frisbees frisca friscal frisch frisco frise frisee frisees frises frisette frisettes friseur friseurs frisian frisk friska friskas frisked frisker friskers friskest frisket friskets friskful friskier friskiest friskily friskin friskiness friskinesses frisking friskingly friskings friskle frisks frisky frislet frisolee frison friss frisson frissons frist fristed fristing frists frisure friszka frisée frit frites fritflies fritfly frith frithborgh frithborh frithborhs frithbot frithgild frithgilds frithles friths frithsoken frithsokens frithstool frithstools frithwork frithy fritillaria fritillarias fritillaries fritillary fritniency frits fritt frittata frittatas fritted fritter frittered fritterer fritterers frittering fritters fritting fritts friture fritures fritz fritzes frivol frivoled frivoler frivolers frivoling frivolism frivolist frivolities frivolity frivolize frivolized frivolizing frivolled frivoller frivollers frivolling frivolous frivolously frivolousness frivolousnesses frivols frixion frizado frize frized frizel frizer frizers frizes frizette frizettes frizing frizz frizzante frizzed frizzen frizzer frizzers frizzes frizzier frizziest frizzily frizziness frizzinesses frizzing frizzle frizzled frizzler frizzlers frizzles frizzlier frizzliest frizzling frizzly frizzy fro frock frocked frocking frockings frockless frocklike frockmaker frocks froe froelichia froeman froes frog frogbit frogbits frogeater frogeye frogeyed frogeyes frogface frogfish frogfishes frogflower frogfoot frogged frogger froggeries froggery froggier froggies froggiest frogginess frogging frogginged frogginging froggings froggish froggy froghood froghopper froghoppers frogland frogleaf frogleg froglet froglets froglike frogling froglings frogman frogmarch frogmarched frogmarches frogmarching frogmen frogmouth frogmouths frognose frogs frogskin frogskins frogspawn frogstool frogtongue frogwort frohlich froideur froideurs froise froises froisse frokin frolic frolicful frolicked frolicker frolickers frolicking frolickly frolicks frolicky frolicly frolicness frolics frolicsome frolicsomely frolicsomeness frolicsomenesses from fromage fromages fromenties fromenty fromfile fromward fromwards frond frondage frondages frondation fronde fronded frondent frondesce frondesced frondescence frondescences frondescent frondescing frondeur frondeurs frondiferous frondiform frondigerous frondivorous frondless frondlet frondose frondosely frondous fronds frons front frontad frontage frontager frontagers frontages frontal frontalis frontalities frontality frontally frontals frontate frontbench frontbencher frontbenchers frontbenches frontcourt frontcourts fronted frontenis frontenises fronter frontes frontier frontiered frontiering frontierless frontierlike frontierman frontiers frontiersman frontiersmen frontierswoman frontierswomen frontignac frontignan fronting frontingly frontis frontispiece frontispieced frontispieces frontispiecing frontlash frontless frontlessly frontlessness frontlet frontlets frontline frontlines frontlist frontlists frontman frontmen frontmost frontoauricular frontoethmoid frontogeneses frontogenesis frontolyses frontolysis frontomalar frontomallar frontomaxillary frontomental fronton frontonasal frontons frontooccipital frontoon frontoons frontoorbital frontoparietal frontopontine frontosphenoidal frontosquamosal frontotemporal frontozygomatic frontpiece frontrunner frontrunners fronts frontsman frontspiece frontspieces frontstall fronture frontward frontwards frontways frontwise froom froppish frore froren frorn frorne frory fros frosh frosk frost frostation frostbird frostbit frostbite frostbiter frostbites frostbiting frostbitings frostbitten frostbound frostbow frosted frosteds froster frostfish frostfishes frostflower frostian frostier frostiest frostily frostiness frostinesses frosting frostings frostless frostlike frostnipped frostproof frostproofing frostroot frosts frostweed frostwork frostworks frostwort frosty frot froth frothed frother frotheries frothers frothery frothier frothiest frothily frothiness frothinesses frothing frothless froths frothsome frothy frottage frottages frotted frotteur frotteurism frotteurs frotting frottola frottole frotton froufrou froufrous frough froughier froughiest froughy frounce frounced frounceless frounces frouncing frousier frousiest froust frousty frousy frouze frouzier frouziest frouzy frow froward frowardly frowardness frowardnesses frowards frower frowie frowier frowiest frowl frown frowned frowner frowners frownful frowning frowningly frownless frowns frowny frows frowsier frowsiest frowsily frowsiness frowst frowsted frowster frowsters frowstier frowstiest frowstily frowstiness frowstinesses frowsting frowsts frowsty frowsy frowy frowze frowzier frowziest frowzily frowziness frowzinesses frowzled frowzly frowzy froze frozen frozenhearted frozenly frozenness frozennesses frs frsiket frsikets frt frubbish fruchtschiefer fructan fructans fructed fructescence fructescent fructiculose fructicultural fructiculture fructidor fructiferous fructiferously fructiferousness fructification fructifications fructificative fructified fructifier fructifies fructiform fructify fructifying fructiparous fructive fructivorous fructokinase fructosan fructose fructoses fructoside fructuaries fructuarius fructuary fructuate fructuated fructuates fructuating fructuation fructuations fructuose fructuosity fructuous fructuously fructuousness fructure fructus frug frugal frugalism frugalist frugalists frugalities frugality frugally frugalness frugalnesses fruggan frugged fruggin frugging frugiferous frugiferousness frugivore frugivores frugivorous frugs fruict fruicts fruit fruitade fruitage fruitages fruitarian fruitarianism fruitarians fruitbearing fruitcake fruitcakes fruitcakey fruited fruiter fruiterer fruiterers fruiteress fruiteresses fruiteries fruiters fruitery fruitester fruitful fruitfuller fruitfullest fruitfullness fruitfully fruitfulness fruitfulnesses fruitgrower fruitgrowing fruitier fruitiest fruitily fruitiness fruitinesses fruiting fruitings fruition fruitions fruitist fruitive fruitless fruitlessly fruitlessness fruitlessnesses fruitlet fruitlets fruitlike fruitling fruits fruitstalk fruittime fruitwise fruitwoman fruitwomen fruitwood fruitwoods fruitworm fruity frumaryl frument frumentaceous frumentarious frumentation frumentations frumenties frumentum frumenty frumety frump frumped frumperies frumpery frumpier frumpiest frumpily frumpiness frumpinesses frumping frumpish frumpishly frumpishness frumple frumpled frumples frumpling frumps frumpy frundel frunze frush frushed frushes frushing frusla frust frusta frustrable frustraneous frustrate frustrated frustratedly frustrately frustrater frustraters frustrates frustrating frustratingly frustration frustrations frustrative frustratory frusts frustula frustule frustulent frustules frustulose frustulum frustum frustums frutage frutescence frutescences frutescent frutex fruticant fruticeous frutices fruticeta fruticetum fruticose fruticous fruticulose fruticulture frutified frutifies frutify frutifying frutilla fruz frwy fry fryable frybread frybreads fryer fryers frying fryings frypan frypans fräulein fräuleins frère frères fs fsb fsh fsiest fstore ft fth fthm ftncmd ftnerr ftp ftped ftper ftpers ftping ftps fu fuage fub fubar fubbed fubberies fubbery fubbier fubbiest fubbing fubby fubs fubsier fubsiest fubsy fucaceae fucaceous fucales fucate fucation fucatious fuchi fuchsia fuchsias fuchsin fuchsine fuchsines fuchsinophil fuchsinophilous fuchsins fuchsite fuchsites fuchsone fuci fucinita fuciphagous fucivorous fuck fucked fucker fuckers fuckface fuckfaces fuckhead fuckheads fucking fuckings fuckoff fuckoffs fucks fuckup fuckups fuckwit fucoid fucoidal fucoidin fucoids fucosan fucose fucoses fucous fucoxanthin fucoxanthine fucoxanthins fucus fucused fucuses fud fudder fuddies fuddle fuddlebrained fuddled fuddledness fuddlement fuddler fuddlers fuddles fuddling fuddlings fuddy fuder fudge fudged fudger fudges fudging fudgy fuds fuegian fuego fuehrer fuehrers fuel fueled fueler fuelers fueling fueliser fuelizer fuelled fueller fuellers fuelling fuels fuelwood fuelwoods fuero fueros fuerte fuff fuffed fuffier fuffiest fuffing fuffit fuffle fuffs fuffy fufu fufus fug fugacious fugaciously fugaciousness fugaciousnesses fugacities fugacity fugacy fugal fugally fugara fugard fugate fugato fugatos fugged fuggier fuggiest fuggily fugging fuggy fughetta fughettas fughette fugie fugient fugies fugio fugios fugit fugitate fugitated fugitating fugitation fugitations fugitive fugitively fugitiveness fugitivenesses fugitives fugitivism fugitivity fugle fugled fugleman fuglemanship fuglemen fugler fugles fuglier fugliest fugling fugly fugs fugu fugue fugued fuguelike fugues fuguing fuguist fuguists fugus fuhn fuhrer fuhrers fuidhir fuirdays fuji fujis fujiyama fukien fukkianese fukuoka fula fulah fulani fulciform fulciment fulcra fulcraceous fulcral fulcrate fulcrum fulcrumage fulcrumed fulcruming fulcrums fulfil fulfill fulfilled fulfiller fulfillers fulfilling fulfillings fulfillment fulfillments fulfills fulfilment fulfilments fulfils fulful fulfullment fulgence fulgencies fulgency fulgent fulgently fulgentness fulgid fulgide fulgidity fulgor fulgorid fulgoridae fulgorous fulgors fulgour fulgourous fulgours fulgural fulgurant fulgurantly fulgurata fulgurate fulgurated fulgurates fulgurating fulguration fulgurations fulgurator fulgurite fulgurites fulgurous fulham fulhams fulica fulicine fuliginosities fuliginosity fuliginous fuliginously fuliginousness fuligo fuliguline fulimart fulk full fullage fullages fullam fullams fullan fullans fullback fullbacks fullbodied fulldo fulled fuller fullerboard fullered fullerene fullerenes fulleries fullering fullers fullery fullest fullface fullfaces fullfil fullgrownness fullhearted fulling fullish fullmouth fullmouthed fullmouthedly fullness fullnesses fullom fulls fullstops fullterm fulltime fullword fullwords fully fullymart fulmar fulmars fulmarus fulmen fulmicotton fulmina fulminancy fulminant fulminants fulminate fulminated fulminates fulminating fulmination fulminations fulminator fulminators fulminatory fulmine fulmined fulmineous fulmines fulminic fulmining fulminous fulminurate fulminuric fulness fulnesses fulsamic fulsome fulsomely fulsomeness fulsomenesses fulsomer fulsomest fulth fulton fultz fulvene fulvescent fulvid fulvidness fulvous fulwa fulyie fulzie fum fuma fumacious fumade fumado fumadoes fumados fumage fumages fumagine fumant fumarase fumarases fumarate fumarates fumaria fumariaceae fumariaceous fumaric fumarin fumarine fumarium fumaroid fumaroidal fumarole fumaroles fumarolic fumaryl fumatoria fumatories fumatorium fumatoriums fumatory fumattoria fumble fumbled fumbler fumblers fumbles fumbling fumblingly fumblingness fumbulator fume fumed fumeless fumelike fumer fumerel fumerole fumeroles fumeroot fumers fumes fumet fumets fumette fumettes fumetti fumetto fumeuse fumeuses fumewort fumid fumidity fumiduct fumier fumiest fumiferana fumiferous fumify fumigant fumigants fumigate fumigated fumigates fumigating fumigation fumigations fumigator fumigatories fumigatorium fumigators fumigatory fumily fuminess fuming fumingly fumish fumishing fumishly fumishness fumistery fumitories fumitory fummel fummle fumose fumosities fumosity fumous fumously fums fumuli fumulus fumy fun funambulant funambulate funambulated funambulates funambulating funambulation funambulations funambulator funambulators funambulatory funambule funambulic funambulism funambulisms funambulist funambulists funambulo funambuloes funariaceous funboard funboards funbre function functional functionalise functionalism functionalisms functionalist functionalistic functionalists functionalities functionality functionalize functionalized functionalizing functionally functionals functionaries functionarism functionary functionate functionated functionates functionating functionation functioned functioning functionise functionize functionless functionlessness functionnaire functions functor functorial functors functus fund fundable fundal fundament fundamental fundamentalism fundamentalisms fundamentalist fundamentalistic fundamentalists fundamentalities fundamentality fundamentally fundamentalness fundamentals fundaments fundatorial fundatrices fundatrix funded funder funders fundholder fundholders fundholding fundi fundic fundie fundies fundiform funding fundings fundis funditor funditores fundless fundmonger fundmongering fundraise fundraised fundraiser fundraisers fundraises fundraising fundraisings funds funduck funduline fundulus fundungi fundus fundy funebral funebre funebrial funebrious funebrous funeral funeralise funeralize funerally funerals funerary funerate funeration funereal funereality funereally funerealness funest funestal funfair funfairs funfest funfests fung fungaceous fungal fungals fungate fungated fungating fungation funge fungi fungia fungian fungibilities fungibility fungible fungibles fungic fungicidal fungicidally fungicide fungicides fungicolous fungid fungiferous fungiform fungify fungilliform fungillus fungin fungistat fungistatic fungistatically fungistats fungite fungitoxic fungitoxicity fungivorous fungo fungoes fungoid fungoidal fungoids fungological fungologist fungology fungose fungosities fungosity fungous fungs fungus fungused funguses funguslike fungusy funhouse funhouses funic funicle funicles funicular funiculars funiculate funicule funiculi funiculitis funiculus funiform funiliform funipendulous funis funk funka funkaceae funked funker funkers funkhole funkholes funkia funkias funkier funkiest funkily funkiness funkinesses funking funks funky funli funmaker funmaking funned funnel funneled funnelform funneling funnelled funnellike funnelling funnels funnelwise funner funnest funnier funnies funniest funnily funniment funniness funninesses funning funny funnyman funnymen funori funorin funs funster funsters funt funèbre fur furacana furacious furaciousness furaciousnesses furacities furacity fural furaldehyde furals furan furandi furane furanes furanoid furanose furanoses furanoside furanosides furans furazan furazane furazolidone furazolidones furbearer furbearers furbearing furbelow furbelowed furbelowing furbelows furbish furbishable furbished furbisher furbishers furbishes furbishing furbishment furca furcae furcal furcate furcated furcately furcates furcating furcation furcations furcellate furciferine furciferous furciform furcilia furcraea furcraeas furcula furculae furcular furculas furcule furculum furdel furder furdle fureur furfair furfairs furfur furfuraceous furfuraceously furfural furfuralcohol furfuraldehyde furfuraldehydes furfurals furfuramid furfuramide furfuran furfurans furfuration furfures furfurine furfuroid furfurol furfurole furfuroles furfurols furfurous furfurs furfuryl furfurylidene furial furiant furibund furicane furied furies furify furil furile furilic furiosa furiosities furiosity furioso furiosos furious furiouser furiousity furiously furiousness furiousnesses furison furivae furl furlable furlana furlanas furlane furled furler furlers furless furlike furling furlong furlongs furlough furloughed furloughing furloughs furls furmente furmenties furmenty furmeties furmety furmint furmities furmity furn furnace furnaced furnacelike furnaceman furnacemen furnacer furnaces furnacing furnacite furnage furnariidae furnarius furner furniment furniments furnish furnishable furnished furnisher furnishers furnishes furnishing furnishings furnishment furnishments furnishness furnit furniture furnitureless furnitures furo furoate furodiazole furoic furoid furoin furol furole furoles furols furomethyl furomonazole furor furore furores furors furos furosemide furosemides furphies furphy furr furred furrier furriered furrieries furriers furriery furries furriest furrily furriner furriners furriness furrinesses furring furrings furrow furrowed furrower furrowers furrowing furrowless furrowlike furrows furrowy furrs furrure furry furs fursemide furstone furth furthcoming furthcomings further furtherance furtherances furthered furtherer furtherers furtherest furthering furtherly furthermore furthermost furthers furthersome furthest furthy furtive furtively furtiveness furtivenesses furtum furuncle furuncles furuncular furunculoid furunculoses furunculosis furunculous furunculus fury furyl furze furzechat furzed furzeling furzery furzes furzetop furzier furziest furzy fusain fusains fusanus fusaria fusarial fusariose fusariosis fusarium fusarol fusarole fusaroles fusarols fusate fusc fuscescent fuscin fuscoboletinus fuscohyaline fuscous fuse fuseau fuseboard fusebox fuseboxes fused fusee fusees fusel fuselage fuselages fuseless fuselike fusels fuseplug fuses fusetron fushion fushionless fushions fusht fusibilities fusibility fusible fusibleness fusiblenesses fusibly fusiform fusil fusilade fusiladed fusilades fusilading fusile fusileer fusileers fusilier fusiliers fusillade fusilladed fusillades fusillading fusillation fusillations fusilli fusillis fusilly fusils fusing fusinist fusinite fusion fusional fusionism fusionisms fusionist fusionists fusionless fusions fusk fusobacteria fusobacterium fusobteria fusoid fuss fussbudget fussbudgets fussbudgety fussed fusser fussers fusses fussier fussiest fussification fussify fussily fussiness fussinesses fussing fussle fussock fusspot fusspots fussy fust fustanella fustanellas fustanelle fusted fustee fuster fusteric fustet fustets fustian fustianise fustianised fustianises fustianish fustianising fustianist fustianists fustianize fustianized fustianizes fustianizing fustians fustic fustics fustie fustier fustiest fustigate fustigated fustigates fustigating fustigation fustigations fustigator fustigatory fustilarian fustilarians fustilirian fustilirians fustillirian fustillirians fustilugs fustily fustin fustinella fustiness fustinesses fusting fustle fustoc fustocs fusts fusty fusula fusulae fusulas fusulinid fusulinids fusuma fusure fut futchel futchell futchels fute futharc futharcs futhark futharks futhermore futhorc futhorcs futhork futhorks futile futilely futileness futilenesses futiler futilest futiley futilise futilitarian futilitarianism futilitarianisms futilitarians futilities futility futilize futilous futon futons futtah futter futteret futtermassel futtock futtocks futurable futural futurama futuramic future futureless futurelessness futurelessnesses futurely futureness futures futuric futurise futurism futurisms futurist futuristic futuristically futuristics futurists futurities futurition futuritions futurity futurize futuro futurological futurologies futurologist futurologists futurology futwa futz futzed futzes futzing fuye fuze fuzed fuzee fuzees fuzes fuzil fuzils fuzing fuzz fuzzball fuzzballs fuzzbox fuzzboxes fuzzed fuzzes fuzzier fuzziest fuzzily fuzzines fuzziness fuzzinesses fuzzing fuzzle fuzzled fuzzles fuzzling fuzztail fuzztone fuzztones fuzzy fuzzyheaded fuzzyheadedness fuzzyheadednesses fv fw fwd fwelling fwy fy fyce fyces fyke fyked fykes fyking fyle fyled fyles fylfot fylfots fylgja fylgjur fyling fylker fynbos fynboses fyrd fyrds fyrdung fys fytte fyttes fz fête fêtes föhn föhns g ga gaatch gab gaba gabardine gabardines gabari gabarit gabback gabbai gabbais gabbard gabbards gabbart gabbarts gabbed gabber gabbers gabbier gabbiest gabbiness gabbinesses gabbing gabble gabbled gabblement gabblements gabbler gabblers gabbles gabbling gabblings gabbro gabbroic gabbroid gabbroitic gabbros gabby gabeler gabelle gabelled gabelleman gabeller gabellers gabelles gabendum gaberdine gaberdines gaberloonie gaberlunzie gaberlunzies gabert gabfest gabfests gabgab gabi gabies gabion gabionade gabionades gabionage gabionages gabioned gabions gablatores gable gableboard gabled gableended gablelike gabler gables gablet gablets gablewindowed gablewise gabling gablock gabnash gabnashes gabon gabonese gaboon gaboons gaborone gabriel gabs gabun gaby gachupin gad gadaba gadabout gadabouts gadaea gadarene gadbee gadbush gadded gadder gadders gaddi gadding gaddingly gaddis gaddish gaddishness gade gadean gader gades gadflies gadfly gadge gadger gadges gadget gadgeteer gadgeteers gadgetries gadgetry gadgets gadgety gadgie gadgies gadhelic gadi gadid gadidae gadids gadiformes gadinic gadinine gadis gaditan gadite gadje gadjes gadling gadlings gadman gadoid gadoids gadolinia gadolinic gadolinite gadolinites gadolinium gadoliniums gadroon gadroonage gadrooned gadrooning gadroonings gadroons gads gadsman gadsmen gadso gadsos gaduin gadus gadwall gadwalls gadwell gadzookeries gadzookery gadzooks gadzookses gae gaea gaed gaedelian gaedown gaeing gael gaelic gaelicise gaelicised gaelicises gaelicising gaelicism gaelicisms gaelicize gaelicized gaelicizes gaelicizing gaels gaen gaes gaet gaff gaffe gaffed gaffer gaffers gaffes gaffing gaffings gaffle gaffs gaffsail gaffsails gaffsman gag gaga gagaku gagakus gagate gage gageable gaged gagee gageite gagelike gager gagers gagership gages gagged gagger gaggers gaggery gagging gaggle gaggled gaggler gaggles gaggling gagglings gaging gagman gagmen gagor gagroot gags gagster gagsters gagtooth gagwriter gahnite gahnites gaia gaiassa gaid gaids gaieties gaiety gaijin gail gaillard gaillarde gaillardia gaillardias gaillards gaily gain gainable gainage gainbirth gaincall gaincome gaincope gaine gained gainer gainers gainest gainful gainfully gainfulness gainfulnesses gaingiving gaingivings gaining gainings gainless gainlessly gainlessness gainlessnesses gainlier gainliest gainliness gainlinesses gainly gainor gainpain gains gainsaid gainsay gainsayer gainsayers gainsaying gainsayings gainsays gainsborough gainset gainsome gainspeaker gainspeaking gainst gainstand gainstrive gainstriven gainstrives gainstriving gainstrove gainturn gaintwist gainward gainyield gair gairfish gairfowl gairfowls gairs gaisling gaist gait gaited gaiter gaitered gaiterless gaiters gaiting gaits gaitt gaitts gaius gaize gaj gajo gajos gal gala galabea galabeah galabeahs galabeas galabia galabiah galabiahs galabias galabieh galabiehs galabiya galabiyah galabiyahs galabiyas galactagog galactagogue galactagogues galactagoguic galactan galactase galactemia galacthidrosis galactic galactically galactidrosis galactin galactite galactocele galactodendron galactodensimeter galactogenetic galactogogue galactohemia galactoid galactolipide galactolipin galactolysis galactolytic galactoma galactometer galactometers galactometry galactonic galactopathy galactophagist galactophagous galactophlebitis galactophlysis galactophore galactophoritis galactophorous galactophthysis galactophygous galactopoieses galactopoiesis galactopoietic galactopyra galactorrhea galactorrheas galactorrhoea galactorrhoeas galactosaemia galactosaemias galactosamine galactosamines galactosan galactoscope galactose galactosemia galactosemias galactosemic galactoses galactosidase galactosidases galactoside galactosides galactosis galactostasis galactosuria galactosyl galactosyls galactotherapy galactotrophy galacturia galagala galage galages galago galagos galah galahad galahads galahs galan galanas galanga galangal galangals galangas galangin galant galante galantine galantines galantuomo galany galapago galapagos galapee galas galatea galateas galatians galatine galatotrophic galavant galavanted galavanting galavants galax galaxes galaxian galaxies galaxy galban galbanum galbanums galbe galbraithian galbulidae galbulus galdragon galdragons gale galea galeae galeage galeas galeass galeate galeated galeche galee galeenies galeeny galega galegine galeid galeiform galempong galempung galen galena galenas galengale galengales galenic galenical galenicals galenism galenist galenite galenites galenobismutite galenoid galeocerdo galeod galeoid galeopithecine galeopithecoid galeopithecus galeopsis galeorhinus galeproof galera galeras galere galeres galericulate galerie galerite galerum galerus gales galesaur galet galette galettes galewort galey galgal gali galianes galicia galician galilean galilee galilees galilei galileo galimatias galimatiases galinaceous galingale galingales galiongee galiongees galionji galiot galiots galipidine galipine galipoidin galipoidine galipoipin galipot galipots galium galivant galivanted galivanting galivants galjoen gall galla gallabea gallabeah gallabeahs gallabeas gallabia gallabiah gallabiahs gallabias gallabieh gallabiehs gallabiya gallabiyah gallabiyahs gallabiyas gallabiyeh gallabiyehs gallacetophenone gallach gallah gallamine gallamines gallanilide gallant gallanted gallanter gallantest gallanting gallantise gallantize gallantly gallantness gallantnesses gallantries gallantry gallants gallate gallates gallature gallberries gallberry gallbladder gallbladders gallbush galleass galleasses galled gallein galleine galleins galleon galleons galler gallera galleria gallerian gallerias galleried galleries galleriies gallery gallerygoer gallerygoers gallerying galleryite galleryites gallerylike gallet galleta galletas galleted galleting gallets galley galleylike galleyman galleypot galleys galleyworm gallflies gallflower gallfly gallia galliambic galliambics galliambus gallian galliard galliardise galliardises galliardize galliardly galliardness galliards galliass galliasses gallic gallican gallicanism gallicise gallicised gallicises gallicising gallicism gallicisms gallicization gallicizations gallicize gallicized gallicizer gallicizes gallicizing gallicola gallicole gallicolous gallied gallies galliferous gallification galliform galliformes galligaskin galligaskins gallimatia gallimaufries gallimaufry gallina gallinacean gallinaceans gallinaceon gallinaceous gallinaginous gallinago gallinazo gallinazos galline galliney galling gallingly gallingness gallinipper gallinippers gallinula gallinule gallinulelike gallinules gallinuline galliot galliots gallipot gallipots gallirallus gallise gallised gallises gallish gallisin gallising gallisise gallisised gallisises gallisising gallisize gallisized gallisizes gallisizing gallium galliums gallivant gallivanted gallivanter gallivanters gallivanting gallivants gallivat gallivats gallivorous galliwasp galliwasps gallize gallized gallizes gallizing gallnut gallnuts gallocyanin gallocyanine galloflavin galloflavine galloglass galloglasses gallomania gallon gallonage gallonages galloner gallons galloon gallooned galloons galloot galloots gallop gallopade gallopaded gallopades gallopading galloped galloper gallopers gallophile gallophiles gallophobe gallophobes gallophobia galloping gallops galloptious gallotannate gallotannic gallotannin gallous gallow galloway gallowed gallowglass gallowglasses gallowing gallows gallowses gallowsmaker gallowsness gallowsnesses gallowstree gallowsward galls gallsickness gallsicknesses gallstone gallstones gallumph gallumphed gallumphing gallumphs galluot gallup galluptious gallus gallused galluses gallweed gallwort gally gallybagger gallybeggar gallycrow gallygaskins gallying gallywasp galoch galoche galoched galoches galoching galoot galoots galop galopade galopades galoped galopin galoping galopins galopped galopping galops galore galores galosh galoshed galoshes galoshing galoubet galowses galp galravage galravaged galravages galravaging galravitch galravitched galravitches galravitching gals galt galtonia galtonias galtrap galuchat galumph galumphed galumpher galumphers galumphing galumphs galumptious galut galuth galuths galuts galv galvanic galvanical galvanically galvanisation galvanisations galvanise galvanised galvaniser galvanisers galvanises galvanising galvanism galvanisms galvanist galvanists galvanization galvanizations galvanize galvanized galvanizer galvanizers galvanizes galvanizing galvanocauteries galvanocauterization galvanocautery galvanocontractility galvanofaradization galvanoglyph galvanoglyphy galvanograph galvanographic galvanography galvanologist galvanology galvanolysis galvanomagnet galvanomagnetic galvanomagnetism galvanometer galvanometers galvanometric galvanometrical galvanometrically galvanometries galvanometry galvanoplastic galvanoplastical galvanoplastically galvanoplastics galvanoplasties galvanoplasty galvanopsychic galvanopuncture galvanoscope galvanoscopes galvanoscopic galvanoscopy galvanosurgery galvanotactic galvanotaxis galvanotherapy galvanothermometer galvanothermy galvanotonic galvanotropic galvanotropism galvayne galvayned galvayning galvo galvvanoscopy galways galwegian galyac galyacs galyak galyaks galziekte galère galères gam gama gamahe gamari gamas gamash gamashes gamasid gamay gamays gamb gamba gambade gambades gambado gambadoed gambadoes gambadoing gambados gambang gambas gambe gambeer gambeered gambeering gambeers gambelia gambelli gambes gambeson gambesons gambet gambets gambetta gambettas gambette gambia gambiae gambian gambians gambias gambier gambiers gambir gambirs gambist gambists gambit gambited gambiting gambits gamble gambled gambler gamblers gambles gamblesome gamblesomeness gambling gamblings gambo gambodic gamboge gamboges gambogian gambogic gamboised gambol gamboled gamboler gamboling gambolled gamboller gambolling gambols gambone gambos gambrel gambreled gambrelled gambrels gambroon gambroons gambs gambusia gambusias gamdeboo gamdia game gamebag gameball gameboard gamecock gamecocks gamecraft gamed gameful gamekeeper gamekeepers gamekeeping gamekeepings gamelan gamelang gamelans gameless gamelike gamelin gamelote gamelotte gamely gamene gameness gamenesses gamer gamers games gamesier gamesiest gamesman gamesmanship gamesmanships gamesmen gamesome gamesomely gamesomeness gamesomenesses gamest gamester gamesters gamestress gamesy gametal gametange gametangia gametangial gametangium gamete gametes gametic gametically gametocyst gametocyte gametocytes gametogeneses gametogenesis gametogenic gametogenous gametogeny gametogonium gametogony gametoid gametophagia gametophobia gametophore gametophores gametophoric gametophyll gametophyte gametophytes gametophytic gamey gamgee gamgia gamic gamier gamiest gamily gamin gamine gaminerie gamineries gamines gaminesque gaminess gaminesses gaming gamings gaminish gamins gamma gammacism gammacismus gammadia gammadion gammadions gammarid gammarine gammaroid gammas gammatia gammation gammations gamme gammed gammelost gammer gammerel gammers gammerstang gammerstangs gammes gammexane gammick gammier gammiest gamming gammock gammocked gammocking gammocks gammon gammoned gammoner gammoners gammoning gammonings gammons gammy gamobium gamodeme gamodemes gamodesmic gamodesmy gamogamy gamogeneses gamogenesis gamogenetic gamogenetical gamogenetically gamogeny gamogony gamomania gamond gamone gamont gamopetalous gamophagia gamophagy gamophyllous gamori gamosepalous gamostele gamostelic gamostely gamotropic gamotropism gamotropisms gamp gamphrel gampish gamps gams gamut gamuts gamy gamyness gamynesses gan ganache ganaches ganam ganancial gananciales ganancias ganapati ganch ganched ganches ganching ganda gander gandered ganderess gandergoose gandering ganderism ganderisms gandermooner ganders ganderteeth gandertmeeth gandhi gandhian gandoura gandul gandum gandurah gane ganef ganefs ganesa ganesh ganesha ganev ganevs gang ganga gangan gangava gangbang gangbanged gangbanger gangbangers gangbanging gangbangs gangboard gangboards gangbuster gangbusters gangbusting gangbustings gangdom gange ganged ganger gangerel gangers ganges gangetic gangflower ganggang ganging gangings gangion gangism gangland ganglander ganglands gangle gangled gangles ganglia gangliac ganglial gangliar gangliasthenia gangliate gangliated gangliectomy ganglier gangliest gangliform gangliglia gangliglions gangliitis gangling ganglioblast gangliocyte ganglioform ganglioid ganglioma gangliomas gangliomata ganglion ganglionary ganglionate ganglionated ganglionectomies ganglionectomy ganglioneural ganglioneure ganglioneuroma ganglioneuron ganglionic ganglionitis ganglionless ganglions ganglioplexus ganglioside gangliosides gangly gangman gangmaster gangplank gangplanks gangplow gangplows gangrel gangrels gangrenate gangrene gangrened gangrenes gangrenescent gangrening gangrenous gangs gangsa gangsaw gangshag gangsman gangsmen gangsta gangstas gangster gangsterdom gangsterdoms gangsterish gangsterism gangsterisms gangsterland gangsterlands gangsters gangtide gangue gangues gangwa gangway gangwayed gangwayman gangwaymen gangways ganister ganisters ganja ganjah ganjahs ganjas ganner gannet gannetries gannetry gannets gannister gannisters ganoblast ganocephalan ganocephalous ganodont ganof ganofs ganoid ganoidal ganoidean ganoidei ganoidian ganoids ganoin ganoine ganoines ganoins ganomalite ganophyllite ganoses ganosis gansa gansel ganser gansey ganseys gansu gansy gant ganta gantang gantangs ganted gantelope gantelopes ganting gantlet gantleted gantleting gantlets gantline gantlines gantlope gantlopes ganton gantries gantry gantryman gants gantsl ganyie ganymede ganymedes ganza ganzie gaol gaolage gaoled gaoler gaoleress gaoleresses gaolering gaolerness gaolers gaoling gaoloring gaols gap gapa gape gaped gaper gapers gapes gapeseed gapeseeds gapeworm gapeworms gaping gapingly gapings gapingstock gapless gaplessness gapo gapos gaposis gaposises gapped gapper gapperi gappier gappiest gapping gappy gaps gapy gapó gapós gar gara garabato garad garage garageable garaged garageman garagemen garages garaging garagings garagist garagiste garagistes garagists garambulla garance garancin garancine garand garapata garapato garau garava garavance garawi garb garbage garbageman garbagemen garbages garbagey garbagy garbanzo garbanzos garbardine garbe garbed garbel garbell garbes garbill garbing garble garbleable garbled garbler garblers garbles garbless garbline garbling garblings garbo garboard garboards garboil garboils garbologies garbologist garbologists garbology garbos garbs garbure garbures garce garcinia garcinias garcon garcons gard garda gardai gardant gardants gardbrace garde gardebras gardeen garden gardenable gardencraft gardened gardener gardeners gardenership gardenesque gardenful gardenfuls gardenhood gardenia gardenias gardening gardenings gardenize gardenless gardenlike gardenly gardenmaker gardenmaking gardens gardenwards gardenwise gardeny garderobe garderobes gardeviance gardevin gardevisure gardinol gardnap gardon gardy gardyloo gardyloos gare garefowl garefowls gareh gareth garetta garewaite garfield garfish garfishes garg gargalize garganey garganeys gargantua gargantuan gargarise gargarised gargarises gargarising gargarism gargarisms gargarize gargarized gargarizes gargarizing garget gargets gargety gargil gargle gargled gargler garglers gargles gargling gargol gargoyle gargoyled gargoyles gargoyley gargoylish gargoylishly gargoylism gargoylisms gari garial garials gariba garibaldi garibaldis garigue garigues garion garions garish garished garishes garishing garishly garishness garishnesses garjan garjans garland garlandage garlandages garlanded garlanding garlandless garlandlike garlandries garlandry garlands garlandwise garle garlic garlicked garlickier garlickiest garlicking garlicks garlicky garliclike garlicmonger garlics garlicwort garlion garlopa garment garmented garmenting garmentless garmentmaker garments garmenture garmentures garmentworker garn garnel garner garnerage garnered garnering garners garnet garnetberry garneter garnetiferous garnetlike garnets garnett garnetter garnetwork garnetz garni garnice garniec garnierite garnierites garnish garnishable garnished garnishee garnisheed garnisheeing garnisheement garnisheements garnishees garnisheing garnisher garnishers garnishes garnishing garnishings garnishment garnishments garnishries garnishry garnison garniture garnitures garon garoo garookuh garote garoted garoter garotes garoting garotte garotted garotter garotters garottes garotting garottings garous garpike garpikes garrafa garran garrans garrat garre garred garres garret garreted garreteer garreteers garretmaster garrets garrick garridge garrigue garrigues garring garrison garrisoned garrisoning garrisons garrnishable garron garrons garroo garrooka garrot garrote garroted garroter garroters garrotes garroting garrots garrotte garrotted garrotter garrotters garrottes garrotting garrottings garrulinae garruline garrulities garrulity garrulous garrulously garrulousness garrulousnesses garrulus garrupa garrya garryas garryowen garryowens gars garse garsil garston gart garten garter gartered gartering garterless garters garth garthman garths garua garuda garudas garum garums garvance garvanzo garvey garveys garvie garvies garvock garvocks gary garçon garçons gas gasahol gasahols gasalier gasaliers gasbag gasbags gasboat gascheck gascogne gascoign gascoigny gascon gasconade gasconaded gasconader gasconaders gasconades gasconading gasconism gasconisms gascons gascony gascoyne gascromh gaseities gaseity gaselier gaseliers gaseosity gaseous gaseously gaseousness gaseousnesses gases gasfield gasfields gasfiring gash gashed gasher gasherbrum gashes gashest gashful gashing gashliness gashlinesses gashly gasholder gasholders gashouse gashouses gashy gasifiable gasification gasifications gasified gasifier gasifiers gasifies gasiform gasify gasifying gasket gaskets gaskin gasking gaskings gaskins gasless gaslight gaslighted gaslighting gaslightness gaslights gaslike gaslit gaslock gasmaker gasman gasmask gasmen gasmetophytic gasogen gasogene gasogenes gasogenic gasohol gasohols gasolene gasolenes gasolier gasoliers gasoliery gasoline gasolineless gasoliner gasolines gasolinic gasometer gasometers gasometric gasometrical gasometrically gasometries gasometry gasoscope gasp gasparillo gasped gasper gaspereau gaspereaus gaspergou gaspergous gaspers gaspier gaspiest gaspiness gaspinesses gasping gaspingly gaspings gasproof gasps gaspy gassed gassendist gasser gasserian gassers gasses gassier gassiest gassily gassiness gassinesses gassing gassings gassit gassy gast gastaldite gastaldo gasted gaster gasteralgia gasteria gasteromycete gasteromycetes gasteromycetous gasterophilidae gasterophilus gasteropod gasteropoda gasteropodous gasteropods gasterosteid gasterosteidae gasterosteiform gasterosteoid gasterosteus gasterotheca gasterothecal gasterotrichan gasterozooid gasters gastful gastfull gasthaus gasthauser gasthauses gastheuser gastight gastightness gastightnesses gasting gastly gastness gastnesse gastnesses gastradenitis gastraea gastraead gastraeal gastraeas gastraeum gastraeums gastral gastralgia gastralgias gastralgic gastralgy gastraneuria gastrasthenia gastratrophia gastrea gastreas gastrectasia gastrectasis gastrectomies gastrectomy gastrelcosis gastric gastricism gastrilegous gastriloquial gastriloquism gastriloquist gastriloquous gastriloquy gastrimargy gastrin gastrins gastritic gastritides gastritis gastritises gastroadenitis gastroadynamic gastroalbuminorrhea gastroanastomosis gastroarthritis gastroatonia gastroatrophia gastroblennorrhea gastroboletus gastrocatarrhal gastrocele gastrocentrous gastrocnemial gastrocnemian gastrocnemii gastrocnemius gastrocoel gastrocoele gastrocolic gastrocoloptosis gastrocolostomy gastrocolotomy gastrocolpotomy gastrocybe gastrocystic gastrocystis gastrodermal gastrodermis gastrodialysis gastrodiaphanoscopy gastrodidymus gastrodisc gastrodisk gastroduodenal gastroduodenitis gastroduodenoscopy gastroduodenostomies gastroduodenostomy gastroduodenotomy gastrodynia gastroelytrotomy gastroenteralgia gastroenteric gastroenteritic gastroenteritides gastroenteritis gastroenteritises gastroenteroanastomosis gastroenterocolitis gastroenterocolostomy gastroenterologic gastroenterological gastroenterologically gastroenterologies gastroenterologist gastroenterologists gastroenterology gastroenteroptosis gastroenterostomies gastroenterostomy gastroenterotomy gastroepiploic gastroesophageal gastroesophagostomy gastrogastrotomy gastrogenic gastrogenital gastrogenous gastrograph gastrohelcosis gastrohepatic gastrohepatitis gastrohydrorrhea gastrohyperneuria gastrohypertonic gastrohysterectomy gastrohysteropexy gastrohysterorrhaphy gastrohysterotomy gastroid gastrointestinal gastrojejunal gastrojejunostomies gastrojejunostomy gastrolater gastrolatrous gastrolavage gastrolienal gastrolith gastroliths gastrolobium gastrologer gastrologers gastrologic gastrological gastrologically gastrologies gastrologist gastrologists gastrology gastrolysis gastrolytic gastromalacia gastromancies gastromancy gastromelus gastromenia gastromyces gastromycete gastromycetes gastromycosis gastromyxorrhea gastronephritis gastronome gastronomer gastronomers gastronomes gastronomic gastronomical gastronomically gastronomics gastronomies gastronomist gastronomists gastronomy gastronosus gastropancreatic gastropancreatitis gastroparalysis gastroparesis gastroparietal gastropathic gastropathy gastroperiodynia gastropexy gastrophile gastrophilism gastrophilist gastrophilite gastrophrenic gastrophryne gastrophthisis gastroplasty gastroplenic gastropleuritis gastroplication gastropneumatic gastropneumonic gastropod gastropoda gastropodan gastropodous gastropods gastropore gastroptosia gastroptosis gastropulmonary gastropulmonic gastropyloric gastrorrhagia gastrorrhaphy gastrorrhea gastroschisis gastroscope gastroscopes gastroscopic gastroscopies gastroscopist gastroscopists gastroscopy gastrosoph gastrosopher gastrosophers gastrosophies gastrosophs gastrosophy gastrospasm gastrosplenic gastrostaxis gastrostegal gastrostege gastrostenosis gastrostomies gastrostomize gastrostomy gastrosuccorrhea gastrotaxis gastrotheca gastrothecal gastrotome gastrotomic gastrotomies gastrotomy gastrotrich gastrotrichan gastrotrichs gastrotubotomy gastrotympanites gastrovascular gastroxynsis gastrozooid gastrula gastrulae gastrular gastrulas gastrulate gastrulated gastrulates gastrulating gastrulation gastrulations gastruran gasts gasworker gasworks gat gata gatch gatchwork gate gateado gateage gateau gateaus gateaux gatecrash gatecrashed gatecrasher gatecrashers gatecrashes gatecrashing gated gatefold gatefolds gatehouse gatehouses gatekeep gatekeeper gatekeepers gatekeeping gateleg gateless gatelike gatemaker gateman gatemen gatepost gateposts gater gaters gates gatetender gateward gatewards gateway gatewaying gatewayman gatewaymen gateways gatewise gatewoman gateworks gatewright gath gather gatherable gathered gatherer gatherers gathering gatherings gathers gatherum gathic gaths gating gatings gatling gator gators gats gatsby gatt gatten gatter gatteridge gattine gau gaub gauby gauche gauchely gaucheness gauchenesses gaucher gaucherie gaucheries gauchesco gauchest gaucho gauchos gaucie gaucier gauciest gaucy gaud gaudeamus gaudeamuses gauded gauderies gaudery gaudful gaudgie gaudgies gaudier gaudies gaudiest gaudily gaudiness gaudinesses gauding gaudish gaudless gauds gaudsman gaudy gaufer gaufers gauffer gauffered gaufferer gauffering gaufferings gauffers gauffre gauffred gaufre gaufres gaufrette gaufrettes gauge gaugeable gaugeably gauged gauger gaugers gaugership gauges gauging gaugings gauguin gauguinesque gauily gauje gaujes gauk gaul gaulding gauleiter gauleiters gaulin gaulish gaullism gauloiserie gauls gaulsh gault gaulter gaulters gaultherase gaultheria gaultherias gaultherin gaultherine gaults gaum gaumed gaumier gaumiest gauming gaumish gaumless gaumlike gaums gaumy gaun gaunch gaunched gaunches gaunching gaunt gaunted gaunter gauntest gaunting gauntlet gauntleted gauntleting gauntlets gauntly gauntness gauntnesses gauntree gauntrees gauntries gauntry gaunts gaunty gaup gauped gauper gaupers gauping gaups gaupus gaupuses gaur gaure gauri gauric gaurie gaurs gaus gauss gaussage gaussbergite gausses gaussian gaussmeter gauster gausterer gaut gautama gauteite gauze gauzelike gauzes gauzewing gauzier gauziest gauzily gauziness gauzinesses gauzy gavage gavages gavall gave gavel gavelage gaveled gaveler gavelet gaveling gavelkind gavelkinder gavelkinds gavelled gaveller gavelling gavelman gavelmen gavelock gavelocks gavels gaverick gavia gavial gavialidae gavialis gavialoid gavials gavidae gaviiformes gavot gavots gavotte gavotted gavottes gavotting gavyuti gaw gawain gawby gawcey gawcie gawcier gawciest gawcy gawd gawds gawgaw gawish gawk gawked gawker gawkers gawkhammer gawkier gawkies gawkiest gawkihood gawkihoods gawkily gawkiness gawkinesses gawking gawkish gawkishly gawkishness gawkishnesses gawks gawky gawm gawn gawney gawp gawped gawper gawpers gawping gawps gawpus gawpuses gawsie gawsier gawsiest gawsy gay gayal gayals gayatri gaybine gaycat gaydar gaydars gaydiang gayer gayest gayeties gayety gayfeather gayish gaylies gaylussacia gaylussite gayly gayment gayness gaynesses gays gaysome gayway gaywing gaywings gayyou gaz gazabo gazaboes gazabos gazal gazals gazangabin gazania gazanias gazar gazars gaze gazebo gazeboes gazebos gazed gazee gazeful gazehound gazehounds gazel gazeless gazella gazelle gazellelike gazelles gazelline gazels gazement gazements gazer gazers gazes gazet gazettal gazette gazetted gazetteer gazetteerage gazetteered gazetteering gazetteerish gazetteers gazetteership gazettes gazetting gazi gazier gaziest gazillion gazillions gazing gazingly gazingstock gazogene gazogenes gazolyte gazometer gazon gazons gazoo gazook gazooka gazookas gazoon gazoons gazoos gazophylacium gazoz gazpacho gazpachos gazump gazumped gazumper gazumpers gazumping gazumps gazunder gazundered gazundering gazunders gazy gazzetta gb gc gcd gconv gconvert gd gdansk gdinfo gdp gds ge geadephagous geal gealed gealing gealous gealousies gealousy geals gean geans geanticlinal geanticline geanticlines gear gearbox gearboxes gearcase gearcases gearchange gearchanges geare geared geares gearing gearings gearksutite gearless gearman gears gearset gearshift gearshifts gearstick gearsticks geartrain gearwheel gearwheels gease geason geast geastraceae geastrum geat geats geb gebang gebanga gebbie gebel gebels gebur geburs gecarcinian geck gecked gecking gecko geckoes geckoid geckos geckotian geckotid geckotoid gecks ged gedackt gedact gedanite gedanken gedankenexperiment gedankenexperiments gedd gedder geddit gedds gedeckt gedecktwork gedrite geds gedunk gee geebong geebung geebungs geechee geechees geed geegaw geegaws geeing geejee geek geekier geekiest geeks geeky geelbec geelbeck geelbek geeldikkop geelhout geep geepound geepounds geeps geer geerah gees geese geest geests geet geez geezer geezers gefilte gefuffle gefuffled gefuffles gefuffling gefulltefish gefülltefish gegenion gegenschein gegenscheins gegg geggee gegger geggery geglossaceae gehenna gehey gehlenite geic geiger geikielite gein geir geira geisa geisha geishas geison geisotherm geisothermal geissospermin geissospermine geist geistlich geists geit geitjie geitonogamies geitonogamous geitonogamy geits gekkonid gekkonidae gekkonoid gel gelable gelada geladas gelandejump gelandelaufer gelandesprung gelandesprungs gelant gelants gelastic gelate gelated gelates gelati gelatia gelatification gelatigenous gelatin gelatinate gelatinated gelatinates gelatinating gelatination gelatinations gelatine gelatined gelatines gelating gelatiniferous gelatiniform gelatinify gelatinigerous gelatinisability gelatinisable gelatinisation gelatinisations gelatinise gelatinised gelatiniser gelatinisers gelatinises gelatinising gelatinity gelatinizability gelatinizable gelatinization gelatinizations gelatinize gelatinized gelatinizer gelatinizers gelatinizes gelatinizing gelatinlike gelatinobromide gelatinochloride gelatinoid gelatinoids gelatinotype gelatinous gelatinously gelatinousness gelatinousnesses gelatins gelation gelations gelatis gelato gelatos gelatose gelcap geld geldability geldable geldant gelded gelder gelders geldesprung gelding geldings gelds gelechia gelechiid gelechiidae gelee geleem gelees gelendeleufer gelendesprung gelid gelider gelidest gelidities gelidity gelidly gelidness gelidnesses gelignite gelignites gelilah gelinotte gell gellant gellants gelled gellies gelliflowre gelliflowres gelling gelly gelndesprung gelofer gelofre gelogenic gelong geloscopy gelose gelosie gelosies gelosin gelosine gelosy gelotherapy gelotometer gelotoscopy gelototherapy gels gelsemia gelsemic gelsemin gelsemine gelsemines gelseminic gelseminine gelseminines gelsemium gelsemiumia gelsemiums gelsolin gelsolins gelt gelts gem gemara gemaric gematria gematrias gematrical gematriot gemauve gemeinde gemeinschaft gemeinschaften gemeinschafts gemel gemeled gemelled gemellion gemellione gemellus gemels gemfish gemfishes gemftlich geminal geminally geminate geminated geminately geminates geminating gemination geminations geminative gemini geminies geminiflorous geminiform geminis geminorum geminous geminy gemitorial gemless gemlich gemlike gemma gemmaceous gemmae gemman gemmary gemmate gemmated gemmates gemmating gemmation gemmations gemmative gemmed gemmel gemmen gemmeous gemmer gemmeries gemmery gemmier gemmiest gemmiferous gemmiferousness gemmification gemmiform gemmily gemminess gemming gemmipara gemmipares gemmiparity gemmiparous gemmiparously gemmoid gemmological gemmologies gemmologist gemmologists gemmology gemmula gemmulation gemmulations gemmule gemmules gemmuliferous gemmy gemological gemologies gemologist gemologists gemology gemonies gemonil gemony gemot gemote gemotes gemots gempylid gempylidae gempylus gems gemsbok gemsboks gemsbuck gemsbucks gemse gemses gemshorn gemshorns gemstone gemstones gemuetlich gemul gemuti gemutlich gemutlichkeit gemutlichkeits gemwork gemütlich gen gena genae genal genapp genappe genapped genapper genappes genapping genarch genarcha genarchaship genarchship genas gendarme gendarmerie gendarmeries gendarmery gendarmes gender gendered genderer gendering genderless genders gene geneal genealogic genealogical genealogically genealogies genealogise genealogised genealogises genealogising genealogist genealogists genealogize genealogized genealogizer genealogizes genealogizing genealogy genear genearch geneat genecologic genecological genecologically genecologist genecology genecor geneki geneological geneologically geneologist geneologists geneology genep genepi genera generability generable generableness general generalate generalates generalcies generalcy generale generalia generalific generalisability generalisable generalisation generalisations generalise generalised generaliser generalisers generalises generalising generalism generalissima generalissimo generalissimos generalist generalistic generalists generaliter generalities generality generalizabilities generalizability generalizable generalization generalizations generalize generalizeable generalized generalizer generalizers generalizes generalizing generall generalled generalling generally generalness generalnesses generals generalship generalships generalty generant generants generate generated generater generates generating generation generational generationally generationism generationisms generations generative generatively generativeness generativenesses generator generators generatrices generatrix generic generical generically genericalness genericness genericnesses generics generification generis generosities generosity generous generously generousness generousnesses genes geneserin geneserine geneses genesial genesic genesiology genesis genesiurgic genet genethliac genethliacal genethliacally genethliacism genethliacon genethliacons genethliacs genethlialogic genethlialogical genethlialogies genethlialogy genethliatic genethlic genetic genetical genetically geneticism geneticist geneticists genetics genetika genetmoil genetoid genetor genetotrophic genetous genetrices genetrix genetrixes genets genetta genette genettes geneva genevan genevas geneve genevese genevoise genevrette genevrettes genghis genial genialise genialised genialises genialising genialities geniality genialize genialized genializes genializing genially genialness genialnesses genials genian genic genically genicular geniculate geniculated geniculately geniculates geniculating geniculation geniculations geniculum genie genies genii genin genio genioglossal genioglossi genioglossus geniohyoglossal geniohyoglossus geniohyoid geniolatry genion genioplasty genip genipa genipap genipapada genipaps genips genisaro genista genistas genistein genistin genit genital genitalia genitalial genitalic genitally genitals geniting genitival genitivally genitive genitively genitives genitocrural genitofemoral genitor genitorial genitors genitory genitourinary genitrices genitrix genitrixes geniture genitures genius geniuses genizah genizahs genizero genl genlisea genlock genlocks genned gennel gennels gennet gennets genning genoa genoas genoblast genoblastic genocidal genocidally genocide genocides genoese genogram genograms genoise genoises genom genome genomes genomic genomics genoms genonema genophobia genophobias genos genospecies genotype genotypes genotypic genotypical genotypically genotypicities genotypicity genouillere genouilleres genouillère genouillères genova genovese genovino genre genres genro genros gens gensdarmes genseng gensengs genson gent gentamicin gentamicins genteel genteeler genteelest genteelise genteelised genteelises genteelish genteelising genteelism genteelisms genteelize genteelized genteelizes genteelizing genteelly genteelness genteelnesses gentes genthite gentian gentiana gentianaceae gentianaceous gentianal gentianales gentianella gentianellas gentianic gentianin gentianopsis gentianose gentians gentianwort gentier gentiest gentiin gentil gentile gentiledom gentiles gentilesse gentilesses gentilhomme gentilhommes gentilic gentilisation gentilise gentilised gentilises gentilish gentilising gentilism gentilisms gentilitial gentilitian gentilities gentilitious gentility gentilization gentilize gentilized gentilizes gentilizing gentiobiose gentiopicrin gentisate gentisein gentisic gentisin gentium gentle gentled gentlefolk gentlefolks gentlehearted gentleheartedly gentleheartedness gentlehood gentlehoods gentleman gentlemanhood gentlemanhoods gentlemanise gentlemanism gentlemanize gentlemanlike gentlemanlikeness gentlemanlikenesses gentlemanliness gentlemanlinesses gentlemanly gentlemanship gentlemanships gentlemen gentlemens gentlemouthed gentleness gentlenesse gentlenesses gentlepeople gentleperson gentlepersons gentler gentles gentleship gentlest gentlewoman gentlewomanhood gentlewomanish gentlewomanlike gentlewomanliness gentlewomanlinesses gentlewomanly gentlewomen gentling gently gentman gentoo gentoos gentrice gentrices gentries gentrification gentrifications gentrified gentrifier gentrifiers gentrifies gentrify gentrifying gentry gents genty genu genua genual genuclast genuflect genuflected genuflecting genuflection genuflections genuflector genuflectory genuflects genuflex genuflexion genuflexions genuflexuous genuine genuinely genuineness genuinenesses genupectoral genus genuses genyantrum genyonemus genyoplasty genyplasty genys geo geoaesthesia geoagronomic geobiologic geobiology geobiont geobios geoblast geobotanic geobotanical geobotanically geobotanies geobotanist geobotanists geobotany geocarpic geocarpies geocarpy geocentric geocentrical geocentrically geocentricism geocentricisms geocentrism geocerite geochelone geochemical geochemically geochemist geochemistries geochemistry geochemists geochronic geochronologic geochronological geochronologically geochronologies geochronologist geochronologists geochronology geochronometric geochronometries geochronometry geochrony geocline geococcyx geocode geocodes geocorona geocoronas geocoronium geocratic geocronite geocyclic geod geodaesia geodal geode geodes geodesia geodesic geodesical geodesics geodesies geodesist geodesists geodesy geodete geodetic geodetical geodetically geodetician geodetics geodiatropism geodic geodiferous geodist geoduck geoducks geodynamic geodynamical geodynamicist geodynamics geoeconomic geoeconomically geoeconomics geoeconomist geoeconomists geoemtry geoethnic geofact geofacts geoffroea geoffroyin geoffroyine geoform geog geogen geogenesis geogenetic geogenic geogenies geogenous geogeny geoglossaceae geoglossum geoglyphic geognoses geognosies geognosis geognosist geognost geognostic geognostical geognostically geognosts geognosy geogonic geogonical geogonies geogony geographer geographers geographic geographical geographically geographics geographies geographism geographize geographized geography geohydrologic geohydrologies geohydrologist geohydrologists geohydrology geoid geoidal geoids geoisotherm geol geolatries geolatry geolinguistics geologer geologers geologian geologians geologic geological geologically geologician geologies geologise geologised geologises geologising geologist geologists geologize geologized geologizes geologizing geology geom geomagnetic geomagnetically geomagnetician geomagnetics geomagnetism geomagnetisms geomagnetist geomagnetists geomalic geomalism geomaly geomance geomancer geomancers geomancies geomancy geomant geomantic geomantical geomantically geomants geomechanics geomedical geomedicine geomedicines geometdecrne geometer geometers geometric geometrical geometrically geometrician geometricians geometricise geometricism geometricist geometricize geometrics geometrid geometridae geometrids geometries geometriform geometrine geometrisation geometrisations geometrise geometrised geometrises geometrising geometrist geometrists geometrization geometrizations geometrize geometrized geometrizes geometrizing geometroid geometry geomoroi geomorphic geomorphist geomorphogenic geomorphogenies geomorphogenist geomorphogenists geomorphogeny geomorphologic geomorphological geomorphologically geomorphologies geomorphologist geomorphologists geomorphology geomorphy geomyid geomyidae geomyoid geomys geonavigation geonegative geonoma geonyctinastic geonyctitropic geoparallelotropic geophagia geophagies geophagism geophagisms geophagist geophagists geophagous geophagy geophilic geophilid geophilidae geophilomorpha geophilous geophilus geophone geophones geophysical geophysically geophysicist geophysicists geophysics geophyte geophytes geophytic geoplagiotropism geopolar geopolitic geopolitical geopolitically geopolitician geopoliticians geopolitics geopolitist geoponic geoponical geoponics geopony geopositive geopotential geopressured geopressurized geoprobe geoprobes georama geordie geordies george georgetown georgette georgettes georgia georgiadesite georgian georgians georgic georgical georgics georgium geos geoscience geosciences geoscientific geoscientist geoscientists geoscopic geoscopy geoselenic geosid geoside geosphere geospheres geostatic geostatics geostationary geostrategic geostrategical geostrategies geostrategist geostrategists geostrategy geostrophic geostrophically geosynchronous geosynchronously geosynclinal geosyncline geosynclines geotactic geotactical geotactically geotaxes geotaxis geotaxy geotechnic geotechnical geotechnics geotechnological geotechnologies geotechnology geotectology geotectonic geotectonically geotectonics geotherm geothermal geothermally geothermic geothermometer geothermometers geothlypis geotic geotical geotilla geotonic geotonus geotropic geotropically geotropism geotropisms geotropy geoty gephyrean gephyrocercal gephyrocercy gephyrophobia gepoun ger geraera gerah gerahs gerald geraniaceae geraniaceous geranial geraniales geranials geranic geranin geraniol geraniols geranium geraniums geranomorph geranomorphic geranyl gerara gerardia gerardias gerastian gerate gerated gerately geratic geratologic geratologous geratology geraty gerb gerbe gerbera gerberas gerbes gerbil gerbile gerbille gerbilles gerbillinae gerbillus gerbils gerbo gercrow gere gerea gereagle gerefa gerenda gerendum gerent gerents gerenuk gerenuks geres gerfalcon gerfalcons gerful gerhardtite geriatric geriatrician geriatricians geriatrics geriatrist geriatrists geriatry gerim gerip gerkin gerland gerle gerles germ germain germaine germaines germains germal german germander germanders germane germanely germaneness germanenesses germanic germanies germanious germanisation germanisations germanise germanised germanises germanising germanism germanist germanite germanity germanium germaniums germanization germanizations germanize germanized germanizes germanizing germanous germans germantown germany germanyl germarium germed germen germens germfree germicidal germicide germicides germiculture germier germiest germifuge germigene germigenous germin germina germinabilities germinability germinable germinal germinally germinance germinancy germinant germinate germinated germinates germinating germination germinational germinations germinative germinatively germinator germinators germiness germinesses germing germiniparous germinogony germins germiparity germiparous germless germlike germling germon germproof germs germule germy gernative gerne gerned gernes gerning gernitz gerocomia gerocomical gerocomy geroderma gerodermia gerodontia gerodontic gerodontics gerodontology geromorphism geronomite geront gerontal gerontes gerontic gerontine gerontism geronto gerontocracies gerontocracy gerontocrat gerontocratic gerontocrats gerontogeous gerontologic gerontological gerontologies gerontologist gerontologists gerontology gerontomorphic gerontomorphoses gerontomorphosis gerontophil gerontophile gerontophiles gerontophilia gerontophilias gerontophils gerontophobe gerontophobes gerontophobia gerontophobias gerontotherapeutics gerontotherapies gerontotherapy gerontoxon geropiga geropigas gerousia gerreidae gerres gerrhonotus gerrhosaurid gerridae gerrididae gerris gerrymander gerrymandered gerrymanderer gerrymanderers gerrymandering gerrymanders gers gersdorffite gersum gertcha gertrude gerund gerundial gerundially gerundival gerundive gerundively gerundives gerunds gerusia gervais gervao gery gerygone gerygote gerygotes geryon geryonid gesellschaft gesellschaften gesellschafts gesith gesithcund gesithcundman gesling gesneraceous gesnerad gesneria gesneriaceae gesneriaceous gesneriad gesneriads gesnerias gesning gess gessamine gessamines gesse gessed gesseron gesses gessing gesso gessoed gessoes gest gestae gestalt gestalten gestalter gestaltism gestaltisms gestaltist gestaltists gestalts gestant gestapo gestapos gestate gestated gestates gestating gestation gestational gestations gestative gestatorial gestatorium gestatory geste gested gesten gestening gester gestes gestic gestical gesticulacious gesticulant gesticular gesticularious gesticulate gesticulated gesticulates gesticulating gesticulation gesticulations gesticulative gesticulatively gesticulator gesticulators gesticulatory gestio gestion gestning gestonie gestor gests gestura gestural gesturally gesture gestured gestureless gesturer gesturers gestures gesturing gesturist gesundheit geswarp get geta getable getah getas getatability getatable getatableness getaway getaways getfd getgo getgoes gether gethsemane gethsemanes gethsemanic getid getling getmesost getmjlkost getpenny gets getspa getspace gettable gettableness getter gettered gettering getterings getters getting gettings gettysburg getup getups geulah geullah geullahs geum geumatophobia geums gevald gevalt gewgaw gewgawed gewgawish gewgawry gewgaws gewgawy gewurztraminer gewurztraminers gey geyan geyer geyerite geyest geylies geyser geyseral geyseric geyserine geyserish geyserite geyserites geysers gez gezerah ggr ghaffir ghafir ghain ghaist ghalva ghana ghanaian ghanaians ghanese ghanian gharial gharials gharnao gharri gharries gharris gharry ghast ghasted ghastful ghastfull ghastfully ghastfulness ghastily ghasting ghastlier ghastliest ghastlily ghastliness ghastlinesses ghastly ghastness ghastnesses ghasts ghat ghats ghatti ghatwal ghatwazi ghaut ghauts ghawazee ghawazi ghazal ghazals ghazel ghazels ghazi ghazies ghazis ghazism ghbor gheber ghebeta ghee ghees gheg gheleem ghenting gherao gheraoed gheraoes gheraoing gheraos gherkin gherkins ghess ghesse ghessed ghesses ghessing ghest ghetchoo ghetti ghetto ghettoed ghettoes ghettoing ghettoisation ghettoisations ghettoise ghettoised ghettoises ghettoising ghettoization ghettoizations ghettoize ghettoized ghettoizes ghettoizing ghettos ghi ghibelline ghibellinism ghibli ghiblis ghilgai ghilgais ghillie ghillied ghillies ghillying ghis ghizite ghole ghomasio ghomasios ghoom ghorkhar ghost ghostbuster ghostbusters ghostcraft ghostdom ghosted ghoster ghostess ghostfish ghostfishes ghostflower ghosthood ghostier ghostiest ghostified ghostily ghosting ghostings ghostish ghostism ghostland ghostless ghostlet ghostlier ghostliest ghostlify ghostlike ghostlikeness ghostlily ghostliness ghostlinesses ghostly ghostmonger ghostology ghosts ghostship ghostweed ghostwrite ghostwriter ghostwriters ghostwrites ghostwriting ghostwritten ghostwrote ghosty ghoul ghoulery ghoulie ghoulies ghoulish ghoulishly ghoulishness ghoulishnesses ghouls ghq ghrush ghurry ghyll ghylls ghz gi giallolino giambeux giansar giant giantesque giantess giantesses gianthood gianthoods giantise giantish giantism giantisms giantize giantkiller giantkind giantlier giantliest giantlike giantlikeness giantly giantries giantry giants giantship giantships giantsize giaour giaours giardia giardias giardiases giardiasis giarra giarre gib gibaro gibbals gibbar gibbartas gibbed gibber gibbered gibberellin gibberellins gibbergunyah gibbering gibberish gibberishes gibberose gibberosity gibbers gibbert gibbet gibbeted gibbeting gibbets gibbetted gibbetting gibbetwise gibbier gibbing gibbled gibblegabble gibblegabbler gibblegable gibbles gibbol gibbon gibbons gibbose gibbosely gibboseness gibbosities gibbosity gibbous gibbously gibbousness gibbousnesses gibbsite gibbsites gibbus gibby gibe gibed gibel gibelike gibelite gibels gibeonite giber gibers gibes gibetting gibier gibing gibingly gibleh giblet giblets gibli giboia gibraltar gibraltarian gibs gibson gibsons gibstaff gibus gibuses gid gidar giddap gidday giddea giddied giddier giddies giddiest giddify giddily giddiness giddinesses giddup giddy giddyap giddyberry giddybrain giddyhead giddying giddyish giddypate giddyup gideon gidgea gidgee gidgees gidjee gidjees gids gidyea gie gieaway gieaways gied gieing gien gierfalcon gies gieseckite giesel gif gifblaar giffgaff gift giftable giftables giftbook gifted giftedly giftedness giftednesses giftie gifting giftless giftlike giftling gifts giftshop giftshops gifture giftware giftwares giftwrap giftwrapped giftwrapping giftwraps gig giga gigabit gigabits gigabyte gigabytes gigacycle gigacycles gigadoid gigaflop gigaflops gigahertz gigahertzes gigaherz gigajoule gigajoules gigamaree gigameter gigant gigantal gigantean gigantesque gigantic gigantical gigantically giganticidal giganticide giganticides giganticness gigantine gigantism gigantisms gigantize gigantoblast gigantocyte gigantolite gigantological gigantologies gigantology gigantomachia gigantomachias gigantomachies gigantomachy gigantostracan gigantostracous gigapixel gigapixels gigartinaceae gigartinaceous gigas gigasecond gigaton gigatons gigavolt gigawatt gigawatts gigback gigelira gigeria gigerium gigful gigge gigged gigger gigget gigging giggish giggit giggited giggiting giggits giggle giggled giggledom gigglement giggler gigglers giggles gigglesome gigglier giggliest giggling gigglingly gigglings gigglish giggly gighe giglet giglets gigliato giglio giglot giglots gigman gigmaness gigmanhood gigmania gigmanic gigmanically gigmanism gigmanities gigmanity gigmen gignate gignitive gigolo gigolos gigot gigots gigs gigsman gigsmen gigster gigtree gigue gigues gigunu giher giinwale gikuyu gila gilas gilbert gilbertage gilbertian gilbertine gilbertite gilberts gilcup gilcups gild gildable gilded gildedness gilden gilder gilders gildhall gildhalls gilding gildings gilds gildship gildsman gildsmen gile gilenyer gilenyie giles gilet gilets gilgai gilgais gilgames gilgamesh gilgamish gilgie gilgies gilgul gilgulim gilguy gilia giliak gilim gill gillar gillaroo gillaroos gillbird gilled giller gillers gillet gillets gillflirt gillflirts gillhooter gillian gillie gillied gillies gilliflirt gilliflower gilliflowers gilling gillion gillions gilliver gillnet gillnets gillnetted gillnetter gillnetters gillnetting gillot gillotage gillotype gillravage gillravaged gillravages gillravaging gillravitch gillravitched gillravitches gillravitching gills gillstoup gilly gillyflower gillyflowers gillygaupus gillying gillyvor gillyvors gilo gilour gilpey gilpeys gilpies gilpy gilravage gilravaged gilravager gilravagers gilravages gilravaging gilravitch gilravitched gilravitches gilravitching gils gilse gilsonite gilsonites gilt giltcup giltcups gilten gilthead giltheads gilts gilttail giltwood gilty gilver gim gimbal gimbaled gimbaling gimbaljawed gimballed gimballing gimbals gimbawawed gimberjawed gimble gimblet gimbri gimcrack gimcrackeries gimcrackery gimcrackiness gimcracks gimcracky gimel gimels gimlet gimleted gimleteyed gimleting gimlets gimlety gimmal gimmaled gimmalled gimmals gimme gimmer gimmeringly gimmerpet gimmers gimmes gimmick gimmicked gimmickeries gimmickery gimmickier gimmickiest gimmicking gimmickries gimmickry gimmicks gimmicky gimmie gimmies gimmor gimmors gimp gimped gimper gimpier gimpiest gimpiness gimping gimps gimpy gin ginep ginete ging gingal gingall gingalls gingals gingeley gingeleys gingeli gingelies gingelis gingelli gingellies gingellis gingelly gingely ginger gingerade gingerades gingerberry gingerbread gingerbreaded gingerbreads gingerbready gingered gingering gingerleaf gingerline gingerliness gingerlinesses gingerly gingerness gingernut gingerol gingerous gingerroot gingerroots gingers gingersnap gingersnaps gingerspice gingerwork gingerwort gingery gingham ginghamed ginghams gingili gingilis gingilli gingillis gingiva gingivae gingival gingivalgia gingivectomies gingivectomy gingivitis gingivitises gingivoglossitis gingivolabial gingko gingkoes gingkos gingle gingled gingles ginglimoid gingling ginglmi ginglyform ginglymi ginglymoarthrodia ginglymoarthrodial ginglymodian ginglymoid ginglymoidal ginglymostoma ginglymostomoid ginglymus ginglymuses ginglyni gingras gings ginhound ginhouse ginhouses gink ginkgo ginkgoaceae ginkgoaceous ginkgoales ginkgoes ginkgophyta ginkgophytina ginkgopsida ginkgos ginks ginmill ginn ginned ginnel ginnels ginner ginneries ginners ginnery ginnet ginney ginnier ginniest ginning ginnings ginnle ginny ginorite ginormous gins ginseng ginsengs ginshop ginshops ginward ginzo ginzoes ginzos gio giobertite giocoso giojoso giornata giornatate gios giottesque gip gipon gipons gipped gipper gippers gippies gipping gippo gippos gippy gips gipseian gipsen gipsens gipser gipsied gipsies gipsiologist gipsire gipsology gipsy gipsydom gipsyesque gipsyfy gipsyhead gipsyhood gipsying gipsyish gipsyism gipsylike gipsyry gipsyweed gipsywort giraffa giraffe giraffes giraffesque giraffid giraffidae giraffine giraffish giraffoid girandola girandolas girandole girandoles girasol girasole girasoles girasols girba gird girded girder girderage girdering girderless girders girding girdingly girdings girdle girdlecake girdled girdlelike girdler girdlers girdles girdlestead girdlesteads girdling girdlingly girds gire giri giriama giris girja girkin girkins girl girland girlchild girleen girlery girlfriend girlfriends girlfully girlhood girlhoods girlie girlier girlies girliest girliness girling girlish girlishly girlishness girlishnesses girlism girllike girllikeness girlond girlonds girls girly girn girnal girned girnel girnels girner girners girnie girnier girniest girning girns girny giro giroed giroflore giroing giron gironde girondist gironic gironny girons giros girosol girosols girouette girouettes girouettism girr girrit girrock girrs girru girse girsh girshes girsle girt girted girth girthed girthing girthline girthlines girths girting girtline girtlines girtonian girts gis gisant gisants gisarme gisarmes gise gisel gisement gish gisla gisler gism gismo gismologies gismology gismondine gismondite gismos gisms gispin gist gists git gitaligenin gitalin gitana gitanemuk gitano gitanos gite giterne gites gith gitim gitonin gitoxigenin gitoxin gits gitter gittern gitterned gitterning gitterns gittin gitting gittith giulio giunta giuseppe giust giustamente giusted giustina giusting giusto giusts givable give giveable giveaway giveaways giveback givebacks gived givee givees given givenness givennesses givens giver givers gives giveth givey givin giving givingness givings giza gizmo gizmologies gizmology gizmos gizz gizzard gizzards gizzen gizzened gizzening gizzens gizzern gizzes gjedost gjetost gjetosts gju gjus gl glabbella glabella glabellae glabellar glabellous glabellum glabrate glabreity glabrescent glabriety glabrous glabrousness glabrousnesses glaca glacaed glacaing glace glaceed glaceing glaces glaciable glacial glacialise glacialism glacialist glacialists glacialize glacially glacials glaciaria glaciarium glaciate glaciated glaciates glaciating glaciation glaciations glacier glaciered glacieret glacierist glaciers glacification glacify glacioaqueous glaciolacustrine glaciologic glaciological glaciologies glaciologist glaciologists glaciology glaciomarine glaciometer glacionatant glacious glacis glacises glack glacon glacé glacéed glacéing glacés glad gladatorial gladded gladden gladdened gladdener gladdening gladdens gladder gladdest gladdie gladdies gladding gladdon gladdons gladdy glade gladelike gladen glades gladeye gladful gladfully gladfulness gladfulnesses gladhearted gladiate gladiator gladiatorial gladiatorian gladiatorism gladiators gladiatorship gladiatorships gladiatory gladiatrix gladier gladiest gladify gladii gladiola gladiolar gladiolas gladiole gladioles gladioli gladiolus gladioluses gladite gladius gladiuses gladkaite gladless gladlier gladliest gladly gladness gladnesses gladrags glads gladship gladsome gladsomely gladsomeness gladsomenesses gladsomer gladsomest gladstone gladstones gladstonian gladwin glady glaga glagah glaieul glaik glaiket glaiketness glaikit glaikitness glaikitnesses glaiks glair glaire glaired glaireous glaires glairier glairiest glairin glairiness glairing glairins glairs glairy glaister glaistig glaive glaived glaives glaizie glaked glaky glali glam glamberry glammed glamming glamor glamored glamoring glamorisation glamorisations glamorise glamorised glamoriser glamorisers glamorises glamorising glamorization glamorizations glamorize glamorized glamorizer glamorizers glamorizes glamorizing glamorless glamorous glamorously glamorousness glamorousnesses glamors glamour glamoured glamourie glamouring glamourise glamourization glamourize glamourized glamourizer glamourizers glamourizes glamourizing glamourless glamourous glamourously glamourpuss glamourpusses glamours glamoury glams glance glanced glancer glancers glances glancing glancingly glancings gland glandaceous glandarious glander glandered glanderous glanders glandes glandiferous glandiform glanditerous glandless glandlike glands glandula glandular glandularly glandulation glandule glandules glanduliferous glanduliform glanduligerous glandulose glandulosity glandulous glandulously glandulousness glanis glans glar glare glareal glared glareless glareola glareole glareolidae glareous glareproof glares glareworm glarier glariest glarily glariness glarinesses glaring glaringly glaringness glaringnesses glarry glary glaserite glasgow glashan glasnost glasnostian glasnostic glasnosts glass glassblower glassblowers glassblowing glassblowings glasscutter glassed glassen glasser glasses glasseye glassfish glassfishes glassful glassfuls glasshouse glasshouses glassie glassier glassies glassiest glassified glassifies glassify glassifying glassily glassin glassine glassines glassiness glassinesses glassing glassite glassless glasslike glasslikeness glassmaker glassmakers glassmaking glassmakings glassman glassmen glassophone glasspaper glasspapered glasspapering glasspapers glassrope glassteel glassware glasswares glassweed glasswork glassworker glassworkers glassworking glassworks glassworm glasswort glassworts glassy glassyheaded glastonbury glaswegian glauber glauberite glauberites glaucescence glaucescences glaucescent glaucic glaucin glaucine glaucium glaucochroite glaucodot glaucodote glaucolite glaucoma glaucomas glaucomatous glaucomys glauconiferous glauconite glauconites glauconitic glauconitisation glauconitisations glauconitization glauconitizations glaucophane glaucophanite glaucophanization glaucophanize glaucophyllous glaucosis glaucosuria glaucous glaucously glaucousness glaucousnesses glaucus glaum glaumed glauming glaumrie glaums glaur glaurier glauriest glaurs glaury glaux glave glaver glavered glavering glaymore glaze glazed glazement glazen glazer glazers glazes glazework glazier glazieries glaziers glaziery glaziest glazily glaziness glazing glazings glazy glb gld glead gleam gleamed gleamer gleamers gleamier gleamiest gleamily gleaminess gleaming gleamingly gleamings gleamless gleams gleamy glean gleanable gleaned gleaner gleaners gleaning gleanings gleans gleary gleave gleaves gleba glebae glebal glebe glebeless glebes glebous gleby glechoma gled glede gledes gledge gledged gledges gledging gleditsia gleds gledy glee gleed gleeds gleeful gleefully gleefulness gleefulnesses gleeing gleeishly gleek gleeked gleeking gleeks gleemaiden gleemaidens gleeman gleemen gleen glees gleesome gleesomely gleesomeness gleet gleeted gleetier gleetiest gleeting gleets gleety gleewoman gleg glegger gleggest glegly glegness glegnesses glei gleichenia gleicheniaceae gleir gleis gleit gleization gleizations glen glendale glendoveer glendoveers glendover glene glengarries glengarry glenlike glenlivet glenn glenohumeral glenoid glenoidal glenoids glens glent glented glenting glents glenwood glessite gletscher gletty glew gley gleyde gleyed gleying gleyings gleys glia gliadin gliadine gliadines gliadins glial glias glib glibbed glibber glibbery glibbest glibbing glibly glibness glibnesses glibs glick glid glidder gliddery gliddest glide glided glideless glideness glider gliderport gliders glides glidewort gliding glidingly glidings gliff gliffing gliffings gliffs gliffy glift glifts glike glikes glim glime glimed glimes gliming glimmer glimmered glimmering glimmeringly glimmerings glimmerite glimmerous glimmers glimmery glimpse glimpsed glimpser glimpsers glimpses glimpsing glims glink glinse glint glinted glintier glintiest glinting glints glinty glioblastoma glioblastomas glioblastomata gliocyte glioma gliomas gliomata gliomatoses gliomatosis gliomatous gliosa glioses gliosis gliricidia gliridae gliriform glirine glis glisk glisks glisky gliss glissade glissaded glissader glissaders glissades glissading glissandi glissando glissandos glissette glist glisten glistened glistening glisteningly glistens glister glistered glistering glisteringly glisters glit glitch glitched glitches glitching glitchy glits glitter glitterance glitterand glitterati glittered glitterier glitteriest glittering glitteringly glitterings glitters glittersome glittery glitz glitzed glitzes glitzier glitziest glitzily glitziness glitzinesses glitzing glitzy gloam gloaming gloamings gloams gloat gloated gloater gloaters gloating gloatingly gloats glob global globalisation globalisations globalise globalised globalises globalising globalism globalisms globalist globalists globality globalization globalizations globalize globalized globalizer globalizers globalizes globalizing globally globate globated globbier globbiest globby globe globed globefish globefishes globeflower globeflowers globeholder globelet globelike globerigina globeriginae globeriginas globes globetrot globetrots globetrotted globetrotter globetrotters globetrotting globetrottings globical globicephala globiferous globigerina globigerinae globigerinas globigerine globigerinidae globin globing globins globoid globoids globose globosely globoseness globosenesses globoses globosite globosities globosity globosphaerite globous globously globousness globs globular globulariaceous globularities globularity globularly globularness globularnesses globule globules globulet globulets globulicidal globulicide globuliferous globuliform globulimeter globulin globulins globulinuria globulite globulites globulitic globuloid globulolysis globulose globulous globulousness globulysis globus globy glochchidia glochid glochideous glochidia glochidial glochidian glochidiate glochidium glochids glochines glochis glockenspiel glockenspiels glod glode gloea gloeal gloeocapsoid gloeosporiose glogg gloggs gloire glom glome glomeli glomera glomerate glomerated glomerates glomerating glomeration glomerations glomeroporphyritic glomerular glomerulate glomerule glomerules glomeruli glomerulitis glomerulonephritides glomerulonephritis glomerulose glomerulus glomi glommed glomming glommox gloms glomus glonoin glonoine glonoins glood gloom gloomed gloomful gloomfully gloomier gloomiest gloomily gloominess gloominesses glooming gloomingly gloomings gloomless glooms gloomth gloomy gloop glooped gloopier gloopiest glooping gloops gloopy glop glopnen glopped gloppen gloppier gloppiest glopping gloppy glops glor glore gloria gloriam glorias gloriation gloried glories gloriette glorifiable glorification glorifications glorified glorifier glorifiers glorifies glorify glorifying gloriole glorioles gloriosa gloriosas gloriosity glorioso glorious gloriously gloriousness gloriousnesses glory gloryful glorying gloryingly gloryless glos gloss glossa glossae glossagra glossal glossalgia glossalgy glossanthrax glossarial glossarially glossarian glossaries glossarist glossarists glossarize glossary glossas glossate glossator glossatorial glossators glossectomies glossectomy glossed glossem glossematic glossematics glosseme glossemes glossemic glosser glossers glosses glossic glossier glossies glossiest glossily glossina glossinas glossiness glossinesses glossing glossingly glossinidae glossist glossitic glossitis glossitises glossless glossmeter glossocarcinoma glossocele glossocoma glossocomium glossocomon glossodia glossodynamometer glossodynia glossodynias glossoepiglottic glossoepiglottidean glossograph glossographer glossographers glossographical glossographies glossography glossohyal glossoid glossokinesthetic glossolabial glossolabiolaryngeal glossolabiopharyngeal glossolalia glossolalias glossolalic glossolalist glossolalists glossolaly glossolaryngeal glossological glossologies glossologist glossologists glossology glossolysis glossoncus glossopalatine glossopalatinus glossopathy glossopetra glossophagine glossopharyngeal glossopharyngeals glossopharyngeus glossophobia glossophorous glossophytia glossoplasty glossoplegia glossopode glossopodium glossopsitta glossoptosis glossopyrosis glossorrhaphy glossoscopia glossoscopy glossospasm glossosteresis glossotomies glossotomy glossotype glossy glost glosts glottal glottalisation glottalise glottalite glottalization glottalize glottalized glottalizing glottic glottid glottidean glottides glottis glottiscope glottises glottitis glottochronological glottochronologies glottochronology glottogonic glottogonist glottogony glottologic glottological glottologies glottologist glottology glotum gloucester glout glouted glouting glouts glove glovebox gloveboxes gloved gloveless glovelike glovemaker glovemaking gloveman glovemen glover gloveress glovers gloves glovey gloving glovings glow glowbard glowbird glowed glower glowered glowerer glowering gloweringly glowers glowflies glowfly glowing glowingly glowlamp glowlamps glows glowworm glowworms gloxinia gloxinias gloy gloze glozed glozer glozes glozing glozingly glozings glt glub glucaemia glucagon glucagons glucan glucans glucase glucate glucemia glucic glucid glucide glucidic glucina glucinas glucine glucinic glucinium gluciniums glucinum glucinums gluck glucke glucocorticoid glucocorticoids glucocorticord glucofrangulin glucogene glucogenesis glucogenic glucokinase glucokinases glucokinin glucolipid glucolipide glucolipin glucolipine glucolysis gluconate gluconates gluconeogeneses gluconeogenesis gluconeogenetic gluconeogenic gluconokinase glucoprotein glucoproteins glucosaemia glucosamine glucosamines glucosan glucosane glucosazone glucose glucosemia glucoses glucosic glucosid glucosidal glucosidase glucosidases glucoside glucosides glucosidic glucosidically glucosin glucosine glucosone glucosulfone glucosuria glucosurias glucosuric glucuronic glucuronidase glucuronidases glucuronide glucuronides glue glued glueing gluelike gluelikeness gluemaker gluemaking glueman gluepot gluepots gluer gluers glues gluey glueyness glueynesses glug glugged glugging glugglug glugs gluhwein gluhweins gluier gluiest gluily gluiness gluinesses gluing gluish gluishness glum gluma glumaceous glumal glume glumelike glumella glumellas glumes glumiferous glumly glummer glummest glummy glumness glumnesses glumose glumosity glumous glump glumpier glumpiest glumpily glumpiness glumpish glumps glumpy glums glunch glunched glunches glunching glunimie gluon gluons glusid gluside glut glutaeal glutaei glutael glutaeous glutaeus glutamate glutamates glutamic glutaminase glutaminases glutamine glutamines glutaminic glutaraldehyde glutaraldehydes glutaric glutathione glutathiones glutch glute gluteal glutei glutelin glutelins gluten glutenin glutenins glutenous glutens gluteofemoral gluteoinguinal gluteoperineal glutes glutetei glutethimide glutethimides gluteus glutimate glutin glutinant glutinate glutination glutinative glutinize glutinose glutinosities glutinosity glutinous glutinously glutinousness glutinousnesses glutition glutoid glutose gluts glutted gluttei glutter gluttery glutting gluttingly glutton gluttoness gluttonies gluttonise gluttonised gluttonises gluttonish gluttonising gluttonism gluttonize gluttonized gluttonizes gluttonizing gluttonous gluttonously gluttonousness gluttonousnesses gluttons gluttony glyburide glyc glycaemia glycaemic glycan glycans glycemia glycemic glyceral glyceraldehyde glyceraldehydes glycerate glyceria glycerias glyceric glyceride glycerides glyceridic glycerin glycerinate glycerinated glycerinates glycerinating glycerination glycerine glycerines glycerinise glycerinize glycerins glycerite glycerize glycerizin glycerizine glycerogel glycerogelatin glycerol glycerolate glycerole glycerolise glycerolize glycerols glycerolyses glycerolysis glycerophosphate glycerophosphoric glycerose glyceroxide glyceryl glyceryls glycic glycid glycide glycidic glycidol glycin glycine glycines glycinin glycins glycocholate glycocholic glycocin glycocoll glycocolls glycogelatin glycogen glycogenase glycogeneses glycogenesis glycogenetic glycogenic glycogenise glycogenize glycogenolyses glycogenolysis glycogenolytic glycogenosis glycogenous glycogens glycogeny glycohaemia glycohemia glycol glycolaldehyde glycolate glycolic glycolide glycolipid glycolipide glycolipids glycolipin glycolipine glycollate glycollic glycollide glycols glycoluric glycoluril glycolyl glycolylurea glycolyses glycolysis glycolytic glycolytically glyconean glyconeogenesis glyconeogenetic glyconic glyconics glyconin glycopeptide glycopeptides glycopexia glycopexis glycoproteid glycoprotein glycoproteins glycosaemia glycosaminoglycan glycosaminoglycans glycose glycosemia glycoses glycosidase glycosidases glycoside glycosides glycosidic glycosidically glycosin glycosine glycosuria glycosurias glycosuric glycosyl glycosylate glycosylated glycosylates glycosylating glycosylation glycosylations glycosyls glycuresis glycuronic glycuronid glycuronide glycyl glycyls glycyphyllin glycyrize glycyrrhiza glycyrrhizin glykopectic glykopexic glyn glyoxal glyoxalase glyoxalic glyoxalin glyoxaline glyoxalines glyoxilin glyoxim glyoxime glyoxyl glyoxylic glyph glyphic glyphograph glyphographer glyphographers glyphographic glyphographies glyphographs glyphography glyphs glyptal glyptic glyptical glyptician glyptics glyptodon glyptodont glyptodontoid glyptodonts glyptograph glyptographer glyptographers glyptographic glyptographical glyptographies glyptographs glyptography glyptolith glyptological glyptologist glyptology glyptotheca glyptothecas glyster glühwein gm gmelina gmelinas gmelinite gmelinites gmt gn gnabble gnamma gnaphalioid gnaphalium gnaphaliums gnapweed gnar gnarl gnarled gnarlier gnarliest gnarliness gnarling gnarls gnarly gnarr gnarred gnarring gnarrs gnars gnash gnashed gnasher gnashers gnashes gnashing gnashingly gnast gnat gnatcatcher gnatcatchers gnateater gnatflower gnathal gnathalgia gnathic gnathidium gnathion gnathions gnathism gnathite gnathites gnathitis gnatho gnathobase gnathobasic gnathometer gnathonic gnathonical gnathonically gnathonism gnathonize gnathophorous gnathoplasty gnathopod gnathopodite gnathopodous gnathostegite gnathostomata gnathostomatous gnathostome gnathostomous gnathotheca gnatlike gnatling gnatlings gnatoo gnatproof gnats gnatsnap gnatsnapper gnatter gnattier gnattiest gnatty gnatworm gnaw gnawable gnawed gnawer gnawers gnawing gnawingly gnawings gnawn gnaws gneiss gneisses gneissic gneissitic gneissoid gneissose gneissy gnessic gnetaceae gnetaceous gnetales gnetophyta gnetophytina gnetopsida gnetum gnetums gneu gnide gnocchetti gnocchi gnocchis gnoff gnomae gnome gnomed gnomelike gnomes gnomesque gnomic gnomical gnomically gnomide gnomish gnomist gnomists gnomologic gnomological gnomologist gnomology gnomon gnomonic gnomonical gnomonically gnomonics gnomonological gnomonologically gnomonologies gnomonology gnomons gnoseologies gnoseology gnoses gnosiological gnosiologies gnosiology gnosis gnostic gnostical gnostically gnosticise gnosticiser gnosticism gnosticisms gnosticity gnosticize gnosticizer gnostics gnostology gnotobiological gnotobiologies gnotobiology gnotobioses gnotobiosis gnotobiote gnotobiotes gnotobiotic gnotobiotically gnotobiotics gnow gnp gns gnu gnus go goa goad goaded goading goadlike goads goadsman goadsmen goadster goadsters goaf goafs goal goalage goalball goalballs goaled goalee goaler goalers goalie goalies goaling goalkeeper goalkeepers goalkeeping goalkicker goalkickers goalkicking goalkickings goalless goalmouth goalmouths goalpost goalposts goals goalscorer goalscorers goalscoring goaltender goaltenders goaltending goaltendings goalward goanna goannas goar goary goas goat goatbeard goatbrush goatbush goatee goateed goatees goatfish goatfishes goatherd goatherder goatherdess goatherds goatier goatiest goatish goatishly goatishness goatishnesses goatland goatlike goatling goatlings goatly goatpox goatroot goats goatsbane goatsbeard goatsbeards goatsfoot goatskin goatskins goatstone goatsucker goatsuckers goatweed goatweeds goaty goave goaves gob goback goban gobang gobangs gobans gobbe gobbed gobbeline gobbelines gobber gobbet gobbets gobbi gobbin gobbing gobble gobbled gobbledegook gobbledegooks gobbledygook gobbledygooks gobbler gobblers gobbles gobbling gobbo gobby gobelin gobemouche gobemouches gobernadora gobet gobi gobies gobiesocid gobiesocidae gobiesociform gobiesox gobiid gobiidae gobiids gobiiform gobio gobioid gobioids goblet gobleted gobletful goblets goblin gobline goblinesque goblinish goblinism goblinize goblinry goblins gobmouthed gobo goboes gobonated gobonee gobony gobos gobs gobshite gobshites gobsmacked gobstick gobstopper gobstoppers goburra goburras goby gobylike gocart goclenian god godawful godchild godchildren goddam goddamed goddaming goddammed goddamming goddammit goddamn goddamndest goddamned goddamnedest goddamning goddamnit goddamns goddams goddard goddaughter goddaughters godded godden goddens goddess goddesses goddesshood goddessship goddikin godding goddise goddize gode godelich godendag godet godetia godetias godets godfather godfathered godfatherhood godfathering godfathers godfathership godforsaken godhead godheads godhood godhoods godiva godkin godless godlessly godlessness godlessnesses godlet godlier godliest godlike godlikeness godlikenesses godlily godliness godlinesses godling godlings godly godmaker godmaking godmamma godmother godmotherhood godmothers godmothership godown godowns godpapa godparent godparents godroon godrooned godrooning godroonings godroons gods godsend godsends godsent godship godships godsib godslot godso godson godsons godsonship godsos godspeed godspeeds godward godwards godwit godwits goe goebbels goeduck goel goelism goels goen goer goers goes goeteborg goethe goethean goethian goethite goethites goetia goetic goetical goeties goety goey gofer gofers goff goffed goffer goffered gofferer goffering gofferings goffers goffing goffle goffs gog gogetting gogga goggan goggle gogglebox goggled goggler gogglers goggles gogglier goggliest goggling gogglings goggly goglet goglets gogmagog gogo gogos goi goiabada goidel goidelic goier goiest going goings gois goitcho goiter goitered goiterogenic goiters goitral goitre goitred goitres goitrogen goitrogenic goitrogenicities goitrogenicity goitrogens goitrous gol gola golach goladar golandaas golandause golconda golcondas gold goldang goldanged goldarn goldarned goldarnedest goldarns goldbeater goldbeaters goldbeating goldbeatings goldbrick goldbricked goldbricker goldbrickers goldbricking goldbricks goldbug goldbugs goldcrest goldcrests goldcup golden goldenback goldenberries goldenberry goldenbush goldened goldener goldenest goldeney goldeneye goldeneyes goldenfleece goldenhair goldening goldenknop goldenlocks goldenly goldenmouthed goldenness goldennesses goldenpert goldenrod goldenrods goldens goldenseal goldenseals goldentop goldenwing golder goldest goldeye goldeyes goldfield goldfielder goldfields goldfinch goldfinches goldfinnies goldfinny goldfish goldfishes goldflower goldhammer goldhead goldie goldier goldiest goldilocks goldin golding goldish goldless goldlike goldmine goldminer goldminers goldmines goldmist goldney goldplate golds goldseed goldsinnies goldsinny goldsize goldsizes goldsmith goldsmitheries goldsmithery goldsmithing goldsmithries goldsmithry goldsmiths goldspink goldspinks goldstein goldstick goldsticks goldstone goldstones goldtail goldthread goldthreads goldtit goldtone goldurn goldurned goldurnedest goldurns goldwater goldweed goldwork goldworker goldy goldylocks gole golee golem golems goles golet golf golfcart golfclub golfdom golfed golfer golfers golfiana golfianas golfing golfings golfs golgotha golgothas goli goliad goliard goliarderies goliardery goliardeys goliardic goliardies goliards goliardy golias goliased goliases goliasing goliath goliathise goliathised goliathises goliathising goliathize goliathized goliathizes goliathizing goliaths golilla golkakra goll gollan golland gollands gollans gollar gollared gollaring gollars goller gollered gollering gollers gollies golliwog golliwogg golliwoggs golliwogs gollop golloped golloping gollops golly gollywobbler gollywog gollywogs goloch goloe goloka golomynka golomynkas goloptious golosh goloshe goloshed goloshes goloshing goloshoes golp golpe golpes golps golundauze goluptious gomari gomarist gomart gomashta gomasio gomasios gomasta gomavel gombay gombeen gombeenism gombeens gombo gombos gombro gombroon gombroons gombros gome gomer gomeral gomerals gomerec gomerel gomerels gomeril gomerils gomers gomlah gommelin gommier gomoku gomokus gomorrah gomorrean gomorrha gompa gompas gomphiasis gomphodont gomphoses gomphosis gomphothere gomphotheriidae gomphotherium gomphrena gomukhi gomuti gomutis gomuto gomutos gon gonad gonadal gonadectomies gonadectomized gonadectomizing gonadectomy gonadial gonadic gonadotrope gonadotrophic gonadotrophin gonadotrophins gonadotropic gonadotropin gonadotropins gonads gonaduct gonagia gonagra gonake gonakie gonal gonalgia gonangia gonangial gonangium gonangiums gonapod gonapophysal gonapophysial gonapophysis gonarthritis goncalo gond gondang gondelay gondelays gondi gondite gondola gondolas gondolet gondoletta gondolier gondoliere gondoliers gondwanaland gone gonef gonefs goneness gonenesses goneoclinic gonepoiesis gonepoietic goner goners gonesome goney gonfalcon gonfalon gonfalonier gonfalonierate gonfaloniers gonfaloniership gonfalons gonfanon gonfanons gong gonged gonging gonglike gongman gongorism gongoristic gongs gongster gongsters gonia goniac gonial goniale goniatite goniatites goniatitic goniatitid goniatitoid goniatitoids gonid gonidangium gonidia gonidial gonidic gonidiferous gonidiogenous gonidioid gonidiophore gonidiose gonidiospore gonidium gonif goniff goniffs gonifs gonimic gonimium gonimoblast gonimoblasts gonimolobe gonimous goninidia goniocraniometry goniometer goniometers goniometric goniometrical goniometrically goniometries goniometry gonion gonionia gonions goniopteris goniostat goniotheca goniotropous gonitis gonium goniums goniunia gonk gonked gonking gonks gonna gonnardite gonne gonoblast gonoblastic gonoblastidial gonoblastidium gonocalycine gonocalyx gonocheme gonochorism gonochorismal gonochorismus gonochoristic gonococcal gonococci gonococcic gonococcocci gonococcoid gonococcus gonocoel gonocoele gonocyte gonocytes gonoecium gonof gonofs gonogenesis gonomere gonomery gonoph gonophore gonophores gonophoric gonophorous gonophs gonoplasm gonopod gonopodia gonopodial gonopodium gonopodpodia gonopoietic gonopore gonopores gonorhynchidae gonorhynchus gonorrhea gonorrheal gonorrheas gonorrheic gonorrhoea gonorrhoeal gonorrhoeas gonorrhoeic gonosomal gonosome gonosphere gonostyle gonotheca gonothecae gonothecal gonotocont gonotokont gonotome gonotyl gonotype gonozooid gons gony gonyalgia gonyaulax gonycampsis gonydeal gonydial gonyocele gonyoncus gonys gonyses gonystylaceous gonytheca gonzalo gonzo goo goober goobers good goodby goodbye goodbyes goodbys goodeniaceous gooder gooders goodfaced goodfellow goodfellows goodfellowship goodfellowships goodhap goodhearted goodheartedly goodheartedness goodheartednesses goodhumored goodhumoredness goodie goodier goodies goodiest goodiness goodinesses gooding goodish goodishness goodless goodlier goodliest goodlihead goodliheads goodlike goodliness goodlinesses goodly goodlyhead goodlyheads goodman goodmanship goodmen goodnaturedness goodness goodnesses goodnight goodnights goodrich goods goodship goodsire goodsires goodsome goodtemperedness goodtime goodwife goodwilies goodwill goodwilled goodwillie goodwillies goodwillit goodwills goodwilly goodwily goodwives goody goodyear goodyears goodyera goodyish goodyism goodyness goodyship gooey gooeyness gooeynesses goof goofah goofball goofballs goofed goofer goofier goofiest goofily goofiness goofinesses goofing goofproof goofs goofy goog google googled googles googlies googling googly googol googolplex googolplexes googols googs googul gooier gooiest gook gooks gooky gool goolah goold goolde goolds gooley gooleys goolie goolies gools gooly gooma goombah goombahs goombay goombays goon goonch goonda goondas goondie gooney gooneybird gooneybirds gooneys goonie goonier goonies gooniest goonily goons goony goop goopier goopiest goops goopy goor gooral goorals gooranut gooroo gooroos goors goos goosander goosanders goose goosebeak gooseberries gooseberry goosebill goosebird goosebone gooseboy goosebump goosebumps goosecap goosed goosefish goosefishes gooseflesh goosefleshes gooseflower goosefoot goosefoots goosegirl goosegob goosegobs goosegog goosegogs goosegrass goosegrasses gooseherd gooseherds goosehouse gooselike gooseliver goosemouth gooseneck goosenecked goosenecks goosepimply gooseries gooserumped goosery gooses gooseskin goosestep goosestepped goosestepping goosesteps goosetongue gooseweed goosewing goosewinged goosey gooseys goosier goosies goosiest goosing goosish goosishly goosishness goosy gootee goozle gop gopak gopaks gopher gopherberries gopherberry gophered gophering gopherman gopherroot gophers gopherus gopherwood gopherwoods gopik gopura gopuram gopurams gopuras gor gora goracco goral goralog gorals goramies goramy goran gorb gorbal gorbellied gorbellies gorbelly gorbet gorbit gorble gorblimey gorblimeys gorblimies gorblimy gorblin gorce gorcock gorcocks gorcrow gorcrows gordiacean gordiaceous gordian gordiid gordioid gordolobo gordunite gore gorebill gored gorefish gorer gores gorevan gorfly gorge gorgeable gorged gorgedly gorgelet gorgeous gorgeously gorgeousness gorgeousnesses gorger gorgeret gorgerin gorgerins gorgers gorges gorget gorgeted gorgets gorgia gorgias gorging gorgio gorgios gorglin gorgon gorgonacea gorgonacean gorgonaceous gorgoneia gorgoneion gorgoneioneia gorgonesque gorgoneum gorgonia gorgoniacea gorgoniacean gorgoniaceous gorgonian gorgonians gorgonin gorgonise gorgonised gorgonises gorgonising gorgonize gorgonized gorgonizes gorgonizing gorgonlike gorgonocephalus gorgons gorgonzola gorgosaurus gorhen gorhens goric gorier goriest gorilla gorillalike gorillas gorillaship gorillian gorillians gorilline gorillines gorilloid gorily goriness gorinesses goring gorings gork gorki gorkiy gorks gorkun gorky gorlin gorling gorlois gorm gorman gormand gormandise gormandised gormandiser gormandisers gormandises gormandising gormandisings gormandism gormandisms gormandize gormandized gormandizer gormandizers gormandizes gormandizing gormandizings gormands gormaw gormed gormier gormiest gorming gormless gormlessly gormlessness gorms gormy gorp gorped gorping gorps gorra gorraf gorrel gorry gorse gorsebird gorsechat gorsedd gorsedds gorsehatch gorses gorsier gorsiest gorsoon gorsoons gorst gorsy gory gos gosain gosainthan goschen goschens gosh goshawful goshawk goshawks goshdarn goshen goshenite goshes gosht goshts goslarite goslarites goslet goslets gosling goslings gosmore gospel gospeler gospelers gospelise gospelised gospelises gospelising gospelist gospelize gospelized gospelizes gospelizing gospelled gospeller gospellers gospellike gospelling gospellise gospellised gospellises gospellising gospellize gospellized gospellizes gospellizing gospelly gospelmonger gospels gospelwards gospoda gospodar gospodars gospodin gospodipoda gosport gosports goss gossamer gossamered gossameriness gossamers gossamery gossampine gossan gossaniferous gossans gossard gosse gossep gosses gossib gossibs gossip gossipdom gossiped gossipee gossiper gossipers gossiphood gossipiness gossiping gossipingly gossipings gossipmonger gossipmongering gossipmongers gossipped gossipper gossipping gossipred gossipries gossipry gossips gossipy gossoon gossoons gossy gossypin gossypine gossypium gossypol gossypols gossypose goster gosther got gotch gotcha gotchas gotched gotchy gote goteborg goter goth gotha gotham gothenburg gothic gothically gothicise gothicised gothicises gothicising gothicism gothicisms gothicist gothicize gothicized gothicizes gothicizing gothicness gothicnesses gothics gothish gothite gothites goths goto gotos gotra gotraja gotta gotten gotterdammerung gotterdammerungs gou gouache gouaches gouaree gouda gouge gouged gouger gougere gougeres gougers gouges gouging gougingly gougère goujat goujay goujeers goujon goujons gouk gouks goulan goularo goulash goulashes gouldian goumi goumier gounau goundou goup goupen goupin gour goura gourami gouramies gouramis gouras gourd gourde gourded gourdes gourdful gourdhead gourdier gourdiest gourdiness gourdinesses gourding gourdlike gourds gourdworm gourdy gourmand gourmander gourmanderie gourmandise gourmandised gourmandises gourmandising gourmandism gourmandisms gourmandize gourmandized gourmandizer gourmandizes gourmandizing gourmands gourmet gourmetism gourmets gournard gourounut goury goustie goustier goustiest goustrous gousty gout gouter goutflies goutfly goutier goutiest goutify goutily goutiness goutinesses goutish gouts goutta goutte gouttes goutweed goutweeds goutwort goutworts gouty gouvernante gouvernantes gov gove govern governability governable governableness governably governail governall governalls governance governances governante governantes governed governeress governess governessdom governessed governesses governesshood governessing governessy governing governingly governless government governmental governmentalise governmentalised governmentalises governmentalising governmentalism governmentalisms governmentalist governmentalists governmentalize governmentalized governmentalizes governmentalizing governmentally governmentese governmenteses governmentish governments governor governorate governorates governors governorship governorships governs govs govt gowan gowaned gowans gowany gowd gowder gowdest gowdie gowdnie gowdnook gowds gowdspink gowdspinks gowdy gowf gowfed gowfer gowfers gowfing gowfs gowiddie gowk gowked gowkedly gowkedness gowkit gowks gowl gowlan gowland gowlands gowlans gowled gowling gowls gown gownboy gownboys gowned gowning gownlet gownman gownmen gowns gownsman gownsmen gowpen gowpenful gowpenfuls gowpens gowpin gox goxes goy goyazite goyim goyin goyisch goyish goyle goys gozell gozill gozzan gozzans gozzard gp gpad gpcd gpd gph gpm gps gpss gr gra graafian graal graals grab grabbable grabbed grabber grabbers grabbier grabbiest grabbiness grabbinesses grabbing grabbings grabble grabbled grabbler grabblers grabbles grabbling grabbots grabby graben grabens grabhook grabman grabouche grabs grace graced graceful gracefuller gracefullest gracefully gracefulness gracefulnesses graceless gracelessly gracelessness gracelessnesses gracelike gracer graces gracias gracilariid gracilariidae gracile gracileness gracilenesses graciles gracilescent gracilis gracilities gracility gracillariidae gracing graciosities graciosity gracioso graciosos gracious graciouses graciously graciousness graciousnesses grackle grackles gracula gracy grad gradabilities gradability gradable gradables gradal gradate gradated gradates gradatim gradating gradation gradational gradationally gradationately gradationed gradations gradative gradatively gradatory graddan graddaned graddaning graddans grade graded gradefinder gradeless gradely grademark grader graders grades gradgrind gradient gradienter gradienters gradients gradin gradine gradines grading gradings gradini gradino gradins gradiometer gradiometers gradiometric gradometer grads gradual graduale gradualism gradualisms gradualist gradualistic gradualists gradualities graduality gradually gradualness gradualnesses graduals graduand graduands graduate graduated graduates graduateship graduateships graduatical graduating graduation graduations graduator graduators gradus graduses graeae graecian graecism graecize graecized graecizes graecizing graecomania graecophil graecophile graecophilic graf graff graffage graffed graffer graffing graffiti graffitied graffitis graffitist graffitists graffito graffs grafship graft graftage graftages graftdom grafted grafter grafters grafting graftings graftonite graftproof grafts grager gragers graham grahamism grahamite grahams grail graile grailer grailes grailing graille grails grain grainage grainages graine grained grainedness grainer grainering grainers grainery graines grainfield grainfields grainier grainiest graininess graininesses graining grainings grainland grainless grainman grains grainsick grainsickness grainsman grainsmen grainways grainy graip graips graisse graith graithed graithing graithly graiths grakle grakles grallatorial grallatory grallic gralline gralloch gralloched gralloching grallochs gram grama gramaphone gramaries gramary gramarye gramaryes gramas gramash gramashes grame gramenite gramercies gramercy grames gramicidin gramicidins graminaceae graminaceous graminales gramineae gramineal gramineous gramineousness gramineousnesses graminicolous graminiferous graminifolious graminiform graminin graminivore graminivorous graminological graminology graminous gramma grammalogue grammalogues grammar grammarian grammarianism grammarians grammarless grammars grammas grammates grammatic grammatical grammaticalities grammaticality grammaticalization grammaticalizations grammaticalize grammaticalized grammaticalizes grammaticalizing grammatically grammaticalness grammaticalnesses grammaticaster grammaticasters grammatication grammaticise grammaticised grammaticises grammaticising grammaticism grammaticisms grammaticize grammaticized grammaticizes grammaticizing grammatics grammatist grammatistical grammatists grammatite grammatolator grammatolatry grammatologic grammatological grammatologies grammatologist grammatology grammatophyllum gramme grammel grammes grammies grammy gramoche gramoches gramophone gramophones gramophonic gramophonical gramophonically gramophonies gramophonist gramophonists gramophony gramp grampa grampas gramper gramps grampus grampuses grams gramy gran grana granada granadilla granadillas granadillo granado granage granam granaries granary granat granate granatite granatum granch grand grandad grandada grandads grandam grandame grandames grandams grandaunt grandaunts grandbabies grandbaby grandchild grandchildren granddad granddada granddaddies granddaddy granddads granddam granddams granddaughter granddaughterly granddaughters grande grandee grandeeism grandees grandeeship grandeeships grander grandesque grandest grandeur grandeurs grandeval grandevity grandevous grandeza grandezza grandfather grandfathered grandfatherhood grandfathering grandfatherish grandfatherless grandfatherly grandfathers grandfathership grandfer grandfilial grandgore grandiflora grandiflorae grandifloras grandiloquence grandiloquences grandiloquent grandiloquently grandiloquous grandiose grandiosely grandioseness grandiosenesses grandiosities grandiosity grandioso grandisonant grandisonian grandisonous grandity grandkid grandkids grandly grandma grandmama grandmamas grandmamma grandmammas grandmammy grandmas grandmaster grandmasters grandmaternal grandmother grandmotherhood grandmotherism grandmotherliness grandmotherly grandmothers grandnephew grandnephews grandness grandnesses grandniece grandnieces grando grandpa grandpap grandpapa grandpapas grandpappy grandparent grandparentage grandparental grandparenthood grandparenthoods grandparents grandpas grandpaternal grandrelle grands grandsir grandsire grandsires grandsirs grandson grandsons grandsonship grandstand grandstanded grandstander grandstanders grandstanding grandstands grandtotal granduncle granduncles grane granes granet granfer granfers grange granger grangerisation grangerisations grangerise grangerised grangeriser grangerises grangerising grangerism grangerisms grangerite grangerization grangerizations grangerize grangerized grangerizer grangerizes grangerizing grangers granges granicus graniferous graniform granilla granita granitas granite granitelike granites graniteware granitewares granitic granitical graniticoline granitiferous granitification granitifications granitiform granitisation granitisations granitise granitised granitises granitising granitite granitites granitization granitizations granitize granitized granitizes granitizing granitoid granitoidal granivore granivores granivorous granjeno grank granma grannam grannams grannie grannied grannieing grannies grannom granny grannybush grannying grannyknot grano granoblastic granodiorite granodiorites granodioritic granogabbro granola granolas granolite granolith granolithic granolithics granoliths granomerite granophyre granophyres granophyric granose granospherite grans grant grantable granted grantedly grantee grantees granter granters granthi granting grantor grantors grants grantsman grantsmanship grantsmanships grantsmen granula granular granularities granularity granularly granulary granulate granulated granulater granulaters granulates granulating granulation granulations granulative granulator granulators granule granules granulet granuliferous granuliform granulise granulite granulites granulitic granulitis granulitisation granulitisations granulitization granulitizations granulitize granulization granulize granuloadipose granuloblast granuloblastic granulocyte granulocytes granulocytic granulocytopenia granulocytopoieses granulocytopoiesis granuloma granulomas granulomata granulomatosis granulomatous granulometric granulosa granulose granuloses granulosis granulous granum granza granzita grape graped grapeflower grapefruit grapefruits grapeful grapeless grapelet grapelike grapeline grapenuts graperies graperoot grapery grapes grapeseed grapeseeds grapeshot grapeshots grapeskin grapestalk grapestone grapestones grapetree grapetrees grapevine grapevines grapewise grapewort grapey grapeys graph graphalloy graphanalysis graphed grapheme graphemes graphemic graphemically graphemics graphic graphicacies graphicacy graphical graphically graphicalness graphicly graphicness graphicnesses graphics graphing graphiological graphiologist graphiology graphite graphiter graphites graphitic graphitisable graphitisation graphitisations graphitise graphitised graphitises graphitising graphitizable graphitization graphitizations graphitize graphitized graphitizes graphitizing graphitoid graphitoidal graphium graphiums graphoanalytical grapholect grapholects grapholite graphologic graphological graphologies graphologist graphologists graphology graphomania graphomaniac graphomaniacal graphomanias graphometer graphometric graphometrical graphometrist graphometry graphomotor graphonomy graphophobia graphophobias graphophone graphophonic graphorrhea graphoscope graphospasm graphostatic graphostatical graphostatics graphotype graphotypic graphs graphy grapier grapiest grapiness grapinesses graping graple grapled graplement graplements graples graplin grapline graplines grapling graplins grapnel grapnels grappa grappas grapple grappled grapplement grappler grapplers grapples grappling grapplings grapsoid graptolite graptolites graptolitic graptomancy graptophyllum grapy gras grasni grasp graspable grasped grasper graspers grasping graspingly graspingness graspingnesses graspless grasps grass grassant grassation grassbird grasschat grasscut grasscutter grassed grasser grasserie grassers grasses grasset grasseye grassfinch grassfire grassflat grassflower grasshook grasshooks grasshop grasshopper grasshopperdom grasshopperish grasshoppers grasshouse grassie grassier grassiest grassily grassiness grassinesses grassing grassings grassland grasslands grassless grasslike grassman grassmen grassnut grassplat grassplot grassquit grassroot grassroots grassum grassums grasswards grassweed grasswidow grasswidowhood grasswork grassworm grasswrack grasswracks grassy graste grat grata gratae grate grated grateful gratefuller gratefullest gratefullies gratefully gratefulness gratefulnesses grateless gratelike grateman grater graters grates gratewise grather gratia gratias graticulate graticulation graticulations graticule graticules gratifiable gratification gratifications gratified gratifiedly gratifier gratifiers gratifies gratify gratifying gratifyingly gratility gratillities gratillity gratin gratinate gratinated gratinates gratinating gratine gratinee gratineed gratineeing gratinees gratineing gratines grating gratingly gratings gratins gratiné gratinée gratiola gratiolin gratiosolin gratis gratitude gratitudes grattage gratten gratters grattoir grattoirs gratton gratuitant gratuities gratuito gratuitous gratuitously gratuitousness gratuitousnesses gratuity gratulant gratulate gratulated gratulates gratulating gratulation gratulations gratulatorily gratulatory graunch graunched grauncher graunchers graunches graunching graunt graupel graupels graustark grauwacke grav gravadlax gravadlaxes gravamem gravamen gravamens gravamina gravaminous gravat gravata grave graveclod gravecloth graveclothes graved gravedigger gravediggers gravedo gravegarth gravel graveldiver graveled graveless gravelike graveling gravelish gravelled gravelliness gravelling gravelly gravelous gravelroot gravels gravelstone gravelweed gravely gravemaker gravemaking graveman gravemaster graven graveness gravenesses graveolence graveolency graveolent graver graverobber graverobbing gravers gravery graves graveship graveside gravesides gravesite gravesites gravest gravestead gravestone gravestones gravette graveward gravewards graveyard graveyards gravic gravicembali gravicembalo gravicembalos gravid gravida gravidae gravidas gravidate gravidation gravidities gravidity gravidly gravidness gravidnesses graviers gravies gravific gravigrade gravilea gravimeter gravimeters gravimetric gravimetrical gravimetrically gravimetries gravimetry graving gravings gravipause gravisphere gravispheric gravitas gravitases gravitate gravitated gravitater gravitaters gravitates gravitating gravitation gravitational gravitationally gravitations gravitative gravitic gravities gravitometer gravitometers graviton gravitons gravity gravlaks gravlax gravlaxes gravs gravure gravures gravy grawls gray grayback graybacks graybeard graybearded graybeards graycoat grayed grayer grayest grayfish grayfishes grayflies grayfly grayhair grayhead grayhen grayhens grayhound graying grayish grayishness graylag graylags grayle grayles grayling graylings grayly graymail graymails graymalkin graymill grayness graynesses grayout grayouts graypate grays graysbies graysby grayscale graywacke graywackes graywall grayware graywether grazable graze grazeable grazed grazer grazers grazes grazie grazier grazierdom graziers graziery grazing grazingly grazings grazioso gre greable greably grease greaseball greaseballs greaseband greasebands greasebush greased greasehorn greaseless greaselessness greasepaint greasepaints greaseproof greaseproofness greaseproofs greaser greasers greases greasewood greasewoods greasier greasies greasiest greasily greasiness greasinesses greasing greasy great greatcoat greatcoated greatcoats greaten greatened greatening greatens greater greatest greathead greatheart greathearted greatheartedly greatheartedness greatheartednesses greatish greatly greatmouthed greatness greatnesses greats greave greaved greaves greaving grebe grebes grecale grece greces grecian grecianize grecianized grecianizes grecianizing grecians grecing grecise grecised grecises grecising grecism grecize grecized grecizes grecizing greco grecoue grecque grecques gree greece greeces greed greedier greediest greedily greediness greedinesses greedless greeds greedsome greedy greedygut greedyguts greegree greegrees greeing greek greeking greekings greekish greekize greekling greeks green greenable greenage greenalite greenback greenbacker greenbackers greenbackism greenbackisms greenbacks greenbark greenbelt greenbelts greenboard greenbone greenbottle greenbottles greenbrier greenbriers greenbug greenbugs greenbul greencloth greencloths greencoat greened greener greeneries greeners greenery greenest greeney greeneye greenfield greenfinch greenfinches greenfish greenfishes greenflies greenfly greengage greengages greengill greengrocer greengroceries greengrocers greengrocery greenhand greenhands greenhead greenheaded greenheads greenheart greenhearted greenhearts greenhew greenhide greenhood greenhorn greenhornism greenhorns greenhouse greenhouses greenie greenier greenies greeniest greening greenings greenish greenishness greenishnesses greenkeeper greenkeepers greenkeeping greenland greenlandite greenleaf greenleek greenless greenlet greenlets greenlight greenlighted greenlighting greenlights greenling greenlings greenlit greenly greenmail greenmailed greenmailer greenmailers greenmailing greenmails greenmarket greenmarkets greenness greennesses greenockite greenockites greenovite greenroom greenrooms greens greensand greensands greensauce greensboro greenshank greenshanks greensick greensickness greensicknesses greenside greenskeeper greenskeepers greenslade greenspeak greenspeaks greenstick greenstone greenstones greenstuff greenstuffs greensward greenswarded greenswards greentail greenth greenths greenthumbed greenuk greenware greenwash greenwashed greenwashes greenwashing greenwax greenway greenways greenweed greenweeds greenwich greenwing greenwings greenwithe greenwood greenwoods greenwort greeny greenyard grees greesagh greese greeses greeshoch greesing greesings greet greete greeted greeter greeters greetes greeting greetingless greetingly greetings greets greeve greffe greffier greffiers greffotome gregal gregale gregales gregaloid gregarian gregarianism gregarianisms gregarine gregarines gregarinian gregarinida gregarinidal gregariniform gregarinosis gregarinous gregarious gregariously gregariousness gregariousnesses gregaritic gregatim gregau grege greggle greggriffin grego gregor gregorian gregorianist gregories gregory gregos greige greiges greillade grein greined greing greining greins greisen greisenisation greisenisations greisenise greisenised greisenises greisenising greisenization greisenizations greisenize greisenized greisenizes greisenizing greisens greisly greit greith greking grelot gremial gremiale gremials gremio gremlin gremlins gremmie gremmies gremmy gremolata gremolatas gren grenada grenade grenades grenadian grenadier grenadierial grenadierly grenadiers grenadiership grenadilla grenadillas grenadin grenadine grenadines grenado grenat grenatite grene grenier grenned grenning grens grep grepped grepping greps gres grese greses gresil gressible gressing gressings gressorial gressorious gret greta grete greund greve greves grevillea grew grewed grewhound grewhounds grewia grewing grews grewsome grewsomely grewsomeness grewsomer grewsomest grewt grex grexes grey greyback greybeard greybeards greycoat greyed greyer greyest greyfish greyflies greyfly greyhen greyhens greyhound greyhounds greying greyings greyish greylag greylags greyling greyly greymail greymails greyness greynesses greypate greys greyskin greystone greystones greywacke greywackes greyware greywether greywethers grf grias gribane gribble gribbles grice gricer gricers grices gricing gricings grid gridded gridder gridders gridding griddle griddlecake griddlecakes griddled griddler griddles griddling gride grided gridelin gridelins grides griding gridiron gridironed gridironing gridirons gridlock gridlocked gridlocking gridlocks grids grieben griece grieced griecep grieces grief griefful grieffully griefless grieflessness griefs griege grieko grieshoch grieshuckle griesie griesly griesy grievable grievance grievances grievant grievants grieve grieved grievedly griever grievers grieves grieveship grieving grievingly grievous grievously grievousness grievousnesses griff griffade griffado griffaun griffe griffes griffin griffinage griffinesque griffinhood griffinish griffinism griffinisms griffins griffithite griffon griffonage griffonne griffons griffs grift grifted grifter grifters grifting grifts grig grigged grigging griggles grignet grigri grigris grigs grihastha grihyasutra grike grikes grill grilla grillade grilladed grillades grillading grillage grillages grille grilled grillee griller grilleries grillers grillery grilles grillework grilling grillings grillroom grillrooms grills grillsteak grillsteaks grillwork grillworks grilly grilse grilses grim grimace grimaced grimacer grimacers grimaces grimacier grimacing grimacingly grimalkin grimalkins grime grimed grimes grimful grimgribber grimier grimiest grimily grimines griminess griminesses griming grimliness grimlooked grimly grimm grimme grimmer grimmest grimmiaceous grimmish grimness grimnesses grimoire grimoires grimp grimsir grimsire grimy grin grinagog grinch grinches grincome grind grindable grindal grinded grindelia grinder grinderies grinderman grinders grindery grinding grindingly grindings grindle grinds grindstone grindstones gringa gringas gringo gringole gringolee gringophobia gringos grinned grinner grinners grinnie grinnies grinning grinningly grinny grins grint grinter grintern griot griots griotte grip gripe griped gripeful griper gripers gripes gripewater gripey gripgrass griph griphe griphite griphus gripier gripiest griping gripingly griple griples gripless gripman gripmen gripment grippal grippe gripped grippelike gripper grippers grippes grippier grippiest grippiness gripping grippingly grippingness grippit gripple grippleness gripples grippotoxin grippy grips gripsack gripsacks gript griptape griptapes gripy griquaite gris grisaille grisailles grisard grisbet grise grised griselda griselinia grisely griseofulvin griseofulvins griseous grises grisette grisettes grisettish grisgris grising griskin griskins grisled grislier grisliest grisliness grislinesses grisly grison grisons grisounite grisoutine grisping grissen grissens grisset grissino grissons grist gristbite grister gristers gristle gristles gristlier gristliest gristliness gristlinesses gristly gristmill gristmiller gristmilling gristmills grists gristy grisy grit grith grithbreach grithman griths gritless gritrock grits gritstone gritstones gritted gritten gritter gritters grittest grittie grittier grittiest grittily grittiness grittinesses gritting grittle gritty grivation grivet grivets grivna grivois grivoise grizard grize grizel grizelin grizes grizzle grizzled grizzler grizzlers grizzles grizzlier grizzlies grizzliest grizzliness grizzling grizzly grizzlyman gro groan groaned groaner groaners groanful groaning groaningly groanings groans groat groats groatsworth groatsworths grobian grobianism grocer grocerdom groceress groceries grocerly grocers grocerwise grocery groceryman grocerymen groceteria groceterias grockle grockles grodier grodiest grody groenendael groenlandia groenlandicus groff grog grogged grogger groggeries groggery groggier groggiest groggily grogginess grogginesses grogging groggy grognard grogram grograms grogs grogshop grogshops groin groined groinery groining groinings groins grok grokked grokking groks groma gromas gromatic gromatical gromatics gromet gromets gromil grommet grommeted grommeting grommets gromwell gromwells gromyl grond grondwet grone groned gronefull grones groning gront groof groofs groolier grooliest grooly groom groomed groomer groomers grooming groomish groomishly groomlet groomling grooms groomsman groomsmen groomy groop grooper groose groot grooty groove grooved grooveless groovelike groover grooverhead groovers grooves groovier grooviest groovily grooviness groovinesses grooving groovy groow grope groped groper gropers gropes groping gropingly gropings gropius gropple groroilite grorudite gros grosbeak grosbeaks groschen groschens groser grosers grosert groserts groset grosets grosgrain grosgrained grosgrains gross grossart grossarts grossbeak grosse grossed grossen grosser grossers grosses grossest grosshead grossierete grossification grossify grossing grossirete grossièreté grossly grossness grossnesses grosso grossulaceous grossular grossularia grossulariaceae grossulariaceous grossularious grossularite grossularites grossulars grosz grosze groszy grot grote groten grotesco grotesque grotesquely grotesqueness grotesquenesses grotesquer grotesquerie grotesqueries grotesquery grotesques grotesquest grothine grothite grots grottesco grottier grottiest grottily grottiness grottinesses grotto grottoed grottoes grottolike grottos grottowork grotty grotzen grouch grouched grouches grouchier grouchiest grouchily grouchiness grouchinesses grouching grouchingly groucho grouchy grouf groufs grough groughs ground groundable groundably groundage groundages groundbait groundbaits groundberry groundbird groundbreaker groundbreakers groundbreaking groundbreakings groundburst groundbursts groundcloth groundcloths groundcover grounded groundedly groundedness grounden groundenell grounder grounders groundfish groundfishes groundflower groundhog groundhogs grounding groundings groundkeeper groundkeepers groundless groundlessly groundlessness groundlessnesses groundline groundliness groundling groundlings groundly groundman groundmass groundmasses groundmen groundneedle groundnut groundnuts groundout groundouts groundplan groundplans groundplot groundplots groundprox groundproxes grounds groundsel groundsell groundsells groundsels groundsheet groundsheets groundsill groundsills groundskeep groundskeeper groundskeepers groundskeeping groundskeepings groundsman groundsmen groundspeed groundspeeds groundstroke groundstrokes groundswell groundswells groundwall groundward groundwards groundwater groundwaters groundwave groundway groundwood groundwoods groundwork groundworks groundy group groupable groupage groupageness groupages grouped grouper groupers groupie groupies grouping groupings groupism groupisms groupist groupists grouplet grouplets groupment groupoid groupoids groups groupthink groupthinks groupuscule groupuscules groupware groupwares groupwise groupy grouse grouseberry groused grouseless grouselike grouser grousers grouses grousest grouseward grousewards grousing grousy grout grouted grouter grouters grouthead groutier groutiest grouting groutings groutite groutnoll grouts grouty grouze grove groved grovel groveled groveler grovelers groveless groveling grovelingly grovelings grovelled groveller grovellers grovelling grovellingly grovellings grovels grover grovers groves grovet grovets grovy grow growable growan growed grower growers growing growingly growings growingupness growl growled growler growleries growlers growlery growlier growliest growliness growlinesses growling growlingly growlings growls growly grown grownup grownups grows growse growsome growth growthful growthier growthiest growthiness growthinesses growthist growthists growthless growths growthy growze groyne groynes grozart grozer grozet grr grs grub grubbed grubber grubberies grubbers grubbery grubbier grubbies grubbiest grubbily grubbiness grubbinesses grubbing grubble grubbled grubbles grubbling grubby grubhood grubless grubroot grubs grubstake grubstaked grubstaker grubstakers grubstakes grubstaking grubstreet grubworm grubworms grucche grudge grudged grudgeful grudgefully grudgefulness grudgekin grudgeless grudgeons grudger grudgers grudgery grudges grudging grudgingly grudgingness grudgings grudgment grue grued grueing gruel grueled grueler gruelers grueling gruelingly gruelings gruelled grueller gruellers gruelling gruellingly gruellings gruelly gruels grues gruesome gruesomely gruesomeness gruesomenesses gruesomer gruesomest gruf grufe grufes gruff gruffed gruffer gruffest gruffier gruffiest gruffily gruffiness gruffing gruffish gruffly gruffness gruffnesses gruffs gruffy gruft grufted grugous grugru grugrus gruidae gruiform gruiformes gruine gruing grulla grum grumble grumbled grumbler grumblers grumbles grumblesome grumbletonian grumblier grumbliest grumbling grumblingly grumblings grumbly grume grumes grumly grummel grummels grummer grummest grummet grummeted grummeter grummeting grummets grumness grumnesses grumose grumous grumousness grump grumped grumph grumphed grumphie grumphies grumphing grumphs grumphy grumpier grumpiest grumpily grumpiness grumpinesses grumping grumpish grumpishness grumps grumpy grun grunch grundel grundsil grundy grundyism grunerite gruneritization grunge grunges grungier grungiest grungily grunginess grungy grunion grunions grunswel grunt grunted grunter grunters grunting gruntingly gruntings gruntle gruntled gruntles gruntling grunts grunzie gruppetti gruppetto gruppo grus grush grushie gruss grutch grutched grutches grutching grutten gruyere gruyeres gruys grx gry gryce gryces gryde gryded grydes gryding gryesly gryesy gryfon gryfons gryke grykes grylle grylli gryllid gryllidae gryllos gryllotalpa gryllus gryoplane grypanian grype grypes gryph gryphite gryphon gryphons gryposis grypt grysbok grysboks grysely grysie grège gs gt gtc gtd gte gteau gthite gtt gu guaba guacacoa guacamole guacamoles guachamaca guacharo guacharoes guacharos guachipilin guacho guacimo guacin guaco guaconize guacos guadalajara guadalcanal guadalcazarite guadeloupe guadua guageable guaguanche guahivo guaiac guaiacol guaiacolize guaiacols guaiaconic guaiacs guaiacum guaiacums guaiaretic guaiasanol guaican guaiocum guaiocums guaiol guaira guajillo guajira guajiras guaka guallatiri guam guama guamachil guamuchil guan guana guanabana guanabano guanaco guanacos guanajuatite guanamine guanare guanas guanase guanases guanay guanayes guanays guanazolo guanazolos guaneide guanethidine guanethidines guango guangos guangzhou guanidin guanidine guanidines guanidins guanidopropionic guaniferous guanin guanine guanines guanins guanize guano guanophore guanos guanosine guanosines guans guanyl guanylic guao guapena guapilla guapinol guar guara guarabu guaracha guarachas guarache guaraguao guarana guaranas guarand guarani guaranies guaranin guaranine guaranis guarantee guaranteed guaranteeing guaranteer guaranteers guarantees guaranteeship guaranteing guarantied guaranties guarantine guarantor guarantors guarantorship guaranty guarantying guaraná guaranás guarapo guarapucu guard guardable guardage guardages guardant guardants guarddog guarddogs guarded guardedly guardedness guardednesses guardee guardeen guardees guarder guarders guardfish guardful guardfully guardhouse guardhouses guardian guardiancy guardianess guardianless guardianly guardians guardianship guardianships guarding guardingly guardless guardlike guardo guardrail guardrails guardroom guardrooms guards guardship guardships guardsman guardsmen guardstone guariba guarico guarinite guarish guarished guarishes guarishing guarite guarites guarneri guarnerius guarri guars guary guasa guatambu guatemala guatemalan guatemalans guatibero guativere guava guavaberry guavas guavina guaxima guayaba guayabera guayaberas guayabi guayabo guayacan guayaquil guayroto guayule guayules guaza guazuti guazzo gub gubat gubbah gubbahs gubbertush gubbin gubbings gubbins gubbinses gubbo guberla gubernacula gubernacular gubernaculum gubernance gubernation gubernations gubernative gubernator gubernatorial gubernators gubernatrix gubernia guberniya gubs guck gucked gucki guckier guckiest gucks gucky gud gudame guddle guddled guddler guddles guddling gude gudebrother gudefather gudeman gudemen gudemother gudes gudesake gudesakes gudesire gudesires gudewife gudewives gudge gudgeon gudgeoned gudgeoning gudgeons gudget gudok gudrun gue guebre guebucu guejarite guelderrose guelderroses guelf guelph guelphic guemal guemul guenepe guenevere guenon guenons guepard gueparde guerdon guerdonable guerdoned guerdoner guerdoning guerdonless guerdons guereba guereza guerezas guergal gueridon gueridons guerilla guerillaism guerillas guerison guerite guerites guernsey guernseyed guernseys guerre guerrila guerrilla guerrillaism guerrillas guerrillaship guerrillero guerrilleros gues guess guessable guessed guesser guessers guesses guessing guessingly guessings guessive guesstimate guesstimated guesstimates guesstimating guesswork guessworker guessworks guest guestchamber guested guesten guestened guestening guestens guester guesthouse guesthouses guestimate guestimated guestimates guestimating guesting guestive guestless guestling guestmaster guestroom guestrooms guests guestship guestwise guetre guevina gufa guff guffaw guffawed guffawing guffaws guffer guffie guffies guffin guffs guffy gufought guga gugal gugas guggle guggled guggles gugglet guggling guglet guglets guglia guglio gugu guhr gui guiac guiana guib guiba guichet guichets guid guidable guidage guidages guidance guidances guide guideboard guidebook guidebookish guidebooks guidebooky guidecraft guided guideless guideline guidelines guidepost guideposts guider guideress guiders guidership guides guideship guideships guideway guideways guiding guidingly guidings guidman guidon guidonian guidons guids guidsire guidwife guidwillie guidwilly guige guigne guignol guijo guild guilder guilders guildhall guildhalls guildic guildite guildries guildry guilds guildship guildships guildsman guildsmen guildswoman guildswomen guile guiled guileful guilefully guilefulness guilefulnesses guileless guilelessly guilelessness guilelessnesses guiler guilers guilery guiles guilfat guiling guillem guillemet guillemets guillemot guillemots guillevat guilloche guilloched guillochee guilloches guilloching guillotinade guillotine guillotined guillotinement guillotiner guillotines guillotining guillotinism guillotinist guilt guiltful guiltier guiltiest guiltily guiltiness guiltinesses guiltless guiltlessly guiltlessness guiltlessnesses guilts guiltsick guilty guily guimbard guimbards guimp guimpe guimped guimpes guimping guimps guinde guinea guinean guineapig guineas guinevere guinfo guinness guipure guipures guirlande guiro guiros guisard guisards guisarme guise guised guiser guisers guises guisian guising guisings guitar guitarfish guitarfishes guitarist guitarists guitarlike guitars guitermanite guitguit guitguits guizer guizers gujarat gujarati gujerat gujerati gul gula gulae gulag gulags gulaman gulancha guland gular gularis gulas gulash gulch gulched gulches gulching guld gulden guldengroschen guldens gule gules gulf gulfed gulfier gulfiest gulfing gulflike gulfs gulfside gulfwards gulfweed gulfweeds gulfy gulgul gulinula gulinulae gulinular gulist gulix gull gullability gullable gullably gullage gullah gulled guller gulleries gullers gullery gullet gulleting gullets gulley gulleyed gulleying gullibilities gullibility gullible gullibly gullied gullies gulling gullion gullish gullishly gullishness gulliver gulllike gulls gullwing gullwings gully gullygut gullyhole gullying gullywasher gullywashers gulmohar gulo gulonic gulose gulosities gulosity gulp gulped gulper gulpers gulph gulphed gulphing gulphs gulpier gulpiest gulpin gulping gulpingly gulps gulpy gulravage guls gulsach gult guly gulyas gum gumball gumballs gumbo gumboil gumboils gumbolike gumboot gumboots gumbos gumbotil gumbotils gumby gumchewer gumdigger gumdiggers gumdigging gumdrop gumdrops gumfield gumflower gumhar gumi gumihan gumlah gumless gumlike gumlikeness gumline gumlines gumly gumma gummage gummaker gummaking gummas gummata gummatous gummed gummer gummers gummic gummier gummiest gummiferous gummily gumminess gumminesses gumming gummings gummite gummites gummose gummoses gummosis gummosities gummosity gummous gummy gumnut gumnuts gump gumped gumpheon gumphion gumphions gumping gumps gumption gumptionless gumptions gumptious gumpus gums gumshield gumshields gumshoe gumshoed gumshoeing gumshoes gumshoing gumtree gumtrees gumweed gumweeds gumwood gumwoods gun guna gunarchy gunate gunated gunating gunation gunbarrel gunbearer gunboat gunboats gunbright gunbuilder guncotton guncottons gunda gundalow gundas gundeck gundelet gundelow gundi gundie gundies gundog gundogs gundy gundygut gunebo gunfight gunfighter gunfighters gunfighting gunfights gunfire gunfires gunflint gunflints gunfought gung gunge gunges gungier gungiest gungy gunhouse gunhouses gunite guniter gunites gunj gunja gunjah gunk gunkhole gunkholed gunkholes gunkholing gunkier gunkiest gunks gunky gunl gunlayer gunlayers gunlaying gunless gunline gunlock gunlocks gunmaker gunmakers gunmaking gunman gunmanship gunmen gunmetal gunmetals gunnage gunnages gunne gunned gunnel gunnels gunnen gunner gunnera gunneras gunneress gunneries gunners gunnership gunnery gunnies gunning gunnings gunnung gunny gunnybag gunnybags gunnysack gunnysacks gunocracy gunong gunpaper gunpapers gunplay gunplays gunpoint gunpoints gunport gunports gunpowder gunpowderous gunpowders gunpowdery gunpower gunrack gunreach gunroom gunrooms gunrunner gunrunners gunrunning gunrunnings guns gunsel gunsels gunship gunships gunshop gunshot gunshots gunsight gunsling gunslinger gunslingers gunslinging gunslingings gunsman gunsmith gunsmithery gunsmithing gunsmithings gunsmiths gunster gunstick gunsticks gunstock gunstocker gunstocking gunstocks gunstone gunstones gunter gunters gunther guntub gunung gunwale gunwales gunwhale gunyah gunyahs gunyang gunyeh gup guppies guppy gups guptavidya gur gurami guramis gurdfish gurdle gurdwara gurdwaras gurdy gurge gurged gurgeon gurgeons gurges gurging gurgitation gurgitations gurgle gurgled gurgles gurglet gurglets gurgling gurglingly gurgly gurgoyl gurgoyle gurgoyles gurgulation gurgulio gurjan gurjun gurjuns gurk gurkha gurl gurle gurled gurlet gurlets gurlier gurliest gurling gurls gurly gurn gurnard gurnards gurned gurnet gurnets gurnetty gurney gurneys gurniad gurning gurns gurr gurrah gurrahs gurries gurry gurs gursh gurshes gurt gurts guru gurudom gurudoms guruism guruisms gurus guruship guruships gus gusain gusano gusanos guser guserid gush gushed gusher gushers gushes gushet gushier gushiest gushily gushiness gushinesses gushing gushingly gushingness gushy gusla guslar guslars guslas gusle guslee gusles gusli guslis guss gusset gusseted gusseting gussets gussie gussied gussies gussy gussying gust gustable gustables gustard gustation gustations gustative gustativeness gustatorial gustatorially gustatorily gustatory gusted gustful gustfully gustfulness gustie gustier gustiest gustily gustiness gustinesses gusting gustless gusto gustoes gustoish gustos gustoso gusts gusty gut gutbucket gutbuckets gutcher gutchers gutful gutfuls guthite gutierrez gutierrezia gutless gutlessness gutlessnesses gutlike gutling gutrot gutrots guts gutsed gutser gutsers gutses gutsful gutsfuls gutsier gutsiest gutsily gutsiness gutsinesses gutsing gutsy gutt gutta guttable guttae guttar guttas guttate guttated guttates guttatim guttating guttation guttations gutte gutted guttee gutter gutteral gutterblood gutterbloods guttered guttering gutterings gutterize gutterlike gutterling gutterman gutters guttersnipe guttersnipes guttersnipish gutterspout gutterwise guttery gutti guttide guttie guttier gutties guttiest guttifer guttiferae guttiferal guttiferales guttiferous guttiform guttiness gutting guttle guttled guttler guttlers guttles guttling guttula guttulae guttular guttulate guttule guttulous guttur guttural gutturalisation gutturalisations gutturalise gutturalised gutturalises gutturalising gutturalism gutturalisms gutturalities gutturality gutturalization gutturalizations gutturalize gutturalized gutturalizes gutturalizing gutturally gutturalness gutturalnesses gutturals gutturine gutturize gutturonasal gutturopalatal gutturopalatine gutturotetany guttus gutty gutweed gutwise gutwort gutzer gutzers guv guvacine guvacoline guvnor guvnors guvs guy guyana guyanese guydom guyed guyer guyers guying guyle guyled guyler guylers guyles guyline guylines guyling guyot guyots guyrope guyropes guys guyse guyses guytrash guywire guywires guz guze guzerat guzmania guzzle guzzled guzzledom guzzler guzzlers guzzles guzzling guéridon guéridons guérite guérites gv gwag gwantus gweduc gweduck gweducks gweducs gweed gweeon gwely gwerziou gwine gwiniad gwiniads gwydion gwyn gwyniad gwyniads gyal gyals gyascutus gyassa gybe gybed gyber gybes gybing gye gyeld gyelds gylden gyle gym gymbal gymbals gymel gymkhana gymkhanas gymmal gymmals gymnadenia gymnadeniopsis gymnanthous gymnasia gymnasial gymnasiarch gymnasiarchs gymnasiarchy gymnasiast gymnasiasts gymnasic gymnasien gymnasisia gymnasisiums gymnasium gymnasiums gymnast gymnastic gymnastical gymnastically gymnastics gymnasts gymnelis gymnemic gymnetrous gymnic gymnical gymnics gymnite gymnoblastic gymnocalycium gymnocarpic gymnocarpium gymnocarpous gymnoceratous gymnocidium gymnocladus gymnodiniaceous gymnodont gymnogen gymnogene gymnogenous gymnoglossate gymnogynous gymnogyps gymnolaematous gymnomycota gymnopaedic gymnophiona gymnophobia gymnopilus gymnoplast gymnorhina gymnorhinal gymnosoph gymnosophical gymnosophies gymnosophist gymnosophists gymnosophs gymnosophy gymnosperm gymnospermae gymnospermal gymnospermic gymnospermies gymnospermism gymnospermophyta gymnospermous gymnosperms gymnospermy gymnosporangium gymnospore gymnosporous gymnostomous gymnotid gymnotokous gymnotus gymnura gymnure gymnurine gymp gymped gympie gymping gymps gyms gymsia gymslip gymslips gyn gynae gynaecea gynaeceum gynaecia gynaecian gynaecic gynaecium gynaecocoenic gynaecocracies gynaecocracy gynaecocrat gynaecocratic gynaecoid gynaecol gynaecologic gynaecological gynaecologies gynaecologist gynaecologists gynaecology gynaecomast gynaecomastia gynaecomastias gynaecomasties gynaecomasts gynaecomasty gynaecomorphous gynaeconitis gynaeocracy gynaeolater gynaeolatry gynaes gynander gynandrarchic gynandrarchy gynandria gynandrian gynandries gynandrism gynandrisms gynandroid gynandromorph gynandromorphic gynandromorphies gynandromorphism gynandromorphisms gynandromorphous gynandromorphs gynandromorphy gynandrophore gynandrosporous gynandrous gynandry gynantherous gynarchic gynarchies gynarchy gyne gyneccia gynecia gynecic gynecicgynecidal gynecidal gynecide gynecium gynecocentric gynecocracies gynecocracy gynecocrat gynecocratic gynecocratical gynecoid gynecol gynecolatry gynecologic gynecological gynecologically gynecologies gynecologist gynecologists gynecology gynecomania gynecomaniac gynecomaniacal gynecomastia gynecomastias gynecomastism gynecomasty gynecomazia gynecomorphous gyneconitis gynecopathic gynecopathies gynecopathy gynecophore gynecophoric gynecophorous gynecotelic gynecratic gyneocracy gyneolater gyneolatry gynephobia gynephobias gynethusia gynetype gyniatrics gyniatries gyniatry gynic gynics gynie gynies gyniolatries gyniolatry gynney gynneys gynnies gynny gynobase gynobaseous gynobasic gynocardia gynocardic gynocracies gynocracy gynocratic gynodioecious gynodioeciously gynodioecism gynodioecisms gynoecia gynoecium gynoeciumcia gynoeciums gynogeneses gynogenesis gynogenetic gynomonecious gynomonoecious gynomonoeciously gynomonoecism gynomonoecisms gynopara gynophagite gynophobia gynophobias gynophobic gynophobics gynophore gynophores gynophoric gynosporangium gynospore gynostegia gynostegigia gynostegium gynostemia gynostemium gynostemiumia gynostemiums gynura gyny gyokuro gyoza gyozas gyp gypaetus gype gyplure gyplures gypped gypper gyppers gyppery gyppie gyppies gypping gyppo gyppos gyppy gyps gypseian gypseous gypsied gypsies gypsiferous gypsine gypsiologist gypsite gypsography gypsologist gypsology gypsophila gypsophilas gypsophilous gypsophily gypsoplast gypsous gypster gypsters gypsum gypsumed gypsuming gypsums gypsy gypsydom gypsydoms gypsyesque gypsyfy gypsyhead gypsyhood gypsying gypsyish gypsyism gypsyisms gypsylike gypsyry gypsyweed gypsywise gypsywort gypsyworts gyral gyrally gyrant gyrase gyrases gyrate gyrated gyrates gyrating gyration gyrational gyrations gyrator gyrators gyratory gyre gyrectomies gyrectomy gyred gyrencephalate gyrencephalic gyrencephalous gyrene gyrenes gyres gyrfalcon gyrfalcons gyri gyric gyring gyrinid gyrinidae gyro gyrocar gyrocars gyroceracone gyroceran gyrochrome gyrocompass gyrocompasses gyrocopter gyrocopters gyrodyne gyrodynes gyrofrequencies gyrofrequency gyrogonite gyrograph gyrohorizon gyroidal gyroidally gyrolite gyrolites gyrolith gyroma gyromagnetic gyromagnetism gyromagnetisms gyromancies gyromancy gyromele gyrometer gyromitra gyron gyronic gyronny gyrons gyrophoric gyropigeon gyropilot gyropilots gyroplane gyroplanes gyros gyroscope gyroscopes gyroscopic gyroscopically gyroscopics gyrose gyrostabilisation gyrostabilisations gyrostabiliser gyrostabilisers gyrostabilization gyrostabilizations gyrostabilized gyrostabilizer gyrostabilizers gyrostat gyrostatic gyrostatically gyrostatics gyrostats gyrosyn gyrous gyrovagi gyrovague gyrovagues gyrowheel gyrus gyruses gyse gyte gytes gytling gytrash gytrashes gyttja gyttjas gyve gyved gyves gyving göthite h ha haab haaf haafs haak haanepoot haanepoots haar haars haastia hab habaera habakkuk habanera habaneras habanero habaneros habble habbub habdabs habdalah habdalahs habeas habena habenal habenar habenaria habendum habenula habenulae habenular haberdash haberdasher haberdasheress haberdasheries haberdashers haberdashery haberdine haberdines habere habergeon habergeons habet habilable habilant habilatory habile habilement habiliment habilimental habilimentary habilimentation habilimented habiliments habilitate habilitated habilitates habilitating habilitation habilitations habilitative habilitator habilitators hability habille habit habitabilities habitability habitable habitableness habitablenesses habitably habitacle habitacule habitally habitan habitance habitancies habitancy habitans habitant habitants habitat habitatal habitate habitatio habitation habitational habitations habitative habitator habitats habitaunce habitaunces habited habiting habits habitua habitual habitualise habituality habitualize habitually habitualness habitualnesses habituals habituas habituate habituated habituates habituating habituation habituations habitude habitudes habitudinal habitue habitues habiture habitus habitué habitués hable habnab haboob haboobs haboub habronemiasis habronemic habrowne habsburg habu habub habuka habus habutae habutai habutaye haccucal hacek haceks hacendado hacendados hache hachiman hachis hachment hachoo hacht hachure hachured hachures hachuring hacienda haciendado haciendados haciendas hack hackable hackamatak hackamore hackamores hackbarrow hackberries hackberry hackbolt hackbolts hackbush hackbut hackbuteer hackbuteers hackbuts hackbutter hackbutters hackdriver hacked hackee hackeem hackees hackelia hacker hackeries hackers hackery hackette hackettes hackeymal hackia hackie hackies hackin hacking hackingly hackings hackish hackishes hackishness hackishnesses hackitude hackitudes hackle hackleback hackled hackler hacklers hackles hacklet hacklets hacklier hackliest hackling hacklog hackly hackmack hackmall hackman hackmatack hackmatacks hackmen hackney hackneyed hackneyedly hackneyedness hackneyer hackneying hackneyism hackneyisms hackneyman hackneymen hackneys hacks hacksaw hacksawed hacksawing hacksawn hacksaws hacksilber hackster hackthorn hacktree hackwood hackwork hackworks hacky hacqueton hacquetons had hadada hadal hadarim hadaway hadbot hadbote hadden hadder haddest haddie haddies haddin hadding haddo haddock haddocker haddocks hade hadean haded hadentomoid hadephobia hades hading hadit hadith hadiths hadj hadjee hadjees hadjes hadji hadjis hadjs hadland hadnt hadrom hadrome hadromes hadromycosis hadron hadronic hadrons hadrosaur hadrosauridae hadrosaurs hadrosaurus hads hadst hae haec haecceities haecceity haed haeing haem haemachrome haemacytometer haemad haemagglutinate haemagglutinated haemagglutinating haemagglutination haemagglutinative haemagglutinin haemagogue haemal haemangioma haemangiomas haemangiomata haemangiomatosis haemanthus haemapophysis haemaspectroscope haematal haematein haematemeses haematemesis haematherm haemathermal haemathermous haematic haematics haematid haematin haematinic haematinics haematinon haematins haematinum haematite haematites haematitic haematobia haematoblast haematoblasts haematobranchiate haematocele haematoceles haematocrit haematocrits haematocryal haematocyst haematocystis haematocyte haematogeneses haematogenesis haematogenous haematoid haematoidin haematoin haematologic haematological haematologies haematologist haematologists haematology haematolyses haematolysis haematoma haematomas haematomata haematometer haematophiline haematophyte haematopodidae haematopoieses haematopoiesis haematopoietic haematopus haematorrhachis haematosepsis haematoses haematosin haematosis haematothermal haematoxylic haematoxylin haematoxylins haematoxylon haematoxylum haematozoa haematozoal haematozoic haematozoon haematozzoa haematuria haematurias haemic haemin haemins haemoblast haemochromatoses haemochromatosis haemochrome haemocoel haemocoels haemoconcentration haemoconia haemoconias haemocyanin haemocyanins haemocyte haemocytes haemocytoblast haemocytoblastic haemocytometer haemodialyses haemodialysis haemodilution haemodoraceae haemodoraceous haemodorum haemodynamic haemodynamics haemoflagellate haemoglobic haemoglobin haemoglobinopathies haemoglobinopathy haemoglobinous haemoglobins haemoglobinuria haemogram haemoid haemolyses haemolysin haemolysis haemolytic haemometer haemonchiasis haemonchosis haemonies haemony haemophil haemophile haemophilia haemophiliac haemophiliacs haemophilias haemophilic haemopis haemopod haemopoiesis haemoproteid haemoproteidae haemoproteus haemoptyses haemoptysis haemorrhage haemorrhaged haemorrhages haemorrhagia haemorrhagic haemorrhaging haemorrhagy haemorrhoid haemorrhoidal haemorrhoidectomy haemorrhoids haemosporid haemosporidia haemosporidian haemostases haemostasia haemostasis haemostat haemostatic haemostats haemothorax haemotoxic haemotoxin haems haemulidae haemuloid haemulon haen haeredes haeremai haeres haes haet haets haf haff haffat haffet haffets haffit haffits haffkinize haffle hafflin hafflins haffs hafis hafiz hafizes haflin hafnia hafnium hafniums hafnyl haft haftara haftarah haftarahs haftaras haftarot haftaroth hafted hafter hafters hafting haftorah haftorahs haftoros haftorot haftoroth hafts hafynite hag hagada hagadic hagadist hagadists hagar hagarene hagberries hagberry hagboat hagbolt hagbolts hagborn hagbush hagbushes hagbut hagbuts hagden hagdens hagdin hagdon hagdons hagdown hagdowns hageen hagein hagfish hagfishes hagg haggada haggadah haggadahs haggadal haggadas haggaday haggadic haggadical haggadist haggadistic haggadists haggadot haggadoth haggai haggard haggardly haggardness haggardnesses haggards hagged haggeis hagger hagging haggiographal haggis haggises haggish haggishly haggishness haggishnesses haggister haggle haggled haggler hagglers haggles haggling haggly haggs haggy hagi hagia hagiarchies hagiarchy hagigah hagiocracies hagiocracy hagiographa hagiographal hagiographer hagiographers hagiographic hagiographical hagiographies hagiographist hagiographists hagiography hagiolater hagiolaters hagiolatries hagiolatrous hagiolatry hagiolith hagiologic hagiological hagiologically hagiologies hagiologist hagiologists hagiology hagiophobia hagioscope hagioscopes hagioscopic haglet haglets haglike haglin hagmall hagmane hagmena hagmenay hagrid hagridden hagride hagrider hagriders hagrides hagriding hagrode hagrope hags hagseed hagship hagstone hagtaper hague hagueton hagweed hagworm hah haha hahas hahnium hahniums hahs haiari haick haicks haida haidingerite haiduck haiduk haiduks haifa haik haika haikai haikais haikal haiks haiku haikun haikus haikwan hail hailed hailer hailers hailes hailier hailiest hailing hailproof hails hailse hailshot hailshots hailstone hailstoned hailstones hailstorm hailstorms hailweed haily haimish haimsucken hain hainberry hainch hainched hainches hainching haine hained haining hainings hains haint haints haique haiques hair hairball hairballs hairband hairbands hairbeard hairbell hairbells hairbird hairbrain hairbrained hairbreadth hairbreadths hairbrush hairbrushes haircap haircaps haircare haircloth haircloths haircut haircuts haircutter haircutters haircutting haircuttings hairdo hairdodos hairdos hairdress hairdresser hairdressers hairdressing hairdressings hairdrier hairdriers hairdryer hairdryers haire haired hairen hairgrass hairgrip hairgrips hairhoof hairhound hairier hairiest hairif hairiness hairinesses hairing hairlace hairless hairlessness hairlessnesses hairlet hairlike hairline hairlines hairlock hairlocks hairmeal hairmoneering hairmonger hairnet hairnets hairof hairpiece hairpieces hairpin hairpins hairs hairsbreadth hairsbreadths hairse hairsplitter hairsplitters hairsplitting hairsplittings hairspray hairsprays hairspring hairsprings hairst hairstane hairsted hairsting hairstone hairstreak hairstreaks hairsts hairstyle hairstyles hairstyling hairstylings hairstylist hairstylists hairtail hairtonic hairup hairweave hairweaved hairweaver hairweavers hairweaves hairweaving hairweavings hairweed hairwood hairwork hairworks hairworm hairworms hairwove hairwoven hairy hairychested hait haith haiths haiti haitian haitians haitsai haiver haj haje hajes haji hajib hajilij hajis hajj hajjes hajji hajjis hajjs hak haka hakafoth hakam hakamim hakams hakas hakdar hake hakea hakeem hakeems hakenkreuz hakes hakim hakims hakka hako haku hakus hala halacha halachah halachas halachist halachists halachot halachoth halaka halakah halakahs halakha halakhah halakhahs halakhas halakhic halakhist halakhists halakhot halakhoth halakic halakist halakistic halakists halakoth halal halala halalah halalahs halalas halalcor halalled halalling halals halapepe halas halation halations halavah halavahs halazone halazones halberd halberdier halberdiers halberdman halberds halberdsman halbert halberts halch halchidhoma halcyon halcyonian halcyonic halcyonine halcyons haldea haldu hale halebi halecret haled haleday halely haleness halenesses halenia haler halers haleru halerz hales halesia halesome halest haleweed half halfa halfas halfback halfbacks halfbeak halfbeaks halfblood halfbreed halfcock halfcocked halfen halfendeal halfendeale halfer halfheaded halfhearted halfheartedly halfheartedness halfheartednesses halfhourly halflang halflife halflin halfling halflings halflins halflives halfly halfman halfmoon halfness halfnesses halfpace halfpaced halfpaces halfpence halfpences halfpennies halfpenny halfpennyworth halfpennyworths halfpipe halfpipes halfs halftime halftimes halftone halftones halftrack halftracks halfungs halfway halfwise halfwit halfwits halfwitted halfword halfwords halfy haliaeetus halibios halibiotic halibiu halibut halibuter halibuts halichondrine halichondroid halicoeres halicore halicores halicot halictidae halid halide halides halidom halidome halidomes halidoms halids halier haliers halieutic halieutical halieutically halieutics halifax halimodendron halimot halimote halimotes halimots halimous haling halinous haliographer haliography haliotidae haliotis haliotoid haliplankton haliplid halisteresis halisteretic halite halites halitoses halitosis halitosises halitotic halitous halituosity halituous halitus halituses halkahs halke hall hallabaloo hallage hallah hallahs hallal hallalcor hallali hallalis hallalled hallalling hallaloo hallaloos hallals hallan hallans hallanshaker hallboy hallcist hallebardier hallecret halleflinta halleflintas halleflintoid hallel hallels halleluiah halleluiahs hallelujah hallelujahs hallelujatic hallex hallian hallians halliard halliards halliblash hallicet hallidome hallier halling hallings hallion hallions hallman hallmark hallmarked hallmarker hallmarking hallmarks hallmoot hallmote hallo halloa halloaed halloaing halloas hallock halloed halloes halloing halloo hallooed hallooing halloos hallopodous hallos hallot halloth halloumi halloumis hallow hallowd hallowed hallowedly hallowedness halloween halloweens hallower hallowers hallowing hallowmas hallowmass hallows halloysite halloysites hallroom halls hallstand hallstands hallstatt hallucal halluces hallucinant hallucinate hallucinated hallucinates hallucinating hallucination hallucinational hallucinations hallucinative hallucinator hallucinators hallucinatory hallucined hallucinogen hallucinogenic hallucinogenics hallucinogens hallucinoses hallucinosis hallux hallway hallways hallyon hallyons halm halma halmalille halmas halmawise halms halo halobacter halobacteria halobacterium halobiont halobiontic halobionts halobios halobiotic halocaine halocarbon halocarbons halocarpus halochromism halochromy halocline haloclines haloed haloes haloesque halogen halogenate halogenated halogenates halogenating halogenation halogenations halogenoid halogenous halogens halogeton halogetons halohydrin haloid haloids haloing halolike halolimnic halomancy halometer halomorphic halomorphism halon halons haloperidol haloperidols halophile halophiles halophilic halophilies halophilism halophilous halophily halophobe halophobes halophyte halophytes halophytic halophytism haloragaceae haloragidaceae haloragidaceous halos haloscope halosere halothane halothanes halotrichite haloumi haloumis haloxene haloxylin halp halpace halper hals halse halsed halsen halser halsers halses halsfang halsing halt halte halted halter halterbreak halterbreaking halterbreaks halterbroke halterbroken haltere haltered halteres haltering halterlike halterneck halternecks halterproof halters halting haltingly haltingness haltingnesses haltings haltless halts halucket halukkah halurgist halurgy halutz halutzim halva halvah halvahs halvaner halvans halvas halve halved halvelings halver halvers halverses halves halving halwe halyard halyards ham hamacratic hamada hamadas hamadryad hamadryades hamadryads hamadryas hamadryases hamal hamald hamals hamamelidaceae hamamelidaceous hamamelidae hamamelidanthum hamamelidin hamamelidoxylon hamamelin hamamelis hamamelises hamamelites haman hamantasch hamantaschen hamantash hamantashen hamarthritis hamarthritises hamartia hamartias hamartiologies hamartiologist hamartiology hamartite hamartophobia hamata hamate hamated hamates hamatum hamaul hamauls hamba hamber hambergite hamble hambled hambles hambling hambone hamboned hambones hamboning hambro hambroline hamburg hamburger hamburgers hamburgher hamburghers hamburgs hamdmaid hame hamed hameil hamel hamelia hamelt hames hamesoken hamesucken hamesuckens hametugs hametz hametzes hamewith hamfare hamfat hamfatter hamfattered hamfattering hamfatters hamhung hami hamiform hamilt hamilton hamiltonian hamiltonianism haming hamingja haminoea hamirostrate hamite hamitic hamlah hamlet hamleted hamleteer hamletisation hamletise hamletization hamletize hamlets hamli hamline hamlinite hammada hammadas hammaid hammal hammals hammam hammams hammed hammer hammerable hammerbird hammercloth hammercloths hammerdress hammered hammerer hammerers hammerfish hammerhead hammerheaded hammerheads hammering hammeringly hammerings hammerkop hammerkops hammerless hammerlike hammerlock hammerlocks hammerman hammermen hammers hammersmith hammerstone hammertoe hammertoes hammerwise hammerwork hammerwort hammier hammiest hammily hamminess hamminesses hamming hammochrysos hammock hammocklike hammocks hammy hamose hamotzi hamous hamper hampered hamperedly hamperedness hamperer hamperers hampering hamperman hampers hampshire hampshireman hampshiremen hampshirite hampshirites hampster hampsters hamrongite hams hamsa hamshackle hamshackled hamshackles hamshackling hamster hamsters hamstring hamstringed hamstringing hamstrings hamstrung hamular hamulate hamule hamuli hamulose hamulous hamulus hamus hamza hamzah hamzahs hamzas han hanahill hanap hanaper hanapers hanaps hanaster hanbury hance hanced hances hanch hanched hanches hanching hancockite hand handarm handax handaxes handbag handbagged handbagging handbaggings handbags handball handballer handballers handballs handbank handbanker handbarrow handbarrows handbasin handbasket handbaskets handbell handbells handbill handbills handblow handblown handbolt handbook handbooks handbound handbow handbrake handbrakes handbreadth handbreadths handbreath handbreed handbuild handcar handcars handcart handcarts handclap handclapping handclaps handclasp handclasps handcloth handcolor handcraft handcrafted handcrafting handcraftman handcrafts handcraftsman handcraftsmanship handcraftsmanships handcraftsmen handcuff handcuffed handcuffing handcuffs handed handedly handedness handednesses handel handelian hander handers handersome handfast handfasted handfasting handfastings handfastly handfastness handfasts handfeed handfish handflag handflower handful handfuls handgallop handgrasp handgravure handgrip handgriping handgrips handgun handguns handhaving handheld handhelds handhold handholding handholdings handholds handhole handicap handicapped handicapper handicappers handicapping handicaps handicrafsman handicrafsmen handicraft handicrafter handicrafters handicrafts handicraftship handicraftsman handicraftsmanship handicraftsmen handicraftswoman handicraftswomen handicuff handicuffs handier handiest handily handiness handinesses handing handiron handistroke handiwork handiworks handjar handjars handkercher handkerchers handkerchief handkerchiefful handkerchiefs handkerchieves handknit handlaid handle handleabilities handleability handleable handlebar handlebars handled handleless handler handlers handles handless handlike handline handling handlings handlist handlists handload handloader handloading handlock handloom handloomed handlooms handmade handmaid handmaiden handmaidenly handmaidens handmaids handoff handoffs handout handouts handover handovers handpick handpicked handpicking handpicks handpiece handplay handplays handpost handpress handpresses handprint handprints handrail handrailing handrailings handrails handreader handreading handrest hands handsale handsaw handsawfish handsawfishes handsaws handsbreadth handsbreadths handscrape handsel handseled handseling handselled handseller handselling handsels handset handsets handsetting handsew handsewed handsewing handsewn handsful handshake handshaker handshakes handshaking handshakings handsled handsmooth handsome handsomeish handsomely handsomeness handsomenesses handsomer handsomest handspade handspan handspec handspike handspikes handspoke handspring handsprings handstaff handstaffs handstamp handstand handstands handstaves handstitched handstone handstroke handsturn handsturns handtowel handtowels handtrap handwaled handwash handwaving handwear handweaving handwheel handwheels handwhile handwork handworked handworker handworkers handworkman handworks handworm handwoven handwringer handwringers handwringing handwringings handwrist handwrit handwrite handwrites handwriting handwritings handwritten handwrote handwrought handy handybillies handybilly handyblow handybook handycuff handyfight handyframe handygrip handygripe handyman handymen handyperson handypersons handywork handyworks hanefiyeh hanepoot hanepoots hang hangabilities hangability hangable hangalai hangar hangared hangaring hangars hangbird hangbirds hangby hangchow hangdog hangdogs hange hanged hangee hanger hangers hangfire hangfires hangie hanging hangingly hangings hangkang hangle hangman hangmanship hangmen hangment hangnail hangnails hangnest hangnests hangout hangouts hangover hangovers hangs hangtag hangtags hangul hangup hangups hangwoman hangworm hangworthy hangzhou hani hanif hanifism hanifite hanifiya haniwa hanjar hanjars hank hanked hanker hankered hankerer hankerers hankering hankeringly hankerings hankers hankey hankie hankies hanking hankle hanks hanksite hankt hankul hanky hanna hannayite hannibal hannover hanoi hanologate hanover hanoverian hans hansa hansard hansardise hansardised hansardises hansardising hansardize hansardized hansardizes hansardizing hansas hanse hanseatic hansel hanseled hanseling hanselled hanselling hansels hansenosis hanses hansgrave hansom hansomcab hansoms hant hantavirus hantaviruses hanted hanting hantle hantles hants hanukah hanukkah hanuman hanumans hao haole haoles haoma haomas haori haoris hap hapalote hapax hapaxanthous hapaxes hapchance haphazard haphazardly haphazardness haphazardnesses haphazardries haphazardry haphazards haphophobia haphtara haphtarah haphtarahs haphtaras haphtarot haphtaroth hapiton hapless haplessly haplessness haplessnesses haplite haplites haplitic haplobiont haplobiontic haplocaulescent haplochlamydeous haplodont haplodonty haplographies haplography haploid haploidic haploidies haploids haploidy haplolaly haplologic haplologies haplology haploma haplome haplomid haplomitosis haplomous haplont haplontic haplonts haplopappus haploperistomic haploperistomous haplopetalous haplophase haplophyte haplopia haplopias haploscope haploscopic haploses haplosis haplosporidia haplosporidian haplostemonous haplotype haplotypes haply happed happen happenchance happenchances happened happening happenings happens happenstance happenstances happer happied happier happies happiest happify happiless happily happiness happinesses happing happy happying haps hapsburg hapten haptene haptenes haptenic haptens haptera haptere hapteron hapterons haptic haptical haptically haptics haptoglobin haptoglobins haptometer haptophobia haptophor haptophoric haptophorous haptor haptotropic haptotropically haptotropism haptotropisms hapu hapuku haquebut haqueton haquetons harace harakeke harakiri haram harambee harambees harams harang harangue harangued harangueful haranguer haranguers harangues haranguing harare haras harass harassable harassed harassedly harasser harassers harasses harassing harassingly harassings harassment harassments harassness harassnesses harast haratch harateen haraucana harbergage harbi harbinge harbinger harbingered harbingering harbingers harbingership harbingery harbor harborage harborages harbored harborer harborers harborful harborfuls harboring harborless harbormaster harbormasters harborough harborous harbors harborside harborward harbour harbourage harbourages harboured harbourer harbourers harbourful harbouring harbourless harbourous harbours harbourside harbourward harbrough hard hardanger hardass hardasses hardback hardbacked hardbacks hardbag hardbags hardbake hardbakes hardball hardballs hardbeam hardbeams hardberry hardboard hardboards hardboiled hardboot hardboots hardbought hardbound hardcase hardcoded hardcopy hardcore hardcores hardcover hardcovered hardcovers hardedge hardedges harden hardenability hardenable hardenbergia hardened hardenedness hardener hardeners hardening hardenings hardenite hardens harder harderian hardest hardface hardfaces hardfern hardfist hardfisted hardfistedness hardgoods hardgrass hardgrasses hardhack hardhacks hardhanded hardhandedness hardhandednesses hardhat hardhats hardhead hardheaded hardheadedly hardheadedness hardheadednesses hardheads hardhearted hardheartedly hardheartedness hardheartednesses hardhewer hardie hardier hardies hardiesse hardiest hardihead hardiheads hardihood hardihoods hardily hardim hardiment hardiments hardiness hardinesses harding hardinggrass hardinggrasses hardish hardishrew hardline hardliner hardliners hardly hardmouth hardmouthed hardness hardnesses hardnews hardnose hardnosed hardnoses hardock hardoke hardokes hardpan hardpans hardparts hardrock hards hardsalt hardscrabble hardset hardshell hardship hardships hardstand hardstanding hardstandings hardstands hardtack hardtacks hardtail hardtails hardtop hardtops hardwall hardware hardwareman hardwaremen hardwares hardway hardweed hardwire hardwired hardwires hardwiring hardwood hardwoods hardworking hardy hardyhead hardystonite hare harebell harebells harebottle harebrain harebrained harebrainedly harebrainedness harebur hared hareem hareems harefoot harefooted harehearted harehound hareld harelds harelike harelip harelipped harelips harem haremism haremlik harems harengiform harenut hares harewood harewoods harfang hargeisa hariana harianas harico haricot haricots harier hariffe harigalds harigals harijan harijans harikari harim harims haring hariolate hariolated hariolates hariolating hariolation hariolations hariolize harish harissa harissas hark harka harked harkee harken harkened harkener harkeners harkening harkens harking harks harl harle harled harleian harlem harlequin harlequina harlequinade harlequinades harlequined harlequinery harlequinesque harlequinic harlequining harlequinism harlequinize harlequins harling harlings harlock harlot harlotries harlotry harlots harls harm harmal harmala harmalas harmalin harmaline harmalines harmalins harman harmans harmattan harmattans harmdoing harmdoings harmed harmel harmels harmer harmers harmful harmfully harmfulness harmfulnesses harmin harmine harmines harming harminic harmins harmless harmlessly harmlessness harmlessnesses harmonia harmoniacal harmonial harmonic harmonica harmonical harmonically harmonicalness harmonicas harmonichord harmonichords harmonici harmonicism harmonicist harmonicists harmonicon harmonicons harmonics harmonies harmonious harmoniously harmoniousness harmoniousnesses harmoniphon harmoniphone harmoniphones harmoniphons harmonisable harmonisation harmonisations harmonise harmonised harmoniser harmonisers harmonises harmonising harmonist harmonistic harmonistically harmonists harmonium harmoniumist harmoniumists harmoniums harmonizable harmonization harmonizations harmonize harmonized harmonizer harmonizers harmonizes harmonizing harmonogram harmonograms harmonograph harmonographs harmonometer harmonometers harmony harmoot harmost harmosties harmosts harmosty harmotome harmotomes harmotomic harmout harmproof harms harn harness harnessed harnesser harnessers harnesses harnessing harnessless harnesslike harnessry harnpan harns haro harold haros haroset haroseth haroseths harosets harp harpago harpagon harpaxophobia harped harper harperess harpers harpia harpier harpies harpin harping harpingly harpings harpins harpist harpists harpless harplike harpoon harpooned harpooneer harpooneers harpooner harpooners harpooning harpoonlike harpoons harpress harps harpsical harpsichon harpsichord harpsichordist harpsichordists harpsichords harpula harpulla harpullia harpwaytuning harpwise harpy harpylike harquebus harquebusade harquebuse harquebuses harquebusier harquebusiers harquebuss harquebusses harr harrage harrateen harre harrid harridan harridans harried harrier harriers harries harriet harris harrisburg harrisia harrisite harrison harrovian harrow harrowed harrower harrowers harrowing harrowingly harrowingness harrowment harrows harrowtry harrumph harrumphed harrumphing harrumphs harry harrycane harrying harsh harshen harshened harshening harshens harsher harshest harshish harshlet harshlets harshly harshness harshnesses harshweed harslet harslets harst harstigite harstrang harstrong hart hartail hartake hartal hartall hartals hartbees hartbeeses hartberry hartebeest hartebeests hartely harten hartened hartening hartens hartford hartin hartite hartleian hartlesse hartly harts hartshorn hartshorns hartstongue harttite hartwort harumph harumphed harumphing harumphs haruspex haruspical haruspicate haruspicated haruspicates haruspicating haruspication haruspications haruspice haruspices haruspicies haruspicy harvard harvest harvestabilities harvestability harvestable harvestbug harvested harvester harvesters harvestfish harvestfishes harvesting harvestless harvestman harvestmen harvestry harvests harvesttime harvesttimes harvey harynges harzburgite has hasan hasard hasdrubal hasenpfeffer hasenpfeffers hash hashab hashabi hashed hasheesh hasheeshes hasher hashery hashes hashhead hashheads hashier hashiest hashimite hashing hashish hashishes hashmark hashmarks hasht hashy hasid hasidic hasidim hasidism hask haskard haskness hasks haskwort hasky haslet haslets haslock hasmonaeans hasn hasnt hasp hasped haspicol hasping haspling hasps haspspecs hassar hassars hassel hassels hassenpfeffer hassing hassium hassiums hassle hassled hassles hasslet hassling hassock hassocks hassocky hast hasta hastate hastated hastately hastati hastatolanceolate hastatosagittate haste hasted hasteful hastefully hasteless hastelessness hasten hastened hastener hasteners hastening hastens hasteproof haster hastes hastier hastiest hastif hastifly hastifness hastifoliate hastiform hastile hastilude hastily hastiness hastinesses hasting hastings hastingsite hastish hastive hastler hastula hasty hat hatable hatband hatbands hatbox hatboxes hatbrim hatbrush hatbrushes hatch hatchabilities hatchability hatchable hatchback hatchbacks hatcheck hatchecks hatched hatchel hatcheled hatcheler hatcheling hatchelled hatcheller hatchelling hatchels hatcher hatcheries hatchers hatchery hatcheryman hatches hatchet hatchetback hatcheted hatchetfaced hatchetfish hatchetfishes hatcheting hatchetlike hatchetman hatchetmen hatchets hatchettin hatchettine hatchettite hatchettites hatchettolite hatchety hatchgate hatching hatchings hatchite hatchling hatchlings hatchman hatchment hatchments hatchminder hatchway hatchwayman hatchways hate hateable hated hateful hatefullness hatefullnesses hatefully hatefulness hatefulnesses hatel hateless hatelessness hatelessnesses hatemonger hatemongering hatemongers hater haterent haterents haters hates hateworthy hatful hatfuls hatguard hatguards hath hatherlite hathi hathpace hating hatiora hatless hatlessness hatlessnesses hatlike hatmaker hatmakers hatmaking hatpeg hatpegs hatpin hatpins hatrack hatracks hatrail hatred hatreds hatress hats hatsful hatstand hatstands hatt hatte hatted hatter hattered hatteria hatterias hattering hatters hattery hatti hatting hattings hattock hattocks hatty hau haubergeon haubergeons hauberget hauberk hauberks hauberticum haubois hauchecornite haud hauding hauds hauerite hauflin haugh haughland haughs haught haughtier haughtiest haughtily haughtiness haughtinesses haughtly haughtness haughtonite haughty haul haulabout haulage haulages haulageway haulaway haulback hauld haulds hauled hauler haulers haulier hauliers hauling haulm haulmier haulmiest haulms haulmy hauls haulse haulst haulster hault haulyard haulyards haum haunce haunch haunched hauncher haunches haunching haunchless haunchy haunt haunted haunter haunters haunting hauntingly hauntings haunts haunty haupia hauriant haurient hausa hause haused hausen hausens hauses hausfrau hausfrauen hausfraus hausing hausmannite haussa hausse haussmannisation haussmannisations haussmannise haussmannised haussmannises haussmannising haussmannization haussmannizations haussmannize haussmannized haussmannizes haussmannizing haust haustella haustellate haustellated haustellous haustellum haustement haustoria haustorial haustorium haustral haustrum haustus haut hautain hautbois hautboy hautboyist hautboys haute hautein hautesse hauteur hauteurs hauyne hauynes hauynite hauynophyre hav havage havana havance havarti havartis havasupai havdalah havdalahs have haveable haveage havel haveless havelock havelocks haven havenage havened havener havenership havenet havenful havening havenless havens havent havenward haveour haveours haver haveral havercake havered haverel haverels haverer havergrass havering haverings havermeal havers haversack haversacks haversian haversine haversines haves havier havildar havildars having havingness havings havior haviored haviors haviour havioured haviours havlagah havoc havocked havocker havockers havocking havocs haw hawaii hawaiian hawaiians hawaiite hawbuck hawbucks hawcuaite hawcubite hawebake hawed hawer hawfinch hawfinches hawing hawk hawkbell hawkbells hawkbill hawkbills hawkbit hawkbits hawked hawker hawkers hawkery hawkey hawkeye hawkeyed hawkeys hawkie hawkies hawking hawkings hawkins hawkish hawkishly hawkishness hawkishnesses hawkit hawklike hawkmoth hawkmoths hawknose hawknosed hawknoses hawknut hawks hawksbeak hawksbeard hawksbeards hawksbill hawksbills hawkshaw hawkshaws hawkweed hawkweeds hawkwise hawky hawm hawmed hawming hawms hawok haworthia haworthias haws hawse hawsed hawsehole hawseholes hawseman hawsepiece hawsepipe hawsepipes hawser hawsers hawserwise hawses hawsing hawthorn hawthorne hawthorned hawthorns hawthorny hay haya hayastan hayband haybands haybird haybote haybox hayboxes hayburner haycap haycart haycock haycocks haydenite haydn haye hayed hayer hayers hayes hayey hayfield hayfields hayfork hayforks haygrower haying hayings haylage haylages hayle hayles haylift hayloft haylofts haymaker haymakers haymaking haymakings haymarket haymish haymow haymows hayne hayrack hayracks hayrake hayraker hayrakes hayrick hayricks hayride hayrides hayrig hays hayseed hayseeds haysel haysels hayshock haystack haystacks haysuck haythorn hayti haytime haywagon haywain hayward haywards hayweed haywire haywires hayz hazan hazanim hazans hazanut hazard hazardable hazarded hazarder hazarders hazardful hazardia hazarding hazardise hazardises hazardize hazardizes hazardless hazardous hazardously hazardousness hazardousnesses hazardries hazardry hazards haze hazed hazel hazeled hazeless hazelhen hazelhens hazeline hazelly hazelnut hazelnuts hazels hazelwood hazelwort hazemeter hazen hazer hazers hazes hazier haziest hazily haziness hazinesses hazing hazings hazle hazmat hazmats haznadar hazy hazzan hazzanim hazzans hazzanut haüyne hb hcb hcf hcl hconvert hd hdbk hdkf hdl hdlc hdqrs hdwe he head headache headaches headachier headachiest headachy headage headages headband headbander headbands headbang headbanged headbanger headbangers headbanging headbangs headboard headboards headborough headboroughs headbox headbutt headbutted headbutting headbutts headcap headcase headcases headchair headchairs headcheese headcheeses headchute headcloth headclothes headcloths headcount headcounter headcounts headdress headdresses headed headend headender headends header headers headfast headfasts headfirst headfish headfishes headforemost headframe headframes headful headfuls headgate headgates headgear headgears headguard headguards headhunt headhunted headhunter headhunters headhunting headhuntings headhunts headier headiest headily headiness headinesses heading headings headkerchief headlamp headlamps headland headlands headle headlease headleases headledge headless headlessness headlessnesses headlight headlighting headlights headlike headliked headline headlined headliner headliners headlines headlinese headling headlining headload headlock headlocks headlong headlongly headlongness headlongs headlongwise headly headman headmark headmarks headmaster headmasterly headmasters headmastership headmasterships headmen headmistress headmistresses headmistresship headmistressship headmold headmost headmould headnote headnotes headpeace headpeaces headpenny headphone headphones headpiece headpieces headpin headpins headplate headpost headquarter headquartered headquartering headquarters headrace headraces headrail headrails headreach headreached headreaches headreaching headrent headrest headrests headrig headright headrigs headring headrings headroom headrooms headrope headropes heads headsail headsails headsaw headscarf headscarves headset headsets headshake headshaker headshakes headshaking headshakings headsheet headsheets headship headships headshot headshots headshrink headshrinker headshrinkers headsill headskin headsman headsmen headspace headspaces headspring headsprings headsquare headsquares headstall headstalls headstand headstands headstay headstays headstick headsticks headstock headstocks headstone headstones headstream headstreams headstrong headstrongly headstrongness headstrongnesses headteacher headteachers headtire headwaiter headwaiters headwall headward headwards headwark headwater headwaters headway headways headwear headwind headwinds headword headwords headwork headworker headworkers headworking headworks heady heaf heal healable heald healded healder healding healds healed healer healers healful healing healingly healings healless heals healsome healsomeness health healthcare healthcares healthcraft healthful healthfully healthfulness healthfulnesses healthguard healthier healthiest healthily healthiness healthinesses healthless healthlessness healthlessnesses healths healthsome healthsomely healthsomeness healthward healthy heame heap heaped heaper heapers heapier heapiest heaping heaps heapstead heapsteads heapy hear hearable heard heards heare hearer hearers heares hearie hearing hearingless hearings hearken hearkened hearkener hearkeners hearkening hearkens hears hearsay hearsays hearse hearsecloth hearsed hearselike hearses hearsier hearsiest hearsing hearst hearsy heart heartache heartaches heartaching heartbeat heartbeats heartbird heartblock heartblood heartbreak heartbreaker heartbreakers heartbreaking heartbreakingly heartbreaks heartbroke heartbroken heartbrokenly heartbrokenness heartbrokennesses heartburn heartburning heartburnings heartburns heartdeep heartease hearted heartedly heartedness hearten heartened heartener heartening hearteningly heartens heartfelt heartful heartfully heartfulness heartgrief hearth hearthless hearthman hearthpenny hearthrug hearthrugs hearths hearthside hearthsides hearthstead hearthstone hearthstones hearthward hearthwarming heartier hearties heartiest heartikin heartikins heartily heartiness heartinesses hearting heartland heartlands heartleaf heartleafs heartless heartlessly heartlessness heartlessnesses heartlet heartlets heartlike heartling heartlings heartly heartnut heartpea heartpeas heartquake heartrending heartrendingly heartroot heartrot hearts heartscald heartsease heartseases heartseed heartseeds heartsette heartshake heartsick heartsickening heartsickness heartsicknesses heartsmitten heartsome heartsomely heartsomeness heartsore heartsoreness heartstring heartstrings heartthrob heartthrobs heartward heartwarming heartwater heartwaters heartweed heartwise heartwood heartwoods heartworm heartworms heartwort heartwounding hearty heast heaste heastes heasts heat heatable heatdrop heatdrops heated heatedly heatedness heatednesses heaten heater heaterman heaters heatful heath heathberries heathberry heathbird heathbirds heathbrd heathcock heathcocks heathen heathendom heathendoms heatheness heathenesse heathenesses heathenhood heathenise heathenised heathenises heathenish heathenishly heathenishness heathenishnesses heathenising heathenism heathenisms heathenist heathenize heathenized heathenizes heathenizing heathenly heathenness heathenries heathenry heathens heathenship heather heathered heatherier heatheriest heatheriness heathers heathery heathfowl heathier heathiest heathland heathlands heathless heathlike heathrman heaths heathwort heathy heating heatingly heatings heatless heatlike heatmaker heatmaking heatproof heatronic heats heatsman heatspot heatspots heatstroke heatstrokes heatwave heatwaves heaume heaumer heaumes heautarit heautomorphism heautophany heave heaved heaveless heaven heavenful heavenhood heavenise heavenish heavenishly heavenize heavenless heavenlier heavenliest heavenlike heavenliness heavenlinesses heavenly heavens heavenward heavenwardly heavenwardness heavenwards heaver heavers heaves heavier heavies heaviest heavily heaviness heavinesses heaving heavings heavinsogme heavisome heavity heavy heavyback heavyhanded heavyhandedness heavyheaded heavyhearted heavyheartedly heavyheartedness heavyheartednesses heavyish heavyset heavyweight heavyweights heazy hebamic hebdomad hebdomadader hebdomadaders hebdomadal hebdomadally hebdomadar hebdomadaries hebdomadars hebdomadary hebdomader hebdomaders hebdomads hebdomarian hebdomary hebdomcad hebe hebeanthous hebecarpous hebecladous hebegynous heben hebenon hebenons hebens hebeosteotomy hebepetalous hebephrenia hebephreniac hebephreniacs hebephrenias hebephrenic hebephrenics hebes hebetant hebetate hebetated hebetates hebetating hebetation hebetations hebetative hebete hebetic hebetomy hebetude hebetudes hebetudinosities hebetudinosity hebetudinous hebona hebonas hebotomy hebraean hebraic hebraical hebraisation hebraisations hebraise hebraised hebraises hebraising hebraism hebraist hebraistic hebraistically hebraists hebraization hebraizations hebraize hebraized hebraizes hebraizing hebrew hebrews hebrician hebridean hebrides hebronite hecastotheism hecate hecatomb hecatombed hecatombs hecatomped hecatompedon hecatonstylon hecatontarchy hecatontome hecatophyllous hecchsmhaer hecco hecctkaerre hech hechs hechsher hechsherim hechshers hecht hechting hechts heck heckelphone heckelphones heckimal heckle heckled heckler hecklers heckles heckling hecklings hecks heckuva hecogenin hecogenins hectar hectarage hectare hectares hecte hectic hectical hectically hecticly hecticness hectics hective hectocotyl hectocotyle hectocotyli hectocotyliferous hectocotylization hectocotylize hectocotylus hectogram hectogramme hectogrammes hectograms hectograph hectographed hectographic hectographing hectographs hectography hectoliter hectoliters hectolitre hectolitres hectometer hectometers hectometre hectometres hector hectored hectorer hectorers hectoring hectoringly hectorings hectorism hectorisms hectorly hectors hectorship hectorships hectostere hectosteres hectowatt hectyli hecuba hed heddle heddled heddlemaker heddler heddles heddling hede hedebo hedenbergite hedeoma heder hedera hederaceous hederaceously hederal hederated hederic hederiferous hederiform hederigerent hederin hederose heders hedge hedgebe hedgeberry hedgebill hedgebills hedgeborn hedgebote hedgebreaker hedged hedgehog hedgehoggy hedgehogs hedgehop hedgehoppe hedgehopped hedgehopper hedgehoppers hedgehopping hedgehops hedgeless hedgemaker hedgemaking hedgepig hedgepigs hedger hedgerow hedgerows hedgers hedges hedgesmith hedgetaper hedgeweed hedgewise hedgewood hedgier hedgiest hedging hedgingly hedgings hedgy hediondilla hedonic hedonical hedonically hedonics hedonism hedonisms hedonist hedonistic hedonistically hedonists hedonology hedonophobia hedonsim hedriophthalmous hedrocele hedrumite hedyphane hedyphanes hedysarum hee heed heeded heeder heeders heedful heedfully heedfulness heedfulnesses heedily heediness heedinesses heeding heedless heedlessly heedlessness heedlessnesses heeds heedy heehaw heehawed heehawing heehaws heel heelball heelballs heelband heelbone heelcap heeled heeler heelers heelgrip heeling heelings heelless heelmaker heelmaking heelpath heelpiece heelpieces heelplate heelpost heelposts heelprint heels heelstrap heeltap heeltaps heeltree heelwork heelworks heemraad heemraat heep heer heeze heezed heezes heezie heezies heezing heezy heft hefte hefted hefter hefters heftier heftiest heftily heftiness heftinesses hefting hefts hefty hegari hegaris hegel hegelian hegelianism hegemon hegemonial hegemonic hegemonical hegemonies hegemonism hegemonisms hegemonist hegemonistic hegemonists hegemonizer hegemons hegemony hegira hegiras hegumen hegumene hegumenes hegumeness hegumenies hegumenos hegumens hegumeny heh hehs hei heiau heid heids heifer heiferhood heifers heigh heighday heighs height heighted heighten heightened heightener heighteners heightening heightens heighth heighths heights heii heil heild heiled heiling heils heily heimdal heimdall heimdallr heimin heimish heinie heinies heinous heinously heinousness heinousnesses heintzite heir heirdom heirdoms heired heiress heiressdom heiresses heiresshood heiring heirless heirlo heirloom heirlooms heirs heirship heirships heirskip heishi heist heisted heister heisters heisting heists heitiki heitikis heize heized heizing hejab hejabs hejira hejiras hejra hejras hekhsher hekhsherim hekhshers hektare hektares hekteus hektogram hektograph hektoliter hektometer hektostere hel hela helas helbeh helco helcoid helcology helcoplasty helcosis helcotic held heldentenor heldentenore heldentenors helder hele heled helen helena helenin helenioid helenium heleniums helenn heleodytes helepole heles helewou heli heliac heliacal heliacally heliaea heliaean heliamphora helianthaceous helianthemum helianthic helianthin helianthus helianthuses heliast heliastic heliasts heliazophyte heliborne helibus helibuses helibusses helical helically heliced helices helichryse helichrysum helichrysums helicidae heliciform helicin helicine helicitic helicities helicity helicline heliclines helicograph helicographs helicogyrate helicogyre helicoid helicoidal helicoidally helicoids helicometry helicon heliconian heliconist helicons helicoprotein helicopt helicopted helicopter helicoptered helicoptering helicopters helicopting helicopts helicorubin helicotrema helicteres helictite helictites helicultural heliculturalist heliculturalists heliculturally helide helideck helidecks helidrome helidromes helilift helilifted helilifting helilifts heliman helimen heling helio heliocentric heliocentrical heliocentrically heliocentricism heliocentricities heliocentricity heliochrome heliochromes heliochromic heliochromies heliochromoscope heliochromotype heliochromy helioculture heliodon heliodor heliodors helioelectric helioengraving heliofugal heliogram heliograms heliograph heliographed heliographer heliographers heliographic heliographical heliographically heliographies heliographing heliographs heliography heliogravure heliogravures helioid heliolater heliolaters heliolator heliolatries heliolatrous heliolatry heliolite heliolithic heliological heliologies heliologist heliology heliometer heliometers heliometric heliometrical heliometrically heliometries heliometry heliomicrometer heliopause heliopauses heliophila heliophilia heliophiliac heliophilous heliophobe heliophobia heliophobic heliophobous heliophotography heliophyllite heliophyte heliophytes heliopore heliopsis heliopticon helios heliosciophyte heliosciophytes helioscope helioscopes helioscopic helioscopy helioses heliosis heliosphere heliospheres heliostat heliostatic heliostats heliotactic heliotaxes heliotaxis heliotherapies heliotherapy heliothermometer heliothis heliotrope heliotroper heliotropes heliotropian heliotropic heliotropical heliotropically heliotropies heliotropin heliotropine heliotropins heliotropism heliotropisms heliotropy heliotype heliotyped heliotypes heliotypic heliotypically heliotypies heliotyping heliotypography heliotypy heliozoa heliozoan heliozoans heliozoic helipad helipads helipilot helipilots heliport heliports helipterum helis heliscoop heliscoops heliskier heliskiers heliskiing heliskiings helispheric helispherical helistop helistops helium heliums helix helixes helixin helizitic hell hellacious hellaciously hellandite hellanodic hellbender hellbenders hellbent hellbore hellborn hellbox hellboxes hellbred hellbroth hellbroths hellcat hellcats helldiver helldivers helldog helleboraceous helleboraster hellebore helleborein hellebores helleboric helleborin helleborine helleborines helleborism helleborus helled hellene hellenes hellenian hellenic hellenise hellenised hellenises hellenising hellenism hellenist hellenistic hellenistical hellenistically hellenists hellenization hellenizations hellenize hellenized hellenizes hellenizing heller helleri helleries helleris hellers hellery hellespont hellfire hellfires hellgramite hellgramites hellgrammiate hellgrammite hellgrammites hellhag hellhole hellholes hellhound hellhounds hellicat hellicate hellicats hellier helliers hellim helling hellion hellions hellish hellishly hellishness hellishnesses hellkite hellkites hellman hellness hello helloed helloes helloing hellos hellova hellraiser hellraisers hellroot hells hellship helluo helluva hellvine hellward hellwards hellweed helly helm helmage helmed helmet helmeted helmetflower helmeting helmetlike helmetmaker helmetmaking helmetpod helmets helmholtz helming helminth helminthagogic helminthagogue helminthiases helminthiasis helminthic helminthics helminthism helminthite helminthoid helminthologic helminthological helminthologies helminthologist helminthologists helminthology helminthophobia helminthosporiose helminthosporoid helminthostachys helminthous helminths helmless helms helmsman helmsmanship helmsmanships helmsmen helo helobious heloderm heloderma helodermatidae helodermatoid helodermatous helodes heloe heloma helonin helos helosis helot helotage helotages helotiaceae helotiales helotism helotisms helotium helotize helotomy helotries helotry helots help helpable helpdesk helpdesks helped helper helpers helpful helpfully helpfulness helpfulnesses helping helpingly helpings helpless helplessly helplessness helplessnesses helpline helplines helply helpmate helpmates helpmeet helpmeets helps helpsome helpworthy helsingfors helsingkite helsinki helterskelteriness helve helved helvell helvella helvellaceae helvellaceous helvellic helver helves helvetian helvetic helvetica helvetii helvetium helvetiums helvin helvine helving helvite helxine helzel hem hemabarometer hemachate hemachatus hemachrome hemachrosis hemacite hemacytometer hemacytometers hemad hemadrometer hemadrometry hemadromograph hemadromometer hemadynameter hemadynamic hemadynamics hemadynamometer hemafibrite hemagglutinate hemagglutinated hemagglutinates hemagglutinating hemagglutination hemagglutinations hemagglutinative hemagglutinin hemagglutinins hemagog hemagogic hemagogs hemagogue hemal hemalbumen hemameba hemamoeba heman hemanalysis hemangioma hemangiomas hemangiomata hemangiomatosis hemangiosarcoma hemaphein hemaphereses hemapheresis hemaphobia hemapod hemapodous hemapoiesis hemapoietic hemapophyseal hemapophysial hemapophysis hemarthrosis hemase hemaspectroscope hemastatics hematachometer hematachometry hematal hematein hemateins hematemesis hematemetic hematencephalon hematherapy hematherm hemathermal hemathermous hemathidrosis hematic hematics hematid hematidrosis hematimeter hematin hematine hematines hematinic hematinics hematinometer hematinometric hematins hematinuria hematite hematites hematitic hematobic hematobious hematobium hematoblast hematoblastic hematoblasts hematobranchiate hematocatharsis hematocathartic hematocele hematochezia hematochrome hematochyluria hematoclasia hematoclasis hematocolpus hematocrit hematocrits hematocryal hematocrystallin hematocyanin hematocyst hematocystis hematocyte hematocytoblast hematocytogenesis hematocytometer hematocytotripsis hematocytozoon hematocyturia hematodynamics hematodynamometer hematodystrophy hematogen hematogeneses hematogenesis hematogenetic hematogenic hematogenous hematoglobulin hematography hematohidrosis hematoid hematoidin hematoids hematolin hematolite hematologic hematological hematologically hematologies hematologist hematologists hematology hematolymphangioma hematolysis hematolytic hematoma hematomancy hematomas hematomata hematometer hematometra hematometry hematomphalocele hematomyelia hematomyelitis hematonephrosis hematonic hematopathology hematopenia hematopericardium hematopexis hematophagous hematophobia hematophyte hematoplast hematoplastic hematopoieses hematopoiesis hematopoietic hematopoietically hematoporphyria hematoporphyrin hematoporphyrins hematoporphyrinuria hematorrhachis hematorrhea hematosalpinx hematoscope hematoscopy hematose hematosepsis hematosin hematosis hematospectrophotometer hematospectroscope hematospermatocele hematospermia hematostibiite hematotherapy hematothermal hematothorax hematoxic hematoxylic hematoxylin hematoxylins hematozoa hematozoal hematozoan hematozoic hematozoon hematozymosis hematozymotic hematozzoa hematuresis hematuria hematurias hematuric hemautogram hemautograph hemautographic hemautography heme hemellitene hemellitic hemelytra hemelytral hemelytron hemelytrum hemelyttra hemen hemera hemeralope hemeralopia hemeralopias hemeralopic hemerobian hemerobiid hemerobiidae hemerocallidaceae hemerocallis hemerocallises hemerologium hemerology hemerythrin hemerythrins hemes hemiablepsia hemiacetal hemiacetals hemiachromatopsia hemiageusia hemiageustia hemialbumin hemialbumose hemialbumosuria hemialgia hemialgias hemiamaurosis hemiamb hemiamblyopia hemiamyosthenia hemianacusia hemianalgesia hemianatropous hemianesthesia hemianopia hemianopias hemianopic hemianopsia hemianopsias hemianoptic hemianosmia hemiapraxia hemiascomycetes hemiasynergia hemiataxia hemiataxy hemiathetosis hemiatrophy hemiauxin hemiazygous hemibasidium hemibathybian hemibenthic hemibenthonic hemibranch hemibranchiate hemic hemicanities hemicardia hemicardiac hemicarp hemicatalepsy hemicataleptic hemicellulose hemicelluloses hemicentrum hemicephalous hemicerebrum hemicholinium hemichorda hemichordate hemichordates hemichorea hemichromatopsia hemicircle hemicircular hemiclastic hemicollin hemicrane hemicrania hemicranias hemicranic hemicrany hemicrystalline hemicycle hemicycles hemicyclic hemicyclium hemicylindrical hemidactyl hemidactylous hemidemisemiquaver hemidemisemiquavers hemidiapente hemidiaphoresis hemiditone hemidomatic hemidome hemidrachm hemidysergia hemidysesthesia hemidystrophy hemiekton hemielliptic hemielytra hemielytral hemielytron hemiepes hemiepilepsy hemiepiphyte hemifacial hemiform hemigalus hemigastrectomy hemigeusia hemiglobin hemiglossal hemiglossitis hemiglyph hemignathous hemigrammus hemihdry hemihedral hemihedrally hemihedric hemihedries hemihedrism hemihedrisms hemihedron hemihedrons hemihedry hemiholohedral hemihydrate hemihydrated hemihydrates hemihydrosis hemihypalgesia hemihyperesthesia hemihyperidrosis hemihypertonia hemihypertrophy hemihypesthesia hemihypoesthesia hemihypotonia hemikaryon hemikaryotic hemilaminectomy hemilaryngectomy hemilethargy hemiligulate hemilingual hemimellitene hemimellitic hemimelus hemimetabola hemimetabole hemimetabolic hemimetabolism hemimetabolisms hemimetabolous hemimetaboly hemimetamorphic hemimetamorphosis hemimetamorphous hemimorph hemimorphic hemimorphism hemimorphisms hemimorphite hemimorphites hemimorphy hemin hemina heminas hemine heminee hemineurasthenia hemingway hemingwayesque hemins hemiobol hemiola hemiolas hemiolia hemiolias hemiolic hemione hemiones hemionus hemionuses hemiope hemiopia hemiopias hemiopic hemiopsia hemiopsias hemiorthotype hemiparalysis hemiparanesthesia hemiparaplegia hemiparasite hemiparasites hemiparasitic hemiparasitically hemiparasitism hemiparesis hemiparesthesia hemiparetic hemipenis hemipeptone hemiphrase hemipic hemipinnate hemiplane hemiplankton hemiplegia hemiplegias hemiplegic hemiplegics hemiplegy hemipod hemipodan hemipode hemipodes hemipods hemippe hemiprism hemiprismatic hemiprocnidae hemiprotein hemipter hemiptera hemipteral hemipteran hemipterans hemipteroid hemipterological hemipterology hemipteron hemipteronatus hemipterons hemipterous hemipters hemipyramid hemiquinonoid hemiramph hemiramphidae hemiramphine hemisaprophyte hemisaprophytic hemiscotosis hemisect hemisected hemisecting hemisection hemisects hemispace hemispaces hemispasm hemispheral hemisphere hemisphered hemispheres hemispheric hemispherical hemispherically hemispheroid hemispheroidal hemispheroids hemispherule hemistater hemistich hemistichal hemistichs hemistrumectomy hemisymmetrical hemisymmetry hemisystematic hemisystole hemiterata hemiteratic hemiteratics hemiteria hemiterpene hemitery hemithyroidectomy hemitone hemitremor hemitrichous hemitriglyph hemitripterus hemitropal hemitrope hemitropes hemitropic hemitropism hemitropous hemitropy hemitype hemitypic hemivagotony hemizygote hemizygous heml hemline hemlines hemlock hemlocks hemmed hemmel hemmer hemmers hemming hemoalkalimeter hemoblast hemochromatoses hemochromatosis hemochromatotic hemochrome hemochromogen hemochromometer hemochromometry hemoclasia hemoclasis hemoclastic hemocoel hemocoele hemocoelic hemocoelom hemocoels hemoconcentration hemoconia hemoconiosis hemocry hemocrystallin hemoculture hemocyanin hemocyanins hemocyte hemocytes hemocytoblast hemocytoblastic hemocytogenesis hemocytolysis hemocytometer hemocytometers hemocytotripsis hemocytozoon hemocyturia hemodia hemodiagnosis hemodialyses hemodialysis hemodialyzer hemodilution hemodilutions hemodrometer hemodrometry hemodromograph hemodromometer hemodynameter hemodynamic hemodynamically hemodynamics hemodystrophy hemoerythrin hemoflagellate hemoflagellates hemofuscin hemogastric hemogenesis hemogenetic hemogenia hemogenic hemogenous hemoglobic hemoglobin hemoglobinemia hemoglobinic hemoglobiniferous hemoglobinocholia hemoglobinometer hemoglobinopathies hemoglobinopathy hemoglobinophilic hemoglobinous hemoglobins hemoglobinuria hemoglobinurias hemoglobinuric hemoglobulin hemogram hemogregarine hemoid hemokonia hemokoniosis hemol hemoleucocyte hemoleucocytic hemologist hemology hemolymph hemolymphatic hemolymphs hemolysate hemolyses hemolysin hemolysins hemolysis hemolytic hemolyze hemolyzed hemolyzes hemolyzing hemomanometer hemometer hemometry hemonephrosis hemopathology hemopathy hemopericardium hemoperitoneum hemopexis hemophage hemophagia hemophagocyte hemophagocytosis hemophagous hemophagy hemophile hemophilia hemophiliac hemophiliacs hemophilias hemophilic hemophilics hemophilioid hemophobia hemophthalmia hemophthisis hemopiezometer hemoplasmodium hemoplastic hemopneumothorax hemopod hemopoieses hemopoiesis hemopoietic hemoproctia hemoprotein hemoproteins hemoptoe hemoptyses hemoptysis hemopyrrole hemorrhage hemorrhaged hemorrhages hemorrhagic hemorrhaging hemorrhea hemorrhodin hemorrhoid hemorrhoidal hemorrhoidals hemorrhoidectomies hemorrhoidectomy hemorrhoids hemosalpinx hemoscope hemoscopy hemosiderin hemosiderins hemosiderosis hemosiderotic hemospasia hemospastic hemospermia hemosporid hemosporidian hemostases hemostasia hemostasias hemostasis hemostat hemostatic hemostatics hemostats hemotachometer hemotherapeutics hemotherapy hemothorax hemotoxic hemotoxin hemotrophe hemotrophic hemotropic hemozoon hemp hempbush hempbushes hempen hempherds hempie hempier hempies hempiest hemplike hemps hempseed hempseeds hempstring hempweed hempweeds hempwort hempy hems hemself hemstitch hemstitched hemstitcher hemstitchers hemstitches hemstitching hemule hen henad henbane henbanes henbill henbit henbits hence henceforth henceforward henceforwards hences henchboy henchman henchmanship henchmen henchperson henchpersons henchwoman henchwomen hencoop hencoops hencote hend hendecacolic hendecagon hendecagonal hendecagons hendecahedra hendecahedral hendecahedron hendecahedrons hendecane hendecasemic hendecasyllabic hendecasyllabics hendecasyllable hendecasyllables hendecatoic hendecoic hendecyl hended hendedra hendiadys hendiadyses hending hendly hendness hends hendy heneicosane henen henequen henequens henequin henequins henfish heng henge henges hengest henhawk henhearted henheartedness henhouse henhouses henhussies henhussy heniquen heniquens heniquin heniquins henism henley henleys henlike henmoldy henna hennaed hennaing hennas henned henner henneries henners hennery hennes hennier hennies henniest hennin henning hennins hennish hennishly hennishness hennishnesses henny henogeny henotheism henotheisms henotheist henotheistic henotheists henotic henpeck henpecked henpeckeries henpeckery henpecking henpecks henpen henries henroost henroosts henry henrys hens hent hented henter henting hentriacontane hents henware henwife henwile henwise henwoodite henyard heo heortological heortologies heortologion heortologist heortologists heortology hep hepadnavirus hepar heparin heparinise heparinization heparinize heparinized heparinizing heparinoid heparins hepars hepatalgia hepatatrophia hepatatrophy hepatauxe hepatectomies hepatectomize hepatectomized hepatectomizing hepatectomy hepatic hepatica hepaticae hepatical hepaticas hepaticoduodenostomy hepaticoenterostomies hepaticoenterostomy hepaticogastrostomy hepaticological hepaticologies hepaticologist hepaticologists hepaticology hepaticopsida hepaticopulmonary hepaticostomy hepaticotomy hepatics hepatisation hepatisations hepatise hepatised hepatises hepatising hepatite hepatites hepatitides hepatitis hepatitises hepatization hepatizations hepatize hepatized hepatizes hepatizing hepatocele hepatocellular hepatocirrhosis hepatocolic hepatocystic hepatocyte hepatocytes hepatoduodenal hepatoduodenostomy hepatodynia hepatodysentery hepatoenteric hepatoflavin hepatogastric hepatogenic hepatogenous hepatography hepatoid hepatolenticular hepatolith hepatolithiasis hepatolithic hepatological hepatologies hepatologist hepatologists hepatology hepatolysis hepatolytic hepatoma hepatomalacia hepatomas hepatomata hepatomegalia hepatomegalies hepatomegaly hepatomelanosis hepatonephric hepatopancreas hepatopancreases hepatopathy hepatoperitonitis hepatopexia hepatopexy hepatophlebitis hepatophlebotomy hepatophyma hepatopneumonic hepatoportal hepatoptosia hepatoptosis hepatopulmonary hepatorenal hepatorrhagia hepatorrhaphy hepatorrhea hepatorrhexis hepatorrhoea hepatoscopies hepatoscopy hepatostomy hepatotherapy hepatotomy hepatotoxemia hepatotoxic hepatotoxicities hepatotoxicity hepatotoxin hepatotoxins hepatoumbilical hepburn hepcat hepcats hephaestus hephaistos hephthemimer hephthemimeral hephthemimers hepialid hepped heppen hepper heppest hepplewhite heps hepster hepsters hept heptacapsular heptace heptachlor heptachlors heptachord heptachords heptachronous heptacolic heptacosane heptad heptadecane heptadecyl heptadic heptads heptaglot heptaglots heptagon heptagonal heptagons heptagrid heptagynia heptagynous heptahedra heptahedral heptahedrdra heptahedrical heptahedron heptahedrons heptahexahedral heptahydrate heptahydrated heptahydric heptahydroxy heptal heptameride heptamerous heptameter heptameters heptamethylene heptametrical heptanaphthene heptandria heptandrous heptane heptanes heptangular heptanoic heptanone heptapetalous heptaphyllous heptaploid heptaploidy heptapodic heptapodies heptapody heptarch heptarchal heptarchic heptarchical heptarchies heptarchist heptarchists heptarchs heptarchy heptasemic heptasepalous heptaspermous heptastich heptastichs heptastrophic heptastylar heptastyle heptastylos heptasulphide heptasyllabic heptasyllable heptateuch heptathlete heptathletes heptathlon heptathlons heptatomic heptatonic heptavalent heptene hepteris heptine heptite heptitol heptode heptoic heptorite heptose heptoses heptoxide heptyl heptylene heptylic heptyne her hera heraclean heracleid heracleonite heracles heracleum heraclitean herakles herald heralded heraldess heraldic heraldical heraldically heralding heraldise heraldist heraldists heraldize heraldress heraldries heraldry heralds heraldship heraldships herapathite heraud heraus herb herba herbaceous herbaceously herbage herbaged herbager herbages herbagious herbal herbalism herbalisms herbalist herbalists herbalize herbals herbane herbar herbarbaria herbaria herbarial herbarian herbarians herbaries herbariia herbariiums herbarism herbarist herbarium herbariums herbarize herbarized herbarizing herbars herbary herbbane herbed herbelet herbelets herber herbergage herberger herbert herbescent herbicidal herbicidally herbicide herbicides herbicolous herbid herbier herbiest herbiferous herbish herbist herbists herbivora herbivore herbivores herbivories herbivorism herbivority herbivorous herbivorously herbivorousness herbivory herbless herblet herblets herblike herbman herborisation herborisations herborise herborised herborises herborising herborist herborists herborization herborizations herborize herborized herborizer herborizes herborizing herbose herbosity herbous herbrough herbs herbwife herbwoman herby hercogamies hercogamous hercogamy herculanean herculaneum herculean hercules herculeses hercynian hercynite hercynites herd herdbook herdbooks herdboy herdboys herded herden herdens herder herderite herders herdess herdesses herdic herdics herding herdlike herdman herdmen herds herdship herdsman herdsmen herdswoman herdswomen herdwick herdwicks here hereabout hereabouts hereadays hereafter hereafters hereafterward hereagain hereagainst hereamong hereanent hereat hereaway hereaways herebefore hereby heredes heredia heredipetous heredipety hereditabilities hereditability hereditable hereditably heredital hereditament hereditaments hereditarian hereditarianism hereditarianisms hereditarianist hereditarianists hereditarians hereditarily hereditariness hereditarinesses hereditarist hereditary hereditas hereditation hereditative heredities hereditism hereditist hereditists hereditivity heredity heredium heredofamilial heredolues heredoluetic heredosyphilis heredosyphilitic heredosyphilogy heredotuberculosis hereford herefords herefore herefrom heregeld heregild herehence herein hereinabove hereinafter hereinbefore hereinbelow hereinto herem heremeit herems herenach hereness herenesses hereniging hereof hereon hereout hereright herero heres heresiarch heresiarchs heresies heresimach heresiographer heresiographers heresiographies heresiography heresiologer heresiologies heresiologist heresiologists heresiology heresy heresyphobia heresyproof heretic heretical heretically hereticalness hereticalnesses hereticate hereticated hereticates hereticating heretication hereticator hereticide hereticise hereticize heretics hereto heretoch heretofore heretoforetime heretoga heretrices heretrix heretrixes hereunder hereunto hereupon hereupto hereward herewith herewithal herezeld heried heries herigaut herile heriot heriotable heriots herisse herisson herissons heritabilities heritability heritable heritably heritage heritages heritance heritiera heritor heritors heritress heritresses heritrices heritrix heritrixes herkogamies herkogamy herl herling herlings herls herm herma hermae hermaean hermai hermaic herman hermandad hermandads hermann hermannia hermaphrodeity hermaphrodism hermaphrodisms hermaphrodite hermaphrodites hermaphroditic hermaphroditical hermaphroditically hermaphroditish hermaphroditism hermaphroditisms hermaphroditize hermaphroditus hermatypic hermele hermeneut hermeneutic hermeneutical hermeneutically hermeneutics hermeneutist hermeneutists hermes hermetic hermetical hermetically hermeticism hermeticisms hermeticities hermeticity hermetics hermetism hermetisms hermetist hermetists hermi hermidin hermissenda hermit hermitage hermitages hermitary hermitess hermitesses hermitian hermitic hermitical hermitically hermitish hermitism hermitisms hermitize hermitlike hermitries hermitry hermits hermitship hermodact hermodactyl hermogenian hermogeniarnun hermoglyphic hermoglyphist hermokopid herms hern hernandiaceous hernanesell hernani hernant hernaria herne hernia herniae hernial herniarin herniary hernias herniate herniated herniates herniating herniation herniations hernioenterotomy hernioid herniology hernioplasties hernioplasty herniopuncture herniorrhaphies herniorrhaphy herniotome herniotomies herniotomist herniotomy herns hernsew hernshaw hernshaws hero heroarchy herod herodian herodionine herodotus heroe heroes heroess herohead herohood heroic heroical heroically heroicalness heroicalnesses heroicity heroicly heroicness heroicnesses heroicomic heroicomical heroics heroid heroify heroin heroine heroines heroineship heroinise heroinism heroinisms heroinize heroins heroisation heroise heroised heroises heroising heroism heroisms heroistic heroization heroize heroized heroizes heroizing herola herolike heromonger heron heronbill heroner heronite heronries heronry herons heronsew heronsews heronshaw heronshaws heroogony heroologist heroology heroon heroons heros heroship heroships herotheism heroworshipper herp herpangia herpangina herpes herpeses herpestes herpestine herpesvirus herpesviruses herpet herpetic herpetiform herpetism herpetofauna herpetofaunae herpetofaunas herpetography herpetoid herpetologic herpetological herpetologically herpetologies herpetologist herpetologists herpetology herpetomonad herpetophobia herpetotomist herpetotomy herpolhode herquein herr herrengrundite herrenvolk herrenvolks herrerasaur herrerasaurus herrgrdsost herried herries herriment herriments herring herringbone herringboned herringbones herringboning herringer herringers herringlike herrings herrnhuter herry herrying herryment herryments hers hersall hersalls herschel herschelian herschelite herse hersed herself herses hershey hership herships hersir herstories herstory hert hertfordshire hertha hertz hertzes hertzian hery herye heryed heryes herying hes heshvan hesitance hesitances hesitancies hesitancy hesitant hesitantly hesitate hesitated hesitater hesitaters hesitates hesitating hesitatingly hesitatingness hesitation hesitations hesitative hesitatively hesitator hesitators hesitatory hesp hesped hespel hespeperidia hesper hesperian hesperid hesperidate hesperidene hesperideous hesperides hesperidia hesperidin hesperidins hesperidium hesperidiums hesperids hesperiid hesperinon hesperinos hesperiphona hesperis hesperitin hesperornis hesperornithid hesperornithoid hesperus hesping hesps hessian hessians hessite hessites hessonite hessonites hest hestern hesternal hesthogenous hestia hests hesychast hesychastic het hetaera hetaerae hetaerai hetaeras hetaeria hetaeric hetaerio hetaerism hetaerismic hetaerisms hetaerist hetaeristic hetaerists hetaerocracy hetaerolite hetaery hetaira hetairai hetairas hetairia hetairias hetairic hetairism hetairismic hetairisms hetairist hetairistic hetairists hetairy hetchel hete heteradenia heteradenic heterakid heterandrous heterandry heteranthera heteratomic heterauxeses heterauxesis heteraxial heterecious heteric heterically hetericism hetericist heterism heterization heterize hetero heteroagglutinin heteroalbumose heteroaromatic heteroatom heteroatomic heteroatoms heteroautotrophic heteroauxin heteroauxins heterobasidiomycetes heteroblastic heteroblastically heteroblasties heteroblasty heterocarpism heterocarpous heterocaryon heterocaryosis heterocaryotic heterocaseose heterocellular heterocentric heterocephalous heterocephalus heterocerc heterocercal heterocercalities heterocercality heterocercies heterocercy heterocerous heterochiral heterochlamydeous heterochromatic heterochromatin heterochromatins heterochromatism heterochromatisms heterochromatization heterochromatized heterochrome heterochromia heterochromic heterochromosome heterochromosomes heterochromous heterochromy heterochronic heterochronies heterochronism heterochronisms heterochronistic heterochronous heterochrony heterochrosis heterochthon heterochthonous heterocline heteroclinous heteroclital heteroclite heteroclites heteroclitic heteroclitica heteroclitical heteroclitics heteroclitous heterocoelous heterocont heteroconts heterocrine heterocycle heterocycles heterocyclic heterocyclics heterocyst heterocystous heterocysts heterodactyl heterodactylous heterodactyls heterodon heterodont heterodontism heterodontoid heterodox heterodoxal heterodoxical heterodoxies heterodoxly heterodoxness heterodoxy heterodromous heterodromy heteroduplex heteroduplexes heterodyne heterodyned heterodynes heterodyning heteroecious heteroeciously heteroeciousness heteroecism heteroecismal heteroecisms heteroecy heteroepic heteroepy heteroerotic heteroerotism heterofermentative heterofertilization heterogalactic heterogamete heterogametes heterogametic heterogameties heterogametism heterogamety heterogamic heterogamies heterogamous heterogamy heterogangliate heterogen heterogene heterogeneal heterogenean heterogeneities heterogeneity heterogeneous heterogeneously heterogeneousness heterogeneousnesses heterogeneses heterogenesis heterogenetic heterogenetically heterogenic heterogenicity heterogenies heterogenisis heterogenist heterogenous heterogenously heterogenousness heterogenousnesses heterogeny heteroglobulose heterognath heterogone heterogonic heterogonies heterogonism heterogonous heterogonously heterogony heterograft heterografts heterographic heterographical heterographies heterography heterogynal heterogynous heteroicous heteroimmune heteroinfection heteroinoculable heteroinoculation heterointoxication heterokarya heterokaryon heterokaryons heterokaryoses heterokaryosis heterokaryotic heterokinesia heterokinesis heterokinetic heterokont heterokontae heterokontan heterokontophyta heterokonts heterolalia heterolateral heterolecithal heterolith heterolobous heterologic heterological heterologically heterologies heterologous heterologously heterology heterolyses heterolysin heterolysis heterolytic heteromallous heteromastigate heteromastigote heteromeles heteromeral heteromeran heteromeric heteromerous heteromesotrophic heterometabole heterometabolic heterometabolism heterometabolous heterometaboly heterometatrophic heterometric heteromorphic heteromorphies heteromorphism heteromorphisms heteromorphite heteromorphosis heteromorphous heteromorphy heteromyarian heteromyidae heteronereid heteronereis heteronomic heteronomies heteronomous heteronomously heteronomy heteronuclear heteronym heteronymic heteronymies heteronymous heteronymously heteronyms heteronymy heteroousia heteroousian heteroousians heteroousious heteropathic heteropathy heteropelmous heteropetalous heterophagous heterophasia heterophemism heterophemist heterophemistic heterophemize heterophemy heterophil heterophile heterophilic heterophobia heterophonic heterophonies heterophony heterophoria heterophoric heterophylesis heterophyletic heterophyllies heterophyllous heterophylly heterophyly heterophyte heterophytes heterophytic heteroplasia heteroplasias heteroplasm heteroplastic heteroplasties heteroplasty heteroploid heteroploidies heteroploids heteroploidy heteropod heteropoda heteropodal heteropodous heteropods heteropolar heteropolarity heteropoly heteropolysaccharide heteroproteide heteroproteose heteropter heteroptera heteropteran heteropterous heteroptics heteropycnosis heteros heteroscedasticity heteroscelus heteroscian heteroscians heteroscope heteroscopy heteroses heterosex heterosexism heterosexisms heterosexist heterosexists heterosexual heterosexualism heterosexualities heterosexuality heterosexually heterosexuals heteroside heterosis heterosomata heterosomatous heterosome heterosomous heterospecific heterosphere heterosporic heterospories heterosporous heterospory heterostatic heterostemonous heterostracan heterostraci heterostrophic heterostrophies heterostrophous heterostrophy heterostructure heterostyled heterostylies heterostylism heterostylisms heterostylous heterostyly heterosuggestion heterosyllabic heterotactic heterotactous heterotaxes heterotaxia heterotaxias heterotaxic heterotaxies heterotaxis heterotaxy heterotelic heterotelism heterothallic heterothallies heterothallism heterothallisms heterothally heterotheca heterothermal heterothermic heterotic heterotopia heterotopias heterotopic heterotopies heterotopism heterotopous heterotopy heterotransplant heterotransplantation heterotrich heterotrichales heterotrichosis heterotrichous heterotropal heterotroph heterotrophic heterotrophically heterotrophies heterotrophs heterotrophy heterotropia heterotropic heterotropous heterotype heterotypic heterotypical heterousian heterousians heteroxanthine heteroxenous heterozetesis heterozygoses heterozygosis heterozygosities heterozygosity heterozygote heterozygotes heterozygotic heterozygous heterozygousness hetes heth hethen hether hetherward hething heths heting hetman hetmanate hetmanates hetmans hetmanship hetmanships hets hetter hetterly heuau heuch heuchera heucheras heuchs heugh heughs heuk heulandite heulandites heumite heureka heurekas heuretic heuretics heurism heurisms heuristic heuristically heuristics heuvel hevea heveas heved hevi hew hewable hewe hewed hewel hewer hewers hewettite hewgag hewgh hewhall hewhole hewing hewings hewn hews hewt hex hexa hexabasic hexabiose hexabromid hexabromide hexacanth hexacanthous hexacapsular hexacarbon hexace hexachloraphene hexachlorethane hexachlorethanes hexachloride hexachlorocyclohexane hexachloroethane hexachloroethanes hexachlorophane hexachlorophanes hexachlorophene hexachlorophenes hexachord hexachords hexachronous hexacid hexacolic hexacorallan hexacosane hexacosihedroid hexact hexactinal hexactine hexactinellid hexactinellidan hexactinellids hexactinelline hexactinian hexacts hexacyclic hexad hexadactyle hexadactylic hexadactylism hexadactylous hexadactyly hexadd hexade hexadecahedroid hexadecane hexadecanoic hexadecene hexadecimal hexadecimals hexadecyl hexades hexadic hexadiene hexadiine hexadiyne hexads hexaemeric hexaemeron hexaemerons hexafluoride hexafoil hexafoils hexaglot hexagon hexagonal hexagonally hexagonial hexagonical hexagonous hexagons hexagram hexagrammidae hexagrammoid hexagrammos hexagrams hexagyn hexagynia hexagynian hexagynous hexahedra hexahedral hexahedron hexahedrons hexahemeric hexahemeron hexahydrate hexahydrated hexahydrates hexahydric hexahydride hexahydrite hexahydrobenzene hexahydrothymol hexahydroxy hexahydroxycyclohexane hexakisoctahedron hexakistetrahedron hexalectris hexamer hexameral hexameric hexamerism hexamerisms hexameron hexamerous hexameter hexameters hexamethonium hexamethoniums hexamethylenamine hexamethylene hexamethylenetetramine hexamethylenetetramines hexametral hexametric hexametrical hexametrise hexametrised hexametrises hexametrising hexametrist hexametrists hexametrize hexametrized hexametrizes hexametrizing hexametrographer hexamine hexamines hexamita hexamitiasis hexammin hexammine hexammino hexanal hexanaphthene hexanchidae hexanchus hexandria hexandrian hexandric hexandrous hexandry hexane hexanedione hexanes hexangle hexangular hexangularly hexanitrate hexanitrodiphenylamine hexapartite hexaped hexapetaloid hexapetaloideous hexapetalous hexaphyllous hexapla hexaplar hexaplarian hexaplaric hexaplas hexaploid hexaploidies hexaploids hexaploidy hexapod hexapoda hexapodal hexapodan hexapodic hexapodies hexapodous hexapods hexapody hexapterous hexaradial hexarch hexarchies hexarchy hexascha hexaseme hexasemic hexasepalous hexaspermous hexastemonous hexaster hexastich hexasticha hexastichal hexastichic hexastichon hexastichous hexastichs hexastichy hexastigm hexastylar hexastyle hexastyles hexastylos hexasulphide hexasyllabic hexasyllable hexatetrahedron hexateuch hexateuchal hexathlon hexatomic hexatriacontane hexatriose hexavalent hexaxon hexdra hexecontane hexed hexenbesen hexene hexenes hexer hexerei hexereis hexeris hexers hexes hexestrol hexicological hexicology hexine hexing hexings hexiological hexiology hexis hexitol hexobarbital hexobarbitals hexobiose hexoctahedral hexoctahedron hexode hexoestrol hexogen hexoic hexokinase hexokinases hexone hexones hexonic hexosamine hexosaminic hexosaminidase hexosaminidases hexosan hexosans hexose hexosediphosphoric hexosemonophosphoric hexosephosphatase hexosephosphoric hexoses hexoylene hexpartite hexs hexsub hexyl hexylene hexylenes hexylic hexylresorcinol hexylresorcinols hexyls hexyne hey heyday heydays heydeguy heydey heydeys heyduck heyducks heyed heygh heying heynne heypen heyrat heys hezekiah hf hg hgrnotine hgt hgwy hhd hi hia hiant hiatal hiate hiation hiatus hiatuses hiawatha hibachi hibachis hibakusha hibbertia hibbin hibernacle hibernacles hibernacula hibernacular hibernaculum hibernal hibernate hibernated hibernates hibernating hibernation hibernations hibernator hibernators hibernia hibernian hibernicise hibernicised hibernicises hibernicising hibernicism hibernicize hibernicized hibernicizes hibernicizing hibernisation hibernisations hibernise hibernised hibernises hibernising hibernization hibernizations hibernize hibernized hibernizes hibernizing hibiscus hibiscuses hibla hic hicaco hicatee hicatees hiccatee hiccatees hiccough hiccoughed hiccoughing hiccoughs hiccup hiccuped hiccuping hiccupped hiccupping hiccups hiccupy hicht hichu hick hicket hickey hickeyes hickeys hickie hickies hickified hickish hickishness hickories hickory hicks hickscorner hicksite hickwall hickwalls hickway hicky hics hid hidable hidage hidages hidalga hidalgas hidalgism hidalgo hidalgoish hidalgoism hidalgoisms hidalgos hidated hidation hidatsa hiddels hidden hiddenite hiddenites hiddenly hiddenmost hiddenness hiddennesses hidder hidders hide hideaway hideaways hidebind hidebound hideboundness hided hidegeld hidel hideland hideless hideling hideosities hideosity hideous hideously hideousness hideousnesses hideout hideouts hider hiders hides hiding hidings hidling hidlings hidlins hidradenitis hidrocystoma hidromancy hidropoiesis hidropoietic hidroses hidrosis hidrotic hidrotics hidy hie hied hieder hieing hielaman hielamans hielamen hielamon hieland hield hielmite hiemal hiemate hiemation hiems hiera hieracite hieracium hieraciums hieracosphinges hieracosphinx hieracosphinxes hierapicra hierarch hierarchal hierarchial hierarchic hierarchical hierarchically hierarchies hierarchise hierarchised hierarchising hierarchism hierarchisms hierarchist hierarchists hierarchization hierarchize hierarchized hierarchizes hierarchizing hierarchs hierarchy hieratic hieratica hieratical hieratically hieraticas hieraticism hieratite hierocracies hierocracy hierocrat hierocratic hierocratical hierocrats hierodeacon hierodule hierodules hierodulic hierogamy hieroglyph hieroglyphed hieroglypher hieroglyphic hieroglyphical hieroglyphically hieroglyphics hieroglyphing hieroglyphist hieroglyphists hieroglyphize hieroglyphologist hieroglyphology hieroglyphs hieroglyphy hierogram hierogrammat hierogrammate hierogrammates hierogrammateus hierogrammatic hierogrammatical hierogrammatist hierogrammatists hierogrammats hierograms hierograph hierographer hierographers hierographic hierographical hierographies hierographs hierography hierolatries hierolatry hierologic hierological hierologies hierologist hierologists hierology hieromachy hieromancies hieromancy hieromartyr hieromnemon hieromonach hieromonk hieron hieronymian hieronymite hieropathic hierophancy hierophant hierophantes hierophantic hierophantically hierophanticly hierophants hierophobia hierophobias hierophobic hieros hieroscopies hieroscopy hierosolymitan hierurgical hierurgies hierurgy hies hifalutin higdon higgaion higginsite higgle higgled higglehaggle higgler higglers higglery higgles higgling higglings high highball highballed highballing highballs highbelia highbinder highbinders highbinding highblooded highboard highborn highboy highboys highbred highbrow highbrowed highbrowism highbrowisms highbrows highbush highchair highchairs highdaddies highdaddy highed higher highered highering highermost highers highest highfalutin highfaluting highfalutings highfalutinism highfalutins highflier highfliers highflyer highflyers highflying highhanded highhandedly highhandedness highhandednesses highhat highhatting highhearted highheartedly highheartedness highholder highhole highing highish highjack highjacked highjacker highjackers highjacking highjacks highland highlander highlanders highlandish highlands highlife highlifes highlight highlighted highlighter highlighters highlighting highlights highline highliving highlow highly highman highmen highmoor highmost highness highnesses highpockets highpoint highrise highrises highroad highroads highs highschool highspot highspots hight hightail hightailed hightailing hightails highted hightest highth highths highting hightoby hightop hights highveld highwater highway highwayman highwaymen highways highwrought higi higra higuero hijab hijabs hijack hijacked hijacker hijackers hijacking hijackings hijacks hijiki hijikis hijinks hijra hijrah hijrahs hijras hike hiked hiker hikers hikes hiking hikuli hila hilahila hilar hilarious hilariously hilariousness hilariousnesses hilarities hilarity hilary hilasmic hilborn hilch hilched hilches hilching hild hildebrandic hilding hildings hile hili hiliferous hill hillberry hillbillies hillbilly hillbird hillcrest hillcrests hillculture hillebrandite hilled hiller hillers hillet hillfolk hillfolks hillfort hillier hilliest hilliness hillinesses hilling hillman hillmen hillo hilloa hilloaed hilloaing hilloas hillock hillocked hillocks hillocky hilloed hilloes hilloing hillos hills hillsale hillsalesman hillside hillsides hillsite hillsman hilltop hilltopped hilltopper hilltopping hilltops hilltrot hillwalker hillwalkers hillwalking hillwalkings hillward hillwoman hillwort hilly hilsa hilsah hilt hilted hilting hiltless hilts hilum hilus him himalayan himalayas himalayish himamatia himantoglossum himantopus himati himatia himation himations himbo himbos himene himming himne himp himple hims himself himward himwards himyarite himyaritic hin hinau hinayana hinayanist hinch hinctier hinctiest hincty hind hindberries hindberry hindbrain hindbrains hindcast hinddeck hinder hinderance hinderances hindered hinderer hinderers hinderest hinderful hinderfully hindering hinderingly hinderland hinderlands hinderlans hinderlings hinderlins hinderly hinderment hindermost hinders hindersome hindfeet hindfoot hindforemost hindgut hindguts hindhand hindhead hindheads hindi hindleg hindlegs hindmost hindoo hindooism hindoostani hindostani hindquarter hindquarters hindrance hindrances hinds hindsaddle hindshank hindsight hindsights hindu hinduism hindus hindustan hindustani hindward hindwards hindwing hindwings hine hiney hing hinge hingecorner hinged hingeflower hingeless hingelike hinger hingers hinges hingeways hinging hingle hings hinner hinney hinnible hinnied hinnies hinny hinnying hinoid hinoideous hinoki hins hinsdalite hint hinted hintedly hinter hinterland hinterlander hinterlands hinters hinting hintingly hintproof hints hintzeite hiodont hiortdahlite hip hipbath hipbaths hipberry hipbone hipbones hipe hiper hipflask hiphalt hiphape hiphop hiphuggers hiplength hipless hiplike hipline hiplines hiply hipmi hipmold hipness hipnesses hippalectryon hipparch hipparchs hipparion hippeastrum hippeastrums hipped hippen hippens hipper hippest hippi hippian hippiater hippiatric hippiatrical hippiatrics hippiatries hippiatrist hippiatrists hippiatry hippic hippie hippiedom hippiedoms hippiehood hippiehoods hippieness hippienesses hippier hippies hippiest hippin hippiness hippinesses hipping hippings hippins hippish hipple hippo hippobosca hippoboscid hippoboscidae hippocamp hippocampal hippocampi hippocampine hippocampus hippocastanaceae hippocastanaceous hippocaust hippocentaur hippocentauric hippocentaurs hippocerf hippocoprosterol hippocras hippocrases hippocrateaceous hippocrates hippocratic hippocratism hippocrene hippocrepian hippocrepiform hippocrepis hippodame hippodames hippodamia hippodamist hippodamists hippodamous hippodrome hippodromes hippodromic hippodromist hippogastronomy hippoglossoides hippoglossus hippogriff hippogriffin hippogriffs hippogryph hippogryphs hippoid hippolite hippolith hippological hippologies hippologist hippologists hippology hippolytus hippomachy hippomancy hippomanes hippomaneses hippomelanin hippomenes hippometer hippometric hippometry hipponosological hipponosology hipponous hippopathological hippopathology hippophagi hippophagies hippophagism hippophagist hippophagistical hippophagists hippophagous hippophagy hippophile hippophiles hippophobe hippophobes hippophobia hippopod hippopotami hippopotamian hippopotamic hippopotamidae hippopotamine hippopotamoid hippopotamus hippopotamuses hippopotomonstrosesquipedalian hippos hipposideridae hipposideros hippotigrine hippotomical hippotomist hippotomy hippotragine hippotragus hippurate hippuria hippuric hippurid hippurite hippurites hippuritic hippuritoid hippus hippuses hippy hippydom hippydoms hips hipshot hipster hipsterism hipsterisms hipsters hipsurus hipt hipwort hir hirable hiragana hiraganas hirage hirages hircarra hircic hircin hircine hircinous hircocerf hircocervus hircocervuses hircosities hircosity hircus hire hireable hireage hireages hired hiree hirees hireless hireling hirelings hireman hiren hirer hirers hires hiring hirings hirling hirlings hirmologion hirmos hiro hirondelle hiroshima hirple hirpled hirples hirpling hirrient hirrients hirse hirsel hirseled hirseling hirselled hirselling hirsels hirsle hirsled hirsles hirsling hirst hirstie hirsute hirsuteness hirsutenesses hirsuties hirsutism hirsutisms hirsutulous hirtch hirtellous hirudin hirudinal hirudine hirudinea hirudinean hirudineans hirudiniculture hirudinidae hirudinize hirudinoid hirudinous hirudins hirudo hirundine hirundinidae hirundinous hirundo his hish hished hishes hishing hisingerite hisis hislopite hisn hispanic hispanicise hispanicised hispanicises hispanicising hispanicism hispanicisms hispanicize hispanicized hispanicizes hispanicizing hispanics hispanidad hispanidads hispaniola hispaniolan hispaniolate hispaniolise hispaniolised hispaniolises hispaniolising hispaniolize hispaniolized hispaniolizes hispaniolizing hispanism hispanisms hispano hispid hispidities hispidity hispidulate hispidulous hiss hissed hissel hisself hisser hissers hisses hissier hissies hissiest hissing hissingly hissings hissproof hissy hist histamin histaminase histaminases histamine histaminergic histamines histaminic histamins histed hister histidin histidine histidines histidins histie histing histiocyte histiocytes histiocytic histiocytosis histioid histiologies histiology histiophoroid histoblast histoblasts histochemic histochemical histochemically histochemist histochemistries histochemistry histochemists histoclastic histocompatibilities histocompatibility histocompatible histocyte histodiagnosis histodialyses histodialysis histodialytic histogen histogeneses histogenesis histogenetic histogenetically histogenic histogenically histogenies histogenous histogens histogeny histogram histograms histographer histographic histographical histographically histographies histography histoid histologic histological histologically histologies histologist histologists histology histolyses histolysis histolytic histolytically histometabasis histomorphological histomorphologically histomorphology histon histonal histone histones histonomy histopathologic histopathological histopathologically histopathologies histopathologist histopathologists histopathology histophyly histophysiologic histophysiological histophysiologies histophysiology histoplasmin histoplasmoses histoplasmosis historial historian historians historiated historic historical historically historicalness historicalnesses historician historicise historicised historicises historicising historicism historicisms historicist historicists historicities historicity historicization historicizations historicize historicized historicizes historicizing historicocabbalistical historicocritical historicocultural historicodogmatic historicogeographical historicophilosophica historicophysical historicopolitical historicoprophetic historicoreligious historics historicus historied historier histories historiette historiettes historified historifies historify historifying historiograph historiographer historiographers historiographership historiographic historiographical historiographically historiographies historiography historiological historiologies historiology historiometric historiometry historionomer historious historism historisms historize history historying histotherapist histotherapy histothrombin histotome histotomies histotomy histotrophic histotrophy histotropic histozoic histozyme histrio histrion histrionic histrionical histrionically histrionicism histrionicisms histrionics histrionism histrionisms histrionize histrions histrios hists hit hitch hitched hitchel hitcher hitchers hitches hitchhike hitchhiked hitchhiker hitchhikers hitchhikes hitchhiking hitchier hitchiest hitchily hitchiness hitching hitchiti hitchproof hitchrack hitchy hithe hither hithered hithering hithermost hithers hitherside hithersides hithertills hitherto hithertoward hitherunto hitherward hitherwards hithes hitler hitlerian hitlerism hitless hitman hitmen hits hittable hitter hitters hitting hittite hiv hive hived hiveless hivelike hiver hivers hives hiveward hivewards hiving hiya hiyakkin hiyas hizen hizens hiziki hizikis hizz hizzed hizzes hizzie hizzing hizzoner hizzoners hl hld hlqn hm hmm hmo hn hny ho hoa hoactzin hoactzines hoactzins hoaed hoagie hoagies hoagy hoaing hoaming hoar hoard hoarded hoarder hoarders hoarding hoardings hoards hoardward hoared hoarfrost hoarfrosts hoarhead hoarheaded hoarheads hoarhound hoarhounds hoarier hoariest hoarily hoariness hoarinesses hoaring hoarish hoarness hoars hoarse hoarsely hoarsen hoarsened hoarseness hoarsenesses hoarsening hoarsens hoarser hoarsest hoarstone hoarwort hoary hoaryheaded hoas hoast hoasted hoasting hoastman hoastmen hoasts hoatching hoatzin hoatzines hoatzins hoax hoaxability hoaxable hoaxed hoaxee hoaxer hoaxers hoaxes hoaxing hoaxproof hoazin hob hobart hobbed hobber hobbers hobbesian hobbet hobbies hobbil hobbing hobbinoll hobbish hobbism hobbit hobbitries hobbitry hobbits hobble hobblebush hobblebushes hobbled hobbledehoy hobbledehoydom hobbledehoydoms hobbledehoyhood hobbledehoyhoods hobbledehoyish hobbledehoyishness hobbledehoyism hobbledehoyisms hobbledehoys hobbledygee hobbler hobblers hobbles hobbling hobblingly hobblings hobbly hobby hobbyhorse hobbyhorses hobbyhorsical hobbyhorsically hobbyism hobbyisms hobbyist hobbyists hobbyless hobday hobdayed hobdaying hobdays hobgoblin hobgoblinism hobgoblinisms hobgoblinries hobgoblinry hobgoblins hobhouchin hobiler hobits hobjob hobjobbed hobjobber hobjobbers hobjobbing hobjobbings hobjobs hoblike hoblob hobnail hobnailed hobnailer hobnailing hobnails hobnob hobnobbed hobnobber hobnobbers hobnobbing hobnobbings hobnobby hobnobs hobo hobodom hobodoms hoboe hoboed hoboes hoboing hoboism hoboisms hobos hobs hobthrush hoc hocco hoch hochheimer hochhuth hock hockamore hocked hockelty hocker hockers hocket hockets hockey hockeys hocking hockle hockled hockling hockmoney hocks hockshin hockshop hockshops hocktide hocky hocus hocused hocuses hocusing hocussed hocusses hocussing hod hodad hodaddies hodaddy hodads hodded hodden hoddens hodder hoddin hodding hoddins hoddle hoddled hoddles hoddling hoddy hoddypeak hodening hoder hodful hodge hodgepodge hodgepodges hodgkinsonite hodiernal hodja hodjas hodman hodmandod hodmandods hodmen hodograph hodographs hodometer hodometers hodometrical hodometries hodometry hodophobia hodoscope hodoscopes hodr hods hodure hoe hoecake hoecakes hoed hoedown hoedowns hoeful hoeing hoelike hoenir hoer hoernesite hoers hoes hoeshin hoey hog hoga hogan hogans hogarthian hogback hogbacks hogbush hogchoker hogcote hogen hogens hogfish hogfishes hogframe hogg hoggaster hogged hoggee hogger hoggerel hoggerels hoggeries hoggers hoggery hogget hoggets hoggie hoggin hogging hoggings hoggins hoggish hoggishly hoggishness hoggishnesses hoggism hoggler hoggs hoggy hogh hoghead hogherd hoghide hoghood hoghoods hoghs hoglike hogling hogmace hogmanay hogmanays hogmane hogmanes hogmenay hogmenays hogmollies hogmolly hognose hognoses hognut hognuts hogo hogpen hogreeve hogrophyte hogs hogshead hogsheads hogship hogshouther hogskin hogsteer hogsty hogsucker hogtie hogtied hogtieing hogties hogtiing hogton hogtying hogward hogwards hogwash hogwashes hogweed hogweeds hogwort hogyard hoh hohed hohenlinden hohenstaufen hohenzollern hoheria hohing hoho hohs hoi hoick hoicked hoicking hoicks hoicksed hoickses hoicksing hoiden hoidened hoidening hoidenish hoidens hoihere hoik hoiked hoiking hoiks hoin hoing hoise hoised hoises hoising hoist hoistaway hoisted hoister hoisters hoisting hoistings hoistman hoistmen hoists hoistway hoistways hoit hojatoleslam hojatoleslams hojatolislam hojatolislams hoju hoka hokan hoke hoked hoker hokerer hokerly hokes hokey hokeyness hokeynesses hokeypokey hokeypokeys hoki hokier hokiest hokily hokiness hokinesses hoking hokis hokkaido hokkianese hokku hokkus hokum hokums hokypokies hokypoky hol hola holagogue holandric holandry holarctic holard holards holarrhena holarthritic holarthritis holaspidean holbrookia holcad holcodont holcus hold holdable holdall holdalls holdback holdbacks holddown holddowns holden holdenite holder holderbat holderbats holders holdership holdfast holdfastness holdfasts holding holdingly holdings holdman holdout holdouts holdover holdovers holds holdsman holdup holdups hole holeable holectypoid holed holeless holeman holeproof holer holes holesom holesome holethnic holethnos holewort holey holgate holi holia holibut holibuts holidam holiday holidayed holidayer holidayers holidaying holidayism holidaymaker holidaymakers holidaymaking holidays holier holies holiest holily holiness holinesses holing holings holinight holishkes holism holisms holist holistic holistically holists holk holked holking holks holl holla hollaed hollaing hollaite holland hollandaise hollandaises hollander hollanders hollandite hollands hollandses hollantide hollas holleke holler hollered hollering hollers hollidam hollidams hollies hollin holliper hollo holloa holloaed holloaing holloas hollock holloed holloes holloing hollong holloo hollooed hollooing holloos hollos hollow holloware hollowares hollowed hollower hollowest hollowfaced hollowfoot hollowhearted hollowheartedness hollowing hollowly hollowness hollownesses hollowroot hollows hollowware hollowwares holluschick holluschickie holly hollygrape hollyhock hollyhocks hollyleaf hollywood holm holmberry holme holmes holmgang holmia holmias holmic holmium holmiums holmos holms holobaptist holobenthic holoblastic holoblastically holobranch holocaine holocarpic holocarpous holocaust holocaustal holocaustic holocausts holocene holocentrid holocentridae holocentroid holocentrus holocephalan holocephali holocephalian holocephalous holochoanitic holochoanoid holochoanoidal holochordate holochroal holoclastic holocrine holocryptic holocrystalline holodactylic holodedron holodiscus holodiscuses holoenzyme holoenzymes holofernes hologamies hologamous hologamy hologastrula hologastrular holognathous hologonidia hologonidium hologoninidia hologram holograms holograph holographed holographer holographers holographic holographical holographically holographies holographing holographs holography hologynic hologynies hologyny holohedra holohedral holohedric holohedrism holohedrisms holohedron holohedrons holohedry holohemihedral holohyaline holoku hololith holomastigote holometabola holometabole holometabolian holometabolic holometabolism holometabolisms holometabolous holometaboly holometer holomorph holomorphic holomorphism holomorphosis holomorphy holomyarian holonym holonymy holoparasite holoparasitic holophane holophotal holophote holophotes holophotometer holophrase holophrases holophrasis holophrasm holophrastic holophyte holophytes holophytic holophytism holophytisms holoplankton holoplanktonic holoplanktons holoplexia holopneustic holoproteide holoptic holoptychian holoptychiid holoquinoid holoquinoidal holoquinonic holoquinonoid holorhinal holosaprophyte holosaprophytic holoscope holosericeous holoside holosiderite holosiphonate holosomatous holospondaic holostean holosteous holosteric holostomate holostomatous holostome holostomous holostylic holosymmetric holosymmetrical holosymmetry holosystematic holosystolic holothecal holothoracic holothuria holothurian holothurians holothuridae holothurioid holothuroidea holotonia holotonic holotony holotrich holotrichal holotrichous holotype holotypes holotypic holour holozoic holp holpen hols holsom holstein holsteins holster holstered holstering holsters holt holts holw holy holydam holydame holydames holydams holyday holydays holyokeite holystone holystoned holystones holystoning holytide holytides hom homacanth homage homageable homaged homager homagers homages homaging homagium homalogonatous homalographic homaloid homaloidal homaloids homalosternal homard homaridae homarine homaroid homarus homatomic homaxial homaxonial homaxonic hombre hombres homburg homburgs home homebodies homebody homeborn homebound homeboy homeboys homebred homebreds homebrew homebrewed homebrews homebuild homebuilder homebuilders homebuilding homebuildings homebuilt homebuyer homebuyers homecome homecomer homecomers homecoming homecomings homecraft homecrafts homecroft homecrofter homecrofting homed homefarer homefarm homefelt homefolk homefolks homegirl homegirls homegoer homeground homegrown homekeeper homekeeping homeland homelander homelands homeless homelessly homelessness homelessnesses homelet homelier homeliest homelife homelike homelikeness homelily homeliness homelinesses homeling homelovingness homely homelyn homelyns homemade homemake homemaker homemakers homemaking homemakings homeoblastic homeobox homeoboxes homeochromatic homeochromatism homeochronous homeocrystalline homeogenic homeogenous homeoid homeoidal homeoidality homeokinesis homeokinetic homeomeric homeomeries homeomerous homeomery homeomorph homeomorphic homeomorphies homeomorphism homeomorphisms homeomorphous homeomorphs homeomorphy homeopath homeopathic homeopathically homeopathician homeopathicity homeopathies homeopathist homeopathists homeopaths homeopathy homeophony homeoplasia homeoplastic homeoplasy homeopolar homeoses homeosis homeostases homeostasis homeostatic homeostatically homeostatis homeoteleuton homeoteleutons homeotherapy homeotherm homeothermal homeothermic homeothermies homeothermism homeothermous homeotherms homeothermy homeotic homeotransplant homeotransplantation homeotype homeotypic homeotypical homeown homeowner homeowners homeownership homeownerships homeozoic homepage homepages homeplace homeport homeported homeporting homeports homer homered homeric homerid homering homerite homerology homeroom homerooms homers homes homeschool homeschooled homeschooler homeschoolers homeschooling homeschoolings homeschools homeseeker homesick homesickly homesickness homesicknesses homesite homesites homesome homespun homespuns homestall homestalls homestay homestays homestead homesteaded homesteader homesteaders homesteading homesteadings homesteads homester homestretch homestretches hometown hometowns hometz hometzes homeward homewardly homewards homework homeworker homeworkers homeworking homeworkings homeworks homewort homey homeyness homeynesses homeys homichlophobia homicidal homicidally homicide homicides homicidious homicidium homiculture homie homier homies homiest homiform homilete homiletic homiletical homiletically homiletics homiliaries homiliarium homiliary homilies homilist homilists homilite homilize homily hominal hominem homines hominess hominesses homing homings hominian hominians hominid hominidae hominids hominies hominiform hominify hominine hominisation hominisection hominised hominivorous hominization hominizations hominize hominized hominizes hominizing hominoid hominoidea hominoids hominy homish homishness hommack hommage homme hommes hommock hommocks hommos hommoses homo homoanisaldehyde homoanisic homoarecoline homobaric homobasidiomycetes homoblastic homoblasties homoblasty homobront homocarpous homocategoric homocentric homocentrical homocentrically homocerc homocercal homocercality homocercy homocerebrin homochiral homochlamydeous homochromatic homochromatism homochromatisms homochrome homochromic homochromies homochromosome homochromous homochromy homochronous homoclinal homocline homocoelous homocreosol homocycle homocyclic homodermic homodermy homodont homodontism homodox homodoxian homodromal homodrome homodromous homodromy homodynamic homodynamous homodynamy homodyne homoecious homoeoarchy homoeoblastic homoeobox homoeochromatic homoeochronous homoeocrystalline homoeogenic homoeogenous homoeography homoeoid homoeokinesis homoeomerae homoeomeral homoeomeria homoeomerian homoeomerianism homoeomeric homoeomerical homoeomeries homoeomerous homoeomery homoeomorph homoeomorphic homoeomorphies homoeomorphism homoeomorphisms homoeomorphous homoeomorphs homoeomorphy homoeopath homoeopathic homoeopathically homoeopathician homoeopathicity homoeopathies homoeopathist homoeopathists homoeopaths homoeopathy homoeophony homoeophyllous homoeoplasia homoeoplastic homoeoplasy homoeopolar homoeoses homoeosis homoeostases homoeostasis homoeostatic homoeotel homoeoteleutic homoeoteleuton homoeoteleutons homoeothermal homoeothermic homoeothermous homoeotic homoeotopy homoeotype homoeotypic homoeotypical homoeozoic homoerotic homoeroticism homoeroticisms homoerotism homoerotisms homofermentative homogametic homogamic homogamies homogamous homogamy homogangliate homogen homogenate homogenates homogene homogeneal homogenealness homogeneate homogeneities homogeneity homogeneization homogeneize homogeneous homogeneously homogeneousness homogeneousnesses homogeneses homogenesis homogenetic homogenetical homogenetically homogenic homogenies homogenisation homogenisations homogenise homogenised homogeniser homogenisers homogenises homogenising homogenization homogenizations homogenize homogenized homogenizer homogenizers homogenizes homogenizing homogenous homogentisic homogeny homoglot homogone homogonies homogonous homogonously homogony homograft homografts homograph homographic homographs homography homogyne homohedral homoiomerous homoiotherm homoiothermal homoiothermic homoiothermism homoiothermous homoiotherms homoiothermy homoiousia homoiousian homoiousianism homoiousians homoiousious homolateral homolecithal homolegalis homolog homologal homologate homologated homologates homologating homologation homologations homologic homological homologically homologies homologise homologised homologiser homologisers homologises homologising homologist homologize homologized homologizer homologizers homologizes homologizing homologon homologoumena homologous homolographic homolography homologs homologue homologues homologumena homology homolosine homolyses homolysin homolysis homolytic homomallous homomeral homomerous homometrical homometrically homomorph homomorphic homomorphies homomorphism homomorphisms homomorphoses homomorphosis homomorphous homomorphs homomorphy homona homonid homonomous homonomy homonuclear homonym homonymic homonymies homonymities homonymity homonymous homonymously homonyms homonymy homoousia homoousian homoousianism homoousians homoousious homopathy homopause homoperiodic homopetalous homophene homophenous homophile homophiles homophobe homophobes homophobia homophobias homophobic homophone homophones homophonic homophonically homophonies homophonous homophony homophthalic homophylic homophylies homophyllous homophyly homopiperonyl homoplasies homoplasis homoplasmic homoplasmies homoplasmy homoplassy homoplast homoplastic homoplastically homoplasy homopolar homopolarities homopolarity homopolic homopolymer homopolymeric homopolymerization homopolymerize homopolymers homopter homoptera homopteran homopterans homopteron homopterous homorganic homos homoscedastic homoscedasticities homoscedasticity homoseismal homosex homosexes homosexual homosexualism homosexualisms homosexualist homosexualists homosexualities homosexuality homosexually homosexuals homosocial homosocialities homosociality homosphere homospories homosporous homospory homostyled homostylic homostylies homostylism homostylous homostyly homosystemic homotactic homotatic homotaxeous homotaxes homotaxia homotaxial homotaxially homotaxic homotaxis homotaxy homothallic homothallies homothallism homothallisms homothally homotherm homothermal homothermic homothermism homothermous homothermy homothetic homothety homotonic homotonies homotonous homotonously homotony homotopic homotopy homotransplant homotransplantation homotransplantations homotransplants homotropal homotropous homotypal homotype homotypes homotypic homotypical homotypies homotypy homousian homousians homovanillic homovanillin homoveratric homoveratrole homozygoses homozygosis homozygosities homozygosity homozygote homozygotes homozygotic homozygous homozygously homozygousness homrai homuncio homuncle homuncles homuncular homuncule homuncules homunculi homunculus homy hon honan honans honcho honchoed honchoing honchos hond honda hondas hondle hondled hondles hondling hondo honds honduran hondurans honduras hone honed honer honers hones honest honester honestest honestete honesties honestly honestness honestnesses honestone honesty honewort honeworts honey honeyballs honeybee honeybees honeybells honeyberry honeybind honeyblob honeybloom honeybun honeybunch honeybunches honeybuns honeycomb honeycombed honeycombing honeycombings honeycombs honeycreeper honeycreepers honeycup honeydew honeydewed honeydews honeydrop honeyeater honeyeaters honeyed honeyedly honeyedness honeyfall honeyflower honeyfogle honeyfugle honeyful honeyguide honeyguides honeyhearted honeying honeyless honeylike honeylipped honeylocust honeymonth honeymonths honeymoon honeymooned honeymooner honeymooners honeymooning honeymoonlight honeymoons honeymoonshine honeymoonstruck honeymoony honeymouthed honeypod honeypot honeypots honeys honeystone honeystucker honeysuck honeysucker honeysuckers honeysuckle honeysuckled honeysuckles honeysweet honeyware honeywood honeywort hong hongi hongied hongies hongiing honging hongis hongkong hongs honied honily honing honiton honk honked honker honkers honkey honkeys honkie honkies honking honks honky honkytonk honkytonks honolulu honor honorabilities honorability honorable honorableness honorablenesses honorables honorableship honorably honorance honorand honorands honorararia honoraria honoraries honorarily honorarium honorariums honorary honored honoree honorees honorer honorers honoress honorific honorificabilitudinitatibus honorificabilitudinities honorificabilitudinity honorifical honorifically honorifics honoring honorless honorous honors honorsman honorworthy honour honourabilities honourability honourable honourableness honourablenesses honourables honourableship honourably honoured honouree honourees honourer honourers honouring honourless honours hons honshu hont hontish hontous hoo hooch hooches hoochinoo hood hoodcap hooded hoodedness hoodednesses hoodful hoodie hoodier hoodies hoodiest hooding hoodle hoodless hoodlike hoodlum hoodlumise hoodlumish hoodlumism hoodlumisms hoodlumize hoodlums hoodman hoodmen hoodmold hoodmolds hoodoes hoodoo hoodooed hoodooing hoodooism hoodooisms hoodoos hoods hoodsheaf hoodshy hoodshyness hoodwink hoodwinkable hoodwinked hoodwinker hoodwinkers hoodwinking hoodwinks hoodwise hoodwort hoody hooey hooeys hoof hoofbeat hoofbeats hoofbound hoofed hoofer hoofers hoofiness hoofing hoofish hoofless hooflet hooflike hoofmark hoofmarks hoofprint hoofprints hoofrot hoofrots hoofs hoofworm hoofy hoogaars hook hooka hookah hookahs hookaroon hookas hookcheck hooked hookedness hookednesses hookedwise hooker hookerman hookers hookey hookeys hookheal hookier hookies hookiest hooking hookish hookland hookless hooklet hooklets hooklike hookmaker hookmaking hookman hooknose hooknosed hooknoses hooks hookshop hooksmith hookswinging hooktip hooktips hookum hookup hookups hookupu hookweed hookwise hookworm hookwormer hookworms hookwormy hooky hool hoolachan hoolachans hoolakin hoolaulea hoolee hooley hooleys hoolican hoolicans hoolie hoolier hoolies hooliest hooligan hooliganise hooliganish hooliganism hooliganisms hooliganize hooligans hoolihan hoolock hoolocks hooly hoom hoon hoondee hoondi hoonoomaun hoons hoop hooped hooper hooperman hoopers hooping hoopla hooplas hoople hoopless hooplike hoopmaker hoopman hoopmen hoopoe hoopoes hoopoo hoopoos hoops hoopskirt hoopskirts hoopster hoopsters hoopstick hoopwood hoorah hoorahed hoorahing hoorahs hooray hoorayed hooraying hoorays hoord hoorded hoording hoords hooroo hooroos hooroosh hoos hoose hoosegow hoosegows hoosgow hoosgows hoosh hooshed hooshes hooshing hoosier hoosiers hoot hootanannie hootanannies hootananny hootay hootch hootches hooted hootenannie hootenannies hootenanny hooter hooters hootier hootiest hooting hootingly hootmalalie hootnannie hootnannies hootnanny hoots hooty hoove hooved hooven hoover hoovered hoovering hoovers hooves hoovey hooving hooye hop hopak hopbind hopbinds hopbine hopbines hopbush hopcalite hopcrease hopdog hopdogs hope hoped hopeful hopefully hopefulness hopefulnesses hopefuls hopeite hopeless hopelessly hopelessness hopelessnesses hoper hopers hopes hophead hopheads hopi hoping hopingly hopis hoplite hoplites hoplitic hoplitodromos hoplologies hoplologist hoplologists hoplology hoplomachic hoplomachist hoplomachos hoplomachy hoplonemertean hoplonemertine hoplophoneus hopoff hopped hopper hopperburn hoppercar hopperdozer hopperette hoppergrass hopperings hopperman hoppers hoppestere hoppet hoppier hoppiest hopping hoppingly hoppings hoppity hopple hoppled hopples hoppling hoppo hoppy hoppytoad hops hopsack hopsacking hopsackings hopsacks hopsage hopscotch hopscotched hopscotcher hopscotches hopscotching hopthumb hoptoad hoptoads hoptree hopvine hopyard hor hora horace horae horah horahs horal horary horas horatian horation horatius horatiye horatory horbachite hordarian hordary horde hordeaceous hordeate horded hordeiform hordein hordeins hordenine hordeola hordeolum hordeolums hordes hordeum hording hordock hordocks hore horehoond horehound horehounds horismology horizometer horizon horizonal horizonless horizons horizontal horizontalisation horizontalise horizontalism horizontalities horizontality horizontalization horizontalize horizontally horizontalness horizontalnesses horizontals horizontic horizontical horizontically horizonward horkey horkeys horla horme hormephobia hormes hormetic hormic hormigo hormion hormism hormist hormogon hormogonia hormogonium hormogonous hormonal hormonally hormone hormonelike hormones hormonic hormonise hormonize hormonogenesis hormonogenic hormonoid hormonology hormonopoiesis hormonopoietic hormos horn hornada hornbeak hornbeaks hornbeam hornbeams hornbill hornbills hornblende hornblendes hornblendic hornblendite hornblendophyre hornblower hornbook hornbooks hornbug hornbugs horned hornedness hornednesses horneophyton horner hornerah hornero horners hornet hornets hornety hornfair hornfels hornfelses hornfish hornful hornfuls horngeld horngelds hornier horniest hornification hornified hornify hornily horniness horninesses horning hornings hornish hornist hornists hornito hornitos hornkeck hornless hornlessness hornlessnesses hornlet hornlets hornlike hornmouth hornotine hornpipe hornpipes hornplant hornpout hornpouts horns hornslate hornsman hornstay hornstone hornstones hornswaggle hornswoggle hornswoggled hornswoggles hornswoggling horntail horntails hornthumb horntip hornweed hornwood hornwork hornworks hornworm hornworms hornwort hornworts hornwrack hornwracks horny hornyhanded hornyhead hornyheads horograph horographer horographers horographies horography horokaka horol horologe horologer horologers horologes horologia horologic horological horologically horologies horologigia horologiography horologist horologists horologium horologiums horologue horology horometer horometrical horometries horometry horopito horopter horopteric horoptery horoscopal horoscope horoscoper horoscopes horoscopic horoscopical horoscopies horoscopist horoscopists horoscopy horotelic horotely horrah horral horray horrendous horrendously horrendousness horrendousnesses horrent horrescent horreum horribility horrible horribleness horriblenesses horribles horribly horrid horrider horridest horridity horridly horridness horridnesses horrific horrifically horrification horrifications horrified horrifiedly horrifies horrify horrifying horrifyingly horripilant horripilate horripilated horripilates horripilating horripilation horripilations horrisonant horrisonous horror horrorful horrorise horrorish horrorist horrorize horrormonger horrormongering horrorous horrors horrorsome horry hors horse horseback horsebacker horsebacks horsebane horsebean horsebeans horsebox horseboxes horseboy horsebreaker horsebrier horsebush horsecar horsecars horsecart horsecloth horsecloths horsecraft horsed horsedom horsedrawing horseess horsefair horsefeathers horsefettler horsefight horsefish horsefishes horseflesh horsefleshes horseflies horseflower horsefly horsefoot horsegate horsehair horsehaired horsehairs horsehead horseheads horseheal horseheel horseherd horsehide horsehides horsehood horsehoof horseier horseiest horsejockey horsekeeper horsekeeping horselaugh horselaugher horselaughs horselaughter horseleach horseleech horseleeches horseless horselike horseload horselock horsely horseman horsemanship horsemanships horsemastership horsemeat horsemeats horsemen horsemint horsemints horsemonger horsenail horsepipe horseplay horseplayer horseplayers horseplayful horseplays horsepond horseponds horsepower horsepowers horsepox horsepoxes horser horserace horseraces horseracing horseracings horseradish horseradishes horses horseshit horseshits horseshod horseshoe horseshoed horseshoeing horseshoeings horseshoer horseshoers horseshoes horseshoing horseshow horsetail horsetails horsetongue horsetrading horsetree horseway horseways horseweed horseweeds horsewhip horsewhipped horsewhipper horsewhippers horsewhipping horsewhips horsewoman horsewomanship horsewomen horsewood horsey horsfordite horsier horsiest horsify horsily horsiness horsinesses horsing horsings horson horsons horst horste horstes horsts horsy horsyism hort hortation hortations hortative hortatively hortator hortatorily hortatory hortensia hortensial hortensian hortesian horticultor horticultural horticulturalist horticulturalists horticulturally horticulture horticultures horticulturist horticulturists hortite hortonolite hortorium hortulan hortyard horus hory hos hosanna hosannaed hosannah hosannahs hosannaing hosannas hose hosea hosebird hosecock hosed hosel hoseless hoselike hosels hoseman hosemen hosen hosepipe hosepipes hoser hosers hoses hosey hoseyed hoseying hoseys hosier hosieries hosiers hosiery hosing hosiomartyr hosp hospice hospices hospita hospitable hospitableness hospitablenesses hospitably hospitage hospitages hospital hospitalary hospitale hospitaler hospitalers hospitales hospitalisation hospitalisations hospitalise hospitalised hospitalises hospitalising hospitalism hospitalist hospitalists hospitalities hospitality hospitalization hospitalizations hospitalize hospitalized hospitalizes hospitalizing hospitaller hospitallers hospitalman hospitalmen hospitals hospitant hospitate hospitation hospitator hospitia hospitious hospitium hospitiums hospitize hospodar hospodariat hospodariate hospodars hoss hosses host hosta hostaceae hostage hostaged hostager hostages hostageship hostaging hostal hostas hosted hostel hosteled hosteler hostelers hosteling hostelled hosteller hostellers hostelling hostellings hostelries hostelry hostels hoster hostess hostessed hostesses hostessing hostie hostile hostilely hostileness hostiles hostiley hostilise hostilities hostility hostilize hosting hostings hostle hostler hostlers hostlership hostlerwife hostless hostlesse hostly hostries hostry hosts hostship hot hotbed hotbeds hotblood hotblooded hotbloods hotbox hotboxes hotbrained hotcake hotcakes hotch hotcha hotched hotches hotching hotchkiss hotchpot hotchpotchly hotchpots hotdog hotdogged hotdogger hotdoggers hotdogging hotdogs hote hotei hotel hoteldom hoteldoms hotelhood hotelier hoteliers hoteling hotelings hotelisation hotelise hotelization hotelize hotelkeeper hotelkeepers hotelless hotelman hotelmen hotels hotelward hoten hotfoot hotfooted hotfooting hotfoots hoth hothead hotheaded hotheadedly hotheadedness hotheadednesses hotheads hothearted hotheartedly hotheartedness hothouse hothoused hothouses hothousing hothr hoti hotkey hotkeys hotline hotlines hotlink hotlinked hotlinking hotlinks hotly hotmelt hotmouthed hotness hotnesses hotplate hotplates hotpot hotpots hotpress hotpressed hotpresses hotpressing hotrod hotrods hots hotshot hotshots hotspot hotspots hotsprings hotspur hotspurred hotspurs hotted hottentot hottentots hotter hottered hottering hotters hottery hottest hottie hotties hotting hottings hottish hottle hottonia hotzone houbara houdah houdahs houdan houdans houf houfed houff houffed houffing houffs houfing houfs hough houghband houghed hougher houghing houghite houghmagandy houghs houghsinew houhere houlet hoult hoummos hoummoses houmous houmuses hounce hound hounded hounder hounders houndfish houndfishes hounding houndish houndlike houndman hounds houndsbane houndsberry houndsfoot houndshark houndstooth houndy hounskull houpelande houppelande hour hourful hourglass hourglasses houri houris hourless hourlies hourlong hourly hourplate hourplates hours housage housal house houseball houseboat houseboater houseboaters houseboating houseboats housebote housebound houseboy houseboys housebreak housebreaker housebreakers housebreaking housebreakings housebreaks housebroke housebroken housebrokenness housebug housebuilder housebuilding housecarl housecarls housecat housecats houseclean housecleaned housecleaner housecleaning housecleanings housecleans housecoat housecoats housecraft housecrafts housed housedog housedogs housedress housedresses housefast housefather housefathers houseflies housefly housefront housefronts houseful housefuls housefurnishings houseguest houseguests household householder householders householdership householding householdry households househusband househusbands housekeep housekeeper housekeeperlike housekeeperly housekeepers housekeeping housekeepings housekeeps housekept housekkept housel houseled houseleek houseleeks houseless houselessness houselessnesses houselet houselights houseline houseling houselings houselled houselling housellings housels housemaid housemaidenly housemaiding housemaids housemaidy houseman housemaster housemasters housemastership housemate housemates housemating housemen houseminder housemistress housemistresses housemother housemotherly housemothers housemoving houseowner housepaint housepainter housepainters houseparent houseparents houseperson housepersons housephone houseplant houseplants houseproud houser houseridden houseroom houserooms housers houses housesat housesit housesits housesitting housesmith housetop housetops housetrain housetrained housetraining housetrains houseward housewares housewarm housewarmer housewarming housewarmings housewear housewife housewifeliness housewifelinesses housewifely housewiferies housewifery housewifeship housewifeships housewifeskep housewifeskeps housewifey housewifish housewive housewives housework houseworker houseworkers houseworks housewrecker housewright housey housier housiest housing housings housling houss houston houstonia houstonias housty housy hout houted houting houtings houtou houts houttuynia houvari houve houyhnhnm hove hovea hoved hovedance hovel hoveled hoveler hovelers hoveling hovelled hoveller hovellers hovelling hovels hoven hover hovercar hovercraft hovercrafts hovered hoverer hoverers hovering hoveringly hoverly hoverport hoverports hovers hovertrain hovertrains hoves hoving how howadji howardite howbe howbeit howdah howdahs howder howdie howdied howdies howdy howdying howe howel howes however howf howfed howff howffed howffing howffs howfing howfs howgates howish howitz howitzer howitzers howk howked howker howkers howking howkit howks howl howled howler howlers howlet howlets howling howlingly howlings howlite howls howre howres hows howsabout howso howsoever howsomdever howsomever howsour howtowdie howtowdies howzat howzats hox hoxed hoxes hoxing hoy hoya hoyas hoyden hoydened hoydenhood hoydenhoods hoydening hoydenish hoydenishness hoydenism hoydenisms hoydens hoyed hoying hoyle hoyles hoyman hoys hp hpital hq hr hrdwre hrs hryvnia hryvnias hrzn hs hsian hsien ht htel html hts http huaca huacas huaco huainaputina huajillo hualapai hualpai huamachil huamuchil huanaco huanacos huantajayite huapango huapangos huaquero huaqueros huarache huaraches huaracho huarachos huarizo huascaran hub hubb hubba hubbaboo hubbed hubber hubbies hubbing hubble hubbly hubbob hubbub hubbuboo hubbuboos hubbubs hubby hubcap hubcaps hubmaker hubmaking hubnerite hubris hubrises hubristic hubristically hubs hubshi huccatoon huchen hucho huck huckaback huckabacks huckle huckleback hucklebacked huckleberries huckleberry huckleberrying huckleberryings hucklebone huckles huckmuck hucks huckster hucksterage hucksterages huckstered hucksterer hucksteress hucksteresses hucksteries huckstering hucksterise hucksterism hucksterisms hucksterize hucksters huckstery huckstress huckstresses hud hudden hudderon huddle huddled huddledom huddlement huddler huddlers huddles huddling huddlingly huddock huddroun huddup hudibrastic hudson hudsonia hudsonite hue hued hueful huehuetl hueless huelessness huemul huemuls huer huers huerta hues huff huffaker huffcap huffed huffer huffers huffier huffiest huffily huffiness huffinesses huffing huffingly huffish huffishly huffishness huffishnesses huffkin huffkins huffle huffler huffs huffy hug huge hugelite hugely hugeness hugenesses hugeous hugeously hugeousness hugeousnesses huger hugest huggable hugged hugger huggermugger huggermuggered huggermuggering huggermuggers huggermuggery huggers huggery hugging huggingly huggle hugh hugmatee hugo hugoesque hugonis hugs hugsome hugueninia huguenot huguenots hugy huh huhs hui huia huias huic huies huile huipil huipiles huipilla huipils huis huisache huisaches huiscoyol huisher huisquil huissier huissiers huitain huitains huitre huke hula hulaed hulaing hulas hulch hulchy huldee hule hules hulk hulkage hulked hulkier hulkiest hulkily hulkiness hulking hulkingly hulkingness hulks hulky hull hullaballoo hullaballoos hullabaloo hullabaloos hulled huller hullers hullier hulliest hulling hulloa hulloaed hulloaing hulloas hullock hulloes hulloo hullooed hullooing hulloos hulls hully huloist hulotheism hulsea hulsite hulster hulu hulver hulverhead hulverheaded hulwort huly hum huma human humanate humane humanely humaneness humanenesses humaner humanest humanhood humanics humanification humaniform humaniformian humanify humanisation humanisations humanise humanised humaniser humanisers humanises humanish humanising humanism humanisms humanist humanistic humanistical humanistically humanists humanitarian humanitarianise humanitarianism humanitarianisms humanitarianist humanitarianists humanitarianize humanitarians humanitary humanitian humanities humanity humanitymonger humanization humanizations humanize humanized humanizer humanizers humanizes humanizing humankind humankinds humanlike humanly humanness humannesses humanoid humanoids humans humas humate humates humation humbird humble humblebee humblebees humbled humblehearted humblemouthed humbleness humblenesses humbler humblers humbles humbleses humblesse humblesses humblesso humblest humblie humbling humblingly humblings humbly humbo humboldtilite humboldtine humboldtite humbug humbugability humbugable humbuggable humbugged humbugger humbuggeries humbuggers humbuggery humbugging humbuggism humbugs humbuzz humbuzzes humdinger humdingers humdrum humdrumminess humdrummish humdrummishness humdrumness humdrums humdudgeon humdudgeons humect humectant humectants humectate humectated humectates humectating humectation humectations humected humecting humective humectives humects humefied humefies humefy humefying humeral humerals humeri humermeri humeroabdominal humerocubital humerodigital humerodorsal humerometacarpal humeroradial humeroscapular humeroulnar humerus humet humettee humetty humf humfed humfing humfs humgruffian humgruffians humgruffin humgruffins humhum humhums humic humicubation humid humidate humider humidest humidex humidexes humidfied humidfies humidification humidifications humidified humidifier humidifiers humidifies humidify humidifying humidistat humidistats humidities humidity humidityproof humidly humidness humidnesses humidor humidors humific humification humifications humified humifies humifuse humify humifying humilation humiliant humiliate humiliated humiliates humiliating humiliatingly humiliation humiliations humiliative humiliator humiliators humiliatory humilific humilis humilities humilitude humility humin humistratous humit humite humites humiture humitures humlie humlies hummable hummaul hummaum hummaums hummed hummel hummeler hummelled hummeller hummellers hummelling hummels hummer hummeri hummers hummie humming hummingbird hummingbirds hummingly hummings hummock hummocked hummocking hummocks hummocky hummum hummums hummus hummuses humogen humogens humongous humor humoral humoralism humoralisms humoralist humoralistic humoralists humorally humored humorer humorers humoresk humoresks humoresque humoresquely humoresques humorful humorific humoring humorise humorism humorist humoristic humoristical humorists humorize humorless humorlessly humorlessness humorlessnesses humorology humorous humorously humorousness humorousnesses humorproof humors humorsome humorsomely humorsomeness humour humoural humoured humourer humourers humourful humouring humourist humourize humourless humourlessly humourlessness humourlessnesses humourous humourously humours humoursome humoursomeness humoursomenesses humous hump humpback humpbacked humpbacks humped humpen humpens humper humpers humph humphed humphing humphs humpie humpier humpies humpiest humpiness humpinesses humping humpless humps humpties humpty humpy hums humstrum humstrums humuhumunukunukuapuaa humulene humulon humulone humulus humungous humus humuses humuslike humusy humvee humvees hun hunch hunchback hunchbacked hunchbacks hunched hunches hunchet hunching hunchy hund hunder hundi hundred hundredal hundredary hundreder hundreders hundredfold hundredfolds hundredman hundredor hundredors hundredpenny hundreds hundredth hundredths hundredweight hundredweights hundredwork hunfysh hung hungar hungarian hungarians hungaric hungarite hungary hunger hungered hungerer hungerful hungering hungeringly hungerless hungerly hungerproof hungerroot hungers hungerweed hungover hungrier hungriest hungrify hungrily hungriness hungrinesses hungry hunh hunk hunker hunkered hunkering hunkerous hunkerousness hunkers hunkey hunkeys hunkie hunkier hunkies hunkiest hunkpapa hunks hunkses hunky hunnemannia hunner hunnic hunnish hunnishness huns hunt huntable huntaway huntaways hunted huntedly hunter hunterian hunterlike hunters huntiegowk huntiegowks huntilite hunting huntings huntington huntley huntress huntresses hunts huntsman huntsmanship huntsmanships huntsmen huntswoman hup hupa hupaithric hupot huppah huppahs hupped hupping huppot huppoth hups hura hurcheon hurcheons hurden hurdens hurdies hurdis hurdle hurdled hurdleman hurdler hurdlers hurdles hurdlewise hurdling hurdlings hurds hure hureaulite hureek hurgila hurkaru hurkle hurl hurlbarrow hurlbarrows hurlbat hurlbats hurled hurlement hurler hurlers hurley hurleyhacket hurleyhouse hurleys hurlies hurling hurlings hurlock hurlpit hurls hurlwind hurly huron huronian hurr hurra hurraed hurrah hurrahed hurrahing hurrahs hurraing hurras hurray hurrayed hurraying hurrays hurrer hurricane hurricanes hurricanise hurricanize hurricano hurricanoes hurridly hurried hurriedly hurriedness hurriednesses hurrier hurriers hurries hurrisome hurrock hurroo hurroosh hurry hurrygraph hurrying hurryingly hurryings hurryproof hursinghar hurst hursts hurt hurtable hurted hurter hurters hurtful hurtfully hurtfulness hurtfulnesses hurting hurtingest hurtle hurtleberries hurtleberry hurtled hurtles hurtless hurtlessly hurtlessness hurtlessnesses hurtling hurtlingly hurts hurtsome hurty husband husbandable husbandage husbandages husbanded husbander husbanders husbandfield husbandhood husbanding husbandland husbandlands husbandless husbandlike husbandliness husbandly husbandman husbandmen husbandress husbandries husbandry husbands husbandship huscarl huse hush hushabied hushabies hushable hushaby hushabying hushcloth hushed hushedly husheen hushel husher hushered hushering hushers hushes hushful hushfully hushier hushiest hushing hushingly hushion hushllsost husho hushpuppies hushpuppy husht hushy husk huskanaw husked huskened husker huskers huskershredder huskie huskier huskies huskiest huskily huskiness huskinesses husking huskings husklike huskroot husks huskwort husky huso husos huspel huspil huss hussar hussars husses hussies hussif hussifs hussite hussitism hussy hussydom hussyness hust husting hustings hustle hustlecap hustled hustlement hustler hustlers hustles hustling hustlings huswife huswifes huswives hut hutch hutched hutcher hutches hutchet hutchie hutching hutchinsonian hutchinsonite huthold hutholder hutia hutias hutkeeper hutlet hutlike hutment hutments hutre huts hutted hutting huttings huttonian huttoning huttonweed hutukhtu hutuktu hutung hutzpa hutzpah hutzpahes hutzpahs hutzpas huurder huvelyk huxleian huxley huxleyan huxter huyghenian huzoor huzoors huzz huzza huzzaed huzzah huzzahed huzzahing huzzahs huzzaing huzzaings huzzard huzzas huzzies huzzy hv hvy hw hwan hwt hwy hwyl hwyls hy hyacine hyacines hyacinth hyacinthaceae hyacinthian hyacinthin hyacinthine hyacinthoides hyacinths hyacinthus hyades hyaena hyaenas hyaenic hyaenid hyaenidae hyaenodon hyaenodont hyaenodontoid hyahya hyalescence hyalescent hyalin hyaline hyalines hyalinisation hyalinisations hyalinise hyalinised hyalinises hyalinising hyalinization hyalinizations hyalinize hyalinized hyalinizes hyalinizing hyalinocrystalline hyalinosis hyalins hyalite hyalites hyalithe hyalitis hyalitises hyaloandesite hyalobasalt hyalocrystalline hyalodacite hyalogen hyalogens hyalograph hyalographer hyalography hyaloid hyaloiditis hyaloids hyaloliparite hyalolith hyalomelan hyalomelane hyalomelanes hyalomelans hyalomere hyalomucoid hyalonema hyalonemas hyalophagia hyalophane hyalophanes hyalophora hyalophyre hyalopilitic hyaloplasm hyaloplasma hyaloplasmic hyaloplasms hyalopsite hyalopterous hyalosiderite hyalosperma hyalospongiae hyalotekite hyalotype hyalts hyaluronic hyaluronidase hyaluronidases hyblaean hybodont hybosis hybrid hybrida hybridae hybridal hybridation hybridisable hybridisation hybridisations hybridise hybridised hybridiser hybridisers hybridises hybridising hybridism hybridisms hybridist hybridists hybridities hybridity hybridizable hybridization hybridizations hybridize hybridized hybridizer hybridizers hybridizes hybridizing hybridoma hybridomas hybridomata hybridous hybrids hybris hybrises hybristic hyd hydage hydantoate hydantoic hydantoin hydathode hydathodes hydatic hydatid hydatidiform hydatidinous hydatidocele hydatids hydatiform hydatigenous hydatogenesis hydatogenic hydatogenous hydatoid hydatomorphic hydatomorphism hydatopneumatic hydatopneumatolytic hydatopyrogenic hydatoscopy hyde hydnaceae hydnaceous hydnocarpate hydnocarpic hydnocarpus hydnoid hydnoraceous hydnum hydra hydracetin hydrachnid hydracid hydracids hydracoral hydracrylate hydracrylic hydractinian hydradephagan hydradephagous hydrae hydraemia hydraemias hydraemic hydragog hydragogs hydragogue hydragogues hydragogy hydralazine hydralazines hydramide hydramine hydramnion hydramnios hydrangea hydrangeaceae hydrangeaceous hydrangeas hydrant hydranth hydranths hydrants hydrarch hydrargillite hydrargyral hydrargyrate hydrargyria hydrargyriasis hydrargyric hydrargyrism hydrargyrisms hydrargyrosis hydrargyrum hydrargyrums hydrarthroses hydrarthrosis hydrarthrus hydras hydrase hydrases hydrastine hydrastines hydrastinine hydrastis hydratable hydrate hydrated hydrates hydrating hydration hydrations hydrator hydrators hydratropic hydraucone hydraul hydrauli hydraulic hydraulically hydraulician hydraulicity hydraulicked hydraulicking hydraulicly hydraulicon hydraulics hydraulis hydraulist hydraulus hydrauluses hydrazide hydrazides hydrazidine hydrazimethylene hydrazin hydrazine hydrazines hydrazino hydrazo hydrazoate hydrazobenzene hydrazoic hydrazoite hydrazone hydrazyl hydremia hydremias hydremic hydrencephalocele hydrencephaloid hydrencephalus hydria hydriad hydriae hydrias hydriatric hydriatrist hydriatry hydric hydrically hydrid hydride hydrides hydrids hydriform hydrilla hydrillas hydrindene hydriodate hydriodic hydriodide hydrion hydriotaphia hydro hydroa hydroacoustic hydroadipsia hydroaeric hydroairplane hydroalcoholic hydroaromatic hydroatmospheric hydroaviation hydrobarometer hydrobates hydrobatidae hydrobenzoin hydrobilirubin hydrobiological hydrobiologies hydrobiologist hydrobiologists hydrobiology hydrobiosis hydrobiplane hydrobomb hydroboracite hydroborofluoric hydrobranchiate hydrobromate hydrobromic hydrobromid hydrobromide hydrocarbide hydrocarbon hydrocarbonaceous hydrocarbonate hydrocarbonic hydrocarbonous hydrocarbons hydrocarbostyril hydrocarburet hydrocardia hydrocaryaceous hydrocatalysis hydrocauline hydrocaulus hydrocele hydroceles hydrocellulose hydrocelluloses hydrocephali hydrocephalic hydrocephalics hydrocephalies hydrocephalocele hydrocephaloid hydrocephalous hydrocephalus hydrocephaluses hydrocephaly hydroceramic hydrocerussite hydrocharidaceae hydrocharidaceous hydrocharis hydrocharitaceae hydrocharitaceous hydrochemical hydrochemistry hydrochlorate hydrochlorauric hydrochloric hydrochlorid hydrochloride hydrochlorides hydrochlorofluorocarbon hydrochlorofluorocarbons hydrochlorothiazide hydrochlorothiazides hydrochlorplatinic hydrochlorplatinous hydrochoeridae hydrochoerus hydrocholecystis hydrochore hydrochores hydrochoric hydrocinchonine hydrocinnamaldehyde hydrocinnamic hydrocinnamoyl hydrocinnamyl hydrocirsocele hydrocladium hydroclastic hydroclimate hydrocobalticyanic hydrocoele hydrocollidine hydrocolloid hydrocolloidal hydrocolloids hydroconion hydrocoral hydrocoralline hydrocorallines hydrocorals hydrocorisan hydrocortisone hydrocortisones hydrocotarnine hydrocoumaric hydrocrack hydrocracked hydrocracker hydrocrackers hydrocracking hydrocrackings hydrocracks hydrocupreine hydrocyanate hydrocyanic hydrocyanide hydrocycle hydrocyclic hydrocyclist hydrocyst hydrocystic hydrodamalis hydrodesulfurization hydrodesulphurization hydrodiuril hydrodrome hydrodromican hydrodynamic hydrodynamical hydrodynamically hydrodynamicist hydrodynamicists hydrodynamics hydrodynamometer hydroeconomics hydroelastic hydroelectric hydroelectrically hydroelectricities hydroelectricity hydroelectrization hydroergotinine hydroextract hydroextractor hydroextractors hydroferricyanic hydroferrocyanate hydroferrocyanic hydrofluate hydrofluoboric hydrofluoric hydrofluorid hydrofluoride hydrofluorocarbon hydrofluorocarbons hydrofluosilicate hydrofluosilicic hydrofluozirconic hydrofoil hydrofoils hydroformer hydroforming hydroformings hydroformylation hydrofranklinite hydrofuge hydrogalvanic hydrogasification hydrogasifications hydrogel hydrogels hydrogen hydrogenase hydrogenases hydrogenate hydrogenated hydrogenates hydrogenating hydrogenation hydrogenations hydrogenator hydrogenic hydrogenide hydrogenisation hydrogenisations hydrogenise hydrogenised hydrogenises hydrogenising hydrogenium hydrogenization hydrogenizations hydrogenize hydrogenized hydrogenizes hydrogenizing hydrogenolyses hydrogenolysis hydrogenous hydrogens hydrogeologic hydrogeological hydrogeologies hydrogeologist hydrogeologists hydrogeology hydroglider hydrognosy hydrogode hydrograph hydrographer hydrographers hydrographic hydrographical hydrographically hydrographies hydrographs hydrography hydroguret hydrogymnastics hydrohalide hydrohematite hydrohemothorax hydroid hydroidean hydroids hydroiodic hydrokineter hydrokinetic hydrokinetical hydrokinetics hydrol hydrolant hydrolase hydrolases hydrolatry hydrolise hydrolith hydrolize hydrologic hydrological hydrologically hydrologies hydrologist hydrologists hydrology hydrolysable hydrolysate hydrolysates hydrolysation hydrolyse hydrolysed hydrolyser hydrolyses hydrolysing hydrolysis hydrolyst hydrolyte hydrolytes hydrolytic hydrolytically hydrolyzable hydrolyzate hydrolyzates hydrolyzation hydrolyzations hydrolyze hydrolyzed hydrolyzer hydrolyzes hydrolyzing hydromagnesite hydromagnetic hydromagnetics hydromancer hydromancers hydromancies hydromancy hydromania hydromaniac hydromanias hydromantes hydromantic hydromantical hydromantically hydromassage hydrome hydromechanic hydromechanical hydromechanics hydromedusa hydromedusae hydromedusan hydromedusans hydromedusas hydromedusoid hydromedusoids hydromel hydromels hydromeningitis hydromeningocele hydrometallurgical hydrometallurgically hydrometallurgies hydrometallurgist hydrometallurgists hydrometallurgy hydrometamorphism hydrometeor hydrometeorologic hydrometeorological hydrometeorologies hydrometeorologist hydrometeorologists hydrometeorology hydrometeors hydrometer hydrometers hydrometra hydrometric hydrometrical hydrometrically hydrometrid hydrometries hydrometry hydromica hydromicaceous hydromonoplane hydromorph hydromorphic hydromorphous hydromorphy hydromotor hydromyelia hydromyelocele hydromyinae hydromyoma hydromys hydronaut hydronauts hydrone hydronegative hydronephelite hydronephroses hydronephrosis hydronephrotic hydronic hydronically hydronitric hydronitrogen hydronitroprussic hydronitrous hydronium hydroniums hydropac hydroparacoumaric hydropath hydropathic hydropathical hydropathically hydropathics hydropathies hydropathist hydropathists hydropaths hydropathy hydropericarditis hydropericardium hydroperiod hydroperitoneum hydroperitonitis hydroperoxide hydroperoxides hydrophane hydrophanes hydrophanous hydrophid hydrophidae hydrophil hydrophile hydrophiles hydrophilic hydrophilicities hydrophilicity hydrophilid hydrophilies hydrophilism hydrophilite hydrophilites hydrophiloid hydrophilous hydrophily hydrophobe hydrophobia hydrophobias hydrophobic hydrophobical hydrophobicities hydrophobicity hydrophobist hydrophobophobia hydrophobous hydrophoby hydrophoid hydrophone hydrophones hydrophoran hydrophore hydrophoria hydrophorous hydrophthalmia hydrophthalmos hydrophthalmus hydrophylacium hydrophyll hydrophyllaceae hydrophyllaceous hydrophylliaceous hydrophyllium hydrophyllum hydrophysometra hydrophyte hydrophytes hydrophytic hydrophytism hydrophyton hydrophytons hydrophytous hydropic hydropical hydropically hydropigenous hydroplane hydroplaned hydroplaner hydroplanes hydroplaning hydroplanula hydroplatinocyanic hydroplutonic hydropneumatic hydropneumatization hydropneumatosis hydropneumopericardium hydropneumothorax hydropolyp hydropolyps hydroponic hydroponically hydroponicist hydroponicists hydroponics hydroponist hydroponists hydropositive hydropot hydropower hydropowers hydropropulsion hydrops hydropses hydropsies hydropsy hydroptic hydropult hydropultic hydropults hydroquinine hydroquinol hydroquinoline hydroquinols hydroquinone hydroquinones hydrorachis hydrorhiza hydrorhizae hydrorhizal hydrorrhachis hydrorrhachitis hydrorrhea hydrorrhoea hydrorubber hydros hydrosalpinx hydrosalt hydrosarcocele hydroscope hydroscopes hydroscopic hydroscopical hydroscopicity hydroscopist hydroselenic hydroselenide hydroselenuret hydroseparation hydrosere hydroseres hydrosilicate hydrosilicon hydroski hydroskis hydrosol hydrosole hydrosolic hydrosols hydrosoma hydrosomal hydrosomata hydrosomatous hydrosome hydrosomes hydrosorbic hydrospace hydrospaces hydrosphere hydrospheres hydrospheric hydrospire hydrospiric hydrostat hydrostatic hydrostatical hydrostatically hydrostatician hydrostatics hydrostats hydrostome hydrosulfate hydrosulfide hydrosulfides hydrosulfite hydrosulfites hydrosulfurous hydrosulphate hydrosulphide hydrosulphides hydrosulphite hydrosulphites hydrosulphocyanic hydrosulphurated hydrosulphuret hydrosulphureted hydrosulphuric hydrosulphurous hydrosulphuryl hydrotachymeter hydrotactic hydrotalcite hydrotasimeter hydrotaxes hydrotaxis hydrotechnic hydrotechnical hydrotechnologist hydrotechny hydroterpene hydrotheca hydrothecae hydrothecal hydrothecas hydrotherapeutic hydrotherapeutical hydrotherapeutically hydrotherapeutician hydrotherapeuticians hydrotherapeutics hydrotherapies hydrotherapist hydrotherapists hydrotherapy hydrothermal hydrothermally hydrothoraces hydrothoracic hydrothorax hydrothoraxes hydrotic hydrotical hydrotimeter hydrotimetric hydrotimetry hydrotomy hydrotropic hydrotropically hydrotropism hydrotropisms hydroturbine hydrotype hydrous hydrovane hydrovanes hydroxamic hydroxamino hydroxide hydroxides hydroximic hydroxy hydroxyacetic hydroxyanthraquinone hydroxyapatite hydroxyapatites hydroxyazobenzene hydroxybenzene hydroxybutyricacid hydroxycorticosterone hydroxydehydrocorticosterone hydroxydesoxycorticosterone hydroxyketone hydroxyl hydroxylactone hydroxylamine hydroxylamines hydroxylapatite hydroxylapatites hydroxylase hydroxylases hydroxylate hydroxylated hydroxylates hydroxylating hydroxylation hydroxylations hydroxylic hydroxylisation hydroxylise hydroxylization hydroxylize hydroxyls hydroxymethyl hydroxyproline hydroxyprolines hydroxytetracycline hydroxytryptamine hydroxytryptamines hydroxyurea hydroxyureas hydroxyzine hydroxyzines hydrozincite hydrozincites hydrozoa hydrozoal hydrozoan hydrozoans hydrozoic hydrozoon hydrozoons hydrula hydruret hydrus hydurilate hydurilic hydyne hydynes hye hyed hyeing hyemal hyemoschus hyen hyena hyenadog hyenanchin hyenas hyenia hyenic hyeniform hyenine hyenoid hyens hyes hyetal hyetograph hyetographic hyetographical hyetographically hyetographies hyetographs hyetography hyetological hyetologies hyetologist hyetology hyetometer hyetometers hyetometric hyetometrograph hyetometrographic hyetometrographs hygeen hygeia hygeian hygeiolatry hygeist hygeistic hygeists hygenics hygeology hygiantic hygiantics hygiastic hygiastics hygieist hygieists hygienal hygiene hygienes hygienic hygienical hygienically hygienics hygienisation hygienise hygienist hygienists hygienization hygienize hygiologist hygiology hygric hygrin hygrine hygristor hygristors hygroblepharic hygrochasies hygrochastic hygrochasy hygrocybe hygrodeik hygrodeiks hygroexpansivity hygrogram hygrograph hygrographic hygrographical hygrographs hygrologies hygrology hygroma hygromatous hygrometer hygrometers hygrometric hygrometrical hygrometrically hygrometries hygrometry hygrophaneity hygrophanous hygrophil hygrophilous hygrophobe hygrophobia hygrophoraceae hygrophorus hygrophthalmic hygrophyte hygrophytes hygrophytic hygroplasm hygroplasma hygroscope hygroscopes hygroscopic hygroscopical hygroscopically hygroscopicities hygroscopicity hygroscopy hygrostat hygrostatics hygrostats hygrostomia hygrothermal hygrothermograph hygrotrama hying hyingly hyke hykes hyla hylactic hylactism hylactophryne hylaeosaurus hylarchic hylarchical hylas hylasmus hylding hyldings hyle hylean hyleg hylegiacal hylegs hyles hyli hylic hylicism hylicisms hylicist hylicists hylidae hylids hylism hylisms hylist hylists hylobate hylobates hylobatian hylobatic hylobatidae hylobatine hylocereus hylocichla hylodes hylogeneses hylogenesis hylogeny hyloid hyloist hyloists hylology hylomorphic hylomorphical hylomorphism hylomorphisms hylomorphist hylomorphous hylopathism hylopathisms hylopathist hylopathists hylopathy hylophagous hylophylax hylophyte hylophytes hylotheism hylotheisms hylotheist hylotheistic hylotheistical hylotheists hylotomous hylotropic hylozoic hylozoical hylozoism hylozoisms hylozoist hylozoistic hylozoistically hylozoists hymen hymenaea hymenaeal hymenaean hymenaic hymenal hymeneal hymeneally hymeneals hymenean hymenia hymenial hymenic hymenicolar hymeniferous hymeniophore hymenium hymeniumnia hymeniums hymenogastrales hymenogeny hymenoid hymenomycetal hymenomycete hymenomycetes hymenomycetoid hymenomycetous hymenophore hymenophorum hymenophyllaceae hymenophyllaceous hymenophyllum hymenopter hymenoptera hymenopteran hymenopterans hymenopterist hymenopterological hymenopterologist hymenopterology hymenopteron hymenopterons hymenopterous hymenopttera hymenotome hymenotomies hymenotomy hymens hymn hymnal hymnals hymnaria hymnaries hymnarium hymnariunaria hymnary hymnbook hymnbooks hymned hymnenopter hymner hymners hymnic hymning hymnist hymnists hymnless hymnlike hymnode hymnodical hymnodies hymnodist hymnodists hymnody hymnograher hymnographer hymnographers hymnographies hymnography hymnologic hymnological hymnologically hymnologies hymnologist hymnologists hymnology hymns hymnwise hynd hynde hynder hyndes hyne hynerpeton hyobranchial hyocholalic hyocholic hyoepiglottic hyoepiglottidean hyoglossal hyoglossi hyoglossus hyoglycocholic hyoid hyoidal hyoidan hyoideal hyoidean hyoides hyoids hyolithid hyolithoid hyomandibula hyomandibular hyomental hyoplastra hyoplastral hyoplastron hyoscapular hyoscine hyoscines hyoscyamine hyoscyamines hyoscyamus hyosternal hyosternum hyostylic hyostyly hyothere hyothyreoid hyothyroid hyp hypabyssal hypabyssally hypacusia hypacusis hypaesthesia hypaesthesias hypaesthesic hypaethral hypaethron hypaethrons hypaethros hypaethrum hypalgesia hypalgesias hypalgesic hypalgia hypalgias hypalgic hypallactic hypallage hypallages hypanthia hypanthial hypanthium hypanthiums hypantrum hypapophysial hypapophysis hyparterial hypaspist hypate hypates hypaton hypautomorphic hypaxial hype hyped hypegiaphobia hypentelium hyper hyperabelian hyperabsorption hyperaccuracy hyperaccurate hyperaccurately hyperaccurateness hyperacid hyperacidaminuria hyperacidities hyperacidity hyperacousia hyperacoustics hyperaction hyperactions hyperactive hyperactively hyperactives hyperactivities hyperactivity hyperacuities hyperacuity hyperacuness hyperacuses hyperacusia hyperacusis hyperacute hyperacuteness hyperacutenesses hyperadenosis hyperadipose hyperadiposis hyperadiposity hyperadrenalemia hyperadrenalism hyperadrenalisms hyperadrenia hyperadrenocorticism hyperaemia hyperaemias hyperaemic hyperaeolism hyperaesthesia hyperaesthesias hyperaesthesic hyperaesthete hyperaesthetic hyperaggressive hyperaggressiveness hyperaggressivenesses hyperalbuminosis hyperaldosteronism hyperalert hyperalgebra hyperalgesia hyperalgesias hyperalgesic hyperalgesis hyperalgetic hyperalgia hyperalimentation hyperalimentations hyperalkalinity hyperaltruism hyperaltruist hyperaltruistic hyperaminoacidemia hyperanabolic hyperanabolism hyperanacinesia hyperanakinesia hyperanakinesis hyperanarchic hyperanarchy hyperangelic hyperangelical hyperangelically hyperanxious hyperaphia hyperaphic hyperapophyseal hyperapophysial hyperapophysis hyperarchaeological hyperarchepiscopal hyperarid hyperarousal hyperarousals hyperaspist hyperaware hyperawareness hyperawarenesses hyperazotemia hyperazoturia hyperbarbarism hyperbarbarous hyperbarbarously hyperbarbarousness hyperbaric hyperbarically hyperbarism hyperbata hyperbatbata hyperbatic hyperbatically hyperbaton hyperbatons hyperbilirubinemia hyperbola hyperbolae hyperbolaeon hyperbolas hyperbole hyperboles hyperbolic hyperbolical hyperbolically hyperbolicly hyperbolise hyperbolised hyperbolises hyperbolising hyperbolism hyperbolisms hyperbolist hyperbolists hyperbolize hyperbolized hyperbolizes hyperbolizing hyperboloid hyperboloidal hyperboloids hyperboreal hyperborean hyperboreans hyperbrachycephal hyperbrachycephalic hyperbrachycephaly hyperbrachycranial hyperbrachyskelic hyperbranchia hyperbranchial hyperbrutal hyperbrutally hyperbulia hypercalcaemia hypercalcaemias hypercalcemia hypercalcemias hypercalcemic hypercalcinaemia hypercalcinemia hypercalcinuria hypercalciuria hypercalcuria hypercapnia hypercapnias hypercapnic hypercarbamidemia hypercarbia hypercarbureted hypercarburetted hypercarnal hypercarnally hypercatabolism hypercatabolisms hypercatalectic hypercatalexes hypercatalexis hypercatharsis hypercathartic hypercathexis hypercautious hypercellularity hypercenosis hyperchamaerrhine hypercharge hypercharged hypercharges hypercharging hyperchloraemia hyperchloremia hyperchlorhydria hyperchloric hyperchlorination hypercholesteremia hypercholesteremic hypercholesterinemia hypercholesterolaemia hypercholesterolaemias hypercholesterolemia hypercholesterolemias hypercholesterolemic hypercholesterolia hypercholia hypercivilisation hypercivilised hypercivilization hypercivilized hyperclassical hyperclassicality hyperclean hyperclimax hypercoagulabilities hypercoagulability hypercoagulable hypercolour hypercolours hypercompetitive hypercomplex hypercomposite hyperconcentration hyperconcentrations hypercone hyperconfidence hyperconfident hyperconfidently hyperconformist hyperconformity hyperconscientious hyperconscientiously hyperconscientiousness hyperconscious hyperconsciousness hyperconsciousnesses hyperconservatism hyperconservative hyperconservatively hyperconservativeness hyperconstitutional hyperconstitutionalism hyperconstitutionally hypercoracoid hypercorrect hypercorrection hypercorrections hypercorrectly hypercorrectness hypercorrectnesses hypercorticoidism hypercosmic hypercreaturely hypercrinemia hypercrinia hypercrinism hypercrisia hypercritic hypercritical hypercritically hypercriticalness hypercriticise hypercriticised hypercriticises hypercriticising hypercriticism hypercriticisms hypercriticize hypercriticized hypercriticizes hypercriticizing hypercritics hypercryaesthesia hypercryalgesia hypercryesthesia hypercube hypercubes hypercyanosis hypercyanotic hypercycle hypercylinder hypercythemia hypercytosis hyperdactyl hyperdactylia hyperdactylies hyperdactylism hyperdactyly hyperdeification hyperdeified hyperdeify hyperdeifying hyperdelicacy hyperdelicate hyperdelicately hyperdelicateness hyperdelicious hyperdeliciously hyperdeliciousness hyperdelness hyperdemocracy hyperdemocratic hyperdeterminant hyperdevelopment hyperdevelopments hyperdiabolical hyperdiabolically hyperdiabolicalness hyperdialectism hyperdiapason hyperdiapente hyperdiastole hyperdiastolic hyperdiatessaron hyperdiazeuxis hyperdicrotic hyperdicrotism hyperdicrotous hyperdimensional hyperdimensionality hyperdiploid hyperdissyllable hyperdistention hyperditone hyperdivision hyperdolichocephal hyperdolichocephalic hyperdolichocephaly hyperdolichocranial hyperdorian hyperdoricism hyperdulia hyperdulias hyperdulic hyperdulical hyperdynamic hyperefficient hyperelegance hyperelegancy hyperelegant hyperelegantly hyperelliptic hyperemeses hyperemesis hyperemetic hyperemia hyperemias hyperemic hyperemization hyperemotional hyperemotionalities hyperemotionality hyperemotionally hyperemotive hyperemotively hyperemotiveness hyperemotivity hyperemphasise hyperemphasize hyperemphasized hyperemphasizing hyperendemic hyperendocrinia hyperendocrinism hyperendocrisia hyperenergetic hyperenthusiasm hyperenthusiastic hyperenthusiastically hypereosinophilia hyperephidrosis hyperepinephria hyperepinephrinemia hyperepinephry hyperequatorial hypererethism hyperessence hyperesthesia hyperesthesias hyperesthete hyperesthetic hyperethical hyperethically hyperethicalness hypereuryprosopic hypereutectic hypereutectoid hyperexaltation hyperexcitabilities hyperexcitability hyperexcitable hyperexcitableness hyperexcitably hyperexcited hyperexcitement hyperexcitements hyperexcretion hyperexcretions hyperexcursive hyperexcursively hyperexcursiveness hyperexophoria hyperextend hyperextended hyperextending hyperextends hyperextension hyperextensions hyperfastidious hyperfastidiously hyperfastidiousness hyperfederalist hyperfine hyperflexibility hyperflexible hyperflexibleness hyperflexibly hyperflexion hyperfocal hyperform hyperfunction hyperfunctional hyperfunctionally hyperfunctioning hyperfunctions hypergalactia hypergalactosia hypergalactosis hypergamies hypergamous hypergamy hypergenesis hypergenetic hypergenetical hypergenetically hypergeneticalness hypergeometric hypergeometrical hypergeometry hypergeusesthesia hypergeusia hypergeustia hyperglobulia hyperglobulism hyperglycaemia hyperglycaemias hyperglycaemic hyperglycemia hyperglycemias hyperglycemic hyperglycistia hyperglycorrhachia hyperglycosuria hypergoddess hypergol hypergolic hypergolically hypergols hypergrammatical hypergrammatically hypergrammaticalness hyperhedonia hyperhemoglobinemia hyperhepatia hyperhidroses hyperhidrosis hyperhidrotic hyperhilarious hyperhilariously hyperhilariousness hyperhypocrisy hypericaceae hypericaceous hypericales hypericin hypericism hypericum hyperidealistic hyperidealistically hyperideation hyperidroses hyperidrosis hyperimmune hyperimmunisation hyperimmunisations hyperimmunise hyperimmunises hyperimmunity hyperimmunization hyperimmunizations hyperimmunize hyperimmunized hyperimmunizes hyperimmunizing hyperin hyperinflated hyperinflation hyperinflationary hyperinflations hyperingenuity hyperinnervation hyperinnervations hyperinoses hyperinosis hyperinotic hyperinsulinisation hyperinsulinise hyperinsulinism hyperinsulinisms hyperinsulinization hyperinsulinize hyperintellectual hyperintellectually hyperintellectualness hyperintelligence hyperintelligent hyperintelligently hyperintense hyperinvolution hyperinvolutions hyperion hyperirritabilities hyperirritability hyperirritable hyperisotonic hyperite hyperkalemia hyperkalemic hyperkaliemia hyperkatabolism hyperkeratoses hyperkeratosis hyperkeratotic hyperkineses hyperkinesia hyperkinesias hyperkinesis hyperkinetic hyperlactation hyperleptoprosopic hyperlethal hyperlethargy hyperleucocytosis hyperleucocytotic hyperleukocytosis hyperlexis hyperlink hyperlinked hyperlinking hyperlinks hyperlipaemia hyperlipaemic hyperlipemia hyperlipemias hyperlipemic hyperlipidaemia hyperlipidemia hyperlipidemias hyperlipidemic hyperlipoidemia hyperlithuria hyperlogical hyperlogicality hyperlogically hyperlogicalness hyperlustrous hyperlustrously hyperlustrousness hyperlydian hypermagical hypermagically hypermakroskelic hypermania hypermanias hypermanic hypermarket hypermarkets hypermart hypermarts hypermasculine hypermastigina hypermastigote hypermedia hypermedias hypermedication hypermegasoma hypermenorrhea hypermetabolic hypermetabolism hypermetabolisms hypermetamorphic hypermetamorphism hypermetamorphoses hypermetamorphosis hypermetamorphotic hypermetaphoric hypermetaphorical hypermetaphysical hypermetaplasia hypermeter hypermeters hypermetric hypermetrical hypermetron hypermetrope hypermetropia hypermetropias hypermetropic hypermetropical hypermetropies hypermetropy hypermicrosoma hypermilitant hypermiraculous hypermiraculously hypermiraculousness hypermixolydian hypermnesia hypermnesias hypermnesic hypermnesis hypermnestic hypermobilities hypermobility hypermodern hypermodernist hypermodernists hypermodest hypermodestly hypermodestness hypermonosyllable hypermoral hypermoralistic hypermorally hypermorph hypermorphic hypermorphism hypermorphosis hypermotile hypermotility hypermutabilities hypermutability hypermutable hypermyotonia hypermyotrophy hypermyriorama hypermystical hypermystically hypermysticalness hypernationalistic hypernatraemia hypernatraemias hypernatremia hypernatronemia hypernatural hypernaturally hypernaturalness hypernephroma hyperneuria hyperneurotic hypernic hypernik hypernitrogenous hypernomian hypernomic hypernormal hypernormality hypernormally hypernormalness hypernote hypernotion hypernotions hypernutrition hypernutritive hypernym hypernymies hypernyms hypernymy hyperoartia hyperoartian hyperobtrusive hyperobtrusively hyperobtrusiveness hyperodontidae hyperodontogeny hyperoglyphe hyperon hyperons hyperoodon hyperoon hyperope hyperopes hyperopia hyperopias hyperopic hyperorganic hyperorganically hyperorthodox hyperorthodoxy hyperorthognathic hyperorthognathous hyperorthognathy hyperosmia hyperosmic hyperosteogeny hyperostoses hyperostosis hyperostotic hyperothodox hyperothodoxy hyperotreta hyperotretan hyperotretous hyperovaria hyperovarianism hyperovarism hyperoxemia hyperoxidation hyperoxide hyperoxygenate hyperoxygenating hyperoxygenation hyperoxygenise hyperoxygenize hyperoxygenized hyperoxygenizing hyperoxymuriate hyperoxymuriatic hyperpanegyric hyperparasite hyperparasites hyperparasitic hyperparasitise hyperparasitism hyperparasitisms hyperparasitize hyperparathyroidism hyperparathyroidisms hyperparoxysm hyperpathetic hyperpathetical hyperpathetically hyperpathia hyperpathic hyperpatriotic hyperpatriotically hyperpatriotism hyperpencil hyperpepsinia hyperper hyperperfection hyperperistalsis hyperperistaltic hyperpersonal hyperpersonally hyperphagia hyperphagias hyperphagic hyperphalangeal hyperphalangism hyperpharyngeal hyperphenomena hyperphoria hyperphoric hyperphosphatemia hyperphospheremia hyperphosphorescence hyperphrygian hyperphysical hyperphysically hyperphysics hyperpiesia hyperpiesis hyperpietic hyperpietist hyperpigmentation hyperpigmentations hyperpigmented hyperpinealism hyperpituitarism hyperpituitarisms hyperpituitary hyperplagiarism hyperplane hyperplanes hyperplasia hyperplasias hyperplasic hyperplastic hyperplatyrrhine hyperploid hyperploidies hyperploids hyperploidy hyperpnea hyperpneas hyperpneic hyperpnoea hyperpolarization hyperpolarizations hyperpolarize hyperpolarized hyperpolarizes hyperpolarizing hyperpolysyllabic hyperpolysyllabically hyperpotassemia hyperpotassemic hyperpredator hyperprism hyperproducer hyperproducers hyperproduction hyperproductions hyperprognathous hyperprophetic hyperprophetical hyperprophetically hyperprosexia hyperpulmonary hyperpure hyperpurist hyperpyramid hyperpyretic hyperpyrexia hyperpyrexial hyperpyrexias hyperquadric hyperrational hyperrationalities hyperrationality hyperrationally hyperreactive hyperreactivities hyperreactivity hyperreactor hyperreactors hyperrealise hyperrealism hyperrealisms hyperrealist hyperrealistic hyperrealists hyperrealize hyperrealized hyperrealizing hyperresonance hyperresonant hyperresponsive hyperreverential hyperrhythmical hyperridiculous hyperridiculously hyperridiculousness hyperritualism hyperritualistic hyperromantic hyperromantically hyperromanticism hypers hypersacerdotal hypersaintly hypersaline hypersalinities hypersalinity hypersalivation hypersalivations hypersarcoma hypersarcomas hypersarcomata hypersarcoses hypersarcosis hypersceptical hyperscholastic hyperscholastically hyperscrupulosity hyperscrupulous hypersecretion hypersecretions hypersensibility hypersensitisation hypersensitisations hypersensitise hypersensitised hypersensitises hypersensitising hypersensitive hypersensitiveness hypersensitivenesses hypersensitivities hypersensitivity hypersensitization hypersensitizations hypersensitize hypersensitized hypersensitizes hypersensitizing hypersensual hypersensualism hypersensually hypersensualness hypersensuous hypersensuously hypersensuousness hypersentimental hypersentimentally hypersexual hypersexualities hypersexuality hypersolid hypersomnia hypersomnias hypersomnolence hypersomnolences hypersonic hypersonically hypersonics hypersophisticated hypersophistication hyperspace hyperspaces hyperspatial hyperspeculative hyperspeculatively hyperspeculativeness hypersphere hyperspherical hyperspiritualising hyperspiritualizing hypersplenia hypersplenism hyperstatic hypersthene hypersthenes hypersthenia hypersthenias hypersthenic hypersthenite hypersthenites hyperstimulate hyperstimulated hyperstimulates hyperstimulating hyperstimulation hyperstimulations hyperstoic hyperstoical hyperstress hyperstresses hyperstrophic hypersubtle hypersubtlety hypersuggestibility hypersuggestible hypersuggestibleness hypersuggestibly hypersuperlative hypersurface hypersurfaces hypersusceptibilities hypersusceptibility hypersusceptible hypersuspicious hypersystole hypersystolic hypertechnical hypertechnically hypertechnicalness hypertelic hypertely hypertense hypertensely hypertenseness hypertensin hypertensinase hypertensinogen hypertension hypertensions hypertensive hypertensives hyperterrestrial hypertetrahedron hypertext hypertexts hyperthermal hyperthermalgesia hyperthermally hyperthermesthesia hyperthermia hyperthermias hyperthermic hyperthermies hyperthermy hyperthesis hyperthetic hyperthetical hyperthrombinemia hyperthymia hyperthyreosis hyperthyroid hyperthyroidisation hyperthyroidise hyperthyroidism hyperthyroidisms hyperthyroidization hyperthyroidize hyperthyroids hypertocicity hypertonia hypertonias hypertonic hypertonicities hypertonicity hypertonus hypertorrid hypertoxic hypertoxicity hypertragic hypertragical hypertragically hypertranscendent hypertrichosis hypertrichy hypertridimensional hypertrophic hypertrophical hypertrophied hypertrophies hypertrophous hypertrophy hypertrophying hypertrophyphied hypertropia hypertropical hypertype hypertypic hypertypical hyperurbanism hyperurbanisms hyperuresis hyperuricemia hyperuricemias hypervascular hypervascularity hypervelocities hypervelocity hypervenosity hyperventilate hyperventilated hyperventilates hyperventilating hyperventilation hyperventilations hypervigilance hypervigilances hypervigilant hypervigilantly hypervigilantness hypervirulent hyperviscosities hyperviscosity hyperviscous hypervitalisation hypervitalise hypervitalization hypervitalize hypervitalized hypervitalizing hypervitaminoses hypervitaminosis hypervolume hypervoluminous hyperwrought hypes hypesthesia hypesthesias hypesthesic hypethral hypha hyphae hyphaeresis hyphal hyphantria hyphedonia hyphema hyphemia hyphemias hyphen hyphenate hyphenated hyphenates hyphenating hyphenation hyphenations hyphened hyphenic hyphening hyphenisation hyphenisations hyphenise hyphenised hyphenises hyphenising hyphenism hyphenisms hyphenization hyphenizations hyphenize hyphenized hyphenizes hyphenizing hyphenless hyphens hypho hyphodrome hyphomycete hyphomycetic hyphomycetous hyphomycosis hyphopdia hyphopodia hyphopodium hypidiomorphic hypidiomorphically hyping hypinoses hypinosis hypinotic hypnaceous hypnagogic hypnale hypnesthesis hypnesthetic hypnic hypnics hypnoanalyses hypnoanalysis hypnoanalytic hypnobate hypnocyst hypnody hypnoetic hypnogeneses hypnogenesis hypnogenetic hypnogenetically hypnogenic hypnogenies hypnogenous hypnogeny hypnogia hypnogogic hypnograph hypnoid hypnoidal hypnoidise hypnoidised hypnoidises hypnoidising hypnoidization hypnoidize hypnoidized hypnoidizes hypnoidizing hypnologic hypnological hypnologies hypnologist hypnologists hypnology hypnone hypnones hypnopaedia hypnopaedias hypnopedia hypnopedias hypnophobia hypnophobias hypnophobic hypnophoby hypnopompic hypnoses hypnosis hypnosperm hypnosporangia hypnosporangium hypnospore hypnosporic hypnotee hypnotees hypnotherapies hypnotherapist hypnotherapists hypnotherapy hypnotic hypnotically hypnotics hypnotisabilities hypnotisability hypnotisable hypnotisation hypnotisations hypnotise hypnotised hypnotiser hypnotisers hypnotises hypnotising hypnotism hypnotisms hypnotist hypnotistic hypnotists hypnotizabilities hypnotizability hypnotizable hypnotization hypnotizations hypnotize hypnotized hypnotizer hypnotizers hypnotizes hypnotizing hypnotoid hypnotoxin hypnum hypnums hypo hypoacid hypoacidities hypoacidity hypoactive hypoactivity hypoacusia hypoacussis hypoadenia hypoadrenalism hypoadrenia hypoadrenocorticism hypoaeolian hypoalbuminemia hypoalimentation hypoalkaline hypoalkalinity hypoallergenic hypoalonemia hypoaminoacidemia hypoantimonate hypoazoturia hypobaric hypobarism hypobaropathy hypobasal hypobases hypobasidium hypobasis hypobatholithic hypobenthonic hypobenthos hypobetalipoproteinemia hypoblast hypoblastic hypoblasts hypobole hypoboles hypobranchial hypobranchiate hypobromite hypobromites hypobromous hypobulia hypobulic hypocalcemia hypocalcemias hypocalcemic hypocapnia hypocarp hypocarpium hypocarpogean hypocatharsis hypocathartic hypocathexis hypocaust hypocausts hypocellularity hypocenter hypocenters hypocentral hypocentre hypocentres hypocentrum hypocephalus hypochaeris hypochchilia hypochdria hypochil hypochilia hypochilium hypochloremia hypochloremic hypochlorhydria hypochlorhydric hypochloric hypochloridemia hypochlorite hypochlorites hypochlorous hypochloruria hypochnose hypochoeris hypocholesteremia hypocholesterinemia hypocholesterolemia hypochonder hypochondria hypochondriac hypochondriacal hypochondriacally hypochondriacism hypochondriacisms hypochondriacs hypochondrial hypochondrias hypochondriases hypochondriasis hypochondriasm hypochondriasms hypochondriast hypochondriasts hypochondric hypochondrium hypochondry hypochordal hypochromia hypochromic hypochrosis hypochylia hypocist hypocistis hypocists hypocleidian hypocleidium hypocoelom hypocondylar hypocone hypoconid hypoconule hypoconulid hypocopy hypocoracoid hypocorism hypocorisma hypocorismas hypocorisms hypocoristic hypocoristical hypocoristically hypocoristics hypocotyl hypocotyleal hypocotyledonary hypocotyledonous hypocotylous hypocotyls hypocrater hypocrateriform hypocraterimorphous hypocreaceae hypocreaceous hypocreales hypocrinia hypocrinism hypocrisies hypocrisis hypocrisy hypocrital hypocrite hypocrites hypocritic hypocritical hypocritically hypocriticalness hypocrize hypocrystalline hypocycloid hypocycloidal hypocycloids hypocystotomy hypocytosis hypodactylum hypoderm hypoderma hypodermal hypodermas hypodermatic hypodermatically hypodermatidae hypodermatoclysis hypodermatomy hypodermic hypodermically hypodermics hypodermis hypodermises hypodermoclysis hypodermosis hypodermous hypoderms hypodiapason hypodiapente hypodiastole hypodiatessaron hypodiazeuxis hypodicrotic hypodicrotous hypodiploid hypodiploidies hypodiploidy hypoditone hypodorian hypodynamia hypodynamic hypoed hypoeliminator hypoendocrinia hypoendocrinism hypoendocrisia hypoeosinophilia hypoergic hypoesthesia hypoesthesias hypoeutectic hypoeutectoid hypofunction hypogaea hypogaeal hypogaean hypogaeic hypogaeous hypogaeum hypogammaglobulinemia hypogamy hypogastria hypogastric hypogastrium hypogastriums hypogastrocele hypogea hypogeal hypogeally hypogean hypogee hypogeic hypogeiody hypogene hypogenesis hypogenetic hypogenic hypogenous hypogeocarpous hypogeous hypogeugea hypogeum hypogeusia hypoglobulia hypoglossal hypoglossals hypoglossis hypoglossitis hypoglossus hypoglottis hypoglycaemia hypoglycaemias hypoglycaemic hypoglycemia hypoglycemias hypoglycemic hypoglycemics hypognathism hypognathisms hypognathous hypogonadia hypogonadism hypogonadisms hypogonation hypogyn hypogynic hypogynies hypogynium hypogynous hypogyny hypohalous hypohemia hypohepatia hypohidrosis hypohyal hypohyaline hypohydrochloria hypohypophysism hypoid hypoidrosis hypoing hypoinosemia hypoiodite hypoiodous hypoionian hypoischium hypoisotonic hypokalemia hypokalemias hypokalemic hypokaliemia hypokeimenometry hypokinemia hypokinesia hypokinesis hypokinetic hypokoristikon hypolemniscus hypoleptically hypoleucocytosis hypolimnetic hypolimnia hypolimnial hypolimnion hypolimnionia hypolimnions hypolithic hypolocrian hypolydian hypomagnesaemia hypomagnesaemias hypomagnesemia hypomagnesemias hypomania hypomanias hypomanic hypomelancholia hypomenorrhea hypomenorrheas hypomenorrhoea hypomenorrhoeas hypomeral hypomere hypomeron hypometropia hypomixolydian hypomnematic hypomnesia hypomnesis hypomochlion hypomorph hypomorphic hypomorphs hypomotility hypomyotonia hyponastic hyponastically hyponasties hyponasty hyponatremia hyponea hyponeas hyponeuria hyponitric hyponitrite hyponitrites hyponitrous hyponoetic hyponoia hyponoias hyponome hyponomic hyponychial hyponychium hyponym hyponymic hyponymies hyponymous hyponyms hyponymy hypopachus hypoparathyroidism hypoparathyroidisms hypopepsia hypopepsinia hypopepsy hypopetalous hypopetaly hypophalangism hypophamin hypophamine hypophare hypopharyngeal hypopharynges hypopharyngoscope hypopharyngoscopy hypopharynx hypopharynxes hypophloeodal hypophloeodic hypophloeous hypophonesis hypophonia hypophonic hypophonous hypophora hypophoria hypophosphate hypophosphite hypophosphites hypophosphoric hypophosphorous hypophrenia hypophrenic hypophrenosis hypophrygian hypophyge hypophyll hypophyllium hypophyllous hypophyllum hypophypophysism hypophyse hypophyseal hypophysectomies hypophysectomise hypophysectomised hypophysectomize hypophysectomized hypophysectomizes hypophysectomizing hypophysectomy hypophyseoprivic hypophyseoprivous hypophyses hypophysial hypophysical hypophysics hypophysis hypophysitis hypopial hypopiesia hypopiesis hypopinealism hypopituitarism hypopituitarisms hypopituitary hypopitys hypoplankton hypoplanktonic hypoplasia hypoplasias hypoplastic hypoplasties hypoplastral hypoplastron hypoplastrons hypoplasty hypoplasy hypoploid hypoploidies hypoploids hypoploidy hypopnea hypopneas hypopnoea hypopoddia hypopodia hypopodium hypopotassemia hypopotassemic hypopraxia hypoprosexia hypoproteinemia hypoproteinosis hypopselaphesia hypopsychosis hypopteral hypopteron hypoptilar hypoptilum hypoptosis hypoptyalism hypopus hypopygial hypopygidium hypopygium hypopyon hypopyons hyporadial hyporadiolus hyporadius hyporchema hyporchemata hyporchematic hyporcheme hyporchesis hyporhachidian hyporhachis hyporhined hyporight hyporit hyporrhythmic hypos hyposalemia hyposarca hyposcenium hyposcleral hyposcope hyposecretion hyposensitisation hyposensitise hyposensitive hyposensitivities hyposensitivity hyposensitization hyposensitizations hyposensitize hyposensitized hyposensitizes hyposensitizing hyposkeletal hyposmia hypospadiac hypospadias hypospadiases hyposphene hyposphresia hypospray hypostase hypostases hypostasis hypostasise hypostasised hypostasises hypostasising hypostasization hypostasize hypostasized hypostasizes hypostasizing hypostasy hypostatic hypostatical hypostatically hypostatisation hypostatisations hypostatise hypostatised hypostatises hypostatising hypostatization hypostatizations hypostatize hypostatized hypostatizes hypostatizing hyposternal hyposternum hyposthenia hyposthenic hyposthenuria hypostigma hypostilbite hypostoma hypostomatic hypostomatous hypostome hypostomes hypostomial hypostomous hypostress hypostresses hypostrophe hypostrophes hypostyle hypostyles hypostypsis hypostyptic hyposulfite hyposulfites hyposulfurous hyposulphate hyposulphates hyposulphite hyposulphites hyposulphuric hyposulphurous hyposuprarenalism hyposyllogistic hyposynaphe hyposynergia hyposystole hypotactic hypotarsal hypotarsus hypotaxes hypotaxia hypotaxic hypotaxis hypotension hypotensions hypotensive hypotensives hypotensor hypotenusal hypotenuse hypotenuses hypoth hypothalami hypothalamic hypothalamically hypothalamus hypothalli hypothalline hypothallus hypothami hypothec hypotheca hypothecal hypothecary hypothecate hypothecated hypothecater hypothecates hypothecating hypothecation hypothecations hypothecative hypothecator hypothecators hypothecatory hypothecia hypothecial hypothecium hypothecs hypothenal hypothenar hypothenic hypothenusal hypothenuse hypothenuses hypothermal hypothermia hypothermias hypothermic hypothermy hypotheses hypothesi hypothesis hypothesise hypothesised hypothesiser hypothesisers hypothesises hypothesising hypothesist hypothesists hypothesize hypothesized hypothesizer hypothesizers hypothesizes hypothesizing hypothetic hypothetical hypothetically hypotheticalness hypotheticals hypothetics hypothetise hypothetised hypothetises hypothetising hypothetist hypothetize hypothetized hypothetizer hypothetizes hypothetizing hypothyreosis hypothyroid hypothyroidism hypothyroidisms hypothyroids hypotonia hypotonias hypotonic hypotonically hypotonicities hypotonicity hypotonus hypotony hypotoxic hypotoxicity hypotrachelia hypotrachelium hypotralia hypotrich hypotrichosis hypotrichous hypotrochanteric hypotrochoid hypotrochoidal hypotrochoids hypotrophic hypotrophies hypotrophy hypotthalli hypotympanic hypotype hypotypic hypotypical hypotyposes hypotyposis hypovalve hypovanadate hypovanadic hypovanadious hypovanadous hypoventilation hypoventilations hypovitaminosis hypovolemia hypovolemic hypoxaemia hypoxaemias hypoxaemic hypoxanthic hypoxanthine hypoxanthines hypoxemia hypoxemias hypoxemic hypoxia hypoxias hypoxic hypoxidaceae hypoxis hypozeugma hypozeuxis hypozoan hypozoic hypped hypping hyppish hyps hypsibrachycephalic hypsibrachycephalism hypsibrachycephaly hypsicephalic hypsicephalous hypsicephaly hypsidolichocephalic hypsidolichocephalism hypsidolichocephaly hypsiglena hypsiliform hypsiloid hypsilophodont hypsilophodontid hypsilophodontoid hypsiprymnodon hypsipyle hypsistarian hypsistenocephalic hypsistenocephalism hypsistenocephaly hypsobathymetric hypsocephalous hypsochrome hypsochromic hypsochromy hypsodont hypsodontism hypsodonty hypsographic hypsographical hypsographies hypsography hypsoisotherm hypsometer hypsometers hypsometric hypsometrical hypsometrically hypsometries hypsometrist hypsometrists hypsometry hypsophobe hypsophobes hypsophobia hypsophobias hypsophoeia hypsophonous hypsophyll hypsophyllar hypsophyllary hypsophyllous hypsophylls hypsophyllum hypsothermometer hypt hypural hyraces hyraceum hyracid hyraciform hyracodont hyracodontid hyracodontoid hyracoid hyracoidea hyracoidean hyracoideas hyracoidian hyracoids hyracothere hyracotherian hyracotherium hyrate hyrax hyraxes hyrse hyrst hyson hysons hyssop hyssops hyssopus hystazarin hysteralgia hysteralgic hysteranthous hysterectomies hysterectomise hysterectomised hysterectomises hysterectomising hysterectomize hysterectomized hysterectomizes hysterectomizing hysterectomy hysterelcosis hystereses hysteresial hysteresis hysteretic hysteretically hysteria hysteriac hysterias hysteric hysterical hysterically hystericky hysterics hystericus hysteriform hysterioid hysteritis hysteritises hysterocatalepsy hysterocele hysterocleisis hysterocrystalline hysterocystic hysterodynia hysterogen hysterogenetic hysterogenic hysterogenies hysterogenous hysterogeny hysteroid hysteroidal hysterolaparotomy hysterolith hysterolithiasis hysterology hysterolysis hysteromania hysteromaniac hysteromaniacal hysteromanias hysterometer hysterometry hysteromorphous hysteromyoma hysteromyomectomy hysteron hysteroneurasthenia hysteropathy hysteropexia hysteropexy hysterophore hysterophytal hysterophyte hysteroproterize hysteroptosia hysteroptosis hysterorrhaphy hysterorrhexis hysteroscope hysterosis hysterotely hysterotome hysterotomies hysterotomy hysterotraumatism hystriciasis hystricid hystricidae hystricine hystricism hystricismus hystricoid hystricomorph hystricomorpha hystricomorphic hystricomorphous hyte hythe hythergraph hythes hyzone hz hälleflinta hérissé i ia iaa iaea iago iamatology iamb iambelegus iambi iambic iambical iambically iambics iambist iambists iambize iambographer iambographers iambs iambus iambuses ianthine ianthinite iao iapetus iare iarovization iarovize iarovized iarovizing iatraliptic iatraliptics iatric iatrical iatrochemic iatrochemical iatrochemically iatrochemist iatrochemistries iatrochemistry iatrochemists iatrogenic iatrogenically iatrogenicities iatrogenicity iatrogenies iatrogeny iatrological iatrology iatromathematical iatromathematician iatromathematics iatromechanical iatromechanist iatrophysical iatrophysicist iatrophysics iatrotechnics ib iba iberia iberian iberians iberis iberises iberite ibex ibexes ibices ibid ibidem ibidine ibis ibisbill ibises ibm ibogaine ibogaines ibolium ibota ibrd ibsen ibsenian ibsenism ibuprofen ibuprofens ic icacinaceous icaco icao icarian icarus icasm icbm ice iceball iceballs iceberg icebergs iceblink iceblinks iceboat iceboater iceboaters iceboating iceboatings iceboats icebone icebound icebox iceboxes icebreaker icebreakers icebreaking icecap icecaps icecraft iced icefall icefalls icefield icefields icefish icefishes icefloe icefloes icehouse icehouses icekhana icekhanas iceland icelander icelanders icelandic iceleaf iceless icelike icemaker icemakers iceman icemen iceni icepack icepacks icepick icepicks icequake icer iceroot icers ices icescape icescapes iceskate iceskated iceskating icespar icestone icestones icetray icewagon icework ich ichabod ichebu iched iches ichibu iching ichneumon ichneumoned ichneumonid ichneumonidae ichneumonidan ichneumoniform ichneumonised ichneumonized ichneumonoid ichneumonology ichneumons ichneumous ichneutic ichnite ichnites ichnographic ichnographical ichnographically ichnographies ichnography ichnolite ichnolites ichnolithology ichnolitic ichnological ichnologies ichnology ichnomancy icho ichoglan ichor ichorous ichorrhaemia ichorrhea ichorrhemia ichorrhoea ichors ichs ichth ichthammol ichthic ichthulin ichthulinic ichthus ichthuses ichthyal ichthyian ichthyic ichthyician ichthyism ichthyisms ichthyismus ichthyization ichthyized ichthyobatrachian ichthyocephalous ichthyocol ichthyocolla ichthyocollas ichthyocoprolite ichthyodian ichthyodont ichthyodorulite ichthyodorulites ichthyodorylite ichthyodorylites ichthyofauna ichthyofaunae ichthyofaunal ichthyofaunas ichthyoform ichthyographer ichthyographia ichthyographic ichthyographies ichthyography ichthyoid ichthyoidal ichthyoids ichthyol ichthyolatries ichthyolatrous ichthyolatry ichthyolite ichthyolites ichthyolitic ichthyologic ichthyological ichthyologically ichthyologies ichthyologist ichthyologists ichthyology ichthyomancy ichthyomania ichthyomantic ichthyomorphic ichthyomorphous ichthyonomy ichthyopaleontology ichthyophagan ichthyophagi ichthyophagian ichthyophagies ichthyophagist ichthyophagists ichthyophagize ichthyophagous ichthyophagy ichthyophile ichthyophobia ichthyophthalmite ichthyophthiriasis ichthyophthirius ichthyopolism ichthyopolist ichthyopsid ichthyopsida ichthyopsidan ichthyopsidans ichthyopsids ichthyopterygian ichthyopterygium ichthyornis ichthyornises ichthyornithic ichthyornithoid ichthyosaur ichthyosauri ichthyosauria ichthyosaurian ichthyosaurians ichthyosaurid ichthyosauridae ichthyosauroid ichthyosaurs ichthyosaurus ichthyosauruses ichthyoses ichthyosiform ichthyosis ichthyosism ichthyotic ichthyotomist ichthyotomous ichthyotomy ichthyotoxin ichthyotoxism ichthys ichthyses ichthytaxidermy ichu ichulle ichyostega icica icicle icicled icicles icier iciest icily iciness icinesses icing icings ick icker ickers ickier ickiest ickily ickiness ickinesses ickle icky icod icon icones iconic iconical iconically iconicities iconicity iconified iconifies iconify iconifying iconise iconised iconises iconising iconism iconize iconized iconizes iconizing iconoclasm iconoclasms iconoclast iconoclastic iconoclastically iconoclasticism iconoclasts iconodule iconodulic iconodulist iconoduly iconograph iconographer iconographers iconographic iconographical iconographically iconographies iconographist iconography iconolagny iconolater iconolaters iconolatries iconolatrous iconolatry iconological iconologies iconologist iconologists iconology iconomachal iconomachies iconomachist iconomachists iconomachy iconomania iconomatic iconomatically iconomaticism iconomaticisms iconomatography iconometer iconometers iconometric iconometrical iconometrically iconometries iconometry iconophile iconophilism iconophilisms iconophilist iconophilists iconophily iconoplast iconoscope iconoscopes iconostas iconostases iconostasion iconostasis iconotype icons iconv iconvert icosaheddra icosahedra icosahedral icosahedron icosahedrons icosandria icosandrian icosandrous icosasemic icosian icositedra icositetrahedra icositetrahedron icositetrahedrons icosteid icosteine icotype ictal ictalurus icteria icteric icterical ictericals icterics icterid icteridae icterids icterine icteritious icteritous icterode icterogenetic icterogenic icterogenous icterohematuria icteroid icterous icterus icteruses ictic ictiobus ictodosaur ictodosauria ictonyx ictuate ictus ictuses icy id ida idaein idaho idahoan idahoans idalia idant idants idcue iddat iddhi ide idea ideaed ideaful ideagenous ideaistic ideal idealess idealisation idealisations idealise idealised idealiser idealisers idealises idealising idealism idealisms idealist idealistic idealistical idealistically idealists idealities ideality idealization idealizations idealize idealized idealizer idealizers idealizes idealizing idealless ideally idealness idealogical idealogies idealogue idealogues idealogy ideals idealy ideamonger ideas ideata ideate ideated ideates ideating ideation ideational ideationally ideations ideative ideatum idee ideefixe ideist idem idemfactor idempotencies idempotency idempotent idempotents idems idence idenitifiers ident identic identical identicalism identically identicalness identicalnesses identies identifer identifers identifiability identifiable identifiableness identifiably identific identification identificational identifications identified identifier identifiers identifies identify identifying identikit identikits identism identities identity ideo ideogenetic ideogenical ideogenous ideogeny ideoglyph ideogram ideogramic ideogrammatic ideogrammatically ideogrammic ideograms ideograph ideographic ideographical ideographically ideographies ideographs ideography ideokinetic ideolatry ideolect ideologic ideological ideologically ideologics ideologies ideologise ideologised ideologising ideologist ideologists ideologize ideologized ideologizes ideologizing ideologue ideologues ideology ideomania ideomotion ideomotor ideoogist ideophobia ideophone ideophones ideophonetics ideophonous ideoplastia ideoplastic ideoplastics ideoplasty ideopraxist ideopraxists ideotype ides idesia idest ideta idgah idiasm idic idigbo idiobiology idioblast idioblastic idioblasts idiochromatic idiochromatin idiochromosome idiocies idiocrasies idiocrasis idiocrasy idiocratic idiocratical idiocratically idiocy idiocyclophanous idiodynamic idiodynamics idioelectric idioelectrical idiogenesis idiogenetic idiogenous idioglossia idioglossias idioglottic idiogram idiograms idiograph idiographic idiographical idiographs idiohypnotism idiolalia idiolatry idiolect idiolectal idiolectic idiolects idiologism idiolysin idiom idiomatic idiomatical idiomatically idiomaticalness idiomaticity idiomaticness idiomaticnesses idiomelon idiometer idiomography idiomology idiomorphic idiomorphically idiomorphism idiomorphisms idiomorphous idioms idiomuscular idion idiopathetic idiopathic idiopathical idiopathically idiopathies idiopathy idiophanism idiophanous idiophone idiophones idiophonic idioplasm idioplasmatic idioplasmic idioplasms idiopsychological idiopsychology idioreflex idiorepulsive idioretinal idiorhythmic idiorrhythmic idiorrhythmism idiorrhythmy idiosome idiospasm idiospastic idiostatic idiosyncracies idiosyncracy idiosyncrasies idiosyncrasy idiosyncratic idiosyncratical idiosyncratically idiot idiotcies idiotcy idiothalamous idiothermic idiothermous idiothermy idiotic idiotical idiotically idioticalness idioticon idioticons idiotise idiotised idiotish idiotising idiotism idiotisms idiotize idiotized idiotizing idiotropian idiotropic idiotry idiots idiotype idiotypes idiotypic idiotypies idiotypy idiozome idite iditol idle idleby idled idleful idleheaded idlehood idlehoods idleman idlemen idlement idleness idlenesses idler idlers idles idleset idleship idlesse idlesses idlest idlety idling idlish idly ido idocrase idocrases idol idola idolaster idolastre idolater idolaters idolator idolators idolatress idolatresses idolatric idolatrical idolatries idolatrise idolatrised idolatriser idolatrises idolatrising idolatrize idolatrized idolatrizer idolatrizes idolatrizing idolatrous idolatrously idolatrousness idolatrousnesses idolatry idolet idolify idolisation idolisations idolise idolised idoliser idolisers idolises idolish idolising idolism idolisms idolist idolistic idolists idolization idolizations idolize idolized idolizer idolizers idolizes idolizing idoloclast idoloclastic idoloclasts idolodulia idolographical idololater idololatrical idololatry idolomancy idolomania idolon idolothyte idolothytic idolous idols idolum idoneal idoneities idoneity idoneous idoneousness idorgan idosaccharic idose idoxuridine idoxuridines idp idrialin idrialine idrialite idrosis idryl ids idun idyl idyler idylian idylism idylist idylists idylize idyll idyller idyllia idyllian idyllic idyllical idyllically idyllicism idyllion idyllist idyllists idyllium idyllize idylls idyls idée idéefixe ie ieee if ifc ife ifecks iff iffier iffiest iffiness iffinesses iffy ifint ifreal ifree ifrit ifs ig igad igads igapo igapos igapó igapós igarape igarapes igarapé igarapés igasuric igdrasil igelstromite igg igged igging iggs ighly igigi igitur iglesia igloo igloos iglu iglus ign igname ignaro ignaroes ignaros ignatia ignatian ignatias ignavia ignaw igneoaqueous igneous ignescence ignescent ignescents ignicolist igniferous igniferousness ignified ignifies ignifluous igniform ignifuge ignify ignifying ignigenous ignimbrite ignimbrites ignipotent ignipuncture ignis ignitabilities ignitability ignitable ignite ignited igniter igniters ignites ignitibilities ignitibility ignitible igniting ignition ignitions ignitive ignitor ignitors ignitron ignitrons ignivomous ignivomousness ignobilities ignobility ignoble ignobleness ignoblenesses ignobler ignoblesse ignoblest ignobly ignomies ignominies ignominious ignominiously ignominiousness ignominiousnesses ignominy ignomious ignomy ignorable ignorami ignoramus ignoramuses ignorance ignorances ignorant ignorantia ignorantine ignorantism ignorantist ignorantly ignorantness ignorantnesses ignorants ignoration ignorations ignore ignored ignorement ignorer ignorers ignores ignoring ignote ignotus igorot igraine iguana iguanas iguania iguanian iguanians iguanid iguanidae iguanids iguaniform iguanodon iguanodons iguanodont iguanodontidae iguanodontoid iguanoid iguassu iguazu ihi ihleite ihp ihram ihrams ihs ii iiasa iii iiwi iiwis ijithad ijma ijmaa ijolite ijtihad ijtihads ijussite ik ikan ikary ikat ikats ike ikebana ikebanas ikey ikeyness ikon ikona ikonic ikonically ikons ikra il ilama ile ilea ileac ileal ileectomy ileitides ileitis ileitises ileocaecal ileocaecum ileocecal ileocolic ileocolitis ileocolostomy ileocolotomy ileon ileosigmoidostomy ileostomies ileostomy ileotomy ilesite ileum ileus ileuses ilex ilexes ilia iliac iliacus iliacuses iliad iliads iliahi ilial iliamna iliau ilicaceous ilices ilicic ilicin ilima iliocaudal iliocaudalis iliococcygeal iliococcygeus iliococcygian iliocostal iliocostales iliocostalis iliodorsal iliofemoral iliohypogastric ilioinguinal ilioischiac ilioischiatic iliolumbar ilion iliopectineal iliopelvic ilioperoneal iliopsoas iliopsoatic iliopubic iliosacral iliosciatic ilioscrotal iliospinal iliotibial iliotrochanteric ilium ilixanthin ilk ilka ilkaday ilkadays ilkane ilks ill illabile illaborate illachrymable illachrymableness illamon illampu illapsable illapse illapsed illapses illapsing illapsive illaqueable illaqueate illaqueated illaqueates illaqueating illaqueation illaqueations illation illations illative illatively illatives illaudable illaudably illaudation illaudatory illbred illdisposedness illecebration illecebrous illecebrum illeck illect illegal illegalisation illegalisations illegalise illegalised illegalises illegalising illegalities illegality illegalization illegalizations illegalize illegalized illegalizes illegalizing illegally illegalness illegals illegibilities illegibility illegible illegibleness illegiblenesses illegibly illegitimacies illegitimacy illegitimate illegitimated illegitimately illegitimateness illegitimatenesses illegitimates illegitimating illegitimation illegitimations illegitimatise illegitimatised illegitimatising illegitimatize illegitimatized illegitimatizing illeism illeist iller illess illest illeviable illfare illguide illguided illguiding illhumor illhumored illiad illiads illiberal illiberalise illiberalised illiberalises illiberalising illiberalism illiberalisms illiberalities illiberality illiberalize illiberalized illiberalizes illiberalizing illiberally illiberalness illiberalnesses illicit illicitly illicitness illicitnesses illicium illigation illighten illimani illimitabilities illimitability illimitable illimitableness illimitablenesses illimitably illimitate illimitation illimitations illimited illimitedly illimitedness illing illinition illinium illiniums illinois illinoisan illipe illipene illipes illiquation illiquations illiquid illiquidities illiquidity illiquidly illish illision illisions illite illiteracies illiteracy illiteral illiterate illiterately illiterateness illiteratenesses illiterates illiterati illiterature illites illitic illium illmanneredness illnature illnaturedly illness illnesses illocal illocality illocally illocution illocutionary illocutions illogic illogical illogicalities illogicality illogically illogicalness illogicalnesses illogician illogicity illogics illoricate illoricated illoyal illoyalty ills illtempered illth illths illtreatment illucidate illucidation illucidative illude illuded illudedly illuder illudes illuding illume illumed illumer illumes illuminability illuminable illuminance illuminances illuminant illuminants illuminate illuminated illuminates illuminati illuminating illuminatingly illumination illuminational illuminations illuminatism illuminatist illuminative illuminato illuminator illuminators illuminatory illuminatus illumine illumined illuminee illuminer illuminers illumines illuming illumining illuminism illuminisms illuminist illuminists illuminize illuminometer illuminous illumonate illupi illupis illure illurement illus illusible illusion illusionable illusional illusionary illusioned illusionism illusionisms illusionist illusionistic illusionistically illusionists illusions illusive illusively illusiveness illusivenesses illusor illusorily illusoriness illusorinesses illusory illust illustrable illustratable illustrate illustrated illustrateds illustrates illustrating illustration illustrational illustrations illustrative illustratively illustrator illustrators illustratory illustratress illustre illustricity illustrious illustriously illustriousness illustriousnesses illustrissimo illustrous illutate illutation illuvia illuvial illuviate illuviated illuviates illuviating illuviation illuviations illuvium illuviums illuvivia illy illyria illyrian illywhacker illywhackers ilmenite ilmenites ilmenitite ilmenorutile ilo ilocano ilot ilth ilvaite ilysioid im image imageable imaged imageless imagen imager imagerial imagerially imageries imagers imagery images imagesetter imagesetters imagilet imaginabilities imaginability imaginable imaginableness imaginablenesses imaginably imaginal imaginant imaginaries imaginarily imaginariness imaginarinesses imaginary imaginate imaginated imaginating imagination imaginational imaginationalism imaginations imaginative imaginatively imaginativeness imaginativenesses imaginator imagine imagined imaginer imaginers imagines imaging imagings imagining imaginings imaginist imaginists imaginous imagism imagisms imagist imagistic imagistically imagists imagnableness imago imagoes imagos imam imamah imamate imamates imambara imambarah imambarra imamic imams imamship iman imanlaut imaret imarets imari imaris imaum imaumbarah imaums imavate imbalance imbalanced imbalances imbalm imbalmed imbalmer imbalmers imbalming imbalmment imbalms imban imband imbannered imbar imbarge imbark imbarkation imbarked imbarking imbarkment imbarks imbarn imbarred imbarring imbars imbase imbased imbases imbasing imbastardize imbat imbathe imbathed imbathes imbathing imbauba imbe imbecile imbecilely imbeciles imbecilic imbecilitate imbecilitated imbecilities imbecility imbed imbedded imbedding imbedment imbedments imbeds imbellic imbellious imber imberbe imbesel imbibe imbibed imbiber imbibers imbibes imbibing imbibition imbibitional imbibitions imbibitory imbirussu imbitter imbittered imbitterer imbittering imbitterment imbitters imblaze imblazed imblazes imblazing imbodied imbodies imbodiment imbody imbodying imbolden imboldened imboldening imboldens imbolish imbondo imbonity imborder imbordered imbordering imborders imbordure imborsation imboscata imbosk imbosked imbosking imbosks imbosom imbosomed imbosoming imbosoms imboss imbossed imbosses imbossing imbower imbowered imbowering imbowers imbraceries imbracery imbranch imbrangle imbrangled imbrangles imbrangling imbrast imbreathe imbred imbreviate imbreviated imbreviating imbrex imbricate imbricated imbricately imbricates imbricating imbrication imbrications imbricative imbrices imbrier imbrium imbrocado imbroccata imbroccatas imbroglio imbroglios imbroin imbrown imbrowned imbrowning imbrowns imbrue imbrued imbruement imbruements imbrues imbruing imbrute imbruted imbrutement imbrutes imbruting imbu imbue imbued imbuement imbues imbuia imbuing imburse imbursed imbursement imburses imbursing imbute imcnt imdtly imelle imf imi imid imidazol imidazole imidazoles imidazolyl imide imides imidic imido imidogen imids iminazole imine imines imino iminohydrin iminourea imipramine imipramines imit imitabilities imitability imitable imitableness imitablenesses imitancies imitancy imitant imitants imitate imitated imitatee imitates imitating imitation imitational imitationist imitations imitative imitatively imitativeness imitativenesses imitator imitators imitatorship imitatress imitatrix immaculacies immaculacy immaculance immaculate immaculately immaculateness immaculatenesses immailed immalleable immanacle immanacled immanacles immanacling immanation immanations immane immanely immanence immanences immanencies immanency immaneness immanent immanental immanentism immanentisms immanentist immanentistic immanentists immanently immanifest immanifestness immanities immanity immantle immantled immantles immantling immarble immarcescible immarcescibly immarcibleness immarginate immartial immask immasked immasking immasks immatchable immatchless immatereality immaterial immaterialisation immaterialise immaterialised immaterialises immaterialising immaterialism immaterialisms immaterialist immaterialistic immaterialists immaterialities immateriality immaterialization immaterialize immaterialized immaterializes immaterializing immaterially immaterialness immaterialnesses immaterials immateriate immatriculate immatriculation immature immatured immaturely immatureness immaturenesses immatures immaturities immaturity immeability immeasurabilities immeasurability immeasurable immeasurableness immeasurablenesses immeasurably immeasured immechanical immechanically immediacies immediacy immedial immediate immediately immediateness immediatenesses immediatism immediatisms immediatist immediatly immedicable immedicableness immedicably immelmann immelodious immember immemorable immemorial immemorially immense immensely immenseness immensenesses immenser immensest immensible immensities immensittye immensity immensive immensurabilities immensurability immensurable immensurableness immensurate immerd immerge immerged immergence immergences immergent immerges immerging immerit immerited immeritorious immeritoriously immeritous immerse immersed immersement immerses immersible immersing immersion immersionism immersionisms immersionist immersionists immersions immersive immesh immeshed immeshes immeshing immethodic immethodical immethodically immethodicalness immethodize immetrical immetrically immetricalness immeubles immew immewed immewing immews immi immies immigrant immigrants immigrate immigrated immigrates immigrating immigration immigrational immigrations immigrator immigrators immigratory immind imminence imminences imminencies imminency imminent imminently imminentness imminentnesses immingle immingled immingles immingling imminute imminution imminutions immis immiscibilities immiscibility immiscible immiscibly immiserate immiserated immiserates immiserating immiseration immiserations immiserisation immiserisations immiserise immiserised immiserises immiserising immiserization immiserizations immiserize immiserized immiserizes immiserizing immiss immission immissions immit immitigabilities immitigability immitigable immitigableness immitigablenesses immitigably immits immittance immittances immitted immitting immix immixable immixed immixes immixing immixt immixting immixture immixtures immobile immobiles immobilia immobilisation immobilisations immobilise immobilised immobiliser immobilisers immobilises immobilising immobilism immobilisms immobilities immobility immobilization immobilizations immobilize immobilized immobilizer immobilizers immobilizes immobilizing immoderacies immoderacy immoderate immoderately immoderateness immoderatenesses immoderation immoderations immodest immodesties immodestly immodesty immodish immodulated immolate immolated immolates immolating immolation immolations immolator immolators immoment immomentous immonastered immoral immoralise immoralised immoralising immoralism immoralisms immoralist immoralists immoralities immorality immoralize immoralized immoralizing immorally immorigerous immorigerousness immortability immortable immortal immortalisable immortalisation immortalisations immortalise immortalised immortaliser immortalisers immortalises immortalising immortalism immortalist immortalities immortality immortalizable immortalization immortalizations immortalize immortalized immortalizer immortalizers immortalizes immortalizing immortally immortalness immortals immortalship immortelle immortelles immortification immortified immote immotile immotilities immotility immotioned immotive immound immov immovabilities immovability immovable immovableness immovablenesses immovables immovably immoveability immoveable immoveableness immoveables immoveably immoved immun immund immundicity immundity immune immunes immunifacient immunisation immunisations immunise immunised immuniser immunises immunising immunist immunities immunity immunization immunizations immunize immunized immunizer immunizers immunizes immunizing immunoassay immunoassayable immunoassays immunoblot immunoblots immunoblotting immunoblottings immunochemical immunochemically immunochemist immunochemistries immunochemistry immunochemists immunocompetence immunocompetences immunocompetent immunocompromised immunocytochemical immunocytochemically immunocytochemistries immunocytochemistry immunodeficiencies immunodeficiency immunodeficient immunodepression immunodepressions immunodiagnoses immunodiagnosis immunodiagnostic immunodiagnostics immunodiffusion immunodiffusions immunoelectrophoreses immunoelectrophoresis immunoelectrophoretic immunoelectrophoretically immunofluorescence immunofluorescences immunofluorescent immunogen immunogeneses immunogenesis immunogenetic immunogenetical immunogenetically immunogeneticist immunogeneticists immunogenetics immunogenic immunogenically immunogenicities immunogenicity immunogens immunoglobulin immunoglobulins immunohematologic immunohematological immunohematologies immunohematologist immunohematologists immunohematology immunohistochemical immunohistochemistries immunohistochemistry immunol immunologic immunological immunologically immunologies immunologist immunologists immunology immunomodulator immunomodulators immunomodulatory immunopathologic immunopathological immunopathologically immunopathologies immunopathologist immunopathologists immunopathology immunophoreses immunophoresis immunoprecipitate immunoprecipitated immunoprecipitates immunoprecipitating immunoprecipitation immunoprecipitations immunoreaction immunoreactions immunoreactive immunoreactivities immunoreactivity immunoregulation immunoregulations immunoregulatory immunosorbent immunosorbents immunosuppress immunosuppressant immunosuppressants immunosuppressed immunosuppresses immunosuppressing immunosuppression immunosuppressions immunosuppressive immunotherapeutic immunotherapies immunotherapy immunotoxic immunotoxin immunotoxins immunotransfusion immunotransfusions immuration immure immured immurement immurements immures immuring immusical immusically immutabilities immutability immutable immutableness immutablenesses immutably immutate immutation immute immutilate immutual immy imo imonium imp impacability impacable impack impackment impact impacted impacter impacters impactful impacting impaction impactionise impactionize impactions impactite impactites impactive impactment impactor impactors impacts impactual impages impaint impainted impainting impaints impair impairable impaired impairer impairers impairing impairings impairment impairments impairs impala impalace impalas impalatable impale impaled impalement impalements impaler impalers impales impaling impall impallid impalm impalmed impalpabilities impalpability impalpable impalpably impalsy impaludism impaludisms impanate impanated impanation impanations impanator impane impanel impaneled impaneling impanelled impanelling impanelment impanelments impanels impannel impannelled impannelling impannels impapase impapyrate impapyrated impar imparadise imparadised imparadises imparadising imparalleled imparasitic impardonable impardonably imparidigitate imparipinnate imparisyllabic imparities imparity impark imparkation imparkations imparked imparking imparks imparl imparlance imparlances imparled imparling imparls imparsonee impart impartability impartable impartance impartation impartations imparted imparter imparters impartial impartialism impartialist impartialities impartiality impartially impartialness impartialnesses impartibilibly impartibilities impartibility impartible impartibly imparticipable imparting impartite impartive impartivity impartment impartments imparts impassabilities impassability impassable impassableness impassablenesses impassably impasse impasses impassibilibly impassibilities impassibility impassible impassibleness impassiblenesses impassibly impassion impassionable impassionate impassionately impassioned impassionedly impassionedness impassionednesses impassioning impassionment impassions impassive impassively impassiveness impassivenesses impassivities impassivity impastation impastations impaste impasted impastes impasting impasto impastoed impastos impasture impaternate impatible impatience impatiences impatiency impatiens impatienses impatient impatientaceous impatiently impatientness impatronize impave impaved impaves impavid impavidity impavidly impaving impawn impawned impawning impawns impayable impeach impeachabilities impeachability impeachable impeachableness impeached impeacher impeachers impeaches impeaching impeachment impeachments impearl impearled impearling impearls impeccabilities impeccability impeccable impeccableness impeccables impeccably impeccance impeccancies impeccancy impeccant impeccunious impectinate impecuniary impecuniosities impecuniosity impecunious impecuniously impecuniousness impecuniousnesses imped impedance impedances impede impeded impeder impeders impedes impedibility impedible impedient impediment impedimenta impedimental impedimentary impediments impeding impedingly impedit impedite impedition impeditive impedometer impedor impeevish impel impelled impellent impellents impeller impellers impelling impellor impellors impels impen impend impended impendence impendences impendencies impendency impendent impending impendingly impends impenetrabilities impenetrability impenetrable impenetrableness impenetrablenesses impenetrably impenetrate impenetrated impenetrates impenetrating impenetration impenetrations impenetrative impenitence impenitences impenitencies impenitency impenitent impenitently impenitentness impenitents impenitible impenitibleness impennate impennous impent impeople imper imperance imperant imperate imperation imperatival imperativally imperative imperatively imperativeness imperativenesses imperatives imperator imperatorial imperatorially imperatorian imperatorin imperatorious imperators imperatorship imperatory imperatrice imperatrix imperceable imperceivable imperceivableness imperceivably imperceived imperceiverant imperceptibilities imperceptibility imperceptible imperceptibleness imperceptiblenesses imperceptibly imperception imperceptive imperceptively imperceptiveness imperceptivenesses imperceptivities imperceptivity impercipience impercipiences impercipient imperdible imperence imperent imperf imperfect imperfectability imperfected imperfectibilities imperfectibility imperfectible imperfection imperfections imperfectious imperfective imperfectively imperfectives imperfectly imperfectness imperfectnesses imperfects imperforable imperforate imperforated imperforates imperforation imperforations imperformable imperia imperial imperialin imperialine imperialisation imperialise imperialised imperialises imperialising imperialism imperialisms imperialist imperialistic imperialistically imperialists imperialities imperiality imperialization imperialize imperialized imperializes imperializing imperially imperialness imperials imperialty imperii imperil imperiled imperiling imperilled imperilling imperilment imperilments imperils imperious imperiously imperiousness imperiousnesses imperish imperishabilities imperishability imperishable imperishableness imperishablenesses imperishables imperishably imperishingness imperite imperium imperiums impermanence impermanences impermanencies impermanency impermanent impermanently impermeabilities impermeability impermeabilization impermeabilize impermeable impermeableness impermeablenesses impermeably impermeated impermeator impermissibilities impermissibility impermissible impermissibly impermixt impermutable imperperia impers imperscriptible imperscrutable imperseverant impersistent impersonable impersonal impersonalisation impersonalisations impersonalise impersonalised impersonalises impersonalising impersonalism impersonalities impersonality impersonalization impersonalizations impersonalize impersonalized impersonalizes impersonalizing impersonally impersonate impersonated impersonates impersonating impersonation impersonations impersonative impersonator impersonators impersonatress impersonatrix impersonification impersonify impersonization impersonize imperspicable imperspicuity imperspicuous imperspirability imperspirable impersuadability impersuadable impersuadableness impersuasibility impersuasible impersuasibleness impersuasibly impertinacy impertinence impertinences impertinencies impertinency impertinent impertinently impertinentness impertinents impertransible imperturbabilities imperturbability imperturbable imperturbableness imperturbablenesses imperturbably imperturbation imperturbations imperturbed imperverse impervertible impervestigable imperviabilities imperviability imperviable imperviableness imperviablenesses impervial impervious imperviously imperviousness imperviousnesses impery impest impestation impester impeticos impeticossed impeticosses impeticossing impetigines impetiginous impetigo impetigos impetition impetrable impetrate impetrated impetrates impetrating impetration impetrations impetrative impetrator impetrators impetratory impetre impetulant impetulantly impetuosities impetuosity impetuoso impetuous impetuousities impetuousity impetuously impetuousness impetuousnesses impeturbability impetus impetuses impeyan impf imphee imphees impi impicture impictured impierce impierceable impies impieties impiety impignorate impignorated impignorates impignorating impignoration impignorations imping impinge impinged impingement impingements impingence impingent impinger impingers impinges impinging impings impinguate impious impiously impiousness impiousnesses impis impish impishly impishness impishnesses impiteous impitiably implacabilities implacability implacable implacableness implacablenesses implacably implacement implacental implacentalia implacentate implant implantable implantation implantations implanted implanter implanters implanting implants implastic implasticity implate implated implates implating implausibilities implausibility implausible implausibleness implausiblenesses implausibly impleach impleached impleaches impleaching implead impleadable impleaded impleader impleaders impleading impleads impleasing impled impledge impledged impledges impledging implement implementable implemental implementation implementational implementations implemented implementer implementers implementiferous implementing implementor implementors implements implete impleted impletes impleting impletion impletions impletive implex implexes implexion implexions implexuous impliability impliable impliably implial implicant implicants implicate implicated implicately implicateness implicates implicating implication implicational implications implicative implicatively implicativeness implicativenesses implicatory implicit implicitly implicitness implicitnesses implicity implied impliedly impliedness implies implike impling implode imploded implodent implodents implodes imploding implorable imploration implorations implorator implorators imploratory implore implored implorer implorers implores imploring imploringly imploringness implosion implosions implosive implosively implosives implume implumed implunge implunged implunges implunging impluvia impluvium imply implying impocket impocketed impocketing impockets impofo impoison impoisoner impolarily impolarizable impolder impoldered impoldering impolders impolicies impolicy impolished impolite impolitely impoliteness impolitenesses impoliter impolitest impolitic impolitical impolitically impoliticalness impoliticly impoliticness impoliticnesses impollute imponderabilia imponderabilities imponderability imponderable imponderableness imponderablenesses imponderables imponderably imponderous impone imponed imponent imponents impones imponing impoor impopular impopularly imporosity imporous import importabilities importability importable importableness importably importance importances importancies importancy important importantly importation importations imported importee importer importers importing importless importment importraiture importray imports importunable importunacies importunacy importunance importunate importunated importunately importunateness importunatenesses importunates importunating importunator importune importuned importunely importunement importuner importuners importunes importuning importunings importunite importunities importunity imposable imposableness imposal impose imposed imposement imposer imposers imposes imposing imposingly imposingness imposingnesses imposition impositional impositions impositive impossibilia impossibilification impossibilism impossibilisms impossibilist impossibilists impossibilitate impossibilities impossibility impossible impossibleness impossiblenesses impossibles impossibly impost imposted imposter imposterous imposters imposthumate imposthumated imposthumates imposthumating imposthumation imposthumations imposthume imposthumed imposthumes imposting impostor impostorism impostors impostorship impostress impostrix impostrous imposts impostumate impostumated impostumates impostumating impostumation impostumations impostume impostumed impostumes imposture impostures imposturism imposturous impostury imposure impot impotable impotence impotences impotencies impotency impotent impotently impotentness impotents impotionate impots impound impoundable impoundage impoundages impounded impounder impounders impounding impoundment impoundments impounds impoverish impoverished impoverisher impoverishers impoverishes impoverishing impoverishment impoverishments impower impowered impowering impowers impracticabilities impracticability impracticable impracticableness impracticablenesses impracticably impractical impracticalities impracticality impractically impracticalness impracticalnesses imprasa imprecant imprecate imprecated imprecates imprecating imprecation imprecations imprecator imprecatorily imprecators imprecatory imprecise imprecisely impreciseness imprecisenesses imprecision imprecisions impredicability impredicable impreg impregabilities impregability impregable impregn impregnabilities impregnability impregnable impregnableness impregnablenesses impregnably impregnant impregnants impregnate impregnated impregnates impregnating impregnation impregnations impregnative impregnator impregnators impregnatory impregned impregning impregns imprejudicate imprejudice impremeditate imprenable impreparation impresa impresari impresario impresarios impresas imprescience imprescribable imprescriptibilities imprescriptibility imprescriptible imprescriptibly imprese impreses impress impressa impressable impressari impressario impresse impressed impressedly impresser impressers impresses impressibilities impressibility impressible impressibleness impressibly impressing impression impressionabilities impressionability impressionable impressionableness impressionablenesses impressionably impressional impressionalist impressionality impressionally impressionary impressionis impressionism impressionisms impressionist impressionistic impressionistically impressionists impressionless impressions impressive impressively impressiveness impressivenesses impressment impressments impressor impressure impressures imprest imprestable imprested impresting imprests imprevalency impreventability impreventable imprevisibility imprevisible imprevision imprevu imprimatur imprimatura imprimaturs imprime impriment imprimery imprimis imprimitive imprimitivity imprint imprinted imprinter imprinters imprinting imprintings imprints imprison imprisonable imprisoned imprisoner imprisoners imprisoning imprisonment imprisonments imprisons improbabilities improbability improbabilize improbable improbableness improbablenesses improbably improbate improbation improbations improbative improbatory improbities improbity improcreant improcurability improcurable improducible improduction improficience improficiency improfitable improgressive improgressively improgressiveness improlific improlificate improlificical imprompt impromptitude impromptu impromptuary impromptuist impromptus improof improper improperation improperly improperness impropernesses impropitious improportion impropriate impropriated impropriates impropriating impropriation impropriations impropriator impropriators impropriatrice impropriatrix improprieties impropriety improprium impropry improsperity improsperous improv improvabilities improvability improvable improvableness improvablenesses improvably improve improved improvement improvements improver improvers improvership improves improvided improvidence improvidences improvident improvidentially improvidently improving improvingly improvisate improvisated improvisates improvisating improvisation improvisational improvisationally improvisations improvisatize improvisator improvisatore improvisatores improvisatori improvisatorial improvisatorially improvisatorise improvisatorize improvisators improvisatory improvisatrice improvisatrix improvisatrixes improvise improvised improvisedly improviser improvisers improvises improvising improvision improviso improvisor improvisors improvizatorize improvs improvvisatore improvvisatori improvvisatrice imprudence imprudences imprudency imprudent imprudential imprudently imprudentness imps impship impsonite impsonites impuberal impuberate impuberty impubic impudence impudences impudencies impudency impudent impudently impudentness impudicities impudicity impugn impugnability impugnable impugnation impugnations impugned impugner impugners impugning impugnment impugnments impugns impuissance impuissances impuissant impulse impulsed impulses impulsing impulsion impulsions impulsive impulsively impulsiveness impulsivenesses impulsivities impulsivity impulsor impulsory impunctate impunctual impunctuality impundulu impundulus impune impunely impunible impunibly impunities impunitive impunity impuration impure impurely impureness impurenesses impurer impurest impurify impuritan impuritanism impurities impurity impurple impurpled impurples impurpling imput imputabilities imputability imputable imputableness imputablenesses imputably imputation imputations imputative imputatively imputativeness impute imputed imputedly imputer imputers imputes imputing imputrescence imputrescibility imputrescible imputrid imputting impv impy imshi imshies imshis imshy imsonic imu imuran imvia in inabilities inability inable inabordable inabstinence inabstinences inabstracted inabusively inaccentuated inaccentuation inacceptable inaccessibilities inaccessibility inaccessible inaccessibleness inaccessiblenesses inaccessibly inaccordance inaccordancy inaccordant inaccordantly inaccuracies inaccuracy inaccurate inaccurately inaccurateness inaccuratenesses inachid inachis inachoid inacquaintance inacquiescent inact inactinic inaction inactionist inactions inactivate inactivated inactivates inactivating inactivation inactivations inactive inactively inactiveness inactivenesses inactivities inactivity inactuate inactuation inadaptability inadaptable inadaptation inadaptations inadaptive inadept inadeptly inadeptness inadequacies inadequacy inadequate inadequately inadequateness inadequatenesses inadequates inadequation inadequative inadequatively inadherent inadhesion inadhesive inadjustability inadjustable inadmissability inadmissable inadmissibilities inadmissibility inadmissible inadmissibly inadulterate inadventurous inadvertant inadvertantly inadvertence inadvertences inadvertencies inadvertency inadvertent inadvertently inadvertisement inadvisabilities inadvisability inadvisable inadvisableness inadvisablenesses inadvisably inadvisedly inaesthetic inaffability inaffable inaffably inaffectation inaffected inagglutinability inagglutinable inaggressive inagile inaidable inaidible inaja inalacrity inalienabilities inalienability inalienable inalienableness inalienably inalimental inalterabilities inalterability inalterable inalterableness inalterablenesses inalterably inamia inamissibility inamissible inamissibleness inamorata inamoratas inamorate inamoration inamorato inamoratos inamour inamovability inamovable inane inanely inaneness inanenesses inaner inaners inanes inanest inanga inangular inangulate inanimadvertence inanimate inanimated inanimately inanimateness inanimatenesses inanimation inanimations inanities inanition inanitions inanity inanna inantherate inapathy inapostate inapparent inapparently inappealable inappeasable inappellability inappellable inappendiculate inapperceptible inappertinent inappetence inappetences inappetencies inappetency inappetent inappetible inapplicabilities inapplicability inapplicable inapplicableness inapplicablenesses inapplicably inapplication inapposite inappositely inappositeness inappositenesses inappreciability inappreciable inappreciably inappreciation inappreciations inappreciative inappreciatively inappreciativeness inappreciativenesses inapprehensibility inapprehensible inapprehensibly inapprehension inapprehensions inapprehensive inapprehensively inapprehensiveness inapprehensivenesses inapproachabilities inapproachability inapproachable inapproachably inappropriable inappropriableness inappropriate inappropriately inappropriateness inappropriatenesses inapropos inapt inaptitude inaptitudes inaptly inaptness inaptnesses inaquate inaqueous inarable inarch inarched inarches inarching inarculum inarguable inarguably inark inarm inarmed inarming inarms inarticulacies inarticulacy inarticulate inarticulated inarticulately inarticulateness inarticulatenesses inarticulates inarticulation inarticulations inartificial inartificiality inartificially inartificialness inartistic inartistical inartisticality inartistically inasmuch inassimilable inassimilation inassuageable inattackable inattention inattentions inattentive inattentively inattentiveness inattentivenesses inaudibilities inaudibility inaudible inaudibleness inaudiblenesses inaudibly inaugur inaugural inaugurally inaugurals inaugurate inaugurated inaugurates inaugurating inauguration inaugurations inaugurative inaugurator inaugurators inauguratory inaugurer inaunter inaurate inauration inauspicate inauspicious inauspiciously inauspiciousness inauspiciousnesses inauthentic inauthenticities inauthenticity inauthoritative inauthoritativeness inaxon inbardge inbassat inbbred inbd inbe inbeaming inbearing inbeing inbeings inbending inbent inbetweener inbirth inbits inblow inblowing inblown inboard inboards inbody inbond inborn inbound inbounded inbounding inbounds inbow inbowed inbread inbreak inbreaking inbreaks inbreath inbreathe inbreathed inbreather inbreathes inbreathing inbred inbreds inbreed inbreeder inbreeders inbreeding inbreedings inbreeds inbring inbringer inbringing inbringings inbrings inbrought inbuilt inburning inburnt inburst inbursts inbush inby inbye inc inca incage incaged incages incaging incalculabilities incalculability incalculable incalculableness incalculablenesses incalculably incalendared incalescence incalescences incalescency incalescent incaliculate incalver incalving incameration incamp incan incandent incandesce incandesced incandescence incandescences incandescency incandescent incandescently incandescents incandesces incandescing incanescent incanous incant incantation incantational incantations incantator incantators incantatory incanted incanting incanton incants incapabilities incapability incapable incapableness incapablenesses incapables incapably incapacious incapaciousness incapaciousnesses incapacitant incapacitants incapacitate incapacitated incapacitates incapacitating incapacitation incapacitations incapacitator incapacities incapacity incapsulate incapsulated incapsulates incapsulating incapsulation incaptivate incarcerate incarcerated incarcerates incarcerating incarceration incarcerations incarcerative incarcerator incarcerators incardinate incardinated incardinates incardinating incardination incardinations incarmined incarn incarnadine incarnadined incarnadines incarnadining incarnalise incarnalised incarnalising incarnalize incarnalized incarnalizing incarnant incarnate incarnated incarnates incarnating incarnation incarnational incarnationist incarnations incarnative incarve incarvillea incarvilleas incas incase incased incasement incasements incases incasing incask incast incastellate incastellated incatenate incatenation incatenations incautelous incaution incautions incautious incautiously incautiousness incautiousnesses incavate incavated incavation incave incaved incavern incaves incavi incaving incavo inced incede inceded incedes inceding incedingly incelebrity incend incendiaries incendiarism incendiarisms incendiarist incendiarize incendiarized incendiary incendious incendium incendivities incendivity incensation incensations incense incensed incenseless incensement incensements incenser incensers incenses incensing incension incensive incensor incensories incensors incensory incensurable incensurably incent incented incenter incenters incenting incentive incentively incentives incentivisation incentivisations incentivise incentivised incentivises incentivising incentivization incentivizations incentivize incentivized incentivizes incentivizing incentor incentre incentres incents incept incepted incepting inception inceptions inceptive inceptively inceptives inceptor inceptors incepts incerate inceration incertain incertainties incertainty incertitude incertitudes incessable incessably incessance incessancies incessancy incessant incessantly incessantness incessantnesses incession incest incests incestuous incestuously incestuousness incestuousnesses incgrporate inch inchain inchamber inchangeable inchant incharitable incharity inchase inchased inchases inchasing inchastity inched incher inchers inches inchest inching inchling inchmeal inchoacy inchoant inchoate inchoated inchoately inchoateness inchoatenesses inchoates inchoating inchoation inchoations inchoative inchoatively inchoatives inchon inchpin inchpins inchurch inchworm inchworms incicurable incide incidence incidences incidency incident incidental incidentalist incidentally incidentalness incidentalnesses incidentals incidentless incidently incidents incienso incinerable incinerate incinerated incinerates incinerating incineration incinerations incinerator incinerators incing incipience incipiences incipiencies incipiency incipient incipiently incipit incipits incipitur incircle incirclet incircumscriptible incircumscription incircumspect incircumspection incircumspectly incircumspectness incisal incise incised incisely incises incisiform incising incision incisions incisive incisively incisiveness incisivenesses incisor incisorial incisors incisory incisura incisural incisure incisures incitability incitable incitamentum incitant incitants incitate incitation incitations incitative incitatives incite incited incitement incitements inciter inciters incites inciting incitingly incitive incitory incitress incivic incivil incivilities incivility incivilization incivilly incivism incivisms incl inclamation inclasp inclasped inclasping inclasps inclaudent inclavate inclave incle inclemencies inclemency inclement inclemently inclementness incles inclinable inclinableness inclinablenesses inclination inclinational inclinations inclinator inclinatorily inclinatorium inclinatoriums inclinatory incline inclined incliner incliners inclines inclining inclinings inclinograph inclinometer inclinometers inclip inclipped inclipping inclips incloister inclose inclosed incloser inclosers incloses inclosing inclosure inclosures incloude includable include included includedness includer includes includible including inclusa incluse inclusion inclusionary inclusionist inclusions inclusive inclusively inclusiveness inclusivenesses inclusory inclusus incoached incoacted incoagulable incoalescence incocted incoercible incoexistence incoffin incog incogent incogitabilities incogitability incogitable incogitance incogitancies incogitancy incogitant incogitantly incogitative incognisable incognisance incognisances incognisant incognita incognitas incognite incognitive incognito incognitos incognizability incognizable incognizance incognizances incognizant incognoscent incognoscibility incognoscible incogs incoherence incoherences incoherencies incoherency incoherent incoherentific incoherently incoherentness incohering incohesion incohesive incoincidence incoincident incolant incolumity incomber incombining incombustibilities incombustibility incombustible incombustibleness incombustiblenesses incombustibles incombustibly incombustion income incomeless incomer incomers incomes incoming incomings incommend incommensurabilities incommensurability incommensurable incommensurableness incommensurablenesses incommensurables incommensurably incommensurate incommensurately incommensurateness incommensuratenesses incommiscibility incommiscible incommixed incommodate incommodation incommode incommoded incommodement incommodes incommoding incommodious incommodiously incommodiousness incommodiousnesses incommodities incommodity incommunicabilities incommunicability incommunicable incommunicableness incommunicablenesses incommunicably incommunicado incommunicated incommunicative incommunicatively incommunicativeness incommunicativenesses incommutabilities incommutability incommutable incommutableness incommutablenesses incommutably incompact incompacted incompactly incompactness incomparabilities incomparability incomparable incomparableness incomparablenesses incomparably incompared incompassion incompassionate incompassionately incompassionateness incompatibilities incompatibility incompatible incompatibleness incompatiblenesses incompatibles incompatibly incompendious incompensated incompensation incompentence incompetence incompetences incompetencies incompetency incompetent incompetently incompetentness incompetents incompetible incompletability incompletable incompletableness incomplete incompleted incompletely incompleteness incompletenesses incompletion incompletions incomplex incompliable incompliance incompliances incompliancies incompliancy incompliant incompliantly incomplicate incomplying incomportable incomposed incomposedly incomposedness incomposite incompossibilities incompossibility incompossible incomposure incomprehended incomprehending incomprehendingly incomprehense incomprehensibilities incomprehensibility incomprehensible incomprehensibleness incomprehensiblenesses incomprehensiblies incomprehensibly incomprehension incomprehensions incomprehensive incomprehensively incomprehensiveness incomprehensivenesses incompressable incompressibilities incompressibility incompressible incompressibleness incompressiblenesses incompressibly incompt incomputable incomputably incomunicado inconcealable inconceivabilities inconceivability inconceivable inconceivableness inconceivablenesses inconceivables inconceivably inconceptible inconcernino inconcievable inconciliable inconcinn inconcinnate inconcinnately inconcinnities inconcinnity inconcinnous inconcludent inconcluding inconclusible inconclusion inconclusions inconclusive inconclusively inconclusiveness inconclusivenesses inconcoct inconcocted inconcoction inconcrete inconcurrent inconcurring inconcussible incondensabilities incondensability incondensable incondensibility incondensible incondite inconditely inconditional inconditionate inconditioned inconducive inconel inconfident inconfinable inconfirm inconfirmed inconform inconformable inconformably inconformities inconformity inconfused inconfusedly inconfusion inconfutable inconfutably incongealable incongealableness incongenerous incongenial incongeniality inconglomerate incongruence incongruences incongruent incongruently incongruities incongruity incongruous incongruously incongruousness incongruousnesses inconie inconjoinable inconjunct inconnected inconnectedness inconnection inconnexion inconnu inconnue inconnus inconquerable inconscience inconscient inconsciently inconscionable inconscious inconsciously inconsecutive inconsecutively inconsecutiveness inconsecutivenesses inconsequence inconsequences inconsequent inconsequentia inconsequential inconsequentialities inconsequentiality inconsequentially inconsequentialness inconsequentialnesses inconsequently inconsequentness inconsiderable inconsiderableness inconsiderablenesses inconsiderably inconsideracy inconsiderate inconsiderately inconsiderateness inconsideratenesses inconsideration inconsiderations inconsidered inconsistable inconsistence inconsistences inconsistencies inconsistency inconsistent inconsistently inconsistentness inconsolabilities inconsolability inconsolable inconsolableness inconsolablenesses inconsolably inconsolate inconsolately inconsonance inconsonances inconsonant inconsonantly inconspicuous inconspicuously inconspicuousness inconspicuousnesses inconstance inconstancies inconstancy inconstant inconstantly inconstantness inconstruable inconsultable inconsumable inconsumably inconsumed inconsummate inconsumptible incontaminable incontaminate incontaminateness incontemptible incontestabilities incontestability incontestable incontestableness incontestablenesses incontestably incontested incontestible incontiguous incontiguously incontiguousness incontiguousnesses incontinence incontinences incontinencies incontinency incontinent incontinently incontinuity incontinuous incontracted incontractile incontraction incontrollable incontrollably incontrolled incontrovertibilities incontrovertibility incontrovertible incontrovertibleness incontrovertiblenesses incontrovertibly inconvenience inconvenienced inconveniences inconveniencies inconveniencing inconveniency inconvenient inconvenienti inconveniently inconvenientness inconversable inconversant inconversibility inconverted inconvertibilities inconvertibility inconvertible inconvertibleness inconvertibly inconvinced inconvincedly inconvincibilities inconvincibility inconvincible inconvincibly incony incoordinate incoordinated incoordinately incoordination incoordinations incopresentability incopresentable incor incord incornished incoronate incoronated incoronation incoronations incorp incorporable incorporal incorporality incorporall incorporally incorporalness incorporate incorporated incorporatedness incorporates incorporating incorporation incorporations incorporative incorporator incorporators incorporatorship incorporeal incorporealism incorporealist incorporealities incorporeality incorporealize incorporeally incorporealness incorporeities incorporeity incorporeous incorpse incorpsed incorpses incorpsing incorr incorrect incorrection incorrectly incorrectness incorrectnesses incorrespondence incorrespondency incorrespondent incorresponding incorrigibilities incorrigibility incorrigible incorrigibleness incorrigiblenesses incorrigibles incorrigibly incorrodable incorrodible incorrosible incorrosive incorrupt incorrupted incorruptibilities incorruptibility incorruptible incorruptibleness incorruptiblenesses incorruptibles incorruptibly incorruption incorruptions incorruptive incorruptly incorruptness incorruptnesses incoup incourse incourteous incourteously incr incra incrash incrassate incrassated incrassates incrassating incrassation incrassations incrassative increasable increasableness increase increased increasedly increaseful increasement increaser increasers increases increasing increasingly increasings increate increately increative incredibilities incredibility incredible incredibleness incrediblenesses incredibly increditability increditable incredited incredulities incredulity incredulous incredulously incredulousness incredulousnesses increep increeping incremable incremate incremated incremates incremating incremation incremations increment incremental incrementalism incrementalisms incrementalist incrementalists incrementally incrementals incrementation incremented incrementer incrementing increments increpate increpation incrept increscence increscent increst incretion incretionary incretions incretory incriminate incriminated incriminates incriminating incriminatingly incrimination incriminations incriminator incriminators incriminatory incross incrossbred incrossbreds incrossbreed incrossbreeding incrossbreeds incrossed incrosses incrossing incrotchet incroyable incruent incruental incruentous incrust incrustant incrustate incrustated incrustating incrustation incrustations incrustator incrusted incrusting incrustive incrustment incrusts incrystal incrystallizable incs inctirate inctri incubate incubated incubates incubating incubation incubational incubations incubative incubator incubatorium incubators incubatory incube incubee incubi incubiture incubous incubus incubuses incudal incudate incudectomy incudes incudomalleal incudostapedial inculcate inculcated inculcates inculcating inculcation inculcations inculcative inculcator inculcators inculcatory inculk inculp inculpabilities inculpability inculpable inculpableness inculpablenesses inculpably inculpate inculpated inculpates inculpating inculpation inculpations inculpative inculpatory incult incultivated incultivation inculture incumbant incumbence incumbencies incumbency incumbent incumbentess incumbently incumbents incumberment incumbition incumbrance incumbrancer incumbrances incunable incunables incunabula incunabular incunabulist incunabulists incunabulum incunabuulum incuneation incur incurabilities incurability incurable incurableness incurablenesses incurables incurably incuriosities incuriosity incurious incuriously incuriousness incuriousnesses incurment incurrable incurred incurrence incurrences incurrent incurrer incurring incurs incurse incursion incursionary incursionist incursions incursive incurtain incurvate incurvated incurvates incurvating incurvation incurvations incurvature incurvatures incurve incurved incurves incurving incurvities incurvity incurvous incus incuse incused incuses incusing incuss incut incute incutting incysted ind indaba indabas indaconitin indaconitine indagate indagated indagates indagating indagation indagations indagative indagator indagators indagatory indamage indamin indamine indamines indamins indan indane indanthrene indapamide indapamides indart indarted indarting indarts indazin indazine indazol indazole inde indear indebitatus indebt indebted indebtedness indebtednesses indebting indebtment indecence indecencies indecency indecent indecenter indecentest indecently indecentness indeciduate indeciduous indecimable indecipherabilities indecipherability indecipherable indecipherableness indecipherablenesses indecipherably indecision indecisions indecisive indecisively indecisiveness indecisivenesses indecl indeclinable indeclinableness indeclinably indecomponible indecomposable indecomposableness indecorous indecorously indecorousness indecorousnesses indecorum indecorums indeed indeeds indeedy indef indefaceable indefatigabilities indefatigability indefatigable indefatigableness indefatigablenesses indefatigably indefeasibilities indefeasibility indefeasible indefeasibleness indefeasibly indefeatable indefectibilities indefectibility indefectible indefectibly indefective indefensibilities indefensibility indefensible indefensibleness indefensiblenesses indefensibly indefensive indeficiency indeficient indeficiently indefinabilities indefinability indefinable indefinableness indefinablenesses indefinables indefinably indefinite indefinitely indefiniteness indefinitenesses indefinites indefinitive indefinitively indefinitiveness indefinitude indefinity indeflectible indefluent indeformable indehiscence indehiscences indehiscent indelectable indelegability indelegable indeliberate indeliberately indeliberateness indeliberation indelibilities indelibility indelible indelibleness indeliblenesses indelibly indelicacies indelicacy indelicate indelicately indelicateness indelicatenesses indemnification indemnifications indemnificator indemnificatory indemnified indemnifier indemnifiers indemnifies indemnifing indemnify indemnifying indemnitee indemnities indemnitor indemnity indemnization indemoniate indemonstrabilities indemonstrability indemonstrable indemonstrableness indemonstrablenesses indemonstrably indene indenes indenize indent indentation indentations indented indentedly indentee indenter indenters indentifiers indenting indention indentions indentment indentor indentors indents indenture indentured indentures indentureship indentureships indenturing indentwise independable independence independences independencies independency independent independentism independently independents independing indeposable indepravate indeprehensible indeprivability indeprivable inderal inderite inderivative indescribabilities indescribability indescribable indescribableness indescribablenesses indescribables indescribably indescript indescriptive indesert indesignate indesinent indesirable indestrucibility indestrucible indestructibilities indestructibility indestructible indestructibleness indestructiblenesses indestructibly indetectable indetectible indeterminable indeterminableness indeterminablenesses indeterminably indeterminacies indeterminacy indeterminancy indeterminate indeterminately indeterminateness indeterminatenesses indetermination indeterminations indeterminative indetermined indeterminism indeterminisms indeterminist indeterministic indeterminists indevirginate indevote indevoted indevotion indevotional indevout indevoutly indevoutness indew indewed indewing indews index indexable indexal indexation indexations indexed indexer indexers indexes indexical indexically indexicals indexing indexings indexless indexlessness indexterities indexterity india indiadem indiademed indiaman indian indiana indianaite indianan indianans indianapolis indianian indianians indianist indianite indianization indianize indians indiary indic indicable indical indican indicans indicant indicants indicanuria indicatable indicate indicated indicates indicating indication indicational indications indicative indicatively indicativeness indicatives indicator indicatoridae indicators indicatory indicatrix indicavit indice indices indicia indicial indicially indicias indicible indicium indiciums indico indicolite indicolites indict indictability indictable indictableness indictably indicted indictee indictees indicter indicters indicting indiction indictional indictions indictive indictment indictments indictor indictors indicts indidicia indie indienne indies indiferous indifference indifferences indifferencies indifferency indifferent indifferential indifferentiated indifferentism indifferentisms indifferentist indifferentistic indifferentists indifferently indifferentness indifferents indifulvin indifuscin indigen indigena indigenae indigenal indigenate indigence indigences indigencies indigency indigene indigeneity indigenes indigenisation indigenisations indigenise indigenised indigenises indigenising indigenist indigenities indigenity indigenization indigenizations indigenize indigenized indigenizes indigenizing indigenous indigenously indigenousness indigenousnesses indigens indigent indigently indigents indiges indigest indigested indigestedness indigestibilities indigestibility indigestibilty indigestible indigestibleness indigestiblenesses indigestibles indigestibly indigestion indigestions indigestive indigests indigitamenta indigitate indigitation indigites indiglucin indign indignance indignances indignancy indignant indignantly indignation indignations indignatory indignified indignifies indignify indignifying indignities indignity indignly indigo indigoberry indigoes indigofera indigoferous indigogen indigoid indigoids indigolite indigolites indigometer indigos indigotate indigotic indigotin indigotindisulphonic indigotine indigotins indiguria indihumin indii indijbiously indilatory indiligence indimensible indimensional indiminishable indimple indin indirect indirected indirecting indirection indirections indirectly indirectness indirectnesses indirects indirubin indirubine indirubins indiscernibilities indiscernibility indiscernible indiscernibleness indiscerniblenesses indiscernibly indiscerpible indiscerptibilities indiscerptibility indiscerptible indiscerptibleness indiscerptibly indisciplinable indiscipline indisciplined indisciplines indiscoverable indiscoverably indiscovered indiscovery indiscreet indiscreetly indiscreetness indiscreetnesses indiscrete indiscretely indiscreteness indiscretenesses indiscretion indiscretionary indiscretions indiscrimanently indiscriminantly indiscriminate indiscriminated indiscriminately indiscriminateness indiscriminatenesses indiscriminating indiscriminatingly indiscrimination indiscriminations indiscriminative indiscriminatively indiscriminatory indiscussable indiscussed indiscussible indish indispellable indispensabilities indispensability indispensable indispensableness indispensablenesses indispensables indispensably indispensible indispersed indispose indisposed indisposedness indisposednesses indisposes indisposing indisposition indispositions indisputabilities indisputability indisputable indisputableness indisputablenesses indisputably indisputed indissipable indissociable indissociably indissolubilities indissolubility indissoluble indissolubleness indissolublenesses indissolubly indissolute indissolvability indissolvable indissolvableness indissolvably indissuadable indissuadably indistance indistant indistinct indistinctible indistinction indistinctions indistinctive indistinctively indistinctiveness indistinctivenesses indistinctly indistinctness indistinctnesses indistinguishabilities indistinguishability indistinguishable indistinguishableness indistinguishablenesses indistinguishably indistinguished indistinguishing indistortable indistributable indisturbable indisturbance indisturbed inditch indite indited inditement inditements inditer inditers indites inditing indium indiums indiv indivertible indivertibly individ individable individed individua individual individualisation individualisations individualise individualised individualiser individualisers individualises individualising individualisingly individualism individualisms individualist individualistic individualistically individualists individualities individuality individualization individualizations individualize individualized individualizer individualizers individualizes individualizing individualizingly individually individuals individuate individuated individuates individuating individuation individuations individuative individuator individuators individuity individuous individuum individuums indivinable indivinity indivisibilities indivisibility indivisible indivisibleness indivisiblenesses indivisibles indivisibly indivisim indivision indn indochina indochinese indocibility indocible indocibleness indocile indocilely indocilities indocility indocin indoctrinate indoctrinated indoctrinates indoctrinating indoctrination indoctrinations indoctrinator indoctrinators indoctrinatory indoctrine indoctrinization indoctrinize indoctrinized indoctrinizing indogen indogenide indoin indol indole indolence indolences indolencies indolency indolent indolently indoles indolin indoline indologenous indoloid indols indolyl indomable indomethacin indomethacins indominitable indominitably indomitabilities indomitability indomitable indomitableness indomitablenesses indomitably indone indonesia indonesian indonesians indoor indoors indophenin indophenol indophenols indorsable indorsation indorse indorsed indorsee indorsees indorsement indorsements indorser indorsers indorses indorsing indorsor indorsors indow indowed indowing indows indoxyl indoxylic indoxyls indoxylsulphuric indra indraft indrafts indrape indraught indraughts indrawal indrawing indrawn indrench indrenched indrenches indrenching indri indriidae indris indrises indubious indubiously indubitabilities indubitability indubitable indubitableness indubitablenesses indubitably indubitate indubitatively induc induce induceable induced inducedly inducement inducements inducer inducers induces induciae inducibilities inducibility inducible inducing inducive induct inductance inductances inducted inductee inductees inducteous inductile inductilities inductility inducting induction inductional inductionally inductionless inductions inductive inductively inductiveness inductivenesses inductivities inductivity inductometer inductophone inductor inductorium inductors inductory inductoscope inductothermy inductril inducts indue indued induement indues induing induism indulge indulgeable indulged indulgement indulgence indulgenced indulgences indulgencies indulgencing indulgency indulgent indulgential indulgentially indulgently indulgentness indulger indulgers indulges indulgiate indulging indulgingly indulin induline indulines indulins indult indulto indults indument indumenta induments indumentum indumentums induna indunas induplicate induplicated induplication induplications induplicative indurable indurance indurate indurated indurates indurating induration indurations indurative indure indurite indus indusia indusial indusiate indusiated indusiform indusioid indusium industrial industrialisation industrialisations industrialise industrialised industrialises industrialising industrialism industrialisms industrialist industrialists industrialization industrializations industrialize industrialized industrializes industrializing industrially industrialness industrials industries industrious industriously industriousness industriousnesses industrochemical industry industrys indutive induviae induvial induviate indwell indwelled indweller indwellers indwelling indwellingness indwellings indwells indwelt indy indyl indylic inearth inearthed inearthing inearths inebriacy inebriant inebriants inebriate inebriated inebriates inebriating inebriation inebriations inebriative inebrieties inebriety inebrious ineconomic ineconomy inedibilities inedibility inedible inedibly inedita inedited ineducabilian ineducabilities ineducability ineducable ineducation ineffabilities ineffability ineffable ineffableness ineffablenesses ineffably ineffaceabilities ineffaceability ineffaceable ineffaceably ineffectible ineffectibly ineffective ineffectively ineffectiveness ineffectivenesses ineffectual ineffectualities ineffectuality ineffectually ineffectualness ineffectualnesses ineffervescence ineffervescent ineffervescibility ineffervescible inefficacies inefficacious inefficaciously inefficaciousness inefficaciousnesses inefficacities inefficacity inefficacy inefficience inefficiencies inefficiency inefficient inefficiently inefficients ineffulgent inegalitarian inelaborate inelaborated inelaborately inelastic inelastically inelasticate inelasticities inelasticity inelegance inelegances inelegancies inelegancy inelegant inelegantly ineligibilities ineligibility ineligible ineligibleness ineligibles ineligibly ineliminable ineloquence ineloquences ineloquent ineloquently ineluctabilities ineluctability ineluctable ineluctably ineludible ineludibly inembryonate inemendable inemotivity inemulous inenarrability inenarrable inenarrably inenergetic inenubilable inenucleable inept inepter ineptest ineptitude ineptitudes ineptly ineptness ineptnesses inequable inequal inequalitarian inequalities inequality inequally inequalness inequation inequations inequiaxial inequicostate inequidistant inequigranular inequilateral inequilaterally inequilibrium inequilobate inequilobed inequipotent inequipotential inequipotentiality inequitable inequitableness inequitablenesses inequitably inequitate inequities inequity inequivalent inequivalve inequivalved inequivalvular ineradicabilities ineradicability ineradicable ineradicableness ineradicablenesses ineradicably inerasable inerasableness inerasably inerasible inerasibly inergetic inerm inermous inerrabilities inerrability inerrable inerrableness inerrablenesses inerrably inerrancies inerrancy inerrant inerrantly inerratic inerring inerringly inerroneous inert inertance inerter inertest inertia inertiae inertial inertialess inertially inertias inertion inertly inertness inertnesses inerts inerubescent inerudite ineruditely inerudition inescapable inescapableness inescapably inescate inescation inesculent inescutcheon inescutcheons inesite inessential inessentialities inessentiality inessentials inessive inessives inesthetic inestimabilities inestimability inestimable inestimableness inestimablenesses inestimably inestivation inethical ineunt ineuphonious inevadible inevadibly inevaporable inevasible inevasibleness inevasibly inevidence inevident inevitabilities inevitability inevitable inevitableness inevitablenesses inevitably inexact inexacting inexactitude inexactitudes inexactly inexactness inexactnesses inexcellence inexcitability inexcitable inexcitableness inexcitably inexclusive inexclusively inexcommunicable inexcusabilities inexcusability inexcusable inexcusableness inexcusablenesses inexcusably inexecrable inexecutable inexecution inexecutions inexertion inexertions inexhalable inexhaust inexhausted inexhaustedly inexhaustibilities inexhaustibility inexhaustible inexhaustibleness inexhaustiblenesses inexhaustibly inexhaustive inexhaustively inexhaustless inexigible inexist inexistant inexistence inexistences inexistency inexistent inexorabilities inexorability inexorable inexorableness inexorablenesses inexorably inexpansible inexpansive inexpectable inexpectance inexpectancies inexpectancy inexpectant inexpectation inexpectations inexpected inexpectedly inexpectedness inexpedience inexpediences inexpediencies inexpediency inexpedient inexpediently inexpensive inexpensively inexpensiveness inexpensivenesses inexperience inexperienced inexperiences inexpert inexpertly inexpertness inexpertnesses inexperts inexpiable inexpiableness inexpiablenesses inexpiably inexpiate inexplainable inexpleble inexplicabilities inexplicability inexplicable inexplicableness inexplicablenesses inexplicables inexplicably inexplicit inexplicitly inexplicitness inexplicitnesses inexplorable inexplosive inexportable inexposable inexposure inexpress inexpressibilities inexpressibility inexpressible inexpressibleness inexpressiblenesses inexpressibles inexpressibly inexpressive inexpressively inexpressiveness inexpressivenesses inexpugnabilities inexpugnability inexpugnable inexpugnableness inexpugnablenesses inexpugnably inexpungeable inexpungibility inexpungible inexsuperable inextant inextended inextensibilities inextensibility inextensible inextensile inextension inextensional inextensions inextensive inexterminable inextinct inextinguible inextinguishability inextinguishable inextinguishableness inextinguishablenesses inextinguishables inextinguishably inextinguished inextirpable inextirpableness inextricabilities inextricability inextricable inextricableness inextricablenesses inextricably ineye inf inface infair infall infallibilism infallibilisms infallibilist infallibilists infallibilities infallibility infallible infallibleness infalliblenesses infallibly infallid infalling infalls infalsificable infamation infamatory infame infamed infames infamia infamies infamiliar infamiliarity infaming infamise infamised infamises infamising infamize infamized infamizes infamizing infamonise infamonised infamonises infamonising infamonize infamonized infamonizes infamonizing infamous infamously infamousness infamousnesses infamy infancies infancy infand infandous infang infanglement infangthef infangthief infangthiefs infans infant infanta infantado infantas infante infantes infanthood infanthoods infanticidal infanticide infanticides infantile infantilism infantilisms infantilities infantility infantilization infantilizations infantilize infantilized infantilizes infantilizing infantine infantive infantlike infantly infantries infantry infantryman infantrymen infants infarce infarct infarctate infarcted infarction infarctions infarcts infare infares infashionable infatigable infatuate infatuated infatuatedly infatuatedness infatuates infatuating infatuation infatuations infatuator infauna infaunae infaunal infaunas infaust infausting infeasibilities infeasibility infeasible infeasibleness infeasiblenesses infect infectant infected infectedness infecter infecters infectible infecting infection infectionist infections infectious infectiously infectiousness infectiousnesses infective infectiveness infectivenesses infectivities infectivity infector infectors infectress infects infectum infectuous infecund infecundities infecundity infeeble infeed infeft infefted infefting infeftment infeftments infefts infeijdation infelicific infelicities infelicitous infelicitously infelicitousness infelicity infelonious infelt infeminine infenible infeodation infeof infeoff infeoffed infeoffing infeoffment infeoffs infer inferable inferably infere inference inferenced inferences inferencing inferent inferential inferentialism inferentialist inferentially inferiae inferial inferible inferior inferiorise inferiorism inferiorities inferiority inferiorize inferiorly inferiorness inferiors infern infernal infernalise infernalism infernalities infernality infernalize infernally infernalry infernalship inferno infernos inferoanterior inferobranch inferobranchiate inferofrontal inferolateral inferomedian inferoposterior inferrable inferred inferrer inferrers inferribility inferrible inferring inferringly infers infertile infertilely infertileness infertilities infertility infest infestant infestants infestation infestations infested infester infesters infesting infestious infestive infestivity infestment infests infeudate infeudation infeudations infibulate infibulated infibulates infibulating infibulation infibulations inficete infidel infidelic infidelical infidelise infidelism infidelistic infidelities infidelity infidelize infidelly infidels infield infielder infielders infields infieldsman infight infighter infighters infighting infightings infights infigured infile infill infilled infilling infillings infills infilm infilter infiltered infiltering infilters infiltrate infiltrated infiltrates infiltrating infiltration infiltrations infiltrative infiltrator infiltrators infima infimum infimums infin infinitant infinitarily infinitary infinitate infinitated infinitates infinitating infinitation infinite infinitely infiniteness infinitenesses infinites infinitesimal infinitesimalism infinitesimality infinitesimally infinitesimalness infinitesimals infiniteth infinities infinitieth infinitise infinitival infinitivally infinitive infinitively infinitives infinitize infinitized infinitizing infinitude infinitudes infinitum infinituple infinity infirm infirmable infirmarer infirmarers infirmaress infirmarian infirmarians infirmaries infirmary infirmate infirmation infirmative infirmatory infirmed infirmer infirmest infirming infirmities infirmity infirmly infirmness infirmnesses infirms infissile infit infitter infix infixal infixation infixations infixed infixes infixing infixion infixions infl inflamable inflame inflamed inflamedly inflamedness inflamer inflamers inflames inflaming inflamingly inflammabilities inflammability inflammable inflammableness inflammablenesses inflammables inflammably inflammation inflammations inflammative inflammatorily inflammatory inflatable inflatables inflate inflated inflatedly inflatedness inflatednesses inflater inflaters inflates inflatile inflating inflatingly inflation inflationary inflationism inflationisms inflationist inflationists inflations inflative inflator inflators inflatus inflect inflectable inflected inflectedness inflecting inflection inflectional inflectionally inflectionless inflections inflective inflector inflectors inflects inflesh inflex inflexed inflexibilities inflexibility inflexible inflexibleness inflexiblenesses inflexibly inflexion inflexional inflexionally inflexionless inflexions inflexive inflexure inflexures inflict inflictable inflicted inflicter inflicters inflicting infliction inflictions inflictive inflictor inflictors inflicts inflight inflood inflooding inflorescence inflorescences inflorescent inflow inflowering inflowing inflowings inflows influe influencability influencable influence influenceabilities influenceability influenceable influenced influencer influencers influences influencing influencive influent influential influentiality influentially influentialness influentials influents influenza influenzal influenzalike influenzas influenzic influx influxable influxes influxible influxibly influxion influxionism influxions influxious influxive info infobahn infobahns infold infolded infolder infolders infolding infoldment infolds infoliate infomania infomanias infomercial infomercials infopreneurial inforce inforced inforces inforcing inforgiveable inform informable informal informalise informalism informalist informalities informality informalize informally informalness informant informants informatician informaticians informatics information informational informationally informations informative informatively informativeness informativenesses informatorily informatory informatus informed informedly informer informers informidable informing informingly informity informous informs infortiate infortitude infortunate infortunately infortunateness infortune infortunes infortunity infos infosphere infospheres infotain infotained infotaining infotainment infotainments infotains infought infound infra infrabasal infrabestial infrabranchial infrabuccal infracanthal infracaudal infracelestial infracentral infracephalic infraclass infraclasses infraclavicle infraclavicular infraclusion infraconscious infracortical infracostal infracostalis infracotyloid infract infracted infractible infracting infraction infractions infractor infractors infracts infradentary infradiaphragmatic infragenual infraglacial infraglenoid infraglottic infragrant infragular infrahuman infrahumans infrahyoid infralabial infralapsarian infralapsarianism infralapsarianisms infralapsarians infralinear infralittoral inframammary inframammillary inframandibular inframarginal inframaxillary inframedian inframercurial inframercurian inframolecular inframontane inframundane infranatural infranaturalism infranchise infrangibilities infrangibility infrangible infrangibleness infrangiblenesses infrangibly infranodal infranuclear infraoccipital infraocclusion infraocular infraoral infraorbital infraordinary infrapapillary infrapatellar infraperipherial infrapose infraposed infraposing infraposition infrapositions infraprotein infrapubian infraradular infrared infrareds infrarenal infrarenally infrarimal infrascapular infrascapularis infrascientific infrasonic infrasonics infrasound infrasounds infraspecific infraspinal infraspinate infraspinatus infraspinous infrastapedial infrasternal infrastigmatal infrastipular infrastructural infrastructure infrastructures infrasutral infratemporal infraterrene infraterritorial infrathoracic infratonsillar infratracheal infratrochanteric infratrochlear infratubal infraturbinal infravaginal infraventral infree infrequence infrequences infrequencies infrequency infrequent infrequentcy infrequently infrigidate infrigidation infrigidative infringe infringed infringement infringements infringer infringers infringes infringible infringing infructiferous infructuose infructuosity infructuous infructuously infrugal infrunite infrustrable infrustrably infula infulae infumate infumated infumation infume infund infundibula infundibular infundibulate infundibuliform infundibulum infuneral infuriate infuriated infuriatedly infuriately infuriates infuriating infuriatingly infuriation infuriations infuscate infuscated infuscation infuse infused infusedly infuser infusers infuses infusibilities infusibility infusible infusibleness infusiblenesses infusile infusing infusion infusionism infusionisms infusionist infusionists infusions infusive infusoria infusorial infusorian infusorians infusories infusoriform infusorioid infusorium infusory ing inga ingallantry ingan ingang ingangs ingannation ingans inganue inganues ingate ingates ingather ingathered ingatherer ingatherers ingathering ingatherings ingathers ingeldable ingem ingeminate ingeminated ingeminates ingeminating ingemination ingeminations ingender ingene ingener ingenerability ingenerable ingenerably ingenerate ingenerated ingenerately ingenerates ingenerating ingeneration ingenerative ingeners ingeniary ingeniate ingenie ingenier ingenio ingeniosity ingenious ingeniously ingeniousness ingeniousnesses ingenit ingenital ingenite ingenium ingeniums ingent ingenu ingenue ingenues ingenuities ingenuity ingenuous ingenuously ingenuousness ingenuousnesses ingenus ingeny inger ingerman ingerminate ingest ingesta ingestant ingested ingester ingestible ingesting ingestion ingestions ingestive ingests inghamite ingine ingines ingirt ingiver ingiving ingle ingleneuk ingleneuks inglenook inglenooks ingles inglesa ingleside inglobate inglobe inglobed inglobes inglobing inglorious ingloriously ingloriousness ingloriousnesses inglu inglut inglutition ingluvial ingluvies ingluviitis ingluvious ingnue ingo ingoes ingoing ingoingness ingoings ingorge ingot ingoted ingoting ingotman ingotmen ingots ingracious ingraft ingraftation ingrafted ingrafter ingrafting ingraftment ingrafts ingrain ingrained ingrainedly ingrainedness ingrainednesses ingraining ingrains ingram ingrammaticism ingramness ingrandize ingrapple ingrate ingrateful ingratefully ingratefulness ingrately ingrates ingratiate ingratiated ingratiates ingratiating ingratiatingly ingratiation ingratiations ingratiatory ingratitude ingratitudes ingrave ingravescence ingravescent ingravidate ingravidation ingreat ingredience ingredient ingredients ingress ingresses ingression ingressions ingressive ingressiveness ingressivenesses ingressives ingreve ingrian ingroove ingrooved ingrooves ingrooving ingross ingrossed ingrosses ingrossing ingroup ingroups ingrow ingrowing ingrown ingrownness ingrownnesses ingrowth ingrowths ingruent ingrum inguen inguilty inguinal inguinoabdominal inguinocrural inguinocutaneous inguinodynia inguinolabial inguinoscrotal ingulf ingulfed ingulfing ingulfment ingulfs ingulph ingulphed ingulphing ingulphs ingurgitate ingurgitated ingurgitates ingurgitating ingurgitation ingurgitations ingustable ingénu ingénue ingénues inhabile inhabit inhabitabilities inhabitability inhabitable inhabitance inhabitances inhabitancies inhabitancy inhabitant inhabitants inhabitate inhabitation inhabitations inhabitative inhabitativeness inhabited inhabitedness inhabiter inhabiters inhabiting inhabitiveness inhabitivenesses inhabitor inhabitors inhabitress inhabitresses inhabits inhalant inhalants inhalation inhalational inhalations inhalator inhalatoria inhalatorium inhalatoriums inhalators inhale inhaled inhalement inhalent inhaler inhalers inhales inhaling inhame inhance inharmonic inharmonical inharmonicities inharmonicity inharmonies inharmonious inharmoniously inharmoniousness inharmoniousnesses inharmony inhaul inhauler inhaulers inhauls inhaust inhausted inhausting inhaustion inhausts inhearse inhearsed inhearses inhearsing inheaven inhelde inhell inherce inherced inherces inhercing inhere inhered inherence inherences inherencies inherency inherent inherently inheres inhering inherit inheritabilities inheritability inheritable inheritableness inheritablenesses inheritably inheritage inheritance inheritances inherited inheriting inheritor inheritors inheritress inheritresses inheritrice inheritrices inheritrix inheritrixes inherits inherle inhesion inhesions inhesive inhiate inhibin inhibins inhibit inhibitable inhibited inhibitedly inhibitedness inhibitednesses inhibiter inhibiters inhibiting inhibition inhibitionist inhibitions inhibitive inhibitor inhibitors inhibitory inhibits inhive inhold inholder inholders inholding inholdings inhomogeneities inhomogeneity inhomogeneous inhomogeneously inhonest inhoop inhooped inhooping inhoops inhospitable inhospitableness inhospitablenesses inhospitably inhospitalities inhospitality inhuman inhumane inhumanely inhumaneness inhumanise inhumanism inhumanities inhumanity inhumanize inhumanly inhumanness inhumannesses inhumate inhumated inhumates inhumating inhumation inhumationist inhumations inhume inhumed inhumer inhumers inhumes inhuming inhumorous inhumorously inia inial inidoneity inidoneous inimaginable inimicability inimicable inimical inimicalities inimicality inimically inimicalness inimicalnesses inimicitious inimicous inimitabilities inimitability inimitable inimitableness inimitablenesses inimitably inimitative iniome iniomous inion inions inique iniquitable iniquitably iniquities iniquitous iniquitously iniquitousness iniquitousnesses iniquity iniquous inirritability inirritable inirritably inirritant inirritative inisle inisled inisles inisling inissuable init inital initial initialed initialer initialers initialing initialisation initialisations initialise initialised initialiser initialisers initialises initialising initialism initialisms initialist initialization initializations initialize initialized initializer initializers initializes initializing initialled initialler initiallers initialling initially initialness initialnesses initials initiant initiary initiate initiated initiates initiating initiation initiations initiative initiatively initiatives initiator initiatories initiatorily initiators initiatory initiatress initiatrices initiatrix initiatrixes initio inition initis initive inject injectable injectables injectant injectants injected injecting injection injections injective injector injectors injects injellied injellies injelly injellying injera injeras injoin injoint injointed injointing injoints injucundity injudicial injudicially injudicious injudiciously injudiciousness injudiciousnesses injun injunct injuncted injuncting injunction injunctions injunctive injunctively injuncts injurable injurant injurants injure injured injuredly injuredness injurer injurers injures injuria injuries injuring injurious injuriously injuriousness injuriousnesses injury injust injustice injustices injustifiable injustly ink inkberries inkberry inkblot inkblots inkbush inked inken inker inkers inket inkfish inkholder inkholders inkhorn inkhornism inkhornist inkhornize inkhornizer inkhorns inkie inkier inkies inkiest inkindle inkiness inkinesses inking inkings inkish inkjet inkle inkled inkles inkless inklike inkling inklings inkmaker inkmaking inkman inknit inknot inkos inkosi inkpad inkpot inkpots inkroot inks inkshed inkslinger inkslinging inkspot inkspots inkstain inkstand inkstandish inkstands inkster inkstone inkstones inkweed inkwell inkwells inkwood inkwoods inkwriter inky inlace inlaced inlaces inlacing inlagary inlagation inlaid inlaik inlake inland inlander inlanders inlandish inlands inlapidate inlapidatee inlard inlaut inlaw inlawed inlawing inlawries inlawry inlaws inlay inlayed inlayer inlayers inlaying inlayings inlays inleague inleagued inleaguer inleaguing inleak inleakage inless inlet inlets inletting inlier inliers inlighten inlike inline inlock inlocked inlocking inlocks inlook inlooker inlooking inly inlying inmarriage inmarriages inmate inmates inmeat inmeats inmesh inmeshed inmeshes inmeshing inmew inmigrant inmixture inmore inmost inmprovidence inn innage innages innards innascibility innascible innate innately innateness innatenesses innatism innative innatural innaturality innaturally innavigable innavigably inne inned inneity inner innerly innermore innermost innermostly innermosts innerness innernesses inners innersole innersoles innerspring innervate innervated innervates innervating innervation innervational innervations innerve innerved innerves innerving innerwear innerwears inness innest innet innholder innholders inning innings inninmorite innit innitency innkeeper innkeepers innless innobedient innocence innocences innocencies innocency innocense innocent innocenter innocentest innocently innocentness innocents innocuities innocuity innoculate innoculated innoculating innoculation innocuous innocuously innocuousness innocuousnesses innodate innominability innominable innominables innominata innominate innominatum innomine innovant innovate innovated innovates innovating innovation innovational innovationist innovationists innovations innovative innovatively innovativeness innovativenesses innovator innovators innovatory innoxious innoxiously innoxiousness innoxiousnesses inns innuate innubilous innuendo innuendoed innuendoes innuendoing innuendos innumerabilities innumerability innumerable innumerableness innumerablenesses innumerably innumeracies innumeracy innumerate innumerates innumerous innutrient innutrition innutritions innutritious innutritiousness innutritive innyard innyards inobedience inobediences inobedient inobediently inoblast inobnoxious inobscurable inobservable inobservance inobservances inobservancy inobservant inobservantly inobservantness inobservation inobservations inobtainable inobtrusive inobtrusively inobtrusiveness inobtrusivenesses inobvious inocarpin inoccupation inoccupations inochondritis inochondroma inocor inocula inoculabilities inoculability inoculable inoculant inoculants inocular inoculate inoculated inoculates inoculating inoculation inoculations inoculative inoculativity inoculator inoculators inoculatory inoculum inoculums inocystoma inocyte inodiate inodorate inodorous inodorously inodorousness inodorousnesses inoepithelioma inoffending inoffensive inoffensively inoffensiveness inoffensivenesses inofficial inofficially inofficiosity inofficious inofficiously inofficiousness inofficiousnesses inogen inogenesis inogenic inogenous inoglia inohymenitic inolith inoma inominous inomyoma inomyositis inomyxoma inone inoneuroma inoperabilities inoperability inoperable inoperableness inoperablenesses inoperably inoperation inoperational inoperative inoperativeness inoperativenesses inopercular inoperculate inoperculates inopinable inopinate inopinately inopine inopportune inopportunely inopportuneness inopportunenesses inopportunism inopportunist inopportunists inopportunities inopportunity inoppressive inoppugnable inopulent inorb inorbed inorbing inorbs inorderly inordinacies inordinacy inordinance inordinancy inordinary inordinate inordinately inordinateness inordinatenesses inordination inordinations inorg inorganic inorganical inorganically inorganisation inorganisations inorganised inorganity inorganizable inorganization inorganizations inorganized inoriginate inornate inornateness inorthography inosclerosis inoscopy inosculate inosculated inosculates inosculating inosculation inosculations inosic inosilicate inosin inosine inosines inosinic inosite inosites inositol inositols inostensible inostensibly inotropic inower inoxidability inoxidable inoxidizable inoxidize inoxidized inoxidizing inparabola inpardonable inparfit inpatient inpatients inpayment inpayments inpensioner inphase inphases inpolygon inpolyhedron inponderable inport inpour inpoured inpouring inpourings inpours inpush input inputfile inputs inputted inputter inputters inputting inqilab inqilabs inquaintance inquartation inquere inquered inqueres inquering inquest inquests inquestual inquiet inquietation inquieted inquieting inquietly inquietness inquiets inquietude inquietudes inquiline inquilines inquilinic inquilinics inquilinism inquilinisms inquilinities inquilinity inquilinous inquinate inquinated inquinates inquinating inquination inquinations inquirable inquirance inquirant inquiration inquirations inquire inquired inquirendo inquirendos inquirent inquirer inquirers inquires inquiries inquiring inquiringly inquiry inquisible inquisit inquisite inquisition inquisitional inquisitionist inquisitionists inquisitions inquisitive inquisitively inquisitiveness inquisitivenesses inquisitor inquisitorial inquisitorially inquisitorialness inquisitorialnesses inquisitorious inquisitors inquisitorship inquisitory inquisitress inquisitresses inquisitrix inquisiturient inquorate inracinate inradii inradius inradiuses inrail inreality inregister inrigged inrigger inrighted inring inro inroad inroader inroads inrol inroll inrolling inrooted inrub inrun inrunning inruption inrush inrushes inrushing inrushings ins insabbatist insack insafety insagacity insalivate insalivated insalivates insalivating insalivation insalivations insalubrious insalubriously insalubriousness insalubrities insalubrity insalutary insalvability insalvable insame insanable insane insanely insaneness insanenesses insaner insanest insaniate insanie insanies insanify insanitariness insanitarinesses insanitary insanitation insanitations insanities insanity insapiency insapient insapory insatiabilities insatiability insatiable insatiableness insatiablenesses insatiably insatiate insatiated insatiately insatiateness insatiatenesses insatieties insatiety insatisfaction insatisfactorily insaturable inscape inscapes inscenation inscibile inscience insciences inscient inscious insconce insconced insconces insconcing inscribable inscribableness inscribe inscribed inscriber inscribers inscribes inscribing inscript inscriptible inscription inscriptional inscriptioned inscriptionist inscriptionless inscriptions inscriptive inscriptively inscriptured inscroll inscrolled inscrolling inscrolls inscrutabilities inscrutability inscrutable inscrutableness inscrutablenesses inscrutables inscrutably insculp insculped insculping insculps insculpt insculpture insculptured insculptures insculpturing inscutcheon insea inseam inseamed inseamer inseaming inseams insearch insecable insect insecta insectan insectaria insectaries insectarium insectariums insectary insectation insectean insected insecticidal insecticidally insecticide insecticides insectiferous insectiform insectifuge insectifuges insectile insectine insection insections insectival insectivora insectivore insectivores insectivorous insectivory insectlike insectmonger insectologer insectologies insectologist insectologists insectology insectproof insects insecuration insecurations insecure insecurely insecureness insecurenesses insecurities insecurity insecution insee inseeing inseem inseemed inseeming inseems inseer inselberg inselberge inselbergs inseminate inseminated inseminates inseminating insemination inseminations inseminator inseminators insenescible insensate insensately insensateness insensatenesses insense insensed insensibilities insensibility insensibilization insensibilize insensibilizer insensible insensibleness insensiblenesses insensibly insensing insensitive insensitively insensitiveness insensitivenesses insensitivities insensitivity insensuous insentience insentiences insentiencies insentiency insentient insep inseparabilities inseparability inseparable inseparableness inseparablenesses inseparables inseparably inseparate inseparately insequent insert insertable inserted inserter inserters inserting insertion insertional insertions insertive inserts inserve inserviceable inservient insession insessor insessores insessorial inset insets insetted insetter insetters insetting inseverable inseverably inshade inshallah inshave insheath insheathe insheathed insheathes insheathing insheaths inshell inshelled inshelling inshells inshelter insheltered insheltering inshelters inshining inship inshipped inshipping inships inshoe inshoot inshore inshrine inshrined inshrines inshrining inside insident insider insiders insides insidiate insidiation insidiator insidiosity insidious insidiously insidiousness insidiousnesses insight insighted insightful insightfully insightfulness insightfulnesses insights insigne insignes insignia insignias insignificance insignificances insignificancies insignificancy insignificant insignificantly insignificative insignisigne insignment insimplicity insimulate insincere insincerely insincerities insincerity insinew insinewed insinewing insinews insinking insinuant insinuate insinuated insinuates insinuating insinuatingly insinuation insinuations insinuative insinuatively insinuativeness insinuator insinuators insinuatory insinuendo insipid insipidities insipidity insipidly insipidness insipidnesses insipidus insipience insipiences insipient insipiently insist insisted insistence insistences insistencies insistency insistent insistently insister insisters insisting insistingly insistive insists insisture insistuvree insite insitiency insition insititious insnare insnared insnarement insnarer insnarers insnares insnaring insobrieties insobriety insociabilities insociability insociable insociableness insociably insocial insocially insociate insofar insol insolate insolated insolates insolating insolation insolations insole insolence insolences insolency insolent insolently insolentness insolents insoles insolid insolidities insolidity insolite insolubilisation insolubilise insolubilised insolubilises insolubilising insolubilities insolubility insolubilization insolubilizations insolubilize insolubilized insolubilizes insolubilizing insoluble insolubleness insolublenesses insolubles insolubly insolvabilities insolvability insolvable insolvably insolvence insolvencies insolvency insolvent insolvents insomnia insomniac insomniacs insomnias insomnious insomnolence insomnolences insomnolency insomnolent insomnolently insomuch insonorous insooth insorb insorbent insordid insouciance insouciances insouciant insouciantly insoul insouled insouling insoulment insoulments insouls insp inspake inspan inspanned inspanning inspans inspeak inspeaking inspect inspectability inspectable inspected inspecting inspectingly inspection inspectional inspectioneer inspections inspective inspector inspectoral inspectorate inspectorates inspectorial inspectors inspectorship inspectorships inspectress inspectresses inspectrix inspects insperge insperse inspeximus inspheration insphere insphered inspheres insphering inspinne inspirability inspirable inspirant inspirate inspiration inspirational inspirationalism inspirationally inspirationism inspirationisms inspirationist inspirationists inspirations inspirative inspirator inspirators inspiratory inspiratrix inspire inspired inspiredly inspirer inspirers inspires inspiring inspiringly inspirit inspirited inspiriter inspiriters inspiriting inspiritingly inspiritment inspirits inspirometer inspissant inspissate inspissated inspissates inspissating inspissation inspissations inspissator inspissators inspissosis inspoke inspoken inspreith inst instabilities instability instable instal install installable installant installants installation installations installed installer installers installing installment installments installs instalment instalments instals instamp instance instanced instances instancies instancing instancy instanding instant instantaneities instantaneity instantaneous instantaneously instantaneousness instantaneousnesses instanter instantial instantiate instantiated instantiates instantiating instantiation instantiations instantiative instantly instantness instantnesses instants instar instarred instarring instars instate instated instatement instatements instates instating instaurate instauration instaurations instaurator instaurators instead instealing insteam insteep instellatinn instellation instep insteps instigant instigate instigated instigates instigating instigatingly instigation instigations instigative instigator instigators instigatrix instil instill instillation instillations instillator instillatory instilled instiller instillers instilling instillment instillments instills instilment instilments instils instimulate instinct instinction instinctive instinctively instinctiveness instinctivist instinctivities instinctivity instincts instinctual instinctually instipulate institor institorial institorian institory institue institute instituted instituter instituters institutes instituting institution institutional institutionalisation institutionalisations institutionalise institutionalised institutionalises institutionalising institutionalism institutionalisms institutionalist institutionalists institutionality institutionalization institutionalizations institutionalize institutionalized institutionalizes institutionalizing institutionally institutionary institutionise institutionize institutions institutist institutists institutive institutively institutor institutors institutress institutrix instonement instop instore instr instransitive instratified instreaming instreamings instrengthen instress instressed instresses instressing instroke instrokes instruct instructable instructed instructedly instructedness instructer instructible instructing instruction instructional instructionary instructions instructive instructively instructiveness instructivenesses instructor instructorial instructorless instructors instructorship instructorships instructress instructresses instructs instrument instrumental instrumentalise instrumentalism instrumentalisms instrumentalist instrumentalists instrumentalities instrumentality instrumentalize instrumentally instrumentals instrumentary instrumentate instrumentation instrumentations instrumentative instrumented instrumenting instrumentist instrumentman instruments instyle insuavity insubduable insubjection insubjections insubmergible insubmersible insubmission insubmissive insubordinate insubordinately insubordinateness insubordinates insubordination insubordinations insubstantial insubstantialities insubstantiality insubstantialize insubstantially insubstantiate insubstantiation insubvertible insuccate insuccation insuccess insuccessful insucken insue insuetude insufferable insufferableness insufferablenesses insufferably insufficent insufficience insufficiences insufficiencies insufficiency insufficient insufficiently insufficientness insufflate insufflated insufflates insufflating insufflation insufflations insufflator insufflators insuitable insula insulae insulance insulances insulant insulants insular insularise insularism insularisms insularities insularity insularize insularized insularizing insularly insulars insulary insulas insulate insulated insulates insulating insulation insulations insulative insulator insulators insulin insulinase insulinases insulination insulinize insulinized insulinizing insulins insulize insulphured insulse insulsities insulsity insult insultable insultant insultation insulted insulter insulters insulting insultingly insultment insultments insultproof insults insume insunk insuper insuperabilities insuperability insuperable insuperableness insuperablenesses insuperably insupportable insupportableness insupportablenesses insupportably insupposable insuppressibility insuppressible insuppressibly insuppressive insurabilities insurability insurable insurance insurancer insurancers insurances insurant insurants insure insured insureds insuree insurer insurers insures insurge insurgence insurgences insurgencies insurgency insurgent insurgentism insurgently insurgents insurgescence insuring insurmounable insurmounably insurmountabilities insurmountability insurmountable insurmountableness insurmountablenesses insurmountably insurpassable insurrect insurrection insurrectional insurrectionally insurrectionaries insurrectionary insurrectionise insurrectionised insurrectionising insurrectionism insurrectionisms insurrectionist insurrectionists insurrectionize insurrectionized insurrectionizing insurrections insurrecto insurrectory insusceptibilities insusceptibility insusceptible insusceptibly insusceptive insusceptively insuspect insusurration inswamp inswarming inswathe inswathed inswathement inswathes inswathing insweeping inswell inswept inswing inswinger inswingers inswings int inta intablature intabulate intact intactible intactile intactly intactness intactnesses intagli intagliated intagliation intaglio intaglioed intaglioes intaglioing intaglios intagliotype intail intake intaker intakes intaminated intangibilities intangibility intangible intangibleness intangiblenesses intangibles intangibly intangle intaria intarissable intarsa intarsas intarsia intarsias intarsiate intarsist intastable intaxable intebred intebreeding intechnicality integer integers integrabilities integrability integrable integral integralisation integralise integralities integrality integralization integralize integrally integrals integrand integrands integrant integrants integraph integrate integrated integrates integrating integration integrationist integrationists integrations integrative integrator integrators integrifolious integrious integriously integripallial integripalliate integrities integrity integrodifferential integropallial integropalliate integumation integument integumental integumentary integumentation integuments inteind intel intellect intellectation intellected intellectible intellection intellections intellective intellectively intellects intellectual intellectualisation intellectualisations intellectualise intellectualised intellectualiser intellectualisers intellectualises intellectualising intellectualism intellectualisms intellectualist intellectualistic intellectualistically intellectualists intellectualities intellectuality intellectualization intellectualizations intellectualize intellectualized intellectualizer intellectualizers intellectualizes intellectualizing intellectually intellectualness intellectualnesses intellectuals intelligence intelligenced intelligencer intelligencers intelligences intelligencing intelligency intelligent intelligential intelligentiary intelligently intelligentsia intelligentsias intelligentzia intelligentzias intelligibilities intelligibility intelligible intelligibleness intelligiblenesses intelligibly intelligize intelsat intemerate intemerately intemerateness intemeration intemperable intemperably intemperament intemperance intemperances intemperancy intemperant intemperants intemperate intemperately intemperateness intemperatenesses intemperature intemperies intempestive intempestively intempestivities intempestivity intemporal intemporally intenability intenable intenancy intend intendance intendances intendancies intendancy intendant intendantism intendants intendantship intended intendedly intendedness intendeds intendence intendencia intendencies intendency intendente intender intendered intendering intenders intendible intendiment intending intendingly intendit intendment intendments intends intenerate intenerated intenerates intenerating inteneration intenerations intenible intens intensate intensated intensates intensating intensation intensative intense intensely intenseness intensenesses intenser intensest intensification intensifications intensified intensifier intensifiers intensifies intensify intensifying intension intensional intensionalities intensionality intensionally intensions intensities intensitive intensitometer intensity intensive intensively intensiveness intensivenesses intensivenyess intensives intent intentation intented intention intentional intentionalism intentionalities intentionality intentionally intentioned intentionless intentions intentive intentively intentiveness intently intentness intentnesses intents inter interabang interabangs interabsorption interacademic interacademically interaccessory interaccuse interaccused interaccusing interacinar interacinous interacra interact interactant interactants interacted interacting interaction interactional interactionism interactionisms interactionist interactionists interactions interactive interactively interactiveness interactivity interacts interadaptation interadaption interadditive interadventual interaffiliate interaffiliated interaffiliation interage interagencies interagency interagent interagglutinate interagglutinated interagglutinating interagglutination interagree interagreed interagreeing interagreement interalar interall interallelic interalliance interallied interally interalveolar interambulacra interambulacral interambulacrum interamnian interangular interanimate interanimated interanimating interanimation interanimations interannual interannular interantagonism interantennal interantennary interapophysal interapophyseal interapplication interarboration interarch interarcualis interarmy interarrival interarticular interartistic interarytenoid interassociate interassociated interassociation interassociations interassure interassured interassuring interasteroidal interastral interatomic interatrial interattrition interaulic interaural interauricular interavailabilities interavailability interavailable interaxal interaxes interaxial interaxillary interaxis interbalance interbalanced interbalancing interbanded interbank interbanking interbasin interbastate interbbred interbed interbedded interbedding interbeddings interbeds interbehavior interbehavioral interbehaviors interbelligerent interblend interblended interblending interblent interblock interbody interbonding interborough interboroughs interbourse interbrachial interbrain interbrains interbranch interbranchial interbreath interbred interbreed interbreeding interbreedings interbreeds interbrigade interbring interbronchial interbrood interbusiness intercadence intercadent intercalar intercalare intercalarily intercalarium intercalary intercalate intercalated intercalates intercalating intercalation intercalations intercalative intercalatory intercale intercalibration intercalibrations intercalm intercampus intercanal intercanalicular intercapillary intercardinal intercarotid intercarpal intercarpellary intercarrier intercartilaginous intercaste intercatenated intercausative intercavernous intercede interceded intercedent interceder interceders intercedes interceding intercell intercellular intercellularly intercensal intercentra intercentral intercentrum intercept interceptable intercepted intercepter intercepters intercepting interception interceptions interceptive interceptor interceptors interceptress intercepts intercerebral intercess intercession intercessional intercessionary intercessionate intercessionment intercessions intercessive intercessor intercessorial intercessors intercessory interchaff interchain interchained interchaining interchains interchange interchangeabilities interchangeability interchangeable interchangeableness interchangeablenesses interchangeably interchanged interchangement interchangements interchanger interchangers interchanges interchanging interchangings interchannel interchapter interchapters intercharge intercharged intercharging interchase interchased interchasing intercheck interchoke interchoked interchoking interchondral interchromosomal interchurch intercident interciliary intercilium intercipient intercipients intercircle intercircled intercircling intercirculate intercirculated intercirculating intercirculation intercision intercitizenship intercity intercivic intercivilisation intercivilization interclan interclash interclasp interclass interclavicle interclavicles interclavicular interclerical interclose intercloud interclub interclude intercluded intercludes intercluding interclusion interclusions intercluster intercoastal intercoccygeal intercoccygean intercohesion intercollege intercollegian intercollegiate intercolline intercolonial intercolonially intercolonisation intercolonization intercolonize intercolonized intercolonizing intercolumn intercolumnal intercolumnar intercolumnation intercolumniation intercolumniations intercom intercombat intercombination intercombine intercombined intercombining intercome intercommission intercommissural intercommon intercommonable intercommonage intercommoned intercommoner intercommoning intercommunal intercommune intercommuned intercommuner intercommunes intercommunicability intercommunicable intercommunicate intercommunicated intercommunicates intercommunicating intercommunication intercommunicational intercommunications intercommunicative intercommunicator intercommunicators intercommuning intercommunion intercommunional intercommunions intercommunities intercommunity intercompany intercomparable intercompare intercompared intercompares intercomparing intercomparison intercomparisons intercomplexity intercomplimentary intercomprehensibilities intercomprehensibility intercoms interconal interconciliary intercondenser intercondylar intercondylic intercondyloid interconfessional interconfound interconnect interconnected interconnectedness interconnectednesses interconnectible interconnecting interconnection interconnections interconnector interconnectors interconnects interconnexion interconnexions interconsonantal intercontinental intercontorted intercontradiction intercontradictory interconversion interconversions interconvert interconverted interconvertibilities interconvertibility interconvertible interconvertibly interconverting interconverts intercooled intercooler intercoolers intercooling intercoracoid intercorporate intercorpuscular intercorrelate intercorrelated intercorrelates intercorrelating intercorrelation intercorrelations intercortical intercosmic intercosmically intercostal intercostally intercostals intercostobrachial intercostohumeral intercotylar intercountry intercounty intercouple intercoupled intercoupling intercourse intercourses intercoxal intercranial intercrater intercreate intercreated intercreating intercreedal intercrescence intercrinal intercrop intercropped intercropping intercrops intercross intercrossed intercrosses intercrossing intercrural intercrust intercrystalline intercrystallisation intercrystallise intercrystallization intercrystallize intercultural interculturally interculture intercultures intercupola intercur intercurl intercurrence intercurrences intercurrent intercurrently intercursation intercuspidal intercut intercutaneous intercuts intercutting intercystic interdash interdashed interdashes interdashing interdata interdeal interdealer interdealers interdealing interdeals interdealt interdebate interdebated interdebating interdenominational interdenominationalism interdental interdentally interdentals interdentil interdepartmental interdepartmentally interdepend interdependability interdependable interdepended interdependence interdependences interdependencies interdependency interdependent interdependently interdepending interdepends interderivative interdespise interdestructive interdestructively interdestructiveness interdetermination interdetermine interdetermined interdetermining interdevour interdialectal interdict interdicted interdicting interdiction interdictions interdictive interdictor interdictors interdictory interdicts interdictum interdifferentiate interdifferentiated interdifferentiating interdifferentiation interdiffuse interdiffused interdiffuses interdiffusiness interdiffusing interdiffusion interdiffusions interdiffusive interdiffusiveness interdigital interdigitally interdigitate interdigitated interdigitates interdigitating interdigitation interdigitations interdine interdined interdines interdining interdiscal interdisciplinary interdispensation interdistinguish interdistrict interdivision interdivisional interdome interdominion interdorsal interdrink intereat interelectrode interelectrodes interelectrodic interelectron interelectronic interembrace interembraced interembracing interempire interemption interenjoy interentangle interentangled interentanglement interentangling interepidemic interepimeral interepithelial interequinoctial interess interesse interessed interessee interesses interessing interessor interest interested interestedly interestedness interestednesses interester interesterification interesting interestingly interestingness interestingnesses interestless interests interestuarine interethnic interexchange interface interfaced interfacer interfaces interfacial interfacing interfacings interfactional interfaculties interfaculty interfaith interfamilial interfamily interfascicular interfault interfector interfederation interfemoral interfenestral interfenestration interfenestrations interferant interfere interfered interference interferences interferent interferential interferer interferers interferes interfering interferingly interferingness interferogram interferograms interferometer interferometers interferometric interferometrically interferometries interferometry interferon interferons interferric interfertile interfertilities interfertility interfiber interfibrillar interfibrillary interfibrous interfilamentar interfilamentary interfilamentous interfilar interfile interfiled interfiles interfiling interfilling interfiltrate interfiltrated interfiltrating interfiltration interfinger interfirm interflange interflashing interflow interflowed interflowing interflows interfluence interfluences interfluent interfluminal interfluous interfluve interfluves interfluvial interflux interfold interfolded interfolding interfolds interfoliaceous interfoliar interfoliate interfoliated interfoliates interfoliating interfollicular interforce interframe interfraternal interfraternally interfraternity interfret interfretted interfriction interfrontal interfruitful interfulgent interfuse interfused interfuses interfusing interfusion interfusions intergalactic intergalactically intergang interganglionic intergatory intergenerant intergenerating intergeneration intergenerational intergenerations intergenerative intergeneric intergential intergesture intergilt interglacial interglacials interglandular interglobular interglyph intergonial intergossip intergossiped intergossiping intergossipped intergossipping intergovernmental intergovernmentally intergradation intergradational intergradations intergrade intergraded intergrades intergradient intergrading intergraft intergrafted intergrafting intergrafts intergranular intergrapple intergrappled intergrappling intergrave intergrew intergroup intergroupal intergrow intergrowing intergrown intergrows intergrowth intergrowths intergular intergyral interhabitation interhaemal interhemal interhemispheric interhostile interhuman interhyal interhybridise interhybridize interhybridized interhybridizing interieur interim interimist interimistic interimistical interimistically interimperial interims interincorporation interindependence interindicate interindicated interindicating interindividual interindustry interinfluence interinfluenced interinfluences interinfluencing interinhibition interinhibitive interinsert interinstitutional interinsular interinsurance interinsurer interinvolve interinvolved interinvolves interinvolving interionic interior interiorisation interiorise interiorised interiorises interiorising interiorism interiorist interiorities interiority interiorization interiorizations interiorize interiorized interiorizes interiorizing interiorly interiorness interiors interirrigation interisland interj interjacence interjacencies interjacency interjacent interjaculate interjaculated interjaculateded interjaculates interjaculating interjaculatory interjangle interjealousy interject interjected interjecting interjection interjectional interjectionalise interjectionalised interjectionalising interjectionalize interjectionalized interjectionalizing interjectionally interjectionary interjectionise interjectionize interjections interjectiveness interjector interjectorily interjectors interjectory interjects interjectural interjoin interjoinder interjoined interjoining interjoins interjoist interjudgement interjudgment interjugal interjugular interjunction interjurisdictional interkineses interkinesis interkinetic interknit interknits interknitted interknitting interknot interknotted interknotting interknow interknowledge interlabial interlaboratory interlace interlaced interlacedly interlacement interlacements interlacer interlacery interlaces interlacing interlacustrine interlaid interlain interlake interlamellar interlamellation interlaminar interlaminate interlaminated interlaminates interlaminating interlamination interlaminations interlanguage interlanguages interlap interlapped interlapping interlaps interlapse interlard interlardation interlarded interlarding interlardment interlards interlatitudinal interlaudation interlay interlayer interlayered interlayering interlayers interlaying interlays interleaf interleague interleave interleaved interleaver interleaves interleaving interlend interlending interlends interlent interleukin interleukins interlibel interlibeled interlibelling interlibrary interlie interligamentary interligamentous interlight interlimitation interline interlineal interlineally interlinear interlinearily interlinearly interlinears interlineary interlineate interlineated interlineates interlineating interlineation interlineations interlined interlinement interliner interliners interlines interlingua interlingual interlingually interlinguas interlinguist interlinguistic interlining interlinings interlink interlinkage interlinked interlinking interlinks interlisp interloan interlobar interlobate interlobular interlocal interlocally interlocate interlocated interlocating interlocation interlocations interlock interlocked interlocker interlocking interlocks interlocular interloculli interloculus interlocus interlocution interlocutions interlocutive interlocutor interlocutorily interlocutors interlocutory interlocutress interlocutresses interlocutrice interlocutrices interlocutrix interlocutrixes interloli interloop interlope interloped interloper interlopers interlopes interloping interlot interlotted interlotting interlucate interlucation interlucent interlude interluded interluder interludes interludial interluding interluency interlunar interlunary interlunation interlunations interlying intermachine intermalar intermale intermalleolar intermammary intermammillary intermandibular intermanorial intermarginal intermarine intermarriage intermarriageable intermarriages intermarried intermarries intermarry intermarrying intermason intermastoid intermat intermatch intermats intermatted intermatting intermaxilla intermaxillae intermaxillar intermaxillaries intermaxillary intermaze intermazed intermazing intermean intermeasurable intermeasure intermeasured intermeasuring intermeddle intermeddled intermeddlement intermeddler intermeddlers intermeddles intermeddlesome intermeddlesomeness intermeddling intermeddlingly intermede intermedia intermediacies intermediacy intermediae intermedial intermediaries intermediary intermediate intermediated intermediately intermediateness intermediatenesses intermediates intermediating intermediation intermediations intermediator intermediators intermediatory intermedin intermedins intermedious intermedium intermediums intermedius intermeet intermeeting intermell intermelt intermembral intermembrane intermembranous intermeningeal intermenstrual intermenstruum interment intermental intermention interments intermercurial intermesenterial intermesenteric intermesh intermeshed intermeshes intermeshing intermessage intermessenger intermet intermetacarpal intermetallic intermetallics intermetameric intermetatarsal intermew intermewed intermewer intermezzi intermezzo intermezzos intermiddle intermigrate intermigrated intermigrating intermigration intermigrations interminabilities interminability interminable interminableness interminablenesses interminably interminant interminate interminated intermination intermine intermined intermingle intermingled intermingledom interminglement intermingles intermingling intermining interminister interministerial interministerium intermise intermission intermissionless intermissions intermissive intermit intermitotic intermits intermitted intermittedly intermittence intermittences intermittencies intermittency intermittent intermittently intermitter intermitters intermitting intermittingly intermittor intermix intermixable intermixed intermixedly intermixes intermixing intermixt intermixtly intermixture intermixtures intermmet intermobility intermodal intermodification intermodillion intermodulation intermodulations intermodule intermolar intermolecular intermolecularly intermomentary intermont intermontane intermorainic intermotion intermountain intermundane intermundial intermundian intermundium intermunicipal intermunicipality intermural intermure intermured intermures intermuring intermuscular intermuscularity intermuscularly intermutation intermutual intermutually intermutule intern internal internalisation internalisations internalise internalised internalises internalising internalities internality internalization internalizations internalize internalized internalizes internalizing internally internalness internalnesses internals internarial internasal internat internation international internationale internationalisation internationalisations internationalise internationalised internationalises internationalising internationalism internationalisms internationalist internationalistic internationalists internationalities internationality internationalization internationalizations internationalize internationalized internationalizes internationalizing internationally internationals internatl interne interneciary internecinal internecine internecion internecive internect internection interned internee internees internegative internement internements internes internescine interneship interneships internet internetted internetting internetwork internetworking internetworks interneural interneuron interneuronal interneuronic interneurons internidal interning internist internists internity internment internments internobasal internodal internode internodes internodia internodial internodian internodium internodular interns internship internships internuclear internucleon internucleonic internucleotide internunce internuncial internuncially internunciary internunciatory internunciess internuncio internuncios internuncioship internuncius internuptial internuptials interobjective interobserver interobservers interocean interoceanic interoception interoceptive interoceptor interoceptors interocular interoffice interolivary interoperabilities interoperability interoperable interoperative interoperatives interopercle interopercular interoperculum interoptic interorbital interorbitally interorgan interorganisational interorganizational interoscillate interoscillated interoscillating interosculant interosculate interosculated interosculates interosculating interosculation interosculations interosseal interossei interosseous interosseus interownership interpage interpaged interpages interpaging interpalatine interpale interpalpebral interpandemic interpapillary interparenchymal interparental interparenthetic interparenthetical interparenthetically interparietal interparietale interparish interparliament interparliamentary interparochial interparoxysmal interparticle interparty interpass interpause interpave interpaved interpaving interpeal interpectoral interpeduncular interpel interpellant interpellants interpellate interpellated interpellates interpellating interpellation interpellations interpellator interpellators interpelled interpelling interpendent interpenetrable interpenetrant interpenetrate interpenetrated interpenetrates interpenetrating interpenetration interpenetrations interpenetrative interpenetratively interperceptual interpermeate interpermeated interpermeates interpermeating interpersonal interpersonally interpervade interpervaded interpervading interpervasive interpervasively interpervasiveness interpetaloid interpetalous interpetiolar interpetiolary interphalangeal interphase interphases interphone interphones interpiece interpilaster interpilastering interpilasters interplace interplacental interplait interplanetary interplant interplanted interplanting interplants interplay interplayed interplaying interplays interplea interplead interpleaded interpleader interpleaders interpleading interpleads interpled interpledge interpledged interpledging interpleural interplical interplicate interplication interplight interpluvial interpoint interpoints interpol interpolable interpolant interpolar interpolary interpolatable interpolate interpolated interpolater interpolaters interpolates interpolating interpolation interpolations interpolative interpolatively interpolator interpolators interpolatory interpole interpolish interpolitical interpolity interpollinate interpollinated interpollinating interpolymer interpone interponed interpones interponing interpopulation interpopulational interportal interposable interposal interposals interpose interposed interposer interposers interposes interposing interposingly interposition interpositions interposure interpour interppled interppoliesh interprater interpressure interpret interpretabilities interpretability interpretable interpretableness interpretablenesses interpretably interpretament interpretate interpretated interpretates interpretating interpretation interpretational interpretations interpretative interpretatively interpreted interpreter interpreters interpretership interpreterships interpretess interpretesses interpreting interpretive interpretively interpretorial interpretress interpretresses interprets interprismatic interprocess interproduce interproduced interproducing interprofessional interprofessionally interproglottidal interproportional interprotoplasmic interprovincial interproximal interproximate interpsychic interpterygoid interpubic interpulmonary interpunct interpunction interpunctions interpunctuate interpunctuated interpunctuates interpunctuating interpunctuation interpunctuations interpupil interpupillary interquarrel interquarreled interquarreling interquarter interquartile interrace interracial interracialism interracially interradial interradially interradiate interradiated interradiating interradiation interradii interradium interradius interrail interrailed interrailer interrailers interrailing interrails interrailway interramal interramicorn interramification interramifications interran interreact interreceive interreceived interreceiving interrecord interred interreflect interreflection interregal interregency interregent interreges interregimental interregional interregionally interregna interregnal interregnum interregnums interreign interreigns interrelate interrelated interrelatedly interrelatedness interrelatednesses interrelates interrelating interrelation interrelations interrelationship interrelationships interreligious interreligiously interrena interrenal interrenalism interrepellent interrepulsion interrer interresist interresistance interresistibility interresponsibility interresponsible interresponsive interreticular interreticulation interrex interrhyme interrhymed interrhyming interright interring interriven interroad interrobang interrobangs interrog interrogability interrogable interrogant interrogants interrogate interrogated interrogatedness interrogatee interrogatees interrogates interrogating interrogatingly interrogation interrogational interrogations interrogative interrogatively interrogatives interrogator interrogatories interrogatorily interrogators interrogatory interrogatrix interrogee interrogees interroom interrow interrule interruled interruling interrun interrunning interrupt interruptable interrupted interruptedly interruptedness interrupter interrupters interruptibility interruptible interrupting interruptingly interruption interruptions interruptive interruptively interruptor interruptors interruptory interrupts inters intersale intersalute intersaluted intersaluting interscapilium interscapular interscapulum interscendent interscene interscholastic interscholastically interschool interschools interscience interscribe interscribed interscribes interscribing interscription interseaboard interseam interseamed intersecant intersect intersectant intersected intersecting intersection intersectional intersections intersector intersects intersegment intersegmental intersegments interseminal interseminate interseminated interseminating intersensory intersentimental interseptal interseptum intersert intersertal interserted interserting interserts interservice intersesamoid intersession intersessional intersessions interset intersetting intersex intersexes intersexual intersexualism intersexualisms intersexualities intersexuality intersexually intershade intershaded intershading intershifting intershock intershoot intershooting intershop intershot intersidereal intersituate intersituated intersituating intersocial intersocietal intersociety intersoil intersole intersoled intersoling intersolubility intersoluble intersomnial intersomnious intersonant intersow interspace interspaced interspaces interspacing interspatial interspatially interspeaker interspecial interspecies interspecific interspeech interspersal interspersals intersperse interspersed interspersedly intersperses interspersing interspersion interspersions interspheral intersphere interspicular interspinal interspinalis interspinous interspiral interspiration interspire intersporal intersprinkle intersprinkled intersprinkling intersqueeze intersqueezed intersqueezing intersshot interstade interstadial interstadials interstage interstaminal interstapedial interstate interstates interstation interstellar interstellary intersterile intersterilities intersterility intersternal interstice intersticed interstices intersticial interstimulate interstimulated interstimulating interstimulation interstimulations interstimuli interstimulus interstinctive interstitial interstitially interstitials interstition interstitious interstitium interstrain interstrains interstrand interstrands interstratification interstratifications interstratified interstratifies interstratify interstratifying interstreak interstream interstreet interstrial interstriation interstrive interstriven interstriving interstrove interstructure intersubjective intersubjectively intersubjectivities intersubjectivity intersubsistence intersubstitutabilities intersubstitutability intersubstitutable intersubstitution intersuperciliary intersusceptation intersystem intersystematic intersystematical intersystematically intertalk intertangle intertangled intertanglement intertanglements intertangles intertangling intertarsal intertask interteam intertear intertentacular intertergal interterm interterminal interterritorial intertessellation intertestamental intertex intertext intertexts intertextual intertextualities intertextuality intertextually intertexture intertextures interthing interthread interthreaded interthreading interthronging intertidal intertidally intertie intertied intertieing interties intertill intertillage intertillages intertilled intertilling intertills intertinge intertinged intertinging intertissue intertissued intertoll intertone intertongue intertonic intertouch intertown intertrabecular intertrace intertraced intertracing intertrade intertraded intertrading intertraffic intertrafficked intertrafficking intertraffics intertragian intertransformability intertransformable intertranslatable intertransmissible intertransmission intertranspicuous intertransversal intertransversalis intertransversary intertransverse intertrappean intertree intertrial intertribal intertriginous intertriglyph intertrigo intertrigos intertrinitarian intertrochanteric intertrochlear intertroop intertropic intertropical intertropics intertrude intertuberal intertubercular intertubular intertwin intertwine intertwined intertwinement intertwinements intertwines intertwining intertwiningly intertwinings intertwist intertwisted intertwisting intertwistingly intertwists interungular interungulate interunion interunions interunit interuniversity interurban interurbans interureteric intervaginal interval intervale intervaled intervales intervalic intervaling intervalla intervalled intervalley intervalleys intervallic intervalling intervallum intervallums intervalometer intervalometers intervals intervalvular intervariation intervaried intervarietal intervarsity intervary intervarying intervascular intervein interveinal interveined interveining interveinous interveins intervenant intervene intervened intervener interveners intervenes intervenience interveniency intervenient intervenients intervening intervenium intervenor intervenors intervent intervention interventional interventionism interventionisms interventionist interventionists interventions interventive interventor interventors interventral interventralia interventricular intervenue intervenular interverbal interversion intervert intervertebra intervertebral intervertebrally interverting intervesicular interview interviewable interviewed interviewee interviewees interviewer interviewers interviewing interviews intervillage intervillous intervisibilities intervisibility intervisible intervisit intervisitation intervisitations intervital intervocal intervocalic intervocalically intervolute intervolution intervolve intervolved intervolves intervolving interwar interwarred interwarring interweave interweaved interweavement interweavements interweaver interweavers interweaves interweaving interweavingly interwed interweld interwhiff interwhile interwhistle interwhistled interwhistling interwind interwinded interwinding interwinds interwish interword interwork interworked interworking interworkings interworks interworld interworry interwound interwove interwoven interwovenly interwrap interwrapped interwrapping interwreathe interwreathed interwreathes interwreathing interwrought interwwrought interxylary interzonal interzone interzones interzooecial interzygapophysial intestable intestacies intestacy intestate intestates intestation intestinal intestinally intestine intestineness intestines intestiniform intestinovesical intexine intext intextine intexture inthral inthrall inthralled inthralling inthrallment inthralls inthralment inthrals inthrone inthroned inthrones inthrong inthroning inthronistic inthronizate inthronization inthronize inthrow inthrust inti intially intice intifada intifadas intil intill intima intimacies intimacy intimado intimados intimae intimal intimas intimate intimated intimately intimateness intimatenesses intimater intimaters intimates intimating intimation intimations intime intimidate intimidated intimidates intimidating intimidatingly intimidation intimidations intimidator intimidators intimidatory intimidity intimism intimisms intimist intimiste intimistes intimists intimities intimity intimous intinct intinction intinctions intinctivity intine intines intire intis intisy intitle intitled intitles intitling intitulation intitule intituled intitules intituling intl intnl into intoed intolerabilities intolerability intolerable intolerableness intolerablenesses intolerably intolerance intolerances intolerancy intolerant intolerantly intolerantness intolerantnesses intolerants intolerated intolerating intoleration intolerations intollerably intomb intombed intombing intombment intombs intonable intonaci intonaco intonacos intonate intonated intonates intonating intonation intonational intonations intonator intonators intone intoned intonement intonements intoner intoners intones intoning intoningly intonings intoothed intorsion intorsions intort intorted intortillage intorting intortion intortions intorts intortus intourist intower intown intoxation intoxicable intoxicant intoxicantly intoxicants intoxicate intoxicated intoxicatedly intoxicatedness intoxicates intoxicating intoxicatingly intoxication intoxications intoxicative intoxicatively intoxicator intoxicators intoximeter intoximeters intr intra intraabdominal intraarterial intraarterially intrabiontic intrabranchial intrabred intrabronchial intrabuccal intracalicular intracanalicular intracanonical intracapsular intracardiac intracardial intracardially intracarpal intracarpellary intracartilaginous intracavitary intracellular intracellularly intracephalic intracerebellar intracerebral intracerebrally intracervical intrachordal intracistern intracity intraclitelline intracloacal intracoastal intracoelomic intracolic intracollegiate intracommunication intracompany intracontinental intracorporeal intracorpuscular intracortical intracosmic intracosmical intracosmically intracostal intracranial intracranially intractabilities intractability intractable intractableness intractablenesses intractably intractile intracutaneous intracutaneously intracystic intrada intradas intraday intradepartment intradepartmental intradermal intradermally intradermic intradermically intradermo intradistrict intradivisional intrado intrados intradoses intradoss intraduodenal intradural intraecclesiastical intraepiphyseal intraepithelial intrafactory intrafallopian intrafascicular intrafissural intrafistular intrafoliaceous intraformational intrafusal intragalactic intragantes intragastric intragemmal intragenic intraglacial intraglandular intraglobular intragroup intragroupal intragyral intrahepatic intrahyoid intrail intraimperial intrait intrajugular intralamellar intralaryngeal intralaryngeally intraleukocytic intraligamentary intraligamentous intraliminal intraline intralingual intralinguistic intralobar intralobular intralocular intralogical intralumbar intramachine intramammary intramarginal intramastoid intramatrical intramatrically intramedullary intramembranous intrameningeal intramental intramercurial intrametropolitan intramolecular intramolecularly intramontane intramorainic intramundane intramural intramuralism intramurally intramuscular intramuscularly intramyocardial intranarial intranasal intranasally intranatal intranational intraneous intranet intranets intranetwork intraneural intranidal intranquil intranquillity intrans intranscalency intranscalent intransferable intransferrable intransformable intransfusible intransgressible intransient intransigeance intransigeances intransigeancies intransigeancy intransigeant intransigeantism intransigeantisms intransigeantist intransigeantists intransigeantly intransigeants intransigence intransigences intransigencies intransigency intransigent intransigentism intransigentisms intransigentist intransigentists intransigently intransigents intransitable intransitive intransitively intransitiveness intransitivenesses intransitives intransitivities intransitivity intransitivize intransitu intranslatable intransmissible intransmutabilities intransmutability intransmutable intransparency intransparent intrant intrants intranuclear intraoctave intraocular intraocularly intraoffice intraoral intraorbital intraorganisation intraorganization intraossal intraosseous intraosteal intraovarian intrap intrapair intraparenchymatous intraparietal intraparochial intraparty intrapelvic intrapericardiac intrapericardial intraperineal intraperiosteal intraperitoneal intraperitoneally intrapersonal intrapersonally intrapetiolar intraphilosophic intrapial intraplacental intraplant intraplate intrapleural intrapolar intrapontine intrapopulation intrapreneur intrapreneurial intrapreneurialism intrapreneurialisms intrapreneurially intrapreneurs intrapreneurship intrapreneurships intraprocess intraprocessor intraprostatic intraprotoplasmic intrapsychic intrapsychical intrapsychically intrapulmonary intrapyretic intrarachidian intrarectal intrarelation intrarenal intraretinal intrarhachidian intraschool intrascrotal intrasegmental intraselection intrasellar intraseminal intrasentential intraseptal intraserous intrasexual intrashop intraspecies intraspecific intraspecifically intraspinal intraspinally intrastate intrastromal intrasusception intrasynovial intratarsal intrate intratelluric intraterritorial intratesticular intrathecal intrathecally intrathoracic intrathoracically intrathyroid intratomic intratonsillar intratrabecular intratracheal intratracheally intratropical intratubal intratubular intratympanic intrauterine intravaginal intravalvular intravasation intravasations intravascular intravascularly intravenous intravenouses intravenously intraventricular intraventricularly intraverbal intraversable intravertebral intravertebrally intravesical intravital intravitally intravitam intravitelline intravitreous intraxylary intrazonal intreasure intreat intreatable intreated intreatfull intreaties intreating intreatingly intreative intreatment intreatments intreats intreaty intrench intrenchant intrenched intrencher intrenches intrenching intrenchment intrenchments intrepid intrepidities intrepidity intrepidly intrepidness intrepidnesses intricable intricacies intricacy intricate intricately intricateness intricatenesses intrication intrigant intrigante intrigantes intrigants intrigaunt intrigo intriguant intriguante intriguantes intriguants intrigue intrigued intrigueproof intriguer intriguers intriguery intrigues intriguess intriguing intriguingly intrince intrine intrinse intrinsic intrinsical intrinsicalities intrinsicality intrinsically intrinsicalness intrinsicalnesses intrinsicate intro introactive introceptive introconversion introconvertibility introconvertible introd introdden introduce introduced introducee introducement introducer introducers introduces introducible introducing introduct introduction introductions introductive introductively introductor introductorily introductoriness introductorinesses introductory introductress introfaction introfied introfier introfies introflex introflexion introfy introfying introgressant introgressants introgression introgressions introgressive introinflection introit introits introitus introituses introject introjected introjecting introjection introjections introjective introjects introld intromissibility intromissible intromission intromissions intromissive intromit intromits intromitted intromittence intromittent intromitter intromitters intromitting intron introns intropin intropression intropulsive intropunitive introreception introrsal introrse introrsely intros introscope introsensible introsentient introspect introspectable introspected introspectible introspecting introspection introspectional introspectionism introspectionisms introspectionist introspectionistic introspectionists introspections introspective introspectively introspectiveness introspectivenesses introspectivism introspectivist introspector introspects introsuction introsume introsuscept introsusception introsusceptions introthoracic introtraction introvenient introverse introversibility introversible introversion introversions introversive introversively introvert introverted introvertedness introverting introvertish introvertive introverts introvision introvolution intrudance intrude intruded intruder intruders intrudes intruding intrudingly intrudress intrunk intrus intruse intrusion intrusional intrusionism intrusionist intrusionists intrusions intrusive intrusively intrusiveness intrusivenesses intrusives intruso intrust intrusted intrusting intrustment intrustments intrusts intsv intubate intubated intubates intubating intubation intubationist intubations intubator intubatting intube intue intuent intuicity intuit intuitable intuited intuiting intuition intuitional intuitionalism intuitionalisms intuitionalist intuitionalists intuitionally intuitionism intuitionisms intuitionist intuitionistic intuitionists intuitionless intuitions intuitive intuitively intuitiveness intuitivenesses intuitivism intuitivisms intuitivist intuito intuits intumesce intumesced intumescence intumescences intumescency intumescent intumesces intumescing intumulate intune inturbidate inturbidated inturbidates inturbidating inturgescence inturn inturned inturning inturns intuse intuses intussuscept intussuscepted intussuscepting intussusception intussusceptions intussusceptive intussuscepts intwine intwined intwinement intwines intwining intwist intwisted intwisting intwists inuit inukshuk inukshuks inula inulaceous inulas inulase inulases inulin inulins inuloid inumbrate inumbrated inumbrates inumbrating inumbration inunct inunction inunctions inunctum inunctuosity inunctuous inundable inundant inundate inundated inundates inundating inundation inundations inundator inundators inundatory inunderstandable inunderstanding inurbane inurbanely inurbaneness inurbanities inurbanity inure inured inuredness inurednesses inurement inurements inures inuring inurn inurned inurning inurnment inurnments inurns inusitate inusitateness inusitation inusitations inust inustion inustions inutile inutilely inutilities inutility inutilized inutterable inv invaccinate invaccination invadable invade invaded invader invaders invades invading invaginable invaginate invaginated invaginates invaginating invagination invaginations invalescence invaletudinary invalid invalidate invalidated invalidates invalidating invalidation invalidations invalidator invalidators invalidcy invalided invalidhood invalidhoods invaliding invalidings invalidish invalidism invalidisms invalidities invalidity invalidly invalidness invalidnesses invalids invalidship invalorous invaluable invaluableness invaluablenesses invaluably invalued invar invariabilities invariability invariable invariableness invariablenesses invariables invariably invariance invariances invariancy invariant invariantive invariantively invariantly invariants invaried invars invasion invasionary invasionist invasions invasive invasively invasiveness invasivenesses inveagle inveagled inveagles inveagling invecked invect invected invection invective invectively invectiveness invectivenesses invectives invectivist invector inveigh inveighed inveigher inveighers inveighing inveighs inveigle inveigled inveiglement inveiglements inveigler inveiglers inveigles inveigling inveil invein invendibilities invendibility invendible invendibleness inveneme invenient invenit invent inventable inventary invented inventer inventers inventful inventibility inventible inventibleness inventing invention inventional inventionless inventions inventive inventively inventiveness inventivenesses inventor inventoriable inventorial inventorially inventoried inventories inventors inventory inventorying inventress inventresses invents inventurous inveracious inveracities inveracity inverebrate inverisimilitude inverities inverity inverminate invermination invernacular inverness invernesses inversable inversatile inverse inversed inversedly inversely inverses inversing inversion inversionist inversions inversive inversor invert invertant invertase invertases invertebracy invertebral invertebrata invertebrate invertebrated invertebrateness invertebrates inverted invertedly invertend inverter inverters invertibilities invertibility invertible invertibrate invertibrates invertile invertin inverting invertins invertive invertor invertors inverts invest investable invested investible investient investigable investigatable investigate investigated investigates investigating investigatingly investigation investigational investigations investigative investigator investigatorial investigators investigatory investing investion investitive investitor investiture investitures investment investments investor investors invests investure inveteracies inveteracy inveterate inveterately inveterateness inveteratenesses inveteration invexed inviabilities inviability inviable inviably invict invicted invictive invidia invidious invidiously invidiousness invidiousnesses invigilance invigilancy invigilate invigilated invigilates invigilating invigilation invigilations invigilator invigilators invigor invigorant invigorants invigorate invigorated invigorates invigorating invigoratingly invigoratingness invigoration invigorations invigorative invigoratively invigorator invigorators invigour invile invillage invinate invination invincibilities invincibility invincible invincibleness invinciblenesses invincibly inviolabilities inviolability inviolable inviolableness inviolablenesses inviolably inviolacies inviolacy inviolate inviolated inviolately inviolateness inviolatenesses invious inviousness invirile invirility invirtuate inviscate inviscation inviscerate inviscid inviscidity invised invisibilities invisibility invisible invisibleness invisiblenesses invisibles invisibly invision invitable invital invitant invitation invitational invitationals invitations invitatories invitatory invite invited invitee invitees invitement invitements inviter inviters invites invitiate inviting invitingly invitingness invitingnesses invitings invitor invitors invitress invitrifiable invivid invocable invocant invocate invocated invocates invocating invocation invocational invocations invocative invocator invocatory invoice invoiced invoices invoicing invokable invoke invoked invoker invokers invokes invoking involatile involatility involucel involucelate involucelated involucellate involucellated involucels involucra involucral involucrate involucre involucred involucres involucriform involucrum involucrums involuntarily involuntariness involuntarinesses involuntary involute involuted involutedly involutely involutes involuting involution involutional involutionary involutions involutorial involutory involve involved involvedly involvedness involvement involvements involvent involver involvers involves involving invoy invt invulgar invulnerabilities invulnerability invulnerable invulnerableness invulnerablenesses invulnerably invulnerate invultuation invultuations invultvation inwale inwall inwalled inwalling inwalls inwandering inward inwardly inwardness inwardnesses inwards inweave inweaved inweaves inweaving inwedged inweed inweight inwheel inwick inwicked inwicking inwicks inwind inwinding inwinds inwit inwith inwits inwood inwork inworked inworking inworkings inworks inworn inwound inwove inwoven inwrap inwrapment inwrapped inwrapping inwraps inwrapt inwreathe inwreathed inwreathes inwreathing inwrit inwritten inwrought inyala inyalas inyoite inyoke io iocs ioctl iodal iodate iodated iodates iodating iodation iodations iode iodhydrate iodhydric iodhydrin iodic iodid iodide iodides iodids iodiferous iodimetric iodimetry iodin iodinate iodinated iodinates iodinating iodination iodinations iodine iodines iodinium iodinophil iodinophile iodinophilic iodinophilous iodins iodisation iodise iodised iodiser iodisers iodises iodising iodism iodisms iodite iodization iodizations iodize iodized iodizer iodizers iodizes iodizing iodo iodobehenate iodobenzene iodobromite iodocasein iodochlorid iodochloride iodochromate iodocompound iodocresol iododerma iodoethane iodoform iodoforms iodogallicin iodohydrate iodohydric iodohydrin iodol iodols iodomercurate iodomercuriate iodomethane iodometric iodometrical iodometrically iodometry iodonium iodophile iodophor iodophors iodoprotein iodopsin iodopsins iodoso iodosobenzene iodospongin iodotannic iodotherapy iodothyrin iodothyronine iodotyrosine iodous iodoxy iodoxybenzene ioduret iodurets iodyrite iodyrites iof iolite iolites ion ionate ionia ionian ionic ionical ionicities ionicity ionics ionisable ionisation ionisations ionise ionised ioniser ionisers ionises ionising ionium ioniums ionizable ionization ionizations ionize ionized ionizer ionizers ionizes ionizing ionogen ionogenic ionogens ionomer ionomers ionone ionones ionopause ionopauses ionophore ionophores ionophoreses ionophoresis ionosphere ionospheres ionospheric ionospherically ions iontophoreses iontophoresis iontophoretic iontophoretically ioparameters iortn ios iota iotacism iotacisms iotacismus iotacist iotas iotization iotize iotized iotizing iou iowa iowan iowans ioway iowt ipecac ipecacs ipecacuanha ipecacuanhas ipecacuanhic iph iphigenia ipid ipidae ipil ipilipil ipl ipm ipo ipocras ipomea ipomoea ipomoeas ipomoein ippon ippons ipr ipratropium ipratropiums iprindole iprindoles iproniazid iproniazids ips ipse ipseand ipsedixitish ipsedixitism ipsedixitist ipseity ipselateral ipsilateral ipsilaterally ipso ipsus iq iqs ir ira iracund iracundities iracundity iracundulous irade irades irak iraki iran irani iranian iranians iraq iraqi iraqis irascent irascibilities irascibility irascible irascibleness irasciblenesses irascibly irate irately irateness iratenesses irater iratest irbis irchin ire ired ireful irefully irefulness irefulnesses ireland irelander ireless irena irenarch irene irenic irenica irenical irenically irenicism irenicisms irenicist irenicon irenicons irenics irenicum irenidae irenologies irenology ireos ires iresine irian iricism irid iridaceae iridaceous iridadenosis iridal iridalgia iridate iridauxesis irideal iridectome iridectomies iridectomise iridectomised iridectomising iridectomize iridectomized iridectomizing iridectomy iridectropium iridemia iridencleisis iridentropium irideous irideremia irides iridesce iridescence iridescences iridescency iridescent iridescently iridial iridian iridiate iridic iridical iridin iridine iridiocyte iridiophore iridioplatinum iridious iridisation iridisations iridise iridised iridises iridising iridite iridium iridiums iridization iridizations iridize iridized iridizes iridizing irido iridoavulsion iridocapsulitis iridocele iridoceratitic iridochoroiditis iridocoloboma iridoconstrictor iridocyclitis iridocyte iridodesis iridodiagnosis iridodiagnostics iridodialysis iridodonesis iridokeratitis iridokinesia iridoline iridologies iridologist iridologists iridology iridomalacia iridomotor iridoncus iridoparalysis iridophore iridoplegia iridoprocne iridoptosis iridopupillary iridorhexis iridosclerotomy iridosmine iridosmines iridosmium iridosmiums iridotasis iridotome iridotomies iridotomy iridous irids iring iris irisate irisated irisates irisating irisation irisations iriscope iriscopes irised irises irish irishism irishman irishmen irishry irishwoman irishwomen irisin irising irislike irisroot iritic iritis iritises irk irked irking irks irksome irksomely irksomeness irksomenesses irok iroko irokos iron ironback ironbark ironbarks ironbound ironbush ironclad ironclads irone ironed ironer ironers irones ironfisted ironflower ironhanded ironhandedly ironhandedness ironhandednesses ironhard ironhead ironheaded ironheads ironhearted ironheartedly ironheartedness ironic ironical ironically ironicalness ironicalnesses ironice ironier ironies ironiest ironing ironings ironiously ironise ironised ironises ironish ironising ironism ironist ironists ironize ironized ironizes ironizing ironless ironlike ironly ironmaker ironmaking ironman ironmaster ironmasters ironmen ironmonger ironmongeries ironmongering ironmongers ironmongery ironness ironnesses irons ironshod ironshot ironside ironsided ironsides ironsmith ironsmiths ironstone ironstones irontree ironware ironwares ironweed ironweeds ironwood ironwoods ironwork ironworked ironworker ironworkers ironworking ironworks ironwort irony iroquoian iroquoians iroquois irous irpe irradiance irradiances irradiancies irradiancy irradiant irradiate irradiated irradiates irradiating irradiatingly irradiation irradiations irradiative irradiator irradiators irradicable irradicably irradicate irradicated irradicates irradicating irrarefiable irrate irrationability irrationable irrationably irrational irrationalise irrationalised irrationalises irrationalising irrationalism irrationalisms irrationalist irrationalistic irrationalists irrationalities irrationality irrationalize irrationalized irrationalizes irrationalizing irrationally irrationalness irrationalnesses irrationals irreal irrealisable irrealities irreality irrealizable irrebuttable irreceptive irreceptivity irreciprocal irreciprocities irreciprocity irreclaimabilities irreclaimability irreclaimable irreclaimableness irreclaimablenesses irreclaimably irreclaimed irrecognisable irrecognition irrecognitions irrecognizability irrecognizable irrecognizably irrecognizant irrecollection irreconcilabilities irreconcilability irreconcilable irreconcilableness irreconcilablenesses irreconcilables irreconcilably irreconcile irreconciled irreconcilement irreconcilements irreconciliability irreconciliable irreconciliableness irreconciliably irreconciliation irrecordable irrecoverable irrecoverableness irrecoverablenesses irrecoverably irrecuperable irrecurable irrecusable irrecusably irred irredeemabilities irredeemability irredeemable irredeemableness irredeemablenesses irredeemables irredeemably irredeemed irredenta irredentas irredential irredentism irredentisms irredentist irredentists irredressibility irredressible irredressibly irreducibilities irreducibility irreducible irreducibleness irreduciblenesses irreducibly irreductibilities irreductibility irreductible irreduction irreductions irreferable irreflection irreflections irreflective irreflectively irreflectiveness irreflexion irreflexions irreflexive irreformabilities irreformability irreformable irreformably irrefragabilities irrefragability irrefragable irrefragableness irrefragablenesses irrefragably irrefrangibilities irrefrangibility irrefrangible irrefrangibleness irrefrangiblenesses irrefrangibly irrefusable irrefutabilities irrefutability irrefutable irrefutableness irrefutablenesses irrefutably irreg irregardless irregeneracy irregenerate irregeneration irregular irregularise irregularism irregularist irregularities irregularity irregularize irregularly irregularness irregulars irregulate irregulated irregulation irregulous irrejectable irrelapsable irrelate irrelated irrelation irrelations irrelative irrelatively irrelativeness irrelativenesses irrelevance irrelevances irrelevancies irrelevancy irrelevant irrelevantly irreliability irrelievable irreligion irreligionism irreligionist irreligionists irreligionize irreligions irreligiosity irreligious irreligiously irreligiousness irreligiousnesses irreluctant irremeable irremeably irremediable irremediableness irremediablenesses irremediably irremediless irrememberable irremissibilities irremissibility irremissible irremissibleness irremissiblenesses irremissibly irremission irremissions irremissive irremittable irremovabilities irremovability irremovable irremovableness irremovablenesses irremovably irremunerable irrenderable irrenewable irrenowned irrenunciable irrepair irrepairable irreparabilities irreparability irreparable irreparableness irreparablenesses irreparably irrepassable irrepatriable irrepealabilities irrepealability irrepealable irrepealableness irrepealablenesses irrepealably irrepentance irrepentant irrepentantly irrepetant irreplacable irreplacably irreplaceabilities irreplaceability irreplaceable irreplaceableness irreplaceablenesses irreplaceably irrepleviable irreplevisable irreportable irreprehensibility irreprehensible irreprehensibleness irreprehensiblenesses irreprehensibly irrepresentable irrepresentableness irrepressibilities irrepressibility irrepressible irrepressibleness irrepressiblenesses irrepressibly irrepressive irreproachabilities irreproachability irreproachable irreproachableness irreproachablenesses irreproachably irreproducibilities irreproducibility irreproducible irreproductive irreprovable irreprovableness irreprovablenesses irreprovably irreption irreptitious irrepublican irreputable irresilience irresiliency irresilient irresistable irresistably irresistance irresistances irresistibilities irresistibility irresistible irresistibleness irresistiblenesses irresistibly irresistless irresolubilities irresolubility irresoluble irresolubleness irresolubly irresolute irresolutely irresoluteness irresolutenesses irresolution irresolutions irresolvabilities irresolvability irresolvable irresolvableness irresolvablenesses irresolvably irresolved irresolvedly irresonance irresonant irrespectability irrespectable irrespectful irrespective irrespectively irrespirable irrespondence irresponsibilities irresponsibility irresponsible irresponsibleness irresponsiblenesses irresponsibles irresponsibly irresponsive irresponsively irresponsiveness irresponsivenesses irrestrainable irrestrainably irrestrictive irresultive irresuscitable irresuscitably irretention irretentions irretentive irretentiveness irretentivenesses irreticence irreticent irretraceable irretraceably irretractable irretractile irretrievabilities irretrievability irretrievable irretrievableness irretrievablenesses irretrievably irreturnable irrevealable irrevealably irreverence irreverences irreverend irreverendly irreverent irreverential irreverentialism irreverentially irreverently irreversibilities irreversibility irreversible irreversibleness irreversiblenesses irreversibly irrevertible irreviewable irrevisable irrevocabilities irrevocability irrevocable irrevocableness irrevocablenesses irrevocably irrevokable irrevoluble irrhation irride irridenta irridentas irridentism irridentist irrigable irrigably irrigant irrigate irrigated irrigates irrigating irrigation irrigational irrigationist irrigations irrigative irrigator irrigatorial irrigators irrigatory irriguous irriguousness irrisible irrision irrisions irrisor irrisory irritabilities irritability irritable irritableness irritablenesses irritably irritament irritancies irritancy irritant irritants irritate irritated irritatedly irritates irritating irritatingly irritation irritations irritative irritativeness irritator irritators irritatory irrite irritomotile irritomotility irrogate irrorate irrorated irroration irrotational irrotationally irrubrical irrugate irrumation irrupt irrupted irruptible irrupting irruption irruptions irruptive irruptively irrupts irs irtish irtysh irula irvingia irvingite is isaac isabel isabelina isabelita isabelite isabella isabellas isabelline isabellines isabels isabnormal isaconitine isacoustic isadelphous isadnormal isagoge isagoges isagogic isagogical isagogically isagogics isagon isaiah isallobar isallobaric isallobars isallotherm isamin isamine isandrous isanemone isangoma isanomal isanomalous isanthous isapostolic isarioid isarithm isarithms isatate isatic isatid isatide isatin isatine isatines isatinic isatins isatis isatogen isatogenic isauxesis isauxetic isazoxy isba isbas iscariot ischaemia ischaemias ischaemic ischaemics ischar ischchia ischemia ischemias ischemic ischia ischiac ischiadic ischiadicus ischial ischialgia ischialgic ischiatic ischidrosis ischigualastia ischioanal ischiobulbar ischiocapsular ischiocaudal ischiocavernosus ischiocavernous ischiocele ischiocerite ischiococcygeal ischiofemoral ischiofibular ischioiliac ischioneuralgia ischioperineal ischiopodite ischiopubic ischiopubis ischiorectal ischiorrhogic ischiosacral ischiotibial ischiovaginal ischiovertebral ischium ischocholia ischuretic ischuretics ischuria ischurias ischury iscose isdn ise ised isenergic isenthalpic isentrope isentropic isentropically isepiptesial isepiptesis isere iserine iserite isethionate isethionic iseult ish ishes ishime ishmael ishmaelite ishpingo ishshakku ishtar isiac isicle isidia isidiiferous isidioid isidiophorous isidiose isidium isidoid isidorian isindazole ising isinglass isinglasses isis isize iskcon isl islam islamabad islamic islamism island islanded islander islanders islandhood islandic islanding islandish islandless islandlike islandman islandmen islandologist islandology islandress islandry islands islandy islay isle isled isleless isleman islemen isles islesman islesmen islet isleted islets isleward isling islot isls ism ismaelian ismaelite ismal ismatic ismatical ismaticalness ismaticalnesses ismdom isms ismy isn isnad isnt iso isoabnormal isoagglutination isoagglutinations isoagglutinative isoagglutinin isoagglutinins isoagglutinogen isoalantolactone isoalloxazine isoalloxazines isoallyl isoamarine isoamid isoamide isoaminile isoaminiles isoamyl isoamylamine isoamylene isoamylethyl isoamylidene isoantibodies isoantibody isoantigen isoantigenic isoantigenicity isoantigens isoapiole isoasparagine isoaurore isobar isobarbaloin isobarbituric isobare isobares isobaric isobarism isobarisms isobarometric isobars isobase isobases isobath isobathic isobaths isobathytherm isobathythermal isobathythermic isobenzofuran isobilateral isobilianic isobiogenetic isoborneol isobornyl isobront isobronton isobronts isobutane isobutanes isobutene isobutyl isobutylene isobutylenes isobutyls isobutyraldehyde isobutyrate isobutyric isobutyryl isocaloric isocamphor isocamphoric isocaproic isocarbostyril isocarboxazid isocarboxazids isocarpic isocarpous isocellular isocephalic isocephalism isocephalous isocephaly isoceraunic isocercal isocercy isochasm isochasmic isochasms isocheim isocheimal isocheimals isocheimenal isocheimenals isocheimic isocheimonal isocheims isochela isochimal isochimals isochime isochimenal isochimes isochlor isochlorophyll isochlorophyllin isocholanic isocholesterin isocholesterol isochor isochore isochores isochoric isochors isochromatic isochromosome isochromosomes isochron isochronal isochronally isochrone isochrones isochronic isochronical isochronise isochronised isochronises isochronising isochronism isochronisms isochronize isochronized isochronizes isochronizing isochronon isochronous isochronously isochrons isochrony isochroous isocinchomeronic isocinchonine isocitric isoclasite isoclimatic isoclinal isoclinally isoclinals isocline isoclines isoclinic isoclinically isoclinics isocodeine isocola isocolic isocolon isocoria isocorybulbin isocorybulbine isocorydine isocoumarin isocracies isocracy isocrat isocratic isocrats isocreosol isocrotonic isocrymal isocrymals isocryme isocrymes isocrymic isocyanate isocyanates isocyanic isocyanid isocyanide isocyanides isocyanin isocyanine isocyano isocyanogen isocyanurate isocyanuric isocyclic isocymene isocytic isodactylism isodactylous isodef isodiabatic isodialuric isodiametric isodiametrical isodiaphere isodiapheres isodiazo isodiazotate isodica isodicon isodicons isodimorphic isodimorphism isodimorphisms isodimorphous isodoma isodomic isodomon isodomons isodomous isodomum isodont isodontal isodontals isodontous isodonts isodose isodoses isodrin isodrome isodrosotherm isodulcite isodurene isodynamia isodynamic isodynamical isodynamics isodynamous isoelastic isoelectric isoelectrically isoelectronic isoelectronically isoelemicin isoemodin isoenergetic isoenzymatic isoenzyme isoenzymes isoenzymic isoerucic isoetaceae isoetales isoetes isoeugenol isoflavone isoflor isogam isogamete isogametes isogametic isogametism isogamic isogamies isogamous isogamy isogen isogeneic isogenesis isogenetic isogenic isogenies isogenotype isogenotypic isogenous isogeny isogeotherm isogeothermal isogeothermals isogeothermic isogeothermics isogeotherms isogloss isoglossal isoglosses isoglossic isoglottal isoglottic isognathism isognathous isogon isogonal isogonality isogonally isogonals isogone isogones isogonic isogonics isogonies isogoniostat isogonism isogons isogony isogradient isograft isografted isografting isografts isogram isograms isograph isographic isographical isographically isographs isography isogriv isogrivs isogynous isogyre isohaline isohalsine isohel isohels isohemolysis isohemopyrrole isoheptane isohesperidin isohexyl isohume isohydric isohydrocyanic isohydrosorbic isohyet isohyetal isohyetals isohyets isoimmune isoimmunisation isoimmunisations isoimmunise isoimmunity isoimmunization isoimmunizations isoimmunize isoindazole isoindigotin isoindole isoionone isokeraunic isokeraunographic isokeraunophonic isokinetic isokont isokontan isokontans isokonts isokurtic isolabilities isolability isolable isolani isolanis isolapachol isolatable isolate isolated isolatedly isolates isolating isolation isolationalism isolationalist isolationalists isolationism isolationisms isolationist isolationistic isolationists isolations isolative isolator isolators isolde isolead isoleads isolecithal isolette isolettes isoleucine isoleucines isolex isolexes isolichenin isoline isolines isolinolenic isoln isolog isologous isologs isologue isologues isology isolysin isolysis isomagnetic isomagnetics isomaltose isomastigate isomelamine isomenthone isomer isomerase isomerases isomere isomeres isomeric isomerical isomerically isomeride isomerisation isomerisations isomerise isomerised isomerises isomerising isomerism isomerisms isomerization isomerizations isomerize isomerized isomerizes isomerizing isomeromorphism isomerous isomers isomery isometric isometrical isometrically isometricals isometrics isometries isometrograph isometropia isometropias isometry isomorph isomorphic isomorphically isomorphism isomorphisms isomorphous isomorphs isomyarian isoneph isonephelic isonergic isoniazid isoniazide isoniazides isoniazids isonicotinic isonitramine isonitril isonitrile isonitro isonitroso isonomic isonomies isonomous isonomy isonuclear isonym isonymic isonymy isooctane isooctanes isooleic isoosmosis isopach isopachous isopachs isopag isoparaffin isopathy isopectic isopedin isopedine isopelletierin isopelletierine isopentane isopentyl isoperimeter isoperimeters isoperimetric isoperimetrical isoperimetries isoperimetry isopetalous isophanal isophane isophasal isophene isophenomenal isophone isophones isophoria isophorone isophotal isophote isophotes isophthalic isophthalyl isophyllous isophylly isopicramic isopiestic isopiestically isopiestics isopilocarpine isoplere isopleth isoplethic isopleths isopleural isopleuran isopleure isopleurous isopod isopoda isopodan isopodans isopodiform isopodimorphous isopodous isopods isopogonous isopolite isopolitical isopolities isopolity isopoly isopor isoporic isoprenaline isoprenalines isoprene isoprenes isoprenoid isopropanol isopropanols isopropenyl isopropyl isopropylacetic isopropylamine isopropylideneacetone isopropyls isoproterenol isoproterenols isopsephic isopsephism isoptera isopteran isopterous isoptic isoptin isopulegone isopurpurin isopycnal isopycnic isopyre isopyromucic isopyrrole isopyrum isoquercitrin isoquinine isoquinoline isorcinol isorhamnose isorhodeose isorhythm isorhythmic isorhythmically isorithm isorosindone isorrhythmic isorropic isort isos isosaccharic isosaccharin isoscele isosceles isoscope isoseismal isoseismals isoseismic isoseismical isoseismics isoseist isoserine isosmotic isosmotically isospin isospins isospondyli isospondylous isospore isosporic isospories isosporous isospory isostacies isostacy isostasies isostasist isostasy isostatic isostatical isostatically isostemonous isostemony isoster isostere isosteric isosterism isostructural isostrychnine isosuccinic isosulphide isosulphocyanate isosulphocyanic isosultam isotac isotach isotachs isotactic isoteles isotely isoteniscope isotere isoteric isothenuria isothenurias isotheral isotherals isothere isotheres isotherm isothermal isothermally isothermals isothermic isothermical isothermobath isothermobathic isothermobaths isothermous isotherms isotherombrose isothiocyanate isothiocyanates isothiocyanic isothiocyano isothujone isotimal isotimic isotome isotomous isotone isotones isotonia isotonic isotonically isotonicities isotonicity isotony isotope isotopes isotopic isotopically isotopies isotopism isotopy isotrehalose isotretinoin isotretinoins isotrimorphic isotrimorphism isotrimorphous isotron isotronic isotrons isotrope isotropic isotropically isotropies isotropil isotropism isotropisms isotropous isotropy isotype isotypes isotypic isotypical isovalerate isovalerianate isovalerianic isovaleric isovalerone isovaline isovanillic isovoluminal isoxanthine isoxazine isoxazole isoxime isoxsuprine isoxsuprines isoxylene isoyohimbine isozooid isozyme isozymes isozymic ispaghul ispravnik ispraynik israel israeli israelis israelite israelites issachar issanguila issei isseis issite issuable issuably issuance issuances issuant issue issued issueless issuer issuers issues issuing issus ist istana istanbul isth isthm isthmal isthmectomies isthmectomy isthmi isthmial isthmian isthmians isthmiate isthmic isthmics isthmist isthmistic isthmistical isthmistics isthmoid isthmus isthmuses istiophorid istiophoridae istiophorus istle istles istoke isuret isuretine isuridae isuroid isurus isz it ita itabirite itacism itacisms itacist itacistic itacolumite itacolumites itaconate itaconic itai ital italia italian italianate italianated italianates italianating italianiron italianise italianised italianises italianising italianism italianization italianize italianized italianizes italianizing italians italic italicisation italicisations italicise italicised italicises italicising italicism italicisms italicization italicizations italicize italicized italicizes italicizing italics italiot italite italy itamalate itamalic itas itatartaric itatartrate itauba itch itched itcheoglan itches itchier itchiest itchily itchiness itchinesses itching itchingly itchings itchless itchproof itchreed itchweed itchweeds itchwood itchy itcze itd itel item itemed iteming itemisation itemisations itemise itemised itemiser itemisers itemises itemising itemization itemizations itemize itemized itemizer itemizers itemizes itemizing items itemy iter iterable iterance iterances iterancy iterant iterate iterated iterately iterates iterating iteration iterations iterative iteratively iterativeness iterator iterators iteroparity iteroparous iters iterum ithagine ithand ither itherness ithomiid ithunn ithyphalli ithyphallic ithyphallus ithyphalluses ithyphyllous itineracies itineracy itinerancies itinerancy itinerant itinerantly itinerants itineraria itinerarian itineraries itinerarium itinerariums itinerary itinerate itinerated itinerates itinerating itineration itinerations itinereraria itinerite itinerition itineritious itineritis itineritive itinerous itll itmo itonidid itoubou its itself itsy ittria iturite itzebu iud iuds iulidan iulus iurant iure iuus iv iva ive ivermectin ivermectins ivied ivies ivin ivoried ivories ivorine ivoriness ivorist ivorists ivory ivorybill ivorybills ivorylike ivorytype ivorywood ivray ivresse ivry ivy ivybells ivyberries ivyberry ivyflower ivylike ivyweed ivywood ivywort iw iwa iwaiwa iwbells iwberry iwearth iwflower iwis iwo iworth iwound iwurche iwurthen iwwood iwwort ix ixia ixias ixion ixobrychus ixodes ixodian ixodiases ixodiasis ixodic ixodid ixodidae ixodids ixora ixoras ixtle ixtles iyar iyo iyyar izafat izanagi izanami izar izard izards izars izba izbas izing izle izote iztle izvestia izvestias izvestiya izvestiyas izvozchik izzard izzards izzat izzats j ja jaap jab jabalina jabbed jabber jabbered jabberer jabberers jabbering jabberingly jabberings jabberment jabbernowl jabbers jabberwock jabberwockian jabberwockies jabberwocks jabberwocky jabbing jabbingly jabble jabbled jabbles jabbling jabers jabia jabiru jabirus jaboncillo jaborandi jaborandis jaborin jaborine jabot jaboticaba jaboticabas jabots jabs jabul jabules jaburan jacal jacales jacals jacamar jacamars jacameropine jacami jacamin jacana jacanas jacaranda jacarandas jacarandi jacare jacate jacatoo jacchus jacchuses jacconet jacconot jacens jacent jacht jacinth jacinthe jacinthes jacinths jacitara jack jackal jackalled jackalling jackals jackanapes jackanapeses jackanapish jackaroo jackarooed jackarooing jackaroos jackash jackass jackasseries jackassery jackasses jackassification jackassism jackassness jackbird jackboot jackbooted jackbooting jackboots jackbox jackboy jackdaw jackdaws jacked jackeen jackeens jacker jackeroo jackerooed jackerooing jackeroos jackers jacket jacketed jacketing jacketless jacketlike jackets jacketwise jackety jackey jackfish jackfishes jackfruit jackfruits jackhammer jackhammered jackhammering jackhammers jackhead jackie jackies jacking jackknife jackknifed jackknifes jackknifing jackknives jackleg jacklegs jacklight jacklighted jacklighter jacklighting jacklights jacklit jackman jackmen jacknifed jacknifing jacknives jacko jackpile jackpiling jackplane jackpot jackpots jackpudding jackpuddinghood jackrabbit jackrabbited jackrabbiting jackrabbits jackrod jackroll jackrolled jackrolling jackrolls jacks jacksaw jackscrew jackscrews jackshaft jackshafts jackshay jackshea jacksie jacksies jackslave jacksmelt jacksmelts jacksmith jacksmiths jacksnipe jacksnipes jackson jacksonia jacksonian jacksonville jackstay jackstays jackstock jackstone jackstones jackstraw jackstraws jacksy jacktan jacktar jackweed jackwood jacky jackyard jackyarder jacob jacobaea jacobaean jacobean jacobian jacobin jacobinic jacobinical jacobinism jacobinize jacobins jacobite jacobitism jacobsite jacobus jacobuses jacoby jacolatt jaconace jaconet jaconets jacounce jacquard jacquards jacqueline jacquemart jacquerie jacqueries jacquinia jactance jactancy jactant jactation jactations jacteleg jactitate jactitated jactitating jactitation jactitations jactivus jactura jacture jactus jacu jacuaru jaculate jaculated jaculates jaculating jaculation jaculations jaculative jaculator jaculatorial jaculators jaculatory jaculiferous jaculus jacutinga jacuzzi jacuzzis jad jadded jadder jadding jade jaded jadedly jadedness jadednesses jadeite jadeites jadelike jaderies jadery jades jadesheen jadeship jadestone jading jadish jadishly jadishness jaditic jady jaegars jaeger jaegers jaffa jag jaga jagamohan jagannath jagannatha jagat jagatai jageer jager jagers jagg jagganath jaggar jaggaries jaggary jagged jaggeder jaggedest jaggedly jaggedness jaggednesses jagger jaggeries jaggers jaggery jaggheries jagghery jaggier jaggies jaggieses jaggiest jagging jaggs jaggy jaghatai jagheer jagheerdar jaghir jaghirdar jaghirdars jaghire jaghiredar jaghires jaghirs jagir jagirdar jagirs jagla jagless jagong jagra jagras jagrata jags jagua jaguar jaguarete jaguarondi jaguarondis jaguars jaguarundi jaguarundis jaguey jah jahannan jahveh jahvey jahvism jahweh jai jaiana jail jailable jailage jailbait jailbird jailbirds jailbreak jailbreaker jailbreaks jaildom jailed jailer jaileress jaileresses jailering jailers jailership jailhouse jailhouses jailing jailish jailkeeper jailless jaillike jailmate jailor jailoress jailoresses jailoring jailors jails jailward jailyard jain jainism jainist jajman jak jakarta jake jakes jakeses jakey jakfruit jako jakos jaks jalap jalapa jalapeno jalapenos jalapeño jalapeños jalapic jalapin jalapins jalaps jalee jalet jalkar jalloped jalop jalopies jaloppies jaloppy jalops jalopy jalor jalouse jaloused jalouses jalousie jalousied jalousies jalousing jalpaite jalur jam jama jamadar jamadars jamahiriya jamahiriyas jamaica jamaican jamaicans jaman jamb jambalaya jambalayas jambart jambarts jambe jambeau jambeaux jambed jambee jambees jamber jamberry jambers jambes jambeux jambier jambiers jambing jambiya jambiyah jambiyahs jambiyas jambo jambok jambokked jambokking jamboks jambolan jambolana jambolanas jambolans jambon jambone jambones jambonneau jambool jambools jamboree jamborees jambos jambosa jamboy jambs jambstone jambu jambul jambuls jambus jamdanee jamdani jamdanis james jameses jamesian jameson jamesonia jamesonite jamestown jami jaminder jaminders jamjar jamjars jamlike jammable jammed jammedness jammer jammers jammier jammies jammiest jamming jammy jamnut jamoke jampack jampacked jampan jampanee jampanees jampani jampanis jampans jampot jampots jamrosade jams jamshid jamtland jamwood jan janapa janapan janapum jandal jandals janders jane janeiro janes janet jangada jangar jangkar jangle jangled jangler janglers janglery jangles janglier jangliest jangling janglings jangly janiceps janiform janisaries janisary janissaries janissary janitor janitorial janitors janitorship janitorships janitress janitresses janitrix janitrixes janizar janizarian janizaries janizars janizary jank janker jankers jann janner jannock jannocks janns jansen jansenism jansenist jansky janskys jant jantee jantier janties jantiest jantu janty janua januaries january janus jaob jap japaconin japaconine japaconitin japaconitine japan japanese japanesery japanesy japanization japanize japanized japanizes japanizing japanned japanner japanners japannery japanning japans jape japed japer japeries japers japery japes japheth japhetic japing japingly japings japish japishly japishness japonaiserie japonaiseries japonic japonica japonicas japped japping japs japygid japygoid jaquette jaquima jar jara jarabe jaragua jarana jararaca jararacas jararacussu jararaka jararakas jarbird jarble jarbot jarde jardin jardini jardiniere jardinieres jardinière jardinières jardon jareed jarfly jarful jarfuls jarg jargle jargogle jargon jargonal jargoned jargoneer jargoneers jargonel jargonelle jargonelles jargonels jargoner jargonesque jargonic jargoning jargonisation jargonisations jargonise jargonised jargonises jargonish jargonising jargonist jargonistic jargonists jargonium jargonization jargonizations jargonize jargonized jargonizer jargonizes jargonizing jargonnelle jargons jargony jargoon jargoons jarhead jarheads jari jarina jarinas jaris jark jarkman jarkmen jarks jarl jarldom jarldoms jarless jarlite jarls jarlship jarnut jarool jarools jarosite jarosites jarovization jarovize jarovized jarovizes jarovizing jarp jarra jarrah jarrahs jarred jarret jarring jarringly jarringness jarrings jarry jars jarsful jarta jartas jarul jaruls jarvey jarveys jarvie jarvies jarvy jasey jaseyed jaseys jasies jasmin jasmine jasmined jasminelike jasmines jasminewood jasmins jasminum jasmone jason jasp jaspa jaspachate jaspagate jaspe jasper jasperated jaspered jasperise jasperised jasperises jasperising jasperite jasperize jasperized jasperizes jasperizing jasperoid jasperous jaspers jasperware jasperwares jaspery jaspes jaspidean jaspideous jaspilite jaspilyte jaspis jaspises jaspoid jasponyx jaspopal jasps jass jasses jassid jassidae jassids jassoid jasy jasz jat jataco jataka jatakas jatamansi jateorhizin jateorhizine jatha jati jato jatoba jatos jatropha jatrophic jatrorrhizine jaudie jauk jauked jauking jauks jaun jaunce jaunced jaunces jauncing jaunder jaunders jaundice jaundiced jaundiceroot jaundices jaundicing jauner jaunse jaunsed jaunses jaunsing jaunt jaunted jauntee jauntie jauntier jaunties jauntiest jauntily jauntiness jauntinesses jaunting jauntingly jaunts jaunty jaup jauped jauping jaups java javali javan javanese javanine javanthropus javas javel javelin javelina javelinas javeline javelined javelineer javelining javelins javelot javels javer jaw jawab jawan jawans jawari jawaris jawbation jawbations jawbone jawboned jawboner jawboners jawbones jawboning jawbonings jawbox jawboxes jawbreak jawbreaker jawbreakers jawbreaking jawbreakingly jawbreakings jawcrusher jawdroppingly jawed jawfall jawfallen jawfalls jawfeet jawfish jawfishes jawfoot jawfooted jawhole jawholes jawing jawings jawless jawlike jawline jawlines jawn jawohl jawp jawrope jaws jawsmith jawtwister jawy jay jaybird jaybirds jaycee jaycees jaygee jaygees jayhawk jayhawker jayhawkers jaypie jaypiet jays jayvee jayvees jaywalk jaywalked jaywalker jaywalkers jaywalking jaywalkings jaywalks jazeran jazerant jazerants jazey jazeys jazies jazy jazz jazzbo jazzbos jazzbow jazzed jazzer jazzers jazzes jazzfest jazzfests jazzier jazziest jazzily jazziness jazzinesses jazzing jazzish jazzist jazzlike jazzman jazzmen jazzy jcl jct jctn jealous jealouse jealoused jealouses jealoushood jealoushoods jealousies jealousing jealously jealousness jealousnesses jealousy jeames jean jeaned jeanette jeanettes jeanne jeannette jeans jeapordize jeapordized jeapordizes jeapordizing jeapordous jear jeat jeats jebat jebel jebels jebusite jecoral jecorin jecorize jed jedburgh jedcock jedding jeddock jee jeed jeeing jeel jeeled jeelie jeelied jeelieing jeelies jeeling jeels jeely jeelying jeep jeeped jeepers jeeping jeepney jeepneys jeeps jeer jeered jeerer jeerers jeering jeeringly jeerings jeerproof jeers jeery jees jeetee jeewhillijers jeewhillikens jeez jefe jefes jeff jeffed jefferisite jefferson jeffersonian jeffersonians jeffersonite jeffing jeffs jeg jehad jehads jehoshaphat jehovah jehovist jehu jehup jehus jeistiecor jeistiecors jejuna jejunal jejunator jejune jejunectomies jejunectomy jejunely jejuneness jejunenesses jejunities jejunitis jejunity jejunoduodenal jejunoileitis jejunostomies jejunostomy jejunotomy jejunum jejunums jekyll jelab jelabs jelerang jelib jelick jell jellab jellaba jellabah jellabas jelled jellib jellica jellico jellied jelliedness jellies jellification jellifications jellified jellifies jelliform jellify jellifying jellily jelling jello jelloid jellos jells jelly jellybean jellybeans jellydom jellyfish jellyfishes jellygraph jellygraphed jellygraphing jellygraphs jellying jellyleaf jellylike jellylikeness jellyroll jellyrolls jelotong jelutong jelutongs jemadar jemadars jembe jemble jemidar jemidars jemima jemimas jemmied jemmier jemmies jemmiest jemmily jemminess jemminesses jemmy jemmying jen jena jenequen jenkin jenna jennerization jennerize jennet jenneting jennetings jennets jennie jennier jennies jenny jenoar jentacular jeofail jeofails jeon jeopard jeoparded jeoparder jeoparders jeopardied jeopardies jeoparding jeopardious jeopardise jeopardised jeopardises jeopardising jeopardize jeopardized jeopardizes jeopardizing jeopardous jeopardously jeopardousness jeopards jeopardy jeopardying jeopordize jeopordized jeopordizes jeopordizing jequerity jequirities jequirity jer jerbil jerbils jerboa jerboas jere jereed jereeds jeremejevite jeremiad jeremiads jeremiah jeremy jerevan jerez jerfalcon jerfalcons jerib jerican jericho jerid jerids jerk jerked jerker jerkers jerkier jerkies jerkiest jerkily jerkin jerkined jerkiness jerkinesses jerking jerkingly jerkings jerkinhead jerkinheads jerkins jerkish jerks jerksome jerkwater jerkwaters jerky jerl jerm jermonal jermoonal jernie jeroboam jeroboams jeronymite jeropiga jerque jerqued jerquer jerquers jerques jerquing jerquings jerreed jerreeds jerrican jerricans jerrid jerrids jerries jerry jerrybuild jerrybuilder jerrybuilders jerrybuilding jerrybuilds jerrybuilt jerrycan jerrycans jerryism jerrymander jerrymandered jerrymandering jerrymanders jersey jerseyed jerseyite jerseyites jerseys jert jerusalem jervia jervin jervina jervine jess jessakeed jessamies jessamine jessamines jessamy jessant jesse jessed jesserant jesserants jesses jessie jessies jessing jessur jest jestbook jestbooks jested jestee jestees jester jesters jestful jesting jestingly jestings jestingstock jestmonger jestproof jests jestwise jestword jesuist jesuit jesuited jesuitess jesuitic jesuitical jesuitically jesuitism jesuitisms jesuitize jesuitries jesuitry jesuits jesus jet jeta jetavator jetbead jetbeads jete jetes jetfoil jetfoils jetful jetfuls jeth jetlag jetlags jetlike jetliner jetliners jeton jetons jetpack jetpacks jetplane jetplanes jetport jetports jets jetsam jetsams jetsom jetsoms jetson jetsons jetstream jetstreams jettage jettatore jettatura jettaturas jetteau jetted jetter jettied jettier jetties jettiest jettiness jettinesses jetting jettingly jettison jettisonable jettisoned jettisoning jettisons jetton jettons jettru jetty jettyhead jettying jettywise jetware jetway jetways jeté jetés jeu jeune jeunesse jeux jew jewbird jewbush jewed jewel jeweled jeweler jewelers jewelfish jewelfishes jewelhouse jeweling jewelled jeweller jewellers jewellery jewelless jewellike jewelling jewelly jewelries jewelry jewels jewelsmith jewelweed jewelweeds jewely jewess jewfish jewfishes jewing jewis jewish jewishness jewism jewry jews jezail jezails jezebel jezebels jezekite jeziah jg jger jhala jhalas jharal jheel jhool jhow jhvh jiao jiaos jib jibaro jibaros jibb jibba jibbah jibbahs jibbed jibbeh jibber jibbered jibbering jibbers jibbing jibbings jibbons jibboom jibbooms jibbs jibby jibe jibed jiber jibers jibes jibhead jibi jibing jibingly jibman jibmen jiboa jiboya jibs jibstay jicama jicamas jicara jickajog jickajogged jickajogging jickajogs jiff jiffies jiffle jiffs jiffy jig jigaboo jigaboos jigajig jigajigged jigajigging jigajigs jigajog jigajogged jigajogging jigajogs jigamaree jigamarees jigged jigger jiggered jiggerer jiggering jiggerman jiggermast jiggermasts jiggers jigget jiggety jiggier jiggiest jigginess jigging jiggings jiggish jiggit jiggle jiggled jiggler jigglers jiggles jigglier jiggliest jiggling jiggly jiggumbob jiggumbobs jiggy jigjig jigjigged jigjigging jigjigs jiglike jigman jigmen jigot jigote jigots jigs jigsaw jigsawed jigsawing jigsawn jigsaws jihad jihads jikungu jilgie jilgies jill jillaroo jillarooed jillarooing jillaroos jillet jillets jillflirt jillflirts jilling jillion jillions jills jilt jilted jiltee jilter jilters jilting jiltish jilts jim jimbang jimberjaw jimberjawed jimbo jimcrack jimcracks jimdandy jimhickey jimigaki jiminy jimjam jimjams jimjums jimmer jimmie jimmied jimmies jimminy jimmy jimmying jimmyweed jimp jimper jimpest jimpier jimpiest jimply jimpness jimpnesses jimpricute jimpsonweed jimpy jimsedge jimson jimsonweed jimsonweeds jin jina jincamas jinete jing jingal jingall jingalls jingals jingbang jingbangs jinghpaw jinghpo jingko jingkoes jingle jinglebob jingled jinglejangle jingler jinglers jingles jinglet jinglets jinglier jingliest jingling jinglingly jingly jingo jingodom jingoed jingoes jingoing jingoish jingoism jingoisms jingoist jingoistic jingoistically jingoists jingu jinja jinjili jinjilis jink jinked jinker jinkers jinket jinking jinkle jinks jinn jinnee jinnestan jinni jinnies jinnis jinniwink jinniyeh jinns jinny jinnywink jinricksha jinrickshas jinrickshaw jinrickshaws jinriki jinrikiman jinrikimen jinrikisha jinrikishas jins jinsha jinshang jinsing jinx jinxed jinxes jinxing jipijapa jipijapas jipper jipyapa jipyapas jiqui jirble jirbled jirbles jirbling jird jirds jirga jirgah jirgas jirkinet jirkinets jirrbal jism jisms jissom jissoms jiti jitneur jitneuse jitney jitneyed jitneying jitneyman jitneys jitro jitter jitterbug jitterbugged jitterbugger jitterbugging jitterbugs jittered jitterier jitteriest jitteriness jitterinesses jittering jitters jittery jiujitsu jiujitsus jiujutsu jiujutsus jiva jivatma jive jiveass jived jiver jivers jives jivey jivier jiviest jiving jivy jixie jiz jizya jizyah jizz jizzen jizzes jms jnana jnanamarga jnanas jnanashakti jnanayoga jnanendriya jnd jnr jnt jo joan joanna joannas joannes joanneses joaquinite job jobade jobarbe jobation jobations jobbed jobber jobberies jobbernowl jobbernowlism jobbers jobbery jobbet jobbie jobbies jobbing jobbings jobbish jobble jobcentre jobcentres jobe jobed jobernowl jobernowls jobes jobholder jobholders jobing jobless joblessness joblessnesses joblots jobman jobmaster jobmen jobmistress jobmonger jobname jobnames jobo jobs jobshare jobshares jobsite jobsmith jobson jobsworth jobsworths jocant jocasta jocatory joch jock jocked jocker jockette jockettes jockey jockeydom jockeyed jockeying jockeyish jockeyism jockeyisms jockeylike jockeys jockeyship jockeyships jocking jockney jockneys jocko jockos jocks jockstrap jockstraps jockteleg jocktelegs joco jocooserie jocoque jocoqui jocose jocosely jocoseness jocosenesses jocoseriosity jocoserious jocosities jocosity jocote jocteleg jocu jocular jocularities jocularity jocularly jocularness joculator joculators joculatory jocum jocuma jocund jocundities jocundity jocundly jocundness jocundnesses jocundry jocuno jocunoity jodel jodelled jodelling jodelr jodels jodhpur jodhpurs jodphur joe joeboat joeboats joebush joel joes joewood joey joeyes joeys jog jogged jogger joggers jogging joggings joggle joggled joggler jogglers joggles jogglety jogglework joggling joggly jogjakarta jogpants jogs jogtrot jogtrots jogtrottism johannean johannes johannesburg johanneses johannine johannisberger johannite john johnboat johnboats johnian johnin johnnie johnnies johnny johnnycake johnnycakes johnnydom johns johnson johnsonese johnsongrass johnsongrasses johnsonian johnstrupite joiceless joie join joinable joinant joinder joinders joined joiner joinered joineries joinering joiners joinery joinhand joining joiningly joinings joins joint jointage jointed jointedly jointedness jointednesses jointer jointers jointing jointings jointist jointless jointlessness jointly jointness jointnesses jointress jointresses joints jointure jointured jointureless jointures jointuress jointuresses jointuring jointweed jointwood jointworm jointworms jointy joist joisted joisting joistless joists jojoba jojobas joke jokebook joked jokeless jokelet jokeproof joker jokers jokes jokesmith jokesmiths jokesome jokesomeness jokester jokesters jokey jokier jokiest jokily jokiness jokinesses joking jokingly jokish jokist jokol joktaleg jokul joky jole joled joles joling joliotium joll jolled jolley jolleyer jolleyers jolleying jolleyings jolleyman jolleys jollied jollier jolliers jollies jolliest jollification jollifications jollified jollifies jollify jollifying jollily jolliment jolliments jolliness jollinesses jolling jollities jollitry jollity jollop jolloped jolls jolly jollyboat jollyboats jollyer jollyers jollyhead jollyheads jollying jollyings jollytail jolt jolted jolter jolterhead jolterheaded jolterheadedness jolterheads jolters jolthead joltheaded joltheads joltier joltiest joltily joltiness jolting joltingly joltless joltproof jolts jolty jomo jomon jomos jonah jonahs jonathan joncanoe joncanoes jondla jones joneses jonglem jonglery jongleur jongleurs jonnick jonnock jonque jonquil jonquille jonquils jonsonian jonties jonty jonvalization jonvalize jooal jooals jook jooked jookerie jookeries jookery jooking jooks joola joom joppa jor joram jorams jordan jordanella jordanian jordanians jordanite jordanon jordans jordeloo jordeloos jorden joree jornada jornadas joropo joropos jorram jors jorum jorums jose josefite joseite joseph josephine josephinite josephinites josephs josey josh joshed josher joshers joshes joshi joshing joshingly joshua josie joskin joskins joss jossakeed josser jossers josses jostle jostled jostlement jostlements jostler jostlers jostles jostling jostlings josue jot jota jotas jotation jotisaru jotisi jots jotted jotter jotters jotting jottings jotty jotun jotunn jotunnheim jotunns jotuns joual jouals joubarb joug jough jougs jouisance jouisances jouissance jouk jouked joukeries joukery joukerypawkery jouking jouks joul joule joulean jouled joulemeter joules jouling jounce jounced jounces jouncier jounciest jouncing jouncy jour journ journal journalary journaled journalese journaleses journaling journalisation journalisations journalise journalised journaliser journalisers journalises journalish journalising journalism journalisms journalist journalistic journalistically journalists journalization journalizations journalize journalized journalizer journalizers journalizes journalizing journalled journalling journals journey journeycake journeyed journeyer journeyers journeying journeyings journeyman journeymen journeys journeywoman journeywomen journeywork journeyworker journeyworks journo journos jours joust jousted jouster jousters jousting jousts joutes jouysaunce jouysaunces jove jovial jovialise jovialist jovialistic jovialities joviality jovialize jovialized jovializing jovially jovialness jovialnesses jovialties jovialty jovian jovicentric jovilabe jovinianist jovy jovysaunce jovysaunces jow jowar jowari jowaris jowars jowed jowel jower jowery jowing jowl jowled jowler jowlers jowlier jowliest jowliness jowlinesses jowling jowlish jowlop jowls jowly jowpy jows jowser jowter joy joyance joyances joyancy joyant joyce joycean joyed joyful joyfuller joyfullest joyfully joyfulness joyfulnesses joyhop joyhouse joying joyleaf joyless joylessly joylessness joylessnesses joylet joyous joyously joyousness joyousnesses joypop joypopped joypopper joypoppers joypopping joypops joyproof joyridden joyride joyrider joyriders joyrides joyriding joyridings joyrode joys joysome joystick joysticks joyweed jr js jt juamave juan juans juarez juba jubarb jubardy jubartas jubartes jubas jubate jubbah jubbahs jubbe jube juberous jubes jubhah jubhahs jubilance jubilances jubilancies jubilancy jubilant jubilantly jubilar jubilarian jubilarians jubilate jubilated jubilates jubilating jubilatio jubilation jubilations jubilatory jubile jubileal jubilean jubilee jubilees jubiles jubili jubilist jubilization jubilize jubilus jublilantly jublilation jublilations jubus juchart juck juckies jucundity jud judah judaic judaica judaical judaiser judaism judaist judaistic judaization judaize judaizer judas judases judcock judder juddered juddering judders juddock jude judex judge judgeable judged judgeless judgelike judgement judgemental judgements judger judgers judges judgeship judgeships judging judgingly judgmatic judgmatical judgmatically judgment judgmental judgmentally judgments judgmetic judgship judicable judical judically judicare judicares judicata judicate judicatio judication judications judicative judicator judicatorial judicatories judicators judicatory judicature judicatures judice judices judicia judiciable judicial judicialis judicialise judiciality judicialize judicialized judicializing judicially judicialness judiciaries judiciarily judiciary judicious judiciously judiciousness judiciousnesses judicium judies judith judo judogi judogis judoist judoists judoka judokas judophobia judos juds judy jueces juffer jufti jufts jug juga jugal jugale jugals jugate jugated jugation juger jugerum jugful jugfuls jugged jugger juggernaut juggernauts jugging juggings juggins jugginses juggle juggled jugglement juggler juggleries jugglers jugglery juggles juggling jugglingly jugglings jughead jugheads juglandaceae juglandaceous juglandales juglandin juglans juglar juglet juglets juglone jugoslav jugoslavia jugoslavian jugs jugsful jugula jugular jugulars jugulary jugulate jugulated jugulates jugulating jugulation jugulum jugum jugums juice juiced juiceful juicehead juiceheads juiceless juicelessness juicer juicers juices juicier juiciest juicily juiciness juicinesses juicing juicy juise jujitsu jujitsus juju jujube jujubes jujuism jujuisms jujuist jujuists jujus jujutsu jujutsus juke jukebox jukeboxes juked jukes juking jukskei jukskeis juku jukus julaceous julep juleps julian julid julidan julienite julienne julienned juliennes julienning julies juliet juliett julio juliott julius juloid juloidian julole julolidin julolidine julolin juloline july julyflower jumada jumar jumared jumaring jumarred jumarring jumars jumart jumarts jumba jumbal jumbals jumbie jumbies jumble jumbled jumblement jumbler jumblers jumbles jumblier jumbliest jumbling jumblingly jumbly jumbo jumboesque jumboise jumboised jumboises jumboising jumboism jumboize jumboized jumboizes jumboizing jumbos jumbuck jumbucks jumby jumelle jumelles jument jumentous jumfru jumhouriya jumhouriyas jumillite jumma jump jumpable jumped jumper jumperism jumpers jumpier jumpiest jumpily jumpiness jumpinesses jumping jumpingly jumpmaster jumpmasters jumpness jumpoff jumpoffs jumprock jumprocks jumps jumpscrape jumpseed jumpsome jumpstart jumpsuit jumpsuits jumpy jun junc juncaceae juncaceous juncaginaceae juncaginaceous juncagineous juncat juncate juncates junciform juncite junco juncoes juncos juncous junction junctional junctions junctive junctly junctor junctural juncture junctures juncus juncuses jundie jundied jundies jundy jundying june juneating juneatings juneau juneberry junectomy junefish jung jungermanniaceae jungermanniaceous jungermanniales jungian jungle jungled junglegym junglelike jungles jungleside junglewards junglewood jungli junglier jungliest junglis junglist junglists jungly juniata junior juniorate juniorates juniorities juniority juniors juniorship juniper junipers juniperus junk junkanoo junkanoos junkboard junkdealer junked junker junkerdom junkerdoms junkerish junkerism junkerisms junkers junket junketed junketeer junketeered junketeering junketeers junketer junketers junketing junketings junkets junketter junkie junkier junkies junkiest junkiness junkinesses junking junkman junkmen junks junky junkyard junkyards juno junoesque junt junta juntas junto juntos jupard jupati jupatis jupaty jupe jupes jupiter jupon jupons jura jural jurally jurament juramenta juramentado juramentados juramental juramentally juramentum jurant jurants jurara jurare jurassic jurat jurata juration jurative jurator juratorial juratory jurats jure jurel jurels juridic juridical juridically juridicial juridicus juried juries juring juris jurisconsult jurisconsults jurisdiction jurisdictional jurisdictionalism jurisdictionally jurisdictions jurisdictive jurisp jurisprude jurisprudence jurisprudences jurisprudent jurisprudential jurisprudentialist jurisprudentially jurisprudents jurist juristic juristical juristically jurists juror jurors jurupaite jury jurying juryless juryman jurymast jurymasts jurymen juryrigged jurywoman jurywomen jus juslik juslted jusquaboutisme jusquaboutist jussal jussel jusshell jussion jussive jussives jussory just justaucorps justed justen juster justers justest justice justiced justicehood justiceless justicelike justicer justicers justices justiceship justiceships justiceweed justicia justiciabilities justiciability justiciable justicial justicialism justicialisms justiciar justiciaries justiciars justiciarship justiciary justiciaryship justiciatus justicier justicies justicing justico justicoat justifably justifiabilities justifiability justifiable justifiableness justifiablenesses justifiably justification justifications justificative justificator justificators justificatory justified justifiedly justifier justifiers justifies justify justifying justifyingly justing justinian justinianeus justitia justle justled justler justles justling justly justment justments justness justnesses justo justs jut jute jutelike jutes jutish jutka jutland juts jutted juttied jutties jutting juttingly jutty juttying juv juve juvenal juvenals juvenate juvenescence juvenescences juvenescent juvenile juvenilely juvenileness juvenilenesses juveniles juvenilia juvenilify juvenilise juvenilism juvenilities juvenility juvenilize juvenilized juvenocracy juvenolatry juvent juventude juves juvia juvie juvite juwise juxta juxtalittoral juxtamarine juxtapose juxtaposed juxtaposes juxtaposing juxtaposit juxtaposition juxtapositional juxtapositions juxtapositive juxtapyloric juxtaspinal juxtaterrestrial juxtatropical jython jymold jyngine jynx jynxes jäger jägers k ka kaaba kaama kaamas kaas kaataplectic kab kabab kababbed kababbing kababs kabaddi kabaddis kabaka kabakas kabala kabalas kabalism kabalisms kabalist kabalistic kabalists kabar kabaragoya kabars kabassou kabaya kabayas kabbala kabbalah kabbalahs kabbalas kabbalism kabbalist kabbalistic kabel kabele kabeles kabeljou kabeljous kabeljouw kabeljouws kaberu kabiet kabiki kabikis kabinett kabinetts kabob kabobbed kabobbing kabobs kabolin kaboom kabs kabuki kabukis kabul kabuzuchi kabyle kaccha kacchas kacha kachahri kachahris kachcha kacheri kacheris kachin kachina kachinas kachinic kadai kadaya kadder kaddish kaddishes kaddishim kade kadein kades kadi kadikane kadine kadis kadischi kadish kadishim kados kadsura kae kaed kaeing kaempferol kaes kaf kaferita kaffeeklatch kaffeeklatches kaffeeklatsch kaffeeklatsches kaffir kaffirs kaffiyah kaffiyahs kaffiyeh kaffiyehs kafila kafilas kafir kafiri kafirin kafirs kafiz kafka kafkaesque kafs kafta kaftan kaftans kago kagool kagools kagos kagoul kagoule kagoules kagouls kagu kagura kagus kaha kahal kahala kahals kahar kahau kahawai kahawais kahikatea kahili kahlua kahoolawe kahu kahuna kahunas kai kaiak kaiaked kaiaking kaiaks kaid kaids kaie kaies kaif kaifs kaik kaikai kaikais kaikara kaikawaka kail kails kailyaird kailyairds kailyard kailyarder kailyardism kailyards kaim kaimakam kaimakams kaiman kaims kain kaing kainga kaingin kainit kainite kainites kainits kainogeneses kainogenesis kainozoic kains kainsi kainyn kairin kairine kairolin kairoline kairos kairotic kais kaiser kaiserdom kaiserdoms kaiserin kaiserins kaiserism kaiserisms kaisers kaisership kaiserships kaitaka kaivalya kaiwhiria kaiwi kaizen kaizens kajawah kajawahs kajeput kajeputs kajugaru kaka kakapo kakapos kakar kakarali kakaralli kakariki kakas kakatoe kakawahie kakemono kakemonos kaki kakidrosis kakiemon kakiemons kakis kakistocracies kakistocracy kakistocratical kakkak kakke kakodyl kakodyls kakogenic kakorraphiaphobia kakortokite kakotopia kal kala kalaazar kalach kaladana kalahari kalam kalamalo kalamansanai kalamazoo kalamdan kalamdans kalamkari kalamkaris kalams kalan kalanchoe kalanchoes kalantas kalapooia kalapooian kalapuya kalapuyan kalashnikov kalashnikovs kalasie kalathoi kalathos kale kaleege kaleidescope kaleidophon kaleidophone kaleidophones kaleidoscope kaleidoscopes kaleidoscopic kaleidoscopical kaleidoscopically kalema kalend kalendar kalendared kalendarial kalendaring kalendars kalends kales kalewife kalewives kaleyard kaleyards kali kalian kalians kaliborite kalidium kalif kalifate kalifates kaliform kalifs kaligenous kalimantan kalimba kalimbas kalinite kalinites kaliophilite kalipaya kaliph kaliphs kalis kalium kaliums kalka kalki kalkvis kallah kallege kallidin kallidins kallikrein kallikreins kallilite kallitype kallitypes kalmia kalmias kalmuck kalmuk kalo kalogeros kalokagathia kalon kalong kalongs kalotermes kalotermitidae kalotype kalotypes kalpa kalpac kalpacs kalpak kalpaks kalpas kalpis kalpises kalsomine kalsomined kalsominer kalsomines kalsomining kaltemail kalumpang kalumpit kalumpits kalunti kalymmaukion kalymmocyte kalyptra kalyptras kalysis kam kama kamaaina kamaainas kamachi kamachile kamacite kamacites kamahi kamala kamalas kamaloka kamanichile kamansi kamao kamarezite kamarupa kamarupan kamarupic kamas kamass kamassi kamavachara kamba kambal kamboh kambou kame kameel kameeldoorn kameelthorn kamees kameeses kameez kameezes kamela kamelas kamelaukia kamelaukion kamelaukions kamelkia kamerad kameraded kamerading kamerads kames kamet kami kamia kamian kamias kamichi kamichis kamik kamika kamikaze kamikazes kamiks kamila kamilas kamis kamises kamleika kammalan kamme kammererite kammeu kammina kampala kamperite kampong kampongs kampseen kamptomorph kamptulicon kampuchea kampuchean kampylite kamseen kamseens kamsin kamsins kan kana kanae kanaf kanaff kanagi kanaima kanaka kanakas kanamono kanamycin kanamycins kanap kanara kanarese kanari kanas kanat kanawha kanban kanbans kanchanjanga kanchenjunga kanchil kand kande kandies kandjar kandol kandy kane kaneelhart kaneh kanehs kanephore kanephoros kanes kang kanga kangani kangany kangaroo kangarooed kangarooer kangarooing kangaroolike kangaroos kangas kangayam kangha kanghas kangla kangri kangs kanji kanjis kankedort kankie kankrej kannada kannen kannu kannume kanone kanoon kans kansa kansan kansans kansas kanses kansu kant kantar kantars kanted kantela kantelas kantele kanteles kanteletar kanten kantens kantha kantharoi kantharos kanthas kantian kantians kantiara kantikoy kantikoyed kantikoying kantikoys kanting kantry kants kanuka kanyaw kanzu kanzus kaoliang kaoliangs kaolin kaolinate kaoline kaolines kaolinic kaolinisation kaolinise kaolinised kaolinises kaolinising kaolinite kaolinites kaolinitic kaolinization kaolinize kaolinized kaolinizes kaolinizing kaolinoses kaolinosis kaolins kaon kaonic kaons kapa kapai kapas kapeika kapeikas kapelle kapellmeister kapellmeisters kaph kaphs kapok kapoks kapote kapp kappa kapparah kappas kappe kappellmeister kappie kappland kapsiki kapuka kapur kaput kaputt kara karabiner karabiners karaburan karachi karacul karagan karaism karaisms karait karaite karaits karaka karakalpak karakas karakoram karakul karakule karakuls karakurt karamu karanda karaoke karaokes karas karat karatas karate karateist karateists karateka karatekas karates karats karatto karaya karbi karch kareao kareau kareeta karela karelia karelian karen karenic karewa karez karinghota karite karites kariti kark karked karking karks karma karmadharaya karmas karmathian karmic karmically karmouth karn karnofsky karns karo karok karoo karoos karos kaross karosses karou karpas karree karren karri karris karroo karroos karrusel karsey karseys karsha karsies karst karstenite karstic karstification karstifications karstified karstifies karstify karstifying karsts karsy kart kartel karter karters kartik kartikeya karting kartings kartometer kartos karts karttikeya karuna karval karvar karwar karyaster karyatid karyenchyma karyochrome karyochylema karyocyte karyogamic karyogamies karyogamy karyogram karyograms karyokineses karyokinesis karyokinetic karyolitic karyologic karyological karyologically karyologies karyology karyolymph karyolymphs karyolyses karyolysis karyolytic karyomere karyomerite karyomicrosome karyomitoic karyomitome karyomiton karyomitosis karyomitotic karyon karyons karyoplasm karyoplasma karyoplasmatic karyoplasmic karyoplasms karyopyknosis karyorrhexis karyoschisis karyosoma karyosome karyosomes karyosystematics karyotin karyotins karyotype karyotyped karyotypes karyotypic karyotypical karyotypically karyotyping karyotypings karzies karzy kas kasa kasbah kasbahs kasbeke kascamiol kaser kasha kashas kasher kashered kashering kashers kashga kashi kashim kashima kashira kashmir kashmiri kashmirs kashrus kashruses kashrut kashruth kashruths kashruts kashubian kasida kasm kasolite kassabah kassite kassu kastura kat kata katabases katabasis katabatic katabella katabolic katabolically katabolism katabolisms katabolite katabolize katabothra katabothron katabothrons katachromasis katacrotic katacrotism katadromous katagelophobia katagenesis katagenetic katakana katakanas katakinesis katakinetic katakinetomer katakinetomeric katakiribori katalase katalyses katalysis katalyst katalytic katalyze katalyzed katalyzer katalyzing katamorphic katamorphism katana katanas kataphoresis kataphoretic kataphoric kataphrenia kataplasia kataplectic kataplexy katar katari katas katastate katastatic katat katathermometer katathermometers katatonia katatonic katatype katavothron katavothrons katchina katchinas katchung katcina katcinas katcr kath katha kathak kathakali kathakalis kathaks kathal katharevousa katharevousas katharevusa katharine katharobe katharobic katharometer katharometers katharses katharsis kathartic kathemoglobin kathenotheism katherine kathisma kathismata kathmandu kathodal kathode kathodes kathodic katholikoi katholikos katholikoses kathy kati kation kations katipo katipos katis katjepiering katmandu katmon katogle katorga katrina kats katsunkel katsup katsuwonidae katsuwonus katti kattis katuka katun katurai katydid katydids katzenjammer katzenjammers kauai kauch kaugh kaughs kaunas kauri kauries kaurigum kaurigums kauris kaury kava kavaic kavakava kavakavas kavas kavass kavasses kaver kavika kavya kavyas kaw kawaka kawakawa kawed kawika kawing kaws kay kayak kayaked kayaker kayakers kayaking kayakings kayaks kayan kayle kayles kayo kayoed kayoeing kayoes kayoing kayoings kayos kays kayward kazachki kazachok kazachoks kazak kazakh kazakhstan kazakstan kazan kazatske kazatskes kazatski kazatskies kazatsky kazatzka kazatzkas kazi kazis kazoo kazoos kb kbar kbars kbps kc kcal kea keach keacorn keap kearn keas keasar keasars keat keats keavie keavies keawe keb kebab kebabbed kebabbing kebabs kebar kebars kebbed kebbie kebbies kebbing kebbock kebbocks kebbuck kebbucks kebby kebele kebeles keblah keblahs kebob kebobbed kebobbing kebobs kebs kebyar kechel kechumaran keck kecked kecking keckle keckled keckles keckling kecklings kecks keckses kecksies kecksy kecky ked keddah keddahs kedge kedged kedger kedgeree kedgerees kedgers kedges kedgier kedgiest kedging kedgy kedjave kedlock keds kedushah keech keeches keef keefs keek keeked keeker keekers keeking keeks keel keelage keelages keelback keelbill keelbird keelblock keelboat keelboatman keelboatmen keelboats keeldrag keeled keeler keelers keelfat keelhale keelhaled keelhales keelhaling keelhaul keelhauled keelhauling keelhaulings keelhauls keelie keelies keeling keelings keelivine keelivines keelless keelman keelmen keelrake keels keelson keelsons keelvat keelyvine keelyvines keen keena keened keener keeners keenest keening keenings keenly keenness keennesses keens keep keepable keeper keeperess keepering keeperless keepers keepership keeperships keeping keepings keepnet keepnets keeps keepsake keepsakes keepsaky keepworthy keerie keerogue keeshond keeshonden keeshonds keeslip keest keester keesters keet keets keeve keeves kef keffel keffels keffiyah keffiyahs keffiyeh keffiyehs kefiatoid kefifrel kefir kefiric kefirs keflex kefs keftab kefuffle kefuffled kefuffles kefuffling keg kegeler kegelers kegful kegged kegging keggmiengg kegler keglers kegling keglings kegs kehaya kehillah kehilloth kehoeite keight keilhauite keir keiretsu keiretsus keirs keist keister keisters keita keitloa keitloas kekchi kekotene keks keksye keksyes kekuna kelchin kelchyn keld kelder kele kelebe kelectome keleh kelek kelep keleps kelia kelim kelims kelk kell kella kellaut kellauts kelleg kellegk kellet kellia kellick kellies kellion kellock kells kellupweed kelly kellys keloid keloidal keloids kelotomies kelotomy kelowna kelp kelped kelper kelpers kelpfish kelpfishes kelpie kelpies kelping kelps kelpware kelpwort kelpy kelson kelsons kelt kelter kelters keltic keltics keltie kelties kelts kelty kelvin kelvins kelyphite kemancha kemb kembed kembing kembo kemboed kemboing kembos kembs kemelin kemp kempas kemped kemper kempers kemperyman kemping kempings kempite kemple kemples kemps kempster kempt kemptken kempts kempy ken kenaf kenafs kenareh kench kenches kend kendal kendir kendna kendo kendoist kendos kendy kendyr kenema kenlore kenmark kenmpy kennebecker kennebunker kenned kennedia kennedy kennedya kennel kenneled kenneling kennell kennelled kennelling kennelly kennelman kennels kenner kenners kennet kennets kenning kennings kenningwort kenno kenny keno kenogenesis kenogenetic kenogenetically kenogeny kenophobia kenophobias kenos kenoses kenosis kenosises kenotic kenoticism kenoticist kenoticists kenotism kenotist kenotoxin kenotron kenotrons kens kenscoff kensington kenspac kenspeck kenspeckle kenspeckled kent kentallenite kentan kente kented kentes kentia kentias kenting kentish kentle kentledge kentledges kentrogon kentrolite kents kentuckian kentuckians kentucky kenya kenyan kenyans kenyapithecus kenyte keogenesis keout kep kephalic kephalics kephalin kephalins kephir kephirs kepi kepis kepler kepped keppen kepping keppit keps kept kera keracele keraci keralite keramic keramics kerana keraphyllocele keraphyllous kerasin kerasine kerat keratalgia keratectacia keratectasia keratectomies keratectomy keratin keratinisation keratinisations keratinise keratinised keratinises keratinising keratinization keratinizations keratinize keratinized keratinizes keratinizing keratinoid keratinophilic keratinose keratinous keratins keratitides keratitis keratitises keratoangioma keratocele keratocentesis keratocni keratoconi keratoconjunctivitis keratoconjunctivitises keratoconus keratocricoid keratode keratoderma keratodermia keratogenic keratogenous keratoglobus keratoglossus keratohelcosis keratohyal keratoid keratoiritis keratol keratoleukoma keratolysis keratolytic keratoma keratomalacia keratomas keratomata keratome keratometer keratometers keratometric keratometry keratomycosis keratoncus keratonosus keratonyxis keratophyr keratophyre keratophyres keratoplastic keratoplasties keratoplasty keratorrhexis keratoscleritis keratoscope keratoscopy keratose keratoses keratosic keratosis keratosropy keratotic keratotome keratotomies keratotomy keratto keraulophon keraulophone keraunia keraunion keraunograph keraunographic keraunographs keraunography keraunophobia keraunophone keraunophonic keraunoscopia keraunoscopy kerb kerbaya kerbed kerbing kerbs kerbside kerbsides kerbstone kerbstones kerch kercher kerchief kerchiefed kerchiefing kerchiefs kerchieft kerchieves kerchoo kerchug kerchunk kerectomy kerel kerf kerfed kerfing kerflap kerflop kerflummox kerfs kerfuffle kerfuffled kerfuffles kerfuffling kerite kerl kerman kermes kermeses kermesic kermesite kermesites kermess kermesse kermesses kermis kermises kern kerne kerned kernel kerneled kerneling kernella kernelled kernelless kernelling kernelly kernels kerner kernes kernetty kernicterus kernicteruses kerning kernings kernish kernite kernites kernoi kernos kerns kero kerogen kerogens kerolite keros kerosene kerosenes kerosine kerosines kerplunk kerplunked kerplunking kerplunks kerria kerrias kerrie kerries kerrikerri kerril kerrite kerry kers kersanne kersantite kersantites kersey kerseymere kerseymeres kerseynette kerseys kerslam kerslosh kersmash kerugma kerugmata keruing kerve kerved kerves kerving kerwham kerygma kerygmas kerygmata kerygmatic kerykeion kerystic kerystics kesar kesars kesh keshes keslep kesse kesslerman kest kesting kestrel kestrelkestrels kestrels kests ket keta ketal ketamine ketamines ketapang ketas ketatin ketazine ketch ketchcraft ketches ketching ketchup ketchups ketchy keteleeria ketembilla keten ketene ketenes kethib kethibh ketimid ketimide ketimin ketimine ketine ketipate ketipic ketmie keto ketoacidosis ketoaciduria ketogen ketogeneses ketogenesis ketogenetic ketogenic ketoheptose ketohexose ketoketene ketol ketole ketols ketolyses ketolysis ketolytic ketonaemia ketone ketonemia ketones ketonic ketonimid ketonimide ketonimin ketonimine ketonisation ketonise ketonization ketonize ketonuria ketonurias ketoprofen ketorolac ketose ketoses ketoside ketosis ketosteroid ketosteroids ketosuccinic ketotic ketoxime ketoximes kets kette ketting kettle kettlecase kettledrum kettledrummer kettledrummers kettledrums kettleful kettlefuls kettlemaker kettlemaking kettler kettles kettlestitch kettlestitches kettrin ketty ketuba ketubah ketubahs ketuboth ketupa ketway ketyl keup keuper keurboom kev kevalin kevazingo kevel kevelhead kevels kever kevil kevils kevutzah kevutzoth keweenawite kewpie kewpies kex kexes kexy key keyage keyaki keybinding keybindings keyboard keyboarded keyboarder keyboarders keyboarding keyboardist keyboardists keyboards keybugle keybugles keybutton keybuttons keycard keycards keyed keyer keyhole keyholes keying keyless keylet keyline keylines keylock keyman keymen keymove keynes keynesian keynesianism keynote keynoted keynoter keynoters keynotes keynoting keypad keypads keypal keypals keypress keypresses keypunch keypunched keypuncher keypunchers keypunches keypunching keyring keys keyseat keyseater keyserlick keyset keysets keyslot keysmith keyster keysters keystone keystoned keystones keystoning keystroke keystroked keystrokes keystroking keystrokings keyway keyways keywd keyword keywords keywrd kfmmel kfrsch kg kgf kgotla kgotlas kgr kha khaddar khaddars khadi khadis khaf khafajeh khafs khagiarite khahoon khaiki khair khaja khajur khakanship khakham khaki khakied khakilike khakis khalal khalat khalats khalifa khalifah khalifahs khalifas khalifat khalifate khalifates khalifats khalka khalkha khalsa khalsah khamal khamseen khamseens khamsin khamsins khamti khan khanate khanates khanda khandait khanga khangas khanjar khanjars khanjee khankah khans khansama khansamah khansamahs khansaman khansamas khanty khanum khanums khaph khaphs khar kharaj kharif kharifs kharkov kharouba kharroubah khartoum kharua kharwa khass khat khatib khatin khatri khats khaya khayal khayas khazen khazenim khazens kheda khedah khedahs khedas khediva khedival khedivas khedivate khedivates khedive khedives khediviah khedivial khediviate khediviates khella khellin khepera khepesh khesari khet kheth kheths khets khi khidmatgar khidmutgar khidmutgars khilafat khilafats khilat khilats khilim khilims khir khirghiz khirka khirkah khirkahs khis khitmatgar khitmutgar khitmutgars khmer khodja khodjas khoikhoi khoikhoin khoisan khoja khojah khojas khoka khor khors khot khotbah khotbahs khotbeh khotbehs khoum khoums khowar khrushchev khu khubber khud khuds khuen khula khulda khurta khurtas khuskhus khuskhuses khutba khutbah khutbahs khutuktu khvat khz ki kiaat kiabooca kiack kiacks kiaki kialee kialkee kiang kiangs kiaugh kiaughs kibbe kibbeh kibbehs kibber kibbes kibbi kibbis kibbitz kibbitzed kibbitzer kibbitzers kibbitzes kibbitzing kibble kibbled kibbler kibblerman kibbles kibbling kibbutz kibbutzes kibbutzim kibbutznik kibbutzniks kibe kibei kibeis kibes kibitka kibitkas kibitz kibitzed kibitzer kibitzers kibitzes kibitzing kibla kiblah kiblahs kiblas kibosh kiboshed kiboshes kiboshing kibsey kiby kichaga kichai kichel kick kickable kickass kickback kickbacks kickball kickballs kickboard kickboards kickboxer kickboxers kickboxing kickboxings kickdown kickdowns kicked kickee kicker kickers kickier kickiest kicking kickish kickless kickoff kickoffs kickout kickplate kicks kickseys kickshaw kickshaws kickshawses kicksies kicksorter kicksorters kickstand kickstands kickstart kickstarted kickstarting kickstarts kicktail kickup kickups kickwheel kickxia kicky kid kidang kidcom kidcoms kidcote kidd kidded kidder kidderminster kidders kiddie kiddied kiddier kiddiers kiddies kiddiewink kiddiewinkie kiddiewinkies kiddiewinks kidding kiddingly kiddish kiddishness kiddle kiddles kiddo kiddoes kiddos kiddush kiddushes kiddushim kiddushin kiddy kiddying kiddywink kiddywinks kidel kidels kideo kideos kidge kidgie kidgier kidgiest kidglove kidhood kidlet kidlets kidlike kidling kidlings kidlit kidlits kidnap kidnaped kidnapee kidnapees kidnaper kidnapers kidnaping kidnapped kidnappee kidnappees kidnapper kidnappers kidnapping kidnappings kidnaps kidney kidneylike kidneylipped kidneyroot kidneys kidneywort kidologies kidologist kidologists kidology kids kidskin kidskins kidsman kidstakes kidult kidults kidvid kidvids kie kief kiefekil kiefs kiekie kiel kielbasa kielbasas kielbasi kielbasy kier kierie kieries kiers kieselguhr kieselguhrs kieselgur kieserite kieserites kiesselguhr kiesselgur kiesserite kiester kiesters kiestless kiev kieve kieves kieye kif kifs kigali kiggelaria kight kights kikar kikawaeo kike kikes kiki kikoi kikois kikori kiku kikuel kikumon kikumons kikuyu kikuyus kil kiladja kilah kilampere kilan kilbrickenite kild kildee kildeer kilderkin kilderkins kileh kilerg kilergs kiley kileys kilhig kiliare kilij kilim kilimanjaro kilims kiliwa kiliwi kilkenny kill killable killadar killadars killas killases killbuck killcalf killcow killcows killcrop killcrops killcu killdee killdeer killdeers killdees killed killeekillee killeen killer killers killese killick killickinnic killickinnick killicks killie killies killifish killifishes killig killikinic killikinick killikinicks killing killingly killingness killings killinite killjoy killjoys killoch killock killocks killogie killogies killow kills killut killuts killweed killwort killy kiln kilned kilneye kilnhole kilning kilnman kilnrib kilns kilnstick kilntree kilo kiloampere kilobar kilobars kilobase kilobases kilobaud kilobauds kilobit kilobits kiloblock kilobuck kilobyte kilobytes kilocalorie kilocalories kilocurie kilocuries kilocycle kilocycles kilodyne kilogauss kilogausses kilograin kilogram kilogramme kilogrammes kilogrammetre kilograms kilogray kilograys kilohertz kilohertzes kilohm kilojoule kilojoules kiloline kiloliter kiloliters kilolitre kilolitres kilolumen kilom kilomegacycle kilometer kilometers kilometrage kilometre kilometres kilometric kilometrical kilomole kilomoles kilooersted kiloparsec kiloparsecs kilopascal kilopascals kilopoise kilopound kilorad kilorads kilos kilostere kiloton kilotons kilovar kilovolt kilovoltage kilovolts kiloware kilowatt kilowatts kiloword kilp kilps kilt kilted kilter kilters kiltie kilties kilting kiltings kiltlike kilts kilty kiluck kim kimbang kimberlin kimberlite kimberlites kimbo kimboed kimboing kimbos kimchee kimchees kimchi kimchis kimigayo kimmer kimmeridge kimmers kimnel kimono kimonoed kimonos kimura kin kina kinabulu kinaestheic kinaestheses kinaesthesia kinaesthesias kinaesthesis kinaesthetic kinaesthetically kinaesthetics kinah kinakina kinakinas kinas kinase kinases kinboot kinbot kinbote kinch kinchin kinchinjunga kinchinmort kinchins kincob kincobs kind kinda kindal kinded kinder kindergarten kindergartener kindergarteners kindergartening kindergartens kindergartner kindergartners kindergärtner kindergärtners kinders kinderspiel kinderspiels kindest kindheart kindhearted kindheartedly kindheartedness kindheartednesses kindie kindies kinding kindjal kindle kindled kindler kindlers kindles kindlesome kindless kindlessly kindlier kindliest kindlily kindliness kindlinesses kindling kindlings kindly kindness kindnesses kindred kindredless kindredly kindredness kindrednesses kindreds kindredship kindredships kindrend kinds kindy kine kinematic kinematical kinematically kinematics kinematograph kinematographer kinematographic kinematographical kinematographically kinematographs kinematography kinemometer kineplasty kinepox kines kinesalgia kinescope kinescoped kinescopes kinescoping kineses kinesiatric kinesiatrics kinesic kinesically kinesics kinesimeter kinesiologic kinesiological kinesiologies kinesiologist kinesiologists kinesiology kinesiometer kinesipath kinesipathic kinesipathies kinesipathist kinesipathists kinesipaths kinesipathy kinesis kinesitherapies kinesitherapy kinesodic kinestheses kinesthesia kinesthesias kinesthesis kinesthetic kinesthetically kinesthetics kinetheodolite kinetheodolites kinetic kinetical kinetically kineticism kineticist kineticists kinetics kinetin kinetins kinetochore kinetochores kinetogenesis kinetogenetic kinetogenetically kinetogenic kinetogram kinetograph kinetographer kinetographic kinetographs kinetography kinetomer kinetomeric kinetonema kinetonucleus kinetophobia kinetophone kinetophonograph kinetoplast kinetoplastic kinetoplasts kinetoscope kinetoscopes kinetoscopic kinetosis kinetosome kinetosomes kinfolk kinfolks king kingbird kingbirds kingbolt kingbolts kingcob kingcraft kingcrafts kingcup kingcups kingdom kingdomed kingdomful kingdomless kingdoms kingdomship kinged kingfish kingfisher kingfishers kingfishes kinghead kinghood kinghoods kinghorn kinghunter kinging kingklip kingklips kingle kingles kingless kinglessness kinglet kinglets kinglier kingliest kinglihood kinglihoods kinglike kinglily kingliness kinglinesses kingling kinglings kingly kingmaker kingmakers kingmaking kingpiece kingpin kingpins kingpost kingposts kingrow kings kingship kingships kingside kingsides kingsize kingsman kingsnake kingsnakes kingston kingstown kingweed kingwood kingwoods kinhin kinic kinin kininogen kininogenic kinins kink kinkable kinkaider kinkajou kinkajous kinkcough kinked kinker kinkhab kinkhaust kinkhost kinkier kinkiest kinkily kinkiness kinkinesses kinking kinkle kinkled kinkles kinkly kinks kinksbush kinky kinless kinnery kinnikinic kinnikinick kinnikinicks kinnikinnic kinnikinnick kinnikinnicks kinnikinnics kinnikinnik kinnor kino kinofluous kinology kinone kinones kinoo kinoos kinoplasm kinoplasmic kinos kinospore kinosternidae kinosternon kinot kinotannic kinred kinreds kins kinsen kinsfolk kinsfolks kinshasa kinship kinships kinsman kinsmanly kinsmanship kinsmen kinspeople kinsperson kinswoman kinswomen kintar kintlage kintledge kintledges kintra kintry kinura kinyarwanda kioea kionectomies kionectomy kionotomies kionotomy kiosk kiosks kiotome kiotomies kiotomy kiowa kip kipage kipe kipes kipfel kipling kiplingesque kipp kippa kippage kippages kippas kipped kippeen kippen kipper kippered kipperer kipperers kippering kippers kippin kipping kipps kippur kippy kips kipsey kipskin kipskins kipuka kipukas kir kirbeh kirbehs kirbies kirbigrip kirbigrips kirby kirghiz kirghizia kirghizstan kirgiz kirgizia kirgizstan kiri kiribati kirigami kirigamis kirimon kirimons kirker kirkia kirkify kirkings kirkinhead kirklike kirkman kirkmen kirkton kirktons kirktown kirktowns kirkward kirkyaird kirkyairds kirkyard kirkyards kirman kirmess kirmesses kirmew kirn kirned kirning kirns kirombo kirpan kirpans kirri kirris kirs kirsch kirsches kirschwasser kirschwassers kirsen kirtle kirtled kirtles kiruv kiruvs kirve kirver kisaeng kisan kisang kisans kischen kish kishar kishen kishes kishinev kishka kishkas kishke kishkes kishon kishy kiskadee kiskatom kiskatomas kiskitom kiskitomas kislev kismat kismats kismet kismetic kismets kisra kiss kissability kissable kissableness kissably kissage kissar kissed kissel kissels kisser kissers kisses kissing kissingly kissoff kissoffs kissogram kissograms kissproof kisswise kissy kist kisted kistful kistfuls kisting kists kistvaen kistvaens kiswa kiswah kiswahili kit kitab kitabi kitabis kitakyushu kitambilla kitar kitbag kitbags kitcat kitchen kitchendom kitchendoms kitchened kitchener kitcheners kitchenet kitchenets kitchenette kitchenettes kitchenful kitchening kitchenless kitchenmaid kitchenman kitchenry kitchens kitchenward kitchenwards kitchenware kitchenwares kitchenwife kitcheny kitchie kitching kite kited kiteflier kiteflying kitelike kitembilla kitenge kitenges kiter kiters kites kith kithara kitharas kithe kithed kithes kithing kithless kithlessness kithogue kiths kiting kitings kitish kitling kitlings kitman kitmudgar kits kitsch kitsches kitschier kitschiest kitschily kitschiness kitschy kittar kitted kittel kitten kittendom kittened kittenhearted kittenhood kittening kittenish kittenishly kittenishness kittenishnesses kittenless kittenlike kittens kittenship kitteny kitter kittereen kitthoge kittie kitties kitting kittisol kittiwake kittiwakes kittle kittled kittlepins kittler kittles kittlest kittlier kittliest kittling kittlish kittly kittock kittool kittul kittuls kitty kittycat kittycorner kittycornered kittysol kitul kitysol kiutle kiva kivas kiver kivikivi kivu kiwach kiwanian kiwi kiwifruit kiwifruits kiwikiwi kiwis kiyas kiyi kjeldahlization kjeldahlize kkk kl klaberjass klafter klaftern klam klan klang klangfarbe klangfarbes klangs klanism klans klansman klaprotholite klatch klatches klatsch klatsches klavern klaverns klavier klaviers klaxon klaxoned klaxoning klaxons kleagle kleagles klebsiella klebsiellas kleeneboc kleenebok kleenex kleenexes kleig kleinite klendusic klendusities klendusity klendusive klepht klephtic klephtism klephtisms klephts kleptic kleptistic klepto kleptocracies kleptocracy kleptocrat kleptocratic kleptocrats kleptomania kleptomaniac kleptomaniacal kleptomaniacs kleptomanias kleptomanist kleptophobia kleptos klesha klezmer klezmers klezmorim klick klicket klicks klieg klik kliks klinker klinkers klino klinostat klinostats klip klipbok klipdachs klipdas klipdases klipfish kliphaas klippe klippen klipspringer klipspringers klismoi klismos klister klisters kln klockmannite kloesse klom klondike klondiked klondiker klondikers klondikes klondiking klondyke klondyked klondyker klondykers klondykes klondyking klong klongs klooch klooches kloochman kloochmans kloochmen kloof kloofs klootch klootches klootchman klootchmans klootchmen klop klops klosh klosse klowet kluck klucker kludge kludged kludges kludging kludgy kluge kluged kluges kluging klunk klusse klutz klutzes klutzier klutziest klutziness klutzinesses klutzy klva klystron klystrons klyuchevskaya km kmel kmet kmole kn knab knabble knack knackaway knackebrod knacked knacker knackered knackeries knackering knackers knackery knackier knackiest knackiness knackinesses knacking knackish knacks knackwurst knackwursts knacky knag knagged knaggier knaggiest knagginess knagginesses knaggy knags knaidel knaidlach knaidloch knap knapbottle knape knappan knappe knapped knapper knappers knapping knappish knappishly knapple knappled knapples knappling knappy knaps knapsack knapsacked knapsacking knapsacks knapscal knapscals knapscap knapscull knapsculls knapskull knapskulls knapweed knapweeds knar knark knarl knarle knarls knarred knarring knarry knars knaster knatch knatte knaur knaurs knave knaveries knavery knaves knaveship knaveships knavess knavish knavishly knavishness knavishnesses knaw knawe knawel knawels knawes knaydlach knead kneadability kneadable kneaded kneader kneaders kneading kneadingly kneads knebelite kneckebrud knee kneebrush kneecap kneecapped kneecapping kneecappings kneecaps kneed kneehole kneeholes kneeing kneel kneeled kneeler kneelers kneelet kneeling kneelingly kneels kneepad kneepads kneepan kneepans kneepiece knees kneesies kneesock kneesocks kneestone kneidlach knell knelled knelling knells knelt knesset knesseth knessets knet knetch knevel knevell knevelled knevelling knevells knew knez knezi kniaz kniazi knick knicker knickerbocker knickerbockered knickerbockers knickered knickers knickknack knickknackatory knickknacked knickknackery knickknacket knickknackish knickknacks knickknacky knicknack knickpoint knickpoints knicks knife knifeboard knifed knifeful knifeless knifelike knifeman knifepoint knifepoints knifeproof knifer kniferest knifers knifes knifesmith knifeway knifing knifings knight knightage knightages knighted knightess knighthead knightheads knighthood knighthoods knightia knighting knightless knightlier knightliest knightlihood knightlike knightliness knightlinesses knightling knightly knights knightship knightswort kniphofia kniphofias knipperdolling knish knishes knit knitback knitch knitches knits knitster knittable knitted knitter knitters knittie knitting knittings knittle knittles knitwear knitwears knitweed knitwork knive knived knives knivey kniving knob knobbed knobber knobbers knobbier knobbiest knobbiness knobbinesses knobbing knobble knobbled knobbler knobbles knobblier knobbliest knobbling knobbly knobby knobkerrie knobkerries knobkerry knoblike knobs knobstick knobstone knobular knobweed knobwood knock knockabout knockabouts knockaway knockdown knockdowns knocked knockemdown knocker knockers knocking knockings knockless knockoff knockoffs knockout knockouts knocks knockstone knockup knockwurst knockwursts knoit knoll knolled knoller knollers knolling knolls knolly knop knopite knopped knopper knoppie knoppy knops knopweed knorhaan knorhmn knorr knosp knosped knosps knot knotberry knotgrass knotgrasses knothead knothole knotholes knothorn knotless knotlike knotroot knots knotted knotter knotters knottier knottiest knottily knottiness knottinesses knotting knottings knotty knotweed knotweeds knotwork knotworks knotwort knout knouted knouting knouts know knowability knowable knowableness knowablenesses knowe knower knowers knowes knoweth knowhow knowhows knowing knowinger knowingest knowingly knowingness knowingnesses knowings knowledgabilities knowledgability knowledgable knowledgableness knowledgably knowledge knowledgeabilities knowledgeability knowledgeable knowledgeableness knowledgeablenesses knowledgeably knowledged knowledgeless knowledgement knowledges knowledging known knownothingism knowns knowperts knows knox knoxville knoxvillite knub knubbier knubbiest knubble knubbled knubbles knubblier knubbliest knubbling knubbly knubby knublet knubs knuckle knuckleball knuckleballer knuckleballers knuckleballs knucklebone knucklebones knuckled knuckleduster knuckledusters knucklehead knuckleheaded knuckleheadedness knuckleheads knuckler knucklers knuckles knucklesome knucklier knuckliest knuckling knuckly knucks knuclesome knuffe knulling knur knurl knurled knurlier knurliest knurlin knurling knurlings knurls knurly knurr knurrs knurry knurs knut knuth knuts knutty knyaz knyazi knysna ko koa koae koala koalas koali koan koans koas koasati kob koban kobang kobangs kobans kobellite kobenhavn kobi kobird kobo kobold kobolds kobong kobos kobs kobu kobus kochia kochliarion koda kodagu kodak kodaked kodaker kodaking kodakist kodakked kodakking kodakry kodiak kodkod kodogu kodro kodurite koeberliniaceous koechlinite koel koellia koels koenenite koff koffs koft kofta koftas koftgar koftgari koftgaris koftgars koftwork koftworks kogai kogasin koggelmannetje kogia kohekohe kohemp kohen kohens kohl kohleria kohlrabi kohlrabies kohlrabis kohls kohua koi koil koila koilanaglyphic koilon koilonychia koimesis koine koines koinon koinonia kois kojang koji kojima kojiri kojis kokako kokam kokama kokan kokanee kokanees koker kokerboom kokers kokia kokil kokila kokio kokka koklas koklass koko kokobeh kokoon kokoona kokopu kokoromiko kokos kokowai kokra kokras koksaghyz koksagyz kokstad koktaite koku kokum kokumin kokumingun kokums kola kolach kolache kolaches kolacky kolam kolami kolas kolattam kolbasi kolbasis kolbassi kolbassis kolea koleroga kolhoz kolhozes kolhozy kolinski kolinskies kolinsky kolkhos kolkhoses kolkhosy kolkhoz kolkhozes kolkhoznik kolkhozniki kolkhozniks kolkhozy kolkoz kolkozes kolkozy kolkwitzia kollast kollaster koller kollergang kolmogorov koln kolo kolobia kolobion kolobus kolokolo kolos kolskite kolsun koltunna koltunnor komarch komatik komatiks kombu kombus komi kominuter komissar komissars komitadji komitaji komitajis kommandatura kommetje kommos komondor komondoroc komondorock komondorok komondors kompeni kompow komtok kon kona konak konakri kond kondo konfyt konfyts kong kongo kongoni kongsbergite kongu konilite konimeter konimeters koninckite konini koniologies koniology koniophobia koniscope koniscopes konjak konk konkani konked konking konks konning konohiki kons konseal konstantin kontakia kontakion koodoo koodoos kook kooka kookaburra kookaburras kooked kookeree kookery kookie kookier kookiest kookily kookiness kookinesses kooking kookri kooks kooky koolah koolahs koolau kooletah kooliman koolokamba koombar koomkie koonti koopbrief koorajong koorhmn koori koories kooris koorka koosin kootcha kootchar kop kopasetic kopec kopeck kopecks kopek kopeks kopfring koph kophs kopi kopis kopje kopjes kopophobia koppa koppas koppen koppie koppies koppite kops kor kora koradji korai korait korakan koran koranic korari koras korat korats kordax kordofan kordofanian kore korea korean koreans korec koreci korero koreros kores korfball korfballs korhmn kori korimako korin korinthos korkir korkirs korma kormas kornerupine kornskeppa kornskeppur korntonde korntonder korntunna korntunnur koromika koromiko korona korora kororas korova korrel korrigan korrigum kors korsakoff korsakow korumburra korun koruna korunas koruny korymboi korymbos korzec kos koses kosha koshare kosher koshered koshering koshers kosin kosmokrator kosmos kosmoses koso kosong kosos kosotoxin koss kosses kosteletzya koswite kota kotal kotar koto kotoite kotoko kotos kotow kotowed kotower kotowers kotowing kotows kotschubeite kottaboi kottabos kottaboses kottigite kotuku kotukutuku kotwal kotwalee kotwali kotwals kotyle kotylos kou koudou koulan koulans koulibiaca koumis koumises koumiss koumisses koumys koumyses koumyss koumysses kouprey koupreys kouproh kourbash kourbashed kourbashes kourbashing kouroi kouros kousin kouskous kouskouses koussin kousso koussos kouza kovil kovna kovno kow kowbird koweit kowhai kowhais kows kowtow kowtowed kowtower kowtowers kowtowing kowtows koyan koyemshi kozo kozuka kpc kph kr kra kraal kraaled kraaling kraals krab krabs kraft krafts kragerite krageroite krait kraits krakatao krakatau krakatoa krakau kraken krakens krakow krakowiak krakowiaks kral kram krama krameria krameriaceous kramerias krams kran krang krangs krans kranses krantz krantzes krantzite kranz kranzes krapfen kras krasis krater kraters kratogen kratogenic kraurite kraurosis kraurotic krausen krausite kraut krauthead krauts krautweed kravers kreasote kreasoted kreasotes kreasoting kreatic kreatine kreatines krebs kreep kreeps kreese kreesed kreeses kreesing kreil kreis kreistle kreitonite kreittonite kreitzman krelos kremersite kremlin kremlinologies kremlinologist kremlinologists kremlinology kremlins krems kreng krengs krennerite kreosote kreosoted kreosotes kreosoting krepis kreplach kreplech kretek kreteks kreutzer kreutzers kreuzer kreuzers krewe krewes kriegspiel kriegspiels kriegsspiel kriegsspiels krieker krigia krikorian krill krills krimmer krimmers krina kris krised krises krishna krishnaism krising krispies kriss krissed krisses krissing krisuvigite kritarchy kritrima krivu krna krobyloi krobylos krocidolite krocket krohnkite krome kromeski kromeskies kromesky kromogram kromskop krona krone kronen kroner kronor kronos kronur kroo kroon krooni kroons krosa krouchka kroushka krs krubi krubis krubut krubuts krugerrand krugerrands kruller krullers krumhorn krumhorns krumkake krumkakes krummholz krummhorn krummhorns kruna kryokonite kryolite kryolites kryolith kryoliths kryometer kryometers krypses krypsis krypterophaneron kryptic krypticism kryptocyanine kryptol kryptomere krypton kryptonite kryptons krytron krytrons króna krónur ks ksar ksars kshatriya ksi kt kthibh ku kuan kuangchou kuba kubba kubong kubuklion kuchcha kuchean kuchen kuchens kudize kudo kudos kudoses kudu kudus kudzu kudzus kue kueh kuei kuenlun kues kuffieh kufic kufiyah kufiyahs kufiyeh kuge kugel kugelhof kugels kui kuichua kujawiak kukang kukenaam kukeri kuki kukoline kukri kukris kuku kukui kukupa kukus kula kulack kulah kulaite kulak kulaki kulakism kulaks kulan kulanapan kulang kulans kulimit kulkarni kullaite kulm kulmet kultur kulturkampf kulturs kumara kumaras kumari kumaris kumbaloi kumbi kumbuk kumhar kumis kumiss kumisses kumkum kummel kummels kummerbund kumminost kumquat kumquats kumrah kumshaw kumys kumyses kuna kunai kunas kundalini kundalinis kune kung kunk kunkar kunkars kunkur kunkurs kunlun kunmiut kunwari kunzite kunzites kupfernickel kupfferite kuphar kupper kura kurajong kurakkan kurbash kurbashed kurbashes kurbashing kurchatovium kurchatoviums kurchee kurchi kurchicine kurchine kurd kurdaitcha kurdaitchas kurdish kurdistan kurgan kurgans kuri kurikata kuris kurmburra kurn kuroshio kurrajong kurrajongs kurrat kurre kurres kursaal kursaals kursch kurta kurtas kurtoses kurtosis kurtosises kuru kuruma kurumaya kurung kurus kurux kurvey kurveyed kurveying kurveyor kurveyors kurveys kusa kusam kusan kusha kusimanse kusimansel kuskite kuskos kuskus kusso kussos kusti kusum kutch kutcha kutches kutta kuttab kuttar kuttaur kuvasz kuvaszok kuvi kuwait kuwaiti kuzu kuzus kv kvah kvar kvarner kvas kvases kvass kvasses kvell kvelled kvelling kvells kvetch kvetched kvetcher kvetchers kvetches kvetchier kvetchiest kvetching kvetchy kvint kvinter kvutza kvutzah kw kwa kwacha kwachas kwai kwaiken kwajalein kwakiutl kwakiutls kwamme kwan kwangchow kwannon kwanza kwanzaa kwanzas kwarta kwarterka kwartje kwashiorkor kwashiorkors kwatuma kwaznku kwazoku kweek kwela kwelas kwhr kwintra ky kyabuka kyack kyacks kyah kyak kyaks kyang kyangs kyanise kyanised kyanises kyanising kyanite kyanites kyanization kyanize kyanized kyanizes kyanizing kyanol kyar kyars kyat kyathoi kyathos kyats kyaung kybosh kyboshed kyboshes kyboshing kyd kydst kye kyes kyke kyl kyle kyles kylices kylie kylies kylikec kylikes kylin kylins kylite kylix kylloses kyllosis kyloe kyloes kymation kymatology kymbalon kymnel kymogram kymograms kymograph kymographic kymographies kymographs kymography kymric kynd kynde kynded kyndes kynding kynds kyne kynurenic kynurin kynurine kyogen kyogens kyoodle kyoodled kyoodling kyoto kyphoscoliosis kyphoscoliotic kyphoses kyphosidae kyphosis kyphosus kyphotic kyrgystan kyrial kyriale kyrie kyrielle kyrielles kyries kyrine kyriologic kyrios kyschty kyschtymite kyte kytes kythe kythed kythes kything kytoon kyu kyus kyushu kümmel kümmels l la laa laager laagered laagering laagers laang laari laas lab labaara labadist labanotation labanotations labara labaria labarum labarums labba labbella labber labby labda labdacism labdacisms labdacismus labdanum labdanums labdas labefact labefactation labefactations labefaction labefactions labefied labefy labefying label labelable labeled labeler labelers labeling labella labellable labellate labelled labeller labellers labelling labellings labelloid labellum labels labia labial labialisation labialisations labialise labialised labialises labialising labialism labialisms labialismus labiality labialization labializations labialize labialized labializes labializing labially labials labiatae labiate labiated labiates labiatiflorous labibia labidometer labidophorous labiella labile labilisation labilise labilities lability labilization labilize labilized labilizing labioalveolar labiocervical labiodendal labiodental labiodentals labioglossal labioglossolaryngeal labioglossopharyngeal labiograph labiogression labioguttural labiolingual labiomancy labiomental labionasal labionasals labiopalatal labiopalatalize labiopalatine labiopharyngeal labioplasty labiose labiotenaculum labiovelar labiovelarisation labiovelarise labiovelarised labiovelarising labiovelarization labiovelarize labiovelarized labiovelarizing labiovelars labioversion labis labises labite labium lablab lablabs labor laborability laborable laborage laborant laboratorial laboratorially laboratorian laboratories laboratory labordom labored laboredly laboredness laborer laborers labores laboress laborhood laboring laboringly laborings laborious laboriously laboriousness laboriousnesses laborism laborisms laborist laboristic laborists laborite laborites laborius laborless laborous laborously laborousness labors laborsaving laborsome laborsomely laborsomeness laboulbeniaceous labour labourability labourable labourage laboured labouredly labouredness labourer labourers labouress labourhood labouring labouringly labourings labourious labourism labourisms labourist labourists labourite labourites labourless labours laboursaving laboursome laboursomely labra labrador labradorite labradorites labradoritic labradors labral labras labredt labret labretifery labrets labrid labridae labrids labrocyte labroid labroids labrosaurid labrosauroid labrose labrum labrums labrusca labrys labryses labs laburnum laburnums labyrinth labyrinthal labyrinthally labyrinthed labyrinthian labyrinthibranch labyrinthibranchiate labyrinthic labyrinthical labyrinthically labyrinthiform labyrinthine labyrinthitis labyrinthitises labyrinthodon labyrinthodont labyrinthodonta labyrinthodontia labyrinthodontian labyrinthodontid labyrinthodontoid labyrinthodonts labyrinths lac lacatan lacca laccaic laccainic laccase laccic laccin laccol laccolite laccolites laccolith laccolithic laccoliths laccolitic laccopetalum lace lacebark lacebarks laced lacedaemonian laceflower laceier laceiest laceleaf laceless lacelike lacemaker lacemaking laceman lacemen lacepiece lacepod lacer lacerability lacerable lacerant lacerate lacerated lacerately lacerates lacerating laceration lacerations lacerative lacerna lacernae lacernas lacers lacert lacerta lacertian lacertid lacertidae lacertids lacertiform lacertilia lacertilian lacertiloid lacertine lacertoid lacertose lacery laces lacet lacetilian lacets lacewing lacewings lacewoman lacewomen lacewood lacewoods lacework laceworker laceworks lacey laceybark lache laches lacheses lachesis lachnolaimus lachryma lachrymable lachrymae lachrymaeform lachrymal lachrymally lachrymalness lachrymals lachrymaries lachrymary lachrymation lachrymations lachrymator lachrymatories lachrymators lachrymatory lachrymiform lachrymist lachrymogenic lachrymonasal lachrymosal lachrymose lachrymosely lachrymosities lachrymosity lachrymous lachsa lacier laciest lacily lacinate laciness lacinesses lacing lacings lacinia laciniae lacinias laciniate laciniated laciniation laciniations laciniform laciniola laciniolate laciniose lacinious lacinula lacinulas lacinulate lacinulose lacis lack lackadaisic lackadaisical lackadaisicality lackadaisically lackadaisicalness lackadaisicalnesses lackadaisies lackadaisy lackaday lackadays lackbrained lackbrainedness lacked lacker lackered lackerer lackering lackers lackey lackeydom lackeyed lackeying lackeyism lackeys lackeyship lackies lacking lackland lacklands lackluster lacklusterness lacklusters lacklustre lacklustres lacklustrous lacks lacksense lackwit lackwitted lackwittedly lackwittedness lacmoid lacmus lacmuses lacoca lacolith laconia laconian laconic laconica laconical laconically laconicalness laconicism laconicisms laconicness laconics laconicum laconise laconised laconising laconism laconisms laconize laconized laconizer laconizing lacquer lacquered lacquerer lacquerers lacquering lacquerings lacquerist lacquers lacquerware lacquerwares lacquerwork lacquerworks lacquey lacqueyed lacqueying lacqueys lacrimal lacrimals lacrimaries lacrimary lacrimation lacrimations lacrimator lacrimatories lacrimators lacrimatory lacrimose lacrimosely lacrimosities lacrimosity lacrimoso lacroixite lacrosse lacrosser lacrosses lacrym lacrymal lacrymals lacrymaries lacrymary lacrymation lacrymations lacrymator lacrymatories lacrymators lacrymatory lacrymose lacrymosely lacrymosities lacrymosity lacs lactagogue lactalbumin lactalbumins lactam lactamide lactams lactant lactarene lactarian lactarians lactarine lactarious lactarium lactarius lactary lactase lactases lactate lactated lactates lactating lactation lactational lactationally lactations lacteal lacteally lacteals lactean lactenin lacteous lactesce lactescence lactescences lactescency lactescenle lactescense lactescent lactic lacticinia lactid lactide lactiferous lactiferousness lactiferousnesses lactific lactifical lactification lactified lactiflorous lactifluous lactiform lactifuge lactify lactifying lactigenic lactigenous lactigerous lactim lactimide lactinate lactivorous lacto lactobaccilli lactobacillaceae lactobacilli lactobacillus lactobacteriaceae lactobutyrometer lactocele lactochrome lactocitrate lactodensimeter lactoflavin lactoflavins lactogen lactogenic lactoglobulin lactoglobulins lactoid lactol lactometer lactometers lactone lactones lactonic lactonised lactonization lactonize lactonized lactonizing lactophosphate lactophrys lactoproteid lactoprotein lactoproteins lactoscope lactoscopes lactose lactoses lactosid lactoside lactosuria lactothermometer lactotoxin lactovegetarian lactovegetarians lactuca lactucarium lactucerin lactucin lactucol lactucon lactyl lacuna lacunae lacunal lacunar lacunaria lacunaris lacunars lacunary lacunas lacunate lacune lacunes lacunome lacunose lacunosis lacunosity lacunule lacunulose lacuscular lacustral lacustrian lacustrine lacwork lacy lad ladakin ladang ladanigerous ladanum ladanums ladder laddered laddering ladderless ladderlike ladderman laddermen ladders ladderway ladderwise laddery laddess laddie laddies laddikie laddish laddishness laddishnesses laddock lade laded lademan laden ladened ladening ladens lader laders lades ladette ladettes ladhood ladhoods ladies ladieswear ladieswears ladified ladifies ladify ladifying ladin lading ladings ladino ladinos ladkin ladle ladled ladleful ladlefuls ladler ladlers ladles ladlewood ladling ladner ladron ladrone ladrones ladronism ladronize ladrons lads lady ladybeetle ladybeetles ladybird ladybirds ladybug ladybugs ladyclock ladycow ladycows ladydom ladyfern ladyfied ladyfies ladyfinger ladyfingers ladyfish ladyfishes ladyflies ladyfly ladyfy ladyfying ladyhood ladyhoods ladyish ladyishly ladyishness ladyism ladyisms ladykiller ladykin ladykind ladykins ladyless ladylike ladylikely ladylikeness ladylikenesses ladyling ladylintywhite ladylove ladyloves ladyly ladypalm ladypalms ladysfinger ladyship ladyships ladyslipper ladysnow laelia laemodipod laemodipodan laemodipodiform laemodipodous laemoparalysis laemostenosis laen laender laeotropic laeotropism laeotropous laer laertes laesie laet laetare laetares laetation laeti laetic laetrile laetriles laevigate laevigated laevigates laevigating laevo laevoduction laevogyrate laevogyre laevogyrous laevolactic laevorotation laevorotations laevorotatory laevotartaric laevoversion laevulin laevulose laevuloses lafayette laff laffs laft lag lagan lagans lagarostrobus lagarto lagen lagena lagenae lagenaria lagenas lagend lagends lagenian lageniform lageniporm lagenophera lager lagered lagering lagerphone lagerphones lagers lagerspetze lagerstroemia lagetto laggar laggard laggardism laggardly laggardness laggardnesses laggards lagged laggen laggens lagger laggers laggin lagging laggingly laggings laggins lagidium laglast lagly lagna lagniappe lagniappes lagodon lagomorph lagomorpha lagomorphic lagomorphous lagomorphs lagomrph lagonite lagoon lagoonal lagoons lagoonside lagophthalmos lagophthalmus lagopode lagopodous lagopous lagopus lagorchestes lagos lagostoma lagostomus lagothrix lagrangian lagrimoso lags laguna lagunas laguncularia lagune lagunes lagwort lah lahar lahars lahnda lahore lahs lahu lai laic laical laicality laically laicals laich laichs laicisation laicisations laicise laicised laicises laicising laicism laicisms laicities laicity laicization laicizations laicize laicized laicizer laicizes laicizing laics laid laided laiding laidly laids laigh laigher laighest laighs laik laika laikas laiked laiker laikers laiking laiks lain lainage laine lainer laiose lair lairage lairages laird lairdess lairdie lairdly lairdocracy lairds lairdship lairdships laired lairier lairiest lairing lairise lairised lairises lairising lairize lairized lairizes lairizing lairless lairman lairmen lairs lairstone lairy laiser laisse laisses laissez lait laitance laitances laith laithe laithly laities laity laius lak lakarpite lakatan lakatoi lake lakebed lakebeds laked lakefront lakefronts lakeland lakelander lakelands lakeless lakelet lakelets lakelike lakemanship lakeport lakeports laker lakers lakes lakeshore lakeshores lakeside lakesides lakeward lakeweed lakey lakh lakhs lakie lakier lakiest lakin laking lakings lakins lakish lakishness lakism lakist lakke lakmus laks laksa laksas lakses lakshmi laky lalang lalangs lalapalooza lalapaloozas lalaqui laldie laldies laldy laliophobia lalique laliques lall lallan lalland lallands lallans lallapalooza lallapaloozas lallation lallations lalled lalling lallings lalls lally lallygag lallygagged lallygagging lallygags lalo laloneurosis lalopathies lalopathy lalophobia laloplegia lam lama lamaic lamaism lamaist lamaistic lamantin lamantins lamany lamarck lamarckian lamarckism lamas lamasary lamaserai lamaserais lamaseries lamasery lamastery lamb lamba lamback lambada lambadas lambale lambast lambaste lambasted lambastes lambasting lambasts lambchop lambda lambdacism lambdacisms lambdas lambdiod lambdoid lambdoidal lambeau lambed lambencies lambency lambent lambently lamber lambers lambert lambertia lamberts lambes lambhood lambie lambier lambies lambiest lambiness lambing lambis lambish lambitive lambitives lambkill lambkills lambkin lambkins lambliasis lamblike lamblikeness lambling lamblings lambly lamboy lamboys lambrequin lambrequins lambs lambsdown lambskin lambskins lambsuccory lambswool lamby lamda lamdan lamden lame lamebrain lamebrained lamebrains lamed lamedh lamedhs lamedlamella lameds lameduck lamel lamella lamellae lamellar lamellarly lamellary lamellas lamellate lamellated lamellately lamellation lamellations lamellibranch lamellibranchia lamellibranchiate lamellibranchs lamellicorn lamellicornate lamellicornia lamellicornous lamellicorns lamelliferous lamelliform lamellirostral lamellirostrate lamelloid lamellose lamellosity lamellule lamely lameness lamenesses lament lamentabile lamentability lamentable lamentableness lamentablenesses lamentably lamentation lamentational lamentations lamentatory lamented lamentedly lamenter lamenters lamentful lamenting lamentingly lamentings lamentive lamentory laments lamer lamers lames lamest lamester lamestery lameter lameters lametta lamia lamiaceae lamiaceous lamiae lamias lamiger lamigers lamiid lamin lamina laminability laminable laminae laminal laminals laminar laminaria laminariaceae laminariaceous laminariales laminarian laminarians laminarias laminarin laminarins laminarioid laminarise laminarised laminarises laminarising laminarite laminarize laminarized laminarizes laminarizing laminary laminas laminate laminated laminates laminating lamination laminations laminator laminators laminboard laminectomies laminectomy laming lamington lamingtons laminiferous laminiform laminin laminins laminiplantar laminiplantation laminitis laminitises laminose laminous lamish lamister lamisters lamiter lamiters lamium lamm lammas lammastide lammed lammer lammergeier lammergeiers lammergeir lammergeyer lammergeyers lammers lammie lammies lammiger lammigers lamming lammings lammock lammy lamna lamnectomy lamnid lamnidae lamnoid lamp lampad lampadaire lampadaries lampadary lampadedromies lampadedromy lampadephore lampadephoria lampadephorias lampadist lampadists lampadite lampadomancies lampadomancy lampads lampara lampas lampases lampasse lampasses lampate lampatia lampblack lampblacked lampblacking lampblacks lamped lamper lampern lamperns lampers lamperses lampf lampflower lampfly lampful lampholder lampholders lamphole lampholes lampic lamping lampings lampion lampions lampist lampistry lampless lamplet lamplight lamplighted lamplighter lamplighters lamplights lamplit lampmaker lampmaking lampman lampmen lampoon lampooned lampooner lampooneries lampooners lampoonery lampooning lampoonist lampoonists lampoons lamppost lampposts lamprel lampret lamprey lampreys lampridae lampris lampron lampropeltis lamprophonia lamprophonic lamprophony lamprophyre lamprophyres lamprophyric lamprotype lamps lampshade lampshades lampshell lampshells lampstand lampuka lampukas lampuki lampukis lampwick lampworker lampworking lampworkings lampyrid lampyridae lampyrids lampyrine lams lamsiekte lamster lamsters lamziekte lan lana lanai lanais lanameter lanarkite lanas lanate lanated lanaz lancado lancados lancashire lancaster lancasterian lancastrian lance lanced lancegay lancegaye lancegays lancejack lancejacks lancelet lancelets lancelike lancelot lancely lanceman lancemen lanceolar lanceolate lanceolated lanceolately lanceolation lancepesade lancepod lanceprisado lanceproof lancer lancers lances lancet lanceted lanceteer lancetfish lancetfishes lancets lancewood lancewoods lanch lancha lanchara lanched lanches lanching lanchou lanchow lanciers lanciferous lanciform lancinate lancinated lancinates lancinating lancination lancinations lancing land landage landamman landammann landammanns landammans landau landaulet landaulets landaulette landaulettes landaus landblink landbook landdamne landdamned landdamnes landdamning landdros landdroses landdrost landdrosten landdrosts lande landed lander landers landes landesite landfall landfalls landfang landfast landfill landfilled landfilling landfillings landfills landflood landfolk landforce landforces landform landforms landgafol landgate landgates landgrab landgrabs landgravate landgravates landgrave landgraves landgraveship landgravess landgraviate landgraviates landgravine landgravines landhold landholder landholders landholdership landholding landholdings landimere landing landings landiron landladies landlady landladydom landladyhood landladyish landladyship landleaper landler landlers landless landlessness landlessnesses landlike landline landlines landlock landlocked landlook landlooker landloper landlopers landloping landlord landlordism landlordisms landlordly landlordry landlords landlordship landlouper landlouping landlubber landlubberish landlubberliness landlubberlinesses landlubberly landlubbers landlubbing landman landmark landmarked landmarking landmarks landmass landmasses landmen landmil landmine landmines landmonger landocracies landocracy landocrat landolphia landowner landowners landownership landownerships landowning landownings landplane landrace landraces landrail landrails landraker landreeve landright landrover lands landsale landsat landscape landscaped landscaper landscapers landscapes landscaping landscapist landscapists landshard landshark landship landsick landside landsides landskip landskipped landskipping landskips landsknecht landsknechts landsleit landslid landslidden landslide landslided landslides landsliding landslip landslips landsmaal landsmal landsman landsmanleit landsmanshaft landsmanshaften landsmen landspout landspringy landstorm landsturm landswoman landtrost landwaiter landward landwards landwash landway landways landwehr landwhin landwind landwinds landwire landwrack landwreck landyard lane lanely lanes lanesome lanete laneway laneways laney lang langaha langahas langarai langate langauge langbanite langbeinite langbeinites langca langeel langel langer langest langi langiel langite langka langlauf langlaufer langlaufers langlauffer langlaufs langle langleufer langleufers langley langleys langobard langobardic langoon langooty langosta langostino langostinos langourous langourously langouste langoustes langoustine langoustines langrage langrages langrel langrels langret langridge langridges langsat langset langsettle langshan langshans langside langspel langspels langspiel langspiels langspil langsyne langsynes langteraloo language languaged languageless languages languaging langue langued languedoc languent langues languescent languet languets languette languettes languid languidly languidness languidnesses languish languished languisher languishers languishes languishing languishingly languishings languishment languishments languor languorment languorous languorously languorousness languorousnesses languors langur langurs laniard laniards laniaries laniariform laniary laniate lanier laniferous lanific lanifice laniflorous laniform lanigerous laniidae laniiform lanioid lanista lanistae lanital lanitals lanius lank lanked lanker lankest lanket lankier lankiest lankily lankiness lankinesses lanking lankish lankly lankness lanknesses lanks lanky lanner lanneret lannerets lanners lanolated lanolin lanoline lanolines lanolins lanose lanosities lanosity lansa lansat lansdowne lanseh lanset lansfordite lansing lansknecht lanson lansquenet lansquenets lant lantaca lantaka lantana lantanas lantanium lantcha lanterloo lanterloos lantern lanterned lanternfish lanternfishes lanternflower lanternfly lanterning lanternist lanternists lanternleaf lanternlit lanternman lanterns lanthana lanthania lanthanid lanthanide lanthanides lanthanite lanthanon lanthanotidae lanthanotus lanthanum lanthanums lanthopin lanthopine lanthorn lanthorns lants lantskip lantskips lantum lanuginose lanuginous lanuginousness lanuginousnesses lanugo lanugos lanum lanx lanyard lanyards lanzhou lanzknecht lanzknechts lanzon lao laocoon laodah laodicean laogai laogais laos laotian laotians laozi lap lapacho lapachol lapactic laparectomy laparocele laparocholecystotomy laparocolectomy laparocolostomy laparocolotomy laparocolpohysterotomy laparocolpotomy laparocystectomy laparocystotomy laparoelytrotomy laparoenterostomy laparoenterotomy laparogastroscopy laparogastrotomy laparohepatotomy laparohysterectomy laparohysteropexy laparohysterotomy laparoileotomy laparomyitis laparomyomectomy laparomyomotomy laparonephrectomy laparonephrotomy laparorrhaphy laparosalpingectomy laparosalpingotomy laparoscope laparoscopes laparoscopic laparoscopically laparoscopies laparoscopist laparoscopists laparoscopy laparosplenectomy laparosplenotomy laparostict laparothoracoscopy laparotome laparotomies laparotomist laparotomize laparotomized laparotomizing laparotomy laparotrachelotomy lapb lapboard lapboards lapcock lapdog lapdogs lapel lapeled lapeler lapelled lapels lapful lapfuls lapheld laphelds lapicide lapidarian lapidaries lapidarist lapidarists lapidary lapidate lapidated lapidates lapidating lapidation lapidations lapidator lapideon lapideous lapides lapidescence lapidescences lapidescent lapidicolous lapidific lapidifical lapidification lapidifications lapidified lapidifies lapidify lapidifying lapidist lapidists lapidity lapidose lapies lapilli lapilliform lapillo lapillus lapin lapinized lapins lapis lapises lapithae lapiths lapje lapjes lapland laplander laplanders lapling lapon laportea lapp lappaceous lappage lappages lapped lappel lappels lapper lappered lappering lappers lappet lappeted lappethead lappets lappic lappie lappies lappilli lapping lappings lappish lappland lapplander lapponian lapps lappula lapputan laps lapsability lapsable lapsang lapsangs lapsation lapse lapsed lapser lapsers lapses lapsful lapsi lapsibility lapsible lapsided lapsing lapsingly lapstone lapstones lapstrake lapstrakes lapstreak lapstreaked lapstreaker lapstreaks lapsus laptop laptops lapulapu laputan laputically lapwing lapwings lapwork lapworks laquais laquear laquearia laquearian laquei laqueus lar larararia lararia lararium larbo larboard larboards larbolins larbos larbowlines larcenable larcener larceners larcenic larcenies larcenish larcenist larcenists larcenous larcenously larcenousness larceny larch larchen larcher larches larcin larcinry lard lardacein lardaceous lardalite lardalites larded larder larderellite larderer larderers larderful larderie larderlike larders lardier lardiest lardiform lardiner larding lardite lardizabala lardizabalaceae lardizabalaceous lardlike lardon lardons lardoon lardoons lardry lards lardworm lardy lare lareabell laree larees lares largamente largando large largebrained largehanded largehearted largeheartedly largeheartedness largeheartednesses largely largemouth largemouthed largemouths largen largened largeness largenesses largening largens largeour largeous larger larges largess largesse largesses largest larget larghetto larghettos larghissimo larghissimos largifical largish largishness largition largitional largitions largo largos largy lari lariat lariated lariating lariats laricariidae larick larid laridae laridine larigo larigot lariid larikin larin larine laris larithmic larithmics larix larixin lark larked larker larkers larkier larkiest larkiness larkinesses larking larkingly larkish larkishly larkishness larklike larkling larks larksome larksomes larkspur larkspurs larky larlike larmier larmiers larmoyant larn larnakes larnax larned larning larns larnyx laroid laron larrea larree larries larrigan larrigans larrikin larrikinalian larrikiness larrikinism larrikinisms larrikins larriman larrup larruped larruper larrupers larruping larrups larry lars larsenite larum larums larus larva larvacea larvacean larvae larval larvaria larvarium larvariums larvas larvate larvated larve larvicidal larvicide larvicides larvicolous larviform larvigerous larvikite larvikites larviparous larviposit larviposition larvivorous larvule laryngal laryngalgia laryngals laryngeal laryngeally laryngeals laryngean laryngeating laryngectomee laryngectomees laryngectomies laryngectomize laryngectomized laryngectomizing laryngectomy laryngemphraxis laryngendoscope larynges laryngic laryngismal laryngismus laryngismuses laryngitic laryngitides laryngitis laryngitises laryngitus laryngocele laryngocentesis laryngofission laryngofissure laryngograph laryngography laryngologic laryngological laryngologies laryngologist laryngologists laryngology laryngometry laryngoparalysis laryngopathy laryngopharyngeal laryngopharynges laryngopharyngitis laryngopharynx laryngopharynxes laryngophonies laryngophony laryngophthisis laryngoplasty laryngoplegia laryngorrhagia laryngorrhea laryngoscleroma laryngoscope laryngoscopes laryngoscopic laryngoscopical laryngoscopically laryngoscopies laryngoscopist laryngoscopists laryngoscopy laryngospasm laryngospasms laryngostasis laryngostenosis laryngostomy laryngostroboscope laryngotome laryngotomies laryngotomy laryngotracheal laryngotracheitis laryngotracheoscopy laryngotracheotomy laryngotyphoid laryngovestibulitis larynx larynxes las lasa lasagna lasagnas lasagne lasagnes lasarwort lascar lascaree lascarine lascars laschety lascivient lasciviently lascivious lasciviously lasciviousness lasciviousnesses lase lased laser laserdisc laserdiscs laserdisk laserdisks laserjet lasers laserwort laserworts lases lash lashed lasher lashers lashes lashing lashingly lashings lashins lashkar lashkars lashless lashlight lashlite lashness lashorn lashup lashups lasianthous lasing lasings lasiocampa lasiocampid lasiocampidae lasiocarpous lasiurus lask lasket laskets lasking laspring lasque lasques lass lassa lasses lasset lassi lassie lassiehood lassieish lassies lassiky lassis lassitude lassitudes lasslorn lasso lassock lassockie lassocks lassoed lassoer lassoers lassoes lassoing lassos lassu lassus last lastage lastages lastborn lastborns lasted laster lasters lastex lasthenia lasting lastingly lastingness lastingnesses lastings lastjob lastly lastness lastre lastreopsis lasts lastspring lasty lat lata latah latakia latakias latanier latch latched latcher latches latchet latchets latching latchkey latchkeys latchless latchman latchmen latchstring latchstrings late latebra latebricole latecomer latecomers latecoming lated lateen lateener lateeners lateenrigged lateens lateliness lately latemost laten latence latences latencies latency latened lateness latenesses latening latens latensification latensifications latensified latensify latensifying latent latentise latentize latently latentness latents later latera laterad lateral lateraled lateraling lateralis lateralisation lateralisations lateralise lateralises lateralities laterality lateralization lateralizations lateralize lateralized lateralizes lateralizing lateralled lateralling laterally laterals lateran latericeous latericumbent lateriflexion laterifloral lateriflorous laterifolious laterigrade laterinerved laterisation laterisations laterite laterites lateritic lateritious lateriversion laterization laterizations laterize laterized laterizes laterizing lateroabdominal lateroanterior laterocaudal laterocervical laterodeviation laterodorsal lateroduction lateroflexion lateromarginal lateronuchal lateroposition lateroposterior lateropulsion laterostigmatal laterostigmatic laterotemporal laterotorsion lateroventral lateroversion latescence latescences latescent latesome latest latests latewake latewakes lateward latewhile latewhiles latewood latewoods latex latexes latexosis lath latham lathe lathed lathee lathees latheman lathen lather latherability latherable lathered lathereeve latherer latherers latherier latheriest lathering latheron lathers latherwort lathery lathes lathesman lathesmen lathhouse lathi lathie lathier lathiest lathing lathings lathis lathlike lathreeve laths lathwork lathworks lathy lathyric lathyrism lathyrisms lathyritic lathyrus lathyruses lati latian latibule latibulize latices laticifer laticiferous laticifers laticlave laticlaves laticostate latidentate latifolia latifoliate latifolious latifondi latifundia latifundian latifundio latifundios latifundium latigo latigoes latigos latilla latillas latimer latimeria latimerias latimeridae latin latina latinas latinate latinesce latinian latinise latinism latinist latinities latinity latinization latinizations latinize latinized latinizes latinizing latino latinos latins lation latipennate latipennine latiplantar latirostral latirostrate latirostrous latisept latiseptal latiseptate latish latissimi latissimus latisternal latitancies latitancy latitant latitat latitation latitations latitats latite latitude latitudes latitudinal latitudinally latitudinarian latitudinarianism latitudinarianisms latitudinarianisn latitudinarians latitudinary latitudinous latium lative latke latkes latomia latomy laton latona latonian latosol latosolic latosols latoun latrant latrate latration latrations latrede latreutic latreutical latria latrial latrially latrian latrias latrine latrines latro latrobe latrobite latrocinia latrocinies latrocinium latrociny latrodectus latron latrons lats latte latten lattener lattens latter latterkin latterly lattermath lattermaths lattermint lattermost latterness lattes lattice latticed latticeleaf latticelike lattices latticewise latticework latticeworks latticicini latticing latticings latticini latticinii latticinio latticino lattin lattins latus latvia latvian latvians lauan lauans laubanite lauch lauching lauchs laud laudabilities laudability laudable laudableness laudablenesses laudably laudanidine laudanin laudanine laudanosine laudanum laudanums laudation laudations laudative laudatives laudator laudatories laudatorily laudators laudatory laude lauded lauder lauderdale lauders laudes laudian laudification lauding laudist laudo lauds lauf laufs laugh laughability laughable laughableness laughablenesses laughably laughed laughee laugher laughers laughful laughier laughiest laughing laughingly laughings laughingstock laughingstocks laughs laughsome laughter laughterful laughterless laughters laughworthy laughy lauhala lauia laulau laumonite laumontite laun launce launced launcegaye launcegayes launces launch launchable launched launcher launchers launches launchful launching launchings launchpad launchpads launchplex launchways launcing laund launder launderability launderable laundered launderer launderers launderess launderesses launderette launderettes laundering launderings launders laundress laundresses laundrette laundrettes laundries laundromat laundromats laundry laundrymaid laundryman laundrymen laundryowner laundrywoman laundrywomen launds launeddas laur laura lauraceae lauraceous laurae lauraldehyde lauras laurasia laurate laurdalite laurdalites laure laureal laureate laureated laureates laureateship laureateships laureating laureation laureations laurel laureled laureling laurelled laurellike laurelling laurels laurelship laurelwood laurence laurentian laureole laurestinus lauric laurin laurinoxylon laurionite laurite laurone laurotetanine lauroyl laurus laurustine laurustines laurustinus laurustinuses laurvikite laurvikites laury lauryl laus lautarite lautenclavicymbal lauter lautite lautitious lautu lauwine lauwines lav lava lavable lavabo lavaboes lavabos lavacre lavadero lavaform lavage lavages lavalava lavalavas lavalier lavaliere lavalieres lavaliers lavalike lavalliere lavallieres lavallière lavallières lavament lavandera lavanderas lavandero lavanderos lavandin lavandula lavanga lavant lavaret lavas lavash lavashes lavatera lavateras lavatic lavation lavational lavations lavatorial lavatories lavatory lavature lave laveche laved laveer laveered laveering laveers lavement lavements lavender lavendered lavendering lavenders lavenite laver laverbread laverbreads laveroc laverock laverocked laverocking laverocks lavers laverwort laves lavette lavialite lavic laving lavish lavished lavisher lavishers lavishes lavishest lavishing lavishingly lavishly lavishment lavishments lavishness lavishnesses lavolt lavolta lavoltaed lavoltaing lavoltas lavolted lavolting lavolts lavra lavras lavrock lavrocks lavroffite lavrovite lavs lavy law lawabidingness lawbook lawbooks lawbreak lawbreaker lawbreakers lawbreaking lawbreakings lawcourt lawcourts lawcraft lawed laweour lawer lawest lawful lawfullness lawfully lawfulness lawfulnesses lawgive lawgiver lawgivers lawgiving lawin lawine lawines lawing lawings lawins lawish lawk lawks lawkses lawland lawlands lawlants lawless lawlessly lawlessness lawlessnesses lawlike lawmake lawmaker lawmakers lawmaking lawmakings lawman lawmen lawmonger lawmongers lawn lawned lawner lawnier lawniest lawnleaf lawnlet lawnlike lawnmower lawnmowers lawns lawny lawproof lawrence lawrencite lawrencium lawrenciums lawrightman lawrightmen laws lawsone lawsonite lawsuit lawsuiting lawsuits lawter lawyer lawyerbush lawyered lawyeress lawyeresses lawyering lawyerings lawyerism lawyerlike lawyerling lawyerly lawyers lawyership lawyery lawzy lax laxate laxation laxations laxative laxatively laxativeness laxativenesses laxatives laxator laxators laxer laxes laxest laxiflorous laxifoliate laxifolious laxism laxisms laxist laxists laxities laxity laxly laxness laxnesses lay layabout layabouts layaway layaways layback laybacked laybacking laybacks layboy layby laydown layed layer layerage layerages layered layering layerings layers layery layette layettes layfolk layia laying layings layland laylight layloc laylock laylocks layman laymanship laymen layne layner layoff layoffs layout layouts layover layovers laypeople layperson laypersons layrock lays layshaft layship laystall laystalls laystow laytime laytimes layup layups laywoman laywomen lazar lazaret lazarets lazarette lazarettes lazaretto lazarettos lazarist lazarlike lazarly lazarole lazarone lazarous lazars lazarus lazary laze lazed lazes lazied lazier lazies laziest lazily laziness lazinesses lazing lazio lazo lazoed lazoes lazoing lazos lazule lazuli lazuline lazulis lazulite lazulites lazulitic lazurite lazurites lazy lazyback lazybed lazybird lazybone lazybones lazyboots lazyhood lazying lazyish lazylegs lazys lazyship lazzarone lazzaroni lazzi lazzo lb lbf lbinit lbs lbw lc lca lcd lcm lconvert lcsymbol ld ldg ldinfo ldl le lea leach leachabilities leachability leachable leachate leachates leached leacher leachers leaches leachier leachiest leaching leachings leachman leachmen leachour leachours leachtub leachtubs leachy lead leadable leadableness leadage leadback leaded leaden leadened leadenhearted leadenheartedness leadening leadenly leadenness leadennesses leadenpated leadens leader leaderboard leaderboards leaderene leaderenes leaderess leaderette leaderettes leaderless leaders leadership leaderships leadeth leadfeet leadfoot leadfoots leadhillite leadier leadiest leadin leadiness leading leadingly leadings leadless leadline leadman leadmen leadoff leadoffs leadout leadplant leadplants leadproof leads leadscrew leadscrews leadsman leadsmen leadstone leadway leadwood leadwork leadworks leadwort leadworts leady leaf leafage leafages leafbird leafbirds leafboy leafbud leafbuds leafcup leafdom leafed leafen leafer leaferies leafery leafgirl leafhopper leafhoppers leafier leafiest leafiness leafinesses leafing leafit leafless leaflessness leaflet leafleted leafleteer leafleteers leafleter leafleters leafleting leaflets leafletted leafletting leaflike leafminer leafmold leafroller leafs leafstalk leafstalks leafwood leafwork leafworm leafworms leafy league leagued leaguelong leaguer leaguered leaguerer leaguering leaguers leagues leaguing leak leakage leakages leakance leaked leaker leakers leakey leakier leakiest leakily leakiness leakinesses leaking leakless leakproof leaks leaky leal lealand leally lealness lealties lealty leam leamed leamer leaming leams lean leander leaned leaner leaners leanest leangle leaning leanings leanish leanly leanness leannesses leans leany leap leapable leaped leaper leaperous leapers leapfrog leapfrogged leapfrogger leapfrogging leapfrogs leapful leaping leapingly leaporous leaprous leaps leapt lear leare leared leares learier leariest learing learn learnabilities learnability learnable learned learnedly learnedness learnednesses learner learners learnership learning learnings learns learnt lears leary leas leasable lease leaseback leasebacks leased leasehold leaseholder leaseholders leaseholding leaseholds leaseless leaseman leasemen leasemonger leaser leasers leases leash leashed leashes leashing leashless leasing leasings leasow leasowe leasowed leasowes leasowing leasows least leastaways leasts leastways leastwise leasure leasures leat leath leather leatherback leatherbacks leatherbark leatherboard leatherbush leathercoat leathercraft leathered leatherer leatherette leatherettes leatherfish leatherfishes leatherflower leathergoods leatherhead leatherier leatheriest leatherine leatheriness leatherinesses leathering leatherings leatherise leatherize leatherjack leatherjacket leatherleaf leatherleaves leatherlike leatherlikeness leathermaker leathermaking leathern leatherneck leathernecks leatheroid leatherroot leathers leatherside leatherware leatherwear leatherwing leatherwood leatherwoods leatherwork leatherworker leatherworkers leatherworking leatherworkings leatherworks leathery leathwake leatman leatmen leats leave leaved leaveless leavelooker leaven leavened leavening leavenings leavenish leavenless leavenous leavens leaver leavers leaverwood leaves leavetaking leavier leaviest leaving leavings leavy leawill leaze leazes leban lebanese lebanon lebban lebbek lebbeks leben lebens lebensraum lebensraums lebes lebhaft lebistes lebkuchen lebrancho lecama lecaniid lecanine lecanomancer lecanomancy lecanomantic lecanopteris lecanora lecanoraceae lecanoraceous lecanoras lecanoric lecanorine lecanoroid lecanoscopic lecanoscopy leccinum lech lechanorales lechartelierite lechatelierite lechayim lechayims leche leched lecher lechered lecherer lecheries lechering lecherous lecherously lecherousness lecherousnesses lechers lechery leches leching lechosa lechriodont lechuguilla lechuguillas lechwe lechwes lecideaceous lecideiform lecideine lecidioid lecithal lecithalbumin lecithality lecithic lecithin lecithinase lecithinases lecithins lecithoblast lecithoid lecithoprotein leck lecker lecontite lecotropal lect lectern lecterns lecthi lectica lectin lectins lection lectionaries lectionary lections lectisternia lectisternium lectisterniums lector lectorate lectorates lectorial lectors lectorship lectorships lectotype lectotypes lectress lectresses lectrice lects lectual lectuary lecture lectured lecturee lectureproof lecturer lecturers lectures lectureship lectureships lecturess lecturette lecturing lecturn lecturns lecyth lecythi lecythid lecythidaceae lecythidaceous lecythis lecythoi lecythoid lecythus led leda ledden leddens lede leden lederhosen lederite ledge ledged ledgeless ledgeman ledgement ledger ledgerdom ledgered ledgering ledgers ledges ledget ledgier ledgiest ledging ledgment ledgy ledol leds ledum ledums lee leeangle leear leears leeboard leeboards leech leechcraft leechcrafts leechdom leechdoms leecheater leeched leechee leechees leecher leechery leeches leeching leechkin leechlike leechman leechwort leed leeds leef leefang leefange leeftail leeful leefully leegatioen leegte leeing leek leekish leeks leeky leelane leelang leep leeped leeping leepit leeps leer leered leerfish leerier leeriest leerily leeriness leerinesses leering leeringly leerings leerish leerness leeroway leers leery lees leese leeser leeses leeshyy leesing leesome leesomely leet leetle leetman leetmen leets leewan leeward leewardly leewardmost leewardness leewards leeway leeways leewill lefse lefsel lefsen lefses left lefte lefter leftest leftfield leftie lefties leftish leftism leftisms leftist leftists leftments leftmost leftness leftover leftovers lefts leftward leftwardly leftwards leftwing leftwinger lefty leg legacies legacy legal legalese legaleses legalisation legalisations legalise legalised legalises legalising legalism legalisms legalist legalistic legalistically legalists legalities legality legalization legalizations legalize legalized legalizer legalizers legalizes legalizing legally legalness legals legantine legantinelegatary legataries legatary legate legated legatee legatees legates legateship legateships legati legatine legating legation legationary legations legatissimo legative legato legator legatorial legators legatory legatos legature legatus legbar lege legend legenda legendarian legendaries legendarily legendary legendic legendist legendists legendize legendized legendizing legendless legendries legendry legends leger legerdemain legerdemainist legerdemains legerete legering legerings legerities legerity legers leges legge legged legger leggers legges leggiadrous leggier leggiero leggiest leggin legginess legginesses legging legginged leggings leggins leggism leggisms leggy legharness leghorn leghorns legibilities legibility legible legibleness legiblenesses legibly legifer legific legin legion legionaries legionary legioned legionella legioner legionnaire legionnaires legionry legions legis legislate legislated legislates legislating legislation legislational legislations legislativ legislative legislatively legislatives legislator legislatorial legislatorially legislators legislatorship legislatorships legislatress legislatresses legislatrices legislatrix legislatrixes legislature legislatures legist legister legists legit legitim legitimacies legitimacy legitimate legitimated legitimately legitimateness legitimatenesses legitimates legitimating legitimation legitimations legitimatise legitimatised legitimatises legitimatising legitimatist legitimatization legitimatize legitimatized legitimatizes legitimatizing legitimator legitimators legitime legitimisation legitimisations legitimise legitimised legitimiser legitimises legitimising legitimism legitimisms legitimist legitimistic legitimists legitimity legitimization legitimizations legitimize legitimized legitimizer legitimizers legitimizes legitimizing legitims legitimum legits leglan leglans leglen leglens legless leglessness leglessnesses leglet leglets leglike leglin leglins legman legmen legoa legong legongs legpiece legpull legpuller legpulling legrete legroom legrooms legrope legs legstraps legua leguan leguleian leguleious legume legumelin legumen legumes legumin leguminiform leguminious leguminosae leguminose leguminous legumins legwarmer legwarmers legwear legwears legwork legworks lehay lehayim lehayims lehmer lehr lehrbachite lehrjahre lehrman lehrmen lehrs lehrsman lehrsmen lehua lehuas lei leibnitz leibnitzian leibniz leibnizian leicester leicestershire leiden leidger leidgers leifite leiger leigers leighton leimtype leiocephalous leiocome leiodermatous leiodermia leiomyofibroma leiomyoma leiomyomas leiomyomata leiomyomatous leiomyosarcoma leiopelma leiopelmatidae leiophyllous leiophyllum leiotrichies leiotrichine leiotrichous leiotrichy leiotropic leipoa leipoas leipzig leir leired leiring leirs leis leish leisher leishest leishmania leishmaniae leishmanial leishmanias leishmaniases leishmaniasis leishmanic leishmanioid leishmanioses leishmaniosis leisler leislers leiss leister leistered leisterer leistering leisters leisurabe leisurable leisurably leisure leisured leisureful leisureless leisureliness leisurelinesses leisurely leisureness leisures leisurewear leisuring leitmotif leitmotifs leitmotiv leitmotivs leitneria leitneriaceae leitneriaceous lek lekach lekanai lekane leke lekha lekked lekker lekking lekkings leks leku lekvar lekvars lekythi lekythoi lekythos lekythoses lekythus lelwel lem lemaireocereus leman lemanderin lemanry lemans leme lemed lemel lemels lemes leming lemma lemmas lemmata lemmatise lemmatised lemmatises lemmatising lemmatize lemmatized lemmatizes lemmatizing lemme lemming lemminglike lemmings lemmitis lemmoblastic lemmocyte lemmon lemmus lemna lemnaceae lemnaceous lemnad lemnian lemniscal lemniscata lemniscate lemniscates lemniscatic lemnisci lemniscus lemnisnisci lemnos lemogra lemography lemology lemon lemonade lemonades lemonado lemoned lemonfish lemonfishes lemongrass lemongrasses lemonier lemoniest lemoning lemonish lemonlike lemons lemonweed lemonwood lemony lempira lempiras lemur lemures lemurian lemurians lemurid lemuridae lemuriform lemurine lemurines lemurlike lemuroid lemuroidea lemuroids lemurs lena lenad lenard lench lencheon lend lendable lended lendee lender lenders lending lendings lendler lendlers lends lene lenes leng lenged lenger lengest lenging lengs length lengthen lengthened lengthener lengtheners lengthening lengthens lengther lengthful lengthier lengthiest lengthily lengthiness lengthinesses lengthly lengthman lengthmen lengths lengthsman lengthsmen lengthsome lengthsomeness lengthways lengthwise lengthy leniate lenience leniences leniencies leniency lenient leniently lenientness lenients lenified lenifies lenify lenifying lenin leningrad leninism leninist leninists lenis lenite lenited lenites lenitic lenities leniting lenition lenitions lenitive lenitively lenitiveness lenitives lenitude lenity lennilite lennoaceae lennoaceous lennow leno lenocinant lenocinium lenociniums lenos lens lense lensed lenses lensing lensless lenslike lensman lensmen lent lentamente lentando lenten lententide lenth lenthways lenti lentibulariaceae lentibulariaceous lentic lenticel lenticellate lenticels lenticle lenticles lenticonus lenticula lenticular lenticulare lenticularis lenticularly lenticulars lenticulas lenticulate lenticulated lenticulating lenticulation lenticule lenticules lenticulostriate lenticulothalamic lentiform lentigerous lentigines lentiginose lentiginous lentigo lentil lentile lentils lentiner lentinus lentisc lentiscine lentisco lentiscus lentisk lentisks lentissimo lentitude lentitudinous lentivirus lentiviruses lentner lento lentoid lentoids lentor lentors lentos lentous lenvoi lenvoy lenvoys leo leodicid leon leonard leonardesque leonardo leoncita leoncito leone leones leonhardite leonid leonidas leonine leoninely leonines leonite leonotis leontiases leontiasis leontocebus leontocephalous leontodon leontopodium leonurus leopard leopardbane leoparde leopardess leopardesses leopardine leopardite leopards leopardskin leopardwood leopoldite leopoldville leos leotard leotarded leotards lep lepa lepadid lepadidae lepadoid lepage lepal lepanto lepargylic lepas lepechinia leper leperdom lepered lepero lepers lepid lepidene lepidin lepidine lepidity lepidium lepidly lepidoblastic lepidobotryaceae lepidobotrys lepidochelys lepidocrocite lepidocybium lepidodendraceae lepidodendraceous lepidodendrales lepidodendrid lepidodendrids lepidodendroid lepidodendroids lepidoid lepidolite lepidolites lepidomelane lepidomelanes lepidophobia lepidophyllous lepidophyte lepidophytic lepidoporphyrin lepidopter lepidoptera lepidopteral lepidopteran lepidopterans lepidopterid lepidopterist lepidopterists lepidopterological lepidopterologies lepidopterologist lepidopterologists lepidopterology lepidopteron lepidopterous lepidoptery lepidosauria lepidosaurian lepidoses lepidosiren lepidosirenoid lepidosirens lepidosis lepidosteoid lepidote lepidotes lepidothamnus lepidotic lepiota lepiotaceae lepisma lepismatidae lepismoid lepisosteidae lepisosteus lepocyta lepocyte lepomis leporicide leporid leporidae leporide leporids leporiform leporine lepospondylous lepothrix lepped leppies lepping leppy lepra lepralian lepras lepre leprechaun leprechaunish leprechauns leprechawn leprechawns lepric leprid leprine leproid leprologic leprologist leprology leproma lepromatous leprosaria leprosarium leprosariums leprose leprosed leproserie leproseries leprosery leprosied leprosies leprosis leprosities leprosity leprosy leprotic leprous leprously leprousness leprousnesses lepry leps lepsaria lept lepta leptandra leptandrin leptarrhena leptene leptera leptid leptiform leptin leptinolite leptinotarsa leptins leptite leptobos leptocardian leptocentric leptocephalan leptocephali leptocephalia leptocephalic leptocephalid leptocephaloid leptocephalous leptocephalus leptocephaluses leptocephaly leptocercal leptochlorite leptochroa leptochrous leptoclase leptodactyl leptodactylid leptodactylidae leptodactylous leptodactyls leptodactylus leptodermatous leptodermous leptoform leptoglossus leptokurtic leptokurtosis leptology leptomatic leptome leptomedusan leptomeningeal leptomeninges leptomeningitis leptomeninx leptomes leptometer leptomonad lepton leptonecrosis leptonema leptonic leptons leptopellic leptophyllous leptoprosope leptoprosopic leptoprosopous leptoprosopy leptopteris leptoptilus leptorhine leptorrhin leptorrhine leptorrhinian leptorrhinic leptorrhinism leptorrhiny leptosomatic leptosome leptosomes leptosomic leptosperm leptospira leptospirae leptospiral leptospiras leptospire leptospires leptospiroses leptospirosis leptosporangiate leptosporangium leptostracan leptostracous leptotene leptotenes leptotyphlopidae leptotyphlops leptus leptynite lepus lequear ler lere lered leres lering lernaean lernaeiform lernaeoid lernean lerot lerp lerps lerret les lesbian lesbianism lesbianisms lesbians lesbic lesbo lesbos lesche lese lesed leses lesion lesional lesioned lesioning lesions lesiy leskeaceous lesotho lespedeza lespedezas lesquerella less lessee lessees lesseeship lessen lessened lessener lessening lessens lesser lessers lesses lessest lessive lessn lessness lesson lessoned lessoning lessonings lessons lessor lessors lest leste lested lester lesting lestiwarite lestobioses lestobiosis lestobiotic lestrad lests lesvos lesya let letchings letchy letdown letdowns lete letgame lethal lethalise lethalities lethality lethalize lethally lethals lethargic lethargical lethargically lethargicalness lethargied lethargies lethargise lethargised lethargises lethargising lethargize lethargized lethargizes lethargizing lethargus lethargy lethe lethean lethee lethees lethes lethied lethiferous lethologica lethy leto letoff letorate letrist lets lett lettable letted letten letter letterbomb letterbombs letterbox letterboxed letterboxes letterboxing letterboxings lettercard lettered letterer letterers letteret letterform letterforms lettergae lettergram letterhead letterheads lettering letterings letterleaf letterless letterman lettermen lettern letterns letterpress letterpresses letters letterset letterspace letterspaced letterspaces letterspacing letterspacings letterure letterweight letterwood lettic lettice lettiga letting lettings lettish lettre lettres lettrin lettrure lettsomite lettuce lettuces letuare letup letups leu leucadendron leucaemia leucaemias leucaemic leucaemogen leucaemogenic leucaemogens leucaena leucaethiop leucaethiopes leucaethiopic leucaniline leucanthemum leucanthous leucaugite leucaurin leucemia leucemias leucemic leuch leuchaemia leuchaemias leuchemia leuchen leuchtenbergite leucic leucin leucine leucines leucins leuciscus leucism leucite leucites leucitic leucitis leucitite leucitohedra leucitohedron leucitohedrons leucitoid leucitophyre leuco leucobasalt leucoblast leucoblastic leucoblasts leucocarpous leucochalcite leucocholic leucocholy leucochroic leucocidic leucocidin leucocidins leucocism leucocrate leucocratic leucocyan leucocytal leucocyte leucocytes leucocythaemia leucocythaemias leucocythaemic leucocythemia leucocythemic leucocytic leucocytoblast leucocytogenesis leucocytoid leucocytology leucocytolyses leucocytolysin leucocytolysis leucocytolytic leucocytometer leucocytopenia leucocytopenias leucocytopenic leucocytoplania leucocytopoiesis leucocytoses leucocytosis leucocytotherapy leucocytotic leucocytozoan leucocytozoon leucoderma leucodermal leucodermas leucodermata leucodermatous leucodermia leucodermias leucodermic leucoencephalitis leucoethiop leucogenes leucogenic leucoid leucoindigo leucoindigotin leucoline leucolytic leucoma leucomaine leucomas leucomatous leucomelanic leucomelanous leucon leucones leuconoid leuconostoc leucopenia leucopenias leucopenic leucophane leucophanite leucophlegmacy leucophoenicite leucophore leucophyllous leucophyre leucoplakia leucoplakial leucoplakias leucoplast leucoplastid leucoplastids leucoplasts leucopoieses leucopoiesis leucopoietic leucopus leucopyrite leucoquinizarin leucorrhea leucorrheal leucorrheas leucorrhoea leucorrhoeal leucorrhoeas leucoryx leucoses leucosin leucosins leucosis leucospermous leucosphenite leucosphere leucospheric leucostasis leucosticte leucosyenite leucotactic leucotaxin leucotaxine leucothoe leucotic leucotome leucotomes leucotomies leucotomy leucotoxic leucotriene leucotrienes leucous leucoxene leuctra leucyl leud leudes leuds leugh leughen leuk leukaemia leukaemias leukaemic leukaemogen leukaemogeneses leukaemogenesis leukaemogenic leukaemogens leukemia leukemias leukemic leukemics leukemid leukemogeneses leukemogenesis leukemogenic leukemoid leukeran leukoblast leukoblastic leukoblasts leukocidic leukocidin leukocratic leukoctyoid leukocyte leukocytes leukocythaemia leukocythaemias leukocythemia leukocytic leukocytoblast leukocytoid leukocytolyses leukocytolysis leukocytopenia leukocytopenias leukocytoses leukocytosis leukocytotic leukoderma leukodermal leukodermas leukodermia leukodermias leukodermic leukodystrophies leukodystrophy leukoma leukomas leukon leukons leukopedesis leukopenia leukopenias leukopenic leukophoresis leukoplakia leukoplakias leukoplakic leukoplasia leukoplasias leukoplast leukoplastid leukoplastids leukoplasts leukopoieses leukopoiesis leukopoietic leukorrhea leukorrheal leukorrheas leukorrhoea leukorrhoeal leukorrhoeas leukoses leukosin leukosins leukosis leukotaxin leukotaxine leukotic leukotome leukotomes leukotomies leukotomy leukotriene leukotrienes leuma lev leva levade levalloisian levance levancy levant levanted levanter levantera levanters levantine levantines levanting levanto levants levarterenol levation levator levatores levators leve leveche levee leveed leveeing levees leveful level leveled leveler levelers levelest levelheaded levelheadedly levelheadedness levelheadednesses leveling levelish levelism levelled leveller levellers levellest levelling levellings levelly levelman levelness levelnesses levels leven lever leverage leveraged leverages leveraging levered leverer leveret leverets levering leverlike leverman levers leverwood levesel levet levi leviable leviathan leviathans leviation levied levier leviers levies levigable levigate levigated levigates levigating levigation levigations levigator levin leviner levining levins levir levirate levirates leviratic leviratical leviration levirations levis levisticum levitant levitate levitated levitates levitating levitation levitational levitations levitative levitator levitators levite leviter levites levitic levitical levitically leviticus levities levity levo levodopa levodopas levoduction levoglucose levogyrate levogyre levogyrous levolactic levolimonene levorotary levorotation levorotations levorotatory levotartaric levoversion levulic levulin levulinic levulins levulose levuloses levulosuria levy levying levyist levyne levynite lew lewd lewder lewdest lewdly lewdness lewdnesses lewdsbies lewdsby lewdster lewdsters lewing lewis lewises lewisia lewisias lewisite lewisites lewisson lewissons lewist lewnite lewth lewty lex lexeme lexemes lexemic lexer lexers lexes lexia lexic lexica lexical lexicalic lexicalisation lexicalisations lexicalities lexicality lexicalization lexicalizations lexicalize lexicalized lexicalizes lexicalizing lexically lexicog lexicographer lexicographers lexicographian lexicographic lexicographical lexicographically lexicographies lexicographist lexicographists lexicography lexicologic lexicological lexicologically lexicologies lexicologist lexicologists lexicology lexicon lexiconise lexiconist lexiconize lexicons lexicostatistic lexicostatistical lexicostatistics lexigram lexigrams lexigraphic lexigraphical lexigraphically lexigraphies lexigraphy lexington lexiphanes lexiphanic lexiphanicism lexis lexises lexological ley leycesteria leyden leyland leymus leys leysing leyte lez lezes lezz lezzes lezzie lezzies lezzy lf lg lgth lh lhasa lhb lhd lherzite lherzolite lherzolites lhiamba lhotse li liabilities liability liable liableness liaise liaised liaises liaising liaison liaisons liakoura liamba liana lianas liane lianes liang liangle liangs lianoid liar liard liards liars liart lias liasing liason liatris lib libament libaniferous libanophorous libanotophorous libant libard libate libated libates libating libation libational libationary libationer libations libatory libbard libbards libbed libber libbers libbet libbing libbra libecchio libecchios libeccio libeccios libel libelant libelants libeled libelee libelees libeler libelers libeling libelings libelist libelists libellant libellants libellary libellate libelled libellee libellees libeller libellers libelling libellings libellist libellous libellously libellulid libelluloid libelous libelously libels liber libera liberal liberalisation liberalisations liberalise liberalised liberaliser liberalisers liberalises liberalising liberalism liberalisms liberalist liberalistic liberalists liberalites liberalities liberality liberalization liberalizations liberalize liberalized liberalizer liberalizers liberalizes liberalizing liberally liberalness liberalnesses liberals liberate liberated liberates liberating liberatingly liberation liberationism liberationisms liberationist liberationists liberations liberative liberator liberators liberatory liberatress liberatrice liberatrix liberia liberian liberians libero liberomotor liberos libers libertarian libertarianism libertarianisms libertarians liberticidal liberticide liberticides liberties libertinage libertinages libertine libertines libertinism libertinisms liberty libertyless liberum libethenite libget libidibi libidinal libidinally libidinist libidinists libidinization libidinized libidinizing libidinosities libidinosity libidinous libidinously libidinousness libidinousnesses libido libidos libinit libitum libken libkens libkin liblab liblabs libocedrus libr libra librae libraire libraires librairie librairies libral librarian librarianess librarians librarianship librarianships libraries librarii librarious librarius library libraryless libras librate librated librates librating libration librational librations libratory libre libretti librettist librettists libretto librettos libreville libri libriform libris librium libroplast libs libya libyan libyans licareol licca lice licence licenceable licenced licencee licencees licenceless licencer licencers licences licencing licensable license licensed licensee licensees licenseless licenser licensers licenses licensing licensor licensors licensure licensures licente licenti licentiate licentiates licentiateship licentiateships licentiation licentious licentiously licentiousness licentiousnesses licet lich licham lichanos lichanoses lichanura lichee lichees lichen lichenaceous lichenales lichened lichenes lichenian licheniasis lichenic lichenicolous lichenification licheniform lichenin lichening lichenins lichenisation lichenise lichenised lichenising lichenism lichenisms lichenist lichenists lichenivorous lichenization lichenize lichenized lichenizing lichenlike lichenographer lichenographic lichenographical lichenographist lichenography lichenoid lichenologic lichenological lichenologies lichenologist lichenologists lichenology lichenose lichenous lichens licheny liches lichgate lichgates lichi lichis licht lichted lichter lichtest lichting lichtlied lichtlies lichtly lichtlying lichts lichwake lichwakes lichway lichways licit licitation licitly licitness licitnesses lick licked licker lickerish lickerishly lickerishness lickerishnesses lickerous lickers lickety licking lickings lickpennies lickpenny licks lickspit lickspits lickspittle lickspittles lickspittling licorice licorices licorn licorne licorous licour lictor lictorian lictors licuri licury lid lidar lidars lidded lidder lidderon lidding lidflower lidgate lidger lidgers lidia lidias lidicker lidless lidlessly lido lidocaine lidocaines lidos lids lie liebenerite lieberkuhn liebfraumilch liebfraumilchs liebgeaitor liebig liebigite lieblich liechtenstein liechtensteiner lied lieder liederkranz lief liefer liefest liefly liefs liefsome liege liegedom liegedoms liegeful liegefully liegeless liegely liegeman liegemen lieger liegers lieges liegewoman liegier lien lienable lienal lienculi lienculus lienectomies lienectomy lienee lienholder lienic lienitis lienocele lienogastric lienointestinal lienomalacia lienomedullary lienomyelogenous lienopancreatic lienor lienorenal lienotoxin liens lienteria lienteric lienteries lientery liepot lieproof lieprooflier lieproofliest lier lierne liernes lierre liers lies liesh liespfund liest lietuva lieu lieue lieus lieut lieutenancies lieutenancy lieutenant lieutenantries lieutenantry lieutenants lieutenantship lieutenantships lieve liever lievest lievrite lif life lifebelt lifebelts lifeblood lifebloods lifeboat lifeboatman lifeboatmen lifeboats lifebuoy lifebuoys lifecare lifecares lifeday lifedrop lifeforms lifeful lifefully lifefulness lifeguard lifeguarded lifeguarding lifeguards lifehold lifeholder lifehood lifeleaf lifeless lifelessly lifelessness lifelessnesses lifelet lifelike lifelikeness lifelikenesses lifeline lifelines lifelong lifemanship lifemanships lifen lifer liferent liferented liferenter liferenting liferentrix liferoot lifers lifesaver lifesavers lifesaving lifesavings lifeskills lifesome lifesomely lifesomeness lifespan lifespans lifespring lifestyle lifestyles lifetaking lifetime lifetimes lifeward lifeway lifeways lifework lifeworks lifey liflod lifo lift liftable liftback liftbacks liftboy liftboys lifted lifter lifters liftgate liftgates lifting liftless liftman liftmen liftoff liftoffs lifts lifull lig ligable ligament ligamenta ligamental ligamentary ligamentous ligamentously ligaments ligamentta ligamentum ligan ligand ligands ligans ligas ligase ligases ligate ligated ligates ligating ligation ligations ligative ligator ligatory ligature ligatured ligatures ligaturing lige ligeance liger ligers liggat ligge ligged liggen ligger liggers ligges ligging liggings light lightable lightage lightboard lightboat lightbrained lightbulb lightbulbs lighted lighten lightened lightener lighteners lightening lightenings lightens lighter lighterage lighterages lightered lighterful lightering lighterman lightermen lighters lightest lightface lightfaced lightfaces lightfast lightfastness lightfastnesses lightfingered lightfoot lightfooted lightful lightfully lightfulness lighthead lightheaded lightheadedly lightheadedness lightheadednesses lighthearted lightheartedly lightheartedness lightheartednesses lighthouse lighthousekeeper lighthousekeepers lighthouseman lighthousemen lighthouses lighting lightings lightish lightkeeper lightkeepers lightless lightlessness lightlied lightlies lightly lightlying lightman lightmans lightmanship lightmen lightmindedly lightmindedness lightmouthed lightness lightnesses lightning lightningbug lightninged lightninglike lightningproof lightnings lightplane lightplanes lightproof lightroom lights lightscot lightship lightships lightsman lightsmen lightsome lightsomely lightsomeness lightsomenesses lighttight lightwards lightweight lightweights lightwood lightwoods lightwort lighty lightyear lightyears ligitimized ligitimizing lignage lignages lignaloes lignatile ligne ligneous lignes lignescent lignicole lignicoline lignicolous ligniferous lignification lignifications lignified lignifies ligniform lignify lignifying lignin lignins ligninsulphonate ligniperdous lignite lignites lignitic lignitiferous lignitise lignitize lignivorous lignocaine lignocaines lignocellulose lignocelluloses lignocellulosic lignoceric lignography lignone lignosae lignose lignoses lignosity lignosulfonate lignosulfonates lignosulphite lignosulphonate lignous lignum lignums ligroin ligroine ligroines ligroins ligs ligula ligulae ligular ligularia ligulas ligulate ligulated ligule ligules ligulifloral liguliflorous liguliform ligulin liguloid ligure ligures liguria ligurian ligurite ligurition ligurrition ligustrin ligustrum lii liin lija likabilities likability likable likableness likablenesses likably like likeabilities likeability likeable likeableness likeablenesses likeably liked likeful likehood likelier likeliest likelihead likelihood likelihoods likeliness likelinesses likely likeminded likemindedness liken likened likeness likenesses likening likens liker likerish likerous likers likes likesome likest likewake likewakes likewalk likewalks likeways likewise likewisely likewiseness likin liking likingly likings likins likker liknon likuta lila lilac lilaceous lilacin lilacky lilacs lilacthroat lilactide lilangeni lilas lilburne lile liles liliaceae liliaceous lilial liliales liliated lilied lilies liliform liliidae liliopsid liliopsida liliputian lilith lilium lill lilled lillianite lillibullero lilling lilliput lilliputian lilliputians lilliputs lills lilly lilo lilongwe lilos lilt lilted lilting liltingly liltingness liltingnesses lilts lilty lily lilyfy lilyhanded lilylike lilyturf lilywood lilywort lim lima limace limacel limacelle limacels limaceous limaces limacidae limaciform limacine limacines limacinid limacoid limacologies limacologist limacologists limacology limacon limacons limail limaille limails limaion liman limanda limans limas limation limations limax limaçon limaçons limb limba limbal limbas limbat limbate limbation limbec limbeck limbecks limbecs limbed limber limbered limberer limberest limberham limbering limberly limberneck limberness limbernesses limbers limbi limbic limbie limbier limbiest limbiferous limbing limbless limbmeal limbo limboed limboinfantum limboing limbos limbous limbs limburger limburgite limburgites limbus limbuses limby lime limeade limeades limeberries limeberry limebush limed limehouse limekiln limekilns limeless limelight limelighted limelighter limelighters limelighting limelights limelike limelit limeman limen limenitis limens limepit limepits limequat limer limerick limericks limes limescale limestone limestones limesulfur limesulphur limetta limettin limewash limewashes limewater limewaters limewood limewoods limewort limey limeys limicolae limicoline limicolous limier limiest limina liminal liminary limine liminess liminesses liming limings limit limitability limitable limitableness limitably limital limitanean limitarian limitarians limitaries limitary limitate limitation limitational limitations limitative limitatively limited limitedly limitedness limitednesses limiteds limiter limiters limites limiting limitingly limitings limitive limitless limitlessly limitlessness limitlessnesses limitor limitrophe limits limity limivorous limli limma limmas limmata limmer limmers limmock limmu limn limnaeid limnaeids limnal limnanth limnanthaceous limned limner limners limnery limnetic limniad limnic limnimeter limnimetric limning limnite limnobiologic limnobiological limnobiologically limnobiology limnobios limnobium limnocryptes limnodromus limnograph limnologic limnological limnologically limnologies limnologist limnologists limnology limnometer limnophil limnophile limnophilid limnophilous limnophobia limnoplankton limnorioid limnos limns limo limoid limoncillo limoncito limonene limonenes limoniad limonin limonite limonites limonitic limonitization limonium limos limosa limose limoses limosis limous limousin limousine limousines limp limpa limpas limped limper limpers limpest limpet limpets limphault limpid limpidities limpidity limpidly limpidness limpidnesses limpily limpin limpiness limping limpingly limpingness limpings limpish limpkin limpkins limply limpness limpnesses limpopo limps limpsey limpsier limpsiest limpsy limpwort limpy limsy limu limuli limulid limulidae limuloid limuloids limulus limuluses limurite limy lin lina linable linac linaceae linaceous linacs linaga linage linages linaloa linaloe linalol linalols linalool linalools linalyl linamarin linanthus linaria linarite linch linchbolt linches linchet linchets linchpin linchpinned linchpins lincloth lincoln lincolnesque lincolnian lincolniana lincolnshire lincomycin lincomycins lincrusta lincrustas lincture linctures lind linda lindabrides lindackerite lindane lindanes linden lindens linder lindera lindheimera lindied lindies lindo lindoite linds lindworm lindworms lindy lindying line linea lineable lineage lineaged lineages lineal linealities lineality lineally lineament lineamental lineamentation lineaments lineameter linear linearifolius linearisable linearisation linearisations linearise linearised linearises linearising linearities linearity linearizable linearization linearizations linearize linearized linearizes linearizing linearly lineary lineas lineate lineated lineation lineations lineatum lineature linebacker linebackers linebacking linebackings linebred linebreed linebreeding linebreedings linecaster linecasters linecasting linecastings linecut linecuts lined linefeed linefeeds lineiform lineless linelet linelike lineman linemen linen linendraper linendrapers linener linenette linenfold linenise lineniser linenize linenizer linenman linens linenumber linenumbers lineny lineocircular lineograph lineolate lineolated lineprinter liner linerange linerboard linerboards linerless liners lines linesides linesman linesmen lineswoman lineswomen linetest lineup lineups linewalker linework liney ling linga lingala lingam lingams lingas lingayat lingberries lingberry lingbird lingcod lingcods linge lingel lingels lingenberry lingence linger lingered lingerer lingerers lingerie lingeries lingering lingeringly lingerings lingers linget lingier lingiest lingism lingle lingles lingo lingoe lingoes lingonberries lingonberry lingos lingot lingots lings lingster lingsters lingtow lingtowman lingua linguacious linguaciousness linguadental linguae linguaeform lingual linguale lingualis lingualise linguality lingualize lingually linguals lingualumina linguanasal linguas linguatuline linguatuloid linguet linguica linguicas linguidental linguiform linguine linguines linguini linguinis linguipotence linguished linguist linguister linguisters linguistic linguistical linguistically linguistician linguisticians linguistics linguistries linguistry linguists lingula lingulae lingular lingulas lingulate lingulated lingulid linguliferous linguliform linguloid linguodental linguodistal linguogingival linguopalatal linguopapillitis linguoversion lingwort lingy linha linhay linhays linie linier liniest liniment liniments linin lininess lining linings linins linish linished linisher linishers linishes linishing linishings linitis liniya linja linje link linkable linkage linkages linkboy linkboys linked linkedit linkedited linkediting linkeditor linkeditted linkeditting linkedness linker linkers linkier linkiest linking linkman linkmen links linksman linksmen linksmith linkster linksters linkup linkups linkwork linkworks linky linn linnaea linnaean linnaeite linnaeus linned linneon linnet linnets linney linneys linnies linning linns linny lino linocut linocuts linolate linoleate linoleates linoleic linolein linolenate linolenic linolenin linoleum linoleums linolic linolin linometer linon linonophobia linos linotype linotyped linotyper linotypers linotypes linotyping linotypist linotypists linous linoxin linoxyn linpin linquish lins linsang linsangs linseed linseeds linsey linseys linstock linstocks lint linted lintel linteled linteling lintelled lintelling lintels linten linter lintern linters lintie lintier linties lintiest linting lintless lintol lintols lintonite lints lintseed lintseeds lintstock lintstocks lintwhite lintwhites linty linum linums linuron linurons linwood liny linyphiid liodermia liomyofibroma liomyoma liomys lion lionced lioncel lioncelle lioncelles lioncels lionel lionels lionesque lioness lionesses lionet lionets lionfish lionfishes lionheart lionhearted lionheartedly lionheartedness lionhood lionisable lionisation lionisations lionise lionised lioniser lionisers lionises lionising lionism lionisms lionizable lionization lionizations lionize lionized lionizer lionizers lionizes lionizing lionlike lionly lionne lionproof lions lionship liopelma liopelmidae liotrichine lip lipa lipacidemia lipaciduria lipaemia lipaemic liparian liparid liparidae liparididae liparis liparite liparites liparocele liparoid liparomphalus liparous lipase lipases lipe lipectomies lipectomy lipemia lipemias lipemic lipfern lipic lipid lipide lipides lipidic lipids lipin lipins lipless liplet liplike lipoblast lipoblastoma lipocaic lipocardiac lipocele lipoceratous lipocere lipochondroma lipochrome lipochromes lipochromic lipochromogen lipoclasis lipoclastic lipocyte lipocytes lipodystrophia lipodystrophy lipoferous lipofibroma lipogeneses lipogenesis lipogenetic lipogenic lipogenous lipogram lipogrammatic lipogrammatism lipogrammatisms lipogrammatist lipogrammatists lipograms lipographic lipographies lipography lipohemia lipoid lipoidaemia lipoidal lipoidemia lipoidic lipoids lipolitic lipolyses lipolysis lipolytic lipoma lipomas lipomata lipomatoses lipomatosis lipomatous lipometabolic lipometabolism lipomorph lipomyoma lipomyxoma lipopectic lipopexia lipophagic lipophilic lipophore lipopod lipopolysaccharide lipopolysaccharides lipoprotein lipoproteins liposarcoma liposcelis liposis liposoluble liposomal liposome liposomes lipostomy liposuction liposuctions lipothymia lipothymial lipothymic lipothymy lipotrophic lipotrophy lipotropic lipotropin lipotropins lipotropism lipotropisms lipotropy lipotype lipotyphla lipovaccine lipoxenous lipoxeny lipoxidase lipped lippen lippened lippening lippens lipper lippered lippering lipperings lippers lippie lippier lippies lippiest lippiness lippinesses lipping lippings lippitude lippitudes lippitudo lippy lipread lipreader lipreading lipreadings lipreads lips lipsalve lipsalves lipsanographer lipsanotheca lipse lipstick lipsticked lipsticking lipsticks lipsynch lipuria lipurias lipwork liq liquable liquamen liquate liquated liquates liquating liquation liquations liquefacient liquefacients liquefaction liquefactions liquefactive liquefiability liquefiable liquefied liquefier liquefiers liquefies liquefy liquefying liquer liquesce liquesced liquescence liquescences liquescencies liquescency liquescent liquesces liquescing liquet liqueur liqueured liqueuring liqueurs liquid liquidable liquidambar liquidambars liquidamber liquidate liquidated liquidates liquidating liquidation liquidations liquidator liquidators liquidatorship liquidisation liquidise liquidised liquidiser liquidisers liquidises liquidising liquidities liquidity liquidization liquidize liquidized liquidizer liquidizers liquidizes liquidizing liquidless liquidly liquidness liquidnesses liquidogenic liquidogenous liquids liquidus liquiduses liquidy liquifiable liquified liquifier liquifiers liquifies liquiform liquify liquifying liquor liquored liquorer liquoring liquorish liquorishly liquorishness liquorist liquorless liquors liquory lir lira liras lirate liration lire lirella lirellate lirelliform lirelline lirellous liri lirioddra liriodendra liriodendron liriodendrons liriope liripipe liripipes liripoop liripoops lirk lirked lirking lirks liroconite lirot liroth lis lisboa lisbon lisente lisere lisette lish lisiere lisinopril lisk lisks lisle lisles lisp lisped lisper lispers lisping lispingly lispings lispound lispounds lisps lispund lispunds liss lissamphibian lissencephalic lissencephalous lisses lissoflagellate lissom lissome lissomely lissomeness lissomenesses lissomly lissomness lissomnesses lissotrichan lissotrichous lissotrichy list listable listed listedness listee listees listel listels listen listenabilities listenability listenable listened listener listeners listenership listenerships listening listenings listens lister listera listerelloses listerellosis listeria listerian listerias listeriases listeriasis listerioses listeriosis listers listeth listful listing listings listless listlessly listlessness listlessnesses listred lists listserv listserver listservs listwork listy lisu liszt lit litai litaneutical litanies litany litanywise litarge litas litation litatu litch litchee litchi litchis lite lited liteness litenesses liter literacies literacy literaehumaniores literaily literal literalisation literalisations literalise literalised literaliser literalisers literalises literalising literalism literalisms literalist literalistic literalistically literalists literalities literality literalization literalizations literalize literalized literalizer literalizers literalizes literalizing literally literalminded literalmindedness literalness literalnesses literals literarian literarily literariness literarinesses literary literaryism literaryisms literata literate literated literately literateness literatenesses literates literati literatim literation literations literatist literato literator literators literatos literature literatured literatures literatus literose literosities literosity liters lites lith lithaemia lithaemic lithagogue lithane lithangiuria lithanode lithanthrax litharge litharges lithate lithates lithatic lithe lithectasy lithectomy lithed lithely lithemia lithemias lithemic litheness lithenesses lither litherly litherness lithes lithesome lithesomeness lithesomenesses lithest lithi lithia lithias lithiases lithiasis lithiastic lithiate lithic lithically lithics lithifaction lithification lithifications lithified lithifies lithify lithifying lithing lithiophilite lithistid lithistids lithite lithites lithium lithiums lithless litho lithobiid lithobioid lithocarpus lithocenosis lithochemistry lithochromatic lithochromatics lithochromatographic lithochromatography lithochromic lithochromies lithochromography lithochromy lithoclase lithoclast lithoclastic lithoclasts lithoclasty lithoculture lithocyst lithocystotomy lithocysts lithodesma lithodialysis lithodid lithodidae lithodomous lithoed lithofellic lithofellinic lithofracteur lithofractor lithog lithogenesis lithogenesy lithogenetic lithogenous lithogeny lithoglyph lithoglypher lithoglyphic lithoglyphs lithoglyptic lithoglyptics lithograph lithographed lithographer lithographers lithographic lithographical lithographically lithographies lithographing lithographise lithographize lithographs lithography lithogravure lithoid lithoidal lithoidite lithoing lithol litholabe litholapaxies litholapaxy litholatries litholatrous litholatry lithologic lithological lithologically lithologies lithologist lithologists lithology litholysis litholyte litholytic lithomancies lithomancy lithomantic lithomarge lithomarges lithometeor lithometer lithonate lithonephria lithonephritis lithonephrotomies lithonephrotomy lithonthryptic lithonthryptics lithontriptic lithontriptics lithontriptist lithontriptists lithontriptor lithontriptors lithopaedion lithopaedium lithopedion lithopedium lithophagous lithophane lithophanes lithophanic lithophany lithophile lithophilous lithophone lithophotography lithophotogravure lithophragma lithophthisis lithophyl lithophyll lithophyllous lithophysa lithophysae lithophysal lithophyse lithophyses lithophyte lithophytes lithophytic lithophytous lithopone lithopones lithoprint lithoprinter lithoprints lithops lithopses lithos lithoscope lithosere lithosian lithosiid lithosis lithosol lithosols lithosperm lithospermon lithospermous lithospermum lithospermums lithosphere lithospheres lithospheric lithotint lithotome lithotomes lithotomic lithotomical lithotomies lithotomist lithotomists lithotomize lithotomous lithotomy lithotony lithotresis lithotripsies lithotripsy lithotripter lithotripters lithotriptic lithotriptics lithotriptist lithotriptists lithotriptor lithotriptors lithotrite lithotrites lithotritic lithotritics lithotrities lithotritise lithotritised lithotritises lithotritising lithotritist lithotritists lithotritize lithotritized lithotritizes lithotritizing lithotritor lithotritors lithotrity lithotype lithotyped lithotypic lithotyping lithotypy lithous lithoxyl lithoxyle lithoxylite liths lithsman lithuania lithuanian lithuanians lithuresis lithuria lithy liti liticontestation litigable litigant litigants litigate litigated litigates litigating litigation litigationist litigations litigative litigator litigators litigatory litigiosity litigious litigiously litigiousness litigiousnesses liting litiscontest litiscontestation litiscontestational litmus litmuses litocranius litoral litorinoid litote litotes litotic litra litre litres lits litster littarateurs litten litter litterateur litterateurs litteratim litterbag litterbags litterbasket litterbin litterbug litterbugs littered litterer litterers littering littermate littermates litters littery little littleane littleanes littleleaf littleneck littlenecks littleness littlenesses littler littles littlest littlewale littleworth littlin littling littlings littlins littlish littoral littorals littorina littorinidae littrateur littress littérateur littérateurs litu lituate litui lituiform lituite lituitoid lituoline lituoloid liturate liturgic liturgical liturgically liturgician liturgics liturgies liturgiological liturgiologies liturgiologist liturgiologists liturgiology liturgism liturgisms liturgist liturgistic liturgistical liturgists liturgize liturgy litus lituus lituuses litz livabilities livability livable livableness livablenesses livably live liveabilities liveability liveable liveableness livebearer livebearers livebearing liveborn lived livedo livedos livelier liveliest livelihead liveliheads livelihood livelihoods livelily liveliness livelinesses livelod livelods livelong livelongs livelood liveloods lively liven livened livener liveners liveness livenesses livening livens liver liverance liverberries liverberry livered liverhearted liverheartedness liveried liveries livering liverish liverishness liverishnesses liverleaf liverleaves liverless liverpool liverpudlian livers liverwing liverwings liverwort liverworts liverwurst liverwursts livery liverydom liveryless liveryman liverymen lives livest livestock livestocks liveth livetin livetrap livetrapped livetrapping livetraps liveware livewares liveweight liveyer liveyere liveyeres livid livider lividest lividities lividity lividly lividness lividnesses livier liviers living livingless livingly livingness livingnesses livingroom livings livingstoneite livish livishly livistona livlihood livonia livonian livor livors livraison livre livres livyer livyers liwan liwen lix lixive lixivia lixivial lixiviate lixiviated lixiviates lixiviating lixiviation lixiviations lixiviator lixivious lixivium lixiviums liza lizard lizardfish lizardfishes lizardlike lizards lizardtail lizary lizzie ljubljana ll llama llamas llanero llaneros llano llanos llareta llautu llb lld ller llm llud llullaillaco llyn llyr lm ln lndg lnr lo loa loach loaches load loadable loadage loaded loadedness loaden loadened loadening loadens loader loaders loadinfo loading loadings loadless loadmaster loadmasters loadpenny loads loadsamoney loadsamoneys loadsome loadspecs loadstar loadstars loadstone loadstones loadum loaf loafed loafer loaferdom loaferish loafers loafing loafingly loafings loaflet loafs loaghtan loaiasis loam loamed loamier loamiest loamily loaminess loaminesses loaming loamless loams loamy loan loanable loanback loanbacks loanblend loaned loaner loaners loange loanholder loanholders loanin loaning loanings loanmonger loans loanshark loansharking loansharkings loanshift loanshifts loanword loanwords loasa loasaceae loasaceous loast loath loathe loathed loathedness loathednesses loather loathers loathes loathest loathful loathfully loathfulness loathfulnesses loathing loathingly loathings loathlier loathliest loathliness loathlinesses loathly loathness loathnesses loathsome loathsomely loathsomeness loathsomenesses loathy loave loaved loaves loaving lob lobal lobar lobata lobate lobated lobately lobation lobations lobbed lobber lobbers lobbied lobbies lobbing lobbish lobby lobbyer lobbyers lobbygow lobbygows lobbying lobbyings lobbyism lobbyisms lobbyist lobbyists lobbyman lobbymen lobcock lobcokt lobe lobectomies lobectomy lobed lobefin lobefins lobefoot lobefooted lobefoots lobeless lobelet lobelets lobelia lobeliaceae lobeliaceous lobelias lobelin lobeline lobelines lobellated lobes lobfig lobi lobiform lobigerous lobing lobings lobiped lobipes loblollies loblolly lobo lobola lobolas lobolo lobolos lobopodium lobos lobose lobotes lobotidae lobotomies lobotomise lobotomised lobotomises lobotomising lobotomist lobotomization lobotomize lobotomized lobotomizes lobotomizing lobotomy lobs lobscourse lobscouse lobscouser lobscouses lobscuse lobsided lobster lobsterback lobstered lobstering lobsterings lobsterish lobsterlike lobsterman lobstermen lobsterproof lobsters lobstick lobsticks lobtail lobular lobularia lobularity lobularly lobulate lobulated lobulation lobulations lobule lobules lobulette lobuli lobulose lobulous lobulus lobus lobworm lobworms loc loca locable local locale localed locales localing localisable localisation localisations localise localised localiser localisers localises localising localism localisms localist localistic localists localite localites localities locality localizabilities localizability localizable localization localizations localize localized localizer localizers localizes localizing localled localling locally localness localnesses locals locanda locatable locate locateable located locater locaters locates locating locatio location locational locationally locations locative locatives locator locators locatum locellate locellus lochaber lochage lochagus lochan lochans loche lochetic lochi lochia lochial lochias lochiocolpos lochiocyte lochiometra lochiometritis lochiopyra lochiorrhagia lochiorrhea lochioschesis lochometritis lochoperitonitis lochopyra lochus lochy loci lociation lock lockable lockage lockages lockaway lockaways lockbox lockboxes lockdown lockdowns locke locked locker lockerman lockermen lockers locket lockets lockfast lockful lockfuls lockhole lockhouse lockhouses lockian locking lockings lockjaw lockjaws lockkeeper lockkeepers lockless locklet lockmaker lockmaking lockman lockmaster lockmasters lockmen locknut locknuts lockout lockouts lockpick lockpicks lockpin lockram lockrams lockring lockrum locks lockset locksets locksman locksmen locksmith locksmithery locksmithing locksmithings locksmiths lockspit lockstep locksteps lockstitch lockstitched lockstitches lockstitching lockup lockups lockwork locky lockyer locn loco locodescriptive locoed locoes locofoco locofocos locoing locoism locoisms locoman locomen locomobile locomobiles locomobilities locomobility locomote locomoted locomotes locomotility locomoting locomotion locomotions locomotive locomotively locomotiveman locomotivemen locomotiveness locomotives locomotivities locomotivity locomotor locomotors locomotory locomutation locoplant locoplants locorestive locos locoweed locoweeds loculament loculamentose loculamentous loculaments locular loculate loculated loculation loculations locule loculed locules loculi loculicidal loculicidally loculose loculous loculus locum locums locuplete locupletely locus locusca locust locusta locustae locustal locustberry locusted locustelle locustid locustidae locusting locustlike locusts locution locutionary locutions locutor locutoria locutories locutorium locutorship locutory locuttoria lod lode lodeman lodemanage loden lodens lodes lodesman lodesmen lodestar lodestars lodestone lodestones lodestuff lodge lodgeable lodged lodgeful lodgeman lodgement lodgements lodgepole lodgepoles lodger lodgerdom lodgers lodges lodging lodginghouse lodgings lodgment lodgments lodicula lodiculae lodicule lodicules lodine lods lodz loe loed loeil loeing loellingite loess loessal loesses loessial loessic loessland loessoid lof lofortyx lofoten lofstelle loft lofted lofter lofters loftier loftiest loftily loftiness loftinesses lofting loftless loftlike loftman loftmen lofts loftsman loftsmen lofty log logagraphia logan loganberries loganberry logania loganiaceae loganiaceous loganias loganin logans logaoedic logaoedics logarithm logarithmal logarithmetic logarithmetical logarithmetically logarithmic logarithmical logarithmically logarithmomancy logarithms logboard logboards logbook logbooks logchip logcock loge logeia logeion loges logeum loggat loggats logged logger loggerhead loggerheaded loggerheads loggers logget loggets loggia loggias loggie loggier loggiest loggin logginess logging loggings loggish loggy loghead logheaded logia logic logical logicalisation logicalise logicalist logicalities logicality logicalization logicalize logically logicalness logicalnesses logicaster logician logicianer logicians logicise logicised logicises logicising logicism logicisms logicist logicists logicity logicize logicized logicizes logicizing logicless logics logie logier logies logiest logily login loginess loginesses logins logion logions logis logistic logistical logistically logistician logisticians logistics logium logjam logjams logjuice logjuices loglet loglike logline loglines loglog loglogs logman lognormal lognormalities lognormality lognormally logo logocracy logodaedali logodaedalic logodaedalies logodaedalus logodaedaluses logodaedaly logoes logoff logoffs logogogue logogram logogrammatic logogrammatically logograms logograph logographer logographers logographic logographical logographically logographies logographs logography logogriph logogriphic logogriphs logoi logolatry logology logomach logomacher logomachic logomachical logomachies logomachist logomachists logomachize logomachs logomachy logomancy logomania logomaniac logometer logometric logometrical logometrically logon logons logopaedic logopaedics logopedia logopedic logopedics logophile logophiles logophobia logorrhea logorrheas logorrheic logorrhoea logorrhoeas logos logothete logothetes logotype logotypes logotypies logotypy logout logouts logperch logperches logroll logrolled logroller logrollers logrolling logrollings logrolls logs logship logway logways logwise logwood logwoods logwork logy lohan lohengrin lohoch lohock loiasis loid loided loiding loids loimic loimography loimology loin loincloth loinclothes loincloths loined loinguard loins loipe loipen loir loire loirs loiseleuria loiter loitered loiterer loiterers loitering loiteringly loiteringness loiterings loiters loka lokacara lokao lokaose lokapala loke lokelani lokes loket loki lokiec lokshen loli loligo loligos lolium loliums loll lollapaloosa lollapaloosas lollapalooza lollapaloozas lollard lolled loller lollers lollies lolling lollingite lollingly lollipop lollipops lollop lolloped lolloping lollops lollopy lolls lollup lolly lollygag lollygagged lollygagging lollygags lollypop lollypops lolo lolog lologs loloish loma lomariopsidaceae lomas lomastome lomata lomatia lomatine lomatinous lombard lombardia lombardic lombardy lomboy lome lomed lomein lomeins loment lomenta lomentaceous lomentariaceous lomentlike loments lomentum lomentums lomes lomilomi loming lomita lommock lomogramma lomonite lomotil lompish lomta lonas lonchocarpus lond london londoner londoners lone loneful lonelier loneliest lonelihood lonelily loneliness lonelinesses lonely loneness lonenesses loner loners lonesome lonesomely lonesomeness lonesomenesses lonesomes long longa longacre longaeval longaevous longan longanamous longanberry longanimities longanimity longanimous longans longas longbeak longbeard longbill longboat longboats longbow longbowman longbowmen longbows longcloth longcloths longe longear longed longee longeing longer longeron longerons longers longes longest longeval longeve longevities longevity longevous longfellow longfelt longfin longful longhair longhaired longhairs longhand longhands longhead longheaded longheadedly longheadedness longheadednesses longheads longhorn longhorns longhouse longhouses longicaudal longicaudate longicone longicorn longicorns longies longilateral longilingual longiloquence longiloquent longimanous longimetric longimetry longing longingly longingness longings longinquities longinquity longipennate longipennine longirostral longirostrate longirostrine longisection longish longitude longitudes longitudianl longitudinal longitudinally longjaw longjaws longjump longjumped longjumping longjumps longleaf longleaves longleg longlegs longlick longline longliner longlinerman longlinermen longlines longly longmouthed longneck longnecks longness longnesses longnose longobard longpod longprimer longprimers longroot longrun longs longshanks longship longships longshore longshoreman longshoremen longshoring longshorings longshot longshucks longsighted longsightedness longsightednesses longsleever longsome longsomely longsomeness longsomenesses longspun longspur longspurs longstanding longstop longstops longsuffering longsufferings longsword longtail longterm longtime longtimer longue longues longueur longueurs longulite longus longwall longwalls longway longways longwearing longwindedness longwindednesses longwise longwood longwool longword longwork longwort longworth longyi longyis lonicera loniceras loniten lonouhard lonquhard lontar loo loob loobier loobies loobiest loobily looby loobyish looch lood looed looey looeys loof loofa loofah loofahs loofas loofful looffuls loofie loofness loofs looie looies looing look lookahead lookalike lookalikes lookdown lookdowns looked lookee looker lookers looking lookings lookism lookisms lookist lookists lookout lookouts looks lookum lookup lookups looky loom loomed loomer loomery loomfixer looming looms loon loonery looney looneyier looneyies looneys loonie loonier loonies looniest loonily looniness looninesses looning loonings loons loony loonybin loonybins loop loopback loope looped looper loopers loopful loophole loopholed loopholes loopholing loopier loopiest looping loopings loopist looplet looplike loops loopy loor loord loords loory loos loose loosebox looseboxes loosed looseleaf looseleafs loosely loosemouthed loosen loosened loosener looseners looseness loosenesses loosening loosens looser looses loosest loosestrife loosestrifes loosing loosish loot lootable looted looten looter looters lootie lootiewallah looting lootings loots lootsman lootsmans loover looves looyenwork looyenworks lop lope loped lopeman loper lopers lopes lopeskonce lopgrass lopgrasses lopheavy lophiid lophiidae lophin lophine lophiodont lophiodontoid lophiostomate lophiostomous lophius lophobranch lophobranchiate lophobranchs lophocalthrops lophocercal lophodont lophodytes lopholatilus lophophora lophophoral lophophore lophophores lophophorine lophophorus lophophytosis lophosoria lophosoriaceae lophostea lophosteon lophosteons lophotriaene lophotrichic lophotrichous loping lopolith lopoliths loppard lopped lopper loppered loppering loppers loppet loppier loppiest lopping loppings loppy lopressor lops lopseed lopsided lopsidedly lopsidedness lopsidednesses lopstick lopsticks loq loquacious loquaciously loquaciousness loquaciousnesses loquacities loquacity loquat loquats loquence loquency loquent loquently loquitur lor lora loral loran lorandite lorans loranskite loranthaceae loranthaceous loranthus lorarii lorarius lorate lorazepam lorazepams lorcha lorchas lorchel lord lordan lorded lording lordings lordkin lordkins lordless lordlet lordlier lordliest lordlike lordlily lordliness lordlinesses lordling lordlings lordly lordolatries lordolatry lordoma lordomas lordoses lordosis lordotic lords lordship lordships lordswike lordwood lordy lore loreal lored lorel lorelei loreless lorels loren lorenzenite lores loretin lorette lorettes lorettoite lorgnette lorgnettes lorgnon lorgnons lori loric lorica loricae loricarian loricarioid loricata loricate loricated loricates loricating lorication lorications loricoid lorics lories loriinae lorikeet lorikeets lorilet lorimer lorimers loriner loriners loring lorings loriot loriots loris lorises lorisidae lorisiform lormery lorn lornness lornnesses loro loros lorraine lorrell lorrells lorries lorriker lorry lorryload lorryloads lors lorum lory los losable losableness losablenesses losang lose losed losel loselism loselry losels losen losenger loser losers loses losh loshes losing losingly losings loss lossenite losser losses lossful lossier lossiest lossless lossmaker lossmakers lossproof lossy lost lostling lostness lostnesses lot lota lotah lotahs lotan lotas lotase lote lotebush lotes lotewood loth lothario lotharios lothefull lother lothest lothfull lothly lothringen lothsome loti lotic lotiform lotion lotions lotium lotment loto lotong lotophagi lotophagous lotophagously lotor lotos lotoses lotrite lots lotte lotted lotter lotteries lotters lottery lottes lotting lotto lottos lotus lotuses lotusin lotusland lotuslands lotuslike louch louche louchely louchettes loud louden loudened loudening loudens louder loudering loudest loudhailer loudhailers loudish loudishness loudlier loudliest loudly loudmouth loudmouthed loudmouths loudness loudnesses loudspeak loudspeaker loudspeakers loudspeaking louey lough lougheen loughs louie louies louis louise louisiana louisianan louisianans louisianian louisianians louisine louisville louk loukoum loukoumi loulu loun lound lounded lounder loundered lounderer loundering lounderings lounders lounding lounds louned lounge lounged lounger loungers lounges loungewear lounging loungingly loungings loungy louning louns loup loupcervier loupcerviers loupe louped loupen loupes louping loupit loups lour lourd lourdish lourdy loure loured loures lourie lourier louriest louring louringly louringness lourings lours loury louse louseberries louseberry loused louses lousewort louseworts lousier lousiest lousily lousiness lousinesses lousing louster lousy lout louted louter louther louting loutish loutishly loutishness loutishnesses loutre loutrophoroi loutrophoros louts louty louvar louver louvered louvering louvers louverwork louvre louvred louvres lovabilities lovability lovable lovableness lovablenesses lovably lovaebility lovage lovages lovanenty lovastatin lovastatins lovat lovats love loveability loveable loveableness loveably lovebird lovebirds lovebite lovebites lovebug lovebugs lovechild loved loveday lovee loveflower loveful lovegrass lovehood lovelass loveless lovelessly lovelessness lovelessnesses lovelier lovelies loveliest lovelight lovelights lovelihead loveliheads lovelily loveliness lovelinesses loveling lovelock lovelocks lovelorn lovelornness lovelornnesses lovely lovemaker lovemakers lovemaking lovemakings loveman lovemans lovemate lovemonger lovepot loveproof lover loverdom lovered loverhood lovering loverless loverlike loverliness loverly lovers lovership loverwise lovery loves loveseat loveseats lovesick lovesickness lovesicknesses lovesome lovesomely lovesomeness lovesong lovestruck lovevine lovevines loveworth loveworthy lovey loveys lovier loviers loving lovingkindness lovingly lovingness lovingnesses lovings lovoa low lowa lowable lowan lowance lowans lowball lowballed lowballing lowballings lowballs lowbell lowborn lowboy lowboys lowbred lowbrow lowbrowed lowbrowism lowbrows lowdah lowder lowdown lowdowns lowe lowed loweite lower lowerable lowercase lowercased lowercases lowercasing lowerclassman lowerclassmen lowered lowerer lowerier loweriest lowering loweringly loweringness lowerings lowermost lowers lowery lowes lowest lowigite lowing lowings lowish lowishly lowishness lowland lowlander lowlanders lowlands lowlier lowliest lowlife lowlifer lowlifers lowlifes lowlight lowlighted lowlighting lowlights lowlihead lowliheads lowlihood lowlily lowliness lowlinesses lowlives lowly lowman lowmen lowmost lown lownd lownded lownder lowndest lownding lownds lowne lowned lownes lowness lownesses lowning lownly lowns lowp lowped lowping lowps lowrider lowriders lowrie lowry lows lowse lowsed lowser lowses lowsest lowsin lowsing lowsit lowt lowted lowth lowting lowts lowveld lowvelds lowwood lowy lox loxed loxes loxia loxic loxing loxoclase loxocosm loxodograph loxodont loxodonta loxodontous loxodrome loxodromes loxodromic loxodromical loxodromically loxodromics loxodromies loxodromism loxodromy loxolophodont loxoma loxomataceae loxophthalmus loxosoma loxostege loxotic loxotomy loxygen loxygens loy loyal loyaler loyalest loyalise loyalism loyalisms loyalist loyalists loyalize loyaller loyallest loyally loyalness loyalnesses loyalties loyalty loyang loyn loys lozell lozells lozen lozenge lozenged lozenger lozenges lozengeways lozengewise lozengy lozens lp lpm lpn lr lrecisianism lrecl ls lsc lsd lst lt ltd ltm ltr lu luanda luau luaus lub luba lubbard lubbards lubber lubbercock lubberland lubberlike lubberliness lubberlinesses lubberly lubbers lube lubed lubes lubfish lubfishes lubing lubra lubras lubric lubrical lubricant lubricants lubricate lubricated lubricates lubricating lubrication lubricational lubrications lubricative lubricator lubricators lubricatory lubricious lubriciously lubriciousness lubricities lubricity lubricous lubrifaction lubrification lubrify lubritorian lubritorium lubritoriums lubritory lucan lucania lucanid lucanidae lucarne lucarnes lucban luce lucence lucences lucencies lucency lucent lucently lucern lucernal lucernarian lucerne lucernes lucerns luces lucet lucia lucian lucible lucid lucida lucidae lucider lucidest lucidities lucidity lucidly lucidness lucidnesses lucifee lucifer luciferase luciferases luciferian luciferin luciferins luciferoid luciferous luciferously luciferousness lucifers lucific luciform lucifugal lucifugous lucigen lucigens lucilia lucille lucimeter lucina lucinoid lucite lucites lucivee luck lucked lucken luckenbooth luckenbooths luckengowan luckengowans luckful luckie luckier luckies luckiest luckily luckiness luckinesses lucking luckless lucklessly lucklessness lucklessnesses luckly lucknow lucks lucky lucombe lucration lucrative lucratively lucrativeness lucrativenesses lucre lucres lucretian lucriferous lucriferousness lucrific lucrify lucrous lucrum luctation luctations luctiferous luctiferousness luctual lucubrate lucubrated lucubrates lucubrating lucubration lucubrations lucubrator lucubrators lucubratory lucule luculent luculently lucullan lucullian lucullite lucuma lucumas lucumia lucumo lucumones lucumony lucumos lucy lud ludden luddite luddy lude ludefisk ludes ludian ludibrious ludibry ludic ludically ludicropathetic ludicroserious ludicrosities ludicrosity ludicrosplenetic ludicrous ludicrously ludicrousness ludicrousnesses ludification ludlamite ludo ludos luds ludship ludships ludwig ludwigite lue lues luetic luetically luetics lufberry lufbery lufengpithecus luff luffa luffas luffed luffer luffing luffs luftmensch luftmenschen lug luganda luge luged lugeing lugeings luger lugers luges luggable luggables luggage luggageless luggages luggar luggard lugged lugger luggers luggie luggies lugging lughdoan lughole lugholes luging lugings lugmark lugs lugsail lugsails lugsome lugubriosity lugubrious lugubriously lugubriousness lugubriousnesses lugubrous lugworm lugworms luhinga luigini luigino luit luiten lujaurite lujavrite lujula lukan luke lukely lukemia lukeness luket lukeward lukewarm lukewarmish lukewarmly lukewarmness lukewarmnesses lukewarmth lukewarmths lulab lulabim lulabs lulav lulavim lulavs lulibub lulibubs lull lullabied lullabies lullaby lullabying lullay lulled luller lullers lulliloo lullilooed lullilooing lulling lullingite lullingly lulls lully lulu luluai lulus lum lumachel lumachella lumachelle lumbaginous lumbago lumbagos lumbang lumbangs lumbar lumbarisation lumbarization lumbars lumbayao lumber lumberdar lumberdom lumbered lumberer lumberers lumbering lumberingly lumberingness lumberings lumberjack lumberjacket lumberjackets lumberjacks lumberless lumberly lumberman lumbermen lumbermill lumbers lumbersome lumbersomeness lumbersomenesses lumberyard lumberyards lumbocolostomy lumbocolotomy lumbocostal lumbodorsal lumbodynia lumbosacral lumbovertebral lumbrical lumbricales lumbricalis lumbricalises lumbricals lumbrici lumbricid lumbriciform lumbricine lumbricoid lumbricosis lumbricus lumbricuses lumbrous lumbus lumen lumenal lumens lumeter lumina luminaire luminaires luminal luminance luminances luminant luminants luminare luminaria luminarias luminaries luminarious luminarism luminarisms luminarist luminarists luminary luminate lumination luminations luminative luminator lumine lumined lumines luminesce luminesced luminescence luminescences luminescent luminesces luminescing luminiferous luminificent lumining luminism luminisms luminist luministe luminists luminodynamism luminodynamist luminologist luminometer luminophor luminophore luminosities luminosity luminous luminously luminousness luminousnesses lumisterol lumma lumme lummes lummier lummies lummiest lummox lummoxes lummy lump lumpectomies lumpectomy lumped lumpen lumpenly lumpenproletariat lumpenproletariats lumpens lumpenus lumper lumpers lumpet lumpfish lumpfishes lumpier lumpiest lumpily lumpiness lumpinesses lumping lumpingly lumpish lumpishly lumpishness lumpishnesses lumpkin lumpkins lumpman lumpmen lumps lumpsucker lumpsuckers lumpy lums lumut luna lunacies lunacy lunambulism lunanaut lunanauts lunar lunare lunaria lunarian lunarians lunaries lunarist lunarists lunarium lunarnaut lunarnauts lunars lunarscape lunarscapes lunary lunas lunata lunate lunated lunateds lunatellus lunately lunates lunatic lunatical lunatically lunatics lunation lunations lunatise lunatize lunatum lunch lunchbox lunchboxes lunched luncheon luncheoned luncheoner luncheonette luncheonettes luncheoning luncheonless luncheons luncher lunchers lunches lunchhook lunching lunchless lunchmeat lunchmeats lunchpack lunchpail lunchpails lunchroom lunchrooms lunchtime lunchtimes lund lunda lundress lundyfoot lune lunel lunes lunet lunets lunette lunettes lung lungan lungans lunge lunged lungee lungees lungeing lungen lungeous lunger lungers lunges lungfish lungfishes lungflower lungful lungfuls lungi lungie lungies lunging lungis lungless lungmotor lungoor lungs lungsick lungworm lungworms lungwort lungworts lungy lungyi lungyis lunicurrent lunier lunies luniest luniform lunisolar lunistice lunistitial lunitidal lunk lunker lunkers lunkhead lunkheaded lunkheads lunks lunn lunoid lunt lunted lunting lunts lunula lunulae lunular lunulas lunulate lunulated lunule lunules lunulet lunulite luny lunyie lunyies luo luoyang lupanar lupanarian lupanars lupanin lupanine lupe lupeol lupeose lupercal lupercalia lupetidin lupetidine lupicide lupiform lupin lupinaster lupine lupines lupinin lupinine lupinosis lupinous lupins lupinus lupis lupoid lupoma lupous luppen lupulic lupulin lupuline lupulinic lupulinous lupulins lupulinum lupulone lupulus lupus lupuserythematosus lupuses lur lura luracan lural lurch lurched lurcher lurchers lurches lurching lurchingfully lurchingly lurchline lurdan lurdane lurdanes lurdanism lurdans lurden lurdens lure lured lureful lurement lurer lurers lures luresome lurex lurexes lurg lurgi lurgies lurgis lurgworm lurgy lurid lurider luridest luridity luridly luridness luridnesses luring luringly lurk lurked lurker lurkers lurking lurkingly lurkingness lurkings lurks lurky lurrier lurries lurry lurs lurve lurves lusaka lusatian luscinia luscious lusciously lusciousness lusciousnesses luser lush lushburg lushed lusher lushers lushes lushest lushier lushiest lushing lushly lushness lushnesses lushy lusitania lusitanian lusk lusked lusking luskish luskishness luskishnesses lusks lusky lusory lust lusted luster lustered lusterer lustering lusterless lusterlessness lusters lusterware lusterwares lustful lustfully lustfulness lustfulnesses lustick lustier lustiest lustihead lustiheads lustihood lustihoods lustily lustiness lustinesses lusting lustique lustless lustly lustra lustral lustrant lustrate lustrated lustrates lustrating lustration lustrational lustrations lustrative lustratory lustre lustred lustreless lustres lustreware lustrewares lustrical lustrification lustrify lustrine lustrines lustring lustrings lustrous lustrously lustrousness lustrousnesses lustrum lustrums lusts lusty lusus lususes lut lutaceous lutanist lutanists lutany lutarious lutation lute lutea luteal lutecia lutecium luteciums luted lutefisk lutefisks luteic lutein luteinisation luteinisations luteinise luteinised luteinises luteinising luteinization luteinizations luteinize luteinized luteinizes luteinizing luteins lutelet lutemaker lutemaking lutenist lutenists luteo luteocobaltic luteofulvous luteofuscescent luteofuscous luteolin luteolins luteolous luteoma luteorufescent luteotrophic luteotrophin luteotrophins luteotropic luteotropin luteotropins luteous luteovirescent luter luters lutes lutescent lutestring lutestrings lutetium lutetiums luteum luteway lutfisk lutfisks luther lutheran lutheranism lutherans lutherism luthern lutherns luthier luthiers lutianid lutianoid lutidin lutidine lutidinic luting lutings lutist lutists lutjanidae lutjanus lutose lutra lutrin lutrinae lutrine lutten lutulence lutulent lutz lutzen lutzes luvaridae luvarus luvian luvvie luvvy luwian lux luxate luxated luxates luxating luxation luxations luxe luxembourg luxembourger luxembourgian luxemburg luxemburger luxes luxive luxmeter luxmeters luxor luxulianite luxulianites luxullianite luxullianites luxulyanite luxulyanites luxuria luxuriance luxuriances luxuriancies luxuriancy luxuriant luxuriantly luxuriantness luxuriate luxuriated luxuriates luxuriating luxuriation luxuriations luxurient luxuries luxuriety luxurious luxuriously luxuriousness luxuriousnesses luxurist luxurists luxurity luxury luxus luyia luz luzern luzerns luzon luzzes lv lvalue lvalues lvi lvii lvov lw lwei lweis lwl lwm lwop lwp lx lxi lxii lxiv lxix lxvi lxvii lxx lxxx ly lyam lyams lyance lyard lyart lyase lyases lyc lycae lycaena lycaenid lycaenidae lycaeon lycaes lycanthrope lycanthropes lycanthropia lycanthropic lycanthropies lycanthropist lycanthropists lycanthropize lycanthropous lycanthropy lycea lyceal lycee lycees lyceum lyceums lych lychee lychees lyches lychgate lychgates lychnis lychnises lychnomancy lychnoscope lychnoscopes lychnoscopic lycian lycid lycine lycium lycodoid lycopene lycopenes lycoperdaceae lycoperdaceous lycoperdales lycoperdoid lycoperdon lycopersicon lycopersicum lycophyta lycopin lycopod lycopode lycopodiaceae lycopodiaceous lycopodiales lycopodiate lycopodineae lycopodium lycopodiums lycopods lycopsida lycopus lycorine lycosa lycosid lycosidae lycra lycras lyctid lycée lycées lyddite lyddites lydian lydite lye lyencephalous lyery lyes lyfkie lyfull lygaeid lygaeidae lyginopteridales lyginopteris lygodium lygus lying lyingly lyings lyken lykewake lykewakes lykewalk lykewalks lym lymantria lymantriid lymantriidae lyme lymes lymhpangiophlebitis lymiter lymiters lymnaean lymnaeid lymph lymphad lymphadenectasia lymphadenectasis lymphadenia lymphadenitis lymphadenitises lymphadenoid lymphadenoma lymphadenomas lymphadenomata lymphadenome lymphadenopathies lymphadenopathy lymphadenosis lymphads lymphaemia lymphagogue lymphangeitis lymphangial lymphangiectasis lymphangiectatic lymphangiectodes lymphangiitis lymphangioendothelioma lymphangiofibroma lymphangiogram lymphangiograms lymphangiographic lymphangiographies lymphangiography lymphangiology lymphangioma lymphangiomas lymphangiomata lymphangiomatous lymphangioplasty lymphangiosarcoma lymphangiotomy lymphangitic lymphangitides lymphangitis lymphangitises lymphatic lymphatical lymphatically lymphatics lymphation lymphatism lymphatitis lymphatolysin lymphatolysis lymphatolytic lymphectasia lymphedema lymphemia lymphenteritis lymphoadenoma lymphoblast lymphoblastic lymphoblastoma lymphoblastosis lymphoblasts lymphocele lymphocyst lymphocystosis lymphocyte lymphocytes lymphocythemia lymphocytic lymphocytoma lymphocytomatosis lymphocytopenia lymphocytoses lymphocytosis lymphocytotic lymphocytotoxin lymphodermia lymphoduct lymphoedema lymphogenic lymphogenous lymphoglandula lymphogram lymphograms lymphogranuloma lymphogranulomas lymphogranulomata lymphogranulomatoses lymphogranulomatosis lymphogranulomatous lymphographic lymphographies lymphography lymphoid lymphoidectomy lymphoidocyte lymphokine lymphokines lymphology lymphoma lymphomas lymphomata lymphomatoid lymphomatoses lymphomatosis lymphomatous lymphomonocyte lymphomyxoma lymphopathy lymphopenia lymphopenial lymphopoieses lymphopoiesis lymphopoietic lymphoprotease lymphorrhage lymphorrhagia lymphorrhagic lymphorrhea lymphosarcoma lymphosarcomas lymphosarcomata lymphosarcomatosis lymphosarcomatous lymphosporidiosis lymphostasis lymphotaxis lymphotome lymphotomy lymphotoxemia lymphotoxin lymphotrophic lymphotrophy lymphous lymphs lymphuria lymphy lyms lyn lynage lynages lyncean lynch lynchable lynchburg lynched lyncher lynchers lynches lynchet lynchets lynching lynchings lynchpin lynchpins lyncine lyne lynes lynn lynnhaven lynx lynxes lynxlike lyocratic lyolyses lyolysis lyolytic lyomerous lyon lyonetiid lyonia lyonnais lyonnaise lyonnesse lyons lyophil lyophile lyophiled lyophilic lyophilisation lyophilisations lyophilise lyophilised lyophiliser lyophilises lyophilising lyophilization lyophilizations lyophilize lyophilized lyophilizer lyophilizers lyophilizes lyophilizing lyophobe lyophobic lyopomatous lyotrope lyotropic lypemania lypothymia lyra lyraid lyrate lyrated lyrately lyraway lyre lyrebird lyrebirds lyreflower lyreman lyres lyretail lyric lyrical lyricality lyrically lyricalness lyricalnesses lyrichord lyricisation lyricise lyricised lyricises lyricising lyricism lyricisms lyricist lyricists lyricization lyricize lyricized lyricizes lyricizing lyricked lyricking lyricon lyricons lyrics lyrid lyriform lyrism lyrisms lyrist lyrists lyrurus lys lysander lysate lysates lyse lysed lysenkoism lysergic lysergide lysergides lyses lysichiton lysichitum lysidin lysidine lysigenetic lysigenic lysigenous lysigenously lysiloma lysimachia lysimachus lysimeter lysimeters lysimetric lysin lysine lysines lysing lysins lysis lysogen lysogeneses lysogenesis lysogenetic lysogenic lysogenicities lysogenicity lysogenies lysogenisation lysogenise lysogenised lysogenises lysogenising lysogenization lysogenizations lysogenize lysogenized lysogenizes lysogenizing lysogens lysogeny lysol lysolecithin lysolecithins lysols lysosomal lysosomally lysosome lysosomes lysozyme lysozymes lyssa lyssas lyssic lyssophobia lyte lyted lyterian lytes lythe lythes lythraceae lythraceous lythrum lytic lytically lyting lytta lyttae lyttas lyxose ländler ländlers m ma maa maad maaed maaing maalox maam maamselle maana maar maars maas maat maatjes mab mabble mabe mabela mabes mabi mabolo mabuti mabyer mac macaasim macaber macaberesque macabi macaboy macabre macabrely macabreness macabresque macaca macaco macacos macacus macadam macadamer macadamia macadamias macadamisation macadamisations macadamise macadamised macadamises macadamising macadamite macadamization macadamizations macadamize macadamized macadamizer macadamizers macadamizes macadamizing macadams macague macahuba macahubas macallum macallums macamba macan macana macao macaque macaques macarena macarise macarised macarises macarising macarism macarisms macarize macarized macarizes macarizing macaron macaroni macaronic macaronical macaronically macaronicism macaronics macaronies macaronis macaronism macaroon macaroons macartney macassar macassars macau macauco macaviator macaw macaws macbeth maccabaw maccabaws maccabean maccabees maccaboy maccaboys maccaroni macchia macchie macchinetta macclesfield macco maccoboy maccoboys maccus mace macebearer macebearers maced macedoine macedoines macedon macedonia macedonian macedonians macehead macellum maceman macer macerable maceranduba macerandubas macerate macerated macerater maceraters macerates macerating maceration macerations macerative macerator macerators macers maces macfarlane mach machaeranthera machair machaira machairodont machairodonts machairs machan machans machaon machar mache machecoled macheer machera maches machete machetes machi machiavel machiavelian machiavelli machiavellian machiavellianism machiavellians machiavellist machicolate machicolated machicolates machicolating machicolation machicolations machicoulis machila machilid machilidae machin machina machinabilities machinability machinable machinal machinament machinate machinated machinates machinating machination machinations machinator machinators machine machineabilities machineability machineable machined machineful machinegun machinegunned machinegunning machineguns machineless machinelike machinely machineman machinemen machinemonger machiner machineries machinery machines machinification machinify machining machinisation machinise machinism machinist machinists machinization machinize machinized machinizing machinoclast machinofacture machinotechnique machinule machismo machismos machmeter machmeters macho machoism machoisms machopolyp machos machree machrees machs machtpolitik machzor machzorim machzors macies macilence macilency macilent macing macintosh macintoshes mack mackallow mackaybean mackenboy mackenzie mackerel mackereler mackereling mackerels mackinaw mackinawed mackinaws mackinboy mackins mackintosh mackintoshed mackintoshes mackintoshite mackle mackled mackles macklike mackling macks macle macleaya macled macles maclib maclura maclurin maco macoma macon maconite maconnais maconne maconochie maconochies macons macoun macowanites macoya macoyas macquereau macracanthrorhynchiasis macradenous macram macrame macrames macrami macramis macramé macramés macrander macrandre macrandrous macrauchene macraucheniid macraucheniiform macrauchenioid macrencephalic macrencephalous macrencephaly macrli macro macroaggregate macroaggregated macroaggregates macroanalysis macroanalyst macroanalytical macroaxes macroaxis macrobacterium macrobian macrobiosis macrobiota macrobiote macrobiotes macrobiotic macrobiotically macrobiotics macroblast macrobrachia macrocarpa macrocarpas macrocarpous macrocephali macrocephalia macrocephalias macrocephalic macrocephalies macrocephalism macrocephalon macrocephalous macrocephalus macrocephaly macrochaeta macrochaetae macrocheilia macrocheira macrochemical macrochemically macrochemistry macrochiran macrochiria macrochiropteran macrocladous macroclemys macroclimate macroclimates macroclimatic macroclimatically macroclimatology macrococcus macrocode macrocodes macrocoly macroconidial macroconidium macroconjugant macrocopies macrocopy macrocornea macrocosm macrocosmic macrocosmical macrocosmically macrocosmology macrocosmos macrocosms macrocrystalline macrocycle macrocycles macrocyclic macrocyst macrocyte macrocytes macrocythemia macrocytic macrocytoses macrocytosis macrocytotic macrodactyl macrodactylia macrodactylic macrodactylies macrodactylism macrodactylous macrodactylus macrodactyly macrodantin macrodiagonal macrodiagonals macrodomatic macrodome macrodomes macrodont macrodontia macrodontic macrodontism macroeconomic macroeconomics macroeconomist macroeconomists macroelement macroergate macroevolution macroevolutionary macroevolutions macrofarad macrofauna macroflora macrofossil macrofossils macrogamete macrogametes macrogametocyte macrogamy macrogastria macroglia macroglobulin macroglobulinemia macroglobulinemias macroglobulinemic macroglobulins macroglossate macroglossia macrognathic macrognathism macrognathous macrogonidium macrograph macrographic macrographies macrographs macrography macroinstruction macroinstructions macrolecithal macrolepidoptera macrolepidopterous macrolinguistic macrolinguistically macrolinguistics macrolith macrologies macrology macromandibular macromania macromastia macromazia macromelia macromeral macromere macromeres macromeric macromerite macromeritic macromesentery macrometeorological macrometeorology macrometer macromethod macromole macromolecular macromolecule macromolecules macromyelon macromyelonal macron macronectes macrons macronuclear macronucleate macronuclei macronucleus macronucleuses macronutrient macronutrients macropetalous macrophage macrophages macrophagic macrophagocyte macrophagus macrophotograph macrophotographies macrophotographs macrophotography macrophyllous macrophysics macrophyte macrophytes macrophytic macropia macropinacoid macropinacoidal macropinakoid macropinakoids macroplankton macroplasia macroplastia macropleural macropod macropodia macropodian macropodidae macropodine macropodous macropods macroprism macroprisms macroprocessor macroprosopia macropsia macropsy macropteran macropterous macroptery macroptic macropus macropyramid macroreaction macrorhamphosidae macrorhinia macros macroscale macroscales macroscelia macroscian macroscopic macroscopical macroscopically macrosegment macroseism macroseismic macroseismograph macrosepalous macroseptum macrosmatic macrosomatia macrosomatous macrosomia macrospecies macrosphere macrosplanchnic macrosporange macrosporangia macrosporangium macrospore macrospores macrosporic macrosporophore macrosporophyl macrosporophyll macrostomatous macrostomia macrostructural macrostructure macrostructures macrostyle macrostylospore macrostylous macrosymbiont macrothelypteris macrothere macrotherioid macrotherm macrotia macrotin macrotis macrotome macrotone macrotous macrotus macrotyloma macrourid macrouridae macrozamia macrozamias macrozoarces macrozoogonidium macrozoospore macrura macrural macruran macrurans macruridae macruroid macrurous macs mactation mactations mactroid macuca macula maculacy maculae macular maculas maculate maculated maculates maculating maculation maculations maculature maculatures macule maculed macules maculicole maculicolous maculiferous maculing maculocerebral maculopapular maculose macumba macumbas macupa macupi macushla macuta macute macédoine macédoines mad madafu madagascan madagascar madagass madaillon madake madam madame madamed madames madaming madams madapolam madapolan madapollam madaroses madarosis madarotic madbrain madbrained madcap madcaply madcaps madded madden maddened maddening maddeningly maddeningness maddens madder madderish madders madderwort maddest madding maddingly maddish maddle maddled maddock maddocks made madefaction madefactions madefied madefies madefy madefying madeira madeiras madeleine madeleines madeline mademoiselle mademoiselles maderisation maderisations maderise maderised maderises maderising maderization maderizations maderize maderized maderizes maderizing madescent madge madges madhab madhouse madhouses madhuca madia madid madidans madison madisterium madling madlings madly madman madmen madnep madness madnesses mado madonna madonnaish madonnas madonnawise madoqua madoquas madrague madras madrasa madrasah madrasahs madrasas madrases madrassa madrassah madrassahs madrassas madrasseh madre madreline madreperl madreporacean madreporal madreporaria madreporarian madrepore madrepores madreporian madreporians madreporic madreporiform madreporite madreporites madreporitic madres madrid madrier madrigal madrigaler madrigalesque madrigaletto madrigalian madrigalist madrigalists madrigals madrih madril madrilene madrilenes madroa madrona madronas madrone madrones madrono madronos madroña madroñas madroño madroños mads madship madstone madtom madtoms maduro maduros madweed madwoman madwomen madwort madworts madzoon madzoons mae maeander maeandra maeandrine maeandriniform maeandrinoid maeandroid maecenas maed maegbot maegbote maeing maelid maelids maelstrom maelstroms maenad maenades maenadic maenadically maenadism maenadisms maenads maenaite maes maestive maestoso maestosos maestra maestri maestro maestros mafa mafey maffia maffias maffick mafficked mafficker maffickers mafficking maffickings mafficks maffioso maffle maffled maffler mafflin maffling mafflings mafflins mafia mafias mafic mafics mafiosi mafioso mafiosos mafoo maftir maftirs mafura mafurra mag magadhan magadis magadize magalog magalogs magani magas magasin magazinable magazinage magazine magazined magazinelet magaziner magazines magazinette magazining magazinish magazinism magazinist magazinists magaziny magbote magdalen magdalene magdalenes magdalenian magdalens magdaleon mage magellan magenta magentas magerful mages mageship mageships magestical magestically magg magged maggid maggidim maggie magging maggiore maggiores maggle maggot maggotier maggotiest maggotiness maggotorium maggotoriums maggotpie maggotry maggots maggoty maggs magh maghzen magi magian magianism magianisms magians magic magical magicalise magicalize magically magicdom magician magicians magicianship magicicada magickal magicked magicking magics magilp magilps magiric magirics magirist magiristic magirological magirologist magirology magism magisms magister magisterial magisteriality magisterially magisterialness magisterialnesses magisteries magisterium magisteriums magisters magistery magistracies magistracy magistral magistralities magistrality magistrally magistrals magistrand magistrands magistrant magistrate magistrates magistrateship magistrateships magistratic magistratical magistratically magistrative magistrature magistratures magistratus maglev maglevs magma magmas magmata magmatic magmatism magna magnale magnality magnalium magnaliums magnanerie magnanime magnanimities magnanimity magnanimosity magnanimous magnanimously magnanimousness magnanimousnesses magnascope magnascopic magnate magnates magnateship magnecrystallic magnelectric magneoptic magnes magneses magnesia magnesial magnesian magnesias magnesic magnesioferrite magnesite magnesites magnesium magnesiums magnesstone magnesstones magnet magneta magnetic magnetical magnetically magneticalness magnetician magneticians magnetics magnetiferous magnetification magnetify magnetimeter magnetisability magnetisable magnetisation magnetisations magnetise magnetised magnetiser magnetisers magnetises magnetising magnetism magnetisms magnetist magnetists magnetite magnetites magnetitic magnetizability magnetizable magnetization magnetizations magnetize magnetized magnetizer magnetizers magnetizes magnetizing magneto magnetobell magnetochemical magnetochemistry magnetod magnetodynamics magnetodynamo magnetoelectric magnetoelectrical magnetoelectricities magnetoelectricity magnetofluiddynamic magnetofluiddynamics magnetofluidmechanic magnetofluidmechanics magnetogasdynamic magnetogasdynamics magnetogenerator magnetogram magnetograph magnetographic magnetographs magnetohydrodynamic magnetohydrodynamical magnetohydrodynamically magnetohydrodynamics magnetoid magnetolysis magnetomachine magnetometer magnetometers magnetometric magnetometrical magnetometrically magnetometries magnetometry magnetomotive magnetomotivity magnetomotor magneton magnetons magnetooptic magnetooptical magnetooptically magnetooptics magnetopause magnetopauses magnetophone magnetophonograph magnetoplasmadynamic magnetoplasmadynamics magnetoplumbite magnetoprinter magnetoresistance magnetoresistances magnetos magnetoscope magnetosphere magnetospheres magnetospheric magnetostatic magnetostriction magnetostrictions magnetostrictive magnetostrictively magnetotactic magnetotaxes magnetotaxis magnetotelegraph magnetotelephone magnetotelephonic magnetotherapy magnetothermoelectricity magnetotransmitter magnetron magnetrons magnets magnicaudate magnicaudatous magnifiable magnific magnifical magnifically magnificat magnificate magnification magnifications magnificative magnificats magnifice magnificence magnificences magnificent magnificently magnificentness magnificio magnifico magnificoes magnificos magnified magnifier magnifiers magnifies magnifique magnify magnifying magniloquence magniloquences magniloquent magniloquently magniloquy magnipotence magnipotent magnirostrate magnisonant magnitude magnitudes magnitudinous magnochromite magnoferrite magnolia magnoliaceae magnoliaceous magnolias magnoliidae magnoliophyta magnoliopsid magnoliopsida magnon magnons magnox magnoxes magnum magnums magot magots magpie magpied magpieish magpies magrim mags magsman magsmen maguari maguey magueys magus magyar magyarorszag magyars maha mahabharata mahabharatam mahabharatum mahagua mahajan mahajun mahal mahala mahalamat mahaleb mahalebs mahalla mahaly mahant mahar maharaj maharaja maharajah maharajahs maharajas maharajrana maharana maharanee maharanees maharani maharanis maharao maharashtra maharawal maharawat maharishi maharishis maharmah maharshi mahat mahatma mahatmaism mahatmas mahayana mahayanist mahbub mahdi mahdism mahewu mahican mahimahi mahimahis mahjong mahjongg mahjonggs mahjongs mahlstick mahlsticks mahmal mahmals mahmudi mahoe mahoes mahoganies mahoganise mahoganize mahogany mahogonies mahogony mahoitre maholi maholtine mahomet mahometan mahometry mahone mahonia mahonias mahound mahout mahouts mahratta mahratti mahseer mahseers mahsir mahsirs mahsur mahu mahua mahuang mahuangs mahuas mahwa mahwas mahzor mahzorim mahzors maia maianthemum maiasaur maiasaurs maid maidan maidans maidchild maided maiden maidenchild maidenhair maidenhairs maidenhairtree maidenhead maidenheads maidenhood maidenhoods maidenish maidenism maidenlike maidenliness maidenlinesses maidenly maidens maidenship maidenweed maidenweeds maidhead maidhood maidhoods maidin maiding maidish maidishness maidism maidisms maidkin maidless maidlike maidling maidly maids maidservant maidservants maidu maidy maiefic maieutic maieutical maieutics maiger maigre maigres maihem maihems maiid maik maiko maikoa maikos maiks mail mailabilities mailability mailable mailbag mailbags mailboat mailboats mailbomb mailbombed mailbombing mailbombs mailbox mailboxes mailcar mailcars mailcatcher mailclad mailcoach mailcoaches maildrop maildrops maile mailed mailer mailers mailes mailgram mailgrammed mailgramming mailgrams mailguard mailie mailing mailings maill maille maillechort mailless maillot maillots maills mailman mailmen mailmerge mailmerged mailmerges mailmerging mailperson mailpersons mailplane mailpouch mailroom mailrooms mails mailsack mailsacks mailshot mailshots mailshotted mailshotting mailsorter mailvan mailvans mailwoman mailwomen maim maimed maimedly maimedness maimednesses maimer maimers maiming maimings maimon maims maimul main mainboom mainbooms mainbrace mainbraces maindoor maindoors maine mained mainer mainest mainferre mainframe mainframes maining mainland mainlander mainlanders mainlands mainline mainlined mainliner mainliners mainlines mainlining mainlinings mainly mainmast mainmasts mainmortable mainor mainors mainour mainours mainpast mainpernable mainpernor mainpernors mainpin mainport mainpost mainprise mainprised mainprises mainprising mainprisor mainprize mainprizer mains mainsail mainsails mainsheet mainsheets mainspring mainsprings mainstay mainstays mainstream mainstreamed mainstreamer mainstreamers mainstreaming mainstreamings mainstreams mainstreeting mainstreetings mainswear mainsworn maint maintain maintainabilities maintainability maintainable maintainableness maintainance maintainances maintained maintainer maintainers maintaining maintainment maintainor maintains maintenance maintenanced maintenances maintenancing maintenon maintien maintop maintopman maintopmast maintopmasts maintopmen maintops maintopsail maintopsails mainward mainyard mainyards maioid maioidean maiolica maiolicas mair mairatour maire mairie mairs maise maises maison maisonette maisonettes maisonnette maisonnettes maist maister maisterdome maisterdomes maistered maistering maisters maistres maistries maistring maistrings maistry maists maithuna maitlandite maitre maitres maitresse maitreya maitrise maize maizebird maizenic maizer maizes maja majagua majaguas majas majestatic majestatis majestic majestical majestically majesticalness majesticalnesses majesticness majesticnesses majesties majestious majesty majestyship majeure majidae majidieh majlis majlises majo majolica majolicas majolicaware majolicawares majolist majoon major majora majorana majorat majorate majoration majorca majordomo majordomos majored majorem majorette majorettes majoretting majorettings majoring majorise majoritaire majoritaires majoritarian majoritarianism majoritarianisms majoritarians majorities majority majorize majorly majors majorship majorships majos majusculae majuscular majuscule majuscules mak makable makadoo makahiki makaira makale makalu makar makara makars makatea make makeable makebate makebates makedom makefast makefasts makefile makeless makeover makeovers maker makereadies makeready makeress makers makership makes makeshift makeshiftiness makeshiftness makeshifts makeshifty makeup makeups makeweight makeweights makework makeworks makhorka makhzan makhzen maki makimono makimonos makin making makings makluk mako makomako makopa makos makoua makran makroskelic maks maksoorah makuk makunouchi makunouchis makuta makutas makutu mal mala malaanonang malabar malabathrum malabo malabsorption malabsorptions malacanthid malacanthidae malacanthine malacaton malacca malaccas malaccident malaceous malachi malachite malachites malacia malacias malaclemys malacoderm malacodermatous malacodermous malacoid malacolite malacologic malacological malacologies malacologist malacologists malacology malacon malacone malaconotinae malacophilies malacophilous malacophily malacophonous malacophyllous malacopod malacopodous malacopterygian malacopterygians malacopterygii malacopterygious malacosoma malacostraca malacostracan malacostracans malacostracology malacostracous malacothamnus malacotic malactic maladapt maladaptation maladaptations maladapted maladaptive maladdress maladdresses malade maladies maladive maladjust maladjusted maladjustive maladjustment maladjustments maladminister maladministered maladministering maladministers maladministration maladministrations maladministrative maladministrator maladresse maladroit maladroitly maladroitness maladroitnesses maladventure malady malaga malagash malagasy malagma malaguea malaguena malaguenas malaguetta malaguettas malagueña malagueñas malahack malaise malaises malakatoone malakatoones malakin malakon malalignment malam malambo malamute malamutes malander malandered malanders malandrous malanga malangas malange malanges malapaho malapert malapertly malapertness malapertnesses malaperts malapi malapplication malappointment malapportioned malapportionment malapportionments malappropriate malappropriated malappropriates malappropriating malappropriation malappropriations malaprop malapropian malapropish malapropism malapropisms malapropist malapropists malapropoism malapropos malaprops malar malaria malarial malarian malariaproof malarias malarin malarioid malariologies malariologist malariologists malariology malariotherapy malarious malarkey malarkeys malarkies malarky malaroma malaromas malarrangement malars malasapsap malassimilation malassimilations malassociation malate malates malathion malathions malati malattress malawi malawian malawians malax malaxable malaxage malaxages malaxate malaxated malaxates malaxating malaxation malaxations malaxator malaxators malaxed malaxerman malaxermen malaxes malaxing malaxis malay malaya malayalam malayan malayans malays malaysia malaysian malaysians malbehavior malbrouck malchite malcolmia malconceived malconduct malconformation malconformations malconstruction malcontent malcontented malcontentedly malcontentedness malcontentednesses malcontentism malcontently malcontentment malcontents malconvenance malcreated malcultivation maldeveloped maldevelopment maldigestion maldirection maldistribute maldistribution maldistributions maldivan maldives maldivian maldocchio maldon maldonite malduck male maleability malease maleate maleates maleberry malecite maledicent maledict maledicted maledicting malediction maledictions maledictive maledictory maledicts maleducation malee malefaction malefactions malefactor malefactors malefactory malefactress malefactresses malefeazance maleffect maleffects malefic malefical malefically malefice maleficence maleficences maleficent maleficently malefices maleficia maleficial maleficiate maleficiation maleficio maleficium maleic maleinoid maleinoidal malella malellae malemiut malemiuts malemuit malemuits malemute malemutes maleness malenesses malengin malengine malengines malentendu maleo maleos maleruption males maleseet malesherbiaceous maletolt maletote malevolence malevolences malevolency malevolent malevolently malevolous malexecution malfeasance malfeasances malfeasant malfeasantly malfeasants malfeasor malfed malformation malformations malformed malfortune malfunction malfunctioned malfunctioning malfunctionings malfunctions malgovernment malgr malgra malgrace malgrado malgre malgred malgres malgring malgré malguzar malguzari malheur malhonest malhygiene mali malian malic malice maliced maliceful maliceproof malices malicho malichos malicing malicious maliciously maliciousness maliciousnesses malicorium malidentification malie maliferous maliform malign malignance malignances malignancies malignancy malignant malignantly malignants malignation maligned maligner maligners malignified malignify malignifying maligning malignities malignity malignly malignment malignments maligns malihini malihinis malik malikadna malikala malikana maliks malikzadi malimprinted malinche maline malines malinfluence malinger malingered malingerer malingerers malingeries malingering malingers malingery malinke malinois malinowskite malinstitution malinstruction malintent malinvestment malis malism malisms malison malisons malist malistic malitia malkin malkins mall malladrite mallam mallams mallander mallanders mallangong mallard mallardite mallards malleabilities malleability malleabilization malleable malleableize malleableized malleableizing malleableness malleablenesses malleablise malleablize malleablized malleablizing malleably malleal mallear malleate malleated malleates malleating malleation malleations mallecho mallechos malled mallee mallees mallei malleiferous malleiform mallein malleinization malleinize malleli mallemaroking mallemarokings mallemuck mallemucks mallender mallenders malleoincudal malleolable malleolar malleoli malleolus malleoluses mallet malleted malleting mallets malleus malleuses malling mallings mallophaga mallophagan mallophagous malloseismic mallotus mallow mallows mallowwort malls mallum mallus malm malmag malmags malmaison malmarsh malmed malmier malmiest malmignatte malming malmo malmock malms malmsey malmseys malmstone malmstones malmy malnourished malnourishment malnourishments malnutrite malnutrition malnutritions malo malobservance malobservation maloca malocchio maloccluded malocclusion malocclusions malodor malodorant malodorous malodorously malodorousness malodorousnesses malodors malodour malodourousness malodours malojilla malolactic malonate malonates malonic malonyl malonylurea malope maloperation malopterurus malorganization malorganized malosma maloti malouah malpais malpighia malpighiaceae malpighiaceous malpighian malplaced malpoise malposed malposition malpositions malpractice malpracticed malpractices malpracticing malpractioner malpractitioner malpractitioners malpraxis malpresentation malpresentations malproportion malproportioned malpropriety malpublication malreasoning malrotation mals malshapen malstick malsticks malsworn malt malta maltable maltalent maltalents maltase maltases malted malteds malter maltese maltha malthas malthene malthite malthouse malthus malthusian malthusianism maltier maltiest maltine maltiness malting maltings maltman maltmen malto maltobiose maltodextrin maltodextrine maltol maltols maltolte maltose maltoses maltreat maltreated maltreater maltreaters maltreating maltreatment maltreatments maltreator maltreats malts maltster maltsters malturned maltworm maltworms malty malum malunion malurine malus malva malvaceae malvaceous malval malvales malvas malvasia malvasian malvasias malvastrum malvaviscus malversation malversations malverse malvesie malvesies malvin malvoisie malvoisies malvolition malwa malware mam mama mamaguy mamaliga mamaligas mamaloi mamamouchi mamamu mamas mamba mambas mambo mamboed mamboes mamboing mambos mambu mamee mamees mameliere mamelon mamelonation mamelons mameluco mamelucos mameluke mamelukes mamey mameyes mameys mamie mamies mamilla mamillae mamillar mamillary mamillate mamillated mamillation mamillations mamilliform mamlatdar mamluk mamluks mamlutdar mamma mammae mammal mammalgia mammalia mammalian mammalians mammaliferous mammality mammalogical mammalogies mammalogist mammalogists mammalogy mammals mammaplasties mammaplasty mammary mammas mammate mammati mammatocumulus mammatus mammea mammectomies mammectomy mammee mammees mammer mammered mammering mammers mammet mammetries mammetry mammets mammey mammeys mammie mammies mammifer mammifera mammiferous mammifers mammiform mammilate mammilated mammilla mammillae mammillaplasty mammillar mammillaria mammillarias mammillary mammillate mammillated mammillation mammillations mammilliform mammilloid mammilloplasty mammin mammitides mammitis mammock mammocked mammocking mammocks mammodi mammogen mammogenic mammogenically mammogram mammograms mammograph mammographic mammographies mammographs mammography mammon mammondom mammoni mammoniacal mammonish mammonism mammonisms mammonist mammonistic mammonists mammonite mammonites mammonitish mammonization mammonize mammonolatry mammons mammoplasties mammoplasty mammose mammoth mammothermography mammothrept mammoths mammotomy mammotropin mammula mammulae mammular mammut mammuthus mammutidae mammy mamo mamona mamoncillo mamoncillos mamoty mampalon mampara mampus mamry mams mamsell mamselle mamselles mamushi mamzer mamzerim mamzers man mana manace manacing manacle manacled manacles manacling manada manage manageabilities manageability manageable manageableness manageablenesses manageably managed managee manageless management managemental managements manager managerdom manageress manageresses managerial managerialism managerialisms managerialist managerialists managerially managers managership managerships managery manages managing managua manaism manak manakin manakins manal manama manana mananas manannan manarvel manas manasic manasseh manat manatee manatees manati manatine manation manatis manatoid manats manavel manavelins manavilins manavlins manawydan manawyddan manba manbarklak manbird manbot manbote manbria mancala mancalas mancando manche manches manchester manchet manchets manchette manchild manchineel manchineels manchu manchuria manchurian manchurians manchus mancinism mancipable mancipant mancipare mancipate mancipated mancipates mancipating mancipation mancipations mancipative mancipatory mancipee mancipia mancipium manciple manciples mancipleship mancipular mancono mancunian mancus mancuses mand manda mandacaru mandaean mandala mandalas mandalay mandalic mandament mandamus mandamuse mandamused mandamuses mandamusing mandant mandapa mandar mandara mandarah mandarin mandarinate mandarinates mandarindom mandarine mandarined mandarines mandariness mandarinic mandarining mandarinise mandarinism mandarinisms mandarinize mandarins mandarinship mandat mandataries mandatary mandate mandated mandatedness mandatee mandates mandating mandation mandative mandator mandatories mandatorily mandatoriness mandators mandatory mandats mandatum mande mandelamine mandelate mandelic manderelle mandevilla mandi mandible mandibles mandibula mandibular mandibulary mandibulate mandibulated mandibulates mandibuliform mandibulofacial mandibulohyoid mandibulomaxillary mandibulopharyngeal mandibulosuspensorial mandil mandilion mandilions mandingo mandioc mandioca mandiocas mandiocca mandioccas mandiocs mandir mandira mandiras mandirs mandlen mandment mandoer mandola mandolas mandolin mandoline mandolines mandolinist mandolinists mandolins mandolute mandom mandoms mandora mandoras mandore mandorla mandorlas mandorle mandra mandragora mandragoras mandragvn mandrake mandrakes mandrel mandrels mandriarch mandril mandrill mandrills mandrillus mandrils mandrin mandritta mandruka mands mandua manduca manducable manducate manducated manducates manducating manducation manducations manducatory mandyai mandyas mandyases mandyi mandylion mandylions mane maned manege maneged maneges maneging maneh manehs manei maneless manent manequin manerial manes manesheet maness manet maneuver maneuverabilities maneuverability maneuverable maneuvered maneuverer maneuverers maneuvering maneuverings maneuvers maneuvrability maneuvrable maneuvre maneuvred maneuvring maney manfish manful manfully manfulness manfulnesses mang manga mangabeira mangabeiras mangabev mangabey mangabeys mangabies mangaby mangal mangals mangalsutra mangalsutras mangana manganapatite manganate manganates manganblende manganbrucite manganeisen manganese manganeses manganesian manganesic manganetic manganhedenbergite manganic manganiferous manganin manganins manganite manganites manganium manganize manganocalcite manganocolumbite manganophyllite manganosiderite manganosite manganostibiite manganotantalite manganous manganpectolite mangas mange mangeao manged mangeds mangeier mangeiest mangel mangelin mangels mangelwurzel manger mangerite mangers mangery manges mangetout mangetouts mangey mangi mangier mangiest mangifera mangily manginess manginesses manging mangle mangled mangleman mangler manglers mangles mangling manglingly mango mangoes mangold mangolds mangona mangonel mangonels mangonism mangonization mangonize mangoro mangos mangostan mangostans mangosteen mangosteens mangour mangouste mangoustes mangrass mangrate mangrove mangroves mangs mangue mangwe mangy manhaden manhandle manhandled manhandler manhandles manhandling manhattan manhattans manhead manhole manholes manhood manhoods manhours manhunt manhunter manhunters manhunting manhunts mani mania maniable maniac maniacal maniacally maniacs maniaphobia manias manic manically manicate manichaean manichee manichord manichordon maniclike manicole manicon manicord manicotti manicottis manics maniculatus manicure manicured manicures manicuring manicurist manicurists manid manidae manie manienie maniere manies manifer manifest manifesta manifestable manifestant manifestants manifestation manifestational manifestationist manifestations manifestative manifestatively manifested manifestedness manifester manifesters manifestible manifesting manifestive manifestly manifestness manifestnesses manifesto manifestoed manifestoes manifestoing manifestos manifests manificum manifold manifolded manifolder manifolders manifolding manifoldly manifoldness manifoldnesses manifolds manifoldwise maniform manify manihoc manihocs manihot manihots manikin manikinism manikins manila manilas manilio manilkara manilla manillas manille manilles manini manioc manioca maniocas maniocs maniple maniples maniplies manipulabilities manipulability manipulable manipular manipulars manipulary manipulatability manipulatable manipulate manipulated manipulates manipulating manipulation manipulational manipulations manipulative manipulatively manipulativeness manipulativenesses manipulator manipulators manipulatory maniraptor maniraptora manis manism manist manistic manit manito manitoba manitos manitou manitous manitrunk manitu manitus maniu manjack manjacks manjak manjeet manjel mank mankeeper mankie mankier mankiest mankiller mankilling mankin mankind mankindly mankinds manks manky manless manlessly manlessness manlet manlier manliest manlihood manlike manlikely manlikeness manlily manliness manlinesses manling manly manmade manna mannaia mannan mannans mannas manned mannequin mannequins manner mannerable mannered manneredness mannerhood mannering mannerise mannerism mannerisms mannerist manneristic manneristical manneristically mannerists mannerize mannerless mannerlessness mannerlessnesses mannerliness mannerlinesses mannerly manners mannersome manness mannet mannheim mannide mannie manniferous mannified mannify mannikin mannikinism mannikins manning mannire mannish mannishly mannishness mannishnesses mannitan mannite mannites mannitic mannitol mannitols mannitose mannoheptite mannoheptitol mannoheptose mannoketoheptose mannonic mannopus mannosan mannose mannoses manny mano manoao manoaos manoc manoeuver manoeuverability manoeuvered manoeuverer manoeuvering manoeuverings manoeuvers manoeuvrabilities manoeuvrability manoeuvrable manoeuvre manoeuvred manoeuvreing manoeuvrer manoeuvrers manoeuvres manoeuvring manoeuvrings manograph manoir manometer manometers manometric manometrical manometrically manometries manometry manomin manor manorial manorialism manorialisms manorialize manors manorship manos manoscope manostat manostatic manouevre manpack manpacks manpower manpowers manqu manqua manque manquee manqueller manqué manred manreds manrent manrents manrider manriders manriding manroot manrope manropes mans mansard mansarded mansards manscape manse manser manservant manservants manses manshift manshifts manship mansi mansion mansional mansionaries mansionary mansioned mansioneer mansionries mansionry mansions manslaughter manslaughterer manslaughtering manslaughterous manslaughters manslayer manslayers manslaying manso mansonries mansonry manstealer manstealing manstopper manstopping mansuete mansuetely mansuetude mansuetudes manswear mansworn mant manta mantal mantapa mantappeaux mantas manteau manteaus manteaux manteel manteels mantegar manteidae mantel mantelet mantelets manteline mantelletta mantellettas mantellone mantellshelves mantelpiece mantelpieces mantels mantelshelf mantelshelves manteltree manteltrees manteodea manter mantes mantevil mantic mantically mantichora manticism manticora manticoras manticore manticores mantid mantidae mantids manties mantiger mantilla mantillas mantinea mantineia mantis mantises mantispid mantispidae mantissa mantissas mantistic mantle mantled mantlepiece mantlepieces mantlerock mantlerocks mantles mantlet mantletree mantlets mantling mantlings manto mantoes mantoid mantologist mantology manton mantos mantra mantram mantrams mantrap mantraps mantras mantric mantua mantuamaker mantuamaking mantuan mantuas manty manual manualii manualism manualist manualiter manually manuals manuao manuary manubaliste manubria manubrial manubriated manubrium manubriums manucaption manucaptor manucapture manucode manucodiata manuduce manuduct manuduction manuductive manuductor manuductory manuever manueverable manuevered manuevers manuf manufact manufaction manufactor manufactories manufactory manufacturable manufactural manufacture manufactured manufacturer manufacturers manufactures manufacturess manufacturing manufacturings manuka manukas manul manuls manuma manumea manumeas manumisable manumise manumission manumissions manumissive manumit manumits manumitted manumitter manumitters manumitting manumotive manuprisor manurable manurage manurance manurances manure manured manureless manurement manurer manurers manures manurial manurially manuring manurings manus manuscript manuscriptal manuscription manuscripts manuscriptural manuses manusina manustupration manutagi manutenency manutergium manward manwards manway manweed manwise manworth manx many manyata manyatas manyatta manyattas manyberry manyfold manyness manyplies manyroot manysidedness manyways manywhere manywise manzana manzanilla manzanillas manzanillo manzanita manzanitas manzello manzellos manzil manège manèged manèges manèging mao maoi maoism maoist maoists maomao maori maoris maormor maormors map mapach mapache mapau maphrian mapinguari mapland maple maplebush mapleface maplelike maples maplike mapmaker mapmakers mapmaking mapmakings mapo mappable mapped mappemond mappemonde mappemonds mappen mapper mapperies mappers mappery mapping mappings mappist mappists mappy maps mapstick mapsticks maputo mapwise maquahuitl maquereau maquette maquettes maqui maquila maquiladora maquiladoras maquilas maquillage maquillages maquis maquisard maquisards mar mara marabotin marabou marabous marabout maraboutism marabouts marabunta marabuto maraca maracan maracas maraco maracock marae maraes marage maraged maraging maragings marah marahs marais marajuana marakapas maral maranao maranatha marang maranon maranta marantaceae marantaceous marantas marantic marara mararie maras marasca marascas maraschino maraschinos marasmic marasmius marasmoid marasmous marasmus marasmuses maratha marathi marathon marathoner marathoners marathoning marathonings marathons marattia marattiaceae marattiaceous marattiales maraud marauded marauder marauders marauding marauds maravedi maravedis maravilla maray marbelization marbelize marbelized marbelizing marble marbled marblehead marbleheader marblehearted marbleise marbleised marbleises marbleising marbleization marbleize marbleized marbleizer marbleizes marbleizing marblelike marbleness marbler marblers marbles marblewood marblewoods marblier marbliest marbling marblings marblish marbly marbrinus marc marcando marcantant marcantants marcasite marcasites marcasitic marcasitical marcassin marcatissimo marcato marcatos marcel marceline marcella marcellas marcelled marceller marcelling marcello marcels marcescence marcescent marcescible marcgrave marcgraviaceous march marchand marchantia marchantiaceae marchantiaceous marchantiales marchantias marche marched marchen marcher marchers marches marchesa marchesas marchese marcheses marchesi marchet marchetti marchetto marching marchioness marchionesses marchite marchland marchlands marchlike marchman marchmen marchpane marchpanes marcid marcionism marcionite marco marconi marconied marconigram marconigrams marconigraph marconigraphed marconigraphing marconigraphs marconigraphy marconiing marconis marcor marcosian marcot marcottage marcs mard mardi mardied mardier mardies mardiest marduk mardy mardying mare mareblob marechal marechale marekanite maremma maremmas maremmatic maremme maremmese marengo marennin mareograph mares mareschal mareschals marezzo marfire marg marga margarate margaret margaric margarin margarine margarines margarins margarita margaritaceous margaritae margaritas margarite margarites margaritic margaritiferous margaritomancy margarodid margarodite margarosanite margate margaux margay margays marge marged margeline margent margented margenting margents marges margin marginability marginal marginalia marginalisation marginalise marginalised marginalises marginalising marginalism marginalisms marginalist marginalists marginalities marginality marginalization marginalizations marginalize marginalized marginalizes marginalizing marginally marginals marginate marginated marginates marginating margination marginations margined marginelliform marginicidal marginiform margining marginirostral marginocephalia marginocephalian marginoplasty margins margosa margosas margravate margravates margrave margravely margraves margravial margraviate margraviates margravine margravines margs marguerite marguerites margullie marhala mari maria mariachi mariachis marialite marialites marian mariana marianas marianist marianna marianne marica maricolous maricopa maricultural mariculture maricultures mariculturist mariculturists marid maridienne marids marie mariengroschen maries mariet marigenous marigold marigolds marigram marigrams marigraph marigraphic marigraphs marihuana marihuanas marijuana marijuanas marikina marilyn marimba marimbaist marimbaphone marimbaphones marimbas marimbist marimbists marimonda marina marinade marinaded marinades marinading marinal marinara marinaras marinas marinate marinated marinates marinating marination marinations marine marined marineland mariner marinera marineras mariners marinership marines maringue maringued maringuing marinheiro mariniere marinist marinière marinorama mariola mariolatry mariology marionberries marionberry marionet marionette marionettes mariposa mariposan mariposas mariposite maris marischal marischalled marischalling marischals marish marishes marishness marishy marist marita maritage maritages maritagium marital maritality maritally mariti mariticidal mariticide maritimal maritimate maritime maritimes maritorious mariupolite marivaudage marivaudages marjoram marjorams marjorie mark marka markable markas markaz markazes markdown markdowns marked markedly markedness markednesses marker markers markery market marketabilities marketability marketable marketableness marketablenesses marketably marketech marketed marketeer marketeers marketer marketers marketing marketings marketisation marketisations marketization marketizations marketman marketplace marketplaces markets marketstead marketwise markfieldite markhoor markhoors markhor markhors marking markingly markings markis markka markkaa markkas markland markless markman markmen markmoot markmote marks markshot marksman marksmanly marksmanship marksmanships marksmen markstone markswoman markswomen markup markups markweed markworthy marl marlaceous marlacious marlberry marle marled marler marles marlet marli marlier marliest marlin marline marlines marlinespike marlinespikes marling marlings marlingspike marlins marlinspike marlinspikes marlinsucker marlite marlites marlitic marllike marlock marlpit marls marlstone marlstones marly marm marmalade marmalades marmalady marmara marmarise marmarised marmarises marmarising marmaritin marmarization marmarize marmarized marmarizes marmarizing marmaroses marmarosis marmatite marmelise marmelised marmelises marmelising marmelize marmelized marmelizes marmelizing marmelos marmennill marmink marmion marmit marmite marmites marmolite marmor marmora marmoraceous marmorate marmorated marmoration marmoreal marmoreally marmorean marmoric marmorize marmose marmoses marmoset marmosets marmot marmota marmots marms maro maroc marocain marocains marok maron maronite marons maroon marooned marooner marooners marooning maroonings maroons maroquin maroquins maror marors maros marotte marouflage marplan marplot marplotry marplots marprelate marprelated marprelates marprelating marque marquee marquees marques marquesan marquess marquessate marquessates marquesses marqueterie marqueteries marquetery marquetries marquetry marquis marquisal marquisate marquisates marquisdom marquise marquises marquisess marquisette marquisettes marquisina marquisotte marquisship marquito marquois marraine marram marrams marranism marranize marrano marranos marred marree marrels marrer marrers marri marriable marriage marriageabilities marriageability marriageable marriageableness marriageablenesses marriageproof marriages married marriedly marrieds marrier marriers marries marring marrock marron marrons marrot marrow marrowbone marrowbones marrowed marrowfat marrowfats marrowing marrowish marrowless marrowlike marrows marrowskied marrowskies marrowsky marrowskyer marrowskying marrowy marrube marrubium marruecos marrum marrums marry marryer marrying marryings marrymuffe marrys mars marsala marsalas marse marseillais marseillaise marseille marseilles marses marsh marshal marshalate marshalcies marshalcy marshaled marshaler marshalers marshaless marshaling marshall marshalled marshaller marshallers marshalling marshallings marshalls marshalman marshalment marshals marshalsea marshalship marshalships marshbanker marshberries marshberry marshbuck marshes marshfire marshflower marshier marshiest marshiness marshinesses marshite marshland marshlander marshlanders marshlands marshlike marshlocks marshmallow marshmallows marshmallowy marshman marshmen marshs marshwort marshworts marshy marsilea marsileaceae marsileaceous marsipobranch marsipobranchiate marsipobranchs marsoon marsport marsports marsquake marsquakes marsupia marsupial marsupialia marsupialian marsupialisation marsupialise marsupialised marsupialising marsupialization marsupialize marsupialized marsupializing marsupials marsupian marsupiate marsupium marsupiums mart martaban martagon martagons marted martel martela martele marteline martellate martellato martelled martellement martelling martello martellos martels martemper marten marteniko martenot martenots martens martensite martensites martensitic martensitically martes martext martexts martha martial martialed martialing martialisation martialise martialism martialisms martialist martialists martiality martialization martialize martialled martialling martially martialness martialnesses martials martian martians martiloge martin martinet martineta martinetish martinetishness martinetism martinetisms martinets martinetship martinez marting martingal martingale martingales martingals martini martinico martinique martinis martinmas martinoe martins martite martlet martlets martnet martrix marts martynia martyniaceae martyniaceous martyr martyrdom martyrdoms martyred martyrer martyress martyria martyries martyring martyrisation martyrisations martyrise martyrised martyriser martyrises martyrish martyrising martyrium martyrization martyrizations martyrize martyrized martyrizer martyrizes martyrizing martyrlike martyrly martyrolatry martyrologe martyrologic martyrological martyrologies martyrologist martyrologistic martyrologists martyrologium martyrology martyrs martyrship martyrtyria martyry maru marum marumi marupa marut marvel marveled marveling marvelled marvelling marvellous marvellously marvellousness marvellousnesses marvelment marvelous marvelously marvelousness marvelousnesses marvelry marvels marver marvered marvering marvers marvy marwer marx marxian marxisant marxism marxist marxists mary marybud marybuds maryjane maryjanes maryknoll maryland marylander marylanders marys marysole marzipan marzipans mas masa masai masais masala masalas masalliance masarid masaridid masas masc mascagnine mascagnite mascally mascara mascaraed mascaraing mascaras mascaron mascarons mascarpone mascarpones maschera mascle mascled mascleless mascles mascon mascons mascot mascotism mascotry mascots mascotte mascularity masculate masculation masculine masculinely masculineness masculinenesses masculines masculinisation masculinisations masculinise masculinised masculinises masculinising masculinism masculinist masculinists masculinities masculinity masculinization masculinizations masculinize masculinized masculinizes masculinizing masculist masculofeminine masculonucleus masculy masdeu masdevallia mase mased maselin maser masers maseru mases mash masha mashak mashal mashallah masham mashed mashelton masher mashers mashes mashgiach mashgiah mashgichim mashgihim mashhad mashi mashie mashier mashies mashiest mashiness mashing mashings mashlam mashlams mashlim mashlims mashlin mashlins mashloch mashlochs mashlum mashlums mashman mashmen mashrebeeyah mashrebeeyeh mashru mashua mashuas mashy masing masjid masjids mask maskable maskallonge maskallonges maskalonge maskalonges maskanonge maskanonges masked maskeg maskegs maskelynite masker maskers maskery maskette maskflower masking maskings maskinonge maskinonges maskirovka maskirovkas masklike maskmv maskoid masks maslin maslins masochism masochisms masochist masochistic masochistically masochists mason masoned masoner masonic masonically masoning masonite masonites masonried masonries masonry masonrying masons masonwork masooka masoola masoolah masoolahs masora masorete masqat masque masquer masquerade masqueraded masquerader masqueraders masquerades masquerading masquers masques mass massa massachuset massachusetts massacre massacred massacrer massacrers massacres massacring massacrous massage massaged massager massagers massages massageuse massaging massagist massagists massaranduba massarandubas massas massasauga massasaugas masscult masscults masse massebah massecuite massed massedly massedness massel masselgem masser masseranduba masserandubas masses masseter masseteric masseterine masseters masseur masseurs masseuse masseuses massicot massicotite massicots massier massiest massif massifs massig massily massiness massinesses massing massive massively massiveness massivenesses massivity masskanne massless masslessness masslessnesses masslike massoola massoolas massotherapist massotherapy massoy masspriest masspriests massula massy massymore massymores massé mast mastaba mastabah mastabahs mastabas mastadenitis mastadenoma mastage mastalgia mastatrophia mastatrophy mastauxe mastax mastectomies mastectomy masted master masterable masterate masterates masterclass masterclasses masterdom masterdoms mastered masterer masterfast masterful masterfully masterfulness masterfulnesses masterhood masterhoods masteries mastering masterings masterless masterlessness masterlike masterlily masterliness masterlinesses masterling masterly masterman mastermen mastermind masterminded masterminding masterminds masterous masterpiece masterpieces masterproof masters mastership masterships mastersinger mastersingers masterstroke masterstrokes masterwork masterworks masterwort masterworts mastery mastful masthead mastheaded mastheading mastheads masthelcosis masthouse masthouses mastic masticability masticable masticate masticated masticates masticating mastication mastications masticator masticatories masticators masticatory mastich mastiche mastiches mastichs masticic masticophis masticot masticots mastics masticurous mastier mastiest mastiff mastiffs mastigate mastigia mastigium mastigobranchia mastigobranchial mastigomycota mastigomycotina mastigoneme mastigophobia mastigophora mastigophoran mastigophorans mastigophore mastigophoric mastigophorous mastigopod mastigopodous mastigoproctus mastigote mastigure masting mastitic mastitides mastitis mastitises mastix mastixes mastless mastlike mastman mastmen mastocarcinoma mastocarcinomas mastocarcinomata mastoccipital mastochondroma mastochondrosis mastocyte mastodon mastodonic mastodons mastodonsaurian mastodont mastodontic mastodontine mastodontoid mastodonts mastodynia mastodynias mastoid mastoidal mastoidale mastoideal mastoidean mastoidectomies mastoidectomy mastoideocentesis mastoideosquamous mastoiditides mastoiditis mastoiditises mastoidohumeral mastoidohumeralis mastoidotomy mastoids mastological mastologist mastology mastomenia mastoncus mastooccipital mastoparietal mastopathies mastopathy mastopexies mastopexy mastoplastia mastorrhagia mastoscirrhus mastosquamose mastotermes mastotermitidae mastotomy mastotympanic mastras masts masturbate masturbated masturbates masturbatic masturbating masturbation masturbational masturbations masturbator masturbators masturbatory mastwood masty masu masula masulas masurium masuriums masus mat mata matabele matachin matachina matachinas matachini matachins mataco matadero matador matadora matadoras matadore matadores matadors mataeological mataeologue mataeology mataeotechny matagasse matagory matagouri matai matais matajuelo matakam matalan matamata matamatas matambala matamoro matanza matapan matapi matara matasano matax matboard match matchabilities matchability matchable matchableness matchably matchboard matchboarding matchboardings matchboards matchbook matchbooks matchbox matchboxes matchbush matchcloth matchcoat matched matcher matchers matches matchet matchets matching matchings matchless matchlessly matchlessness matchlessnesses matchlock matchlocks matchmake matchmaker matchmakers matchmaking matchmakings matchmark matchplay matchsafe matchstalk matchstick matchsticks matchup matchups matchweed matchwood matchwoods matchy mate mated mategriffon matehood matelass matelassa matelasse matelasses mateless matelessness mateley matellasse matellasses matelot matelotage matelote matelotes matelots matelotte matelow mately matemilk mater materfamilias materfamiliases materia materiable material materialisation materialisations materialise materialised materialiser materialisers materialises materialising materialism materialisms materialist materialistic materialistical materialistically materialists materialities materiality materialization materializations materialize materialized materializee materializer materializers materializes materializing materially materialman materialmen materialness materialnesses materials materiarian materiate materiation materiel materiels maternal maternalise maternalised maternalising maternalism maternalisms maternalist maternalistic maternalistically maternality maternalize maternalized maternalizing maternally maternalness maternities maternity maternology maters mates mateship mateships matey mateyness mateynesses mateys matezite matfellon matfelon matfelons matgrass matgrasses math matha mathe mathematic mathematical mathematically mathematicals mathematician mathematicians mathematicise mathematicised mathematicises mathematicising mathematicism mathematicisms mathematicize mathematicized mathematicizes mathematicizing mathematics mathematisation mathematisations mathematise mathematised mathematises mathematising mathematization mathematizations mathematize mathematized mathematizes mathematizing mathemeg mather mathes matheses mathesis mathetic maths mathurin matico maticos matie matier maties matiest matilda matildas matildite matily matin matina matinae matinal matindol matinee matinees matiness matinesses mating matings matins matinée matinées matipo matis matisse matisses matjes matka matkah matless matlo matlockite matlos matlow matlows matmaker matmaking matman matoaka matoke matokes matooke matookes matra matrace matrah matral matranee matrass matrasses matreed matres matresfamilias matriarch matriarchal matriarchalism matriarchalisms matriarchate matriarchates matriarches matriarchic matriarchical matriarchies matriarchist matriarchs matriarchy matric matrical matricaria matrice matricentric matrices matricidal matricide matricides matriclan matriclinic matriclinies matriclinous matricliny matrics matricula matriculable matriculae matriculant matriculants matricular matriculas matriculate matriculated matriculates matriculating matriculation matriculations matriculator matriculators matriculatory matrifocal matrifocalities matrifocality matriheritage matriherital matrikin matrilateral matrilaterally matriline matrilineage matrilineages matrilineal matrilineality matrilineally matrilinear matrilinearism matrilinearly matrilinies matriliny matrilocal matrilocality matrilocally matrimonial matrimonially matrimonies matrimonii matrimonious matrimoniously matrimony matriotism matripotestal matris matrisib matrix matrixes matrixing matroclinal matroclinic matroclinies matroclinous matrocliny matroid matron matronage matronages matronal matronhood matronhoods matronise matronised matronises matronising matronism matronize matronized matronizes matronizing matronlike matronliness matronlinesses matronly matrons matronship matronships matronymic matronymics matross matrosses matryoshka matryoshkas mats matsah matsahs matster matsu matsue matsuri matsuris matsyendra matt matta mattamore mattamores mattaro mattboard matte matted mattedly mattedness matter matterate matterative mattered matterful matterfulness matterhorn mattering matterless matters mattery mattes matteuccia matthean matthew matthiola matti mattie matties mattin matting mattings mattins mattock mattocks mattoid mattoids mattoir mattole mattrass mattrasses mattress mattresses matts mattulla maturable maturant maturate maturated maturates maturating maturation maturational maturations maturative mature matured maturely maturement matureness maturenesses maturer maturers matures maturescence maturescent maturest maturing maturish maturities maturity matutinal matutinally matutinary matutine matutinely matweed matweeds maty matza matzah matzahs matzas matzo matzoh matzohs matzoon matzoons matzos matzot matzoth matériel matériels mau mauby maucaco maucauco maucherite maud maudeline maudle maudlin maudlinise maudlinism maudlinisms maudlinize maudlinly maudlinness maudlinnesses maudlinwort mauds mauger maugh maught maugrabee maugre maugred maugres maugring maui maukin maul maulana mauled mauler maulers mauley maulgre maulgred maulgres maulgring mauling mauls maulstick maulsticks maulvi maulvis maumet maumetries maumetry maumets maun maunch maunche maund maunded maunder maundered maunderer maunderers maundering maunderings maunders maundful maundies maunding maunds maundy maunge maungier maungiest maungy maunna maupassant mauquahog mauresque mauricio maurikigusari maurikigusaris maurist mauritania mauritanian mauritanians mauritanie mauritian mauritius mauser mausole mausolea mausoleal mausolean mausoleum mausoleums maut mauther mauthers mauts mauvais mauvaise mauve mauvein mauveine mauveines mauveins mauvelin mauveline mauver mauves mauvest mauvette mauvin mauvine mauvines mauvins mauvish mauvline maux maven mavens maverick mavericked mavericking mavericks mavie mavies mavin mavins mavis mavises mavourneen mavourneens mavournin mavournins mavrodaphne maw mawali mawbound mawed mawger mawing mawk mawkier mawkiest mawkin mawkingly mawkins mawkish mawkishly mawkishness mawkishnesses mawks mawky mawmet mawmetries mawmetry mawmets mawmish mawn mawp mawpus mawpuses mawr mawrs maws mawseed mawseeds mawsie mawther mawthers mawworm max maxed maxes maxi maxicoat maxicoats maxilla maxillae maxillar maxillaria maxillaries maxillary maxillas maxilliferous maxilliform maxilliped maxillipedary maxillipede maxillipedes maxillipeds maxillodental maxillofacial maxillojugal maxillolabial maxillomandibular maxillopalatal maxillopalatine maxillopharyngeal maxillopremaxillary maxilloturbinal maxillozygomatic maxillula maxillulae maxim maxima maximal maximalist maximalists maximality maximally maximals maximaphilies maximaphily maximate maximation maximed maximin maximins maximisation maximisations maximise maximised maximiser maximisers maximises maximising maximist maximistic maximists maximite maximites maximization maximizations maximize maximized maximizer maximizers maximizes maximizing maxims maximum maximumly maximums maximus maxing maxis maxisingle maxisingles maxiskirt maxiskirts maxixe maxixes maxostoma maxwell maxwells maxzide may maya mayaca mayacaceae mayacaceous mayan mayans mayapis mayapple mayapples mayas maybe mayberry maybes maybird maybirds maybush maybushes maycock mayday maydays mayduke mayed mayence mayeng mayenne mayest mayetiola mayfish mayfishes mayflies mayflower mayflowers mayfly mayhap mayhappen mayhaps mayhaw mayhem mayhemmed mayhemming mayhems maying mayings maynt mayo mayonnaise mayonnaises mayor mayoral mayorality mayoralties mayoralty mayoress mayoresses mayors mayorship mayorships mayos maypole maypoles maypop maypops mays maysin mayst mayster maysterdome maysterdomes maysters mayten maythe maythes maytide mayvin mayvins mayweed mayweeds maza mazaedia mazaedidia mazaedium mazagran mazair mazalgia mazaltov mazama mazame mazapilite mazard mazards mazarinade mazarinades mazarine mazarines mazdaism mazdoor mazdur maze mazed mazedly mazedness mazeful mazel mazelike mazeltov mazement mazements mazer mazers mazes mazhbi mazhbis mazic mazier maziest mazily maziness mazinesses mazing mazocacothesis mazodynia mazolysis mazolytic mazopathia mazopathic mazopathy mazopexy mazourka mazourkas mazout mazouts mazuca mazuma mazumas mazurka mazurkas mazut mazuts mazy mazzard mazzards mañana mb mba mbabane mbalolo mbaqanga mbaqangas mbd mbeuer mbira mbiras mbori mbps mc mccaffrey mccarthyism mccoy mcdonald mcf mcg mcintosh mckinley mcphail md mdiv mdma mdnt mdse me mea meable meach meaching meacock meacocks meacon mead meader meadow meadowbur meadowed meadower meadowgrass meadowing meadowink meadowland meadowlands meadowlark meadowlarks meadowless meadows meadowsweet meadowsweets meadowwort meadowy meads meadsman meadsweet meadwort meager meagerly meagerness meagernesses meagerrer meagerrest meagre meagrely meagreness meagrenesses meagrer meagrest meak meaking meal mealable mealberry mealed mealer mealers mealie mealier mealies mealiest mealily mealiness mealinesses mealing mealless mealman mealmen mealmonger mealmouth mealmouthed mealock mealproof meals mealtide mealtime mealtimes mealworm mealworms mealy mealybug mealybugs mealymouth mealymouthed mealymouthedly mealymouthedness mealywing mean meander meandered meanderer meanderers meandering meanderingly meanderings meanders meandrian meandrine meandriniform meandrite meandrous meandrously meane meaned meaneing meaner meaners meanes meanest meanie meanies meaning meaningful meaningfully meaningfulness meaningfulnesses meaningless meaninglessly meaninglessness meaninglessnesses meaningly meaningness meanings meanish meanless meanly meanness meannesses means meanspirited meanspiritedly meanspiritedness meanspiritednesses meant meantime meantimes meantone meanwhile meanwhiles meany mear meare meares mearing mearstone meas mease meased meases measing measle measled measledness measles measlesproof measlier measliest measliness measlinesses measling measly measondue measurabilities measurability measurable measurableness measurablenesses measurably measurage measuration measure measured measuredly measuredness measurednesses measureless measurelessly measurelessness measurelessnesses measurely measurement measurements measurer measurers measures measuring measurings measuringworm meat meatal meataxe meatball meatballs meatbird meatcutter meated meath meathe meathead meatheads meathes meathook meathooks meaths meatic meatier meatiest meatily meatiness meatinesses meatless meatloaf meatloaves meatman meatmen meatometer meatorrhaphy meatoscope meatoscopy meatotome meatotomy meatpacker meatpackers meatpacking meatpackings meats meatscreen meatscreens meature meatus meatuses meatworks meaty meaul meaw meawes meazel meazels meazle mebaral mebendazole mebos meboses mecamylamine mecamylamines mecate mecati mecca meccano meccas mech mechanal mechanality mechanalize mechanic mechanical mechanicalisation mechanicalise mechanicalism mechanicalist mechanicality mechanicalization mechanicalize mechanically mechanicalness mechanicalnesses mechanicals mechanician mechanicians mechanicochemical mechanicocorpuscular mechanicointellectual mechanicotherapy mechanics mechanisable mechanisation mechanisations mechanise mechanised mechaniser mechanisers mechanises mechanising mechanism mechanismic mechanisms mechanist mechanistic mechanistically mechanists mechanizable mechanization mechanizations mechanize mechanized mechanizer mechanizers mechanizes mechanizing mechanochemical mechanochemistries mechanochemistry mechanolater mechanology mechanomorphic mechanomorphically mechanomorphism mechanomorphisms mechanophobia mechanoreception mechanoreceptions mechanoreceptive mechanoreceptor mechanoreceptors mechanotherapeutic mechanotherapeutics mechanotherapies mechanotherapist mechanotherapists mechanotheraputic mechanotheraputically mechanotherapy mechant mechatronic mechatronics mechitza mechitzah mechitzas mechitzot mechitzoth mechlin mechoacan mecholyl meck meckelectomy meclizine meclizines meclofenamate meclomen mecodont mecometer mecometry mecon meconate meconates meconic meconidium meconin meconins meconioid meconium meconiums meconology meconophagism meconophagist meconopses meconopsis mecopteran mecopterans mecopteron mecopterous mecrobeproof mecum mecums mecurial mecurialism med medacca medaccas medaewart medaewarts medaillon medaillons medaka medakas medal medaled medalet medalets medaling medalise medalist medalists medalize medallary medalled medallic medallically medalling medallion medallioned medallioning medallionist medallions medallist medallists medals medcinal meddle meddlecome meddled meddlement meddler meddlers meddles meddlesome meddlesomely meddlesomeness meddlesomenesses meddling meddlingly meddlings mede medea medenagan medevac medevaced medevacing medevacked medevacking medevacs medflies medfly media mediacid mediacies mediacy mediad mediae mediaeval mediaevalism mediaevalisms mediaevalist mediaevalists mediaevalize mediaevally mediaevals mediagenic medial medialisation medialise medialization medialize medialkaline medially medials median medianic medianimic medianimity medianism medianity medianly medians mediant mediants mediary medias mediastina mediastinal mediastine mediastinitis mediastinotomy mediastinum mediate mediated mediately mediateness mediatenesses mediates mediating mediatingly mediation mediational mediations mediatisation mediatisations mediatise mediatised mediatises mediatising mediative mediatization mediatizations mediatize mediatized mediatizes mediatizing mediator mediatorial mediatorialism mediatorially mediatorious mediators mediatorship mediatorships mediatory mediatress mediatresses mediatrice mediatrices mediatrix mediatrixes medic medica medicable medicably medicago medicaid medicaids medical medicalese medicalisation medicalisations medicalise medicalised medicalises medicalising medicalization medicalizations medicalize medicalized medicalizes medicalizing medically medicals medicament medicamental medicamentally medicamentary medicamentation medicamented medicamenting medicamentous medicaments medicant medicants medicare medicares medicaster medicasters medicate medicated medicates medicating medication medications medicative medicator medicatory medicean medicide medicides medicinable medicinableness medicinal medicinally medicinalness medicinals medicinary medicine medicined medicinelike medicinemonger mediciner mediciners medicines medicining medick medicks medico medicobotanical medicochirurgic medicochirurgical medicodental medicolegal medicolegally medicomania medicomechanic medicomechanical medicommissure medicomoral medicophysical medicophysics medicopsychological medicopsychology medicos medicostatistic medicosurgical medicotopographic medicozoologic medics medidia medidii mediety medieval medievalism medievalisms medievalist medievalistic medievalists medievalize medievally medievals medifixed medigap medigaps mediglacial medii medille medimn medimno medimnos medimnus medina medinas medine medinilla medino medio medioanterior mediocarpal medioccipital mediocracies mediocracy mediocral mediocre mediocrely mediocreness mediocris mediocrist mediocrities mediocrity mediocubital mediodepressed mediodigital mediodorsal mediodorsally mediofrontal mediolateral mediopalatal mediopalatine mediopassive mediopectoral medioperforate mediopontine medioposterior mediosilicic mediostapedial mediotarsal medioventral medisance medisect medisection medism meditabund meditance meditant meditate meditated meditatedly meditater meditates meditating meditatingly meditatio meditation meditational meditationist meditations meditatist meditative meditatively meditativeness meditativenesses meditator meditators mediterrane mediterranean mediterraneous medithorax meditullium medium mediumisation mediumise mediumism mediumistic mediumization mediumize mediumly mediums mediumship mediumships medius mediuses medize medjidie medjidieh medlar medlars medle medled medles medley medleyed medleying medleys medlied medling medoc medregal medrese medreses medresseh medressehs medrick medrinacks medrinacles medrinaque medroxyprogesterone meds medscheat medula medulla medullae medullar medullary medullas medullate medullated medullation medullispinal medullitis medullization medulloblastoma medulloblastomas medulloblastomata medullose medullous medusa medusae medusal medusalike medusan medusans medusas medusiferous medusiform medusoid medusoids mee meebos meece meech meecher meeching meed meedful meedless meeds meek meeken meekened meekening meekens meeker meekest meekhearted meekheartedness meekling meekly meekness meeknesses meemie meemies meer meercat meercats meered meerestone meering meerkat meerkats meers meerschaum meerschaums meese meet meetable meeten meeter meeterly meeters meetest meeth meethelp meethelper meeting meetinger meetinghouse meetinghouses meetings meetly meetness meetnesses meets mefloquine mefloquines mefoxin meg mega megaara megabar megabars megabat megabaud megabit megabits megabuck megabucks megabyte megabytes megacardia megacephalia megacephalic megacephalies megacephalous megacephaly megacerine megacerotine megachile megachilid megachilidae megachiroptera megachiropteran megachiropterous megacities megacity megacolon megacorporation megacorporations megacosm megacoulomb megacurie megacuries megacycle megacycles megadeal megadeals megadeath megadeaths megaderma megadermatidae megadont megadontia megadontic megadontism megadonty megadose megadoses megadynamics megadyne megadynes megaerg megafarad megafarads megafauna megafaunae megafaunal megafaunas megaflop megaflops megaflora megaflorae megafloras megafog megafogs megagamete megagametes megagametophyte megagametophytes megagauss megagausses megaherbivore megaherbivores megahertz megahertzes megahit megahits megajoule megajoules megakaryoblast megakaryocyte megakaryocytes megakaryocytic megalecithal megaleme megalerg megalesthete megalethoscope megalith megalithic megaliths megalobatrachus megaloblast megaloblastic megaloblasts megalocardia megalocardias megalocarpous megalocephalia megalocephalic megalocephalies megalocephalous megalocephaly megalochirous megalocornea megalocyte megalocytosis megalodactylia megalodactylism megalodactylous megalodont megalodontia megaloenteron megalogastria megaloglossia megalograph megalography megalohepatia megalokaryocyte megalomania megalomaniac megalomaniacal megalomaniacally megalomaniacs megalomanias megalomanic megalomelia megalonychidae megalopa megalopenis megalophonic megalophonous megalophthalmus megalopia megalopic megalopine megaloplastocyte megalopolis megalopolises megalopolistic megalopolitan megalopolitanism megalopolitans megalopore megalops megalopses megalopsia megalopsychy megaloptera megalopteran megalopterous megalosaur megalosauri megalosaurian megalosaurians megalosauridae megalosauroid megalosaurs megalosaurus megalosauruses megaloscope megaloscopy megalosphere megalospheric megalosplenia megalosyndactyly megaloureter megalp megamastictoral megamere megameter megametre megampere meganewton meganewtons meganucleus megaparsec megaparsecs megaphone megaphoned megaphones megaphonic megaphonically megaphoning megaphotographic megaphotography megaphyllous megapixel megapixels megaplex megaplexes megapod megapode megapodes megapodiidae megapodius megapods megapolis megapolises megapolitan megaproject megaprojects megaprosopous megaptera megapterine megara megarad megarads megarian megaron megarons megasclere megascleric megasclerous megasclerum megascope megascopes megascopic megascopical megascopically megaseism megaseismic megaseme megasporange megasporangia megasporangium megaspore megaspores megasporic megasporogeneses megasporogenesis megasporophyll megasporophylls megass megasse megasses megastar megastars megastore megastores megastructure megastructures megasynthetic megatechnologies megatechnology megathere megatheres megatherian megatheriid megatheriidae megatherine megatherioid megatherium megatherm megathermal megathermic megatheroid megaton megatonnage megatonnages megatons megatron megatype megatypy megavertebrate megavertebrates megavitamin megavitamins megavolt megavoltage megavoltages megavolts megawatt megawattage megawattages megawatts megaweber megaword megawords megazooid megazoospore megbote megerg megesterol megger megilla megillah megillahs megillas megilloth megilp megilph megilphs megilps megmho megnetosphere megohm megohmit megohmmeter megohms megomit megophthalmus megotalc megrim megrimish megrims megs meguilp mehalla mehari meharis meharist mehitzah mehitzoth mehmandar mehndi mehndis mehtar mehtarship mei meigomian meiji meikle meikles meile meiler mein meindre meined meiney meineys meinie meinies meining meins meint meiny meio meiobar meiocene meiofauna meiofaunal meionite meionites meiophylly meioses meiosis meiostemonous meiotaxy meiotic meiotically meishi meishis meisje meister meisters meistersinger meith meiths meitnerium meitneriums meizoseismal meizoseismic mejlis mejlises mejorana mekhitarist mekilta mekometer mekometers mekong mel mela melaconite melaconites melada meladiorite melaena melaenic melagabbro melagra melagranite melaleuca melalgia melam melamdim melamed melamin melamine melamines melammdim melammed melampod melampode melampodes melampodium melampsora melampsoraceae melampyrin melampyrite melampyritol melanaemia melanaemias melanaemic melanagogal melanagogue melancholia melancholiac melancholiacs melancholian melancholias melancholic melancholically melancholics melancholies melancholily melancholiness melancholinesses melancholious melancholiously melancholiousness melancholish melancholist melancholize melancholomaniac melancholy melancholyish melanchthonian melanconiaceous melanemia melanemic melanerpes melanesia melanesian melanesians melange melanger melanges melangeur melanian melanic melanics melaniferous melanilin melaniline melanin melanins melanisation melanise melanised melanises melanising melanism melanisms melanist melanistic melanists melanite melanites melanitic melanitta melanization melanizations melanize melanized melanizes melanizing melano melanoblast melanoblastic melanoblastoma melanoblasts melanocarcinoma melanocerite melanochroi melanochroic melanochroite melanochroous melanocomous melanocrate melanocratic melanocyte melanocytes melanoderm melanoderma melanodermia melanodermic melanogen melanogeneses melanogenesis melanogrammus melanoi melanoid melanoidin melanoids melanoma melanomas melanomata melanopathia melanopathy melanophore melanophores melanoplakia melanoplus melanorrhagia melanorrhea melanos melanosarcoma melanosarcomatosis melanoscope melanose melanosed melanoses melanosis melanosities melanosity melanosome melanosomes melanospermous melanotekite melanotic melanotis melanotrichous melanotropin melanotropins melanotype melanous melanterite melanterites melanthaceous melanthiaceae melanthy melanure melanurenic melanuresis melanuria melanurias melanuric melaphyre melaphyres melas melasma melasmic melasses melassigenic melastoma melastomaceae melastomaceous melastomad melastomataceae melastome melatonin melatonins melatope melaxuma melba melbourne melch melchite melchizedek meld melded melder melders melding meldometer meldrop melds mele meleager meleagrididae meleagrine meleagris melebiose melee melees melena melenas melene melenic meles meletin melezitase melezitose melia meliaceae meliaceous melianthaceous meliatin melibiose melic melicera meliceric meliceris melicerous melichrous melicitose melicocca melicoccus melicoton melicotton melicottons melicrate melicraton melicratory melicratum melics melik meliks melilite melilites melilitite melilot melilots melilotus melinae meline melinite melinites melior meliorability meliorable meliorant meliorate meliorated meliorater meliorates meliorating melioration meliorations meliorative melioratively meliorator meliorators meliorism meliorisms meliorist melioristic meliorists meliorities meliority meliphagan meliphagidae meliphagidan meliphagous meliphanite meliponine melis melisma melismas melismata melismatic melismatics melissa melissyl melissylic melitaemia melitemia melithaemia melithemia melitis melitose melitriose melittologist melittology melituria melituric melkhout mell mellaginous mellah mellaril mellate mellay mellays melled melleous meller mellic melliferous mellific mellificate mellification mellifications mellifluate mellifluence mellifluences mellifluent mellifluently mellifluous mellifluously mellifluousness mellifluousnesses mellilita mellilot mellimide melling mellisonant mellisugent mellit mellita mellitate mellite mellites mellitic mellitum mellitus mellivora mellivorous mellon mellone mellonides mellophone mellophones mellotron mellotrons mellow mellowed mellower mellowest mellowing mellowingly mellowly mellowness mellownesses mellowphone mellows mellowspeak mellowspeaks mellowy mells mellsman melocactus melocoton melocotons melocotoon melocotoons melodeon melodeons melodia melodial melodially melodias melodic melodica melodical melodically melodicas melodicon melodics melodied melodies melodiograph melodion melodions melodious melodiously melodiousness melodiousnesses melodise melodised melodiser melodises melodising melodism melodist melodists melodium melodize melodized melodizer melodizers melodizes melodizing melodractically melodram melodrama melodramas melodramatic melodramatical melodramatically melodramaticism melodramatics melodramatisation melodramatise melodramatised melodramatises melodramatising melodramatist melodramatists melodramatization melodramatizations melodramatize melodramatized melodramatizes melodramatizing melodrame melodrames melody melodying melodyless meloe melogale melogram melograph melographic meloid meloidae meloids melologue melolontha melolonthid melolonthidae melolonthidan melolonthine melomame melomane melomania melomaniac melomaniacs melomanias melomanic melon meloncus melongena melongrower melonist melonite melonlike melonmonger melonry melons melophagus melophone melophonic melophonist melopiano melopianos meloplast meloplastic meloplasties meloplasty melopoeia melopoeic melopsittacus melos melosa melospiza melote melotragedy melotragic melotrope melpell melphalan melphalans melpomene mels melt meltabilities meltability meltable meltage meltages meltdown meltdowns melted meltedness melteigite melter melters melteth meltier meltiest melting meltingly meltingness meltingnesses meltings meltith meltiths melton meltons melts meltwater meltwaters melty melungeon melursus melvie melville mem member membered memberless members membership memberships membracid membracidae membracine membral membrally membrana membranaceous membranaceously membranal membranate membrane membraned membraneless membranelike membranella membranelle membraneous membranes membraniferous membraniform membranin membranocalcareous membranocartilaginous membranocoriaceous membranocorneous membranogenic membranoid membranology membranonervous membranophone membranophonic membranosis membranous membranously membranula membranule membrette membretto meme memento mementoes mementos memes memetic memetics meminna memnon memnonian memo memoir memoire memoirism memoirisms memoirist memoirists memoirs memorabile memorabilia memorabilities memorability memorable memorableness memorablenesses memorably memoranda memorandist memorandize memorandum memorandums memorate memoration memorative memorda memoria memorial memorialisation memorialisations memorialise memorialised memorialiser memorialisers memorialises memorialising memorialist memorialists memorialization memorializations memorialize memorialized memorializer memorializers memorializes memorializing memorially memorials memoried memories memorious memorisable memorisation memorisations memorise memorised memoriser memorisers memorises memorising memorist memoriter memorizable memorization memorizations memorize memorized memorizer memorizers memorizes memorizing memory memoryless memorylessness memos memphian memphis mems memsahib memsahibs men menaccanite menaccanitic menace menaceable menaced menaceful menacement menacer menacers menaces menacing menacingly menacme menad menadic menadione menadiones menads menage menaged menagerie menageries menagerist menages menaging menald menaquinone menarche menarcheal menarches menarchial menat menazon menazons mend mendable mendacious mendaciously mendaciousness mendaciousnesses mendacities mendacity mended mendee mendel mendeleev mendelevium mendeleviums mendeleyev mendelian mendelianism mendelianist mendelism mendelist mendelize mendelson mendelssohn mendelyeevite mender menders mendiant mendicancies mendicancy mendicant mendicantism mendicants mendicate mendicated mendicating mendication mendicities mendicity mendigo mendigos mending mendings mendipite mendment mendole mendozite mends mendy mene mened meneer meneers meneghinite menehune menelaus menes menevian menfolk menfolks meng menge menged menges menging mengs menhaden menhadens menhir menhirs menial menialism meniality menially menialness menials menialty menilite menilites mening meningeal meninges meningic meningina meningioma meningiomas meningiomata meningism meningismus meningitic meningitides meningitis meningitises meningitophobia meningocele meningoceles meningocephalitis meningocerebritis meningococcal meningococcemia meningococci meningococcic meningococcocci meningococcus meningocortical meningoencephalitic meningoencephalitides meningoencephalitis meningoencephalocele meningomalacia meningomyclitic meningomyelitis meningomyelocele meningomyelorrhaphy meningorachidian meningoradicular meningorhachidian meningorrhagia meningorrhea meningorrhoea meningosis meningospinal meningotyphoid meninting meninx menippe meniscal meniscate meniscectomies meniscectomy menisci menisciform meniscitis meniscium meniscocytosis meniscoid meniscoidal meniscus meniscuses menise menison menisperm menispermaceae menispermaceous menispermin menispermine menispermum menispermums meniver menkind mennom mennon mennonist mennonite mennonites mennonitism mennuet meno menognath menognathous menologies menologium menology menologyes menometastasis menominee menominees menomini menominis menopausal menopause menopauses menopausic menophania menoplania menopome menopomes menopon menorah menorahs menorhynchous menorrhagia menorrhagias menorrhagic menorrhagy menorrhea menorrheas menorrheic menorrhoea menorrhoeas menorrhoeic menoschesis menoschetic menosepsis menostasia menostasis menostatic menostaxis menotyphla menotyphlic menow menoxenia mens mensa mensae mensal mensalize mensas mensch menschen mensches mense mensed menseful menseless menservants menses mensh menshed menshen menshes menshevik menshevism menshevist menshing mensing mensis mensk menstrua menstrual menstruant menstruate menstruated menstruates menstruating menstruation menstruations menstrue menstruoos menstruosity menstruous menstruousness menstruum menstruums mensual mensurabilities mensurability mensurable mensurableness mensurablenesses mensurably mensural mensuralist mensurate mensuration mensurational mensurations mensurative menswear menswears ment menta mentagra mental mentalis mentalisation mentalise mentalism mentalisms mentalist mentalistic mentalistically mentalists mentalities mentality mentalization mentalize mentally mentary mentation mentations mentee mentees mentery mentha menthaceous menthadiene menthan menthane menthe menthene menthenes menthenol menthenone menthol mentholated menthols menthone menthyl menticide menticides menticirrhus menticultural menticulture mentiferous mentiform mentigerous mentimeter mentimutation mention mentionability mentionable mentioned mentioner mentioners mentioning mentionless mentions mentis mento mentoanterior mentobregmatic mentocondylial mentohyoid mentolabial mentomeckelian mentoniere mentonniares mentonniere mentonnieres mentonnière mentonnières mentoposterior mentor mentored mentorial mentoring mentorings mentorism mentors mentorship mentorships mentos mentum mentums mentzelia menu menuiserie menuiseries menuisier menuisiers menuki menura menurae menuridae menus meny menyanthaceae menyanthes menyie menyies menzie menziesia meou meoued meouing meous meow meowed meowing meows mepacrine mepacrines meperidine meperidines mephenytoin mephistophelean mephistopheles mephistophelian mephitic mephitical mephitically mephitinae mephitine mephitis mephitises mephitism mephitisms mephobarbital meprin meprobamate meprobamates meq mer meralgia meraline meranti merantis merbaby merbromin merbromine merbromins merc mercal mercantile mercantilely mercantilism mercantilisms mercantilist mercantilistic mercantilists mercantility mercaptal mercaptan mercaptans mercaptide mercaptides mercaptids mercapto mercaptol mercaptole mercaptopurine mercaptopurines mercat mercatoria mercatorial mercats mercature merce mercedario mercement mercenaria mercenarian mercenaries mercenarily mercenariness mercenarinesses mercenarism mercenarisms mercenary mercer merceress merceries mercerisation mercerisations mercerise mercerised merceriser mercerisers mercerises mercerising mercerization mercerizations mercerize mercerized mercerizer mercerizers mercerizes mercerizing mercers mercership mercery merch merchandisability merchandisable merchandise merchandised merchandiser merchandisers merchandises merchandising merchandisings merchandize merchandized merchandizes merchandizing merchandizings merchandrise merchandry merchandy merchant merchantabilities merchantability merchantable merchantableness merchanted merchanteer merchanter merchanthood merchanting merchantings merchantish merchantlike merchantly merchantman merchantmen merchantries merchantry merchants merchantship merchet merchets merchild merchildren merci merciable merciablely merciably mercian mercies mercifide mercified mercifies merciful mercifully mercifulness mercifulnesses mercify mercifying merciless mercilessly mercilessness mercilessnesses merciment mercs mercurate mercurated mercurates mercurating mercuration mercurations mercurial mercurialis mercurialisation mercurialisations mercurialise mercurialised mercurialises mercurialising mercurialism mercurialisms mercurialist mercurialists mercurialities mercuriality mercurialization mercurializations mercurialize mercurialized mercurializes mercurializing mercurially mercurialness mercurialnesses mercurials mercuriamines mercuriammonium mercuriate mercuric mercurid mercuride mercuries mercurification mercurified mercurify mercurifying mercurise mercurised mercurises mercurising mercurization mercurize mercurized mercurizes mercurizing mercurochrome mercurophen mercurous mercury mercy mercyproof merd merde merdes merdivorous merdurinous mere mered merel merell merells merels merely merenchyma merenchymatous merengue merengued merengues merenguing merer meres meresman meresmen merest merestone merestones mereswine meretrices meretricious meretriciously meretriciousness meretriciousnesses meretrix merfold merfolk merfolks merganser mergansers merge merged mergee mergees mergence mergences merger mergers merges mergh merginae merging mergings mergus meri meriah mericarp mericarps merice merida meridian meridians meridie meridiem meridienne meridional meridionalities meridionality meridionally meridionals meril merils merimake merimakes mering meringue meringued meringues meringuing merino merinos meriones meriquinoid meriquinoidal meriquinone meriquinonic meriquinonoid meris merises merisis merism merismatic merismoid merisms merist meristele meristelic meristem meristematic meristematically meristems meristic meristically meristogenous merit meritable merited meritedly meritedness meriter meritful meriting meritless meritlessness meritmonger meritmongering meritmongery meritocracies meritocractic meritocracy meritocrat meritocratic meritocrats meritorious meritoriously meritoriousness meritoriousnesses meritory merits merk merkhet merkin merkins merks merl merlangus merle merles merlette merligo merlin merling merlings merlins merlion merlon merlons merlot merlots merls merluccius mermaid mermaiden mermaidens mermaids merman mermen mermithaner mermithergate mermithization mermithized mermithogyne mermother mero meroblastic meroblastically merocele merocelic merocerite meroceritic merocrine merocrystalline merocyte merodach merodus merogamy merogastrula merogeneses merogenesis merogenetic merogenic merognathite merogonic merogonies merogony merohedral merohedric merohedrism meroistic merome meromelia meromes meromorphic meromyarian meromyosin meromyosins meronym meronymies meronymous meronyms meronymy merop meropia meropias meropic meropidae meropidan meropidans meroplankton meroplanktonic meroplanktons meropodite meropoditic merops merorganization merorganize meros merosomal merosomatous merosome merosomes merosthenic merostomata merostomatous merostome merostomous merosymmetrical merosymmetry merosystematic merotomize merotomy merotropism merotropy merovingian meroxene merozoite merozoites merpeople merpeoples merribauks merribush merrier merries merriest merriless merrily merrimack merriment merriments merriness merrinesses merrow merrowes merry merrymake merrymaker merrymakers merrymakes merrymaking merrymakings merryman merrymeeting merrymen merrythought merrythoughts merrytrotter merrywing mersalyl mersalyls merse merses mersion mersions mertensia merthiolate merton meruit meruline merulioid merv mervail merveileux merveilleuse merveilleux merwinite merwoman merychippus merycism merycisms merycismus merycoidodon merycopotamus meryta mes mesa mesabite mesaconate mesaconic mesad mesadenia mesail mesails mesal mesalike mesalliance mesalliances mesally mesameboid mesange mesantoin mesaortitis mesaraic mesaraical mesarch mesarteritic mesarteritis mesas mesaticephal mesaticephali mesaticephalic mesaticephalies mesaticephalism mesaticephalous mesaticephaly mesatipellic mesatipelvic mesatiskelic mesaxonic mescal mescalin mescaline mescalines mescalins mescalism mescalisms mescals meschant meschantly mescla mesclas mesclum mesclums mesclun mescluns mesdames mesdemoiselles mese mesectoderm meseemed meseemeth meseems mesel mesela meseled meseledness meselry mesels mesely mesem mesembrianthemum mesembrianthemums mesembryanthemum mesembryanthemums mesembryo mesembryonic mesencephala mesencephalic mesencephalon mesencephalons mesenchyma mesenchymal mesenchymatal mesenchymatic mesenchymatous mesenchyme mesenchymes mesendoderm mesenna mesentera mesenterial mesenteric mesenterical mesenterically mesenteries mesenteriform mesenteriolum mesenteritic mesenteritis mesenteritises mesenterium mesenteron mesenteronic mesenterons mesentery mesentoderm mesepimeral mesepimeron mesepisternal mesepisternum mesepithelial mesepithelium meseraic meses meseta mesetas mesethmoid mesethmoidal mesh meshed meshes meshier meshiest meshing meshings meshrabiyeh meshrebeeyeh meshuga meshugaas meshugaasen meshugah meshugana meshugga meshuggaas meshuggah meshuggana meshugge meshuggenah meshuggenahs meshuggeneh meshuggenehs meshuggener meshuggeners meshummad meshwork meshworks meshy mesiad mesial mesially mesian mesic mesically mesilla mesiobuccal mesiocervical mesioclusion mesiodistal mesiodistally mesiogingival mesioincisal mesiolabial mesiolingual mesion mesioocclusal mesiopulpal mesioversion mesitine mesitite mesityl mesitylene mesitylenes mesitylenic mesivta mesked meslen mesmerian mesmeric mesmerical mesmerically mesmerisability mesmerisable mesmerisation mesmerisations mesmerise mesmerised mesmeriser mesmerisers mesmerises mesmerising mesmerism mesmerisms mesmerist mesmerists mesmerite mesmerizability mesmerizable mesmerization mesmerizations mesmerize mesmerized mesmerizee mesmerizer mesmerizers mesmerizes mesmerizing mesmerizingly mesmeromania mesmeromaniac mesnage mesnality mesnalties mesnalty mesne mesnes meso mesoamerican mesoappendiceal mesoappendicitis mesoappendix mesoarial mesoarium mesobar mesobenthos mesoblast mesoblastem mesoblastema mesoblastemic mesoblastic mesoblasts mesobranchial mesobregmate mesocadia mesocaecal mesocaecum mesocardia mesocardium mesocarp mesocarpic mesocarps mesocentrous mesocephal mesocephalic mesocephalies mesocephalism mesocephalisms mesocephalon mesocephalous mesocephaly mesochilium mesochondrium mesochroic mesocoele mesocoelia mesocoelian mesocoelic mesocola mesocolic mesocolon mesocolons mesocoracoid mesocranial mesocranic mesocratic mesocricetus mesocuneiform mesocyclone mesocyclones mesode mesoderm mesodermal mesodermic mesoderms mesodic mesodisilicic mesodont mesodontic mesodontism mesofurca mesofurcal mesogaster mesogastral mesogastria mesogastric mesogastrium mesoglea mesogleal mesogleas mesogloea mesogloeal mesogloeas mesognathic mesognathion mesognathism mesognathous mesognathy mesogyrate mesohepar mesohippus mesohippuses mesokurtic mesolabe mesole mesolecithal mesolimnion mesolite mesolites mesolithic mesologic mesological mesology mesomere mesomeres mesomeric mesomerism mesomerisms mesometeorological mesometeorology mesometral mesometric mesometrium mesomitosis mesomorph mesomorphic mesomorphies mesomorphism mesomorphisms mesomorphous mesomorphs mesomorphy mesomyodian mesomyodous meson mesonasal mesonephric mesonephridium mesonephritic mesonephroi mesonephros mesonic mesonotal mesonotum mesons mesoparapteral mesoparapteron mesopause mesopauses mesopeak mesopectus mesopelagic mesoperiodic mesopetalum mesophil mesophile mesophilic mesophilous mesophragm mesophragma mesophragmal mesophryon mesophyl mesophyll mesophyllic mesophyllous mesophylls mesophyllum mesophyls mesophyte mesophytes mesophytic mesophytism mesopic mesoplankton mesoplanktonic mesoplast mesoplastic mesoplastra mesoplastral mesoplastron mesopleura mesopleural mesopleuron mesoplodont mesopodia mesopodial mesopodiale mesopodialia mesopodium mesopotamia mesopotamian mesopotamic mesoprescutal mesoprescutum mesoprosopic mesopterygial mesopterygium mesopterygoid mesorchial mesorchium mesorecta mesorectal mesorectta mesorectum mesorectums mesorhin mesorhinal mesorhine mesorhinian mesorhinism mesorhinium mesorhiny mesorrhin mesorrhinal mesorrhine mesorrhinian mesorrhinism mesorrhinium mesorrhiny mesosalpinx mesosaur mesoscale mesoscaphe mesoscaphes mesoscapula mesoscapular mesoscutal mesoscutellar mesoscutellum mesoscutum mesoseismal mesoseme mesosiderite mesosigmoid mesoskelic mesosoma mesosomata mesosomatic mesosome mesosomes mesosperm mesosphere mesospheres mesospheric mesospore mesosporic mesosporium mesost mesostasis mesosterna mesosternal mesosternebra mesosternebral mesosternum mesostethium mesostomid mesostyle mesostylous mesosuchian mesotarsal mesotartaric mesothelia mesothelial mesothelioma mesotheliomas mesotheliomata mesothelium mesotherm mesothermal mesothesis mesothet mesothetic mesothetical mesothoraces mesothoracic mesothoracotheca mesothorax mesothoraxes mesothorium mesothoriums mesotonic mesotroch mesotrocha mesotrochal mesotrochous mesotron mesotronic mesotrons mesotrophic mesotropic mesotympanic mesotype mesovaria mesovarian mesovarium mesoventral mesoventrally mesoxalate mesoxalic mesoxalyl mesozoa mesozoan mesozoans mesozoic mespil mespilus mesprise mesprises mesprize mesprizes mesquin mesquine mesquinerie mesquita mesquite mesquites mess message messaged messageer messagery messages messaging messagings messalian messaline messalines messan messans messe messed messeigneurs messelite messenger messengered messengering messengers messengership messer messes messet messiah messiahs messiahship messiahships messianic messianically messianism messianisms messias messiases messidor messier messiest messieurs messily messin messina messiness messinesses messing messire messkit messman messmate messmates messmen messor messroom messrs messtin messuage messuages messy mest mestee mestees mesteno mester mesteso mestesoes mestesos mestfull mestino mestinoes mestinos mestiza mestizas mestizo mestizoes mestizos mestlen mesto mestome mestranol mestranols mesua mesymnion met meta metabases metabasis metabasite metabatic metabiological metabiology metabiosis metabiotic metabiotically metabismuthic metabisulphite metabit metabits metabletic metabola metabole metabolian metabolic metabolical metabolically metabolisable metabolise metabolised metabolises metabolising metabolism metabolisms metabolite metabolites metabolizability metabolizable metabolize metabolized metabolizes metabolizing metabolon metabolous metaboly metaborate metaboric metabranchial metabrushite metabular metacapi metacarpal metacarpale metacarpally metacarpals metacarpi metacarpophalangeal metacarpus metacarpuses metacenter metacenters metacentral metacentre metacentres metacentric metacentricities metacentricity metacentrics metacercaria metacercariae metacercarial metacetone metachemic metachemical metachemistry metachlamydeous metachromasis metachromatic metachromatin metachromatinic metachromatism metachromatisms metachrome metachronal metachronism metachronisms metachronistic metachroses metachrosis metacinnabar metacinnabarite metacircular metacircularity metacism metacismus metaclase metacneme metacoele metacoelia metaconal metacone metaconid metaconule metacoracoid metacrasis metacresol metacromial metacromion metacryst metacyclic metacymene metad metadiabase metadiazine metadiorite metadiscoidal metadromous metae metaethical metaethics metafemale metafiction metafictional metafictionist metafictionists metafictions metafluidal metaformaldehyde metafulminuric metagalactic metagalaxies metagalaxy metagaster metagastric metagastrula metage metagelatin metagelatine metageneses metagenesis metagenetic metagenetically metagenic metageometer metageometrical metageometry metages metagnath metagnathism metagnathisms metagnathous metagnomy metagnostic metagnosticism metagrabolise metagrabolised metagrabolises metagrabolising metagrabolize metagrabolized metagrabolizes metagrabolizing metagram metagrammatism metagrammatize metagraphic metagraphy metagrobolise metagrobolised metagrobolises metagrobolising metagrobolize metagrobolized metagrobolizes metagrobolizing metahewettite metahydroxide metaigneous metainfective metairie metairies metakinesis metakinetic metaknowledge metal metalammonium metalanguage metalanguages metalaw metalbearing metalbumin metalcraft metaldehyde metaldehydes metaled metalepses metalepsis metaleptic metaleptical metaleptically metaler metalhead metalheads metaline metalined metaling metalinguistic metalinguistically metalinguistics metalise metalised metalises metalising metalism metalist metalists metalization metalizations metalize metalized metalizes metalizing metall metallary metalled metalleity metaller metallic metallical metallically metallicity metallicize metallicly metallics metallide metalliding metallidings metallifacture metalliferous metallification metalliform metallify metallik metallike metalline metalling metallings metallisation metallisations metallise metallised metallises metallish metallising metallism metallist metallists metallization metallizations metallize metallized metallizes metallizing metallocene metallochrome metallochromy metalloenzyme metallogenetic metallogenic metallogenies metallogeny metallograph metallographer metallographers metallographic metallographical metallographically metallographies metallographist metallographists metallography metalloid metalloidal metalloids metallometer metallophobia metallophone metallophones metalloplastic metallorganic metallotherapeutic metallotherapy metallurgic metallurgical metallurgically metallurgies metallurgist metallurgists metallurgy metally metalmark metalmarks metalmonger metalogic metalogical metaloph metalorganic metaloscope metaloscopy metals metalsmith metalsmiths metaluminate metaluminic metalware metalwares metalwork metalworker metalworkers metalworking metalworkings metalworks metamale metamales metamathematical metamathematician metamathematicians metamathematics metamer metameral metamere metameres metameric metamerically metameride metamerisation metamerised metamerism metamerisms metamerization metamerize metamerized metamerous metamers metamery metamitosis metamorphic metamorphically metamorphism metamorphisms metamorphist metamorphists metamorphize metamorphopsia metamorphopsy metamorphosable metamorphose metamorphosed metamorphoser metamorphoses metamorphosian metamorphosic metamorphosical metamorphosing metamorphosis metamorphostical metamorphosy metamorphotic metamorphous metamorphy metanalyses metanalysis metanauplius metanephric metanephritic metanephroi metanephron metanephros metanepionic metanetwork metanilic metaniline metanitroaniline metanitrophenol metanoia metanoias metanomen metanotal metanotion metanotions metanotum metantimonate metantimonic metantimonious metantimonite metantimonous metanym metaorganism metaparapteral metaparapteron metapectic metapectus metapelet metapepsis metapeptone metaperiodic metaph metaphase metaphases metaphenomenal metaphenomenon metaphenylene metaphenylenediamin metaphenylenediamine metaphloem metaphonical metaphonise metaphonize metaphony metaphor metaphoric metaphorical metaphorically metaphoricalness metaphorise metaphorist metaphorists metaphorize metaphors metaphosphate metaphosphated metaphosphates metaphosphating metaphosphoric metaphosphorous metaphragm metaphragma metaphragmal metaphrase metaphrased metaphrases metaphrasing metaphrasis metaphrast metaphrastic metaphrastical metaphrastically metaphrasts metaphys metaphyseal metaphysic metaphysical metaphysically metaphysician metaphysicianism metaphysicians metaphysicise metaphysicist metaphysicize metaphysicous metaphysics metaphysis metaphyte metaphytic metaphyton metaplases metaplasia metaplasias metaplasis metaplasm metaplasmic metaplasms metaplast metaplastic metapleur metapleura metapleural metapleure metapleuron metaplot metaplumbate metaplumbic metapneumonic metapneustic metapodia metapodial metapodiale metapodium metapolitic metapolitical metapolitician metapolitics metapophyseal metapophysial metapophysis metapore metapostscutellar metapostscutellum metaprescutal metaprescutum metaprotein metaproteins metaproterenol metapsychic metapsychical metapsychics metapsychism metapsychist metapsychological metapsychologies metapsychology metapsychosis metapterygial metapterygium metapterygoid metarabic metargon metarhyolite metarossite metarsenic metarsenious metarsenite metarule metarules metas metasaccharinic metascope metascutal metascutellar metascutellum metascutum metasedimentary metasequoia metasequoias metasilicate metasilicates metasilicic metasoma metasomal metasomasis metasomatic metasomatically metasomatism metasomatisms metasomatoses metasomatosis metasome metasperm metaspermic metaspermous metastabilities metastability metastable metastably metastannate metastannic metastases metastasis metastasise metastasised metastasises metastasising metastasize metastasized metastasizes metastasizing metastatic metastatical metastatically metasternal metasternum metasthenic metastibnite metastigmate metastoma metastomata metastome metastrophe metastrophic metastyle metasymbol metasyntactic metatantalic metatarsal metatarsale metatarsally metatarsals metatarse metatarsi metatarsophalangeal metatarsus metatarsuses metatarsusi metatatic metatatical metatatically metataxic metataxis metate metates metathalamus metatheology metatheory metatheria metatherian metatheses metathesis metathesise metathesised metathesises metathesising metathesize metathesized metathesizes metathesizing metathetic metathetical metathetically metathoraces metathoracic metathorax metathoraxes metatitanate metatitanic metatoluic metatoluidine metatracheal metatroph metatrophic metatrophy metatungstic metatype metatypic metavanadate metavanadic metavariable metavauxite metavoltine metaxenia metaxite metaxylem metaxylems metaxylene metayage metayages metayer metayers metazoa metazoal metazoan metazoans metazoea metazoic metazoon metazoons metcast metcasts mete metecorn meted metegritics metel metely metempiric metempirical metempirically metempiricism metempiricisms metempiricist metempiricists metempirics metempsychic metempsychosal metempsychose metempsychoses metempsychosic metempsychosical metempsychosis metempsychosist metempsychosize metempsychotic metempsychotically metemptosis metencephala metencephalic metencephalla metencephalon metencephalons metensarcosis metensomatosis metenteron metenteronic meteogram meteograph meteor meteorgraph meteoric meteorical meteorically meteoris meteorisation meteorise meteorism meteorisms meteorist meteoristic meteorists meteorital meteorite meteorites meteoritic meteoritical meteoriticist meteoriticists meteoritics meteorization meteorize meteorlike meteorogram meteorograms meteorograph meteorographic meteorographs meteorography meteoroid meteoroidal meteoroids meteorol meteorolite meteorolites meteorolitic meteorologic meteorological meteorologically meteorologies meteorologist meteorologists meteorology meteoromancy meteorometer meteoropathologic meteoroscope meteoroscopy meteorous meteors meteorscope meteortropism metepa metepas metepencephalic metepencephalon metepimeral metepimeron metepisternal metepisternum meter meterable meterage meterages metered metergram metering meterless meterman meterological meters metership meterstick metersticks metes metestick metesticks metestrus metestruses metewand metewands meteyard meteyards meth methacholine methacrylate methacrylates methacrylic methadon methadone methadones methadons methaemoglobin methamphetamine methamphetamines methanal methanals methanate methanated methanating methanation methanations methane methanes methanogen methanogenic methanogens methanoic methanol methanolic methanols methanolysis methanometer methanometers methantheline methapyrilene methaqualone methaqualones metharbital methedrine methedrines metheglin metheglins methemoglobin methemoglobinemia methemoglobinemias methemoglobins methemoglobinuria methenamine methenamines methene methenyl mether methhead methicillin methicillins methid methide methine methink methinketh methinks methiodide methionic methionine methionines metho methobromide methocarbamol method methodaster methodeutic methodic methodical methodically methodicalness methodicalnesses methodics methodisation methodisations methodise methodised methodiser methodisers methodises methodising methodism methodisms methodist methodistic methodistical methodistically methodists methodization methodizations methodize methodized methodizer methodizers methodizes methodizing methodless methodological methodologically methodologies methodologist methodologists methodology methods methol methomania methomanias methone methos methotrexate methotrexates methought methoxamine methoxide methoxides methoxy methoxybenzene methoxychlor methoxychlors methoxyflurane methoxyfluranes methoxyl methronic meths methuselah methuselahs methyl methylacetanilide methylal methylals methylamine methylamines methylamphetamine methylamphetamines methylaniline methylanthracene methylase methylases methylate methylated methylates methylating methylation methylations methylator methylators methylbenzene methylbenzenes methylcatechol methylcellulose methylcelluloses methylcholanthrene methylcholanthrenes methyldopa methyldopas methylene methylenedioxymethamphetamine methylenes methylenimine methylenitan methylethylacetic methylglycine methylglycocoll methylglyoxal methylheptenone methylic methylidyne methylmalonic methylmercuries methylmercury methylnaphthalene methylnaphthalenes methylol methylolurea methylosis methylotic methylparaben methylpentose methylpentoses methylphenidate methylphenidates methylprednisolone methylprednisolones methylpropane methyls methylsulfanol methyltestosterone methyltestosterones methyltrinitrobenzene methylxanthine methylxanthines methyprylon methysergide methysergides methyses methysis methystic metic meticais metical meticals metics meticulosities meticulosity meticulous meticulously meticulousness meticulousnesses metier metiers metif metifs meting metis metisse metisses metochous metochy metoestrous metoestrum metoestrus metol metols metonic metonym metonymic metonymical metonymically metonymies metonymous metonymously metonyms metonymy metoo metoos metopae metope metopes metopic metopion metopism metopisms metopomancy metopon metopons metoposcopic metoposcopical metoposcopies metoposcopist metoposcopists metoposcopy metoprolol metopryl metopryls metorganism metosteal metosteon metostylous metoxazine metoxenous metoxeny metra metralgia metralgias metran metranate metranemia metratonia metrazol metre metrectasia metrectatic metrectomy metrectopia metrectopic metrectopy metrectotmy metregram metreless metreme metres metreship metreta metrete metretes metreza metria metric metrical metrically metricate metricated metricates metricating metrication metrications metrician metricians metricise metricised metricises metricising metricism metricist metricists metricity metricize metricized metricizes metricizing metrics metridium metrification metrifications metrified metrifier metrifiers metrifies metrify metrifying metriocephalic metrise metrist metrists metritis metritises metrizable metrization metrize metrized metrizing metro metrocampsis metrocarat metrocarcinoma metrocele metroclyst metrocolpocele metrocracy metrocratic metrocystosis metrodynia metrofibroma metrography metroliner metroliners metrologic metrological metrologically metrologies metrologist metrologists metrologue metrology metrolymphangitis metromalacia metromalacoma metromalacosis metromania metromaniac metromaniacal metromanias metrometer metron metroneuria metronidazole metronidazoles metronome metronomes metronomic metronomical metronomically metronym metronymic metronymics metronymy metroparalysis metropathia metropathic metropathy metroperitonitis metrophlebitis metrophotography metroplex metroplexes metropole metropoleis metropolic metropolis metropolises metropolitan metropolitanate metropolitanates metropolitancy metropolitanisation metropolitanise metropolitanised metropolitanises metropolitanising metropolitanism metropolitanisms metropolitanization metropolitanizations metropolitanize metropolitanized metropolitanizes metropolitanizing metropolitans metropolitanship metropolite metropolitic metropolitical metropolitically metroptosia metroptosis metroradioscope metrorrhagia metrorrhagias metrorrhagic metrorrhea metrorrhexis metrorthosis metros metrosalpingitis metrosalpinx metroscirrhus metroscope metroscopy metrostaxis metrostenosis metrosteresis metrostyle metrostyles metrosynizesis metrotherapist metrotherapy metrotome metrotometry metrotomy metroxylon mets mettar mettle mettled mettles mettlesome mettlesomely mettlesomeness mettlesomenesses metump metumps metus metusia metwand metycaine metze meu meubles meum meuni meuniare meuniere meunière meurtriere meus meuse meused meuses meusing meute mevacor meve meved meves meving mew meward mewed mewer mewers mewing mewl mewled mewler mewlers mewling mewls mews mewsed mewses mewsing mexical mexican mexicans mexico mexiletine mexitil meyerhofferite meynt mezail mezails mezair mezcal mezcaline mezcals meze mezentian mezereon mezereons mezereum mezereums mezes mezo mezquit mezquite mezquites mezquits mezuza mezuzah mezuzahs mezuzas mezuzot mezuzoth mezzanine mezzanines mezzavoce mezze mezzes mezzo mezzograph mezzolith mezzolithic mezzos mezzotint mezzotinted mezzotinter mezzotinting mezzotinto mezzotintos mezzotints mf mfa mfd mfg mflops mfr mfrs mg mgal mganga mgangas mgd mgr mgt mh mhg mho mhometer mhorr mhorrs mhos mhz mi mia miacis miae miami miamia mian miaou miaoued miaouing miaous miaow miaowed miaower miaowing miaows miargyrite miarolitic mias miascite miaskite miasm miasma miasmal miasmas miasmata miasmatic miasmatical miasmatically miasmatize miasmatology miasmatous miasmic miasmically miasmology miasmous miasms miauer miaul miauled miauler miauling miauls miauw miazine mib mibound mibs mic mica micaceous micacious micacite micah micas micasization micasize micast micasting micasts micate micated micates micating mication micawber micawberism micawbers mice micell micella micellae micellar micellarly micellas micelle micelles micells miceplot micerun micesource michael michaelmas michaelmastide miche miched michelangelesque michelangelo micher michers michery miches michigan michigander miching michings micht mick mickery mickey mickeyed mickeying mickeys mickies mickle micklemote mickleness mickler mickles micklest micks micky micmac mico miconcave micos micra micraco micracoustic micraesthete micramock micranatomy micrander micrandrous micraner micranthropos micrencephalia micrencephalic micrencephalous micrencephalus micrencephaly micrergate micresthete micrified micrifies micrify micrifying micro microaerophile microaerophilic microammeter microampere microamperes microanalyses microanalysis microanalyst microanalysts microanalytic microanalytical microanatomical microanatomies microanatomy microangstrom microapparatus microarchitects microarchitecture microarchitectures microbacteria microbacterium microbacteteria microbal microbalance microbalances microbar microbarogram microbarograph microbarographs microbars microbat microbattery microbe microbeam microbeams microbeless microbeproof microbes microbial microbian microbic microbicidal microbicide microbiologic microbiological microbiologically microbiologies microbiologist microbiologists microbiology microbion microbiophobia microbiosis microbiota microbiotic microbious microbism microbium microblast microblepharia microblepharism microblephary microbody microbrachia microbrachius microbrew microbrewer microbreweries microbrewers microbrewery microbrewing microbrewings microbrews microburet microburette microburner microburst microbursts microbus microbuses microbusses microcalorimeter microcalorimeters microcalorimetric microcalorimetries microcalorimetry microcaltrop microcamera microcap microcaps microcapsule microcapsules microcar microcard microcardia microcardius microcards microcarpous microcars microcassette microcassettes microcellular microcentrosome microcentrum microcephal microcephali microcephalia microcephalic microcephalics microcephalies microcephalism microcephalous microcephals microcephalus microcephaly microceratous microchaeta microchaetae microcharacter microcheilia microcheiria microchemic microchemical microchemically microchemist microchemistries microchemistry microchemists microchip microchips microchiria microchiroptera microchiropteran microchiropterous microchromosome microchronometer microcinema microcinematograph microcinematographic microcinematography microcircuit microcircuitries microcircuitry microcircuits microcirculation microcirculations microcirculatory microclastic microclimate microclimates microclimatic microclimatically microclimatologic microclimatological microclimatologies microclimatologist microclimatologists microclimatology microcline microclines microcnemia microcoat micrococcaceae micrococcal micrococci micrococcic micrococcocci micrococcus microcode microcoded microcodes microcoding microcoleoptera microcolon microcolorimeter microcolorimetric microcolorimetrically microcolorimetry microcolourimeter microcolourimetric microcolourimetrically microcolourimetry microcolumnar microcombustion microcomponent microcomponents microcomputer microcomputers microcomputing microcomputings microconidial microconidium microconjugant microconstituent microcopied microcopies microcopy microcopying microcopyings microcoria microcos microcosm microcosmal microcosmian microcosmic microcosmical microcosmically microcosmographies microcosmography microcosmology microcosmos microcosmoses microcosms microcosmus microcoulomb microcrack microcracked microcracking microcrackings microcracks microcranous microcrith microcryptocrystalline microcrystal microcrystalline microcrystallinities microcrystallinity microcrystallogeny microcrystallography microcrystalloscopy microcrystals microcultural microculture microcultures microcurie microcuries microcycle microcycles microcyst microcyte microcytes microcythemia microcytic microcytosis microdactylia microdactylism microdactylous microdensitometer microdensitometers microdensitometric microdensitometries microdensitometry microdentism microdentous microdesmidae microdetection microdetections microdetector microdetectors microdetermination microdiactine microdimensions microdipodops microdissection microdissections microdistillation microdont microdontia microdontic microdontism microdontisms microdontous microdonty microdose microdot microdots microdrawing microdrive microdrives microdyne microearthquake microearthquakes microeconomic microeconomics microelectrode microelectrodes microelectrolysis microelectronic microelectronically microelectronics microelectrophoreses microelectrophoresis microelectrophoretic microelectrophoretical microelectrophoretically microelectroscope microelement microelements microencapsulate microencapsulated microencapsulates microencapsulating microencapsulation microencapsulations microengineering microengineerings microenvironment microenvironmental microenvironments microerg microestimation microeutaxitic microevolution microevolutionary microevolutions microexamination microfarad microfarads microfauna microfaunae microfaunal microfaunas microfelsite microfelsitic microfiber microfibers microfibre microfibres microfibril microfibrillar microfibrils microfiche microfiches microfilament microfilamentous microfilaments microfilaria microfilariae microfilarial microfilarias microfiling microfilings microfilm microfilmable microfilmed microfilmer microfilmers microfilming microfilms microfloppies microfloppieses microfloppy microflora microflorae microfloral microfloras microfluidal microfoliation microform microforms microfossil microfossils microfungal microfungi microfungus microfunguses microfurnace microgalvanometer microgamete microgametes microgametocyte microgametocytes microgametophyte microgamies microgamy microgastria microgastrine microgauss microgeological microgeologist microgeology microgilbert microglia microgliacyte microglial microglossia micrognathia micrognathic micrognathous microgonidial microgonidium microgram microgramma microgramme microgrammes microgramming micrograms microgranite microgranites microgranitic microgranitoid microgranular microgranulitic micrograph micrographed micrographer micrographers micrographic micrographical micrographically micrographics micrographies micrographing micrographist micrographs micrography micrograver microgravimetric microgravities microgravity microgroove microgrooves microgyne microgyria microhabitat microhabitats microhardness microhenries microhenry microhenrys microhepatia microhistochemical microhistology microhm microhmmeter microhms microhydrodynamics microhylidae microhymenopteron microimage microimages microinch microinches microinject microinjected microinjecting microinjection microinjections microinjects microinstruction microinstructions microjoule microjump microjumps microlambert microlecithal microlepidopter microlepidoptera microlepidopteran microlepidopterist microlepidopteron microlepidopterous microleukoblast microlevel microlight microlighting microlightings microlights microlite microliter microliters microlites microlith microlithic microliths microlitic microlitre microlitres micrologic micrological micrologically micrologies micrologist micrologists micrologue micrology microluces microlux microluxes micromanage micromanaged micromanagement micromanagements micromanager micromanagers micromanages micromanaging micromania micromaniac micromanipulation micromanipulations micromanipulative micromanipulator micromanipulators micromanometer micromarketing micromazia micromeasurement micromechanics micromeli micromelia micromelic micromelus micromembrane micromeral micromere micromeres micromeria micromeric micromerism micromeritic micromeritics micromesentery micromesh micromeshes micrometallographer micrometallography micrometallurgy micrometeoric micrometeorite micrometeorites micrometeoritic micrometeorogram micrometeorograph micrometeoroid micrometeoroids micrometeorological micrometeorologies micrometeorologist micrometeorologists micrometeorology micrometer micrometers micromethod micromethods micrometre micrometres micrometric micrometrical micrometrically micrometries micrometry micromho micromhos micromicrocurie micromicrocuries micromicrofarad micromicrofarads micromicron micromil micromillimeter micromillimeters micromillimetre micromillimetres micromineralogical micromineralogy micromini microminiature microminiatures microminiaturisation microminiaturisations microminiaturise microminiaturised microminiaturises microminiaturising microminiaturization microminiaturizations microminiaturize microminiaturized microminiaturizes microminiaturizing microminis micromodule micromolar micromole micromoles micromorph micromorphologic micromorphological micromorphologically micromorphologies micromorphology micromotion micromotoscope micromyelia micromyeloblast micromyx micron micronase microneedle microneedles micronemous micronesia micronesian micronesians micronisation micronise micronises micronization micronize micronized micronizes micronizing micronometer microns micronuclear micronucleate micronuclei micronucleus micronucleuses micronutrient micronutrients microoperations microorganic microorganism microorganismal microorganisms micropalaeontologies micropalaeontologist micropalaeontologists micropalaeontology micropaleontologic micropaleontological micropaleontologies micropaleontologist micropaleontologists micropaleontology micropantograph microparasite microparasites microparasitic microparticle microparticles micropathological micropathologies micropathologist micropathology micropegmatite micropegmatites micropegmatitic micropenis microperthite microperthitic micropetalous micropetrography micropetrologist micropetrology microphage microphages microphagocyte microphagous microphagy microphakia microphallus microphobia microphone microphones microphonic microphonics microphoning microphonism microphonograph microphot microphotograph microphotographed microphotographer microphotographers microphotographic microphotographies microphotographing microphotographs microphotography microphotometer microphotometers microphotometric microphotometrically microphotometries microphotometry microphotoscope microphthalmia microphthalmic microphthalmos microphthalmus microphyll microphyllous microphylls microphysical microphysically microphysicist microphysicists microphysics microphysiography microphytal microphyte microphytes microphytic microphytology micropia micropin micropipet micropipets micropipette micropipettes microplakite microplankton microplanktons microplastocyte microplastometer micropodal micropodia micropodous micropoecilitic micropogonias micropoicilitic micropoikilitic micropolarisation micropolariscope micropolarization micropolis micropolises micropopulation micropore micropores microporosities microporosity microporous microporphyritic microprint microprinted microprinting microprintings microprints microprism microprisms microprobe microprobes microprocedure microprocedures microprocessing microprocessings microprocessor microprocessors microprogram microprogrammable microprogrammed microprogrammer microprogramming microprogrammings microprograms microprojection microprojections microprojector microprojectors micropropagation micropropagations micropsia micropsias micropsy micropterism micropterous micropterus micropterygid micropterygious microptic micropublisher micropublishers micropublishing micropublishings micropulsation micropulsations micropump micropumps micropuncture micropunctures micropylar micropyle micropyles micropyrometer microquake microquakes microradian microradiograph microradiographic microradiographical microradiographically microradiographies microradiographs microradiography microradiometer microreaction microreader microreaders microrefractometer microreproduction microreproductions microrhabdus microrheometer microrheometric microrheometrical micros microsaurian microscale microscales microsclere microsclerous microsclerum microscopal microscope microscopes microscopial microscopic microscopical microscopically microscopics microscopies microscopise microscopist microscopists microscopize microscopopy microscopy microsec microsecond microseconds microsection microsegment microseism microseismic microseismical microseismicities microseismicity microseismograph microseismographs microseismology microseismometer microseismometers microseismometries microseismometrograph microseismometry microseisms microseme microseptum microsiemens microskirt microskirts microsmatic microsmatism microsoftware microsoma microsomal microsomatous microsome microsomes microsomia microsomial microsomic microsommite microsorium microspace microspacing microspecies microspectrophotometer microspectrophotometers microspectrophotometric microspectrophotometrical microspectrophotometrically microspectrophotometries microspectrophotometry microspectroscope microspectroscopic microspectroscopy microspermous microsphaeric microsphere microspheres microspheric microspherical microspherulitic microsplanchnic microsplenia microsplenic microsporange microsporanggia microsporangia microsporangiate microsporangium microspore microspores microsporiasis microsporic microsporidian microsporocyte microsporocytes microsporogeneses microsporogenesis microsporophore microsporophyll microsporophylls microsporosis microsporous microsporum microstat microstate microstates microstethoscope microsthene microsthenic microstomatous microstome microstomia microstomous microstomus microstore microstress microstrobos microstructural microstructure microstructures microstylospore microstylous microsublimation microsurgeon microsurgeons microsurgeries microsurgery microsurgical microswitch microswitches microsystems microtasimeter microteaching microteachings microtechnic microtechnics microtechnique microtechniques microtechnologies microtechnology microtektite microtelephone microtelephonic microtheos microtherm microthermic microthorax microtia microtine microtines microtitration microtome microtomes microtomic microtomical microtomies microtomist microtomists microtomy microtonal microtonalities microtonality microtonally microtone microtones microtubular microtubule microtubules microtunneling microtunnelling microtunnellings microtus microtypal microtype microtypical microvascular microvasculature microvasculatures microvax microvaxes microvillar microvilli microvillous microvillus microvolt microvolts microvolume microvolumetric microwatt microwatts microwavable microwave microwaveable microwaved microwaves microwaving microweber microwire microwires microword microwords microworld microworlds microwriter microwriters microzoa microzoal microzoan microzoaria microzoarian microzoary microzoic microzone microzooid microzoology microzoon microzoospore microzyma microzyme microzymian micrurgic micrurgical micrurgies micrurgist micrurgy micruroides micrurus mics micteria miction mictions micturate micturated micturates micturating micturation micturition micturitions mid midafternoon midafternoons midair midairs midas midautumn midaxillary midband midbody midbrain midbrains midcarpal midchannel midcourse midcourses midcult midcults midday middays midden middens middenstead middensteads middes middest middies middle middlebreaker middlebreakers middlebrow middlebrowism middlebrows middlebuster middlebusters middleclass middled middlehand middleland middleman middlemanism middlemanship middlemen middlemost middleness middler middlers middles middlesail middlesex middlesplitter middletone middlewards middleway middleweight middleweights middlewoman middlewomen middling middlingish middlingly middlingness middlings middorsal middy mide mideast midevening midewin midewiwin midfacial midfield midfielder midfielders midfields midforenoon midfrontal midgard midge midges midget midgets midgety midgrass midgut midguts midgy midheaven midi midianite midicoat midified midinette midinettes midiron midirons midis midiskirt midland midlands midlandward midlatitude midlatitudes midleg midlegs midlenting midlevel midlevels midlife midlifer midlifers midline midlines midlittoral midlittorals midlives midmain midmandibular midmonth midmonthly midmonths midmorn midmorning midmornings midmost midmosts midn midnight midnightly midnights midnoon midnoons midocean midparent midparentage midparental midpit midplane midpoint midpoints midrange midranges midrash midrashic midrashim midrashot midrashoth midrib midribbed midribs midriff midriffs mids midsagittal midscale midseason midsection midsections midsemester midsentence midship midshipman midshipmanship midshipmate midshipmates midshipmen midshipmite midships midsize midsized midsole midsoles midspace midspaces midspan midst midstead midstories midstory midstout midstream midstreams midstreet midstroke midsts midstyled midsummer midsummerish midsummers midsummery midtap midtarsal midterm midterms midtown midtowns midvein midventral midverse midward midwatch midwatches midway midways midweek midweekly midweeks midwest midwestern midwesterner midwesterners midwestward midwicket midwife midwifed midwiferies midwifery midwifes midwifing midwinter midwinterly midwinters midwintry midwise midwive midwived midwives midwiving midyear midyears mielie mielies mien miens mierkat miersite mieve mieved mieves mieving mifepristone mifepristones miff miffed miffier miffiest miffily miffiness miffinesses miffing miffs miffy mifty mig migale migg miggle miggles miggs might mighted mightest mightful mightfully mightfulness mightier mightiest mightily mightiness mightinesses mightless mightly mightnt mights mightst mighty mightyhearted mightyship miglio migmatite migniard migniardise migniardize mignon mignonette mignonettes mignonne mignonness mignons migraine migraines migraineur migraineurs migrainoid migrainous migrans migrant migrants migratation migratational migratations migrate migrated migrates migrating migration migrational migrationist migrationists migrations migrative migrator migratorial migrators migratory migs miharaite mihrab mihrabs mijakite mijl mijnheer mijnheerl mijnheers mikado mikadoate mikadoism mikados mikania mike miked mikes mikie miking mikra mikrkra mikron mikrons mikva mikvah mikvahs mikve mikveh mikvehs mikves mikvos mikvot mikvoth mil mila milacre miladi miladies miladis milady milage milages milammeter milan milanaise milanese milano milarite milch milched milcher milchig milchigs milchy mild milded milden mildened mildening mildens milder mildest mildew mildewed mildewer mildewing mildewproof mildews mildewy mildful mildfulness mildhearted mildheartedness milding mildish mildly mildness mildnesses mildred milds mile mileage mileages milepost mileposts miler milers miles milesian milesima milesimo milesimos milestone milestones mileway milfoil milfoils milha milia miliaceous miliarenses miliarensis miliaria miliarial miliarias miliarium miliary milice milieu milieus milieux miliola milioliform milioline miliolite miliolitic milit militaire militance militances militancies militancy militant militantly militantness militantnesses militants militar militaria militaries militarily militariness militarinesses militarisation militarisations militarise militarised militarises militarising militarism militarisms militarist militaristic militaristical militaristically militarists militarization militarizations militarize militarized militarizes militarizing military militaryism militaryment militaster militate militated militates militating militation militia militiaman militiamen militias militiate milium miljee milk milkbush milkcap milked milken milker milkeress milkers milkfish milkfishes milkgrass milkhouse milkier milkiest milkily milkiness milkinesses milking milkings milkless milklike milkmaid milkmaids milkman milkmen milkness milko milkos milks milkshake milkshakes milkshed milksheds milkshop milksick milksop milksopism milksoppery milksoppiness milksopping milksoppish milksoppishness milksoppy milksops milkstone milktoast milkvetch milkwagon milkweed milkweeds milkwood milkwoods milkwort milkworts milky mill milla millable millage millages millanare millard millboard millboards millcake millcakes millclapper millcourse milldam milldams milldoll mille milled millefeuille millefeuilles millefiore millefiori millefioris millefleur millefleurs milleflorous millefoliate millenarian millenarianism millenarianisms millenarians millenaries millenarism millenarisms millenarist millenary millenia millenist millenium millennia millennial millennialism millennialisms millennialist millennialistic millennialists millennially millennian millennianism millennianisms millenniarism millenniarisms millenniary millennium millenniums milleped millepede millepedes millepeds millepore millepores milleporiform milleporine milleporite milleporous millepunctate miller milleress milleri millering millerite millerites millerole millers milles millesimal millesimally millesimals millet millets millettia millfeed millful millhouse milliad milliammeter milliammeters milliamp milliampere milliamperemeter milliamperes milliangstrom milliard milliardaire milliards milliare milliares milliaries milliarium milliary millibar millibarn millibars millicron millicurie millicuries millidegree millidegrees millieme milliemes milliequivalent millier milliers millifarad millifarads millifold milliform milligal milligals milligrade milligram milligramage milligramme milligrammes milligrams millihenries millihenry millihenrys millijoule millilambert millilamberts millile milliliter milliliters millilitre millilitres milliluces millilux milliluxes millime millimes millimeter millimeters millimetmhos millimetre millimetres millimetric millimho millimhos millimiccra millimicra millimicron millimicrons millimol millimolar millimole millimoles millincost milline milliner millinerial millineries millinering milliners millinery millines milling millings millinormal millinormality millioctave millioersted milliohm milliohms million millionaire millionairedom millionaires millionairess millionairesses millionairish millionairism millionary millioned millioner millionfold millionise millionism millionist millionize millionocracy millions millionth millionths milliosmol milliosmols milliped millipede millipedes millipeds milliphot millipoise milliprobe milliprobes milliradian milliradians millirem millirems milliroentgen milliroentgens millisec millisecond milliseconds millisiemens millisievert millisieverts millistere millithrum millivolt millivoltmeter millivolts milliwatt milliwatts milliweber millième millièmes millken millman millmen millnia millocracies millocracy millocrat millocratism millocrats millosevichite millowner millpond millponds millpool millpost millrace millraces millrind millrinds millrun millruns millrynd mills millscale millscales millsite millstock millstone millstones millstream millstreams milltail milltails millward millwheel millwork millworker millworks millwright millwrighting millwrights milly milneb milnebs milner milo milometer milometers milor milord milords milors milos milpa milpas milquetoast milquetoasts milreis milreises milrind mils milsey milseys milsie milt milted milter milters miltier miltiest milting miltlike miltomate milton miltonia miltonian miltonias miltonic miltonist miltown milts miltsick miltwaste milty miltz miltzes milvine milvinous milvus milwaukee milwell milzbrand mim mima mimamsa mimbar mimbars mimble mime mimed mimeo mimeoed mimeograph mimeographed mimeographic mimeographically mimeographing mimeographist mimeographs mimeography mimeoing mimeos mimer mimers mimes mimeses mimesis mimesises mimester mimesters mimetene mimetesite mimetic mimetical mimetically mimetism mimetisms mimetite mimetites mimiambi mimiambic mimiambics mimic mimical mimically mimicism mimicked mimicker mimickers mimicking mimicries mimicry mimics mimidae mimine miming miminypiminy mimir mimish mimly mimmation mimmed mimmer mimmest mimmick mimmicked mimmicking mimmicks mimming mimmock mimmocking mimmocky mimmood mimmoud mimmouthed mimmouthedness mimodrama mimographer mimographers mimographies mimography mimologist mimosa mimosaceae mimosaceous mimosas mimosis mimosite mimosoideae mimotannic mimotype mimotypic mimp mimsey mimsier mimsiest mimsy mimulus mimuluses mimus mimzy min mina minable minacious minaciously minaciousness minaciousnesses minacities minacity minae minah minar minaret minareted minarets minargent minars minas minasragrite minatnrial minatorial minatorially minatories minatorily minatory minauderie minauderies minaudiere minaudieres minaway minbar minbars minbu mince minced mincemeat mincemeats mincer mincers minces minceur minchah minchen minchery minchiate mincier minciers minciest mincing mincingly mincingness mincings mincio mincy mind mindblower mindblowers mindbogglingly minded mindedly mindedness mindednesses minden minder minders mindfuck mindfucked mindfucking mindfucks mindful mindfully mindfulness mindfulnesses minding mindings mindless mindlessly mindlessness mindlessnesses mindly mindoro minds mindscape mindscapes mindset mindsets mindsickness mindsight mine mineable mined minefield minefields minehunter minehunters minelayer minelayers minelaying mineola mineolas mineowner miner mineragraphic mineragraphy mineraiogic mineral mineralisable mineralisation mineralisations mineralise mineralised mineraliser mineralisers mineralises mineralising mineralist mineralists mineralizable mineralization mineralizations mineralize mineralized mineralizer mineralizers mineralizes mineralizing mineralocorticoid mineralocorticoids mineralogic mineralogical mineralogically mineralogies mineralogise mineralogised mineralogises mineralogising mineralogist mineralogists mineralogize mineralogized mineralogizes mineralogizing mineralogy mineraloid minerals minerological minerologies minerologist minerologists minerology miners minerva minerval minery mines mineshaft mineshafts minestone minestones minestra minestrone minestrones minesweeper minesweepers minesweeping minesweepings minette minettes minever minevers mineworker mineworkers ming minge minged mingelen minges mingie mingier mingiest mingily mingin minginess minginesses minging mingle mingleable mingled mingledly minglement minglements mingler minglers mingles mingling minglingly minglings mings minguetite mingwort mingy minhag minhagic minhagim minhah mini miniaceous miniard miniate miniated miniates miniating miniation miniations miniator miniatous miniature miniatured miniatureness miniatures miniaturing miniaturisation miniaturisations miniaturise miniaturised miniaturises miniaturising miniaturist miniaturistic miniaturists miniaturization miniaturizations miniaturize miniaturized miniaturizes miniaturizing minibar minibars minibike minibiker minibikers minibikes minibrain minibrains minibreak minibreaks minibudget minibudgets minibus minibuses minibusses minicab minicabbing minicabbings minicabs minicalculator minicalculators minicam minicamera minicameras minicamp minicamps minicams minicar minicars miniclock miniclocks minicomponent minicomponents minicomputer minicomputers miniconvention miniconventions minicourse minicourses minicrisis minicrisises minidisk minidisks minidrama minidramas minidress minidresses minie minienize minier miniest minifestival minifestivals minification minifications minified minifies minifloppies minifloppieses minifloppy minify minifying minigarden minigardens minigolf minigrant minigrants minigroup minigroups miniguide miniguides minihospital minihospitals miniken minikin minikinly minikins minilab minilabs minilanguage minileague minileagues minilecture minilectures minim minima minimacid minimal minimalism minimalisms minimalist minimalistic minimalists minimalities minimality minimalization minimalizations minimalize minimalized minimalizes minimalizing minimalkaline minimally minimals minimarket minimarkets minimax minimaxed minimaxes minimaxing miniment miniments minimetric minimi minimifidian minimifidianism minimill minimills minimiracle minimiracles minimis minimisation minimisations minimise minimised minimiser minimisers minimises minimising minimism minimisms minimist minimistic minimists minimitude minimization minimizations minimize minimized minimizer minimizers minimizes minimizing minims minimum minimums minimus minimuscular minimuses minimuseum minimuseums minination mininations mininetwork mininetworks mining minings mininovel mininovels minion minionette minionism minionly minions minionship minious minipanic minipanics minipark miniparks minipill minipills miniprice miniprices miniproblem miniproblems minirebellion minirebellions minirecession minirecessions minirobot minirobots minirugbies minirugby minis miniscandal miniscandals minischool minischools miniscule miniscules minisedan minisedans miniseries miniserieses minish minished minisher minishes minishing minishment miniski miniskirt miniskirted miniskirts miniskis minislump minislumps minisocieties minisociety ministate ministates minister ministered ministeria ministeriable ministerial ministerialism ministerialist ministerialists ministeriality ministerially ministerialness ministering ministerium ministers ministership ministrable ministral ministrant ministrants ministrate ministration ministrations ministrative ministrator ministrer ministress ministresses ministries ministrike ministrikes ministroke ministrokes ministry ministryship minisub minisubmarine minisubmarines minisurvey minisurveys minisystem minisystems minitant miniterritories miniterritory minitheater minitheaters minitrack minitracks minitrain minitrains minium miniums minivacation minivacations minivan minivans miniver minivers miniversion miniversions minivet minivets minivolley minivolleys mink minke minkery minkes minkfish minkfishes minkish minks minneapolis minneola minneolas minnesinger minnesingers minnesong minnesota minnesotan minnesotans minnick minnicked minnicking minnicks minnie minniebush minnies minning minnock minnocked minnocking minnocks minnow minnows minny mino minoan minocin minocycline minoize minometer minor minora minorage minorate minoration minorca minorcas minored minoress minoresses minoring minoritaire minoritaires minorite minorites minorities minority minors minorship minorships minos minot minotaur minotaurs minow minoxidil minoxidils mins minshuku minshukus minsitive minsk minster minsters minsteryard minstrel minstreless minstrels minstrelship minstrelsies minstrelsy mint mintage mintages mintbush minted minter minters mintier mintiest minting mintmaker mintmaking mintman mintmark mintmarks mintmaster mints mintweed minty minuartia minuend minuends minuet minuetic minuetish minuets minum minunet minus minuscular minuscule minuscules minuses minutary minutation minute minuted minutely minuteman minutemen minuteness minutenesses minuter minutes minutest minuthesis minutia minutiae minutial minuting minutiose minutious minutiously minutissimic minvend minverite minx minxes minxish minxishly minxishness minxship miny minyan minyanim minyans miocardia miocene miolithic miombo miombos mioplasmia mioses miosis miothermic miotic miotics mips miqra miquelet miquelets mir mirabelle mirabelles mirabile mirabilia mirabiliary mirabilis mirabilises mirabilite mirable mirach miracicidia miracidia miracidial miracidium miracle miracled miraclemonger miraclemongering miracles miracling miraclist miracular miraculise miraculist miraculize miraculosity miraculous miraculously miraculousness miraculousnesses mirador miradors mirage mirages miragy mirandous mirasol mirate mirbane mirbanes mircrobicidal mird mirdaha mirdha mire mired mirepois mirepoix mires miresnipe mirex mirexes miri miriam mirid miridae mirier miriest mirific mirifical mirifically miriki mirin miriness mirinesses miring mirins mirish miriti miritis mirk mirker mirkest mirkier mirkiest mirkily mirkiness mirkinesses mirkish mirkly mirkness mirks mirksome mirky mirled mirlier mirliest mirligo mirligoes mirliton mirlitons mirly miro mirounga mirror mirrored mirroring mirrorise mirrorize mirrorlike mirrors mirrorscope mirrorwise mirrory mirs mirth mirthful mirthfully mirthfulness mirthfulnesses mirthless mirthlessly mirthlessness mirthlessnesses mirths mirthsome mirthsomeness mirv mirved mirving mirvs miry miryachit mirza mirzas mis misaccent misaccentuation misaccept misacceptation misacceptations misacception misaccount misaccused misachievement misacknowledge misact misacted misacting misacts misadapt misadaptation misadapted misadapting misadapts misadd misadded misadding misaddress misaddressed misaddresses misaddressing misaddrest misadds misadjudicated misadjust misadjusted misadjusting misadjustment misadjusts misadmeasurement misadminister misadministration misadministrations misadressed misadressing misadrest misadvantage misadventure misadventured misadventurer misadventurers misadventures misadventurous misadventurously misadvertence misadvertences misadvice misadvise misadvised misadvisedly misadvisedness misadvisednesses misadvises misadvising misadvize misaffect misaffected misaffection misaffirm misagent misagents misaim misaimed misaiming misaims misalienate misalign misaligned misaligning misalignment misalignments misaligns misallegation misallege misalleged misalleges misalleging misalliance misalliances misallied misallies misallocate misallocated misallocates misallocating misallocation misallocations misallot misallotment misallotments misallots misallotted misallotting misallowance misally misallying misalphabetise misalphabetises misalphabetize misalphabetized misalphabetizes misalphabetizing misalter misaltered misaltering misalters misanalysed misanalyses misanalysis misanalyze misanalyzed misanalyzely misanalyzing misandries misandrist misandrists misandrous misandry misanswer misanthrope misanthropes misanthropi misanthropia misanthropic misanthropical misanthropically misanthropies misanthropise misanthropism misanthropist misanthropists misanthropize misanthropos misanthroposes misanthropy misapparel misappear misappearance misappellation misappended misapplicability misapplication misapplications misapplied misapplier misapplies misapply misapplying misappoint misappointment misappraisal misappraisals misappraise misappraised misappraisement misappraising misappreciate misappreciated misappreciates misappreciating misappreciation misappreciations misappreciative misapprehend misapprehended misapprehending misapprehendingly misapprehends misapprehensible misapprehension misapprehensions misapprehensive misapprehensively misapprehensiveness misapprehensivenesses misappropriate misappropriated misappropriately misappropriates misappropriating misappropriation misappropriations misarchism misarchist misarrange misarranged misarrangement misarrangements misarranges misarranging misarray misarrayed misarraying misarrays misarticulate misarticulated misarticulates misarticulating misarticulation misascribe misascription misasperse misassay misassayed misassaying misassays misassemble misassembled misassembles misassembling misassent misassert misassertion misassign misassigned misassigning misassignment misassigns misassociate misassociation misassumption misassumptions misate misatone misatoned misatones misatoning misattend misattribute misattributed misattributes misattributing misattribution misattributions misaunter misaunters misauthorisation misauthorise misauthorization misauthorize misauthorized misauthorizing misaventeur misaver misaverred misaverring misavers misavised misaward misawarded misawarding misawards misbalance misbalanced misbalances misbalancing misbandage misbaptise misbaptize misbear misbecame misbecome misbecomes misbecoming misbecomingly misbecomingness misbecomingnesses misbede misbefall misbefallen misbefitting misbegan misbeget misbegetting misbegin misbeginning misbegins misbegot misbegotten misbegun misbehave misbehaved misbehaver misbehavers misbehaves misbehaving misbehavior misbehaviors misbehaviour misbehaviours misbeholden misbelief misbeliefs misbelieve misbelieved misbeliever misbelievers misbelieves misbelieving misbelievingly misbelove misbeseem misbeseemed misbeseeming misbeseems misbestow misbestowal misbestowals misbestowed misbestowing misbestows misbetide misbias misbiased misbiases misbiasing misbiassed misbiasses misbiassing misbill misbilled misbilling misbills misbind misbinding misbinds misbirth misbirths misbode misboden misborn misbound misbrand misbranded misbranding misbrands misbrew misbuild misbuilding misbuilds misbuilt misbusy misbutton misbuttoned misbuttoning misbuttons misc miscal miscalculate miscalculated miscalculates miscalculating miscalculation miscalculations miscalculator miscalculators miscall miscalled miscaller miscallers miscalling miscalls miscanonise miscanonize miscanthus miscanthuses miscaption miscaptioned miscaptioning miscaptions miscarriage miscarriageable miscarriages miscarried miscarries miscarry miscarrying miscast miscasted miscasting miscasts miscasualty miscatalog miscataloged miscataloging miscatalogs miscategorize miscategorized miscategorizing misce misceability miscegen miscegenate miscegenated miscegenates miscegenating miscegenation miscegenational miscegenationist miscegenationists miscegenations miscegenator miscegenators miscegene miscegenes miscegenetic miscegenist miscegenists miscegens miscegine miscegines miscellanarian miscellanarians miscellane miscellanea miscellaneal miscellaneity miscellaneous miscellaneously miscellaneousness miscellaneousnesses miscellanies miscellanist miscellanists miscellany miscensure miscensured miscensuring mischallenge mischallenges mischance mischanced mischanceful mischances mischancing mischancy mischannel mischanneled mischanneling mischannelled mischannelling mischannels mischanter mischanters mischaracterisation mischaracterisations mischaracterise mischaracterises mischaracterization mischaracterizations mischaracterize mischaracterized mischaracterizes mischaracterizing mischarge mischarged mischarges mischarging mischief mischiefed mischiefful mischiefing mischiefs mischieve mischievous mischievously mischievousness mischievousnesses mischio mischmetal mischmetals mischoice mischoices mischoose mischooses mischoosing mischose mischosen mischristen miscibilities miscibility miscible miscipher miscitation miscitations miscite miscited miscites misciting misclaim misclaimed misclaiming misclaims misclass misclassed misclasses misclassification misclassifications misclassified misclassifies misclassify misclassifying misclassing miscode miscoded miscodes miscoding miscognizable miscognizant miscoin miscoinage miscoined miscoining miscoins miscollocation miscolor miscoloration miscolored miscoloring miscolors miscolour miscolouration miscoloured miscolouring miscolours miscomfort miscommand miscommit miscommunicate miscommunication miscommunications miscompare miscomplacence miscomplain miscomplaint miscompose miscomprehend miscomprehended miscomprehending miscomprehends miscomprehension miscomprehensions miscomputation miscomputations miscompute miscomputed miscomputes miscomputing misconceit misconceited misconceiting misconceits misconceive misconceived misconceiver misconceivers misconceives misconceiving misconception misconceptions misconclusion miscondition misconduct misconducted misconducting misconducts misconfer misconfidence misconfident misconfiguration misconjecture misconjectured misconjectures misconjecturing misconjugate misconjugated misconjugating misconjugation misconjunction misconnect misconnected misconnecting misconnection misconnections misconnects misconsecrate misconsecrated misconsequence misconster misconstered misconstering misconsters misconstitutional misconstruable misconstrual misconstruct misconstructed misconstructing misconstruction misconstructions misconstructive misconstructs misconstrue misconstrued misconstruer misconstrues misconstruing miscontent miscontented miscontenting miscontentment miscontentments miscontents miscontinuance misconvenient misconvey miscook miscooked miscookery miscooking miscooks miscopied miscopies miscopy miscopying miscorrect miscorrected miscorrecting miscorrection miscorrections miscorrects miscorrelation miscorrelations miscounsel miscounseled miscounseling miscounselled miscounselling miscounsels miscount miscounted miscounting miscounts miscovet miscreance miscreances miscreancies miscreancy miscreant miscreants miscreate miscreated miscreates miscreating miscreation miscreations miscreative miscreator miscreators miscreaunce miscreaunces miscredit miscredited miscrediting miscredits miscredulity miscreed miscreeds miscript miscrop miscue miscued miscueing miscues miscuing miscultivated misculture miscurvature miscut miscuts miscutting misdate misdated misdateful misdates misdating misdaub misdeal misdealer misdealers misdealing misdeals misdealt misdecide misdecision misdeclaration misdeclare misdeed misdeeds misdeem misdeemed misdeemful misdeeming misdeemings misdeems misdefine misdefined misdefines misdefining misdeformed misdeliver misdeliveries misdelivery misdemean misdemeanant misdemeanants misdemeaned misdemeaning misdemeanist misdemeanor misdemeanors misdemeanour misdemeanours misdemeans misdempt misdentition misdepart misderivation misderive misderived misderiving misdescribe misdescribed misdescriber misdescribes misdescribing misdescription misdescriptions misdescriptive misdesert misdeserts misdeserve misdesignate misdesire misdetermine misdevelop misdeveloped misdeveloping misdevelops misdevise misdevoted misdevotion misdevotions misdiagnose misdiagnosed misdiagnoses misdiagnosing misdiagnosis misdiagrammed misdial misdialed misdialing misdialled misdialling misdials misdictated misdid misdidived misdiet misdiets misdight misdirect misdirected misdirecting misdirection misdirections misdirects misdispose misdisposition misdistinguish misdistribute misdistribution misdistributions misdived misdivide misdividing misdivision misdivisions misdo misdoer misdoers misdoes misdoing misdoings misdone misdonne misdoubt misdoubted misdoubtful misdoubting misdoubts misdower misdraw misdrawing misdrawings misdrawn misdraws misdread misdreads misdrew misdrive misdriven misdrives misdriving misdrove mise misease miseased miseases miseat miseaten miseating miseats misecclesiastic misedit misedited misediting misedits miseducate miseducated miseducates miseducating miseducation miseducations miseducative miseffect misemphases misemphasis misemphasise misemphasises misemphasize misemphasized misemphasizes misemphasizing misemploy misemployed misemploying misemployment misemployments misemploys misencourage misendeavor misenforce misengrave misenite misenjoy misenrol misenroll misenrolled misenrolling misenrolls misenrols misenter misentered misentering misenters misentitle misentreat misentreated misentreating misentreats misentries misentry misenunciation miser miserabilia miserabilism miserabilist miserabilistic miserability miserable miserableness miserablenesses miserables miserably miseration miserdom misere miserected miserere misereres miseres miserhood misericord misericorde misericordes misericordia misericords miseries miserism miserlier miserliest miserliness miserlinesses miserly misers misery mises misesteem misesteemed misesteeming misesteems misestimate misestimated misestimates misestimating misestimation misestimations misevaluate misevaluated misevaluates misevaluating misevaluation misevaluations misevent misevents misexample misexecute misexecution misexpectation misexpend misexpenditure misexplain misexplained misexplanation misexplicate misexplication misexposition misexpound misexpress misexpression misexpressive misfaith misfaiths misfall misfallen misfalling misfalls misfalne misfare misfared misfares misfaring misfarings misfashion misfashioned misfate misfather misfault misfeasance misfeasances misfeasor misfeasors misfeature misfeatured misfeatures misfeaturing misfed misfeed misfeeding misfeeds misfeign misfeigned misfeigning misfeigns misfell misfield misfielded misfielding misfields misfigure misfile misfiled misfiles misfiling misfire misfired misfires misfiring misfit misfits misfitted misfitting misfocus misfocused misfocuses misfocusing misfocussed misfocusses misfocussing misfond misforgive misform misformation misformations misformed misforming misforms misfortunate misfortunately misfortune misfortuned misfortuner misfortunes misframe misframed misframes misframing misfuel misfueled misfueling misfuelled misfuelling misfuels misfunction misfunctioned misfunctioning misfunctions misgauge misgauged misgauges misgauging misgave misgesture misgive misgived misgiven misgives misgiving misgivingly misgivinglying misgivings misgo misgoes misgoing misgone misgotten misgovern misgovernance misgovernaunce misgovernaunces misgoverned misgoverning misgovernment misgovernments misgovernor misgovernors misgoverns misgracious misgrade misgraded misgrades misgrading misgraff misgraffed misgraffing misgraffs misgraft misgrafted misgrafting misgrafts misgrave misgrew misground misgrounded misgrow misgrowing misgrown misgrows misgrowth misgrowths misguage misguaged misguess misguessed misguesses misguessing misguggle misguggled misguggles misguggling misguidance misguidances misguide misguided misguidedly misguidedness misguidednesses misguider misguiders misguides misguiding misguidingly misguise misgye mishallowed mishandle mishandled mishandles mishandling mishanter mishanters mishap mishapped mishappen mishappened mishappening mishappens mishapping mishaps mishapt mishara mishave mishear misheard mishearing mishears mishegaas mishegaasen mishguggle mishguggled mishguggles mishguggling miships mishit mishits mishitting mishmash mishmashes mishmee mishmees mishmi mishmis mishmosh mishmoshes mishnah misidentification misidentifications misidentified misidentifies misidentify misidentifying misimagination misimagine misimpression misimpressions misimprove misimproved misimprovement misimprovements misimproves misimproving misimputation misimpute misincensed misincite misinclination misincline misinfer misinference misinferred misinferring misinfers misinflame misinform misinformant misinformants misinformation misinformations misinformative misinformed misinformer misinformers misinforming misinforms misingenuity misinspired misinstruct misinstructed misinstructing misinstruction misinstructions misinstructive misinstructs misintelligence misintelligences misintelligible misintend misintended misintending misintends misintention misinter misinterment misinterpret misinterpretable misinterpretation misinterpretations misinterpreted misinterpreter misinterpreters misinterpreting misinterprets misinterred misinterring misinters misintimation misiones misitemized misjoin misjoinder misjoinders misjoined misjoining misjoins misjudge misjudged misjudgement misjudgements misjudger misjudgers misjudges misjudging misjudgingly misjudgment misjudgments miskal miskals miskeep miskeeping miskeeps misken miskenned miskenning miskens miskent miskept miskey miskeyed miskeying miskeys miskick miskicked miskicking miskicks miskill miskin miskindle misknew misknow misknowing misknowledge misknowledges misknown misknows misky mislabel mislabeled mislabeling mislabelled mislabelling mislabels mislabor mislabored mislaboring mislabors mislabour mislaboured mislabouring mislabours mislaid mislain mislanguage mislay mislayer mislayers mislaying mislays mislead misleadable misleader misleaders misleading misleadingly misleadingness misleads mislear misleared mislearn mislearned mislearning mislearns mislearnt misled misleeke misleeked misleekes misleeking misleered mislen mislest misletoe misletoes mislie mislies mislight mislighted mislighting mislights mislikable mislike misliked misliken mislikeness misliker mislikers mislikes misliking mislikingly mislikings mislin mislippen mislippened mislippening mislippens mislit mislive mislived mislives misliving mislled mislocate mislocated mislocates mislocating mislocation mislocations mislodge mislodged mislodges mislodging misluck mislucked mislucking mislucks misly mislying mismade mismake mismakes mismaking mismanage mismanageable mismanaged mismanagement mismanagements mismanager mismanages mismanaging mismannered mismanners mismark mismarked mismarking mismarks mismarriage mismarriages mismarried mismarries mismarry mismarrying mismatch mismatched mismatches mismatching mismatchment mismatchments mismate mismated mismates mismating mismaze mismean mismeasure mismeasured mismeasurement mismeasurements mismeasures mismeasuring mismeet mismeeting mismeets mismenstruation mismet mismetre mismetred mismetres mismetring misminded mismingle mismosh mismoshes mismotion mismount mismove mismoved mismoves mismoving misname misnamed misnames misnaming misnarrate misnarrated misnarrating misnatured misnavigate misnavigated misnavigating misnavigation misnomed misnomer misnomered misnomering misnomers misnumber misnumbered misnumbering misnumbers misnurture misnutrition miso misobedience misobey misobservance misobservances misobserve misobserved misobserves misobserving misocainea misocapnic misocapnist misocatholic misoccupied misoccupy misoccupying misoclere misogallic misogamic misogamies misogamist misogamists misogamy misogyne misogynic misogynical misogynies misogynism misogynist misogynistic misogynistical misogynists misogynous misogyny misohellene misologies misologist misologists misology misomath misoneism misoneisms misoneist misoneistic misoneists misopaedia misopaedism misopaedist misopaterist misopedia misopedism misopedist misopinion misopolemical misorder misordered misordering misorders misordination misorganisation misorganise misorganization misorganize misorganized misorganizing misorient misorientation misorientations misoriented misorienting misorients misos misoscopist misosopher misosophist misosophy misotheism misotheist misotheistic misotramontanism misotyranny misoxene misoxeny mispackage mispackaged mispackages mispackaging mispacked mispage mispaged mispages mispagination mispaging mispaid mispaint mispainted mispainting mispaints misparse misparsed misparses misparsing mispart misparted misparting misparts mispassion mispatch mispatched mispatches mispatching mispay mispaying mispen mispenned mispenning mispens misperceive misperceived misperceives misperceiving misperception misperceptions misperform misperformance mispersuade mispersuaded mispersuades mispersuading mispersuasion mispersuasions misperuse misphrase misphrased misphrases misphrasing mispick mispickel mispickels misplace misplaced misplacement misplacements misplaces misplacing misplan misplanned misplanning misplans misplant misplanted misplanting misplants misplay misplayed misplaying misplays misplead mispleaded mispleading mispleadings mispleads misplease mispleased mispleases mispleasing mispled mispoint mispointed mispointing mispoints mispoise mispoised mispoises mispoising mispolicy misposition mispositioned mispositioning mispositions mispossessed mispractice mispracticed mispracticing mispractise mispractised mispractising mispraise mispraised mispraises mispraising misprejudiced mispresent misprice mispriced misprices mispricing misprincipled misprint misprinted misprinting misprints misprisal mispriser misprision misprisions misprizal misprize misprized misprizer misprizers misprizes misprizing misproceeding misproduce misproduced misproducing misprofess misprofessor misprogram misprogramed misprograming misprogrammed misprogramming misprograms mispronounce mispronounced mispronouncement mispronouncer mispronounces mispronouncing mispronunciation mispronunciations misproportion misproportioned misproportions misproposal mispropose misproposed misproposing misproud misprovide misprovidence misprovoke misprovoked misprovoking mispublicized mispublished mispunch mispunctuate mispunctuated mispunctuates mispunctuating mispunctuation mispunctuations mispurchase mispurchased mispurchasing mispursuit misput misputting misqualified misqualify misqualifying misquality misquotation misquotations misquote misquoted misquoter misquoters misquotes misquoting misraise misraised misraises misraising misrate misrated misrates misrating misread misreaded misreader misreading misreadings misreads misrealise misrealize misreason misreceive misrecital misrecite misreckon misreckoned misreckoning misreckonings misreckons misrecognise misrecognition misrecognize misrecollect misrecollected misrecollection misrecollections misrecord misrecorded misrecording misrecords misrefer misreference misreferences misreferred misreferring misrefers misreflect misreform misregard misregards misregister misregistered misregistering misregisters misregistration misregistrations misregulate misregulated misregulating misrehearsal misrehearse misrehearsed misrehearsing misrelate misrelated misrelates misrelating misrelation misrelations misreliance misrelied misrelies misreligion misrely misrelying misremember misremembered misremembering misremembers misremembrance misrender misrendered misrendering misrenders misrepeat misreport misreported misreporter misreporters misreporting misreports misreposed misrepresent misrepresentation misrepresentations misrepresentative misrepresented misrepresentee misrepresenter misrepresenters misrepresenting misrepresents misreprint misrepute misresemblance misresolved misresult misreward misrhyme misrhymed misrhymer misroute misrouted misrouteing misroutes misrouting misrule misruled misruler misrules misruling misruly misrun miss missa missable missaid missal missals missample missampled missampling missang missary missatical missaw missay missayer missaying missayings missays misscribed misscribing misscript misseat misseated misseating misseats missed missee misseeing misseem misseemed misseeming misseemings misseems misseen missees missel misseldin missels missemblance missend missending missends missense missenses missent missentence misserve misservice misses misset missets missetting missfire misshape misshaped misshapen misshapenly misshapenness misshapennesses misshaper misshapers misshapes misshaping missheathed misship misshipment misshipped misshipping misshod misshood misshoods missible missier missies missiest missificate missile missileer missileers missileman missilemen missileproof missileries missilery missiles missilries missiness missing missingly missiologies missiology mission missional missionaries missionarise missionarised missionarises missionarising missionarize missionarized missionarizes missionarizing missionary missionaryship missioned missioner missioners missioning missionisation missionise missionised missioniser missionisers missionises missionising missionization missionizations missionize missionized missionizer missionizers missionizes missionizing missions missis missises missish missishness missishnesses mississippi mississippian mississippians missit missive missives missmark missment missort missorted missorting missorts missound missounded missounding missounds missouri missourian missourians missourite missout missouts misspace misspaced misspaces misspacing misspeak misspeaking misspeaks misspeech misspeed misspell misspelled misspelling misspellings misspells misspelt misspend misspender misspending misspends misspent misspoke misspoken misstamp misstamped misstamping misstamps misstart misstarted misstarting misstarts misstate misstated misstatement misstatements misstater misstates misstating misstay missteer missteered missteering missteers misstep misstepped misstepping missteps misstop misstopped misstopping misstops misstricken misstrike misstrikes misstriking misstruck misstyle misstyled misstyles misstyling missuade missuggestion missuit missuited missuiting missuits missummation missummations missung missuppose missupposed missupposing missus missuses missy missyish missyllabication missyllabification missyllabified missyllabify missyllabifying mist mistakable mistakableness mistakably mistake mistakeable mistakeful mistaken mistakenly mistakenness mistakennesses mistakeproof mistaker mistakers mistakes mistaking mistakingly mistakings mistakion mistal mistassini mistaste mistaught mistbow mistbows mistcoat misteach misteacher misteaches misteaching misted mistell mistelling mistells mistemper mistempered mistempering mistempers mistend mistended mistendency mistending mistends mister mistered misteries mistering misterm mistermed misterming misterms misters mistery mistetch misteuk mistfall mistflower mistflowers mistful misthink misthinking misthinks misthought misthoughts misthread misthrew misthrift misthrive misthrow misthrowing misthrown misthrows mistic mistico misticos mistide mistier mistiest mistify mistigri mistigris mistigrises mistilled mistily mistime mistimed mistimes mistiming mistiness mistinesses misting mistings mistion mistitle mistitled mistitles mistitling mistle mistled mistles mistless mistletoe mistletoes mistling mistold mistone mistonusk mistook mistouch mistouched mistouches mistouching mistrace mistraced mistraces mistracing mistradition mistrain mistrained mistraining mistrains mistral mistrals mistranscribe mistranscribed mistranscribes mistranscribing mistranscript mistranscription mistranscriptions mistranslate mistranslated mistranslates mistranslating mistranslation mistranslations mistrayned mistreading mistreadings mistreat mistreated mistreating mistreatment mistreatments mistreats mistress mistressdom mistressed mistresses mistresshood mistressing mistressless mistressly mistrial mistrials mistrist mistrow mistrust mistrusted mistruster mistrusters mistrustful mistrustfully mistrustfulness mistrustfulnesses mistrusting mistrustingly mistrustless mistrusts mistruth mistruths mistry mistryst mistrysted mistrysting mistrysts mists mistune mistuned mistunes mistuning misture misturn mistutor mistutored mistutoring mistutors misty mistyish mistype mistyped mistypes mistyping mistypings misunderstand misunderstandable misunderstanded misunderstander misunderstanders misunderstanding misunderstandingly misunderstandings misunderstands misunderstood misunderstoodness misunion misunions misura misusage misusages misuse misused misuseful misusement misuser misusers misuses misusing misust misusurped misutilization misutilizations misvaluation misvalue misvalued misvalues misvaluing misventure misventures misventurous misviding misvocalization misvocalizations misvouch misvouched miswandered miswandred misway miswed miswedded misween misweened misweening misweens miswend miswending miswends miswent miswern miswire miswired miswiring miswisdom miswish miswoman misword misworded miswording miswordings miswords misworship misworshiped misworshiper misworshipped misworshipper misworshipping misworships miswrest miswrit miswrite miswrites miswriting miswritten miswrote miswrought misy misyoke misyoked misyokes misyoking miszealous miszone miszoned miszoning misère misères mit mitapsis mitch mitchboard mitched mitchella mitches mitching mite mitella miteproof miter mitered miterer miterers miterflower mitergate mitering miters miterwort miterworts mites mithan mither mithered mithering mithers mithra mithracin mithradatic mithraea mithraeum mithraic mithraicism mithraism mithraist mithraistic mithramycin mithras mithridate mithridates mithridatic mithridatise mithridatised mithridatises mithridatising mithridatism mithridatisms mithridatize mithridatized mithridatizes mithridatizing miticidal miticide miticides mitier mitiest mitigable mitigant mitigants mitigate mitigated mitigatedly mitigates mitigating mitigation mitigations mitigative mitigatives mitigator mitigators mitigatory miting mitis mitises mitochondria mitochondrial mitochondrion mitogen mitogenetic mitogenic mitogenicities mitogenicity mitogens mitokoromono mitome mitomycin mitomycins mitoses mitosis mitosome mitotic mitotically mitra mitraille mitrailles mitrailleur mitrailleurs mitrailleuse mitrailleuses mitral mitrate mitre mitred mitreflower mitrer mitres mitrewort mitreworts mitriform mitring mitsumata mitsvah mitsvahs mitsvoth mitt mittatur mittelhand mitten mittened mittenlike mittens mittent mittimus mittimuses mittle mitts mitty mitvoth mity mitzvah mitzvahs mitzvoth miurus miuruses miwok mix mixability mixable mixableness mixblood mixdown mixdowns mixed mixedly mixedness mixednesses mixen mixens mixer mixeress mixers mixes mixhill mixible mixier mixiest mixilineal mixing mixite mixobarbaric mixochromosome mixologies mixologist mixologists mixology mixolydian mixoploid mixoploidy mixotrophic mixt mixtiform mixtilineal mixtilinear mixtilion mixtion mixtions mixture mixtures mixup mixups mixy miz mizar mize mizen mizenmast mizenmasts mizens mizmaze mizmazes mizrach mizrah mizuna mizunas mizz mizzen mizzenmast mizzenmastman mizzenmasts mizzens mizzensail mizzentop mizzentopman mizzentopmen mizzes mizzle mizzled mizzler mizzles mizzlier mizzliest mizzling mizzlings mizzly mizzonite mizzonites mizzy mk mks mkt mktg ml mlange mlechchha mlitt mls mlx mm mmf mmfd mmmm mn mna mnage mnas mnem mneme mnemes mnemic mnemon mnemonic mnemonical mnemonicalist mnemonically mnemonicon mnemonics mnemonism mnemonist mnemonists mnemonization mnemonize mnemonized mnemonizing mnemons mnemosyne mnemotechnic mnemotechnical mnemotechnics mnemotechnist mnemotechnists mnemotechny mnesic mnestic mniaceae mniaceous mnioid mnium mo moa moabite moabitish moan moaned moaner moaners moanful moanfully moanification moaning moaningly moanless moans moas moat moated moathill moating moatlike moats mob mobable mobbable mobbed mobber mobbers mobbie mobbies mobbing mobbings mobbish mobbishly mobbishness mobbism mobbisms mobbist mobble mobbled mobbles mobbling mobby mobcap mobcaps mobed mobil mobile mobiles mobilia mobilianer mobiliary mobilisable mobilisation mobilisations mobilise mobilised mobiliser mobilisers mobilises mobilising mobilities mobility mobilizable mobilization mobilizations mobilize mobilized mobilizer mobilizers mobilizes mobilizing mobilometer moble mobled mobles moblike mobling mobocracies mobocracy mobocrat mobocratic mobocratical mobocrats mobolatry mobproof mobs mobship mobsman mobsmen mobster mobsters mobula mobulidae moc moca mocambique mocassin mocassins moccasin moccasins moccenigo moch mocha mochas moche mochel mochell mochells mochie mochier mochiest mochila mochilas mochiness mochinesses mochras mochs mochudi mochy mock mockable mockado mockadoes mockage mockages mockbird mocked mocker mockeries mockernut mockernuts mockers mockery mocketer mockful mockfully mockground mocking mockingbird mockingbirds mockingly mockings mockingstock mockish mocks mocktail mocktails mockup mockups mocmain moco mocock mococks mocomoco mocs mocuck mocucks mocuddum mocuddums mod modacrylic modacrylics modal modalise modalism modalisms modalist modalistic modalists modalities modality modalize modally modals modded modder modding mode model modeled modeler modelers modeless modelessness modeling modelings modelist modelists modelize modelled modeller modellers modelli modelling modellings modello modellos modelmaker modelmaking models modem modemed modeming modems modena modenas moder moderant moderantism moderantist moderate moderated moderately moderateness moderatenesses moderates moderating moderation moderationism moderationist moderations moderatism moderatisms moderatist moderato moderator moderatorial moderators moderatorship moderatorships moderatos moderatrices moderatrix moderatrixes modern moderne moderner modernes modernest modernicide modernisable modernisation modernisations modernise modernised moderniser modernisers modernises modernish modernising modernism modernisms modernist modernistic modernistically modernists modernities modernity modernizable modernization modernizations modernize modernized modernizer modernizers modernizes modernizing modernly modernness modernnesses moderns moders modes modest modester modestest modesties modestly modestness modesty modge modi modiation modica modicity modicum modicums modif modifiabilities modifiability modifiable modifiableness modifiablenesses modifiably modificability modificable modificand modification modificationist modifications modificative modificator modificators modificatory modified modifier modifiers modifies modify modifying modii modili modillion modillions modiolar modioli modiolus modioluses modish modishly modishness modishnesses modist modiste modistes modistry modists modius modiwort modiworts modo modred mods modula modulabilities modulability modulant modular modularisation modularise modularised modularises modularising modularities modularity modularization modularize modularized modularizes modularizing modularly modulars modulate modulated modulates modulating modulation modulations modulative modulator modulators modulatory module modules modulet moduli modulize modulo modulus modumite modus mody moe moeble moeck moed moehringia moeing moellon moellons moerithere moeritherian moes moet moeurs mofette mofettes moff moffette moffettes moffle mofussil mofussilite mofussils mog mogadiscio mogador mogadore mogdad moggan moggans mogged moggie mogging moggio moggy moghul mogigraphia mogigraphic mogigraphy mogilalia mogilalism mogiphonia mogitocia mogo mogographia mogos mogote mogs moguey mogul moguled moguls mogulship moguntine moha mohabat mohair mohairs mohalim mohammadanism mohammed mohammedan mohammedanism mohar moharram mohatra mohave mohawk mohawkite mohawks mohegan mohel mohelim mohels mohican mohicans mohism mohnseed moho mohock mohockism mohoohoo mohos mohr mohria mohrs mohur mohurs mohwa moi moid moider moidered moidering moiders moidore moidores moier moiest moieter moieties moiety moil moile moiled moiler moilers moiles moiley moiling moilingly moils moilsome moineau moineaus moio moir moira moirae moirai moire moireed moireing moires moirette moise moiser moisers moison moissanite moist moisted moisten moistened moistener moisteners moistening moistens moister moistest moistful moistified moistifies moistify moistifying moistiness moisting moistish moistishness moistless moistly moistness moistnesses moists moisture moistureless moistureproof moistures moisturise moisturised moisturiser moisturisers moisturises moisturising moisturize moisturized moisturizer moisturizers moisturizes moisturizing moisty moit moither moithered moithering moithers moitier moitiest moits moity mojarra mojarras mojave mojo mojoes mojos mokaddam mokaddams mokador mokamoka moke mokes moki mokihana mokihi mokis moko mokos moksha mokshas mokulu mokum moky mol mola molal molalities molality molar molariform molarimeter molarities molarity molars molary molas molasse molasses molasseses molassied molassy molave mold moldability moldable moldableness moldasle moldavia moldavite moldboard moldboards molded molder moldered moldering molders moldery moldier moldiest moldiness moldinesses molding moldings moldmade moldova moldproof molds moldwarp moldwarps moldy mole molebut molecast molecasts molecatcher molecatchers molech molecula molecular molecularist molecularities molecularity molecularly molecule molecules molehead moleheap molehill molehillish molehills molehilly molehunt molehunter molehunters molehunts moleism molelike molendinar molendinaries molendinars molendinary molengraaffite moleproof moler molerat molerats moles moleskin moleskins molest molestation molestations molested molester molesters molestful molestfully molestie molesting molestious molests molet molewarp molidae moliere molies molified molify molifying molilalia molimen molimens moliminous molinary moline molines molinet molinets moling molinism molise molition molka moll molla mollah mollahs molland mollas molle molles mollescence mollescent molleton mollichop mollicrush mollie mollienesia mollienisia mollient molliently mollies mollifiable mollification mollifications mollified mollifiedly mollifier mollifiers mollifies mollify mollifying mollifyingly mollifyingness molligrant molligrubs mollipilose mollisiose mollisol mollities mollitious mollitude molls molluga mollusc mollusca molluscan molluscans molluscicidal molluscicide molluscicides molluscivorous molluscoid molluscoidal molluscoidan molluscoidean molluscoids molluscous molluscousness molluscs molluscum mollusk molluskan molluskans mollusklike mollusks molly mollycoddle mollycoddled mollycoddler mollycoddlers mollycoddles mollycoddling mollycosset mollycot mollyhawk mollymawk mollymawks molman molmen molmutian moloch molochise molochised molochises molochising molochize molochized molochizes molochizing molochs molocker moloid molokai moloker molompi molosse molosses molossi molossian molossic molossidae molossine molossoid molossus molothrus molotov molpe molrooken mols molt molted molten moltenly molter molters molting molto molts moltten molucca molucella molva molvi moly molybdate molybdates molybdena molybdenic molybdeniferous molybdenite molybdenites molybdenoses molybdenosis molybdenous molybdenum molybdenums molybdic molybdite molybdocardialgia molybdocolic molybdodyspepsia molybdomancy molybdomenite molybdonosus molybdoparesis molybdophyllite molybdoses molybdosis molybdous molys molysite mom mombasa mombin momble mome moment momenta momental momentally momentaneall momentaneity momentaneous momentaneously momentaneousness momentany momentarily momentariness momentarinesses momentary momently momento momentoes momentos momentous momentously momentousment momentousments momentousness momentousnesses moments momentum momentums momes momi momiology momish momism momisms momist momma mommas momme mommer mommet mommets mommies mommuck mommucked mommucking mommucks mommy momo momordica momos momot momotidae momotus moms momser momsers momus momuses momzer momzerim momzers mon mona monacan monacanthid monacanthine monacanthous monacetin monach monachal monachate monachism monachisms monachist monachists monachization monachize monacid monacidic monacids monacillo monacillos monaco monact monactin monactinal monactine monactinellid monactinellidan monad monadal monadelph monadelphia monadelphian monadelphous monades monadic monadical monadically monadiform monadigerous monadism monadisms monadistic monadnock monadnocks monadologies monadology monads monaene monal monals monamide monamine monamniotic monander monandria monandrian monandric monandries monandrous monandry monanthous monaphase monapsal monarch monarchal monarchally monarchess monarchial monarchian monarchianism monarchianist monarchianistic monarchic monarchical monarchically monarchies monarchise monarchised monarchiser monarchises monarchising monarchism monarchisms monarchist monarchistic monarchists monarchize monarchized monarchizer monarchizes monarchizing monarchlike monarcho monarchomachic monarchomachist monarchs monarchy monarda monardas monardella monario monarthritis monarticular monas monascidian monase monases monaster monasterial monasterially monasteries monastery monastic monastical monastically monasticise monasticism monasticisms monasticize monastics monatomic monatomically monatomicity monatomism monaul monauli monaulos monauls monaural monaurally monax monaxial monaxile monaxon monaxonial monaxonic monaxons monazine monazite monazites monchiquite monchiquites mondain mondaine mondaines mondains monday mondays monde mondego mondegreen mondegreens mondes mondial mondo mondos mondsee mone monecian monecious monedula monegasque monel monellin monellins monembryary monembryonic monembryony moneme monensin monensins monepic monepiscopacy monepiscopal monepiscopus moner monera moneral moneran monerans monergic monergism monergisms monergist monergistic moneric moneron monerons monerozoan monerozoic monerula moneses monesia monest monestrous monetarily monetarism monetarisms monetarist monetaristic monetarists monetary moneth moneths monetisation monetisations monetise monetised monetises monetising monetite monetization monetizations monetize monetized monetizes monetizing money moneyage moneybag moneybags moneybox moneyboxes moneychanger moneychangers moneyed moneyer moneyers moneyflower moneygetting moneygrub moneygrubber moneygrubbers moneygrubbing moneygrubbings moneying moneylender moneylenders moneylending moneylendings moneyless moneylessness moneymake moneymaker moneymakers moneymaking moneymakings moneyman moneymen moneymonger moneymongering moneyocracy moneys moneysaving moneywise moneywort moneyworts mong mongcorn mongcorns mongeese monger mongered mongerer mongeries mongering mongerings mongers mongery mongler mongo mongoe mongoes mongol mongolia mongolian mongolianism mongolians mongolic mongolism mongolisms mongoloid mongoloids mongols mongoose mongooses mongos mongrel mongreldom mongrelisation mongrelisations mongrelise mongrelised mongreliser mongrelises mongrelish mongrelising mongrelism mongrelisms mongrelity mongrelization mongrelizations mongrelize mongrelized mongrelizer mongrelizes mongrelizing mongrelly mongrelness mongrels mongs mongst monheimite monial monials monic monica monicker monickers monie monied monier monies moniker monikered monikers monilated monilethrix monilia moniliaceae moniliaceous monilial moniliales monilias moniliases moniliasis monilicorn moniliform moniliformly monilioid moniment moniments monimiaceous monimolite monimostylic moniplies monish monished monisher monishes monishing monishment monism monisms monist monistic monistical monistically monists monitary monition monitions monitive monitor monitored monitorial monitorially monitories monitoring monitorish monitors monitorship monitorships monitory monitress monitresses monitrix monk monkbird monkcraft monkdom monkeries monkery monkeryies monkess monkey monkeyboard monkeyed monkeyface monkeyfied monkeyflower monkeyfy monkeyfying monkeyhood monkeying monkeyish monkeyishly monkeyishness monkeyism monkeyisms monkeylike monkeynut monkeynuts monkeypod monkeypods monkeypot monkeypots monkeyrony monkeyry monkeys monkeyshine monkeyshines monkeytail monkeywrench monkfish monkfishes monkflower monkhood monkhoods monkish monkishly monkishness monkishnesses monkism monklike monkliness monkly monkmonger monks monkship monkshood monkshoods monmouth monmouthite monniker monnion monny mono monoacetate monoacetin monoacid monoacidic monoacids monoalphabetic monoamid monoamide monoamin monoamine monoaminergic monoamines monoamino monoammonium monoatomic monoazo monobacillary monobase monobasic monobasicities monobasicity monobath monoblastic monoblepses monoblepsia monoblepsis monobloc monobranchiate monobromacetone monobromated monobromide monobrominated monobromination monobromized monobromoacetanilide monobromoacetone monobutyrin monocable monocalcium monocanthidae monocanthus monocarbide monocarbonate monocarbonic monocarboxylic monocardian monocarp monocarpal monocarpellary monocarpian monocarpic monocarpous monocarps monocellular monocentric monocentrid monocentroid monocephalic monocephalous monocerco monocercous monoceros monoceroses monocerous monochamus monochasia monochasial monochasium monochlamydeous monochlor monochloracetic monochloranthracene monochlorbenzene monochloride monochlorinated monochlorination monochloro monochloroacetic monochlorobenzene monochloromethane monochoanitic monochord monochordise monochordist monochordize monochords monochroic monochromasies monochromasy monochromat monochromate monochromates monochromatic monochromatically monochromaticities monochromaticity monochromatism monochromatisms monochromator monochromators monochromats monochrome monochromes monochromic monochromical monochromically monochromies monochromist monochromists monochromous monochromy monochronic monochronometer monochronous monociliated monocle monocled monocleid monocleide monocles monoclinal monoclinally monocline monoclines monoclinian monoclinic monoclinism monoclinometric monoclinous monoclonal monoclonals monocoelian monocoelic monocondylar monocondylian monocondylic monocondylous monocoque monocoques monocormic monocot monocots monocotyl monocotyledon monocotyledonae monocotyledones monocotyledonous monocotyledons monocracies monocracy monocrat monocratic monocratis monocrats monocrotic monocrotism monocrystal monocrystalline monocrystals monocular monocularity monocularly monoculars monoculate monocule monoculist monoculous monocultural monoculture monocultures monoculus monocyanogen monocycle monocycles monocyclic monocycly monocystic monocyte monocytes monocytic monocytoid monocytopoiesis monocytoses monocytosis monodactyl monodactylate monodactyle monodactylism monodactylous monodactyly monodelph monodelphian monodelphic monodelphous monodermic monodic monodical monodically monodies monodimetric monodisperse monodist monodists monodize monodomous monodon monodont monodontal monodontidae monodram monodrama monodramas monodramatic monodramatist monodrame monodromic monodromy monody monodynamic monodynamism monoecia monoecian monoecies monoecious monoeciously monoeciousness monoecism monoecisms monoecy monoeidic monoenergetic monoester monoesters monoestrous monoethanolamine monoethylamine monofil monofilament monofilaments monofilm monofils monoflagellate monoformin monofuel monofuels monogamian monogamic monogamies monogamik monogamist monogamistic monogamists monogamou monogamous monogamously monogamousness monogamy monoganglionic monogastric monogene monogenean monogeneans monogeneity monogeneous monogeneses monogenesis monogenesist monogenesy monogenetic monogenic monogenically monogenies monogenism monogenisms monogenist monogenistic monogenists monogenous monogeny monogerm monoglot monoglots monoglycerid monoglyceride monoglycerides monogoneutic monogonies monogonoporic monogonoporous monogony monogram monogramed monograming monogramm monogrammatic monogrammatical monogrammed monogrammer monogrammers monogrammic monogramming monograms monograph monographed monographer monographers monographes monographic monographical monographically monographies monographing monographist monographists monographs monography monograptid monogynia monogynian monogynic monogynies monogynious monogynist monogynists monogynoecial monogynous monogyny monohull monohulls monohybrid monohybrids monohydrate monohydrated monohydrates monohydric monohydrogen monohydroxy monoicous monoid monoideistic monoketone monokine monokines monokini monokinis monolater monolaters monolatries monolatrist monolatrous monolatry monolayer monolayers monoline monolingual monolingualism monolingualisms monolingually monolinguals monolinguist monolinguists monoliteral monolith monolithal monolithic monolithically monolithism monoliths monolobular monolocular monolog monologged monologging monologian monologic monological monologies monologise monologised monologises monologising monologist monologists monologize monologized monologizes monologizing monologs monologue monologued monologues monologuing monologuise monologuised monologuises monologuising monologuist monologuists monologuize monologuized monologuizes monologuizing monology monomachia monomachias monomachies monomachist monomachy monomail monomania monomaniac monomaniacal monomaniacally monomaniacs monomanias monomark monomarks monomastigate monomeniscous monomer monomeric monomerous monomers monometalism monometalist monometallic monometallism monometallisms monometallist monometallists monometer monometers monomethyl monomethylamine monomethylated monomethylic monometric monometrical monomial monomials monomict monomineral monomineralic monomode monomolecular monomolecularly monomolybdate monomorium monomorphemic monomorphic monomorphism monomorphisms monomorphous monomyarian monomyary mononaphthalene mononch mononeural mononitrate mononitrated mononitration mononitride mononitrobenzene mononomial mononomian monont mononuclear mononuclears mononucleate mononucleated mononucleoses mononucleosis mononucleosises mononucleotide mononucleotides mononychous mononym mononymic mononymization mononymize mononymy monoousian monoousious monoparental monoparesis monoparesthesia monopathic monopathy monopectinate monopersonal monopersulfuric monopersulphuric monopetalous monophagia monophagies monophagism monophagous monophagy monophase monophasia monophasic monophobia monophobias monophobic monophobics monophoic monophone monophonic monophonically monophonies monophonous monophony monophotal monophote monophthalmic monophthalmos monophthalmus monophthong monophthongal monophthongise monophthongised monophthongises monophthongising monophthongization monophthongize monophthongized monophthongizes monophthongizing monophthongs monophyletic monophyletically monophyleticism monophyletism monophyletisms monophylety monophylies monophylite monophyllous monophyly monophyodont monophyodontism monophyodonts monophysite monophysites monophysitic monophysitism monophysitisms monopitch monoplace monoplacula monoplacular monoplaculate monoplane monoplanes monoplanist monoplasmatic monoplasric monoplast monoplastic monoplegia monoplegias monoplegic monoploid monoploids monopneumonian monopneumonous monopod monopode monopodes monopodia monopodial monopodially monopodic monopodies monopodium monopodiums monopodous monopods monopody monopolar monopolaric monopolarity monopole monopoles monopolies monopolisable monopolisation monopolisations monopolise monopolised monopoliser monopolisers monopolises monopolising monopolism monopolisms monopolist monopolistic monopolistically monopolists monopolitical monopolizable monopolization monopolizations monopolize monopolized monopolizer monopolizers monopolizes monopolizing monopoloid monopolous monopoly monopolylogist monopolylogue monopotassium monoprionid monoprionidian monoprogrammed monoprogramming monopropellant monopropellants monoprotic monopsonies monopsonist monopsonistic monopsonists monopsony monopsychism monoptera monopteral monopteroi monopteroid monopteron monopterons monopteros monopteroses monopterous monoptic monoptical monoptote monoptotes monoptotic monopttera monopulse monopulses monopylean monopyrenous monorail monorailroad monorails monorailway monorchid monorchidism monorchidisms monorchids monorchis monorchism monorchisms monorganic monorhinal monorhine monorhinous monorhyme monorhymed monorhymes monorhythmic monorime monos monosaccharide monosaccharides monosaccharose monoschemic monoscope monose monosemic monosemies monosemous monosemy monosepalous monoservice monoses monosexualities monosexuality monosies monosilane monosilicate monosilicic monosiphonic monosiphonous monosis monoski monoskied monoskier monoskiing monoskis monosodium monosomatic monosomatous monosome monosomes monosomic monosomics monosomies monosomy monospace monospecific monospecificities monospecificity monosperm monospermal monospermic monospermous monospermy monospherical monospondylic monosporangium monospore monospored monosporiferous monosporous monostable monostele monosteles monostelic monostelies monostelous monostely monostich monostichic monostichous monostichs monostomatous monostome monostomes monostomous monostromatic monostrophe monostrophes monostrophic monostrophics monostylar monostyle monostylous monosubstituted monosubstitution monosulfone monosulfonic monosulphide monosulphone monosulphonic monosy monosyllabic monosyllabical monosyllabically monosyllabicities monosyllabicity monosyllabism monosyllabisms monosyllabize monosyllable monosyllables monosyllablic monosyllogism monosymmetric monosymmetrical monosymmetrically monosymmetry monosymptomatic monosynaptic monosynaptically monosynthetic monotelephone monotelephones monotelephonic monotellurite monoterpene monoterpenes monotessaron monothalaman monothalamian monothalamic monothalamous monothecal monothecous monotheism monotheisms monotheist monotheistic monotheistical monotheistically monotheists monothelete monotheletes monotheletic monotheletical monotheletism monotheletisms monothelious monothelism monothelisms monothelite monothelites monothelitism monothelitisms monothetic monotic monotint monotints monotocardiac monotocardian monotocous monotomous monotonal monotone monotoned monotones monotonic monotonical monotonically monotonicities monotonicity monotonies monotoning monotonise monotonist monotonize monotonous monotonously monotonousness monotonousnesses monotony monotremal monotremata monotremate monotrematous monotreme monotremes monotremous monotrichate monotrichic monotrichous monotriglyph monotriglyphic monotroch monotrochal monotrochian monotrochous monotrochs monotron monotropa monotropaceae monotropaceous monotrophic monotropic monotropically monotropies monotropy monotypal monotype monotypes monotypic monotypical monotypous monounsaturate monounsaturated monounsaturates monoureide monovalence monovalences monovalencies monovalency monovalent monovariant monoverticillate monovoltine monovular monoxenous monoxide monoxides monoxime monoxyla monoxyle monoxylic monoxylon monoxylons monoxylous monozoan monozoic monozygotic monozygous monroe monroeism monrolite monrovia mons monseigneur monseignevr monsia monsieur monsieurs monsieurship monsignor monsignore monsignori monsignorial monsignors monsoon monsoonal monsoonish monsoonishly monsoons monspermy monster monstera monsteras monsterhood monsterlike monsters monstership monstrance monstrances monstrate monstration monstrator monstricide monstriferous monstrification monstrify monstrosities monstrosity monstrous monstrously monstrousness monstrousnesses monstruosities monstruosity monstruous mont montabyn montadale montadales montage montaged montages montaging montagnard montagnards montagne montague montana montanan montanans montanas montane montanes montanic montanin montanism montanite montant montanto montantos montants montaria montarias montbretia montbretias monte montebrasite montegre monteith monteiths montelimar montelimars montem montems montenegro montera monterey montero monteros montes montessori montessorian montevideo montezuma montfort montgolfier montgolfiers montgomery montgomeryshire month monthlies monthling monthlings monthlong monthly monthon months montia monticellite monticellites monticle monticles monticola monticolae monticoline monticolous monticulate monticule monticules monticuline monticuliporidean monticuliporoid monticulose monticulous monticulus monticuluses monties montiform montigeneous montilla montjoy montjoye montmartrite montmorillonite montmorillonites montmorillonitic montmorilonite monton montpelier montre montreal montres montross montroydite montserrat montserratian montserration monture montures montuvio monty monument monumental monumentalisation monumentalise monumentalised monumentalises monumentalising monumentalism monumentalities monumentality monumentalization monumentalize monumentalized monumentalizes monumentalizing monumentally monumentary monumented monumenting monumentless monumentlike monuments monuron monurons mony monyplies monzodiorite monzogabbro monzonite monzonites monzonitic moo moocah mooch moocha mooched moocher moochers mooches mooching moochulka mood mooder moodied moodier moodies moodiest moodily moodiness moodinesses moodir moodish moodishly moodishness moodle moods moody moodying mooed mooi mooing mook mookhtar mooks mooktar mooktars mool moola moolah moolahs moolas mooled moolet mooley mooleys mooli moolies mooling moolings moolis mools moolum moolvee moolvi moolvie moolvies moolvis mooly moon moonack moonal moonball moonballed moonballing moonballs moonbeam moonbeams moonbill moonblind moonblink moonbow moonbows mooncalf mooncalves mooncreeper mooncurser moondog moondown moondrop moondust moondusts mooned mooner mooners moonery moonet mooneye mooneyed mooneyes moonface moonfaced moonfaces moonfall moonfish moonfishes moonflower moonflowers moong moonglade moonglow moonhead moonie moonier moonies mooniest moonily mooniness mooninesses mooning moonish moonishly moonite moonja moonjah moonless moonlessness moonlet moonlets moonlight moonlighted moonlighter moonlighters moonlighting moonlightings moonlights moonlighty moonlike moonlikeness moonling moonlit moonlitten moonman moonmen moonpath moonpenny moonphase moonphases moonport moonports moonproof moonquake moonquakes moonraker moonrakers moonraking moonrakings moonrat moonray moonrise moonrises moonrock moonrocks moonroof moonroofs moons moonsail moonsails moonscape moonscapes moonseed moonseeds moonset moonsets moonshade moonshee moonshees moonshell moonshine moonshined moonshiner moonshiners moonshines moonshining moonshiny moonshot moonshots moonsick moonsickness moonsif moonstone moonstones moonstricken moonstrike moonstrikes moonstruck moontide moonwalk moonwalked moonwalker moonwalkers moonwalking moonwalks moonward moonwards moonway moonwort moonworts moony moop mooped mooping moops moor moorage moorages moorball moorband moorberries moorberry moorbird moorburn moorburner moorburning moorbuzzard moorbuzzards moorcock moorcocks moore moored mooress moorflower moorfowl moorfowls moorgame moorhen moorhens moorier mooriest moorill moorills mooring moorings moorish moorishly moorishness moorland moorlander moorlands moorlog moorlogs moorman moormen moorn moorpan moorpunky moors moorsman moorstone moortetter mooruk moorup moorva moorvas moorwort moorworts moory moos moosa moose mooseberries mooseberry moosebird moosebirds moosebush moosecall mooseflower moosehood moosemilk moosemise moosetongue moosewob moosewood moosewoods moosey mooseyard mooseyards moost moot mootable mootch mooted mooter mooters mootest mooth moothouse moothouses mooting mootings mootman mootmen mootness mootnesses moots mootstead mootsuddy mootworthy moove mooved mooves mooving mop mopane mopanes mopani mopanis mopboard mopboards mope moped mopeder mopeders mopeds mopehawk mopehawks mopeier mopeiest moper moperies mopers mopery mopes mopey moph mophead mopheaded mopheadedness mopheads mopier mopiest mopiness mopinesses moping mopingly mopish mopishly mopishness mopishnesses mopla moplah mopoke mopokes mopped mopper moppers moppet moppets moppier moppiest mopping moppy mops mopsey mopsies mopstick mopsticks mopsy mopus mopuses mopusses mopy moquelumnan moquette moquettes mor mora morabit moraceae moraceous morada morae morainal moraine moraines morainic moral morale moraler morales moralioralist moralisation moralisations moralise moralised moraliser moralisers moralises moralising moralisingly moralism moralisms moralist moralistic moralistically moralists moralities morality moralization moralizations moralize moralized moralizer moralizers moralizes moralizing moralizingly morall moralled moraller morallers moralless moralling moralls morally moralness morals moras morass morasses morassic morassweed morassy morat morate moration moratoria moratorium moratoriums moratory morats morattoria moravian moravite moray morays morbid morbider morbidest morbidezza morbidezzas morbidise morbidities morbidity morbidize morbidly morbidness morbidnesses morbiferal morbiferous morbific morbifical morbifically morbify morbility morbillary morbilli morbilliform morbillivirus morbilliviruses morbillous morbleu morbose morbus morceau morceaux morcellate morcellated morcellating morcellation morcellement morcha morchella morchellaceae mord mordacious mordaciously mordacities mordacity mordancies mordancy mordant mordanted mordanting mordantly mordants mordecai mordellid mordelloid mordenite mordent mordents mordicant mordicate mordication mordicative mordieu mordisheen mordore mordu mordva mordvin mordvinian more moreen moreens morefold moreish morel morella morelle morelles morello morellos morels morena morencite morendo moreness morenesses morenita morenosite moreover morepeon morepork moreporks mores moresco moresque moresques morfond morfound morfounder morfrey morg morga morgan morganatic morganatical morganatically morganic morganite morganites morganize morgans morgantown morgay morgays morgen morgengift morgens morgenstern morgensterns morglay morgue morgues moria morian morias moribund moribundities moribundity moribundly moric morice moriche moriches moriform morigerate morigeration morigerations morigerous morigerously morigerousness moriglio morillon morin morindin morindone morinel moringa moringaceous moringad moringuid moringuoid morion morions morisco moriscoes moriscos morish morkin morkins morling morlings morlop mormaer mormal mormaor mormaordom mormaors mormaorship mormo mormon mormonism mormons mormorando mormyr mormyre mormyrian mormyrid mormyroid morn mornay mornays morne morned mornes mornette morning morningless morningly mornings morningstar morningtide morningward mornless mornlike morns morntime mornward moro moroc morocain moroccan moroccans morocco moroccos morocota morological morologically morologist morology moromancy moron moroncy morone morones morong moronic moronically moronism moronisms moronities moronity moronry morons moror morosaurian morosauroid morose morosely moroseness morosenesses moroser morosest morosis morosities morosity morosoph moroxite morph morphactin morphactins morphallaxes morphallaxis morphea morphean morphed morpheme morphemed morphemes morphemic morphemically morphemics morpheming morphetic morpheus morphew morphews morphgan morphia morphias morphiate morphic morphically morphin morphinate morphine morphines morphing morphings morphinic morphinisation morphinise morphinism morphinisms morphinist morphinists morphinization morphinize morphinomania morphinomaniac morphinomaniacs morphinomanias morphins morphiomania morphiomaniac morphism morphisms morphized morphizing morpho morphogen morphogeneses morphogenesis morphogenetic morphogenetically morphogenic morphogenies morphogens morphogeny morphographer morphographers morphographic morphographical morphographies morphographist morphography morphol morpholin morpholine morphologic morphological morphologically morphologies morphologist morphologists morphology morpholoical morphometric morphometrical morphometrically morphometries morphometry morphon morphoneme morphonemic morphonemics morphonomic morphonomy morphophoneme morphophonemes morphophonemic morphophonemically morphophonemics morphophyly morphoplasm morphoplasmic morphos morphoses morphosis morphotic morphotonemic morphotonemics morphotropic morphotropies morphotropism morphotropy morphous morphrey morphs morpion morpunkee morra morral morras morrhua morrhuas morrhuate morrhuin morrhuine morrice morricer morrices morrigan morrigu morrion morrions morris morrised morrises morrising morro morros morrow morrowing morrowless morrowmass morrows morrowspeech morrowtide mors morsal morse morsel morseled morseling morselisation morselise morselization morselize morselled morselling morsels morses morsing morsure morsures mort morta mortacious mortadella mortadellas mortal mortalise mortalised mortalises mortalising mortalism mortalist mortalities mortality mortalize mortalized mortalizes mortalizing mortally mortalness mortals mortalty mortalwise mortancestry mortar mortarboard mortarboards mortared mortaring mortarise mortarize mortarless mortarlike mortars mortarware mortary mortbell mortbells mortcloth mortcloths mortem mortersheen mortgage mortgageable mortgaged mortgagee mortgagees mortgager mortgagers mortgages mortgaging mortgagor mortgagors morth morthwyrtha mortice morticed morticer morticers mortices mortician morticians morticing mortier mortiferous mortiferously mortiferousness mortiferousnesses mortific mortification mortifications mortified mortifiedly mortifiedness mortifier mortifiers mortifies mortify mortifying mortifyingly mortifyings mortis mortise mortised mortiser mortisers mortises mortising mortlake mortling mortlings mortmain mortmainer mortmains mortorio mortress mortreux mortrewes morts mortuarian mortuaries mortuary mortuous morula morulae morular morulas morulation morulations morule moruloid morus morvin morw morwong morwongs mos mosaic mosaical mosaically mosaicism mosaicisms mosaicist mosaicists mosaicked mosaicking mosaiclike mosaics mosaism mosaist mosan mosandrite mosasaur mosasauri mosasaurian mosasaurid mosasauroid mosasaurs mosasaurus mosbolletjie mosbolletjies moschate moschatel moschatelline moschatels moschiferous moschine moschus moscow mose mosed mosel moselle moses mosesite mosette mosey moseyed moseying moseys mosh moshav moshavim moshed mosher moshers moshes moshing moshings mosing mosk moskeneer mosker moskonfyt moskonfyts mosks moslem moslems moslings mosoceca mosocecum mosque mosquelet mosques mosquish mosquital mosquito mosquitobill mosquitocidal mosquitocide mosquitoes mosquitoey mosquitofish mosquitofishes mosquitoish mosquitoproof mosquitos mosquittoey moss mossback mossbacked mossbacks mossbanker mossberry mossbluiter mossbluiters mossbunker mossbunkers mossed mosser mossers mossery mosses mossful mossgrown mosshead mosshorn mossie mossier mossies mossiest mossiness mossinesses mossing mossland mosslands mossless mosslike mosso mossplant mossplants mosstone mosstrooper mosstroopers mosstroopery mosstrooping mosswort mossy mossyback most mostaccioli mostdeal moste mostest mostests mostic mostlike mostlings mostly mostness mostra mosts mostwhat mot mota motacil motacilla motacillid motacillidae motacilline motatorious motatory mote moted motel moteless motelier moteliers motels moten moter motes motet motets motett motettist motettists motetts motetus motey moth mothball mothballed mothballing mothballs mothed mother motherboard motherboards mothercraft mothercrafts motherdom mothered motherer motherers motherfucker motherfuckers motherfucking mothergate motherhood motherhoods motherhouse motherhouses motheriness mothering motherings motherkin motherkins motherland motherlands motherless motherlessness motherlessnesses motherlike motherliness motherlinesses motherling motherly mothers mothership mothersome motherward motherwise motherwort motherworts mothery mothier mothiest mothless mothlike mothproof mothproofed mothproofer mothproofers mothproofing mothproofs moths mothworm mothy motier motiest motif motific motifs motile motiles motilities motility motion motionable motional motioned motioner motioners motioning motionist motionists motionless motionlessly motionlessness motionlessnesses motions motitation motivate motivated motivates motivating motivation motivational motivationally motivations motivative motivator motivators motive motived motiveless motivelessly motivelessness motivelessnesses motiveness motives motivic motiving motivities motivity motivo motley motleyer motleyest motleyness motleys motlier motliest motmot motmots motocar motocross motocrosses motocycle motofacient motograph motographic motomagnetic moton motoneuron motoneuronal motoneurons motophone motor motorable motorail motorails motorbicycle motorbicycles motorbike motorbiked motorbikes motorbiking motorboat motorboater motorboaters motorboating motorboatings motorboatman motorboats motorbus motorbuses motorbusses motorcab motorcade motorcaded motorcades motorcading motorcar motorcars motorcoach motorcycle motorcycled motorcycler motorcycles motorcycling motorcyclist motorcyclists motordom motordoms motordrome motored motorial motoric motorically motoring motorings motorisation motorisations motorise motorised motorises motorising motorism motorist motorists motorium motoriums motorization motorizations motorize motorized motorizes motorizing motorless motorman motormen motormouth motormouths motorneer motorphobe motorphobia motorphobiac motors motorsailer motorscooters motorship motorships motortruck motortrucks motorway motorways motory motoscafi motoscafo motown motricity motrin mots motser motsers mott motte mottes mottetto mottier mottiest mottle mottled mottledness mottlement mottler mottlers mottles mottling mottlings motto mottoed mottoes mottoless mottolike mottos mottramite motts motty motu motuca motucas motus motyka motza motzas mou mouch moucharabies moucharaby mouchard mouchardism mouchards mouche mouched moucher mouchers mouches mouching mouchoir mouchoirs mouchrabieh moud moudie moudieman moudiewart moudiewarts moudiewort moudieworts moudiwart moudiwarts moudiwort moudiworts moudy moue moued mouedhin moues moufflon moufflons mouflon mouflons mought mouill mouilla mouillation mouille mouillure mouillé mouing moujik moujiks moukden moul moulage moulages mould mouldable mouldboard mouldboards moulded moulder mouldered mouldering moulders mouldery mouldier mouldies mouldiest mouldiness mouldinesses moulding mouldings mouldmade moulds mouldwarp mouldwarps mouldy moule moulin moulinage moulinet moulinets moulins moulleen moulrush mouls moult moulted moulten moulter moulters moulting moultings moults moulvi mouly moun mound moundbird moundbirds mounded moundiness mounding moundlet mounds moundsman moundsmen moundwork moundy mounseer mounseers mount mountable mountably mountain mountained mountaineer mountaineered mountaineering mountaineerings mountaineers mountainer mountainet mountainette mountainless mountainlike mountainous mountainously mountainousness mountainousnesses mountains mountainside mountainsides mountaintop mountaintops mountainward mountainwards mountainy mountance mountant mountants mountebank mountebanked mountebankeries mountebankery mountebanking mountebankings mountebankish mountebankism mountebankisms mountebankly mountebanks mounted mountee mountenance mountenances mountenaunce mountenaunces mounter mounters mountie mounties mounting mountingly mountings mountlet mounts mounture mounty moup mouped mouping moups mourn mourne mourned mourner mourneress mourners mournful mournfuller mournfullest mournfully mournfulness mournfulnesses mourning mourningly mournings mournival mournivals mourns mournsome mous mousaka mousakas mouse mousebane mousebird mousebirds moused mousee mousees mousefish mousefishes mousehawk mousehole mousehound mousekin mousekins mouselet mouselike mouseling mousemill mousepad mousepads mousepiece mousepieces mousepox mouseproof mouser mouseries mousers mousery mouses mouseship mousetail mousetails mousetrap mousetrapped mousetrapping mousetraps mouseweb mousey mousie mousier mousies mousiest mousily mousiness mousinesses mousing mousingly mousings mousle mousled mousles mousling mouslingly mousme mousmee mousmees mousmes mousmé mousmés mousquetaire mousquetaires moussaka moussakas mousse moussed mousseline mousselines mousses mousseux moussing moust moustache moustached moustaches moustachial moustachio moustachioed moustachios mousted mousterian mousting moustoc mousts mousy mout moutan moutans moutarde mouter moutered mouterer mouterers moutering mouters mouth mouthable mouthbreather mouthbreathers mouthbreeder mouthbreeders mouthbrooder mouthe mouthed mouther mouthers mouthes mouthfeel mouthfeels mouthful mouthfuls mouthier mouthiest mouthily mouthiness mouthinesses mouthing mouthingly mouthings mouthishly mouthless mouthlike mouthorgan mouthpart mouthparts mouthpiece mouthpieces mouthpipe mouthroot mouths mouthwash mouthwashes mouthwatering mouthwateringly mouthwise mouthy moutler moutlers mouton moutoneed moutonnae moutonnee moutons mouvemente mouvementé mouzah mouzouna movabilities movability movable movableness movablenesses movables movably movant move moveabilities moveability moveable moveableness moveablenesses moveables moveably moved moveless movelessly movelessness movelessnesses movement movements movent mover movers moves movie moviedom moviedoms moviegoer moviegoers moviegoing moviegoings movieize movieland movielands moviemaker moviemakers moviemaking moviemakings movieola movieolas movies moving movingly movingness movings moviola moviolas mow mowa mowable mowana mowas mowburn mowburned mowburning mowburns mowburnt mowch mowcht mowdiewart mowdiewarts mowdiewort mowdieworts mowdiwart mowdiwarts mowdiwort mowdiworts mowe mowed mower mowers mowha mowhawk mowhay mowie mowing mowings mowland mown mowra mowrah mowras mows mowse mowstead mowt mowth moxa moxas moxibustion moxibustions moxie moxieberries moxieberry moxies moy moya moyas moyen moyenant moyener moyenless moyenne moygashel moygashels moyite moyities moyity moyl moyle moyled moyles moyling moyls moyo moys moz mozambican mozambique mozarab mozart mozartean mozartian moze mozed mozemize mozes mozetta mozettas mozette mozing mozo mozos mozz mozzarella mozzarellas mozzes mozzetta mozzettas mozzette mozzie mozzies mozzle mozzles mp mpb mpbs mpg mph mphps mpret mprets mr mrd mrem mri mridamgam mridamgams mridang mridanga mridangam mridangams mridangas mridangs mrna mrs ms msalliance msasa msb msec msg msh msink msl msource mss mst mster mt mtd mtg mtge mtier mtn mts mtscmd mtx mu muang muazzin mubarat mucago mucaro mucate mucates mucedin mucedinaceous mucedine mucedineous mucedinous much muchacha muchachas muchacho muchachos muchel muchell muchells muchels muches muchfold muchly muchness muchnesses mucho muchwhat mucic mucid mucidities mucidity mucidness muciferous mucific muciform mucigen mucigenous mucigens mucilage mucilages mucilaginous mucilaginously mucilaginousness mucilaginousnesses mucin mucinogen mucinoid mucinolytic mucinous mucins muciparous mucivore mucivorous muck muckamuck muckamucks mucked muckender muckenders mucker muckered muckerer muckering muckerish muckerism muckers mucket muckheap muckheaps muckhill muckhole muckibus muckier muckiest muckily muckiness muckinesses mucking muckite muckle muckles muckluck mucklucks muckman muckment muckmidden muckna muckrake muckraked muckraker muckrakers muckrakes muckraking mucks muckspread muckspreader muckspreaders muckspreading muckspreads mucksweat mucksweats mucksy muckthrift muckweed muckworm muckworms mucky mucluc muclucs mucocele mucocellulose mucocellulosic mucocutaneous mucodermal mucofibrous mucoflocculent mucoid mucoidal mucoids mucolytic mucomembranous muconic mucopeptide mucopeptides mucopolysaccharide mucopolysaccharides mucoprotein mucoproteins mucopurulent mucopus mucor mucoraceae mucoraceous mucorales mucorine mucorioid mucormycosis mucorrhea mucorrhoea mucors mucosa mucosae mucosal mucosanguineous mucosas mucose mucoserous mucosities mucositis mucosity mucosocalcareous mucosogranular mucosopurulent mucososaccharine mucous mucousness mucovioscidosis mucoviscidoses mucoviscidosis mucoviscoidosis mucro mucronate mucronated mucronately mucronation mucronations mucrones mucroniferous mucroniform mucronulate mucronulatous mucros muculent mucuna mucus mucuses mucusin mud mudar mudbank mudbath mudbaths mudbug mudbugs mudcap mudcapped mudcapping mudcaps mudcat mudcats mudd mudde mudded mudden mudder mudders muddied muddier muddies muddiest muddify muddily muddiness muddinesses mudding muddish muddle muddlebrained muddled muddledness muddledom muddlehead muddleheaded muddleheadedly muddleheadedness muddleheadednesses muddleheads muddlement muddleproof muddler muddlers muddles muddlesome muddling muddlingly muddly muddy muddybrained muddybreast muddyheaded muddying muddyings mudee mudfat mudfish mudfishes mudflap mudflaps mudflat mudflats mudflow mudflows mudge mudged mudger mudgers mudges mudging mudguard mudguards mudhead mudhen mudhens mudhole mudholes mudhook mudhooks mudhopper mudir mudiria mudirias mudirieh mudiriehs mudirs mudland mudlark mudlarked mudlarker mudlarking mudlarks mudless mudlogger mudloggers mudlogging mudloggings mudminnow mudminnows mudpack mudpacks mudproof mudpuppies mudpuppy mudra mudras mudrock mudrocks mudroom mudrooms muds mudscow mudscows mudsill mudsills mudskipper mudskippers mudslide mudslides mudsling mudslinger mudslingers mudslinging mudslingings mudspate mudspringer mudstain mudstone mudstones mudsucker mudtrack mudweed mudwort mudworts mudwrestle mueddin mueddins muenchen muenster muensters muermo muesli mueslis muette muezzin muezzins mufasal muff muffed muffer muffet muffetee muffettee muffettees muffin muffineer muffineers muffing muffins muffish muffishness muffle muffled muffledly muffleman mufflemen muffler mufflered mufflers muffles mufflin muffling muffs muffuletta muffulettas muffy muflon muflons mufti muftis mufty mug muga mugearite mugearites mugful mugfuls mugg muggar muggars mugged muggee muggees mugger muggered muggering muggers muggery mugget muggier muggiest muggily mugginess mugginesses mugging muggings muggins mugginses muggish muggles muggletonian muggs muggur muggurs muggy mugho mughopine mughouse mugience mugiency mugient mugil mugilidae mugiliform mugiloid mugiloidea mugs mugshot mugshots muguet mugweed mugwet mugwort mugworts mugwump mugwumperies mugwumpery mugwumpian mugwumpish mugwumpism mugwumpisms mugwumps muhammad muhammadan muhammadanism muhammadi muhammedan muharram muhlenbergia muhlies muhly muid muids muil muils muir muirburn muirburns muircock muirfowl muirs muishond muist muisted muisting muists mujaheddin mujahedeen mujahedin mujahideen mujahidin mujeres mujik mujiks mujtahid mukade mukden mukhtar mukhtars mukluk mukluks muktar muktatma muktear mukti muktuk muktuks mulada muladi mulaprakriti mulatta mulattas mulatto mulattoes mulattoism mulattos mulattress mulattresses mulberries mulberry mulch mulched mulcher mulches mulching mulct mulctable mulctary mulctation mulctative mulctatory mulcted mulcting mulcts mulctuary mulder mule muleback muled mulefoot mulefooted muleman mulemen mules muleskinner muleskinners mulet muleta muletas muleteer muleteers muletress muletta mulewort muley muleys mulga mulgas muliebral muliebria muliebrile muliebrities muliebrity muliebrous mulier mulierine mulierly mulierose mulierosity mulierty muling mulish mulishly mulishness mulishnesses mulism mulita mulk mull mulla mullah mullahism mullahisms mullahs mullar mullarkies mullarky mullas mulled mullein mulleins mullen mullenize mullens muller mullerian mullers mullet mulletry mullets mulley mulleys mullid mullidae mulligan mulligans mulligatawnies mulligatawny mulligrubs mulling mullion mullioned mullioning mullions mullite mullites mullock mullocker mullocks mullocky mulloid mulloidichthys mulloway mulloways mulls mullus mulm mulmul mulmull mulmulls mulmuls mulse mulses mulsh mulshed mulshes mulshing mulsify mult multangle multangula multangular multangularly multangularness multangulous multangulum multanimous multarticulate multeities multeity multi multiaccess multiage multiagency multiangular multiareolate multiarmed multiarticular multiarticulate multiarticulated multiatom multiauthor multiaxial multiaxially multiband multibank multibarrel multibarreled multibillion multibillionaire multibillionaires multibillions multibirth multibit multiblade multibladed multiblock multibranched multibranchiate multibreak multibuilding multibus multibyte multicamerate multicampus multicapitate multicapsular multicar multicarbon multicarinate multicarinated multicast multicasting multicasts multicauline multicausal multicell multicelled multicellular multicellularities multicellularity multicenter multicentral multicentrally multicentric multichain multichambered multichannel multichanneled multichannelled multichannels multicharacter multicharge multichord multichrome multicide multiciliate multiciliated multicipital multicircuit multicircuited multicity multiclient multicoated multicoccous multicoil multicollinearity multicolor multicolored multicolorous multicolors multicolour multicoloured multicolourous multicolours multicolumn multicomponent multicomputer multiconductor multiconstant multicopy multicordate multicore multicorneal multicostate multicounty multicourse multicourses multicrystalline multics multicultural multiculturalism multiculturalisms multiculturalist multiculturalists multicurie multicurrency multicuspid multicuspidate multicuspidated multicuspids multicycle multicycles multicylinder multicylindered multidenominational multidentate multidenticulate multidenticulated multidestination multidialectal multidigitate multidimensional multidimensionalities multidimensionality multidirectional multidisciplinary multidiscipline multidisciplines multidisperse multidivisional multidomain multidrop multidrug multidwelling multidwellings multielectrode multielement multiemployer multiengine multiengined multiengines multienzyme multiethnic multiexhaust multifaced multifaceted multifactor multifactorial multifactorially multifamilial multifamily multifarious multifariously multifariousness multifariousnesses multifarous multifarously multiferous multifetation multifibered multifibred multifibrous multifid multifidly multifidous multifidus multifil multifilament multifilaments multifils multifistular multifistulous multiflagellate multiflagellated multiflash multiflora multiflorae multifloras multiflorous multiflow multiflue multifocal multifoil multifoiled multifoils multifold multifoldness multifoliate multifoliolate multifont multiform multiformed multiformities multiformity multiforms multiframe multifrequency multifunction multifunctional multifurcate multiganglionic multigap multigenerational multigenic multigerm multigrade multigrain multigrains multigranular multigranulate multigranulated multigraph multigrapher multigravida multigravidae multigravidas multigrid multigroup multiguttulate multigym multigyms multigyrate multihandicapped multihead multiheaded multihearth multihop multihospital multihued multihull multihulls multiinfection multijet multijugate multijugous multilaciniate multilamellar multilamellate multilamellous multilaminar multilaminate multilaminated multilane multilaned multilateral multilateralism multilateralisms multilateralist multilateralists multilaterality multilaterally multilayer multilayered multileaving multilevel multileveled multilevelled multilighted multiline multilineal multilinear multilingual multilingualism multilingualisms multilingually multilinguist multilinguists multilirate multiliteral multilith multilobar multilobate multilobe multilobed multilobular multilobulate multilobulated multilocation multilocational multilocular multiloculate multiloculated multiloquence multiloquences multiloquent multiloquies multiloquious multiloquous multiloquy multimachine multimacular multimammate multimanned multimarble multimascular multimedia multimedial multimedias multimegaton multimegatons multimegawatt multimegawatts multimember multimetalic multimetallic multimetallism multimetallist multimeter multimeters multimicrocomputer multimillennial multimillion multimillionaire multimillionaires multimillions multimodal multimodalities multimodality multimode multimolecular multimotor multimotored multination multinational multinationalism multinationalisms multinationals multinervate multinervose multinodal multinodate multinode multinodous multinodular multinomial multinomials multinominal multinominous multinuclear multinucleate multinucleated multinucleolar multinucleolate multinucleolated multiorgasmic multiovular multiovulate multiovulated multipack multipacket multipacks multipage multipaned multipara multiparae multiparameter multiparas multiparient multiparities multiparity multiparous multipart multiparticle multipartisan multipartite multiparty multipartyism multipartyisms multipass multipath multiped multipede multipedes multipeds multiperforate multiperforated multipersonal multiphase multiphaser multiphasic multiphotography multiphoton multipicture multipiece multipinnate multipion multipiston multiplan multiplane multiplanes multiplant multiplated multiplayer multiple multiplepoinding multiplepoindings multiples multiplet multiplets multiplex multiplexed multiplexer multiplexers multiplexes multiplexing multiplexity multiplexor multiplexors multipliable multipliableness multiplicability multiplicable multiplicand multiplicands multiplicate multiplicates multiplication multiplicational multiplications multiplicative multiplicatively multiplicatives multiplicator multiplicators multiplicious multiplicities multiplicity multiplied multiplier multipliers multiplies multiply multiplying multipointed multipolar multipolarities multipolarity multipole multiport multiported multipotent multipotential multipower multipresence multipresences multipresent multiproblem multiprocess multiprocessing multiprocessings multiprocessor multiprocessors multiproduct multiprogram multiprogrammed multiprogramming multiprogrammings multipronged multipurpose multipying multiracial multiracialism multiracialisms multiradial multiradiate multiradiated multiradical multiradicate multiradicular multiramified multiramose multiramous multirange multirate multireflex multiregional multiregister multireligious multiresin multirole multiroom multiroomed multirooted multirotation multirotatory multisaccate multisacculate multisacculated multiscience multisciences multiscreen multiseated multisect multisection multisector multisegmental multisegmentate multisegmented multisense multisensory multisensual multiseptate multiserial multiserially multiseriate multiserver multiservice multishot multisided multisiliquous multisite multisize multiskill multiskilled multiskilling multiskillings multiskills multisonant multisonic multisonorous multisonorously multisonorousness multisonous multisource multispecies multispectral multispeed multispermous multispicular multispiculate multispindle multispindled multispinous multispiral multispired multisport multistage multistaminate multistate multistemmed multistep multistorey multistoried multistories multistory multistranded multistratified multistratous multistriate multistrike multistrikes multisulcate multisulcated multisyllabic multisyllability multisyllable multisystem multitagged multitalented multitarian multitask multitasked multitasking multitaskings multitasks multitentacled multitentaculate multiterminal multitester multitheism multitheist multithread multithreaded multithreading multithreadings multitiered multititular multitoed multiton multitone multitoned multitowered multitrack multitracked multitracking multitracks multitrillion multitrillions multitube multituberculate multituberculated multituberculism multituberculy multitubular multitude multitudes multitudinal multitudinary multitudinism multitudinist multitudinistic multitudinosity multitudinous multitudinously multitudinousness multitudinousnesses multiturn multiunion multiunit multiuse multiuser multivagant multivalence multivalences multivalencies multivalency multivalent multivalents multivalued multivalve multivalved multivalvular multivane multivariable multivariant multivariate multivariates multivarious multiversant multiverse multiversion multiversities multiversity multivibrator multivibrators multiview multiviewing multivincular multivious multivitamin multivitamins multivocal multivocality multivocalness multivocals multivoiced multivolent multivoltine multivolume multivolumed multivorous multiwall multiwarhead multiwavelength multiway multiword multiwords multiyear multo multocular multum multums multungulate multungulates multure multured multurer multurers multures multuring mulvel mulwi mum mumble mumblebee mumbled mumblement mumblements mumbler mumblers mumbles mumbletypeg mumbletypegs mumbling mumblingly mumblings mumbly mumbo mumbudget mumchance mumchances mume mumhouse mumjuma mumm mummed mummer mummeries mummers mummery mummia mummias mummichog mummichogs mummick mummied mummies mummification mummifications mummified mummifies mummiform mummify mummifying mumming mummings mummock mummocks mumms mummy mummydom mummyhood mummying mummyings mummylike mumness mump mumped mumper mumpers mumphead mumping mumpish mumpishly mumpishness mumpishnesses mumps mumpsimus mumpsimuses mumruffin mums mumsier mumsiest mumsy mumu mumus mun munch munchausen munched munchee muncheel muncher munchers munches munchet munchies munching munchkin munchkins munchy muncupate mund munda mundal mundane mundanely mundaneness mundanenesses mundaner mundanes mundanest mundanism mundanities mundanity mundation mundatory mundic mundics mundificant mundification mundifications mundificative mundified mundifier mundifies mundify mundifying mundil mundivagant mundle mundungo mundungos mundungus mundunguses mundunugu mung munga mungcorn mungcorns munge munged munger mungey munging mungo mungoes mungofa mungoos mungoose mungooses mungos mungrel mungs munguba mungy muni munic munich municipal municipalisation municipalisations municipalise municipalised municipaliser municipalises municipalising municipalism municipalisms municipalist municipalists municipalities municipality municipalization municipalizations municipalize municipalized municipalizer municipalizes municipalizing municipally municipals municipia municipium munific munificence munificences munificency munificent munificently munificentness munified munifience munifiences munifies munify munifying muniment muniments munis munite munited munites muniting munition munitionary munitioned munitioneer munitioneers munitioner munitioners munitionette munitionettes munitioning munitions munity munj munja munjeet munjistin munjuk munnion munnions muns munshi munshis munsif munsiff munster munsters munt muntiacus muntin munting muntingia muntings muntins muntjac muntjacs muntjak muntjaks munts muntu muntus muntz muon muonic muonium muoniums muons muppet muppets muppie muppies muqaddam muqaddams mura muraena muraenas muraenid muraenidae muraenids muraenoid murage murages mural muraled muralist muralists muralled murally murals murarium muras murasakite murchy murciana murdabad murder murdered murderee murderees murderer murderers murderess murderesses murdering murderingly murderish murderment murderous murderously murderousness murderousnesses murders murdrum mure mured murein mureins murena murenas murenger mures murex murexan murexes murexid murexide murga murgavi murgeon murgeoned murgeoning murgeons muriate muriated muriates muriatic muricate muricated murices muricid muriciform muricine muricoid muriculate murid muridae muridism murids muriform muriformly murine murines muring murinus murionitric muritaniya muriti murium murk murker murkest murkier murkiest murkily murkiness murkinesses murkish murkly murkness murks murksome murky murl murlack murlain murlains murlan murlans murled murlemewes murlier murliest murlin murling murlins murlock murls murly murmur murmuration murmurations murmurator murmured murmurer murmurers murmuring murmuringly murmurings murmurish murmurless murmurlessly murmurous murmurously murmurs murnival muroid muroidea muromontite murphied murphies murphy murphying murr murra murrah murrain murrained murrains murral murram murrams murraro murras murray murrays murre murrelet murrelets murren murrens murres murrey murreys murrha murrhas murrhine murrhines murrhuine murries murrin murrina murrine murrines murrins murrion murrions murrnong murrs murry murshid murther murthered murtherer murtherers murthering murthers murumuru muruxi murva murvas murza mus musa musaceae musaceous musal musales musang musangs musar musard musardry musca muscade muscadel muscadelle muscadels muscadet muscadets muscadin muscadine muscadines muscadins muscae muscalonge muscardine muscardines muscardinus muscari muscariform muscarine muscarines muscarinic muscaris muscat muscatel muscatels muscatoria muscatorium muscatoriums muscats muscavada muscavado muschelkalk musci muscicapa muscicapidae muscicapine muscicide muscicole muscicoline muscicolous muscid muscidae muscids musciform muscivora muscle musclebound musclebuilder musclebuilding muscled muscleless musclelike muscleman musclemen muscles musclier muscliest muscling musclings muscly muscoid muscoidea muscologic muscological muscologies muscologist muscology muscone muscones muscose muscoseness muscosity muscot muscovade muscovadite muscovado muscovados muscovite muscovites muscovitization muscovitize muscovitized muscovy muscow musculamine muscular muscularise muscularities muscularity muscularize muscularly musculation musculations musculature musculatures muscule musculi musculin musculoarterial musculocellular musculocutaneous musculodermic musculoelastic musculofibrous musculointestinal musculoligamentous musculomembranous musculopallial musculophrenic musculoskeletal musculospinal musculospiral musculotegumentary musculotendinous musculous musculus musd muse mused museful musefully musefulness museist museless muselessness muselike museographer museographist museography museological museologically museologies museologist museologists museology muser musers musery muses muset musets musette musettes museum museumise museumize museums musgoi musgu mush musha mushaa mushed musher mushers mushes mushhead mushheaded mushheadedness mushier mushiest mushily mushiness mushinesses mushing mushla mushmelon mushmouth mushmouths mushrebiyeh mushroom mushroomed mushroomer mushroomers mushroomic mushrooming mushroomlike mushrooms mushroomy mushru mushrump mushy music musica musical musicale musicales musicalisation musicalisations musicalise musicalised musicalises musicalising musicalities musicality musicalization musicalizations musicalize musicalized musicalizes musicalizing musically musicalness musicalnesses musicals musicassette musicassettes musicate musician musiciana musicianer musicianers musicianly musicians musicianship musicianships musick musicked musicker musickers musicking musicks musicless musiclike musicmonger musico musicoartistic musicodramatic musicofanatic musicographer musicography musicological musicologically musicologies musicologist musicologists musicologue musicology musicomania musicomechanical musicophile musicophilosophical musicophobia musicophysical musicopoetic musicotherapies musicotherapy musicproof musicry musics musie musily musimon musimons musing musingly musings musion musit musits musive musjid musjids musk muskadel muskallonge muskallunge muskat musked muskeg muskeggy muskegs muskellunge muskellunges muskelunge muskelunges musket musketade musketeer musketeers musketlike musketo musketoon musketoons musketproof musketries musketry muskets muskflower muskgrass muskhogean muskie muskier muskies muskiest muskified muskily muskiness muskinesses musking muskish muskit muskits muskle muskles musklike muskmelon muskmelons muskogean muskogee muskone muskones muskox muskoxen muskrat muskrats muskroot muskroots musks muskwood musky muslim muslimism muslims muslin muslined muslinet muslinets muslinette muslins musmon musmons musnud muso musophaga musophagidae musophagine musophobia musos muspike muspikes musquash musquashes musquashroot musquashweed musquaspen musquaw musqueto musquetoon musquetoons musrol musrols musroomed muss mussable mussably mussack mussal mussalchee musse mussed mussel musselcracker musseled musseler musselled mussellim mussels musses mussick mussier mussiest mussily mussiness mussinesses mussing mussitate mussitated mussitates mussitating mussitation mussitations mussolini mussuck mussuk mussulman mussurana mussy must mustache mustached mustaches mustachial mustachio mustachioed mustachios mustafina mustafuz mustagh mustang mustanger mustangs mustard mustarder mustards mustardy musted mustee mustees mustela mustelid mustelidae mustelids mustelin musteline mustelines mustelinous musteloid mustelus muster musterable musterdevillers mustered musterer musterers musterial mustering mustermaster musters musth musths mustier musties mustiest mustify mustily mustiness mustinesses musting mustnt musts mustulent musty musumee mut muta mutabilities mutability mutable mutableness mutablenesses mutably mutafacient mutage mutagen mutageneses mutagenesis mutagenetic mutagenic mutagenically mutagenicities mutagenicity mutagenise mutagenised mutagenises mutagenising mutagenize mutagenized mutagenizes mutagenizing mutagens mutanda mutandis mutandum mutant mutants mutarotate mutarotation mutase mutases mutate mutated mutates mutating mutation mutational mutationally mutationism mutationist mutationists mutations mutatis mutative mutator mutatory mutawalli mutawallis mutch mutches mutchkin mutchkins mute muted mutedly mutedness mutely muteness mutenesses muter mutes mutesarif mutescence mutessarif mutessarifat mutessarifats mutessarifs mutest muth muthmannite muthmassel muti mutic muticate muticous mutilate mutilated mutilates mutilating mutilation mutilations mutilative mutilator mutilators mutilatory mutillid mutilous mutinado mutine mutined mutineer mutineered mutineering mutineers mutines muting mutinied mutinies mutining mutinize mutinous mutinously mutinousness mutinousnesses mutinus mutiny mutinying mutis mutisia mutism mutisms mutist mutistic mutive mutivity muton mutons mutoscope mutoscopes mutoscopic muts mutsje mutsuddy mutt mutten mutter mutteration mutterations muttered mutterer mutterers muttering mutteringly mutterings mutters mutton muttonbird muttonchop muttonchops muttonfish muttonfishes muttonhead muttonheaded muttonheadedness muttonheads muttonhood muttonmonger muttons muttonwood muttony mutts mutual mutualisation mutualisations mutualise mutualised mutualises mutualising mutualism mutualisms mutualist mutualistic mutualistically mutualists mutualities mutuality mutualization mutualizations mutualize mutualized mutualizes mutualizing mutually mutualness mutuals mutuant mutuary mutuate mutuatitious mutuca mutucas mutuel mutuels mutular mutulary mutule mutules mutus mutuum mutuums mutwalli muumuu muumuus muvule mux muxed muxes muxing muyusa muzak muzaky muzarab muzhik muzhiks muzjik muzjiks muzoona muzz muzzier muzziest muzzily muzziness muzzinesses muzzle muzzled muzzleloader muzzleloaders muzzleloading muzzler muzzlers muzzles muzzlewood muzzling muzzy mv mvp mvule mvules mw mwalimu mwera mx mxd my mya myaceae myacidae myadestes myal myalgia myalgias myalgic myalia myalism myalisms myall myalls myanmar myarian myases myasis myasthenia myasthenias myasthenic myasthenics myatonia myatonic myatony myatrophy myc mycele myceles mycelia mycelial mycelian mycelioid mycelium myceloid mycenae mycenaean mycetes mycetism mycetocyte mycetogenesis mycetogenetic mycetogenic mycetogenous mycetoid mycetological mycetologies mycetology mycetoma mycetomas mycetomata mycetomatous mycetome mycetophagous mycetophilid mycetophilidae mycetous mycetozoan mycetozoans mycetozoon mycobacteria mycobacteriacaea mycobacterial mycobacterium mycocecidium mycocyte mycoderm mycoderma mycodermatoid mycodermatous mycodermic mycodermitis mycodesmoid mycodomatia mycodomatium mycoflora mycoflorae mycofloras mycogastritis mycohaemia mycohemia mycoid mycol mycologic mycological mycologically mycologies mycologist mycologists mycologize mycology mycomycete mycomycetous mycomycin mycomyringitis mycophagies mycophagist mycophagists mycophagous mycophagy mycophile mycophiles mycophyte mycoplasm mycoplasma mycoplasmal mycoplasmas mycoplasmata mycoplasmatacaea mycoplasmatales mycoplasmic mycoprotein mycorhiza mycorhizal mycorhizas mycorrhiza mycorrhizae mycorrhizal mycorrhizas mycorrhizic mycorrihizas mycose mycoses mycosin mycosis mycosozin mycostat mycostatic mycostatin mycosterol mycosymbiosis mycotic mycotoxic mycotoxicoses mycotoxicosis mycotoxin mycotoxins mycotrophic mycrosporidia mycs mycteria mycteric mycterism mycteroperca myctophid myctophidae mydaleine mydatoxine mydine mydriases mydriasine mydriasis mydriatic mydriatics mydriatine myectomize myectomy myectopia myectopy myel myelalgia myelapoplexy myelasthenia myelatrophy myelauxe myelemia myelencephala myelencephalic myelencephalon myelencephalons myelencephalous myelic myelin myelinate myelinated myelination myelinations myeline myelines myelinic myelinisation myelinisations myelinization myelinizations myelinogenesis myelinogenetic myelinogeny myelins myelitic myelitides myelitis myelitises myeloblast myeloblastic myeloblasts myelobrachium myelocele myelocerebellar myelocoele myelocyst myelocystic myelocystocele myelocyte myelocytes myelocythaemia myelocythemia myelocytic myelocytosis myelodiastasis myeloencephalitis myelofibroses myelofibrosis myelofibrotic myeloganglitis myelogenesis myelogenetic myelogenic myelogenous myelogonium myelogram myelograms myelographic myelographically myelographies myelography myeloic myeloid myelolymphangioma myelolymphocyte myeloma myelomalacia myelomas myelomata myelomatoid myelomatosis myelomatous myelomenia myelomeningitis myelomeningocele myelomere myelon myelonal myeloneuritis myelonic myelons myeloparalysis myelopathic myelopathies myelopathy myelopetal myelophthisis myeloplast myeloplastic myeloplax myeloplaxes myeloplegia myelopoiesis myelopoietic myeloproliferative myelorrhagia myelorrhaphy myelosarcoma myelosclerosis myelospasm myelospongium myelosuppression myelosuppressions myelosyphilis myelosyphilosis myelosyringosis myelotherapy myelozoan myentasis myenteric myenteron myesthesia myg mygale mygales mygalid mygaloid myiases myiasis myiferous myiodesopsia myiosis myitis mykiss mylanta mylar mylars myliobatid myliobatidae myliobatine myliobatoid mylitta mylodei mylodon mylodons mylodont mylodontid mylodontidae mylodonts mylohyoid mylohyoidean mylohyoidei mylohyoideus mylohyoids mylonite mylonites mylonitic mylonitisation mylonitisations mylonitise mylonitised mylonitises mylonitising mylonitization mylonitizations mylonitize mylonitized mylonitizes mylonitizing mym mymarid myna mynah mynahes mynahs mynas mynheer mynheers mynpacht mynpachtbrief myoalbumin myoalbumose myoatrophy myoblast myoblastic myoblasts myocardia myocardiac myocardial myocardiogram myocardiograph myocardiographs myocardiopathies myocardiopathy myocarditic myocarditis myocarditises myocardium myocardiums myocastor myocdia myocele myocellulitis myoclonic myoclonus myoclonuses myocoel myocoele myocoelom myocolpitis myocomma myocommata myocyte myodegeneration myodiastasis myodynamia myodynamic myodynamics myodynamiometer myodynamometer myodynia myoedema myoelectric myoelectrical myoendocarditis myoenotomy myoepicardial myoepithelial myofibril myofibrilla myofibrillar myofibrils myofibroma myofilament myofilaments myogen myogenesis myogenetic myogenic myogenicity myogenous myogens myoglobin myoglobins myoglobinuria myoglobulin myogram myograms myograph myographer myographic myographical myographically myographies myographist myographists myographs myography myohaematin myohematin myohemoglobin myohemoglobinuria myoid myoidema myoinositol myoinositols myokinesis myokymia myolemma myolipoma myoliposis myoliposmias myologic myological myologies myologisral myologist myologists myology myolysis myoma myomalacia myomancies myomancy myomantic myomas myomata myomatous myomectomies myomectomy myomelanosis myomere myometritis myometrium myomohysterectomy myomorph myomorpha myomorphic myomotomy myonema myoneme myoneural myoneuralgia myoneurasthenia myoneure myoneuroma myoneurosis myonosus myopachynsis myoparalysis myoparesis myopathia myopathic myopathies myopathy myope myoperitonitis myopes myophan myophore myophorous myophysical myophysics myopia myopias myopic myopical myopically myopics myopies myoplasm myoplastic myoplasty myopolar myoporaceous myoporad myoproteid myoprotein myoproteose myops myopses myopus myopy myorrhaphy myorrhexis myosalpingitis myosarcoma myosarcomatous myosclerosis myoscope myoscopes myoseptum myoses myosin myosinogen myosinose myosins myosis myositic myositis myositises myosote myosotes myosotis myosotises myospasm myospasmia myosuture myosynizesis myotacismus myotasis myotenotomy myothermic myotic myotics myotis myotome myotomes myotomic myotomies myotomy myotonia myotonias myotonic myotonus myotony myotrophy myotube myotubes myowun myoxine myrabalanus myrabolam myrbane myrbanes myrcene myrcia myrciaria myriacanthous myriacoulomb myriad myriaded myriadfold myriadfolds myriadly myriads myriadth myriadths myriagram myriagramme myrialiter myrialitre myriameter myriametre myriapod myriapoda myriapodan myriapodous myriapods myriarch myriarchy myriare myrica myricaceae myricaceous myricales myricaria myricas myricetin myricin myricyl myricylic myringa myringas myringectomy myringitis myringitises myringodectomy myringodermatitis myringomycosis myringoplasty myringoscope myringoscopes myringotome myringotomies myringotomy myriological myriologist myriologue myriophyllite myriophyllous myriophyllum myriopod myriopodous myriopods myriorama myrioramas myrioscope myrioscopes myriosporous myriotheism myriotheist myriotrichiaceous myristate myristic myristica myristicaceae myristicaceous myristicivorous myristin myristone myrmecia myrmecobiine myrmecobine myrmecobius myrmecochorous myrmecochory myrmecoid myrmecoidy myrmecologic myrmecological myrmecologies myrmecologist myrmecologists myrmecology myrmecophaga myrmecophagidae myrmecophagine myrmecophagoid myrmecophagous myrmecophile myrmecophiles myrmecophilies myrmecophilism myrmecophilous myrmecophily myrmecophobic myrmecophyte myrmecophytic myrmekite myrmeleon myrmeleontidae myrmicid myrmicine myrmicoid myrmidon myrmidones myrmidonian myrmidons myrmotherine myrobalan myrobalans myron myronate myronic myropolist myrosin myrosinase myrothamnaceous myroxylon myrrh myrrhed myrrhic myrrhine myrrhines myrrhis myrrhol myrrhols myrrhophore myrrhs myrrhy myrsinaceae myrsinaceous myrsinad myrsine myrt myrtaceae myrtaceous myrtal myrtales myrtiform myrtillocactus myrtle myrtleberry myrtlelike myrtles myrtol myrtus mys mysel myself mysell mysid mysidacea mysidae mysidean mysids mysis mysogynism mysoid mysophilia mysophobia mysophobias mysophobic mysosophist mysost mysosts MySQL myst mystacal mystacial mystacine mystacinous mystagog mystagogic mystagogical mystagogically mystagogies mystagogs mystagogue mystagogues mystagogus mystagoguses mystagogy mystax mysterial mysteriarch mysteried mysteries mysteriosophic mysteriosophy mysterious mysteriously mysteriousness mysteriousnesses mysterize mystery mysterying mystes mystic mystical mysticality mystically mysticalness mysticalnesses mysticete mysticetes mysticeti mysticetous mysticise mysticism mysticisms mysticity mysticize mysticized mysticizing mysticly mystics mystific mystifically mystification mystifications mystificator mystificatory mystified mystifiedly mystifier mystifiers mystifies mystify mystifying mystifyingly mystique mystiques mytacism myth mythi mythic mythical mythicalism mythicality mythically mythicalness mythicisation mythicise mythicised mythiciser mythicisers mythicises mythicising mythicism mythicisms mythicist mythicists mythicization mythicizations mythicize mythicized mythicizer mythicizers mythicizes mythicizing mythier mythiest mythification mythified mythifier mythify mythifying mythise mythised mythises mythising mythism mythisms mythist mythists mythize mythized mythizes mythizing mythland mythmaker mythmakers mythmaking mythmakings mythoclast mythoclastic mythogeneses mythogenesis mythogeny mythogonic mythogony mythographer mythographers mythographies mythographist mythography mythogreen mythoheroic mythohistoric mythoi mythol mythologema mythologer mythologers mythologian mythologians mythologic mythological mythologically mythologies mythologisation mythologisations mythologise mythologised mythologiser mythologisers mythologises mythologising mythologist mythologists mythologization mythologizations mythologize mythologized mythologizer mythologizers mythologizes mythologizing mythologue mythology mythomane mythomanes mythomania mythomaniac mythomaniacs mythomanias mythometer mythonomy mythopastoral mythopeic mythopeist mythopoeia mythopoeias mythopoeic mythopoeism mythopoeist mythopoeists mythopoem mythopoeses mythopoesis mythopoesy mythopoet mythopoetic mythopoetical mythopoetise mythopoetised mythopoetising mythopoetize mythopoetized mythopoetizing mythopoetry mythopoets mythos myths mythus mythy mytilacean mytilaceous mytilid mytilidae mytiliform mytiloid mytilotoxine mytilus myxa myxadenitis myxadenoma myxaemia myxameba myxamebae myxamebas myxamoeba myxangitis myxasthenia myxedema myxedemas myxedematoid myxedematous myxedemic myxemia myxine myxinidae myxiniformes myxinikela myxinoid myxinoidea myxinoidei myxo myxobacter myxobacterales myxobacteria myxobacteriaceae myxobacteriaceous myxobacteriales myxobacterium myxoblastoma myxocephalus myxochondroma myxochondrosarcoma myxocystoma myxocyte myxocytes myxoedema myxoedemas myxoedematous myxoedemic myxoenchondroma myxofibroma myxofibrosarcoma myxoflagellate myxogaster myxogastric myxogastrous myxoglioma myxoid myxoinoma myxolipoma myxoma myxomas myxomata myxomatoses myxomatosis myxomatous myxomycete myxomycetes myxomycetous myxomycota myxomyoma myxoneuroma myxopapilloma myxophobia myxophyceae myxophycean myxopod myxopodan myxopodia myxopodium myxopodous myxopoiesis myxorrhea myxosarcoma myxospongian myxospore myxosporidia myxosporidian myxosporous myxotheca myxoviral myxovirus myxoviruses myzodendraceous myzont myzostoma myzostomatous myzostome myzostomid myzostomidan myzostomous mzee mzees mzungu mzungus mésalliance mésalliances métairie métairies métayage métayer métayers métier métiers métisse métisses mêlée mêlées n na naa naam naams naan naans naartje naartjes nab nabak nabal nabalus nabbed nabber nabbers nabbing nabbuk nabby nabcheat nabe nabes nabis nabk nabks nabla nablas nable nablus nabob naboberies nabobery nabobess nabobesses nabobical nabobically nabobish nabobishly nabobism nabobisms nabobry nabobrynabobs nabobs nabobship naboom naboth nabs nabses nabu nabumetone nacarat nacarats nacarine nace nacelle nacelles nach nachani nachas nache naches nacho nachos nachtmaal nachtmaals nachtmml nachus nacimiento nacket nackets nacre nacred nacreous nacreousness nacres nacrine nacrite nacrites nacrous nacry nad nada nadas nadder nadir nadiral nadirs nadolol nadorite nae naebodies naebody naegait naegate naegates nael naemorhedine naemorhedus naether naething naethings naeve naeves naevi naevoid naevus naf naff naffed naffer naffest naffing naffly naffness naffnesses naffs nag naga nagaika nagami nagana naganas nagapie nagapies nagara nagari nagaris nagas nagasaki nagatelite nageia nagel naggar nagged nagger naggers naggier naggiest naggin nagging naggingly naggingness naggish naggle naggly naggy naght nagi naging nagkassar nagmaal nagmaals nagman nagnag nagnail nagor nagors nags nagsman nagster nagual nagualism nagualist nagware nagwares nagyagite nah nahal nahals nahoor nahuatl nahuatls nahum naiad naiadaceae naiadaceous naiadales naiades naiads naiant naias naib naid naif naifer naifest naifly naifs naig naigie naigue naik naiki naiks nail nailable nailbin nailbrush nailbrushes nailed nailer naileress naileries nailers nailery nailfile nailfold nailfolds nailhead nailheads nailing nailings nailless naillike nailprint nailproof nailrod nails nailset nailsets nailshop nailsick nailsickness nailsmith nailwort naily nain nainsel nainsell nainsells nainsook nainsooks naio naipkin naique naira nairas nairobi nairu nairus nairy nais naish naiskoi naiskos naissance naissant naither naitly naive naively naiveness naivenesses naiver naives naivest naivete naivetes naiveties naivetivet naivety naiveté naivetés naivist naivite naja najadaceae najas nak nake naked nakeder nakedest nakedise nakedish nakedize nakedly nakedness nakednesses nakedweed nakedwood naker nakers nakfa nakfas nakhlite nakhod nakhoda nako nakong nakoo nala nalas nale naled naleds nalfon nalla nallah nallahs nallas nalorphine nalorphines naloxone naloxones naltrexone naltrexones nam namability namable namaqua namare namaskar namaskars namaste namastes namatio namaycush namaz namazlik namban namby namda name nameability nameable nameboard namecheck namechecked namechecking namechecks named namedrop namedropper namedroppers namedropping namedroppings nameko nameless namelessless namelessly namelessness namelessnesses nameling namely nameplate nameplates namer namers names namesake namesakes nametag nametags nametape nametapes nameworthy namibia namibian naming namings namma nammad nammo nammu nams namtar namtaru nan nana nanako nanander nanas nanawood nance nancere nances nancies nancy nancys nandi nandin nandina nandinas nandine nandines nandins nandoo nandoos nandow nandrolone nandu nandus nanduti nane nanes nanga nangca nanger nangka nanigo nanisation nanisations nanism nanisms nanitic nanization nanizations nanjing nankeen nankeens nankin nanking nankins nanmu nanna nannander nannandrium nannandrous nannas nannie nannied nannies nanninose nannofossil nannofossils nannoplankton nannoplanktonic nannoplanktons nanny nannyberries nannyberry nannybush nannygai nannygais nannyghai nannyghais nannying nannyish nanobot nanobots nanocephalia nanocephalic nanocephalism nanocephalous nanocephalus nanocephaly nanocurie nanocuries nanofossil nanofossils nanogram nanogramme nanogrammes nanograms nanoid nanoinstruction nanoinstructions nanomelia nanomelous nanomelus nanometer nanometers nanometre nanometres nanomia nanoplankton nanoplanktons nanoprogram nanoprogramming nanosec nanosecond nanoseconds nanosoma nanosomia nanosomus nanostore nanostores nanotechnologies nanotechnologist nanotechnologists nanotechnology nanotesla nanoteslas nanotube nanotubes nanowatt nanowatts nanoword nanpie nans nansomia nant nanticoke nantle nantokite nants nantua nantucket nantz naoi naological naology naometry naomi naos naoses naovely nap napa napaea napal napalm napalmed napalming napalms napas nape napea napead napecrest napellus naperer naperies napery napes naphtali naphtha naphthacene naphthalate naphthalene naphthaleneacetic naphthalenes naphthalenesulphonic naphthalenic naphthalenoid naphthalic naphthalidine naphthalin naphthaline naphthalines naphthalins naphthalise naphthalised naphthalises naphthalising naphthalization naphthalize naphthalized naphthalizes naphthalizing naphthalol naphthamine naphthanthracene naphthas naphthene naphthenes naphthenic naphthinduline naphthionate naphtho naphthoic naphthol naphtholate naphtholize naphthols naphtholsulphonate naphtholsulphonic naphthoquinone naphthoresorcinol naphthosalol naphthous naphthoxide naphthyl naphthylamine naphthylamines naphthylaminesulphonic naphthylene naphthylic naphthyls naphtol naphtols napier napierian napiform napkin napkined napkining napkins naples napless naplessness napoleon napoleonic napoleonite napoleonites napoleons napoo napooed napooh napooing napoos nappa nappas nappe napped napper nappers nappes nappie nappier nappies nappiest nappiness nappinesses napping nappishness nappy naprapath naprapathies naprapathy napron naprons naprosyn naproxen naproxens naps napthionic naptime naptimes napu nar naranjilla naras narases narc narced narceen narceens narcein narceine narceines narceins narcing narciscissi narcism narcisms narciss narcissan narcissi narcissine narcissism narcissisms narcissist narcissistic narcissistically narcissists narcissus narcissuses narcist narcistic narcists narco narcoanalyses narcoanalysis narcoanesthesia narcocatharses narcocatharsis narcohypnia narcohypnoses narcohypnosis narcohypnotic narcolepsies narcolepsy narcoleptic narcoleptics narcoma narcomania narcomaniac narcomaniacal narcomas narcomata narcomatous narcomedusan narcos narcose narcoses narcosis narcostimulant narcosyntheses narcosynthesis narcoterrorism narcoterrorisms narcoterrorist narcoterrorists narcotherapies narcotherapist narcotherapy narcotia narcotic narcotical narcotically narcoticalness narcoticism narcoticness narcotics narcotin narcotina narcotine narcotines narcotinic narcotisation narcotisations narcotise narcotised narcotises narcotising narcotism narcotisms narcotist narcotists narcotization narcotizations narcotize narcotized narcotizes narcotizing narcotrafficking narcous narcs nard narded nardine narding nardo nardoo nardoos nards nardu nardus nare nares narghile narghiles narghilies narghillies narghilly narghily nargil nargile nargileh nargilehs nargiles nargilies nargillies nargilly nargily narial naric narica naricorn naricorns nariform narine naringenin naringin naris nark narked narkier narkiest narking narks narky narquois narr narra narrante narras narrases narratable narrate narrated narrater narraters narrates narrating narratio narration narrational narrations narrative narratively narratives narratological narratologies narratologist narratologists narratology narrator narrators narratory narratress narratrix narrawood narre narrishkeit narrow narrowband narrowcast narrowcasted narrowcasting narrowcastings narrowcasts narrowed narrower narrowest narrowhearted narrowheartedness narrowing narrowingness narrowings narrowish narrowly narrowness narrownesses narrows narrowy narsarsukite narsinga narthecal narthecium narthex narthexes nartjie nartjies narw narwal narwals narwhal narwhale narwhales narwhalian narwhals nary nas nasa nasab nasal nasale nasalis nasalisation nasalisations nasalise nasalised nasalises nasalising nasalism nasalisms nasalities nasality nasalization nasalizations nasalize nasalized nasalizes nasalizing nasally nasals nasalward nasalwards nasard nasards nasat nasaump nascence nascences nascencies nascency nascent nasch nasciturus nasdaq naseberries naseberry naseby nasethmoid nash nashgab nashgabs nashgob nashville nasi nasial nasicorn nasicornous nasiform nasilabial nasillate nasillation nasioalveolar nasiobregmatic nasioinial nasiomental nasion nasions nasitis naso nasoalveola nasoantral nasobasilar nasobronchial nasobuccal nasoccipital nasociliary nasoethmoidal nasofrontal nasogastric nasolabial nasolachrymal nasolacrimal nasolacrymal nasological nasologist nasology nasomalar nasomaxillary nasonite nasoorbital nasopalatal nasopalatine nasopharyngeal nasopharynges nasopharyngitis nasopharynx nasopharynxes nasoprognathic nasoprognathism nasorostral nasoscope nasoseptal nasosinuitis nasosinusitis nasosubnasal nasoturbinal nasrol nassau nassellarian nasser nassology nast nastalik nastaliks nastaliq nastic nastier nasties nastiest nastika nastily nastiness nastinesses nasturtion nasturtium nasturtiums nasty nasua nasus nasute nasuteness nasutes nasutiform nasutus nat natability nataka natal natale natalism natalist natalitial natalities natality natally nataloin natals natant natantia natantly natation natational natations natator natatores natatoria natatorial natatorious natatorium natatoriums natatory natch natchbone natches natchnee nates nathe natheless nathelesse nathemo nathemore nather nathless natica naticidae naticiform naticine naticoid natiform natimortality nation national nationalisation nationalisations nationalise nationalised nationaliser nationalisers nationalises nationalising nationalism nationalisms nationalist nationalistic nationalistically nationalists nationalities nationality nationalization nationalizations nationalize nationalized nationalizer nationalizers nationalizes nationalizing nationally nationalness nationals nationalty nationhood nationhoods nationless nations nationwide native natively nativeness nativenesses natives nativism nativisms nativist nativistic nativists nativities nativity nativus natl nato natr natricine natrium natriums natriureses natriuresis natriuretic natriuretics natrix natrochalcite natrojarosite natrolite natrolites natron natrons nats natter nattered natteredness natterer natterers nattering natterjack natterjacks natters nattery nattier nattiest nattily nattiness nattinesses nattle nattock nattoria natty natu natuary natura naturae natural naturale naturalesque naturalia naturalisation naturalisations naturalise naturalised naturaliser naturalisers naturalises naturalising naturalism naturalisms naturalist naturalistic naturalistically naturalists naturality naturalization naturalizations naturalize naturalized naturalizer naturalizers naturalizes naturalizing naturally naturalness naturalnesses naturals naturata nature naturecraft natured naturedly naturel naturelike natureliked naturellement natureopathy natures naturing naturise naturism naturisms naturist naturistic naturistically naturists naturize naturopath naturopathic naturopathies naturopathist naturopaths naturopathy natus nauch nauclea nauclerus naucorid naucrar naucrary naucrates naufrage naufragous naugahyde nauger naught naughtier naughties naughtiest naughtily naughtiness naughtinesses naughts naughty naujaite naukrar naulage naulum naumacay naumachia naumachiae naumachias naumachies naumachy naumannite naumk naumkeag naumkeager naunt nauntle naunts naupathia nauplial naupliform nauplii naupliiform nauplioid nauplius nauplplii naur nauran nauropometer nauru nauruan nauscopy nausea nauseam nauseant nauseants nauseaproof nauseas nauseate nauseated nauseates nauseating nauseatingly nauseatingness nauseation nauseations nauseative nauseous nauseously nauseousness nauseousnesses nauseum nausity naut nautch nautches nauther nautic nautica nautical nauticality nautically nauticals nautics nautiform nautilacean nautili nautilicone nautilidae nautiliform nautilite nautiloid nautiloidean nautiloids nautilus nautiluses nautophone nav navagium navaho navahoes navahos navaid navaids navajo navajos naval navalese navalism navalisms navalist navalistic navalistically navally navar navarch navarchies navarchs navarchy navarho navarhos navarin navarino navarins navars nave navel naveled navellike navels navelwort navelworts navely naveness naves navet naveta navete navette navettes navety navew navews navi navicella navicert navicerts navicula naviculaeform navicular naviculare naviculars naviculas naviculoid navies naviform navig navigabilities navigability navigable navigableness navigablenesses navigably navigant navigate navigated navigates navigating navigation navigational navigationally navigations navigator navigators navigerous navipendular navipendulum navis navite navvied navvies navvy navvying navy naw nawab nawabs nawabship nawies nawle nawob nawt nay nayaur nays naysaid naysay naysayer naysayers naysaying naysays naythles nayward naywards nayword naywords nazard nazarene nazarenes nazareth nazarite nazdrowie naze nazeranna nazes nazi nazification nazifications nazified nazifies nazify nazifying naziism nazim nazir nazirite nazirs nazis nazism nb nbe nbg nbw nco nd ndebele ndjamena ndoderm ne nea neaf neafe neafes neaffe neaffes neakes neal nealed nealing neallotype neals neandertal neandertals neanderthal neanderthaler neanderthalers neanderthalian neanderthaloid neanderthals neanic neanthropic neap neaped neaping neapolitan neapolitans neaps neaptide neaptides near nearable nearabout nearabouts nearaivays nearaway nearaways nearby nearctic neared nearer nearest nearing nearish nearlier nearliest nearly nearmost nearness nearnesses nears nearshore nearside nearsides nearsight nearsighted nearsightedly nearsightedness nearsightednesses nearthrosis neascus neat neaten neatened neatening neatens neater neatest neath neatherd neatherdess neatherds neathmost neatify neatly neatness neatnesses neatnik neatniks neats neavil neb neback nebalian nebalioid nebbed nebbich nebbiches nebbichs nebbing nebbish nebbishe nebbisher nebbishers nebbishes nebbishy nebbuck nebbuk nebbuks nebby nebe nebeck nebecks nebek nebeks nebel nebelist nebels nebenkern nebenkerns nebish nebishes nebn nebo nebraska nebraskan nebraskans nebris nebrises nebrodi nebs nebuchadnezzar nebuchadnezzars nebula nebulae nebular nebularisation nebularise nebularization nebularize nebulas nebulated nebulation nebule nebules nebulescent nebuliferous nebulisation nebulisations nebulise nebulised nebuliser nebulisers nebulises nebulising nebulite nebulium nebuliums nebulization nebulizations nebulize nebulized nebulizer nebulizers nebulizes nebulizing nebulon nebulose nebulosities nebulosity nebulosus nebulous nebulously nebulousness nebulousnesses nebuly necation necessaire necessaires necessar necessarian necessarianism necessarianisms necessarians necessaries necessarily necessariness necessarinesses necessaritarian necessaritarianism necessarium necessarius necessary necesse necessism necessist necessitarian necessitarianism necessitarianisms necessitarians necessitate necessitated necessitatedly necessitates necessitating necessitatingly necessitation necessitations necessitative necessitied necessities necessitous necessitously necessitousness necessitousnesses necessitude necessitudo necessity necia neck neckar neckatee neckatees neckband neckbands neckbeef neckbeefs neckcloth neckcloths necked neckenger necker neckercher neckerchief neckerchiefs neckerchieves neckers neckful neckgear neckgears neckguard necking neckinger neckings necklace necklaced necklaces necklaceweed necklacing necklacings neckless necklet necklets necklike neckline necklines neckmold neckmould neckpiece neckpieces necks neckstock necktie necktieless neckties neckverse neckverses neckward neckwear neckwears neckweed neckweeds neckyoke necraemia necrectomy necremia necro necrobacillary necrobacillosis necrobioses necrobiosis necrobiotic necrogenic necrogenous necrographer necrographers necrolater necrolaters necrolatries necrolatry necrologic necrological necrologically necrologies necrologist necrologists necrologue necrology necromancer necromancers necromancies necromancing necromancy necromania necromantic necromantical necromantically necromimesis necromorphous necronite necropathy necrophagan necrophagia necrophagias necrophagous necrophagy necrophil necrophile necrophiles necrophilia necrophiliac necrophiliacs necrophilias necrophilic necrophilies necrophilism necrophilisms necrophilist necrophilistic necrophilous necrophils necrophily necrophobe necrophobes necrophobia necrophobias necrophobic necrophorous necropoleis necropoles necropoli necropolis necropolises necropolitan necropsied necropsies necropsy necropsying necroscopic necroscopical necroscopies necroscopy necrose necrosed necroses necrosing necrosis necrotic necrotically necrotise necrotised necrotises necrotising necrotization necrotize necrotized necrotizes necrotizing necrotomic necrotomies necrotomist necrotomy necrotype necrotypic nectar nectareal nectarean nectared nectareous nectareously nectareousness nectareousnesses nectarial nectarian nectaried nectaries nectariferous nectarin nectarine nectarines nectarious nectarise nectarised nectarising nectarium nectarivorous nectarize nectarized nectarizing nectarlike nectarous nectars nectary nectiferous nectocalyces nectocalycine nectocalyx necton nectophore nectopod nectriaceous nectron necturus ned nedder neddies neddy neds nee neebor neebour need needcessities needcessity needed needer needers needfire needfires needful needfully needfulness needfulnesses needfuls needgates needham needier neediest needily neediness needinesses needing needle needlebill needlebook needlebush needlecase needlecord needlecords needlecraft needlecrafts needled needlefish needlefishes needleful needlefuls needlelike needlemaker needlemaking needleman needlemen needlemonger needlepoint needlepointed needlepointing needlepoints needleproof needler needlers needles needless needlessly needlessness needlessnesses needlestick needlestone needlewoman needlewomen needlewood needlework needleworked needleworker needleworkers needleworks needlier needliest needling needlings needly needment needments needn neednt needs needsly needsome needy neeger neela neeld neelds neele neeles neelghan neem neemb neemba neembs neems neencephala neencephalic neencephalon neencephalons neep neepour neeps neer neesberries neesberry neese neesed neeses neesing neet neetup neeze neezed neezes neezing nef nefandous nefandousness nefarious nefariouses nefariously nefariousness nefariousnesses nefas nefast nefastus neffy nefs neftgil neg negaprion negara negate negated negatedness negater negaters negates negating negation negational negationalist negationist negationists negations negativate negative negatived negatively negativeness negativenesses negativer negatives negativing negativism negativisms negativist negativistic negativists negativities negativity negaton negatons negator negators negatory negatron negatrons neger negev neginoth neglect neglectable neglected neglectedly neglectedness neglectednesses neglecter neglecters neglectful neglectfully neglectfulness neglectfulnesses neglecting neglectingly neglection neglections neglective neglectively neglector neglectors neglectproof neglects neglig neglige negligeable negligee negligees negligence negligences negligency negligent negligentia negligently negliges negligibilities negligibility negligible negligibleness negligiblenesses negligibly negligs negligé negligés negoce negociant negociants negociate negotiabilities negotiability negotiable negotiables negotiably negotiant negotiants negotiate negotiated negotiates negotiating negotiation negotiations negotiator negotiators negotiatory negotiatress negotiatresses negotiatrices negotiatrix negotiatrixes negotious negqtiator negress negresses negrillo negrine negrita negrito negritude negritudes negro negrodom negroes negrohead negroheads negrohood negroid negroidal negroids negroish negroism negroisms negrolike negroni negronis negrophil negrophile negrophiles negrophilism negrophilisms negrophilist negrophilists negrophils negrophobe negrophobes negrophobia negrophobias negros negs negus neguses nehemiah nehiloth nehru nei neif neifs neigh neighbor neighbored neighborer neighboress neighborhood neighborhoods neighboring neighborless neighborlike neighborlikeness neighborliness neighborlinesses neighborly neighbors neighborship neighborstained neighbour neighboured neighbourer neighbouress neighbourhood neighbourhoods neighbouring neighbourless neighbourlike neighbourliness neighbourlinesses neighbourly neighbours neighbourship neighed neigher neighing neighs neilah nein neiper neisseria neist neither neive neives nek neks nekton nektonic nektons nelies nelis nelly nelson nelsonite nelsons nelumbian nelumbium nelumbiums nelumbo nelumbonaceae nelumbos nema nemaline nemalite nemas nematelminth nemathece nemathecia nemathecial nemathecium nemathelminth nemathelminthic nemathelminths nematic nematicidal nematicide nematicides nematoblast nematoblastic nematoblasts nematocera nematoceran nematocerous nematocidal nematocide nematocides nematocyst nematocystic nematocysts nematoda nematode nematodes nematodiasis nematodiriases nematodiriasis nematodirus nematodiruses nematogen nematogene nematogenic nematogenous nematognath nematognathous nematogone nematogonous nematoid nematoidean nematological nematologies nematologist nematologists nematology nematophore nematophores nematophyton nematozooid nembutal nembutsu nemean nemertea nemertean nemerteans nemertian nemertians nemertid nemertina nemertine nemertinean nemertines nemertoid nemeses nemesia nemesias nemesic nemesis nemine nemn nemned nemning nemns nemo nemoceran nemocerous nemophila nemophilas nemophilist nemophilous nemophily nemoral nemoricole nemoricoline nemoricolous nemorous nemos nempne nempt nenarche nene nenes nenets nennigai nennigais nenta nentsi nentsy nenuphar nenuphars neo neoacademic neoanthropic neoarsphenamine neoarsphenamines neoblast neoblastic neoblasts neobotanist neobotany neocene neoceratodus neocerotic neochristianity neoclassic neoclassical neoclassically neoclassicism neoclassicisms neoclassicist neoclassicistic neoclassicists neocolonial neocolonialism neocolonialisms neocolonialist neocolonialists neocolonially neocomian neocon neoconcretist neocons neoconservatism neoconservatisms neoconservative neoconservatives neoconservativism neoconstructivism neoconstructivist neocortex neocortexes neocortical neocortices neocosmic neocracy neocriticism neocubism neocubist neocyanine neocyte neocytosis neodadaism neodadaist neodamode neodidymium neodiprion neodymium neodymiums neoencephalon neoexpressionism neoexpressionist neofascism neofascisms neofascist neofascists neofetal neofetus neofiber neoformation neoformative neogamous neogamy neogene neogeneses neogenesis neogenetic neognathic neognathous neogrammarian neogrammarians neogrammatical neographic neohexane neoholmia neoholmium neohygrophorus neoimpressionism neoimpressionisms neoimpressionist neoimpressionists neolalia neolater neolatry neolentinus neoliberal neoliberalism neoliberalisms neoliberals neolith neolithic neoliths neolocal neologian neologianism neologians neologic neological neologically neologies neologisation neologise neologised neologises neologising neologism neologisms neologist neologistic neologistical neologists neologization neologize neologized neologizes neologizing neology neomedievalism neomenia neomenian neomiracle neomodal neomorph neomorphic neomorphism neomorphs neomycin neomycins neomys neon neonatal neonatally neonate neonates neonatologies neonatologist neonatologists neonatology neonatus neoned neoneds neonomian neonomianism neonomianisms neonomians neons neontology neonychium neoologist neoorthodox neoorthodoxies neoorthodoxy neopagan neopaganise neopaganised neopaganises neopaganising neopaganism neopaganisms neopaganize neopaganized neopaganizes neopaganizing neopagans neopallial neopallium neoparaffin neophile neophiles neophilia neophiliac neophiliacs neophilias neophilism neophilological neophilologist neophobe neophobes neophobia neophobias neophobic neophrastic neophron neophyte neophytes neophytic neophytish neophytism neopilina neopilinas neopine neoplasia neoplasias neoplasm neoplasma neoplasmata neoplasms neoplastic neoplasticism neoplasticisms neoplasticist neoplasticists neoplasties neoplasty neoplatonic neoplatonism neoplatonist neoplatonists neopolitan neoprene neoprenes neorama neorealism neorealisms neorealist neorealistic neorealists neornithic neoromanticism neosho neossin neossine neossology neossoptile neostigmine neostigmines neostriatum neostyle neostyled neostyling neoteinia neoteinias neoteinic neotenia neotenic neotenies neotenous neoteny neoteric neoterical neoterically neotericals neoterics neoterise neoterised neoterises neoterising neoterism neoterisms neoterist neoteristic neoterists neoterize neoterized neoterizes neoterizing neothalamus neotoma neotoxin neotoxins neotraditionalism neotraditionalist neotropical neotropics neotype neotypes neourthodox neovitalism neovitalisms neovitalist neovitalists neovolcanic neoytterbium neoza neozoic nep nepa nepal nepalese nepali nepenthaceae nepenthaceous nepenthe nepenthean nepenthes neper nepers nepeta nepetas nephalism nephalisms nephalist nephalistic nephalists nephanalysis nephele nepheligenous nepheline nephelines nephelinic nephelinite nephelinites nephelinitic nephelinitoid nephelite nephelites nephelium nephelognosy nepheloid nephelometer nephelometers nephelometric nephelometrical nephelometrically nephelometries nephelometry nephelorometer nepheloscope nephesh nephew nephews nephewship nephilim nephionic nephogram nephograms nephograph nephographs nephologic nephological nephologies nephologist nephologists nephology nephometer nephophobia nephoscope nephoscopes nephphridia nephradenoma nephralgia nephralgias nephralgic nephralgies nephralgy nephrapostasis nephratonia nephrauxe nephrectasia nephrectasis nephrectomies nephrectomise nephrectomised nephrectomising nephrectomize nephrectomized nephrectomizes nephrectomizing nephrectomy nephrelcosis nephremia nephremphraxis nephria nephric nephridia nephridial nephridiopore nephridium nephridiums nephrism nephrisms nephrite nephrites nephritic nephritical nephritics nephritides nephritis nephritises nephroabdominal nephrocardiac nephrocele nephrocoele nephrocolic nephrocolopexy nephrocoloptosis nephrocystitis nephrocystosis nephrocyte nephrodinic nephroerysipelas nephrogastric nephrogenetic nephrogenic nephrogenous nephrogonaduct nephrohydrosis nephrohypertrophy nephroid nephrolepis nephrolepises nephrolith nephrolithiasis nephrolithic nephrolithosis nephrolithotomies nephrolithotomy nephrological nephrologies nephrologist nephrologists nephrology nephrolysin nephrolysis nephrolytic nephromalacia nephromegaly nephromere nephron nephroncus nephrons nephroparalysis nephropathic nephropathies nephropathy nephropexies nephropexy nephrophthisis nephropore nephrops nephropsidae nephroptoses nephroptosia nephroptosis nephropyelitis nephropyeloplasty nephropyosis nephrorrhagia nephrorrhaphy nephros nephrosclerosis nephroses nephrosis nephrostoma nephrostome nephrostomes nephrostomial nephrostomous nephrostomy nephrotic nephrotics nephrotome nephrotomies nephrotomise nephrotomize nephrotomy nephrotoxic nephrotoxicities nephrotoxicity nephrotoxin nephrotuberculosis nephrotyphoid nephrotyphus nephrozymosis nephthys nephthytis nepidae nepionic nepit nepits nepman nepmen nepotal nepote nepotic nepotious nepotism nepotisms nepotist nepotistic nepotistical nepotistically nepotists nepouite nepquite neps neptune neptunian neptunism neptunist neptunium neptuniums neral nerals nerd nerdier nerdiest nerdish nerds nerdy nere nereid nereidean nereides nereidiform nereidous nereids nereis nereises nereite nereus nergal nerine nerines nerita nerite nerites neritic neritid neritidae neritina neritjc neritoid nerium nerk nerka nerkas nerks nerodia nerol neroli nerolis nerols neronian nerterology nerthus nerts nertz nerval nervate nervation nervations nervature nervatures nerve nerved nerveless nervelessly nervelessness nervelessnesses nervelet nervelets nerveproof nerver nerveracking nerveroot nervers nerves nervid nerviduct nervier nerviest nervily nervimotion nervimotor nervimuscular nervine nervines nerviness nervinesses nerving nervings nervish nervism nervomuscular nervosa nervosanguineous nervose nervosism nervosities nervosity nervous nervously nervousness nervousnesses nervular nervule nervules nervulet nervulose nervuration nervurations nervure nervures nervus nervy nescience nesciences nescient nescients nese nesh nesher neshest neshly neshness neshnesses nesiote neslave neslia nesokia nesosilicate nesquehonite ness nessberry nesselrode nesses nessie nesslerise nesslerised nesslerising nesslerization nesslerize nesslerized nesslerizing nessus nest nestable nestage nested nester nesters nestful nestfuls nestiatria nesting nestings nestitherapy nestle nestled nestler nestlers nestles nestlike nestling nestlings nestor nestorian nestorianism nestorine nestors nests nesty net netback netbacks netball netballs netbraider netbush netcha nete neter netes netful netfuls neth netheist netheless nether netherlander netherlands netherlings nethermore nethermost netherstock netherstocks netherstone netherward netherwards netherworld netherworlds neti netiquette netiquettes netizen netizens netkeeper netleaf netless netlike netmail netmaker netmaking netman netmen netminder netminders netmonger netop netops nets netscape netsman netsuke netsukes nett nettable nettably netted netter netters nettier nettiest netting nettings nettle nettlebed nettlebird nettled nettlefire nettlefish nettlefoot nettlelike nettlemonger nettler nettlerash nettlers nettles nettlesome nettlewort nettlier nettliest nettling nettly netts netty netwise network networked networker networkers networking networkings networklike networks neugkroschen neugroschen neuk neuks neum neuma neumatic neumatizce neumatize neume neumes neumic neums neurad neuradynamia neural neurale neuralgia neuralgiac neuralgias neuralgic neuralgiform neuralgy neuralist neurally neuraminidase neuraminidases neurapophyseal neurapophysial neurapophysis neurarthropathy neurasthenia neurastheniac neurastheniacs neurasthenias neurasthenic neurasthenical neurasthenically neurasthenics neurataxia neurataxy neuration neurations neuratrophia neuratrophic neuratrophy neuraxial neuraxis neuraxitis neuraxon neuraxone neuraxons neurectasia neurectasis neurectasy neurectome neurectomic neurectomies neurectomy neurectopia neurectopy neurenteric neurepithelium neurergic neurexairesis neurhypnology neurhypnotist neuriatry neuric neuridine neurilema neurilematic neurilemma neurilemmal neurilemmas neurilemmatic neurilemmatous neurilemmitis neurilities neurility neurin neurine neurines neurinoma neurinomas neurinomata neurism neurisms neuristor neurite neurites neuritic neuritics neuritides neuritis neuritises neuroactive neuroanatomic neuroanatomical neuroanatomies neuroanatomist neuroanatomists neuroanatomy neuroanotomy neurobiological neurobiologies neurobiologist neurobiologists neurobiology neurobiotactic neurobiotaxis neuroblast neuroblastic neuroblastoma neuroblastomas neuroblastomata neuroblasts neurocanal neurocardiac neurocele neurocelian neurocental neurocentral neurocentrum neurochemical neurochemicals neurochemist neurochemistries neurochemistry neurochemists neurochip neurochips neurochitin neurochondrite neurochord neurochorioretinitis neurocirculator neurocirculatory neurocity neuroclonic neurocoel neurocoele neurocoelian neurocomputer neurocomputers neurocomputing neurocomputings neurocrine neurocrinism neurocyte neurocytoma neurodegenerative neurodendrite neurodendron neurodermatitis neurodermatosis neurodermitis neurodiagnosis neurodynamic neurodynia neuroelectricity neuroembryological neuroembryology neuroendocrine neuroendocrinological neuroendocrinologies neuroendocrinologist neuroendocrinologists neuroendocrinology neuroepidermal neuroepithelial neuroepithelium neuroethologies neuroethology neurofibril neurofibrilla neurofibrillae neurofibrillar neurofibrillary neurofibrils neurofibroma neurofibromas neurofibromata neurofibromatoses neurofibromatosis neurofil neuroganglion neurogastralgia neurogastric neurogeneses neurogenesis neurogenetic neurogenetics neurogenic neurogenically neurogenous neuroglandular neuroglia neurogliac neurogliacyte neuroglial neurogliar neuroglias neuroglic neuroglioma neurogliosis neurogram neurogrammic neurograms neurographic neurography neurohistology neurohormonal neurohormone neurohormones neurohumor neurohumoral neurohumors neurohypnologies neurohypnology neurohypnotic neurohypnotism neurohypophyseal neurohypophyses neurohypophysial neurohypophysis neurohypophysises neuroid neurokeratin neurokyme neurol neurolemma neurolemmas neuroleptanalgesia neuroleptanalgesias neuroleptanalgesic neuroleptic neuroleptics neuroleptoanalgesia neurolinguist neurolinguistic neurolinguistics neurolinguists neurolite neurologic neurological neurologically neurologies neurologist neurologists neurologize neurologized neurology neurolymph neurolyses neurolysis neurolytic neuroma neuromalacia neuromalakia neuromas neuromast neuromastic neuromasts neuromata neuromatosis neuromatous neuromere neuromerism neuromerous neuromimesis neuromimetic neuromotor neuromuscular neuromusculature neuromyelitis neuromyic neuron neuronal neuronally neuronic neuronism neuronist neuronophagia neuronophagy neurons neuronym neuronymy neuroparalysis neuroparalytic neuropath neuropathic neuropathical neuropathically neuropathies neuropathist neuropathists neuropathogeneses neuropathogenesis neuropathologic neuropathological neuropathologies neuropathologist neuropathologists neuropathology neuropaths neuropathy neuropeptide neuropeptides neurophagy neuropharmacologic neuropharmacological neuropharmacologically neuropharmacologies neuropharmacologist neuropharmacologists neuropharmacology neurophil neurophile neurophilic neurophysiologic neurophysiological neurophysiologically neurophysiologies neurophysiologist neurophysiologists neurophysiology neuropil neuropile neuropils neuroplasm neuroplasmatic neuroplasmic neuroplasms neuroplasty neuroplexus neuropod neuropodial neuropodium neuropodous neuropore neuropsych neuropsychiatric neuropsychiatrically neuropsychiatries neuropsychiatrist neuropsychiatrists neuropsychiatry neuropsychic neuropsychical neuropsychological neuropsychologies neuropsychologist neuropsychologists neuropsychology neuropsychopathic neuropsychopathy neuropsychosis neuropter neuroptera neuropteran neuropterans neuropterist neuropterists neuropteroid neuropterological neuropterology neuropteron neuropterous neuroradiological neuroradiologies neuroradiologist neuroradiologists neuroradiology neuroretinitis neurorrhaphy neurorthopteran neurorthopterous neurosal neurosarcoma neuroscience neurosciences neuroscientific neuroscientist neuroscientists neurosclerosis neurosecretion neurosecretions neurosecretory neurosensory neuroses neurosis neuroskeletal neuroskeleton neurosome neurospasm neurospast neurospongium neurospora neurosporas neurosthenia neurosurgeon neurosurgeons neurosurgeries neurosurgery neurosurgical neurosuture neurosynapse neurosyphilis neurotendinous neurotension neurotherapeutics neurotherapist neurotherapy neurothlipsis neurotic neurotically neuroticise neuroticism neuroticisms neuroticize neurotics neurotization neurotome neurotomical neurotomies neurotomist neurotomists neurotomize neurotomy neurotonic neurotoxia neurotoxic neurotoxicities neurotoxicity neurotoxin neurotoxins neurotransmission neurotransmissions neurotransmitter neurotransmitters neurotrichus neurotripsy neurotrophic neurotrophies neurotrophy neurotropic neurotropism neurotropisms neurotropy neurovaccination neurovaccine neurovascular neurovisceral neurual neurula neurulae neurular neurulas neurulation neurulations neurypnological neurypnologies neurypnologist neurypnology neustic neuston neustonic neustons neut neuter neutercane neuterdom neutered neutering neuterlike neuterly neuterness neuters neutral neutralisation neutralisations neutralise neutralised neutraliser neutralisers neutralises neutralising neutralism neutralisms neutralist neutralistic neutralists neutralities neutrality neutralization neutralizations neutralize neutralized neutralizer neutralizers neutralizes neutralizing neutrally neutralness neutralnesses neutrals neutretto neutrettos neutria neutrino neutrinoless neutrinos neutroceptive neutroceptor neutroclusion neutrodyne neutrologistic neutron neutronic neutrons neutropassive neutropenia neutropenias neutrophil neutrophile neutrophiles neutrophilia neutrophilic neutrophilous neutrophils neutrosphere nevada nevadan nevadans nevadians nevadite nevat neve nevel nevell nevelled nevelling nevels neven never neverland nevermass nevermind neverminds nevermore neverness neverthelater nevertheless neverthemore neves nevi nevis nevo nevoid nevoy nevus nevyanskite new newari newark newberyite newbie newbies newborn newbornness newborns newburg newcal newcastle newcome newcomer newcomers newed newel newell newelled newells newels newelty newer newest newfangle newfangled newfangledism newfangledly newfangledness newfanglednesses newfanglement newfangleness newfanglenesses newfashioned newfish newfound newfoundland newfoundlander newgate newground newie newies newing newings newish newishly newishness newishnesses newlandite newlight newline newlines newlings newlins newly newlywed newlyweds newmanism newmarket newmarkets newmown newness newnesses newport news newsagent newsagents newsbeat newsbeats newsbill newsboard newsboat newsboy newsboys newsbreak newsbreaks newscast newscaster newscasters newscasting newscastings newscasts newsdealer newsdealers newsdesk newsdesks newsed newses newsflash newsflashes newsful newsgathering newsgatherings newsgirl newsgirls newsgroup newsgroups newshawk newshawks newshen newshound newshounds newsie newsier newsies newsiest newsily newsiness newsinesses newsing newsless newslessness newsletter newsletters newsmagazine newsmagazines newsmaker newsmakers newsman newsmanmen newsmen newsmonger newsmongering newsmongers newsmongery newspaper newspaperdom newspaperdoms newspapered newspaperese newspapering newspaperings newspaperised newspaperish newspaperism newspaperisms newspaperized newspaperman newspapermen newspapers newspaperwoman newspaperwomen newspapery newspeak newspeaks newspeople newsperson newspersons newsprint newsprints newsreader newsreaders newsreel newsreels newsroom newsrooms newssheet newssheets newsstand newsstands newstand newstands newsteller newstrade newstrades newsvendor newsvendors newsweek newsweeklies newsweekly newswire newswires newswoman newswomen newsworthier newsworthiest newsworthiness newsworthinesses newsworthy newswriter newswriting newswritings newsy newt newtake newton newtonian newtonite newtons newts newwaver newwavers nexal next nextdoor nextly nextness nextnesses nexts nexum nexus nexuses neyanda ng ngai ngaio ngaios ngana nganas nganasan ngapi ngoma ngultrum ngultrums nguni ngwee nhandu nhandus ni niacin niacinamide niacinamides niacins niagara niagaras niagra niais niaiserie nialamide nialamides niamey niata nib nibbana nibbed nibber nibbing nibble nibbled nibbler nibblers nibbles nibbling nibblingly nibblings nibby nibelung niblic niblick niblicks niblike nibong nibs nibsome nibung nicad nicads nicaean nicandra nicaragua nicaraguan nicaraguans niccolic niccoliferous niccolite niccolites niccolo niccolous nice niceish niceling nicely nicene niceness nicenesses nicer nicesome nicest niceties nicetish nicety niche niched nichelino nicher nichered nichering nichers niches nichevo nichil niching nicholas nichrome nicht nichts nicish nick nickar nickars nicked nickel nickelage nickelbloom nickeled nickelic nickeliferous nickeline nickelines nickeling nickelisation nickelise nickelised nickelises nickelising nickelization nickelize nickelized nickelizes nickelizing nickelled nickellike nickelling nickelodeon nickelodeons nickelous nickels nickeltype nicker nickered nickering nickerpecker nickers nickery nickey nickeys nicking nickle nickled nickles nickling nicknack nicknacks nickname nicknameable nicknamed nicknamee nicknameless nicknamer nicknamers nicknames nicknaming nickpoint nickpoints nickpot nicks nickstick nicksticks nickum nickumpoop nickumpoops nickums nicky nicoise nicol nicolaitan nicolayite nicolo nicols nicompoop nicompoops nicosia nicotia nicotian nicotiana nicotianas nicotianin nicotians nicotic nicotin nicotina nicotinamide nicotinamides nicotine nicotinean nicotined nicotineless nicotines nicotinian nicotinic nicotinise nicotinised nicotinising nicotinism nicotinisms nicotinize nicotinized nicotinizing nicotins nicotism nicotize nicrosilal nicrosilals nictate nictated nictates nictating nictation nictations nictitant nictitate nictitated nictitates nictitating nictitation nictitations nid nidal nidamenta nidamental nidamentum nidana nidaros nidary nidate nidated nidates nidating nidation nidations nidatory nidder niddering nidderings nidderling nidderlings niddick niddicock niddle nide nided nidering niderings niderling niderlings nides nidge nidget nidgets nidgety nidi nidicolous nidificant nidificate nidificated nidificates nidificating nidification nidificational nidifications nidified nidifier nidifies nidifugous nidify nidifying niding nidings nidiot nidologist nidology nidor nidorose nidorosity nidorous nidors nidorulent nids nidudi nidulant nidularia nidulariaceae nidulariaceous nidulariales nidulate nidulation nidulations niduli nidulus nidus niduses nie niece nieceless nieces nieceship nied nief niefs niellated nielled nielli niellist niellists niello nielloed nielloing niellos nielsbohrium nielsbohriums nielsen niepa nierembergia nies nieshout nietzsche nietzschean nieve nieveful nievefuls nieves nieveta nievling nife nifedipine nifedipines nifes nifesima niff niffed niffer niffered niffering niffers niffier niffiest niffing niffnaff niffnaffed niffnaffing niffnaffs niffs niffy nific nifle niflheim nifling niftier nifties niftiest niftily niftiness niftinesses nifty nig nigella nigellas niger nigeria nigerian nigerians nigerien nigers niggard niggarded niggarding niggardise niggardised niggardises niggardising niggardize niggardized niggardizes niggardizing niggardliness niggardlinesses niggardling niggardly niggardness niggards nigged nigger niggerdom niggerdoms niggered niggerfish niggerfishes niggergoose niggerhead niggerheads niggering niggerish niggerism niggerisms niggerling niggerlings niggers niggertoe niggerweed niggery nigget nigging niggle niggled niggler nigglers niggles nigglier niggliest niggling nigglingly nigglings niggly niggot niggra niggun nigh nighed nigher nighest nighhand nighing nighish nighly nighness nighnesses nighs night nightbird nightbirds nightblind nightcap nightcapped nightcaps nightchurr nightclass nightclasses nightclothes nightclub nightclubbed nightclubber nightclubbers nightclubbing nightclubbings nightclubs nightcrawler nightcrawlers nightdress nightdresses nighted nighter nighters nightertale nightery nightfall nightfalls nightfaring nightfire nightfires nightfish nightflit nightfowl nightgale nightgear nightgears nightglass nightglow nightglows nightgown nightgowns nighthawk nighthawks nightie nighties nightime nighting nightingale nightingales nightingalise nightingalize nightish nightjar nightjars nightless nightlessness nightlife nightlifes nightlight nightlights nightlike nightlong nightly nightman nightmare nightmares nightmarish nightmarishly nightmarishness nightmarishnesses nightmary nightmen nightpiece nightpieces nightrider nightriders nightriding nights nightscope nightscopes nightshade nightshades nightshine nightshirt nightshirts nightside nightsides nightspot nightspots nightstand nightstands nightstick nightsticks nightstock nightstool nighttide nighttime nighttimes nightwake nightwalk nightwalker nightwalkers nightwalking nightward nightwards nightwatchman nightwatchmen nightwear nightwears nightwork nightworker nightworkers nighty nignay nignye nigori nigra nigranilin nigraniline nigre nigrescence nigrescences nigrescent nigresceous nigrescite nigricant nigrification nigrified nigrifies nigrify nigrifying nigrine nigritian nigrities nigritude nigritudes nigritudinous nigromancer nigromancies nigromancy nigroporus nigrosin nigrosine nigrosines nigrosins nigrous nigua nihau nihil nihilianism nihilianistic nihilification nihilify nihilism nihilisms nihilist nihilistic nihilistically nihilists nihilitic nihilities nihility nihilobstat nihils nihilum nihon nihonga nihongas nijholt nijinsky nijmegen nikau nikaus nike nikeno nikethamide nikethamides nikkud nikkudim niklesite nikon nil nile nilgai nilgais nilgau nilgaus nilghai nilghais nilghau nilghaus nill nilled nilling nills nilometer nilot nilotic nilpotent nils nim nimb nimbated nimbed nimbi nimbiferous nimbification nimble nimblebrained nimbleness nimblenesses nimbler nimblesse nimblesses nimblest nimblewill nimblewit nimbly nimbose nimbosity nimbostrati nimbostratus nimbs nimbus nimbused nimbuses nimby nimbyism nimbyisms nimbys nimieties nimiety niminy nimious nimmed nimmer nimmers nimming nimonic nimravus nimrod nimrods nims nimshi nina nincom nincompoop nincompooperies nincompoopery nincompoophood nincompoopish nincompoops nincoms nincum nincums nine ninebark ninebarks ninefold nineholes ninepegs ninepence ninepences ninepennies ninepenny ninepin ninepins niner nines ninescore ninescores nineted nineteen nineteenfold nineteens nineteenth nineteenthly nineteenths nineties ninetieth ninetieths ninety ninetyfold ninetyish ninetyknot nineveh ninevite ningal ningirsu ningishzida ningle ninhursag ninhydrin ninhydrins ninib ninigi ninja ninjas ninjitsu ninjitsus ninjutsu ninjutsus ninkharsag ninkhursag ninnies ninny ninnyhammer ninnyhammers ninnyish ninnyism ninnyship ninnywatch ninon ninons ninos ninth ninthly ninths nintoo nintu ninurta ninut niobate niobates niobe niobic niobite niobites niobium niobiums niobous niobrara niog niota nip nipa nipas nipcheese nipcheeses niphablepsia niphotyphlosis nipmuck nipped nipper nippered nippering nipperkin nipperkins nippers nippier nippiest nippily nippiness nippinesses nipping nippingly nippitate nippitato nippitatum nippitaty nipple nippled nippleless nipples nipplewort nippleworts nippling nippon nipponese nipponium nippy nips nipter nipters niramiai niramiais niris nirl nirled nirles nirlie nirlier nirliest nirling nirlit nirls nirly nirmanakaya nirvana nirvanas nirvanic nis nisan nisberries nisberry nisei niseis nishiki nisi nisnas nispero nissan nisse nisses nist nisus nisuses nit nitch nitchevo nitchie nitchies nite nitella nitency nitent nitently niter niterbush nitered niterie niteries nitering niters nitery nites nither nithing nithings nitid nitidities nitidity nitidous nitidulid nitinol nitinols nito niton nitons nitos nitpick nitpicked nitpicker nitpickers nitpickier nitpickiest nitpicking nitpickings nitpicks nitpicky nitramin nitramine nitramino nitranilic nitraniline nitranilines nitrate nitrated nitrates nitratine nitratines nitrating nitration nitrations nitrator nitrators nitrazepam nitrazepams nitre nitred nitres nitriaries nitriary nitric nitrid nitridation nitride nitrided nitrides nitriding nitridings nitridisation nitridise nitridization nitridize nitrids nitrifaction nitriferous nitrifiable nitrification nitrifications nitrified nitrifier nitrifiers nitrifies nitrify nitrifying nitril nitrile nitriles nitrils nitriry nitrite nitrites nitritoid nitro nitroalizarin nitroamine nitroanilin nitroaniline nitrobacter nitrobacteria nitrobacteriaceae nitrobacterium nitrobarite nitrobenzene nitrobenzenes nitrobenzol nitrobenzole nitrocalcite nitrocellulose nitrocelluloses nitrocellulosic nitrochloroform nitrochloroforms nitrocotton nitrocottons nitroform nitrofuran nitrofurans nitrofurantoin nitrogelatin nitrogelatine nitrogen nitrogenase nitrogenases nitrogenate nitrogenation nitrogenic nitrogenisation nitrogenisations nitrogenise nitrogenised nitrogenises nitrogenising nitrogenization nitrogenizations nitrogenize nitrogenized nitrogenizes nitrogenizing nitrogenous nitrogens nitroglucose nitroglycerin nitroglycerine nitroglycerines nitroglycerins nitrohydrochloric nitrolamine nitrolic nitrolim nitrolime nitromagnesite nitromannite nitromannitol nitromersol nitrometer nitrometers nitromethane nitromethanes nitrometric nitromuriate nitromuriatic nitronaphthalene nitroparaffin nitroparaffins nitrophenol nitrophile nitrophilous nitrophyte nitrophytic nitroprussiate nitroprussic nitroprusside nitros nitrosamin nitrosamine nitrosamines nitrosate nitrosation nitrosations nitrosification nitrosify nitrosite nitroso nitrosoamine nitrosobacteria nitrosobacterium nitrosochloride nitrosomonas nitrososulphuric nitrospan nitrostarch nitrostat nitrosulphate nitrosulphonic nitrosulphuric nitrosurea nitrosyl nitrosyls nitrosylsulfuric nitrosylsulphuric nitrotoluene nitrotoluenes nitrotoluol nitrotrichloromethane nitrous nitroxyl nitroxyls nitry nitryl nitryls nits nitta nitter nittier nittiest nitty nitweed nitwit nitwits nitwitted nitwittedness nitwittednesses nitwitteries nitwittery nival nivation niveau nivellate nivellation nivellator nivellization nivenite niveous nivernaise nivicolous nivose nivosity nix nixe nixed nixer nixes nixie nixies nixing nixon nixtamal nixy niyama niyanda niyoga nizam nizamat nizamate nizamates nizams nizamut nizey nizy nj njave njord njorth nl nm nne nnethermore nnw no noa noachian noah noance nob nobackspace nobatch nobber nobbier nobbiest nobbily nobbiness nobbinesses nobble nobbled nobbler nobblers nobbles nobbling nobbut nobby nobel nobelist nobelists nobelium nobeliums nobilesse nobilesses nobiliary nobilify nobilitate nobilitated nobilitates nobilitating nobilitation nobilitations nobilities nobility nobis noble nobled noblehearted nobleheartedly nobleheartedness nobleman noblemanly noblemem noblemen nobleness noblenesses nobler nobles noblesse noblesses noblest noblewoman noblewomen nobley noblify nobling nobly nobodies nobody nobodyd nobodyness nobs nobut nocake nocakes nocardia nocardiosis nocence nocent nocently nocents nocerite nochel nochelled nochelling nochels nocht nociassociation nociceptive nociceptor nociperception nociperceptive nocive nock nocked nockerl nocket nockets nocking nocks nocktat noconfirm noctambulant noctambulate noctambulation noctambulations noctambule noctambulism noctambulisms noctambulist noctambulistic noctambulists noctambulous noctidial noctidiurnal noctiferous noctiflorous noctilio noctilios noctiluca noctilucae noctilucal noctilucan noctilucas noctilucence noctilucences noctilucent noctilucin noctilucine noctilucous noctiluminous noctiluscence noctimania noctipotent noctis noctivagant noctivagation noctivagations noctivagous noctograph noctovision noctua noctuaries noctuary noctuas noctuid noctuidae noctuideous noctuidous noctuids noctuiform noctule noctules noctuoid nocturia nocturias nocturn nocturnal nocturnality nocturnally nocturnals nocturne nocturnes nocturns nocuity nocument nocumentum nocuous nocuously nocuousness nocuousnesses nod nodal nodalise nodalised nodalises nodalising nodalities nodality nodalize nodalized nodalizes nodalizing nodally nodated nodation nodations nodded nodder nodders noddi noddies nodding noddingly noddings noddle noddlebone noddled noddles noddling noddy node noded nodes nodi nodiak nodical nodicorn nodiferous nodiflorous nodiform nodosarian nodosariform nodosarine nodosaur nodose nodosities nodosity nodous nods nodular nodulate nodulated nodulation nodulations nodule noduled nodules noduli nodulise nodulize nodulized nodulizing nodulose nodulous nodulus nodus noebcd noecho noegenesis noegenetic noel noels noematachograph noematachometer noematachometic noematical noematically noemi noerror noes noeses noesis noesises noetian noetic noetics noex noexecute nofile nog nogada nogaku nogal nogg nogged noggen noggin nogging noggings noggins noggs noghead nogheaded nogs noh nohes nohex nohow nohowish noibwood noil noilage noiler noils noily noint nointed nointing nointment noints noir noire noires noirish noirs noisance noise noised noiseful noisefully noisefulness noiseless noiselessly noiselessness noiselessnesses noisemake noisemaker noisemakers noisemaking noisemakings noiseproof noises noisette noisettes noisier noisiest noisily noisiness noisinesses noising noisome noisomely noisomeness noisomenesses noisy noix nokta nol nold nole noles nolina nolition nolitions noll nolle nolleity nollepros nolls nolo nolos nolt nom noma nomad nomade nomades nomadian nomadic nomadical nomadically nomadies nomadisation nomadisations nomadise nomadised nomadises nomadising nomadism nomadisms nomadization nomadizations nomadize nomadized nomadizes nomadizing nomads nomady nomancy nomap nomarch nomarchies nomarchs nomarchy nomarthral nomas nombles nombril nombrils nome nomen nomenclate nomenclative nomenclator nomenclatorial nomenclators nomenclatorship nomenclatory nomenclatural nomenclature nomenclatures nomenclaturist nomenklatura nomenklaturas nomes nomeus nomia nomial nomic nomina nominable nominal nominalisation nominalisations nominalise nominalised nominalises nominalising nominalism nominalisms nominalist nominalistic nominalistical nominalistically nominalists nominality nominalization nominalizations nominalize nominalized nominalizes nominalizing nominally nominalness nominals nominate nominated nominately nominates nominating nomination nominations nominatival nominativally nominative nominatively nominatives nominator nominators nominatrix nominature nomine nominee nomineeism nominees nominy nomism nomisma nomismata nomisms nomistic nomnem nomocanon nomocracies nomocracy nomogenies nomogenist nomogenous nomogeny nomogram nomograms nomograph nomographer nomographers nomographic nomographical nomographically nomographies nomographs nomography nomoi nomological nomologies nomologist nomologists nomology nomopelmous nomophylax nomophyllous nomos nomotheism nomothete nomothetes nomothetic nomothetical noms non nona nonabandonment nonabatable nonabdication nonabdicative nonabiding nonabidingly nonabidingness nonability nonabjuration nonabjuratory nonabjurer nonabolition nonabortive nonabortively nonabortiveness nonabrasive nonabrasively nonabrasiveness nonabridgable nonabridgment nonabrogable nonabsentation nonabsolute nonabsolutely nonabsoluteness nonabsolution nonabsolutist nonabsolutistic nonabsolutistically nonabsorbability nonabsorbable nonabsorbency nonabsorbent nonabsorbents nonabsorbing nonabsorption nonabsorptive nonabstainer nonabstainers nonabstaining nonabstemious nonabstemiously nonabstemiousness nonabstention nonabstract nonabstracted nonabstractedly nonabstractedness nonabstractly nonabstractness nonabstracts nonabusive nonabusively nonabusiveness nonacademic nonacademical nonacademically nonacademicalness nonacademics nonaccedence nonacceding nonacceleration nonaccelerative nonacceleratory nonaccent nonaccented nonaccenting nonaccentual nonaccentually nonacceptance nonacceptances nonacceptant nonacceptation nonaccepted nonaccess nonaccession nonaccessories nonaccessory nonaccidental nonaccidentally nonaccidentalness nonaccommodable nonaccommodably nonaccommodating nonaccommodatingly nonaccommodatingness nonaccompaniment nonaccompanying nonaccomplishment nonaccord nonaccordant nonaccordantly nonaccountable nonaccredited nonaccretion nonaccretive nonaccrual nonaccrued nonaccruing nonacculturated nonaccumulating nonaccumulation nonaccumulative nonaccumulatively nonaccumulativeness nonaccusing nonachievement nonachievements nonachiever nonacid nonacidic nonacidity nonacids nonacknowledgement nonacknowledgment nonacosane nonacoustic nonacoustical nonacoustically nonacquaintance nonacquaintanceship nonacquiescence nonacquiescent nonacquiescently nonacquiescing nonacquisitive nonacquisitively nonacquisitiveness nonacquittal nonact nonacting nonactinic nonactinically nonaction nonactionable nonactionably nonactions nonactivated nonactivation nonactivator nonactive nonactives nonactivities nonactivity nonactor nonactors nonactual nonactualities nonactuality nonactualness nonacuity nonaculeate nonaculeated nonacute nonacutely nonacuteness nonadaptability nonadaptable nonadaptableness nonadaptabness nonadaptation nonadaptational nonadapter nonadapting nonadaptive nonadaptor nonaddict nonaddicted nonaddicting nonaddictive nonaddicts nonadditive nonadditivities nonadditivity nonaddress nonaddresser nonadecane nonadept nonadeptly nonadeptness nonadherence nonadherences nonadherent nonadhering nonadhesion nonadhesive nonadhesively nonadhesiveness nonadiabatic nonadjacencies nonadjacency nonadjacent nonadjacently nonadjectival nonadjectivally nonadjectively nonadjoining nonadjournment nonadjudicated nonadjudication nonadjudicative nonadjudicatively nonadjunctive nonadjunctively nonadjustability nonadjustable nonadjustably nonadjuster nonadjustive nonadjustment nonadjustor nonadministrable nonadministrant nonadministrative nonadministratively nonadmirer nonadmirers nonadmiring nonadmissibility nonadmissible nonadmissibleness nonadmissibly nonadmission nonadmissions nonadmissive nonadmitted nonadmittedly nonadoptable nonadopter nonadoption nonadorner nonadorning nonadornment nonadsorbent nonadsorptive nonadult nonadults nonadvancement nonadvantageous nonadvantageously nonadvantageousness nonadventitious nonadventitiously nonadventitiousness nonadventurous nonadventurously nonadventurousness nonadverbial nonadverbially nonadvertence nonadvertency nonadvocacy nonadvocate nonaerated nonaerating nonaerobiotic nonaesthetic nonaesthetical nonaesthetically nonaffectation nonaffecting nonaffectingly nonaffection nonaffective nonaffiliated nonaffiliating nonaffiliation nonaffilliated nonaffinities nonaffinitive nonaffinity nonaffirmance nonaffirmation nonaffluent nonage nonaged nonagenarian nonagenarians nonagenaries nonagenary nonagency nonagent nonages nonagesimal nonagesimals nonagglomerative nonagglutinant nonagglutinating nonagglutinative nonagglutinator nonaggression nonaggressions nonaggressive nonagon nonagonal nonagons nonagrarian nonagreeable nonagreement nonagreements nonagricultural nonahydrate nonaid nonair nonalarmist nonalcohol nonalcoholic nonalcoholics nonalgebraic nonalgebraical nonalgebraically nonalien nonalienating nonalienation nonalignable nonaligned nonalignment nonalignments nonalined nonalinement nonalkaloid nonalkaloidal nonallegation nonallegiance nonallegoric nonallegorical nonallegorically nonallelic nonallergenic nonallergic nonallied nonalliterated nonalliterative nonalliteratively nonalliterativeness nonallotment nonalluvial nonalphabetic nonalphabetical nonalphabetically nonalternating nonaltruistic nonaltruistically nonaluminous nonaluminum nonamalgamable nonamazedness nonamazement nonambiguities nonambiguity nonambiguous nonambitious nonambitiously nonambitiousness nonambulaties nonambulatory nonamenability nonamenable nonamenableness nonamenably nonamendable nonamendment nonamino nonamorous nonamorously nonamorousness nonamotion nonamphibian nonamphibious nonamphibiously nonamphibiousness nonamputation nonanachronistic nonanachronistically nonanachronous nonanachronously nonanaemic nonanaesthetised nonanaesthetized nonanalogic nonanalogical nonanalogically nonanalogicalness nonanalogous nonanalogously nonanalogousness nonanalogy nonanalytic nonanalytical nonanalytically nonanalyzable nonanalyzed nonanaphoric nonanaphthene nonanarchic nonanarchical nonanarchically nonanarchistic nonanatomic nonanatomical nonanatomically nonancestral nonancestrally nonane nonanemic nonanes nonanesthetic nonanesthetized nonangelic nonangling nonanguished nonanimal nonanimality nonanimate nonanimated nonanimating nonanimatingly nonanimation nonannexable nonannexation nonannihilability nonannihilable nonannouncement nonannuitant nonannulment nonanoic nonanonymity nonanonymousness nonanswer nonanswers nonantagonistic nonantagonistically nonanthropological nonanthropologist nonanthropologists nonantibiotic nonantibiotics nonanticipation nonanticipative nonanticipatively nonanticipatorily nonanticipatory nonantigenic nonaphasiac nonaphasic nonaphetic nonaphoristic nonaphoristically nonapologetic nonapologetical nonapologetically nonapostatising nonapostatizing nonapostolic nonapostolical nonapostolically nonapparent nonapparently nonapparentness nonapparitional nonappealability nonappealable nonappealing nonappealingly nonappealingness nonappearance nonappearances nonappearer nonappearing nonappeasability nonappeasable nonappeasing nonappellate nonappendance nonappendant nonappendence nonappendent nonappendicular nonapplicability nonapplicable nonapplicableness nonapplicabness nonapplication nonapplicative nonapplicatory nonapply nonappointive nonappointment nonapportionable nonapportionment nonapposable nonappraisal nonappreciation nonappreciative nonappreciatively nonappreciativeness nonapprehensibility nonapprehensible nonapprehension nonapprehensive nonapproachability nonapproachable nonapproachableness nonapproachabness nonappropriable nonappropriation nonappropriative nonapproval nonapproved nonaquatic nonaqueous nonarable nonarbitrable nonarbitrarily nonarbitrariness nonarbitrarinesses nonarbitrary nonarboreal nonarching nonarchitect nonarchitectonic nonarchitects nonarchitectural nonarchitecturally nonarchitecture nonarchitectures nonarcing nonarcking nonargentiferous nonarguable nonargument nonargumentative nonargumentatively nonargumentativeness nonarguments nonaries nonaristocratic nonaristocratical nonaristocratically nonarithmetic nonarithmetical nonarithmetically nonarmament nonarmigerous nonaromatic nonaromatically nonarraignment nonarresting nonarrival nonarrogance nonarrogancy nonarsenic nonarsenical nonart nonarterial nonartesian nonarticulate nonarticulated nonarticulately nonarticulateness nonarticulation nonarticulative nonartist nonartistic nonartistical nonartistically nonartists nonarts nonary nonas nonasbestine nonascendance nonascendancy nonascendant nonascendantly nonascendence nonascendency nonascendent nonascendently nonascertainable nonascertainableness nonascertainably nonascertaining nonascertainment nonascetic nonascetical nonascetically nonasceticism nonascetics nonascription nonaseptic nonaseptically nonaspersion nonasphalt nonaspirate nonaspirated nonaspirating nonaspiratory nonaspirin nonaspiring nonaspirins nonassault nonassent nonassentation nonassented nonassenting nonassertion nonassertive nonassertively nonassertiveness nonassessability nonassessable nonassessment nonassignability nonassignabilty nonassignable nonassignably nonassigned nonassignment nonassimilability nonassimilable nonassimilating nonassimilation nonassimilative nonassimilatory nonassistance nonassistant nonassister nonassistive nonassociability nonassociable nonassociated nonassociation nonassociational nonassociative nonassociatively nonassonance nonassonant nonassortment nonassumed nonassumption nonassumptive nonassurance nonasthmatic nonasthmatically nonastonishment nonastral nonastringency nonastringent nonastringently nonastronomic nonastronomical nonastronomically nonatheistic nonatheistical nonatheistically nonathlete nonathletes nonathletic nonathletically nonatmospheric nonatmospherical nonatmospherically nonatomic nonatomical nonatomically nonatonement nonatrophic nonatrophied nonattached nonattachment nonattachments nonattacking nonattainability nonattainable nonattainment nonattendance nonattendances nonattendant nonattender nonattenders nonattention nonattestation nonattribution nonattributive nonattributively nonattributiveness nonaudibility nonaudible nonaudibleness nonaudibly nonauditory nonaugmentative nonauricular nonauriferous nonauthentic nonauthentical nonauthenticated nonauthentication nonauthenticity nonauthor nonauthoritarian nonauthoritative nonauthoritatively nonauthoritativeness nonauthors nonautobiographical nonautobiographically nonautomated nonautomatic nonautomatically nonautomotive nonautonomous nonautonomously nonautonomousness nonavailabilities nonavailability nonavoidable nonavoidableness nonavoidably nonavoidance nonaxiomatic nonaxiomatical nonaxiomatically nonazotized nonbachelor nonbacterial nonbacterially nonbailable nonballoting nonbanishment nonbank nonbankable nonbanking nonbanks nonbarbarian nonbarbaric nonbarbarous nonbarbarously nonbarbarousness nonbarbiturate nonbarbiturates nonbaronial nonbase nonbasement nonbasic nonbasing nonbathing nonbearded nonbearing nonbeatific nonbeatifically nonbeauties nonbeauty nonbehavioral nonbeing nonbeings nonbelief nonbeliefs nonbelieiver nonbeliever nonbelievers nonbelieving nonbelievingly nonbelligerencies nonbelligerency nonbelligerent nonbelligerents nonbending nonbeneficed nonbeneficence nonbeneficent nonbeneficently nonbeneficial nonbeneficially nonbeneficialness nonbenevolence nonbenevolent nonbenevolently nonbetrayal nonbetting nonbeverage nonbiased nonbibliographic nonbibulous nonbibulously nonbibulousness nonbigoted nonbigotedly nonbilabiate nonbilious nonbiliously nonbiliousness nonbillable nonbinary nonbinding nonbindingly nonbindingness nonbinomial nonbiodegradable nonbiodegradables nonbiographical nonbiographically nonbiological nonbiologically nonbiologist nonbiologists nonbiting nonbitter nonbituminous nonblack nonblacks nonblamable nonblamableness nonblamably nonblameful nonblamefully nonblamefulness nonblameless nonblank nonblasphemies nonblasphemous nonblasphemously nonblasphemousness nonblasphemy nonbleach nonbleeding nonblended nonblending nonblinding nonblindingly nonblockaded nonblocking nonblooded nonblooming nonblundering nonblunderingly nonboaster nonboasting nonboastingly nonbodies nonbodily nonboding nonbodingly nonbody nonboiling nonbonded nonbonding nonbook nonbookish nonbookishly nonbookishness nonbooks nonborrower nonborrowing nonbotanic nonbotanical nonbotanically nonbotanist nonbotanists nonbourgeois nonbrand nonbranded nonbreach nonbreaching nonbreakable nonbreathing nonbreeder nonbreeders nonbreeding nonbreedings nonbristled nonbroadcast nonbroadcasts nonbromidic nonbroodiness nonbrooding nonbroody nonbrowser nonbrowsing nonbrutal nonbrutally nonbudding nonbuilding nonbuildings nonbulbaceous nonbulbar nonbulbiferous nonbulbous nonbulkhead nonbuoyancy nonbuoyant nonbuoyantly nonburdensome nonburdensomely nonburdensomeness nonbureaucratic nonbureaucratically nonburgage nonburgess nonburnable nonburning nonbursting nonbusily nonbusiness nonbusy nonbusyness nonbuttressed nonbuying noncabinet noncabinets noncadenced noncadent noncaffeine noncaffeinic noncaking noncalcareous noncalcified noncalculable noncalculably noncalculating noncalculative noncallability noncallable noncaloric noncalumniating noncalumnious noncampus noncancelable noncancellable noncancellation noncancerous noncandescence noncandescent noncandescently noncandidacies noncandidacy noncandidate noncandidates noncannibalistic noncannibalistically noncannonical noncanonical noncanonisation noncanonization noncanvassing noncapillaries noncapillarity noncapillary noncapital noncapitalist noncapitalistic noncapitalistically noncapitalists noncapitalized noncapitals noncapitulation noncapricious noncapriciously noncapriciousness noncapsizable noncaptious noncaptiously noncaptiousness noncapture noncarbohydrate noncarbolic noncarbon noncarbonate noncarbonated noncarcinogen noncarcinogenic noncarcinogens noncardiac noncareer noncarnivorous noncarnivorously noncarnivorousness noncarrier noncarriers noncartelised noncartelized noncash noncaste noncastigating noncastigation noncasual noncasuistic noncasuistical noncasuistically noncataclysmal noncataclysmic noncataloguer noncatalytic noncatalytically noncatarrhal noncatastrophic noncatechisable noncatechistic noncatechistical noncatechizable noncategorical noncategorically noncategoricalness noncathartic noncathartical noncathedral noncatholicity noncausable noncausal noncausality noncausally noncausation noncausative noncausatively noncausativeness noncaustic noncaustically nonce noncelebration noncelebrations noncelebrities noncelebrity noncelestial noncelestially noncellular noncellulosic noncellulous noncensored noncensorious noncensoriously noncensoriousness noncensurable noncensurableness noncensurably noncensus noncentral noncentrally noncereal noncerebral nonceremonial nonceremonially nonceremonious nonceremoniously nonceremoniousness noncertain noncertainties noncertainty noncertificated noncertification noncertified noncertitude nonces nonchafing nonchalance nonchalances nonchalant nonchalantly nonchalantness nonchalky nonchallenger nonchallenging nonchampion nonchangeable nonchangeableness nonchangeably nonchanging nonchanneled nonchannelized nonchaotic nonchaotically noncharacter noncharacteristic noncharacteristically noncharacterized noncharacters nonchargeable noncharismatic noncharitable noncharitableness noncharitably nonchastisement nonchastity nonchauvinist nonchauvinists nonchemical nonchemicals nonchemist nonchimeric nonchimerical nonchimerically nonchivalric nonchivalrous nonchivalrously nonchivalrousness nonchokable nonchokebore noncholeric nonchristian nonchromatic nonchromatically nonchromosomal nonchronic nonchronical nonchronically nonchronological nonchurch nonchurched nonchurchgoer nonchurchgoers nonchurchgoing nonciliate nonciliated noncircuit noncircuital noncircuited noncircuitous noncircuitously noncircuitousness noncircular noncircularly noncirculating noncirculation noncirculatory noncircumscribed noncircumscriptive noncircumspect noncircumspectly noncircumspectness noncircumstantial noncircumstantially noncircumvallated noncitable noncitation nonciteable noncitizen noncitizens noncivilian noncivilised noncivilizable noncivilized nonclaim nonclaimable nonclamorous nonclamorously nonclandestine nonclarifiable nonclarification nonclarified nonclass nonclassable nonclasses nonclassic nonclassical nonclassicality nonclassically nonclassifiable nonclassification nonclassified nonclassroom nonclassrooms nonclastic nonclearance noncleistogamic noncleistogamous nonclergyable nonclerical nonclerically nonclericals nonclerics nonclimactic nonclimactical nonclimbable nonclimbing noncling nonclinging nonclinical nonclinically nonclogging noncloistered nonclose nonclosely nonclosure nonclotting nonclyclical noncoagulability noncoagulable noncoagulating noncoagulation noncoagulative noncoalescence noncoalescent noncoalescing noncock noncodified noncoercible noncoercion noncoercive noncoercively noncoerciveness noncogency noncogent noncogently noncognate noncognition noncognitive noncognizable noncognizably noncognizance noncognizant noncognizantly noncohabitation noncoherence noncoherency noncoherent noncoherently noncohesion noncohesive noncohesively noncohesiveness noncoinage noncoincidence noncoincidences noncoincident noncoincidental noncoincidentally noncoital noncoking noncola noncollaboration noncollaborative noncollapsable noncollapsibility noncollapsible noncollectable noncollectible noncollection noncollective noncollectively noncollectivistic noncollector noncollectors noncollege noncolleges noncollegiate noncollinear noncolloid noncolloidal noncollusion noncollusive noncollusively noncollusiveness noncolonial noncolonially noncolor noncolorability noncolorable noncolorableness noncolorably noncolored noncolorfast noncoloring noncolors noncolour noncolourability noncolourable noncolourableness noncolourably noncoloured noncolourfast noncolouring noncolours noncolumned noncom noncombat noncombatant noncombatants noncombative noncombination noncombinative noncombining noncombustibility noncombustible noncombustibles noncombustion noncombustive noncome noncomic noncomical noncomicality noncomically noncomicalness noncoming noncommemoration noncommemorational noncommemorative noncommemoratively noncommemoratory noncommencement noncommendable noncommendableness noncommendably noncommendatory noncommensurable noncommercial noncommerciality noncommercially noncommercials noncommiseration noncommiserative noncommiseratively noncommissioned noncommital noncommitally noncommitment noncommitments noncommittal noncommittalism noncommittally noncommittalness noncommitted noncommodious noncommodiously noncommodiousness noncommonable noncommorancy noncommunal noncommunally noncommunicability noncommunicable noncommunicableness noncommunicant noncommunicants noncommunicating noncommunication noncommunications noncommunicative noncommunicatively noncommunicativeness noncommunion noncommunist noncommunistic noncommunistical noncommunistically noncommunists noncommunities noncommunity noncommutative noncommutativities noncommutativity noncomparabilities noncomparability noncomparable noncompatible noncompearance noncompensable noncompensating noncompensation noncompensative noncompensatory noncompetency noncompetent noncompetently noncompeting noncompetition noncompetitive noncompetitively noncompetitiveness noncompetitor noncompetitors noncomplacence noncomplacencies noncomplacency noncomplacent noncomplacently noncomplaisance noncomplaisant noncomplaisantly noncomplementary noncompletion noncompletions noncomplex noncompliance noncompliances noncompliant noncompliants noncomplicated noncomplicities noncomplicity noncomplying noncomplyings noncompos noncomposer noncomposers noncomposes noncomposite noncompositely noncompositeness noncomposure noncompound noncompoundable noncompounder noncompounds noncomprehendible noncomprehending noncomprehendingly noncomprehensible noncomprehensiblely noncomprehension noncomprehensions noncomprehensive noncomprehensively noncomprehensiveness noncompressibility noncompressible noncompression noncompressive noncompressively noncompromised noncompromising noncompulsion noncompulsive noncompulsively noncompulsorily noncompulsoriness noncompulsory noncomputation noncomputer noncomputerized noncoms noncon nonconcealment nonconceiving nonconcentrated nonconcentratiness nonconcentration nonconcentrative nonconcentrativeness nonconcentric nonconcentrical nonconcentrically nonconcentricity nonconception nonconceptual nonconceptually nonconcern nonconcerns nonconcession nonconcessive nonconciliating nonconciliatory nonconcision nonconcludency nonconcludent nonconcluding nonconclusion nonconclusions nonconclusive nonconclusively nonconclusiveness nonconcordant nonconcordantly nonconcur nonconcurred nonconcurrence nonconcurrences nonconcurrency nonconcurrent nonconcurrently nonconcurring nonconcurs noncondemnation noncondensable noncondensation noncondensed noncondensibility noncondensible noncondensing noncondescending noncondescendingly noncondescendingness noncondescension noncondiment noncondimental nonconditional nonconditioned noncondonation nonconduciness nonconducive nonconduciveness nonconductibility nonconductible nonconducting nonconduction nonconductions nonconductive nonconductor nonconductors nonconfederate nonconfederation nonconference nonconferences nonconferrable nonconfession nonconficient nonconfidence nonconfidences nonconfident nonconfidential nonconfidentiality nonconfidentially nonconfidentialness nonconfidently nonconfiding nonconfined nonconfinement nonconfining nonconfirmation nonconfirmative nonconfirmatory nonconfirming nonconfiscable nonconfiscation nonconfiscatory nonconfitent nonconflicting nonconflictive nonconform nonconformability nonconformable nonconformably nonconformance nonconformances nonconformed nonconformer nonconformers nonconformest nonconforming nonconformism nonconformisms nonconformist nonconformistical nonconformistically nonconformists nonconformitant nonconformities nonconformity nonconforms nonconfrontation nonconfrontational nonconfrontations nonconfutation noncongealing noncongenital noncongestion noncongestive noncongratulatory noncongregative noncongruence noncongruency noncongruent noncongruently noncongruities noncongruity noncongruous noncongruously noncongruousness nonconjecturable nonconjecturably nonconjectural nonconjugal nonconjugality nonconjugally nonconjugate nonconjugated nonconjugation nonconjunction nonconjunctive nonconjunctively nonconnection nonconnections nonconnective nonconnectively nonconnectivity nonconnivance nonconnivence nonconnotative nonconnotatively nonconnubial nonconnubiality nonconnubially nonconscientious nonconscientiously nonconscientiousness nonconscious nonconsciously nonconsciousness nonconscriptable nonconscription nonconsecration nonconsecutive nonconsecutively nonconsecutiveness nonconsensual nonconsent nonconsenting nonconsequence nonconsequent nonconsequential nonconsequentiality nonconsequentially nonconsequentialness nonconservation nonconservational nonconservations nonconservative nonconservatives nonconserving nonconsideration nonconsignment nonconsistorial nonconsolable nonconsolidated nonconsolidation nonconsoling nonconsolingly nonconsonance nonconsonant nonconsorting nonconspirator nonconspiratorial nonconspiring nonconstant nonconstants nonconstituent nonconstituted nonconstitutional nonconstraining nonconstraint nonconstricted nonconstricting nonconstrictive nonconstruability nonconstruable nonconstruction nonconstructions nonconstructive nonconstructively nonconstructiveness nonconsular nonconsultative nonconsultatory nonconsumable nonconsumer nonconsumers nonconsuming nonconsummation nonconsumption nonconsumptions nonconsumptive nonconsumptively nonconsumptiveness noncontact noncontacts noncontagion noncontagionist noncontagious noncontagiously noncontagiousness noncontaminable noncontamination noncontaminative noncontemplative noncontemplatively noncontemplativeness noncontemporaneous noncontemporaneously noncontemporaneousness noncontemporaries noncontemporary noncontemptibility noncontemptible noncontemptibleness noncontemptibly noncontemptuous noncontemptuously noncontemptuousness noncontending noncontent noncontention noncontentious noncontentiously nonconterminal nonconterminous nonconterminously noncontestable noncontestation noncontextual noncontextually noncontiguities noncontiguity noncontiguous noncontiguously noncontiguousness noncontinence noncontinency noncontinental noncontingency noncontingent noncontingently noncontinuable noncontinuably noncontinuance noncontinuation noncontinuity noncontinuous noncontinuously noncontinuousness noncontraband noncontrabands noncontract noncontraction noncontractual noncontradiction noncontradictions noncontradictories noncontradictory noncontrarieties noncontrariety noncontrastable noncontrastive noncontributable noncontributing noncontribution noncontributive noncontributively noncontributiveness noncontributor noncontributories noncontributory noncontrivance noncontrollable noncontrollablely noncontrollably noncontrolled noncontrolling noncontroversial noncontroversially noncontumacious noncontumaciously noncontumaciousness nonconvective nonconvectively nonconvenable nonconventional nonconventionally nonconvergence nonconvergency nonconvergent nonconvergently nonconverging nonconversable nonconversableness nonconversably nonconversance nonconversancy nonconversant nonconversantly nonconversational nonconversationally nonconversion nonconvertibility nonconvertible nonconvertibleness nonconvertibly nonconveyance nonconviction nonconvivial nonconviviality nonconvivially noncooperating noncooperation noncooperationist noncooperationists noncooperations noncooperative noncooperator noncooperators noncoordinating noncoordination noncoplanar noncopying noncoring noncorporate noncorporately noncorporation noncorporative noncorporeal noncorporeality noncorpuscular noncorrection noncorrectional noncorrective noncorrectively noncorrelating noncorrelation noncorrelations noncorrelative noncorrelatively noncorrespondence noncorrespondent noncorresponding noncorrespondingly noncorroborating noncorroboration noncorroborative noncorroboratively noncorroboratory noncorrodible noncorroding noncorrodings noncorrosive noncorrosively noncorrosiveness noncorrupt noncorrupter noncorruptibility noncorruptible noncorruptibleness noncorruptibly noncorruption noncorruptive noncorruptly noncorruptness noncortical noncortically noncosmic noncosmically noncosmopolitan noncosmopolitanism noncosmopolite noncosmopolitism noncostraight noncottager noncotyledonal noncotyledonary noncotyledonous noncounteractive noncounterfeit noncountries noncountry noncounty noncouperationist noncouperative noncouperator noncoverage noncoverages noncovetous noncovetously noncovetousness noncranking noncreation noncreative noncreatively noncreativeness noncreativities noncreativity noncredence noncredent noncredentialed noncredibility noncredible noncredibleness noncredibly noncredit noncreditable noncreditableness noncreditably noncreditor noncredulous noncredulously noncredulousness noncreeping noncrenate noncrenated noncretaceous noncrime noncrimes noncriminal noncriminality noncriminally noncriminals noncrinoid noncrises noncrisis noncritical noncritically noncriticalness noncriticizing noncrossover noncrucial noncrucially noncruciform noncruciformly noncrusading noncrushability noncrushable noncrustaceous noncryptic noncryptical noncryptically noncrystalline noncrystallisable noncrystallised noncrystallising noncrystallizable noncrystallized noncrystallizing nonculinary nonculminating nonculmination nonculpability nonculpable nonculpableness nonculpably noncultivability noncultivable noncultivatable noncultivated noncultivation noncultivations noncultural nonculturally nonculture noncultured noncumbrous noncumbrously noncumbrousness noncumulative noncumulatively noncurantist noncurative noncuratively noncurativeness noncurdling noncuriosity noncurious noncuriously noncuriousness noncurling noncurrency noncurrent noncurrently noncursive noncursively noncurtailing noncurtailment noncuspidate noncuspidated noncustodial noncustomarily noncustomary noncustomer noncustomers noncutting noncyclic noncyclical noncyclically nonda nondairy nondamageable nondamaging nondamagingly nondamnation nondance nondancer nondancers nondances nondangerous nondangerously nondangerousness nondark nondatival nondeadly nondeaf nondeafened nondeafening nondeafeningly nondeafly nondeafness nondealer nondebatable nondebater nondebating nondebilitating nondebilitation nondebilitative nondebtor nondecadence nondecadency nondecadent nondecalcification nondecalcified nondecane nondecasyllabic nondecasyllable nondecatoic nondecayed nondecaying nondeceit nondeceivable nondeceiving nondeceleration nondeception nondeceptive nondeceptively nondeceptiveness nondeciduate nondeciduous nondeciduously nondeciduousness nondecision nondecisions nondecisive nondecisively nondecisiveness nondeclamatory nondeclarant nondeclaration nondeclarative nondeclaratively nondeclaratory nondeclarer nondeclivitous nondecomposition nondecorated nondecoration nondecorative nondecorous nondecorously nondecorousness nondecreasing nondedication nondedicative nondedicatory nondeducible nondeductibilities nondeductibility nondeductible nondeduction nondeductive nondeductively nondeep nondefalcation nondefamatory nondefaulting nondefeasance nondefeasibility nondefeasible nondefeasibleness nondefeasibness nondefeat nondefecting nondefection nondefective nondefectively nondefectiveness nondefector nondefendant nondefense nondefensibility nondefensible nondefensibleness nondefensibly nondefensive nondefensively nondefensiveness nondeferable nondeference nondeferent nondeferential nondeferentially nondeferrable nondefiance nondefiant nondefiantly nondefiantness nondeficiencies nondeficiency nondeficient nondeficiently nondefilement nondefiling nondefinability nondefinable nondefinably nondefined nondefiner nondefining nondefinite nondefinitely nondefiniteness nondefinition nondefinitive nondefinitively nondefinitiveness nondeflation nondeflationary nondeflected nondeflection nondeflective nondeforestation nondeformation nondeformed nondeforming nondeformities nondeformity nondefunct nondegeneracies nondegeneracy nondegenerate nondegenerately nondegenerateness nondegenerates nondegeneration nondegenerative nondegerming nondegradable nondegradables nondegradation nondegrading nondegreased nondegree nondehiscent nondeist nondeistic nondeistical nondeistically nondelegable nondelegate nondelegates nondelegation nondeleterious nondeleteriously nondeleteriousness nondeliberate nondeliberately nondeliberateness nondeliberation nondelicate nondelicately nondelicateness nondelineation nondelineative nondelinquent nondeliquescence nondeliquescent nondelirious nondeliriously nondeliriousness nondeliverance nondeliveries nondelivery nondeluded nondeluding nondelusive nondemand nondemanding nondemise nondemobilisation nondemobilization nondemocracies nondemocracy nondemocratic nondemocratical nondemocratically nondemolition nondemonstrability nondemonstrable nondemonstrableness nondemonstrably nondemonstration nondemonstrative nondemonstratively nondemonstrativeness nondendroid nondendroidal nondenial nondenominational nondenominationalism nondenominationalisms nondenominationally nondenotative nondenotatively nondense nondenseness nondensity nondenumerable nondenunciating nondenunciation nondenunciative nondenunciatory nondeodorant nondeodorizing nondepartmental nondepartmentally nondeparture nondependability nondependable nondependableness nondependably nondependance nondependancies nondependancy nondependence nondependencies nondependency nondependent nondependents nondepletable nondepleting nondepletion nondepletive nondepletory nondeportation nondeported nondeposition nondepositions nondepositor nondepravation nondepraved nondepravities nondepravity nondeprecating nondeprecatingly nondeprecative nondeprecatively nondeprecatorily nondeprecatory nondepreciable nondepreciating nondepreciation nondepreciative nondepreciatively nondepreciatory nondepressed nondepressing nondepressingly nondepression nondepressive nondepressively nondeprivable nondeprivation nonderelict nonderisible nonderisive nonderivability nonderivable nonderivative nonderivatively nonderivatives nonderogation nonderogative nonderogatively nonderogatorily nonderogatoriness nonderogatory nondescribable nondescript nondescriptive nondescriptively nondescriptiveness nondescriptly nondescriptness nondescriptnesses nondescripts nondesecration nondesert nondesignate nondesignative nondesigned nondesire nondesirous nondesistance nondesistence nondesisting nondespotic nondespotically nondesquamative nondestruction nondestructive nondestructively nondestructiveness nondestructivenesses nondesulfurization nondesulfurized nondesulphurized nondetachability nondetachable nondetachment nondetailed nondetention nondeterioration nondeterminable nondeterminacy nondeterminant nondeterminate nondeterminately nondetermination nondeterminative nondeterminatively nondeterminativeness nondeterminism nondeterminist nondeterministic nondeterministically nondeterrent nondetest nondetinet nondetonating nondetractive nondetractively nondetractory nondetrimental nondetrimentally nondevelopable nondeveloping nondevelopment nondevelopmental nondevelopmentally nondevelopments nondeviant nondeviants nondeviating nondeviation nondevious nondeviously nondeviousness nondevotional nondevotionally nondevout nondevoutly nondevoutness nondexterity nondexterous nondexterously nondexterousness nondextrous nondiabetic nondiabetics nondiabolic nondiabolical nondiabolically nondiabolicalness nondiagnosis nondiagonal nondiagonally nondiagrammatic nondiagrammatical nondiagrammatically nondialectal nondialectally nondialectic nondialectical nondialectically nondialysing nondialyzable nondialyzing nondiametral nondiametrally nondiapausing nondiaphanous nondiaphanously nondiaphanousness nondiastasic nondiastatic nondiathermanous nondiazotizable nondichogamic nondichogamous nondichogamy nondichotomous nondichotomously nondictation nondictatorial nondictatorially nondictatorialness nondictionary nondidactic nondidactically nondietetic nondietetically nondieting nondifferentation nondifferentiable nondifferentiation nondifferentiations nondifficult nondiffidence nondiffident nondiffidently nondiffractive nondiffractively nondiffractiveness nondiffuse nondiffused nondiffusible nondiffusibleness nondiffusibly nondiffusing nondiffusion nondigestibility nondigestible nondigestibleness nondigestibly nondigesting nondigestion nondigestive nondilapidated nondilatability nondilatable nondilation nondiligence nondiligent nondiligently nondilution nondimensional nondimensioned nondiminishing nondiocesan nondiphtherial nondiphtheric nondiphtheritic nondiphthongal nondiplomacy nondiplomatic nondiplomatically nondipterous nondirected nondirection nondirectional nondirective nondirigibility nondirigible nondisabled nondisableds nondisagreement nondisappearing nondisarmament nondisastrous nondisastrously nondisastrousness nondisbursable nondisbursed nondisbursement nondiscerning nondiscernment nondischarging nondisciplinable nondisciplinary nondisciplined nondisciplining nondisclaim nondisclosure nondisclosures nondiscontinuance nondiscordant nondiscount nondiscountable nondiscoverable nondiscoveries nondiscovery nondiscretionary nondiscriminating nondiscriminatingly nondiscrimination nondiscriminations nondiscriminative nondiscriminatively nondiscriminatory nondiscursive nondiscursively nondiscursiveness nondiscussion nondiseased nondisestablishment nondisfigurement nondisfranchised nondisguised nondisingenuous nondisingenuously nondisingenuousness nondisintegrating nondisintegration nondisinterested nondisjunct nondisjunction nondisjunctional nondisjunctions nondisjunctive nondisjunctively nondismemberment nondismissal nondisparaging nondisparate nondisparately nondisparateness nondisparities nondisparity nondispensable nondispensation nondispensational nondispensible nondispersal nondispersion nondispersions nondispersive nondisposable nondisposal nondisposed nondisputatious nondisputatiously nondisputatiousness nondisqualifying nondisrupting nondisruptingly nondisruptive nondissent nondissenting nondissidence nondissident nondissipated nondissipatedly nondissipatedness nondissipative nondissolution nondissolving nondistant nondistillable nondistillation nondistinctive nondistinguishable nondistinguishableness nondistinguishably nondistinguished nondistinguishing nondistorted nondistortedly nondistortedness nondistorting nondistortingly nondistortion nondistortive nondistracted nondistractedly nondistracting nondistractingly nondistractive nondistribution nondistributional nondistributive nondistributively nondistributiveness nondisturbance nondisturbing nondivergence nondivergencies nondivergency nondivergent nondivergently nondiverging nondiversification nondiversified nondividing nondivinities nondivinity nondivisibility nondivisible nondivisiblity nondivision nondivisional nondivisive nondivisively nondivisiveness nondivorce nondivorced nondivulgence nondivulging nondo nondoctor nondoctors nondoctrinaire nondoctrinal nondoctrinally nondocumental nondocumentaries nondocumentary nondogmatic nondogmatical nondogmatically nondoing nondollar nondomestic nondomestically nondomesticated nondomesticating nondomestics nondominance nondominant nondominants nondominating nondomination nondomineering nondonation nondormant nondoubtable nondoubter nondoubting nondoubtingly nondramatic nondramatically nondrinkable nondrinker nondrinkers nondrinking nondrip nondriver nondrivers nondropsical nondropsically nondrug nondruidic nondruidical nondrying nondualism nondualistic nondualistically nonduality nonductile nonductility nondumping nonduplicating nonduplication nonduplicative nonduplicity nondurability nondurable nondurableness nondurables nondurably nondutiable nondynamic nondynamical nondynamically nondynastic nondynastical nondynastically nondyspeptic nondyspeptical nondyspeptically none noneager noneagerly noneagerness nonearning nonearnings noneastern noneatable nonebullience nonebulliency nonebullient nonebulliently noneccentric noneccentrically nonecclesiastic nonecclesiastical nonecclesiastically nonechoic noneclectic noneclectically noneclipsed noneclipsing nonecliptic nonecliptical nonecliptically nonecompense noneconomic noneconomical noneconomically noneconomies noneconomist noneconomists noneconomy nonecstatic nonecstatically nonecumenic nonecumenical nonedibility nonedible nonedibleness nonedibness nonedified noneditor noneditorial noneditorially noneducable noneducated noneducation noneducational noneducationally noneducations noneducative noneducatory noneffective noneffectives noneffervescent noneffervescently noneffete noneffetely noneffeteness nonefficacious nonefficaciously nonefficacy nonefficiency nonefficient nonefficiently noneffusion noneffusive noneffusively noneffusiveness nonego nonegocentric nonegoistic nonegoistical nonegoistically nonegos nonegotistic nonegotistical nonegotistically nonegregious nonegregiously nonegregiousness noneidetic nonejaculatory nonejecting nonejection nonejective nonelaborate nonelaborately nonelaborateness nonelaborating nonelaborative nonelastic nonelastically nonelasticity nonelect nonelected nonelection nonelections nonelective nonelectively nonelectiveness nonelectives nonelector nonelectric nonelectrical nonelectrically nonelectrics nonelectrification nonelectrified nonelectrized nonelectrocution nonelectrolyte nonelectrolytes nonelectrolytic nonelectronic nonelectronics noneleemosynary nonelemental nonelementally nonelementary nonelevating nonelevation nonelicited noneligibility noneligible noneligibly nonelimination noneliminative noneliminatory nonelite nonelliptic nonelliptical nonelliptically nonelongation nonelopement noneloquence noneloquent noneloquently nonelucidating nonelucidation nonelucidative nonelusive nonelusively nonelusiveness nonemanant nonemanating nonemancipation nonemancipative nonembarkation nonembellished nonembellishing nonembellishment nonembezzlement nonembryonal nonembryonic nonembryonically nonemendable nonemendation nonemergence nonemergencies nonemergency nonemergent nonemigrant nonemigration nonemission nonemotional nonemotionalism nonemotionally nonemotive nonemotively nonemotiveness nonempathic nonempathically nonemphatic nonemphatical nonempiric nonempirical nonempirically nonempiricism nonemployee nonemployees nonemploying nonemployment nonemployments nonempty nonemulation nonemulative nonemulous nonemulously nonemulousness nonenactment nonencapsulated nonenclosure nonencroachment nonencyclopaedic nonencyclopedic nonencyclopedical nonendemic nonending nonendorsement nonendowment nonendurable nonendurance nonenduring nonene nonenemies nonenemy nonenergetic nonenergetically nonenergic nonenergy nonenervating nonenforceabilities nonenforceability nonenforceable nonenforced nonenforcedly nonenforcement nonenforcements nonenforcing nonengagement nonengagements nonengineering nonengineerings nonengrossing nonengrossingly nonenigmatic nonenigmatical nonenigmatically nonenlightened nonenlightening nonenrolled nonent nonentailed nonenteric nonenterprising nonentertaining nonentertainment nonentertainments nonenthusiastic nonenthusiastically nonenticing nonenticingly nonentitative nonentities nonentitive nonentitize nonentity nonentityism nonentomologic nonentomological nonentrant nonentreating nonentreatingly nonentres nonentresse nonentries nonentry nonenumerated nonenumerative nonenunciation nonenunciative nonenunciatory nonenviable nonenviableness nonenviably nonenvious nonenviously nonenviousness nonenvironmental nonenvironmentally nonenzymatic nonenzymic nonephemeral nonephemerally nonepic nonepical nonepically nonepicurean nonepigrammatic nonepigrammatically nonepileptic nonepiscopal nonepiscopalian nonepiscopally nonepisodic nonepisodical nonepisodically nonepithelial nonepochal nonequability nonequable nonequableness nonequably nonequal nonequalization nonequalized nonequalizing nonequals nonequation nonequatorial nonequatorially nonequestrian nonequilateral nonequilaterally nonequilibria nonequilibrium nonequilibriums nonequitable nonequitably nonequivalence nonequivalences nonequivalency nonequivalent nonequivalently nonequivalents nonequivocal nonequivocally nonequivocating noneradicable noneradicative nonerasure nonerecting nonerection noneroded nonerodent noneroding nonerosive nonerotic nonerotically nonerrant nonerrantly nonerratic nonerratically nonerroneous nonerroneously nonerroneousness nonerudite noneruditely noneruditeness nonerudition noneruption noneruptive nones nonescape nonesoteric nonesoterically nonespionage nonespousal nonessential nonessentials nonestablished nonestablishment nonestablishments nonesterified nonesthetic nonesthetical nonesthetically nonestimable nonestimableness nonestimably nonesuch nonesuches nonesurient nonesuriently nonet noneternal noneternally noneternalness noneternity nonetheless nonethereal nonethereality nonethereally nonetherealness nonethic nonethical nonethically nonethicalness nonethnic nonethnical nonethnically nonethnologic nonethnological nonethnologically nonethyl nonets nonette nonettes nonetti nonetto nonettos noneugenic noneugenical noneugenically noneuphonious noneuphoniously noneuphoniousness nonevacuation nonevadable nonevadible nonevading nonevadingly nonevaluation nonevaluative nonevanescent nonevanescently nonevangelic nonevangelical nonevangelically nonevaporable nonevaporating nonevaporation nonevaporative nonevasion nonevasive nonevasively nonevasiveness nonevent nonevents noneviction nonevidence nonevidences nonevident nonevidential nonevil nonevilly nonevilness nonevincible nonevincive nonevocative nonevolutional nonevolutionally nonevolutionary nonevolutionist nonevolving nonexactable nonexacting nonexactingly nonexactingness nonexaction nonexaggerated nonexaggeratedly nonexaggerating nonexaggeration nonexaggerative nonexaggeratory nonexamination nonexcavation nonexcepted nonexcepting nonexceptional nonexceptionally nonexcerptible nonexcessive nonexcessively nonexcessiveness nonexchangeability nonexchangeable nonexcitable nonexcitableness nonexcitably nonexcitative nonexcitatory nonexciting nonexclamatory nonexclusion nonexclusive nonexcommunicable nonexculpable nonexculpation nonexculpatory nonexcusable nonexcusableness nonexcusably nonexecutable nonexecution nonexecutive nonexecutives nonexemplary nonexemplification nonexemplificatior nonexempt nonexemption nonexercisable nonexercise nonexerciser nonexertion nonexertive nonexhausted nonexhaustible nonexhaustive nonexhaustively nonexhaustiveness nonexhibition nonexhibitionism nonexhibitionistic nonexhibitive nonexhortation nonexhortative nonexhortatory nonexigent nonexigently nonexistence nonexistences nonexistent nonexistential nonexistentialism nonexistentially nonexisting nonexoneration nonexotic nonexotically nonexpanded nonexpanding nonexpansibility nonexpansible nonexpansile nonexpansion nonexpansive nonexpansively nonexpansiveness nonexpectant nonexpectantly nonexpectation nonexpedience nonexpediency nonexpedient nonexpediential nonexpediently nonexpeditious nonexpeditiously nonexpeditiousness nonexpendable nonexperience nonexperienced nonexperiential nonexperientially nonexperimental nonexperimentally nonexpert nonexperts nonexpiable nonexpiation nonexpiatory nonexpiration nonexpiries nonexpiring nonexpiry nonexplainable nonexplanative nonexplanatory nonexplicable nonexplicative nonexploitation nonexploitations nonexploitative nonexploitive nonexplorative nonexploratory nonexplosive nonexplosively nonexplosiveness nonexplosives nonexponential nonexponentially nonexponible nonexportable nonexportation nonexposed nonexposure nonexpressionistic nonexpressive nonexpressively nonexpressiveness nonexpulsion nonexpulsive nonextant nonextempore nonextended nonextendible nonextendibleness nonextensibility nonextensible nonextensibleness nonextensibness nonextensile nonextension nonextensional nonextensive nonextensively nonextensiveness nonextenuating nonextenuatingly nonextenuative nonextenuatory nonexteriority nonextermination nonexterminative nonexterminatory nonexternal nonexternality nonexternalized nonexternally nonextinct nonextinction nonextinguishable nonextinguished nonextortion nonextortive nonextractable nonextracted nonextractible nonextraction nonextractive nonextraditable nonextradition nonextraneous nonextraneously nonextraneousness nonextreme nonextricable nonextricably nonextrication nonextrinsic nonextrinsical nonextrinsically nonextrusive nonexuberance nonexuberancy nonexuding nonexultant nonexultantly nonexultation nonfabulous nonfacetious nonfacetiously nonfacetiousness nonfacial nonfacility nonfacing nonfact nonfactious nonfactiously nonfactiousness nonfactitious nonfactitiously nonfactitiousness nonfactor nonfactors nonfactory nonfacts nonfactual nonfactually nonfacultative nonfaculty nonfaddist nonfading nonfailure nonfallacious nonfallaciously nonfallaciousness nonfalse nonfaltering nonfalteringly nonfamilial nonfamiliar nonfamiliarly nonfamilies nonfamily nonfamous nonfan nonfanatic nonfanatical nonfanatically nonfanciful nonfans nonfantasies nonfantasy nonfarcical nonfarcicality nonfarcically nonfarcicalness nonfarm nonfarmer nonfarmers nonfascist nonfascists nonfashionable nonfashionableness nonfashionably nonfastidious nonfastidiously nonfastidiousness nonfat nonfatal nonfatalistic nonfatalities nonfatality nonfatally nonfatalness nonfatigable nonfattening nonfatty nonfaulty nonfavorable nonfavorableness nonfavorably nonfavored nonfavorite nonfavourite nonfealties nonfealty nonfeasance nonfeasances nonfeasibility nonfeasible nonfeasibleness nonfeasibly nonfeasor nonfeatured nonfebrile nonfecund nonfecundity nonfederal nonfederated nonfeeble nonfeebleness nonfeebly nonfeeding nonfeeling nonfeelingly nonfeldspathic nonfelicitous nonfelicitously nonfelicitousness nonfelicity nonfelonious nonfeloniously nonfeloniousness nonfelony nonfeminist nonfeminists nonfenestrated nonfermentability nonfermentable nonfermentation nonfermentative nonfermented nonfermenting nonferocious nonferociously nonferociousness nonferocity nonferrous nonfertile nonfertility nonfervent nonfervently nonferventness nonfervid nonfervidly nonfervidness nonfestive nonfestively nonfestiveness nonfeudal nonfeudally nonfeverish nonfeverishly nonfeverishness nonfeverous nonfeverously nonfibrous nonfiction nonfictional nonfictionally nonfictions nonfictitious nonfictitiously nonfictitiousness nonfictive nonfictively nonfidelity nonfiduciaries nonfiduciary nonfighter nonfigurative nonfiguratively nonfigurativeness nonfilamentous nonfilial nonfilter nonfilterable nonfimbriate nonfimbriated nonfinal nonfinancial nonfinancially nonfinding nonfinishing nonfinite nonfinitely nonfiniteness nonfireproof nonfiscal nonfiscally nonfisherman nonfishermen nonfissile nonfissility nonfissionable nonfixation nonflagellate nonflagellated nonflagitious nonflagitiously nonflagitiousness nonflagrance nonflagrancy nonflagrant nonflagrantly nonflakily nonflakiness nonflaky nonflammabilities nonflammability nonflammable nonflammatory nonflatulence nonflatulency nonflatulent nonflatulently nonflavored nonflavoured nonflawed nonflexibility nonflexible nonflexibleness nonflexibly nonflirtatious nonflirtatiously nonflirtatiousness nonfloatation nonfloating nonfloatingly nonfloriferous nonflowering nonflowing nonfluctuating nonfluctuation nonfluencies nonfluency nonfluent nonfluently nonfluentness nonfluid nonfluidic nonfluidity nonfluidly nonfluids nonfluorescence nonfluorescent nonflux nonflyable nonflying nonfocal nonfollowing nonfood nonforbearance nonforbearing nonforbearingly nonforeclosing nonforeclosure nonforeign nonforeigness nonforeignness nonforeknowledge nonforensic nonforensically nonforest nonforested nonforfeitable nonforfeiting nonforfeiture nonforfeitures nonforgiving nonform nonformal nonformalism nonformalistic nonformally nonformalness nonformation nonformative nonformatively nonformidability nonformidable nonformidableness nonformidably nonforming nonformulation nonfortifiable nonfortification nonfortifying nonfortuitous nonfortuitously nonfortuitousness nonfossil nonfossiliferous nonfouling nonfragile nonfragilely nonfragileness nonfragility nonfragmented nonfragrant nonfrangibility nonfrangible nonfrat nonfraternal nonfraternally nonfraternity nonfraternization nonfraternizations nonfrauder nonfraudulence nonfraudulency nonfraudulent nonfraudulently nonfreedom nonfreeman nonfreemen nonfreezable nonfreeze nonfreezing nonfrenetic nonfrenetically nonfrequence nonfrequency nonfrequent nonfrequently nonfricative nonfricatives nonfriction nonfrigid nonfrigidity nonfrigidly nonfrigidness nonfrivolous nonfrosted nonfrosting nonfrozen nonfrugal nonfrugality nonfrugally nonfrugalness nonfruition nonfrustration nonfuel nonfugitive nonfugitively nonfugitiveness nonfulfillment nonfulfillments nonfulfilment nonfulfilments nonfulminating nonfunctional nonfunctionally nonfunctioning nonfundable nonfundamental nonfundamentalist nonfundamentally nonfunded nonfungible nonfuroid nonfused nonfusibility nonfusible nonfusion nonfutile nonfuturistic nonfuturition nonfuturity nong nongalactic nongalvanised nongalvanized nongame nonganglionic nongangrenous nongarrulity nongarrulous nongarrulously nongarrulousness nongas nongaseness nongaseous nongaseousness nongases nongassy nongay nongays nongelatinising nongelatinizing nongelatinous nongelatinously nongelatinousness nongelling nongenealogic nongenealogical nongenealogically nongeneralized nongenerating nongenerative nongeneric nongenerical nongenerically nongenetic nongenetical nongenetically nongenital nongentile nongenuine nongenuinely nongenuineness nongeographic nongeographical nongeographically nongeologic nongeological nongeologically nongeometric nongeometrical nongeometrically nongermane nongerminal nongerminating nongermination nongerminative nongerundial nongerundive nongerundively nongestic nongestical nonghetto nongilded nongildsman nongilled nongipsy nonglacial nonglacially nonglamorous nonglandered nonglandular nonglandulous nonglare nonglares nonglazed nonglobular nonglobularly nonglucose nonglucosidal nonglucosidic nonglutenous nonglutinous nongod nongold nongolfer nongolfers nongonococcal nongospel nongovernance nongovernment nongovernmental nongovernments nongraceful nongracefully nongracefulness nongraciosity nongracious nongraciously nongraciousness nongraded nongraduate nongraduated nongraduates nongraduation nongrain nongrained nongrammatical nongranular nongranulated nongraphic nongraphical nongraphically nongraphicalness nongraphitic nongrass nongratification nongratifying nongratifyingly nongratuitous nongratuitously nongratuitousness nongraven nongravitation nongravitational nongravitationally nongravitative nongravities nongravity nongray nongreasy nongreen nongregarious nongregariously nongregariousness nongremial nongrey nongrieved nongrieving nongrievous nongrievously nongrievousness nongrooming nongrounded nongrounding nongrowing nongrowth nongs nonguarantee nonguaranties nonguaranty nonguard nonguest nonguests nonguidable nonguidance nonguilt nonguilts nonguttural nongutturally nongutturalness nongymnast nongypsy nonhabitability nonhabitable nonhabitableness nonhabitably nonhabitation nonhabitual nonhabitually nonhabitualness nonhabituating nonhackneyed nonhairy nonhalation nonhallucinated nonhallucination nonhallucinatory nonhalogenated nonhandicap nonhandicapped nonhappening nonhappenings nonhardenable nonhardy nonharmonic nonharmonies nonharmonious nonharmoniously nonharmoniousness nonharmony nonhazardous nonhazardously nonhazardousness nonheading nonhearer nonheathen nonheathens nonhectic nonhectically nonhedonic nonhedonically nonhedonistic nonhedonistically nonheinous nonheinously nonheinousness nonhematic nonheme nonhemolytic nonhemophilic nonhepatic nonhereditability nonhereditable nonhereditably nonhereditarily nonhereditariness nonhereditary nonheretical nonheretically nonheritability nonheritable nonheritably nonheritor nonhero nonheroes nonheroic nonheroical nonheroically nonheroicalness nonheroicness nonhesitant nonhesitantly nonheuristic nonhierarchic nonhierarchical nonhierarchically nonhieratic nonhieratical nonhieratically nonhistone nonhistoric nonhistorical nonhistorically nonhistoricalness nonhistrionic nonhistrionical nonhistrionically nonhistrionicalness nonhomaloidal nonhome nonhomiletic nonhomogeneity nonhomogeneous nonhomogeneously nonhomogeneousness nonhomogenous nonhomologous nonhomosexual nonhomosexuals nonhormonal nonhospital nonhospitalized nonhospitals nonhostile nonhostilely nonhostility nonhouseholder nonhousekeeping nonhousing nonhousings nonhubristic nonhuman nonhumaness nonhumanist nonhumanistic nonhumanized nonhumanness nonhumorous nonhumorously nonhumorousness nonhumus nonhunter nonhunters nonhunting nonhydrated nonhydraulic nonhydrogenous nonhydrolysable nonhydrolyzable nonhydrophobic nonhygrometric nonhygroscopic nonhygroscopically nonhyperbolic nonhyperbolical nonhyperbolically nonhypnotic nonhypnotically nonhypostatic nonhypostatical nonhypostatically nonhysterical nonic noniconoclastic noniconoclastically nonideal nonidealist nonidealistic nonidealistically nonideational nonideationally nonidempotent nonidentical nonidentification nonidentities nonidentity nonideologic nonideological nonideologically nonidiomatic nonidiomatical nonidiomatically nonidiomaticalness nonidolatrous nonidolatrously nonidolatrousness nonidyllic nonidyllically nonigneous nonignitability nonignitable nonignitibility nonignitible nonignominious nonignominiously nonignominiousness nonignorant nonignorantly nonillative nonillatively nonillion nonillions nonillionth nonillionths nonilluminant nonilluminating nonilluminatingly nonillumination nonilluminative nonillusional nonillusive nonillusively nonillusiveness nonillustration nonillustrative nonillustratively nonimage nonimaginarily nonimaginariness nonimaginary nonimaginational nonimbricate nonimbricated nonimbricately nonimbricating nonimbricative nonimitability nonimitable nonimitating nonimitation nonimitational nonimitative nonimitatively nonimitativeness nonimmanence nonimmanency nonimmanent nonimmanently nonimmateriality nonimmersion nonimmigrant nonimmigrants nonimmigration nonimmune nonimmunised nonimmunities nonimmunity nonimmunization nonimmunized nonimpact nonimpacted nonimpairment nonimpartation nonimpartment nonimpatience nonimpeachability nonimpeachable nonimpeachment nonimpedimental nonimpedimentary nonimperative nonimperatively nonimperativeness nonimperial nonimperialistic nonimperialistically nonimperially nonimperialness nonimperious nonimperiously nonimperiousness nonimplement nonimplemental nonimplication nonimplications nonimplicative nonimplicatively nonimportation nonimportations nonimporting nonimposition nonimpregnated nonimpressionability nonimpressionable nonimpressionableness nonimpressionabness nonimpressionist nonimpressionistic nonimprovement nonimpulsive nonimpulsively nonimpulsiveness nonimputability nonimputable nonimputableness nonimputably nonimputation nonimputative nonimputatively nonimputativeness nonincandescence nonincandescent nonincandescently nonincarnate nonincarnated nonincestuous nonincestuously nonincestuousness nonincident nonincidental nonincidentally nonincitement noninclinable noninclination noninclinational noninclinatory noninclusion noninclusions noninclusive noninclusively noninclusiveness nonincorporated nonincorporative nonincreasable nonincrease nonincreasing nonincriminating nonincrimination nonincriminatory nonincrusting nonincumbent nonincumbents nonindependence nonindependences nonindependent nonindependently nonindexed nonindictable nonindictment nonindigenous nonindividual nonindividualistic nonindividualities nonindividuality noninduced noninducible noninductive noninductively noninductivity nonindulgence nonindulgent nonindulgently nonindurated nonindurative nonindustrial nonindustrialization nonindustrialized nonindustrially nonindustrious nonindustriously nonindustriousness nonindustry noninert noninertial noninertly noninertness noninfallibilist noninfallibility noninfallible noninfallibleness noninfallibly noninfantry noninfected noninfecting noninfection noninfectious noninfectiously noninfectiousness noninfective noninferable noninferably noninferential noninferentially noninfested noninfinite noninfinitely noninfiniteness noninflammability noninflammable noninflammableness noninflammably noninflammatory noninflation noninflationary noninflected noninflectional noninflectionally noninfluence noninfluences noninfluential noninfluentially noninformation noninformational noninformations noninformative noninformatively noninformativeness noninfraction noninfusibility noninfusible noninfusibleness noninfusibness noninhabitability noninhabitable noninhabitance noninhabitancies noninhabitancy noninhabitant noninherence noninherent noninherently noninheritability noninheritable noninheritableness noninheritabness noninherited noninhibitive noninhibitory noninitial noninitially noninitiate noninitiates noninjuries noninjurious noninjuriously noninjuriousness noninjury noninoculation noninoculative noninquiring noninquiringly noninsect noninsecticidal noninsects noninsertion noninsistence noninsistencies noninsistency noninsistent noninspissating noninstallment noninstinctive noninstinctively noninstinctual noninstinctually noninstitution noninstitutional noninstitutionalized noninstitutionally noninstruction noninstructional noninstructionally noninstructive noninstructively noninstructiveness noninstructress noninstrumental noninstrumentalistic noninstrumentally noninsular noninsularity noninsurance noninsurances noninsured nonintegrable nonintegral nonintegrated nonintegration nonintegrity nonintellectual nonintellectually nonintellectualness nonintellectuals nonintelligence nonintelligent nonintelligently nonintent nonintention noninteracting noninteractive nonintercepting noninterceptive noninterchangeability noninterchangeable noninterchangeableness noninterchangeably nonintercourse nonintercourses noninterdependence noninterdependency noninterdependent noninterdependently noninterest noninterests noninterfaced noninterference noninterferences noninterferer noninterfering noninterferingly noninterlaced noninterleaved nonintermission nonintermittence nonintermittent nonintermittently nonintermittentness noninternational noninternationally noninterpolating noninterpolation noninterpolative noninterposition noninterpretability noninterpretable noninterpretational noninterpretative noninterpretatively noninterpretive noninterpretively noninterpretiveness noninterrupted noninterruptedly noninterruptedness noninterruption noninterruptive nonintersecting nonintersectional nonintersector nonintervention noninterventional noninterventionalist noninterventionist noninterventionists noninterventions nonintimidating nonintimidation nonintoxicant nonintoxicants nonintoxicating nonintoxicatingly nonintoxicative nonintrospective nonintrospectively nonintrospectiveness nonintroversive nonintroversively nonintroversiveness nonintroverted nonintrovertedly nonintrovertedness nonintrusion nonintrusionism nonintrusionist nonintrusive nonintuitive nonintuitively nonintuitiveness noninvasive noninverted noninverting noninvidious noninvidiously noninvidiousness noninvincibility noninvincible noninvincibleness noninvincibly noninvolved noninvolvement noninvolvements noniodized nonion nonionic nonionised nonionising nonionized nonionizing nonirate nonirately nonirenic nonirenical noniridescence noniridescent noniridescently noniron nonironic nonironical nonironically nonironicalness nonirradiated nonirrational nonirrationally nonirrationalness nonirreparable nonirrevocability nonirrevocable nonirrevocableness nonirrevocably nonirrigable nonirrigated nonirrigating nonirrigation nonirritability nonirritable nonirritableness nonirritably nonirritancy nonirritant nonirritating nonisobaric nonisoelastic nonisolable nonisotropic nonisotropous nonissuable nonissuably nonissue nonissues nonius nonjoinder nonjoinders nonjoiner nonjoiners nonjournalistic nonjournalistically nonjudgemental nonjudgementally nonjudgmental nonjudgmentally nonjudicable nonjudicative nonjudicatories nonjudicatory nonjudiciable nonjudicial nonjudicially nonjurable nonjurancy nonjurant nonjurantism nonjuress nonjuridic nonjuridical nonjuridically nonjuries nonjuring nonjurist nonjuristic nonjuristical nonjuristically nonjuror nonjurorism nonjurors nonjury nonjurying nonjusticiable nonkinetic nonknowledge nonknowledgeable nonkosher nonlabeling nonlabelling nonlabor nonlacteal nonlacteally nonlacteous nonlactescent nonlactic nonlaminable nonlaminated nonlaminating nonlaminative nonlandowner nonlandowners nonlanguage nonlanguages nonlarcenous nonlawyer nonlawyers nonlayered nonlaying nonleaded nonleafy nonleague nonleaking nonlegal nonlegato nonlegislative nonlegislatively nonlegitimacy nonlegitimate nonlegume nonlegumes nonleguminous nonlepidopteral nonlepidopteran nonlepidopterous nonleprous nonleprously nonlethal nonlethally nonlethargic nonlethargical nonlethargically nonlevel nonleviable nonlevulose nonlexical nonlexically nonliabilities nonliability nonliable nonlibelous nonlibelously nonliberal nonliberalism nonliberation nonlibidinous nonlibidinously nonlibidinousness nonlibrarian nonlibrarians nonlibraries nonlibrary nonlicensable nonlicensed nonlicentiate nonlicentious nonlicentiously nonlicentiousness nonlicet nonlicit nonlicking nonlife nonlimitation nonlimitative nonlimiting nonlineal nonlinear nonlinearities nonlinearity nonlinearly nonlinguistic nonlinkage nonlipoidal nonliquefiable nonliquefying nonliquid nonliquidating nonliquidation nonliquidly nonliquids nonlister nonlisting nonliteracy nonliteral nonliterality nonliterally nonliteralness nonliterarily nonliterariness nonliterary nonliterate nonliterates nonlitigated nonlitigation nonlitigious nonlitigiously nonlitigiousness nonliturgic nonliturgical nonliturgically nonlive nonlives nonliving nonlixiviated nonlixiviation nonlocal nonlocalised nonlocalizable nonlocalized nonlocally nonlocals nonlocation nonlogic nonlogical nonlogicality nonlogically nonlogicalness nonlogistic nonlogistical nonlosable nonloser nonlover nonloving nonloxodromic nonloxodromical nonloyal nonloyally nonloyalties nonloyalty nonlubricant nonlubricating nonlubricious nonlubriciously nonlubriciousness nonlucid nonlucidity nonlucidly nonlucidness nonlucrative nonlucratively nonlucrativeness nonlugubrious nonlugubriously nonlugubriousness nonluminescence nonluminescent nonluminosity nonluminous nonluminously nonluminousness nonluster nonlustrous nonlustrously nonlustrousness nonly nonlymphatic nonlyric nonlyrical nonlyrically nonlyricalness nonlyricism nonmagnetic nonmagnetical nonmagnetically nonmagnetisable nonmagnetizable nonmagnetized nonmailable nonmainstream nonmaintenance nonmajor nonmajorities nonmajority nonmajors nonmakeup nonmalarial nonmalarian nonmalarious nonmalicious nonmaliciously nonmaliciousness nonmalignance nonmalignancy nonmalignant nonmalignantly nonmalignity nonmalleability nonmalleable nonmalleableness nonmalleabness nonmammalian nonman nonmanagement nonmanagements nonmanagerial nonmandatories nonmandatory nonmanifest nonmanifestation nonmanifestly nonmanifestness nonmanila nonmanipulative nonmanipulatory nonmannered nonmanneristic nonmannite nonmanual nonmanually nonmanufacture nonmanufactured nonmanufacturing nonmanufacturings nonmarine nonmarital nonmaritally nonmaritime nonmarket nonmarketability nonmarketable nonmarriage nonmarriageability nonmarriageable nonmarriageableness nonmarriageabness nonmarrying nonmartial nonmartially nonmartialness nonmarveling nonmasculine nonmasculinely nonmasculineness nonmasculinity nonmaskable nonmason nonmasteries nonmastery nonmatching nonmaterial nonmaterialistic nonmaterialistically nonmateriality nonmaternal nonmaternally nonmathematic nonmathematical nonmathematically nonmathematician nonmathematicians nonmatriculated nonmatrimonial nonmatrimonially nonmatter nonmaturation nonmaturative nonmature nonmaturely nonmatureness nonmaturity nonmeaningful nonmeasurability nonmeasurable nonmeasurableness nonmeasurably nonmeat nonmechanical nonmechanically nonmechanicalness nonmechanistic nonmediation nonmediative nonmedicable nonmedical nonmedically nonmedicative nonmedicinal nonmedicinally nonmeditative nonmeditatively nonmeditativeness nonmedullated nonmeeting nonmeetings nonmelodic nonmelodically nonmelodious nonmelodiously nonmelodiousness nonmelodramatic nonmelodramatically nonmelting nonmember nonmembers nonmembership nonmemberships nonmen nonmenacing nonmendicancy nonmendicant nonmenial nonmenially nonmental nonmentally nonmercantile nonmercearies nonmercenaries nonmercenary nonmerchantable nonmercurial nonmeritorious nonmetal nonmetallic nonmetalliferous nonmetallurgic nonmetallurgical nonmetallurgically nonmetals nonmetameric nonmetamorphic nonmetamorphoses nonmetamorphosis nonmetamorphous nonmetaphoric nonmetaphorical nonmetaphorically nonmetaphysical nonmetaphysically nonmeteoric nonmeteorically nonmeteorologic nonmeteorological nonmeteorologically nonmethodic nonmethodical nonmethodically nonmethodicalness nonmetric nonmetrical nonmetrically nonmetro nonmetropolitan nonmetropolitans nonmicrobial nonmicrobic nonmicroprogrammed nonmicroscopic nonmicroscopical nonmicroscopically nonmigrant nonmigrants nonmigrating nonmigration nonmigratory nonmilitancy nonmilitant nonmilitantly nonmilitants nonmilitarily nonmilitary nonmillionaire nonmimetic nonmimetically nonmineral nonmineralogical nonmineralogically nonminerals nonminimal nonministerial nonministerially nonministration nonminority nonmiraculous nonmiraculously nonmiraculousness nonmischievous nonmischievously nonmischievousness nonmiscibility nonmiscible nonmissionaries nonmissionary nonmitigation nonmitigative nonmitigatory nonmobile nonmobility nonmodal nonmodally nonmoderate nonmoderately nonmoderateness nonmodern nonmodernistic nonmodernly nonmodernness nonmodificative nonmodificatory nonmodifying nonmolar nonmolecular nonmomentariness nonmomentary nonmonarchal nonmonarchally nonmonarchial nonmonarchic nonmonarchical nonmonarchically nonmonarchist nonmonarchistic nonmonastic nonmonastically nonmonetarist nonmonetarists nonmonetary nonmoney nonmonist nonmonistic nonmonistically nonmonogamous nonmonogamously nonmonopolistic nonmonotheistic nonmonotonic nonmorainic nonmoral nonmorality nonmortal nonmortally nonmortals nonmotile nonmotilities nonmotility nonmotion nonmotivated nonmotivation nonmotivational nonmotoring nonmotorist nonmotorized nonmountainous nonmountainously nonmoveability nonmoveable nonmoveableness nonmoveably nonmoving nonmucilaginous nonmucous nonmulched nonmultiple nonmultiplication nonmultiplicational nonmultiplicative nonmultiplicatively nonmunicipal nonmunicipally nonmuscular nonmuscularly nonmusic nonmusical nonmusically nonmusicalness nonmusician nonmusicians nonmusics nonmussable nonmutability nonmutable nonmutableness nonmutably nonmutant nonmutants nonmutational nonmutationally nonmutative nonmutinous nonmutinously nonmutinousness nonmutual nonmutuality nonmutually nonmyelinated nonmyopic nonmyopically nonmystic nonmystical nonmystically nonmysticalness nonmysticism nonmythical nonmythically nonmythologic nonmythological nonmythologically nonnant nonnarcism nonnarcissism nonnarcissistic nonnarcotic nonnarcotics nonnarration nonnarrative nonnarratives nonnasal nonnasality nonnasally nonnat nonnational nonnationalism nonnationalistic nonnationalistically nonnationalization nonnationally nonnationals nonnative nonnatively nonnativeness nonnatives nonnattily nonnattiness nonnatty nonnatural nonnaturalism nonnaturalist nonnaturalistic nonnaturality nonnaturally nonnaturalness nonnaturals nonnautical nonnautically nonnaval nonnavigability nonnavigable nonnavigableness nonnavigably nonnavigation nonnebular nonnebulous nonnebulously nonnebulousness nonnecessary nonnecessities nonnecessitous nonnecessitously nonnecessitousness nonnecessity nonnegation nonnegative nonnegativism nonnegativistic nonnegativity nonnegligence nonnegligent nonnegligently nonnegligibility nonnegligible nonnegligibleness nonnegligibly nonnegotiability nonnegotiable nonnegotiation nonnephritic nonnervous nonnervously nonnervousness nonnescience nonnescient nonnetwork nonneural nonneurotic nonneutral nonneutrality nonneutrally nonneutrals nonnews nonnicotinic nonnies nonnihilism nonnihilist nonnihilistic nonnitric nonnitrogenised nonnitrogenized nonnitrogenous nonnitrous nonnobility nonnoble nonnocturnal nonnocturnally nonnomad nonnomadic nonnomadically nonnominalistic nonnomination nonnormal nonnormality nonnormally nonnormalness nonnormative nonnotable nonnotableness nonnotably nonnotational nonnotification nonnotional nonnoumenal nonnoumenally nonnourishing nonnourishment nonnovel nonnovels nonnuclear nonnucleated nonnullification nonnumeral nonnumeric nonnumerical nonnumericals nonnutrient nonnutriment nonnutritious nonnutritiously nonnutritiousness nonnutritive nonnutritively nonnutritiveness nonny nonobedience nonobediences nonobedient nonobediently nonobese nonobjectification nonobjection nonobjective nonobjectivism nonobjectivisms nonobjectivist nonobjectivistic nonobjectivists nonobjectivities nonobjectivity nonobligated nonobligatorily nonobligatory nonobscene nonobscurities nonobscurity nonobservable nonobservably nonobservance nonobservances nonobservant nonobservantly nonobservation nonobservational nonobserving nonobservingly nonobsession nonobsessional nonobsessive nonobsessively nonobsessiveness nonobstetric nonobstetrical nonobstetrically nonobstructive nonobstructively nonobstructiveness nonobvious nonobviously nonobviousness nonoccidental nonoccidentally nonocclusion nonocclusive nonoccult nonocculting nonoccupance nonoccupancy nonoccupant nonoccupation nonoccupational nonoccurrence nonoccurrences nonodoriferous nonodoriferously nonodoriferousness nonodorous nonodorously nonodorousness nonoecumenic nonoecumenical nonoffender nonoffensive nonoffensively nonoffensiveness nonofficeholder nonofficeholding nonofficial nonofficially nonofficinal nonogenarian nonohmic nonoic nonoily nonolfactories nonolfactory nonoligarchic nonoligarchical nonomad nonomissible nonomission nononerous nononerously nononerousness nonopacities nonopacity nonopaque nonopening nonoperable nonoperatic nonoperatically nonoperating nonoperational nonoperative nonopinionaness nonopinionated nonopinionatedness nonopinionative nonopinionatively nonopinionativeness nonopposable nonopposal nonopposing nonopposition nonoppression nonoppressive nonoppressively nonoppressiveness nonopprobrious nonopprobriously nonopprobriousness nonoptic nonoptical nonoptically nonoptimal nonoptimistic nonoptimistical nonoptimistically nonoptional nonoptionally nonoral nonorally nonorchestral nonorchestrally nonordained nonordered nonordination nonorganic nonorganically nonorganisation nonorganization nonorgasmic nonorientable nonoriental nonorientation nonoriginal nonoriginally nonornamental nonornamentality nonornamentally nonorthodox nonorthodoxly nonorthogonal nonorthogonality nonorthographic nonorthographical nonorthographically nonoscillatory nonoscine nonosmotic nonosmotically nonostensible nonostensibly nonostensive nonostensively nonostentation nonoutlawries nonoutlawry nonoutrage nonoverhead nonoverlapping nonoverlappings nonowner nonowners nonowning nonoxidating nonoxidation nonoxidative nonoxidisable nonoxidising nonoxidizable nonoxidization nonoxidizing nonoxygenated nonoxygenous nonpacifiable nonpacific nonpacifical nonpacifically nonpacification nonpacificatory nonpacifist nonpacifistic nonpagan nonpaganish nonpagans nonpaid nonpainter nonpalatability nonpalatable nonpalatableness nonpalatably nonpalatal nonpalatalization nonpalatals nonpalliation nonpalliative nonpalliatively nonpalpability nonpalpable nonpalpably nonpantheistic nonpantheistical nonpantheistically nonpapal nonpapist nonpapistic nonpapistical nonpapists nonpar nonparabolic nonparabolical nonparabolically nonparadoxical nonparadoxically nonparadoxicalness nonparallel nonparallelism nonparallels nonparalyses nonparalysis nonparalytic nonparametric nonparasitic nonparasitical nonparasitically nonparasitism nonpardoning nonpareil nonpareils nonparent nonparental nonparentally nonpariello nonparishioner nonparity nonparliamentary nonparlor nonparlour nonparochial nonparochially nonparous nonpartial nonpartialities nonpartiality nonpartially nonpartible nonparticipant nonparticipants nonparticipating nonparticipation nonparticipations nonparticipatory nonparticulate nonparties nonpartisan nonpartisanism nonpartisans nonpartisanship nonpartisanships nonpartizan nonpartner nonparty nonpassenger nonpasserine nonpassible nonpassionate nonpassionately nonpassionateness nonpassive nonpast nonpastoral nonpastorally nonpasts nonpatentability nonpatentable nonpatented nonpatently nonpaternal nonpaternally nonpathogenic nonpathologic nonpathological nonpathologically nonpatriotic nonpatriotically nonpatterned nonpause nonpayer nonpaying nonpayment nonpayments nonpeak nonpeaked nonpearlitic nonpecuniary nonpedagogic nonpedagogical nonpedagogically nonpedestrian nonpedigree nonpedigreed nonpejorative nonpejoratively nonpelagic nonpeltast nonpenal nonpenalised nonpenalized nonpendant nonpendency nonpendent nonpendently nonpending nonpenetrability nonpenetrable nonpenetrably nonpenetrating nonpenetration nonpenitent nonpensionable nonpensioner nonperceivable nonperceivably nonperceiving nonperceptibility nonperceptible nonperceptibleness nonperceptibly nonperception nonperceptional nonperceptive nonperceptively nonperceptiveness nonperceptivity nonperceptual nonpercipience nonpercipiency nonpercipient nonpercussive nonperfected nonperfectibility nonperfectible nonperfection nonperforate nonperforated nonperforating nonperformance nonperformances nonperformer nonperformers nonperforming nonperilous nonperilously nonperiodic nonperiodical nonperiodically nonperishable nonperishables nonperishing nonperjured nonperjuries nonperjury nonpermanence nonpermanency nonpermanent nonpermanently nonpermeability nonpermeable nonpermeation nonpermeative nonpermissibility nonpermissible nonpermissibly nonpermission nonpermissive nonpermissively nonpermissiveness nonpermitted nonperpendicular nonperpendicularity nonperpendicularly nonperpetration nonperpetual nonperpetually nonperpetuance nonperpetuation nonperpetuities nonperpetuity nonpersecuting nonpersecution nonpersecutive nonpersecutory nonperseverance nonperseverant nonpersevering nonpersistence nonpersistency nonpersistent nonpersistently nonpersisting nonperson nonpersonal nonpersonally nonpersonification nonpersons nonperspective nonpersuadable nonpersuasible nonpersuasive nonpersuasively nonpersuasiveness nonpertinence nonpertinency nonpertinent nonpertinently nonperturbable nonperturbing nonperverse nonperversely nonperverseness nonperversion nonperversities nonperversity nonperversive nonperverted nonpervertedly nonpervertible nonpessimistic nonpessimistically nonpestilent nonpestilential nonpestilently nonpetroleum nonpetroleums nonphagocytic nonpharmaceutic nonpharmaceutical nonpharmaceutically nonphenolic nonphenomenal nonphenomenally nonphilanthropic nonphilanthropical nonphilologic nonphilological nonphilosopher nonphilosophers nonphilosophic nonphilosophical nonphilosophically nonphilosophies nonphilosophy nonphobic nonphonemic nonphonemically nonphonetic nonphonetical nonphonetically nonphosphate nonphosphates nonphosphatic nonphosphorised nonphosphorized nonphosphorous nonphotobiotic nonphotographic nonphotographical nonphotographically nonphotosynthetic nonphrenetic nonphrenetically nonphysical nonphysically nonphysician nonphysicians nonphysiologic nonphysiological nonphysiologically nonpickable nonpictorial nonpictorially nonpigmented nonpinaceous nonplacental nonplacet nonplanar nonplane nonplanetary nonplantowning nonplastic nonplasticity nonplastics nonplate nonplated nonplatitudinous nonplatitudinously nonplausibility nonplausible nonplausibleness nonplausibly nonplay nonplaying nonplays nonpleadable nonpleading nonpleadingly nonpliability nonpliable nonpliableness nonpliably nonpliancy nonpliant nonpliantly nonpliantness nonpluralistic nonpluralities nonplurality nonplus nonplusation nonplused nonpluses nonplushed nonplusing nonplussation nonplussed nonplusses nonplussing nonplutocratic nonplutocratical nonpneumatic nonpneumatically nonpoet nonpoetic nonpoint nonpoisonous nonpoisonously nonpoisonousness nonpolar nonpolarisable nonpolarising nonpolarity nonpolarizable nonpolarizing nonpolemic nonpolemical nonpolemically nonpolice nonpolitical nonpolitically nonpolitician nonpoliticians nonpolluted nonpolluting nonponderability nonponderable nonponderosity nonponderous nonponderously nonponderousness nonpoor nonpopery nonpopular nonpopularity nonpopularly nonpopulous nonpopulously nonpopulousness nonporness nonpornographic nonporous nonporousness nonporphyritic nonport nonportability nonportable nonportentous nonportentously nonportentousness nonportrayable nonportrayal nonpositive nonpositivistic nonpossessed nonpossession nonpossessions nonpossessive nonpossessively nonpossessiveness nonpossessory nonpossible nonpossibly nonposthumous nonpostponement nonpotable nonpotential nonpower nonpracticability nonpracticable nonpracticableness nonpracticably nonpractical nonpracticality nonpractically nonpracticalness nonpractice nonpracticed nonpracticing nonpraedial nonpragmatic nonpragmatical nonpragmatically nonpreaching nonprecedent nonprecedential nonprecious nonpreciously nonpreciousness nonprecipitation nonprecipitative nonpredatorily nonpredatoriness nonpredatory nonpredestination nonpredicative nonpredicatively nonpredictable nonpredictive nonpreferability nonpreferable nonpreferableness nonpreferably nonpreference nonpreferential nonpreferentialism nonpreferentially nonpreformed nonpregnant nonprehensile nonprejudiced nonprejudicial nonprejudicially nonprelatic nonprelatical nonpremium nonpreparation nonpreparative nonpreparatory nonpreparedness nonprepayment nonprepositional nonprepositionally nonpresbyter nonprescient nonpresciently nonprescribed nonprescriber nonprescription nonprescriptive nonpresence nonpresentability nonpresentable nonpresentableness nonpresentably nonpresentation nonpresentational nonpreservable nonpreservation nonpreservative nonpresidential nonpress nonpressing nonpressure nonpresumptive nonpresumptively nonprevalence nonprevalent nonprevalently nonpreventable nonpreventible nonprevention nonpreventive nonpreventively nonpreventiveness nonpriestly nonprimitive nonprimitively nonprimitiveness nonprincipiate nonprincipled nonprint nonprintable nonprinting nonprivileged nonprivities nonprivity nonprobabilities nonprobability nonprobable nonprobably nonprobation nonprobative nonprobatory nonproblem nonproblematic nonproblematical nonproblematically nonproblems nonprocedural nonprocedurally nonprocessional nonprocreation nonprocreative nonprocurable nonprocuration nonprocurement nonproducer nonproducible nonproducing nonproduction nonproductive nonproductively nonproductiveness nonproductivenesses nonproductivity nonprofane nonprofanely nonprofaneness nonprofanities nonprofanity nonprofessed nonprofession nonprofessional nonprofessionalism nonprofessionally nonprofessionals nonprofessorial nonprofessorially nonproficience nonproficiency nonproficient nonprofit nonprofitability nonprofitable nonprofitablely nonprofitableness nonprofiteering nonprofits nonprognostication nonprognosticative nonprogram nonprogrammable nonprogrammer nonprogrammers nonprograms nonprogressive nonprogressively nonprogressiveness nonprogressives nonprohibitable nonprohibition nonprohibitive nonprohibitively nonprohibitorily nonprohibitory nonprojecting nonprojection nonprojective nonprojectively nonproletarian nonproletariat nonproliferation nonproliferations nonproliferous nonprolific nonprolificacy nonprolifically nonprolificness nonprolifiness nonprolix nonprolixity nonprolixly nonprolixness nonprolongation nonprominence nonprominent nonprominently nonpromiscuous nonpromiscuously nonpromiscuousness nonpromissory nonpromotion nonpromotive nonpromulgation nonpronunciation nonpropagable nonpropagandist nonpropagandistic nonpropagation nonpropagative nonpropellent nonprophetic nonprophetical nonprophetically nonpropitiable nonpropitiation nonpropitiative nonproportionable nonproportional nonproportionally nonproportionate nonproportionately nonproportionateness nonproportioned nonproprietaries nonproprietary nonproprietor nonpropriety nonprorogation nonpros nonprosaic nonprosaically nonprosaicness nonproscription nonproscriptive nonproscriptively nonprosecution nonprospect nonprosperity nonprosperous nonprosperously nonprosperousness nonprossed nonprosses nonprossing nonprotecting nonprotection nonprotective nonprotectively nonproteid nonprotein nonproteinaceous nonprotestation nonprotesting nonprotractile nonprotractility nonprotraction nonprotrusion nonprotrusive nonprotrusively nonprotrusiveness nonprotuberance nonprotuberancies nonprotuberancy nonprotuberant nonprotuberantly nonprovable nonproven nonprovided nonprovident nonprovidential nonprovidentially nonprovidently nonprovider nonprovincial nonprovincially nonprovisional nonprovisionally nonprovisionary nonprovocation nonprovocative nonprovocatively nonprovocativeness nonproximity nonprudence nonprudent nonprudential nonprudentially nonprudently nonpsychiatric nonpsychiatrist nonpsychiatrists nonpsychic nonpsychical nonpsychically nonpsychoactive nonpsychoanalytic nonpsychoanalytical nonpsychoanalytically nonpsychologic nonpsychological nonpsychologically nonpsychopathic nonpsychopathically nonpsychotic nonpublic nonpublication nonpublicity nonpublishable nonpueblo nonpuerile nonpuerilely nonpuerilities nonpuerility nonpulmonary nonpulsating nonpulsation nonpulsative nonpumpable nonpunctual nonpunctually nonpunctualness nonpunctuating nonpunctuation nonpuncturable nonpungency nonpungent nonpungently nonpunishable nonpunishing nonpunishment nonpunitive nonpunitory nonpurchasability nonpurchasable nonpurchase nonpurchaser nonpurgation nonpurgative nonpurgatively nonpurgatorial nonpurification nonpurifying nonpuristic nonpurposive nonpurposively nonpurposiveness nonpursuance nonpursuant nonpursuantly nonpursuit nonpurulence nonpurulent nonpurulently nonpurveyance nonputrescence nonputrescent nonputrescible nonputting nonpyogenic nonpyritiferous nonqualification nonqualifying nonqualitative nonqualitatively nonqualities nonquality nonquantifiable nonquantitative nonquantitatively nonquantitativeness nonquota nonrabbinical nonracial nonracially nonracist nonradiable nonradiance nonradiancy nonradiant nonradiantly nonradiating nonradiation nonradiative nonradical nonradically nonradicalness nonradicness nonradioactive nonrailroad nonrailroader nonraisable nonraiseable nonraised nonrandom nonrandomly nonrandomness nonrandomnesses nonranging nonrapport nonratability nonratable nonratableness nonratably nonrateability nonrateable nonrateableness nonrateably nonrated nonratification nonratifying nonrational nonrationalised nonrationalism nonrationalist nonrationalistic nonrationalistical nonrationalistically nonrationality nonrationalization nonrationalized nonrationally nonrationalness nonrayed nonreaction nonreactionaries nonreactionary nonreactive nonreactor nonreactors nonreadability nonreadable nonreadableness nonreadably nonreader nonreaders nonreading nonrealisation nonrealism nonrealist nonrealistic nonrealistically nonrealities nonreality nonrealizable nonrealization nonrealizing nonreappointment nonreappointments nonreasonability nonreasonable nonreasonableness nonreasonably nonreasoner nonreasoning nonrebel nonrebellion nonrebellious nonrebelliously nonrebelliousness nonrecalcitrance nonrecalcitrancy nonrecalcitrant nonreceipt nonreceipts nonreceivable nonreceiving nonrecent nonreception nonreceptive nonreceptively nonreceptiveness nonreceptivity nonrecess nonrecession nonrecessive nonrecipience nonrecipiency nonrecipient nonreciprocal nonreciprocally nonreciprocals nonreciprocating nonreciprocity nonrecision nonrecital nonrecitation nonrecitative nonreclaimable nonreclamation nonrecluse nonreclusive nonrecognised nonrecognition nonrecognitions nonrecognized nonrecoil nonrecoiling nonrecollection nonrecollective nonrecombinant nonrecombinants nonrecommendation nonreconcilability nonreconcilable nonreconcilableness nonreconcilably nonreconciliation nonrecourse nonrecoverable nonrecovery nonrecreational nonrectangular nonrectangularity nonrectangularly nonrectifiable nonrectified nonrecuperatiness nonrecuperation nonrecuperative nonrecuperativeness nonrecuperatory nonrecurent nonrecurently nonrecurrent nonrecurring nonrecyclable nonrecyclables nonredeemable nonredemptible nonredemption nonredemptive nonredressing nonreduced nonreducibility nonreducible nonreducibly nonreducing nonreduction nonreductional nonreductive nonredundant nonreference nonrefillable nonrefined nonrefinement nonreflected nonreflecting nonreflection nonreflective nonreflectively nonreflectiveness nonreflector nonreformation nonreformational nonrefracting nonrefraction nonrefractional nonrefractive nonrefractively nonrefractiveness nonrefrigerant nonrefueling nonrefuelling nonrefundable nonrefutal nonrefutation nonregardance nonregarding nonregenerate nonregenerating nonregeneration nonregenerative nonregeneratively nonregent nonregimental nonregimented nonregistered nonregistrability nonregistrable nonregistration nonregression nonregressive nonregressively nonregulated nonregulation nonregulations nonregulative nonregulatory nonrehabilitation nonreigning nonreimbursement nonreinforcement nonreinstatement nonrejection nonrejoinder nonrelapsed nonrelated nonrelatiness nonrelation nonrelational nonrelative nonrelatively nonrelativeness nonrelatives nonrelativistic nonrelativistically nonrelativity nonrelaxation nonrelease nonrelenting nonrelevant nonreliability nonreliable nonreliableness nonreliably nonreliance nonrelieving nonreligion nonreligious nonreligiously nonreligiousness nonrelinquishment nonremanie nonremediability nonremediable nonremediably nonremedial nonremedially nonremedies nonremedy nonremembrance nonremissible nonremission nonremittable nonremittably nonremittal nonremonstrance nonremonstrant nonremovable nonremuneration nonremunerative nonremuneratively nonrendition nonrenewable nonrenewal nonrenewals nonrenouncing nonrenunciation nonrepair nonrepairable nonreparable nonreparation nonrepatriable nonrepatriation nonrepayable nonrepaying nonrepealable nonrepealing nonrepeat nonrepeated nonrepeater nonrepellence nonrepellency nonrepellent nonrepeller nonrepentance nonrepentances nonrepentant nonrepentantly nonrepetition nonrepetitious nonrepetitiously nonrepetitiousness nonrepetitive nonrepetitively nonreplaceable nonreplacement nonreplicate nonreplicated nonreplication nonreportable nonreprehensibility nonreprehensible nonreprehensibleness nonreprehensibly nonrepresentable nonrepresentation nonrepresentational nonrepresentationalism nonrepresentationalisms nonrepresentationist nonrepresentative nonrepresentatively nonrepresentativeness nonrepresentatives nonrepressed nonrepressible nonrepressibleness nonrepressibly nonrepression nonrepressive nonreprisal nonreproducible nonreproduction nonreproductive nonreproductively nonreproductiveness nonrepublican nonrepudiable nonrepudiation nonrepudiative nonreputable nonreputably nonrequirable nonrequirement nonrequisite nonrequisitely nonrequisiteness nonrequisition nonrequital nonrescissible nonrescission nonrescissory nonrescue nonresemblance nonreservable nonreservation nonreserve nonresidence nonresidences nonresidencies nonresidency nonresident nonresidental nonresidenter nonresidential nonresidentiary nonresidentor nonresidents nonresidual nonresignation nonresilience nonresiliency nonresilient nonresiliently nonresinifiable nonresistance nonresistances nonresistant nonresistants nonresister nonresistibility nonresistible nonresisting nonresistive nonresistively nonresistiveness nonresolution nonresolvability nonresolvable nonresolvableness nonresolvably nonresolvabness nonresonant nonresonantly nonrespectabilities nonrespectability nonrespectable nonrespectableness nonrespectably nonrespirable nonrespondent nonrespondents nonresponder nonresponders nonresponse nonresponses nonresponsibilities nonresponsibility nonresponsible nonresponsibleness nonresponsibly nonresponsive nonresponsively nonrestitution nonrestoration nonrestorative nonrestrained nonrestraint nonrestraints nonrestricted nonrestrictedly nonrestricting nonrestriction nonrestrictive nonrestrictively nonresumption nonresurrection nonresurrectional nonresuscitable nonresuscitation nonresuscitative nonretail nonretainable nonretainment nonretaliation nonretardation nonretardative nonretardatory nonretarded nonretardment nonretention nonretentive nonretentively nonretentiveness nonreticence nonreticent nonreticently nonreticulate nonretinal nonretired nonretirement nonretiring nonretraceable nonretractable nonretractation nonretractile nonretractility nonretraction nonretrenchment nonretroactive nonretroactively nonretroactivity nonreturn nonreturnable nonreturnables nonreusable nonreusables nonrevaluation nonrevealing nonrevelation nonrevenge nonrevenger nonrevenue nonreverence nonreverent nonreverential nonreverentially nonreverently nonreverse nonreversed nonreversibility nonreversible nonreversibleness nonreversibly nonreversing nonreversion nonrevertible nonrevertive nonreviewable nonrevision nonrevival nonrevivalist nonrevocability nonrevocable nonrevocably nonrevocation nonrevokable nonrevolting nonrevoltingly nonrevolution nonrevolutionaries nonrevolutionary nonrevolving nonrhetorical nonrhetorically nonrheumatic nonrhyme nonrhymed nonrhyming nonrhythm nonrhythmic nonrhythmical nonrhythmically nonriding nonrigid nonrigidity nonrioter nonrioters nonrioting nonriparian nonritualistic nonritualistically nonrival nonrivals nonromantic nonromantically nonromanticism nonromantics nonrotatable nonrotating nonrotation nonrotational nonrotative nonround nonrousing nonroutine nonroutines nonroyal nonroyalist nonroyally nonroyalty nonrubber nonrudimental nonrudimentarily nonrudimentariness nonrudimentary nonruinable nonruinous nonruinously nonruinousness nonruling nonruminant nonruminants nonruminating nonruminatingly nonrumination nonruminative nonrun nonrupturable nonrupture nonrural nonrurally nonrustable nonrustic nonrustically nonsabbatic nonsaccharin nonsaccharine nonsaccharinity nonsacerdotal nonsacerdotally nonsacramental nonsacred nonsacredly nonsacredness nonsacrifice nonsacrificial nonsacrificing nonsacrilegious nonsacrilegiously nonsacrilegiousness nonsailor nonsalability nonsalable nonsalably nonsalaried nonsale nonsaleability nonsaleable nonsaleably nonsaline nonsalinity nonsalubrious nonsalubriously nonsalubriousness nonsalutarily nonsalutariness nonsalutary nonsalutation nonsalvageable nonsalvation nonsanative nonsancties nonsanctification nonsanctimonious nonsanctimoniously nonsanctimoniousness nonsanctimony nonsanction nonsanctities nonsanctity nonsane nonsanely nonsaneness nonsanguine nonsanguinely nonsanguineness nonsanity nonsaponifiable nonsaponification nonsaporific nonsatiability nonsatiable nonsatiation nonsatire nonsatiric nonsatirical nonsatirically nonsatiricalness nonsatirizing nonsatisfaction nonsatisfying nonsaturated nonsaturation nonsaving nonsawing nonscalding nonscaling nonscandalous nonscandalously nonscarcities nonscarcity nonscented nonscheduled nonschematic nonschematically nonschematised nonschematized nonschismatic nonschismatical nonschizophrenic nonscholar nonscholarly nonscholastic nonscholastical nonscholastically nonschool nonschooling nonsciatic nonscience nonsciences nonscientific nonscientifically nonscientist nonscientists nonscoring nonscraping nonscriptural nonscripturalist nonscrutinies nonscrutiny nonsculptural nonsculpturally nonsculptured nonseasonable nonseasonableness nonseasonably nonseasonal nonseasonally nonseasoned nonsecession nonsecessional nonsecluded nonsecludedly nonsecludedness nonseclusion nonseclusive nonseclusively nonseclusiveness nonsecrecies nonsecrecy nonsecret nonsecretarial nonsecretion nonsecretionary nonsecretive nonsecretively nonsecretly nonsecretor nonsecretories nonsecretors nonsecretory nonsectarian nonsectional nonsectionally nonsectorial nonsecular nonsecure nonsecurities nonsecurity nonsedentarily nonsedentariness nonsedentary nonsedimentable nonseditious nonseditiously nonseditiousness nonsegmental nonsegmentally nonsegmentary nonsegmentation nonsegmented nonsegregable nonsegregated nonsegregation nonsegregations nonsegregative nonseismic nonseizure nonselected nonselection nonselective nonself nonselfregarding nonselling nonselves nonsemantic nonsemantically nonseminal nonsenatorial nonsensate nonsensation nonsensational nonsensationalistic nonsense nonsenses nonsensibility nonsensible nonsensibleness nonsensibly nonsensic nonsensical nonsensicalities nonsensicality nonsensically nonsensicalness nonsensicalnesses nonsensification nonsensify nonsensitised nonsensitive nonsensitively nonsensitiveness nonsensitivities nonsensitivity nonsensitization nonsensitized nonsensitizing nonsensorial nonsensory nonsensual nonsensualistic nonsensuality nonsensually nonsensuous nonsensuously nonsensuousness nonsentence nonsentences nonsententious nonsententiously nonsententiousness nonsentience nonsentiency nonsentient nonsentiently nonseparability nonseparable nonseparableness nonseparably nonseparating nonseparation nonseparatist nonseparative nonseptate nonseptic nonsequacious nonsequaciously nonsequaciousness nonsequacity nonsequent nonsequential nonsequentially nonsequestered nonsequestration nonseraphic nonseraphical nonseraphically nonserial nonseriality nonserially nonseriate nonseriately nonserif nonserious nonseriously nonseriousness nonserous nonserviceability nonserviceable nonserviceableness nonserviceably nonserviential nonservile nonservilely nonservileness nonsetter nonsetting nonsettlement nonseverable nonseverance nonseverities nonseverity nonsexist nonsexists nonsexlinked nonsexual nonsexually nonshaft nonsharing nonshatter nonshattering nonshedder nonshedding nonshipper nonshipping nonshredding nonshrink nonshrinkable nonshrinking nonshrinkingly nonsibilance nonsibilancy nonsibilant nonsibilantly nonsiccative nonsidereal nonsignable nonsignatories nonsignatory nonsignature nonsigner nonsigners nonsignificance nonsignificancy nonsignificant nonsignificantly nonsignification nonsignificative nonsilicate nonsilicated nonsiliceous nonsilicious nonsilver nonsimilar nonsimilarity nonsimilarly nonsimilitude nonsimplicity nonsimplification nonsimular nonsimulate nonsimulation nonsimulative nonsimultaneous nonsine nonsinging nonsingle nonsingleness nonsingular nonsingularities nonsingularity nonsinkable nonsinusoidal nonsiphonage nonsister nonsitter nonsitting nonskater nonskaters nonsked nonskeds nonskeletal nonskeletally nonskeptic nonskeptical nonskid nonskidding nonskier nonskiers nonskilled nonskipping nonslanderous nonslaveholding nonslip nonslippery nonslipping nonsludging nonsmoker nonsmokers nonsmoking nonsmutting nonsober nonsobering nonsoberly nonsoberness nonsobriety nonsociability nonsociable nonsociableness nonsociably nonsocial nonsocialist nonsocialistic nonsocialists nonsociality nonsocially nonsocialness nonsocietal nonsociety nonsociological nonsolar nonsoldier nonsolicitation nonsolicitous nonsolicitously nonsolicitousness nonsolid nonsolidarity nonsolidification nonsolidified nonsolidifying nonsolidly nonsolids nonsoluable nonsoluble nonsolubleness nonsolubly nonsolution nonsolutions nonsolvability nonsolvable nonsolvableness nonsolvency nonsolvent nonsonant nonsophistic nonsophistical nonsophistically nonsophisticalness nonsoporific nonsovereign nonsovereignly nonspacious nonspaciously nonspaciousness nonspalling nonsparing nonsparking nonsparkling nonspatial nonspatiality nonspatially nonspeaker nonspeakers nonspeaking nonspecial nonspecialised nonspecialist nonspecialists nonspecialized nonspecializing nonspecially nonspecie nonspecifiable nonspecific nonspecifically nonspecification nonspecificity nonspecified nonspecious nonspeciously nonspeciousness nonspectacular nonspectacularly nonspectral nonspectrality nonspectrally nonspeculation nonspeculative nonspeculatively nonspeculativeness nonspeculatory nonspeech nonspheral nonspheric nonspherical nonsphericality nonspherically nonspill nonspillable nonspinal nonspinning nonspinose nonspinosely nonspinosity nonspiny nonspiral nonspirit nonspirited nonspiritedly nonspiritedness nonspiritous nonspiritual nonspirituality nonspiritually nonspiritualness nonspirituals nonspirituness nonspirituous nonspirituousness nonspontaneous nonspontaneously nonspontaneousness nonspored nonsporeformer nonsporeforming nonsporting nonsportingly nonspottable nonsprouting nonspurious nonspuriously nonspuriousness nonstabile nonstability nonstable nonstableness nonstably nonstainable nonstainer nonstaining nonstampable nonstandard nonstandardised nonstandardization nonstandardized nonstanzaic nonstaple nonstarch nonstarter nonstarters nonstarting nonstatement nonstatic nonstationaries nonstationary nonstatistic nonstatistical nonstatistically nonstative nonstatutable nonstatutory nonsteady nonstellar nonstereotyped nonstereotypic nonstereotypical nonsterile nonsterilely nonsterility nonsterilization nonsteroid nonsteroidal nonsteroidals nonsteroids nonstick nonsticking nonsticky nonstimulable nonstimulant nonstimulating nonstimulation nonstimulative nonstipticity nonstipulation nonstock nonstoical nonstoically nonstoicalness nonstooping nonstop nonstorable nonstorage nonstories nonstory nonstowed nonstrategic nonstrategical nonstrategically nonstratified nonstress nonstretchable nonstretchy nonstriated nonstrictness nonstrictured nonstriker nonstrikers nonstriking nonstringent nonstriped nonstrophic nonstructural nonstructurally nonstructure nonstructured nonstudent nonstudents nonstudied nonstudious nonstudiously nonstudiousness nonstudy nonstultification nonstyle nonstyles nonstylised nonstylization nonstylized nonstyptic nonstyptical nonsubconscious nonsubconsciously nonsubconsciousness nonsubject nonsubjected nonsubjectification nonsubjection nonsubjective nonsubjectively nonsubjectiveness nonsubjectivity nonsubjects nonsubjugable nonsubjugation nonsublimation nonsubliminal nonsubliminally nonsubmerged nonsubmergence nonsubmergibility nonsubmergible nonsubmersible nonsubmissible nonsubmission nonsubmissive nonsubmissively nonsubmissiveness nonsubordinate nonsubordinating nonsubordination nonsubscriber nonsubscribers nonsubscribing nonsubscripted nonsubscription nonsubsidiaries nonsubsidiary nonsubsididies nonsubsidies nonsubsiding nonsubsidized nonsubsidy nonsubsistence nonsubsistent nonsubstantial nonsubstantialism nonsubstantialist nonsubstantiality nonsubstantially nonsubstantialness nonsubstantiation nonsubstantival nonsubstantivally nonsubstantive nonsubstantively nonsubstantiveness nonsubstituted nonsubstitution nonsubstitutional nonsubstitutionally nonsubstitutionary nonsubstitutive nonsubtile nonsubtilely nonsubtileness nonsubtility nonsubtle nonsubtleness nonsubtleties nonsubtlety nonsubtly nonsubtraction nonsubtractive nonsubtractively nonsuburban nonsubversion nonsubversive nonsubversively nonsubversiveness nonsuccess nonsuccesses nonsuccessful nonsuccessfully nonsuccession nonsuccessional nonsuccessionally nonsuccessive nonsuccessively nonsuccessiveness nonsuccor nonsuccour nonsuch nonsuches nonsuction nonsuctorial nonsudsing nonsufferable nonsufferableness nonsufferably nonsufferance nonsuffrage nonsugar nonsugars nonsuggestible nonsuggestion nonsuggestive nonsuggestively nonsuggestiveness nonsuit nonsuited nonsuiting nonsuits nonsulfurous nonsulphurous nonsummons nonsuperimposable nonsupervision nonsupervisory nonsupplemental nonsupplementally nonsupplementary nonsupplicating nonsupplication nonsupport nonsupportability nonsupportable nonsupportableness nonsupportably nonsupporter nonsupporting nonsupports nonsupposed nonsupposing nonsuppositional nonsuppositionally nonsuppositive nonsuppositively nonsuppressed nonsuppression nonsuppressive nonsuppressively nonsuppressiveness nonsuppurative nonsupression nonsurface nonsurgical nonsurgically nonsurrealistic nonsurrealistically nonsurrender nonsurvival nonsurvivor nonsusceptibility nonsusceptible nonsusceptibleness nonsusceptibly nonsusceptiness nonsusceptive nonsusceptiveness nonsusceptivity nonsuspect nonsuspended nonsuspension nonsuspensive nonsuspensively nonsuspensiveness nonsustainable nonsustained nonsustaining nonsustenance nonswearer nonswearing nonsweating nonsweet nonswimmer nonswimmers nonswimming nonsyllabic nonsyllabicness nonsyllogistic nonsyllogistical nonsyllogistically nonsyllogizing nonsymbiotic nonsymbiotical nonsymbiotically nonsymbolic nonsymbolical nonsymbolically nonsymbolicalness nonsymmetric nonsymmetrical nonsymmetries nonsymmetry nonsympathetic nonsympathetically nonsympathies nonsympathiser nonsympathizer nonsympathizing nonsympathizingly nonsympathy nonsymphonic nonsymphonically nonsymphonious nonsymphoniously nonsymphoniousness nonsymptomatic nonsync nonsynchronal nonsynchronic nonsynchronical nonsynchronically nonsynchronous nonsynchronously nonsynchronousness nonsyncopation nonsyndicate nonsyndicated nonsyndication nonsynesthetic nonsynodic nonsynodical nonsynodically nonsynonymous nonsynonymously nonsynoptic nonsynoptical nonsynoptically nonsyntactic nonsyntactical nonsyntactically nonsyntheses nonsynthesis nonsynthesised nonsynthesized nonsynthetic nonsynthetical nonsynthetically nonsyntonic nonsyntonical nonsyntonically nonsystem nonsystematic nonsystematical nonsystematically nonsystemic nonsystems nontabular nontabularly nontabulated nontactic nontactical nontactically nontactile nontactility nontalented nontalkative nontalkatively nontalkativeness nontan nontangental nontangential nontangentially nontangible nontangibleness nontangibly nontannic nontannin nontanning nontarget nontariff nontarnishable nontarnished nontarnishing nontarred nontautological nontautologically nontautomeric nontautomerizable nontax nontaxability nontaxable nontaxableness nontaxables nontaxably nontaxation nontaxer nontaxes nontaxonomic nontaxonomical nontaxonomically nonteachability nonteachable nonteachableness nonteachably nonteacher nonteaching nontechnical nontechnically nontechnicalness nontechnologic nontechnological nontechnologically nonteetotaler nonteetotalist nontelegraphic nontelegraphical nontelegraphically nonteleological nonteleologically nontelepathic nontelepathically nontelephonic nontelephonically nontelescopic nontelescoping nontelic nontemperable nontemperamental nontemperamentally nontemperate nontemperately nontemperateness nontempered nontemporal nontemporally nontemporals nontemporarily nontemporariness nontemporary nontemporising nontemporizing nontemporizingly nontemptation nontenability nontenable nontenableness nontenably nontenant nontenantable nontensile nontensility nontentative nontentatively nontentativeness nontenure nontenured nontenurial nontenurially nonterm nonterminability nonterminable nonterminableness nonterminably nonterminal nonterminally nonterminals nonterminating nontermination nonterminative nonterminatively nonterminous nonterrestrial nonterrestrials nonterritorial nonterritoriality nonterritorially nontestable nontestamentary nontesting nontextual nontextually nontextural nontexturally nontheatric nontheatrical nontheatrically nontheist nontheistic nontheistical nontheistically nontheists nonthematic nonthematically nontheocratic nontheocratical nontheocratically nontheologic nontheological nontheologically nontheoretic nontheoretical nontheoretically nontheosophic nontheosophical nontheosophically nontherapeutic nontherapeutical nontherapeutically nonthermal nonthermally nonthermoplastic nonthinker nonthinking nonthinkings nonthoracic nonthoroughfare nonthreaded nonthreatening nonthreateningly nontidal nontillable nontimbered nontinted nontitaniferous nontitle nontitled nontitular nontitularly nontobacco nontobaccos nontolerable nontolerableness nontolerably nontolerance nontolerant nontolerantly nontolerated nontoleration nontolerative nontonal nontonality nontoned nontonic nontopographical nontortuous nontortuously nontotalitarian nontourist nontoxic nontoxically nontraceability nontraceable nontraceableness nontraceably nontractability nontractable nontractableness nontractably nontraction nontrade nontrader nontrading nontradition nontraditional nontraditionalist nontraditionalistic nontraditionally nontraditionary nontragedies nontragedy nontragic nontragical nontragically nontragicalness nontrailing nontrained nontraining nontraitorous nontraitorously nontraitorousness nontranscribing nontranscription nontranscriptive nontransferability nontransferable nontransference nontransferential nontransformation nontransforming nontransgression nontransgressive nontransgressively nontransience nontransiency nontransient nontransiently nontransientness nontransitional nontransitionally nontransitive nontransitively nontransitiveness nontranslational nontranslocation nontranslucency nontranslucent nontransmissible nontransmission nontransmittal nontransmittance nontransmittible nontransparence nontransparency nontransparent nontransparently nontransparentness nontransportability nontransportable nontransportation nontransposable nontransposing nontransposition nontraveler nontraveling nontraveller nontravelling nontraversable nontreasonable nontreasonableness nontreasonably nontreatable nontreated nontreaties nontreatment nontreatments nontreaty nontrespass nontrial nontribal nontribally nontribesman nontribesmen nontributary nontrier nontrigonometric nontrigonometrical nontrigonometrically nontrivial nontriviality nontronite nontropic nontropical nontropically nontroubling nontruancy nontruant nontrump nontrunked nontrust nontrusting nontruth nontruths nontubercular nontubercularly nontuberculous nontubular nontumorous nontumultuous nontumultuously nontumultuousness nontuned nonturbinate nonturbinated nonturbulent nontutorial nontutorially nontyphoidal nontypical nontypically nontypicalness nontypographic nontypographical nontypographically nontyrannic nontyrannical nontyrannically nontyrannicalness nontyrannous nontyrannously nontyrannousness nonubiquitary nonubiquitous nonubiquitously nonubiquitousness nonulcerous nonulcerously nonulcerousness nonultrafilterable nonumbilical nonumbilicate nonumbrellaed nonunanimous nonunanimously nonunanimousness nonuncial nonundergraduate nonunderstandable nonunderstanding nonunderstandingly nonunderstood nonundulant nonundulate nonundulating nonundulatory nonunification nonunified nonuniform nonuniformist nonuniformitarian nonuniformities nonuniformity nonuniformly nonunion nonunionism nonunionisms nonunionist nonunionists nonunionized nonunions nonunique nonuniquely nonuniqueness nonuniquenesses nonunison nonunitable nonunitarian nonuniteable nonunited nonuniting nonunity nonuniversal nonuniversalist nonuniversality nonuniversally nonuniversals nonuniversities nonuniversity nonupholstered nonuple nonuples nonuplet nonuplets nonuplicate nonupright nonuprightly nonuprightness nonurban nonurbanite nonurgent nonurgently nonusable nonusage nonuse nonuseable nonuser nonusers nonuses nonusing nonusurious nonusuriously nonusuriousness nonusurping nonusurpingly nonuterine nonutile nonutilised nonutilitarian nonutilitarians nonutilities nonutility nonutilization nonutilized nonutopian nonutterance nonvacancies nonvacancy nonvacant nonvacantly nonvaccination nonvacillating nonvacillation nonvacua nonvacuous nonvacuously nonvacuousness nonvacuum nonvacuums nonvaginal nonvagrancies nonvagrancy nonvagrant nonvagrantly nonvagrantness nonvalent nonvalid nonvalidation nonvalidities nonvalidity nonvalidly nonvalidness nonvalorous nonvalorously nonvalorousness nonvaluable nonvaluation nonvalue nonvalued nonvalve nonvanishing nonvaporosity nonvaporous nonvaporously nonvaporousness nonvariability nonvariable nonvariableness nonvariably nonvariance nonvariant nonvariation nonvaried nonvarieties nonvariety nonvarious nonvariously nonvariousness nonvascular nonvascularly nonvasculose nonvasculous nonvassal nonvector nonvectors nonvegetable nonvegetarian nonvegetarians nonvegetation nonvegetative nonvegetatively nonvegetativeness nonvegetive nonvehement nonvehemently nonvenal nonvenally nonvendibility nonvendible nonvendibleness nonvendibly nonvenereal nonvenomous nonvenomously nonvenomousness nonvenous nonvenously nonvenousness nonventilation nonventilative nonveracious nonveraciously nonveraciousness nonveracity nonverbal nonverbalized nonverbally nonverbosity nonverdict nonverifiable nonverification nonveritable nonveritableness nonveritably nonverminous nonverminously nonverminousness nonvernacular nonversatility nonvertebral nonvertebrate nonvertical nonverticality nonvertically nonverticalness nonvesicular nonvesicularly nonvesting nonvesture nonveteran nonveterans nonveterinaries nonveterinary nonvexatious nonvexatiously nonvexatiousness nonviability nonviable nonvibratile nonvibrating nonvibration nonvibrator nonvibratory nonvicarious nonvicariously nonvicariousness nonvictories nonvictory nonviewer nonviewers nonvigilance nonvigilant nonvigilantly nonvigilantness nonvillager nonvillainous nonvillainously nonvillainousness nonvindicable nonvindication nonvinosity nonvinous nonvintage nonviolability nonviolable nonviolableness nonviolably nonviolation nonviolative nonviolence nonviolences nonviolent nonviolently nonviral nonvirgin nonvirginal nonvirginally nonvirgins nonvirile nonvirility nonvirtue nonvirtuous nonvirtuously nonvirtuousness nonvirulent nonvirulently nonviruliferous nonvisaed nonvisceral nonviscid nonviscidity nonviscidly nonviscidness nonviscous nonviscously nonviscousness nonvisibilities nonvisibility nonvisible nonvisibly nonvisional nonvisionary nonvisitation nonvisiting nonvisual nonvisualised nonvisualized nonvisually nonvital nonvitality nonvitalized nonvitally nonvitalness nonvitiation nonvitreous nonvitrified nonvitriolic nonvituperative nonvituperatively nonviviparity nonviviparous nonviviparously nonviviparousness nonvocable nonvocal nonvocalic nonvocality nonvocalization nonvocally nonvocalness nonvocals nonvocational nonvocationally nonvoice nonvoid nonvoidable nonvolant nonvolatile nonvolatileness nonvolatilised nonvolatility nonvolatilizable nonvolatilized nonvolatiness nonvolcanic nonvolition nonvolitional nonvolubility nonvoluble nonvolubleness nonvolubly nonvoluntary nonvortical nonvortically nonvoter nonvoters nonvoting nonvulcanisable nonvulcanizable nonvulcanized nonvulgarities nonvulgarity nonvulval nonvulvar nonvvacua nonwaiver nonwalking nonwar nonwarrantable nonwarrantably nonwarranted nonwars nonwashable nonwasting nonwatertight nonwavering nonwaxing nonweakness nonwelcome nonwelcoming nonwestern nonwetted nonwhite nonwhites nonwinged nonwinning nonwithering nonwonder nonwondering nonwoody nonwool nonword nonwords nonwork nonworker nonworkers nonworking nonworship nonwoven nonwovens nonwrinkleable nonwrite nonwriter nonwriters nonya nonyellowing nonyielding nonyl nonylene nonylenic nonylic nonyls nonzealous nonzealously nonzealousness nonzebra nonzero nonzodiacal nonzonal nonzonally nonzonate nonzonated nonzoologic nonzoological nonzoologically noo noodge noodged noodges noodging noodle noodled noodledom noodledoms noodlehead noodleism noodles noodling noogeneses noogenesis nook nooked nookeries nookery nookie nookier nookies nookiest nooking nooklet nooklike nooks nooky noological noologies noologist noology noometries noometry noon noonday noondays nooned nooner nooners noonflower nooning noonings noonish noonlight noonlit noonmeat noons noonstead noontide noontides noontime noontimes noonwards noop noops nooscopic noose noosed nooser noosers nooses noosing noosphere noospheres nootka nootropics nopal nopalea nopalry nopals nope nopes nopinene noplace nor noradrenalin noradrenaline noradrenalines noradrenalins noradrenergic norard norate noration norbergite norbertine norcamphane nordcaper nordenfelt nordenskioldine nordhausen nordic nordmarkite nore noreast noreaster noreg norelin norepinephrine norepinephrines norethandrolone norethindrone norethindrones norethisterone norethisterones norfolk norge norgine nori noria norias norice norie norimon norimons noris norit norite norites noritic norito nork norks norkyn norland norlander norlandism norlands norleucine norm norma normal normalacy normalcies normalcy normalisable normalisation normalisations normalise normalised normaliser normalisers normalises normalising normalism normalist normalities normality normalizable normalization normalizations normalize normalized normalizer normalizers normalizes normalizing normally normalness normals norman normande normandie normandy normanise normanised normanises normanising normanize normanized normanizes normanizing normans normas normated normative normatively normativeness normativenesses normed norming normings normless normoblast normoblastic normocyte normocytic normotensive normotensives normothermia normothermias normothermic norms norn norna nornicotine nornorwest noropianic norpinic norroy norry norse norsel norseled norseler norseling norselled norseller norsellers norselling norsels norseman norsemen norsk nortelry nortena nortenas norteno nortenos norteña norteñas norteño norteños north northbound northcountryman northeast northeaster northeasterly northeastern northeasterner northeasterners northeasternmost northeasters northeasts northeastward northeastwardly northeastwards northed northen northeners norther northered northering northerlies northerliness northerlinesses northerly northermost northern northerner northerners northernise northernised northernises northernising northernism northernisms northernize northernized northernizes northernizing northernly northernmost northernness northernnesses northerns northers northest northfieldite northing northings northland northlander northlanders northlands northlight northman northmen northmost northness norths northumber northumbrian northupite northward northwardly northwards northwest northwester northwesterly northwestern northwesterner northwesterners northwesternmost northwesters northwests northwestward northwestwardly northwestwards nortriptyline nortriptylines norward norwards norway norwegian norwegians norwest norwester norwestward norweyan nos nosarian nose nosean noseanite noseans nosebag nosebags noseband nosebanded nosebands nosebleed nosebleeding nosebleedings nosebleeds nosebone noseburn nosecone nosecones nosecount nosed nosedive nosedived nosedives nosediving nosedove nosegay nosegaylike nosegays noseguard noseguards noseherb nosehole noseless noselessly noselessness noselike noselite noselites noseover nosepiece nosepieces nosepinch noser nosering noserings nosers noses nosesmart nosethirl nosetiology nosewards nosewheel nosewheels nosewing nosewings nosewise nosewort nosey noseys nosh noshed nosher nosheries noshers noshery noshes noshing noshow noshows nosier nosies nosiest nosig nosily nosine nosiness nosinesses nosing nosings nosism nosite nosochthonography nosocomial nosocomium nosode nosodes nosogenesis nosogenetic nosogenic nosogeny nosogeographic nosogeographical nosogeography nosographer nosographers nosographic nosographical nosographically nosographies nosography nosohaemia nosohemia nosologic nosological nosologically nosologies nosologist nosologists nosology nosomania nosomycosis nosonomy nosophobia nosophobias nosophyte nosopoetic nosopoietic nosotaxy nosotrophy nossel nostalgia nostalgias nostalgic nostalgically nostalgics nostalgies nostalgist nostalgists nostalgy noster nostic nostoc nostocaceae nostocaceous nostochine nostocs nostoi nostologic nostological nostologies nostology nostomania nostomanias nostomanic nostopathies nostopathy nostos nostradamic nostradamus nostrificate nostrification nostril nostriled nostrility nostrilled nostrils nostrilsome nostrum nostrummonger nostrummongership nostrummongery nostrums nosy not nota notabene notabilia notabilities notability notable notableness notablenesses notables notably notacanthid notacanthoid notacanthous notaeal notaeum notaeums notal notalgia notalgic notalia notan notanda notanduda notandum notandums notanencephalia notaphilic notaphilies notaphilism notaphilisms notaphilist notaphilists notaphily notarial notarially notariate notaries notarikon notarisation notarisations notarise notarised notarises notarising notarization notarizations notarize notarized notarizes notarizing notary notaryship notaryships notate notated notates notating notation notational notationally notations notative notator notaulix notch notchback notchbacks notchboard notched notchel notchelled notchelling notchels notcher notchers notches notchful notchier notchiest notching notchings notchweed notchwing notchwort notchy note notebook notebooks notecard notecards notecase notecases notechis noted notedly notedness notednesses notehead noteholder notekin noteless notelessly notelessness notelet notelets noteman notemigge notemigonus notemugge notencephalocele notencephalus notepad notepads notepaper notepapers noter noters noterse notes notewise noteworthily noteworthiness noteworthinesses noteworthy nothal notharctid nother nothing nothingarian nothingarianism nothingarianisms nothingarians nothingise nothingism nothingisms nothingist nothingize nothingless nothingly nothingness nothingnesses nothingology nothings nothofagus nothosaur nothosauria nothosaurian nothous nothus noticable notice noticeabili noticeabilities noticeability noticeable noticeableness noticeably noticeboard noticeboards noticed noticer noticers notices noticing notidanian notidanid notidanidan notidanoid notifiable notification notificational notifications notified notifier notifiers notifies notify notifyee notifying noting notion notionable notional notionalist notionalists notionalities notionality notionally notionalness notionary notionate notioned notionist notionists notionless notions notist notitia notitiae notitias notition notocentrous notocentrum notochord notochordal notochords notocord notodontian notodontid notodontids notodontoid notogaea notoire notommatid notomys notonecta notonectal notonectid notonectidae notophthalmus notopodial notopodium notopterid notopteroid notorhizal notorieties notoriety notorious notoriously notoriousness notoriousnesses notornes notornis notornises notoryctidae notoryctus notostraca notothere nototherium nototribe notoungulate notoungulates notour notourly notre notropis nots notself nott notturni notturno notum notums notungulate notungulates notus notwithstanding notwork notworks nouakchott nouche nougat nougatine nougats nought noughtily noughtiness noughtly noughts noughty nouille nouilles noul nould noulde noule noules nouls noumea noumeaite noumeite noumena noumenal noumenalism noumenalist noumenality noumenalize noumenally noumenism noumenon noumenona noummos noun nounal nounally nounier nouniest nounise nounize nounless nouns nouny noup noups nourice nourices nourish nourishable nourished nourisher nourishers nourishes nourishing nourishingly nourishment nourishments nouriture nouritures nourriture nourritures noursle noursled noursles noursling nous nousel nousell nouselled nouselling nousells nouses nousle nousled nousles nousling nout nouther nouveau nouveauta nouveautas nouveaute nouveautes nouveaux nouvelle nouvelles nov nova novaculite novaculites novae novale novalia novalike novantique novarsenobenzene novas novate novatian novation novations novative novator novatory novatrix novcic noveboracensis novel novela novelant novelcraft noveldom noveldoms novelese noveleses novelesque novelet noveletist novelette noveletter novelettes novelettish novelettist novelettists noveletty novelisation novelisations novelise novelised noveliser novelisers novelises novelish novelising novelism novelisms novelist novelistic novelistically novelists novelivelle novelization novelizations novelize novelized novelizer novelizers novelizes novelizing novella novellae novellas novelle novelless novellike novelly novelmongering novelness novelry novels novelties novelty novelwright novem novemarticulate november novembers novemcostate novemdecillion novemdecillions novemdecillionth novemdecillionths novemdigitate novemfid novemlobate novemnervate novemperfoliate novena novenae novenaries novenary novenas novendial novene novennial novercal noverify noverint noverints novial novice novicehood novicehoods novicelike novicery novices noviceship noviceships noviciate noviciates novillada novillero novillo novilunar novitial novitiate novitiates novitiateship novitiation novities novitious novity novo novobiocin novobiocins novocain novocaine novocaines novocentenaries novocentenary novodamus novodamuses novosibirsk novum novums novus now nowaday nowadays nowanights noway noways nowcasting nowcastings nowch nowder nowed nowel nowels nowhat nowhen nowhence nowhere nowhereness nowheres nowhit nowhither nowise nowl nowls nown nowness nownesses nows nowt nowthe nowther nowtherd nowts nowy nox noxa noxal noxally noxes noxial noxious noxiously noxiousness noxiousnesses noy noyade noyaded noyades noyading noyance noyances noyant noyau noyaus noyed noyes noyeses noyful noying noyous noys noysome nozzer nozzers nozzle nozzler nozzles np npeel npfx nr nrarucu nritta ns nsaid nsec nt nth nu nuadu nuagism nuagist nuance nuanced nuances nuancing nub nubbed nubbier nubbiest nubbin nubbiness nubbinesses nubbing nubbins nubble nubbled nubbles nubblier nubbliest nubbliness nubbling nubbly nubby nubecula nubeculae nubia nubian nubias nubiferous nubiform nubigenous nubilate nubilation nubile nubilities nubility nubilose nubilous nubs nubuck nubucks nucal nucament nucamentaceous nucellar nucelli nucellus nucelluses nucha nuchae nuchal nuchale nuchalgia nuchals nuchas nuciculture nuciferous nuciform nucifraga nucin nucivorous nucleal nucleant nuclear nuclearisation nuclearisations nuclearise nuclearised nuclearises nuclearising nuclearization nuclearizations nuclearize nuclearized nuclearizes nuclearizing nucleary nuclease nucleases nucleate nucleated nucleates nucleating nucleation nucleations nucleator nucleators nucleclei nuclei nucleic nucleide nucleides nucleiferous nucleiform nuclein nucleinase nucleins nucleization nucleize nucleli nucleoalbumin nucleoalbuminuria nucleocapsid nucleocapsids nucleofugal nucleohistone nucleohyaloplasm nucleohyaloplasma nucleoid nucleoidioplasma nucleoids nucleolar nucleolate nucleolated nucleole nucleoles nucleoli nucleolini nucleolinus nucleolocentrosome nucleoloid nucleolus nucleolysis nucleomicrosome nucleon nucleone nucleonic nucleonics nucleons nucleopetal nucleophile nucleophiles nucleophilic nucleophilically nucleophilicities nucleophilicity nucleoplasm nucleoplasmatic nucleoplasmic nucleoplasms nucleoprotein nucleoproteins nucleosid nucleosidase nucleoside nucleosides nucleosomal nucleosome nucleosomes nucleosyntheses nucleosynthesis nucleosynthetic nucleotidase nucleotidases nucleotide nucleotides nucleus nucleuses nuclide nuclides nuclidic nuculane nuculania nuculanium nucule nucules nuculid nuculiform nuculoid nuda nudate nudation nudations nuddle nuddy nude nudely nudeness nudenesses nuder nudes nudest nudge nudged nudger nudgers nudges nudging nudibranch nudibranchia nudibranchian nudibranchians nudibranchiate nudibranchiates nudibranchs nudicaudate nudicaul nudicaulous nudie nudies nudifier nudiflorous nudiped nudish nudism nudisms nudist nudists nuditarian nudities nudity nudnick nudnicks nudnik nudniks nudophobia nudum nudzh nudzhed nudzhes nudzhing nuernberg nuff nuffin nuffins nuffs nugacious nugaciousness nugacities nugacity nugae nugament nugator nugatorily nugatoriness nugatorinesses nugatory nuggar nuggars nugget nuggets nuggety nugify nugilogue nuisance nuisancer nuisancers nuisances nuisome nuke nuked nukes nuking nul null nulla nullable nullah nullahs nullary nullas nullbiety nulled nullibicity nullibiety nullibility nullibiquitous nullibist nullification nullificationist nullificationists nullifications nullificator nullifidian nullifidianism nullifidians nullified nullifier nullifiers nullifies nullify nullifying nulling nullings nullipara nulliparae nulliparas nulliparities nulliparity nulliparous nullipennate nulliplex nullipore nullipores nulliporous nullism nullisome nullisomic nullities nullity nulliverse nullness nullnesses nullo nullos nulls nullum nullus num numac numb numbat numbats numbed numbedness number numberable numbered numberer numberers numberful numbering numberings numberless numberlessly numberlessness numberlessnesses numberous numberplate numbers numberses numbersome numbest numbfish numbfishes numbing numbingly numble numbles numbly numbness numbnesses numbs numbskull numbskulls numchuck numchucks numda numdah numdahs numen numenius numerabilities numerability numerable numerableness numerably numeracies numeracy numeraire numeraires numeral numerally numerals numerant numerary numerate numerated numerates numerating numeration numerations numerative numerator numerators numeric numerical numerically numericalness numerics numerist numero numerological numerologies numerologist numerologists numerology numeros numerose numerosities numerosity numerous numerously numerousness numerousnesses numida numididae numidinae numina numine numinism numinous numinouses numinously numinousness numinousnesses numis numismatic numismatical numismatically numismatician numismatics numismatist numismatists numismatography numismatologies numismatologist numismatologists numismatology nummary nummi nummiform nummular nummulary nummulated nummulation nummulations nummuline nummulite nummulites nummulitic nummulitidae nummulitoid nummuloidal nummus numnah numnahs nump numps numpties numpty numskull numskulled numskulledness numskullery numskullism numskulls numud nun nunatak nunataker nunataks nunation nunbird nunc nunce nunch nunchaku nunchakus nuncheck nunchecks nuncheon nuncheons nunchion nunciate nunciative nunciatory nunciature nunciatures nuncio nuncios nuncioship nuncius nuncle nuncles nuncupate nuncupated nuncupates nuncupating nuncupation nuncupations nuncupative nuncupatively nuncupatory nundinal nundination nundine nundines nung nunhood nunhoods nunks nunky nunlet nunlike nunnari nunnated nunnation nunnations nunned nunneries nunnery nunni nunnify nunning nunnish nunnishness nunnishnesses nunquam nunry nuns nunship nunships nunting nuntius nuphar nuprin nupson nuptial nuptialise nuptialities nuptiality nuptialize nuptially nuptials nuptse nuque nur nuragh nuraghe nuraghes nuraghi nuraghic nurd nurdle nurdled nurdles nurdling nurds nuremburg nurhag nurhags nurl nurled nurling nurls nurly nurnberg nurr nurrs nurry nurs nursable nurse nursed nursedom nursegirl nursehound nursehounds nursekeeper nursekin nurselet nurselike nurseling nurselings nursemaid nursemaided nursemaiding nursemaids nurser nurseries nursers nursery nurserydom nurseryful nurserymaid nurserymaids nurseryman nurserymen nurses nursetender nursing nursingly nursings nursle nursled nursles nursling nurslings nursy nurturable nurtural nurturance nurturances nurturant nurture nurtured nurtureless nurturer nurturers nurtures nurtureship nurturing nus nusfiah nusku nut nutant nutarian nutarians nutate nutated nutates nutating nutation nutational nutations nutbreaker nutbrown nutbutter nutbutters nutcake nutcase nutcases nutcrack nutcracker nutcrackers nutcrackery nutgall nutgalls nutgrass nutgrasses nuthatch nuthatches nuthook nuthouse nuthouses nutjobber nutjobbers nutlet nutlets nutlike nutmeal nutmeals nutmeat nutmeats nutmeg nutmegged nutmegging nutmeggy nutmegs nutpecker nutpeckers nutpick nutpicks nutraceutical nutraceuticals nutramin nutria nutrias nutrice nutriceutical nutriceuticals nutricial nutricism nutriculture nutrient nutrients nutrify nutrilite nutriment nutrimental nutriments nutritial nutrition nutritional nutritionally nutritionary nutritionist nutritionists nutritions nutritious nutritiously nutritiousness nutritiousnesses nutritive nutritively nutritiveness nutritives nutritory nutriture nuts nutsedge nutsedges nutseed nutshell nutshells nutsier nutsiest nutsy nuttalliasis nuttalliosis nutted nutter nutteries nutters nuttery nuttier nuttiest nuttily nuttiness nuttinesses nutting nuttings nuttish nuttishness nutty nutwood nutwoods nuytsia nuzzer nuzzerana nuzzers nuzzle nuzzled nuzzler nuzzlers nuzzles nuzzling nv nw nwbn nwbw ny nyaff nyaffed nyaffing nyaffs nyala nyalas nyamwezi nyanza nyanzas nyas nyasaland nyases nybble nybbled nybbles nybbling nybblize nychthemer nychthemeral nychthemeron nychthemerons nyckelharpa nyctaginaceae nyctaginaceous nyctaginia nyctalgia nyctalope nyctalopes nyctalopia nyctalopias nyctalopic nyctalops nyctalopses nyctalopy nyctanassa nyctanthous nyctereutes nycteribiid nycterine nycticebus nycticorax nyctimene nyctinastic nyctinasties nyctinasty nyctipelagic nyctipithecine nyctitropic nyctitropism nyctitropisms nyctophobia nyctophobias nycturia nye nyed nyes nyet nyetwork nyetworks nying nylast nylgau nylghai nylghais nylghau nylghaus nylon nylons nymil nymph nympha nymphae nymphaea nymphaeaceae nymphaeaceous nymphaeum nymphaeums nymphal nymphalid nymphalidae nymphalids nymphaline nymphalis nympheal nymphean nymphet nymphets nymphette nymphettes nympheum nymphic nymphical nymphicus nymphid nymphine nymphiparous nymphish nymphitis nymphlike nymphlin nymphly nympho nympholepsia nympholepsies nympholepsy nympholept nympholeptic nympholepts nymphomania nymphomaniac nymphomaniacal nymphomaniacs nymphomanias nymphon nymphos nymphosis nymphotomy nymphs nymphwise nymss nynorsk nypa nyphomania nys nyssa nyssaceae nyssas nystagmic nystagmoid nystagmus nystagmuses nystatin nystatins nytril nyxis nécessaire nécessaires née négociant négociants névé o oad oadal oaf oafdom oafish oafishly oafishness oafishnesses oafs oahu oak oakberry oaken oakenshaw oakenshaws oaker oakers oakier oakiest oakland oakleaf oakleaves oaklet oaklike oakling oaklings oakmoss oakmosses oaks oaktongue oakum oakums oakweb oakwood oaky oam oar oarage oarages oarcock oared oarfish oarfishes oarhole oarial oarialgia oaric oarier oariest oaring oariocele oariopathic oariopathy oariotomy oaritic oaritis oarium oarless oarlike oarlock oarlocks oarlop oarman oarrowheaded oars oarsman oarsmanship oarsmanships oarsmen oarswoman oarswomen oarweed oarweeds oary oas oasal oasean oases oasis oasitic oast oasthouse oasthouses oasts oat oatbin oatcake oatcakes oatear oaten oatenmeal oater oaters oatfowl oath oathable oathay oathed oathful oathlet oaths oathworthy oatland oatlike oatmeal oatmeals oats oatseed oaty oaves oaxaca ob oba obadiah obambulate obambulation obambulatory oban obang obangs obarne obarni obas obb obbligati obbligato obbligatos obclavate obclude obcompressed obconic obconical obcordate obcordiform obcuneate obdeltoid obdiplostemonous obdiplostemony obdormition obdt obduce obduction obduracies obduracy obdurate obdurated obdurately obdurateness obduratenesses obdurates obdurating obduration obdurations obdure obdured obdures obduring obe obeah obeahed obeahing obeahism obeahisms obeahs obeche obeches obechi obedience obediences obediency obedient obediential obedientially obedientialness obedientiar obedientiaries obedientiary obediently obeisance obeisances obeisant obeisantly obeish obeism obeisms obeli obelia obeliac obelial obelias obelion obelions obeliscal obeliscar obeliscoid obelise obelised obelises obelising obelisk obelisked obelisking obeliskoid obelisks obelism obelisms obelize obelized obelizes obelizing obelus obento obentos oberon obes obese obesely obeseness obesenesses obeser obesest obesities obesity obex obey obeyable obeyance obeyed obeyeo obeyer obeyers obeying obeyingly obeys obfirm obfuscable obfuscate obfuscated obfuscates obfuscating obfuscation obfuscations obfuscator obfuscators obfuscatory obfuscity obfuscous obfusk obi obia obias obied obiing obiism obiisms obiit obis obispo obit obital obiter obits obitual obituarian obituaries obituarily obituarist obituarists obituarize obituary obj object objectable objectant objectation objectative objected objectee objecter objecthood objectification objectifications objectified objectifies objectify objectifying objecting objection objectionability objectionable objectionableness objectionablenesses objectionably objectional objectioner objectionist objections objectisation objectise objectival objectivate objectivated objectivates objectivating objectivation objectivations objective objectively objectiveness objectivenesses objectives objectivise objectivised objectivises objectivising objectivism objectivisms objectivist objectivistic objectivists objectivities objectivity objectivization objectivizations objectivize objectivized objectivizes objectivizing objectization objectize objectized objectizing objectless objectlessly objectlessness objectlessnesses objector objectors objects objecttification objet objets objicient objranging objscan objuration objurations objure objured objures objurgate objurgated objurgates objurgating objurgation objurgations objurgative objurgatively objurgator objurgatorily objurgators objurgatory objurgatrix objuring obl oblanceolate oblast oblasti oblasts oblat oblata oblate oblated oblately oblateness oblatenesses oblates oblating oblatio oblation oblational oblationary oblations oblatory oblectate oblectation obley obli oblicque obligability obligable obligancy obligant obligants obligate obligated obligately obligates obligati obligating obligation obligational obligationary obligations obligative obligativeness obligato obligator obligatorily obligatoriness obligatorinesses obligators obligatory obligatos obligatum oblige obliged obligedly obligedness obligee obligees obligement obligements obliger obligers obliges obliging obligingly obligingness obligingnesses obligistic obligor obligors obliquangular obliquate obliquation obliquations oblique obliqued obliquely obliqueness obliquenesses obliquer obliques obliquest obliquid obliquing obliquities obliquitous obliquity obliquus obliterable obliterate obliterated obliterates obliterating obliteration obliterations obliterative obliterator obliterators oblivescence oblivial obliviality oblivion oblivionate oblivionise oblivionist oblivionize oblivions oblivious obliviously obliviousness obliviousnesses obliviscence obliviscences obliviscible oblocution oblocutor oblong oblongata oblongatae oblongatal oblongatas oblongated oblongish oblongitude oblongitudinal oblongly oblongness oblongs obloquial obloquies obloquious obloquy obmit obmutescence obmutescences obmutescent obnebulate obnounce obnounced obnouncing obnoxiety obnoxious obnoxiously obnoxiousness obnoxiousnesses obnubilate obnubilated obnubilates obnubilating obnubilation obnubilations obnunciation obo oboe oboes oboist oboists obol obolary obole oboles obolet oboli obolos obols obolus obomegoid oboormition obos obouracy oboval obovate obovately obovoid obpyramidal obpyriform obreption obreptions obreptitious obreptitiously obrien obrize obrogate obrogated obrogating obrogation obrotund obruk obruks obs obscene obscenely obsceneness obscenenesses obscener obscenest obscenities obscenity obscura obscurancy obscurant obscurantic obscuranticism obscurantism obscurantisms obscurantist obscurantists obscurants obscuras obscuration obscurations obscurative obscuratory obscure obscured obscuredly obscurely obscurement obscurements obscureness obscurenesses obscurer obscurers obscures obscurest obscuring obscurism obscurist obscurities obscurity obsecrate obsecrated obsecrates obsecrating obsecration obsecrationary obsecrations obsecratory obsede obsequeence obsequence obsequent obsequial obsequie obsequience obsequies obsequiosity obsequious obsequiously obsequiousness obsequiousnesses obsequity obsequium obsequy observabilities observability observable observableness observablenesses observables observably observance observances observancies observancy observanda observandum observant observantine observantly observantness observants observatin observation observational observationalism observationally observations observative observator observatorial observatories observators observatory observe observed observedly observer observers observership observes observing observingly obsess obsessed obsesses obsessing obsessingly obsession obsessional obsessionally obsessionist obsessionists obsessions obsessive obsessively obsessiveness obsessivenesses obsessives obsessivity obsessor obsessors obside obsidian obsidianite obsidians obsidional obsidionary obsidious obsign obsignate obsignated obsignates obsignating obsignation obsignations obsignatory obsigned obsigning obsigns obsolesc obsolesce obsolesced obsolescence obsolescences obsolescent obsolescently obsolesces obsolescing obsolete obsoleted obsoletely obsoleteness obsoletenesses obsoletes obsoleting obsoletion obsoletions obsoletism obsoletisms obstacle obstacles obstancy obstant obstante obstet obstetric obstetrical obstetrically obstetricate obstetricated obstetricating obstetrication obstetrician obstetricians obstetricies obstetrics obstetricy obstetrist obstetrix obstinacies obstinacious obstinacy obstinance obstinancy obstinant obstinate obstinately obstinateness obstinatenesses obstination obstinative obstipant obstipate obstipated obstipation obstipations obstreperate obstreperated obstreperates obstreperating obstreperosity obstreperous obstreperously obstreperousness obstreperousnesses obstriction obstrictions obstringe obstropalous obstropulous obstruct obstructant obstructed obstructedly obstructer obstructers obstructing obstructingly obstruction obstructional obstructionally obstructionism obstructionisms obstructionist obstructionistic obstructionists obstructions obstructive obstructively obstructiveness obstructivenesses obstructives obstructivism obstructivity obstructor obstructors obstructs obstruent obstruents obstruse obstruxit obstupefy obtain obtainabilities obtainability obtainable obtainableness obtainably obtainal obtainance obtained obtainer obtainers obtaining obtainment obtainments obtains obtect obtected obtemper obtemperate obtemperated obtemperates obtemperating obtempered obtempering obtempers obtend obtended obtending obtends obtenebrate obtenebration obtent obtention obtentions obtest obtestation obtestations obtested obtesting obtests obtrect obtriangular obtrude obtruded obtruder obtruders obtrudes obtruding obtrudings obtruncate obtruncated obtruncates obtruncating obtruncation obtruncator obtrusion obtrusionist obtrusions obtrusive obtrusively obtrusiveness obtrusivenesses obtund obtunded obtundent obtundents obtunder obtunding obtundity obtunds obturate obturated obturates obturating obturation obturations obturator obturators obturatory obturbinate obtusangular obtuse obtusely obtuseness obtusenesses obtuser obtusest obtusifid obtusifolious obtusilingual obtusilobous obtusion obtusipennate obtusirostrate obtusish obtusities obtusity obumbrant obumbrate obumbrated obumbrates obumbrating obumbration obumbrations obus obv obvallate obvelation obvention obventions obversant obverse obversely obverses obversion obversions obvert obverted obvertend obverting obverts obviable obviate obviated obviates obviating obviation obviations obviative obviator obviators obvious obviously obviousness obviousnesses obvolute obvoluted obvolution obvolutions obvolutive obvolve obvolvent oc oca ocarina ocarinas ocas occam occamies occamist occams occamy occas occasion occasionable occasional occasionalism occasionalisms occasionalist occasionalistic occasionalists occasionalities occasionality occasionally occasionalness occasionary occasionate occasioned occasioner occasioners occasioning occasionings occasionless occasions occasive occident occidental occidentalise occidentalised occidentalises occidentalising occidentalism occidentality occidentalize occidentalized occidentalizes occidentalizing occidentally occidentals occidents occiduous occipiputs occipita occipital occipitalis occipitally occipitals occipitoanterior occipitoatlantal occipitoatloid occipitoaxial occipitoaxoid occipitobasilar occipitobregmatic occipitocalcarine occipitocervical occipitofacial occipitofrontal occipitofrontalis occipitohyoid occipitoiliac occipitomastoid occipitomental occipitonasal occipitonuchal occipitootic occipitoparietal occipitoposterior occipitoscapular occipitosphenoid occipitosphenoidal occipitotemporal occipitothalamic occiput occiputs occision occitan occitone occlude occluded occludent occludents occluder occluders occludes occluding occlusal occluse occlusion occlusions occlusive occlusiveness occlusives occlusocervical occlusocervically occlusogingival occlusometer occlusor occlusors occult occultate occultation occultations occulted occulter occulters occulting occultism occultisms occultist occultists occultly occultness occultnesses occults occupable occupance occupances occupancies occupancy occupant occupants occupate occupated occupates occupating occupation occupational occupationalist occupationally occupationless occupations occupative occupiable occupied occupier occupiers occupies occupy occupying occur occurence occurences occurred occurrence occurrences occurrent occurrents occurring occurrit occurs occurse occursive ocean oceanaria oceanarium oceanariums oceanaut oceanauts oceaned oceanet oceanfront oceanfronts oceanful oceangoing oceania oceanian oceanic oceanica oceanicity oceanid oceanides oceanids oceanites oceanity oceanlike oceanog oceanographer oceanographers oceanographic oceanographical oceanographically oceanographies oceanographist oceanography oceanologic oceanological oceanologically oceanologies oceanologist oceanologists oceanology oceanophyte oceanous oceans oceanside oceanus oceanward oceanwards oceanways oceanwise ocellana ocellar ocellary ocellate ocellated ocellation ocellations ocelli ocellicyst ocellicystic ocelliferous ocelliform ocelligerous ocellus oceloid ocelot ocelots och ochava ochavo oche ocher ochered ochering ocherish ocherous ochers ochery oches ochidore ochidores ochlesis ochlesitic ochletic ochlocracies ochlocracy ochlocrat ochlocratic ochlocratical ochlocratically ochlocrats ochlomania ochlophobia ochlophobiac ochlophobiacs ochlophobias ochlophobic ochlophobist ochna ochnaceae ochnaceous ochone ochones ochophobia ochotona ochotonidae ochraceous ochratoxin ochre ochrea ochreae ochreate ochred ochreish ochreous ochres ochrey ochring ochro ochrocarpous ochrogaster ochroid ochroleucous ochrolite ochroma ochronosis ochronosus ochronotic ochrous ochry ochs ocht ochymy ocimum ock ocker ockerism ockerisms ockers ockster oclock oconnell oconnor ocote ocotillo ocotillos ocque ocracy ocrea ocreaceous ocreae ocreate ocreated oct octa octachloride octachord octachordal octachords octachronous octacolic octactinal octactine octactinian octad octadecahydrate octadecane octadecanoic octadecyl octadic octadrachm octadrachma octads octaechos octaemera octaemeron octaeteric octaeterid octaeteris octagon octagonal octagonally octagons octahedra octahedral octahedrally octahedric octahedrical octahedrite octahedrites octahedroid octahedron octahedrons octahedrous octahydrate octahydrated octakishexahedron octal octals octamerism octamerous octameter octameters octan octanaphthene octandria octandrian octandrious octandrous octane octanes octangle octangles octangular octangularness octanol octanols octans octant octantal octants octapeptide octapeptides octapla octaplas octaploid octaploidic octaploidies octaploids octaploidy octapodic octapodies octapody octarch octarchies octarchy octarius octaroon octaroons octarticulate octary octas octasemic octastich octasticha octastichon octastichons octastichous octastichs octastrophic octastyle octastyles octastylos octateuch octaval octavalent octavaria octavarium octavd octave octaves octavian octavic octavina octavo octavos octdra octect octects octenary octene octennial octennially octet octets octett octette octettes octetts octic octile octillion octillions octillionth octillionths octine octingenaries octingenary octingentenaries octingentenary octoad octoalloy octoate octobass october octobers octobrachiate octocentenaries octocentenary octocentennial octochord octocorallan octocoralline octocotyloid octodactyl octodactyle octodactylous octode octodecillion octodecillions octodecillionth octodecillionths octodecimal octodecimo octodecimos octodentate octodianome octodon octodont octoechos octofid octofoil octofoiled octogamy octogenarian octogenarianism octogenarians octogenaries octogenary octogild octoglot octogynia octogynian octogynious octogynous octohedra octohedral octohedron octohedrons octoic octoid octolateral octolocular octomeral octomerous octometer octonal octonare octonarian octonarians octonaries octonarii octonarius octonary octonematous octonion octonocular octoon octopartite octopean octoped octopede octopetalous octophthalmous octophyllous octopi octopine octoploid octoploidic octoploidies octoploids octoploidy octopod octopoda octopodan octopodes octopodidae octopodous octopods octopolar octopus octopuses octopush octopusher octopushers octopushes octoradial octoradiate octoradiated octoreme octoroon octoroons octose octosepalous octospermous octospore octosporous octostichous octostyle octostyles octosyllabic octosyllabics octosyllable octosyllables octothorp octothorpe octothorpes octothorps octovalent octoyl octroi octrois octroy octuor octuors octuple octupled octuples octuplet octuplets octuplex octuplicate octuplicates octuplication octupling octuply octyl octylene octyls octyne ocuby ocular ocularist ocularists ocularly oculars oculary oculate oculated oculauditory oculi oculiferous oculiform oculigerous oculinid oculinoid oculist oculistic oculists oculli oculocephalic oculofacial oculofrontal oculogyric oculomotor oculomotory oculonasal oculopalpebral oculopupillary oculospinal oculozygomatic oculus ocurred ocydrome ocydromine ocypodan ocypode ocypodian ocypodoid ocyte ocyurus od oda odacoid odah odahs odal odalborn odalique odaliques odalisk odalisks odalisque odalisques odaller odallers odalman odals odalwoman odas odd oddball oddballs odder oddest oddfellow oddfellows oddish oddities oddity oddlegs oddly oddman oddment oddments oddness oddnesses odds oddside oddsmaker oddsmakers oddsman oddsmen ode odea odel odelet odell odeon odeons oder odes odessa odeum odeums odible odic odically odiferous odin odinism odinite odiometer odious odiously odiousness odiousnesses odism odisms odist odists odium odiumproof odiums odling odobenidae odobenus odocoileus odograph odographs odology odometer odometers odometrical odometries odometry odonata odonate odonates odonatist odonatists odonatologies odonatologist odonatologists odonatology odonnell odontagra odontalgia odontalgias odontalgic odontalgies odontalgy odontaspididae odontaspis odontatrophia odontatrophy odontexesis odontiasis odontic odontist odontists odontitis odontoblast odontoblastic odontoblasts odontocele odontocete odontocetes odontoceti odontocetous odontochirurgic odontoclasis odontoclast odontodynia odontogen odontogenesis odontogenic odontogenies odontogeny odontoglossal odontoglossate odontoglossum odontoglossums odontognathic odontognathous odontograph odontographic odontographies odontographs odontography odontohyperesthesia odontoid odontoids odontolcate odontolcous odontolite odontolites odontolith odontologic odontological odontologically odontologies odontologist odontologists odontology odontoloxia odontoma odontomas odontomata odontomatous odontomous odontonecrosis odontoneuralgia odontonosology odontopathy odontophobia odontophobias odontophoral odontophoran odontophore odontophores odontophorine odontophorous odontophorus odontoplast odontoplerosis odontorhynchous odontornithes odontornithic odontorrhagia odontorthosis odontoschism odontoscope odontosis odontostomatous odontostomous odontotechny odontotherapia odontotherapy odontotomy odontotripsis odontotrypy odoom odophone odor odorable odorant odorants odorate odorator odored odorful odoriferant odoriferosity odoriferous odoriferously odoriferousness odoriferousnesses odorific odorimeter odorimetries odorimetry odoriphor odoriphore odorise odorised odoriser odorises odorising odorivector odorization odorize odorized odorizer odorizers odorizes odorizing odorless odorlessly odorlessness odorlessnesses odorometer odorosity odorous odorously odorousness odorousnesses odorproof odors odour odoured odourful odourless odours ods odso odsos odum odwyer odyl odyle odyles odylic odylism odylisms odylist odylization odylize odyls odysseus odyssey odysseys odzooks oe oecanthus oeci oecist oecists oecodomic oecodomical oecoid oecologic oecological oecologically oecologies oecologist oecologists oecology oeconomic oeconomus oecoparasite oecoparasitism oecophobia oecumenian oecumenicalisms oecumenically oecumenicism oecumenicisms oecumenics oecumenisms oecus oedema oedemas oedemata oedematose oedematous oedemerid oedicnemine oedipal oedipally oedipean oedipus oedipuses oedogoniaceae oedogoniaceous oedogoniales oedogonium oeillade oeillades oeillet oekist oelet oenanthaldehyde oenanthate oenanthe oenanthic oenanthol oenanthole oenanthyl oenanthylate oenanthylic oengus oenin oenochoae oenochoe oenocyte oenocytic oenolic oenolin oenological oenologies oenologist oenologists oenology oenomancies oenomancy oenomania oenomanias oenomel oenomels oenometer oenometers oenone oenophil oenophile oenophiles oenophilies oenophilist oenophilists oenophils oenophily oenophobist oenopoetic oenothera oenotheraceous oer oerlikon oerlikons oersted oersteds oes oesogi oesophagal oesophageal oesophagean oesophagi oesophagism oesophagismus oesophagitis oesophagostomiasis oesophaguses oesterreich oestradiol oestradiols oestral oestrian oestriasis oestrid oestridae oestrin oestrins oestriol oestriols oestrogen oestrogenic oestrogens oestroid oestrone oestrones oestrous oestrual oestruate oestruation oestrum oestrums oestrus oestruses oeuvre oeuvres of ofay ofays off offal offaling offals offbeat offbeats offbreak offcast offcasts offcolour offcome offcut offcuts offed offence offenceful offenceless offencelessly offences offend offendable offendant offended offendedly offendedness offender offenders offendible offending offendress offendresses offends offense offenseful offenseless offenselessly offenselessness offenseproof offenses offensible offension offensive offensively offensiveness offensivenesses offensives offer offerable offered offeree offerees offerer offerers offering offerings offeror offerors offers offertorial offertories offertory offgoing offgrade offguard offhand offhanded offhandedly offhandedness offhandednesses offic officaries office officeholder officeholders officeless officemate officer officerage officered officeress officerhood officerial officering officerism officerless officers officership officerships offices official officialdom officialdoms officialese officialeses officialisation officialise officialism officialisms officialities officiality officialization officialize officialized officializing officially officialness officials officialties officialty officiant officiants officiaries officiary officiate officiated officiates officiating officiation officiations officiator officiators officina officinal officinally officinals officio officious officiously officiousness officiousnesses offing offings offish offishly offishness offishnesses offkey offlap offlet offlicence offline offload offloaded offloading offloads offlook offpay offpeak offprint offprinted offprinting offprints offpspring offput offputs offramp offramps offs offsaddle offsaddled offsaddles offsaddling offscape offscour offscourer offscouring offscourings offscreen offscum offscums offseason offseasons offset offsetable offsets offsetting offshoot offshoots offshore offshores offside offsider offsiders offsides offsite offspring offsprings offstage offstages offtake offtakes offtrack offtype offuscate offuscation offward offwards oficina oflag oflags oflete ofo oft often oftener oftenest oftenness oftennesses oftens oftentime oftentimes ofter oftest ofthink oftly oftness ofttime ofttimes oftwhiles og ogaire ogalala ogam ogamic ogams ogcocephalidae ogdoad ogdoads ogdoas ogee ogeed ogees ogenesis ogenetic ogganition oggin oggins ogham oghamic oghamist oghamists oghams ogival ogive ogived ogives oglala ogle ogled ogler oglers ogles ogling oglings ogmic ogonek ogoneks ogonium ogpu ogre ogreish ogreishly ogreism ogreisms ogres ogress ogresses ogrish ogrishly ogrism ogrisms ogtiern ogum ogygian oh ohare ohed ohelo ohia ohias ohing ohio ohioan ohioans ohm ohmage ohmages ohmic ohmically ohmmeter ohmmeters ohms oho ohone ohones ohos ohoy ohs ohv oi oicks oidia oidioid oidiomycosis oidiomycotic oidium oidwlfe oie oii oik oikist oikists oikology oikomania oikophobia oikoplast oiks oil oilberries oilberry oilbird oilbirds oilcake oilcamp oilcamps oilcan oilcans oilcase oilcloth oilcloths oilcoat oilcup oilcups oildom oiled oiler oileries oilers oilery oilfield oilfields oilfired oilfish oilfishes oilheating oilhole oilholes oilier oiliest oiligarchy oilily oiliness oilinesses oiling oilish oilless oillessness oillet oillets oillike oilman oilmen oilmonger oilmongery oilnut oilnuts oilometer oilpaper oilpapers oilproof oilproofing oilrig oils oilseed oilseeds oilskin oilskinned oilskins oilstock oilstone oilstoned oilstones oilstoning oilstove oiltight oiltightness oilway oilways oilwell oily oilyish oime oink oinked oinking oinks oinochoai oinochoe oinochoes oinochoi oinologies oinology oinomancy oinomania oinomel oinomels oint ointed ointing ointment ointments oints oireachtas ois oisin oisivity oitava oiticica oiticicas oj ojibwa ojibwas ojibway ojime ojimes ojs ok oka okanagan okapi okapia okapis okas okay okayed okaying okays oke okee okeh okehs okenite oker okes oket okey okeydoke okeydokey oki okia okie okimono okimonos okinawa oklahoma oklahoman oklahomans okolehao okoniosis okonite okoume okra okras okro okroog okrug okruzi okshoofd okta oktas oktastylos okthabah okupukupu ol ola olacaceous olacad olam olamic old olde olden oldened oldening oldens older oldermost olders oldest oldfangled oldfangledness oldhamite oldhearted oldie oldies oldish oldland oldmaidish oldness oldnesses olds oldsmobile oldsquaw oldsquaws oldster oldsters oldstyle oldstyles oldwench oldwife oldwives oldy ole olea oleaceae oleaceous oleaginous oleaginously oleaginousness oleaginousnesses oleales oleana oleander oleanders oleandomycin oleandomycins oleandra oleandraceae oleandrin oleandrine olearia olearias oleary olease oleaster oleasters oleate oleates olecranal olecranarthritis olecranial olecranian olecranoid olecranon olecranons olefiant olefin olefine olefines olefinic olefins oleic oleiferous olein oleine oleines oleins olena olenellidian olenid olenidian olent oleo oleocalcareous oleocellosis oleocyst oleoduct oleograph oleographer oleographic oleographies oleographs oleography oleomargaric oleomargarine oleomargarines oleometer oleophilic oleophobic oleoptene oleorefractometer oleoresin oleoresinous oleoresins oleos oleosaccharum oleose oleosity oleostearate oleostearin oleostearine oleothorax oleous oleoyl olepy oleraceous olericultural olericulturally olericulture olericulturist oleron oles olestra olestras olethreutid oleum oleums olfact olfactable olfacted olfactible olfacting olfaction olfactions olfactive olfactologies olfactologist olfactologists olfactology olfactometer olfactometers olfactometric olfactometries olfactometry olfactophobia olfactor olfactoreceptor olfactories olfactorily olfactory olfactronics olfacts olfacty olfersia oliban olibanum olibanums olibene olicook olicooks olid oligacanthous oligaemia oligaemias oligandrous oliganthous oligarch oligarchal oligarchic oligarchical oligarchically oligarchies oligarchism oligarchist oligarchize oligarchs oligarchy oligemia oligidic oligidria oligist oligistic oligistical oligists oligocarpous oligocene oligochaeta oligochaete oligochaetes oligochaetous oligochete oligocholia oligochrome oligochromemia oligochromes oligochronometer oligochylia oligoclase oligoclases oligoclasite oligocystic oligocythaemia oligocythaemias oligocythemia oligocythemic oligodactylia oligodendria oligodendrocyte oligodendrocytes oligodendroglia oligodendroglial oligodendroglias oligodendroglioma oligodipsia oligodontous oligodynamic oligogalactia oligohemia oligohydramnios oligolactia oligomenorrhea oligomer oligomeric oligomerization oligomerizations oligomerous oligomers oligomery oligometochia oligometochic oligomycin oligomyodian oligomyoid oligonephric oligonephrous oligonite oligonucleotide oligonucleotides oligopepsia oligopetalous oligophagies oligophagous oligophagy oligophosphaturia oligophrenia oligophrenic oligophyllous oligoplasmia oligoplites oligopnea oligopolies oligopolist oligopolistic oligopoly oligoporus oligoprothesy oligoprothetic oligopsonies oligopsonistic oligopsony oligopsychia oligopyrene oligorhizous oligosaccharide oligosaccharides oligosepalous oligosialia oligosideric oligosiderite oligosite oligospermia oligospermous oligostemonous oligosyllabic oligosyllable oligosynthetic oligotokeus oligotokous oligotrichia oligotrophic oligotrophies oligotrophy oligotropic oliguresia oliguresis oliguretic oliguria oligurias olimbos olingo olingos oliniaceous olio oliomargarin oliomargarins olios oliphant oliphants oliprance olitories olitory oliva olivaceous olivary olivaster olive olived oliveness olivenite olivenites oliver oliverian oliverman olivermen olivers oliversmith olives olivescent olivesheen olivet olivetan olivets olivette olivewood olivia oliviferous oliviform olivil olivile olivilin olivine olivinefels olivines olivinic olivinite olivinitic olla ollamh ollamhs ollapod ollari ollas ollav ollavs ollenite ollock olluck olm olms ological ologies ologist ologistic ologists olograph olographic ology ololiuqui ololiuquis olomao olona oloroso olorosos olp olpae olpe olpes oltonde oltunna olycook olycooks olykoek olykoeks olympia olympiad olympiads olympian olympians olympic olympics olympus olé om omadhaun omadhauns omagra omaha omahas omalgia oman omander omani omao omarthritis omasa omasal omasitis omasum omb omber ombers ombre ombrella ombrellas ombrellino ombrellinos ombres ombrette ombrifuge ombrograph ombrographic ombrological ombrology ombrometer ombrometers ombrometric ombrophil ombrophile ombrophiles ombrophilic ombrophilous ombrophils ombrophily ombrophobe ombrophobes ombrophobous ombrophoby ombrophyte ombu ombudsman ombudsmanship ombudsmanships ombudsmen ombudsperson ombudspersons ombudspersonship ombudspersonships ombudswoman ombudswomanship ombudswomanships ombudswomen ombus omdurman omega omegas omegoid omelet omelets omelette omelettes omelie omen omened omening omenology omens omenta omental omentectomy omentitis omentocele omentofixation omentopexy omentoplasty omentorrhaphy omentosplenopexy omentotomy omentulum omentum omentums omentuta omer omers omerta omertas omicron omicrons omikron omikrons omina ominate ominous ominously ominousness ominousnesses omissible omission omissions omissive omissively omissiveness omissivenesses omissus omit omitis omits omittable omittance omittances omitted omitter omitters omitting omlah omlahs ommastrephes ommatea ommateal ommateum ommatidia ommatidial ommatidium ommatitidia ommatophore ommatophores ommatophorous ommetaphobia omneities omneity omnes omni omniactive omniactuality omniana omniarch omniarchs omnibearing omnibenevolence omnibenevolences omnibenevolent omnibus omnibuses omnibusman omnibusses omnicausality omnicompetence omnicompetences omnicompetent omnicorporeal omnicredulity omnicredulous omnidenominational omnidirectional omnidistance omnierudite omniessence omnieties omniety omnifacial omnifarious omnifariously omnifariousness omnifariousnesses omniferous omnific omnificence omnificences omnificent omnifidel omnified omnifies omnifocal omniform omniformal omniformities omniformity omnify omnifying omnigenous omnigerent omnigraph omnihuman omnihumanity omnilegent omnilingual omniloquent omnilucent omnimental omnimeter omnimode omnimodous omninescience omninescient omniparent omniparient omniparities omniparity omniparous omnipatient omnipercipience omnipercipiency omnipercipient omniperfect omnipotence omnipotences omnipotencies omnipotency omnipotent omnipotentiality omnipotently omnipotents omnipregnant omnipresence omnipresences omnipresent omnipresently omniprevalence omniprevalent omniproduction omniprudence omniprudent omnirange omniranges omniregency omniregent omnirepresentative omnirepresentativeness omnirevealing omniscience omnisciences omnisciency omniscient omnisciently omniscients omniscope omniscribent omniscriptive omnisentience omnisentient omnisignificance omnisignificant omnispective omnist omnisufficiency omnisufficient omnitemporal omnitenent omnitolerant omnitonal omnitonality omnitonic omnitude omnium omniums omnivagant omnivalence omnivalent omnivalous omnivarious omnividence omnivident omnivision omnivolent omnivora omnivoracious omnivoracity omnivorant omnivore omnivores omnivories omnivorism omnivorous omnivorously omnivorousness omnivorousnesses omnivory omodynia omohyoid omohyoids omoideum omomyid omophagia omophagias omophagic omophagies omophagist omophagous omophagy omophoria omophorion omophorions omoplate omoplates omoplatoscopies omoplatoscopy omostegite omosternal omosternum omotic omphacine omphacite omphacites omphacy omphalectomy omphali omphalic omphalism omphalitis omphalocele omphalode omphalodia omphalodium omphalogenous omphaloi omphaloid omphaloma omphalomancies omphalomancy omphalomesaraic omphalomesenteric omphaloncus omphalopagus omphalophlebitis omphalopsychic omphalopsychite omphalorrhagia omphalorrhea omphalorrhexis omphalos omphaloses omphalosite omphaloskepses omphaloskepsis omphalospinous omphalotomy omphalotripsy omphalotus omphalus omrah omrahs oms omsk on ona onager onagers onaggri onagra onagraceae onagraceous onagri onanism onanisms onanist onanistic onanists onboard onca once oncer oncers onces oncet oncetta onchocerciases onchocerciasis onchocercosis onchorynchus oncia oncidium oncidiums oncin oncogen oncogene oncogenes oncogeneses oncogenesis oncogeneticist oncogeneticists oncogenic oncogenicities oncogenicity oncogens oncograph oncography oncologic oncological oncologies oncologist oncologists oncology oncolyses oncolysis oncolytic oncolytics oncome oncomes oncometer oncometers oncometric oncometry oncomice oncoming oncomings oncomouse oncorhynchus oncornavirus oncornaviruses oncoses oncosimeter oncosis oncosphere oncost oncostman oncostmen oncosts oncotic oncotomies oncotomy oncovin oncovirus oncoviruses oncus ondagram ondagraph ondameter ondascope ondatra ondatras ondine ondines onding ondings ondogram ondograms ondograph ondometer ondoscope ondoyant ondule ondy one oneanother oneberry onefold onefoldness onegite onehearted onehood onehow oneida oneidas oneill oneiric oneirically oneirocrit oneirocritic oneirocritical oneirocritically oneirocriticism oneirocriticisms oneirocritics oneirodynia oneirodynias oneirologies oneirologist oneirology oneiromancer oneiromancers oneiromancies oneiromancy oneiroscopic oneiroscopies oneiroscopist oneiroscopists oneiroscopy oneirotic oneism onely onement oneness onenesses oner onerary onerate onerative onerier oneriest onerose onerosities onerosity onerous onerously onerousness onerousnesses oners onery ones oneself onesigned onethe onetime oneupmanship onewhere oneyer oneyers oneyre oneyres onfall onfalls onflemed onflow onflowing onflows ongaro ongoing ongoingness ongoingnesses ongoings onhanger oni onicolo oniomania oniomaniac onion onioned onionet onionier onioniest onioning onionised onionized onionlike onionpeel onions onionskin onionskins oniony oniric onirotic oniscidae onisciform oniscoid oniscoidean oniscus onium onker onkilonite onkos onkus onlaid onlap onlay onlaying onlays onlepy onless onliest online onliner onliners onliness onload onloaded onloading onloads onlook onlooker onlookers onlooking only onmarch onned onning ono onobrychis onocentaur onocentaurs onoclea onocrotal onofrite onolatry onomancy onomantia onomasiological onomasiology onomastic onomastical onomastically onomastician onomasticians onomasticon onomasticons onomastics onomatologic onomatological onomatologically onomatologies onomatologist onomatologists onomatology onomatomancy onomatomania onomatop onomatope onomatophobia onomatoplasm onomatopoeia onomatopoeial onomatopoeian onomatopoeias onomatopoeic onomatopoeical onomatopoeically onomatopoeses onomatopoesis onomatopoesy onomatopoetic onomatopoetically onomatopoieses onomatopoiesis onomatopy onomatous onomomancy onondaga onondagas ononis onopordon onopordum onosmodium onotogenic onrush onrushes onrushing ons onscreen onset onsets onsetter onsetters onsetting onsettings onshore onside onsides onsight onslaught onslaughts onst onstage onstand onstanding onstead onsteads onstream onsweep onsweeping ont ontal ontario ontic ontically onto ontocycle ontocyclic ontogenal ontogeneses ontogenesis ontogenetic ontogenetical ontogenetically ontogenic ontogenically ontogenies ontogenist ontogeny ontography ontologic ontological ontologically ontologies ontologise ontologised ontologising ontologism ontologist ontologistic ontologists ontologize ontology ontosophy onus onuses onwaiting onward onwardly onwardness onwards ony onycha onychas onychatrophia onychauxis onychia onychias onychin onychite onychites onychitis onychitises onychium onychiums onychocryptoses onychocryptosis onychogalea onychogryposis onychoid onycholyses onycholysis onychomalacia onychomancies onychomancy onychomycosis onychomys onychonosus onychopathic onychopathology onychopathy onychophagia onychophagies onychophagist onychophagists onychophagy onychophora onychophoran onychophorans onychophorous onychophyma onychoptosis onychorrhexis onychoschizia onychosis onychotrophy onym onymal onymancy onymatic onymity onymize onymous onymy onyx onyxes onyxis onyxitis onza oo ooangium oobit oobits ooblast ooblastic oocyesis oocyst oocystaceous oocystic oocysts oocyte oocytes oodles oodlins ooecia ooecial ooecium oof oofbird oofier oofiest oofiness oofless oofs ooftish ooftishes oofy oogamete oogametes oogamies oogamous oogamy oogeneses oogenesis oogenetic oogenies oogeny ooglea oogloea oogone oogonia oogonial oogoninia oogoniophore oogonium oogoniums oograph ooh oohed oohing oohs ooid ooidal ookinesis ookinete ookinetic oolachan oolachans oolak oolakan oolakans oolemma oolemmas oolite oolites oolith ooliths oolitic oollies oolly oologic oological oologically oologies oologist oologists oologize oology oolong oolongs oom oomancy oomantia oometer oometric oometry oomiac oomiack oomiacks oomiacs oomiak oomiaks oompah oompahed oompahing oompahs oomph oomphs ooms oomycete oomycetes oomycetous oon oons oonses oont oonts oooo oop oopack oopak ooped oophoralgia oophorauxe oophore oophorectomies oophorectomise oophorectomised oophorectomises oophorectomising oophorectomize oophorectomized oophorectomizes oophorectomizing oophorectomy oophoreocele oophorhysterectomy oophoric oophoridia oophoridium oophoridiums oophoritis oophoritises oophorocele oophorocystectomy oophoroepilepsy oophoroma oophoromalacia oophoromania oophoron oophorons oophoropexy oophororrhaphy oophorosalpingectomy oophorostomy oophorotomy oophyte oophytes oophytic ooping ooplasm ooplasmic ooplast oopod oopodal ooporphyrin oops oopses oopuhue oor oorali ooralis oord oorial oorials oorie oorier ooriest oory oos ooscope ooscopy oose ooses oosier oosiest oosperm oosperms oosphere oospheres oosporange oosporangia oosporangium oospore oospores oosporic oosporiferous oosporous oostegite oostegitic oosterbeek oosy oot ootheca oothecae oothecal ootid ootids ootocoid ootocoidean ootocous oots ootwith ootype oouassa ooze oozed oozes oozier ooziest oozily ooziness oozinesses oozing oozoa oozoid oozooid oozy op opa opacate opacification opacified opacifier opacifiers opacifies opacify opacifying opacimeter opacite opacities opacity opacous opacousness opacus opah opahs opai opaion opal opaled opalesce opalesced opalescence opalescences opalescent opalescently opalesces opalescing opalesque opaleye opaleyes opaline opalines opalinid opalinine opalise opalised opalish opalize opalized opalizing opalled opaloid opalotype opals opaque opaqued opaquely opaqueness opaquenesses opaquer opaques opaquest opaquing opcode opcodes opdalite ope opec oped opedeldoc opeidoscope opeidoscopes opelet opelu open openabilities openability openable openairish openairness openband openbeak openbill opencast openchain opencircuit opencut opened openendedness opener openers openest openhanded openhandedly openhandedness openhandednesses openhead openhearted openheartedly openheartedness openheartednesses opening openings openly openminded openmindedness openmindednesses openmouthed openmouthedly openmouthedness openmouthednesses openness opennesses opens openside openwork openworks opepe opepes opera operabilities operability operabily operable operably operae operagoer operagoers operagoing operagoings operalogue operameter operance operancy operand operandi operands operant operantis operantly operants operary operas operatable operate operated operatee operates operatic operatical operatically operatics operating operation operational operationalism operationalisms operationalist operationalistic operationalists operationally operationism operationisms operationist operationists operations operatise operatised operatises operatising operative operatively operativeness operativenesses operatives operativity operatize operatized operatizes operatizing operator operatorless operators operatory operatrices operatrix opercele operceles opercle opercled opercula opercular opercularly operculars operculate operculated opercule opercules operculiferous operculiform operculigenous operculigerous operculum operculums operetta operettas operette operettist operettists operla operon operons operose operosely operoseness operosenesses operosities operosity opes ophelia ophelimity opheodrys ophiasis ophic ophicalcite ophicalcites ophicephaloid ophichthyoid ophicleide ophicleidean ophicleides ophicleidist ophidia ophidian ophidians ophidiaria ophidiarium ophidiariums ophidiidae ophidioid ophidiomania ophidiophobia ophidious ophidium ophidologist ophidology ophiodon ophiodontidae ophioglossaceae ophioglossaceous ophioglossales ophioglossum ophiography ophioid ophiolater ophiolaters ophiolatries ophiolatrous ophiolatry ophiolite ophiolites ophiolitic ophiologic ophiological ophiologies ophiologist ophiologists ophiology ophiomancy ophiomorph ophiomorphic ophiomorphous ophiomorphs ophionid ophionine ophiophagous ophiophagus ophiophilism ophiophilist ophiophilists ophiophobe ophiophobia ophiophoby ophiopluteus ophiostaphyle ophiouride ophir ophisaurus ophite ophites ophitic ophiuchus ophiucus ophiura ophiuran ophiurans ophiuras ophiurid ophiurida ophiurids ophiuroid ophiuroidea ophiuroidean ophiuroids ophresiophobia ophryon ophrys ophthalaiater ophthalitis ophthalm ophthalmagra ophthalmalgia ophthalmalgic ophthalmatrophia ophthalmectomy ophthalmencephalon ophthalmetrical ophthalmia ophthalmiac ophthalmias ophthalmiater ophthalmiatrics ophthalmic ophthalmics ophthalmious ophthalmist ophthalmists ophthalmite ophthalmitic ophthalmitis ophthalmitises ophthalmoblennorrhea ophthalmocarcinoma ophthalmocele ophthalmocopia ophthalmodiagnosis ophthalmodiastimeter ophthalmodynamometer ophthalmodynia ophthalmography ophthalmol ophthalmoleucoscope ophthalmolith ophthalmologic ophthalmological ophthalmologically ophthalmologies ophthalmologist ophthalmologists ophthalmology ophthalmomalacia ophthalmometer ophthalmometers ophthalmometric ophthalmometrical ophthalmometries ophthalmometry ophthalmomycosis ophthalmomyositis ophthalmomyotomy ophthalmoneuritis ophthalmopathy ophthalmophlebotomy ophthalmophobia ophthalmophobias ophthalmophore ophthalmophorous ophthalmophthisis ophthalmoplasty ophthalmoplegia ophthalmoplegias ophthalmoplegic ophthalmopod ophthalmoptosis ophthalmorrhagia ophthalmorrhea ophthalmorrhexis ophthalmoscope ophthalmoscopes ophthalmoscopic ophthalmoscopical ophthalmoscopically ophthalmoscopies ophthalmoscopist ophthalmoscopy ophthalmostasis ophthalmostat ophthalmostatometer ophthalmothermometer ophthalmotomy ophthalmotonometer ophthalmotonometry ophthalmotrope ophthalmotropometer ophthalmy opiane opianic opianyl opiate opiated opiateproof opiates opiatic opiating opifex opifice opificer opificers opiism opiliaceous opiliones opilionine opinability opinable opinably opinant opination opinative opinatively opinator opine opined opiner opiners opines oping opiniaster opiniastre opiniastrety opiniastrous opiniate opiniated opiniatedly opiniater opiniative opiniatively opiniativeness opiniatre opiniatreness opiniatrety opinicus opinicuses opining opinion opinionable opinionaire opinional opinionate opinionated opinionatedly opinionatedness opinionatednesses opinionately opinionative opinionatively opinionativeness opinionativenesses opinionator opinionators opinioned opinionedness opinionist opinionists opinions opioid opioids opiomania opiomaniac opiophagism opiophagy opiparous opisometer opisometers opisthenar opisthion opisthobranch opisthobranchia opisthobranchiate opisthobranchs opisthocoelian opisthocoelous opisthocome opisthocomidae opisthocomine opisthocomous opisthocomus opisthodetic opisthodome opisthodomos opisthodomoses opisthodomus opisthodont opisthogastric opisthoglossal opisthoglossate opisthoglyph opisthoglyphic opisthoglyphous opisthognathidae opisthognathism opisthognathisms opisthognathous opisthograph opisthographal opisthographic opisthographical opisthographies opisthographs opisthography opisthogyrate opisthogyrous opisthoparian opisthophagic opisthoporeia opisthorchiasis opisthosomal opisthotic opisthotonic opisthotonoid opisthotonos opisthotonoses opisthotonus opium opiumism opiumisms opiums opobalsam opobalsams opobalsamum opodeldoc opodeldocs opodidymus opodymus opopanax opopanaxes opoponax oporice oporices oporto opossum opossums opotherapies opotherapy opp oppenheimer oppida oppidan oppidans oppidum oppignerate oppignerated oppignerates oppignerating oppignorate oppignorated oppignorates oppignorating oppignoration oppignorations oppilant oppilate oppilated oppilates oppilating oppilation oppilations oppilative opplete oppletion oppo oppone opponencies opponency opponens opponent opponents opportune opportuneless opportunely opportuneness opportunenesses opportunism opportunisms opportunist opportunistic opportunistically opportunists opportunities opportunity oppos opposabilities opposability opposable opposal oppose opposed opposeless opposer opposers opposes opposing opposingly opposit opposite oppositely oppositeness oppositenesses opposites oppositiflorous oppositifolious opposition oppositional oppositionary oppositionism oppositionist oppositionists oppositionless oppositions oppositious oppositipetalous oppositipinnate oppositipolar oppositisepalous oppositive oppositively oppositiveness oppossum opposure oppress oppressed oppresses oppressible oppressing oppression oppressionist oppressions oppressive oppressively oppressiveness oppressivenesses oppressor oppressors opprobria opprobriate opprobriated opprobriating opprobrious opprobriously opprobriousness opprobriousnesses opprobrium opprobriums opprobry oppugn oppugnacy oppugnance oppugnancies oppugnancy oppugnant oppugnants oppugnate oppugnation oppugned oppugner oppugners oppugning oppugns ops opsigamy opsimath opsimathies opsimaths opsimathy opsin opsins opsiometer opsiometers opsisform opsistype opsomania opsomaniac opsomaniacs opsomanias opsonia opsonic opsoniferous opsonification opsonifications opsonified opsonifies opsonify opsonifying opsonin opsonins opsonist opsonium opsoniums opsonization opsonizations opsonize opsonized opsonizes opsonizing opsonogen opsonoid opsonology opsonometry opsonophilia opsonophilic opsonophoric opsonotherapy opsy opt optable optableness optably optant optants optate optation optative optatively optatives opted opter opters optez opthalmic opthalmologic opthalmology opthalmophorium opthalmoplegy opthalmoscopy opthalmothermometer optic optical optically optician opticians opticism opticist opticists opticity opticly opticochemical opticociliary opticon opticopapillary opticopupillary optics optigraph optima optimacy optimal optimalisation optimalisations optimalise optimalised optimalises optimalising optimalities optimality optimalization optimalizations optimalize optimalized optimalizes optimalizing optimally optimate optimates optime optimes optimeter optimisation optimisations optimise optimised optimiser optimisers optimises optimising optimism optimisms optimist optimistic optimistical optimistically optimisticalness optimists optimity optimization optimizations optimize optimized optimizer optimizers optimizes optimizing optimum optimums opting option optional optionalise optionalities optionality optionalize optionally optionals optionary optioned optionee optionees optioning optionor options optive optoacoustic optoblast optoelectronic optoelectronics optogram optography optoisolate optokinetic optological optologies optologist optologists optology optomeninx optometer optometers optometric optometrical optometries optometrist optometrists optometry optophone optophones optotechnics optotype optronics opts opulence opulences opulencies opulency opulent opulently opulus opuluses opuntia opuntiales opuntias opuntioid opus opuscle opuscles opuscula opuscular opuscule opuscules opusculum opuses opv oquassa oquassas or ora orabassu orach orache oraches orachs oracies oracle oracled oracler oracles oracling oracula oracular oracularities oracularity oracularly oracularness oracularnesses oraculate oraculous oraculously oraculousness oraculousnesses oraculum oracy orad oradexon orae orage oragious oraison oral orale oraler oralisation oralise oralism oralisms oralist oralists oralities orality oralization oralize orally oralogist oralogy orals oran orang orange orangeade orangeades orangeado orangeat orangeberries orangeberry orangebird orangeish orangeleaf orangeman orangeness oranger orangerie orangeries orangeroot orangeroots orangery oranges orangest orangewoman orangewood orangewoods orangey orangier orangiest oranginess orangise orangish orangism orangist orangite orangize orangoutan orangoutang orangoutangs orangoutans orangs orangutan orangutang orangutangs orangutans orangy orans orant orante orantes orants oraria orarian orarians orarion orarions orarium orariums orary oras orate orated orates orating oration orational orationer orations orator oratorial oratorially oratorian oratorians oratoric oratorical oratorically oratories oratorio oratorios oratorise oratorium oratorize oratorlike orators oratorship oratory oratress oratresses oratrices oratrix oratrixes orb orbate orbation orbed orbell orbic orbical orbicle orbicular orbiculares orbicularis orbicularities orbicularity orbicularly orbicularness orbiculate orbiculated orbiculately orbiculation orbiculatocordate orbiculatoelliptical orbier orbiest orbific orbignya orbing orbit orbita orbital orbitale orbitally orbitals orbitar orbitary orbitas orbite orbited orbiteer orbiteered orbiteering orbiteers orbitelar orbitelarian orbitele orbitelous orbiter orbiters orbities orbiting orbitofrontal orbitolite orbitomalar orbitomaxillary orbitonasal orbitopalpebral orbitosphenoid orbitosphenoidal orbitostat orbitotomy orbitozygomatic orbits orbitude orbity orbless orblet orblike orbs orby orc orca orcadian orcanet orcanette orcas orcein orceins orch orchamus orchanet orchard orcharding orchardings orchardist orchardists orchardman orchardmen orchards orchat orchats orchectomy orcheitis orchel orchella orchellas orchels orchen orcheses orchesis orchesographies orchesography orchester orchestia orchestian orchestic orchestics orchestiid orchestiidae orchestra orchestral orchestraless orchestralist orchestralists orchestrally orchestras orchestrate orchestrated orchestrater orchestraters orchestrates orchestrating orchestration orchestrational orchestrations orchestrator orchestrators orchestre orchestrelle orchestric orchestrina orchestrinas orchestrion orchestrions orchialgia orchic orchichorea orchid orchidaceae orchidacean orchidaceous orchidales orchidalgia orchidean orchidectomies orchidectomy orchideous orchideously orchidist orchidists orchiditis orchidlike orchidocele orchidocelioplasty orchidologies orchidologist orchidologists orchidology orchidomania orchidomaniac orchidomaniacs orchidomanias orchidopexy orchidoplasty orchidoptosis orchidorrhaphy orchidotherapy orchidotomies orchidotomy orchids orchiectomies orchiectomy orchiencephaloma orchiepididymitis orchil orchilla orchillas orchils orchilytic orchiocatabasis orchiocele orchiodynia orchiomyeloma orchioncus orchioneuralgia orchiopexy orchioplasty orchiorrhaphy orchioscheocele orchioscirrhus orchiotomy orchis orchises orchitic orchitis orchitises orchotomies orchotomy orcin orcine orcines orcinol orcinols orcins orcinus orcs orcus ord ordain ordainable ordained ordainer ordainers ordaining ordainment ordainments ordains ordalian ordalium ordaliums ordanchite ordeal ordeals ordene order orderable ordered orderedness orderer orderers ordering orderings orderless orderlessness orderlies orderliness orderlinesses orderly orders ordinability ordinable ordinaire ordinaires ordinal ordinally ordinals ordinance ordinances ordinand ordinands ordinant ordinants ordinar ordinariate ordinarier ordinaries ordinariest ordinarily ordinariness ordinarinesses ordinarius ordinars ordinary ordinaryship ordinate ordinated ordinately ordinates ordinating ordination ordinations ordinative ordinatomaculate ordinator ordinee ordinees ordines ordn ordnance ordnances ordo ordonnance ordonnances ordonnant ordos ordosite ordovician ords ordu ordure ordures ordurous ordurousness ore oread oreades oreads oreamnos orebodies orebody orecchion orecrowe orecrowed orecrowes orecrowing orectic orective orectolobidae orectolobus ored oregano oreganos oregon oregoni oregonian oregonians oreide oreides oreilet oreiller oreillet oreillette orejon orellin oreman oremus orenda orendite oreo oreodon oreodont oreodontine oreodontoid oreodonts oreographic oreographical oreographies oreography oreological oreologies oreologist oreologists oreology oreophasine oreopithecus oreopteris oreortyx oreotragine orepearch orepearched orepearches orepearching ores oreshoot orestes orestunck oretic oreweed oreweeds orewood orexin orexis orexises orf orfe orfes orfevrerie orfgild orfray orfrays orfs org orgal orgament orgamy organ organa organal organbird organdie organdies organdy organella organellae organelle organelles organer organette organic organical organically organicalness organicism organicismal organicisms organicist organicistic organicists organicities organicity organics organific organification organifier organify organing organisabilities organisability organisable organisation organisational organisationally organisationist organisations organise organised organiser organisers organises organising organism organismal organismic organismically organisms organist organistic organistrum organistrums organists organistship organities organity organizabilities organizability organizable organization organizational organizationally organizationist organizations organizatory organize organized organizer organizers organizes organizing organless organoantimony organoarsenic organobismuth organoboron organochlorine organochlorines organochordium organogel organogen organogeneses organogenesis organogenetic organogenetically organogenic organogenies organogenist organogeny organogold organogram organograms organographic organographical organographically organographies organographist organography organoid organoiron organolead organoleptic organoleptically organolithium organologic organological organologies organologist organologists organology organomagnesium organomercurial organomercurials organomercury organometallic organometallics organon organonomic organonomy organons organonym organonymal organonymic organonymy organonyn organopathy organophil organophile organophilic organophone organophonic organophosphate organophosphates organophosphorous organophosphorus organophosphoruses organophyly organoplastic organoscopy organosilicon organosiloxane organosilver organosodium organosol organotherapeutic organotherapeutics organotherapies organotherapy organotin organotrophic organotropic organotropically organotropism organotropisms organotropy organozinc organry organs organule organum organums organy organza organzas organzine organzined organzines orgasm orgasmed orgasmic orgasmically orgasming orgasms orgastic orgastically orgeat orgeats orgia orgiac orgiacs orgias orgiasm orgiast orgiastic orgiastical orgiastically orgiasts orgic orgies orgillous orgone orgones orgue orgueil orgues orguil orguinette orgulous orgulously orgy orgyia orhamwood orians oribatid oribatids oribi oribis oricalche oricalcheous oricalches orichalc orichalceous orichalch orichalcs orichalcum oriconic oricycle oriel orielled oriels oriencies oriency orient orientable oriental orientalia orientalisation orientalise orientalised orientalises orientalising orientalism orientalisms orientalist orientalists orientalities orientality orientalization orientalize orientalized orientalizes orientalizing orientally orientals orientate orientated orientates orientating orientation orientational orientationally orientations orientative orientator orientators oriented orienteer orienteered orienteering orienteerings orienteers orienter orienters orienting orientisation orientise orientite orientization orientize oriently orientness orients orifacial orifex orifexes orifice orifices orificial oriflamb oriflamme oriflammes oriform orig origami origamis origan origane origanes origanized origans origanum origanums origenist origin originable original originalism originalisms originalist originalists originalities originality originally originalness originals originant originarily originary originate originated originates originating origination originations originative originatively originator originators originatress origines originist origins orignal orihon orihyperbola orillion orillions orillon orinasal orinasality orinasally orinasals orinoco oriole orioles oriolidae oriolus orion orismologic orismological orismologies orismology orison orisons orisphere orissa oristic orites oriya orizaba orkey orl orlage orlando orle orlean orleanais orleanist orleans orleanses orles orlet orleways orlewise orlo orlon orlons orlop orlops orlos orly ormazd ormer ormers ormolu ormolus ormosia ormuzd ormuzine orna ornament ornamental ornamentalise ornamentalism ornamentalist ornamentality ornamentalize ornamentally ornamentals ornamentary ornamentation ornamentations ornamented ornamenter ornamenters ornamenting ornamentist ornamentists ornaments ornary ornate ornately ornateness ornatenesses ornater ornatest ornation ornature ornerier orneriest ornerily orneriness ornerinesses ornery ornes ornify ornis orniscopic orniscopist orniscopy ornises ornith ornithes ornithic ornithichnite ornithichnites ornithine ornithines ornithischia ornithischian ornithischians ornithivorous ornithobiographical ornithobiography ornithocephalic ornithocephalous ornithocoprolite ornithocopros ornithodelph ornithodelphian ornithodelphians ornithodelphic ornithodelphous ornithogalum ornithogalums ornithogeographic ornithogeographical ornithography ornithoid ornithol ornitholite ornitholitic ornithologic ornithological ornithologically ornithologies ornithologist ornithologists ornithology ornithomancies ornithomancy ornithomania ornithomantia ornithomantic ornithomantist ornithomimid ornithomimida ornithomorph ornithomorphic ornithomorphs ornithomyzous ornithon ornithophile ornithophilies ornithophilist ornithophilite ornithophilous ornithophily ornithophobia ornithophobias ornithopod ornithopoda ornithopods ornithopter ornithopters ornithorhynchidae ornithorhynchous ornithorhynchus ornithorhynchuses ornithosaur ornithosaurian ornithosaurs ornithoscelidan ornithoscopic ornithoscopies ornithoscopist ornithoscopy ornithoses ornithosis ornithotic ornithotomical ornithotomist ornithotomy ornithotrophy ornithuric ornithurous ornithvrous ornoite oroanal orobanchaceae orobanchaceous orobancheous orobathymetric orocentral orocratic orodiagnosis orogen orogeneses orogenesis orogenesy orogenetic orogenic orogenically orogenies orogens orogeny oroggaphical orograph orographic orographical orographically orographies orography oroheliograph orohippus orohydrographic orohydrographical orohydrography oroide oroides orolingual orological orologically orologies orologist orologists orology orometer orometers orometric orometry oronasal oronasally oronoco oronoko oronooko orontium oropesa oropesas oropharyngeal oropharynges oropharynx oropharynxes ororotund ororotundities ororotundity orotherapy orotund orotundities orotundity orotunds orphan orphanage orphanages orphancy orphandom orphaned orphange orphanhood orphanhoods orphaning orphanise orphanism orphanisms orphanize orphanry orphans orphanship orpharion orpharions orphean orpheon orpheonist orpheoreon orpheoreons orpheum orpheus orphic orphical orphically orphism orphisms orphrey orphreyed orphreys orpiment orpiments orpin orpinc orpine orpines orpington orpins orpit orra orreriec orreries orrery orrhoid orrhology orrhotherapy orrice orrices orris orrises orrisroot orrisroots orrow ors orsede orsedue orseille orseilles orseilline orsel orselle orseller orsellic orsellinate orsellinic ort ortalid ortalidian ortalis ortanique ortaniques orterde ortet orth orthal orthant orthantimonic orthian orthic orthicon orthiconoscope orthiconoscopes orthicons orthid orthite orthitic ortho orthoarsenite orthoaxes orthoaxis orthobenzoquinone orthobiosis orthoborate orthoborates orthoboric orthobrachycephalic orthocaine orthocaines orthocarbonic orthocarpous orthocenter orthocenters orthocentre orthocentres orthocentric orthocephalic orthocephalous orthocephaly orthoceracone orthoceras orthoceratite orthoceratitic orthoceratoid orthochlorite orthochorea orthochromatic orthochromatize orthoclase orthoclases orthoclasite orthoclastic orthocoumaric orthocousin orthocousins orthocresol orthocym orthocymene orthodiaene orthodiagonal orthodiagonals orthodiagram orthodiagraph orthodiagraphic orthodiagraphy orthodiazin orthodiazine orthodolichocephalic orthodomatic orthodome orthodontia orthodontias orthodontic orthodontically orthodontics orthodontist orthodontists orthodonture orthodox orthodoxal orthodoxality orthodoxally orthodoxes orthodoxian orthodoxical orthodoxically orthodoxicalness orthodoxies orthodoxism orthodoxist orthodoxly orthodoxness orthodoxy orthodromic orthodromics orthodromies orthodromy orthoepic orthoepical orthoepically orthoepies orthoepist orthoepistic orthoepists orthoepy orthoformic orthogamous orthogamy orthoganal orthogeneses orthogenesis orthogenetic orthogenetically orthogenic orthogenics orthognathic orthognathism orthognathisms orthognathous orthognathus orthognathy orthogneiss orthogonal orthogonalisation orthogonalise orthogonalised orthogonalises orthogonalising orthogonalities orthogonality orthogonalization orthogonalizations orthogonalize orthogonalized orthogonalizes orthogonalizing orthogonally orthogonial orthograde orthogranite orthograph orthographer orthographers orthographic orthographical orthographically orthographies orthographise orthographised orthographising orthographist orthographists orthographize orthographized orthographizing orthographs orthography orthohydrogen orthologer orthologian orthological orthology orthometopic orthometric orthometry orthomolecular orthomorphic orthomyxovirus orthomyxoviruses orthonitroaniline orthonormal orthonormality orthopaedia orthopaedic orthopaedical orthopaedically orthopaedics orthopaedies orthopaedist orthopaedists orthopaedy orthopath orthopathic orthopathically orthopathy orthopedia orthopedias orthopedic orthopedical orthopedically orthopedics orthopedies orthopedist orthopedists orthopedy orthophenylene orthophonic orthophony orthophoria orthophoric orthophosphate orthophosphates orthophosphoric orthophyre orthophyres orthophyric orthopinacoid orthopinacoidal orthopinakoid orthopinakoids orthoplastic orthoplasy orthoplumbate orthopnea orthopneic orthopnoea orthopnoeas orthopnoeic orthopod orthopods orthopraxes orthopraxia orthopraxies orthopraxis orthopraxy orthoprism orthoprisms orthopristis orthopsychiatric orthopsychiatrical orthopsychiatries orthopsychiatrist orthopsychiatrists orthopsychiatry orthopter orthoptera orthopteral orthopteran orthopterans orthopterist orthopterists orthopteroid orthopteroids orthopterological orthopterologies orthopterologist orthopterologists orthopterology orthopteron orthopterons orthopterous orthoptetera orthoptic orthoptics orthoptist orthoptists orthopyramid orthopyroxene orthoquinone orthorhombic orthorrhaphous orthorrhaphy orthos orthoscope orthoscopic orthose orthoselection orthosemidin orthosemidine orthoses orthosilicate orthosilicates orthosilicic orthosis orthosite orthosomatic orthospermous orthostat orthostatai orthostates orthostati orthostatic orthostichies orthostichous orthostichy orthostyle orthosubstituted orthosymmetric orthosymmetrical orthosymmetrically orthosymmetry orthotactic orthotectic orthotic orthotics orthotist orthotists orthotolidin orthotolidine orthotoluic orthotoluidin orthotoluidine orthotomic orthotomous orthotomus orthotone orthotoneses orthotonesis orthotonic orthotonus orthotopic orthotropal orthotropic orthotropically orthotropies orthotropism orthotropisms orthotropous orthotropy orthotype orthotypous orthovanadate orthovanadic orthoveratraldehyde orthoveratric orthoxazin orthoxazine orthoxylene orthron orthros orthroses ortiga ortive ortman ortolan ortolans orts ortstaler ortstein ortygan ortygine orudis oruvail orval orvals orvet orvietan orvietite orvieto orwell orwellian ory orycterope orycteropodidae orycteropus oryctics oryctognostic oryctognostical oryctognostically oryctognosy oryctolagus oryctologic oryctologies oryctologist oryctology oryssid oryx oryxes oryza oryzanin oryzanine oryzenin oryzivorous oryzomys oryzopsis orzo orzos os osage osages osaka osamin osamine osar osazone oscan oscar oscars oscella oscheal oscheitis oscheocarcinoma oscheocele oscheolith oscheoma oscheoncus oscheoplasty oscillance oscillancy oscillant oscillariaceous oscillate oscillated oscillates oscillating oscillation oscillational oscillations oscillative oscillatively oscillator oscillatoria oscillatoriaceae oscillatoriaceous oscillatorian oscillators oscillatory oscillogram oscillograms oscillograph oscillographic oscillographically oscillographies oscillographs oscillography oscillometer oscillometric oscillometries oscillometry oscilloscope oscilloscopes oscilloscopic oscilloscopically oscin oscine oscines oscinian oscinine oscitance oscitances oscitancies oscitancy oscitant oscitantly oscitate oscitated oscitates oscitating oscitation oscitations oscnode oscula osculable osculant oscular oscularity osculate osculated osculates osculating osculation osculations osculator osculatories osculatory osculatrix osculatrixes oscule oscules osculiferous osculum osculums oscurantist oscurrantist ose osela osella oselle oses osha oshac oshacs oshea osi osiandrian oside osier osiered osieries osierlike osiers osiery osirian osiris oslo osmanli osmanthus osmate osmateria osmaterium osmates osmatic osmatism osmazomatic osmazomatous osmazome osmeridae osmerus osmesis osmeteria osmeterium osmetic osmiamic osmiate osmiates osmic osmically osmics osmidroses osmidrosis osmin osmina osmious osmiridium osmiridiums osmite osmitrol osmium osmiums osmodysphoria osmogene osmograph osmol osmolagnia osmolal osmolalities osmolality osmolar osmolarities osmolarity osmole osmoles osmology osmols osmometer osmometers osmometric osmometrically osmometries osmometry osmond osmondite osmophobia osmophore osmoregulation osmoregulations osmoregulatory osmoscope osmose osmosed osmoses osmosing osmosis osmotactic osmotaxis osmotherapy osmotic osmotically osmous osmund osmunda osmundaceae osmundaceous osmundas osmundine osmunds osnaburg osnaburgs osoberries osoberry osone osophies osophone osophy osotriazine osotriazole osperm osphere osphradia osphradial osphradium osphresiolagnia osphresiologic osphresiologist osphresiology osphresiometer osphresiometry osphresiophilia osphresis osphretic osphyalgia osphyalgic osphyarthritis osphyitis osphyocele osphyomelitis ospore osprey ospreys ossa ossal ossarium ossariums ossature ossatures osse ossea ossein osseins osselet osselets ossements osseoalbuminoid osseoaponeurotic osseocartilaginous osseofibrous osseomucoid osseous osseously osset ossete osseter osseters ossetic ossia ossianic ossicle ossicles ossicula ossicular ossiculate ossiculated ossicule ossiculectomy ossiculotomy ossiculum ossiferous ossific ossification ossifications ossificatory ossified ossifier ossifiers ossifies ossifluence ossifluent ossiform ossifraga ossifragas ossifrage ossifrages ossifrangent ossify ossifying ossivorous ossuaries ossuarium ossuary ossypite ostalgia ostariophysan ostariophysi ostariophysial ostariophysous ostarthritis osteal ostealgia osteanabrosis osteanagenesis ostearthritis ostearthrotomy ostectomies ostectomy osteectomies osteectomy osteectopia osteectopy osteichthyes ostein osteites osteitic osteitides osteitis osteitises ostemia ostempyesis ostend ostensibilities ostensibility ostensible ostensibly ostension ostensive ostensively ostensoria ostensories ostensorium ostensorsoria ostensory ostent ostentate ostentation ostentations ostentatious ostentatiously ostentatiousness ostentatiousnesses ostentive ostentous ostents osteoaneurysm osteoarthritic osteoarthritides osteoarthritis osteoarthritises osteoarthropathy osteoarthroses osteoarthrosis osteoarthrotomy osteoblast osteoblastic osteoblastoma osteoblasts osteocachetic osteocarcinoma osteocartilaginous osteocele osteocephaloma osteochondritis osteochondrofibroma osteochondroma osteochondromatous osteochondropathy osteochondrophyte osteochondrosarcoma osteochondrous osteoclases osteoclasia osteoclasis osteoclast osteoclastic osteoclasts osteoclasty osteocolla osteocollas osteocomma osteocranium osteocystoma osteocyte osteocytes osteodentin osteodentinal osteodentine osteoderm osteodermal osteodermatous osteodermia osteodermic osteodermis osteodermous osteoderms osteodiastasis osteodynia osteodystrophy osteoencephaloma osteoenchondroma osteoepiphysis osteofibroma osteofibrous osteogangrene osteogen osteogeneses osteogenesis osteogenetic osteogenic osteogenies osteogenist osteogenous osteogens osteogeny osteoglossid osteoglossidae osteoglossoid osteographer osteographies osteography osteohalisteresis osteoid osteoids osteolite osteologer osteologic osteological osteologically osteologies osteologist osteologists osteology osteolysis osteolytic osteoma osteomalacia osteomalacial osteomalacias osteomalacic osteomancy osteomanty osteomas osteomata osteomatoid osteome osteomere osteometric osteometrical osteometry osteomyelitides osteomyelitis osteomyelitises osteoncus osteonecrosis osteoneuralgia osteopaedion osteopath osteopathic osteopathically osteopathies osteopathist osteopathists osteopaths osteopathy osteopedion osteopenia osteoperiosteal osteoperiostitis osteopetroses osteopetrosis osteophage osteophagia osteophlebitis osteophone osteophony osteophore osteophyma osteophyte osteophytes osteophytic osteoplaque osteoplast osteoplastic osteoplasties osteoplasty osteoporoses osteoporosis osteoporotic osteorrhaphy osteosarcoma osteosarcomas osteosarcomata osteosarcomatous osteoscleroses osteosclerosis osteosclerotic osteoscope osteoses osteosis osteosises osteosteatoma osteostixis osteostomatous osteostomous osteostracan osteostraci osteosuture osteosynovitis osteosynthesis osteothrombosis osteotome osteotomes osteotomies osteotomist osteotomists osteotomy osteotribe osteotrite osteotrophic osteotrophy osteria ostia ostial ostiaries ostiarius ostiary ostiate ostinati ostinato ostinatos ostiolar ostiolate ostiolates ostiole ostioles ostitis ostium ostler ostleress ostleresses ostlerie ostlers ostmark ostmarks ostmen ostomate ostomates ostomatid ostomies ostomy ostoses ostosis ostosises ostraca ostracean ostraceous ostraciidae ostracine ostracioid ostracion ostracisable ostracisation ostracise ostracised ostraciser ostracises ostracising ostracism ostracisms ostracite ostracizable ostracization ostracize ostracized ostracizer ostracizes ostracizing ostracod ostracoda ostracodan ostracode ostracoderm ostracodermi ostracoderms ostracodes ostracodous ostracods ostracoid ostracon ostracophore ostracophorous ostracum ostraite ostraka ostrakon ostrakons ostrca ostrea ostreaceous ostreger ostregers ostreicultural ostreiculture ostreicultures ostreiculturist ostreiculturists ostreidae ostreiform ostreodynamometer ostreoid ostreophage ostreophages ostreophagies ostreophagist ostreophagous ostreophagy ostrich ostriches ostrichism ostrichisms ostrichlike ostringer ostrogoth ostrya ostryopsis ostsis ostsises ostyak osullivan oswego ot otacoustic otacousticon otacust otaku otalgia otalgias otalgic otalgies otalgy otaria otarian otaries otariidae otariine otarine otarioid otary otate otc otectomy otelcosis othaematoma othelcosis othello othematoma othematomata othemorrhea otheoscope other otherdom otherest othergates otherguess otherguise otherhow otherism otherist otherness othernesses others othersome othertime othertimes otherwards otherways otherwhence otherwhere otherwhereness otherwheres otherwhile otherwhiles otherwhither otherwise otherwiseness otherworld otherworldish otherworldliness otherworldlinesses otherworldly otherworldness otherworlds othman othmany othonna othygroma otiant otiatric otiatrics otiatry otic oticodinia otides otidia otididae otidiform otidine otidium otiorhynchid otiose otiosely otioseness otiosenesses otiosities otiosity otis otitic otitides otitis otitises otium otkon oto otoantritis otoblennorrhea otocariasis otocephalic otocephaly otocerebritis otocleisis otoconia otoconial otoconite otoconium otocrane otocranial otocranic otocranium otocyst otocystic otocysts otodynia otodynic otoe otoencephalitis otoganglion otogenic otogenous otographical otography otohemineurasthenia otolaryngologic otolaryngological otolaryngologies otolaryngologist otolaryngologists otolaryngology otolite otolith otolithic otoliths otolitic otologic otological otologically otologies otologist otologists otology otomassage otomucormycosis otomyces otomycosis otonecrectomy otoneuralgia otoneurasthenia otoneurology otopathic otopathicetc otopathy otopharyngeal otophone otopiesis otoplastic otoplasty otopolypus otopyorrhea otopyosis otorhinolaryngologic otorhinolaryngological otorhinolaryngologies otorhinolaryngologist otorhinolaryngologists otorhinolaryngology otorrhagia otorrhea otorrhoea otorrhoeas otosalpinx otoscleroses otosclerosis otosclerotic otoscope otoscopes otoscopic otoscopies otoscopy otosis otosphenal otosteal otosteon ototoi ototomy ototoxic ototoxicities ototoxicity ottajanite ottar ottars ottava ottavarima ottavas ottave ottavino ottavinos ottawa ottawas otter ottered otterer otterhound otterhounds ottering otters ottetto ottinger ottingkar otto ottoman ottomans ottomite ottos ottrelife ottrelite ottrelites ottroye oturia otus otxi ou ouabain ouabains ouabaio ouabe ouachita ouachitite ouakari ouakaris ouananiche ouanga oubit oubits oubliance oubliet oubliette oubliettes ouch ouched ouches ouching oucht ouchts oud oudenarde oudenodont ouds ouenite ouf oufought ougamy ougenetic ough oughlied oughlies oughly oughlying ought oughted oughting oughtlings oughtlins oughtness oughtnesses oughtnt oughts ouglie ouglied ouglieing ouglies ouguiya ouguiyas oui ouija ouijas ouistiti ouistitis ouk oukia oukinetic ouks oulachon oulachons oulakan oulakans oulap ould oulder ouldest oulitic oulk oulks oulogical oulong oulongs ounce ounces ounding ounds oundy oup ouped ouph ouphe ouphes ouphish ouphoric ouphs ouphytic ouping oups our ourali ouralis ouranophobia ouranopithecus ouranos ourari ouraris ourebi ourebis ouricury ourie ourier ouriest ourn ouroboros ouroboroses ourologic ourological ourologies ourologist ourologists ourology ouroscopic ouroscopies ouroscopist ouroscopists ouroscopy ouroub ours oursel ourself oursels ourselves ous ousel ousels ousia ousporic oust ousted oustee ouster ousters ousting oustiti oustitis ousts out outa outachieve outachieved outachieves outachieving outact outacted outacting outacts outadd outadded outadding outadds outadmiral outage outages outambush outarde outargue outargued outargues outarguing outas outasight outask outasked outasking outasks outate outawe outawed outawing outbabble outbabbled outbabbling outback outbacker outbackers outbacks outbade outbake outbaked outbakes outbaking outbalance outbalanced outbalances outbalancing outban outbanned outbanning outbanter outbar outbargain outbargained outbargaining outbargains outbark outbarked outbarking outbarks outbarred outbarring outbars outbarter outbat outbatted outbatter outbatting outbawl outbawled outbawling outbawls outbbled outbbred outbeam outbeamed outbeaming outbeams outbear outbearing outbeg outbeggar outbegged outbegging outbegs outbelch outbellow outbend outbending outbent outbetter outbid outbidden outbidder outbidding outbids outbirth outbitch outbitched outbitches outbitching outblacken outblaze outblazed outblazes outblazing outbleat outbleated outbleating outbleats outbled outbleed outbleeding outbless outblessed outblesses outblessing outblew outbloom outbloomed outblooming outblooms outblossom outblot outblotted outblotting outblow outblowing outblown outbluff outbluffed outbluffing outbluffs outblunder outblush outblushed outblushes outblushing outbluster outblustered outblustering outblusters outboard outboards outboast outboasted outboasting outboasts outbolting outbond outbook outbore outborn outborne outborough outbought outbound outboundaries outbounds outbow outbowed outbowl outbox outboxed outboxes outboxing outbrag outbragged outbragging outbrags outbraid outbranch outbranching outbrave outbraved outbraves outbraving outbrawl outbrawled outbrawling outbrawls outbray outbrazen outbreak outbreaker outbreaking outbreaks outbreath outbreathe outbreathed outbreather outbreathes outbreathing outbred outbreed outbreeding outbreedings outbreeds outbribe outbribed outbribes outbribing outbridge outbridged outbridging outbring outbringing outbroke outbroken outbrother outbrought outbud outbudded outbudding outbuild outbuilding outbuildings outbuilds outbuilt outbulge outbulged outbulges outbulging outbulk outbulked outbulking outbulks outbullied outbullies outbully outbullying outburn outburned outburning outburns outburnt outburst outbursting outbursts outbustle outbustled outbustling outbuy outbuying outbuys outbuzz outby outbye outcall outcalls outcame outcant outcaper outcapered outcapering outcapers outcarol outcaroled outcaroling outcarry outcase outcast outcaste outcasted outcastes outcasting outcastness outcasts outcatch outcatches outcatching outcaught outcavil outcaviled outcaviling outcavilled outcavilling outcavils outcept outchamber outcharge outcharged outcharges outcharging outcharm outcharmed outcharming outcharms outchase outchased outchasing outchatter outcheat outcheated outcheating outcheats outchid outchidden outchide outchided outchides outchiding outcities outcity outclamor outclamour outclass outclassed outclasses outclassing outclerk outclimb outclimbed outclimbing outclimbs outclomb outcoach outcoached outcoaches outcoaching outcome outcomer outcomes outcoming outcompass outcompete outcompeted outcompetes outcompeting outcomplete outcompliment outcook outcooked outcooking outcooks outcorner outcount outcounted outcounting outcountry outcounts outcourt outcraftied outcrafties outcrafty outcraftying outcrawl outcrawled outcrawling outcrawls outcreep outcreeping outcrept outcricket outcried outcrier outcries outcrop outcropped outcropper outcropping outcroppings outcrops outcross outcrossed outcrosses outcrossing outcrossings outcrow outcrowd outcrowded outcrowding outcrowds outcrowed outcrowing outcrows outcry outcrying outcull outcure outcured outcuring outcurse outcursed outcurses outcursing outcurve outcurved outcurves outcurving outcut outcutting outdacious outdaciousness outdance outdanced outdances outdancing outdare outdared outdares outdaring outdate outdated outdatedly outdatedness outdatednesses outdates outdating outdazzle outdazzled outdazzles outdazzling outdebate outdebated outdebates outdebating outdeliver outdelivered outdelivering outdelivers outdesign outdesigned outdesigning outdesigns outdespatch outdevil outdeviled outdeviling outdid outdispatch outdistance outdistanced outdistances outdistancing outdistrict outdo outdodge outdodged outdodges outdodging outdoer outdoers outdoes outdoing outdone outdoor outdoorness outdoors outdoorsman outdoorsmanship outdoorsmanships outdoorsmen outdoorswoman outdoorswomen outdoorsy outdraft outdrag outdragged outdragging outdragon outdrags outdrank outdraught outdraw outdrawing outdrawn outdraws outdream outdreamed outdreaming outdreams outdreamt outdress outdressed outdresses outdressing outdrew outdrink outdrinking outdrinks outdrive outdriven outdrives outdriving outdrop outdropped outdropping outdrops outdrove outdrunk outduel outdueled outdueling outduelled outduelling outduels outdure outdured outdures outduring outdwell outdwelled outdweller outdwelling outdwells outdwelt outearn outearned outearning outearns outeat outeate outeaten outeating outeats outecho outechoed outechoes outechoing outechos outed outedge outedged outedges outedging outen outequivocate outequivocated outequivocating outer outercoat outercoats outercourse outercourses outerly outermost outerness outers outerwear outerwears outeye outeyed outfable outfabled outfables outfabling outface outfaced outfaces outfacing outfall outfalls outfame outfamed outfaming outfangthief outfangthiefs outfast outfasted outfasting outfasts outfawn outfawned outfawning outfawns outfeast outfeasted outfeasting outfeasts outfeat outfed outfeed outfeeding outfeel outfeeling outfeels outfelt outfence outfenced outfences outfencing outferret outffed outfiction outfield outfielded outfielder outfielders outfielding outfields outfieldsman outfieldsmen outfight outfighter outfighting outfights outfigure outfigured outfigures outfiguring outfind outfinding outfinds outfire outfired outfires outfiring outfish outfished outfishes outfishing outfit outfits outfitted outfitter outfitters outfitting outfittings outflame outflamed outflaming outflank outflanked outflanker outflanking outflanks outflare outflared outflaring outflash outflashed outflashes outflashing outflatter outfled outflee outfleeing outflew outflies outfling outflinging outflings outfloat outfloated outfloating outfloats outflourish outflow outflowed outflowing outflowings outflown outflows outflue outflung outflunky outflush outflushed outflushes outflushing outflux outfly outflying outfold outfool outfooled outfooling outfools outfoot outfooted outfooting outfoots outform outfort outforth outfought outfound outfox outfoxed outfoxes outfoxing outfreeman outfront outfroth outfrown outfrowned outfrowning outfrowns outfumble outfumbled outfumbles outfumbling outgabble outgabbled outgabbling outgain outgained outgaining outgains outgallop outgamble outgambled outgambling outgame outgamed outgaming outgang outgarment outgarth outgas outgases outgassed outgasses outgassing outgassings outgate outgates outgauge outgave outgaze outgazed outgazes outgazing outgeneral outgeneraled outgeneraling outgeneralled outgeneralling outgenerals outgive outgiven outgives outgiving outgivings outglad outglare outglared outglares outglaring outgleam outgleamed outgleaming outgleams outglitter outglittered outglittering outglitters outgloom outglow outglowed outglowing outglows outgnaw outgnawed outgnawing outgnawn outgnaws outgo outgoer outgoers outgoes outgoing outgoingness outgoingnesses outgoings outgone outgreen outgrew outgrin outgrinned outgrinning outgrins outgross outgrossed outgrosses outgrossing outground outgroup outgroups outgrow outgrowing outgrown outgrows outgrowth outgrowths outguard outguards outguess outguessed outguesses outguessing outguide outguided outguides outguiding outgun outgunned outgunning outguns outgush outgushed outgushes outgushing outhammer outhasten outhaul outhauler outhaulers outhauls outhear outheard outhearing outhears outheart outhector outheel outher outhire outhired outhires outhiring outhiss outhit outhits outhitting outhold outhomer outhomered outhomering outhomers outhorn outhorror outhouse outhouses outhousing outhowl outhowled outhowling outhowls outhue outhumor outhumored outhumoring outhumors outhumour outhumoured outhumouring outhumours outhunt outhunted outhunting outhunts outhurl outhustle outhustled outhustles outhustling outhut outhymn outhyperbolise outhyperbolize outhyperbolized outhyperbolizing outhyre outhyred outhyres outhyring outimage outing outings outintrigue outintrigued outintrigues outintriguing outinvent outish outissue outissued outissuing outjazz outjest outjested outjesting outjests outjet outjets outjetted outjetting outjettings outjinx outjinxed outjinxes outjinxing outjockey outjockeyed outjockeying outjockeys outjourney outjourneyed outjourneying outjuggle outjuggled outjuggling outjump outjumped outjumping outjumps outjut outjuts outjutted outjutting outjuttings outkeep outkeeper outkeeping outkeeps outkept outkick outkicked outkicking outkicks outkill outkilled outkilling outkills outking outkiss outkissed outkisses outkissing outkitchen outknave outknee outlabor outlabour outlaid outlain outlance outlanced outlancing outland outlander outlanders outlandish outlandishlike outlandishly outlandishness outlandishnesses outlands outlash outlashes outlast outlasted outlasting outlasts outlaugh outlaughed outlaughing outlaughs outlaunce outlaunced outlaunces outlaunch outlaunched outlaunches outlaunching outlauncing outlaw outlawed outlawing outlawries outlawry outlaws outlay outlaying outlays outlead outleading outleads outlean outleap outleaped outleaping outleaps outleapt outlearn outlearned outlearning outlearns outlearnt outled outlegend outlength outlengthen outler outlers outlet outlets outlie outlied outlier outliers outlies outligger outlighten outlimb outlimn outline outlinear outlined outlineless outliner outliners outlines outlinger outlining outlip outlipped outlipping outlive outlived outliver outlivers outlives outliving outlled outlodging outlodgings outlook outlooked outlooker outlooking outlooks outlope outlord outlot outlove outloved outloves outloving outlung outluster outlustre outlustred outlustres outlustring outly outlying outmagic outmalaprop outmalapropped outmalapropping outman outmaneuver outmaneuvered outmaneuvering outmaneuvers outmaneuvre outmanipulate outmanipulated outmanipulates outmanipulating outmanned outmanning outmanoeuvered outmanoeuvering outmanoeuvre outmanoeuvred outmanoeuvres outmanoeuvring outmans outmantle outmantled outmantles outmantling outmarch outmarched outmarches outmarching outmarriage outmarriages outmarried outmarry outmarrying outmaster outmatch outmatched outmatches outmatching outmate outmated outmating outmeasure outmeasured outmeasures outmeasuring outmen outmerchant outmiracle outmode outmoded outmodes outmoding outmost outmount outmouth outmove outmoved outmoves outmoving outmuscle outmuscled outmuscles outmuscling outname outnamed outnames outnaming outness outnesses outnight outnighted outnighting outnights outnoise outnook outnumber outnumbered outnumbering outnumbers outoffice outorganize outorganized outorganizes outorganizing outoven outpace outpaced outpaces outpacing outpage outpaint outpainted outpainting outpaints outparagon outparamour outparish outparishes outpart outparts outpass outpassed outpasses outpassing outpassion outpassioned outpassioning outpassions outpath outpatient outpatients outpay outpayment outpeal outpeep outpeeped outpeeping outpeeps outpeer outpeered outpeering outpeers outpension outpensioner outpeople outpeopled outpeopling outperform outperformed outperforming outperforms outpick outpicket outpipe outpiped outpiping outpitch outpitched outpitches outpitching outpitied outpities outpity outpitying outplace outplaced outplacement outplacements outplacer outplacers outplaces outplacing outplan outplanned outplanning outplans outplay outplayed outplaying outplays outplease outpleased outpleasing outplod outplodded outplodding outplods outplot outplots outplotted outplotting outpocketing outpoint outpointed outpointing outpoints outpoise outpoison outpolitick outpoliticked outpoliticking outpoliticks outpoll outpolled outpolling outpolls outpomp outpop outpopped outpopping outpopulate outpopulated outpopulates outpopulating outporch outport outporter outportion outports outpost outposts outpouching outpour outpoured outpourer outpourers outpouring outpourings outpours outpower outpowered outpowering outpowers outpractice outpracticed outpracticing outpraise outpraised outpraising outpray outprayed outpraying outprays outpreach outpreached outpreaches outpreaching outpreen outpreened outpreening outpreens outpress outpressed outpresses outpressing outprice outpriced outprices outpricing outpried outprize outprized outprizes outprizing outprodigy outproduce outproduced outproduces outproducing outpromise outpromised outpromises outpromising outpry outprying outpull outpulled outpulling outpulls outpunch outpunched outpunches outpunching outpupil outpupils outpurl outpurse outpursue outpursued outpursuing outpush outpushed outpushes outpushing output outputs outputted outputter outputting outquaff outquarters outqueen outqueried outquery outquerying outquestion outquibble outquibbled outquibbling outquibled outquibling outquote outquoted outquotes outquoting outr outra outrace outraced outraces outracing outrage outraged outragely outrageous outrageously outrageousness outrageousnesses outrageproof outrager outrages outraging outraigne outraigned outraignes outraigning outrail outraise outraised outraises outraising outrake outran outrance outrances outrang outrange outranged outranges outranging outrank outranked outranking outranks outrant outrap outrapped outrapping outrate outrated outrates outrating outraught outrave outraved outraves outraving outray outraze outre outreach outreached outreaches outreaching outread outreading outreads outreason outreasoned outreasoning outreasons outrebound outrebounded outrebounding outrebounds outreckon outrecuidance outrecuidances outred outredded outredden outreddened outreddening outreddens outredding outrede outreds outregeous outregeously outreign outreigned outreigning outreigns outrelief outreliefs outremer outremers outreness outreproduce outreproduced outreproduces outreproducing outrhyme outrhymed outrhyming outrib outribbed outribbing outrick outridden outride outrider outriders outrides outriding outrig outrigged outrigger outriggered outriggerless outriggers outrigging outright outrightly outrightness outrightnesses outrigs outring outringing outrings outrival outrivaled outrivaling outrivalled outrivalling outrivals outrive outroad outroar outroared outroaring outroars outrock outrocked outrocking outrocks outrode outrogue outrogued outroguing outroll outrolled outrolling outrolls outromance outromanced outromancing outroop outrooper outroopers outroops outroot outrooted outrooting outroots outrope outroper outropers outropes outrove outroved outroving outrow outrowed outrowing outrows outroyal outrun outrung outrunner outrunners outrunning outruns outrush outrushed outrushes outrushing outré outs outsaid outsail outsailed outsailing outsails outsaint outsallied outsally outsallying outsang outsat outsatisfied outsatisfy outsatisfying outsavor outsavored outsavoring outsavors outsavour outsavouring outsavours outsaw outsay outsaying outsays outscape outscent outscheme outschemed outschemes outscheming outscold outscolded outscolding outscolds outscoop outscooped outscooping outscoops outscore outscored outscores outscoring outscorn outscorned outscorning outscorns outscour outscouring outscout outscream outsea outseam outsearch outsee outseeing outseek outseeking outseen outsees outsell outselling outsells outsend outsentinel outsentries outsentry outsert outserts outservant outserve outserved outserves outserving outset outsets outsetting outsettings outsettlement outsettlements outsettler outshadow outshake outshame outshamed outshames outshaming outshape outshaped outshaping outsharp outsharpen outsheathe outshift outshifts outshine outshined outshiner outshines outshining outshone outshoot outshooting outshoots outshot outshots outshoulder outshout outshouted outshouting outshouts outshove outshoved outshoving outshow outshowed outshower outshown outshriek outshrill outshut outside outsided outsidedness outsideness outsider outsiderness outsidernesses outsiders outsides outsift outsigh outsight outsights outsin outsing outsinging outsings outsinned outsinning outsins outsit outsits outsitting outsize outsized outsizes outskate outskated outskates outskating outskill outskip outskipped outskipping outskirmish outskirmisher outskirt outskirter outskirts outslander outslang outsleep outsleeping outsleeps outslept outslick outslicked outslicking outslicks outslid outslide outsling outslink outslip outsmart outsmarted outsmarting outsmarts outsmell outsmelled outsmelling outsmells outsmelt outsmile outsmiled outsmiles outsmiling outsmoke outsmoked outsmokes outsmoking outsnatch outsnore outsnored outsnores outsnoring outsoar outsoared outsoaring outsoars outsold outsole outsoler outsoles outsonet outsonnet outsophisticate outsophisticated outsophisticating outsought outsound outsource outsourced outsources outsourcing outsourcings outspan outspanned outspanning outspans outsparkle outsparkled outsparkles outsparkling outsparspied outsparspinned outsparspinning outsparsprued outsparspruing outsparspying outspat outspeak outspeaker outspeaking outspeaks outspeckle outspeckles outsped outspeech outspeed outspeeded outspeeding outspeeds outspell outspelled outspelling outspells outspelt outspend outspending outspends outspent outspied outspill outspin outspinned outspinning outspirit outspit outsplendor outsplendour outspoke outspoken outspokenly outspokenness outspokennesses outsport outsported outsporting outsports outspout outsprang outspread outspreading outspreads outspring outspringing outsprings outsprint outsprinted outsprinting outsprints outsprue outsprued outspruing outsprung outspue outspurn outspurt outspy outspying outstagger outstaid outstair outstand outstander outstanding outstandingly outstandingness outstandings outstands outstank outstare outstared outstares outstaring outstart outstarted outstarter outstarting outstartle outstartled outstartling outstarts outstate outstated outstater outstates outstating outstation outstations outstatistic outstature outstatured outstaturing outstay outstayed outstaying outstays outsteal outstealing outsteam outsteer outsteered outsteering outsteers outstep outstepped outstepping outsteps outsting outstinging outstink outstole outstolen outstood outstorm outstrain outstrained outstraining outstrains outstream outstreet outstretch outstretched outstretcher outstretches outstretching outstridden outstride outstrides outstriding outstrike outstrikes outstriking outstrip outstripped outstripping outstrips outstript outstrive outstriven outstriving outstrode outstroke outstrokes outstrove outstruck outstrut outstrutted outstrutting outstudent outstudied outstudies outstudy outstudying outstung outstunt outstunted outstunting outstunts outsubtle outsuck outsucken outsuffer outsuitor outsulk outsulked outsulking outsulks outsum outsummed outsumming outsums outsung outsuperstition outswagger outswam outsware outswarm outswear outswearing outswears outsweep outsweeping outsweepings outsweeps outsweeten outsweetened outsweetening outsweetens outswell outswelled outswelling outswells outswept outswift outswim outswimming outswims outswindle outswindled outswindling outswing outswinger outswingers outswinging outswings outswirl outswollen outswore outsworn outswum outswung outta outtake outtaken outtakes outtaking outtalent outtalk outtalked outtalking outtalks outtask outtasked outtasking outtasks outtaste outtear outtearing outtease outteased outteasing outtell outtelling outtells outthank outthanked outthanking outthanks outthieve outthieved outthieving outthink outthinking outthinks outthought outthreaten outthrew outthrob outthrobbed outthrobbing outthrobs outthrough outthrow outthrowing outthrown outthrows outthrust outthruster outthrusting outthrusts outthunder outthwack outtinkle outtinkled outtinkling outtire outtired outtiring outtoil outtold outtongue outtongued outtongues outtonguing outtook outtop outtopped outtopping outtops outtore outtorn outtower outtowered outtowering outtowers outtrade outtraded outtrades outtrading outtrail outtravel outtraveled outtraveling outtravelled outtravelling outtravels outtrick outtricked outtricking outtricks outtrot outtrots outtrotted outtrotting outtrump outtrumped outtrumping outtrumps outttore outttorn outturn outturned outturns outtwine outtyrannise outtyrannize outtyrannized outtyrannizing outusure outvalue outvalued outvalues outvaluing outvanish outvaunt outvaunted outvaunting outvaunts outvelvet outvenom outvenomed outvenoming outvenoms outvictor outvie outvied outvier outvies outvigil outvillage outvillain outvillained outvillaining outvillains outvociferate outvociferated outvociferating outvoice outvoiced outvoices outvoicing outvote outvoted outvoter outvoters outvotes outvoting outvoyage outvoyaged outvoyaging outvying outwait outwaited outwaiting outwaits outwake outwale outwalk outwalked outwalking outwalks outwall outwallop outwander outwar outwarble outwarbled outwarbling outward outwardly outwardmost outwardness outwardnesses outwards outwardsoutwarred outwarred outwarring outwars outwash outwashes outwaste outwasted outwastes outwasting outwatch outwatched outwatches outwatching outwater outwave outwaved outwaving outway outwealth outweapon outweaponed outwear outwearied outwearies outwearing outwears outweary outwearying outweave outweaving outweed outweeded outweeding outweeds outweep outweeping outweeps outweigh outweighed outweighing outweighs outweight outwell outwelled outwelling outwells outwent outwept outwhirl outwhirled outwhirling outwhirls outwick outwicked outwicking outwicks outwiggle outwiggled outwiggling outwile outwiled outwiles outwiling outwill outwilled outwilling outwills outwin outwind outwinded outwinding outwindow outwinds outwing outwinged outwinging outwings outwinning outwins outwish outwished outwishes outwishing outwit outwith outwits outwittal outwitted outwitter outwitting outwoe outwoman outwon outwood outword outwore outwork outworked outworker outworkers outworking outworks outworld outworn outworth outworthed outworthing outworths outwound outwove outwoven outwrangle outwrangled outwrangling outwrench outwrest outwrested outwresting outwrestle outwrestled outwrestles outwrestling outwrests outwriggle outwriggled outwriggling outwring outwringing outwrit outwrite outwrites outwriting outwritten outwrote outwrought outwrung outwwept outwwove outwwoven outyard outyear outyears outyell outyelled outyelling outyells outyelp outyelped outyelping outyelps outyield outyielded outyielding outyields outzany ouvert ouverte ouvirandra ouvirandras ouvrage ouvre ouvrier ouvriere ouvrieres ouvriers ouvrière ouvrières ouyezd ouze ouzel ouzels ouzo ouzos ova oval ovalbumen ovalbumin ovalbumins ovalescent ovaliform ovalipes ovalisation ovalise ovalish ovalities ovality ovalization ovalize ovally ovalness ovalnesses ovaloid ovals ovalwise ovant ovaria ovarial ovarian ovariectomies ovariectomised ovariectomize ovariectomized ovariectomizing ovariectomy ovaries ovarin ovarioabdominal ovariocele ovariocentesis ovariocyesis ovariodysneuria ovariohysterectomy ovariole ovarioles ovariolumbar ovariorrhexis ovariosalpingectomy ovariosteresis ovariostomy ovariotomies ovariotomist ovariotomists ovariotomize ovariotomy ovariotubal ovarious ovaritides ovaritis ovaritises ovarium ovary ovate ovateconical ovated ovately ovates ovating ovation ovational ovationary ovations ovatoacuminate ovatoconical ovatocordate ovatocylindraceous ovatodeltoid ovatoellipsoidal ovatoglobose ovatolanceolate ovatooblong ovatoorbicular ovatopyriform ovatoquadrangular ovator ovatorotundate ovators ovatoserrate ovatotriangular oven ovenable ovenbake ovenbird ovenbirds ovendry ovened ovenful ovening ovenlike ovenly ovenman ovenmen ovenpeel ovenproof ovens ovensman ovenstone ovenware ovenwares ovenwise ovenwood ovenwoods over overability overable overably overabound overabounded overabounding overabounds overabsorb overabsorption overabstain overabstemious overabstemiously overabstemiousness overabstract overabstracted overabstracting overabstracts overabundance overabundances overabundant overabundantly overabuse overabused overabusing overabusive overabusively overabusiveness overaccelerate overaccelerated overaccelerating overacceleration overaccentuate overaccentuated overaccentuates overaccentuating overaccentuation overacceptance overacceptances overaccumulate overaccumulated overaccumulating overaccumulation overaccuracy overaccurate overaccurately overachieve overachieved overachievement overachievements overachiever overachievers overachieves overachieving overacidity overact overacted overacting overaction overactions overactivate overactivated overactivating overactive overactiveness overactivities overactivity overacts overacute overacutely overacuteness overaddiction overadjustment overadjustments overadorn overadorned overadornment overadvance overadvanced overadvancing overadvertise overadvertised overadvertises overadvertising overadvice overaffect overaffected overaffirm overaffirmation overaffirmative overaffirmatively overaffirmativeness overafflict overaffliction overage overaged overageness overages overaggravate overaggravated overaggravating overaggravation overaggresive overaggressive overaggressively overaggressiveness overaggressivenesses overagitate overagitated overagitating overagitation overagonise overagonize overalcoholize overalcoholized overalcoholizing overalert overall overalled overallegiance overallegorize overallegorized overallegorizing overallocation overalls overambition overambitioned overambitious overambitiously overambitiousness overambitiousnesses overambling overamplified overamplifies overamplify overamplifying overanalyse overanalyses overanalysis overanalytical overanalytically overanalyze overanalyzed overanalyzely overanalyzes overanalyzing overangelic overangry overanimated overanimatedly overanimation overannotate overannotated overannotating overanswer overanxieties overanxiety overanxious overanxiously overanxiousness overapologetic overappareled overapplaud overapplication overapplications overappraisal overappraise overappraised overappraising overappreciation overappreciative overappreciatively overappreciativeness overapprehended overapprehension overapprehensive overapprehensively overapprehensiveness overapt overaptly overaptness overarch overarched overarches overarching overarchingly overargue overargued overarguing overargumentative overargumentatively overargumentativeness overarm overarmed overarming overarms overarousal overarousals overarouse overaroused overarouses overarousing overarrange overarranged overarranges overarranging overarticulate overarticulated overarticulates overarticulating overartificial overartificiality overartificially overassail overassert overasserted overasserting overassertion overassertions overassertive overassertively overassertiveness overassertivenesses overasserts overassess overassessed overassesses overassessing overassessment overassessments overassume overassumed overassuming overassumption overassumptive overassumptively overassured overassuredly overassuredness overate overattached overattachment overattention overattentions overattentive overattentively overattentiveness overattenuate overattenuated overattenuating overawe overawed overawes overawful overawing overawn overawning overbade overbait overbake overbaked overbakes overbaking overbalance overbalanced overbalances overbalancing overballast overbalm overbanded overbandy overbank overbanked overbar overbarish overbark overbarren overbarrenness overbase overbaseness overbashful overbashfully overbashfulness overbattle overbbore overbborne overbbred overbear overbearance overbearer overbearing overbearingly overbearingness overbearingnesses overbears overbeat overbeaten overbeating overbeats overbed overbeetling overbejeweled overbelief overbend overbepatched overberg overbet overbets overbetted overbetting overbias overbid overbidden overbidder overbidders overbidding overbiddings overbide overbids overbig overbigness overbill overbilled overbilling overbillow overbills overbit overbite overbites overbitten overbitter overbitterly overbitterness overblack overblame overblamed overblaming overblanch overblanket overblankets overblaze overbleach overbleached overbleaches overbleaching overblessed overblessedness overblew overblind overblindly overblithe overbloom overblouse overblouses overblow overblowing overblown overblows overboard overboast overboastful overboastfully overboastfulness overbodice overboding overbody overboil overboiled overboiling overboils overbold overboldly overboldness overbook overbooked overbooking overbookish overbookishly overbookishness overbooks overbooming overboot overbore overborn overborne overborrow overborrowed overborrowing overborrows overbought overbound overbounded overbounding overbounds overbounteous overbounteously overbounteousness overbow overbowed overbowl overbrace overbraced overbracing overbrag overbragged overbragging overbrained overbrake overbraked overbraking overbranch overbravado overbrave overbravely overbraveness overbravery overbray overbreak overbreakage overbreathe overbreathed overbreathes overbreathing overbreathings overbred overbreed overbreeding overbreeds overbribe overbridge overbridged overbridges overbridging overbrief overbright overbrightly overbrightness overbrilliance overbrilliancy overbrilliant overbrilliantly overbrim overbrimmed overbrimming overbrimmingly overbrims overbroad overbroaden overbroil overbrood overbrow overbrowed overbrowing overbrown overbrows overbrowse overbrowsed overbrowses overbrowsing overbrush overbrutal overbrutalise overbrutalities overbrutality overbrutalization overbrutalize overbrutalized overbrutalizing overbrutally overbubbling overbuild overbuilded overbuilding overbuilds overbuilt overbulk overbulked overbulkily overbulkiness overbulking overbulks overbulky overbumptious overbumptiously overbumptiousness overburden overburdened overburdening overburdeningly overburdens overburdensome overburn overburned overburning overburningly overburns overburnt overburst overburthen overburthened overburthening overburthens overbusied overbusies overbusily overbusiness overbusy overbusying overbusyness overbuy overbuying overbuys overby overcalculate overcalculation overcall overcalled overcalling overcalls overcame overcanny overcanopied overcanopies overcanopy overcanopying overcap overcapability overcapable overcapably overcapacities overcapacity overcape overcapitalisation overcapitalisations overcapitalise overcapitalised overcapitalises overcapitalising overcapitalization overcapitalizations overcapitalize overcapitalized overcapitalizes overcapitalizing overcaptious overcaptiously overcaptiousness overcard overcare overcareful overcarefully overcarefulness overcareless overcarelessly overcarelessness overcaring overcarking overcarried overcarries overcarry overcarrying overcast overcasted overcasting overcastings overcasts overcasual overcasually overcasualness overcasuistical overcatch overcatches overcatching overcaught overcaustic overcaustically overcausticity overcaution overcautioned overcautioning overcautions overcautious overcautiously overcautiousness overcautiousnesses overcensor overcensorious overcensoriously overcensoriousness overcentralisation overcentralisations overcentralise overcentralises overcentralization overcentralizations overcentralize overcentralized overcentralizes overcentralizing overcerebral overcertification overcertified overcertify overcertifying overchafe overchafed overchafing overchannel overchant overcharge overcharged overchargement overcharger overcharges overcharging overcharitable overcharitableness overcharitably overcharity overchase overchased overchasing overcheap overcheaply overcheapness overcheck overchecked overchecking overchecks overcherish overcherished overchidden overchief overchildish overchildishly overchildishness overchill overchilled overchilling overchills overchlorinate overchoke overchrome overchurch overcirculate overcircumspect overcircumspection overcivil overcivilisation overcivilise overcivility overcivilization overcivilize overcivilized overcivilizing overcivilly overclad overclaim overclaimed overclaiming overclaims overclamor overclamour overclasp overclass overclasses overclassification overclassifications overclassified overclassifies overclassify overclassifying overclean overcleaned overcleaning overcleanly overcleanness overcleans overclear overcleared overclearing overclears overcleave overclemency overclement overclever overcleverly overcleverness overclimb overclinical overclinically overclinicalness overcloak overclock overclocked overclocking overclocks overclog overclogged overclogging overclose overclosely overcloseness overclothe overclothes overcloud overclouded overclouding overclouds overcloy overcloyed overcloying overcloys overcluster overclutter overcoach overcoached overcoaches overcoaching overcoat overcoated overcoating overcoatings overcoats overcoil overcold overcoldly overcollar overcolor overcoloration overcoloring overcolors overcolour overcolouration overcoloured overcolouring overcolours overcomable overcome overcomer overcomers overcomes overcoming overcomingly overcommand overcommend overcommendation overcommercialization overcommercializations overcommercialize overcommercialized overcommercializes overcommercializing overcommit overcommited overcommiting overcommitment overcommitments overcommits overcommitted overcommitting overcommon overcommonly overcommonness overcommunicate overcommunicated overcommunicates overcommunicating overcommunication overcommunications overcommunicative overcompensate overcompensated overcompensates overcompensating overcompensation overcompensations overcompensators overcompensatory overcompetetive overcompetition overcompetitive overcompetitively overcompetitiveness overcomplacence overcomplacency overcomplacent overcomplacently overcomplete overcomplex overcomplexity overcompliance overcompliances overcompliant overcomplicate overcomplicated overcomplicates overcomplicating overcompound overcompress overcompressed overcompresses overcompressing overconcentrate overconcentrated overconcentrating overconcentration overconcentrations overconcern overconcerned overconcerning overconcerns overcondensation overcondense overcondensed overcondensing overconfidence overconfidences overconfident overconfidently overconfiding overconfute overconquer overconscientious overconscientiously overconscientiousness overconscious overconsciously overconsciousness overconservatism overconservative overconservatively overconservativeness overconsiderate overconsiderately overconsiderateness overconsideration overconstant overconstantly overconstantness overconstruct overconstructed overconstructing overconstructs overconsume overconsumed overconsumes overconsuming overconsumption overconsumptions overcontented overcontentedly overcontentedness overcontentious overcontentiously overcontentiousness overcontentment overcontract overcontraction overcontribute overcontributed overcontributing overcontribution overcontrite overcontritely overcontriteness overcontrol overcontroled overcontroling overcontrolled overcontrolling overcontrols overcook overcooked overcooking overcooks overcool overcooled overcooling overcoolly overcoolness overcools overcopious overcopiously overcopiousness overcorned overcorrect overcorrected overcorrecting overcorrection overcorrections overcorrects overcorrupt overcorruption overcorruptly overcostliness overcostly overcount overcounted overcounting overcounts overcourteous overcourteously overcourteousness overcourtesy overcover overcovered overcovering overcovers overcovetous overcovetously overcovetousness overcow overcoy overcoyly overcoyness overcram overcramme overcrammed overcrammi overcramming overcrams overcraw overcrawed overcrawing overcraws overcredit overcredulities overcredulity overcredulous overcredulously overcredulousness overcreed overcreep overcritical overcritically overcriticalness overcriticalnesses overcriticise overcriticism overcriticize overcriticized overcriticizing overcrop overcropped overcropping overcrops overcross overcrossing overcrow overcrowd overcrowded overcrowdedly overcrowdedness overcrowding overcrowdings overcrowds overcrowed overcrowing overcrown overcrows overcrust overcry overcull overcultivate overcultivated overcultivating overcultivation overcultivations overculture overcultured overcumber overcunning overcunningly overcunningness overcup overcure overcured overcures overcuring overcuriosity overcurious overcuriously overcuriousness overcurl overcurrency overcurrent overcurtain overcustom overcut overcuts overcutter overcutting overdaintily overdaintiness overdainty overdamn overdance overdangle overdare overdared overdares overdaring overdaringly overdarken overdash overdated overdazed overdazzle overdazzled overdazzling overdeal overdear overdearly overdearness overdebate overdebated overdebating overdebilitate overdebilitated overdebilitating overdecadence overdecadent overdecadently overdeck overdecked overdecking overdecks overdecorate overdecorated overdecorates overdecorating overdecoration overdecorations overdecorative overdecoratively overdecorativeness overdedicate overdedicated overdedicating overdedication overdeeming overdeep overdeepen overdeeply overdefensive overdefensively overdefensiveness overdeferential overdeferentially overdefiant overdefiantly overdefiantness overdefined overdeliberate overdeliberated overdeliberately overdeliberateness overdeliberating overdeliberation overdelicacy overdelicate overdelicately overdelicateness overdelicious overdeliciously overdeliciousness overdelighted overdelightedly overdemand overdemandiness overdemanding overdemandingly overdemandingness overdemocracy overdemonstrative overden overdenunciation overdepend overdepended overdependence overdependences overdependent overdepending overdepends overdepress overdepressive overdepressively overdepressiveness overderide overderided overderiding overderisive overderisively overderisiveness overdescant overdescribe overdescribed overdescribing overdescriptive overdescriptively overdescriptiveness overdesign overdesigned overdesigning overdesigns overdesire overdesirous overdesirously overdesirousness overdestructive overdestructively overdestructiveness overdetailed overdetermination overdetermine overdetermined overdevelop overdeveloped overdeveloping overdevelopment overdevelopments overdevelops overdevoted overdevotedly overdevotedness overdevotion overdevout overdevoutness overdid overdifferentiation overdifferentiations overdiffuse overdiffused overdiffusely overdiffuseness overdiffusing overdiffusingly overdiffusingness overdiffusion overdigest overdight overdignified overdignifiedly overdignifiedness overdignify overdignifying overdignity overdilate overdilated overdilating overdilation overdiligence overdiligent overdiligently overdiligentness overdilute overdiluted overdiluting overdilution overdirect overdirected overdirecting overdirects overdischarge overdiscipline overdisciplined overdisciplining overdiscount overdiscounted overdiscounting overdiscounts overdiscourage overdiscouraged overdiscouragement overdiscouraging overdiscreet overdiscreetly overdiscreetness overdiscriminating overdiscriminatingly overdiscrimination overdiscuss overdistance overdistant overdistantly overdistantness overdistempered overdistend overdistension overdistention overdistort overdistortion overdistrait overdistraught overdiverse overdiversely overdiverseness overdiversification overdiversified overdiversifies overdiversify overdiversifying overdiversities overdiversity overdo overdoctrinaire overdoctrinise overdoctrinize overdocument overdocumented overdocumenting overdocuments overdoer overdoers overdoes overdog overdogmatic overdogmatical overdogmatically overdogmaticalness overdogmatism overdogs overdoing overdome overdomesticate overdomesticated overdomesticating overdominance overdominances overdominant overdominate overdominated overdominating overdone overdoor overdosage overdosages overdose overdosed overdoses overdosing overdoubt overdoze overdozed overdozing overdraft overdrafts overdrain overdrainage overdramatic overdramatically overdramatise overdramatised overdramatises overdramatising overdramatize overdramatized overdramatizes overdramatizing overdrank overdrape overdrapery overdraught overdraughts overdraw overdrawer overdrawing overdrawn overdraws overdream overdredge overdredged overdredging overdrench overdress overdressed overdresses overdressing overdrew overdried overdries overdrifted overdrily overdriness overdrink overdrinking overdrinks overdrip overdrive overdriven overdrives overdriving overdroop overdrove overdrowsed overdrunk overdry overdrying overdub overdubbed overdubbing overdubbs overdubs overdue overdunged overdure overdust overdusted overdusting overdusts overdye overdyed overdyeing overdyer overdyers overdyes overdying overeager overeagerly overeagerness overeagernesses overearly overearnest overearnestly overearnestness overeasily overeasiness overeasy overeat overeate overeaten overeater overeaters overeating overeats overed overedge overedit overedited overediting overeditorialize overeditorialized overeditorializing overedits overeducate overeducated overeducates overeducating overeducation overeducations overeducative overeducatively overeffort overeffusive overeffusively overeffusiveness overegg overelaborate overelaborated overelaborately overelaborateness overelaborates overelaborating overelaboration overelaborations overelate overelated overelating overelegance overelegancy overelegant overelegantly overelegantness overelliptical overelliptically overembellish overembellished overembellishes overembellishing overembellishment overembellishments overembroider overemote overemoted overemotes overemoting overemotional overemotionalise overemotionality overemotionalize overemotionalized overemotionalizing overemotionally overemotionalness overemphases overemphasis overemphasise overemphasised overemphasises overemphasising overemphasize overemphasized overemphasizes overemphasizing overemphatic overemphatical overemphatically overemphaticalness overemphaticness overempired overempirical overempirically overemploy overemployment overemptiness overempty overemulate overemulated overemulating overemulation overenamored overencourage overencouraged overencourages overencouraging overendowed overenergetic overengineer overengineered overengineering overengineers overenrolled overenter overentertained overenthusiasm overenthusiasms overenthusiastic overenthusiastically overentreat overentry overenvious overenviously overenviousness overequal overequip overequipped overest overesteem overestimate overestimated overestimates overestimating overestimation overestimations overevaluation overevaluations overexacting overexaggerate overexaggerated overexaggerates overexaggerating overexaggeration overexaggerations overexcelling overexcitabilities overexcitability overexcitable overexcitably overexcite overexcited overexcitement overexcitements overexcites overexciting overexercise overexercised overexercises overexercising overexert overexerted overexertedly overexertedness overexerting overexertion overexertions overexerts overexhaust overexhausted overexhausting overexhausts overexpand overexpanded overexpanding overexpands overexpansion overexpansions overexpansive overexpansively overexpansiveness overexpect overexpectant overexpectantly overexpectantness overexpectation overexpectations overexpend overexpenditure overexpert overexplain overexplained overexplaining overexplains overexplanation overexplicit overexploit overexploitation overexploitations overexploited overexploiting overexploits overexpose overexposed overexposes overexposing overexposure overexposures overexpress overexpressive overexpressively overexpressiveness overexquisite overexquisitely overextend overextended overextending overextends overextension overextensions overextensive overextraction overextractions overextrapolation overextrapolations overextravagant overextreme overexuberance overexuberant overexuberantly overexuberantness overeye overeyebrowed overeyed overeyeing overeyes overeying overface overfacile overfacilely overfacility overfactious overfactiously overfactiousness overfactitious overfag overfagged overfagging overfaint overfaintly overfaintness overfaith overfaithful overfaithfully overfaithfulness overfall overfallen overfalling overfalls overfamed overfamiliar overfamiliarities overfamiliarity overfamiliarly overfamous overfanciful overfancifully overfancifulness overfancy overfar overfast overfastidious overfastidiously overfastidiousness overfasting overfat overfatigue overfatigued overfatigues overfatiguing overfatness overfatten overfault overfavor overfavorable overfavorableness overfavorably overfavored overfavoring overfavors overfavour overfavourable overfavourably overfavours overfear overfeared overfearful overfearfully overfearfulness overfearing overfears overfeast overfeatured overfed overfee overfeed overfeeding overfeeds overfeel overfell overfellowlike overfellowly overfelon overfeminine overfemininely overfemininity overfeminize overfeminized overfeminizing overfertile overfertilisation overfertility overfertilization overfertilizations overfertilize overfertilized overfertilizes overfertilizing overfervent overfervently overferventness overfestoon overfew overfierce overfiercely overfierceness overfile overfill overfilled overfilling overfills overfilm overfilter overfine overfineness overfinenesses overfinished overfish overfished overfishes overfishing overfit overfix overflap overflat overflatly overflatness overflatten overflavor overfleece overfleshed overflew overflexion overflies overflight overflights overfling overfloat overflog overflogged overflogging overflood overflorid overfloridly overfloridness overflour overflourish overflourished overflourishes overflourishing overflow overflowable overflowed overflower overflowing overflowingly overflowingness overflowings overflown overflows overfluency overfluent overfluently overfluentness overflush overflushes overflutter overfly overflying overfocus overfocused overfocuses overfocusing overfocussed overfocusses overfocussing overfold overfolded overfolding overfolds overfond overfondle overfondled overfondling overfondly overfondness overfondnesses overfoolish overfoolishly overfoolishness overfoot overforce overforced overforcing overforged overformalize overformalized overformalizing overformed overforward overforwardly overforwardness overforwardnesses overfought overfoul overfoully overfoulness overfragile overfragmented overfrail overfrailly overfrailness overfrailty overfranchised overfrank overfrankly overfrankness overfraught overfree overfreedom overfreedoms overfreely overfreight overfreighted overfreighting overfreights overfrequency overfrequent overfrequently overfret overfrieze overfrighted overfrighten overfroth overfrown overfrozen overfrugal overfrugality overfrugally overfruited overfruitful overfruitfully overfruitfulness overfrustration overfulfill overfulfilled overfulfilling overfulfills overfull overfullness overfullnesses overfulness overfulnesses overfunctioning overfund overfunded overfunding overfundings overfunds overfurnish overfurnished overfurnishes overfurnishing overfussy overgaiter overgall overgalled overgalling overgalls overgamble overgambled overgambling overgang overganged overganging overgangs overgarment overgarments overgarnish overgarrison overgave overgaze overgeneral overgeneralise overgeneralised overgeneralises overgeneralising overgeneralization overgeneralizations overgeneralize overgeneralized overgeneralizes overgeneralizing overgenerally overgenerosities overgenerosity overgenerous overgenerously overgenerousness overgenial overgeniality overgenially overgenialness overgentle overgently overgesticulate overgesticulated overgesticulating overgesticulation overgesticulative overgesticulatively overgesticulativeness overget overgets overgetting overgifted overgild overgilded overgilding overgilds overgilt overgilted overgird overgirded overgirding overgirdle overgirds overgirt overgive overgiven overgives overgiving overglad overgladly overglamorize overglamorized overglamorizes overglamorizing overglance overglanced overglances overglancing overglass overglaze overglazed overglazes overglazing overglide overglint overgloom overgloomed overgloomily overgloominess overglooming overglooms overgloomy overglorious overgloss overglut overgo overgoad overgoaded overgoading overgoads overgod overgodliness overgodly overgoes overgoing overgoings overgone overgood overgorge overgorged overgorges overgorging overgot overgotten overgovern overgoverned overgoverning overgovernment overgoverns overgown overgrace overgracious overgraciously overgraciousness overgrade overgraded overgrading overgraduated overgrain overgrained overgrainer overgrainers overgraining overgrains overgrasping overgrass overgrassed overgrasses overgrassing overgrateful overgratefully overgratefulness overgratification overgratified overgratify overgratifying overgratitude overgraze overgrazed overgrazes overgrazing overgrazings overgreasiness overgreasy overgreat overgreatly overgreatness overgreed overgreedily overgreediness overgreedy overgreen overgreened overgreening overgreens overgrew overgrieve overgrieved overgrieving overgrievous overgrievously overgrievousness overgrind overgross overgrossly overgrossness overground overgrow overgrowing overgrown overgrows overgrowth overgrowths overguilty overgun overhail overhaile overhailed overhailes overhailing overhair overhairs overhale overhaled overhales overhalf overhaling overhand overhanded overhandicap overhandicapped overhandicapping overhanding overhandle overhandled overhandles overhandling overhands overhang overhanging overhangs overhappily overhappiness overhappy overharass overharassment overhard overharden overhardness overhardy overharsh overharshly overharshness overharvest overharvested overharvesting overharvests overhaste overhasten overhastes overhastily overhastiness overhastinesses overhasty overhate overhated overhates overhating overhatted overhaughtily overhaughtiness overhaughty overhaul overhauled overhauler overhaulers overhauling overhauls overhead overheadiness overheadman overheads overheady overheap overheaped overheaping overheaps overhear overheard overhearer overhearing overhears overheartily overheartiness overhearty overheat overheated overheatedly overheating overheatings overheats overheave overheavily overheaviness overheavy overheight overheighten overheinous overheld overhelp overhelpful overhelpfully overhelpfulness overhent overhenting overhents overhie overhigh overhighly overhill overhip overhit overhits overhitting overhold overholding overholds overholiness overhollow overholy overhomeliness overhomely overhomogenize overhomogenized overhomogenizes overhomogenizing overhonest overhonestly overhonestness overhonesty overhonor overhonour overhope overhoped overhopes overhoping overhorse overhostile overhostilely overhostility overhot overhotly overhour overhouse overhover overhuge overhugely overhugeness overhuman overhumane overhumanise overhumanity overhumanize overhumanized overhumanizing overhumble overhumbleness overhumbly overhung overhunt overhunted overhunting overhuntings overhunts overhurl overhurried overhurriedly overhurry overhurrying overhusk overhype overhyped overhypes overhyping overhysterical overidden overidealism overidealistic overidealize overidealized overidealizes overidealizing overidentification overidentifications overidentified overidentifies overidentify overidentifying overidle overidleness overidly overidness overidolatrous overidolatrously overidolatrousness overillustrate overillustrated overillustrating overillustration overillustrative overillustratively overimaginative overimaginatively overimaginativeness overimbibe overimbibed overimbibes overimbibing overimitate overimitated overimitating overimitation overimitative overimitatively overimitativeness overimmunize overimmunized overimmunizing overimport overimportance overimportation overimpose overimposed overimposing overimpress overimpressed overimpresses overimpressibility overimpressible overimpressibly overimpressing overimpressionability overimpressionable overimpressionableness overimpressionably overinclinable overinclination overincline overinclined overinclines overinclining overinclusive overincredulous overincrust overincurious overindebted overindebtedness overindebtednesses overindividualism overindividualistic overindividualistically overindividualization overindulge overindulged overindulgence overindulgences overindulgent overindulgently overindulges overindulging overindustrialisation overindustrialise overindustrialises overindustrialism overindustrialization overindustrialize overindustrialized overindustrializes overindustrializing overinflate overinflated overinflates overinflating overinflation overinflationary overinflations overinflative overinfluence overinfluenced overinfluences overinfluencing overinfluential overinform overinformed overinforming overinforms overing overingenious overingenuities overingenuity overinhibit overinhibited overink overinked overinsist overinsistence overinsistencies overinsistency overinsistent overinsistently overinsolence overinsolent overinsolently overinstruct overinstruction overinstructive overinstructively overinstructiveness overinsurance overinsurances overinsure overinsured overinsures overinsuring overintellectual overintellectualism overintellectuality overintellectualization overintellectualizations overintellectualize overintellectualized overintellectualizes overintellectualizing overintellectually overintellectualness overintense overintensely overintenseness overintensification overintensified overintensify overintensifying overintensities overintensity overinterest overinterested overinterestedly overinterestedness overinterference overinterpretation overinterpretations overinventoried overinvest overinvested overinvesting overinvestment overinvestments overinvests overinvolve overinvolved overinvolves overinvolving overiodize overiodized overiodizing overirrigate overirrigated overirrigating overirrigation overissuance overissuances overissue overissued overissues overissuing overitching overjacket overjade overjaded overjading overjawed overjealous overjealously overjealousness overjob overjocular overjocularity overjocularly overjoy overjoyed overjoyful overjoyfully overjoyfulness overjoying overjoyous overjoyously overjoyousness overjoys overjudge overjudgement overjudging overjudgment overjudicious overjudiciously overjudiciousness overjump overjumped overjumping overjumps overjust overjutting overkeen overkeenly overkeenness overkeep overkeeping overkeeps overkept overkest overkick overkill overkilled overkilling overkills overkind overkindly overkindness overkindnesses overking overkings overknavery overknee overknow overknowing overlabor overlabored overlaboring overlabors overlabour overlaboured overlabouring overlabours overlace overlactate overlactated overlactating overlactation overlade overladed overladen overlades overlading overlaid overlain overland overlanded overlander overlanders overlanding overlands overlaness overlanguaged overlap overlapped overlapping overlaps overlard overlarded overlarding overlards overlarge overlargely overlargeness overlascivious overlasciviously overlasciviousness overlash overlast overlate overlateness overlather overlaud overlaudation overlaudatory overlaugh overlaunch overlaunched overlaunches overlaunching overlave overlavish overlavishly overlavishness overlax overlaxative overlaxly overlaxness overlay overlayed overlayer overlaying overlayings overlays overlead overleaf overlean overleap overleaped overleaping overleaps overleapt overlearn overlearned overlearnedly overlearnedness overlearning overlearns overleather overleathers overleave overleaven overleavened overleavening overleavens overleer overleg overlegislate overlegislated overlegislating overlegislation overleisured overlend overlending overlends overlength overlengthen overlengthened overlengthening overlengthens overlent overlept overlet overlets overlettered overletting overlewd overlewdly overlewdness overliberal overliberality overliberalization overliberalize overliberalized overliberalizing overliberally overlicentious overlicentiously overlicentiousness overlick overlie overlier overliers overlies overlift overlight overlighted overlightheaded overlighting overlightly overlightness overlights overlightsome overliing overliking overlimit overline overling overlinger overlinked overlip overlipping overlisted overlisten overlit overliteral overliterarily overliterariness overliterary overlittle overlive overlived overliveliness overlively overliver overlives overliving overload overloaded overloading overloads overloan overloath overlock overlocked overlocker overlockers overlocking overlockings overlocks overloftily overloftiness overlofty overlogical overlogicality overlogically overlogicalness overlong overlook overlooked overlooker overlookers overlooking overlooks overloose overloosely overlooseness overlord overlorded overlording overlords overlordship overlordships overloud overloudly overloudness overloup overlove overloved overlover overloves overloving overlow overlowness overloyal overloyally overloyalties overloyalty overlubricate overlubricated overlubricating overlubricatio overlubrication overluscious overlusciously overlusciousness overlush overlushly overlushness overlustiness overlusty overluxuriance overluxuriancy overluxuriant overluxuriantly overluxurious overluxuriously overluxuriousness overly overlying overmagnetic overmagnetically overmagnification overmagnified overmagnifies overmagnify overmagnifying overmagnitude overmajority overmalapert overman overmanage overmanaged overmanages overmanaging overmanned overmannered overmanning overmans overmantel overmantels overmantle overmany overmarch overmark overmarking overmarl overmask overmast overmasted overmaster overmastered overmasterful overmasterfully overmasterfulness overmastering overmasteringly overmasters overmasting overmasts overmatch overmatched overmatches overmatching overmatter overmatters overmature overmaturely overmatureness overmaturities overmaturity overmean overmeanly overmeanness overmeasure overmeasured overmeasures overmeasuring overmeddle overmeddled overmeddling overmedicate overmedicated overmedicates overmedicating overmedication overmedications overmeek overmeekly overmeekness overmellow overmellowly overmellowness overmelodied overmelodious overmelodiously overmelodiousness overmelt overmelted overmelting overmelts overmen overmerciful overmercifully overmercifulness overmerit overmerrily overmerriment overmerriness overmerry overmeticulous overmeticulousness overmettled overmickle overmighty overmild overmilitaristic overmilitaristically overmilk overmilked overmilking overmilks overmill overmind overmine overmined overmines overmining overminute overminutely overminuteness overmitigate overmitigated overmitigating overmix overmixed overmixes overmixing overmobilize overmobilized overmobilizing overmoccasin overmodernization overmodernize overmodernized overmodernizing overmodest overmodestly overmodesty overmodification overmodified overmodifies overmodify overmodifying overmodulated overmodulation overmoist overmoisten overmoisture overmonopolize overmonopolized overmonopolizing overmoral overmoralistic overmoralize overmoralized overmoralizing overmoralizingly overmorally overmore overmortgage overmortgaged overmortgaging overmoss overmost overmotor overmount overmounted overmounting overmounts overmourn overmournful overmournfully overmournfulness overmuch overmuches overmuchness overmultiplication overmultiplications overmultiplied overmultiplies overmultiply overmultiplying overmultitude overmultituded overmultitudes overmultituding overmuscled overmuse overmystification overmystified overmystify overmystifying overname overnamed overnames overnaming overnarrow overnarrowly overnarrowness overnationalisation overnationalization overnationalize overnationalized overnationalizing overnear overnearness overneat overneatly overneatness overneglect overneglectful overneglectfully overneglectfulness overnegligence overnegligent overnegligently overnegligentness overnervous overnervously overnervousness overness overnet overnets overnetted overnetting overneutralization overneutralize overneutralized overneutralizer overneutralizing overnew overnice overnicely overniceness overnicenesses overniceties overnicety overnigh overnight overnighted overnighter overnighters overnighting overnights overnimble overnipping overnoble overnobleness overnobly overnoise overnormal overnormality overnormalization overnormalize overnormalized overnormalizing overnormally overnotable overnourish overnourished overnourishes overnourishing overnourishingly overnourishment overnoveled overnumber overnumerous overnumerously overnumerousness overnurse overnursed overnursing overnutrition overnutritions overobedience overobedient overobediently overobese overobesely overobeseness overobesity overobject overobjectification overobjectified overobjectify overobjectifying overoblige overobsequious overobsequiously overobsequiousness overobvious overoffend overoffensive overoffensively overoffensiveness overoffice overofficed overofficered overoffices overofficing overofficious overofficiously overofficiousness overoperate overoperated overoperates overoperating overopinionated overoptimism overoptimisms overoptimist overoptimistic overoptimistically overoptimists overorchestrate overorchestrated overorchestrates overorchestrating overorder overorganization overorganize overorganized overorganizes overorganizing overornament overornamental overornamentality overornamentally overornamentation overornamented overornamenting overornaments overoxidization overoxidize overoxidized overoxidizing overpack overpackage overpackaged overpackages overpackaging overpacked overpacking overpacks overpage overpaid overpained overpainful overpainfully overpainfulness overpaint overpainted overpainting overpaints overpamper overpark overpart overparted overpartial overpartiality overpartially overpartialness overparticular overparticularity overparticularly overparticularness overparting overparts overparty overpass overpassed overpasses overpassing overpassionate overpassionately overpassionateness overpast overpatient overpatriotic overpatriotically overpatriotism overpay overpaying overpayment overpayments overpays overpedal overpedaled overpedaling overpedalled overpedalling overpedals overpeer overpeered overpeering overpeers overpenalization overpenalize overpenalized overpenalizing overpending overpensive overpensively overpensiveness overpeople overpeopled overpeoples overpeopling overpepper overperch overperched overperches overperching overperemptorily overperemptoriness overperemptory overpermissive overpermissiveness overpersecute overpersecuted overpersecuting overpersuade overpersuaded overpersuades overpersuading overpersuasion overpersuasions overpert overpessimism overpessimistic overpessimistically overpet overphilosophize overphilosophized overphilosophizing overphysic overpick overpictorialize overpictorialized overpictorializing overpicture overpictured overpictures overpicturing overpinching overpious overpiousness overpitch overpitched overpitches overpitching overpiteous overpiteously overpiteousness overplace overplaced overplacement overplaid overplaided overplaids overplain overplainly overplainness overplan overplanned overplanning overplans overplant overplanted overplanting overplants overplast overplausible overplausibleness overplausibly overplay overplayed overplaying overplays overplease overpleased overpleasing overplenitude overplenteous overplenteously overplenteousness overplentiful overplentifully overplentifulness overplenty overplied overplies overplot overplots overplotted overplotting overplow overplumb overplume overplump overplumpness overplus overpluses overplusses overply overplying overpoeticize overpoeticized overpoeticizing overpointed overpoise overpoised overpoises overpoising overpole overpolemical overpolemically overpolemicalness overpolice overpoliced overpolicing overpolish overpolished overpolitic overpolitical overpolitically overpollinate overpollinated overpollinating overponderous overponderously overponderousness overpopular overpopularity overpopularly overpopulate overpopulated overpopulates overpopulating overpopulation overpopulations overpopulous overpopulously overpopulousness overpositive overpositively overpositiveness overpossess overpossessive overpost overposted overposting overposts overpot overpotency overpotent overpotential overpotently overpotentness overpour overpower overpowered overpowerful overpowerfully overpowerfulness overpowering overpoweringly overpoweringness overpowers overpractice overpracticed overpracticing overpraise overpraised overpraises overpraising overprase overprased overprases overprasing overpratice overpraticed overpraticing overpray overpreach overprecise overprecisely overpreciseness overprecision overpreface overpregnant overpreoccupation overpreoccupied overpreoccupy overpreoccupying overpreparation overpreparations overprepare overprepared overprepares overpreparing overprescribe overprescribed overprescribes overprescribing overprescription overprescriptions overpress overpressed overpresses overpressing overpressure overpressured overpressures overpressuring overpresumption overpresumptive overpresumptively overpresumptiveness overpresumptuous overpresumptuously overpresumptuousness overprice overpriced overprices overpricing overprick overpride overprint overprinted overprinting overprints overprivileged overprize overprized overprizer overprizes overprizing overprocess overprocessed overprocesses overprocessing overprocrastination overproduce overproduced overproducer overproducers overproduces overproducing overproduction overproductions overproductive overproficiency overproficient overproficiently overprofusion overprogram overprogramed overprograming overprogrammed overprogramming overprograms overprolific overprolifically overprolificness overprolix overprolixity overprolixly overprolixness overprominence overprominent overprominently overprominentness overpromise overpromised overpromises overpromising overpromote overpromoted overpromotes overpromoting overprompt overpromptly overpromptness overprone overproneness overproness overpronounce overpronounced overpronouncing overpronunciation overproof overproportion overproportionate overproportionated overproportionately overproportioned overproportioning overproportions overprosperity overprosperous overprosperously overprosperousness overprotect overprotected overprotecting overprotection overprotections overprotective overprotectiveness overprotectivenesses overprotects overprotract overprotraction overproud overproudly overproudness overprove overproved overprovender overprovide overprovided overprovident overprovidently overprovidentness overproviding overproving overprovision overprovocation overprovoke overprovoked overprovoking overprune overpruned overpruning overpsychologize overpsychologized overpsychologizing overpublic overpublicity overpublicize overpublicized overpublicizes overpublicizing overpuff overpuissant overpuissantly overpump overpumped overpumping overpumps overpunish overpunishment overpurchase overpurchased overpurchasing overput overqualification overqualified overqualify overqualifying overquantity overquarter overquell overquick overquickly overquiet overquietly overquietness overrace overrack overracked overracking overracks overrake overraked overrakes overraking overran overraness overrange overrank overrankness overrapture overrapturise overrapturize overrash overrashly overrashness overrashnesses overrate overrated overrates overrating overrational overrationalise overrationalization overrationalize overrationalized overrationalizing overrationally overraught overravish overreach overreached overreacher overreachers overreaches overreaching overreachingly overreachingness overreact overreacted overreacting overreaction overreactions overreactive overreacts overread overreader overreadily overreadiness overreading overreads overready overrealism overrealistic overrealistically overreckon overreckoned overreckoning overreckons overrecord overred overredded overredding overreds overreduce overreduced overreducing overreduction overrefine overrefined overrefinement overrefinements overrefines overrefining overreflection overreflective overreflectively overreflectiveness overregiment overregimentation overregister overregistration overregular overregularity overregularly overregulate overregulated overregulates overregulating overregulation overregulations overrelax overrelaxed overreliance overreliances overreliant overreligion overreligiosity overreligious overreligiously overreligiousness overremiss overremissly overremissness overren overrennet overrenning overrens overrent overreplete overrepletion overreport overreported overreporting overreports overrepresent overrepresentation overrepresentations overrepresentative overrepresentatively overrepresentativeness overrepresented overrepresenting overrepresents overrepress overreprimand overreserved overreservedly overreservedness overresist overresolute overresolutely overresoluteness overrespond overresponded overresponding overresponds overrestore overrestrain overrestraint overrestrict overrestriction overretention overreward overrich overriches overrichly overrichness overrid overridden override overrider overriders overrides overriding overridingly overrife overrigged overright overrighteous overrighteously overrighteousness overrigid overrigidity overrigidly overrigidness overrigorous overrigorously overrigorousness overrim overriot overripe overripely overripen overripened overripeness overripenesses overripening overripens overrise overrisen overrising overroast overroasted overroasting overroasts overrode overroll overromanticize overromanticized overromanticizing overroof overrooted overrose overrough overroughly overroughness overroyal overrude overrudely overrudeness overruff overruffed overruffing overruffs overrule overruled overruler overrulers overrules overruling overrulingly overrulings overrun overrunner overrunners overrunning overrunningly overruns overrush overrusset overrust overs oversacrificial oversacrificially oversacrificialness oversad oversadly oversadness oversaid oversail oversailed oversailing oversails oversale oversales oversaliva oversalt oversalted oversalting oversalts oversalty oversampled oversampling oversand oversanded oversanguine oversanguinely oversanguineness oversapless oversate oversated oversatiety oversating oversatisfy oversaturate oversaturated oversaturates oversaturating oversaturation oversaturations oversauce oversauced oversauces oversauciness oversaucing oversaucy oversave oversaved oversaves oversaving oversaw oversay overscale overscaled overscare overscatter overscented oversceptical oversceptically overscepticalness overscepticism overschutcht overscore overscored overscores overscoring overscour overscratch overscrawl overscream overscribble overscrub overscrubbed overscrubbing overscruple overscrupled overscrupling overscrupulosity overscrupulous overscrupulously overscrupulousness overscrupulousnesses overscurf overscutched oversea overseal overseam overseamer oversearch overseas overseason overseasoned overseated oversecrete oversecreted oversecreting oversecretion oversecretions oversecure oversecured oversecurely oversecuring oversecurity oversedation oversee overseed overseeded overseeding overseeds overseeing overseen overseer overseerism overseers overseership oversees overseethe overseing oversell overselling oversells oversend oversensibility oversensible oversensibleness oversensibly oversensitive oversensitively oversensitiveness oversensitivenesses oversensitivities oversensitivity oversensitize oversensitized oversensitizing oversententious oversentimental oversentimentalise oversentimentalism oversentimentality oversentimentalize oversentimentalized oversentimentalizing oversentimentally overserene overserenely overserenity overserious overseriously overseriousness overservice overserviced overservices overservicing overservile overservilely overservileness overservility overset oversets oversetter oversetting oversettle oversettled oversettlement oversettling oversevere overseverely oversevereness overseverity oversew oversewed oversewing oversewn oversews oversexed overshade overshaded overshades overshading overshadow overshadowed overshadower overshadowing overshadowingly overshadowment overshadows overshake oversharp oversharpness overshave oversheet overshelving overshepherd overshielding overshine overshined overshines overshining overshirt overshirts overshoe overshoes overshone overshoot overshooting overshoots overshort overshorten overshortly overshortness overshot overshots overshoulder overshower overshowered overshowering overshowers overshrink overshroud oversick overside oversides oversight oversights oversigned oversile oversilence oversilent oversilently oversilentness oversilver oversimple oversimpleness oversimplicity oversimplification oversimplifications oversimplified oversimplifies oversimplify oversimplifying oversimplistic oversimply oversize oversized oversizes oversizing overskeptical overskeptically overskepticalness overskeptticism overskim overskip overskipped overskipper overskipping overskips overskirt overskirts overslack overslander overslaugh overslaughed overslaughing overslaughs overslavish overslavishly overslavishness oversleep oversleeping oversleeps oversleeve oversleeves overslept overslid overslidden overslide oversliding overslight overslip overslipped overslipping overslips overslipt overslop overslope overslow overslowly overslowness overslur oversmall oversman oversmen oversmite oversmitten oversmoke oversmoked oversmokes oversmoking oversmooth oversmoothly oversmoothness oversness oversnow oversoak oversoaked oversoaking oversoaks oversoap oversoar oversocial oversocialize oversocialized oversocializing oversocially oversock oversoft oversoften oversoftly oversoftness oversold oversolemn oversolemnity oversolemnly oversolemnness oversolicitous oversolicitously oversolicitousness oversolidification oversolidified oversolidify oversolidifying oversoon oversoothing oversoothingly oversophisticated oversophistication oversorrow oversorrowed oversorrowful oversorrowfully oversorrowfulness oversot oversoul oversouls oversound oversour oversourly oversourness oversow oversowed oversowing oversown oversows overspacious overspaciously overspaciousness overspan overspangled overspanned overspanning oversparing oversparingly oversparingness oversparred overspatter overspeak overspeaking overspecialisation overspecialisations overspecialise overspecialised overspecialises overspecialising overspecialization overspecializations overspecialize overspecialized overspecializes overspecializing overspeculate overspeculated overspeculates overspeculating overspeculation overspeculations overspeculative overspeculatively overspeculativeness overspeech overspeed overspeedily overspeediness overspeedy overspend overspended overspender overspenders overspending overspends overspent overspice overspiced overspicing overspill overspilled overspilling overspills overspilt overspin overspinning overspins oversplash overspoke overspoken overspread overspreading overspreads overspring oversprinkle oversprung overspun oversqueak oversqueamish oversqueamishly oversqueamishness oversshot overstabilities overstability overstaff overstaffed overstaffing overstaffs overstaid overstain overstained overstaining overstains overstale overstalely overstaleness overstalled overstand overstanding overstands overstank overstarch overstare overstared overstares overstaring overstate overstated overstately overstatement overstatements overstates overstating overstay overstayal overstayed overstayer overstayers overstaying overstays oversteadfast oversteadfastly oversteadfastness oversteadily oversteadiness oversteady oversteer oversteered oversteering oversteers overstep overstepped overstepping oversteps overstiff overstiffen overstiffly overstiffness overstifle overstimulate overstimulated overstimulates overstimulating overstimulation overstimulations overstimulative overstimulatively overstimulativeness overstink overstinking overstinks overstir overstirred overstirring overstirs overstitch overstock overstocked overstocking overstocks overstood overstoop overstoping overstore overstored overstories overstoring overstory overstout overstoutly overstoutness overstowage overstowed overstraight overstraighten overstraightly overstraightness overstrain overstrained overstraining overstrains overstrait overstraiten overstraitly overstraitness overstream overstrength overstrengthen overstress overstressed overstresses overstressing overstretch overstretched overstretches overstretching overstrew overstrewed overstrewing overstrewn overstrews overstricken overstrict overstrictly overstrictness overstridden overstride overstridence overstridency overstrident overstridently overstridentness overstrides overstriding overstrike overstrikes overstriking overstring overstringing overstrive overstriven overstriving overstrode overstrong overstrongly overstrongness overstrooke overstrove overstruck overstructured overstrung overstud overstudied overstudies overstudious overstudiously overstudiousness overstudy overstudying overstuff overstuffed overstuffing overstuffs overstunk oversublime oversubscribe oversubscribed oversubscriber oversubscribes oversubscribing oversubscription oversubscriptions oversubtile oversubtle oversubtleties oversubtlety oversubtly oversuds oversudsed oversudses oversudsing oversufficiency oversufficient oversufficiently oversum oversup oversuperstitious oversuperstitiously oversuperstitiousness oversupped oversupping oversupplied oversupplies oversupply oversupplying oversups oversure oversured oversurely oversureness oversurety oversurge oversuring oversurviving oversusceptibility oversusceptible oversusceptibleness oversusceptibly oversuspicious oversuspiciously oversuspiciousness overswam overswarm overswarming overswarth oversway overswayed overswaying oversways overswear overswearing overswears oversweated oversweep oversweet oversweeten oversweetened oversweetening oversweetens oversweetly oversweetness oversweetnesses overswell overswelled overswelling overswells overswift overswim overswimmer overswimming overswims overswing overswinging overswings overswirling overswollen overswore oversworn overswum overswung oversystematic oversystematically oversystematicalness oversystematise oversystematize oversystematized oversystematizing overt overtakable overtake overtaken overtaker overtakers overtakes overtaking overtalk overtalkative overtalkatively overtalkativeness overtalked overtalker overtalking overtalks overtame overtamely overtameness overtapped overtare overtariff overtarry overtart overtartly overtartness overtask overtasked overtasking overtasks overtaught overtax overtaxation overtaxations overtaxed overtaxes overtaxing overteach overteaching overtechnical overtechnicality overtechnically overtedious overtediously overtediousness overteem overteemed overteeming overteems overtell overtelling overtempt overtenacious overtenaciously overtenaciousness overtenacity overtender overtenderly overtenderness overtense overtensely overtenseness overtension overterrible overtest overtheatrical overtheatrically overtheatricalness overtheorization overtheorize overtheorized overtheorizing overthick overthickly overthickness overthin overthink overthinking overthinks overthinly overthinness overthought overthoughtful overthoughtfully overthoughtfulness overthrew overthriftily overthriftiness overthrifty overthrong overthrow overthrowable overthrowal overthrower overthrowers overthrowing overthrown overthrows overthrust overthrusts overthwart overthwartarchaic overthwarted overthwarting overthwartly overthwartness overthwarts overthwartways overthwartwise overtide overtight overtighten overtightened overtightening overtightens overtightly overtightness overtill overtilt overtimbered overtime overtimed overtimely overtimer overtimers overtimes overtimid overtimidity overtimidly overtimidness overtiming overtimorous overtimorously overtimorousness overtinsel overtinseled overtinseling overtint overtip overtipped overtipping overtipple overtippled overtippling overtips overtire overtired overtiredness overtires overtiring overtitle overtly overtness overtnesses overtoe overtoil overtoiled overtoiling overtoils overtoise overtold overtolerance overtolerant overtolerantly overtone overtones overtongued overtook overtop overtopped overtopping overtopple overtops overtorture overtortured overtorturing overtower overtowered overtowering overtowers overtrace overtrack overtrade overtraded overtrader overtrades overtrading overtrailed overtrain overtrained overtraining overtrains overtrample overtravel overtread overtreading overtreat overtreated overtreating overtreatment overtreatments overtreats overtrick overtricks overtrim overtrimme overtrimmed overtrimming overtrims overtrip overtripped overtripping overtrips overtrod overtrodden overtrouble overtroubled overtroubling overtrue overtruly overtrump overtrumped overtrumping overtrumps overtrust overtrusted overtrustful overtrustfully overtrustfulness overtrusting overtrusts overtruthful overtruthfully overtruthfulness overtumble overture overtured overtures overturing overturn overturnable overturned overturner overturners overturning overturns overtutor overtwine overtwist overtype overtyped overtypes overtyping overuberous overunionised overunionize overunionized overunionizing overunsuitable overurbanisation overurbanization overurbanize overurbanized overurbanizing overurge overurged overurges overurging overuse overused overuses overusing overusual overusually overutilisation overutilization overutilizations overutilize overutilized overutilizes overutilizing overvaliant overvaliantly overvaliantness overvaluable overvaluableness overvaluably overvaluation overvaluations overvalue overvalued overvalues overvaluing overvariation overvaried overvariety overvary overvarying overvault overvehemence overvehement overvehemently overvehementness overveil overveiled overveiling overveils overventilate overventilated overventilating overventilation overventuresome overventurous overventurously overventurousness overview overviews overvigorous overvigorously overvigorousness overviolent overviolently overviolentness overvivid overvoltage overvoltages overvote overvoted overvotes overvoting overwade overwages overwake overwalk overwander overward overwarily overwariness overwarm overwarmed overwarming overwarms overwart overwary overwash overwashes overwasted overwatch overwatched overwatcher overwatches overwatching overwater overwatered overwatering overwaters overwave overway overweak overweakly overweakness overwealth overwealthy overweaponed overwear overwearied overwearies overwearing overwears overweary overwearying overweather overweathered overweathering overweathers overweave overweb overween overweened overweener overweening overweeningly overweeningness overweenings overweens overweep overweigh overweighed overweighing overweighs overweight overweightage overweighted overweighting overweights overwell overwelt overwend overwent overwet overwetness overwets overwetted overwetting overwheel overwhelm overwhelmed overwhelmer overwhelming overwhelmingly overwhelmingness overwhelmings overwhelms overwhip overwhipped overwhipping overwhirl overwhisper overwide overwidely overwideness overwild overwildly overwildness overwilily overwilling overwillingly overwillingness overwily overwin overwind overwinding overwinds overwing overwinged overwinging overwings overwinning overwinter overwintered overwintering overwinters overwiped overwisdom overwise overwisely overwithered overwithheld overwithhold overwithholding overwithholds overwoman overwomanise overwomanize overwomanly overwon overwood overwooded overwoody overword overwords overwore overwork overworked overworking overworks overworld overworn overworry overworship overwound overwove overwoven overwrap overwrest overwrested overwresting overwrestle overwrestled overwrestles overwrestling overwrests overwrite overwrited overwrites overwriting overwritten overwrote overwroth overwrought overwwrought overyear overyeared overyearing overyears overyoung overyouthful overzeal overzealous overzealously overzealousness overzealousnesses overzeals ovest ovewound ovey ovibos oviboses ovibovine ovicapsular ovicapsule ovicell ovicellular ovicidal ovicide ovicides ovicular oviculated oviculum ovicyst ovicystic ovid ovidian oviducal oviduct oviductal oviducts oviferous ovification oviform ovigenesis ovigenetic ovigenic ovigenous oviger ovigerm ovigerous ovile ovine ovines ovinia ovipara oviparal oviparities oviparity oviparous oviparously oviparousness oviposit oviposited ovipositing oviposition ovipositional ovipositions ovipositor ovipositors oviposits oviraptor oviraptorid oviraptors ovis ovisac ovisaclike ovisacs oviscapt ovism ovispermary ovispermiduct ovist ovistic ovists ovivorous ovocyte ovoelliptic ovoflavin ovogenesis ovogenetic ovogenous ovoglobulin ovogonium ovoid ovoidal ovoidals ovoids ovolactovegetarian ovolactovegetarians ovolemma ovoli ovolo ovological ovologist ovology ovolos ovolytic ovomucoid ovonic ovonics ovoplasm ovoplasmic ovopyriform ovorhomboid ovorhomboidal ovotestes ovotesticular ovotestis ovovitellin ovoviviparism ovoviviparities ovoviviparity ovoviviparous ovoviviparously ovoviviparousness ovoviviparousnesses ovular ovularian ovulary ovulate ovulated ovulates ovulating ovulation ovulations ovulatory ovule ovules ovuliferous ovuligerous ovulist ovulite ovulum ovum ow owari owche owches owd owe owed owelties owelty owenian ower owerance owerby owercome owergang owerloup owerlouped owerloupen owerlouping owerloupit owerloups owertaen owerword owes owght owhere owing owk owl owlclaws owldom owled owler owleries owlers owlery owlet owlets owlhead owlier owliest owling owlish owlishly owlishness owlishnesses owlism owllight owllike owls owlt owly own ownable owned owner ownerless owners ownership ownerships ownhood owning ownness owns ownself ownwayish owre owrecome owrecomes owregane owrehip owrelay owrelays owres owreword owrewords owrie owrier owriest ows owse owsen owser owt owtchah owts owyheeite ox oxacid oxacillin oxacillins oxadiazole oxalacetate oxalacetates oxalacetic oxalaemia oxalaldehyde oxalamid oxalamide oxalan oxalate oxalated oxalates oxalating oxalato oxaldehyde oxalemia oxalic oxalidaceae oxalidaceous oxalis oxalises oxalite oxaloacetate oxaloacetates oxaloacetic oxalodiacetic oxalonitril oxalonitrile oxaluramid oxaluramide oxalurate oxaluria oxaluric oxalyl oxalylurea oxamate oxamethane oxamic oxamid oxamide oxamidin oxamidine oxammite oxan oxanate oxandra oxane oxanic oxanilate oxanilic oxanilide oxaprozin oxazepam oxazepams oxazin oxazine oxazines oxazole oxbane oxberries oxberry oxbird oxbiter oxblood oxbloods oxbow oxbows oxboy oxbrake oxbridge oxcart oxcarts oxcheek oxdiacetic oxdiazole oxea oxeate oxen oxeote oxer oxers oxes oxetone oxeye oxeyes oxfly oxford oxfords oxgall oxgang oxgangs oxgate oxgates oxgoad oxharrow oxhead oxheads oxheal oxheart oxhearts oxherd oxhide oxhoft oxhorn oxhouse oxhuvud oxicillin oxid oxidability oxidable oxidant oxidants oxidase oxidases oxidasic oxidate oxidated oxidates oxidating oxidation oxidational oxidations oxidative oxidatively oxidator oxide oxides oxidic oxidimetric oxidimetry oxidisability oxidisable oxidisation oxidisations oxidise oxidised oxidisement oxidiser oxidisers oxidises oxidising oxidizability oxidizable oxidization oxidizations oxidize oxidized oxidizement oxidizer oxidizers oxidizes oxidizing oxidoreductase oxidoreductases oxidoreduction oxids oxidulated oxigenise oxim oximate oximation oxime oximes oximeter oximeters oximetric oximetries oximetry oxims oxindole oxland oxlands oxlike oxlip oxlips oxman oxmanship oxo oxoindoline oxonian oxonic oxonium oxoniums oxozone oxozonide oxozonides oxpecker oxpeckers oxphony oxreim oxshoe oxskin oxslip oxslips oxtail oxtails oxtant oxter oxtered oxtering oxters oxtongue oxtongues oxwort oxy oxyacanthin oxyacanthine oxyacanthous oxyacetylene oxyacetylenes oxyacid oxyacids oxyaldehyde oxyamine oxyanthracene oxyanthraquinone oxyaphia oxyaster oxyazo oxybapha oxybaphon oxybelis oxybenzaldehyde oxybenzene oxybenzoic oxybenzyl oxyberberine oxyblepsia oxybromide oxybutyria oxybutyric oxycalcium oxycalorimeter oxycamphor oxycaproic oxycarbonate oxycellulose oxycephalic oxycephalies oxycephalism oxycephalous oxycephaly oxychlorate oxychloric oxychlorid oxychloride oxychlorine oxycholesterol oxychromatic oxychromatin oxychromatinic oxycinnamic oxycobaltammine oxycopaivic oxycoumarin oxycrate oxycyanide oxydactyl oxydase oxydasic oxydation oxydendrum oxydiact oxyesthesia oxyether oxyethyl oxyfatty oxyfluoride oxygas oxygen oxygenant oxygenase oxygenases oxygenate oxygenated oxygenates oxygenating oxygenation oxygenations oxygenator oxygenators oxygenerator oxygenic oxygenicity oxygenisable oxygenise oxygenised oxygenisement oxygeniser oxygenises oxygenising oxygenium oxygenizable oxygenization oxygenize oxygenized oxygenizement oxygenizer oxygenizes oxygenizing oxygenless oxygenous oxygens oxygeusia oxygnathous oxygon oxygonal oxygonial oxyhaematin oxyhaemoglobin oxyhaemoglobins oxyhalide oxyhaloid oxyhematin oxyhemocyanin oxyhemoglobin oxyhemoglobins oxyhexactine oxyhexaster oxyhydrate oxyhydric oxyhydrogen oxyiodide oxyketone oxyl oxylebius oxyluciferin oxyluminescence oxyluminescent oxymandelic oxymel oxymels oxymetazoline oxymetazolines oxymethylene oxymomora oxymora oxymoron oxymoronic oxymoronically oxymorons oxymuriate oxymuriatic oxynaphthoic oxynaphtoquinone oxynarcotine oxyneurin oxyneurine oxynitrate oxyntic oxyophitic oxyopia oxyopy oxyosphresia oxypetalous oxyphenbutazone oxyphenbutazones oxyphenol oxyphenyl oxyphil oxyphile oxyphiles oxyphilic oxyphilous oxyphils oxyphonia oxyphony oxyphosphate oxyphthalic oxyphyllous oxyphyte oxypicric oxyproline oxypropionic oxypurine oxypycnos oxyquinaseptol oxyquinoline oxyquinone oxyrhine oxyrhinous oxyrhynch oxyrhynchi oxyrhynchid oxyrhynchous oxyrhynchus oxyrhynchuses oxyrrhynchid oxysalicylic oxysalt oxysalts oxysome oxysomes oxystearic oxystomatous oxystome oxysulfid oxysulfide oxysulfides oxysulphate oxysulphid oxysulphide oxyterpene oxytetracycline oxytetracyclines oxytocia oxytocias oxytocic oxytocics oxytocin oxytocins oxytocous oxytoluene oxytoluic oxytone oxytones oxytonesis oxytonic oxytonical oxytonize oxytropis oxytylotate oxytylote oxyura oxyuranus oxyuriases oxyuriasis oxyuricide oxyurid oxyuridae oxyurous oxywelding oy oyabun oyapock oye oyelet oyer oyers oyes oyeses oyesses oyez oyezes oylet oys oyster oysterage oysterbird oystercatcher oystercatchers oystered oysterer oysterers oysterfish oysterfishes oystergreen oysterhood oysterhouse oysteries oystering oysterings oysterish oysterishness oysterlike oysterling oysterman oystermen oysterous oysterroot oysters oysterseed oystershell oysterwife oysterwoman oysterwomen oystrige oystriges oz ozaena ozaenas ozalid ozalids ozarkite ozarks ozeki ozekis ozena ozobrome ozocerite ozocerites ozoena ozokerit ozokerite ozokerites ozonate ozonated ozonates ozonating ozonation ozonations ozonator ozone ozoned ozoner ozones ozonic ozonid ozonide ozonides ozoniferous ozonification ozonify ozonisation ozonisations ozonise ozonised ozoniser ozonisers ozonises ozonising ozonium ozonization ozonizations ozonize ozonized ozonizer ozonizers ozonizes ozonizing ozonolysis ozonometer ozonometry ozonoscope ozonoscopic ozonosphere ozonospheres ozonospheric ozonous ozophen ozophene ozostomia ozothamnus ozotype ozs p pa paal paaneleinrg paar paaraphimosis paas paauw paawkier paba pabalum pabble pabir pablo pablum pablums pabouch pabouche pabouches pabular pabulary pabulation pabulatory pabulous pabulum pabulums pac paca pacable pacane pacas pacate pacately pacation pacations pacative pacay pacaya paccha pacchionian paccioli pace paceboard paced pacemake pacemaker pacemakers pacemaking pacemakings pacemen pacer pacers paces pacesetter pacesetters pacesetting paceway pacey pacha pachadom pachadoms pachak pachaks pachalic pachalics pachanga pachas pachinko pachinkos pachisi pachisis pachnolite pachometer pachouli pachoulis pachuco pachucos pachyacria pachyaemia pachyblepharon pachycarpous pachycephal pachycephala pachycephalia pachycephalic pachycephalosaur pachycephalosaurus pachycephalous pachycephaly pachychilia pachycholia pachychymia pachycladous pachydactyl pachydactylous pachydactyly pachyderm pachyderma pachydermal pachydermata pachydermateous pachydermatocele pachydermatoid pachydermatosis pachydermatous pachydermatously pachydermia pachydermial pachydermias pachydermic pachydermoid pachydermous pachyderms pachyemia pachyglossal pachyglossate pachyglossia pachyglossous pachyhaemia pachyhaemic pachyhaemous pachyhematous pachyhemia pachyhymenia pachyhymenic pachylosis pachymenia pachymenic pachymeningitic pachymeningitis pachymeninx pachymeter pachymeters pachynathous pachynema pachynsis pachyntic pachyodont pachyotia pachyotous pachyperitonitis pachyphyllous pachypleuritic pachypod pachypodous pachypterous pachyrhizus pachyrhynchous pachysalpingitis pachysandra pachysandras pachysaurian pachysomia pachysomous pachystichous pachytene pachytenes pachytrichous pachyvaginitis pacier paciest pacifiable pacific pacifica pacificae pacifical pacifically pacificate pacificated pacificates pacificating pacification pacifications pacificator pacificators pacificatory pacificism pacificisms pacificist pacificistic pacificistically pacificists pacificity pacifico pacificos pacified pacifier pacifiers pacifies pacifism pacifisms pacifist pacifistic pacifistically pacifists pacify pacifying pacifyingly pacing pacinian pacinko pack packabilities packability packable package packaged packager packagers packages packaging packagings packall packboard packboards packbuilder packcloth packed packer packera packeries packers packery packet packetboat packeted packeting packets packfong packfongs packhorse packhorses packhouse packing packinghouse packinghouses packings packless packly packmaker packmaking packman packmanship packmen packness packnesses packplane packrat packs packsack packsacks packsaddle packsaddles packsheet packsheets packstaff packstaffs packstaves packthread packthreaded packthreads packtong packtrain packwall packwaller packware packwax packwaxes packway packways paclitaxel paclitaxels paco pacos pacota pacouryuva pacquet pacs pact pacta paction pactional pactionally pactioned pactioning pactions pactolian pacts pactum pacu pacy paczki pad pada padang padangs padas padasha padauk padauks padcloth padcluoth padda padded padder padders paddies padding paddings paddle paddleball paddleballs paddleboard paddleboards paddleboat paddleboats paddlebox paddlecock paddled paddlefish paddlefishes paddlefoot paddlelike paddler paddlers paddles paddlewheel paddlewood paddling paddlings paddock paddocked paddocking paddockride paddocks paddockstone paddockstool paddoing paddy paddybird paddymelon paddymelons paddywack paddywatch paddywhack paddywhacked paddywhacking paddywhacks padelion padella padellas pademelon pademelons paderero padereroes padereros padesoy padeye padeyes padfoot padge padi padige padis padishah padishahs padle padles padless padlike padlock padlocked padlocking padlocks padma padmas padmasana padmelon padnag padnags padou padouk padouks padova padpiece padre padres padri padrino padroadist padroado padrona padrone padrones padroni padronism padronisms pads padsaw padsaws padshah padshahs padstone padtree padua paduasoy paduasoys padymelon padymelons paean paeanise paeanism paeanisms paeanize paeanized paeanizing paeans paedagogic paedagogism paedagogue paedagogues paedagogy paedarchy paedatrophia paedatrophy paederastic paederastically paederasties paedeutic paedeutics paediatric paediatrician paediatricians paediatrics paediatries paediatrist paediatrists paediatry paedobaptism paedobaptisms paedobaptist paedobaptists paedodontic paedodontics paedogeneses paedogenesis paedogenetic paedogenetically paedogenic paedological paedologies paedologist paedologists paedology paedometer paedometrical paedomorphic paedomorphism paedomorphisms paedomorphoses paedomorphosis paedonymic paedonymy paedophile paedophiles paedophilia paedophiliac paedophiliacs paedophilias paedophilic paedophilics paedopsychologist paedotribe paedotribes paedotrophic paedotrophies paedotrophist paedotrophy paegel paegle paella paellas paenula paenulae paenulas paeon paeonia paeoniaceae paeonic paeonics paeonies paeonin paeons paeony paeounlae paepae paesan paesani paesano paesanos paesans paetrick paga pagador pagan pagandom pagandoms paganic paganical paganically paganisation paganisations paganise paganised paganiser paganisers paganises paganish paganishly paganising paganism paganisms paganist paganistic paganists paganity paganization paganizations paganize paganized paganizer paganizers paganizes paganizing paganly paganry pagans pagatpat page pageant pageanted pageanteer pageantic pageantries pageantry pageants pageboy pageboys paged pagedom pageful pagefuls pagehood pagehoods pageless pagelike pagellus pager pagers pages pageship pagesize paggle pagina paginae paginal paginary paginate paginated paginates paginating pagination paginations pagine paging pagings pagiopod pagle pagles pagne pagnes pagod pagoda pagodalike pagodas pagodite pagods pagophila pagophilus pagoscope pagri pagris pagrus pagurian pagurians pagurid paguridae pagurids pagurine paguroid pagurus pagus pah paha pahachroma pahautea pahi pahlavi pahlavis pahlevi pahmi paho pahoehoe pahoehoes pahos pahs pahutan paiche paid paideia paideutic paideutics paidle paidles paidological paidologist paidology paidonosology paigle paigles paijama paik paiked paiker paiking paiks pail pailette pailful pailfuls paillard paillards paillasse paillasses pailles paillette pailletted paillettes paillon paillons pailolo pailoo pailou pailow pails pailsful paimaneh pain painch painches paindemaine paine pained painful painfuller painfullest painfully painfulness painfulnesses painim painims paining painingly painkiller painkillers painkilling painless painlessly painlessness painlessnesses painproof pains painstaker painstakers painstaking painstakingly painstakingness painstakings painsworthy paint paintability paintable paintableness paintably paintball paintballs paintbox paintboxes paintbrush paintbrushes painted paintedness painter painterish painterlike painterliness painterlinesses painterly painters paintership paintier paintiest paintiness paintinesses painting paintingness paintings paintless paintpot paintproof paintress paintresses paintrix paintroot paintry paints painture paintures paintwork paintworks painty paiock paiocke paiockes paiocks paip pair paire paired pairedness pairer paires pairial pairials pairing pairings pairle pairmasts pairment pairs pairt pairwise pais paisa paisan paisana paisanas paisanite paisano paisanos paisans paisas paise paisley paisleys paitrick paitricks paiute paiwanic paiwari paized paizing pajahuello pajama pajamaed pajamahs pajamas pajaroello pajero pajock pajocke pajockes pajocks pakapoo pakapoos pakchoi pakeha pakehas pakfong pakfongs pakistan pakistani pakistanis pakka pakora pakoras paktong paktongs pal pala palabra palabras palace palaced palacelike palaceous palaces palaceward palacewards palach palacsinta paladin paladins palaeanthropic palaeanthropological palaeanthropologies palaeanthropologist palaeanthropologists palaeanthropology palaearctic palaebiologies palaebiologist palaebiologists palaebiology palaeechinoid palaeechinoidean palaeentomology palaeethnologic palaeethnological palaeethnologist palaeethnology palaeichthyan palaeichthyic palaeichthyologic palaeichthyological palaeichthyologies palaeichthyologist palaeichthyologists palaeichthyology palaemon palaemonid palaemonidae palaemonoid palaeoalchemical palaeoanthropic palaeoanthropography palaeoanthropological palaeoanthropologies palaeoanthropologist palaeoanthropologists palaeoanthropology palaeoatavism palaeoatavistic palaeobiogeography palaeobiologic palaeobiological palaeobiologies palaeobiologist palaeobiologists palaeobiology palaeobotanic palaeobotanical palaeobotanically palaeobotanies palaeobotanist palaeobotanists palaeobotany palaeoceanography palaeochorology palaeoclimate palaeoclimates palaeoclimatic palaeoclimatologic palaeoclimatological palaeoclimatologies palaeoclimatologist palaeoclimatologists palaeoclimatology palaeocosmic palaeocosmology palaeocrystal palaeocrystallic palaeocrystalline palaeocrystic palaeocyclic palaeodendrologic palaeodendrological palaeodendrologically palaeodendrologist palaeodendrology palaeodictyopteran palaeodictyopteron palaeodictyopterous palaeoecologic palaeoecological palaeoecologies palaeoecologist palaeoecologists palaeoecology palaeoencephala palaeoencephalon palaeoentomologic palaeoentomological palaeoentomologist palaeoentomology palaeoenvironment palaeoenvironmental palaeoenvironments palaeoeremology palaeoethnic palaeoethnobotany palaeoethnography palaeoethnologic palaeoethnological palaeoethnologies palaeoethnologist palaeoethnologists palaeoethnology palaeofauna palaeogaea palaeogaeas palaeogene palaeogenesis palaeogenetic palaeogeographer palaeogeographers palaeogeographic palaeogeographical palaeogeographically palaeogeographies palaeogeography palaeogeology palaeoglaciology palaeoglyph palaeognathic palaeognathous palaeograph palaeographer palaeographers palaeographic palaeographical palaeographically palaeographies palaeographist palaeographists palaeography palaeoherpetologist palaeoherpetology palaeohistology palaeohydrography palaeoichthyologic palaeoichthyological palaeoichthyologies palaeoichthyologist palaeoichthyologists palaeoichthyology palaeolatry palaeolimnological palaeolimnologies palaeolimnologist palaeolimnologists palaeolimnology palaeolith palaeolithic palaeolithical palaeolithist palaeolithoid palaeoliths palaeolithy palaeological palaeologist palaeology palaeomagnetism palaeomagnetisms palaeomastodon palaeometallic palaeometeorological palaeometeorology palaeonemertean palaeonemertine palaeoniscid palaeoniscoid palaeontographic palaeontographical palaeontographies palaeontography palaeontol palaeontologic palaeontological palaeontologically palaeontologies palaeontologist palaeontologists palaeontology palaeopathologic palaeopathological palaeopathologies palaeopathologist palaeopathologists palaeopathology palaeopedological palaeopedologies palaeopedologist palaeopedologists palaeopedology palaeophile palaeophilist palaeophis palaeophysiography palaeophysiology palaeophytic palaeophytological palaeophytologies palaeophytologist palaeophytology palaeoplain palaeopotamology palaeopsychic palaeopsychological palaeopsychology palaeoptychology palaeornithine palaeornithological palaeornithology palaeosaur palaeosophy palaeospondylus palaeostracan palaeostriatal palaeostriatum palaeostylic palaeostyly palaeotechnic palaeothalamus palaeothere palaeotherian palaeotheriodont palaeotherioid palaeotheroid palaeotropical palaeotype palaeotypes palaeotypic palaeotypical palaeotypically palaeotypographic palaeotypographical palaeotypographist palaeotypography palaeovolcanic palaeozoic palaeozoologic palaeozoological palaeozoologies palaeozoologist palaeozoologists palaeozoology palaestra palaestrae palaestral palaestras palaestrian palaestric palaestrical palaestrics palaetiological palaetiologist palaetiology palafitte palafittes palagi palagis palagonite palagonites palagonitic palaic palaiotype palais palaiste palaite palaka palala palama palamae palamate palame palamedean palamino palaminos palampore palampores palander palank palanka palankeen palankeened palankeener palankeening palankeeningly palankeens palanquin palanquined palanquiner palanquining palanquiningly palanquins palapa palapala palapalai palapas palaquium palar palas palases palatabilities palatability palatable palatableness palatablenesses palatably palatal palatalisation palatalisations palatalise palatalised palatalises palatalising palatalism palatality palatalization palatalizations palatalize palatalized palatalizes palatalizing palatally palatals palate palated palateful palatefulness palateless palatelike palates palatia palatial palatially palatialness palatialnesses palatian palatic palatinal palatinate palatinates palatine palatines palatineship palating palatinite palation palatisation palatise palatist palatitis palatium palative palatization palatize palatoalveolar palatodental palatoglossal palatoglossus palatognathous palatogram palatograph palatography palatomaxillary palatometer palatonasal palatopharyngeal palatopharyngeus palatoplasty palatoplegia palatopterygoid palatoquadrate palatorrhaphy palatoschisis palaver palavered palaverer palaverers palavering palaverist palaverment palaverous palavers palay palayan palays palazzi palazzo palazzos palberry palch pale palea paleaceous paleacrita paleae paleal paleanthropic paleate palebelly palebreast palebuck palebucks palechinoid paled paledness paleencephala paleencephalon paleencephalons paleentomology paleethnographer paleethnologic paleethnological paleethnologies paleethnologist paleethnology paleface palefaces palegold palehearted paleichthyologic paleichthyologist paleichthyology paleiform palely palempore palempores paleness palenesses paleoalchemical paleoandesite paleoanthropic paleoanthropography paleoanthropological paleoanthropologies paleoanthropologist paleoanthropologists paleoanthropology paleoatavism paleoatavistic paleobiochemistries paleobiochemistry paleobiogeographic paleobiogeographical paleobiogeographies paleobiogeography paleobiologic paleobiological paleobiologies paleobiologist paleobiologists paleobiology paleobotanic paleobotanical paleobotanically paleobotanies paleobotanist paleobotanists paleobotany paleoceanography paleocene paleochorologist paleochorology paleoclimatic paleoclimatologic paleoclimatological paleoclimatologies paleoclimatologist paleoclimatologists paleoclimatology paleocortex paleocortical paleocosmic paleocosmology paleocrystal paleocrystallic paleocrystalline paleocrystic paleocyclic paleodendrologic paleodendrological paleodendrologically paleodendrologist paleodendrology paleodentrologist paleoecologic paleoecological paleoecologies paleoecologist paleoecologists paleoecology paleoencephalon paleoentomologic paleoentomological paleoentomologist paleoeremology paleoethnic paleoethnography paleoethnologic paleoethnological paleoethnologist paleoethnology paleofauna paleog paleogenesis paleogenetic paleogeographer paleogeographers paleogeographic paleogeographical paleogeographically paleogeographies paleogeography paleogeologic paleogeology paleoglaciologist paleoglaciology paleoglyph paleograph paleographer paleographers paleographic paleographical paleographically paleographies paleographist paleography paleoherpetologist paleoherpetology paleohistology paleohydrography paleoichthyology paleokinetic paleola paleolate paleolatry paleolimnology paleolith paleolithic paleolithical paleolithist paleolithoid paleoliths paleolithy paleological paleologist paleology paleomagnetic paleomagnetically paleomagnetism paleomagnetisms paleomagnetist paleomagnetists paleomammalogy paleomammologist paleomammology paleometallic paleometeorological paleometeorologist paleometeorology paleon paleontographic paleontographical paleontographies paleontography paleontol paleontologic paleontological paleontologically paleontologies paleontologist paleontologists paleontology paleopathologic paleopathological paleopathologies paleopathologist paleopathologists paleopathology paleopedology paleophysiography paleophysiologist paleophysiology paleophytic paleophytological paleophytologist paleophytology paleopicrite paleoplain paleopotamology paleopotamoloy paleopsychic paleopsychological paleopsychology paleornithological paleornithologist paleornithology paleosol paleosols paleostriatal paleostriatum paleostylic paleostyly paleotechnic paleothalamus paleothermal paleothermic paleovolcanic paleoytterbium paleozoic paleozoologic paleozoological paleozoologies paleozoologist paleozoologists paleozoology paleozoulogic paleozoulogical paleozoulogist paler palermo paleron pales palest palestine palestinian palestinians palestra palestrae palestral palestras palestrian palestric palet paletiology paletot paletots palets palette palettelike palettes paletz palew paleways palewise palfgeys palfrenier palfreniers palfrey palfreyed palfreys palfry palgat pali palier paliest palification palifications paliform paligorskite palikar palikarism palikars palikinesia palila palilalia palilalias palillogia palillogies palillogy palilogetic palilogy palimbacchic palimbacchius palimonies palimony palimpsest palimpsestic palimpsests palimpset palinal palindrome palindromes palindromic palindromical palindromically palindromist palindromists paling palingeneses palingenesia palingenesian palingenesias palingenesies palingenesis palingenesist palingenesists palingenesy palingenetic palingenetical palingenetically palingenic palingenist palingeny palings palinode palinoded palinodes palinodial palinodic palinodies palinodist palinody palinopic palinurid palinuridae palinuroid palinurus paliphrasia palirrhea palis palisade palisaded palisades palisading palisado palisadoed palisadoes palisadoing palisander palisanders palisfy palish palisse palistrophia paliurus palkee palkees palki palkis pall palla palladammin palladammine palladia palladian palladianism palladic palladiferous palladinize palladinized palladinizing palladion palladious palladium palladiumise palladiumize palladiumized palladiumizing palladiums palladize palladized palladizing palladodiammine palladosammine palladous pallae pallah pallahs pallall pallanesthesia pallar pallas pallasite pallbearer pallbearers palled pallescence pallescences pallescent pallesthesia pallet palleted palleting palletisation palletisations palletise palletised palletiser palletisers palletises palletising palletization palletizations palletize palletized palletizer palletizers palletizes palletizing pallets pallette pallettes pallholder palli pallia pallial palliament palliaments palliard palliards palliasse palliasses palliata palliate palliated palliates palliating palliation palliations palliative palliatively palliatives palliator palliators palliatory pallid pallider pallidest pallidiflorous pallidipalpate palliditarsate pallidities pallidity pallidiventrate pallidly pallidness pallidnesses pallier pallies palliest palliness palling palliobranchiate palliocardiac pallioessexite pallion palliopedal palliostratus palliser pallium palliums pallograph pallographic pallometric pallone pallones pallor pallors palls pallwise pally palm palma palmaceae palmaceous palmad palmae palmales palmanesthesia palmar palmarian palmaris palmary palmate palmated palmately palmatifid palmatiform palmatilobate palmatilobed palmation palmations palmatiparted palmatipartite palmatisect palmatisected palmature palmchrist palmcrist palmed palmellaceous palmelloid palmer palmeries palmerin palmerite palmers palmerworm palmerworms palmery palmesthesia palmette palmettes palmetto palmettoes palmettos palmetum palmful palmfuls palmhouse palmhouses palmic palmicoleus palmicolous palmie palmier palmies palmiest palmiet palmiets palmiferous palmification palmifications palmiform palmigrade palmilla palmillo palmilobate palmilobated palmilobed palmin palminervate palminerved palming palmiped palmipede palmipedes palmipeds palmipes palmira palmist palmiste palmister palmistries palmistry palmists palmitate palmitates palmite palmitic palmitin palmitine palmitinic palmitins palmito palmitoleic palmitone palmitos palmiveined palmivorous palmlike palmo palmodic palmoscopy palmospasmus palms palmtop palmtops palmula palmus palmwise palmwood palmy palmyra palmyras palolo palolos paloma palombino palometa palomino palominos palooka palookas palosapis palour palouser paloverde paloverdes palp palpabilities palpability palpable palpableness palpablenesses palpably palpacle palpal palpate palpated palpates palpating palpation palpations palpator palpators palpatory palpebra palpebrae palpebral palpebras palpebrate palpebration palpebritis palped palpi palpicorn palpifer palpiferous palpiform palpiger palpigerous palping palpitant palpitate palpitated palpitates palpitating palpitatingly palpitation palpitations palpless palpocil palpon palps palpulus palpus pals palsgraf palsgrave palsgraves palsgravine palsgravines palship palships palsied palsier palsies palsiest palsification palsify palstaff palstaffs palstave palstaves palster palsy palsying palsylike palsywort palt palta palter paltered palterer palterers paltering palterly palters paltock paltrier paltriest paltrily paltriness paltrinesses paltry paludal paludament paludamenta paludaments paludamentum paludamentums palude paludial paludian paludic paludicole paludicoline paludicolous paludiferous paludina paludinal paludine paludinous paludism paludisms paludose paludous paludrin paludrine palule paluli palulus palus palustral palustrian palustrine paly palynologic palynological palynologically palynologies palynologist palynologists palynology palynomorph pam pamaceous pamaquin pamaquine pambanmanche pament pameroon pamhy pamlico pamment pampa pampanito pampas pampases pampean pampeans pampelmoose pampelmooses pampelmouse pampelmouses pamper pampered pamperedly pamperedness pamperednesses pamperer pamperers pampering pamperise pamperize pampero pamperos pampers pamphagous pampharmacon pamphlet pamphletage pamphletary pamphleteer pamphleteered pamphleteering pamphleteerings pamphleteers pamphleter pamphletful pamphletic pamphletical pamphletise pamphletize pamphletized pamphletizing pamphlets pamphletwise pamphrey pamphysic pamphysical pamphysicism pampilion pampination pampiniform pampinocele pamplegia pampootee pampootie pampre pamprodactyl pamprodactylism pamprodactylous pampsychism pampsychist pams pan pana panabase panace panacea panacean panaceas panaceist panachaea panachaeas panache panached panaches panachure panada panadas panade panadol panaesthesia panaesthesias panaesthetic panaesthetism panaesthetisms panagia panagiarion panama panamanian panamanians panamas panamica panamiga panapospory panarchic panarchy panaries panaris panaritium panaritiums panarteritis panarthritis panarthritises panary panatela panatelas panatella panatellas panathenaea panatrope panatrophic panatrophy panautomorphic panax panaxes panbabylonian panbabylonism panbroil panbroiled panbroiling panbroils pancake pancaked pancakes pancaking pancarditis pance pances pancetta pancettas panchama panchart panchax panchaxes panchayat panchayats panchayet pancheon pancheons panchion panchions panchreston panchromatic panchromatism panchromatisms panchromatization panchromatize panchway panclastic panclastite panconciliatory pancosmic pancosmism pancosmisms pancosmist pancratia pancratian pancratiast pancratiastic pancratiasts pancratic pancratical pancratically pancration pancratism pancratist pancratists pancratium pancratiums pancreas pancreases pancreatalgia pancreatectomies pancreatectomize pancreatectomized pancreatectomy pancreatemphraxis pancreathelcosis pancreatic pancreaticoduodenal pancreaticoduodenostomy pancreaticogastrostomy pancreaticosplenic pancreatin pancreatins pancreatism pancreatitic pancreatitides pancreatitis pancreatitises pancreatization pancreatize pancreatoduodenectomy pancreatoenterostomy pancreatogenic pancreatogenous pancreatoid pancreatolipase pancreatolith pancreatomy pancreatoncus pancreatopathy pancreatorrhagia pancreatotomies pancreatotomy pancreectomy pancreozymin pancreozymins panctia pancyclopedic pancytopenia pancytopenias pand panda pandaemonium pandaemoniums pandal pandan pandanaceae pandanaceous pandanales pandani pandanus pandanuses pandar pandaram pandared pandaress pandaresses pandaric pandaring pandarism pandarisms pandarous pandars pandarus pandas pandation pandations pandava pandean pandect pandectist pandectists pandects pandemia pandemian pandemias pandemic pandemicity pandemics pandemoniac pandemoniacal pandemonian pandemonic pandemonism pandemonium pandemoniums pandemy pandenominational pander panderage pandered panderer panderers panderess panderesses pandering panderise panderism panderisms panderize panderly pandermite pandermites panderous panders pandership pandestruction pandiabolism pandiculation pandiculations pandied pandies pandion pandionidae pandit pandita pandits pandle pandlewhew pandoor pandoors pandora pandoras pandore pandores pandour pandoura pandours pandowdies pandowdy pandrop pandrops pands pandura panduras pandurate pandurated pandure panduriform pandy pandybat pandying pane panecclesiastical paned panegoism panegoisms panegoist panegyre panegyric panegyrica panegyrical panegyrically panegyricize panegyricon panegyricons panegyrics panegyricum panegyries panegyris panegyrise panegyrised panegyrises panegyrising panegyrist panegyrists panegyrize panegyrized panegyrizer panegyrizes panegyrizing panegyry paneities paneity panel panela panelation panelboard paneled paneler paneless paneling panelings panelist panelists panellation panelled panelling panellings panellist panellists panels panelwise panelwork panencephalitis panentheism panentheisms panentheist panentheists panes panesthesia panesthesias panesthetic panetela panetelas panetella panetellas panetiere panettone panettones panettoni paneulogism panfil panfish panfishes panfried panfries panfry panfrying panful panfuls pang panga pangaea pangamic pangamies pangamous pangamously pangamy pangane pangara pangas pangasi pangea panged pangen pangene pangenes pangeneses pangenesis pangenetic pangenetically pangenic pangens pangerang pangful pangi panging pangless panglessly panglima pangloss pangolin pangolins pangram pangrammatic pangrammatist pangrammatists pangrams pangs panguingue panguingui pangyrical panhandle panhandled panhandler panhandlers panhandles panhandling panharmonic panharmonicon panharmonicons panhas panhead panheaded panhellenic panhellenion panhellenions panhellenium panhelleniums panhematopenia panhidrosis panhuman panhygrous panhyperemia panhypopituitarism panhysterectomy panic panical panically panicful panichthyophagous panick panicked panickier panickiest panickiness panicking panickings panicks panicky panicle panicled panicles paniclike panicmonger panicmongering panicmongers paniconograph paniconographic paniconography panics paniculate paniculated paniculately paniculitis panicum panicums panidiomorphic panidrosis panier paniers panification panifications panim panime panimmunity panims paning panini panino paniolo panion panipat panisc panisca paniscs paniscus panisic panisk panisks panislam panislamic panislamism panislamisms panislamist panislamists panislams panivorous panjabi panjandarum panjandarums panjandra panjandrum panjandrums pank pankin pankration panleucopenia panleucopenias panleukopenia panleukopenias panlogical panlogism panlogisms panlogist panlogistic panlogistical panlogistically panman panmelodicon panmelodion panmerism panmeristic panmictic panmixes panmixia panmixias panmixis panmixises panmixy panmnesia panmug panmyelophthisis pannade pannag pannage pannages pannam pannationalism panne panned pannel pannellation pannelled panner panners pannery pannes panneuritic panneuritis pannick pannicks pannicle pannicles pannicular panniculi panniculitis panniculus panniculuses pannier panniered pannierman panniers pannikel pannikell pannikells pannikels pannikin pannikins panning pannings pannose pannosely pannum pannus pannuscorium pannuses panocha panochas panoche panoches panococo panofsky panoistic panomphaean panomphaic panomphean panomphic panonychus panophobia panophobias panophthalmia panophthalmias panophthalmitis panophthalmitises panoplied panoplies panoplist panoply panoplying panoptic panoptical panopticon panopticons panoram panorama panoramas panoramic panoramical panoramically panoramist panornithic panorpa panorpian panorpid panosteitis panostitis panotitis panotype panouchi panowie panpathy panpharmacon panpharmacons panphenomenalism panphobia panpipe panpipes panplegia panpneumatism panpolism panpsychic panpsychism panpsychisms panpsychist panpsychistic panpsychists pans panscientist pansciolism pansciolist pansclerosis pansclerotic panse pansexism pansexual pansexualism pansexualisms pansexualist pansexualists pansexualities pansexuality pansexualize panshard panside pansideman pansied pansiere pansies pansified pansinuitis pansinusitis pansit pansmith pansophic pansophical pansophically pansophies pansophism pansophisms pansophist pansophists pansophy panspermatic panspermatism panspermatisms panspermatist panspermatists panspermia panspermias panspermic panspermies panspermism panspermisms panspermist panspermists panspermy pansphygmograph panstereorama pansy pansyish pansylike pant pantable pantables pantachromatic pantacosm pantagamies pantagamy pantagogue pantagraph pantagraphic pantagraphical pantagraphs pantagruel pantagruelian pantagruelion pantagruelism pantalan pantaleon pantaleons pantalet pantaletless pantalets pantalette pantaletted pantalettes pantalgia pantalon pantalone pantalones pantalons pantaloon pantalooned pantalooneries pantaloonery pantaloons pantameter pantamorph pantamorphia pantamorphic pantanemone pantanencephalia pantanencephalic pantaphobia pantarbe pantarchy pantas pantascope pantascopic pantatrophia pantatrophy pantatype pantdress pantdresses pantechnic pantechnicon pantechnicons panted pantelegraph pantelegraphy panteleologism pantelephone pantelephonic pantellerite panter panterer panters panthea pantheic pantheism pantheisms pantheist pantheistic pantheistical pantheistically pantheists panthelematism panthelism panthenol panthenols pantheologies pantheologist pantheologists pantheology pantheon pantheonic pantheonisation pantheonise pantheonization pantheonize pantheons panther panthera pantheress pantheresses pantherine pantherish pantherlike panthers pantherwood pantheum pantie panties pantihose pantile pantiled pantiles pantiling pantilings pantine pantines panting pantingly pantings pantisocracies pantisocracy pantisocrat pantisocratic pantisocratical pantisocratist pantisocratists pantisocrats pantle pantler pantlers panto pantochrome pantochromic pantochromism pantochronometer pantod pantoffle pantoffles pantofle pantofles pantoganglitis pantogelastic pantoglossical pantoglot pantoglottism pantograph pantographer pantographers pantographic pantographical pantographically pantographies pantographs pantography pantoiatrical pantologic pantological pantologist pantology pantomancer pantomania pantometer pantometric pantometrical pantometry pantomime pantomimed pantomimer pantomimes pantomimic pantomimical pantomimically pantomimicry pantomiming pantomimish pantomimist pantomimists pantomimus pantomnesia pantomnesic pantomorph pantomorphia pantomorphic panton pantonal pantonality pantons pantoon pantopelagian pantophagic pantophagies pantophagist pantophagists pantophagous pantophagy pantophile pantophobia pantophobias pantophobic pantophobous pantoplethora pantopod pantopragmatic pantopragmatics pantopterous pantos pantoscope pantoscopes pantoscopic pantosophy pantostomate pantostomatous pantostome pantotactic pantothen pantothenate pantothenates pantothenic pantothere pantotheria pantotherian pantotype pantoufle pantoufles pantoum pantoums pantries pantropic pantropical pantropically pantry pantrymaid pantrymaids pantryman pantrymen pantrywoman pants pantsuit pantsuited pantsuits pantun pantuns panty pantyhose pantyliner pantywaist pantywaists panuelo panuelos panung panure panurge panurgic panurgy panus panyar panzer panzers panzoism panzootia panzootic panzooty paoli paolo paon paopao pap papa papability papable papabot papabote papacies papacy papadam papadams papadom papadoms papadum papadums papagallo papagay papagayo papaia papain papains papaio papal papalisation papalise papalised papaliser papalises papalising papalism papalisms papalist papalistic papalists papality papalization papalize papalized papalizer papalizes papalizing papally papaloi papalonna papalty papane papaphobia papaphobist papaprelatical papaprelatist papaprelatists paparazzi paparazzo paparchical paparchy papas papaship papaver papaveraceae papaveraceous papaverales papaverin papaverine papaverines papaverous papaw papaws papaya papayaceous papayan papayas papayotin papboat pape papeete papegay papelera papeleras papelon papelonne paper paperasserie paperback paperbacked paperbacking paperbacks paperbark paperbarks paperboard paperboards paperbound paperbounds paperboy paperboys paperclip paperclips papercutting papered paperer paperers paperful papergirl papergirls paperhanger paperhangers paperhanging paperhangings paperier paperiest paperiness paperinesses papering paperings paperknife paperknives paperless paperlike papermaker papermakers papermaking papermakings papermouth papern papers papershell paperware paperwares paperweight paperweights paperwork paperworks papery papes papess papeterie papeteries papey paphian paphians paphiopedilum papicolar papicolist papier papilio papilionaceae papilionaceous papilionid papilionine papilionoid papilionoideae papilios papilla papillae papillar papillary papillate papillated papillectomy papilledema papilliferous papilliform papillitis papillitises papilloadenocystoma papillocarcinoma papilloedema papilloma papillomas papillomata papillomatosis papillomatous papillomavirus papillomaviruses papillon papillons papilloretinitis papillosarcoma papillose papillosity papillote papillotes papillous papillulate papillule papillules papingo papio papion papiopio papish papisher papishers papishes papism papisms papist papistic papistical papistically papistlike papistly papistries papistry papists papize papless paplike papmeat papolater papolatrous papolatry papoose papooseroot papooses papoosh papoula papovavirus papovaviruses pappa pappadam pappadams pappadom pappadoms pappain papped pappenheimer pappescent pappi pappier pappies pappiest pappiferous pappiform papping pappoose pappooses pappose pappous pappox pappus pappuses pappy pappyri papreg paprica papricas paprika paprikas papriks paprilus paps papua papuan papuans papula papulae papulan papular papulate papulated papulation papulations papule papules papuliferous papuloerythematous papulopustular papulopustule papulose papulosquamous papulous papulovesicular papyr papyraceous papyral papyrean papyri papyrian papyrin papyrine papyritious papyrocracy papyrograph papyrographer papyrographic papyrography papyrological papyrologies papyrologist papyrologists papyrology papyrophobia papyroplastics papyrotamia papyrotint papyrotype papyrus papyruses paquet par para paraaminobenzoic parabanate parabanic parabaptism parabaptisms parabaptization parabasal parabases parabasic parabasis parabema parabemata parabematic parabenzoquinone parabien parabioses parabiosis parabiotic parabiotically parablast parablastic parablasts parable parabled parablepses parablepsia parablepsies parablepsis parablepsy parableptic parables parabling parabola parabolae parabolanus parabolanuses parabolas parabole paraboles parabolic parabolical parabolicalism parabolically parabolicness paraboliform parabolisation parabolise parabolised parabolises parabolising parabolist parabolists parabolization parabolize parabolized parabolizer parabolizes parabolizing paraboloid paraboloidal paraboloids parabomb parabotulism parabrake parabrakes parabranchia parabranchial parabranchiate parabulia parabulic paracanthosis paracarmine paracasein paracaseinate paracelsian paracenteses paracentesis paracentral paracentric paracentrical paracephalus paracerebellar paracetaldehyde paracetamol paracetamols parachaplain paracheirodon paracholia parachor parachordal parachors parachrea parachroia parachroma parachromatism parachromatophorous parachromatopsia parachromatosis parachrome parachromoparous parachromophoric parachromophorous parachronism parachronisms parachronistic parachrose parachute parachuted parachuter parachuters parachutes parachutic parachuting parachutism parachutist parachutists paracium paraclete paracletes paracmasis paracme paracmes paracoele paracoelian paracolitis paracolon paracolpitis paracolpium paracondyloid paracone paraconic paraconid paraconscious paracorolla paracotoin paracoumaric paracresol paracrostic paracrostics paracuses paracusia paracusic paracusis paracyanogen paracyanogens paracyeses paracyesis paracymene paracystic paracystitis paracystium parada parade paraded paradeful paradeless paradelike paradenitis paradental paradentitis paradentium parader paraderm paraders parades paradiastole paradiazine paradichlorbenzene paradichlorbenzol paradichlorobenzene paradichlorobenzenes paradichlorobenzol paradiddle paradiddles paradidym paradidymal paradidymis paradigm paradigmatic paradigmatical paradigmatically paradigmatize paradigms parading paradingly paradiplomatic paradisaeidae paradisaic paradisaical paradisaically paradisal paradisally paradise paradisean paradises paradisiac paradisiacal paradisiacally paradisial paradisian paradisic paradisical parado paradoctor paradoctors parador paradores paradors parados paradoses paradox paradoxal paradoxer paradoxers paradoxes paradoxial paradoxic paradoxical paradoxicalism paradoxicalities paradoxicality paradoxically paradoxicalness paradoxicalnesses paradoxician paradoxidian paradoxies paradoxism paradoxist paradoxists paradoxographer paradoxographical paradoxologies paradoxology paradoxure paradoxures paradoxurine paradoxurus paradoxy paradromic paradrop paradropped paradropping paradrops parae paraeneses paraenesis paraenesize paraenetic paraenetical paraengineer paraesthesia paraesthesias paraesthetic paraffin paraffine paraffined paraffiner paraffines paraffinic paraffining paraffinise paraffinize paraffinized paraffinizing paraffinoid paraffins paraffiny paraffle paraffles parafle parafles parafloccular paraflocculus parafoil parafoils paraform paraformaldehyde paraformaldehydes paraforms parafunction paragammacism paraganglion paragaster paragastral paragastric paragastrula paragastrular parage parageneses paragenesia paragenesias paragenesis paragenetic paragenetically paragenic paragerontic parages parageusia parageusic parageusis paragglutination paraglenal paraglider paragliders paragliding paraglidings paraglobin paraglobulin paraglossa paraglossae paraglossal paraglossate paraglossia paraglycogen paragnath paragnathism paragnathisms paragnathous paragnaths paragnathus paragneiss paragnoses paragnosia paragnosis paragoge paragoges paragogic paragogical paragogically paragogize paragogue paragogues paragon paragoned paragonimiasis paragoning paragonite paragonites paragonitic paragonless paragons paragram paragrammatist paragrammatists paragrams paragraph paragraphed paragrapher paragraphers paragraphia paragraphias paragraphic paragraphical paragraphically paragraphing paragraphise paragraphism paragraphist paragraphistical paragraphists paragraphize paragraphs paraguay paraguayan paraguayans parah paraheliotropic paraheliotropism paraheliotropisms parahematin parahemoglobin parahepatic parahopeite parahormone parahydrogen parahypnosis paraiba parainfluenza parainfluenzas paraison parajournalism parajournalisms parajournalist parajournalistic parajournalists parakeet parakeets parakeratosis parakilya parakinesia parakinesis parakinetic parakite parakites parakiting parakitings paralactate paralalia paralalias paralambdacism paralambdacismus paralanguage paralanguages paralaurionite paraldehyde paraldehydes parale paralectotype paralegal paralegals paraleipomena paraleipomenon paraleipses paraleipsis paralepses paralepsis paralexia paralexias paralexic paralgesia paralgesic paralian paralichthys paralimnion paralinguistic paralinguistics paralinin paralipomena paralipomenon paralipses paralipsis paralithodes paralitical parallactic parallactical parallactically parallax parallaxes parallel parallelable paralleled parallelepiped parallelepipeda parallelepipedal parallelepipedic parallelepipedon parallelepipedonal parallelepipedous parallelepipeds paralleler parallelinervate parallelinerved parallelinervous paralleling parallelings parallelisation parallelise parallelised paralleliser parallelises parallelising parallelism parallelisms parallelist parallelistic parallelists parallelith parallelization parallelize parallelized parallelizer parallelizes parallelizing parallelled parallelless parallelling parallelly parallelodrome parallelodromous parallelogram parallelogrammatic parallelogrammatical parallelogrammic parallelogrammical parallelograms parallelograph parallelometer parallelopiped parallelopipeda parallelopipedon parallelopipeds parallelotropic parallelotropism parallels parallelwise parallepiped parallepipedous paralogia paralogias paralogic paralogical paralogician paralogies paralogise paralogised paralogises paralogising paralogism paralogisms paralogist paralogistic paralogists paralogize paralogized paralogizes paralogizing paralogy paraluminite paralympic paralympics paralysation paralysations paralyse paralysed paralysedly paralyser paralysers paralyses paralysing paralysingly paralysis paralytic paralytica paralytical paralytically paralytics paralyzant paralyzation paralyzations paralyze paralyzed paralyzedly paralyzer paralyzers paralyzes paralyzing paralyzingly param paramaecia paramaecium paramagnet paramagnetic paramagnetically paramagnetism paramagnetisms paramagnets paramandelic paramaribo paramarine paramastigate paramastitis paramastoid paramastoids paramatta paramattas paramecia paramecium parameciums paramedian paramedic paramedical paramedicals paramedico paramedicos paramedics paramelaconite paramenia paramenstrua paramenstruum paramenstruums parament paramenta paraments paramere parameric parameron paramese parameses paramesial parameter parameterisable parameterisation parameterisations parameterise parameterised parameterises parameterising parameterizable parameterization parameterizations parameterize parameterized parameterizes parameterizing parameterless parameters parametral parametric parametrical parametrically parametrisation parametrisations parametrise parametrised parametrises parametrising parametritic parametritis parametrium parametrization parametrizations parametrize parametrized parametrizes parametrizing paramid paramide paramilitaries paramilitary paramimia paramine paramiographer paramita paramitome paramnesia paramnesias paramo paramoecia paramoecium paramorph paramorphia paramorphic paramorphine paramorphines paramorphism paramorphisms paramorphosis paramorphous paramorphs paramos paramouncies paramouncy paramount paramountcies paramountcy paramountly paramountness paramounts paramountship paramour paramours paramuthetic paramyelin paramylum paramylums paramyoclonus paramyosin paramyosinogen paramyotone paramyotonia paramyxovirus paramyxoviruses parana paranasal paranatellon parandrus paranema paranematic paranephric paranephritic paranephritis paranephroi paranephros paranepionic paranete paranetes parang parangi parangs paranitraniline paranitroaniline paranitroanilines paranitrosophenol paranja paranoea paranoeac paranoeas paranoeic paranoeics paranoia paranoiac paranoiacally paranoiacs paranoias paranoic paranoically paranoics paranoid paranoidal paranoidism paranoids paranomia paranormal paranormalities paranormality paranormally paranormals paranosic paranotions paranthelia paranthelion paranthias paranthracene paranthropus paranthropuses paranuclear paranucleate paranuclei paranucleic paranuclein paranucleinic paranucleus paranym paranymph paranymphal paranymphs paranyms parao paraoperation parapareses paraparesis paraparetic parapathia parapathy parapdia parapegm parapegma parapegmata parapente parapenting parapentings paraperiodic parapet parapetalous parapeted parapetless parapets paraph paraphasia paraphasias paraphasic paraphed paraphemia paraphenetidine paraphenylene paraphenylenediamine parapherna paraphernal paraphernalia paraphernalian paraphernalias paraphia paraphilia paraphiliac paraphiliacs paraphilias paraphilic paraphilics paraphimoses paraphimosis paraphing paraphonia paraphoniac paraphonias paraphonic paraphototropism paraphragm paraphrasable paraphrase paraphrased paraphraser paraphrasers paraphrases paraphrasia paraphrasian paraphrasing paraphrasis paraphrasist paraphrast paraphraster paraphrastic paraphrastical paraphrastically paraphrasts paraphraxes paraphraxia paraphraxias paraphraxis paraphrenia paraphrenias paraphrenic paraphrenitis paraphronesis paraphrosyne paraphs paraphyllia paraphyllium paraphysate paraphyses paraphysical paraphysiferous paraphysis parapineal paraplasis paraplasm paraplasmic paraplastic paraplastin paraplectic paraplegia paraplegias paraplegic paraplegics paraplegy parapleuritis parapleurum parapod parapodia parapodial parapodium parapophyses parapophysial parapophysis parapphyllia parapraxes parapraxia parapraxis paraproctitis paraproctium paraprofessional paraprofessionals paraprostatitis paraprotein parapsidal parapsidan parapsis parapsychic parapsychical parapsychism parapsychisms parapsychological parapsychologically parapsychologies parapsychologist parapsychologists parapsychology parapsychoses parapsychosis paraptera parapteral parapteron parapterum paraquadrate paraquadrates paraquat paraquats paraquet paraquets paraquinone paraquito paraquitos pararectal pararek parareka pararhotacism pararhyme pararhymes pararosaniline pararosanilines pararosolic pararthria pararthrias paras parasaboteur parasail parasailed parasailing parasailings parasails parasalpingitis parasang parasangs parascalops parascender parascenders parascending parascendings parascene parascenia parascenium parasceve parasceves paraschematic parascience parasciences parasecretion paraselenae paraselene paraselenic parasemidin parasemidine parasensory parasexual parasexualities parasexuality parashah parashahs parashioth parashot parashoth parashurama parasigmatism parasigmatismus parasitaemia parasitaemias parasital parasitary parasitaxus parasite parasitelike parasitemia parasites parasithol parasitic parasitical parasitically parasiticalness parasiticalnesses parasiticidal parasiticide parasiticides parasiticidic parasitics parasiticus parasitisation parasitise parasitised parasitises parasitising parasitism parasitisms parasitization parasitizations parasitize parasitized parasitizes parasitizing parasitogenic parasitoid parasitoidism parasitoids parasitologic parasitological parasitologically parasitologies parasitologist parasitologists parasitology parasitophobia parasitoses parasitosis parasitotrope parasitotropic parasitotropism parasitotropy paraskenion paraskiing parasnia parasol parasoled parasolette parasols paraspecific parasphenoid parasphenoidal parasphenoids paraspotter paraspy parastades parastas parastatal parastatic parastemon parastemonal parasternal parasternum parastichies parastichy parastyle parasubphonate parasubstituted parasuchian parasuicide parasuicides parasympathetic parasympathetics parasympathomimetic parasynapsis parasynaptic parasynaptist parasyndesis parasynesis parasynetic parasynovitis parasyntheses parasynthesis parasyntheta parasynthetic parasyntheton parasyphilis parasyphilitic parasyphilosis parasystole paratactic paratactical paratactically paratartaric parataxes parataxic parataxis parate paraterminal paratha parathas parathelypteris paratherian paratheses parathesis parathetic parathion parathions parathormone parathormones parathymic parathyrin parathyroid parathyroidal parathyroidectomies parathyroidectomise parathyroidectomised parathyroidectomising parathyroidectomize parathyroidectomized parathyroidectomizing parathyroidectomy parathyroids parathyroprival parathyroprivia parathyroprivic paratitla paratitles paratitlon paratoloid paratoluic paratoluidine paratomial paratomium paratonic paratonically paratonnerre paratorium paratory paratracheal paratragedia paratragoedia paratransversan paratrichosis paratrimma paratriptic paratroop paratrooper paratroopers paratroops paratrophic paratrophy paratuberculin paratuberculosis paratuberculous paratungstate paratungstic paratype paratypes paratyphlitis paratyphoid paratyphoids paratypic paratypical paratypically paraunter parava paravaginitis paravail paravane paravanes paravant paravaunt paravauxite paravent paravertebral paravesical paravidya parawalker parawalkers parawing parawings paraxial paraxially paraxon paraxonic paraxylene parazoa parazoan parazoans parazonium parazoon parbake parbaked parbakes parbaking parbleu parboil parboiled parboiling parboils parbreak parbreaked parbreaking parbreaks parbuckle parbuckled parbuckles parbuckling parc parcae parcel parceled parceling parcellary parcellate parcellation parcelled parcelling parcellization parcellize parcelment parcels parcelwise parcenaries parcenary parcener parceners parcenership parch parchable parched parchedly parchedness parchednesses parcheesi parcheesis parchemin parcher parches parchesi parchesis parching parchingly parchisi parchisis parchment parchmenter parchmentise parchmentised parchmentises parchmentising parchmentize parchmentized parchmentizes parchmentizing parchmentlike parchments parchmenty parchy parcidenta parcidentate parciloquy parcimonies parcimony parclose parcloses parcook pard pardah pardahs pardal pardale pardales pardalis pardalises pardalote pardalotes pardals pardao pardaos parde parded pardee pardesi pardhan pardi pardie pardieu pardine pardner pardners pardnomastic pardo pardon pardonable pardonableness pardonablenesses pardonably pardoned pardonee pardoner pardoners pardoning pardonings pardonless pardonmonger pardons pards pardy pare parecious pareciously pareciousness parecism parecisms parecy pared paregal paregmenon paregoric paregorical paregorics pareiasaurian pareil pareira pareiras pareja parel parelectronomic parelectronomy parella parellas parelle parelles parellic paren parencephala parencephalic parencephalon parencephalons parenchym parenchyma parenchymal parenchymas parenchymata parenchymatic parenchymatitis parenchymatous parenchymatously parenchyme parenchymous pareneses parenesis parenesize parenetic parenetical parennece parennir parens parent parentage parentages parental parentalism parentality parentally parentate parentation parentdom parented parentela parentele parentelic parenteral parenterally parentheses parenthesis parenthesise parenthesised parenthesises parenthesising parenthesize parenthesized parenthesizes parenthesizing parenthetic parenthetical parentheticality parenthetically parentheticalness parenthood parenthoods parenticide parenties parenting parentings parentis parentless parentlike parents parentship parenty pareo pareos parepididymal parepididymis parepigastric parer parerethesis parerga parergal parergic parergon parergons parergy parers pares pareses paresis paresthesia paresthesias paresthesis paresthetic parethmoid paretic paretically paretics paretta pareu pareunia pareus parev pareve parfait parfaits parfey parfield parfilage parfleche parfleches parflesh parfleshes parfocal parfocalise parfocalities parfocality parfocalize parfocalized parfocalizes parfocalizing parfum parfumerie parfumeur parfumoir pargana parganas pargasite pargasites parge pargeboard parged parges parget pargeted pargeter pargeters pargeting pargetings pargets pargetted pargetting pargettings parging pargings pargo pargos pargyline pargylines parhelia parheliacal parhelic parhelion parhelnm parhomologous parhomology parhypate parhypates pari pariah pariahdom pariahism pariahs pariahship parial parials parian parians parica paridae paridigitate paridrosis paries pariet parietal parietales parietals parietaria parietary parietes parietofrontal parietojugal parietomastoid parietoquadrate parietosphenoid parietosphenoidal parietosplanchnic parietosquamosal parietotemporal parietovaginal parietovisceral parify parigenin pariglin parilla parillin parimutuel parimutuels parine paring parings paripinnate paris parischan parischane parischanes parischans parises parish parished parishen parishens parishes parishional parishionally parishionate parishioner parishioners parishionership parishwide parisia parisian parisians parisienne parisis parisite parisology parison parisonic parisons paristhmic paristhmion parisyllabic parisyllabical parities paritor paritors parity parivincular parjanya parji park parka parkade parkades parkas parked parkee parkees parker parkeriaceae parkers parkersburg parkette parkettes parki parkia parkie parkier parkies parkiest parkin parking parkings parkins parkinson parkinsonia parkinsonian parkinsonism parkinsonisms parkis parkish parkland parklands parkleaves parklike parkly parks parkward parkwards parkway parkways parky parl parlamento parlance parlances parlando parlante parlaries parlary parlatory parlay parlayed parlayer parlayers parlaying parlays parle parled parlement parles parlesie parley parleyed parleyer parleyers parleying parleys parleyvoo parleyvooed parleyvooing parleyvoos parli parlia parliament parliamental parliamentarian parliamentarianism parliamentarianisms parliamentarians parliamentarily parliamentariness parliamentarism parliamentarisms parliamentarization parliamentarize parliamentary parliamenteer parliamenteering parliamenter parliamenting parliamentings parliaments parlies parling parlish parlor parlorish parlormaid parlormaids parlors parlour parlourish parlourmaid parlours parlous parlously parlousness parlousnesses parly parma parmacety parmacitie parmacities parmack parmak parmelia parmeliaceae parmeliaceous parmelioid parmentier parmesan parmesans parmigiana parmigiano parnas parnassia parnassiaceous parnassian parnassus parnel parnellism parnorpine paroarion paroarium paroccipital paroch parochetus parochial parochialic parochialis parochialisation parochialise parochialised parochialises parochialising parochialism parochialisms parochialist parochialists parochialities parochiality parochialization parochialize parochialized parochializes parochializing parochially parochialness parochian parochin parochine parochiner parochines parochins parode parodi parodiable parodial parodic parodical parodied parodies parodinia parodist parodistic parodistically parodists parodize parodoi parodontia parodontitia parodontitis parodontium parodos parodus parody parodying parodyproof paroecious paroeciously paroeciousness paroecism paroecy paroemia paroemiac paroemiacs paroemial paroemias paroemiographer paroemiographers paroemiographies paroemiography paroemiologies paroemiologist paroemiology paroicous parol parolable parole paroled parolee parolees paroler parolers paroles parolfactory paroli paroling parolist parols paromoeon paromologetic paromologia paromology paromphalocele paromphalocelic paronomasia paronomasial paronomasian paronomasias paronomasiastic paronomasies paronomastic paronomastical paronomastically paronomasy paronychia paronychial paronychias paronychium paronym paronymic paronymies paronymization paronymize paronymous paronyms paronymy paroophoric paroophoritis paroophoron parophrys paropsis paroptesis paroptic paroquet paroquets parorchid parorchis parorexia parosmia parosmias parosmic parosteal parosteitis parosteosis parostosis parostotic parostotis parotic parotid parotidean parotidectomies parotidectomy parotiditis parotiditises parotids parotis parotises parotitic parotitis parotitises parotoid parotoids parous parousia parousiamania parousias parovarian parovariotomy parovarium paroxazine paroxysm paroxysmal paroxysmalist paroxysmally paroxysmic paroxysmist paroxysms paroxytone paroxytones paroxytonic paroxytonize parp parpal parpane parpanes parped parpen parpend parpends parpens parpent parpents parping parpoint parpoints parps parquet parquetage parqueted parqueterie parqueting parquetries parquetry parquets parquetted parquetting parr parrah parrakeet parrakeets parral parrall parrals parramatta parramattas parred parrel parrels parrhesia parrhesias parrhesiastic parriable parricidal parricidally parricide parricided parricides parricidial parricidism parridge parridges parried parrier parriers parries parring parritch parritches parrock parrocked parrocking parrocks parroket parrokets parroque parroquet parroquets parrot parrotbeak parrotbill parroted parroter parroters parrotfish parrotfishes parrothood parrotia parroting parrotiopsis parrotise parrotism parrotize parrotlet parrotlike parrotries parrotry parrots parrotwise parroty parrs parry parrying pars parsable parse parsec parsecs parsed parsee parseeism parser parsers parses parsettensite parseval parsi parsifal parsiism parsimonies parsimonious parsimoniously parsimoniousness parsimoniousnesses parsimony parsing parsings parsley parsleyed parsleylike parsleys parsleywort parslied parsnep parsneps parsnip parsnips parson parsonage parsonages parsonarchy parsondom parsoned parsonese parsoness parsonet parsonhood parsonic parsonical parsonically parsoning parsonise parsonish parsonity parsonize parsonlike parsonly parsonolatry parsonology parsonry parsons parsonship parsonsite parsony part partable partage partakable partake partaken partaker partakers partakes partaking partakings partan partanfull partanhanded partans parte parted partedness parten parter parterre parterred parterres parters partes partheniad parthenian parthenic parthenium parthenocarpelly parthenocarpic parthenocarpical parthenocarpically parthenocarpies parthenocarpous parthenocarpy parthenocissus parthenogeneses parthenogenesis parthenogenetic parthenogenetically parthenogenic parthenogenitive parthenogenous parthenogeny parthenogone parthenogonidium parthenolatry parthenology parthenon parthenoparous parthenophobia parthenosperm parthenospore parthia parthian parti partial partialed partialise partialised partialises partialising partialism partialisms partialist partialistic partialists partialities partiality partialize partialized partializes partializing partially partialness partialnesses partials partiary partibilities partibility partible particate particeps participability participable participance participances participancy participant participantly participants participate participated participates participating participatingly participation participational participations participative participatively participator participators participatory participatress participial participiality participialization participialize participially participle participles particle particleboard particleboards particlecelerator particled particles particolored particoloured particular particularisation particularisations particularise particularised particulariser particularises particularising particularism particularisms particularist particularistic particularistically particularists particularities particularity particularization particularizations particularize particularized particularizer particularizers particularizes particularizing particularly particularness particularnesses particulars particulate particulates particule partie partied partier partiers parties partigen partile partim partimembered partimen partimento parting partings partinium partis partisan partisanise partisanism partisanize partisanly partisanry partisans partisanship partisanships partita partitas partite partition partitional partitionary partitioned partitioner partitioners partitioning partitionist partitionists partitionment partitionments partitions partitive partitively partitives partitura partiversal partivity partizan partizans partizanship partless partlet partlets partley partly partner partnered partnering partnerless partners partnership partnerships parto parton partons partook partridge partridgeberries partridgeberry partridgelike partridges partridgewood partridging parts partschinite partsong parture partures parturiate parturience parturiencies parturiency parturient parturients parturifacient parturifacients parturition parturitions parturitive partway partwork partworks party partyer partyers partygoer partygoers partying partyism partyisms partyist partykin partyless partymonger partyship parula parulas parulidae parulis parulises parumbilical parura paruras parure parures paruria parus parvanimities parvanimity parvati parve parveh parvenu parvenudom parvenue parvenues parvenuism parvenus parvicellular parviflorous parvifoliate parvifolious parvipotent parvirostrate parvis parviscient parvise parvises parvitude parvo parvolin parvoline parvolins parvos parvovirus parvoviruses parvule parvuli parvulus paryphodrome pas pasadena pasan pasang pascal pascals pasch pascha paschal paschalist paschals paschflower paschite pascoite pascola pascuage pascual pascuous pase pasear paseared pasearing pasears pasela paseng paseo paseos pases pasewa pasgarde pash pasha pashadom pashadoms pashalic pashalics pashalik pashaliks pashas pashaship pashed pashes pashim pashims pashing pashka pashm pashmina pashminas pashms pashto pasi pasigraphic pasigraphical pasigraphies pasigraphy pasilaly pasillo pasiphae pasis pask pasmo paso paspalum paspalums paspies paspy pasqueflower pasqueflowers pasquil pasquilant pasquilants pasquiler pasquilers pasquilic pasquillant pasquiller pasquillic pasquils pasquin pasquinade pasquinaded pasquinader pasquinaders pasquinades pasquinading pass passa passable passableness passablenesses passably passacaglia passacaglias passacaglio passade passades passado passadoes passados passage passageable passaged passager passages passageway passageways passagework passageworks passaggi passaggio passaging passagio passalid passalong passalongs passamaquody passament passamented passamenting passaments passamezzo passamezzos passangrahan passant passaree passata passatas passay passback passbacks passband passbands passbook passbooks passe passed passee passegarde passel passels passemeasure passemeasures passement passemented passementerie passementeries passementing passements passemezzo passen passenger passengers passepied passepieds passer passerby passeres passeridae passeriform passeriformes passerina passerine passerines passero passers passersby passes passewa passgang passibilities passibility passible passibleness passiblenesses passibly passiflora passifloraceae passifloraceous passifloras passim passimeter passimeters passing passingly passingness passings passion passional passionals passionaries passionary passionate passionated passionateless passionately passionateness passionatenesses passionates passionating passionative passionato passioned passionflower passionflowers passionfruit passionful passionfully passionfulness passioning passionist passionless passionlessly passionlessness passionlessnesses passionlike passionometer passionproof passions passiontide passionwise passionwort passir passival passivate passivated passivates passivating passivation passivations passivator passivators passive passively passiveness passivenesses passives passivisation passivism passivisms passivist passivists passivities passivity passivization passivize passivized passivizes passivizing passkey passkeys passless passman passmark passmen passment passmented passmenting passments passo passometer passout passouts passover passoverish passovers passpenny passport passportless passports passsaging passu passulate passulation passus passuses passway passwoman password passwords passworts passymeasure passé passée past pasta pastance pastances pastas paste pasteboard pasteboards pasteboardy pasted pastedness pastedown pastedowns pastel pastelike pastelist pastelists pastellist pastellists pastels paster pasterer pastern pasterned pasterns pasters pastes pasteup pasteups pasteur pasteurella pasteurellae pasteurellas pasteurellosis pasteurian pasteurisation pasteurisations pasteurise pasteurised pasteuriser pasteurisers pasteurises pasteurising pasteurism pasteurisms pasteurization pasteurizations pasteurize pasteurized pasteurizer pasteurizers pasteurizes pasteurizing pasticcci pasticci pasticcio pasticcios pastiche pastiches pasticheur pasticheurs pasticheuse pasticheuses pastie pastier pasties pastiest pastil pastile pastiled pastiling pastille pastilled pastilles pastilling pastils pastily pastime pastimer pastimes pastina pastinaca pastinas pastiness pastinesses pasting pastings pastis pastises pastler pastless pastmaster pastmasters pastness pastnesses pasto pastophor pastophorion pastophorium pastophorus pastor pastora pastorage pastoral pastorale pastoraled pastorales pastorali pastoraling pastoralisation pastoralise pastoralism pastoralisms pastoralist pastoralists pastorality pastoralization pastoralize pastoralized pastoralizing pastorally pastoralness pastoralnesses pastorals pastorate pastorates pastored pastorela pastoress pastorhood pastoria pastoring pastorise pastorised pastorising pastorita pastorium pastoriums pastorize pastorless pastorlike pastorling pastorly pastors pastorship pastorships pastose pastosity pastour pastourelle pastourelles pastrami pastramis pastries pastromi pastromis pastry pastrycook pastrycooks pastryman pasts pasturability pasturable pasturage pasturages pastural pasture pastured pastureland pasturelands pastureless pasturer pasturers pastures pasturewise pasturing pasty pasul pat pata pataca patacao patacas patache pataco patacoon patagia patagial patagiate patagium patagon patagonia patagonian pataka patamar patamars patana patand patao patapat pataphysical pataphysician pataphysicians pataphysics pataque patart patas patashte patata patavinity patavium patball patballer patballs patch patchable patchboard patchboards patchcock patchcocke patchcockes patchcord patched patcher patcheries patchers patchery patches patchhead patchier patchiest patchily patchiness patchinesses patching patchings patchleaf patchless patchocke patchockes patchouli patchoulies patchoulis patchouly patchstand patchwise patchword patchwork patchworks patchworky patchy patd pate pated patee patefaction patefy patel patella patellae patellar patellaroid patellas patellate patellectomies patellectomy patellidae patellidan patelliform patelline patellofemoral patelloid patellula patellulae patellulate paten patencies patency patener patens patent patentabilities patentability patentable patentably patente patented patentee patentees patenter patenters patenting patently patentness patentor patentors patents patera paterae patercove patercoves paterero patereroes patereros paterfamiliar paterfamiliarly paterfamilias paterfamiliases pateria pateriform paterissa paternal paternalise paternalism paternalisms paternalist paternalistic paternalistically paternalists paternality paternalize paternally paternalness paternities paternity paternoster paternosterer paternosters pates patesi patesiate patetico patgia path pathan pathbreaker pathbreaking pathed pathema pathematic pathematically pathematology pathenogenicity pathetic pathetical pathetically patheticalness patheticate patheticly patheticness pathetics pathetism pathetist pathetize pathfarer pathfind pathfinder pathfinders pathfinding pathfindings pathic pathicism pathics pathing pathless pathlessness pathlessnesses pathlet pathment pathname pathnames pathoanatomical pathoanatomy pathobiological pathobiologies pathobiologist pathobiology pathochemistry pathocure pathodontia pathoformic pathogen pathogene pathogeneses pathogenesis pathogenesy pathogenetic pathogenic pathogenically pathogenicities pathogenicity pathogenies pathogenous pathogens pathogeny pathogerm pathogermic pathognomic pathognomical pathognomies pathognomonic pathognomonical pathognomonically pathognomy pathognostic pathographic pathographical pathographies pathography pathol pathologic pathological pathologically pathologicoanatomic pathologicoanatomical pathologicoclinical pathologicohistological pathologicopsychological pathologies pathologist pathologists pathology patholysis patholytic pathomania pathometabolism pathometer pathomimesis pathomimicry pathomorphologic pathomorphological pathomorphology pathoneurosis pathonomia pathonomy pathophobia pathophobias pathophoresis pathophoric pathophorous pathophysiologic pathophysiological pathophysiologies pathophysiology pathoplastic pathoplastically pathopoeia pathopoiesis pathopoietic pathopsychology pathopsychosis pathoradiography pathos pathoses pathosis pathosocial paths pathway pathwayed pathways pathy patia patible patibulary patibulate patibulated patience patiences patiency patient patiented patienter patientest patienting patientless patiently patientness patients patin patina patinae patinaed patinas patinate patinated patinates patinating patination patinations patine patined patines patining patinize patinized patinizes patinizing patinous patins patio patios patise patisserie patisseries patissier patissiers patly patness patnesses patnidar pato patois patola patonce patootie patooties patresfamilias patria patriae patrial patrialisation patrialisations patrialise patrialised patrialises patrialising patrialism patrialisms patrialities patriality patrialization patrializations patrialize patrialized patrializes patrializing patrials patriarch patriarchal patriarchalism patriarchalisms patriarchally patriarchate patriarchates patriarchdom patriarched patriarchess patriarchic patriarchical patriarchically patriarchies patriarchism patriarchisms patriarchist patriarchs patriarchship patriarchy patriate patriated patriates patriating patriation patriations patrice patricentric patrices patricia patrician patricianhood patricianism patricianly patricians patricianship patriciate patriciates patricidal patricide patricides patrick patricks patriclan patriclinic patriclinies patriclinous patricliny patrico patricoes patridge patrifocal patrifocalities patrifocality patrikin patrilateral patrilineage patrilineages patrilineal patrilineally patrilinear patrilinearly patrilinies patriliny patrilocal patrilocality patrilocally patrimonial patrimonially patrimonies patrimonium patrimony patrin patriolatry patriot patrioteer patriotess patriotic patriotical patriotically patriotics patriotism patriotisms patriotly patriots patriotship patripassian patripotestal patrisib patrist patristic patristical patristically patristicalness patristicism patristicisms patristics patrix patrixes patrizate patrization patrocinate patrocinium patroclinic patroclinies patroclinous patrocliny patroclus patrogenesis patroiophobia patrol patrole patrolled patroller patrollers patrolling patrollotism patrolman patrolmen patrologic patrological patrologies patrologist patrology patrols patrolwoman patrolwomen patron patronage patronaged patronages patronaging patronal patronate patrondom patroness patronesses patronessship patronisable patronisation patronisations patronise patronised patroniser patronisers patronises patronising patronisingly patronite patronizable patronization patronizations patronize patronized patronizer patronizers patronizes patronizing patronizingly patronless patronly patronne patronnes patronomatology patrons patronship patronym patronymic patronymically patronymics patronymy patroon patroonry patroons patroonship patroonships patroullart patruity pats patsies patsy patt patta pattable pattae pattamar pattamars pattara patte patted pattee patten pattened pattener pattening pattens patter pattered patterer patterers pattering patterings patterist pattern patternable patterned patterner patterning patternings patternise patternize patternless patternlike patternmaker patternmakers patternmaking patternmakings patterns patternwise patterny patters pattes pattidari pattie patties patting pattinsonize pattle pattles pattoo pattu patty pattypan pattypans pattée patu patuca patulent patulin patulins patulous patulously patulousness patulousnesses patwari patwin paty patzer patzers pau paua pauas paucal pauciarticulate pauciarticulated paucidentate pauciflorous paucifoliate paucifolious paucify paucijugate paucilocular pauciloquent pauciloquently pauciloquy paucinervate paucipinnate pauciplicate pauciradiate pauciradiated paucispiral paucispirated paucities paucity paucitypause paughtier paughtiest paughty paukpan pauky paul paular pauldron pauldrons paulian paulician paulie paulin pauline paulins paulism paulist paulite paulopast paulopost paulospore paulownia paulownias pauls paunce paunces paunch paunche paunched paunches paunchful paunchier paunchiest paunchily paunchiness paunchinesses paunching paunchy paup pauper pauperage pauperate pauperdom paupered pauperess pauperesses paupering pauperis pauperisation pauperisations pauperise pauperised pauperiser pauperises pauperising pauperism pauperisms pauperitic pauperization pauperizations pauperize pauperized pauperizer pauperizes pauperizing paupers paupiette paupiettes pauraque paurometabolic paurometabolism paurometabolous paurometaboly pauropod pauropoda pauropodous pauropods pausably pausai pausal pausalion pausation pause paused pauseful pausefully pauseless pauselessly pausement pauser pausers pauses pausing pausingly pausings paussid paut pauxi pav pava pavade pavage pavages pavan pavane pavanes pavanne pavans pave paved paveed pavement pavemental pavemented pavementing pavements paven pavens paver pavers paves pavestone pavia pavid pavidity pavier pavies pavilion pavilioned pavilioning pavilions pavillon pavillons pavin paving pavings pavingstone pavingstones pavins pavior paviors paviour paviours pavis pavisade pavisado pavise paviser pavisers pavises pavisor pavisse pavisses pavlov pavlova pavlovas pavlovian pavo pavois pavonated pavonazzetto pavonazzo pavonazzos pavone pavones pavonia pavonian pavonine pavonize pavy paw pawa pawas pawaw pawawed pawawing pawaws pawdite pawed pawer pawers pawing pawk pawkery pawkier pawkiest pawkily pawkiness pawkinesses pawkrie pawks pawky pawl pawls pawmark pawn pawnable pawnage pawnages pawnbroker pawnbrokerage pawnbrokeress pawnbrokering pawnbrokers pawnbrokery pawnbroking pawnbrokings pawnce pawnces pawned pawnee pawnees pawner pawners pawnie pawning pawnor pawnors pawns pawnshop pawnshops pawnticket pawntickets pawpaw pawpaws paws pax paxes paxilla paxillae paxillar paxillary paxillate paxilli paxilliferous paxilliform paxillose paxillus paxiuba paxiubas paxto paxwax paxwaxes pay payability payable payableness payables payably payback paybacks paybox paycheck paychecks paycheques payday paydays paye payed payee payees payen payena payeny payer payers payess payfone payfones paygrade paygrades paying payings payload payloads paymaster paymasters paymastership payment payments paymistress paynim paynimhood paynimrie paynimries paynimry paynims paynize payoff payoffs payola payolas payong payor payors payout payouts payphone payphones payroll payrolls pays paysage paysages paysagist paysagists paysanne paysd paysheet paysheets payslip payslips paystub paystubs payt paytamine payware paywares payyetan pazaree pazazz pazazzes pazzazz pazzazzes pb pbs pbx pbxes pc pcf pci pcm pcp pct pd pdl pdn pdq pe pea peaberries peaberry peabird peabody peabrain peabush peace peaceable peaceableness peaceablenesses peaceably peacebreaker peacebreaking peaced peaceful peacefuller peacefullest peacefully peacefulness peacefulnesses peacekeeper peacekeepers peacekeeping peacekeepings peaceless peacelessness peacelessnesses peacelike peacemake peacemaker peacemakers peacemaking peacemakings peaceman peacemonger peacemongering peacenik peaceniks peaces peacetime peacetimes peach peachberry peachbloom peachblossom peachblow peachblows peached peachen peacher peacherino peacherinos peachers peachery peaches peachick peachier peachiest peachify peachily peachiness peachinesses peaching peachlet peachlike peachwood peachwort peachy peacing peacoat peacoats peacock peacocked peacockeries peacockery peacockier peacockiest peacocking peacockish peacockishly peacockishness peacockism peacocklike peacockly peacocks peacockwise peacocky peacod peacods peafowl peafowls peag peage peages peagoose peags peahen peahens peai peaiism peak peaked peakedly peakedness peakednesses peaker peakgoose peakier peakiest peakily peakiness peaking peakish peakishly peakishness peakless peaklike peaks peakward peaky peakyish peal pealed pealer pealike pealing peals peamouth peamouths pean peaned peaning peans peanut peanuts peapod peapods pear pearce pearced pearceite pearces pearch pearcing peare peares pearl pearlash pearlashes pearlberry pearlbird pearlbush pearled pearler pearlers pearlescence pearlescences pearlescent pearlet pearleye pearleyed pearleyes pearlfish pearlfishes pearlfruit pearlier pearlies pearliest pearlike pearlin pearliness pearlinesses pearling pearlings pearlins pearlised pearlish pearlite pearlites pearlitic pearlized pearloyster pearls pearlsides pearlspar pearlstone pearlweed pearlwort pearlworts pearly pearmain pearmains pearmonger pearmongers pears pearst peart pearten pearter peartest peartly peartness peartrees pearwood pearwoods peas peasant peasantess peasanthood peasantise peasantism peasantize peasantlike peasantly peasantries peasantry peasants peasantship peasanty peascod peascods pease peasecod peasecods peased peaselike peasen peases peaseweep peaseweeps peashooter peashooters peasing peason peasouper peasoupers peastake peastaking peastick peasticking peastone peasy peat peataries peatary peatbog peateries peatery peathouse peatier peatiest peatman peatmen peatmoss peats peatship peatships peatstack peatweed peatwood peaty peauder peavey peaveys peavie peavies peavine peavy peaze peazed peazes peazing peba pebas pebble pebbled pebbledash pebbledashed pebbledashes pebbledashing pebblehearted pebbles pebblestone pebbleware pebblier pebbliest pebbling pebblings pebbly pebrine pebrines pebrinous pec pecan pecans peccabilities peccability peccable peccadillo peccadilloes peccadillos peccancies peccancy peccant peccantly peccantness peccaries peccary peccation peccatiphobia peccatophobia peccavi peccavis pech pechan pechans pechay peched pechili peching pechs pecht pechys pecify pecite peck peckage pecke pecked pecker peckers peckerwood peckerwoods peckes pecket peckful peckhamite peckier peckiest peckiness pecking peckings peckish peckishly peckishness peckishnesses peckle peckled peckly pecks pecksniff pecksniffery pecksniffian pecky pecopteris pecopteroid pecorini pecorino pecorinos pecos pecs pectase pectases pectate pectates pecten pectens pectic pectin pectinacean pectinaceous pectinal pectinase pectinate pectinated pectinatella pectinately pectination pectinations pectinatodenticulate pectinatofimbricate pectinatopinnate pectineal pectines pectinesterase pectinesterases pectineus pectinibranch pectinibranchia pectinibranchian pectinibranchiate pectinic pectinid pectinidae pectiniferous pectiniform pectinirostrate pectinite pectinogen pectinoid pectinose pectinous pectins pectisation pectisations pectise pectised pectises pectising pectizable pectization pectizations pectize pectized pectizes pectizing pectocellulose pectolite pectolites pectora pectoral pectorales pectoralgia pectoralis pectoralist pectorally pectorals pectoriloque pectoriloquial pectoriloquies pectoriloquism pectoriloquous pectoriloquy pectoris pectosase pectose pectoses pectosic pectosinase pectous pectron pectunculate pectus peculatation peculatations peculate peculated peculates peculating peculation peculations peculative peculator peculators peculia peculiar peculiarise peculiarised peculiarises peculiarising peculiarism peculiarities peculiarity peculiarization peculiarize peculiarized peculiarizes peculiarizing peculiarly peculiarness peculiars peculiarsome peculium peculiums pecunia pecunial pecuniarily pecuniary pecuniosity pecunious ped peda pedage pedagese pedagog pedagogal pedagogery pedagogic pedagogical pedagogically pedagogics pedagogies pedagogish pedagogism pedagogisms pedagogist pedagogs pedagogue pedagogued pedagogueries pedagoguery pedagogues pedagoguing pedagoguish pedagoguishness pedagoguishnesses pedagoguism pedagoguisms pedagogy pedagogyaled pedagogying pedal pedaled pedaler pedalers pedalfer pedalferic pedalfers pedaliaceae pedaliaceous pedalian pedalier pedaliers pedaling pedalism pedalist pedaliter pedality pedalled pedaller pedallers pedalling pedallings pedalo pedaloes pedalos pedals pedanalysis pedant pedante pedantesque pedantess pedanthood pedantic pedantical pedantically pedanticalness pedanticise pedanticised pedanticises pedanticising pedanticism pedanticisms pedanticize pedanticized pedanticizes pedanticizing pedanticly pedanticness pedantics pedantise pedantised pedantises pedantising pedantism pedantisms pedantize pedantized pedantizes pedantizing pedantocracies pedantocracy pedantocrat pedantocratic pedantocrats pedantries pedantry pedants pedarian pedary pedate pedated pedately pedatifid pedatiform pedatilobate pedatilobed pedatinerved pedatipartite pedatisect pedatisected pedatrophia pedatrophy pedder pedders peddlar peddle peddled peddler peddleress peddleries peddlerism peddlers peddlery peddles peddling peddlingly peddlings pedee pedelion pederast pederastic pederastically pederasties pederasts pederasty pederero pedereroes pedereros pedes pedeses pedesis pedestal pedestaled pedestaling pedestalled pedestalling pedestals pedestrial pedestrially pedestrian pedestrianate pedestrianisation pedestrianisations pedestrianise pedestrianised pedestrianises pedestrianising pedestrianism pedestrianisms pedestrianization pedestrianizations pedestrianize pedestrianized pedestrianizes pedestrianizing pedestrianly pedestrians pedestrious pedetentous pedetic pediad pediadontia pediadontic pediadontist pedial pedialgia pediatric pediatrician pediatricians pediatrics pediatrist pediatrists pediatry pedicab pedicabs pedicel pediceled pedicellar pedicellaria pedicellariae pedicellate pedicellated pedicellation pedicelled pedicelliform pedicellus pedicels pedicle pedicled pedicles pedicular pediculate pediculated pediculates pediculati pediculation pediculations pedicule pediculi pediculicidal pediculicide pediculid pediculidae pediculine pediculofrontal pediculoid pediculoparietal pediculophobia pediculoses pediculosis pediculous pediculus pedicure pedicured pedicures pedicuring pedicurism pedicurist pedicurists pediferous pediform pedigerous pedigraic pedigree pedigreed pedigreeless pedigrees pedilanthus pediluvium pedimane pedimanous pediment pedimental pedimented pediments pedimentum pediocactus pediococci pediococcocci pediococcus pedioecetes pedion pedionomite pedionomus pedipalp pedipalpal pedipalpate pedipalpi pedipalpous pedipalps pedipalpus pedipalpuses pedipulate pedipulation pedipulator pediwak pedlar pedlaries pedlars pedlary pedler pedleries pedlers pedlery pedobaptism pedobaptist pedocal pedocalcic pedocalic pedocals pedodontia pedodontias pedodontic pedodontics pedodontist pedodontists pedodontology pedofile pedogeneses pedogenesis pedogenetic pedogenic pedograph pedologic pedological pedologically pedologies pedologist pedologistical pedologistically pedologists pedology pedomancy pedomania pedometer pedometers pedometric pedometrical pedometrically pedometrician pedometrist pedomorphic pedomorphism pedomorphisms pedomorphoses pedomorphosis pedomotive pedomotor pedophile pedophiles pedophilia pedophiliac pedophiliacs pedophilias pedophilic pedophobia pedosphere pedospheric pedotribe pedotrophic pedotrophist pedotrophy pedrail pedrails pedregal pedrero pedreroes pedreros pedro pedros peds pedule pedum peduncle peduncled peduncles peduncular pedunculate pedunculated pedunculation pedunculi pedunculus pedwood pee peebeen peebeens peebles peece peeces peed peeing peek peekabo peekaboo peekaboos peekabos peekapoo peekapoos peeke peeked peeking peeks peel peelable peelcrow peele peeled peeledness peeler peelers peelgarlic peelgarlics peelhouse peeling peelings peelite peelman peels peen peened peenge peenged peengeing peenges peenging peening peens peeoy peeoys peep peepbo peepe peeped peeper peepers peepes peepeye peephole peepholes peeping peeps peepshow peepshows peepul peepuls peepy peer peerage peerages peerdom peered peeress peeresses peerhood peerie peerier peeries peeriest peering peeringly peerless peerlessly peerlessness peerlessnesses peerling peerly peers peership peert peery pees peesash peeseweep peesoreh peesweep peesweeps peetweet peetweets peeve peeved peevedly peevedness peever peevers peeves peeving peevish peevishly peevishness peevishnesses peewee peeweep peewees peewit peewits peg pega pegador pegall pegamoid peganite pegasid pegasoid pegasus pegasuses pegboard pegboards pegbox pegboxes pegged pegger peggies pegging peggings peggle peggy peggymast pegh peghed peghing peghs pegleg peglegged pegless peglet peglike pegma pegman pegmatite pegmatites pegmatitic pegmatization pegmatize pegmatoid pegmatophyre pegmen pegology pegomancy pegoxyl pegroots pegs pegtops pegwood peh pehlevi peho pehs peignoir peignoirs peiktha pein peinct peincted peincting peincts peine peined peining peins peiping peirameter peirastic peirastically peirce peireskia peisage peisant peise peised peiser peises peishwa peishwah peishwahs peishwas peising peitrel peixere peixerey peize peized peizes peizing pejerrey pejorate pejorated pejorates pejorating pejoration pejorationist pejorations pejorative pejoratively pejoratives pejorism pejorist pejority pekan pekans peke pekepoo pekepoos pekes pekin pekinese pekineses peking pekingese pekingeses pekins pekoe pekoes pel pela pelade peladic pelado peladore pelage pelages pelagial pelagian pelagians pelagic pelagra pelamyd pelanos pelargic pelargomorph pelargomorphic pelargonate pelargonic pelargonidin pelargonin pelargonium pelargoniums pelas pelasgian pelasgic pele pelean pelecan pelecanidae pelecaniformes pelecanoididae pelecanus pelecoid pelecypod pelecypodous pelecypods pelelith peleliu peleng pelerin pelerine pelerines peles peletre peleus pelf pelfs pelham pelhams pelias pelican pelicanry pelicans pelick pelicometer pelikai pelike peliom pelioma peliosis pelisse pelisses pelite pelites pelitic pell pellach pellachs pellack pellacks pellaea pellage pellagra pellagragenic pellagras pellagric pellagrin pellagrins pellagroid pellagrose pellagrous pellar pellard pellas pellate pellation pellekar peller pellet pelletal pelleted pelletierine pelletified pelletifies pelletify pelletifying pelleting pelletisation pelletisations pelletise pelletised pelletiser pelletises pelletising pelletization pelletizations pelletize pelletized pelletizer pelletizers pelletizes pelletizing pelletlike pellets pellety pellicle pellicles pellicula pellicular pellicularia pelliculate pellicule pellile pellitories pellitory pellmell pellmells pellock pellocks pellotin pellotine pells pellucent pellucid pellucidities pellucidity pellucidly pellucidness pellucidnesses pelma pelmanism pelmanisms pelmas pelmata pelmatic pelmatogram pelmatozoan pelmatozoic pelmet pelmets pelobatid pelobatidae pelobatoid pelodytid pelodytoid peloid peloids pelologies pelology pelomedusid pelomedusoid pelon pelopea peloponnese peloponnesian peloponnesus pelops peloria pelorian pelorias peloriate peloric pelories pelorised pelorism pelorisms pelorization pelorize pelorized pelorizing pelorus peloruses pelory pelota pelotas pelotherapies pelotherapy peloton pelt pelta peltae peltandra peltas peltast peltasts peltate peltated peltately peltatifid peltation peltations peltatodigitate pelted pelter peltered pelterer peltering pelters peltiferous peltifolious peltiform peltigerine peltigerous peltinervate peltinerved pelting peltingly peltings peltiphyllum peltish peltless peltmonger peltmongers peltries peltry pelts pelu peludo pelure pelveoperitonitis pelves pelvic pelvics pelviform pelvigraph pelvigraphy pelvimeter pelvimeters pelvimetric pelvimetries pelvimetry pelviolithotomy pelvioperitonitis pelvioplasty pelvioradiography pelvioscopy pelviotomy pelviperitonitis pelvirectal pelvis pelvisacral pelvises pelvisternal pelvisternum pelycogram pelycography pelycology pelycometer pelycometry pelycosaur pelycosauria pelycosaurian pelycosaurs pelyte pelytes pembina pembinas pembroke pembrokes pemican pemicans pemmican pemmicanisation pemmicanise pemmicanization pemmicanize pemmicans pemoline pemolines pempheridae pemphigoid pemphigous pemphigus pemphiguses pemphix pemphixes pen penacute penaeaceous penal penalisable penalisation penalisations penalise penalised penalises penalising penalist penalities penality penalizable penalization penalizations penalize penalized penalizes penalizing penally penalties penalty penance penanced penanceless penancer penances penancing penancy penang penangs penannular penaria penates penbard pencatite pence pencel penceless pencels pences pencey penchant penchants penche penchute pencil penciled penciler pencilers penciliform penciling pencilings pencilled penciller pencillers pencillike pencilling pencillings pencilry pencils pencilwood penclerk pencraft pencrafts pend penda pendaflex pendant pendanted pendanting pendantlike pendants pendative pendecagon pended pendeloque pendencies pendency pendens pendent pendente pendentive pendentives pendently pendents pendicle pendicler pendiclers pendicles pending pendle pendn pendom pendragon pendragonish pendragons pendragonship pendragonships pends pendulant pendular pendulate pendulated pendulates pendulating pendulation pendule penduline pendulosities pendulosity pendulous pendulously pendulousness pendulousnesses pendulum pendulumlike pendulums pene penecontemporaneous penectomy pened peneid peneidae penelope penelopine penelopise penelopised penelopises penelopising penelopize penelopized penelopizes penelopizing peneplain peneplains peneplanation peneplane peneplanes penes peneseismic penest penetrabilities penetrability penetrable penetrableness penetrablenesses penetrably penetral penetralia penetralian penetrameter penetrameters penetrance penetrances penetrancies penetrancy penetrant penetrants penetrate penetrated penetrates penetrating penetratingly penetratingness penetration penetrations penetrative penetratively penetrativeness penetrativenesses penetrativity penetrator penetrators penetrology penetrolqgy penetrometer penetrometers peneus penfieldite penfold penfolds penfriend penfriends penful penfuls peng penghulu pengo pengos penguin penguineries penguinery penguinries penguinry penguins pengun penhead penholder penholders peni penial peniaphobia penible penicil penicilium penicillamine penicillamines penicillate penicillated penicillately penicillation penicillations penicillia penicilliform penicillin penicillinase penicillinases penicillinic penicillins penicillium penicilliums penicils penide penie penies penile penillion pening peninsula peninsular peninsularism peninsularities peninsularity peninsulas peninsulate peninsulated peninsulates peninsulating penintime peninvariant penis penises penistone penistones penitence penitencer penitences penitencies penitency penitent penitential penitentially penitentials penitentiaries penitentiary penitentiaryship penitently penitents penitis penk penkeeper penknife penknives penks penlight penlights penlike penlite penlites penlop penmaker penmaking penman penmanship penmanships penmaster penmen penna pennaceous pennae pennage pennal pennalism pennalisms pennals penname pennames pennant pennants pennate pennated pennatifid pennatilobate pennatipartite pennatisect pennatisected pennatula pennatulacean pennatulaceous pennatulae pennatularian pennatulas pennatulid pennatulidae pennatuloid penne penned penneech penneechs penneeck penneecks penner penners pennes pennet penney penni pennia pennied pennies penniferous penniform pennigerous penniless pennilessly pennilessness pennilessnesses pennill pennillion pennine penninervate penninerved pennines penning penninite penninites pennipotent pennis pennisetum penniveined pennon pennoncel pennoncelle pennoncelles pennoncels pennoned pennons pennopluma pennoplume pennorth pennsylvania pennsylvanian pennsylvanians pennsylvanicus pennuckle penny pennybird pennycress pennycresses pennyearth pennyfee pennyfees pennyflower pennyhole pennyland pennylands pennyleaf pennyrot pennyroyal pennyroyals pennysiller pennystone pennyweight pennyweights pennywhistle pennywhistles pennywinkle pennywinkles pennywise pennywort pennyworth pennyworths pennyworts penobscot penocha penoche penoches penochi penologic penological penologically penologies penologist penologists penology penoncel penoncelle penoncelles penoncels penorcon penoun penpoint penpoints penpusher penpushers penrack penroseite pens pensae pensaes penscript pense pensee pensees penseful pensefulness pensel pensels penseroso penship pensieroso pensil pensile pensileness pensilenesses pensilities pensility pensils pension pensionable pensionably pensionaries pensionary pensionat pensione pensioned pensioner pensioners pensionership pensiones pensioning pensionless pensionnaire pensionnat pensionnats pensionry pensions pensive pensived pensively pensiveness pensivenesses penstemon penstemons penster pensters penstick penstock penstocks pensum pensums pensy pensée pensées pent penta pentabasic pentabromide pentacapsular pentacarbon pentacarbonyl pentacarpellary pentace pentacetate pentachenium pentachloride pentachlorophenol pentachlorophenols pentachord pentachords pentachromic pentacid pentacle pentacles pentacoccous pentacontane pentacosane pentacrinite pentacrinoid pentacrinoids pentacron pentacrostic pentact pentactinal pentactine pentacts pentacular pentacyanic pentacyclic pentad pentadactyl pentadactylate pentadactyle pentadactyles pentadactylic pentadactylies pentadactylism pentadactylisms pentadactyloid pentadactylous pentadactyls pentadactyly pentadecagon pentadecahydrate pentadecahydrated pentadecane pentadecatoic pentadecoic pentadecyl pentadecylic pentadelphous pentadic pentadicity pentadiene pentadodecahedron pentadrachm pentadrachma pentads pentaerythrite pentaerythritol pentafid pentafluoride pentagamist pentaglossal pentaglot pentaglottical pentagon pentagonal pentagonally pentagonals pentagonohedron pentagonoid pentagonon pentagons pentagram pentagrammatic pentagrams pentagraph pentagraphs pentagrid pentagyn pentagynian pentagynous pentahalide pentahedra pentahedral pentahedrical pentahedroid pentahedron pentahedrons pentahedrous pentahexahedral pentahexahedron pentahydrate pentahydrated pentahydric pentahydroxy pentail pentaiodide pentalobate pentalogies pentalogue pentalogy pentalpha pentalphas pentameral pentameran pentamerid pentameries pentamerism pentamerisms pentameroid pentamerous pentamery pentameter pentameters pentamethylene pentamethylenediamine pentamethylenetetrazol pentametrist pentametrize pentamidine pentamidines pentander pentandrian pentandrous pentane pentanedione pentanes pentangle pentangles pentangular pentanitrate pentanoic pentanol pentanolide pentanols pentanone pentapeptide pentapeptides pentapetalous pentaphylacaceous pentaphyllous pentaploid pentaploidic pentaploidies pentaploids pentaploidy pentapodic pentapodies pentapody pentapolis pentapolises pentapolitan pentaprism pentaprisms pentapterous pentaptote pentaptych pentaquin pentaquine pentaquines pentaquins pentarch pentarchical pentarchies pentarchs pentarchy pentasepalous pentasilicate pentaspermous pentaspheric pentaspherical pentastich pentastichous pentastichs pentastichy pentastom pentastome pentastomes pentastomid pentastomida pentastomoid pentastomous pentastyle pentastyles pentastylos pentasulphide pentasyllabic pentasyllabism pentasyllable pentateuch pentateuchal pentathionate pentathionic pentathlete pentathletes pentathlon pentathlons pentathlos pentathlum pentatomic pentatomid pentatone pentatonic pentatriacontane pentatron pentavalence pentavalency pentavalent pentazocine pentazocines penteconter penteconters pentecontoglossal pentecost pentecostal pentecostalism pentecostalist pentecostals pentecostarion pentecoster pentecostys pentel pentelic pentels pentene pentenes penteteric penthemimer penthemimeral penthemimeris penthemimers penthia penthias penthiophen penthiophene penthouse penthoused penthouselike penthouses penthousing penthrit penthrite pentice penticed pentices penticing penticle pentimenti pentimento pentine pentiodide pentise pentised pentises pentising pentit pentite pentitol pentlandite pentlandites pentobarbital pentobarbitals pentobarbitone pentobarbitones pentode pentodes pentoic pentol pentolite pentomic pentosan pentosane pentosanes pentosans pentose pentoses pentosid pentoside pentosuria pentothal pentoxide pentoxides pentremital pentremite pentrit pentrite pentroof pentroofs pentrough pents pentstemon pentstemons pentstock penttail pentyl pentylene pentylenes pentylenetetrazol pentylenetetrazols pentylic pentylidene pentyls pentyne penuche penuches penuchi penuchis penuchle penuchles penuckle penuckles penult penultim penultima penultimas penultimate penultimately penultimates penultimatum penults penumbra penumbrae penumbral penumbras penumbrous penup penuries penurious penuriously penuriousness penuriousnesses penury penutian penwiper penwoman penwomanship penwomen penworker penwright peon peonage peonages peones peonies peonism peonisms peonize peons peony people peopled peopledom peoplehood peoplehoods peopleize peopleless peoplement peopler peoplers peoples peoplet peopling peoplish peotomy pep pepcid peperek peperine peperino peperinos peperomia peperomias peperoni peperonis pepful pepinella pepino pepinos pepla pepless peplos peplosed peploses peplum peplumed peplums peplus pepluses pepo peponid peponida peponidas peponium peponiums pepos pepped pepper pepperbox pepperboxes peppercorn peppercornish peppercorns peppercorny peppered pepperer pepperers peppergrass peppergrasses pepperidge pepperidges pepperier pepperiest pepperily pepperiness pepperinesses peppering pepperings pepperish pepperishly peppermill peppermills peppermint peppermints pepperminty pepperoni pepperonis pepperproof pepperroot peppers peppershaker peppershakers peppershrike peppertree peppertrees pepperweed pepperwood pepperwort pepperworts peppery peppier peppiest peppily peppin peppiness peppinesses pepping peppy peps pepsi pepsin pepsinate pepsinated pepsinates pepsinating pepsine pepsines pepsinhydrochloric pepsiniferous pepsinogen pepsinogenic pepsinogenous pepsinogens pepsins pepsis peptalk peptalked peptalking peptalks peptic peptical pepticities pepticity peptics peptid peptidase peptidases peptide peptides peptidic peptidically peptidoglycan peptidoglycans peptidolytic peptids peptisable peptisation peptisations peptise peptised peptiser peptisers peptises peptising peptizable peptization peptizations peptize peptized peptizer peptizers peptizes peptizing peptogaster peptogen peptogenic peptogenous peptogeny peptohydrochloric peptolysis peptolytic peptonaemia peptonate peptone peptonelike peptonemia peptones peptonic peptonisation peptonisations peptonise peptonised peptoniser peptonises peptonising peptonization peptonizations peptonize peptonized peptonizer peptonizes peptonizing peptonoid peptonuria peptotoxin peptotoxine pequot per peracephalus peracetate peracetic peracid peracidite peracidity peracids peract peracute peradventure peradventures peraea peraeon peraeons peraeopod peraeopods peragrate peragration perai perais peramble perambulant perambulate perambulated perambulates perambulating perambulation perambulations perambulator perambulators perambulatory perameles peramelidae perameline perameloid perau perbend perborate perborates perborax perbromide perca percale percales percaline percalines percarbide percarbonate percarbonic percase perce perceable perceant perced perceivability perceivable perceivableness perceivably perceivance perceivancy perceive perceived perceivedly perceivedness perceiver perceivers perceives perceiving perceivingness perceivings percen percent percentable percentably percentage percentaged percentages percental percenter percentile percentiles percents percentual percentum percept perceptibilities perceptibility perceptible perceptibleness perceptibly perception perceptional perceptionalism perceptionism perceptions perceptive perceptively perceptiveness perceptivenesses perceptivities perceptivity percepts perceptual perceptually perceptum perces percesocine perch percha perchable perchance perche perched percher percheron percherons perchers perchery perches perching perchings perchlorate perchlorates perchlorethane perchlorethylene perchloric perchloride perchlorides perchlorinate perchlorinated perchlorinating perchlorination perchloroethane perchloroethylene perchloroethylenes perchloromethane perchromate perchromic perciatelli perciatellis percid percidae perciform perciformes percina percine percing percipi percipience percipiences percipiencies percipiency percipient percipiently percipients percivale perclose percnosome percoct percoid percoidea percoidean percoids percolable percolate percolated percolates percolating percolation percolations percolative percolator percolators percolin percolins percomorph percomorphi percomorphous percompound percontation percontatorial percophidae percribrate percribration percrystallization perculsion perculsive percur percurration percurrent percursory percuss percussant percussed percusses percussing percussion percussional percussioner percussionise percussionist percussionists percussionize percussions percussive percussively percussiveness percussivenesses percussor percussors percutaneous percutaneously percutient percutients percylite perdendo perdendosi perdicidae perdicinae perdicine perdie perdifoil perdifume perdiligence perdiligent perdit perdition perditionable perditions perdix perdricide perdrigon perdrix perdu perdue perduellion perduellions perdues perdurabilities perdurability perdurable perdurableness perdurably perdurance perdurances perdurant perduration perdurations perdure perdured perdures perduring perduringly perdus perdy pere perea peregal peregals peregrin peregrina peregrinate peregrinated peregrinates peregrinating peregrination peregrinations peregrinative peregrinator peregrinators peregrinatory peregrine peregrines peregrinism peregrinities peregrinity peregrinoid peregrins peregrinus pereia pereion pereiopod pereiopods pereira pereiras pereirine perejonet perempt peremption peremptorily peremptoriness peremptorinesses peremptory perendinant perendinate perendination perendure perennate perennated perennates perennating perennation perennations perennial perennialise perennialities perenniality perennialize perennially perennialness perennials perennibranch perennibranchiate perennibranchs perennities perennity perentie perenties perenty pereon pereopod pereopods perequitate pererrate pererration peres pereskia perestroika perestroikas pereundem perezone perf perfay perfays perfect perfecta perfectability perfectas perfectation perfectations perfected perfectedly perfecter perfecters perfectest perfecti perfectibilian perfectibilians perfectibilism perfectibilisms perfectibilist perfectibilists perfectibilitarian perfectibilities perfectibility perfectible perfecting perfection perfectionate perfectionated perfectionates perfectionating perfectionation perfectionator perfectioner perfectionism perfectionisms perfectionist perfectionistic perfectionists perfectionize perfectionizement perfectionizer perfectionment perfections perfectism perfectist perfective perfectively perfectiveness perfectivenesses perfectives perfectivise perfectivised perfectivising perfectivities perfectivity perfectivize perfectly perfectness perfectnesses perfecto perfector perfectors perfectos perfects perfectuation perfervent perfervid perfervidities perfervidity perfervidly perfervidness perfervidnesses perfervor perfervors perfervour perfervours perfet perficient perfidies perfidious perfidiously perfidiousness perfidiousnesses perfidy perfilograph perfin perfins perfix perflable perflate perflation perfluent perfluorocarbon perfluorocarbons perfoliate perfoliation perfoliations perforable perforans perforanses perforant perforate perforated perforates perforating perforation perforationproof perforations perforative perforator perforatorium perforators perforatory perforatus perforatuses perforce perforcedly perforin perforins perform performabilities performability performable performance performances performant performative performatives performatory performed performer performers performing performings performs perfricate perfrication perfumatory perfume perfumed perfumeless perfumer perfumeress perfumeries perfumers perfumery perfumes perfuming perfumy perfunctionary perfunctorily perfunctoriness perfunctorinesses perfunctorious perfunctoriously perfunctorize perfunctory perfuncturate perfusate perfusates perfuse perfused perfuses perfusing perfusion perfusionist perfusionists perfusions perfusive pergameneous pergamentaceous pergamyn pergelisol pergola pergolas pergunnah pergunnahs perh perhalide perhalogen perhaps perhapses perhazard perhorresce perhydroanthracene perhydrogenate perhydrogenation perhydrogenize perhydrogenized perhydrogenizing perhydrol peri periacinal periacinous periactin periactus periadenitis periagua periaguas periaktoi periaktos periaktoses periamygdalitis perianal periangiocholitis periangioma periangitis perianth perianthial perianthium perianths periaortic periaortitis periapical periappendicitis periappendicular periapsis periapt periapts periareum periarterial periarteritis periarthric periarthritis periarticular periaster periastra periastral periastron periastrons periastrum periatrial periauger periauricular periaxial periaxillary periaxonal periblast periblastic periblasts periblastula periblem periblems periboli periboloi peribolos peribolus peribranchial peribronchial peribronchiolar peribronchiolitis peribronchitis peribulbar peribursal pericaecal pericaecitis pericallis pericanalicular pericapsular pericardia pericardiac pericardiacophrenic pericardial pericardian pericardicentesis pericardiectomy pericardiocentesis pericardiolysis pericardiomediastinitis pericardiophrenic pericardiopleural pericardiorrhaphy pericardiosymphysis pericardiotomy pericarditic pericarditides pericarditis pericarditises pericardium pericardiums pericardotomy pericarp pericarpial pericarpic pericarpium pericarpoidal pericarps pericecal pericecitis pericellular pericemental pericementitis pericementoclasia pericementum pericenter pericentral pericentre pericentric pericephalic pericerebral perichaete perichaetia perichaetial perichaetium perichaetiums perichaetous perichdria perichete pericholangitis pericholecystitis perichondral perichondria perichondrial perichondritis perichondrium perichondriums perichord perichordal perichoreses perichoresis perichorioidal perichoroidal perichtia perichylous pericladium periclase periclases periclasia periclasite periclaustral periclean pericles periclinal periclinally pericline periclines periclinium periclitate periclitated periclitates periclitating periclitation pericolitis pericolpitis pericon periconchal periconchitis pericones pericopae pericopal pericope pericopes pericopic pericorneal pericowperitis pericoxitis pericrania pericranial pericranies pericranitis pericranium pericraniums pericrany pericristate periculant periculous periculum pericycle pericycles pericyclic pericycloid pericyclone pericyclonic pericynthion pericynthions pericystic pericystitis pericystium pericytial peridendritic peridental peridentium peridentoclasia periderm peridermal peridermic peridermis periderms peridesm peridesmic peridesmitis peridesmium peridesmiums peridia peridial peridiastole peridiastolic perididymis perididymitis peridiiform peridila peridinia peridiniaceous peridinial peridinian peridinians peridinid peridiniidae peridinium peridiniums peridiola peridiole peridiolum peridium peridiums peridot peridote peridotes peridotic peridotite peridotites peridotitic peridots peridrome peridromes peridromoi peridromos periductal periegeses periegesis periegetic perielesis periencephalitis perienteric perienteritis perienteron periependymal periergy periesophageal periesophagitis perifistular perifoliary perifollicular perifolliculitis perigangliitis periganglionic perigastric perigastritis perigastritises perigastrula perigastrular perigastrulation perigeal perigean perigee perigees perigemmal perigeneses perigenesis perigenital perigeum periglacial periglandular periglial perigloea periglottic periglottis perignathic perigon perigonadial perigonal perigone perigones perigonia perigonial perigonium perigoniums perigonnia perigons perigord perigraph perigraphic perigynial perigynies perigynium perigynous perigyny perihelia perihelial perihelian perihelion perihelions perihelium periheloin perihepatic perihepatitis perihepatitises perihermenial perihernial perihysteric perijejunitis perijove perikarya perikaryal perikaryon perikronion peril perilabyrinth perilabyrinthitis perilaryngeal perilaryngitis periled perilenticular periligamentous periling perilla perillas perilled perilless perilling perilobar perilous perilously perilousness perilousnesses perils perilsome perilune perilunes perilymph perilymphangial perilymphangitis perilymphatic perilymphs perimartium perimastitis perimedullary perimeningitis perimeter perimeterless perimeters perimetral perimetric perimetrical perimetrically perimetries perimetritic perimetritis perimetrium perimetry perimorph perimorphic perimorphism perimorphisms perimorphous perimorphs perimyelitis perimysia perimysial perimysium perimysiums perinaea perinaeum perinaeums perinatal perinatally perinatologies perinatology perinde perine perinea perineal perineocele perineoplastic perineoplasty perineorrhaphy perineoscrotal perineostomy perineosynthesis perineotomy perineovaginal perineovulvar perinephral perinephria perinephrial perinephric perinephritic perinephritis perinephritises perinephrium perinephriums perineptunium perineum perineums perineural perineuria perineurial perineurical perineuritis perineuritises perineurium perineuriums perinium perinuclear periocular period periodate periodates perioded periodic periodical periodicalise periodicalism periodicalist periodicalists periodicalize periodically periodicalness periodicals periodicities periodicity periodid periodide periodids perioding periodisation periodisations periodise periodization periodizations periodize periodogram periodograph periodology periodontal periodontally periodontia periodontias periodontic periodontical periodontics periodontist periodontists periodontitis periodontitises periodontium periodontoclasia periodontologies periodontologist periodontology periodontoses periodontosis periodontum periodoscope periods perioeci perioecians perioecic perioecid perioecus perioesophageal perioikoi periomphalic perionychia perionychium perionychiums perionyx perionyxis perioophoritis periophthalmic periophthalmitis periophthalmus periople perioplic perioptic perioptometry perioque perioral periorbit periorbita periorbital periorchitis periost periostea periosteal periosteally periosteitis periosteoalveolar periosteoma periosteomedullitis periosteomyelitis periosteophyte periosteorrhaphy periosteotome periosteotomy periosteous periosteum periostitic periostitis periostitises periostoma periostosis periostotomy periostraca periostracal periostracum periostracums periosts periotic periotics periovular peripachymeningitis peripancreatic peripancreatitis peripapillary peripatetian peripatetic peripatetical peripatetically peripateticate peripateticism peripateticisms peripatetics peripatidae peripatize peripatoid peripatopsidae peripatopsis peripatus peripatuses peripenial peripericarditis peripetalous peripetasma peripeteia peripeteian peripeteias peripetia peripetian peripetias peripeties peripety periphacitis peripharyngeal periphasis peripherad peripheral peripheralities peripherality peripheralization peripheralize peripherallies peripherally peripherals peripherial peripheric peripherical peripherically peripheries peripherocentral peripheroceptor peripheromittor peripheroneural peripherophose periphery periphlebitic periphlebitis periphonic periphractic periphrase periphrased periphrases periphrasing periphrasis periphrastic periphrastical periphrastically periphraxy periphyllum periphyse periphysis periphytic periphyton periphytons periplaneta periplasm periplasms periplast periplastic periplasts periplegmatic peripleural peripleuritis periploca periplus peripluses peripneumonia peripneumonic peripneumony peripneustic peripolar peripolygonal periportal periproct periproctal periproctic periproctitis periproctous periprocts periprostatic periprostatitis peripter peripteral peripteries peripteroi peripteros peripterous peripters periptery peripylephlebitis peripyloric perique periques perirectal perirectitis perirenal perirhinal perirraniai periryrle peris perisalpingitis perisarc perisarcal perisarcous perisarcs perisaturnium periscian periscians periscii perisclerotic periscopal periscope periscoped periscopes periscopic periscopical periscoping periscopism periselene periselenium periseleniums perish perishabilities perishability perishabilty perishable perishableness perishablenesses perishables perishably perished perisher perishers perishes perishing perishingly perishless perishment perisigmoiditis perisinuitis perisinuous perisinusitis perisoma perisomal perisomatic perisome perisomial perisoreus perisperm perispermal perispermatitis perispermic perisperms perisphere perispheric perispherical perisphinctean perisphinctoid perisplanchnic perisplanchnitis perisplenetic perisplenic perisplenitis perispome perispomena perispomenon perispomenons perispondylic perispondylitis perispore perisporiaceous perissad perissodactyl perissodactyla perissodactylate perissodactyle perissodactylic perissodactylism perissodactylous perissodactyls perissologic perissological perissologies perissology perissosyllabic peristalith peristaliths peristalses peristalsis peristaltic peristaltically peristaphyline peristaphylitis peristediinae peristedion peristele peristerite peristerites peristeromorph peristeromorphic peristeromorphous peristeronic peristerophily peristeropod peristeropodan peristeropode peristeropodous peristethium peristole peristoma peristomal peristomatic peristome peristomes peristomial peristomium peristrephic peristrephical peristrumitis peristrumous peristylar peristyle peristyles peristylium peristylos peristylum perisynovial perisystole perisystolic perit peritcia perite peritectic peritendineum peritenon perithece perithecia perithecial perithecium perithelia perithelial perithelioma perithelium perithoracic perithyreoiditis perithyroiditis periti peritlia peritomize peritomous peritomy peritonaea peritonaeal peritonaeum peritonaeums peritonea peritoneal peritonealgia peritonealize peritonealized peritonealizing peritoneally peritoneocentesis peritoneoclysis peritoneomuscular peritoneopathy peritoneopericardial peritoneopexy peritoneoplasty peritoneoscope peritoneoscopies peritoneoscopy peritoneotomy peritoneum peritoneums peritonism peritonital peritonitic peritonitis peritonitises peritonsillar peritonsillitis peritracheal peritrack peritrema peritrematous peritreme peritrich peritricha peritrichan peritrichate peritrichic peritrichous peritrichously peritroch peritrochal peritrochanteric peritrochium peritrochoid peritropal peritrophic peritropous peritura peritus perityphlic perityphlitic perityphlitis perityphlitises periumbilical periungual periuranium periureteric periureteritis periurethral periurethritis periuterine periuvular perivaginal perivaginitis perivascular perivasculitis perivenous perivertebral perivesical perivisceral perivisceritis perivitellin perivitelline periwig periwigged periwigging periwigpated periwigs periwinkle periwinkled periwinkler periwinkles perizonium perjink perjinkety perjinkities perjinkity perjinkly perjure perjured perjuredly perjuredness perjurement perjurer perjurers perjures perjuress perjuries perjuring perjurious perjuriously perjuriousness perjurous perjury perjurymonger perjurymongering perk perked perkier perkiest perkily perkin perkiness perkinesses perking perkingly perkinism perkins perkish perknite perks perky perlaceous perlative perle perleche perlection perliche perlid perligenous perling perlingual perlingually perlite perlites perlitic perlocution perlocutionary perlocutions perloir perlous perlucidus perlustrate perlustrated perlustrates perlustrating perlustration perlustrations perlustrator perm permaculture permacultures permafrost permafrosts permalloy permalloys permanence permanences permanencies permanency permanent permanently permanentness permanentnesses permanents permanganate permanganates permanganic permansion permansive permatron permeabilities permeability permeable permeableness permeably permeameter permeameters permeance permeances permeant permease permeases permeate permeated permeates permeating permeation permeations permeative permeator permed permethrin permethrins permian permic permillage permillages perming perminvar permirific permiss permissable permissibilities permissibility permissible permissibleness permissiblenesses permissiblity permissibly permission permissioned permissions permissive permissively permissiveness permissivenesses permissory permistion permit permitee permits permittable permittance permittances permitted permittedly permittee permittees permitter permitters permitting permittivities permittivity permix permixable permixed permixtion permixtive permixture permonosulphuric permoralize perms permutabilities permutability permutable permutableness permutably permutate permutated permutates permutating permutation permutational permutationist permutationists permutations permutator permutatorial permutatory permute permuted permuter permuters permutes permuting pern pernambuco pernancies pernancy pernasal pernavigate pernea pernel pernephria pernicion pernicious perniciously perniciousness perniciousnesses pernicketiness pernicketinesses pernicketty pernickety pernickity pernine pernio perniones pernis pernitrate pernitric pernoctate pernoctated pernoctates pernoctating pernoctation pernoctations pernod pernor perns pernychia pernyi peroba perobrachius perocephalus perochirus perodactylus perodicticus perofskite perognathus peroliary peromelous peromelus peromyscus peronate perone peroneal peronei peroneocalcaneal peroneotarsal peroneotibial perones peroneus peroneuses peronial peronium peronnei peronospora peronosporaceae peronosporaceous peronosporales peropod peropodous peropus peroral perorally perorate perorated perorates perorating peroration perorational perorations perorative perorator peroratorical peroratorically peroratory peroses perosis perosmate perosmic perosomus perotic perovskia perovskias perovskite perovskites peroxid peroxidase peroxidases peroxidate peroxidation peroxidations peroxide peroxided peroxides peroxidic peroxidicperoxiding peroxiding peroxidise peroxidised peroxidisement peroxidises peroxidising peroxidize peroxidized peroxidizement peroxidizes peroxidizing peroxids peroxisomal peroxisome peroxisomes peroxy peroxyacid peroxyborate peroxyl perozonid perozonide perp perpend perpended perpendicle perpendicular perpendicularities perpendicularity perpendicularly perpendicularness perpendiculars perpending perpends perpense perpension perpensity perpent perpents perpera perperfect perpession perpet perpetrable perpetrate perpetrated perpetrates perpetrating perpetration perpetrations perpetrator perpetrators perpetratress perpetratrix perpetuable perpetual perpetualism perpetualisms perpetualist perpetualists perpetualities perpetuality perpetually perpetualness perpetuals perpetuana perpetuance perpetuances perpetuant perpetuate perpetuated perpetuates perpetuating perpetuation perpetuations perpetuator perpetuators perpetuities perpetuity perpetuum perphenazine perphenazines perplantar perplex perplexable perplexed perplexedly perplexedness perplexednesses perplexer perplexes perplexing perplexingly perplexities perplexity perplexment perplication perps perquadrat perqueer perqueerly perqueir perquest perquisite perquisites perquisition perquisitions perquisitor perquisitors perradial perradially perradiate perradii perradius perreia perridiculous perrie perrier perriers perries perron perrons perroquet perruche perrukery perruque perruquier perruquiers perruthenate perruthenic perry perryman pers persalt persalts persant persaunt perscent perscribe perscrutate perscrutation perscrutations perscrutator perse persea persecute persecuted persecutee persecutees persecutes persecuting persecutingly persecution persecutional persecutions persecutive persecutiveness persecutor persecutors persecutory persecutress persecutrix perseid perseite perseities perseitol perseity perseline perselines persentiscency persephone persepolis perses perseus perseverance perseverances perseverant perseverate perseverated perseverates perseverating perseveration perseverations perseverative perseverator perseverators persevere persevered perseverence perseveres persevering perseveringly persia persian persians persic persicaria persicarias persicary persico persicos persicot persicots persienne persiennes persiflage persiflages persiflate persifleur persifleurs persilicic persillade persimmon persimmons persing persio persis persist persistance persisted persistence persistences persistencies persistency persistent persistently persistents persister persisters persisting persistingly persistive persistively persistiveness persists persnicketiness persnicketinesses persnickety persolve person persona personable personableness personablenesses personably personae personage personages personal personalia personalis personalisation personalisations personalise personalised personalises personalising personalism personalisms personalist personalistic personalists personalities personality personalization personalizations personalize personalized personalizes personalizing personally personalness personals personalties personalty personam personarum personas personate personated personately personates personating personatings personation personations personative personator personators personed personeity personhood personhoods personifiable personifiant personification personifications personificative personificator personified personifier personifiers personifies personify personifying personisation personise personised personises personising personization personize personized personizes personizing personnel personnels personpower personpowers persons personship persoonia persorption perspection perspectival perspective perspectived perspectiveless perspectively perspectives perspectivism perspectivisms perspectivist perspectivists perspectivity perspectograph perspectometer perspex perspexes perspicable perspicacious perspicaciously perspicaciousness perspicaciousnesses perspicacities perspicacity perspicil perspicous perspicuities perspicuity perspicuous perspicuously perspicuousness perspicuousnesses perspirability perspirable perspirant perspirate perspirated perspirates perspirating perspiration perspirations perspirative perspiratory perspire perspired perspires perspiring perspiringly perspiry perst perstand perstringe perstringed perstringement perstringes perstringing persuadabilities persuadability persuadable persuadableness persuadably persuade persuaded persuadedly persuadedness persuader persuaders persuades persuading persuadingly persuasibilities persuasibility persuasible persuasibleness persuasibly persuasion persuasions persuasive persuasively persuasiveness persuasivenesses persuasives persuasory persue persued persues persuing persulfate persulphate persulphates persulphide persulphocyanate persulphocyanic persulphuric perswade perswaded perswades perswading persymmetric persymmetrical pert pertain pertained pertaining pertainment pertains pertainym pertake pertaken pertakes pertaking perten pertenencia perter pertest perth perthiocyanate perthiocyanic perthiotophyre perthite perthites perthitic perthitically perthophyte perthosite pertinaceous pertinacious pertinaciously pertinaciousness pertinaciousnesses pertinacities pertinacity pertinate pertinence pertinences pertinencies pertinency pertinent pertinentia pertinently pertinentness pertinents pertish pertly pertness pertnesses pertook perts perturb perturbability perturbable perturbance perturbances perturbancy perturbant perturbants perturbate perturbated perturbates perturbating perturbation perturbational perturbations perturbatious perturbative perturbator perturbatories perturbators perturbatory perturbatress perturbatrix perturbed perturbedly perturbedness perturber perturbers perturbing perturbingly perturbment perturbs pertusaria pertusariaceae pertusate pertuse pertused pertusion pertusions pertussal pertussis pertussises perty peru peruke peruked perukeless peruker perukery perukes perukier perukiership perula perulate perule perusable perusal perusals peruse perused peruser perusers peruses perusing peruvian peruvians perv pervade pervaded pervadence pervader pervaders pervades pervading pervadingly pervadingness pervagate pervagation pervalvar pervaporation pervasion pervasions pervasive pervasively pervasiveness pervasivenesses perve perved pervenche perverse perversely perverseness perversenesses perverser perversest perversion perversions perversite perversities perversity perversive pervert perverted pervertedly pervertedness pervertednesses perverter perverters pervertibility pervertible pervertibly perverting pervertive perverts perves pervestigate perviability perviable pervial perviate perviated perviates perviating pervicacies pervicacious pervicaciously pervicaciousness pervicaciousnesses pervicacities pervicacity pervicacy pervigilium perving pervious perviously perviousness perviousnesses pervs pervulgate pervulgation perwick perwitsky pes pesa pesach pesade pesades pesage pesah pesant pesante pesants pesaunt pesaunts pescod peseta pesetas pesewa pesewas peshito peshkar peshkash peshwa peshwas peshwaship peskier peskiest peskily peskiness peskinesses pesky peso pesos pess pessaries pessary pessima pessimal pessimaled pessimaling pessimally pessimals pessimism pessimisms pessimist pessimistic pessimistical pessimistically pessimists pessimize pessimum pessomancy pessoner pessular pessulus pest pestalozzian peste pester pestered pesterer pesterers pestering pesteringly pesterment pesterments pesterous pesters pestersome pestful pesthole pestholes pesthouse pesthouses pesticidal pesticide pesticides pestiduct pestier pestiest pestiferous pestiferously pestiferousness pestiferousnesses pestifugous pestify pestilence pestilences pestilenceweed pestilencewort pestilent pestilential pestilentially pestilentialness pestilently pestis pestle pestled pestles pestling pesto pestological pestologies pestologist pestologists pestology pestos pestproof pests pesty pet peta petabyte petabytes petal petalage petalages petaled petaliferous petaliform petaline petaling petalism petalisms petalite petalled petalless petallike petalling petalocerous petalodic petalodies petalodont petalodontid petalodontoid petalody petaloid petaloidal petaloideous petalomania petalomanias petalon petalostichous petalous petals petalwise petaly petanque petanques petar petara petaras petard petardeer petardier petarding petards petaries petars petary petas petasites petasma petasos petasoses petasus petasuses petate petaurine petaurist petaurista petauristidae petaurists petaurus petcharies petchary petcock petcocks pete peteca petechia petechiae petechial petechiate petegreu peteman petemen peter peterburg petered peterero petering peterman petermen peternet peters petersburg petersen petersham petershams peterwort petfood petful pether pethers pethidine pethidines petillant petiolar petiolary petiolate petiolated petiole petioled petioles petioli petiolular petiolulate petiolule petiolules petiolus petit petite petiteness petitenesses petites petitgrain petitio petition petitionable petitional petitionarily petitionary petitioned petitionee petitioner petitioners petitioning petitionings petitionist petitionists petitionproof petitions petitor petitory petits petkin petkins petling petnap petnaper petnapers petnaping petnapings petnapped petnapper petnappers petnapping petnappings petnaps peto petos petrale petrales petralogy petrarca petrarch petrarchal petraries petrary petre petrean petreity petrel petrels petres petrescence petrescency petrescent petri petricolous petrie petrifaction petrifactions petrifactive petrifiable petrific petrificant petrificate petrification petrifications petrified petrifier petrifiers petrifies petrify petrifying petrine petrissage petrissages petro petrobrusian petrochemical petrochemicals petrochemistries petrochemistry petrocoptis petrocurrencies petrocurrency petrodollar petrodollars petrodrome petrodromes petrog petrogale petrogeneses petrogenesis petrogenetic petrogenic petrogeny petroglyph petroglyphic petroglyphies petroglyphs petroglyphy petrograd petrogram petrograms petrograph petrographer petrographers petrographic petrographical petrographically petrographies petrography petrohyoid petrol petrolage petrolages petrolatum petrolatums petrolean petrolene petroleous petroleum petroleums petroleur petroleurs petroleuse petroleuses petrolic petroliferous petrolific petrolin petrolisation petrolise petrolist petrolithic petrolization petrolize petrolized petrolizing petrolled petrolling petrologic petrological petrologically petrologies petrologist petrologists petrology petrols petromastoid petromoney petromoneys petromyzon petromyzoniformes petromyzont petromyzontidae petromyzontoid petronel petronella petronellas petronellier petronels petropharyngeal petrophilous petrophysical petrophysicist petrophysicists petrophysics petropounds petrosa petrosae petrosal petrosals petroselinum petrosilex petrosiliceous petrosilicious petrosphenoid petrosphenoidal petrosphere petrosquamosal petrosquamous petrostearin petrostearine petrosum petrotympanic petrous petroxolin pets petsai petsais pettable pettah petted pettedly pettedness pettednesses petter petteria petters petti pettiagua pettichaps pettichapses petticoat petticoated petticoaterie petticoatery petticoating petticoatism petticoatless petticoats petticoaty pettier petties pettiest pettifog pettifogged pettifogger pettifoggeries pettifoggers pettifoggery pettifogging pettifoggings pettifogs pettifogulize pettifogulizer pettily pettiness pettinesses petting pettingly pettings pettis pettish pettishly pettishness pettishnesses pettiskirt pettiskirts pettitoes pettle pettled pettles pettling petto petty pettyfog pettygod petulance petulances petulancies petulancy petulant petulantly petum petune petunia petunias petunse petuntse petuntses petuntze petuntzes petwood petzite peucedanin peucites peucyl peugeot peuhl peulvan pew pewage pewdom pewee pewees pewfellow pewful pewholder pewholders pewing pewit pewits pewless pewmate pews pewter pewterer pewterers pewters pewterwort pewtery pewy peyerian peyote peyotes peyotism peyotisms peyotist peyotists peyotl peyotls peyotyl peyotyls peyse peysed peyses peysing peyton peytral peytrals peytrel peytrels pezant pezantic pezants peziza pezizaceae pezizaceous pezizaeform pezizales peziziform pezizoid pezograph pezophaps pf pfalz pfannkuchen pfc pfd pfeffernuss pfenig pfenigs pfennig pfennige pfennigs pfenning pfennings pfft pfg pflag pfui pfund pfunde pfx pg pgntt pgnttrp ph phacelia phacelias phacelite phacella phacellite phacellus phacitis phacoanaphylaxis phacocele phacochere phacocherine phacochoere phacochoerid phacochoerine phacochoeroid phacochoerus phacocyst phacocystectomy phacocystitis phacoemulsification phacoemulsifications phacoglaucoma phacoid phacoidal phacoidoscope phacolite phacolites phacolith phacoliths phacolysis phacomalacia phacometer phacopid phacosclerosis phacoscope phacotherapy phaeacian phaedra phaeic phaeism phaeisms phaelite phaelonion phaelonions phaenantherous phaenanthery phaenogam phaenogamian phaenogamic phaenogamous phaenogams phaenogenesis phaenogenetic phaenological phaenologies phaenology phaenomena phaenomenal phaenomenism phaenomenon phaenotype phaenotypes phaenozygous phaeochrous phaeodarian phaeomelanin phaeomelanins phaeophore phaeophyceae phaeophycean phaeophyceous phaeophyl phaeophyll phaeophyta phaeophytin phaeoplast phaeospore phaeosporous phaet phaethon phaethontidae phaeton phaetons phage phageda phagedaena phagedaenas phagedaenic phagedaenical phagedaenous phagedena phagedenas phagedenic phagedenical phagedenous phages phagocytable phagocytal phagocyte phagocyter phagocytes phagocytic phagocytical phagocytise phagocytises phagocytism phagocytisms phagocytize phagocytized phagocytizes phagocytizing phagocytoblast phagocytolysis phagocytolytic phagocytose phagocytosed phagocytoses phagocytosing phagocytosis phagocytotic phagodynamometer phagolysis phagolytic phagomania phagophobia phagophobias phagosome phagosomes phagun phainolion phaius phalacrocoracidae phalacrocoracine phalacrocorax phalacrosis phalaenopsid phalaenopsis phalaenoptilus phalangal phalange phalangeal phalangean phalanger phalangeridae phalangerine phalangers phalanges phalangette phalangian phalangic phalangid phalangida phalangidan phalangidean phalangids phalangiform phalangigrade phalangigrady phalangiid phalangiidae phalangist phalangistine phalangists phalangite phalangitic phalangitis phalangium phalangologist phalangology phalansterial phalansterian phalansterianism phalansterianisms phalansterians phalansteric phalansteries phalansterism phalansterisms phalansterist phalansterists phalanstery phalanx phalanxed phalanxes phalarica phalaris phalarope phalaropes phalaropidae phalaropus phalera phalerae phalerate phalerated phaleucian phallaceae phallaceous phallales phallalgia phallaneurysm phallephoric phalli phallic phallical phallically phallicism phallicisms phallicist phallicists phallics phallin phallins phallis phallism phallisms phallist phallists phallitis phallocentric phallocentricities phallocentricity phallocentrism phallocentrisms phallocrat phallocratic phallocrats phallocrypsis phallodynia phalloid phalloidin phalloidins phalloncus phalloplasty phallorrhagia phallus phalluses phalsa phanatron phane phaneric phanerite phanerocephalous phanerocodonic phanerocryst phanerocrystalline phanerogam phanerogamae phanerogamia phanerogamian phanerogamic phanerogamous phanerogams phanerogamy phanerogenetic phanerogenic phaneroglossal phaneroglossate phaneromania phaneromere phaneromerous phanerophyte phanerophytes phaneroscope phanerosis phanerozoic phanerozonate phang phanged phanging phangs phanic phano phanos phanotron phansigar phansigars phantascope phantasia phantasiast phantasiasts phantasied phantasies phantasim phantasime phantasimes phantasims phantasist phantasize phantasm phantasma phantasmag phantasmagoria phantasmagorial phantasmagorially phantasmagorian phantasmagorianly phantasmagorias phantasmagoric phantasmagorical phantasmagorically phantasmagories phantasmagorist phantasmagory phantasmal phantasmalian phantasmalities phantasmality phantasmally phantasmascope phantasmata phantasmatic phantasmatical phantasmatically phantasmatography phantasmic phantasmical phantasmically phantasmogenesis phantasmogenetic phantasmogenetically phantasmograph phantasmological phantasmology phantasms phantast phantastic phantastical phantastics phantastries phantastry phantasts phantasy phantasying phantic phantom phantomatic phantomic phantomical phantomically phantomise phantomiser phantomish phantomize phantomizer phantomland phantomlike phantomnation phantomry phantoms phantomship phantomy phantoplex phantoscope phantosme phantosmes phar pharaoh pharaohs pharaonic phare phares pharian pharisaic pharisaical pharisaically pharisaicalness pharisaicalnesses pharisaism pharisaisms pharisean pharisee phariseeism phariseeisms pharisees pharm pharmacal pharmaceutic pharmaceutical pharmaceutically pharmaceuticals pharmaceutics pharmaceutist pharmaceutists pharmacic pharmacies pharmacist pharmacists pharmacite pharmacochemistry pharmacodiagnosis pharmacodynamic pharmacodynamical pharmacodynamically pharmacodynamics pharmacoendocrinology pharmacogenetic pharmacogenetics pharmacognosia pharmacognosies pharmacognosis pharmacognosist pharmacognosists pharmacognostic pharmacognostical pharmacognostically pharmacognostics pharmacognosy pharmacography pharmacokinetic pharmacokineticist pharmacokineticists pharmacokinetics pharmacol pharmacolite pharmacologia pharmacologic pharmacological pharmacologically pharmacologies pharmacologist pharmacologists pharmacology pharmacomania pharmacomaniac pharmacomaniacal pharmacometer pharmacon pharmacopedia pharmacopedic pharmacopedics pharmacopeia pharmacopeial pharmacopeian pharmacopeias pharmacophobia pharmacopoeia pharmacopoeial pharmacopoeian pharmacopoeias pharmacopoeic pharmacopoeist pharmacopoeists pharmacopolist pharmacopolists pharmacoposia pharmacopsychology pharmacopsychosis pharmacosiderite pharmacotherapies pharmacotherapy pharmacy pharmakoi pharmakos pharmic pharming pharmings pharmuthi pharo pharology pharomacrus pharos pharoses pharsalus pharyngal pharyngalgia pharyngalgic pharyngals pharyngeal pharyngealization pharyngealized pharyngeals pharyngectomies pharyngectomy pharyngemphraxis pharynges pharyngic pharyngismus pharyngitic pharyngitides pharyngitis pharyngitises pharyngoamygdalitis pharyngobranch pharyngobranchial pharyngobranchiate pharyngocele pharyngoceratosis pharyngodynia pharyngoepiglottic pharyngoepiglottidean pharyngoesophageal pharyngoglossal pharyngoglossus pharyngognath pharyngognathous pharyngographic pharyngography pharyngokeratosis pharyngolaryngeal pharyngolaryngitis pharyngolith pharyngological pharyngologies pharyngology pharyngomaxillary pharyngomycosis pharyngonasal pharyngopalatine pharyngopalatinus pharyngoparalysis pharyngopathy pharyngoplasty pharyngoplegia pharyngoplegic pharyngoplegy pharyngopleural pharyngopneustal pharyngorhinitis pharyngorhinoscopy pharyngoscleroma pharyngoscope pharyngoscopes pharyngoscopic pharyngoscopies pharyngoscopy pharyngospasm pharyngotherapy pharyngotome pharyngotomies pharyngotomy pharyngotonsillitis pharyngotyphoid pharyngoxerosis pharynogotome pharynx pharynxes phascaceous phascogale phascolarctos phascolome phase phaseal phased phasedown phasedowns phaseless phaselin phasemeter phasemy phaseolin phaseolins phaseolous phaseolunatin phaseolus phaseometer phaseout phaseouts phaser phasers phases phaseun phasianic phasianid phasianidae phasianine phasianoid phasianus phasic phasing phasis phasitron phasm phasma phasmajector phasmatid phasmatidae phasmatodea phasmatoid phasmatrope phasmid phasmida phasmidae phasmidia phasmids phasmoid phasmophobia phasogeneous phasor phasotropy phat phatic phatically phatter phattest phd pheal phearse pheasant pheasantries pheasantry pheasants pheasantwood pheazar pheazars pheeal pheer pheere pheeres pheers pheese pheesed pheeses pheesing pheeze pheezed pheezes pheezing phegopteris phellandrene phellem phellems phellodendron phelloderm phellodermal phelloderms phellogen phellogenetic phellogenic phellogens phelloid phellonic phelloplastic phelloplastics phellum phelonia phelonion phelonionia phelonions phemic phenacaine phenacaines phenacetin phenacetine phenacetins phenaceturic phenacite phenacites phenacomys phenacyl phenakism phenakisms phenakistoscope phenakistoscopes phenakite phenakites phenanthraquinone phenanthrene phenanthrenequinone phenanthrenes phenanthridine phenanthridone phenanthrol phenanthroline phenarsine phenate phenates phenazin phenazine phenazines phenazins phenazone phencyclidine phencyclidines phene phenegol phenelzine phenene phenes phenethicillin phenethyl phenetic phenetically pheneticist pheneticists phenetics phenetidin phenetidine phenetidines phenetol phenetole phenetoles phenetols phenformin phengite phengites phengitical phengophobia phengophobias phenic phenicate phenicia phenicine phenicious phenicopter phenin phenine phenix phenixes phenmetrazine phenmetrazines phenmiazine phenobarbital phenobarbitals phenobarbitol phenocain phenocoll phenocopies phenocopy phenocryst phenocrystalline phenocrystic phenocrysts phenogam phenogamic phenogamous phenogams phenogenesis phenogenetic phenol phenolate phenolated phenolates phenolia phenolic phenolics phenoliolia phenolion phenolions phenolisation phenolise phenolization phenolize phenologic phenological phenologically phenologies phenologist phenologists phenology phenoloid phenolphthalein phenolphthaleins phenols phenolsulphonate phenolsulphonephthalein phenolsulphonic phenom phenomena phenomenal phenomenalisation phenomenalise phenomenalised phenomenalises phenomenalising phenomenalism phenomenalisms phenomenalist phenomenalistic phenomenalistically phenomenalists phenomenalities phenomenality phenomenalization phenomenalize phenomenalized phenomenalizes phenomenalizing phenomenally phenomenalness phenomenas phenomenic phenomenical phenomenise phenomenised phenomenises phenomenising phenomenism phenomenisms phenomenist phenomenistic phenomenists phenomenize phenomenized phenomenizes phenomenizing phenomenologic phenomenological phenomenologically phenomenologies phenomenologist phenomenologists phenomenology phenomenon phenomenona phenomenons phenoms phenoplast phenoplastic phenoquinone phenosafranine phenosal phenose phenosol phenospermic phenospermy phenothiazine phenothiazines phenotype phenotyped phenotypes phenotypic phenotypical phenotypically phenotyping phenoxazine phenoxid phenoxide phenoxides phenoxy phenoxybenzamine phenozygous phentolamine phentolamines phenyl phenylacetaldehyde phenylacetamide phenylacetic phenylaceticaldehyde phenylalanin phenylalanine phenylalanines phenylalanins phenylamide phenylamine phenylate phenylated phenylation phenylbenzene phenylboric phenylbutazone phenylbutazones phenylcarbamic phenylcarbimide phenylcarbinol phenyldiethanolamine phenylene phenylenediamine phenylenes phenylephrine phenylephrines phenylethylamine phenylethylamines phenylethylene phenylethylmalonylure phenylethylmalonylurea phenylglycine phenylglycolic phenylglyoxylic phenylhydrazine phenylhydrazone phenylic phenylketonuria phenylketonurias phenylketonuric phenylketonurics phenylmethane phenylpropanolamine phenylpropanolamines phenyls phenylthiocarbamide phenylthiocarbamides phenylthiourea phenylthioureas phenytoin phenytoins pheochromocytoma pheochromocytomas pheochromocytomata pheon pheons pheophyl pheophyll pheophytin phereses pheresis pheretrer pheromonal pheromone pheromones phese phesed pheses phesing phew phews phi phial phialae phialai phiale phialed phialful phialide phialiform phialine phialing phialled phiallike phialling phialophore phialospore phials phies phil philabeg philabegs philadelphaceae philadelphia philadelphian philadelphians philadelphite philadelphus philadelphuses philadelphy philaenus philalethist philamot philamots philander philandered philanderer philanderers philandering philanders philanthid philanthrope philanthropes philanthropian philanthropic philanthropical philanthropically philanthropies philanthropine philanthropinism philanthropinist philanthropise philanthropised philanthropises philanthropising philanthropism philanthropist philanthropistic philanthropists philanthropize philanthropized philanthropizes philanthropizing philanthropoid philanthropoids philanthropy philantomba philarchaist philaristocracy philatelic philatelical philatelically philatelies philatelism philatelist philatelistic philatelists philately philathletic philauty philematology philemon philharmonic philharmonics philhellene philhellenes philhellenic philhellenism philhellenisms philhellenist philhellenists philhellinist philhippic philhorse philhorses philhymnic philia philiater philibeg philibegs philic philine philip philippi philippians philippic philippicize philippics philippina philippinas philippine philippines philippize philippizer philippus philister philistia philistine philistines philistinish philistinism philistinisms phillabeg phillabegs phillibeg phillibegs phillidae phillilew philliloo phillipeener phillippi phillipsine phillipsite phillipsites phillis phillumenies phillumenist phillumenists phillumeny phillyrea phillyrin philobiblian philobiblic philobiblical philobiblist philobotanic philobotanist philobrutish philocalic philocalist philocaly philocathartic philocatholic philocomal philocubist philocynic philocynical philocynicism philocyny philodemic philodendra philodendron philodendrons philodespot philodestructiveness philodox philodoxer philodoxical philodramatic philodramatist philofelist philofelon philogarlic philogastric philogeant philogenitive philogenitiveness philograph philographic philogynaecic philogynies philogynist philogynists philogynous philogyny philohela philohellenian philokleptic philol philoleucosis philologaster philologastry philologer philologers philologian philologians philologic philological philologically philologies philologist philologistic philologists philologize philologue philologues philology philomachus philomath philomathematic philomathematical philomathic philomathical philomathies philomaths philomathy philome philomel philomela philomelanist philomelian philomels philomot philomots philomuse philomusical philomystic philomythia philomythic philonatural philoneism philonian philonist philonium philonoist philopagan philopater philopatrian philopena philopenas philophilosophos philophylla philopig philoplutonic philopoena philopoenas philopoet philopogon philopolemic philopolemical philopornist philoprogeneity philoprogenitive philoprogenitiveness philoprogenitivenesses philopterid philopublican philoradical philorchidaceous philornithic philorthodox philos philosoph philosophaster philosophastering philosophasters philosophastry philosophe philosophedom philosopheme philosopher philosopheress philosopheresses philosophers philosophership philosophes philosophess philosophesses philosophic philosophical philosophically philosophicalness philosophicide philosophicohistorical philosophicojuristic philosophicolegal philosophicopsychological philosophicoreligious philosophicotheological philosophies philosophilous philosophisation philosophise philosophised philosophiser philosophisers philosophises philosophising philosophism philosophisms philosophist philosophister philosophistic philosophistical philosophists philosophization philosophize philosophized philosophizer philosophizers philosophizes philosophizing philosophling philosophobia philosophocracy philosophuncule philosophunculist philosophy philotadpole philotechnic philotechnical philotechnist philothaumaturgic philotheism philotheist philotheistic philotheosophical philotherian philotherianism philoxenia philoxenias philoxygenous philozoic philozoist philozoonist philter philtered philterer philtering philterproof philters philtra philtre philtres philtrum philydraceous phimosed phimoses phimosis phimotic phinnock phinnocks phippe phis phish phished phisher phishers phishing phisnomies phisnomy phit phitones phiz phizes phizog phizogs phizzes phlebalgia phlebangioma phlebarteriectasia phlebarteriodialysis phlebectasia phlebectasis phlebectasy phlebectomy phlebectopia phlebectopy phlebemphraxis phlebenteric phlebenterism phlebitic phlebitides phlebitis phlebitises phlebodium phlebogram phlebograms phlebograph phlebographic phlebographical phlebographies phlebography phleboid phleboidal phlebolite phlebolites phlebolith phlebolithiasis phlebolithic phlebolitic phlebological phlebologies phlebologist phlebologists phlebology phlebometritis phlebopexy phleboplasty phleborrhage phleborrhagia phleborrhaphy phleborrhexis phleboscleroses phlebosclerosis phlebosclerotic phlebostasia phlebostasis phlebostenosis phlebostrepsis phlebothrombosis phlebotome phlebotomic phlebotomical phlebotomically phlebotomies phlebotomisation phlebotomise phlebotomised phlebotomises phlebotomising phlebotomist phlebotomists phlebotomization phlebotomize phlebotomized phlebotomizes phlebotomizing phlebotomus phlebotomy phlegethon phlegm phlegma phlegmagogic phlegmagogue phlegmagogues phlegmasia phlegmasias phlegmatic phlegmatical phlegmatically phlegmaticalness phlegmaticly phlegmaticness phlegmatism phlegmatist phlegmatized phlegmatous phlegmier phlegmiest phlegmless phlegmon phlegmonic phlegmonoid phlegmonous phlegmons phlegms phlegmy phleum phlobaphene phlobatannin phloem phloems phloeophagous phloeoterma phloeum phlogisma phlogistian phlogistic phlogistical phlogisticate phlogisticated phlogisticates phlogisticating phlogistication phlogiston phlogistonism phlogistonist phlogistons phlogogenetic phlogogenic phlogogenous phlogopite phlogopites phlogosed phlogosin phlogosis phlogotic phlomis phlomises phloretic phloretin phlorhizin phloridzin phlorina phlorizin phloroglucic phloroglucin phloroglucinol phlorol phlorone phlorrhizin phlox phloxes phloxin phlyctaena phlyctaenae phlyctaenula phlyctena phlyctenae phlyctenar phlyctenoid phlyctenula phlyctenule phlyzacious phlyzacium pho phobia phobiac phobias phobic phobics phobies phobism phobisms phobist phobists phobophobia phoby phoca phocacean phocaceous phocae phocaena phocaenine phocal phocas phocenate phocenic phocenin phocid phocidae phociform phocine phocodont phocodontic phocoid phocomeli phocomelia phocomelias phocomelous phocomelus phoebads phoebe phoebes phoebus phoebuses phoenicaceous phoenicean phoenicia phoenician phoenicians phoenicite phoenicochroite phoenicophorium phoenicopter phoenicopteridae phoenicopteroid phoenicopterous phoeniculidae phoeniculus phoenicurous phoenicurus phoenigm phoenix phoenixes phoenixism phoenixisms phoenixity phoenixlike phoh phohs phokomelia pholad pholades pholadian pholadid pholadidae pholadoid pholas pholcid pholcoid pholidae pholido pholidolite pholidoses pholidosis pholidota pholidote pholiota pholis pholistoma phon phonal phonasthenia phonasthenias phonate phonated phonates phonating phonation phonations phonatory phonautogram phonautograph phonautographic phonautographically phonautographs phone phonebook phonecall phonecalls phonecard phonecards phoned phoneidoscope phoneidoscopic phoneier phoneiest phonematic phonematically phonematics phoneme phonemes phonemic phonemically phonemicisation phonemicisations phonemicise phonemicised phonemicises phonemicising phonemicist phonemicists phonemicization phonemicizations phonemicize phonemicized phonemicizes phonemicizing phonemics phonendoscope phonendoscopes phoner phoners phones phonesis phonestheme phonesthemic phonet phonetic phonetical phonetically phonetician phoneticians phoneticisation phoneticisations phoneticise phoneticised phoneticises phoneticising phoneticism phoneticisms phoneticist phoneticists phoneticization phoneticizations phoneticize phoneticized phoneticizes phoneticizing phoneticogrammatical phoneticohieroglyphic phonetics phonetisation phonetisations phonetise phonetised phonetises phonetising phonetism phonetisms phonetist phonetists phonetization phonetizations phonetize phonetized phonetizes phonetizing phoney phoneyed phoneying phoneyness phoneynesses phoneys phonghi phoniatric phoniatrics phoniatry phonic phonically phonics phonied phonier phonies phoniest phonikon phonily phoniness phoninesses phoning phonism phonmeter phonmeters phono phonocamptic phonocamptics phonocardiogram phonocardiograms phonocardiograph phonocardiographic phonocardiographies phonocardiographs phonocardiography phonocinematograph phonodeik phonodynamograph phonofiddle phonofiddles phonoglyph phonogram phonogramic phonogramically phonogrammatic phonogrammatical phonogrammic phonogrammically phonograms phonograph phonographally phonographer phonographers phonographic phonographical phonographically phonographies phonographist phonographists phonographs phonography phonol phonolite phonolites phonolitic phonologer phonologic phonological phonologically phonologies phonologist phonologists phonology phonomania phonometer phonometers phonometric phonometry phonomimic phonomotor phonon phonons phonopathy phonophile phonophobia phonophobias phonophone phonophore phonophores phonophoric phonophorous phonophote phonophotography phonophotoscope phonophotoscopic phonoplex phonopore phonopores phonoreception phonoreceptions phonoreceptor phonorecord phonos phonoscope phonoscopes phonotactic phonotactics phonotelemeter phonotype phonotyped phonotyper phonotypes phonotypic phonotypical phonotypically phonotypies phonotyping phonotypist phonotypists phonotypy phons phony phonying phoo phooey phooeys phooka phoradendron phoranthium phorate phorates phorbin phoresies phoresis phoresy phoretic phoria phorid phorminges phorminx phormium phormiums phorology phorometer phorometric phorometry phorone phoronic phoronid phoronida phoronidea phoronids phoronomia phoronomic phoronomically phoronomics phoronomy phoroscope phorozooid phorrhea phorrhoea phos phose phosgene phosgenes phosgenic phosgenite phosis phosphagen phospham phosphamic phosphamide phosphamidic phosphamidon phosphammonium phosphatase phosphatases phosphate phosphated phosphatemia phosphates phosphatese phosphatic phosphatide phosphatides phosphatidic phosphatidyl phosphatidylcholine phosphatidylcholines phosphatidylethanolamine phosphatidylethanolamines phosphatidyls phosphating phosphation phosphatisation phosphatisations phosphatise phosphatised phosphatises phosphatising phosphatization phosphatizations phosphatize phosphatized phosphatizes phosphatizing phosphaturia phosphaturias phosphaturic phosphene phosphenes phosphenyl phosphid phosphide phosphides phosphids phosphin phosphinate phosphine phosphines phosphinic phosphins phosphite phosphites phospho phosphoaminolipide phosphocarnic phosphocreatin phosphocreatine phosphocreatines phosphocreatins phosphodiesterase phosphodiesterases phosphoenolpyruvate phosphoenolpyruvates phosphoferrite phosphofructokinase phosphofructokinases phosphoglucomutase phosphoglucomutases phosphoglyceraldehyde phosphoglyceraldehydes phosphoglycerate phosphoglycerates phosphoglyceric phosphoglycoprotein phosphokinase phosphokinases phospholipase phospholipases phospholipid phospholipide phospholipids phospholipin phosphomolybdate phosphomolybdic phosphomonoesterase phosphomonoesterases phosphonate phosphonic phosphonium phosphoniums phosphonuclease phosphophori phosphophyllite phosphoprotein phosphoproteins phosphor phosphorate phosphorated phosphorates phosphorating phosphore phosphoreal phosphorent phosphoreous phosphores phosphoresce phosphoresced phosphorescence phosphorescences phosphorescent phosphorescently phosphoresces phosphorescing phosphoret phosphoreted phosphorets phosphoretted phosphorhidrosis phosphori phosphoric phosphorical phosphoriferous phosphorisation phosphorise phosphorised phosphorises phosphorising phosphorism phosphorisms phosphorite phosphorites phosphoritic phosphorize phosphorized phosphorizes phosphorizing phosphorogen phosphorogene phosphorogenic phosphorograph phosphorographic phosphorography phosphorolyses phosphorolysis phosphorolytic phosphoroscope phosphorous phosphors phosphoruria phosphorus phosphoruses phosphoryl phosphorylase phosphorylases phosphorylate phosphorylated phosphorylates phosphorylating phosphorylation phosphorylations phosphorylative phosphoryls phosphosilicate phosphotartaric phosphotungstate phosphotungstic phosphowolframic phosphuranylite phosphuret phosphurets phosphuretted phosphuria phosphyl phoss phossy phot photaesthesia photaesthesis photaesthetic photal photalgia photechy photelectrograph photeolic photerythrous photesthesis photic photically photics photinia photinias photism photisms photistic photo photoactinic photoactivate photoactivation photoactive photoactivities photoactivity photoaesthetic photoaging photoagings photoalbum photoalgraphy photoanamorphosis photoaquatint photoautotroph photoautotrophic photoautotrophically photoautotrophs photobathic photobiography photobiologic photobiological photobiologies photobiologist photobiologists photobiology photobiotic photoblepharon photobromide photocampsis photocatalyser photocatalyses photocatalysis photocatalyst photocatalytic photocatalyzer photocathode photocathodes photocell photocells photocellulose photoceptor photoceramic photoceramics photoceramist photochemic photochemical photochemically photochemigraphy photochemist photochemistries photochemistry photochemists photochloride photochlorination photochromascope photochromatic photochrome photochromic photochromics photochromies photochromism photochromisms photochromography photochromolithograph photochromoscope photochromotype photochromotypy photochromy photochronograph photochronographic photochronographical photochronographically photochronographs photochronography photocinesis photocoagulate photocoagulated photocoagulates photocoagulating photocoagulation photocoagulations photocollograph photocollographic photocollography photocollotype photocombustion photocompose photocomposed photocomposer photocomposers photocomposes photocomposing photocomposition photocompositions photoconducting photoconduction photoconductive photoconductivities photoconductivity photoconductor photoconductors photocopiable photocopied photocopier photocopiers photocopies photocopy photocopying photocopyings photocrayon photocurrent photocurrents photodecomposition photodecompositions photodegradable photodensitometer photodermatic photodermatism photodetector photodetectors photodiode photodiodes photodisintegrate photodisintegrated photodisintegrates photodisintegrating photodisintegration photodisintegrations photodissociate photodissociated photodissociates photodissociating photodissociation photodissociations photodissociative photodrama photodramas photodramatic photodramatics photodramatist photodramaturgic photodramaturgy photodrome photodromy photoduplicate photoduplicated photoduplicates photoduplicating photoduplication photoduplications photodynamic photodynamical photodynamically photodynamics photodysphoria photoed photoelastic photoelasticities photoelasticity photoelectric photoelectrical photoelectrically photoelectricities photoelectricity photoelectrode photoelectrodes photoelectron photoelectronic photoelectronics photoelectrons photoelectrotype photoemission photoemissions photoemissive photoeng photoengrave photoengraved photoengraver photoengravers photoengraves photoengraving photoengravings photoepinastic photoepinastically photoepinasty photoesthesis photoesthetic photoetch photoetched photoetcher photoetching photoexcitation photoexcitations photoexcited photofilm photofinish photofinisher photofinishers photofinishing photofinishings photofission photofissions photofit photofits photoflash photoflashes photoflight photoflood photofloodlamp photofloods photofluorogram photofluorograms photofluorograph photofluorographic photofluorographies photofluorography photog photogalvanograph photogalvanographic photogalvanography photogastroscope photogelatin photogen photogene photogenes photogenetic photogenic photogenically photogenies photogenous photogens photogeny photogeologic photogeological photogeologies photogeologist photogeologists photogeology photoglyph photoglyphic photoglyphies photoglyphography photoglyphs photoglyphy photoglyptic photoglyptography photogram photogrammeter photogrammetric photogrammetrical photogrammetries photogrammetrist photogrammetrists photogrammetry photograms photograph photographable photographally photographed photographee photographer photographeress photographers photographess photographic photographical photographically photographies photographing photographise photographist photographists photographize photographometer photographs photography photograt photogravure photogravures photogravurist photogs photogyric photohalide photoheliograph photoheliographic photoheliographs photoheliography photoheliometer photohyponastic photohyponastically photohyponasty photoimpression photoinactivation photoinduced photoinduction photoinductions photoinductive photoing photoinhibition photointaglio photointerpretation photointerpretations photointerpreter photointerpreters photoionisation photoionisations photoionization photoionizations photoionize photoionized photoionizes photoionizing photoisomeric photoisomerisation photoisomerization photoist photojournalism photojournalisms photojournalist photojournalistic photojournalists photokineses photokinesis photokinetic photolith photolitho photolithograph photolithographed photolithographer photolithographers photolithographic photolithographically photolithographies photolithographing photolithographs photolithography photolithoprint photologic photological photologist photology photoluminesce photoluminesced photoluminescence photoluminescences photoluminescent photoluminescently photoluminescents photoluminesces photoluminescing photolysable photolyse photolysed photolyses photolysing photolysis photolyte photolytic photolytically photolyzable photolyze photolyzed photolyzes photolyzing photom photoma photomacrograph photomacrographed photomacrographic photomacrographies photomacrographing photomacrographs photomacrography photomagnetic photomagnetism photomap photomappe photomapped photomapper photomappi photomapping photomaps photomask photomasks photomechanical photomechanically photometeor photometer photometers photometric photometrical photometrically photometrician photometries photometrist photometrists photometrograph photometry photomezzotype photomicrogram photomicrograph photomicrographer photomicrographers photomicrographic photomicrographical photomicrographically photomicrographies photomicrographs photomicrography photomicroscope photomicroscopes photomicroscopic photomicroscopy photomontage photomontages photomorphogeneses photomorphogenesis photomorphogenic photomorphosis photomosaic photomosaics photomultiplier photomultipliers photomural photomuralist photomuralists photomurals photon photonastic photonasties photonasty photonegative photonephograph photonephoscope photoneutron photonic photonics photonosus photonovel photonovels photons photonuclear photooxidation photooxidations photooxidative photooxidize photooxidized photooxidizes photooxidizing photopathic photopathy photoperceptive photoperimeter photoperiod photoperiodic photoperiodically photoperiodicities photoperiodicity photoperiodism photoperiodisms photoperiods photophane photophase photophases photophil photophile photophilic photophilies photophilous photophils photophily photophobe photophobes photophobia photophobias photophobic photophobous photophone photophones photophonic photophonies photophony photophore photophores photophoreses photophoresis photophosphorescent photophosphorylation photophosphorylations photophygous photophysical photophysicist photopia photopias photopic photopile photopitometer photoplay photoplayer photoplays photoplaywright photopography photopolarigraph photopolarimeter photopolarimeters photopolymer photopolymerisation photopolymerization photopolymers photopositive photoprint photoprinter photoprinting photoprocess photoproduct photoproduction photoproductions photoproducts photoproton photopsia photopsias photopsies photopsy photoptometer photoradio photoradiogram photoreaction photoreactions photoreactivating photoreactivation photoreactivations photorealism photorealisms photorealist photorealistic photorealists photoreception photoreceptions photoreceptive photoreceptor photoreceptors photoreconnaisance photoreconnaissance photoreconnaissances photorecorder photorecording photoreduce photoreduced photoreduces photoreducing photoreduction photoreductions photorefractive photoregression photorelief photoreproduction photoreproductions photoresist photoresistance photoresists photorespiration photorespirations photos photosalt photosantonic photoscope photoscopic photoscopy photosculptural photosculpture photosensitisation photosensitisations photosensitise photosensitised photosensitiser photosensitisers photosensitises photosensitising photosensitive photosensitiveness photosensitivities photosensitivity photosensitization photosensitizations photosensitize photosensitized photosensitizer photosensitizers photosensitizes photosensitizing photosensory photoset photosets photosetter photosetters photosetting photosettings photospectroheliograph photospectroscope photospectroscopic photospectroscopical photospectroscopy photosphere photospheres photospheric photospherically photostability photostable photostat photostated photostater photostatic photostatically photostating photostationary photostats photostatted photostatter photostatting photostereograph photosurveying photosyntax photosynthate photosynthates photosyntheses photosynthesis photosynthesise photosynthesised photosynthesises photosynthesising photosynthesize photosynthesized photosynthesizes photosynthesizing photosynthetic photosynthetically photosynthometer photosystem photosystems phototachometer phototachometric phototachometrical phototachometry phototactic phototactically phototactism phototaxes phototaxis phototaxy phototechnic phototelegraph phototelegraphic phototelegraphically phototelegraphies phototelegraphs phototelegraphy phototelephone phototelephony phototelescope phototelescopic phototheodolite phototherapeutic phototherapeutics phototherapic phototherapies phototherapist phototherapy photothermic phototimer phototonic phototonus phototonuses phototopographic phototopographical phototopography phototoxic phototoxicities phototoxicity phototransceiver phototransistor phototransistors phototrichromatic phototrope phototropes phototroph phototrophic phototrophs phototrophy phototropic phototropically phototropies phototropism phototropisms phototropy phototube phototubes phototype phototyped phototypes phototypesetter phototypesetters phototypesetting phototypesettings phototypic phototypically phototypies phototyping phototypist phototypographic phototypographical phototypographically phototypographies phototypography phototypy photovisual photovitrotype photovoltaic photovoltaics photoxylographies photoxylography photozinco photozincograph photozincographic photozincographies photozincographs photozincography photozincotype photozincotypy photphotonegative phots photuria phousdar phoxinus php phpht phr phragma phragmacone phragmipedium phragmites phragmocone phragmoconic phragmocyttarous phragmoid phragmoplast phragmoplasts phragmosis phrampel phrarisaical phrasable phrasal phrasally phrase phraseable phrasebook phrasebooks phrased phraseless phrasem phrasemake phrasemaker phrasemakers phrasemaking phrasemakings phraseman phrasemen phrasemonger phrasemongering phrasemongerings phrasemongers phrasemongery phraseogram phraseograms phraseograph phraseographic phraseographs phraseography phraseologic phraseological phraseologically phraseologies phraseologist phraseologists phraseology phraser phrasers phrases phrasey phrasier phrasiest phrasify phrasiness phrasing phrasings phrasy phrator phratral phratria phratriac phratrial phratric phratries phratry phreak phreaked phreaking phreakings phreaks phreatic phreatophyte phreatophytes phreatophytic phren phreneses phrenesia phrenesiac phrenesis phrenetical phrenetically phreneticness phrenetics phrenic phrenicectomy phrenicocolic phrenicocostal phrenicogastric phrenicoglottic phrenicohepatic phrenicolienal phrenicopericardiac phrenicosplenic phrenicotomy phrenics phrenism phrenisms phrenitic phrenitis phrenitises phrenocardia phrenocardiac phrenocolic phrenocostal phrenodynia phrenogastric phrenoglottic phrenogrady phrenograih phrenogram phrenograph phrenography phrenohepatic phrenol phrenologer phrenologic phrenological phrenologically phrenologies phrenologise phrenologised phrenologises phrenologising phrenologist phrenologists phrenologize phrenologized phrenologizes phrenologizing phrenology phrenomagnetism phrenomesmerism phrenopathia phrenopathic phrenopathy phrenopericardiac phrenoplegia phrenoplegy phrenosin phrenosinic phrenospasm phrenosplenic phrenotropic phrenoward phrensical phrensied phrensies phrensy phrensying phrentick phronemophobia phronesis phrontisteries phrontisterion phrontisterium phrontistery phryganeid phryganeoid phrygia phrygian phrygium phrymaceous phrynid phrynin phrynoid phrynosoma pht phtalic phthalacene phthalan phthalanilic phthalate phthalates phthalazin phthalazine phthalein phthaleine phthaleinometer phthaleins phthalic phthalid phthalide phthalimide phthalin phthalins phthalocyanin phthalocyanine phthalocyanines phthalocyanins phthalyl phthalylsulfathiazole phthanite phthinoid phthiocol phthiriases phthiriasis phthiriidae phthirius phthirophagous phthirus phthises phthisic phthisical phthisicky phthisics phthisiogenesis phthisiogenetic phthisiogenic phthisiologist phthisiology phthisiophobia phthisiotherapeutic phthisiotherapy phthisipneumonia phthisipneumony phthisis phthongal phthongometer phthor phthoric phthorimaea phu phugoid phulkari phulwa phulwara phut phuts phutted phutting phycic phycite phycitol phycobilin phycochrom phycochromaceae phycochromaceous phycochrome phycochromophyceous phycocolloid phycocyan phycocyanin phycocyanins phycocyanogen phycocyans phycoerythrin phycoerythrins phycography phycological phycologies phycologist phycologists phycology phycomycete phycomycetes phycomycetous phycophaein phycophaeins phycoxanthin phycoxanthine phycoxanthins phygogalactic phyla phylacobiosis phylacobiotic phylacteric phylacterical phylacteried phylacteries phylacterize phylactery phylactic phylactocarp phylactocarpal phylactolaematous phylae phylar phylarch phylarchic phylarchical phylarchies phylarchs phylarchy phylartery phylaxis phylaxises phyle phylephebic phyles phyleses phylesis phylesises phyletic phyletically phyletism phylic phyllade phyllamania phyllamorph phyllaries phyllary phyllid phyllidae phyllids phylliform phyllin phylline phyllis phyllite phyllites phyllitic phyllitis phyllium phyllo phyllobranchia phyllobranchial phyllobranchiate phyllocarid phyllocaridan phyllocerate phylloclad phyllocladaceae phylloclade phylloclades phyllocladia phyllocladioid phyllocladium phyllocladous phylloclads phyllocladus phyllocyanic phyllocyanin phyllocyst phyllocystic phyllode phyllodes phyllodia phyllodial phyllodies phyllodination phyllodineous phyllodiniation phyllodinous phyllodium phyllodoce phyllody phylloerythrin phyllogenetic phyllogenous phylloid phylloidal phylloideous phylloids phyllomancy phyllomania phyllomanias phyllome phyllomes phyllomic phyllomorph phyllomorphic phyllomorphosis phyllomorphy phyllophagan phyllophagous phyllophore phyllophorous phyllophyllin phyllophyte phyllopod phyllopodan phyllopode phyllopodiform phyllopodium phyllopodous phyllopods phylloporphyrin phylloporus phylloptosis phyllopyrrole phylloquinone phylloquinones phyllorhine phyllorhinine phyllorhynchus phyllos phylloscopine phylloscopus phyllosilicate phyllosiphonic phyllosoma phyllosome phyllospondylous phyllostachys phyllostomatidae phyllostomatoid phyllostomatous phyllostome phyllostomidae phyllostomine phyllostomous phyllostomus phyllotactic phyllotactical phyllotaxes phyllotaxic phyllotaxies phyllotaxis phyllotaxy phyllous phylloxanthin phylloxera phylloxerae phylloxeran phylloxeras phylloxeric phylloxeridae phyllozooid phylogeneses phylogenesis phylogenetic phylogenetical phylogenetically phylogenic phylogenically phylogenies phylogenist phylogeny phylogerontic phylogerontism phylography phylology phylon phyloneanic phylonepionic phylum phylumla phyma phymas phymata phymatic phymatid phymatoid phymatorhysin phymatosis phys physa physagogue physales physalia physalian physalias physalis physalises physalite physaria physchometrika physcioid physed physeds physes physeter physeteridae physeterine physeteroid physeters physharmonica physharmonicas physianthropy physiatric physiatrical physiatrics physiatries physiatrist physiatrists physiatry physic physical physicalism physicalisms physicalist physicalistic physicalistically physicalists physicalities physicality physicalize physicalized physicalizes physicalizing physically physicalness physicalnesses physicals physician physicianary physiciancies physiciancy physicianed physicianer physicianers physicianess physicianing physicianless physicianly physicians physicianship physicianships physicism physicisms physicist physicists physicked physicker physicking physicks physicky physicoastronomical physicobiological physicochemic physicochemical physicochemically physicochemist physicochemistry physicogeographical physicologic physicological physicomathematical physicomathematics physicomechanical physicomedical physicomental physicomorph physicomorphic physicomorphism physicooptics physicophilosophical physicophilosophy physicophysiological physicopsychical physicosocial physicotheological physicotheologist physicotheology physicotherapeutic physicotherapeutics physicotherapy physics physid physidae physiform physio physiochemical physiochemically physiochemistry physiocracies physiocracy physiocrat physiocratic physiocratism physiocratist physiocrats physiogenesis physiogenetic physiogenic physiogeny physiognomic physiognomical physiognomically physiognomics physiognomies physiognomist physiognomists physiognomize physiognomonic physiognomonical physiognomonically physiognomy physiogony physiographer physiographers physiographic physiographical physiographically physiographies physiography physiol physiolater physiolaters physiolatries physiolatrous physiolatry physiologer physiologian physiologic physiological physiologically physiologicoanatomic physiologies physiologist physiologists physiologize physiologue physiologus physiologuses physiology physioltherapist physiopathologic physiopathological physiopathologically physiopathologies physiopathologist physiopathologists physiopathology physiophilist physiophilosopher physiophilosophical physiophilosophy physiopsychic physiopsychical physiopsychological physiopsychology physios physiosociological physiosophic physiosophy physiotherapeutic physiotherapeutical physiotherapeutics physiotherapies physiotherapist physiotherapists physiotherapy physiotype physiotypy physique physiqued physiques physis physitheism physitheisms physitheist physitheistic physitism physiurgic physiurgy physnomy physocarpous physocele physoclist physoclistic physoclistous physogastric physogastrism physogastry physometra physonectous physophora physophoran physophore physophorous physopod physopodan physostegia physostigma physostigmin physostigmine physostigmines physostigmins physostomatous physostome physostomous phytalbumose phytane phytanes phytase phytate phytelephas phytic phytiferous phytiform phytin phytins phytivorous phytoalexin phytoalexins phytobacteriology phytobenthos phytobenthoses phytobezoar phytobiological phytobiologist phytobiology phytochemical phytochemically phytochemicals phytochemist phytochemistries phytochemistry phytochemists phytochlore phytochlorin phytochrome phytochromes phytocidal phytocide phytoclimatologic phytoclimatological phytoclimatology phytocoenoses phytocoenosis phytodynamics phytoecological phytoecologist phytoecology phytoflagellate phytoflagellates phytogamy phytogeneses phytogenesis phytogenetic phytogenetical phytogenetically phytogenic phytogenies phytogenous phytogeny phytogeographer phytogeographers phytogeographic phytogeographical phytogeographically phytogeographies phytogeography phytoglobulin phytognomy phytograph phytographer phytographers phytographic phytographical phytographies phytographist phytography phytohaemagglutinin phytohemagglutinin phytohemagglutinins phytohormone phytohormones phytoid phytokinin phytol phytolacca phytolaccaceae phytolaccaceous phytolatrous phytolatry phytolite phytolith phytolithological phytolithologist phytolithology phytologic phytological phytologically phytologies phytologist phytologists phytology phytols phytoma phytomastigina phytome phytomer phytomera phytometer phytometric phytometry phytomonad phytomorphic phytomorphology phytomorphosis phyton phytonadione phytonadiones phytonic phytonomist phytonomy phytons phytooecology phytopaleontologic phytopaleontological phytopaleontologist phytopaleontology phytoparasite phytopathogen phytopathogenic phytopathogens phytopathologic phytopathological phytopathologies phytopathologist phytopathologists phytopathology phytophagan phytophage phytophagic phytophagous phytophagy phytopharmacologic phytopharmacology phytophenological phytophenology phytophil phytophilous phytophthora phytophylogenetic phytophylogenic phytophylogeny phytophysiological phytophysiology phytoplankter phytoplankters phytoplankton phytoplanktonic phytoplanktons phytoplasm phytopsyche phytoptid phytoptose phytoptosis phytoremediation phytoremediations phytorhodin phytosaur phytosaurian phytoserologic phytoserological phytoserologically phytoserology phytoses phytosis phytosociologic phytosociological phytosociologically phytosociologies phytosociologist phytosociology phytosterin phytosterol phytosterols phytostrote phytosuccivorous phytosynthesis phytotaxonomy phytotechny phytoteratologic phytoteratological phytoteratologist phytoteratology phytotomies phytotomist phytotomists phytotomy phytotopographical phytotopography phytotoxic phytotoxicities phytotoxicity phytotoxin phytotoxins phytotron phytotrons phytovitellin phytozoan phytozoon phytyl pi pia piaba piacaba piacevole piache piacle piacula piacular piacularities piacularity piacularly piacularness piaculum piaffe piaffed piaffer piaffers piaffes piaffing piaget piagetian pial piala pialyn pian pianet pianeta pianette pianettes piangendo pianic pianino pianinos pianism pianisms pianissimi pianissimo pianissimos pianississimo pianist pianiste pianistic pianistically pianistiec pianists pianka piannet piano pianoforte pianofortes pianofortist pianograph pianola pianolas pianolist pianolists pianologue pianos pianosa pians piarhaemic piarhemia piarhemic piarist piarists pias piasaba piasabas piasava piasavas piassaba piassabas piassava piassavas piaster piasters piastre piastres piation piatti piazadora piazin piazine piazza piazzaed piazzaless piazzalike piazzas piazze piazzetta piazzian pibal pibals pibcorn pibgorn piblockto piblokto pibloktos pibroch pibroches pibrochs pic pica picacho picachos picadillo picadillos picador picadores picadors picadura pical picamar picamars picaninnies picaninny picante picara picaras picard picardie picardy picarel picaresque picaresques picariae picarian picarians picaro picaroon picarooned picarooning picaroons picaros picary picas picasso picayune picayunes picayunish picayunishly picayunishness piccadell piccadells piccadill piccadillies piccadillo piccadilloes piccadills piccadilly piccage piccalilli piccalillis piccanin piccaninnies piccaninny piccanins piccante piccata piccies picciotto piccolo piccoloist piccoloists piccolos piccy pice picea picein picene picenes piceoferruginous piceotestaceous piceous piceworth pich pichey pichi pichiciago pichiciagos pichiciego pichiciegos pichuric pichurim pichurims picidae piciform piciformes picine pick pickaback pickabacked pickabacking pickabacks pickable pickableness pickadell pickadells pickadil pickadill pickadillies pickadillo pickadilloes pickadills pickadilly pickadils pickage pickaninnies pickaninny pickapack pickapacks pickaroon pickaroons pickaway pickax pickaxe pickaxed pickaxes pickaxing pickback pickbacks picked pickedevant pickedly pickedness pickednesses pickee pickeer pickeered pickeerer pickeerers pickeering pickeers pickel pickelhaube pickelhaubes picker pickerel pickerels pickerelweed pickerelweeds pickeries pickering pickeringia pickeringite pickers pickery picket picketboat picketboats picketed picketeer picketer picketers picketing pickets pickfork pickier pickiest pickietar pickin pickiness pickinesses picking pickings pickle pickled picklelike pickleman picklepuss pickler picklers pickles pickleweed pickleworm pickleworms pickling picklock picklocks pickman pickmaw pickmawed pickmawing pickmaws pickmen picknick picknicker pickoff pickoffs pickout pickover pickpenny pickpocket pickpocketing pickpocketism pickpocketry pickpockets pickpole pickproof pickpurse picks pickshaft picksman picksmith picksome picksomeness pickthank pickthankly pickthankness pickthanks pickthatch picktooth pickup pickups pickwick pickwickian pickwicks pickwork picky picloram piclorams picnic picnicked picnicker picnickers picnickery picnicking picnickish picnicky picnics picnometer pico picocurie picocuries picofarad picofarads picogram picogramme picogrammes picograms picoid picoides picojoule picolin picoline picolines picolinic picolins picometer picometre picomole picomoles picong picongs picornavirus picornaviruses picory picosecond picoseconds picot picotah picote picoted picotee picotees picoting picotite picotites picots picottah picoté picowatt picowave picowaved picowaves picowaving picquet picqueted picqueter picqueting picquets picra picramic picras picrasma picrasmin picrate picrated picrates picric picris picrite picrites picritic picrocarmine picrocarmines picroerythrin picrol picrolite picromerite picropodophyllin picrorhiza picrorhizin picrotin picrotoxic picrotoxin picrotoxinin picrotoxins picry picryl pics pict pictarnie pictarnies pictogram pictograms pictograph pictographic pictographically pictographies pictographs pictography pictoradiogram pictorial pictorialisation pictorialisations pictorialise pictorialised pictorialises pictorialising pictorialism pictorialisms pictorialist pictorialists pictorialities pictoriality pictorialization pictorializations pictorialize pictorialized pictorializes pictorializing pictorially pictorialness pictorialnesses pictorials pictoric pictorical pictorically pictun picturability picturable picturableness picturably pictural picturals picture picturecraft pictured picturedom picturedrome pictureful picturegoer picturegoers pictureless picturelike picturely picturemaker picturemaking picturephone picturephones picturer picturers pictures picturesque picturesquely picturesqueness picturesquenesses picturesquish picturing picturisation picturisations picturise picturised picturises picturising picturization picturizations picturize picturized picturizes picturizing pictury picucule picuda picudilla picudo picul picule piculet piculets piculs piculule picumnus picus pid pidan piddle piddled piddler piddlers piddles piddling piddlingly piddly piddock piddocks pidgeon pidgeons pidgin pidginisation pidginisations pidginise pidginised pidginises pidginising pidginization pidginizations pidginize pidginized pidginizes pidginizing pidgins pidgized pidgizing pidjajap pidlimdi pie piebald piebaldism piebaldly piebaldness piebalds piece pieceable pieced pieceless piecemaker piecemeal piecemealed piecemealing piecemeals piecemealwise piecen piecened piecener pieceners piecening piecens piecer piecers pieces piecette piecewise piecework pieceworker pieceworkers pieceworks piechart piecharts piecing piecings piecrust piecrusts pied piedfort piedforts piedish piedishes piedly piedmont piedmontal piedmontite piedmontites piedmonts piedness piednesses piedra piedroit piefort pieforts piehouse pieing pieless pielet pielike pielum piemag pieman piemarker piemen piemonte pien pienaar pienanny piend piends pientao piepan pieplant pieplants piepoudre piepowder piepowders pieprint pier pierage pierages pierce pierceable pierced piercel pierceless piercent piercer piercers pierces piercing piercingly piercingness piercingnesses piercings pierdrop pierhead pierian pierid pieridae pieridine pierids pierine pieris pierless pierlike pierogi pierogies pierre pierrette pierrettes pierrot pierrotic pierrots piers pierst piert pies pieshop piest piet pieta pietas pietic pieties pietism pietisms pietist pietistic pietistical pietistically pietisticalness pietists pieton pietose pietoso piets piety pietà pietàs piewife piewipe piewoman piezo piezochemical piezochemistries piezochemistry piezocrystallization piezoelectric piezoelectrical piezoelectrically piezoelectricities piezoelectricity piezomagnetic piezomagnetism piezomagnetisms piezometer piezometers piezometric piezometrical piezometries piezometry pifero piff pifferari pifferaro piffero pifferos piffle piffled piffler pifflers piffles piffling pifine pig pigbelly pigboat pigboats pigdan pigdom pigeon pigeonable pigeonberries pigeonberry pigeoned pigeoneer pigeoner pigeonfoot pigeongram pigeonhearted pigeonheartedness pigeonhole pigeonholed pigeonholer pigeonholers pigeonholes pigeonholing pigeoning pigeonite pigeonites pigeonman pigeonneau pigeonpox pigeonries pigeonry pigeons pigeontail pigeonweed pigeonwing pigeonwings pigeonwood pigface pigfeed pigfeeds pigfish pigfishes pigflower pigfoot pigful pigg pigged piggeries piggery piggie piggier piggies piggiest piggin pigging piggings piggins piggish piggishly piggishness piggishnesses piggle piggy piggyback piggybacked piggybacking piggybacks pighead pigheaded pigheadedly pigheadedness pigheadednesses pigherd pight pighted pightel pighting pightle pightles pights pigless piglet piglets piglike pigling piglinghood piglings pigly pigmaean pigmaker pigmaking pigman pigmean pigmeat pigmeats pigment pigmental pigmentally pigmentary pigmentation pigmentations pigmented pigmenting pigmentise pigmentize pigmentolysis pigmentophage pigmentose pigments pigmew pigmies pigmoid pigmy pignerate pignerated pignerates pignerating pignet pignoli pignolia pignolias pignolis pignon pignora pignorate pignorated pignorates pignorating pignoration pignorations pignoratitious pignorative pignus pignut pignuts pigout pigouts pigpen pigpens pigritia pigritude pigroot pigroots pigs pigsconce pigsconces pigskin pigskins pigsney pigsneys pigsnie pigsnies pigsny pigstick pigsticked pigsticker pigstickers pigsticking pigsticks pigsties pigsty pigswill pigswills pigtail pigtailed pigtails pigwash pigwashes pigweabbits pigweed pigweeds pigwidgeon pigwidgin pigwigeon pigyard piing piitis pik pika pikake pikakes pikas pike pikeblennies pikeblenny piked pikel pikelet pikelets pikelike pikeman pikemen pikemonger pikeperch pikeperches piker pikers pikes pikestaff pikestaffs pikestaves piketail pikey piki piking pikis pikle pikul pikuls piky pil pila pilaf pilaff pilaffs pilafs pilage pilandite pilapil pilar pilary pilaster pilastered pilastering pilasters pilastrade pilastraded pilastric pilate pilau pilaued pilaus pilaw pilaws pilch pilchard pilchards pilcher pilcherd pilchers pilches pilcorn pilcorns pilcrow pilcrows pile pilea pileata pileate pileated piled pilei pileiform pileless pileolated pileoli pileolus pileorhiza pileorhizas pileorhize pileous piler pilers piles pileum pileup pileups pileus pileweed pilework pileworks pileworm pilewort pileworts pilfer pilferable pilferage pilferages pilfered pilferer pilferers pilferies pilfering pilferingly pilferings pilferment pilferproof pilfers pilfery pilfre pilgarlic pilgarlick pilgarlicks pilgarlicky pilgarlics pilger pilgrim pilgrimage pilgrimaged pilgrimager pilgrimagers pilgrimages pilgrimaging pilgrimatic pilgrimatical pilgrimdom pilgrimer pilgrimers pilgrimess pilgrimise pilgrimised pilgrimises pilgrimising pilgrimism pilgrimize pilgrimized pilgrimizes pilgrimizing pilgrimlike pilgrims pilgrimwise pilhorse pilhorses pili pilidium pilies pilifer piliferous piliform piligan piliganin piliganine piligerous pilikai pilikia pililloo pilimiction pilin piline piling pilings pilipilula pilis pilitico pilkins pill pillage pillageable pillaged pillagee pillager pillagers pillages pillaging pillar pillared pillaret pillaring pillarise pillarist pillarists pillarize pillarless pillarlet pillarlike pillars pillarwise pillary pillas pillau pillaus pillbox pillboxes pilled pilledness piller pillery pillet pilleus pillhead pillheads pillicock pillicocks pilling pillings pillion pillioned pillioning pillionist pillionists pillions pilliver pilliwinks pilliwinkses pillmaker pillmaking pillmonger pillock pillocks pilloried pillories pillorise pillorised pillorises pillorising pillorization pillorize pillorized pillorizes pillorizing pillory pillorying pillow pillowbeer pillowber pillowbere pillowcase pillowcases pillowed pillowing pillowless pillowlike pillowmade pillows pillowslip pillowslips pillowwork pillowy pills pillular pillule pillworm pillworms pillwort pillworts pilm pilmy pilniewinks pilocarpidine pilocarpin pilocarpine pilocarpines pilocarpins pilocystic piloerection pilomotor pilon piloncillo pilonidal pilori pilose pilosebaceous pilosella pilosin pilosine pilosis pilosism pilosities pilosity pilot pilotage pilotages pilotaxitic piloted pilotee pilotfish pilotfishes pilothouse pilothouses piloti piloting pilotings pilotis pilotism pilotless pilotman pilotmen pilotry pilots pilotship pilotweed pilous pilow pilows pilpul pilpulist pilpulistic pilsener pilseners pilsner pilsners piltock pilula pilular pilularia pilulas pilule pilules pilulist pilulous pilum pilus pilusli pilwillet pily pima piman pimaric pimas pimbina pimelate pimelic pimelite pimelitis piment pimenta pimentel pimento pimenton pimentos piments pimgenet pimienta pimiento pimientos pimlico pimola pimozide pimozides pimp pimped pimperlimpimp pimpernel pimpernels pimpery pimpinella pimping pimpish pimple pimpleback pimpled pimpleproof pimples pimplier pimpliest pimpliness pimpling pimplo pimploe pimplous pimply pimpmobile pimpmobiles pimproll pimps pimpship pin pina pinabete pinaceae pinaceous pinaces pinachrome pinacle pinacocytal pinacocyte pinacoid pinacoidal pinacoids pinacol pinacolate pinacolic pinacolin pinacoline pinacone pinacoteca pinacotheca pinacothecas pinaculum pinafore pinafored pinafores pinakiolite pinakoid pinakoidal pinakoids pinakothek pinakotheke pinakotheks pinang pinangs pinard pinards pinas pinaster pinasters pinata pinatas pinatype pinaverdol pinax pinayusa pinball pinballs pinbefore pinbone pinbones pinbrain pinbush pincase pincases pincement pincer pincered pincering pincerlike pincers pincerweed pincette pinch pinchable pinchback pinchbeck pinchbecks pinchbelly pinchbottle pinchbug pinchbugs pinchcock pinchcocks pinchcommons pinchcrust pinche pincheck pinchecks pinched pinchedly pinchedness pinchem pincher pinchers pinches pinchfist pinchfisted pinchfists pinchgut pinchguts pinchhitter pinchhitters pinching pinchingly pinchings pinchpennies pinchpenny pinchpoint pinchpoints pinckneya pincoffin pincpinc pinctada pincushion pincushions pincushiony pind pinda pindal pindar pindaree pindarees pindari pindaric pindarical pindarically pindarics pindaris pinder pinders pindjajap pindling pindown pindowns pindy pine pineal pinealectomies pinealectomize pinealectomized pinealectomizes pinealectomizing pinealectomy pinealism pinealoma pineals pineapple pineapples pinebank pinecone pinecones pined pinedrops pineland pinelands pinelike pinene pinenes piner pineries pinery pines pinesap pinesaps pineta pinetum pineus pineweed pinewood pinewoods piney pinfall pinfeather pinfeathered pinfeatherer pinfeathers pinfeathery pinfire pinfires pinfish pinfishes pinfold pinfolded pinfolding pinfolds ping pinge pinged pinger pingers pinging pingle pingled pingler pinglers pingles pingling pingo pingoes pingos pingrass pingrasses pings pingster pingue pinguecula pinguedinous pinguefaction pinguefied pinguefies pinguefy pinguefying pinguescence pinguescent pinguicula pinguiculaceous pinguid pinguidities pinguidity pinguiferous pinguin pinguinitescent pinguins pinguinus pinguite pinguitude pinguitudes pinguitudinous pinhead pinheaded pinheadedness pinheadednesses pinheads pinhold pinhole pinholes pinhook pinhooker pinhookers pinic pinicola pinicoline pinicolous pinier pinies piniest piniferous piniform pining piningly pinings pinion pinioned pinioning pinionless pinionlike pinions pinipicrin pinitannic pinite pinites pinitol pinitols pinivorous pinjane pinjra pink pinkany pinkberry pinked pinkeen pinken pinkened pinkening pinkens pinkeny pinker pinkers pinkerton pinkertons pinkest pinkey pinkeye pinkeyes pinkeys pinkfish pinkfishes pinkie pinkier pinkies pinkiest pinkified pinkify pinkifying pinkily pinkiness pinkinesses pinking pinkings pinkish pinkishness pinkishnesses pinkly pinkness pinknesses pinko pinkoes pinkos pinkroot pinkroots pinks pinksome pinkster pinkweed pinkwood pinkwort pinky pinless pinlock pinmaker pinmaking pinman pinna pinnace pinnaces pinnacle pinnacled pinnacles pinnaclet pinnacling pinnae pinnage pinnaglobin pinnal pinnas pinnate pinnated pinnatedly pinnately pinnatifid pinnatifidly pinnatilobate pinnatilobed pinnation pinnatipartite pinnatiped pinnatisect pinnatisected pinnatodentate pinnatopectinate pinnatulate pinned pinnel pinner pinners pinnet pinnets pinnie pinnies pinniewinkle pinniewinkles pinniferous pinniform pinnigerous pinnigrade pinninervate pinninerved pinning pinningly pinnings pinniped pinnipede pinnipedes pinnipedia pinnipedian pinnipeds pinnisect pinnisected pinnitarsal pinnitentaculate pinniwinkis pinnock pinnocks pinnoed pinnoite pinnotere pinnothere pinnotheres pinnotherian pinnotheridae pinnula pinnulae pinnular pinnulas pinnulate pinnulated pinnule pinnules pinnulet pinny pinnywinkle pinnywinkles pino pinocchio pinochle pinochles pinocles pinocytic pinocytoses pinocytosis pinocytotic pinocytotically pinole pinoles pinoleum pinolia pinolin pinon pinones pinonic pinons pinophytina pinopsida pinot pinotage pinots pinoutpinpatch pinpillow pinpoint pinpointed pinpointing pinpoints pinprick pinpricked pinpricking pinpricks pinproof pinrail pinrowed pins pinscher pinschers pinsetter pinsetters pinson pinsons pinspotter pinspotters pinstripe pinstriped pinstripes pint pinta pintable pintables pintada pintadas pintadera pintado pintadoes pintadoite pintados pintail pintailed pintails pintano pintanos pintas pinte pintid pintle pintles pinto pintoes pintos pints pintsize pintsized pintura pinuela pinulus pinup pinups pinus pinwale pinwales pinweed pinweeds pinwheel pinwheeled pinwheeling pinwheels pinwing pinwork pinworks pinworm pinworms pinx pinxit pinxter piny pinyin pinyins pinyl pinyon pinyons piolet piolets pion pioned pioneer pioneerdom pioneered pioneering pioneers pioneership pioner pioners pionery pioney pioneys pionic pionies pioning pionings pionnotes pions piony pioscope piosities piosity pioted piotine piotty pioupiou pioury pious piously piousness piousnesses pioy pioye pioyes pioys pip pipa pipage pipages pipal pipals pipas pipe pipeage pipeages pipeclay pipeclayed pipeclaying pipeclays pipecolin pipecoline pipecolinic piped pipedream pipefish pipefishes pipefitter pipefitting pipefittings pipeful pipefuls pipelayer pipelaying pipeless pipelike pipeline pipelined pipelines pipelining pipelinings pipeman pipemouth piper piperaceae piperaceous piperales piperate piperazin piperazine piperazines piperic piperide piperideine piperidge piperidid piperidide piperidin piperidine piperidines piperin piperine piperines piperitious piperitone piperly piperno piperocaine piperoid piperonal piperonals piperonyl pipers pipery piperylene pipes pipestapple pipestem pipestems pipestone pipestones pipet pipets pipette pipetted pipettes pipetting pipewalker pipewood pipework pipeworks pipewort pipeworts pipey pipi pipid pipidae pipier pipiest pipikaula pipile pipilo pipiness pipinesses piping pipingly pipingness pipings pipiri pipis pipistrel pipistrelle pipistrelles pipistrellus pipistrels pipit pipits pipkin pipkinet pipkins pipless pipped pippen pipper pipperidge pippier pippiest pippin pippiner pippinface pipping pippins pipple pippy pipra pipridae piprine piproid pips pipsissewa pipsissewas pipsqueak pipsqueaks piptadenia piptonychia pipturus pipul pipuls pipunculid pipy piqu piqua piquable piquance piquances piquancies piquancy piquant piquante piquantly piquantness piquantnesses piquas pique piqued piqueria piquero piques piquet piqueted piqueting piquets piquette piqueur piquia piquiere piquing piqure pir piracies piracy piragua piraguas pirai pirais pirana piranas pirandellian piranga piranha piranhas pirarucu pirarucus pirate pirated piratelike piratery pirates piratess piratic piratical piratically pirating piratise piratism piratize piratry piraty piraya pirayas piraña pirañas piriform piriformes piriformis pirijiri piripiri piripiris piririgua pirl pirlicue pirlicued pirlicues pirlicuing pirlie pirls pirn pirned pirner pirnie pirnies pirnit pirns pirny pirog pirogen piroghi pirogi pirogies pirogue pirogues pirojki pirol piroot piroplasm piroplasma piroplasmata piroplasmic piroplasmosis piroplasms piroque piroques piroshki pirot pirouette pirouetted pirouetter pirouetters pirouettes pirouetting pirouettist piroxicam pirozhki pirozhok pirquetted pirquetter pirr pirraura pirrauru pirrie pirrmaw pirs pirssonite pis pisa pisaca pisacha pisachee pisachi pisang pisanite pisanosaur pisanosaurus pisay piscaries piscary piscation piscatology piscator piscatorial piscatorialist piscatorially piscatorian piscatorious piscators piscatory piscatrix piscatrixes pisces piscian piscicapture piscicapturist piscicide piscicolous piscicultural pisciculturally pisciculture piscicultures pisciculturist pisciculturists piscidia piscifauna piscifaunae piscifaunas pisciferous pisciform piscina piscinae piscinal piscinas piscine piscines piscinity piscioid piscivorous pisco piscos pise pises pisgah pish pishaug pished pishes pishing pishoge pishoges pishogue pishogues pishpash pishposh pishu pisiform pisiforms pisistance pisk piskies piskun pisky pismire pismires pismirism pismo piso pisolite pisolites pisolith pisoliths pisolitic pisonia pisos pisote piss pissabed pissant pissants pissasphalt pissasphalts pissed pisser pissers pisses pisshead pissheads pissing pissis pissodes pissoir pissoirs pisspot pisspots pist pistache pistaches pistachio pistachios pistacia pistacite pistareen pistareens piste pisteology pistes pistia pistic pistick pistil pistillaceous pistillar pistillary pistillate pistillid pistillidium pistilliferous pistilliform pistilligerous pistilline pistillode pistillodes pistillody pistilloid pistilogy pistils pistiology pistle pistler pistol pistolade pistole pistoled pistoleer pistoleers pistoles pistolet pistoleter pistoletier pistolets pistolgram pistolgraph pistolier pistoling pistolled pistollike pistolling pistolography pistology pistolproof pistols pistolwise piston pistonhead pistonlike pistons pistou pistous pistrices pistrix pisum pisé pit pita pitahaya pitahayas pitanga pitangua pitapat pitapatation pitapats pitapatted pitapatting pitara pitarah pitarahs pitaras pitas pitastile pitau pitaya pitayas pitayita pitbird pitch pitchable pitchblende pitchblendes pitched pitcher pitchered pitcherful pitcherfuls pitcherlike pitcherman pitchers pitchersful pitchery pitches pitchfield pitchfork pitchforked pitchforking pitchforks pitchhole pitchi pitchier pitchiest pitchily pitchiness pitchinesses pitching pitchings pitchlike pitchman pitchmen pitchometer pitchout pitchouts pitchperson pitchpersons pitchpike pitchpine pitchpines pitchpipe pitchpipes pitchpole pitchpoled pitchpoles pitchpoling pitchpoll pitchpot pitchstone pitchstones pitchwoman pitchwomen pitchwork pitchy piteira piteous piteously piteousness piteousnesses pitfall pitfalls pitfold pith pithanology pithball pithballs pithead pitheads pithecan pithecanthrope pithecanthropi pithecanthropic pithecanthropid pithecanthropine pithecanthropines pithecanthropoid pithecanthropus pithecellobium pithecia pithecian pitheciine pithecism pithecoid pithecolobium pithecological pithecology pithecometric pithecomorphic pithecomorphism pithecus pithed pithes pithful pithier pithiest pithily pithiness pithinesses pithing pithless pithlessly pithlike pithoi pithole pithos pithoses piths pithsome pithwork pithy pitiability pitiable pitiableness pitiablenesses pitiably pitied pitiedly pitiedness pitier pitiers pities pitiful pitifuller pitifullest pitifully pitifulness pitifulnesses pitikins pitiless pitilessly pitilessness pitilessnesses pitirri pitless pitlike pitmaker pitmaking pitman pitmans pitmark pitmen pitmenpitmirk pitmirk pitocin pitometer pitomie piton pitons pitpan pitpit pitprop pitprops pitressin pitris pits pitsaw pitsaws pitside pitta pittacal pittance pittancer pittances pittard pittas pitted pitten pitter pittered pittering pitters pitticite pittidae pittine pitting pittings pittite pittites pittoid pittosporaceous pittospore pittosporum pittosporums pittsburgh pituicyte pituita pituital pituitaries pituitary pituitas pituite pituites pituitous pituitousness pituitrin pituitrins pituophis pituri pituris pitwood pitwork pitwright pity pitying pityingly pitymys pityocampa pityocampe pityproof pityriases pityriasic pityriasis pityrogramma pityroid pityrosporum pityrosporums piu piua pium piums piupiu piupius piuri piuricapsular pius piute pivalic pivot pivotable pivotal pivotally pivoted pivoter pivoters pivoting pivotings pivotman pivotmen pivots piwut pix pixed pixel pixelate pixelation pixellate pixellated pixels pixes pixie pixieish pixies pixilate pixilated pixilation pixilations pixillated pixillation pixillations pixiness pixinesses pixing pixy pixyish pixys pizaine pizazz pizazzes pizazzy pize pizes pizz pizza pizzaiola pizzalike pizzas pizzaz pizzazes pizzazz pizzazzes pizzazzy pizzelle pizzelles pizzeria pizzerias pizzicati pizzicato pizzicatos pizzle pizzles piña piñata piñatas piñon piñons più pk pkg pkgs pks pkt pkwy pl placabilities placability placabilty placable placableness placablenesses placably placage placard placarded placardeer placarder placarders placarding placards placate placated placater placaters placates placating placatingly placation placations placative placatively placatory placcat placcate placcates placcats place placeable placebo placebos placed placeful placeholder placeholders placekick placekicked placekicker placekickers placekicking placekicks placeless placelessly placemaker placemaking placeman placemanship placemen placement placements placemonger placemongering placename placent placenta placentae placental placentalia placentalian placentals placentary placentas placentate placentation placentations placentiferous placentiform placentigerous placentitis placentography placentoid placentologies placentology placentoma placentomata placer placers places placeseeker placet placets placewoman placid placidamente placider placidest placidities placidity placidly placidness placidnesses placing placings placit placita placitory placits placitum plack plackart placket plackets plackless placks placochromatic placode placoderm placodermal placodermatous placodermi placodermoid placoderms placodont placoganoid placoganoidean placoid placoidal placoidean placoids placophoran placoplast placque placula placuna placuntitis placuntoma pladaroma pladarosis plafond plafonds plaga plagae plagal plagate plage plages plagianthus plagiaplite plagiarical plagiaries plagiarisation plagiarise plagiarised plagiariser plagiarisers plagiarises plagiarising plagiarism plagiarisms plagiarist plagiaristic plagiaristically plagiarists plagiarization plagiarize plagiarized plagiarizer plagiarizers plagiarizes plagiarizing plagiary plagihedral plagiocephalic plagiocephalies plagiocephalism plagiocephalous plagiocephaly plagioclase plagioclases plagioclasite plagioclastic plagioclimax plagioclinal plagiodont plagiograph plagioliparite plagionite plagiopatagium plagiophyre plagiostomata plagiostomatous plagiostome plagiostomes plagiostomous plagiotropic plagiotropically plagiotropism plagiotropisms plagiotropous plagium plagiums plagose plagosity plague plagued plagueful plagueless plaguelike plagueproof plaguer plaguers plagues plaguesome plaguesomeness plaguey plaguier plaguiest plaguily plaguing plagula plaguy plaice plaices plaid plaided plaidie plaiding plaidings plaidman plaidmen plaidoyer plaids plaidy plain plainant plainants plainback plainbacks plainchant plainchants plainclothes plainclothesman plainclothesmen plained plainer plainest plainfield plainful plainhearted plaining plainings plainish plainly plainness plainnesses plains plainscraft plainsfolk plainsman plainsmen plainsoled plainsong plainsongs plainspoken plainspokenness plainspokennesses plainstanes plainstones plainswoman plainswomen plaint plaintail plaintext plaintexts plaintful plaintiff plaintiffs plaintiffship plaintile plaintive plaintively plaintiveness plaintivenesses plaintless plaints plainward plainwork plainworks plainy plaisance plaisanterie plaister plaistered plaistering plaisters plait plaited plaiter plaiters plaiting plaitings plaitless plaits plaitwork plak plakat plan planable planaea planakeen planar planaria planarian planarians planarias planaridan planariform planarioid planarities planarity planaru planate planation planations planceer plancer planch planche planched plancheite plancher planches planchet planchets planchette planchettes planching planchment plancier planctus plandok plane planed planeload planeloads planeness planenesses planer planers planes planeshear planet planeta planetable planetabler planetal planetaria planetarian planetaries planetarily planetarium planetariums planetary planeted planetesimal planetesimals planetfall planetic planetical planeticose planeting planetist planetkin planetless planetlike planetogeny planetography planetoid planetoidal planetoids planetologic planetological planetologies planetologist planetologists planetology planets planettaria planetule planetwide planform planforms planful planfully planfulness plang plangencies plangency plangent plangently plangents plangi plangor plangorous planicaudate planicipital planidorsate planifolious planiform planigram planigraph planigraphs planigraphy planilla planimeter planimeters planimetric planimetrical planimetrically planimetries planimetry planineter planing planipennate planipennine planipetalous planiphyllous planirostal planirostral planirostrate planiscope planiscopic planish planished planisher planishers planishes planishing planispheral planisphere planispheres planispheric planispherical planispiral planity plank plankage plankbuilt planked planker planking plankings plankless planklike planks planksheer plankter plankters planktologist planktology plankton planktonic planktons planktont plankways plankwise planky planless planlessly planlessness planlessnesses planned planner planners planning plannings plano planoblast planoblastic planoblasts planococcus planoconcave planoconical planoconvex planocylindric planoferrite planogamete planogametes planograph planographic planographically planographies planographist planography planohorizontal planolindrical planometer planometers planometries planometry planomiller planont planoorbicular planorbiform planorbine planorbis planorboid planorotund planosol planosols planosome planospiral planospore planosubulate plans plansheer plant planta plantable plantad plantae plantage plantagenet plantages plantaginaceae plantaginaceous plantaginales plantagineous plantago plantain plantains plantal plantano plantar plantaris plantarium plantas plantation plantationlike plantations plantator plantdom planted planter planterdom planterly planters plantership planthopper plantigrade plantigrades plantigrady planting plantings plantivorous plantless plantlet plantlets plantlike plantling plantlings plantocracies plantocracy plants plantsman plantsmen plantswoman plantswomen plantula plantulae plantular plantule plantules planula planulae planulan planular planulate planuliform planuloid planum planuria planurias planuries planury planxties planxty plap plapped plappert plapping plaps plaque plaques plaquette plaquettes plash plashed plasher plashers plashes plashet plashets plashier plashiest plashing plashingly plashings plashment plashy plasm plasma plasmablast plasmacyte plasmacytes plasmacytoma plasmagel plasmagels plasmagene plasmagenes plasmagenic plasmalemma plasmalemmas plasmalogen plasmaphaeresis plasmaphereses plasmapheresis plasmaphoresisis plasmas plasmase plasmasol plasmasols plasmatic plasmatical plasmation plasmatoparous plasmatorrhexis plasmic plasmid plasmids plasmin plasminogen plasminogens plasmins plasmochin plasmocyte plasmocytoma plasmode plasmodesm plasmodesma plasmodesmal plasmodesmas plasmodesmata plasmodesmic plasmodesms plasmodesmus plasmodia plasmodial plasmodiate plasmodic plasmodiidae plasmodiocarp plasmodiocarpous plasmodiophora plasmodiophoraceae plasmodium plasmodiums plasmogamies plasmogamy plasmogen plasmogeny plasmoid plasmoids plasmology plasmolyse plasmolysed plasmolyses plasmolysing plasmolysis plasmolytic plasmolytically plasmolyzability plasmolyzable plasmolyze plasmolyzed plasmolyzes plasmolyzing plasmoma plasmomata plasmon plasmons plasmophagous plasmophagy plasmoptysis plasmoquin plasmoquine plasmosoma plasmosomas plasmosomata plasmosome plasmosomes plasmotomy plasms plasome plass plassey plasson plast plaste plastein plaster plasterbill plasterboard plasterboards plastered plasterer plasterers plasteriness plasterinesses plastering plasterings plasterlike plasters plasterstone plasterstones plasterwise plasterwork plasterworks plastery plastic plastically plasticene plasticenes plasticimeter plasticine plasticines plasticisation plasticisations plasticise plasticised plasticiser plasticisers plasticises plasticising plasticism plasticities plasticity plasticization plasticizations plasticize plasticized plasticizer plasticizers plasticizes plasticizing plasticky plasticly plastics plastid plastidial plastidium plastidome plastids plastidular plastidule plastidules plastify plastilina plastilinas plastin plastinoid plastique plastiques plastiqueur plastiqueurs plastisol plastisols plastochondria plastochron plastochrone plastocyanin plastocyanins plastodynamia plastodynamic plastogamic plastogamies plastogamy plastogene plastomer plastomere plastometer plastometric plastometry plastoquinone plastoquinones plastosome plastotype plastral plastron plastrons plastrum plastrums plat plataea platalea plataleidae plataleiform plataleine platan platanaceae platanaceous platane platanes platanist platanistidae platanna platannas platano platans platanthera platanus platband platbands platch plate platea plateasm plateasms plateau plateaued plateauing plateaulith plateaus plateaux plated plateful platefuls plateglass plateholder plateiasmus platelayer platelayers plateless platelet platelets platelike platemaker platemakers platemaking platemakings plateman platemark platemarks platemen platen platens plater platerer plateresque platers platery plates platesful plateway platework plateworker platform platformally platformed platformer platforming platformings platformish platformism platformist platformistic platformless platforms platformy plathelminth platic platichthys platicly platie platier platies platiest platilla platina platinamin platinamine platinammin platinammine platinas platinate platinated platinating platine plating platings platinic platinichloric platinichloride platiniferous platiniridium platinisation platinisations platinise platinised platinises platinising platinite platinization platinizations platinize platinized platinizes platinizing platinochloric platinochloride platinocyanic platinocyanide platinocyanides platinode platinoid platinoids platinotron platinotype platinotypes platinous platinum platinums platinumsmith platitude platitudes platitudinal platitudinarian platitudinarianism platitudinarians platitudinisation platitudinise platitudinised platitudiniser platitudinises platitudinising platitudinism platitudinist platitudinization platitudinize platitudinized platitudinizer platitudinizes platitudinizing platitudinous platitudinously platitudinousness platly plato platode platoid platonesque platonic platonically platonics platonise platonism platonist platonistic platonize platoon platooned platooning platoons platopic platosamine platosammine plats plattdeutsch platte platted platteland plattelands platten platter platterface platterful platterfuls platters plattersful platting plattings plattnerite platty platurous platy platybasic platybrachycephalic platybrachycephalous platybregmatic platycarpous platycelian platycelous platycephalic platycephalidae platycephalism platycephaloid platycephalous platycephaly platycercine platycerium platycheiria platycnemia platycnemic platycoelian platycoelous platycoria platycrania platycranial platyctenea platyctenean platycyrtean platydactyl platydactyle platydactylous platydolichocephalic platydolichocephalous platyfish platyfishes platyglossal platyglossate platyglossia platyhelminth platyhelminthes platyhelminthic platyhelminths platyhieric platykurtic platykurtosis platylobate platylobium platymeria platymeric platymery platymesaticephalic platymesocephalic platymeter platymiscium platymyoid platynite platynotal platyodont platyope platyopia platyopic platypellic platypetalous platyphyllous platypi platypod platypodia platypodous platypoecilus platypus platypuses platypygous platyrhine platyrhinian platyrhynchous platyrrhin platyrrhine platyrrhines platyrrhini platyrrhinian platyrrhinians platyrrhinic platyrrhinism platyrrhiny platys platysma platysmamyoides platysmas platysmata platysomid platystaphyline platystemon platystencephalia platystencephalic platystencephalism platystencephaly platysternal platystomous platytrope platytropy plaud plaudation plaudit plaudite plauditor plauditory plaudits plauenite plausibilities plausibility plausible plausibleness plausiblenesses plausibly plausive plaustral plautine plautus play playa playabilities playability playable playact playacted playacting playactings playactor playacts playas playback playbacks playbill playbills playbook playbooks playbox playboy playboyism playboys playbroker playbus playbuses playbusses playclothes playcraft playcraftsman playdate playdates playday playdays playdown playdowns played player playerdom playeress players playfellow playfellows playfellowship playfere playfield playfields playfolk playful playfully playfulness playfulnesses playgirl playgirls playgoer playgoers playgoing playgoings playground playgrounds playgroup playgroups playhouse playhouses playing playingly playings playland playlands playleader playleaders playless playlet playlets playlike playlist playlisted playlisting playlists playmaker playmakers playmaking playmakings playman playmare playmate playmates playmonger playmongering playock playoff playoffs playpen playpens playreader playroom playrooms plays playschool playschools playscript playsome playsomely playsomeness playstead playstow playsuit playsuits playte plaything playthings playtime playtimes playward playwear playwears playwoman playwomen playwork playwright playwrightess playwrighting playwrightings playwrightry playwrights playwriter playwriting playwritings plaza plazas plazolite plbroch plea pleach pleached pleacher pleaches pleaching plead pleadable pleadableness pleaded pleader pleaders pleading pleadingly pleadingness pleadings pleads pleaed pleaing pleaproof pleas pleasable pleasableness pleasance pleasances pleasant pleasantable pleasanter pleasantest pleasantish pleasantly pleasantness pleasantnesses pleasantries pleasantry pleasantsome pleasaunce please pleased pleasedly pleasedness pleaseman pleasemen pleaser pleasers pleases pleaseth pleaship pleasing pleasingly pleasingness pleasingnesses pleasings pleasurabilities pleasurability pleasurable pleasurableness pleasurablenesses pleasurably pleasure pleasured pleasureful pleasurefulness pleasurehood pleasureless pleasurelessly pleasureman pleasurement pleasuremonger pleasureproof pleasurer pleasurers pleasures pleasuring pleasurist pleasurous pleat pleated pleater pleaters pleating pleatless pleats pleb plebbier plebbiest plebby plebe plebean plebeans plebeian plebeiance plebeianisation plebeianise plebeianised plebeianises plebeianising plebeianism plebeianisms plebeianization plebeianize plebeianized plebeianizes plebeianizing plebeianly plebeianness plebeians plebeity plebes plebescite plebian plebianism plebicolar plebicolist plebicolous plebificate plebification plebifications plebified plebifies plebify plebifying plebiscitarian plebiscitarism plebiscitary plebiscite plebiscites plebiscitic plebiscitum plebs pleck plecoptera plecopteran plecopterans plecopterid plecopterous plecotine plecotus plectania plectognath plectognathi plectognathic plectognathous plectognaths plectomycetes plectophera plectopter plectopteran plectopterous plectorrhiza plectospondyl plectospondylous plectra plectranthus plectre plectres plectridial plectridium plectron plectrons plectrontra plectrophenax plectrum plectrums plectrumtra pled pledable pledge pledgeable pledged pledgee pledgees pledgeholder pledgeless pledgeor pledgeors pledger pledgers pledges pledgeshop pledget pledgets pledging pledgor pledgors plegaphonia plegometer pleiad pleiades pleiads pleinairism pleinairisms pleinairist pleinairists pleiobar pleiocene pleiochasia pleiochasium pleiochasiums pleiochromia pleiochromic pleiomastia pleiomazia pleiomeries pleiomerous pleiomery pleion pleione pleionian pleiophyllous pleiophylly pleiospilos pleiotaxies pleiotaxis pleiotaxy pleiotropic pleiotropically pleiotropies pleiotropism pleiotropisms pleiotropy pleis pleistocene pleistoseist plemochoe plemyrameter plena plenaries plenarily plenariness plenarium plenarties plenarty plenary plench plenches plenicorn pleniloquence plenilunal plenilunar plenilunary plenilune plenilunes plenipo plenipoes plenipos plenipotence plenipotences plenipotencies plenipotency plenipotent plenipotential plenipotentiality plenipotentiaries plenipotentiarily plenipotentiarize plenipotentiary plenipotentiaryship plenish plenished plenishes plenishing plenishings plenishment plenism plenisms plenist plenists plenitide plenitude plenitudes plenitudinous plenity plenshing plenteous plenteously plenteousness plenteousnesses plenties plentiful plentifully plentifulness plentifulnesses plentify plentitude plentitudes plenty plenum plenums pleny pleochroic pleochroism pleochroisms pleochroitic pleochromatic pleochromatism pleochroous pleocrystalline pleodont pleomastia pleomastic pleomazia pleometrosis pleometrotic pleomorph pleomorphic pleomorphies pleomorphism pleomorphisms pleomorphist pleomorphous pleomorphy pleon pleonal pleonasm pleonasms pleonast pleonaste pleonastes pleonastic pleonastical pleonastically pleonasts pleonectic pleonexia pleonexias pleonic pleons pleophagous pleophyletic pleopod pleopodite pleopods plerergate plerocercoid plerocercoids pleroma pleromas pleromatic plerome pleromes pleromorph plerophoria plerophorias plerophoric plerophories plerophory plerosis plerotic plesance plesh pleshes plesianthropus plesiobiosis plesiobiotic plesiomorphic plesiomorphism plesiomorphous plesiosaur plesiosauria plesiosaurian plesiosauroid plesiosaurs plesiosaurus plesiotype plessigraph plessimeter plessimeters plessimetric plessimetries plessimetry plessor plessors plethodon plethodont plethodontid plethodontidae plethora plethoras plethoretic plethoretical plethoric plethorical plethorically plethorous plethory plethron plethrum plethysmogram plethysmograms plethysmograph plethysmographic plethysmographically plethysmographies plethysmographs plethysmography pleuch pleuched pleuching pleuchs pleugh pleughed pleughing pleughs pleura pleuracanthoid pleurae pleural pleuralgia pleuralgic pleurapophyses pleurapophysial pleurapophysis pleuras pleurectomy pleurenchyma pleurenchymatous pleuric pleuriseptate pleurisies pleurisy pleurite pleuritic pleuritical pleuritically pleuritics pleuritis pleuritises pleurobrachia pleurobrachiidae pleurobranch pleurobranchia pleurobranchial pleurobranchiate pleurobronchitis pleurocapsaceous pleurocarp pleurocarpous pleurocele pleurocentesis pleurocentral pleurocentrum pleurocerebral pleuroceroid pleurococcaceous pleurodiran pleurodire pleurodirous pleurodiscous pleurodont pleurodonts pleurodynia pleurodynias pleurodynic pleurogenic pleurogenous pleurohepatitis pleuroid pleurolith pleurolysis pleuron pleuronect pleuronectes pleuronectid pleuronectidae pleuronectoid pleuropedal pleuropericardial pleuropericarditis pleuroperitonaeal pleuroperitoneal pleuroperitoneum pleuropneumonia pleuropneumonias pleuropneumonic pleuropodium pleuropterygian pleuropulmonary pleurorrhea pleurosorus pleurospasm pleurosteal pleurostict pleurothallis pleurothotonic pleurothotonos pleurothotonus pleurotomarioid pleurotomid pleurotomies pleurotomine pleurotomoid pleurotomy pleurotonic pleurotonus pleurotribal pleurotribe pleurotropous pleurotus pleurotyphoid pleurovisceral pleurum pleuston pleustonic pleustons pleven plevin plevna plew plewch plewgh plews plex plexal plexicose plexiform plexiglas plexiglass plexiglasses pleximeter pleximeters pleximetric pleximetries pleximetry plexippus plexodont plexometer plexor plexors plexure plexures plexus plexuses plf pli plia pliabilities pliability pliable pliableness pliablenesses pliably pliancies pliancy pliant pliantly pliantness pliantnesses plias plica plicable plicae plical plicate plicated plicately plicateness plicatenesses plicater plicates plicatile plicating plication plications plicative plicatocontorted plicatocristate plicatolacunose plicatolobate plicatopapillose plicatoperipatus plicator plicatoundulate plicatulate plicature plicatures plicidentine pliciferous pliciform plie plied plier pliers plies plight plighted plighter plighters plightful plighting plights plim plimmed plimming plims plimsol plimsole plimsoles plimsoll plimsolls plimsols pling plings plink plinked plinker plinkers plinking plinks plinth plinther plinthiform plinthless plinthlike plinths pliocene pliofilm pliofilms pliosaur pliosaurian pliosaurs pliosaurus pliothermic pliotron pliotrons pliskie pliskies plisky pliss plisse plisses plissé plitch plié ploat ploated ploating ploats ploce ploceidae ploceiform ploceus plock plod plodded plodder plodderly plodders plodding ploddingly ploddingness ploddingnesses ploddings plodge plodged plodges plodging plods ploesti ploidies ploidy ploimate plomb plong plongd plonge plonged plonges plonging plongs plonk plonked plonker plonkers plonkier plonkiest plonking plonkings plonko plonks plonky plook plookie plookier plookiest plooks plop plopped plopping plops ploration ploratory plosion plosions plosive plosives plot plotch plotcock plote plotful plotinian plotinism plotless plotlessness plotlessnesses plotlib plotline plotlines plotosid plotproof plots plott plottage plottages plotted plotter plottered plottering plotters plottery plottie plottier plotties plottiest plotting plottingly plottings plotton plotty plotx plotz plotzed plotzes plotzing plough ploughable ploughboy ploughboys ploughed plougher ploughers ploughfish ploughfoot ploughgang ploughgate ploughgates ploughhead ploughing ploughings ploughjogger ploughland ploughlands ploughline ploughman ploughmanship ploughmell ploughmen ploughpoint ploughs ploughshare ploughshares ploughshoe ploughstaff ploughstilt ploughtail ploughwise ploughwright ploughwrights plouk plouked ploukie ploukier ploukiest plouks plouky plounce plousiocracy plout plouter ploutered ploutering plouters plover ploverlike plovers plovery plow plowable plowback plowbacks plowbote plowboy plowboys plowed plower plowers plowfish plowfoot plowgang plowgate plowgraith plowhead plowheads plowing plowjogger plowland plowlands plowlight plowline plowmaker plowmaking plowman plowmanship plowmanships plowmell plowmen plowpoint plows plowshare plowshares plowshoe plowstaff plowstilt plowtail plowter plowtered plowtering plowters plowwise plowwoman plowwright ploy ployed ploying ployment ploys ployurethan pltano plu pluck pluckage plucked pluckedness plucker pluckers pluckier pluckiest pluckily pluckiness pluckinesses plucking pluckless plucklessly plucklessness plucks plucky plud pluff pluffed pluffer pluffier pluffiest pluffing pluffs pluffy plug plugboard plugdrawer pluggable plugged plugger pluggers plugging pluggingly pluggings pluggy plughole plugholes plugin plugins pluglees plugless pluglike plugman plugmen plugola plugolas plugs plugtray plugtree pluguglies plugugly plum pluma plumaceous plumach plumade plumage plumaged plumagery plumages plumasite plumassier plumassiers plumate plumatellid plumatelloid plumb plumbable plumbage plumbagin plumbaginaceae plumbaginaceous plumbaginales plumbagine plumbaginous plumbago plumbagos plumbate plumbates plumbean plumbed plumbeous plumber plumberies plumbers plumbership plumbery plumbet plumbic plumbicon plumbiferous plumbing plumbings plumbism plumbisms plumbisolvencies plumbisolvency plumbisolvent plumbite plumbites plumbless plumblessness plumbness plumbnesses plumbog plumbojarosite plumboniobate plumbosolvencies plumbosolvency plumbosolvent plumbous plumbs plumbum plumbums plumcot plumcots plumdamas plumdamases plumdamis plume plumed plumeless plumelet plumelets plumelike plumemaker plumemaking plumeopicean plumeous plumer plumeria plumerias plumeries plumery plumes plumet plumete plumetis plumette plumicorn plumier plumiera plumieride plumiest plumification plumiform plumiformly plumify plumigerous pluminess pluming plumiped plumipede plumipeds plumist plumists plumless plumlet plumlike plummer plummest plummet plummeted plummeting plummetless plummets plummier plummiest plumming plummy plumose plumosely plumoseness plumosite plumosities plumosity plumous plump plumped plumpen plumpened plumpening plumpens plumper plumpers plumpest plumpie plumpier plumpiest plumping plumpish plumply plumpness plumpnesses plumps plumpy plumrock plums plumula plumulaceous plumulae plumular plumularia plumularian plumularians plumulate plumule plumules plumuliform plumulose plumy plunder plunderable plunderage plunderages plunderbund plundered plunderer plunderers plunderess plundering plunderingly plunderless plunderous plunderproof plunders plunge plunged plungeon plunger plungers plunges plunging plungingly plungingness plungings plungy plunk plunked plunker plunkers plunking plunks plunky plunther plup plupatriotic pluperfect pluperfectly pluperfectness pluperfects plupf plur plural pluralisation pluralisations pluralise pluralised pluraliser pluralisers pluralises pluralising pluralism pluralisms pluralist pluralistic pluralistically pluralists pluralities plurality pluralization pluralizations pluralize pluralized pluralizer pluralizers pluralizes pluralizing plurally pluralness plurals plurative plurel plurennial pluriaxial pluribus pluricarinate pluricarpellary pluricellular pluricentral pluricipital pluricuspid pluricuspidate pluridentate pluries plurifacial plurifetation plurification pluriflagellate pluriflorous plurifoliate plurifoliolate plurify pluriglandular pluriguttulate plurilateral plurilingual plurilingualism plurilingualist pluriliteral plurilocular plurimammate plurinominal plurinucleate pluripara pluriparae pluriparas pluriparity pluriparous pluripartite pluripetalous pluripotence pluripotent pluripresence pluripresences pluriseptate pluriserial pluriseriate pluriseriated plurisetose plurisie plurisies plurispiral plurisporous plurisy plurisyllabic plurisyllable plurivalent plurivalve plurivorous plurivory plus plusage plusages plused pluses plush plushed plusher plushes plushest plushette plushier plushiest plushily plushiness plushinesses plushlike plushly plushness plushnesses plushy plusing plusquam plusquamperfect plussage plussages plussed plusses plussing plutarch plutarchy pluteaceae pluteal plutean plutei pluteiform pluteus pluteuses pluteutei pluto plutocracies plutocracy plutocrat plutocratic plutocratical plutocratically plutocrats plutolatries plutolatry plutological plutologies plutologist plutologists plutology plutomania pluton plutonian plutonic plutonism plutonist plutonite plutonium plutoniums plutonometamorphism plutonomic plutonomies plutonomist plutonomists plutonomy plutons plutter plutus pluvial pluvialiform pluvialine pluvialis pluvially pluvials pluvian pluvianus pluvine pluviograph pluviographic pluviographical pluviography pluviometer pluviometers pluviometric pluviometrical pluviometrically pluviometries pluviometry pluvioscope pluvioscopic pluviose pluviosities pluviosity pluvious ply plyboard plyer plyers plygain plying plyingly plymouth plymouths plyometric plyometrics plyscore plywood plywoods pm pmk pms pmsg pmt pnce pneodynamics pneograph pneomanometer pneometer pneometry pneophore pneoscope pneudraulic pneum pneuma pneumarthrosis pneumas pneumathaemia pneumathode pneumathodes pneumatic pneumatical pneumatically pneumaticities pneumaticity pneumaticness pneumatics pneumatism pneumatist pneumatize pneumatized pneumatocardia pneumatoce pneumatocele pneumatochemical pneumatochemistry pneumatocyst pneumatocystic pneumatode pneumatogenic pneumatogenous pneumatogram pneumatograph pneumatographer pneumatographic pneumatography pneumatolitic pneumatologic pneumatological pneumatologies pneumatologist pneumatologists pneumatology pneumatolyses pneumatolysis pneumatolytic pneumatomachian pneumatometer pneumatometers pneumatometry pneumatomorphic pneumatonomy pneumatophanic pneumatophany pneumatophilosophy pneumatophobia pneumatophonic pneumatophony pneumatophore pneumatophores pneumatophoric pneumatophorous pneumatorrhachis pneumatoscope pneumatosic pneumatosis pneumatostatics pneumatotactic pneumatotherapeutics pneumatotherapy pneumaturia pneume pneumectomies pneumectomy pneumobacilli pneumobacillus pneumocele pneumocentesis pneumochirurgia pneumococcal pneumococcemia pneumococci pneumococcic pneumococcocci pneumococcous pneumococcus pneumoconioses pneumoconiosis pneumoconiotic pneumocystis pneumocystises pneumocystosis pneumoderma pneumodynamic pneumodynamics pneumoencephalitis pneumoencephalogram pneumoenteritis pneumogastric pneumogastrics pneumogram pneumograph pneumographic pneumographs pneumography pneumohemothorax pneumohydropericardium pneumohydrothorax pneumokonioses pneumokoniosis pneumolith pneumolithiasis pneumological pneumology pneumolysis pneumomalacia pneumomassage pneumomycosis pneumonalgia pneumonectasia pneumonectomies pneumonectomy pneumonedema pneumonia pneumonias pneumonic pneumonics pneumonitic pneumonitides pneumonitis pneumonitises pneumonocace pneumonocarcinoma pneumonocele pneumonocentesis pneumonocirrhosis pneumonoconiosis pneumonodynia pneumonoenteritis pneumonoerysipelas pneumonographic pneumonography pneumonokonioses pneumonokoniosis pneumonolith pneumonolithiasis pneumonolysis pneumonomelanosis pneumonometer pneumonomycosis pneumonoparesis pneumonopathy pneumonopexy pneumonophorous pneumonophthisis pneumonopleuritis pneumonorrhagia pneumonorrhaphy pneumonosis pneumonotherapy pneumonotomy pneumonoultramicroscopicsilicovolcanoconioses pneumonoultramicroscopicsilicovolcanoconiosis pneumony pneumopericardium pneumoperitoneum pneumoperitonitis pneumopexy pneumopleuritis pneumopyothorax pneumorrachis pneumorrhachis pneumorrhagia pneumotactic pneumotherapeutics pneumotherapy pneumothoraces pneumothorax pneumothoraxes pneumotomy pneumotoxin pneumotropic pneumotropism pneumotyphoid pneumotyphus pneumoventriculography pnigerophobia pnigophobia pnxt pnyx po poa poaceae poaceous poach poachable poachard poachards poached poacher poachers poaches poachier poachiest poachiness poachinesses poaching poachings poachy poaka poakas poake poakes poalike poas pob pobbies pobby pobedy poblacion poblano poblanos poboy poboys pobs pocahontas pocan pochade pochades pochaise pochard pochards pochay pochayed pochaying pochays poche pochette pochettes pochettino pochismo pochoir pochoirs pochote pocill pocilliform pock pockard pockards pocked pocket pocketable pocketableness pocketbook pocketbooks pocketcase pocketcomb pocketed pocketer pocketers pocketful pocketfuls pocketing pocketknife pocketknives pocketless pocketlike pocketphone pocketphones pockets pocketsful pockety pockhouse pockier pockiest pockily pockiness pocking pockmankies pockmanky pockmanteau pockmantie pockmanties pockmark pockmarked pockmarking pockmarks pockpit pockpits pockpitted pocks pockweed pockwood pocky poco pococurante pococuranteism pococuranteisms pococurantes pococuranti pococurantic pococurantish pococurantism pococurantisms pococurantist pococurantists pocosen pocosens pocosin pocosins pocoson pocosons pocul poculary poculation poculent poculiform pocus pod podagra podagral podagras podagric podagrical podagrous podagry podal podalgia podalic podalyria podanger podargidae podargine podargue podargus podarguses podarthral podarthritis podarthrum podatus podaxaceae podaxonial podcast podded podder poddia poddidge poddier poddies poddiest poddige podding poddish poddle poddock poddy podelcoma podeon podesta podestas podesterate podestà podestàs podetia podetiiform podetium podex podexes podge podger podges podgier podgiest podgily podginess podginesses podgy podia podial podiatric podiatries podiatrist podiatrists podiatry podical podiceps podices podicipedidae podicipediformes podicipitiformes podilegous podilymbus podite podites poditic poditti podium podiums podler podley podleys podlike podobranch podobranchia podobranchial podobranchiate podocarp podocarpaceae podocarpous podocarps podocarpus podocephalous podoconioses podoconiosis pododerm pododynia podogyn podogyne podogynium podolite podologies podologist podologists podology podomancy podomere podomeres podometer podometry podophthalmate podophthalmatous podophthalmian podophthalmic podophthalmite podophthalmitic podophthalmous podophylli podophyllic podophyllin podophyllins podophyllotoxin podophyllous podophyllum podophyllums podos podoscaph podoscapher podoscopy podosomatous podosperm podostemaceous podostemad podostemonaceous podostomatous podotheca podothecal pods podsol podsolic podsolization podsolizations podsolize podsolized podsolizing podsols podtia podunk podura poduran podurid podware podzol podzolic podzolization podzolizations podzolize podzolized podzolizes podzolizing podzols poe poebird poechore poechores poechoric poecile poeciliid poeciliidae poecilite poecilitic poecilocapsus poecilocyttarous poecilogale poecilogonous poecilogony poecilomere poecilonym poecilonymic poecilonymy poecilopod poecilopodous poem poematic poemet poemlet poems poenitentiae poenologies poenology poephagous poephila poesie poesied poesies poesiless poesis poesy poesying poet poetaster poetasteries poetastering poetasterings poetasterism poetasters poetastery poetastress poetastric poetastrical poetastries poetastry poetcraft poetdom poetesque poetess poetesses poethood poetic poetical poeticalities poeticality poetically poeticalness poeticalnesses poeticals poeticise poeticised poeticises poeticising poeticism poeticisms poeticize poeticized poeticizes poeticizing poeticness poetics poeticule poeticules poetiised poetiising poetisation poetise poetised poetiser poetisers poetises poetising poetito poetization poetize poetized poetizer poetizers poetizes poetizing poetless poetlike poetling poetly poetomachia poetress poetresse poetresses poetries poetry poetryless poets poetship poetships poetwise poffle poffles pogamoggan pogey pogeys pogge pogges poggies poggy pogies pogo pogoed pogoing pogonia pogonias pogoniasis pogoniate pogonion pogonip pogonips pogoniris pogonite pogonological pogonologist pogonology pogonophobia pogonophora pogonophoran pogonophorans pogonotomies pogonotomy pogonotrophy pogos pogostemon pogrom pogromed pogroming pogromise pogromist pogromists pogromize pogroms pogy poh poha pohickory pohna pohs pohutukawa pohutukawas poi poiesis poietic poignado poignadoes poignance poignances poignancies poignancy poignant poignantly poignard poignet poikile poikilie poikilitic poikiloblast poikiloblastic poikilocyte poikilocytes poikilocythemia poikilocytosis poikilotherm poikilothermal poikilothermic poikilothermies poikilothermism poikilothermisms poikilothermous poikilotherms poikilothermy poil poils poilu poilus poimenic poimenics poinado poinadoes poinard poinciana poincianas poind poindable poinded poinder poinders poinding poindings poinds poinephobia poinsettia poinsettias point pointable pointage pointal pointblank pointe pointed pointedly pointedness pointednesses pointel pointelle pointelles pointels pointer pointers pointes pointful pointfully pointfulness pointier pointiest pointilla pointillage pointille pointillism pointillisme pointillismes pointillisms pointillist pointilliste pointillistes pointillistic pointillists pointillé pointing pointingly pointings pointless pointlessly pointlessness pointlessnesses pointlet pointleted pointmaker pointmaking pointman pointmen pointment pointrel points pointsman pointsmen pointswoman pointtillist pointure pointways pointwise pointy poire pois poisable poise poised poiser poisers poises poiseuille poisha poishas poising poison poisonable poisonberry poisonbush poisoned poisoner poisoners poisonful poisonfully poisoning poisonings poisonless poisonlessness poisonmaker poisonous poisonously poisonousness poisonousnesses poisonproof poisons poisonweed poisonwood poisonwoods poissarde poisson poister poisure poitiers poitou poitrail poitrel poitrels poitrinaire poivrade pokable pokal pokals poke pokeberries pokeberry poked pokeful pokefuls pokelogan pokeloken pokeout poker pokerface pokerish pokerishly pokerishness pokerlike pokeroot pokeroots pokers pokes pokeweed pokeweeds pokey pokeys pokie pokier pokies pokiest pokily pokiness pokinesses poking pokingly pokomo pokomoo pokunt poky pol polacca polaccas polack polacre polacres poland polanisia polar polaran polarans polaric polarigraphic polarily polarimeter polarimeters polarimetric polarimetries polarimetry polaris polarisabilities polarisability polarisable polarisation polarisations polariscope polariscoped polariscopes polariscopic polariscopically polariscoping polariscopist polariscopy polarise polarised polariser polarisers polarises polarising polaristic polaristrobometer polarities polariton polarity polarizabilities polarizability polarizable polarization polarizations polarize polarized polarizer polarizers polarizes polarizing polarly polarogram polarograph polarographic polarographically polarographies polarography polaroid polaroids polaron polarons polars polarward polary polatouche polaxis poldavis poldavy polder polderboy poldered poldering polderland polderman polders poldoody poldron pole polearm poleax poleaxe poleaxed poleaxer poleaxes poleaxing poleburn polecat polecats poled polehead poleis polejumper poleless poleman polemarch polemarchs polemic polemical polemically polemician polemicise polemicised polemicises polemicising polemicist polemicists polemicize polemicized polemicizes polemicizing polemics polemise polemised polemises polemising polemist polemists polemize polemized polemizes polemizing polemoniaceae polemoniaceous polemoniales polemonium polemoniums polemoscope polenta polentas poler polers poles polesaw polesetter polesman polestar polestars poleward polewards polewig poley poleyn poleyne poleyns poleys poliad poliadic polianite polianites polianthes police policed policedom policeless policeman policemanish policemanism policemanlike policemanship policemen policer policers polices policewoman policewomen policial policies policing policise policiser policize policizer policlinic policlinics policy policyholder policyholders policymaker policymakers policymaking policymakings poliencephalitis poliencephalomyelitis polies poligar poligarship poligraphical polilla polimetrum poling polings polio polioencephalitis polioencephalomyelitis poliomyelitic poliomyelitides poliomyelitis poliomyelitises poliomyelopathy polioneuromere polionotus polioptila poliorcetic poliorcetics polios poliosis poliovirus polioviruses polis polish polishable polished polishedly polishedness polisher polishers polishes polishing polishings polishment polishments polisman polissoir polista polistes polit politarch politarchic politburo politburos polite politeful politei politeia politely politeness politenesses politer politesse politesses politest politic political politicalise politicalises politicalism politicalization politicalizations politicalize politicalized politicalizes politicalizing politically politicaster politicasters politician politicians politicious politicisation politicisations politicise politicised politiciser politicises politicising politicist politicization politicizations politicize politicized politicizer politicizes politicizing politick politicked politicker politickers politicking politickings politicks politicly politicness politico politicoes politicomania politicophobia politicos politics politied polities politique politise politist politize politure polity politzerization politzerize polje polk polka polkadot polkaed polkaing polkas polked polki polking polks poll pollable pollachius pollack pollacks polladz pollage pollakiuria pollam pollan pollans pollarchy pollard pollarded pollarding pollards pollbook pollcadot polled pollee pollees pollen pollenate pollenated pollenates pollenating pollenation pollened polleniferous pollenigerous pollening polleniser pollenite pollenivorous pollenizer pollenizers pollenless pollenlike pollenoses pollenosis pollenproof pollens pollent poller pollera polleras pollers pollet polleten pollette pollex pollical pollicar pollicate pollices pollicie pollicies pollicitation pollicitations pollicy pollies pollinar pollinarium pollinate pollinated pollinates pollinating pollination pollinations pollinator pollinators pollinctor pollincture polling pollings pollinia pollinic pollinical polliniferous pollinigerous pollinise pollinised polliniser pollinises pollinising pollinium pollinivorous pollinization pollinizations pollinize pollinized pollinizer pollinizers pollinizes pollinizing pollinodial pollinodium pollinoid pollinose pollinoses pollinosis pollist pollists polliwig polliwigs polliwog polliwogs pollman pollmen pollock pollocks polloi polls pollster pollsters pollucite pollusion pollusions pollutant pollutants pollute polluted pollutedly pollutedness pollutednesses polluter polluters pollutes polluting pollutingly pollution pollutions pollutive pollux polly pollyanna pollyannaish pollyannaism pollyannaisms pollyannas pollyannish pollyfish pollyfishes pollywig pollywigs pollywog pollywogs polo poloconic polocyte poloi poloidal poloist poloists polonaise polonaises polonese polonian polonick polonie polonies polonise polonised polonises polonising polonism polonisms polonium poloniums polonius polonize polonized polonizes polonizing polony polopony polos pols polska polster polt polted poltergeist poltergeistism poltergeists poltfeet poltfoot poltfooted poltina polting poltinik poltinnik poltophagic poltophagist poltophagy poltroon poltrooneries poltroonery poltroonish poltroonishly poltroonishness poltroonism poltroons polts poluphloisboic poluphloisboiotatotic poluphloisboiotic polverine polverines poly polyacanthus polyacid polyacoustic polyacoustics polyacrylamide polyacrylamides polyacrylonitrile polyacrylonitriles polyact polyactinal polyactine polyad polyadelph polyadelphia polyadelphian polyadelphous polyadenia polyadenitis polyadenoma polyadenous polyadic polyaemia polyaemic polyaffectioned polyalcohol polyalcohols polyalphabetic polyamide polyamides polyamine polyamines polyamories polyamory polyamylose polyandria polyandrian polyandrianism polyandric polyandries polyandrious polyandrism polyandrist polyandrists polyandrium polyandrous polyandry polyangiaceae polyangium polyangular polyantha polyanthas polyanthi polyanthous polyanthus polyanthuses polyanthy polyarch polyarchal polyarchic polyarchical polyarchies polyarchist polyarchy polyarteritis polyarthric polyarthritic polyarthritis polyarthrous polyarticular polyatomic polyatomicity polyautographic polyautography polyaxial polyaxials polyaxon polyaxone polyaxonic polyaxons polybasic polybasicity polybasite polybasites polyblast polyborine polyborus polybotria polybotrya polybranch polybranchian polybranchiate polybrid polybrids polybromid polybromide polybunous polybuny polybutadiene polybutadienes polybutene polybuttoned polybutylene polycarbonate polycarbonates polycarboxylic polycarpellary polycarpic polycarpies polycarpous polycarpy polycellular polycentral polycentric polycentrism polycentrisms polycentrist polycentrists polycephalic polycephalous polycephaly polychaeta polychaetal polychaetan polychaete polychaetes polychaetous polychasia polychasial polychasium polychete polychetes polychetous polychloride polychlorinated polychloroprene polychloroprenes polychoerany polychord polychotomies polychotomous polychotomy polychrest polychrestic polychrestical polychrests polychresty polychroic polychroism polychroisms polychroite polychromasia polychromate polychromatic polychromatise polychromatism polychromatist polychromatize polychromatophil polychromatophile polychromatophilia polychromatophilias polychromatophilic polychrome polychromed polychromes polychromia polychromic polychromies polychroming polychromise polychromism polychromist polychromize polychromous polychromy polychronicon polychronious polychsia polyciliate polycirrus polycistronic polycitral polyclad polycladine polycladose polycladous polyclady polyclinic polyclinics polyclona polyclonal polyclonally polyclone polyclones polycoccous polycondensation polycondensations polyconic polycormic polycot polycots polycotton polycottons polycotyl polycotyledon polycotyledonary polycotyledonous polycotyledons polycotyledony polycotylous polycotyly polycracy polycrase polycratic polycrotic polycrotism polycrotisms polycrystal polycrystalline polycrystals polyctenid polycttarian polyculture polycultures polycyanide polycyclic polycycly polycyesis polycystic polycythaemia polycythaemias polycythaemic polycythemia polycythemias polycythemic polydactyl polydactyle polydactylies polydactylism polydactylisms polydactylous polydactyls polydactylus polydactyly polydaemoniac polydaemonism polydaemonisms polydaemonist polydaemonistic polydemic polydemonism polydemonisms polydemonist polydenominational polydental polydermous polydermy polydigital polydimensional polydipsia polydipsias polydipsic polydisperse polydispersities polydispersity polydomous polydontia polydymite polydynamic polyedral polyeidic polyeidism polyelectrolyte polyelectrolytes polyembryonate polyembryonic polyembryonies polyembryony polyemia polyemic polyene polyenes polyenic polyenzymatic polyergic polyergus polyester polyesterification polyesterifications polyesters polyesthesia polyesthetic polyestrous polyethnic polyethylene polyethylenes polyfenestral polyflorous polyfoam polyfoil polyfold polygala polygalaceae polygalaceous polygalas polygalic polygalin polygam polygamia polygamian polygamic polygamical polygamically polygamies polygamise polygamises polygamist polygamistic polygamists polygamize polygamized polygamizes polygamizing polygamodioecious polygamous polygamously polygams polygamy polyganglionic polygar polygarchy polygastric polygene polygenes polygeneses polygenesic polygenesis polygenesist polygenetic polygenetically polygenic polygenically polygenies polygenism polygenisms polygenist polygenistic polygenists polygenous polygenouss polygeny polyglandular polyglobulia polyglobulism polyglossary polyglot polyglotism polyglotisms polyglotry polyglots polyglott polyglottal polyglottally polyglotted polyglotter polyglottery polyglottic polyglottically polyglotting polyglottism polyglottisms polyglottist polyglottonic polyglottous polyglotts polyglotwise polyglycerol polygon polygonaceae polygonaceous polygonal polygonales polygonally polygonatum polygonatums polygoneutic polygoneutism polygonia polygonic polygonically polygonies polygonoid polygonometry polygonous polygons polygonum polygonums polygony polygram polygrammatic polygraph polygraphed polygrapher polygraphers polygraphic polygraphically polygraphies polygraphing polygraphist polygraphists polygraphs polygraphy polygroove polygrooved polygyn polygynaiky polygynia polygynian polygynic polygynies polygynious polygynist polygynists polygynoecial polygynous polygyny polygyral polygyria polyhaemia polyhaemic polyhalide polyhalite polyhalites polyhalogen polyharmonic polyharmony polyhedra polyhedral polyhedrals polyhedric polyhedrical polyhedroid polyhedron polyhedrons polyhedroses polyhedrosis polyhedrous polyhemia polyhemic polyhidrosis polyhistor polyhistorian polyhistorians polyhistoric polyhistories polyhistors polyhistory polyhybrid polyhybrids polyhydric polyhydroxy polyhydroxybutyrate polyhydroxybutyrates polyhymnia polyideic polyideism polyidrosis polyimide polyimides polyiodide polyisobutene polyisoprene polyisoprenes polyisotopic polykaryocyte polylaminated polylemma polylemmas polylepidous polylinguist polylith polylithic polylobular polylogy polyloquent polylysine polylysines polymagnet polymania polymastia polymastias polymastic polymasties polymastigate polymastigina polymastigote polymastigous polymastism polymastisms polymastodont polymasty polymath polymathic polymathies polymathist polymaths polymathy polymazia polymelia polymelian polymely polymer polymerase polymerases polymere polymeria polymeric polymerically polymeride polymerides polymeries polymerisation polymerisations polymerise polymerised polymerises polymerising polymerism polymerisms polymerization polymerizations polymerize polymerized polymerizes polymerizing polymerous polymers polymery polymetallism polymetameric polymeter polymethylene polymetochia polymetochic polymicrian polymicrobial polymicrobic polymicroscope polymignite polymixiid polymnite polymny polymolecular polymolybdate polymorph polymorphean polymorphemic polymorphic polymorphically polymorphism polymorphisms polymorphistic polymorphonuclear polymorphonuclears polymorphonucleate polymorphosis polymorphous polymorphously polymorphs polymorphy polymyarian polymyodian polymyodous polymyoid polymyositis polymyositises polymythic polymythy polymyxin polymyxins polynaphthene polynee polynemid polynemidae polynemoid polynesia polynesian polynesians polynesic polyneural polyneuric polyneuritic polyneuritides polyneuritis polyneuritises polyneuropathy polynia polynias polynices polynodal polynoid polynome polynomial polynomialism polynomialisms polynomialist polynomially polynomials polynomic polynucleal polynuclear polynucleate polynucleated polynucleolar polynucleosis polynucleotidase polynucleotide polynucleotides polynya polynyas polynyi polyodon polyodont polyodontal polyodontia polyodontidae polyodontoid polyoecious polyoeciously polyoeciousness polyoecism polyoecy polyoestrous polyoicous polyol polyolefin polyolefins polyols polyoma polyomas polyomavirus polyomaviruses polyomino polyominos polyommatous polyonomous polyonomy polyonychia polyonym polyonymal polyonymic polyonymies polyonymist polyonymous polyonyms polyonymy polyophthalmic polyopia polyopic polyopsia polyopsy polyorama polyorchidism polyorchism polyorganic polyose polyoxide polyoxymethylene polyp polypage polypaged polypapilloma polyparasitic polyparasitism polyparesis polyparia polyparian polyparies polyparium polyparous polypary polype polypean polyped polypedates polypedatidae polypeds polypeptide polypeptides polypeptidic polypes polypetal polypetalous polypetaly polyphage polyphagia polyphagian polyphagias polyphagic polyphagies polyphagist polyphagous polyphagy polyphalangism polypharmacal polypharmacies polypharmacist polypharmacon polypharmacy polypharmic polyphasal polyphase polyphaser polyphasic polypheme polyphemian polyphemic polyphemous polyphemus polyphenol polyphenolic polyphenols polyphiloprogenitive polyphloesboean polyphloisbic polyphloisboioism polyphloisboism polyphobia polyphobic polyphon polyphone polyphoned polyphones polyphonia polyphonic polyphonical polyphonically polyphonies polyphonism polyphonist polyphonists polyphonium polyphonous polyphonously polyphons polyphony polyphore polyphosphate polyphosphoric polyphotal polyphote polyphylesis polyphyletic polyphyletically polyphyleticism polyphylety polyphylline polyphyllous polyphylly polyphylogeny polyphyly polyphyodont polypi polypian polypide polypides polypidom polypidoms polypier polypifer polypiferous polypigerous polypine polypinnate polypite polypites polyplacophora polyplacophoran polyplacophore polyplacophorous polyplastic polyplegia polyplegic polyploid polyploidic polyploidies polyploids polyploidy polypnea polypneas polypneic polypnoea polypnoeic polypod polypodia polypodiaceae polypodiaceous polypodiales polypodies polypodium polypodous polypods polypody polypoid polypoidal polypomorphic polyporaceae polyporaceous polypore polypores polyporite polyporoid polyporous polyporus polypose polyposes polyposis polypotome polypous polypragmacy polypragmatic polypragmatical polypragmatically polypragmatism polypragmatist polypragmaty polypragmist polypragmon polypragmonic polypragmonist polyprene polyprion polyprism polyprismatic polypropene polypropylene polypropylenes polyprothetic polyprotic polyprotodont polyprotodonts polyps polypseudonymous polypsychic polypsychical polypsychism polypterid polypteroid polyptote polyptoton polyptych polyptychs polypus polypuses polyrhizal polyrhizous polyrhythm polyrhythmic polyrhythmical polyrhythmically polyrhythms polyribonucleotide polyribonucleotides polyribosomal polyribosome polyribosomes polys polysaccharide polysaccharides polysaccharose polysaccharoses polysalicylide polysaprobic polysarcia polysarcous polyschematic polyschematist polyscope polyscopic polysemant polysemantic polysemants polyseme polysemeia polysemes polysemia polysemies polysemous polysemousness polysemy polysensuous polysensuousness polysepalous polyseptate polyserositis polysided polysidedness polysilicate polysilicic polysiloxane polysiloxanes polysiphonic polysiphonous polysomatic polysomatous polysomaty polysome polysomes polysomia polysomic polysomies polysomitic polysomous polysomy polysorbate polysorbates polyspast polyspaston polyspermal polyspermatous polyspermia polyspermic polyspermies polyspermous polyspermy polyspondylic polyspondylous polyspondyly polysporangium polyspore polyspored polysporic polysporous polystachyous polystaurion polystele polystelic polystellic polystemonous polystichoid polystichous polystichum polystomatous polystome polystomium polystylar polystyle polystylous polystyrene polystyrenes polysulfide polysulfides polysulfonate polysulphid polysulphide polysulphonate polysulphuration polysulphurisation polysulphurization polysuspensoid polysyllabic polysyllabical polysyllabically polysyllabicism polysyllabicisms polysyllabicity polysyllabism polysyllabisms polysyllable polysyllables polysyllogism polysyllogisms polysyllogistic polysymmetrical polysymmetrically polysymmetry polysynaptic polysynaptically polysyndeta polysyndetic polysyndetically polysyndeton polysyndetons polysyntheses polysynthesis polysynthesism polysynthetic polysynthetical polysynthetically polysyntheticism polysyntheticisms polysynthetism polysynthetisms polysynthetize polytechnic polytechnical polytechnics polytechnist polytene polytenic polytenies polyteny polyterpene polytetrafluorethylene polytetrafluorethylenes polytetrafluoroethylene polytetrafluoroethylenes polythalamian polythalamic polythalamous polythecial polytheism polytheisms polytheist polytheistic polytheistical polytheistically polytheists polytheize polythelia polythelism polythely polythene polythenes polythionic polytitanic polytocous polytokous polytoky polytomies polytomous polytomy polytonal polytonalism polytonalities polytonality polytonally polytone polytonic polytony polytope polytopes polytopic polytopical polytrichaceous polytrichia polytrichous polytrochal polytrochous polytrope polytrophic polytropic polytungstate polytungstic polytunnel polytunnels polytype polytyped polytypes polytypic polytypical polytyping polytypism polytypy polyunsaturate polyunsaturated polyunsaturates polyuresis polyurethan polyurethane polyurethanes polyuria polyurias polyuric polyvalence polyvalences polyvalencies polyvalency polyvalent polyve polyvinyl polyvinylidene polyvinylidenes polyvinylpyrrolidone polyvinyls polyvirulent polyvoltine polywater polywaters polyzoa polyzoal polyzoan polyzoans polyzoaria polyzoarial polyzoaries polyzoarium polyzoariums polyzoary polyzoic polyzoism polyzonal polyzooid polyzoon polyzoons polzenite pom pomacanthus pomace pomacentrid pomacentridae pomacentroid pomacentrus pomaceous pomaces pomada pomade pomaded pomaderris pomades pomading pomander pomanders pomane pomard pomarine pomarium pomary pomate pomato pomatoes pomatomid pomatomidae pomatomus pomatorhine pomatum pomatums pombe pombes pombo pome pomegranate pomegranates pomel pomelike pomelo pomelos pomely pomeranian pomeranians pomeria pomeridian pomerium pomeroy pomeroys pomes pomeshchik pomewater pomey pomeys pomfrest pomfret pomfrets pomiculture pomicultures pomiculturist pomiferous pomiform pomivorous pommado pommae pommage pomme pommee pommel pommele pommeled pommeler pommeling pommelion pommelled pommeller pommelling pommelo pommels pommelé pommer pommery pommet pommetty pommey pommie pommies pommy pomo pomoerium pomoeriums pomolo pomolobus pomological pomologically pomologies pomologist pomologists pomology pomona pomonal pomonic pomos pomoxis pomp pompa pompadour pompadoured pompadours pompal pompano pompanos pompatic pompeian pompeii pompelmoose pompelmooses pompelmous pompelmouse pompelmouses pompelo pompelos pomperkin pompey pompeyed pompeying pompeys pompholix pompholygous pompholyx pompholyxes pomphus pompier pompilid pompilids pompiloid pompion pompions pompist pompless pompoleon pompom pompoms pompon pompons pompoon pompoons pomposities pomposity pomposo pompous pompously pompousness pompousnesses pomps pompster pomroy pomroys poms pomster pomwater pomwaters pon ponca ponce ponceau ponceaus ponceaux ponced poncelet ponces poncho ponchoed ponchos poncier ponciest poncing poncirus poncy pond pondage pondages pondbush ponded ponder ponderabilities ponderability ponderable ponderableness ponderables ponderal ponderance ponderances ponderancies ponderancy ponderant ponderary ponderate ponderated ponderates ponderating ponderation ponderations ponderative pondered ponderer ponderers pondering ponderingly ponderling ponderment ponderments ponderomotive ponderosa ponderosae ponderosapine ponderosas ponderosities ponderosity ponderous ponderously ponderousness ponderousnesses ponders pondfish pondfishes pondful pondgrass ponding pondlet pondlike pondman pondok pondokkie pondokkies pondoks ponds pondside pondus pondville pondweed pondweeds pondwort pondy pone ponent ponerid ponerine poneroid ponerologies ponerology pones poney poneyed poneying poneys pong ponga pongamia pongas ponged pongee pongees pongid pongidae pongids pongier pongiest ponging pongo pongoes pongos pongs pongy ponhaws poniard poniarded poniarding poniards ponica ponied ponier ponies ponja ponk ponka ponked ponking ponks ponograph ponos pons ponstel pont pontage pontages pontal pontederia pontederiaceae pontederiaceous pontee pontes pontiac pontiacs pontianac pontianacs pontianak pontianaks pontic ponticello ponticellos pontics ponticular ponticulus pontie ponties pontifex pontiff pontiffs pontific pontifical pontificalia pontificalibus pontificalities pontificality pontifically pontificals pontificate pontificated pontificates pontificating pontification pontifications pontificator pontificators pontifice pontifices pontificial pontificially pontificious pontified pontifies pontify pontifying pontil pontile pontiles pontils pontin pontine pontist pontius pontlevis pontlevises ponto pontocerebellar ponton pontoned pontoneer pontoneers pontonier pontoniers pontoning pontonnier pontonniers pontons pontoon pontooned pontooneer pontooner pontooners pontooning pontoons pontos ponts pontus pontvolant ponty pony ponycart ponying ponyskin ponyskins ponytail ponytailed ponytails ponzite poo pooa pooch pooched pooches pooching pood pooder poodle poodledom poodleish poodler poodles poodleship poods pooecetes pooed poof poofier poofiest poofs pooftah pooftahs poofter poofters poofy poogye poogyee poogyees poogyes pooh poohed poohing poohpoohist poohs pooing pooja poojah poojahs poojas pook pooka pookas pookaun pookawn pooked pookhaun pooking pookit pookoo pooks pool pooled pooler poolers poolhall poolhalls pooli pooling poolroom poolrooms poolroot pools poolside poolsides poolwort pooly poon poonac poonacs poonah poonce poonced poonces pooncing poonga poongee poonghee poonghie poons poontang poontangs poop pooped poophyte poophytic pooping poops poopsie poor poorboy poorer poorest poorga poorhouse poorhouses poori pooris poorish poorlier poorliest poorliness poorling poorly poorlyish poormaster poormouth poorness poornesses poort poortith poortiths poorts poorweed poorwill poorwills poos poot pooted pooter pooters poother pooting poots pooty poove pooveries poovery pooves poovier pooviest poovy pop popadam popadum popadums popal popcorn popcorns popdock pope popedom popedoms popeholy popehood popehoods popeism popeler popeless popelike popeline popeling popelings popely poperies poperin poperins popery popes popeship popeships popess popeye popeyed popeyes popglove popgun popgunner popgunnery popguns popian popie popify popillia popinac popinjay popinjays popish popishly popishness popishnesses popjoy popjoyed popjoying popjoys poplar poplared poplars popleman poplesie poplet poplin poplinette poplinettes poplins poplitaeal popliteal poplitei popliteus poplitic poplolly popmobility popode popodium popoff popoffs popolis popomastic popover popovers poppa poppability poppable poppadom poppadoms poppadum poppadums poppas poppean popped poppel popper poppering popperings poppers poppet poppethead poppets poppied poppier poppies poppiest poppin popping poppish poppit poppits popple poppled popples popplier poppliest poppling popply poppy poppycock poppycockish poppycocks poppyfish poppyfishes poppyhead poppyheads poppylike poppyseed poppyseeds poppywort poprin poprins pops popshop popsicle popsicles popsie popsies popsy populace populaces populacy popular populares popularisation popularisations popularise popularised populariser popularisers popularises popularising popularism popularities popularity popularization popularizations popularize popularized popularizer popularizers popularizes popularizing popularly popularness populars populate populated populates populating population populational populationist populationistic populationless populations populaton populator populeon populi populicide populin populism populisms populist populistic populists populous populously populousness populousnesses populum populus populuxe populuxes popweed por porail poral porbeagle porbeagles porc porcate porcated porcelain porcelaineous porcelainisation porcelainise porcelainised porcelainises porcelainising porcelainization porcelainize porcelainized porcelainizes porcelainizing porcelainlike porcelainous porcelains porcelaneous porcelanic porcelanite porcelanous porcellaneous porcellanian porcellanic porcellanid porcellanise porcellanised porcellanises porcellanising porcellanite porcellanites porcellanize porcellanized porcellanizes porcellanizing porcellanous porcellio porcellionidae porch porched porches porching porchless porchlike porcine porcini porcino porcpisce porcpisces porcupine porcupinefish porcupinefishes porcupines porcupinish pore pored porelike porencephalia porencephalic porencephalitis porencephalon porencephalous porencephalus porencephaly porer porers pores poret porett porge porged porger porges porgie porgies porging porgo porgy poria poricidal porier poriest porifer porifera poriferal poriferan poriferans poriferous porifers poriform porimania porina poriness porinesses poring poringly poriomanic porion porions porism porismatic porismatical porismatically porisms poristic poristical porite poritoid pork porkburger porkchop porkeater porked porker porkers porkery porket porkfish porkfishes porkholt porkier porkies porkiest porkin porkiness porkinesses porking porkish porkless porkling porklings porkman porkolt porkpen porkpie porkpies porks porkwood porkwoods porky porlocking porlockings porn pornerastic pornier porniest porno pornocracies pornocracy pornocrat pornograph pornographer pornographers pornographic pornographically pornographies pornographist pornographomania pornography pornological pornomag pornomags pornos pornotopia pornotopian pornotopias porns porny porodine porodite porogam porogamic porogamies porogamous porogamy porokaiwhiria porokeratosis poroma poromas poromata poromeric poromerics porometer poronotus porophyllous poroplastic poroporo pororoca poros poroscope poroscopes poroscopic poroscopies poroscopy porose poroseness poroses porosimeter porosis porosities porosity porotic porotype porous porously porousness porousnesses porpentine porpentines porpess porpesse porpesses porphine porphyra porphyraceous porphyratin porphyria porphyrian porphyrias porphyries porphyrin porphyrine porphyrins porphyrinuria porphyrio porphyrion porphyrios porphyrisation porphyrite porphyrites porphyritic porphyrization porphyrize porphyrized porphyrizing porphyroblast porphyroblastic porphyrogene porphyrogenite porphyrogenites porphyrogenitic porphyrogenitism porphyrogenitisms porphyrogeniture porphyrogenitures porphyrogenitus porphyroid porphyroids porphyrophore porphyropsin porphyropsins porphyrous porphyrula porphyry porpitoid porpoise porpoised porpoiselike porpoises porpoising porporate porr porraceous porrect porrected porrecting porrection porrections porrects porrectus porrenger porrengers porret porridge porridgelike porridges porridgy porriginous porrigo porrigos porringer porringers porriwiggle porry port porta portabella portabellas portabello portabellos portabilities portability portable portableness portables portably portae portage portaged portages portaging portague portagues portahepatis portail portal portaled portalled portalless portals portamenti portamento portamentos portance portances portapack portapacks portapak portapaks portas portases portass portate portatile portative portatives portato portator portcrayon portcullis portcullised portcullises portcullising porte porteacid ported porteligature portend portendance portended portending portendment portends portension portent portention portentious portentive portentosity portentous portentously portentousness portentousnesses portents porteous porteouses porter porterage porterages portered porteress porteresses porterhouse porterhouses portering porterlike porterly porters portership portess portesse portesses portfire portfolio portfolios portglaive portglave portgrave portgreve porthole portholes porthook porthors porthorses porthos porthoses porthouse porthouses portia portiare portiares portico porticoed porticoes porticos porticus portier portiere portiered portieres portiest portifory portify portigue portigues porting portio portiomollis portion portionable portional portionally portioned portioner portioners portiones portioning portionise portionist portionists portionize portionless portions portitor portière portières portland portlands portlast portlasts portless portlet portlier portliest portligature portlight portlily portliness portlinesses portly portman portmanmote portmanteau portmanteaus portmanteaux portmantle portmantles portmantologism portmantua portmantuas portmen portment portmoot portmote porto portobello portobellos portoise portoises portolan portolani portolano portolanos portolans portous portouses portpayne portrait portraited portraiting portraitist portraitists portraitlike portraits portraiture portraitures portray portrayable portrayal portrayals portrayed portrayer portrayers portraying portrayist portrayment portrays portreeve portreeves portreeveship portress portresses ports portsale portside portsider portsman portsoken portuary portugais portugal portugese portuguese portulaca portulacacaea portulacaceous portulacas portulan portulans portunian portunid portunidae portunus porture portwatcher portway porty porule porulose porulous porus porwiggle porwiggles porwigle pory porzana pos posable posada posadas posadaship posaune posaunes posca poschay pose poseable posed poseidon posement poser posers poses poseur poseurs poseuse poseuses posey posh poshed posher poshes poshest poshing poshly poshness poshnesses posho poshteen poshteens posied posier posies posiest posigrade posing posingly posings posit posited positif positifs positing position positionable positional positionally positioned positioner positioners positioning positionless positions positival positive positively positiveness positivenesses positiver positives positivest positivise positivism positivisms positivist positivistic positivistically positivists positivities positivity positivize positon positons positor positrino positron positronium positroniums positrons posits positum positure posnet posnets posole posoles posolo posologic posological posologies posologist posology posostemad pospolite poss posse possed posseman possemen posser possers posses possess possessable possessed possessedly possessedness possessednesses possesses possessible possessing possessingly possessingness possessio possession possessional possessionalism possessionalist possessionary possessionate possessionates possessioned possessioner possessiones possessionist possessionless possessionlessness possessions possessival possessive possessively possessiveness possessivenesses possessives possessor possessoress possessorial possessoriness possessors possessorship possessorships possessory posset posseted posseting possets possibile possibilism possibilisms possibilist possibilists possibilitate possibilities possibility possible possibleness possibler possibles possiblest possibly possie possies possing possisdendi possodie possum possumed possumhaw possuming possums possumwood possy post postabdomen postabdominal postable postabortal postabortion postaccident postacetabular postact postadjunct postadolescence postadolescences postadolescent postadolescents postage postages postal postallantoic postally postals postalveolar postament postamniotic postamputation postanal postanesthetic postantennal postaortic postapocalyptic postapoplectic postapostolic postapostolical postappendicular postarmistice postarrest postarterial postarthritic postarticular postarytenoid postaspirate postaspirated postasthmatic postatomic postatrial postattack postauditory postauricular postaxiad postaxial postaxially postaxillary postbaccalaureate postbag postbags postbaptismal postbase postbellum postbiblical postbook postbourgeois postbox postboxes postboy postboys postbrachial postbrachium postbranchial postbreakfast postbreeding postbronchial postbuccal postbulbar postburn postbursal postbus postbuses postbusses postcaecal postcalcaneal postcalcarine postcanonical postcapitalist postcard postcarded postcardiac postcardinal postcarding postcardlike postcards postcarnate postcarotid postcart postcartilaginous postcatarrhal postcaudal postcava postcavae postcaval postcecal postcenal postcentral postcentrum postcephalic postcerebellar postcerebral postcesarean postchaise postchaises postcibal postclassic postclassical postclassicism postclavicle postclavicula postclavicular postclimax postclitellian postclival postcode postcoded postcodes postcoding postcoenal postcoital postcollege postcolleges postcollegiate postcolon postcolonial postcolumellar postcomitial postcommissural postcommissure postcommunicant postcommunion postconception postconceptive postconcert postconcretism postconcretist postcondition postcondylar postconfinement postconnubial postconquest postconsonantal postcontact postcontract postconvalescent postconvalescents postconvention postconvulsive postcopulatory postcordial postcornu postcoronary postcosmic postcostal postcoup postcoxal postcranial postcranially postcrash postcretaceous postcribrate postcrises postcrisis postcritical postcruciate postcrural postcubital postdate postdated postdates postdating postdeadline postdebate postdebutante postdebutantes postdelivery postdental postdepositional postdepression postdepressive postdetermined postdevaluation postdevelopmental postdiagnostic postdiaphragmatic postdiastolic postdicrotic postdigestive postdigital postdiluvial postdiluvian postdiluvians postdiphtherial postdiphtheric postdiphtheritic postdisapproved postdiscoidal postdisseizin postdisseizor postdive postdivestiture postdivorce postdoc postdocs postdoctoral postdoctorate postdrug postdural postdysenteric postea posted postediting posteditings posteen posteens postel postelection postelemental postelementary postembryonal postembryonic postemergence postemergency postemporal postencephalitic postencephalon postenteral postentries postentry postepileptic poster posterboard postered posterette posteriad posterial postering posterior posteriori posterioric posteriorically posterioristic posterioristically posteriorities posteriority posteriorly posteriormost posteriors posteriorums posterisation posterisations posterise posterish posterishness posterist posterities posterity posterization posterizations posterize postern posterns posteroclusion posterodorsad posterodorsal posterodorsally posteroexternal posteroinferior posterointernal posterolateral posteromedial posteromedian posteromesial posteroparietal posterosuperior posterotemporal posteroterminal posteroventral posters posteruptive postesophageal posteternity postethmoid postexercise postexilian postexilic postexist postexistence postexistency postexistent postexperience postexperimental postexposure postexpressionism postexpressionist postface postfaces postfact postfactor postfault postfebrile postfeminism postfeminisms postfeminist postfeminists postfemoral postfertilization postfertilizations postfetal postfire postfix postfixal postfixation postfixed postfixes postfixial postfixing postflection postflexion postflight postfoetal postform postformed postforming postforms postfoveal postfracture postfractures postfreeze postfrontal postfurca postfurcal postgame postganglionic postgangrenal postgastric postgeminum postgenial postgenital postgeniture postglacial postglenoid postglenoidal postgonorrheic postgracile postgrad postgrads postgraduate postgraduates postgraduation Postgres PostgreSQL postgrippal posthabit postharvest posthaste posthastes postheat postheats posthemiplegic posthemorrhagic posthepatic posthetomist posthetomy posthexaplar posthexaplaric posthippocampal posthitis posthoc postholder postholders posthole postholes postholiday postholocaust posthorse posthorses posthospital posthouse posthouses posthuma posthume posthumeral posthumous posthumously posthumousness posthumousnesses posthumus posthyoid posthypnotic posthypnotically posthypophyseal posthypophysis posthysterical postic postical postically postiche postiches posticous posticteric posticum posticus postie posties postil postiler postilion postilioned postilions postillate postillated postillates postillating postillation postillations postillator postillators postilled postiller postillers postilling postillion postillioned postillions postils postimpact postimperial postimpressionism postimpressionisms postimpressionist postimpressionistic postimpressionists postin postinaugural postincarnation postindependence postindustrial postinfection postinfective postinfluenzal posting postingly postings postinjection postinoculation postins postintestinal postique postiques postirradiation postischemic postischial postisolation postjacent postjugular postlabial postlabially postlachrymal postlanding postlapsarian postlarval postlaryngal postlaryngeal postlaunch postlegal postlegitimation postlenticular postless postliberation postlicentiate postlike postliminary postlimini postliminiary postliminies postliminious postliminium postliminous postliminy postliterate postloitic postloral postlude postludes postludium postluetic postmalarial postmamillary postmammary postmammillary postman postmandibular postmaniacal postmarital postmark postmarked postmarking postmarks postmarriage postmastectomy postmaster postmasterlike postmasters postmastership postmasterships postmastoid postmating postmaturity postmaxillary postmaximal postmeatal postmedia postmediaeval postmedial postmedian postmediastinal postmediastinum postmedieval postmedullary postmeiotic postmen postmeningeal postmenopausal postmenstrual postmental postmeridian postmeridional postmesenteric postmidnight postmillenarian postmillenarianism postmillenarianisms postmillenarians postmillennial postmillennialism postmillennialisms postmillennialist postmillennialists postmillennian postmineral postmistress postmistresses postmodern postmodernism postmodernisms postmodernist postmodernists postmodernity postmortal postmortem postmortems postmortuary postmultiplied postmultiply postmultiplying postmundane postmuscular postmutative postmycotic postmyxedematous postmyxedemic postnarial postnaris postnasal postnatal postnatally postnate postnati postnatus postnecrotic postneonatal postnephritic postneural postneuralgic postneuritic postneurotic postnodal postnodular postnominal postnota postnotum postnotums postnotumta postnuptial postnuptially postobituary postocular postoffice postoffices postolivary postomental postop postoperative postoperatively postops postoptic postoral postorbital postorder postordination postorgasmic postorgastic postosseous postotic postpagan postpaid postpalatal postpalatine postpalpebral postpaludal postparalytic postparietal postparotid postparotitic postparoxysmal postpartal postpartum postparturient postparturition postpatellar postpathologic postpathological postpectoral postpeduncular postperforated postpericardial postperson postpersons postpharyngal postpharyngeal postphlogistic postphragma postphrenic postphthisic postphthistic postpituitary postplace postplegic postpneumonic postpollination postponable postpone postponed postponement postponements postponence postponences postponer postponers postpones postponing postpontile postpose postposed postposes postposing postposit postposited postposition postpositional postpositionally postpositions postpositive postpositively postpositives postprandial postprandially postpredicament postpresidential postprimary postprison postprocess postprocessing postprocessor postproduction postproductions postprophesy postprophetic postprophetical postprostate postpsychoanalytic postpubertal postpuberty postpubescence postpubescent postpubescents postpubic postpubis postpuerperal postpulmonary postpunk postpupillary postpycnotic postpyloric postpyramidal postpyretic postrace postrachitic postradiation postramus postrecession postrectal postredemption postreduction postremogeniture postremote postrenal postreproductive postresurrection postresurrectional postresurrections postretinal postretirement postrevolutionary postrheumatic postrhinal postrider postriders postriot postromantic postrorse postrostral postrubeolar posts postsaccular postsacral postscalenus postscapula postscapular postscapularis postscarlatinal postscarlatinoid postscenia postscenium postsceniums postscholastic postschool postscorbutic postscribe postscript postscripts postscriptum postscutella postscutellar postscutellum postscuttella postseason postseasonal postseasons postsecondary postshow postsigmoid postsigmoidal postsign postsigner postspasmodic postsphenoid postsphenoidal postsphygmic postspinous postsplenial postsplenic poststernal poststertorous poststimulation poststimulatory poststimulus poststrike poststructuralism poststructuralisms postsuppurative postsurgical postsymphysial postsynaptic postsynaptically postsync postsynced postsyncing postsyncs postsynsacral postsyphilitic postsystolic posttabetic posttarsal posttax postteen posttemporal posttension posttensioned posttensioning posttensions posttest posttests posttetanic postthalamic postthoracic postthyroidal posttibial posttonic posttoxic posttracheal posttranscriptional posttransfusion posttranslational posttrapezoid posttraumatic posttreatment posttreaty posttrial posttubercular posttussive posttympanic posttyphoid postulance postulancies postulancy postulant postulants postulantship postulata postulate postulated postulates postulating postulation postulational postulationally postulations postulator postulators postulatory postulatum postulatums postulnar postumbilical postumbonal postural posture postured posturer posturers postures postureteral postureteric posturing posturings posturise posturised posturising posturist posturists posturize posturized posturizing postuterine postvaccinal postvaccination postvagotomy postvaricellar postvarioloid postvasectomy postvelar postvenereal postvenous postventral postverbal postvertebral postvesical postvide postvocalic postvocalically postwar postward postweaning postwise postwoman postwomen postworkshop postxiphoid postxyphoid postyard postzygapophyseal postzygapophysial postzygapophysis posy pot potabilities potability potable potableness potablenesses potables potage potager potagere potagerie potagers potagery potages potail potamian potamic potamogale potamogalidae potamogeton potamogetonaceae potamogetonaceous potamogetons potamological potamologies potamologist potamologists potamology potamometer potamophilous potamophis potamophobia potamoplankton potance potash potashed potashery potashes potashing potass potassa potassamide potassas potasses potassic potassiferous potassium potassiums potate potation potations potative potato potatoes potator potatory potawatomi potbank potbellied potbellies potbelly potboil potboiled potboiler potboilers potboiling potboils potbound potboy potboydom potboys potch potche potched potcher potcherman potchermen potchers potches potching potcrook potdar pote potecary poted poteen poteens potence potences potencies potency potent potentacy potentae potentate potentates potentee potential potentialisation potentialise potentialities potentiality potentialization potentialize potentially potentialness potentials potentiaries potentiary potentiate potentiated potentiates potentiating potentiation potentiations potentiator potentiators potentibility potenties potentilla potentillas potentiometer potentiometers potentiometric potentise potentised potentises potentising potentize potentized potentizes potentizing potently potentness potentnesses potents potenty poter poterium potes potestal potestas potestate potestative poteye potful potfuls potgirl potgun potguns potgut pothanger pothead potheads pothecaries pothecary potheen potheens pother potherb potherbs pothered pothering potherment pothers pothery potholder potholders pothole potholed potholer potholers potholes potholing potholings pothook pothookery pothooks pothos pothoses pothouse pothouses pothousey pothunt pothunted pothunter pothunters pothunting pothuntings poti poticaries poticary potiche potiches potichomania potichomanias potichomanist potifer potin poting potins potion potions potlach potlache potlaches potlatch potlatched potlatches potlatching potleg potlicker potlid potlike potlikker potline potlines potling potluck potlucks potmaker potmaking potman potmen potomac potomania potomato potometer potometers potong potoo potoos potophobia potoroinae potoroo potoroos potorous potos potpie potpies potpourri potpourris potrack potrero pots potshard potshards potshare potshares potshaw potsherd potsherds potshoot potshooter potshop potshops potshot potshots potshotting potsie potsies potstick potstone potstones potsy pott pottage pottages pottagy pottah pottaro potted potteen potteens potter pottered potterer potterers potteress potteries pottering potteringly potterings pottern potters pottery potti pottier potties pottiest pottiness pottinesses potting pottingar pottingars pottinger pottingers pottle pottled pottles potto pottos potts pottur potty potus potwaller potwalling potwalloper potware potwhisky potwork potwort potycary potzer potzers pouce poucer poucey pouch pouched pouches pouchful pouchfuls pouchier pouchiest pouching pouchless pouchlike pouchy poucy pouder poudered poudering pouders poudre poudred poudres poudret poudrette poudreuse poudreuses poudrin poudring pouf poufed pouff pouffe pouffed pouffes pouffing pouffs pouffy poufing poufs pouftah pouftahs poufter poufters pouk pouke pouked poukes pouking poukit pouks poulaine poulaines poulard poularde poulardes poulardize poulards poulder pouldered pouldering poulders pouldre pouldred pouldres pouldring pouldron pouldrons poule poules poulet poulette poulp poulpe poulpes poulps poult poulter poulterer poulterers poulteress poulters poultfeet poultfoot poultice poulticed poultices poulticewise poulticing poultries poultroone poultroones poultry poultrydom poultryist poultryless poultrylike poultryman poultrymen poultryproof poults pounamu pounce pounced pouncer pouncers pounces pouncet pouncets pounching pouncing pouncingly pouncy pound poundage poundages poundal poundals poundbreach poundcake pounded pounder pounders pounding poundings poundkeeper poundless poundlike poundman poundmaster poundmeal pounds poundstone poundworth poupe pouped poupes pouping poupt pour pourability pourable pourboire pourboires poured pourer pourers pourie pouries pouring pouringly pourings pourparler pourparlers pourparley pourparty pourpiece pourpoint pourpointer pourpoints pourprise pourquoi pourris pours poursew poursewed poursewing poursews poursue poursued poursues poursuing poursuit poursuits poursuitt poursuitts pourtrahed pourtraict pourtraicts pourtray pourtrayd pourtrayed pourtraying pourtrays pourvete pouser pousowdie pousowdies pousse pousses poussette poussetted poussettes poussetting poussie poussies poussin poussins poustie pousy pout pouted pouter pouteria pouters poutful pouther pouthered pouthering pouthers poutier poutiest poutine poutines pouting poutingly poutings pouts pouty poverish poverishment poverties poverty povertyweed pow powan powans powcat powder powderable powdered powderer powderers powderier powderies powderiest powderiness powdering powderisation powderise powderiser powderization powderize powderizer powderless powderlike powderman powderpuff powders powdery powdike powdry powellise powellised powellises powellising powellite powellites powellize powellized powellizes powellizing power powerable powerably powerboat powerboats powerbroker powerbrokers powered powerful powerfully powerfulness powerfulnesses powerhouse powerhouses powering powerless powerlessly powerlessness powerlessnesses powerlifting powerliftings powermonger powerplants powerplay powerplays powers powerset powersets powerstat powertrain powertrains powerwash powhatan powhead powin powins powitch powldoody pown pownd pownded pownding pownds powney powneys pownie pownies powns powny powre powred powres powring pows powsoddy powsowdies powsowdy powter powtered powtering powters powwaw powwow powwowed powwower powwowing powwowism powwows pox poxed poxes poxier poxiest poxing poxvirus poxviruses poy poybird poynant poynt poynted poyntell poyntill poynting poynts poyou poyous poyse poysed poyses poysing poyson poysoned poysoning poysons poz pozz pozzies pozzolan pozzolana pozzolanas pozzolanic pozzolans pozzuolana pozzuolanas pozzuolanic pozzy pp ppa ppb ppd pph ppi ppl ppm ppr pps ppt pptn pq pr praam praams prabble prabbles prabhu pracharak pracieuse pracieux pracis practic practicabilities practicability practicable practicableness practicablenesses practicably practical practicalism practicalisms practicalist practicalists practicalities practicality practicalization practicalize practicalized practicalizer practically practicalness practicalnesses practicals practicant practice practiced practicedness practicer practicers practices practician practicianism practicians practicing practick practicks practico practics practicum practicums practique practiques practisant practisants practise practised practiser practisers practises practising practitional practitioner practitioners practitionery practive practolol practolols prad pradhana prado prads praeabdomen praeacetabular praeamble praeambles praeanal praecava praecavae praecipe praecipes praecipitatio praecipuum praecoces praecocial praecognitum praecoracoid praecordia praecordial praecordium praecornu praecox praecuneus praedial praedialist praedialities praediality praedials praedium praeesophageal praefect praefectorial praefects praefectus praefervid praefloration praefoliation praehallux praelabrum praelect praelected praelecting praelection praelectionis praelector praelectorship praelectress praelects praeludium praemaxilla praemolar praemunientes praemunire praemunires praenarial praencipe praencipes praeneural praenomen praenomens praenomina praenominal praeoperculum praepositor praepositure praepositus praeposter praepostor praepostorial praepostors praepubis praepuce praescutum praesens praesenti praesertim praeses praesidia praesidium praesidiums praesphenoid praesternal praesternum praestomium praesystolic praetaxation praetexta praetextae praetor praetoria praetorial praetorian praetorianism praetorians praetorium praetoriums praetors praetorship praetorships praezygapophysis prag pragmarize pragmat pragmatic pragmatica pragmatical pragmaticalities pragmaticality pragmatically pragmaticalness pragmaticalnesses pragmaticism pragmaticisms pragmaticist pragmaticists pragmatics pragmatisation pragmatisations pragmatise pragmatised pragmatiser pragmatisers pragmatises pragmatising pragmatism pragmatisms pragmatist pragmatistic pragmatists pragmatization pragmatizations pragmatize pragmatized pragmatizer pragmatizers pragmatizes pragmatizing prague praha praham prahm prahu prahus praia prairial prairie prairiecraft prairied prairiedom prairielike prairies prairieweed prairillon praisable praisableness praisably praise praiseach praiseachs praised praiseful praisefully praisefulness praiseless praiseproof praiser praisers praises praiseworthily praiseworthiness praiseworthinesses praiseworthy praising praisingly praisings praiss praisworthily praisworthiness prajapati prajna prajnas prakrit prakriti praline pralines pralltriller pralltrillers pram pramnian prams prana pranas pranava pranayama pranayamas prance pranced pranceful prancer prancers prances prancing prancingly prancings pranck prancke prancked pranckes prancking prancks prancome prancy prand prandial prandially prang pranged pranging prangs pranidhana prank pranked pranker prankful prankfulness prankier prankiest pranking prankingly prankings prankish prankishly prankishness prankishnesses prankle prankled prankles prankling pranks pranksome pranksomeness prankster pranksters prankt pranky prao praos prase praseocobaltic praseodidymium praseodymia praseodymium praseodymiums praseolite prases prasine prasinous praskeen prasoid prasophagous prasophagy prastha prat pratal prate prated prateful pratement pratensian prater praters prates pratey pratfall pratfallen pratfalling pratfalls pratfell pratie praties pratiloma pratincole pratincoles pratincoline pratincolous prating pratingly pratings pratique pratiques pratiyasamutpada prats pratt pratted prattfall pratting prattle prattlebox prattleboxes prattled prattlement prattlements prattler prattlers prattles prattling prattlingly prattly pratts pratty praty prau praunce praunced praunces prauncing praunus praus pravastatin pravastatins pravenance pravenances pravilege pravities pravity pravous prawle prawles prawlin prawlins prawn prawned prawner prawners prawning prawns prawny praxeological praxeologies praxeology praxes praxinoscope praxinoscopes praxiologies praxiology praxis praxises praxithea pray praya prayable prayed prayer prayerbook prayerful prayerfully prayerfulness prayerfulnesses prayerless prayerlessly prayerlessness prayerlessnesses prayermaker prayermaking prayers prayerwise prayful praying prayingly prayings prayingwise prays prazosin prazosins prc pre preabdomen preabsorb preabsorbent preabstract preabundance preabundant preabundantly preaccept preacceptance preacceptances preaccepted preaccepting preaccepts preaccess preaccessible preaccidental preaccidentally preaccommodate preaccommodated preaccommodating preaccommodatingly preaccommodation preaccomplish preaccomplishment preaccord preaccordance preaccount preaccounting preaccredit preaccumulate preaccumulated preaccumulating preaccumulation preaccusation preaccuse preaccused preaccusing preaccustom preaccustomed preaccustoming preaccustoms preace preaced preaces preacetabular preach preachable preached preacher preacherdom preacheress preacherise preacherize preacherless preacherling preachers preachership preacherships preaches preachier preachiest preachieved preachification preachifications preachified preachifies preachify preachifying preachily preachiness preachinesses preaching preachingly preachings preachman preachment preachments preachy preacid preacidity preacidly preacidness preacing preacknowledge preacknowledged preacknowledgement preacknowledging preacknowledgment preacness preacquaint preacquaintance preacquaintances preacquainted preacquainting preacquaints preacquire preacquired preacquiring preacquisition preacquisitive preacquisitively preacquisitiveness preacquit preacquittal preacquitted preacquitting preact preacted preacting preaction preactive preactively preactiveness preactivity preacts preacute preacutely preacuteness preadamic preadamite preadamitic preadamitical preadamitism preadapt preadaptable preadaptation preadaptations preadapted preadapting preadaptive preadapts preaddition preadditional preaddress preadequacy preadequate preadequately preadequateness preadhere preadhered preadherence preadherent preadherently preadhering preadjectival preadjectivally preadjective preadjourn preadjournment preadjunct preadjust preadjustable preadjusted preadjusting preadjustment preadjustments preadjusts preadministration preadministrative preadministrator preadmire preadmired preadmirer preadmiring preadmission preadmissions preadmit preadmits preadmitted preadmitting preadmonish preadmonished preadmonishes preadmonishing preadmonition preadmonitions preadolescence preadolescences preadolescent preadolescents preadopt preadopted preadopting preadoption preadopts preadoration preadore preadorn preadornment preadult preadulthood preadults preadvance preadvancement preadventure preadvertency preadvertent preadvertise preadvertised preadvertisement preadvertiser preadvertising preadvice preadvisable preadvise preadvised preadviser preadvising preadvisory preadvocacy preadvocate preadvocated preadvocating preaemptor preaestival preaexistence preaexistent preaffect preaffection preaffidavit preaffiliate preaffiliated preaffiliating preaffiliation preaffirm preaffirmation preaffirmative preaffirmed preaffirming preaffirms preafflict preaffliction preafternoon preage preaged preaggravate preaggravated preaggravating preaggravation preaggression preaggressive preaggressively preaggressiveness preaging preagitate preagitated preagitating preagitation preagonal preagony preagree preagreed preagreeing preagreement preagricultural preagriculture preakness prealarm prealcohol prealcoholic prealgebra prealgebraic prealkalic preallable preallably preallegation preallege prealleged prealleging prealliance preallied preallies preallocate preallocated preallocates preallocating preallot preallotment preallots preallotted preallotting preallow preallowable preallowably preallowance preallude prealluded prealluding preallusion preally preallying prealphabet prealphabetical prealphabetically prealtar prealter prealteration prealtered prealtering prealters prealveolar preamalgamation preambassadorial preambition preambitious preambitiously preamble preambled preambles preambling preambular preambulary preambulate preambulated preambulates preambulating preambulation preambulatory preamp preamplifier preamplifiers preamps preanaesthetic preanaesthetics preanal preanaphoral preanesthetic preanesthetics preanimism preannex preannounce preannounced preannouncement preannouncements preannouncer preannounces preannouncing preantepenult preantepenultimate preanterior preanticipate preanticipated preanticipating preantiquity preantiseptic preaortic preappearance preappearances preapperception preapplication preapplications preapplied preapplies preapply preapplying preappoint preappointed preappointing preappointment preappoints preapprehend preapprehension preapprise preapprised preapprising preapprize preapprized preapprizing preapprobation preapproval preapprove preapproved preapproves preapproving preaptitude prearm prearmed prearming prearms prearraignment prearrange prearranged prearrangement prearrangements prearranges prearranging prearrest prearrestment prearticulate preartistic preascertain preascertained preascertaining preascertainment preascertains preascetic preascitic prease preased preaseptic preases preasing preasse preassed preassemble preassembled preassembles preassembling preassembly preassert preasses preassign preassigned preassigning preassigns preassing preassume preassumed preassuming preassumption preassurance preassurances preassure preassured preassuring preataxic preatomic preattachment preattune preattuned preattuning preaudience preaudiences preaudit preauditory preaudits preauricular preauthorise preauthorize preauthorized preauthorizes preauthorizing preaver preaverred preaverring preavers preavowal preaxiad preaxial preaxially prebachelor prebacillary prebade prebake prebaked prebakes prebaking prebalance prebalanced prebalancing preballot preballoted preballoting prebankruptcy prebaptise prebaptismal prebaptize prebarbaric prebarbarically prebarbarous prebarbarously prebarbarousness prebargain prebasal prebasilar prebattle prebble prebeleve prebelief prebelieve prebelieved prebeliever prebelieving prebellum prebeloved prebend prebendal prebendaries prebendary prebendaryship prebendate prebends prebenediction prebeneficiaries prebeneficiary prebenefit prebenefited prebenefiting prebeset prebesetting prebestow prebestowal prebetray prebetrayal prebetrothal prebiblical prebid prebidden prebidding prebids prebill prebilled prebilling prebills prebind prebinding prebinds prebiologic prebiological prebiotic prebirth prebirths prebless preblessed preblesses preblessing preblockade preblockaded preblockading preblooming preboard preboarded preboarding preboards preboast preboding preboil preboiled preboiling preboils prebook prebooked prebooking prebooks preboom preborn preborrowing prebought prebound preboyhood prebrachial prebrachium prebranchial prebreakfast prebreathe prebreathed prebreathing prebridal prebroadcasting prebromidic prebronchial prebronze prebrute prebuccal prebudget prebudgetary prebuild prebuilding prebuilds prebuilt prebullying preburlesque preburn prebuy prebuying prebuys prec precalc precalcs precalculable precalculate precalculated precalculates precalculating precalculation precalculations precalculi precalculus precalculuses precambrian precampaign precancel precancelation precanceled precanceling precancellation precancellations precancelled precancelling precancels precancerous precandidacy precandidature precanning precanonical precant precantation precanvass precapillary precapitalist precapitalistic precapitalists precaptivity precapture precaptured precapturing precarcinomatous precardiac precaria precarious precariously precariousness precariousnesses precarium precarnival precartilage precartilaginous precary precast precasting precasts precation precative precatively precatory precaudal precausation precaution precautional precautionary precautioned precautioning precautions precautious precautiously precautiousness precava precavae precaval precchose precchosen precedable precedaneous precede preceded precedence precedences precedencies precedency precedent precedentable precedentary precedented precedentedly precedential precedentless precedently precedents preceder precedes preceding precednce preceeding preceese precel precelebrant precelebrate precelebrated precelebrating precelebration precelebrations precensor precensored precensoring precensors precensure precensured precensuring precensus precent precented precentennial precenting precentless precentor precentorial precentors precentorship precentorships precentory precentral precentress precentresses precentrix precentrixes precentrum precents precepit precepits precept preceptial preception preceptist preceptive preceptively preceptor preceptoral preceptorate preceptorial preceptorially preceptorials preceptories preceptors preceptorship preceptorships preceptory preceptress preceptresses precepts preceptual preceptually preceramic precerebellar precerebral precerebroid preceremonial preceremonies preceremony precertification precertifications precertified precertifies precertify precertifying preces precess precessed precesses precessing precession precessional precessions prechallenge prechallenged prechallenging prechampioned prechampionship precharge precharged precharging prechart precharted precheck prechecked prechecking prechecks prechemical precherish prechildhood prechill prechilled prechilling prechills prechloric prechlorination prechloroform prechoice prechoose prechooses prechoosing prechordal prechoroid prechose prechosen prechristian preciation precide precieuse precieuses precieux precinct precinction precinctive precincts preciosities preciosity precious preciouses preciously preciousness preciousnesses precipe precipes precipice precipiced precipices precipitability precipitable precipitance precipitances precipitancies precipitancy precipitant precipitantly precipitantness precipitantnesses precipitants precipitate precipitated precipitatedly precipitately precipitateness precipitatenesses precipitates precipitating precipitation precipitations precipitative precipitator precipitators precipitatousness precipitin precipitinogen precipitinogenic precipitinogens precipitins precipitous precipitously precipitousness precipitousnesses precirculate precirculated precirculating precirculation precis precise precised precisely preciseness precisenesses preciser precises precisest precisian precisianism precisianisms precisianist precisianistic precisianists precisians precising precision precisional precisioner precisionise precisionism precisionisms precisionist precisionistic precisionists precisionize precisions precisive preciso precitation precite precited preciting precivilisation precivilization preclaim preclaimant preclaimer preclare preclassic preclassical preclassically preclassification preclassified preclassify preclassifying preclean precleaned precleaner precleaning precleans preclear preclearance preclearances precleared preclearing preclears preclerical preclimax preclinical preclinically preclival precloacal preclose preclosed preclosing preclosure preclothe preclothed preclothing precludable preclude precluded precludes precluding preclusion preclusions preclusive preclusively precoagulation precoccygeal precoce precocial precocious precociously precociousness precociousnesses precocities precocity precode precoded precodes precoding precogitate precogitated precogitating precogitation precognisant precognise precognised precognises precognising precognition precognitions precognitive precognizable precognizant precognize precognized precognizes precognizing precognosce precognosced precognosces precognoscing precoil precoiler precoincidence precoincident precoincidently precoital precollapsable precollapse precollapsed precollapsibility precollapsible precollapsing precollect precollectable precollection precollector precollege precolleges precollegiate precollude precolluded precolluding precollusion precollusive precolonial precolor precolorable precoloration precoloring precolour precolourable precolouration precolouring precombat precombatant precombated precombating precombination precombine precombined precombining precombustion precombustions precommand precommend precomment precommercial precommissural precommissure precommit precommitment precommitted precommitting precommune precommuned precommunicate precommunicated precommunicating precommunication precommuning precommunion precompare precompared precomparing precomparison precompass precompel precompelled precompelling precompensate precompensated precompensating precompensation precompetitive precompilation precompile precompiled precompiler precompiling precompleteness precompletion precompliance precompliant precomplicate precomplicated precomplicating precomplication precompose precomposed precomposes precomposing precomposition precompound precompounding precompoundly precomprehend precomprehension precomprehensive precomprehensively precomprehensiveness precompress precompression precompulsion precompute precomputed precomputer precomputers precomputes precomputing precomradeship preconceal preconcealed preconcealing preconcealment preconceals preconcede preconceded preconceding preconceit preconceits preconceivable preconceive preconceived preconceives preconceiving preconcentrate preconcentrated preconcentratedly preconcentrating preconcentration preconcept preconception preconceptional preconceptions preconceptual preconcern preconcernment preconcert preconcerted preconcertedly preconcertedness preconcertednesses preconcerting preconcertion preconcertive preconcerts preconcession preconcessions preconcessive preconclude preconcluded preconcluding preconclusion preconcur preconcurred preconcurrence preconcurrent preconcurrently preconcurring precondemn precondemnation precondemned precondemning precondemns precondensation precondense precondensed precondensing precondition preconditioned preconditioning preconditions preconduct preconduction preconductor precondylar precondyloid preconfer preconference preconferred preconferring preconfess preconfession preconfide preconfided preconfiding preconfiguration preconfigure preconfigured preconfiguring preconfine preconfined preconfinedly preconfinement preconfinemnt preconfining preconfirm preconfirmation preconflict preconform preconformity preconfound preconfuse preconfused preconfusedly preconfusing preconfusion precongenial precongested precongestion precongestive precongratulate precongratulated precongratulating precongratulation precongressional preconisation preconisations preconise preconised preconiser preconises preconising preconizance preconization preconizations preconize preconized preconizer preconizes preconizing preconjecture preconjectured preconjecturing preconnection preconnective preconnubial preconquer preconquest preconquestal preconquestual preconscious preconsciouses preconsciously preconsciousness preconsciousnesses preconseccrated preconseccrating preconsecrate preconsecrated preconsecrating preconsecration preconsent preconsider preconsideration preconsiderations preconsidered preconsign preconsoidate preconsolation preconsole preconsolidate preconsolidated preconsolidating preconsolidation preconsonantal preconspiracies preconspiracy preconspirator preconspire preconspired preconspiring preconstituent preconstitute preconstituted preconstituting preconstruct preconstructed preconstructing preconstruction preconstructions preconstructs preconsult preconsultation preconsultations preconsultor preconsume preconsumed preconsumer preconsumes preconsuming preconsumption precontact precontain precontained precontemn precontemplate precontemplated precontemplating precontemplation precontemporaneity precontemporaneous precontemporaneously precontemporary precontend precontent precontention precontently precontentment precontest precontinental precontract precontracted precontracting precontractive precontracts precontractual precontribute precontributed precontributing precontribution precontributive precontrivance precontrive precontrived precontrives precontriving precontrol precontrolled precontrolling precontroversial precontroversies precontroversy preconvention preconventions preconversation preconversational preconversion preconvert preconvey preconveyal preconveyance preconvict preconviction preconvictions preconvince preconvinced preconvincing precony precook precooked precooker precooking precooks precool precooled precooler precooling precools precopied precopulatory precopy precopying precoracoid precordia precordial precordiality precordially precordium precorneal precornu precoronation precorrect precorrection precorrectly precorrectness precorrespond precorrespondence precorrespondent precorridor precorrupt precorruption precorruptive precorruptly precorruptness precoruptness precosmic precosmical precosmically precostal precounsel precounseled precounseling precounsellor precoup precourse precover precovering precox precranial precranially precrash precrease precreased precreases precreasing precreate precreation precreative precredit precreditor precreed precrisis precritical precriticise precriticism precriticize precriticized precriticizing precrucial precrural precrystalline precule precultivate precultivated precultivating precultivation precultural preculturally preculture precuneal precuneate precuneus precure precured precures precuring precurrent precurrer precurrers precurricula precurricular precurriculum precurriculums precursal precurse precurses precursive precursor precursors precursory precurtain precut precuts precutting precyclone precyclonic precynical precyst precystic pred predable predacean predaceous predaceousness predaceousnesses predacious predaciousness predaciousnesses predacities predacity predamage predamaged predamaging predamn predamnation predark predarkness predata predate predated predates predating predation predations predatism predative predator predatorial predatorily predatoriness predatorinesses predators predatory predawn predawns preday predaylight predaytime predazzite predealer predealing predeath predeathly predeaths predebate predebater predebit predebtor predecay predecease predeceased predeceaser predeceases predeceasing predeceive predeceived predeceiver predeceiving predeception predecess predecession predecessor predecessors predecessorship predecide predecided predeciding predecision predecisive predecisively predeclaration predeclare predeclared predeclaring predeclination predecline predeclined predeclining predecree predecreed predecreeing predecrement prededicate prededicated prededicating prededication prededuct prededuction predefault predefeat predefect predefective predefence predefend predefense predefiance predeficiency predeficient predeficiently predefied predefine predefined predefines predefining predefinite predefinition predefinitions predefray predefrayal predefy predefying predegeneracy predegenerate predegree predeication predelay predelegate predelegated predelegating predelegation predeliberate predeliberated predeliberately predeliberating predeliberation predelineate predelineated predelineating predelineation predelinquency predelinquent predelinquently predeliver predeliveries predelivery predella predellas predelle predelude predeluded predeluding predelusion predemand predemocracy predemocratic predemonstrate predemonstrated predemonstrating predemonstration predemonstrative predenial predenied predental predentary predentate predeny predenying predepart predepartmental predeparture predepartures predependable predependence predependent predeplete predepleted predepleting predepletion predeposit predepository predepreciate predepreciated predepreciating predepreciation predepression predeprivation predeprive predeprived predepriving prederivation prederive prederived prederiving predescend predescent predescribe predescribed predescribing predescription predesert predeserter predesertion predeserve predeserved predeserving predesign predesignate predesignated predesignates predesignating predesignation predesignations predesignatory predesigned predesigning predesigns predesirous predesirously predesolate predesolation predespair predesperate predespicable predespise predespond predespondency predespondent predestinable predestinarian predestinarianism predestinarianisms predestinarians predestinate predestinated predestinately predestinates predestinating predestination predestinational predestinationism predestinationist predestinations predestinative predestinator predestinators predestine predestined predestines predestinies predestining predestiny predestitute predestitution predestroy predestruction predetach predetachment predetail predetain predetainer predetect predetection predetention predeterminability predeterminable predeterminant predeterminate predeterminately predetermination predeterminations predeterminative predetermine predetermined predeterminer predeterminers predetermines predetermining predeterminism predeterminisms predeterministic predetest predetestation predetrimental predevaluation predevaluations predevelop predeveloped predeveloping predevelopment predevelopments predevelops predevise predevised predevising predevote predevotion predevour prediabetes prediabetic prediabetics prediagnoses prediagnosis prediagnostic predial predialist prediality predials prediastolic prediatory predicabilities predicability predicable predicableness predicablenesses predicables predicably predicament predicamental predicamentally predicaments predicant predicants predicate predicated predicates predicating predication predicational predications predicative predicatively predicator predicatory predicrotic predict predictabilities predictability predictable predictableness predictablenesses predictably predictate predictated predictating predictation predicted predicter predicters predicting prediction predictional predictions predictive predictively predictiveness predictivenesses predictor predictors predictory predicts predied predies prediet predietary predifferent predifficulty predigest predigested predigesting predigestion predigestions predigests predigital predikant predikants predilect predilected predilection predilections prediligent prediligently prediluvial prediluvian prediminish prediminishment prediminution predine predined predining predinner prediphtheritic prediploma prediplomacy prediplomatic predirect predirection predirector predisability predisable predisadvantage predisadvantageous predisadvantageously predisagree predisagreeable predisagreed predisagreeing predisagreement predisappointment predisaster predisastrous predisastrously prediscern prediscernment predischarge predischarged predischarges predischarging prediscipline predisciplined predisciplining predisclose predisclosed predisclosing predisclosure prediscontent prediscontented prediscontentment prediscontinuance prediscontinuation prediscontinue prediscount prediscountable prediscourage prediscouraged prediscouragement prediscouraging prediscourse prediscover prediscoverer prediscoveries prediscovery prediscreet prediscretion prediscretionary prediscriminate prediscriminated prediscriminating prediscrimination prediscriminator prediscuss prediscussion predisgrace predisguise predisguised predisguising predisgust predislike predisliked predisliking predismiss predismissal predismissory predisorder predisordered predisorderly predispatch predispatcher predisperse predispersed predispersing predispersion predisplace predisplaced predisplacement predisplacing predisplay predisponency predisponent predisposable predisposal predisposals predispose predisposed predisposedly predisposedness predisposes predisposing predisposition predispositional predispositions predisputant predisputation predispute predisputed predisputing predisregard predisrupt predisruption predissatisfaction predissolution predissolve predissolved predissolving predissuade predissuaded predissuading predistinct predistinction predistinguish predistortion predistress predistribute predistributed predistributing predistribution predistributor predistrict predistrust predistrustful predisturb predisturbance predive prediversion predivert predivide predivided predividend predivider predividing predivinable predivinity predivision predivorce predivorcement prednisolone prednisolones prednisone prednisones predoctoral predoctorate predocumentary predomestic predomestically predominance predominances predominancies predominancy predominant predominantly predominate predominated predominately predominates predominating predominatingly predomination predominations predominator predominators predonate predonated predonating predonation predonor predoom predoomed predooming predooms predormition predorsal predoubt predoubter predoubtful predoubtfully predraft predrainage predramatic predraw predrawer predrawing predrawn predread predreadnought predrew predried predries predrill predrilled predriller predrilling predrills predrive predriven predriver predriving predrove predry predrying preduplicate preduplicated preduplicating preduplication predusk predusks predwell predy predying predynamite predynastic pree preearthly preearthquake preeclampsia preeclampsias preeclamptic preeconomic preeconomical preeconomically preed preedit preedited preediting preedition preeditor preeditorial preeditorially preedits preeducate preeducated preeducating preeducation preeducational preeducationally preeffect preeffective preeffectively preeffectual preeffectually preeffort preeing preelect preelected preelecting preelection preelections preelective preelectric preelectrical preelectrically preelectronic preelects preelemental preelementary preeligibility preeligible preeligibleness preeligibly preeliminate preeliminated preeliminating preelimination preeliminator preemancipation preembargo preembarrass preembarrassment preembodied preembodiment preembody preembodying preemergence preemergencies preemergency preemergent preemie preemies preeminence preeminences preeminent preeminently preemotion preemotional preemotionally preemperor preemphasis preemploy preemployee preemployer preemployment preemployments preempt preempted preempting preemption preemptions preemptive preemptively preemptor preemptors preemptory preempts preen preenable preenabled preenabling preenact preenacted preenacting preenaction preenacts preenclose preenclosed preenclosing preenclosure preencounter preencourage preencouragement preendeavor preendorse preendorsed preendorsement preendorser preendorsing preened preener preeners preenforce preenforced preenforcement preenforcing preengage preengaged preengagement preengages preengaging preengineered preengineering preening preenjoy preenjoyable preenjoyment preenlarge preenlarged preenlargement preenlarging preenlighten preenlightener preenlightenment preenlist preenlistment preenlistments preenroll preenrollment preenrollments preens preentail preentailment preenter preentertain preentertainer preentertainment preenthusiasm preentitle preentitled preentitling preentrance preentry preenumerate preenumerated preenumerating preenumeration preenvelop preenvelopment preenvironmental preepidemic preepochal preequalization preequip preequipment preequipped preequipping preequity preerect preerected preerecting preerection preerects preerupt preeruption preeruptive preeruptively prees preescape preescaped preescaping preesophageal preessay preessential preessentially preestablish preestablished preestablishes preestablishing preesteem preestimate preestimated preestimates preestimating preestimation preestival preeternal preeternity preethical preevade preevaded preevading preevaporate preevaporated preevaporating preevaporation preevaporator preevasion preeve preeved preeves preevidence preevident preevidently preeving preevolutional preevolutionary preevolutionist preexact preexaction preexamination preexaminations preexamine preexamined preexaminer preexamines preexamining preexcept preexception preexceptional preexceptionally preexchange preexchanged preexchanging preexcitation preexcite preexcited preexciting preexclude preexcluded preexcluding preexclusion preexclusive preexclusively preexcursion preexcuse preexcused preexcusing preexecute preexecuted preexecuting preexecution preexecutor preexempt preexemption preexhaust preexhaustion preexhibit preexhibition preexhibitor preexilian preexilic preexist preexisted preexistence preexistences preexistent preexisting preexists preexpand preexpansion preexpect preexpectant preexpectation preexpedition preexpeditionary preexpend preexpenditure preexpense preexperience preexperienced preexperiencing preexperiment preexperimental preexperiments preexpiration preexplain preexplanation preexplanatory preexplode preexploded preexploding preexplosion preexpose preexposed preexposes preexposing preexposition preexposure preexposures preexpound preexpounder preexpress preexpression preexpressive preextend preextensive preextensively preextent preextinction preextinguish preextinguishment preextract preextraction preeze pref prefab prefabbed prefabbing prefabricate prefabricated prefabricates prefabricating prefabrication prefabrications prefabricator prefabricators prefabs preface prefaceable prefaced prefacer prefacers prefaces prefacial prefacing prefacist prefactor prefactory prefade prefaded prefades prefading prefamiliar prefamiliarity prefamiliarly prefamous prefamously prefard prefascist prefascists prefashion prefashioned prefatial prefator prefatorial prefatorially prefatorily prefatory prefavor prefavorable prefavorably prefavorite prefavour prefavourable prefavourably prefavourite prefearful prefearfully prefeast prefect prefectly prefectoral prefectorial prefectorially prefectorian prefects prefectship prefectships prefectual prefectural prefecture prefectures prefecundation prefecundatory prefederal prefelic prefer preferabilities preferability preferable preferableness preferablenesses preferably prefered preferee preference preferences preferent preferential preferentialism preferentialisms preferentialist preferentialists preferentially preferment prefermentation preferments preferrable preferral preferred preferredly preferredness preferrer preferrers preferring preferrous prefers prefertile prefertilisation prefertilise prefertility prefertilization prefertilize prefertilized prefertilizing prefervid prefestival prefet prefeudal prefeudalic prefeudalism preffroze preffrozen prefiction prefictional prefight prefigurate prefigurated prefigurates prefigurating prefiguration prefigurations prefigurative prefiguratively prefigurativeness prefigurativenesses prefigure prefigured prefigurement prefigurements prefigurer prefigures prefiguring prefile prefiled prefiles prefiling prefill prefilled prefiller prefills prefilter prefilters prefinal prefinance prefinanced prefinances prefinancial prefinancing prefine prefinish prefire prefired prefires prefiring prefix prefixable prefixal prefixally prefixation prefixations prefixed prefixedly prefixes prefixing prefixion prefixions prefixture prefixtures preflagellate preflagellated preflame preflatter preflattery preflavor preflavoring preflavour preflavouring preflection preflexion preflight preflighted preflighting preflights preflood prefloration preflorations preflowering prefocus prefocused prefocuses prefocusing prefocussed prefocusses prefocussing prefoliation prefoliations prefool preforbidden preforceps preforgave preforgive preforgiven preforgiveness preforgiving preforgotten preform preformant preformat preformation preformationary preformationism preformationisms preformationist preformationists preformations preformative preformats preformatted preformatting preformed preforming preformism preformist preformistic preforms preformulate preformulated preformulates preformulating preformulation prefortunate prefortunately prefortune prefoundation prefounder prefract prefragrance prefragrant prefrank prefranked prefranking prefrankness prefranks prefraternal prefraternally prefraud prefreeze prefreezes prefreezing prefreshman prefreshmen prefriendly prefriendship prefright prefrighten prefrontal prefrontals prefroze prefrozen prefulfill prefulfillment prefulgence prefulgency prefulgent prefunction prefunctional prefund prefunded prefunding prefunds prefuneral prefungoidal prefurlough prefurnish pregain pregainer pregalvanise pregalvanize pregalvanized pregalvanizing pregame pregames preganglionic pregastrular pregather pregathering pregeminum pregenerate pregenerated pregenerating pregeneration pregenerosity pregenerous pregenerously pregenial pregeniculatum pregeniculum pregenital pregeological preggers preghiera pregirlhood preglacial pregladden pregladness preglenoid preglenoidal preglobulin pregnabilities pregnability pregnable pregnance pregnances pregnancies pregnancy pregnant pregnantly pregnantness pregnenolone pregnenolones pregolden pregolfing pregracile pregracious pregrade pregraded pregrading pregraduation pregranite pregranitic pregratification pregratified pregratify pregratifying pregreet pregreeting pregrievance pregrowth preguarantee preguaranteed preguaranteeing preguarantor preguard preguess preguidance preguide preguided preguides preguiding preguilt preguiltiness preguilty pregust pregustant pregustation pregustations pregustator pregustic prehalluces prehallux prehalluxes prehalter prehalteres prehandicap prehandicapped prehandicapping prehandle prehandled prehandling prehaps preharden prehardened prehardener prehardening prehardens preharmonious preharmoniously preharmoniousness preharmony preharsh preharshness preharvest preharvests prehatred prehaunt prehaunted prehaustorium prehazard prehazardous preheadache preheal prehearing prehearings preheat preheated preheater preheaters preheating preheats preheminence preheminences prehemiplegic prehend prehended prehending prehends prehensibility prehensible prehensile prehensilities prehensility prehension prehensions prehensive prehensiveness prehensor prehensorial prehensors prehensory prehepatic prehepaticus preheroic prehesitancy prehesitate prehesitated prehesitating prehesitation prehexameral prehiring prehistorian prehistorians prehistoric prehistorical prehistorically prehistorics prehistories prehistory prehnite prehnites prehnitic preholder preholding preholiday prehominid prehominids prehorizon prehorror prehostile prehostility prehuman prehumans prehumiliate prehumiliation prehumor prehumour prehunger prehydration prehypophysis preidea preidentification preidentified preidentify preidentifying preif preife preifes preifs preignition preignitions preilium preilluminate preillumination preillustrate preillustrated preillustrating preillustration preimage preimaginary preimagination preimagine preimagined preimagining preimbibe preimbibed preimbibing preimbue preimbued preimbuing preimitate preimitated preimitating preimitation preimitative preimmigration preimmunization preimmunizations preimmunize preimmunized preimmunizes preimmunizing preimpair preimpairment preimpart preimperial preimplantation preimport preimportance preimportant preimportantly preimportation preimposal preimpose preimposed preimposing preimposition preimpress preimpression preimpressionism preimpressionist preimpressive preimprove preimproved preimprovement preimproving preinaugural preinaugurate preinaugurated preinaugurating preincarnate preincentive preincination preinclination preincline preinclined preinclining preinclude preincluded preincluding preinclusion preincorporate preincorporated preincorporating preincorporation preincorporations preincrease preincreased preincreasing preindebted preindebtedly preindebtedness preindemnification preindemnified preindemnify preindemnifying preindemnity preindependence preindependent preindependently preindesignate preindicant preindicate preindicated preindicating preindication preindicative preindispose preindisposed preindisposing preindisposition preinduce preinduced preinducement preinducing preinduction preinductions preinductive preindulge preindulged preindulgence preindulgent preindulging preindustrial preindustry preinfect preinfection preinfer preinference preinferred preinferredpreinferring preinferring preinflection preinflectional preinflict preinfliction preinfluence preinform preinformation preinhabit preinhabitant preinhabitation preinhere preinhered preinhering preinherit preinheritance preinitial preinitialise preinitialised preinitialises preinitialising preinitialize preinitialized preinitializes preinitializing preinitiate preinitiated preinitiating preinitiation preinjure preinjurious preinjury preinoculate preinoculated preinoculates preinoculating preinoculation preinquisition preinscribe preinscribed preinscribing preinscription preinsert preinserted preinserting preinsertion preinserts preinsinuate preinsinuated preinsinuating preinsinuatingly preinsinuation preinsinuative preinspect preinspection preinspector preinspire preinspired preinspiring preinstall preinstallation preinstill preinstillation preinstruct preinstructed preinstructing preinstruction preinstructional preinstructive preinstructs preinsula preinsular preinsulate preinsulated preinsulating preinsulation preinsult preinsurance preinsure preinsured preinsuring preintellectual preintellectually preintelligence preintelligent preintelligently preintend preintention preintercede preinterceded preinterceding preintercession preinterchange preintercourse preinterest preinterfere preinterference preinterpret preinterpretation preinterpretative preinterrupt preinterview preinterviewed preinterviewing preinterviews preintimate preintimated preintimately preintimating preintimation preintone preinvasion preinvasive preinvent preinvention preinventive preinventories preinventory preinvest preinvestigate preinvestigated preinvestigating preinvestigation preinvestigator preinvestment preinvitation preinvite preinvited preinviting preinvocation preinvolve preinvolved preinvolvement preinvolving preiotization preiotize preirrigation preirrigational preisolate preissuance preissue preissued preissuing prejacent prejink prejournalistic prejudge prejudged prejudgement prejudgements prejudger prejudgers prejudges prejudging prejudgment prejudgments prejudicant prejudicate prejudicated prejudicates prejudicating prejudication prejudications prejudicative prejudicator prejudice prejudiced prejudicedly prejudiceless prejudices prejudiciable prejudicial prejudicially prejudicialness prejudicialnesses prejudicing prejudicious prejudiciously prejudize prejudizes prejunior prejurisdiction prejustification prejustified prejustify prejustifying prejuvenile prekindergarten prekindergartens prekindle prekindled prekindling preknew preknit preknow preknowing preknowledge preknown prela prelabel prelabial prelabor prelabour prelabrum prelachrymal prelacies prelacrimal prelacteal prelacy prelanguage prelapsarian prelaryngoscopic prelate prelatehood prelateity prelates prelateship prelateships prelatess prelatesses prelatial prelatic prelatical prelatically prelaticalness prelaties prelation prelations prelatise prelatised prelatises prelatish prelatising prelatism prelatisms prelatist prelatists prelatize prelatized prelatizes prelatizing prelatry prelature prelatures prelaty prelaunch prelaunching prelaw prelawful prelawfully prelawfulness prelaws prelease preleased preleasing prelect prelected prelecting prelection prelections prelector prelectors prelectorship prelectress prelects prelecture prelectured prelecturing prelegacy prelegal prelegate prelegatee prelegend prelegendary prelegislative prelexical preliability preliable prelibation prelibations preliberal preliberality preliberally preliberate preliberated preliberating preliberation prelicense prelicensed prelicensing prelife prelim preliminaries preliminarily preliminary prelimit prelimitate prelimitated prelimitating prelimitation prelimited prelimiting prelimits prelims prelingual prelingually prelinguistic prelinpinpin preliquidate preliquidated preliquidating preliquidation preliteral preliterally preliteralness preliterary preliterate preliterates preliterature prelithic prelitigation prelives preloaded preloan prelocalisation prelocalization prelocate prelocated prelocating prelogic prelogical preloral preloreal preloss prelude preluded preluder preluders preludes preludi preludial preluding preludio preludious preludiously preludise preludium preludize prelumbar prelunch preluncheon prelusion prelusions prelusive prelusively prelusorily prelusory preluxurious preluxuriously preluxuriousness prem premachine premade premadness premaintain premaintenance premake premaker premaking premalignant preman premandibular premandibulars premanhood premaniacal premanifest premanifestation premankind premanufacture premanufactured premanufacturer premanufactures premanufacturing premarital premaritally premarket premarketing premarketings premarriage premarriages premarried premarry premarrying premastery prematch premate premated prematerial prematernity premating prematrimonial prematrimonially prematuration premature prematurely prematureness prematurenesses prematures prematurities prematurity premaxilla premaxillae premaxillaries premaxillary premeal premeasure premeasured premeasurement premeasures premeasuring premechanical premed premedia premedial premedian premedic premedical premedicate premedicated premedicates premedicating premedication premedications premedics premedieval premedievalism premeditate premeditated premeditatedly premeditatedness premeditates premeditating premeditatingly premeditation premeditations premeditative premeditator premeditators premeds premeet premegalithic premeiotic prememoda prememoranda prememorandum prememorandums premen premenace premenaced premenacing premenopausal premenstrual premenstrually premention premerger premeridian premerit premetallic premethodical premia premial premiant premiate premiated premiating premidnight premidsummer premie premier premieral premiere premiered premieres premieress premiering premierjus premiers premiership premierships premies premigration premilitary premillenarian premillenarianism premillenarianisms premillenarians premillenial premillennial premillennialise premillennialised premillennialising premillennialism premillennialisms premillennialist premillennialists premillennialize premillennialized premillennializing premillennially premillennian preminister preministries preministry premio premious premisal premise premised premises premising premisory premisrepresent premisrepresentation premiss premissable premisses premit premium premiums premix premixed premixer premixes premixing premixt premixture premodel premodeled premodeling premodern premodification premodifications premodified premodifies premodify premodifying premoisten premoistened premoistening premoistens premolar premolars premold premolded premolder premolding premolds premolt premonarchal premonarchial premonarchical premonetary premonetory premonish premonished premonishes premonishing premonishment premonishments premonition premonitions premonitive premonitor premonitorily premonitors premonitory premonopolies premonopolise premonopolize premonopolized premonopolizing premonopoly premonstrant premonstratensian premonstratensis premonstration premonumental premoral premorality premorally premorbid premorbidly premorbidness premorning premorse premortal premortally premortification premortified premortify premortifying premortuary premorula premosaic premotion premotions premourn premove premoved premovement premovements premover premoves premoving premuddle premuddled premuddling premultiplication premultiplier premultiply premultiplying premundane premune premunicipal premunire premunition premunitions premunitory premusical premusically premuster premutative premutinied premutinies premutiny premutinying premy premycotic premyelocyte premythical prename prenames prenanthes prenarcotic prenares prenarial prenaris prenasal prenasals prenatal prenatalist prenatally prenational prenative prenatural prenaval prender prendre prenebular prenecessitate prenecessitated prenecessitating preneglect preneglectful prenegligence prenegligent prenegotiate prenegotiated prenegotiates prenegotiating prenegotiation prenegotiations preneolithic prenephritic preneural preneuralgic prenight prenoble prenodal prenomen prenomens prenomina prenominal prenominate prenominated prenominates prenominating prenomination prenominations prenominical prenoon prenotation prenote prenoted prenotice prenotification prenotifications prenotified prenotifies prenotify prenotifying prenoting prenotion prenotions prent prented prentice prenticed prentices prenticeship prenticeships prenticing prenting prents prenubile prenumber prenumbered prenumbering prenumbers prenuncial prenunciate prenuptial prenurseries prenursery prenzie preobedience preobedient preobediently preobject preobjection preobjective preobligate preobligated preobligating preobligation preoblige preobliged preobliging preoblongata preobservance preobservation preobservational preobserve preobserved preobserving preobstruct preobstruction preobtain preobtainable preobtrude preobtruded preobtruding preobtrudingpreobtrusion preobtrusion preobtrusive preobviate preobviated preobviating preobvious preobviously preobviousness preoccasioned preoccipital preocclusion preoccultation preoccupancies preoccupancy preoccupant preoccupants preoccupate preoccupated preoccupates preoccupating preoccupation preoccupations preoccupative preoccupied preoccupiedly preoccupiedness preoccupier preoccupies preoccupy preoccupying preoccur preoccurred preoccurrence preoccurring preoceanic preocular preodorous preoesophageal preoffence preoffend preoffense preoffensive preoffensively preoffensiveness preoffer preoffering preofficial preofficially preominate preomission preomit preomitted preomitting preop preopen preopening preoperate preoperated preoperating preoperation preoperational preoperative preoperatively preoperator preopercle preopercular preoperculum preopinion preopinionated preoppose preopposed preopposing preopposition preoppress preoppression preoppressor preops preoptic preoptimistic preoption preoptions preoral preorally preorbital preordain preordained preordaining preordainment preordainments preordains preorder preordered preordering preorders preordinance preordinances preordination preordinations preorganic preorganically preorganisation preorganise preorganization preorganize preorganized preorganizing preoriginal preoriginally preornamental preotic preoutfit preoutfitted preoutfitting preoutline preoutlined preoutlining preoverthrew preoverthrow preoverthrowing preoverthrown preoviposition preovulatory preowned prep prepack prepackage prepackaged prepackages prepackaging prepacked prepacking prepacks prepaging prepaid prepainful prepalaeolithic prepalatal prepalatine prepaleolithic prepanic preparable preparateur preparation preparationist preparations preparative preparatively preparatives preparator preparatorily preparators preparatory prepardon prepare prepared preparedly preparedness preparednesses preparement preparental preparer preparers prepares preparietal preparing preparingly preparliamentary preparoccipital preparoxysmal prepartake prepartaken prepartaking preparticipation prepartisan prepartition prepartnership prepartook prepaste prepasted prepastes prepasting prepatellar prepatent prepatrician prepatriotic prepave prepaved prepavement prepaves prepaving prepay prepayable prepaying prepayment prepayments prepays prepd prepectoral prepeduncle prepend prepended prepending prepenetrate prepenetrated prepenetrating prepenetration prepenial prepense prepensed prepensely prepenses prepensing prepensive prepeople preperceive preperception preperceptive preperfect preperformance preperformances preperitoneal prepersuade prepersuaded prepersuading prepersuasion prepersuasive preperusal preperuse preperused preperusing prepetition prepg prephragma prephthisical prepigmental prepill prepineal prepink prepious prepiously prepituitary preplace preplaced preplacement preplacental preplaces preplacing preplan preplanned preplanning preplans preplant preplanting prepledge prepledged prepledging preplot preplotted preplotting prepn prepoetic prepoetical prepoison prepolice prepolish prepolitic prepolitical prepolitically prepollence prepollences prepollencies prepollency prepollent prepollex prepollexes prepollices preponder preponderance preponderances preponderancies preponderancy preponderant preponderantly preponderate preponderated preponderately preponderates preponderating preponderatingly preponderation preponderations preponderous preponderously prepone preponed prepones preponing prepontile prepontine preportion preportioned preportioning preportions preportray preportrayal prepose preposed preposes preposing preposition prepositional prepositionally prepositioned prepositioning prepositions prepositive prepositively prepositives prepositor prepositorial prepositors prepositure prepossess prepossessed prepossesses prepossessing prepossessingly prepossessingness prepossessingnesses prepossession prepossessionary prepossessions prepossessor preposter preposterous preposterously preposterousness preposterousnesses prepostor prepostors prepostorship prepotence prepotences prepotencies prepotency prepotent prepotential prepotently prepped preppie preppier preppies preppiest preppily preppiness preppinesses prepping preppy prepractical prepractice prepracticed prepracticing prepractise prepractised prepractising preprandial prepreference prepreg prepregs prepreparation preprepared prepresidential preprice prepriced preprices prepricing preprimary preprimer preprimitive preprint preprinted preprinting preprints preprocess preprocessed preprocesses preprocessing preprocessor preprocessors preproduction preproductions preprofess preprofessional preprogram preprogramed preprograming preprogramme preprogrammed preprogramming preprograms preprohibition prepromise prepromised prepromising prepromote prepromoted prepromoting prepromotion prepronounce prepronounced prepronouncement prepronouncing preprophetic preprostatic preprove preproved preprovide preprovided preproviding preprovision preprovocation preprovoke preprovoked preprovoking preprudent preprudently preps prepsychedelic prepsychological prepsychology prepsychotic prepuberal prepuberally prepubertal prepubertally prepuberties prepuberty prepubes prepubescence prepubescences prepubescent prepubescents prepubic prepubis prepublication prepublications prepublish prepuce prepuces prepueblo prepunch prepunched prepunches prepunching prepunctual prepunish prepunishment prepupa prepupae prepupal prepupas prepurchase prepurchased prepurchaser prepurchases prepurchasing prepurpose prepurposed prepurposing prepurposive preputial preputium prepyloric prepyramidal prequalification prequalifications prequalified prequalifies prequalify prequalifying prequarantine prequarantined prequarantining prequel prequels prequestion prequotation prequote prequoted prequoting prerace preracing preradio prerailroad prerailroadite prerailway preramus prerational prereadiness preready prerealisation prerealise prerealization prerealize prerealized prerealizing prerebellion prereceipt prereceive prereceived prereceiver prereceiving prerecession prerecital prerecite prerecited prereciting prereckon prereckoning prerecognise prerecognition prerecognize prerecognized prerecognizing prerecommend prerecommendation prereconcile prereconciled prereconcilement prereconciliation prereconciling prerecord prerecorded prerecording prerecords prerectal preredeem preredemption prereduction prerefer prereference prereferred prereferring prerefine prerefined prerefinement prerefining prereform prereformation prereformatory prerefusal prerefuse prerefused prerefusing preregal preregister preregistered preregistering preregisters preregistration preregistrations preregnant preregulate preregulated preregulating preregulation prerehearsal prereject prerejection prerejoice prerejoiced prerejoicing prerelate prerelated prerelating prerelation prerelationship prerelease prereleases prereligious prereluctance prereluctation preremit preremittance preremitted preremitting preremorse preremote preremoval preremove preremoved preremoving preremunerate preremunerated preremunerating preremuneration prerenal prerent prerental prereport prerepresent prerepresentation prereproductive prereption prerepublican prerequest prerequire prerequired prerequirement prerequires prerequiring prerequisite prerequisites prerequisition preresemblance preresemble preresembled preresembling preresolution preresolve preresolved preresolving preresort prerespectability prerespectable prerespiration prerespire preresponsibility preresponsible prerestoration prerestrain prerestraint prerestrict prerestriction preretirement preretirements prereturn prereveal prerevelation prerevenge prerevenged prerevenging prereversal prereverse prereversed prereversing prereview prerevise prerevised prerevising prerevision prerevisionist prerevisionists prerevival prerevolution prerevolutionary prerheumatic prerich prerighteous prerighteously prerighteousness prerinse prerinsed prerinses prerinsing preriot prerock prerogatival prerogative prerogatived prerogatively prerogatives prerogativity prerolandic preromantic preromanticism prerosion prerosions preroute prerouted preroutine prerouting preroyal preroyally preroyalty prerupt preruption pres presa presacral presacrifice presacrificed presacrificial presacrificing presage presaged presageful presagefully presagefulness presagement presagements presager presagers presages presagient presaging presagingly presaid presale presales presalvation presanctification presanctifications presanctified presanctifies presanctify presanctifying presanguine presanitary presartorial presatisfaction presatisfactory presatisfied presatisfy presatisfying presavage presavagery presaw presay presaying presbyacouses presbyacousia presbyacousis presbyacuses presbyacusia presbyacusis presbycouses presbycousis presbycuses presbycusis presbyope presbyopes presbyophrenia presbyophrenic presbyopia presbyopias presbyopic presbyopics presbyopies presbyopy presbyte presbyter presbyteral presbyterate presbyterated presbyterates presbytere presbyteress presbyteria presbyterial presbyterially presbyterials presbyterian presbyterianise presbyterianised presbyterianises presbyterianising presbyterianism presbyterianisms presbyterianize presbyterianized presbyterianizes presbyterianizing presbyterians presbyteries presbyterium presbyters presbytership presbyterships presbytery presbytes presbytia presbytic presbytism presbytisms prescan prescapula prescapular prescapularis preschedule prescheduled preschedules prescheduling prescholastic preschool preschooler preschoolers preschooling preschoolings preschools prescience presciences prescient prescientific presciently prescind prescinded prescindent prescinding prescinds prescious prescission prescissions prescore prescored prescores prescoring prescout prescreen prescreened prescreening prescreenings prescreens prescribable prescribe prescribed prescriber prescribers prescribes prescribing prescript prescriptibilities prescriptibility prescriptible prescription prescriptionist prescriptions prescriptive prescriptively prescriptiveness prescriptivenesses prescriptivism prescriptivisms prescriptivist prescriptivists prescriptorial prescripts prescrive prescuta prescutal prescutum prescutums prese preseal presearch preseason preseasonal preseasons presecular presecure presecured presecuring presedentary presee preseeing preseen preselect preselected preselecting preselection preselections preselector preselectors preselects presell preselling presells presemilunar preseminal preseminary presence presenced presenceless presences presenile presenility presensation presension presensions present presentabilities presentability presentable presentableness presentablenesses presentably presental presentation presentational presentationalism presentationes presentationism presentationisms presentationist presentationists presentations presentative presentatively presentativeness presentativenesses presented presentee presentees presentence presentenced presentences presentencing presentencings presenter presenters presential presentialities presentiality presentially presentialness presentiate presentient presentiment presentimental presentiments presenting presentism presentisms presentist presentive presentively presentiveness presentivenesses presently presentment presentments presentness presentnesses presentor presents preseparate preseparated preseparating preseparation preseparator preseptal preser preservabilities preservability preservable preserval preservation preservationism preservationisms preservationist preservationists preservations preservative preservatives preservatize preservatories preservatory preserve preserved preserver preserveress preservers preserves preservice preserving preses presession preset presets presettable presetting presettle presettled presettlement presettlements presettling presexual preshadow preshape preshaped preshapes preshaping preshare preshared presharing presharpen preshelter preship preshipment preshipped preshipping preships preshortage preshorten preshow preshowed preshowing preshown preshows preshrank preshrink preshrinkage preshrinked preshrinking preshrinks preshrunk preshrunken preside presided presidence presidencia presidencies presidency president presidente presidentes presidentess presidentesses presidential presidentially presidentiary presidents presidentship presidentships presider presiders presides presidia presidial presidially presidiary presiding presidio presidios presidium presidiums presidy presift presifted presifting presifts presign presignal presignaled presignificance presignificancy presignificant presignification presignifications presignificative presignificator presignified presignifies presignify presignifying presimian preslaughter preslavery presleep presley preslice presliced preslices preslicing presmooth presoak presoaked presoaking presoaks presocial presocialism presocialist presolar presold presolicit presolicitation presolution presolvated presolve presolved presolves presolving presong presophomore presort presorted presorting presorts presound prespecialise prespecialist prespecialize prespecialized prespecializing prespecific prespecifically prespecification prespecified prespecifies prespecify prespecifying prespective prespeculate prespeculated prespeculating prespeculation presphenoid presphenoidal presphygmic prespinal prespinous prespiracular presplendor presplendour presplenomegalic presplit prespoil prespontaneity prespontaneous prespontaneously prespread prespreading presprinkle presprinkled presprinkling prespur prespurred prespurring press pressable pressage pressboard pressboards pressdom pressed pressel presser pressers presses pressfat pressfats pressful pressfuls pressgang pressganged pressganging pressgangs pressible pressie pressies pressing pressingly pressingness pressingnesses pressings pression pressions pressiroster pressirostral pressive pressly pressman pressmanship pressmark pressmarks pressmaster pressmen pressor pressoreceptor pressors pressosensitive presspack pressroom pressrooms pressrun pressruns pressurage pressural pressure pressured pressureless pressureproof pressures pressuring pressurisation pressurisations pressurise pressurised pressuriser pressurisers pressurises pressurising pressurization pressurizations pressurize pressurized pressurizer pressurizers pressurizes pressurizing presswoman presswomen presswork pressworker pressworks prest prestabilism prestability prestable prestamp prestamped prestamping prestamps prestandard prestandardisation prestandardise prestandardization prestandardize prestandardized prestandardizing prestant prestate prestated prestating prestation prestations prestatistical presteam prested presteel prester presterilize presterilized presterilizes presterilizing presterna presternal presternum presternums presters prestezza prestidigital prestidigitate prestidigitation prestidigitations prestidigitator prestidigitatorial prestidigitators prestidigitatory prestige prestigeful prestiges prestigiate prestigiation prestigiator prestigiators prestigious prestigiously prestigiousness prestigiousnesses prestimulate prestimulated prestimulating prestimulation prestimuli prestimulus presting prestissimo prestissimos prestly presto prestock prestomial prestomium prestorage prestorages prestore prestored prestores prestoring prestos prestraighten prestrain prestrengthen prestress prestressed prestresses prestressing prestretch prestricken prestriction prestrictions prestrike prestructure prestructured prestructures prestructuring prestruggle prestruggled prestruggling prests prestubborn prestudied prestudious prestudiously prestudiousness prestudy prestudying presubdue presubdued presubduing presubiculum presubject presubjection presubmission presubmit presubmitted presubmitting presubordinate presubordinated presubordinating presubordination presubscribe presubscribed presubscriber presubscribing presubscription presubsist presubsistence presubsistent presubstantial presubstitute presubstituted presubstituting presubstitution presuccess presuccessful presuccessfully presuffer presuffering presufficiency presufficient presufficiently presuffrage presuggest presuggestion presuggestive presuitability presuitable presuitably presul presumable presumableness presumably presume presumed presumedly presumer presumers presumes presuming presumingly presummit presumption presumptions presumptious presumptiously presumptive presumptively presumptiveness presumptuous presumptuously presumptuousness presumptuousnesses presuperficial presuperficiality presuperficially presuperfluity presuperfluous presuperfluously presuperintendence presuperintendency presupervise presupervised presupervising presupervision presupervisor presupplemental presupplementary presupplicate presupplicated presupplicating presupplication presupplied presupply presupplying presupport presupposal presuppose presupposed presupposes presupposing presupposition presuppositional presuppositionless presuppositions presuppress presuppression presuppurative presupremacy presupreme presurgery presurgical presurmise presurmised presurmises presurmising presurprisal presurprise presurrender presurround presurvey presusceptibility presusceptible presuspect presuspend presuspension presuspicion presuspicious presuspiciously presuspiciousness presustain presutural preswallow presweeten presweetened presweetening presweetens presylvian presympathise presympathize presympathized presympathizing presympathy presymphonic presymphony presymphysial presymptom presymptomatic presynapsis presynaptic presynaptically presynsacral presystematic presystematically presystole presystolic pret preta pretabulate pretabulated pretabulating pretabulation pretan pretangible pretangibly pretannage pretanned pretanning pretape pretaped pretapes pretaping pretardily pretardiness pretardy pretariff pretarsi pretarsus pretarsusi pretaste pretasted pretaster pretastes pretasting pretaught pretax pretaxation preteach preteaching pretechnical pretechnically pretechnological preteen preteens pretelegraph pretelegraphic pretelephone pretelephonic pretelevision pretell pretelling pretells pretemperate pretemperately pretemporal pretempt pretemptation pretence pretenced pretenceful pretenceless pretences pretencive pretend pretendant pretendants pretended pretendedly pretendent pretendents pretender pretenders pretendership pretenderships pretending pretendingly pretendingness pretends pretense pretensed pretenseful pretenseless pretenses pretension pretensional pretensioned pretensioning pretensionless pretensions pretensive pretensively pretensiveness pretentative pretention pretentious pretentiously pretentiousness pretentiousnesses preter pretercanine preterchristian preterconventional preterdetermined preterdeterminedly preterdiplomatic preterdiplomatically preterequine preteressential pretergress pretergression preterhuman preterience preterient preterimperfect preterintentional preterist preterists preterit preterite preteriteness preteritenesses preterites preterition preteritions preteritive preteritness preterits preterlabent preterlegal preterlethal preterm preterminal pretermination preterminations pretermission pretermissions pretermit pretermits pretermitted pretermitter pretermitters pretermitting preterms preternative preternatuarally preternatural preternaturalism preternaturalisms preternaturalist preternaturality preternaturally preternaturalness preternaturalnesses preternormal preternotorious preternuptial preterperfect preterperfects preterpluperfect preterpolitical preterrational preterregular preterrestrial preterritorial preterroyal preterscriptural preterseasonable pretersensual pretervection pretest pretested pretestified pretestify pretestifying pretestimonies pretestimony pretesting pretests pretext pretexta pretextae pretexted pretexting pretexts pretextuous pretheater pretheological prethoracic prethoughtful prethoughtfully prethoughtfulness prethreaten prethrill prethrust prethyroid pretibial preticket preticketed preticketing pretickets pretil pretimeliness pretimely pretincture pretire pretired pretiring pretium pretoken pretold pretone pretonic pretor pretoria pretorial pretorian pretorians pretorium pretors pretorship pretorsional pretorture pretortured pretorturing pretournament pretournaments pretrace pretraced pretracheal pretracing pretraditional pretrain pretrained pretraining pretrains pretransact pretransaction pretranscribe pretranscribed pretranscribing pretranscription pretranslate pretranslated pretranslating pretranslation pretransmission pretransmit pretransmitted pretransmitting pretransport pretransportation pretravel pretreat pretreated pretreating pretreatment pretreatments pretreats pretreaty pretrematic pretrial pretrials pretribal pretried pretrim pretrimmed pretrimming pretrims pretrochal pretry pretrying prettied prettier pretties prettiest prettification prettifications prettified prettifier prettifiers prettifies prettify prettifying prettikin prettily prettiness prettinesses pretty prettyface prettying prettyish prettyism prettyisms pretubercular pretuberculous pretympanic pretype pretyped pretypes pretyphoid pretypified pretypify pretypifying pretyping pretypographical pretyrannical pretyranny pretzel pretzels preultimate preultimately preumbonal preunderstand preunderstanding preunderstood preundertake preundertaken preundertaking preundertook preunification preunion preunions preunite preunited preunites preuniting preuniversity preussen preutilisable preutilisation preutilise preutilizable preutilization preutilize preutilized preutilizing preux prev prevacate prevacated prevacating prevacation prevaccinate prevaccinated prevaccinating prevaccination prevail prevailance prevailed prevailer prevailers prevailing prevailingly prevailingness prevailingnesses prevailment prevailments prevails prevalence prevalences prevalencies prevalency prevalent prevalently prevalentness prevalents prevalescence prevalescent prevalid prevalidity prevalidly prevaluation prevalue prevalued prevalues prevaluing prevariation prevaricate prevaricated prevaricates prevaricating prevarication prevarications prevaricative prevaricator prevaricators prevaricatory prevascular preve preved prevegetation prevelar prevenance prevenances prevenancies prevenancy prevenant prevene prevened prevenes prevenience preveniences prevenient preveniently prevening prevent preventabilities preventability preventable preventably preventative preventatives prevented preventer preventers preventible preventing preventingly prevention preventionism preventionist preventions preventive preventively preventiveness preventivenesses preventives preventoria preventorium preventoriums preventral prevents preventtoria preventure preventured preventuring preverb preverbal preverbs preverification preverified preverify preverifying prevernal preversed preversing preversion prevertebral preves prevesical preveto prevetoed prevetoes prevetoing previable previctorious previde previdence preview previewed previewer previewers previewing previews previgilance previgilant previgilantly preving previolate previolated previolating previolation previous previously previousness previousnesses previse prevised previses previsibility previsible previsibly prevising prevision previsional previsionary previsioned previsioning previsions previsit previsited previsiting previsitor previsits previsive previsor previsors previze prevocal prevocalic prevocalically prevocally prevocational prevogue prevoid prevoidance prevolitional prevolunteer prevomer prevost prevot prevotal prevote prevoted prevoting prevoyance prevoyant prevue prevued prevues prevuing prewar prewarm prewarmed prewarming prewarms prewarn prewarned prewarning prewarns prewarrant prewash prewashed prewashes prewashing preweaning preweigh preweighed preweighing preweighs prewelcome prewelcomed prewelcoming prewelwired prewelwiring prewhip prewhipped prewhipping prewilling prewillingly prewillingness prewire prewired prewireless prewires prewiring prewitness prewonder prewonderment prework preworked preworking preworks preworldliness preworldly preworn preworship preworthily preworthiness preworthy prewound prewrap prewrapped prewrapping prewraps prewriting prewritings prewrought prewyn prewyns prex prexes prexies prexy prey preyed preyer preyers preyful preying preyingly preyouthful preys prez prezes prezonal prezone prezygapophysial prezygapophysis prezygomatic prezzes prezzie prezzies prf priacanthid priacanthidae priacanthine priacanthus prial prials priam priapean priapi priapic priapism priapismic priapisms priapitis priapulid priapuloid priapus priapuses pribble pribbles price priceable priceably priced pricefixing priceite priceless pricelessly pricelessness pricelessnesses pricemaker pricer pricers prices pricey priceyness priceynesses prich pricier priciest pricily priciness pricinesses pricing prick prickado prickant pricked pricker prickers pricket prickets prickfoot prickier prickiest pricking prickingly prickings prickish prickle prickleback prickled pricklefish prickles prickless pricklier prickliest prickliness pricklinesses prickling pricklingly pricklings pricklouse prickly pricklyback prickmadam prickmedainty prickproof pricks prickseam prickshot prickspur prickteaser pricktimber prickwood prickwoods pricky pricy pride prided prideful pridefully pridefulness pridefulnesses prideless pridelessly prideling prides prideweed pridian priding pridingly pridy prie pried priedieu priedieus priedieux prief priefe priefes priefs prier priers pries priest priestal priestcap priestcraft priestcrafts priestdom priested priesteen priestery priestess priestesses priestfish priestfishes priesthood priesthoods priestianity priesting priestish priestism priestless priestlet priestlier priestliest priestlike priestliness priestlinesses priestling priestlings priestly priests priestship priestships priestshire prieve prieved prieves prieving prig prigdom prigged prigger priggeries priggers priggery priggess prigging priggings priggish priggishly priggishness priggishnesses priggism priggisms prighood prigman prigs prigster prill prilled prilling prillion prills prim prima primacies primacord primacy primaeval primaevally primage primages primal primalities primality primally primaquine primaquines primar primarian primaried primaries primarily primariness primarinesses primary primas primatal primatals primate primates primateship primateships primatial primatic primatical primatological primatologies primatologist primatologists primatology primavera primaveral primaveras prime primed primegilt primely primeness primenesses primer primero primerole primeros primers primes primetime primeur primeval primevalism primevally primevarous primeverin primeverose primevity primevous primevrin primi primices primigene primigenial primigenian primigenious primigenous primigravida primigravidae primigravidas primine primines priming primings primipara primiparae primiparas primiparities primiparity primiparous primipilar primitiae primitial primitias primitive primitively primitiveness primitivenesses primitives primitivism primitivisms primitivist primitivistic primitivists primitivities primitivity primity primly primmed primmer primmers primmest primming primness primnesses primo primogenetrix primogenial primogenit primogenital primogenitary primogenitive primogenitives primogenitor primogenitors primogenitrix primogenitrixes primogenits primogeniture primogenitures primogenitureship primogenitureships primogenous primomo primoprime primoprimitive primordality primordia primordial primordialism primordialisms primordialities primordiality primordially primordials primordiate primordium primordiums primos primosity primost primp primped primping primprint primps primrose primrosed primroses primrosetide primrosetime primrosing primrosy prims primsie primsier primsiest primula primulaceae primulaceous primulales primulas primulaverin primulaveroside primulic primuline primulines primus primuses primwort primy prin prince princeage princecraft princed princedom princedoms princehood princehoods princekin princekins princeless princelet princelets princelier princeliest princelike princeliness princelinesses princeling princelings princely princeps princes princeship princeships princess princessdom princesse princesses princesslike princessly princeton princewood princicipia princified princify princing principal principalities principality principally principalness principalnesses principals principalship principalships principate principates principe principes principi principia principial principials principiant principiate principiation principium principle principled principles principling principly principulus princock princocks princod princox princoxes prine pringle prinia prink prinked prinker prinkers prinking prinkle prinks prinky prinos print printabilities printability printable printableness printably printanier printed printer printerdom printeries printerlike printers printery printhead printheads printing printings printless printline printmake printmaker printmakers printmaking printmakings printout printouts prints printscript printshop printwheel printworks prio priodont priodontes prion prionace prionid prionine prionodesmacean prionodesmaceous prionodesmatic prionodont prionopine prionotus prions prior prioracy prioral priorate priorates prioress prioresses priori priories prioristic prioristically priorite priorities prioritisation prioritisations prioritise prioritised prioritises prioritising prioritization prioritizations prioritize prioritized prioritizes prioritizing priority priorly priors priorship priorships priory prisable prisage prisages prisal priscan priscian priscillianist prise prised priser prisere priseres prisers prises prisiadka prising prism prismal prismatic prismatical prismatically prismatization prismatize prismatoid prismatoidal prismatoids prismed prismoid prismoidal prismoids prisms prismy prisometer prison prisonable prisonbreak prisondom prisoned prisoner prisoners prisonful prisonhouse prisoning prisonlike prisonment prisonments prisonous prisons priss prissed prisses prissier prissies prissiest prissily prissiness prissinesses prissing prissy pristane pristanes pristav pristaw pristidae pristine pristinely pristineness pristis pritch pritchel prithee prithees prittle pritzelago prius priv privacies privacity privacy privado privadoes privados privant privata privatdocent privatdocents privatdozent privatdozents private privateer privateered privateering privateerings privateers privateersman privateersmen privately privateness privatenesses privater privates privatest privation privations privatisation privatisations privatise privatised privatiser privatisers privatises privatising privatism privatisms privatist privatistic privatists privative privatively privativeness privatives privatization privatizations privatize privatized privatizer privatizers privatizes privatizing privatum privet privets privier privies priviest priviledge privilege privileged privileger privileges privileging privily priviness privities privity privy prix prizable prize prizeable prized prizefight prizefighter prizefighters prizefighting prizefightings prizefights prizeholder prizeman prizemen prizer prizers prizery prizes prizetaker prizewinner prizewinners prizewinning prizewoman prizewomen prizeworthy prizing prlate prn pro proa proabolition proabolitionist proabortion proabsolutism proabsolutist proabstinence proacademic proaccelerin proacceptance proach proacquisition proacquittal proacting proaction proactions proactive proactively proactivity proactor proaddition proadjournment proadministration proadmission proadoption proadvertising proadvertizing proaeresis proaesthetic proaggressionist proagitation proagon proagones proagrarian proagreement proagricultural proagule proaireses proairesis proairplane proal proalcoholism proalien proalliance proallotment proalteration proamateur proambient proamendment proamnion proamniotic proamusement proanaphora proanaphoral proanarchic proanarchism proanarchy proangiosperm proangiospermic proangiospermous proanimistic proannexation proannexationist proantarctic proanthropos proapostolic proappointment proapportionment proappreciation proappropriation proapproval proaquatic proarbitration proarbitrationist proarchery proarctic proaristocracy proaristocratic proarmy proart proas proassessment proassociation proatheism proatheist proatheistic proathletic proatlas proattack proattendance proauction proaudience proaulion proauthor proauthority proautomation proautomobile proavian proaviation proaward prob probabiliorism probabiliorisms probabiliorist probabiliorists probabilism probabilisms probabilist probabilistic probabilistically probabilists probabilities probability probabilize probabl probable probableness probables probably probachelor probal proball proballoon proband probandi probands probang probangs probanishment probankruptcy probant probargaining probaseball probasketball probata probate probated probates probathing probatical probating probation probational probationally probationaries probationary probationer probationerhood probationers probationership probationerships probationism probationist probations probationship probative probatively probator probatory probattle probattleship probatum probe probeable probed probeer probenecid probenecids prober probers probes probetting probing probings probiology probiotic probiotics probit probities probits probituminous probity problem problematic problematical problematically problematicness problematics problematist problematize problemdom problemise problemist problemistic problemists problemize problems problemwise problockade probonding probonus proborrowing probosces proboscidal proboscidate proboscidea proboscidean proboscideans proboscideous proboscides proboscidial proboscidian proboscidians proboscidiferous proboscidiform probosciform probosciformed proboscis proboscises proboscislike probouleutic proboulevard probowling proboxing proboycott probrick probridge probroadcasting probs probudget probudgeting probuilding probusiness probuying proc procaccia procaccio procacious procaciously procacities procacity procaine procaines procambia procambial procambium procambiums procanal procancellation procapital procapitalism procapitalist procapitalists procarbazine procarbazines procarnival procarp procarpium procarps procarrier procaryon procaryons procaryot procaryote procaryotes procaryotic procaryots procatalectic procatalepsis procatarctic procatarxis procathedral procathedrals procavia procaviidae procbal procedendo procedes procedural procedurally procedurals procedure procedured procedures proceduring proceed proceeded proceeder proceeders proceeding proceedings proceeds proceleusmatic proceleusmatics procellaria procellarian procellarid procellariidae procellariiformes procellariine procellas procello procellose procellous procensorship procensure procentralization procephalic procercoid procercoids procere procereal procerebra procerebral procerebrum procerebrums proceremonial proceremonialism proceremonialist proceres procerite proceritic procerities procerity procerus process processabilities processability processable processal processed processer processers processes processibilities processibility processible processing procession processional processionalist processionalists processionally processionals processionary processioned processioner processioners processioning processionings processionise processionist processionize processions processionwise processive processor processors processual processus prochain procharity prochein prochemical prochlorite prochondral prochooi prochoos prochordal prochorion prochorionic prochromosome prochronic prochronism prochronisms prochronistic prochronize prochurch prochurchian procidence procidences procident procidentia procinct procincts prociphilus procity procivic procivilian procivism proclaim proclaimable proclaimant proclaimants proclaimed proclaimer proclaimers proclaiming proclaimingly proclaims proclamation proclamations proclamator proclamatory proclassic proclassical proclei proclergy proclerical proclericalism proclimax procline proclises proclisis proclitic proclitics proclive proclivities proclivitous proclivity proclivous proclivousness procne procnemial procnias procoelia procoelian procoelous procoercion procoercive procollectivism procollectivist procollectivistic procollegiate procolonial procombat procombination procomedy procommemoration procomment procommercial procommission procommittee procommunal procommunism procommunist procommunists procommunity procommutation procompensation procompetition procomprise procompromise procompulsion proconcentration proconcession proconciliation procondemnation proconfederationist proconference proconfession proconfessionist proconfiscation proconformity proconquest proconscription proconscriptive proconservation proconservationist proconsolidation proconstitutional proconstitutionalism proconsul proconsular proconsularly proconsulary proconsulate proconsulates proconsuls proconsulship proconsulships proconsultation procontinuation proconvention proconventional proconviction procoracoid procoracoidal procorporation procosmetic procosmopolitan procotols procotton procourt procrastinate procrastinated procrastinates procrastinating procrastinatingly procrastination procrastinations procrastinative procrastinatively procrastinativeness procrastinativenesses procrastinator procrastinators procrastinatory procreant procreants procreate procreated procreates procreating procreation procreational procreations procreative procreativeness procreativenesses procreativity procreator procreators procreatory procreatress procreatrix procremation procritic procritique procrustean procrustes procrypses procrypsis procryptic procryptically proctal proctalgia proctalgias proctalgy proctatresia proctatresy proctectasia proctectomy procteurynter proctitis proctitises proctocele proctoclysis proctocolitis proctocolonoscopy proctocystoplasty proctocystotomy proctodaea proctodaeal proctodaedaea proctodaeum proctodaeums proctodea proctodeal proctodeudea proctodeum proctodeums proctodynia proctoelytroplastic proctologic proctological proctologies proctologist proctologists proctology proctoparalysis proctoplastic proctoplasty proctoplegia proctopolypus proctoptoma proctoptosis proctor proctorage proctorages proctoral proctored proctorial proctorially proctorical proctoring proctorisation proctorise proctorised proctorises proctorising proctorization proctorize proctorized proctorizes proctorizing proctorling proctorrhagia proctorrhaphy proctorrhea proctors proctorship proctorships proctoscope proctoscopes proctoscopic proctoscopically proctoscopies proctoscopy proctosigmoidectomy proctosigmoiditis proctospasm proctostenosis proctostomy proctotome proctotomy proctotresia proctotrypid proctotrypoid proctovalvotomy proculcate proculcation procumbent procurability procurable procurableness procuracies procuracy procural procurals procurance procurances procurate procuration procurations procurative procurator procuratorate procuratorial procuratories procurators procuratorship procuratorships procuratory procuratrix procure procured procurement procurements procurer procurers procures procuress procuresses procureur procureurs procuring procurrent procursive procurvation procurved procyon procyonid procyonidae procyoniform procyonine proczarist prod prodatary prodd prodded prodder prodders prodding proddle prodecoration prodefault prodefiance prodelay prodelision prodemocracy prodemocrat prodemocratic prodenominational prodentine prodeportation prodespotic prodespotism prodialogue prodigal prodigalise prodigalised prodigalises prodigalish prodigalising prodigalism prodigalities prodigality prodigalize prodigalized prodigalizes prodigalizing prodigally prodigals prodigies prodigiosities prodigiosity prodigious prodigiously prodigiousness prodigiousnesses prodigus prodigy prodisarmament prodisplay prodissoconch prodissolution prodistribution prodition proditor proditorious proditoriously proditors proditory prodivision prodivorce prodnose prodnosed prodnoses prodnosing prodomoi prodomos prodproof prodramatic prodroma prodromal prodromata prodromatic prodromatically prodrome prodromes prodromi prodromic prodromous prodromus prodrug prodrugs prods producal produce produceable produceableness produced producement producements producent producer producers producership produces producibilities producibility producible producibleness producing product producted productibilities productibility productible productid productile production productional productionist productions productive productively productiveness productivenesses productivities productivity productoid productor productory productress products proecclesiastical proeconomy proeducation proeducational proegumenal proelectric proelectrical proelectrification proelectrocution proelimination proem proembryo proembryonic proembryos proemial proemium proempire proempiricism proempiricist proemployee proemployer proemployment proemptosis proems proenforcement proenlargement proenzym proenzyme proenzymes proepimeron proepiscopist proepisternum proequality proestrus proestruses proethical proethnic proethnically proetid proette proettes proevolution proevolutionary proevolutionist proexamination proexecutive proexemption proexercise proexperiment proexperimentation proexpert proexporting proexposure proextension proextravagance prof proface profaculty profamily profanable profanableness profanably profanation profanations profanatory profanchise profane profaned profanely profanement profaneness profanenesses profaner profaners profanes profaning profanise profanism profanities profanity profanize profarmer profascism profascist profascists profection profectional profectitious profederation profeminism profeminist profeminists profer proferment profert profess professable professed professedly professes professing profession professional professionalisation professionalisations professionalise professionalised professionalises professionalising professionalism professionalisms professionalist professionalists professionality professionalization professionalizations professionalize professionalized professionalizes professionalizing professionally professionals professionise professionist professionize professionless professions professive professively professor professorate professorates professordom professoress professoresses professorhood professorial professorialism professorially professoriat professoriate professoriates professoriats professorlike professorling professors professorship professorships professory proffer proffered profferer profferers proffering proffers profichi proficience proficiences proficiencies proficiency proficient proficiently proficientness proficients profiction proficuous proficuously profile profiled profiler profilers profiles profiling profilings profilist profilists profilograph profit profitabilities profitability profitable profitableness profitablenesses profitably profited profiteer profiteered profiteering profiteerings profiteers profiter profiterole profiteroles profiters profiting profitings profitless profitlessly profitlessness profitmonger profitmongering profitproof profits profitsharing profitted profitter profitters profitwise proflated proflavine profligacies profligacy profligate profligated profligately profligateness profligatenesses profligates profligation proflogger profluence profluences profluent profluvious profluvium profonde proforeign proform proforma proformas proforms profound profounder profoundest profoundly profoundness profoundnesses profounds profraternity profre profs profugate profulgent profunda profundae profundities profundity profuse profusely profuseness profusenesses profuser profusers profusion profusions profusive profusively profusiveness prog progambling progamete progamic proganosaur progenerate progeneration progenerative progenies progenital progenitive progenitiveness progenitor progenitorial progenitors progenitorship progenitorships progenitress progenitresses progenitrices progenitrix progenitrixes progeniture progenitures progenity progeny progeotropic progeotropism progeria progerias progermination progestational progesterone progesterones progestin progestins progestogen progestogenic progestogens progged progger proggers progging proggins progginses proglottic proglottid proglottidean proglottides proglottids proglottis prognathi prognathic prognathism prognathisms prognathous prognathy progne prognose prognosed prognoses prognosing prognosis prognostic prognosticable prognostical prognostically prognosticate prognosticated prognosticates prognosticating prognostication prognostications prognosticative prognosticator prognosticators prognosticatory prognostics progoneate progospel progovernment progradation progradations prograde prograded progrades prograding program programable programatic programed programer programers programing programings programist programistic programma programmabilities programmability programmable programmables programmar programmata programmatic programmatically programmatist programme programmed programmer programmers programmes programming programmings programmist programmng programs progravid progrede progrediency progredient progress progressed progresser progresses progressing progression progressional progressionally progressionary progressionism progressionisms progressionist progressionists progressions progressism progressisms progressist progressists progressive progressively progressiveness progressivenesses progressives progressivism progressivisms progressivist progressivistic progressivists progressivities progressivity progressor progs proguardian progun progymnasien progymnasium progymnasiums progymnosperm progymnospermic progymnospermous progypsy prohaste proheim prohibit prohibita prohibited prohibiter prohibiters prohibiting prohibition prohibitionary prohibitionism prohibitionisms prohibitionist prohibitionists prohibitions prohibitive prohibitively prohibitiveness prohibitivenesses prohibitor prohibitorily prohibitors prohibitory prohibits prohibitum proholiday prohostility prohuman prohumanistic prohydrotropic prohydrotropism proidealistic proign proigned proigning proigns proimmigration proimmunity proin proinclusion proincrease proindemnity proindustrial proindustrialisation proindustrialization proindustry proine proined proines proining proinjunction proinnovationist proinquiry proins proinsulin proinsulins proinsurance prointegration prointervention proinvestment proirrigation projacient project projectable projected projectedly projectile projectiles projecting projectingly projectings projection projectional projectionist projectionists projections projectisation projectisations projective projectively projectivities projectivity projectization projectizations projectment projectments projector projectors projectress projectrix projects projecture projectures projet projets projicience projicient projiciently projournalistic projudicial prokaryon prokaryons prokaryot prokaryote prokaryotes prokaryotic prokaryots proke proked prokeimenon proker prokers prokes prokindergarten proking proklausis prolabium prolabor prolacrosse prolactin prolactins prolamin prolamine prolamines prolamins prolan prolans prolapse prolapsed prolapses prolapsing prolapsion prolapsus prolapsuses prolarva prolarval prolate prolated prolately prolateness prolatenesses prolates prolating prolation prolations prolative prolatively prole proleague proleaguer prolectite proled proleg prolegate prolegislative prolegomena prolegomenal prolegomenary prolegomenist prolegomenon prolegomenona prolegomenous prolegs proleniency prolepses prolepsis proleptic proleptical proleptically proleptics proler prolers proles proletaire proletairism proletarian proletarianisation proletarianisations proletarianise proletarianised proletarianises proletarianising proletarianism proletarianisms proletarianization proletarianizations proletarianize proletarianized proletarianizes proletarianizing proletarianly proletarianness proletarians proletariat proletariate proletariates proletariatism proletariats proletaries proletarise proletarised proletarising proletarization proletarize proletarized proletarizing proletary proletcult proletkult proleucocyte proleukocyte prolia prolicense prolicidal prolicide prolicides proliferant proliferate proliferated proliferates proliferating proliferation proliferations proliferative proliferator proliferous proliferously prolific prolificacies prolificacy prolifical prolifically prolificalness prolificate prolificated prolificating prolification prolifications prolificities prolificity prolificly prolificness prolificnesses prolificy prolify proligerous prolin proline prolines proling proliquor proliterary proliturgical proliturgist prolix prolixious prolixities prolixity prolixly prolixness prolixnesses proll prolled proller prollers prolling prolls prolocution prolocutions prolocutor prolocutors prolocutorship prolocutorships prolocutress prolocutrix prolocutrixes prolog prologed prologi prologing prologise prologised prologises prologising prologist prologize prologized prologizer prologizes prologizing prologlike prologos prologs prologue prologued prologuelike prologuer prologues prologuing prologuise prologuised prologuiser prologuises prologuising prologuist prologuize prologuized prologuizer prologuizes prologuizing prologulogi prologus prolong prolongable prolongableness prolongably prolongate prolongated prolongates prolongating prolongation prolongations prolonge prolonged prolonger prolongers prolonges prolonging prolongment prolongments prolongs prolotherapy prolusion prolusionise prolusionize prolusions prolusory prolyl prom promachinery promachos promachoses promagisterial promagistracy promagistrate promajority promammal promammalian promarriage promatrimonial promatrimonialist promaximum promazine promemorial promenade promenaded promenader promenaderess promenaders promenades promenading promercantile promercy promerger promeristem promerit promeritor promerops prometacenter prometal prometals promethazine promethazines promethean prometheum prometheums prometheus promethium promethiums promic promilitarism promilitarist promilitary promine prominence prominences prominencies prominency prominent prominently promines prominimum proministry prominority promisable promiscuities promiscuity promiscuous promiscuously promiscuousness promiscuousnesses promise promised promisee promisees promiseful promiseless promisemonger promiseproof promiser promisers promises promising promisingly promisingness promisor promisors promiss promissary promissionary promissive promissor promissorily promissors promissory promissvry promit promitosis promittor prommer prommers promnesia promo promoderation promoderationist promodern promodernist promodernistic promoed promoing promonarchic promonarchical promonarchicalness promonarchist promonarchists promonarchy promonopolist promonopolistic promonopoly promontoried promontories promontory promoral promorph promorphological promorphologically promorphologist promorphology promos promotabilities promotability promotable promote promoted promotement promoter promoters promotes promoting promotion promotional promotions promotive promotiveness promotivenesses promotor promotorial promotors promotress promotrix promovable promoval promove promovent prompt promptbook promptbooks prompted prompter prompters promptest prompting promptings promptitude promptitudes promptive promptly promptness promptnesses promptorium promptress prompts promptuaries promptuary prompture promptures proms promulgate promulgated promulgates promulgating promulgation promulgations promulgator promulgators promulgatory promulge promulged promulger promulges promulging promusces promuscidate promuscides promuscis promuscises promycelia promycelial promycelium promyceliums promythic pron pronaoi pronaos pronatalist pronate pronated pronates pronating pronation pronational pronationalism pronationalist pronationalistic pronations pronative pronatoflexor pronator pronatores pronators pronaval pronavy prone pronegotiation pronegro pronegroism pronely proneness pronenesses pronephra pronephric pronephridiostome pronephroi pronephron pronephros pronephroses proner prones pronest proneur proneurs prong prongbuck prongbucks pronged pronger pronghorn pronghorns pronging pronglike prongs prongy pronic pronity pronk pronked pronking pronks pronograde pronomial pronominal pronominalisation pronominalise pronominalization pronominalizations pronominalize pronominally pronomination prononce pronota pronotal pronotum pronoun pronounal pronounce pronounceabilities pronounceability pronounceable pronounceableness pronounced pronouncedly pronouncedness pronouncednesses pronouncement pronouncements pronounceness pronouncer pronouncers pronounces pronouncing pronouncings pronouns pronpl pronto pronuba pronubial pronuclear pronuclei pronucleus pronucleuses pronumber pronunciability pronunciable pronuncial pronunciamento pronunciamentoes pronunciamentos pronunciation pronunciational pronunciations pronunciative pronunciator pronunciatory pronuncio pronuncios pronymph pronymphal proo proode prooemiac prooemion prooemions prooemium prooemiums proof proofed proofer proofers proofful proofing proofings proofless prooflessly prooflike proofness proofread proofreaded proofreader proofreaders proofreading proofreadings proofreads proofroom proofrooms proofs proofy proos prootic prootics prop propacifism propacifist propadiene propaedeutic propaedeutical propaedeutics propagability propagable propagableness propagand propaganda propagandas propagandic propagandise propagandised propagandises propagandising propagandism propagandisms propagandist propagandistic propagandistically propagandists propagandize propagandized propagandizer propagandizers propagandizes propagandizing propagate propagated propagates propagating propagation propagational propagations propagative propagator propagators propagatory propagatress propage propaged propages propagines propaging propago propagula propagule propagules propagulla propagulum propagulums propale propaled propales propalinal propaling propanal propanamide propane propanedicarboxylic propanedioic propanediol propanes propanol propanols propanone propapist proparasceve proparent propargyl propargylic proparian proparliamental proparoxytone proparoxytones proparoxytonic proparticipation propassion propatagial propatagian propatagium propatriotic propatriotism propatronage propayment propel propellable propellant propellants propelled propellent propellents propeller propellers propelling propellor propellors propelment propelments propels propenal propend propended propendent propending propends propene propenes propenoate propenoic propenol propenols propenonitrile propense propensely propenseness propensenesses propension propensions propensities propensitude propensity propensive propenyl propenylic proper properdin properdins properer properest properispome properispomena properispomenon properitoneal properly properness propernesses propers propertied properties property propertying propertyless propertylessness propertylessnesses propertyship propessimism propessimist prophage prophages prophase prophases prophasic prophasis prophecies prophecy prophecymonger prophesiable prophesied prophesier prophesiers prophesies prophesy prophesying prophesyings prophet prophetess prophetesses prophethood prophethoods prophetic prophetical propheticality prophetically propheticalness propheticism propheticisms propheticly prophetise prophetism prophetisms prophetize prophetless prophetlike prophetry prophets prophetship prophetships prophies prophilosophical prophloem prophoric prophototropic prophototropism prophy prophylactic prophylactical prophylactically prophylactics prophylactodontia prophylactodontist prophylaxes prophylaxis prophylaxy prophyll prophylls prophyllum propination propine propined propines propining propinoic propinquant propinque propinquitatis propinquities propinquity propinquous propio propiolaldehyde propiolate propiolic propionaldehyde propionate propionates propione propionibacteria propionibacterium propionic propionitril propionitrile propionyl propitiable propitial propitiate propitiated propitiates propitiating propitiatingly propitiation propitiations propitiative propitiator propitiatories propitiatorily propitiators propitiatory propitious propitiously propitiousness propitiousnesses propjet propjets proplasm proplasma proplastic proplastid proplastids propless propleural propleuron proplex proplexus propman propmen propmistress propmistresses propodeal propodeon propodeons propodeum propodeums propodial propodiale propodite propoditic propodium propoganda propolis propolises propolitical propolitics propolization propolize propoma propomata propone proponed proponement proponent proponents proponer propones proponing propons propontis propooling propopery proport proportion proportionability proportionable proportionableness proportionablenesses proportionably proportional proportionalism proportionalities proportionality proportionally proportionals proportionate proportionated proportionately proportionateness proportionatenesses proportionates proportionating proportioned proportioner proportioners proportioning proportionings proportionless proportionment proportionments proportions propos proposable proposal proposals proposant propose proposed proposedly proposer proposers proposes proposing propositi propositio proposition propositional propositionally propositioned propositioning propositionise propositionize propositions propositus propositusti proposterously propound propounded propounder propounders propounding propoundment propounds propoxy propoxyphene propoxyphenes proppage proppant proppants propped propper propping propr propraetor propraetorial propraetorian propraetors propranolol propranolols proprecedent propretor propretorial propretorian propretors propria propriation propriatory proprietage proprietarian proprietariat proprietaries proprietarily proprietary proprietatis proprieties proprietor proprietorial proprietorially proprietors proprietorship proprietorships proprietory proprietous proprietress proprietresses proprietrix proprietrixes propriety proprioception proprioceptions proprioceptive proprioceptively proprioceptor proprioceptors proprionamide propriospinal proprium proprivilege proproctor proproctors proprofit proprovincial proprovost props propter propterygial propterygium proptosed proptoses proptosis propublication propublicity propugn propugnacled propugnaculum propugnation propugnations propugnator propugner propulsation propulsatory propulse propulsion propulsions propulsity propulsive propulsor propulsors propulsory propunishment propupa propupal propurchase propwood propygidium propyl propyla propylacetic propylaea propylaeum propylalaea propylamine propylamines propylation propylene propylenes propylhexedrine propylic propylidene propylite propylites propylitic propylitisation propylitisations propylitise propylitised propylitises propylitising propylitization propylitizations propylitize propylitized propylitizes propylitizing propylon propylons propyls propylthiouracil propyne propynoic proquaestor proracing prorailroad prorata proratable prorate prorated prorater prorates prorating proration prorations prore proreader prorealism prorealist prorealistic proreality prorean prorebate prorebel prorecall proreciprocation prorecognition proreconciliation prorector prorectorate prorectors proredemption proreduction proreferendum proreform proreformist prorefugee proregent prorelease proreptilian proreption prorepublican prores proresearch proreservationist proresignation prorestoration prorestriction prorevision prorevisionist prorevolution prorevolutionary prorevolutionist prorex prorhinal proritual proritualistic prorogate prorogated prorogates prorogating prorogation prorogations prorogator prorogue prorogued proroguer prorogues proroguing proromance proromantic proromanticism proroyal proroyalty prorrhesis prorsa prorsad prorsal prorump proruption pros prosabbath prosabbatical prosacral prosaic prosaical prosaically prosaicalness prosaicalnesses prosaicism prosaicisms prosaicness prosaicnesses prosaism prosaisms prosaist prosaists prosal prosapy prosar prosateur prosateurs prosauropod prosauropoda prosauropods proscapula proscapular proscenia proscenium prosceniums proscholastic proscholasticism proscholium proschool proscience proscientific proscind prosciuto prosciutti prosciutto prosciuttos proscolecine proscolex proscolices proscribable proscribe proscribed proscriber proscribers proscribes proscribing proscript proscription proscriptional proscriptionist proscriptions proscriptive proscriptively proscriptiveness proscripts proscutellar proscutellum proscynemata prose prosecrecy prosecretin prosect prosected prosecting prosection prosector prosectorial prosectorium prosectors prosectorship prosectorships prosects prosecutable prosecute prosecuted prosecutes prosecuting prosecution prosecutions prosecutive prosecutor prosecutorial prosecutors prosecutory prosecutrices prosecutrix prosecutrixes prosed proseity proselenic proselike prosely proselyte proselyted proselyter proselyters proselytes proselytical proselyting proselytingly proselytisation proselytisations proselytise proselytised proselytiser proselytisers proselytises proselytising proselytism proselytisms proselytist proselytistic proselytization proselytizations proselytize proselytized proselytizer proselytizers proselytizes proselytizing proseman prosemen proseminar proseminars proseminary proseminate prosemination prosencephala prosencephalic prosencephalon prosencephalons prosenchyma prosenchymas prosenchymata prosenchymatous proseneschal prosequendum prosequi prosequitur proser proserpina proserpine prosers proses prosethmoid proseucha proseuchae proseuche prosier prosiest prosification prosified prosifier prosifies prosify prosifying prosiliencies prosiliency prosilient prosiliently prosilverite prosily prosimian prosimians prosimii prosiness prosinesses prosing prosingly prosings prosiphon prosiphonal prosiphonate prosish prosist prosit prosits proskomide proslambanomenos proslambanomenoses proslave proslaver proslavery proslaveryism proslyted proslyting prosneusis proso prosobranch prosobranchiate prosobranchs prosocele prosocoele prosodal prosode prosodemic prosodetic prosodiac prosodiacal prosodiacally prosodial prosodially prosodian prosodians prosodic prosodical prosodically prosodics prosodies prosodion prosodist prosodists prosodus prosody prosogaster prosogyrate prosogyrous prosoma prosomal prosomas prosomata prosomatic prosonomasia prosopagnosia prosopagnosias prosopalgia prosopalgic prosopantritis prosopectasia prosophist prosopic prosopically prosopis prosopite prosopium prosoplasia prosopographical prosopographies prosopography prosopolepsy prosopon prosoponeuralgia prosopons prosopopeia prosopopeial prosopopeias prosopoplegia prosopoplegic prosopopoeia prosopopoeial prosopopoeias prosoposchisis prosopospasm prosopotocia prosopyl prosopyle prosorus prosos prospect prospected prospecting prospectings prospection prospections prospective prospectively prospectiveness prospectivenesses prospectives prospectless prospector prospectors prospects prospectus prospectuses prospectusless prospeculation prosper prosperation prospered prosperer prospering prosperities prosperity prospero prosperous prosperously prosperousness prosperousnesses prospers prosphora prosphoron prosphysis prospice prospicience prosporangium prosport pross prosser prosses prossie prossies prosstoa prossy prost prostacyclin prostacyclins prostades prostaglandin prostaglandins prostanthera prostantheras prostas prostasis prostatauxe prostate prostatectomies prostatectomy prostatelcosis prostates prostatic prostaticovesical prostatism prostatisms prostatitic prostatitis prostatitises prostatocystitis prostatocystotomy prostatodynia prostatolith prostatomegaly prostatometer prostatomyomectomy prostatorrhea prostatorrhoea prostatotomy prostatovesical prostatovesiculectomy prostatovesiculitis prostemmate prostemmatic prostern prosterna prosternal prosternate prosternum prosternums prostheca prosthenic prostheses prosthesis prosthetic prosthetically prosthetics prosthetist prosthetists prosthion prosthionic prosthodontia prosthodontias prosthodontic prosthodontics prosthodontist prosthodontists prostie prosties prostitute prostituted prostitutely prostitutes prostituting prostitution prostitutions prostitutor prostitutors prostoa prostomia prostomial prostomiate prostomium prostomiumia prostomiums prostoon prostrate prostrated prostrates prostrating prostration prostrations prostrative prostrator prostrike prostyle prostyles prostylos prosubmission prosubscription prosubstantive prosubstitution prosuffrage prosupervision prosupport prosurgical prosurrender prosy prosyllogism prosyllogisms prosyndicalism prosyndicalist protactic protactinium protactiniums protagon protagonism protagonisms protagonist protagonists protalbumose protamin protamine protamines protamins protandric protandries protandrism protandrous protandrously protandry protanomal protanomalies protanomalous protanomaly protanope protanopes protanopia protanopias protanopic protargentum protargin protariff protarsal protarsus protases protasis protaspis protatic protatically protax protaxation protaxial protaxis prote protea proteaceae proteaceous protead proteales protean proteanism proteanly proteans proteanwise proteas protease proteases protechnical protect protectable protectant protectants protected protectee protectible protecting protectingly protectinglyrmal protectingness protection protectional protectionate protectionise protectionism protectionisms protectionist protectionists protectionize protections protectionship protective protectively protectiveness protectivenesses protectives protector protectoral protectorate protectorates protectorial protectorian protectories protectorless protectors protectorship protectorships protectory protectress protectresses protectrices protectrix protectrixes protects protege protegee protegees proteges protegulum protei proteic proteid proteidae proteide proteidean proteides proteidogenous proteids proteiform protein proteinaceous proteinase proteinases proteinate proteinic proteinochromogen proteinoid proteinoids proteinous proteinphobia proteins proteinuria proteinurias proteinuric proteles protelytropteran protelytropteron protelytropterous protemperance protempirical protemporaneous protend protended protending protends protense protenses protension protensions protensities protensity protensive protensively proteoclastic proteogenous proteoglycan proteoglycans proteolipide proteolyse proteolysed proteolyses proteolysing proteolysis proteolytic proteolytically proteopectic proteopexic proteopexis proteopexy proteosaurid proteose proteoses proteosomal proteosome proteosuria protephemeroid proterandric proterandries proterandrous proterandrously proterandrousness proterandry proteranthous proteranthy proterobase proterochampsa proteroglyph proteroglyphic proteroglyphous proterogynies proterogynous proterogyny proterothesis proterotype proterozoic proterve protervities protervity protest protestable protestancy protestant protestantism protestants protestation protestations protestator protestatory protested protester protesters protesting protestingly protestive protestor protestors protests protetrarch proteus proteuses protevangel protevangelion protevangelium protext prothalamia prothalamion prothalamium prothalamiumia prothalli prothallia prothallial prothallic prothalline prothallium prothalliums prothalloid prothallus prothalluses prothalmia prothalmion prothalmium protheatrical protheca protheses prothesis prothetelic prothetely prothetic prothetical prothetically prothmia prothonotarial prothonotariat prothonotariats prothonotaries prothonotary prothonotaryship prothoraces prothoracic prothorax prothoraxes prothrift prothrombin prothrombins prothrombogen prothyl prothyle prothyles prothyls prothysteron protid protide protiodide protist protista protistan protistans protistic protistological protistologies protistologist protistologists protistology protiston protists protium protiums proto protoactinium protoactiniums protoalbumose protoamphibian protoanthropic protoanthropology protoapostate protoarchaeology protoarcheology protoarchitect protoavis protoavises protobacco protobasidiomycetous protobasidium protobishop protoblast protoblastic protoblattoid protobranchiate protocalcium protocanonical protocaseose protocatechualdehyde protocatechuic protoceratops protocercal protocerebral protocerebrum protochemist protochemistry protochloride protochlorophyll protochordate protochordates protochromium protochronicler protocitizen protoclastic protocneme protococcaceous protococcal protococcoid protococcus protocol protocolar protocolary protocoled protocoleopteran protocoleopteron protocoleopterous protocolic protocoling protocolisation protocolise protocolised protocolises protocolising protocolist protocolists protocolization protocolize protocolized protocolizes protocolizing protocolled protocolling protocols protoconch protoconchal protocone protoconid protocontinent protocontinents protoconule protoconulid protocopper protocorm protoctist protoctista protodeacon protoderm protodermal protoderms protodevil protodonatan protodonate protodont protodramatic protodynastic protoelastose protoepiphyte protoforaminifer protoforester protogalaxies protogalaxy protogaster protogelatose protogenal protogenes protogenesis protogenetic protogenic protogenist protogeometric protogine protogines protoglobulose protogod protogonous protogospel protograph protogynies protogynous protogyny protohematoblast protohemipteran protohemipteron protohemipterous protoheresiarch protohippus protohistorian protohistorians protohistoric protohistories protohistory protohomo protohuman protohumans protohydrogen protohymenopteran protohymenopteron protohymenopterous protoiron protolanguage protolanguages protoleration protoleucocyte protoleukocyte protolithic protoliturgic protolog protologist protoloph protoma protomagister protomagnate protomagnesium protomala protomalal protomalar protomammal protomammalian protomanganese protomartyr protomartyrs protome protomeristem protomerite protomeritic protometal protometallic protometals protometaphrast protomonostelic protomorph protomorphic protomyosinose proton protonate protonated protonates protonating protonation protonations protone protonegroid protonema protonemal protonemas protonemata protonematal protonematoid protoneme protonephridial protonephridium protonephros protoneuron protoneurone protoneutron protonic protonickel protonitrate protonotarial protonotariat protonotariats protonotaries protonotary protonotater protonotion protonotions protons protonym protonymph protonymphal protopapas protopappas protoparent protopathia protopathic protopathies protopathy protopatriarchal protopatrician protopattern protopectin protopectinase protopepsia protoperlarian protophilosophic protophloem protophloems protophyll protophyta protophyte protophytes protophytic protopin protopine protoplanet protoplanetary protoplanets protoplasm protoplasma protoplasmal protoplasmatic protoplasmic protoplasms protoplast protoplastic protoplasts protopod protopodial protopodite protopoditic protopods protopoetic protopope protoporphyrin protoporphyrins protopragmatic protopresbyter protopresbytery protoprism protoproteose protoprotestant protopteran protopteridophyte protopterous protopyramid protore protorebel protoreligious protoreptilian protores protorosaur protorosaurian protorosauroid protorthopteran protorthopteron protorthopterous protosalt protosaurian protoscientific protosilicate protosilicon protosinner protosiphonaceous protosocial protosolution protospasm protospataire protospathaire protospatharii protospatharius protospore protostar protostars protostele protosteles protostelic protostome protostomes protostrontium protosulphate protosulphide protosyntonose prototaxites prototheca protothecal prototheme protothere prototheria prototherian prototitanium prototraitor prototroch prototrochal prototroph prototrophic prototrophies prototrophs prototrophy prototypal prototype prototyped prototypes prototypic prototypical prototypically prototyping prototypographer prototyrant protovanadium protoveratrine protovertebra protovertebral protovestiary protovillain protovum protoxid protoxide protoxides protoxidize protoxidized protoxids protoxylem protoxylems protoypes protozoa protozoacidal protozoacide protozoal protozoan protozoans protozoea protozoean protozoiasis protozoic protozoological protozoologies protozoologist protozoologists protozoology protozoon protozoonal protozoons protozoulogical protozoulogist protozzoa protracheate protract protracted protractedly protractedness protractednesses protracter protractible protractile protractilities protractility protracting protraction protractions protractive protractor protractors protracts protrade protradition protraditional protragedy protragical protragie protransfer protranslation protransubstantiation protravel protreasurer protreaty protreptic protreptical protreptics protriaene protropical protrudable protrude protruded protrudent protrudes protruding protrusible protrusile protrusility protrusion protrusions protrusive protrusively protrusiveness protrusivenesses protthalli protuberance protuberances protuberancies protuberancy protuberant protuberantial protuberantly protuberantness protuberate protuberated protuberates protuberating protuberation protuberations protuberosity protuberous protura proturan protutor protutory protyl protyle protyles protylopus protyls protype protégé protégée protégées protégés proud prouder proudest proudful proudhearted proudish proudishly proudling proudly proudness proudnesses proul prouled prouler proulers prouling prouls prouniformity prounion prounionism prounionist prouniversity proust proustian proustite proustites prov provabilities provability provable provableness provablenesses provably provaccination provaccine provaccinist provand provands provant provascular prove proveable proveably provect provection provections proved proveditor proveditore proveditores proveditors provedly provedor provedore provedores provedors proven provenance provenances provencal provence provend provender provendered provendering provenders provends provene provenience proveniences provenient provenly provent proventil proventricular proventricule proventriculi proventriculus proventriculuses prover provera proverb proverbed proverbial proverbialise proverbialised proverbialises proverbialising proverbialism proverbialisms proverbialist proverbialists proverbiality proverbialize proverbialized proverbializes proverbializing proverbially proverbic proverbing proverbiologist proverbiology proverbise proverbize proverblike proverbs provers proves proviant proviants provicar provicariate providable providance provide provided providence providences provident providential providentialism providentially providently providentness provider providers provides providing providor providore providoring providors province provinces provincial provincialate provincialisation provincialisations provincialise provincialised provincialises provincialising provincialism provincialisms provincialist provincialists provincialities provinciality provincialization provincializations provincialize provincialized provincializes provincializing provincially provincials provincialship provinciate provinculum provine provined provines proving provingly provings provining proviral provirus proviruses provision provisional provisionality provisionally provisionalness provisionals provisionary provisioned provisioner provisioneress provisioners provisioning provisionless provisionment provisions provisive proviso provisoes provisor provisorily provisors provisorship provisory provisos provitamin provitamins provivisection provivisectionist provo provocable provocant provocants provocateur provocateurs provocation provocational provocations provocative provocatively provocativeness provocativenesses provocatives provocator provocators provocatory provokable provoke provoked provokee provokement provokements provoker provokers provokes provoking provokingly provokingness provola provolone provolones provolunteering provoquant provos provost provostal provostess provostorial provostries provostry provosts provostship provostships prow prowar prowarden prowaterpower prowed prower prowersite prowess prowessed prowesses prowessful prowest prowfish prowfishes prowl prowled prowler prowlers prowling prowlingly prowlings prowls prows prox proxemic proxemics proxenet proxenete proxenetism proxenos proxenus proxeny proxically proxied proxies proxima proximad proximal proximally proximate proximately proximateness proximatenesses proximation proximations proxime proximities proximity proximo proximobuccal proximolabial proximolingual proxy proxying proxyship proxysm proyn proyne proyned proynes proyning proyns prozac prozone prozoning prozygapophysis prozymite prozymites prp prs prude prudelike prudely prudence prudences prudent prudential prudentialism prudentialisms prudentialist prudentialists prudentialities prudentiality prudentially prudentialness prudentials prudently pruderies prudery prudes prudhomme prudhommes prudish prudishly prudishness prudishnesses prudist prudity pruh pruhs pruigo pruina pruinas pruinate pruine pruines pruinescence pruinose pruinous prulaurasin prumnopitys prunability prunable prunableness prunably prunase prunasin prune pruned prunell prunella prunellas prunelle prunelles prunellidae prunello prunellos pruner pruners prunes prunetin prunetol pruniferous pruniform pruning prunings prunitrin prunt prunted prunts prunus prunuses prurience pruriences pruriencies pruriency prurient pruriently pruriginous prurigo prurigos pruriousness pruritic pruritus prurituses prusiano prusik prusiked prusiking prusiks prussia prussian prussianisation prussianise prussianised prussianiser prussianises prussianising prussianism prussianization prussianizations prussianize prussianized prussianizer prussianizes prussianizing prussians prussiate prussiates prussic prussin prussine prut pruta prutah prutenic prutot prutoth pry pryer pryers prying pryingly pryingness pryings pryler pryproof prys pryse prysed pryses prysing prytanea prytaneum prytanis prytanize prytany prythee prythees précieuse précieuses précis précised précising ps psaligraphies psaligraphy psalis psalloid psalm psalmbook psalmbooks psalmed psalmic psalming psalmist psalmister psalmistry psalmists psalmless psalmodial psalmodic psalmodical psalmodies psalmodise psalmodised psalmodises psalmodising psalmodist psalmodists psalmodize psalmodized psalmodizes psalmodizing psalmody psalmograph psalmographer psalmography psalms psalmy psaloid psalter psalterer psalteria psalterial psalterian psalteries psalterion psalterist psalterium psalters psaltery psaltes psalteteria psaltress psaltresses psaltries psaltriparus psaltry psammead psammite psammites psammitic psammocarcinoma psammocharid psammogenous psammolithic psammologist psammology psammoma psammon psammons psammophil psammophile psammophiles psammophilous psammophils psammophyte psammophytes psammophytic psammosarcoma psammosere psammotherapy psammous psarolite pschent pschents psec psellism psellisms psellismus psellismuses psend psenes psephism psephisma psephisms psephite psephites psephitic psephoanalyses psephoanalysis psephological psephologically psephologies psephologist psephologists psephology psephomancy psephurus psetta psettichthys pseud pseudaconin pseudaconine pseudaconitine pseudacris pseudacusis pseudaesthesia pseudaesthesias pseudaletia pseudalveolar pseudambulacral pseudambulacrum pseudamoeboid pseudamphora pseudamphorae pseudandry pseudangina pseudankylosis pseudaphia pseudaposematic pseudaposporous pseudapospory pseudapostle pseudarachnidan pseudarthrosis pseudataxic pseudatoll pseudaxes pseudaxine pseudaxis pseudechis pseudelephant pseudelminth pseudelytron pseudembryo pseudembryonic pseudemys pseudencephalic pseudencephalus pseudepigraph pseudepigrapha pseudepigraphal pseudepigraphic pseudepigraphical pseudepigraphies pseudepigraphon pseudepigraphous pseudepigraphs pseudepigraphy pseudepiploic pseudepiploon pseudepiscopacy pseudepiscopy pseudepisematic pseuderies pseudery pseudesthesia pseudhaemal pseudhalteres pseudhemal pseudimaginal pseudimagines pseudimago pseudimagoes pseudimagos pseudish pseudisodomic pseudisodomum pseudo pseudoacaccia pseudoacacia pseudoacademic pseudoacademical pseudoacademically pseudoaccidental pseudoaccidentally pseudoacid pseudoacids pseudoaconitine pseudoacquaintance pseudoacromegaly pseudoadiabatic pseudoaesthetic pseudoaesthetically pseudoaffectionate pseudoaffectionately pseudoaggressive pseudoaggressively pseudoalkaloid pseudoallegoristic pseudoallele pseudoalleles pseudoallelic pseudoallelism pseudoalum pseudoalveolar pseudoamateurish pseudoamateurishly pseudoamateurism pseudoamatorial pseudoamatory pseudoambidextrous pseudoambidextrously pseudoameboid pseudoanachronistic pseudoanachronistical pseudoanaemia pseudoanaemic pseudoanaphylactic pseudoanaphylaxis pseudoanarchistic pseudoanatomic pseudoanatomical pseudoanatomically pseudoancestral pseudoancestrally pseudoanemia pseudoanemic pseudoangelic pseudoangelical pseudoangelically pseudoangina pseudoangular pseudoangularly pseudoankylosis pseudoanthorine pseudoanthropoid pseudoanthropological pseudoanthropology pseudoantique pseudoapologetic pseudoapologetically pseudoapoplectic pseudoapoplectical pseudoapoplectically pseudoapoplexy pseudoappendicitis pseudoapplicative pseudoapprehensive pseudoapprehensively pseudoaquatic pseudoarchaic pseudoarchaically pseudoarchaism pseudoarchaist pseudoaristocratic pseudoaristocratical pseudoaristocratically pseudoarthrosis pseudoarticulate pseudoarticulately pseudoarticulation pseudoartistic pseudoartistically pseudoascetic pseudoascetical pseudoascetically pseudoassertive pseudoassertively pseudoassociational pseudoastringent pseudoasymmetric pseudoasymmetrical pseudoasymmetrically pseudoasymmetry pseudoataxia pseudobacterium pseudobankrupt pseudobaptismal pseudobasidium pseudobchia pseudobenefactory pseudobenevolent pseudobenevolently pseudobenthonic pseudobenthos pseudobia pseudobinary pseudobiographic pseudobiographical pseudobiographically pseudobiological pseudobiologically pseudoblepsia pseudoblepsis pseudobombax pseudobrachia pseudobrachial pseudobrachium pseudobranch pseudobranchia pseudobranchial pseudobranchiate pseudobrookite pseudobrotherly pseudobulb pseudobulbar pseudobulbil pseudobulbous pseudobulbs pseudobutylene pseudocandid pseudocandidly pseudocapitulum pseudocaptive pseudocarbamide pseudocarcinoid pseudocarp pseudocarpous pseudocarps pseudocartilaginous pseudocatholically pseudocele pseudocelian pseudocelic pseudocellus pseudocelom pseudocentric pseudocentrous pseudocentrum pseudoceratitic pseudocercaria pseudocercariae pseudocercerci pseudocerci pseudocercus pseudoceryl pseudocharitable pseudocharitably pseudochemical pseudochina pseudocholinesterase pseudocholinesterases pseudochromesthesia pseudochromia pseudochromosome pseudochronism pseudochronologist pseudochrysalis pseudochrysolite pseudochylous pseudocirrhosis pseudoclassic pseudoclassical pseudoclassicality pseudoclassicism pseudoclassicisms pseudoclassics pseudoclerical pseudoclerically pseudococcidae pseudococcus pseudococtate pseudocode pseudocodes pseudocoel pseudocoele pseudocoelom pseudocoelomate pseudocoelomates pseudocoelome pseudocoeloms pseudocoels pseudocollegiate pseudocolumella pseudocolumellar pseudocolus pseudocommissural pseudocommissure pseudocommisural pseudocompetitive pseudocompetitively pseudoconcha pseudoconclude pseudocone pseudoconfessional pseudoconglomerate pseudoconglomeration pseudoconhydrine pseudoconjugation pseudoconservative pseudoconservatively pseudocorneous pseudocortex pseudocosta pseudocotyledon pseudocotyledonal pseudocotyledonary pseudocourteous pseudocourteously pseudocritical pseudocritically pseudocroup pseudocrystalline pseudocubic pseudocubical pseudocubically pseudocultivated pseudocultural pseudoculturally pseudocumene pseudocumenyl pseudocumidine pseudocumyl pseudocyclosis pseudocyeses pseudocyesis pseudocyphella pseudocyst pseudodeltidium pseudodementia pseudodemocratic pseudodemocratically pseudoderm pseudodermic pseudodevice pseudodiagnosis pseudodiastolic pseudodiphtheria pseudodiphtherial pseudodiphtheric pseudodiphtheritic pseudodipteral pseudodipterally pseudodipteros pseudodivine pseudodont pseudodox pseudodoxal pseudodoxy pseudodramatic pseudodramatically pseudodysentery pseudoeconomical pseudoeconomically pseudoedema pseudoedemata pseudoeditorial pseudoeditorially pseudoeducational pseudoeducationally pseudoelectoral pseudoelephant pseudoembryo pseudoembryonic pseudoemotional pseudoemotionally pseudoencephalitic pseudoenthusiastic pseudoenthusiastically pseudoephedrine pseudoephedrines pseudoepiscopal pseudoequalitarian pseudoerotic pseudoerotically pseudoeroticism pseudoerysipelas pseudoerysipelatous pseudoerythrin pseudoethical pseudoethically pseudoetymological pseudoetymologically pseudoeugenics pseudoevangelic pseudoevangelical pseudoevangelically pseudoexperimental pseudoexperimentally pseudofaithful pseudofaithfully pseudofamous pseudofamously pseudofarcy pseudofatherly pseudofeminine pseudofever pseudofeverish pseudofeverishly pseudofilaria pseudofilarian pseudofiles pseudofinal pseudofinally pseudofluctuation pseudofluorescence pseudofoliaceous pseudofolliculitis pseudofolliculitises pseudoform pseudofossil pseudogalena pseudoganglion pseudogaseous pseudogaster pseudogastrula pseudogene pseudogenera pseudogeneral pseudogeneric pseudogenerical pseudogenerically pseudogenerous pseudogenes pseudogenteel pseudogentlemanly pseudogenus pseudogenuses pseudogeometry pseudogermanic pseudogeusia pseudogeustia pseudoglanders pseudoglioma pseudoglobulin pseudoglottis pseudograph pseudographeme pseudographer pseudographia pseudographies pseudographise pseudographize pseudographs pseudography pseudograsserie pseudogyne pseudogynous pseudogyny pseudogyrate pseudohallucination pseudohallucinatory pseudohalogen pseudohemal pseudohemophilia pseudohermaphrodism pseudohermaphrodite pseudohermaphrodites pseudohermaphroditic pseudohermaphroditism pseudohermaphroditisms pseudoheroic pseudoheroical pseudoheroically pseudohexagonal pseudohexagonally pseudohistoric pseudohistorical pseudohistorically pseudoholoptic pseudohuman pseudohumanistic pseudohydrophobia pseudohyoscyamine pseudohypertrophic pseudohypertrophy pseudoidentical pseudoimpartial pseudoimpartially pseudoindependent pseudoindependently pseudoinfluenza pseudoinsane pseudoinsoluble pseudoinspirational pseudoinspiring pseudoinstruction pseudoinstructions pseudointellectual pseudointellectually pseudointellectuals pseudointernational pseudointernationalistic pseudoinvalid pseudoinvalidly pseudoisatin pseudoism pseudoisomer pseudoisomeric pseudoisomerism pseudoisometric pseudoisotropy pseudojervine pseudolabia pseudolabial pseudolabium pseudolalia pseudolamellibranchiate pseudolaminated pseudolarix pseudolateral pseudolatry pseudolegal pseudolegality pseudolegendary pseudolegislative pseudoleucite pseudoleucocyte pseudoleukemia pseudoleukemic pseudoliberal pseudoliberally pseudolichen pseudolinguistic pseudolinguistically pseudoliterary pseudolobar pseudologia pseudologias pseudological pseudologically pseudologies pseudologist pseudologue pseudologues pseudology pseudolunula pseudolunulae pseudolunule pseudomalachite pseudomalaria pseudomancy pseudomania pseudomaniac pseudomantic pseudomantist pseudomartyr pseudomartyrs pseudomasculine pseudomedical pseudomedically pseudomedieval pseudomedievally pseudomelanosis pseudomembrane pseudomembranes pseudomembranous pseudomemory pseudomeningitis pseudomenstruation pseudomer pseudomeric pseudomerism pseudomery pseudometallic pseudometameric pseudometamerism pseudometric pseudomica pseudomilitarily pseudomilitarist pseudomilitaristic pseudomilitary pseudoministerial pseudoministry pseudomiraculous pseudomiraculously pseudomitotic pseudomnesia pseudomodern pseudomodest pseudomodestly pseudomonad pseudomonadales pseudomonades pseudomonads pseudomonas pseudomonastic pseudomonastical pseudomonastically pseudomonoclinic pseudomonocotyledonous pseudomonocyclic pseudomonodaceae pseudomonotropy pseudomoral pseudomoralistic pseudomorph pseudomorphia pseudomorphic pseudomorphine pseudomorphism pseudomorphisms pseudomorphose pseudomorphosis pseudomorphous pseudomorphs pseudomorula pseudomorular pseudomucin pseudomucoid pseudomultilocular pseudomultiseptate pseudomutuality pseudomycelial pseudomycelium pseudomythical pseudomythically pseudonarcotic pseudonational pseudonationally pseudonavicella pseudonavicellar pseudonavicula pseudonavicular pseudoneuropter pseudoneuropteran pseudoneuropterous pseudonitrol pseudonitrole pseudonitrosite pseudonoble pseudonuclein pseudonucleolus pseudonychium pseudonym pseudonymal pseudonymic pseudonymities pseudonymity pseudonymous pseudonymously pseudonymousness pseudonymousnesses pseudonyms pseudonymuncle pseudonymuncule pseudoobscura pseudooccidental pseudooedema pseudoofficial pseudoofficially pseudoorganic pseudoorganically pseudooriental pseudoorientally pseudoorthorhombic pseudooval pseudoovally pseudopagan pseudopapal pseudopapaverine pseudoparallel pseudoparallelism pseudoparalyses pseudoparalysis pseudoparalytic pseudoparaplegia pseudoparasitic pseudoparasitism pseudoparenchyma pseudoparenchymas pseudoparenchymata pseudoparenchymatous pseudoparenchyme pseudoparesis pseudoparthenogenesis pseudopatriotic pseudopatriotically pseudopediform pseudopelletierine pseudopercular pseudoperculate pseudoperculum pseudoperianth pseudoperidium pseudoperiodic pseudoperipteral pseudoperipteros pseudopermanent pseudoperoxide pseudoperspective pseudophallic pseudophellandrene pseudophenanthrene pseudophenanthroline pseudophenocryst pseudophilanthropic pseudophilanthropical pseudophilanthropically pseudophilosophical pseudophloem pseudophone pseudopionnotes pseudopious pseudopiously pseudoplasm pseudoplasma pseudoplasmodium pseudopleuronectes pseudopneumonia pseudopod pseudopodal pseudopode pseudopodia pseudopodial pseudopodian pseudopodic pseudopodiospore pseudopodium pseudopods pseudopoetic pseudopoetical pseudopolitic pseudopolitical pseudopopular pseudopore pseudoporphyritic pseudopregnancies pseudopregnancy pseudopregnant pseudopriestly pseudoprimitive pseudoprimitivism pseudoprincely pseudoproboscis pseudoprofessional pseudoprofessorial pseudoprophetic pseudoprophetical pseudoprosperous pseudoprosperously pseudoprostyle pseudopsia pseudopsychological pseudoptics pseudoptosis pseudopupa pseudopupal pseudopurpurin pseudopyriform pseudoquinol pseudorabies pseudoracemic pseudoracemism pseudoramose pseudoramulus pseudorandom pseudorealistic pseudoreduction pseudoreformatory pseudoreformed pseudoregal pseudoregally pseudoreligious pseudoreligiously pseudoreminiscence pseudorepublican pseudoresident pseudoresidential pseudorganic pseudorheumatic pseudorhombohedral pseudoromantic pseudoromantically pseudoroyal pseudoroyally pseudorunic pseudoryx pseudos pseudosacred pseudosacrilegious pseudosacrilegiously pseudosalt pseudosatirical pseudosatirically pseudoscalar pseudoscarlatina pseudoscholarly pseudoscholastic pseudoscholastically pseudoscience pseudosciences pseudoscientific pseudoscientifically pseudoscientist pseudoscientists pseudoscinine pseudosclerosis pseudoscope pseudoscopes pseudoscopic pseudoscopically pseudoscopy pseudoscorpion pseudoscorpiones pseudoscorpionida pseudoscorpions pseudoscutum pseudosemantic pseudosemantically pseudosematic pseudosensational pseudoseptate pseudoservile pseudoservilely pseudosessile pseudosiphonal pseudosiphonic pseudosiphuncal pseudoskeletal pseudoskeleton pseudoskink pseudosmia pseudosocial pseudosocialistic pseudosocially pseudosolution pseudosolutions pseudosoph pseudosopher pseudosophical pseudosophist pseudosophisticated pseudosophistication pseudosophistications pseudosophy pseudospectral pseudosperm pseudospermic pseudospermium pseudospermous pseudosphere pseudospherical pseudospiracle pseudospiritual pseudospiritually pseudosporangium pseudospore pseudosquamate pseudostalactite pseudostalactitic pseudostalactitical pseudostalagmite pseudostalagmitic pseudostalagmitical pseudostereoscope pseudostereoscopic pseudostereoscopism pseudostigma pseudostigmatic pseudostoma pseudostomatous pseudostomous pseudostratum pseudostudious pseudostudiously pseudosubtle pseudosubtly pseudosuchian pseudosuicidal pseudosweating pseudosyllogism pseudosymmetric pseudosymmetrical pseudosymmetries pseudosymmetry pseudosymptomatic pseudosyphilis pseudosyphilitic pseudotabes pseudotachylite pseudotaxus pseudotetanus pseudotetragonal pseudotetrameral pseudotetramerous pseudotrachea pseudotracheal pseudotribal pseudotribally pseudotributary pseudotrimeral pseudotrimerous pseudotripteral pseudotropine pseudotsuga pseudotubercular pseudotuberculoses pseudotuberculosis pseudotuberculous pseudoturbinal pseudotyphoid pseudoval pseudovarian pseudovaries pseudovary pseudovelar pseudovelum pseudoventricle pseudoviaduct pseudoviperine pseudoviperous pseudoviperously pseudoviscosity pseudoviscous pseudovolcanic pseudovolcano pseudovum pseudowhorl pseudowintera pseudoxanthine pseudoyohimbine pseudozealot pseudozealous pseudozealously pseudozoea pseudozoogloeal pseudozoological pseuds pseudy psf psha pshaw pshawed pshawing pshaws psi psia psid psidium psig psilanthropic psilanthropies psilanthropism psilanthropisms psilanthropist psilanthropists psilanthropy psilatro psiloceran psiloceratan psiloceratid psilocin psilocins psilocybin psilocybins psiloi psilology psilomelane psilomelanes psilomelanic psilophytaceae psilophytales psilophyte psilophytes psilophytic psilophyton psilopsida psiloses psilosis psilosopher psilosophy psilotaceae psilotaceous psilotales psilotatae psilothrum psilotic psilotum psion psionic psionics psions psis psithurism psithyrus psittaceous psittaceously psittacidae psittaciformes psittacine psittacines psittacinite psittacism psittacistic psittacomorphic psittacosaur psittacosaurus psittacoses psittacosis psittacotic psittacula psittacus psize psoadic psoae psoai psoas psoases psoatic psocid psocidae psocids psocine psocoptera psoitis psomophagic psomophagist psomophagy psophia psophiidae psophocarpus psora psoralea psoraleas psoralen psoralens psoras psoriases psoriasic psoriasiform psoriasis psoriasises psoriatic psoriatics psoriatiform psoric psoroid psorophthalmia psorophthalmic psoroptic psorosis psorosperm psorospermial psorospermiasis psorospermic psorospermiform psorospermosis psorous psovie pssimistical psst pssts pst psts psuedo psw psych psychagogic psychagogos psychagogue psychagogues psychagogy psychal psychalgia psychanalysis psychanalysist psychanalytic psychanalytically psychasthenia psychasthenias psychasthenic psychasthenics psychataxia psyche psyched psychedelia psychedelias psychedelic psychedelically psychedelics psycheometry psyches psychesthesia psychesthetic psychiasis psychiater psychiaters psychiatria psychiatric psychiatrical psychiatrically psychiatries psychiatrist psychiatrists psychiatrize psychiatry psychic psychical psychically psychicism psychicisms psychicist psychicists psychics psychid psyching psychism psychisms psychist psychists psycho psychoacoustic psychoacoustical psychoacoustics psychoactive psychoanal psychoanalyse psychoanalysed psychoanalyser psychoanalyses psychoanalysing psychoanalysis psychoanalyst psychoanalysts psychoanalytic psychoanalytical psychoanalytically psychoanalyze psychoanalyzed psychoanalyzer psychoanalyzes psychoanalyzing psychoautomatic psychobabble psychobabbler psychobabblers psychobabbles psychobiochemistry psychobiographer psychobiographers psychobiographical psychobiographies psychobiography psychobiologic psychobiological psychobiologically psychobiologies psychobiologist psychobiologists psychobiology psychobiotic psychocatharsis psychochemical psychochemicals psychochemist psychochemistries psychochemistry psychoclinic psychoclinical psychoclinicist psychodelia psychodelias psychodelic psychodiagnosis psychodiagnostic psychodiagnostics psychodid psychodidae psychodispositional psychodrama psychodramas psychodramatic psychodynamic psychodynamically psychodynamics psychoeducational psychoepilepsy psychoethical psychofugal psychogalvanic psychogalvanometer psychogas psychogases psychogeneses psychogenesis psychogenetic psychogenetical psychogenetically psychogenetics psychogenic psychogenically psychogeny psychogeriatric psychogeriatrician psychogeriatricians psychogeriatrics psychognosis psychognostic psychognosy psychogonic psychogonical psychogonies psychogony psychogram psychograms psychograph psychographer psychographic psychographical psychographically psychographics psychographies psychographist psychographs psychography psychohistorian psychohistorians psychohistorical psychohistories psychohistory psychoid psychoids psychokineses psychokinesia psychokinesis psychokinetic psychokyme psychol psycholepsy psycholeptic psycholinguist psycholinguistic psycholinguistics psycholinguists psychologer psychologian psychologic psychological psychologically psychologics psychologies psychologise psychologised psychologises psychologising psychologism psychologisms psychologist psychologistic psychologists psychologize psychologized psychologizer psychologizers psychologizes psychologizing psychologue psychology psychomachy psychomancy psychomantic psychometer psychometers psychometric psychometrical psychometrically psychometrician psychometricians psychometrics psychometries psychometrist psychometrists psychometrize psychometry psychomonism psychomoral psychomorphic psychomorphism psychomotility psychomotor psychon psychoneural psychoneuroimmunological psychoneuroimmunologies psychoneuroimmunologist psychoneuroimmunologists psychoneuroimmunology psychoneurological psychoneuroses psychoneurosis psychoneurotic psychoneurotics psychonomic psychonomics psychonomy psychony psychoorganic psychopannychian psychopannychism psychopannychisms psychopannychist psychopannychistic psychopannychists psychopannychy psychopanychite psychopath psychopathia psychopathic psychopathically psychopathics psychopathies psychopathist psychopathists psychopathologic psychopathological psychopathologically psychopathologies psychopathologist psychopathologists psychopathology psychopaths psychopathy psychopetal psychopharmacologic psychopharmacological psychopharmacologies psychopharmacologist psychopharmacologists psychopharmacology psychophilies psychophily psychophobia psychophonasthenia psychophysic psychophysical psychophysically psychophysicist psychophysicists psychophysics psychophysiologic psychophysiological psychophysiologically psychophysiologies psychophysiologist psychophysiologists psychophysiology psychoplasm psychopomp psychopompos psychopomps psychoprophylactic psychoprophylaxes psychoprophylaxis psychopsis psychoquackeries psychorealism psychorealist psychorealistic psychoreflex psychorhythm psychorhythmia psychorhythmic psychorhythmical psychorhythmically psychorrhagic psychorrhagy psychos psychosarcous psychosensorial psychosensory psychoses psychosexual psychosexualities psychosexuality psychosexually psychosis psychosocial psychosocially psychosociology psychosomatic psychosomatically psychosomatics psychosome psychosomimetic psychosophy psychostasy psychostatic psychostatical psychostatically psychostatics psychosurgeon psychosurgeons psychosurgeries psychosurgery psychosurgical psychosyntheses psychosynthesis psychosynthetic psychotaxis psychotechnical psychotechnician psychotechnics psychotechnological psychotechnologist psychotechnology psychotheism psychotheist psychotherapeutic psychotherapeutical psychotherapeutically psychotherapeutics psychotherapeutist psychotherapies psychotherapist psychotherapists psychotherapy psychotic psychotically psychoticism psychoticisms psychotics psychotogen psychotogenic psychotomimetic psychotomimetically psychotomimetics psychotoxic psychotria psychotrine psychotropic psychotropics psychovital psychroesthesia psychrograph psychrometer psychrometers psychrometric psychrometrical psychrometries psychrometry psychrophile psychrophiles psychrophilic psychrophobia psychrophore psychrophyte psychrotherapies psychs psychurgy psycter psykter psykters psylla psyllas psyllid psyllidae psyllids psyllium psylliums psyop psyops psywar psywars pt pta ptah ptarmic ptarmical ptarmics ptarmigan ptarmigans pte ptenoglossate pteranodon pteranodons pteranodont pteraspid ptereal pterergate pteretis pteria pteric pterichthys pteridaceae pterideous pteridine pteridines pteridium pteridography pteridoid pteridological pteridologies pteridologist pteridologists pteridology pteridomania pteridomanias pteridophilism pteridophilist pteridophilistic pteridophilists pteridophyta pteridophyte pteridophytes pteridophytic pteridophytous pteridosperm pteridospermae pteridospermaphyta pteridospermaphytic pteridospermopsida pteridospermous pteridosperms pteriidae pterin pterins pterion pteris pterna pternohyla pterobranchiate pterocarpous pterocarpus pterocarya pterocles pteroclididae pteroclomorphic pterocnemia pterodactyl pterodactyle pterodactyles pterodactylian pterodactylic pterodactylid pterodactylidae pterodactyloid pterodactylous pterodactyls pterodactylus pterographer pterographic pterographical pterography pteroid pterois pteroma pteromalid pteromata pteron pteronophobia pteropaedes pteropaedic pteropegal pteropegous pteropegum pterophorid pteropid pteropine pteropod pteropodal pteropodan pteropodans pteropodial pteropodium pteropodous pteropods pteropogon pteropsida pteropus pterosaur pterosauria pterosaurian pterosaurians pterosaurs pterospermous pterospermum pterostigma pterostigmal pterostigmatic pterostigmatical pterostylis pterotheca pterothorax pterotic pteroylglutamic pteroylmonogl pterygia pterygial pterygials pterygiophore pterygium pterygiums pterygobranchiate pterygode pterygodum pterygoid pterygoidal pterygoidean pterygoids pterygomalar pterygomandibular pterygomaxillary pterygopalatal pterygopalatine pterygopharyngeal pterygopharyngean pterygophore pterygopodium pterygoquadrate pterygosphenoid pterygospinous pterygostaphyline pterygote pterygotous pterygotrabecular pteryla pterylae pterylographic pterylographical pterylographically pterylographies pterylography pterylological pterylology pteryloses pterylosis pteryographical pteryrygia ptg ptilinal ptilinum ptilocercus ptilocrinus ptilonorhynchidae ptilonorhynchus ptilopaedes ptilopaedic ptiloses ptilosis ptinid ptinoid ptisan ptisans ptloris ptochocracies ptochocracy ptochogony ptochology ptolemaean ptolemaic ptolemaist ptolemy ptomain ptomaine ptomaines ptomainic ptomains ptomatropine ptooey ptoses ptosis ptotic ptp pts ptsd ptt ptts ptui pty ptyalagogic ptyalagogue ptyalagogues ptyalectases ptyalectasis ptyalin ptyalins ptyalise ptyalised ptyalises ptyalising ptyalism ptyalisms ptyalize ptyalized ptyalizes ptyalizing ptyalocele ptyalogenic ptyalolith ptyalolithiasis ptyalorrhea ptyas ptychoparid ptychopariid ptychopterygial ptychopterygium ptychozoon ptysmagogue ptyxes ptyxis ptyxises pu pua puan pub pubal pubbed pubbing pubble puberal pubertal pubertic puberties puberty puberulent puberulous pubes pubescence pubescences pubescency pubescent pubian pubic pubigerous pubiotomy pubis pubises publ public publica publicae publically publican publicanism publicans publicate publication publicational publications publice publichearted publicheartedness publici publicise publicised publicises publicising publicism publicist publicists publicities publicity publicization publicize publicized publicizer publicizes publicizing publicly publicness publicnesses publics publicum publicute publish publishable published publisher publisheress publishers publishership publishes publishing publishings publishment publishments pubococcygeal pubofemoral puboiliac puboischiac puboischial puboischiatic puboprostatic puborectalis pubotibial pubourethral pubovesical pubs puca puccini puccinia pucciniaceae pucciniaceous puccinoid puccoon puccoons puce pucelage pucelages pucellage pucellas pucelle pucelles pucer puceron puces pucest puchera pucherite puchero puck pucka puckball pucked pucker puckerbush puckered puckerel puckerer puckerers puckerier puckeriest puckering puckermouth puckers puckery puckfist puckfists puckfoist pucking puckish puckishly puckishness puckishnesses puckle puckles pucklike puckling puckneedle puckrel pucks pucksey puckster pud pudda puddee pudden puddening puddenings puddens pudder puddered puddering pudders puddies pudding puddingberry puddingface puddinghead puddingheaded puddinghouse puddinglike puddings puddingstone puddingstones puddingwife puddingwives puddingy puddle puddleball puddlebar puddled puddlelike puddler puddlers puddles puddlier puddliest puddling puddlings puddly puddock puddocks puddy pudencies pudency pudenda pudendal pudendous pudendum pudent pudge pudges pudgier pudgiest pudgily pudginess pudginesses pudgy pudiano pudibund pudibundities pudibundity pudic pudical pudicitia pudicities pudicity pudor pudors puds pudsey pudsier pudsiest pudsy pudu pudus pueblito pueblo puebloisation puebloise puebloization puebloize pueblos puer pueraria puered puerer puericulture puerile puerilely puerileness puerilism puerilisms puerilities puerility puering puerman puerpera puerperae puerperal puerperalism puerperally puerperant puerperia puerperium puerperiums puerperous puerpery puers puerto puff puffback puffball puffballs puffbird puffbirds puffed puffer pufferies puffers puffery puffier puffiest puffily puffin puffiness puffinesses puffinet puffing puffingl puffingly puffings puffins puffinus pufflet puffs pufftaloona pufftaloonas pufftaloony pufftn puffwig puffy puftaloon puftaloonies puftaloons pug pugaree pugarees pugdog pugenello puget puggaree puggarees pugged pugger puggeries puggery puggi puggie puggier puggies puggiest pugginess pugging puggings puggish puggle puggled puggles puggling puggree puggrees puggries puggry puggy pugh pughs pugil pugilant pugilism pugilisms pugilist pugilistic pugilistical pugilistically pugilists pugils puglia puglianite pugman pugmark pugmarks pugmill pugmiller pugnacious pugnaciously pugnaciousness pugnaciousnesses pugnacities pugnacity pugree pugrees pugs puh puir puirer puirest puirness puirtith puisne puisnes puisny puissance puissances puissant puissantly puissantness puissaunce puissaunces puissaunt puist puistie puja pujah pujahs pujari pujas pujunan puka pukatea pukateine puke puked pukeka pukeko pukekos puker pukers pukes pukeweed puking pukish pukishness pukka pukras puku pukus puky pul pula pulahan pulahanes pulahanism pulajan pulas pulasan pulaskite pulassan pulchrify pulchritude pulchritudes pulchritudinous puldron puldrons pule puled pulegol pulegone puler pulers pules pulex puleyn pulgada pulghere puli pulicaria pulicarious pulicat pulicate pulicene pulicid pulicidae pulicidal pulicide pulicides pulicine pulicoid pulicose pulicosity pulicous pulier puliest pulijan pulik puling pulingly pulings puliol pulis pulish pulitzer pulk pulka pulkas pulkha pulkhas pulks pull pullable pullaile pullalue pullback pullbacks pullboat pulldevil pulldoo pulldown pulldrive pulled pullen puller pulleries pullers pullery pullet pullets pulley pulleyless pulleys pulli pullicat pullicate pulling pullings pullisee pullman pullmans pullock pullorum pullout pullouts pullover pullovers pulls pullshovel pullulant pullulate pullulated pullulates pullulating pullulation pullulations pullulative pullup pullups pullus pulment pulmo pulmobranch pulmobranches pulmobranchia pulmobranchial pulmobranchiate pulmobranchs pulmocardiac pulmocutaneous pulmogastric pulmometer pulmometry pulmonal pulmonar pulmonaria pulmonarian pulmonary pulmonata pulmonate pulmonated pulmonates pulmonectomies pulmonectomy pulmones pulmonic pulmonical pulmonics pulmonifer pulmoniferous pulmonitis pulmotor pulmotors pulmotracheal pulmotracheary pulmotracheate pulp pulpaceous pulpal pulpalgia pulpally pulpamenta pulpar pulpatone pulpatoon pulpboard pulpboards pulpectomy pulped pulpefaction pulper pulperia pulpers pulpier pulpiest pulpification pulpified pulpifier pulpifies pulpify pulpifying pulpily pulpiness pulpinesses pulping pulpit pulpital pulpitarian pulpited pulpiteer pulpiteers pulpiter pulpiters pulpitful pulpitic pulpitical pulpitically pulpitis pulpitise pulpitish pulpitism pulpitize pulpitless pulpitly pulpitolatry pulpitries pulpitry pulpits pulpitum pulpitums pulpless pulplike pulpmill pulpmills pulpotomy pulpous pulpousness pulps pulpstone pulpstones pulpwood pulpwoods pulpy pulque pulques puls pulsant pulsar pulsars pulsatance pulsatances pulsate pulsated pulsates pulsatile pulsatility pulsatilla pulsating pulsation pulsational pulsations pulsative pulsatively pulsator pulsators pulsatory pulse pulsebeat pulsed pulsejet pulsejets pulseless pulselessly pulselessness pulselessnesses pulselike pulsellum pulser pulsers pulses pulsidge pulsidges pulsific pulsimeter pulsimeters pulsing pulsion pulsions pulsive pulsojet pulsojets pulsometer pulsometers pulsus pultaceous pultan pultans pulton pultons pultoon pultoons pultost pultrusion pultrusions pultun pultuns pulture pultures pulu pulus pulv pulver pulverable pulverableness pulveraceous pulverant pulverate pulverated pulverating pulveration pulverations pulvered pulvereous pulverescent pulverin pulverine pulverines pulvering pulverisable pulverisation pulverisations pulverise pulverised pulveriser pulverisers pulverises pulverising pulverizable pulverizate pulverization pulverizations pulverizator pulverize pulverized pulverizer pulverizers pulverizes pulverizing pulverous pulvers pulverulence pulverulences pulverulent pulverulently pulvic pulvil pulvilio pulvilios pulvilised pulvilized pulvillar pulville pulvilled pulvilles pulvilli pulvilliform pulvilling pulvillio pulvillios pulvillus pulvils pulvinar pulvinarian pulvinars pulvinate pulvinated pulvinately pulvination pulvini pulvinic pulviniform pulvinni pulvino pulvinule pulvinules pulvinulus pulvinus pulviplume pulwar pulwars puly puma pumas pumelo pumelos pumex pumicate pumicated pumicates pumicating pumice pumiced pumiceous pumicer pumicers pumices pumiciform pumicing pumicite pumicites pumicose pumie pumies pummel pummeled pummeling pummelled pummelling pummelo pummelos pummels pummice pump pumpable pumpage pumped pumpellyite pumper pumpernickel pumpernickels pumpers pumpet pumphandle pumphood pumphoods pumping pumpion pumpions pumpkin pumpkinification pumpkinify pumpkinish pumpkinity pumpkins pumpkinseed pumpkinseeds pumpknot pumple pumpless pumplike pumpman pumpmen pumps pumpsman pumpwell pumpwright pumy pun puna punaise punalua punaluan punaluas punamu punas punatoo punce punced punces punch punchable punchayet punchbag punchbags punchball punchballs punchboard punchboards punchbowl punched puncheon puncheons puncher punchers punches punchier punchiest punchily punchinello punchinellos punchiness punchinesses punching punchless punchlike punchline punchlines punchproof punchy puncing punct puncta punctal punctate punctated punctatim punctation punctations punctator punctators puncticular puncticulate puncticulose punctiform punctiliar punctilio punctiliomonger punctilios punctiliosity punctilious punctiliously punctiliousness punctiliousnesses punction punctist puncto punctographic punctos punctual punctualist punctualists punctualities punctuality punctually punctualness punctualnesses punctuate punctuated punctuates punctuating punctuation punctuational punctuationist punctuationists punctuations punctuative punctuator punctuators punctuist punctulate punctulated punctulation punctulations punctule punctules punctulum punctum puncturable puncturation puncturations puncture punctured punctureless punctureproof puncturer puncturers punctures puncturing punctus pundigrion pundigrions pundit pundita punditic punditically punditries punditry pundits pundonor pundonores pundum puneca punese pung punga pungapung pungar pungas pungence pungences pungencies pungency pungent pungently punger pungey pungi pungie pungies pungle pungled pungles pungling pungs pungy pungyi punic punica punicaceae punicaceous puniceous punicial punicin punicine punier puniest punily puniness puninesses punish punishabilities punishability punishable punishableness punishably punished punisher punishers punishes punishing punishingly punishment punishmentproof punishments punition punitional punitionally punitions punitive punitively punitiveness punitivenesses punitorily punitory punitur punjab punjabi punji punjis punjum punk punka punkah punkahs punkas punker punkers punkest punketto punkey punkeys punkie punkier punkies punkiest punkiness punkinesses punkish punkling punks punkt punkwood punky punless punlet punnable punnage punned punner punners punnet punnets punnic punnical punnier punniest punnigram punning punningly punnings punnology punny punproof puns punster punsters punstress punt punta puntabout puntal puntat puntats punted puntee puntees puntel puntello punter punters punti punties puntil puntilla puntillas puntillero punting puntist punto puntos puntout punts puntsman puntsmen punty puny punyish punyism punyship pup pupa pupae pupahood pupal puparia puparial puparium pupas pupate pupated pupates pupating pupation pupations pupelo pupfish pupfishes pupiferous pupiform pupigenous pupigerous pupil pupilabilities pupilability pupilage pupilages pupilar pupilarity pupilary pupilate pupildom pupiled pupilise pupilize pupillage pupillages pupillar pupillarities pupillarity pupillary pupillate pupilled pupilless pupillize pupillometer pupillometries pupillometry pupillonian pupilloscope pupilloscoptic pupilloscopy pupilmonger pupils pupilship pupilships pupipara pupiparous pupivora pupivore pupivorous puplike pupoid pupped puppet puppetdom puppeteer puppeteers puppethead puppethood puppetise puppetish puppetism puppetize puppetlike puppetly puppetman puppetmaster puppetries puppetry puppets puppied puppies puppify puppily pupping puppodum puppodums puppy puppydom puppydoms puppyfeet puppyfish puppyfoot puppyhood puppyhoods puppying puppyish puppyism puppyisms puppylike puppysnatch pups pupulo pupunha pupunhas pur purace purae purana puranas puranic puraque purau purbeck purblind purblindly purblindness purblindnesses purchasabilities purchasability purchasable purchase purchaseable purchased purchaser purchasers purchasery purchases purchasing purda purdah purdahed purdahs purdas purdon purdonium purdoniums purdy pure pureayn pureblood pureblooded purebloods purebred purebreds pured puredee puree pureed pureeing purees purehearted purely pureness purenesses purer pures purest purey purfle purfled purfler purflers purfles purfling purflings purfly purga purgament purgation purgations purgative purgatively purgatives purgatorial purgatorian purgatorians purgatories purgatory purge purgeable purged purger purgers purgery purges purging purgings puri purificant purification purifications purificative purificator purificators purificatory purified purifier purifiers purifies puriform purify purifying purim purims purin purine purines purinethol puring purins puriri puris purism purisms purist puristic puristical puristically purists puritan puritandom puritanic puritanical puritanically puritanicalness puritanicalnesses puritanise puritanised puritanises puritanising puritanism puritanisms puritanize puritanized puritanizes puritanizing puritanlike puritano puritans purities purity purkinjean purl purled purler purlers purlhouse purlicue purlicued purlicues purlicuing purlieu purlieuman purlieumen purlieus purlieux purlin purline purlines purling purlings purlins purlman purloin purloined purloiner purloiners purloining purloins purloo purls purohepatitis purohit purolymph puromucous puromycin puromycins purpart purparty purpense purpie purpies purple purpled purpleheart purplehearts purplelip purplely purpleness purplenesses purpler purples purplescent purplest purplewood purplewort purplier purpliest purpliness purpling purplish purplishness purply purport purported purportedly purporter purporters purportes purporting purportively purportless purports purpose purposed purposedly purposeful purposefully purposefulness purposefulnesses purposeless purposelessly purposelessness purposelessnesses purposelike purposely purposer purposes purposing purposive purposively purposiveness purposivenesses purposivism purposivist purposivistic purpresture purprestures purprise purprision purpura purpuraceous purpuras purpurate purpure purpureal purpurean purpureous purpures purpurescent purpuric purpuriferous purpuriform purpurigenous purpurin purpurine purpurins purpuriparous purpurite purpurize purpurogallin purpurogenous purpuroid purpuroxanthin purpy purr purrah purre purred purree purreic purrel purrer purring purringly purrings purrone purrs purry purs purse pursed purseful pursefuls purseless purselike purser pursers pursership purserships purses purset pursew pursewed pursewing pursews pursier pursiest pursily pursiness pursinesses pursing pursive purslain purslains purslane purslanes purslet pursley pursuable pursual pursuals pursuance pursuances pursuant pursuantly pursue pursued pursuer pursuers pursues pursuing pursuingly pursuings pursuit pursuitmeter pursuits pursuivant pursuivants pursy purtenance purtenances purtier purtiest purtraid purtrayd purty purulence purulences purulencies purulency purulent purulently puruloid purus purusha purushartha purvey purveyable purveyal purveyance purveyancer purveyances purveyed purveying purveyor purveyoress purveyors purveys purview purviews purvoe purwannah pus pusan puschkinia puschkinias puses puseyism puseyite pusgut push pushable pushan pushback pushbacks pushball pushballs pushbike pushbikes pushbutton pushcard pushcards pushcart pushcarts pushchair pushchairs pushdown pushdowns pushed pusher pushers pushes pushful pushfully pushfulness pushfulnesses pushier pushiest pushily pushiness pushinesses pushing pushingly pushingness pushmina pushmobile pushout pushouts pushover pushovers pushpin pushpins pushrod pushrods pushtu pushum pushup pushups pushwainling pushy pusill pusillanimities pusillanimity pusillanimous pusillanimously pusillanimousness pusle pusled pusles pusley pusleys puslike pusling pusly puss pusscat pussel pussels pusser pussers pusses pussier pussies pussiest pussiness pussley pussleys pusslies pusslike pussly pussy pussycat pussycats pussyfoot pussyfooted pussyfooter pussyfooters pussyfooting pussyfootism pussyfoots pussytoe pussytoes pussywillow pussywillows pustulant pustulants pustular pustulate pustulated pustulates pustulating pustulation pustulations pustulatous pustule pustuled pustulelike pustules pustuliform pustulose pustulous puszta put putage putain putamen putamina putaminous putanism putation putationary putative putatively putback putchen putcheon putcheons putcher putchers putchock putchocks putchuk putchuks putdown putdownable putdowns puteal puteals putelee puteli putelis puther puthery putid putidly putidness puting putlock putlocks putlog putlogs putoff putoffs putois putoises puton putons putout putouts putredinal putredinous putrefacient putrefactible putrefaction putrefactions putrefactive putrefactiveness putrefiable putrefied putrefier putrefiers putrefies putrefy putrefying putresce putrescence putrescences putrescency putrescent putrescibility putrescible putrescine putrescines putricide putrid putrider putridest putridities putridity putridly putridness putridnesses putrifacted putrified putriform putrilage putrilaginous putrilaginously puts putsch putsches putschism putschist putschists putt puttan putted puttee puttees putten putter puttered putterer putterers puttering putteringly putters putti puttie puttied puttier puttiers putties putting puttings putto puttock puttocks puttoo putts putty puttyblower puttyhead puttyhearted puttying puttyless puttylike puttyroot puttyroots puttywork puture putures putz putzed putzes putzing puxy puy puya puys puzel puzels puzzel puzzels puzzle puzzleation puzzled puzzledly puzzledness puzzledom puzzledoms puzzlehead puzzleheaded puzzleheadedly puzzleheadedness puzzleheadednesses puzzleman puzzlement puzzlements puzzlepate puzzlepated puzzlepatedness puzzler puzzlers puzzles puzzling puzzlingly puzzlingness puzzlings puzzolan puzzolana puzzolanas pva pvc pvt pwca pwr pwt pya pyaemia pyaemias pyaemic pyal pyalla pyarthrosis pyas pyat pyats pyche pycnanthemum pycnia pycnial pycnic pycnid pycnidia pycnidial pycnidiophore pycnidiospore pycnidiospores pycnidium pycnidiums pycninidia pycniospore pycnite pycnites pycnium pycnoconidia pycnoconidium pycnoconidiums pycnodont pycnodontoid pycnodysostoses pycnodysostosis pycnogonid pycnogonida pycnogonidium pycnogonids pycnogonoid pycnometer pycnometers pycnometochia pycnometochic pycnomorphic pycnomorphous pycnon pycnonotine pycnons pycnoses pycnosis pycnospore pycnospores pycnosporic pycnostyle pycnostyles pycnotic pydna pye pyebald pyebalds pyeing pyelectasis pyelic pyelitic pyelitis pyelitises pyelocystitis pyelogram pyelograms pyelograph pyelographic pyelographies pyelography pyelolithotomy pyelometry pyelonephritic pyelonephritides pyelonephritis pyelonephritises pyelonephrosis pyeloplasty pyeloscopy pyelotomy pyeloureterogram pyemesis pyemia pyemias pyemic pyengadu pyengadus pyes pyet pyets pygal pygalgia pygals pygarg pygargs pygargus pygidia pygidial pygidid pygidium pygidiums pygigidia pygmaean pygmalion pygmalionism pygmean pygmies pygmoid pygmy pygmydom pygmyhood pygmyish pygmyism pygmyisms pygmyship pygmyweed pygobranchiate pygofer pygopagus pygopod pygopodidae pygopodine pygopodous pygopus pygoscelis pygostyle pygostyled pygostyles pygostylous pyic pyin pyinma pyins pyjama pyjamaed pyjamas pyjamased pyke pyknatom pyknic pyknics pyknodysostoses pyknodysostosis pyknometer pyknometers pyknoses pyknosis pyknosome pyknosomes pyknotic pyla pylagore pylangial pylangium pylar pylephlebitic pylephlebitis pylethrombophlebitis pylethrombosis pylic pylodictus pylon pylons pyloralgia pylorectomies pylorectomy pylori pyloric pyloristenosis pyloritis pylorocleisis pylorodilator pylorogastrectomy pyloroplasty pyloroptosis pyloroschesis pyloroscirrhus pyloroscopy pylorospasm pylorostenosis pylorostomy pylorous pylorouses pylorus pyloruses pyne pyned pynes pyning pynot pynung pyobacillosis pyocele pyoctanin pyoctanine pyocyanase pyocyanin pyocyst pyocyte pyoderma pyodermas pyodermatitis pyodermatosis pyodermia pyodermic pyogeneses pyogenesis pyogenetic pyogenic pyogenin pyogenous pyohemothorax pyoid pyolabyrinthitis pyolymph pyometra pyometritis pyonephritis pyonephrosis pyonephrotic pyoner pyoners pyongyang pyonings pyopericarditis pyopericardium pyoperitoneum pyoperitonitis pyophagia pyophthalmia pyophthalmitis pyophylactic pyoplania pyopneumocholecystitis pyopneumocyst pyopneumopericardium pyopneumoperitoneum pyopneumoperitonitis pyopneumothorax pyopoiesis pyopoietic pyoptysis pyorrhea pyorrheal pyorrheas pyorrheic pyorrhoea pyorrhoeal pyorrhoeas pyorrhoeic pyosalpingitis pyosalpinx pyosepticemia pyosepticemic pyoses pyosis pyospermia pyot pyotherapy pyothorax pyotoxinemia pyots pyoureter pyovesiculosis pyoxanthose pyr pyracanth pyracantha pyracanthas pyracanths pyracene pyragravure pyral pyralid pyralidae pyralidan pyralidid pyralididae pyralidiform pyralids pyralis pyralises pyraloid pyramid pyramidaire pyramidal pyramidale pyramidalis pyramidally pyramidate pyramided pyramidellid pyramider pyramides pyramidia pyramidic pyramidical pyramidically pyramidicalness pyramiding pyramidion pyramidions pyramidise pyramidist pyramidists pyramidize pyramidlike pyramidoattenuate pyramidoid pyramidoidal pyramidologies pyramidologist pyramidologists pyramidology pyramidon pyramidons pyramidoprismatic pyramids pyramidwise pyramimidia pyramis pyramises pyramoid pyramoidal pyramus pyran pyranoid pyranometer pyranose pyranoses pyranoside pyranosides pyrans pyranyl pyrargyrite pyrargyrites pyrausta pyrazin pyrazine pyrazole pyrazoles pyrazoline pyrazolone pyrazolyl pyre pyrectic pyrena pyrene pyrenean pyrenees pyreneite pyreneites pyrenematous pyrenes pyrenic pyrenin pyrenocarp pyrenocarpic pyrenocarpous pyrenocarps pyrenodean pyrenodeine pyrenodeous pyrenoid pyrenoids pyrenolichen pyrenomycete pyrenomycetes pyrenomycetous pyres pyrethrin pyrethrine pyrethrins pyrethroid pyrethroids pyrethrum pyrethrums pyretic pyreticosis pyretics pyretogenesis pyretogenetic pyretogenic pyretogenous pyretography pyretologies pyretologist pyretology pyretolysis pyretotherapies pyretotherapy pyrewinkes pyrex pyrexes pyrexia pyrexial pyrexias pyrexic pyrexical pyrgeometer pyrgocephalic pyrgocephaly pyrgoidal pyrgologist pyrgom pyrheliometer pyrheliometers pyrheliometric pyrheliometry pyrheliophor pyribole pyric pyridazine pyridic pyridine pyridines pyridinise pyridinium pyridinize pyridone pyridoxal pyridoxals pyridoxamine pyridoxamines pyridoxin pyridoxine pyridoxines pyridoxins pyridyl pyriform pyriformis pyrimethamine pyrimethamines pyrimidin pyrimidine pyrimidines pyrimidyl pyritaceous pyrite pyrites pyrithiamine pyrithiamines pyritic pyritical pyritiferous pyritisation pyritise pyritised pyritises pyritising pyritization pyritize pyritized pyritizes pyritizing pyritohedra pyritohedral pyritohedron pyritoid pyritology pyritous pyro pyroacetic pyroacid pyroantimonate pyroantimonic pyroarsenate pyroarsenic pyroarsenious pyroarsenite pyroballogies pyroballogy pyrobelonite pyrobi pyrobitumen pyrobituminous pyroborate pyroboric pyrocatechin pyrocatechinol pyrocatechol pyrocatechols pyrocatechuic pyrocellulose pyrocelluloses pyrocephalus pyrochemical pyrochemically pyrochlore pyrochromate pyrochromic pyrocinchonic pyrocitric pyroclast pyroclastic pyroclastics pyroclasts pyrocoll pyrocollodion pyrocomenic pyrocondensation pyroconductivities pyroconductivity pyrocotton pyrocrystalline pyroelectric pyroelectricities pyroelectricity pyroelectrics pyrogallate pyrogallic pyrogallol pyrogallols pyrogen pyrogenation pyrogenesia pyrogenesis pyrogenetic pyrogenetically pyrogenic pyrogenicities pyrogenicity pyrogenous pyrogens pyrogentic pyroglazer pyroglutamic pyrognomic pyrognostic pyrognostics pyrograph pyrographer pyrographers pyrographic pyrographies pyrography pyrogravure pyrogravures pyroguaiacin pyroheliometer pyroid pyrokineses pyrokinesis pyrola pyrolaceae pyrolaceous pyrolas pyrolater pyrolaters pyrolatries pyrolatry pyroligneous pyrolignic pyrolignite pyrolignous pyroline pyrolite pyrolize pyrolized pyrolizes pyrolizing pyrollogical pyrological pyrologies pyrologist pyrology pyrolusite pyrolusites pyrolysable pyrolysate pyrolysates pyrolyse pyrolysed pyrolyser pyrolyses pyrolysing pyrolysis pyrolytic pyrolytically pyrolyzable pyrolyzate pyrolyzates pyrolyze pyrolyzed pyrolyzer pyrolyzers pyrolyzes pyrolyzing pyromachy pyromagnetic pyromancer pyromancers pyromancies pyromancy pyromania pyromaniac pyromaniacal pyromaniacs pyromanias pyromanic pyromantic pyromeconic pyromellitic pyromeride pyromerides pyrometallurgical pyrometallurgies pyrometallurgy pyrometamorphic pyrometamorphism pyrometer pyrometers pyrometric pyrometrical pyrometrically pyrometries pyrometry pyromorphism pyromorphite pyromorphites pyromorphous pyromotor pyromucate pyromucic pyromucyl pyronaphtha pyrone pyrones pyronine pyronines pyroninophilic pyronomics pyronyxis pyrope pyropen pyropes pyrophanite pyrophanous pyrophile pyrophilia pyrophilous pyrophobia pyrophobias pyrophobic pyrophobics pyrophone pyrophones pyrophoric pyrophorous pyrophorus pyrophoruses pyrophosphate pyrophosphates pyrophosphatic pyrophosphoric pyrophosphorous pyrophotograph pyrophotographic pyrophotographies pyrophotographs pyrophotography pyrophotometer pyrophotometers pyrophyllite pyrophyllites pyrophysalite pyropuncture pyropus pyropuses pyroracemate pyroracemic pyros pyroscope pyroscopes pyroscopy pyroses pyrosis pyrosises pyrosmalite pyrosome pyrosomes pyrosomoid pyrosphere pyrostat pyrostatic pyrostats pyrostereotype pyrostilpnite pyrosulfate pyrosulfates pyrosulfuric pyrosulphate pyrosulphates pyrosulphite pyrosulphuric pyrosulphuryl pyrotantalate pyrotartaric pyrotartrate pyrotartrates pyrotechnian pyrotechnic pyrotechnical pyrotechnically pyrotechnician pyrotechnicians pyrotechnics pyrotechnies pyrotechnist pyrotechnists pyrotechny pyroterebic pyrotheology pyrotic pyrotoxin pyrotritaric pyrotritartric pyrouric pyrovanadate pyrovanadic pyroxanthin pyroxene pyroxenes pyroxenic pyroxenite pyroxenites pyroxenitic pyroxenoid pyroxenoids pyroxmangite pyroxonium pyroxyle pyroxylene pyroxyles pyroxylic pyroxylin pyroxyline pyroxylines pyroxylins pyrrha pyrrhic pyrrhichian pyrrhichius pyrrhicist pyrrhicists pyrrhics pyrrhocoridae pyrrhonian pyrrhonic pyrrhonism pyrrhonist pyrrhotine pyrrhotines pyrrhotism pyrrhotist pyrrhotite pyrrhotites pyrrhous pyrrhula pyrrhuloxia pyrrhuloxias pyrrhus pyrrodiazole pyrrol pyrrole pyrroles pyrrolic pyrrolidine pyrrolidines pyrrolidone pyrrolidyl pyrroline pyrrols pyrrolylene pyrrophyllin pyrroporphyrin pyrrosia pyrrotriazole pyrroyl pyrryl pyrrylene pyrularia pyruline pyruloid pyrus pyruvaldehyde pyruvate pyruvates pyruvic pyruvil pyruvyl pyruwl pyrylium pythagoras pythagorean pythagoreans pythagoric pythagorize pythia pythiaceae pythiad pythian pythias pythium pythiums pythius pythogenesis pythogenetic pythogenic pythogenous python pythoness pythonesses pythonic pythonical pythonid pythonidae pythoniform pythoninae pythonine pythonise pythonism pythonissa pythonist pythonize pythonoid pythonomorph pythonomorphic pythonomorphous pythonomorphs pythons pyuria pyurias pyvuril pyx pyxed pyxes pyxidanthera pyxidate pyxides pyxidia pyxidium pyxie pyxies pyxing pyxis pzazz pzazzes père pères pébrine pétanque pétillant pétroleur pétroleurs pétroleuse pétroleuses q qabala qabalah qabalahs qabalas qabalism qabalisms qabalist qabalists qabbala qabbalah qadarite qadi qadis qaf qaid qaids qaimaqam qaimaqams qalamdan qalamdans qanat qanats qantar qasida qasidas qat qatar qatari qats qawwal qawwali qawwalis qawwals qe qed qepiq qere qeri qh qi qiana qiang qiangic qibla qiblas qid qigong qigongs qindar qindarka qindarkas qindars qinghaosu qinghaosus qintar qintars qis qiviut qiviuts qiyas ql qm qn qoph qophs qp qqv qr qrs qs qt qtam qtd qto qtr qts qty qu qua quaalude quaaludes quab quabird quachil quack quacked quacker quackeries quackerism quackers quackery quackgrass quackhood quackier quackiest quacking quackish quackishly quackishness quackism quackisms quackle quackled quackles quackling quacks quacksalver quacksalvers quacksalving quackster quacky quad quadded quadding quaddle quader quadle quadmeter quadplex quadplexes quadra quadrable quadrae quadragenarian quadragenarians quadragenarious quadragesima quadragesimal quadragintesimal quadral quadrangle quadrangled quadrangles quadrangular quadrangularly quadrangularness quadrangulate quadranguled quadrans quadrant quadrantal quadrantes quadrantile quadrantlike quadrantly quadrants quadraphonic quadraphonics quadraphonies quadraphony quadraplegia quadraplegias quadraplegic quadraplegics quadrasonic quadrat quadrate quadrated quadrateness quadrates quadratic quadratical quadratically quadratics quadratiferous quadrating quadratojugal quadratomandibular quadrator quadratosquamosal quadratrices quadratrix quadratrixes quadrats quadratum quadratura quadrature quadratures quadratus quadratuses quadrauricular quadrel quadrella quadrellas quadrennia quadrennial quadrennially quadrennials quadrennium quadrenniums quadriad quadrialate quadriannulate quadriarticulate quadriarticulated quadribasic quadric quadricapsular quadricapsulate quadricarinate quadricellular quadricentennial quadricentennials quadriceps quadricepses quadrichord quadriciliate quadricinium quadricipital quadricone quadricones quadricorn quadricornous quadricostate quadricotyledonous quadricovariant quadricrescentic quadricrescentoid quadrics quadricuspid quadricuspidal quadricuspidate quadricycle quadricycler quadricyclist quadridentate quadridentated quadriderivative quadridigitate quadriennia quadriennial quadriennially quadriennials quadriennium quadrienniumutile quadrifarious quadrifariously quadrifid quadrifilar quadrifocal quadrifoil quadrifoliate quadrifoliolate quadrifolious quadrifolium quadriform quadrifrons quadrifrontal quadrifurcate quadrifurcated quadrifurcation quadriga quadrigabled quadrigae quadrigamist quadrigate quadrigati quadrigatus quadrigeminal quadrigeminate quadrigeminous quadrigeminum quadrigenarious quadriglandular quadrihybrid quadrijugal quadrijugate quadrijugous quadrilaminar quadrilaminate quadrilateral quadrilaterally quadrilateralness quadrilaterals quadrilingual quadriliteral quadriliterals quadrille quadrilled quadriller quadrillers quadrilles quadrilling quadrillion quadrillions quadrillionth quadrillionths quadrilobate quadrilobed quadrilocular quadriloculate quadrilogue quadrilogy quadrimembral quadrimetallic quadrimolecular quadrimum quadrin quadrine quadringenaries quadringenary quadrinodal quadrinomial quadrinomials quadrinomical quadrinominal quadrinucleate quadrioxalate quadriparous quadripartite quadripartitely quadripartition quadripartitions quadripennate quadriphonic quadriphonics quadriphonies quadriphony quadriphosphate quadriphyllous quadripinnate quadriplanar quadriplegia quadriplegias quadriplegic quadriplegics quadriplicate quadriplicated quadripolar quadripole quadripoles quadriportico quadriporticus quadripulmonary quadriquadric quadriradiate quadrireme quadriremes quadrisect quadrisected quadrisecting quadrisection quadrisections quadrisects quadriseptate quadriserial quadrisetose quadrispiral quadristearate quadrisulcate quadrisulcated quadrisulphide quadrisyllabic quadrisyllabical quadrisyllable quadrisyllables quadrisyllabous quadriternate quadriti quadritubercular quadrituberculate quadriurate quadrivalence quadrivalences quadrivalencies quadrivalency quadrivalent quadrivalently quadrivalents quadrivalve quadrivalvular quadrivia quadrivial quadrivious quadrivium quadriviums quadrivoltine quadroon quadroons quadrophonies quadrophony quadrual quadrum quadruman quadrumana quadrumanal quadrumane quadrumanes quadrumanous quadrumans quadrumvir quadrumvirate quadrumvirates quadrumvirs quadruped quadrupedal quadrupedan quadrupedant quadrupedantic quadrupedantical quadrupedate quadrupedation quadrupedism quadrupedous quadrupeds quadruplane quadruplate quadruplator quadruple quadrupled quadrupleness quadruples quadruplet quadruplets quadruplex quadruplexed quadruplexes quadruplexing quadruplicate quadruplicated quadruplicates quadruplicating quadruplication quadruplications quadruplicature quadruplicities quadruplicity quadruplies quadrupling quadruply quadrupole quadrupoles quads quae quaedam quaere quaered quaereing quaeres quaeritur quaesita quaesitum quaesitums quaestio quaestionaries quaestionary quaestiones quaestor quaestorial quaestorian quaestors quaestorship quaestorships quaestuaries quaestuary quaff quaffed quaffer quaffers quaffing quaffingly quaffs quag quagga quaggas quaggier quaggiest quagginess quagginesses quaggle quaggy quagmire quagmired quagmires quagmirier quagmiriest quagmiring quagmiry quags quahaug quahaugs quahog quahogs quai quaich quaiches quaichs quaife quaigh quaighs quail quailberry quailed quaileries quailery quailhead quailing quailings quaillike quails quaily quaint quaintance quainter quaintest quaintise quaintish quaintly quaintness quaintnesses quair quairs quais quake quaked quakeful quakeproof quakeproofed quakeproofing quakeproofs quaker quakerbird quakeress quakerism quakerly quakers quakes quaketail quakier quakiest quakily quakiness quakinesses quaking quakingly quakings quaky qual quale qualia qualifiable qualification qualifications qualificative qualificatives qualificator qualificators qualificatory qualified qualifiedly qualifiedness qualifier qualifiers qualifies qualify qualifying qualifyingly qualifyings qualimeter qualitative qualitatively qualitied qualities quality qualityless qualityship qually qualm qualmier qualmiest qualminess qualming qualmish qualmishly qualmishness qualmishnesses qualmless qualmproof qualms qualmy qualmyish qualtagh quam quamash quamashes quamassia quamish quamoclit quan quandang quandangs quandaries quandary quando quandong quandongs quandy quango quangos quannet quannets quant quanta quantal quantasome quantasomes quanted quanti quantic quantical quantics quanties quantifiability quantifiable quantifiably quantification quantificational quantificationally quantifications quantified quantifier quantifiers quantifies quantify quantifying quantile quantiles quantimeter quanting quantisation quantisations quantise quantised quantiser quantisers quantises quantising quantitate quantitated quantitates quantitating quantitation quantitations quantitative quantitatively quantitativeness quantitativenesses quantitied quantities quantitive quantitively quantitiveness quantity quantivalence quantivalences quantivalency quantivalent quantizable quantization quantizations quantize quantized quantizer quantizers quantizes quantizing quantometer quantometers quantong quantongs quants quantulum quantum quantummechanical quapaw quaquaversal quaquaversally quar quarantinable quarantine quarantined quarantiner quarantines quarantining quaranty quardeel quare quarenden quarendens quarender quarenders quarentene quarer quaresma quarest quarion quark quarks quarl quarle quarles quarmen quarred quarrel quarreled quarreler quarrelers quarrelet quarreling quarrelingly quarrelings quarrelled quarreller quarrellers quarrelling quarrellingly quarrellings quarrellous quarrelous quarrelously quarrelproof quarrels quarrelsome quarrelsomely quarrelsomeness quarrelsomenesses quarrender quarrenders quarriable quarrian quarrians quarried quarrier quarriers quarries quarrington quarringtons quarrion quarrions quarrome quarry quarryable quarrying quarryings quarryman quarrymaster quarrymasters quarrymen quarrystone quarsome quart quarta quartan quartane quartano quartans quartation quartations quartaut quarte quartenylic quarter quarterage quarterages quarterback quarterbacked quarterbacking quarterbacks quarterdeck quarterdecker quarterdeckers quarterdeckish quarterdecks quartered quarterer quarterfinal quarterfinalist quarterfinalists quarterfinals quarterfoil quartering quarterings quarterisation quarterization quarterland quarterlies quarterlight quarterlights quarterly quarterman quartermaster quartermasterlike quartermasters quartermastership quartermen quartermistress quartermistresses quartern quarternight quarternion quarterns quarteron quarteroon quarteroons quarterpace quarters quartersaw quartersawed quartersawing quartersawn quartersaws quarterspace quarterstaff quarterstaffs quarterstaves quarterstetch quartertone quartervine quartes quartet quartets quartett quartette quartettes quartetti quartetto quartetts quartful quartic quartics quartier quartiers quartile quartiles quartin quartine quartinho quartiparous quarto quartodeciman quartodecimanism quartodecimans quartole quartos quarts quartus quartz quartzes quartzic quartzier quartziest quartziferous quartzite quartzites quartzitic quartzless quartzoid quartzose quartzous quartzy quasar quasars quash quashed quashee quashees quasher quashers quashes quashey quashie quashies quashing quashy quasi quasicontinuous quasicrystal quasicrystalline quasicrystals quasihistorical quasijudicial quasilinear quasimodo quasiorder quasiparticle quasiparticles quasiperiodic quasiperiodicities quasiperiodicity quasistationary quaskies quasky quasquicentennial quass quassation quassative quasses quassia quassias quassiin quassin quassins quat quata quatch quatched quatches quatching quate quatenus quatercentenaries quatercentenary quatercentennial quaterion quatern quaternal quaternarian quaternaries quaternarius quaternary quaternate quaternion quaternionic quaternionist quaternionists quaternions quaternitarian quaternities quaternity quateron quaters quatertenses quatorzain quatorzains quatorze quatorzes quatrain quatrains quatral quatrayle quatre quatreble quatrefeuille quatrefeuilles quatrefoil quatrefoiled quatrefoils quatrefoliated quatres quatrible quatrin quatrino quatrocentism quatrocentist quatrocento quats quattie quattrini quattrino quattrocentism quattrocentisms quattrocentist quattrocentists quattrocento quattrocentos quattuordecillion quattuordecillions quattuordecillionth quattuordecillionths quatty quatuor quatuorvirate quauk quave quaver quavered quaverer quaverers quaverier quaveriest quavering quaveringly quaverings quaverous quavers quavery quaverymavery quaviver quaw quawk quay quayage quayages quayd quayed quayful quaying quaylike quayman quays quayside quaysider quaysides qubba qubit qubits qubyte qubytes que queach queaches queachier queachiest queachy queak queal quean queanish queanlike queans quease queasier queasiest queasily queasiness queasinesses queasom queasy queazen queazier queaziest queazy quebec quebrachamine quebrachine quebrachite quebrachitol quebracho quebrachos quebrada quebradilla quebrith quechua quedful quedly quedness quedship queechier queechiest queechy queen queencake queencraft queencrafts queencup queendom queendoms queened queenfish queenfishes queenhood queenhoods queenie queenier queenies queeniest queening queenings queenite queenites queenless queenlet queenlets queenlier queenliest queenlike queenliness queenlinesses queenly queenright queenroot queens queensberries queensberry queenship queenships queenside queensides queensland queensware queenweed queenwood queeny queer queercore queercores queerdom queerdoms queered queerer queerest queering queerish queerishness queerities queerity queerly queerness queernesses queers queersome queery queest queesting queests queet queeve quegh quei queing queint queintise quelch quelched quelches quelching quelea queleas quelite quell quellable quelled queller quellers quelling quellio quells quellung quelme quelquechose quelt quem quemado queme quemed quemeful quemefully quemely quemes queming quena quenas quench quenchable quenchableness quenched quencher quenchers quenches quenching quenchings quenchless quenchlessly quenchlessness quenda quenelle quenelles quenite quenselite quent quentise quep quercetagetin quercetic quercetin quercetins quercetum quercetums quercic quercimeritrin quercin quercine quercinic quercitannic quercitannin quercite quercitin quercitol quercitrin quercitron quercitrons quercivorous quercus querela querelae querele querencia querent querida queridas querido queridos queried querier queriers queries queriman querimans querimonies querimonious querimoniously querimoniousness querimony querist querists querken querl quern quernal querns quernstone quernstones querre quersprung quersprungs querulant querulation querulent querulential querulist querulity querulosity querulous querulously querulousness querulousnesses query querying queryingly queryings queryist ques quesadilla quesadillas quesal queses quesited quesitive quest questant questants quested quester questers questeur questful questhouse questing questingly questings question questionabilities questionability questionable questionableness questionablenesses questionably questionaries questionary questioned questionee questionees questioner questioners questioning questioningly questionings questionist questionists questionle questionless questionlessly questionlessness questionnaire questionnaires questionniare questionniares questionous questions questionwise questman questmen questmonger questor questorial questors questorship questrist questrists quests quet quetch quetched quetches quetching quetenite quethe quethes quething quetsch quetsches quetzal quetzalcoatl quetzales quetzals queue queued queueing queueings queuer queuers queues queuing queuings quey queyn queynie queynies queyns queys quezal quezales quezals qui quia quiapo quiaquia quib quibble quibbled quibbleproof quibbler quibblers quibbles quibbling quibblingly quibblings quiblet quiblin quiblins quibus quica quich quiche quiched quiches quiching quick quickbeam quickbeams quickborn quicked quicken quickenance quickenbeam quickened quickener quickeners quickening quickenings quickens quicker quickest quickfire quickfoot quickhatch quickhearted quickie quickies quicking quicklime quicklimes quickly quickness quicknesses quicks quicksand quicksands quicksandy quickset quicksets quickside quicksilver quicksilvered quicksilvering quicksilverings quicksilverish quicksilverishness quicksilvers quicksilvery quickstep quickstepped quickstepping quicksteps quickthorn quickthorns quickwater quickwitted quickwittedness quickwittednesses quickwork quicky quid quidam quidams quiddanies quiddany quiddative quidder quiddit quidditative quidditatively quiddities quiddits quiddity quiddle quiddled quiddler quiddlers quiddles quiddling quidnunc quidnuncs quids quienal quiesce quiesced quiescence quiescences quiescencies quiescency quiescent quiescently quiesces quiescing quiet quieta quietable quietage quieted quieten quietened quietener quietening quietenings quietens quieter quieters quietest quieti quieting quietings quietism quietisms quietist quietistic quietists quietive quietives quietlike quietly quietness quietnesses quiets quietsome quietude quietudes quietus quietuses quiff quiffing quiffs quight quighted quighting quights quiinaceous quila quilate quileces quiles quileses quilez quilisma quilkin quill quillai quillaia quillaias quillaic quillais quillaja quillajas quillajic quillback quillbacks quilled quiller quillet quilleted quillets quillfish quillfishes quilling quillings quillity quillman quillmen quillon quillons quills quilltail quillwork quillworks quillwort quillworts quilly quilt quilted quilter quilters quilting quiltings quilts quim quims quin quina quinacrine quinacrines quinaldic quinaldin quinaldine quinaldinic quinaldinium quinaldyl quinalizarin quinalizarins quinamicin quinamicine quinamidin quinamidine quinamin quinamine quinanarii quinanisole quinaquina quinaquinas quinarian quinaries quinarii quinarius quinary quinas quinate quinatoxin quinatoxine quinazolin quinazoline quinazolyl quince quincentenaries quincentenary quincentennial quincentennials quinces quincewort quinch quinche quinched quinches quinching quincies quincubital quincubitalism quincuncial quincuncially quincunx quincunxes quincunxial quincy quindecad quindecagon quindecangle quindecaplet quindecasyllabic quindecemvir quindecemvirate quindecemviri quindecennial quindecennials quindecillion quindecillions quindecillionth quindecillionths quindecim quindecima quindecimvir quindecylic quindene quine quinela quinelas quinella quinellas quines quinet quinetum quingentenaries quingentenary quinhydrone quinia quinible quinic quinicin quinicine quinidia quinidin quinidine quinidines quinie quiniela quinielas quinies quinin quinina quininas quinine quinines quininiazation quininic quininise quininism quininize quinins quiniretin quinisext quinisextine quinism quinite quinitol quinizarin quinize quink quinnat quinnats quinnet quinoa quinoas quinocarbonium quinoform quinogen quinoid quinoidal quinoidation quinoidin quinoidine quinoidines quinoids quinol quinolas quinolin quinoline quinolines quinolinic quinolinium quinolins quinolinyl quinologist quinology quinolone quinolones quinols quinolyl quinometry quinon quinone quinonediimine quinones quinonic quinonimin quinonimine quinonimines quinonization quinonize quinonoid quinonyl quinopyrin quinotannic quinotoxine quinova quinovatannic quinovate quinovic quinovin quinovose quinoxalin quinoxaline quinoxalyl quinoyl quinquagenarian quinquagenarians quinquagenaries quinquagenary quinquagesima quinquagesimal quinquangle quinquarticular quinquecapsular quinquecentenary quinquecostate quinquedentate quinquedentated quinquefarious quinquefid quinquefoil quinquefoliate quinquefoliated quinquefoliolate quinquegrade quinquejugous quinquelateral quinqueliteral quinquelobate quinquelobated quinquelobed quinquelocular quinqueloculine quinquenary quinquenerval quinquenerved quinquennalia quinquennia quinquenniad quinquenniads quinquennial quinquennialist quinquennially quinquennials quinquennium quinquenniums quinquepartite quinquepartition quinquepedal quinquepedalian quinquepetaloid quinquepunctal quinquepunctate quinqueradial quinqueradiate quinquereme quinqueremes quinquertium quinquesect quinquesection quinqueseptate quinqueserial quinqueseriate quinquesyllabic quinquesyllable quinquetubercular quinquetuberculate quinquevalence quinquevalences quinquevalencies quinquevalency quinquevalent quinquevalve quinquevalvous quinquevalvular quinqueverbal quinqueverbial quinquevir quinquevirate quinquevirs quinquiliteral quinquina quinquinas quinquino quinquivalent quins quinse quinsied quinsies quinsy quinsyberries quinsyberry quinsywort quint quinta quintad quintadena quintadene quintain quintains quintal quintals quintan quintans quintant quintar quintars quintary quintas quintaten quintato quinte quintefoil quintelement quintennial quinternion quinteron quinteroon quintes quintescence quintessence quintessences quintessential quintessentialise quintessentialised quintessentialises quintessentialising quintessentiality quintessentialize quintessentialized quintessentializes quintessentializing quintessentially quintessentiate quintet quintets quintett quintetti quintetto quintetts quintfoil quintic quintics quintile quintiles quintillion quintillions quintillionth quintillionths quintin quintins quintiped quinto quintocubital quintocubitalism quintole quinton quintons quintroon quintroons quints quintuple quintupled quintuples quintuplet quintuplets quintuplicate quintuplicated quintuplicates quintuplicating quintuplication quintuplications quintuplinerved quintupling quintupliribbed quintus quinua quinuclidine quinyie quinyl quinzaine quinze quinzes quinzieme quip quipful quipo quipos quippe quipped quipper quippers quipping quippish quippishness quippu quippus quippy quips quipsome quipsomeness quipster quipsters quipu quipus quira quircal quire quired quires quirewise quirinal quirinca quiring quirister quiristers quiritarian quiritary quirk quirked quirkier quirkiest quirkily quirkiness quirkinesses quirking quirkish quirks quirksey quirksome quirky quirl quirquincho quirt quirted quirting quirts quis quisby quiscalus quiscos quisle quisler quisling quislingism quislingisms quislingistic quislings quisqueite quisquilian quisquiliary quisquilious quisquous quist quistiti quistron quists quisutsch quit quitantie quitch quitched quitches quitching quitclaim quitclaimed quitclaiming quitclaims quite quited quitely quites quiteve quiting quito quitrent quitrents quits quittable quittal quittals quittance quittanced quittances quittancing quitted quitter quitterbone quitters quitting quittor quittors quiver quivered quiverer quiverers quiverful quiverfuls quiverier quiveriest quivering quiveringly quiverings quiverish quiverleaf quivers quivery quixote quixotes quixotic quixotical quixotically quixotism quixotisms quixotize quixotries quixotry quiz quizes quizmaster quizmasters quizzability quizzable quizzacious quizzatorial quizzed quizzee quizzer quizzeries quizzers quizzery quizzes quizzical quizzicalities quizzicality quizzically quizzicalness quizzification quizzifications quizzified quizzifies quizzify quizzifying quizziness quizzinesses quizzing quizzingly quizzings quizzish quizzism quizzity quizzy qum quo quoad quod quodded quoddies quodding quoddity quodlibet quodlibetal quodlibetarian quodlibetarians quodlibetary quodlibetic quodlibetical quodlibetically quodlibets quodlibetz quodlin quodling quodlins quods quohog quohogs quoif quoifed quoifing quoifs quoilers quoin quoined quoining quoins quoist quoists quoit quoited quoiter quoiters quoiting quoitlike quoits quokka quokkas quoll quolls quominus quomodo quomodos quondam quondamly quondamship quoniam quonk quonked quonking quonks quonset quooke quop quopped quopping quops quor quorate quoratean quorum quorums quos quot quota quotabilities quotability quotable quotableness quotablenesses quotably quotas quotation quotational quotationally quotationist quotations quotatious quotative quotatives quote quoted quotee quoteless quotennial quoter quoters quotes quoteworthy quoth quotha quothas quotid quotidian quotidianly quotidianness quotidians quotient quotients quoties quotieties quotiety quoting quotingly quotition quotitions quotity quotlibet quott quotum quotums quran qursh qurshes qurush qurushes quyte quyted quytes quyting qv qwerties qwerty qwertys qy r ra raad raadzaal raasch raash rab rabal raband rabanna rabannas rabat rabatine rabatines rabatment rabatments rabato rabatoes rabatos rabats rabatte rabatted rabattement rabattements rabattes rabatting rabattings rabban rabbanim rabbanist rabbanite rabbet rabbeted rabbeting rabbets rabbi rabbies rabbin rabbinate rabbinates rabbindom rabbinic rabbinical rabbinically rabbinism rabbinisms rabbinist rabbinistic rabbinistical rabbinists rabbinite rabbinites rabbinitic rabbinize rabbins rabbinship rabbis rabbish rabbiship rabbit rabbitberries rabbitberry rabbitbrush rabbitbrushes rabbited rabbiter rabbiters rabbiteye rabbitfish rabbitfishes rabbithearted rabbiting rabbitlike rabbitmouth rabbitoh rabbitproof rabbitries rabbitroot rabbitry rabbits rabbitskin rabbitweed rabbitwise rabbitwood rabbity rabble rabbled rabblelike rabblement rabblements rabbleproof rabbler rabblers rabbles rabblesome rabbling rabblings rabboni rabbonim rabbonis rabdomancy rabelais rabelaisian rabfak rabi rabiator rabic rabid rabider rabidest rabidities rabidity rabidly rabidness rabidnesses rabies rabietic rabific rabiform rabigenic rabinet rabious rabirubia rabis rabitic rablin rabot rabulistic rabulous raca racahout racahouts racallable raccahout raccahouts racche raccoon raccoonberry raccoons raccroc race raceabout racebrood racecar racecard racecards racecars racecourse racecourses raced racegoer racegoers racegoing racegoings racehorse racehorses racelike raceline racemase racemate racemates racemation racemations raceme racemed racemes racemic racemiferous racemiform racemisation racemisations racemise racemised racemises racemising racemism racemisms racemization racemizations racemize racemized racemizes racemizing racemocarbonate racemocarbonic racemoid racemomethylate racemose racemosely racemous racemously racemule racemulose racepath racepaths raceplate racer racers racerunner racerunners races racetrack racetracker racetrackers racetracks racette racewalk racewalked racewalker racewalkers racewalking racewalkings racewalks raceway raceways rach rachauffa rachauffas rache raches rachet rachets rachial rachialgia rachialgic rachianalgesia rachianesthesia rachicentesis rachides rachidial rachidian rachiform rachiglossate rachigraph rachilla rachillae rachillas rachiocentesis rachiococainize rachiocyphosis rachiodont rachiodynia rachiometer rachiomyelitis rachioparalysis rachioplegia rachioscoliosis rachiotome rachiotomy rachipagus rachis rachischises rachischisis rachises rachitic rachitides rachitis rachitises rachitism rachitogenic rachitome rachitomous rachitomy rachycentridae rachycentron racial racialisation racialise racialism racialisms racialist racialistic racialists raciality racialization racialize racially raciation raciations racier raciest racily racinage racine raciness racinesses racing racinglike racings racion racism racisms racist racists rack rackabones rackan rackapee rackateer rackateering rackboard rackbone racked racker rackers racket racketball racketed racketeer racketeered racketeering racketeerings racketeers racketer racketers racketier racketiest racketiness racketing racketlike racketproof racketries racketry rackets rackett rackettail racketts rackety rackful rackfuls racking rackingly rackings rackle rackless rackman rackmaster racknumber rackproof rackrentable racks rackway rackwork rackworks raclame raclette raclettes racloir racloirs racon racons raconteur raconteuring raconteurings raconteurs raconteuse raconteuses racoon racoons racoyian racquet racquetball racquetballs racqueted racqueting racquets racy rad rada radar radarman radarmen radars radarscope radarscopes radded radder raddest radding raddle raddled raddleman raddlemen raddles raddling raddlings raddocke raddockes rade radeau radeaux radectomieseph radectomy radeur radevore radford radge radger radges radgest radiability radiable radiably radiac radial radiale radiales radialia radialis radialisation radialisations radialise radialised radialises radialising radialities radiality radialization radializations radialize radialized radializes radializing radially radials radian radiance radiances radiancies radiancy radians radiant radiantly radiantness radiants radiary radiata radiatas radiate radiated radiately radiateness radiates radiatics radiatiform radiating radiation radiational radiationally radiationless radiations radiative radiatively radiatopatent radiatoporose radiatoporous radiator radiators radiatory radiatostriate radiatosulcate radiature radiatus radical radicalisation radicalisations radicalise radicalised radicalises radicalising radicalism radicalisms radicalities radicality radicalization radicalizations radicalize radicalized radicalizes radicalizing radically radicalness radicalnesses radicals radicand radicands radicant radicate radicated radicates radicating radication radications radicchio radicchios radicel radicellose radicels radices radicicola radicicolous radiciferous radiciflorous radiciform radicivorous radicle radicles radicolous radicose radicula radicular radicule radiculectomy radicules radiculitis radiculose radidii radiectomy radient radiescent radiesthesia radiesthesias radiesthesist radiesthesists radiesthetic radiferous radii radiigera radio radioacoustics radioactinium radioactivate radioactivated radioactivating radioactive radioactively radioactivities radioactivity radioallergosorbent radioamplifier radioanaphylaxis radioastronomical radioastronomy radioautograph radioautographic radioautographies radioautographs radioautography radiobicipital radiobiologic radiobiological radiobiologically radiobiologies radiobiologist radiobiologists radiobiology radiobroadcast radiobroadcasted radiobroadcaster radiobroadcasters radiobroadcasting radiobroadcasts radiobserver radiocalcium radiocarbon radiocarbons radiocarpal radiocast radiocaster radiocasting radiochemical radiochemically radiochemist radiochemistries radiochemistry radiochemists radiochlorine radiochromatogram radiochromatograms radiocinematograph radiocommunication radioconductor radiocopper radiodating radiode radiodermatitis radiodetector radiodiagnoses radiodiagnosis radiodigital radiodontia radiodontic radiodontics radiodontist radiodynamic radiodynamics radioecological radioecologies radioecologist radioecology radioed radioelement radioelements radiofrequency radiogalaxies radiogalaxy radiogenic radiogoniometer radiogoniometers radiogoniometric radiogoniometry radiogram radiogramophone radiogramophones radiograms radiograph radiographed radiographer radiographers radiographic radiographical radiographically radiographies radiographing radiographs radiography radiohumeral radioimmunoassay radioimmunoassayable radioimmunoassays radioing radioiodine radioiodines radioiron radioisotope radioisotopes radioisotopic radioisotopically radiolabel radiolabeled radiolabeling radiolabelled radiolabelling radiolabels radiolaria radiolarian radiolarians radiolead radiolite radiolitic radiolocation radiolocations radiolocator radiolocators radiologic radiological radiologically radiologies radiologist radiologists radiology radiolucence radiolucencies radiolucency radiolucent radioluminescence radioluminescences radioluminescent radiolyses radiolysis radiolytic radioman radiomedial radiomen radiometallography radiometeorograph radiometeorographs radiometer radiometers radiometric radiometrically radiometries radiometry radiomicrometer radiomicrophone radiomimetic radiomobile radiomovies radiomuscular radion radionecrosis radioneuritis radionic radionics radionuclide radionuclides radiopacities radiopacity radiopager radiopagers radiopaging radiopagings radiopalmar radiopaque radioparent radiopathology radiopelvimetry radiophare radiopharmaceutical radiopharmaceuticals radiopharmeceutical radiophone radiophones radiophonic radiophonics radiophonies radiophonist radiophonists radiophony radiophosphorus radiophoto radiophotogram radiophotograph radiophotographies radiophotographs radiophotography radiophotos radiophysics radiopotassium radiopraxis radioprotection radioprotections radioprotective radiorays radioresistant radios radioscope radioscopes radioscopic radioscopical radioscopies radioscopy radiosensibility radiosensitise radiosensitised radiosensitises radiosensitising radiosensitive radiosensitivities radiosensitivity radiosensitize radiosensitized radiosensitizes radiosensitizing radiosodium radiosonde radiosondes radiosonic radiostereoscopy radiosterilisation radiosterilise radiosterilised radiosterilization radiosterilize radiosterilized radiostrontium radiostrontiums radiosurgeries radiosurgery radiosurgical radiosymmetrical radiotechnology radiotelegram radiotelegrams radiotelegraph radiotelegrapher radiotelegraphic radiotelegraphically radiotelegraphies radiotelegraphs radiotelegraphy radiotelemeter radiotelemeters radiotelemetric radiotelemetries radiotelemetry radiotelephone radiotelephoned radiotelephones radiotelephonic radiotelephonies radiotelephoning radiotelephony radioteletype radioteletypes radioteria radiothallium radiotherapeutic radiotherapeutics radiotherapeutist radiotherapies radiotherapist radiotherapists radiotherapy radiothermy radiothon radiothons radiothorium radiothoriums radiotoxemia radiotoxic radiotracer radiotracers radiotransparency radiotransparent radiotrician radiotropic radiotropism radious radiov radiovision radish radishes radishlike radium radiumisation radiumise radiumization radiumize radiumlike radiumproof radiums radiumtherapy radius radiuses radix radixes radknight radly radman radome radomes radon radons rads radsimir radula radulae radular radulas radulate raduliferous raduliform radwaste radwastes radyera radzimir raetam raf rafale rafales raff raffaelesque raffe raffee raffery raffia raffias raffinase raffinate raffinates raffing raffinose raffinoses raffish raffishly raffishness raffishnesses raffle raffled raffler rafflers raffles rafflesia rafflesiaceous rafflesias raffling raffman raffs rafraichissoir rafraochissoir raft raftage rafted rafter raftered raftering rafterings rafters raftiness rafting raftlike raftman raftmen rafts raftsman raftsmen rafty rag raga ragabash ragabrash ragamuffin ragamuffinism ragamuffinly ragamuffins ragas ragazze ragbag ragbags ragbolt ragbolts ragde rage raged ragee ragees rageful ragefully rageless rageous rageously rageousness rageproof rager ragers ragery rages ragesome ragfish ragfishes ragg ragga raggamuffin raggamuffins raggas ragged raggeder raggedest raggedier raggediest raggedly raggedness raggednesses raggedy raggee raggees ragger raggeries raggery raggety raggier raggies raggiest raggil raggily ragging raggings raggle raggled raggles raggling raggs raggy raghead ragheads raghouse ragi raging ragingly ragings ragini raginis ragis ragisseur ragisseurs raglan raglanite raglans raglet raglin ragman ragmans ragmatical ragmen ragment ragments ragnarok ragondin ragout ragouted ragouting ragouts ragpicker ragpickers rags ragseller ragshag ragsorter ragstone ragstones ragtag ragtags ragtime ragtimer ragtimers ragtimes ragtimey ragtop ragtops ragule raguled raguly ragusye ragweed ragweeds ragwheel ragwheels ragwork ragworks ragworm ragworms ragwort ragworts rah rahdar rahdaree rahdari rahed rahing rahs rahu rai raia raias raid raided raider raiders raiding raidproof raids raiiform raik raiked raiking raiks rail railage railbed railbeds railbird railbirds railbus railbuses railbusses railcar railcard railcards railcars raile railed railer railers railes railhead railheads railing railingly railings railleries raillery railless railleur raillies raillike raillink raillinks railly railman railmen railriding railroad railroadana railroaded railroader railroaders railroadiana railroading railroadings railroadish railroads railroadship rails railside railway railwaydom railwayed railwayless railwayman railwaymen railways railwoman railwomen raiment raimented raimentless raiments rain rainband rainbands rainbird rainbirds rainbound rainbow rainbowed rainbowlike rainbows rainbowweed rainbowy rainburst raincheck rainchecks raincloud rainclouds raincoat raincoats raindate raindates raindrop raindrops raine rained rainer raines rainfall rainfalls rainforest rainforests rainfowl rainful rainier rainiest rainily raininess raininesses raining rainless rainlessness rainlight rainmaker rainmakers rainmaking rainmakings rainout rainouts rainproof rainproofed rainproofer rainproofing rainproofs rains rainspout rainspouts rainsquall rainsqualls rainstorm rainstorms rainswept raintight rainwash rainwashed rainwashes rainwashing rainwater rainwaters rainwear rainwears rainworm rainy raioid raird rairds rais raisable raise raiseable raised raiseman raiser raisers raises raisin raisine raising raisings raisins raisiny raison raisonne raisonneur raisonneurs raisonné raisons rait raita raitas raited raiting raits raiyat raiyats raiyatwari raiyatwaris raj raja rajab rajah rajahs rajahship rajahships rajas rajaship rajaships rajasic rajbansi rajes rajidae rajiformes rajoguna rajpoot rajpramukh rajpramukhs rajput rakable rakan rakaposhi rake rakeable rakeage raked rakee rakees rakeful rakehell rakehellish rakehells rakehelly rakely rakeoff rakeoffs raker rakeries rakers rakery rakes rakeshame rakeshames rakesteel rakestele rakh raki rakija rakily raking rakingly rakings rakis rakish rakishly rakishness rakishnesses rakit rakshas rakshasa rakshasas rakshases raku rakus rale raleigh rales ralish rall rallentando rallentandos rallery ralliance rallidae rallied rallier ralliers rallies ralliform ralline rally rallycross rallye rallyes rallying rallyingly rallyings rallyist rallyists rallymaster ralph ralphed ralphing ralphs rals ralstonite ram rama ramachandra ramack ramada ramadan ramadas ramage ramages ramaism ramakin ramakins ramal ramanas ramapithecine ramapithecines ramarama ramark ramass ramate rambarre rambeh ramberge rambla ramblas ramble rambled rambler ramblers rambles rambling ramblingly ramblingness ramblings rambong rambooze rambotan rambouillet rambouillets rambunctious rambunctiously rambunctiousness rambunctiousnesses rambure rambutan rambutans ramcat ramcats ramdohrite rame rameal ramean ramed ramee ramees ramekin ramekins ramellose ramen ramens rament ramenta ramentaceous ramental ramentiferous ramentum rameous ramequin ramequins ramessid ramet ramets ramex ramfeezle ramfeezled ramfeezles ramfeezling ramforce ramgunshoch ramhead ramhood rami ramicorn ramie ramies ramiferous ramificate ramification ramifications ramified ramifies ramiflorous ramiform ramify ramifying ramigerous ramilie ramilies ramillie ramillies ramin ramins ramiparous ramis ramisection ramisectomy ramism ramist ramjet ramjets ramlike ramline rammack rammage ramman rammass rammed rammel rammelsbergite rammer rammerman rammermen rammers rammi rammier rammies rammiest ramming rammish rammishly rammishness rammy ramon ramona ramonas ramoneur ramontchi ramoon ramose ramosely ramosities ramosity ramosopalmate ramosopinnate ramososubdivided ramoulade ramous ramp rampacious rampaciously rampage rampaged rampageous rampageously rampageousness rampageousnesses rampager rampagers rampages rampaging rampagings rampagious rampallian rampallians rampallion rampancies rampancy rampant rampantly rampantness rampart ramparted ramparting ramparts rampauge rampauged rampauges rampauging ramped ramper rampers ramphastidae ramphomicron rampick rampicked rampicks rampier rampike rampikes ramping rampingly rampings rampion rampions rampire rampired rampires rampish rampler ramplor rampole rampoled rampoles rampoling ramps rampsman rampsmen ramrace ramrod ramrodded ramrodding ramroddy ramrodlike ramrods rams ramscallion ramsch ramshackle ramshackled ramshackleness ramshackly ramshorn ramshorns ramson ramsons ramstam ramstead ramta ramtil ramtilla ramtillas ramtils ramular ramule ramuli ramuliferous ramulose ramulous ramulus ramus ramuscule ramverse ran rana ranal ranales ranaria ranarian ranarium ranariums ranas ranatra rance ranced rancel rancellor rancelman rancelmen rancels rancer rances rancescent ranch ranche ranched rancher rancheria rancherias rancherie rancheries ranchero rancheros ranchers ranches ranching ranchings ranchland ranchlands ranchless ranchlike ranchman ranchmen rancho ranchos ranchwoman rancid rancider rancidest rancidification rancidified rancidify rancidifying rancidities rancidity rancidly rancidness rancidnesses rancing rancio rancor rancored rancorous rancorously rancorousness rancorousnesses rancorproof rancors rancour rancourous rancours rand randall randan randannite randans randed randem randems rander randers randie randier randies randiest randily randiness randinesses randing randir randle randn random randomisation randomisations randomise randomised randomiser randomisers randomises randomish randomising randomization randomizations randomize randomized randomizer randomizers randomizes randomizing randomly randomness randomnesses randoms randomwise randon randons randori rands randy rane ranee ranees ranforce rang rangale rangatira rangatiras rangatiratanga rangatiratangas rangdoodles range ranged rangefinder rangefinders rangefinding rangefindings rangeheads rangeland rangelands rangeless rangeman rangemen ranger rangers rangership rangerships ranges rangework rangey rangier rangiest rangifer rangiferine ranginess ranginesses ranging rangle rangler rangoli rangolis rangoon rangpur rangy rani ranid ranidae ranids raniferous raniform ranine raninian ranis ranitidine ranivorous rank ranke ranked ranker rankers rankes rankest ranket rankett rankine ranking rankings rankish rankle rankled rankles rankless rankling ranklingly rankly rankness ranknesses ranks ranksman ranksmen rankwise ranli rann rannel rannigal ranny ranomer ranomers ranpike ranpikes ransack ransacked ransacker ransackers ransacking ransackle ransacks ransel ranselman ranselmen ransels ranses ranseur ranshackle ranshackled ranshackles ranshackling ranshakle ranshakled ranshakles ranshakling ransom ransomable ransomed ransomer ransomers ransomfree ransoming ransomless ransoms ranstead rant rantan rantankerous ranted rantepole ranter ranterism ranterisms ranters ranting rantingly rantings rantipole rantipoled rantipoles rantipoling rantism rantize rantock rantoon rantree rants ranty ranula ranulae ranular ranulas ranunculaceae ranunculaceous ranunculales ranunculi ranunculus ranunculuses ranzel ranzelman ranzelmen ranzels raob raoulia raoulias rap rapable rapaceus rapacious rapaciously rapaciousness rapaciousnesses rapacities rapacity rapakivi rapateaceae rapateaceous rapatiteur rapatiteurs rape rapeable raped rapeful rapely rapeoil raper rapers rapes rapeseed rapeseeds rapeye raphae raphael raphaelesque raphania raphanias raphanus raphany raphe raphes raphia raphias raphicerus raphidae raphide raphides raphidiferous raphidiid raphidiidae raphis raphus rapic rapid rapidamente rapide rapider rapidest rapidities rapidity rapidly rapidness rapidnesses rapido rapids rapier rapiered rapiers rapilli rapillo rapine rapiner rapines raping rapini rapinic rapinis rapist rapists raploch raplochs raport rappage rapparee rapparees rappe rapped rappee rappees rappel rappeled rappeling rappelled rappelling rappellings rappels rappen rapper rappers rapping rappings rappini rappinis rappist rapport rapportage rapportages rapporteur rapporteurs rapports rapprochement rapprochements raps rapscallion rapscallionism rapscallionly rapscallionry rapscallions rapt raptatorial raptatory rapter raptest raptly raptness raptnesses raptor raptores raptorial raptorially raptorious raptors raptril rapture raptured raptureless raptures rapturing rapturise rapturised rapturises rapturising rapturist rapturists rapturize rapturized rapturizes rapturizing rapturous rapturously rapturousness rapturousnesses raptury raptus raquet raquette rara rare rarebit rarebits rared rarefaction rarefactional rarefactions rarefactive rarefiable rarefication rarefied rarefier rarefiers rarefies rarefy rarefying rarely rareness rarenesses rarer rareripe rareripes rares rarest rareties rarety rariconstant rariety rarified rarifies rarify rarifying raring rariora rarish rarities rarity ras rasa rasamala rasant rasbora rasboras rascacio rascaille rascailles rascal rascaldom rascaldoms rascaless rascalion rascalise rascalism rascalisms rascalities rascality rascalize rascalliest rascallike rascallion rascallions rascally rascalry rascals rascalship rascasse rascasses rasceta rascette raschel raschels rase rased rasen raser rasers rases rasgado rash rashbuss rashed rasher rashers rashes rashest rashful rashing rashlike rashly rashness rashnesses rasing rasion rasistant rasistante rasistantes rasistants raskolnik raskolnikov rasoir rason rasophore rasorial rasour rasp raspatories raspatorium raspatory raspberriade raspberries raspberry raspberrylike rasped rasper raspers raspier raspiest raspiness raspinesses rasping raspingly raspingness raspings raspis raspish raspite rasps raspy rassasy rasse rasses rassle rassled rassles rassling rast rasta rastafari rastafarian rastafarianism raster rasterise rasterised rasterises rasterising rasterize rasterized rasterizes rasterizing rasters rastik rastle rastled rastles rastling rastrum rastrums rasty rasuma rasure rasures rat rata ratabilities ratability ratable ratableness ratablenesses ratables ratably ratafee ratafees ratafia ratafias ratal ratals ratan ratanhia ratanies ratans ratany rataplan rataplanned rataplanning rataplans ratas ratatat ratatats ratatouille ratatouilles ratbag ratbaggery ratbags ratbite ratcatcher ratcatching ratch ratched ratchel ratchelly ratcher ratches ratchet ratcheted ratcheting ratchetlike ratchets ratchety ratching ratchment rate rateabilities rateability rateable rateableness rateables rateably rated rateen ratel rateless ratels ratemaking ratemakings ratement ratemeter ratemeters ratepayer ratepayers ratepaying rater ratero raters rates ratfink ratfinks ratfish ratfishes rath ratha rathe rathed rathely ratheness rather ratherest ratheripe ratheripes ratherish ratherly rathest ratheter rathite rathole ratholes rathripe rathripes raths rathskeller rathskellers ratibida raticidal raticide raticides raticocinator ratifia ratifiable ratification ratificationist ratifications ratified ratifier ratifiers ratifies ratify ratifying ratihabition ratina ratine ratines rating ratings ratio ratiocinant ratiocinate ratiocinated ratiocinates ratiocinating ratiocination ratiocinations ratiocinative ratiocinator ratiocinators ratiocinatory ratiometer ration rationable rationably rational rationale rationales rationalisable rationalisation rationalisations rationalise rationalised rationaliser rationalisers rationalises rationalising rationalism rationalisms rationalist rationalistic rationalistical rationalistically rationalisticism rationalists rationalities rationality rationalizable rationalization rationalizations rationalize rationalized rationalizer rationalizers rationalizes rationalizing rationally rationalness rationalnesses rationals rationate rationed rationing rationless rationment rations ratios ratitae ratite ratites ratitous ratiuncle ratlike ratline ratliner ratlines ratling ratlings rato ratoo ratoon ratooned ratooner ratooners ratooning ratoons ratoos ratos ratpack ratpacks ratproof rats ratsbane ratsbanes ratshit ratskeller rattage rattail rattailed rattails rattan rattans rattaree rattattoo ratted ratteen ratteens rattel ratten rattened rattener ratteners rattening rattenings rattens ratter ratteries ratters rattery ratti rattier rattiest rattily rattiness rattinesses rattinet ratting rattingly rattings rattish rattle rattlebag rattlebags rattlebones rattlebox rattleboxes rattlebrain rattlebrained rattlebrains rattlebush rattled rattlehead rattleheaded rattlejack rattlemouse rattlenut rattlepate rattlepated rattlepates rattlepod rattleproof rattler rattleran rattleroot rattlers rattlertree rattles rattleskull rattleskulled rattlesnake rattlesnakes rattlesome rattletop rattletrap rattletraps rattletybang rattleweed rattlewort rattlier rattliest rattlin rattline rattlines rattling rattlingly rattlingness rattlings rattlins rattly ratton rattoner rattons rattoon rattooned rattooning rattoons rattrap rattraps rattus ratty ratu ratus ratwa ratwood raucid raucidity raucities raucity raucle raucler rauclest raucorous raucous raucously raucousness raucousnesses raught raughty raugrave rauk raukle rauli raun raunch raunched raunches raunchier raunchiest raunchily raunchiness raunchinesses raunching raunchy raunge raunged raunges raunging raunpick rauns raupo rauque rauraci rauriki rauvolfia rauwolfia rauwolfias ravage ravaged ravagement ravagements ravager ravagers ravages ravaging rave raved ravehook raveinelike ravel raveled raveler ravelers ravelin raveling ravelings ravelins ravelled raveller ravellers ravelling ravellings ravelly ravelment ravelments ravelproof ravels raven ravenala ravendom ravenduck ravened ravener raveners ravenhood ravening raveningly ravenings ravenish ravenlike ravenling ravenna ravenous ravenously ravenousness ravenousnesses ravenry ravens ravensara ravenstone ravenwise raver ravers ravery raves ravigote ravigotes ravin ravinate ravine ravined ravinement ravines raviney raving ravingly ravings ravining ravins ravioli raviolis ravish ravished ravishedly ravisher ravishers ravishes ravishing ravishingly ravishingness ravishment ravishments ravison ravissant raw rawbone rawboned rawbones rawer rawest rawhead rawheads rawhide rawhided rawhider rawhides rawhiding rawin rawing rawings rawins rawinsonde rawinsondes rawish rawishness rawky rawly rawn rawness rawnesses rawnie rawns raws rax raxed raxes raxing ray raya rayage rayah rayahs rayas rayat rayed rayful raygrass raygrasses raying rayle rayled rayles rayless raylessly raylessness raylessnesses raylet raylets raylike rayling rayne raynes rayon rayonnance rayonnant rayonne rayonny rayons rays raze razed razee razeed razeeing razees razeing razer razers razes razing razmataz razmatazes razoo razoos razor razorable razorback razorbacks razorbill razorbills razorblade razorblades razored razoredge razorfish razorfishes razoring razorless razormaker razormaking razorman razors razorstrop razour razure razures razz razzamatazz razzamatazzes razzberries razzberry razzed razzer razzes razzia razzias razzing razzle razzles razzly razzmatazz razzmatazzes rb rbi rbound rc rcd rchauff rchitect rclame rcpt rct rcvr rd re rea reaal reabandon reabandoned reabandoning reabandons reabbreviate reabbreviated reabbreviates reabbreviating reable reabolish reabolition reabridge reabridged reabridging reabsence reabsent reabsolve reabsorb reabsorbed reabsorbing reabsorbs reabsorption reabsorptions reabstract reabstracted reabstracting reabstracts reabuse reaccede reacceded reaccedes reacceding reaccelerate reaccelerated reaccelerates reaccelerating reaccent reaccented reaccenting reaccents reaccentuate reaccentuated reaccentuating reaccept reacceptance reaccepted reaccepting reaccepts reaccess reaccessed reaccession reaccessions reacclaim reacclimate reacclimated reacclimates reacclimating reacclimatisation reacclimatise reacclimatised reacclimatises reacclimatising reacclimatization reacclimatize reacclimatized reacclimatizes reacclimatizing reaccommodate reaccommodated reaccommodates reaccommodating reaccomodate reaccomodated reaccomodates reaccomodating reaccompanied reaccompanies reaccompany reaccompanying reaccomplish reaccomplishment reaccord reaccost reaccount reaccredit reaccreditation reaccreditations reaccredited reaccrediting reaccredits reaccrue reaccumulate reaccumulated reaccumulates reaccumulating reaccumulation reaccusation reaccuse reaccused reaccuses reaccusing reaccustom reaccustomed reaccustoming reaccustoms reacetylation reach reachability reachable reachableness reachably reached reacher reachers reaches reachieve reachieved reachievement reachieves reachieving reaching reachless reachy reacidification reacidified reacidify reacidifying reacknowledge reacknowledged reacknowledging reacknowledgment reacquaint reacquaintance reacquaintances reacquainted reacquainting reacquaints reacquire reacquired reacquires reacquiring reacquisition reacquisitions react reactance reactances reactant reactants reacted reacting reaction reactional reactionally reactionaries reactionariness reactionarism reactionarisms reactionarist reactionarists reactionary reactionaryism reactionaryisms reactionism reactionist reactionists reactions reactivate reactivated reactivates reactivating reactivation reactivations reactivator reactive reactively reactiveness reactivenesses reactivities reactivity reactological reactology reactor reactors reacts reactualise reactualization reactualize reactuate reactuated reactuates reactuating reacuaintance read readabilities readability readable readableness readablenesses readably readapt readaptability readaptable readaptation readaptations readapted readaptiness readapting readaptive readaptiveness readapts readd readded readdict readdicted readdicting readdicts readding readdition readdress readdressed readdresses readdressing readds readept reader readerdom readerly readers readership readerships readhere readhesion readied readier readies readiest readily readiness readinesses reading readingdom readings readjourn readjourned readjourning readjournment readjournments readjourns readjudicate readjudicated readjudicating readjudication readjust readjustable readjusted readjuster readjusters readjusting readjustment readjustments readjusts readl readme readmeasurement readmes readminister readmiration readmire readmission readmissions readmit readmits readmittance readmittances readmitted readmitting readopt readopted readopting readoption readoptions readopts readorn readorned readorning readornment readorns readout readouts reads readvance readvanced readvancement readvances readvancing readvent readventure readvertency readvertise readvertised readvertisement readvertisements readvertises readvertising readvertize readvertized readvertizing readvise readvised readvises readvising readvocate readvocated readvocating readvocation ready readying readymade readymades reaedified reaedifies reaedify reaedifye reaedifyed reaedifyes reaedifying reaeducation reaentrance reaeration reaexportation reaexporter reaffect reaffection reaffiliate reaffiliated reaffiliating reaffiliation reaffirm reaffirmance reaffirmation reaffirmations reaffirmed reaffirmer reaffirming reaffirms reaffix reaffixed reaffixes reaffixing reafflict reafford reafforest reafforestation reafforestations reafforested reafforesting reafforests reaffront reaffusion reagan reaganomics reagencies reagency reagent reagents reaggravate reaggravation reaggregate reaggregated reaggregates reaggregating reaggregation reaggregations reaggressive reagin reaginic reaginically reagins reagitate reagitated reagitating reagitation reagree reagreement reais reak reaked reaking reaks real realarm realer reales realest realestate realgar realgars realia realienate realienated realienating realienation realign realigned realigning realignment realignments realigns realine realisabilities realisability realisable realisableness realisably realisation realisations realise realised realiser realisers realises realising realisingly realism realisms realist realistic realistically realisticise realisticize realisticness realists realities reality realive realizabilities realizability realizable realizableness realizably realization realizations realize realized realizer realizers realizes realizing realizingly reallegation reallege realleged realleging reallegorize realliance realliances reallie reallied reallies reallocate reallocated reallocates reallocating reallocation reallocations reallot reallotment reallotments reallots reallotted reallotting reallow reallowance reallude reallusion really reallying realm realmless realmlet realms realness realnesses realo realos realpolitik realpolitiker realpolitikers realpolitiks reals realter realterable realterableness realterably realteration realtered realtering realters realtie realties realtime realtor realtors realty ream reamage reamalgamate reamalgamated reamalgamating reamalgamation reamass reamassment reambitious reame reamed reamend reamended reamending reamendment reamendments reamends reamer reamerer reamers reames reamier reamiest reaminess reaming reamputation reams reamuse reamy rean reanalyse reanalysed reanalyses reanalysing reanalysis reanalyzable reanalyze reanalyzed reanalyzely reanalyzes reanalyzing reanchor reanesthetize reanesthetized reanesthetizes reanesthetizing reanimalise reanimalize reanimate reanimated reanimates reanimating reanimation reanimations reanneal reannex reannexation reannexations reannexed reannexes reannexing reannotate reannotated reannotating reannotation reannounce reannounced reannouncement reannouncing reannoy reannoyance reanoint reanointed reanointing reanointment reanoints reans reanswer reanswered reanswering reanswers reantagonize reantagonized reantagonizing reanvil reanxiety reap reapable reapdole reaped reaper reapers reaphook reaphooks reaping reapologies reapologise reapologize reapologized reapologizing reapology reapparel reapparelled reapparelling reapparels reapparition reappeal reappear reappearance reappearances reappeared reappearing reappears reappease reapplaud reapplause reappliance reapplicant reapplication reapplications reapplied reapplier reapplies reapply reapplying reappoint reappointed reappointing reappointment reappointments reappoints reapportion reapportioned reapportioning reapportionment reapportionments reapportions reapposition reappraisal reappraisals reappraise reappraised reappraisement reappraisements reappraiser reappraisers reappraises reappraising reappreciate reappreciation reapprehend reapprehension reapproach reapproachable reapprobation reappropriate reappropriated reappropriates reappropriating reappropriation reapproval reapprove reapproved reapproves reapproving reaps rear rearanged rearanging rearbitrate rearbitrated rearbitrating rearbitration reardoss reared rearer rearers rearguard rearguards reargue reargued reargues rearguing reargument rearguments rearhorse rearhorses rearii rearing rearisal rearise rearisen rearises rearising rearling rearly rearm rearmament rearmaments rearmed rearmice rearming rearmost rearmouse rearms rearose rearousal rearousals rearouse rearoused rearouses rearousing rearrange rearrangeable rearranged rearrangement rearrangements rearranger rearranges rearranging rearray rearrest rearrested rearresting rearrests rearrival rearrive rears rearticulate rearticulated rearticulates rearticulating rearticulation rearview rearward rearwardly rearwardness rearwards reascend reascendancy reascendant reascended reascendency reascendent reascending reascends reascension reascensional reascensions reascent reascents reascertain reascertainment reasearch reashlar reasiness reask reason reasonabilities reasonability reasonable reasonableness reasonablenesses reasonably reasonal reasoned reasonedly reasoner reasoners reasoning reasoningly reasonings reasonless reasonlessly reasonlessness reasonlessured reasonlessuring reasonproof reasons reaspire reassail reassailed reassailing reassails reassault reassay reassemblage reassemblages reassemble reassembled reassembles reassemblies reassembling reassembly reassent reassert reasserted reasserting reassertion reassertions reassertor reasserts reassess reassessed reassesses reassessing reassessment reassessments reasseverate reassign reassignation reassigned reassigning reassignment reassignments reassigns reassimilate reassimilated reassimilates reassimilating reassimilation reassimiliate reassimiliated reassimiliates reassimiliating reassist reassistance reassociate reassociated reassociates reassociating reassociation reassort reassorted reassorting reassortment reassortments reassorts reassume reassumed reassumes reassuming reassumption reassumptions reassurance reassurances reassure reassured reassuredly reassurement reassurer reassurers reassures reassuring reassuringly reast reasted reastier reastiest reastiness reastinesses reasting reastonish reastonishment reastray reasts reasty reasy reata reatas reate reates reattach reattachable reattached reattaches reattaching reattachment reattachments reattack reattacked reattacking reattacks reattain reattained reattaining reattainment reattains reattempt reattempted reattempting reattempts reattend reattendance reattention reattentive reattest reattire reattired reattiring reattract reattraction reattribute reattributed reattributes reattributing reattribution reattributions reatus reaudit reaudition reaumur reaute reauthenticate reauthenticated reauthenticating reauthentication reauthorisation reauthorisations reauthorise reauthorises reauthorization reauthorizations reauthorize reauthorized reauthorizes reauthorizing reavail reavailable reavailed reavailing reavails reave reaved reaver reavers reavery reaves reaving reavoid reavoidance reavouch reavow reavowal reavowed reavowing reavows reawait reawake reawaked reawaken reawakened reawakening reawakenings reawakenment reawakens reawakes reawaking reaward reaware reawoke reawoken reb rebab reback rebacked rebacking rebacks rebadge rebadged rebadges rebadging rebag rebait rebaited rebaiting rebaits rebake rebaked rebaking rebalance rebalanced rebalances rebalancing rebale rebaled rebaling reballast reballot reballoted reballoting reban rebandage rebandaged rebandaging rebanish rebanishment rebank rebankrupt rebankruptcy rebaptisation rebaptise rebaptised rebaptises rebaptising rebaptism rebaptismal rebaptisms rebaptization rebaptize rebaptized rebaptizer rebaptizes rebaptizing rebar rebarbarization rebarbarize rebarbative rebarbatively rebarbativeness rebargain rebars rebase rebasis rebatable rebate rebateable rebated rebatement rebatements rebater rebaters rebates rebathe rebathed rebathing rebating rebato rebatoes rebatos rebawl rebbe rebbes rebbetzin rebbetzins rebbred rebeamer rebear rebeat rebeautify rebec rebeck rebecks rebecome rebecs rebed rebeg rebegan rebeget rebeggar rebegin rebeginner rebeginning rebegins rebeguile rebegun rebehold rebeholding rebekah rebel rebeldom rebeldoms rebelief rebelieve rebelled rebeller rebellers rebellike rebelling rebellion rebellions rebellious rebelliously rebelliousness rebelliousnesses rebellow rebellowed rebellowing rebellows rebelly rebelong rebelove rebelproof rebels rebemire rebend rebending rebenediction rebenefit rebent rebeset rebesiege rebestow rebestowal rebetake rebetray rebewail rebia rebias rebid rebiddable rebidden rebidding rebids rebill rebilled rebillet rebilling rebills rebind rebinding rebinds rebirth rebirthing rebirthings rebirths rebit rebite rebites rebiting rebitten reblade reblame reblast rebleach reblend reblended reblending reblends reblent rebless reblister reblock rebloom rebloomed reblooming reblooms reblossom reblossomed reblossoming reblossoms reblot reblow reblown reblue rebluff reblunder reboant reboantic reboard reboarded reboarding reboards reboast reboation reboations rebob rebodied rebodies rebody rebodying reboil reboiled reboiler reboiling reboils reboise reboisement reboke rebold rebolera rebolt rebone rebook rebooked rebooking rebooks reboot rebooted rebooting reboots rebop rebops rebore rebored rebores reboring reborn reborrow reborrowed reborrowing reborrows rebosa reboso rebosos rebote rebottle rebottled rebottles rebottling rebought rebounce rebound reboundable reboundant rebounded rebounder rebounders rebounding reboundingness rebounds rebourbonise rebourbonize rebox rebozo rebozos rebrace rebraced rebraces rebracing rebraid rebranch rebranched rebranches rebranching rebrand rebrandish rebreathe rebred rebreed rebreeding rebreeds rebrew rebribe rebrick rebridge rebrighten rebring rebringer rebroach rebroadcast rebroadcasted rebroadcasting rebroadcasts rebroaden rebroadened rebroadening rebroadens rebronze rebrown rebrush rebrutalise rebrutalize rebs rebubble rebuckle rebuckled rebuckling rebud rebudget rebudgeted rebudgeting rebuff rebuffable rebuffably rebuffed rebuffet rebuffing rebuffproof rebuffs rebuild rebuilded rebuilder rebuilding rebuilds rebuilt rebukable rebuke rebukeable rebuked rebukeful rebukefully rebukefulness rebukeproof rebuker rebukers rebukes rebuking rebukingly rebulk rebunch rebundle rebunker rebuoy rebuoyage reburden reburgeon reburial reburials reburied reburies reburn reburnish reburse reburst rebury reburying rebus rebused rebuses rebush rebusing rebusy rebut rebute rebutment rebutments rebuts rebuttable rebuttably rebuttal rebuttals rebutted rebutter rebutters rebutting rebutton rebuttoned rebuttoning rebuttons rebuy rebuying rebuys rec recable recabled recabling recadency recado recage recaged recaging recal recalcination recalcine recalcitrance recalcitrances recalcitrancies recalcitrancy recalcitrant recalcitrantly recalcitrants recalcitrate recalcitrated recalcitrates recalcitrating recalcitration recalcitrations recalculate recalculated recalculates recalculating recalculation recalculations recalesce recalesced recalescence recalescences recalescent recalesces recalescing recalibrate recalibrated recalibrates recalibrating recalibration recalibrations recalk recall recallabilities recallability recallable recalled recaller recallers recalling recallist recallment recallments recalls recalment recalments recals recamera recamier recamiers recampaign recanalisation recanalization recanalizations recanalize recanalized recanalizes recanalizing recancel recanceled recanceling recancellation recandescence recandidacy recane recaned recanes recaning recant recantation recantations recanted recanter recanters recanting recantingly recants recanvas recap recapacitate recapitalisation recapitalisations recapitalise recapitalised recapitalises recapitalising recapitalization recapitalizations recapitalize recapitalized recapitalizes recapitalizing recapitulate recapitulated recapitulates recapitulating recapitulation recapitulationist recapitulations recapitulative recapitulator recapitulatory recappable recapped recapper recapping recaps recaption recaptions recaptivate recaptivation recaptor recaptors recapture recaptured recapturer recapturers recaptures recapturing recarbon recarbonate recarbonation recarbonisation recarbonise recarboniser recarbonization recarbonize recarbonizer recarburization recarburize recarburizer recarnify recarpet recarpeted recarpeting recarpets recarriage recarried recarrier recarries recarry recarrying recart recarve recarved recarving recase recash recasket recast recaster recasters recasting recasts recatalog recataloged recataloging recatalogs recatalogue recatalogued recataloguing recatch recatches recatching recategorised recategorize recategorized recategorizing recaught recaulescence recausticise recausticize recaution recce recced recceed recceing recces recche recchose recchosen reccied reccies recco reccos reccy reccying recd recede receded recedence recedent receder recedes receding receipt receiptable receipted receipter receipting receiptless receiptment receiptor receiptors receipts receivabilities receivability receivable receivableness receivablenesses receivables receivablness receival receivals receive received receivedness receiver receivers receivership receiverships receives receiving receivings recelebrate recelebrated recelebrates recelebrating recelebration recement recementation recemented recementing recements recencies recency recense recensed recenserecit recenses recensing recension recensionist recensions recensor recensored recensoring recensors recensure recensus recent recenter recentest recently recentness recentnesses recentralisation recentralisations recentralise recentralization recentralizations recentralize recentralized recentralizing recentre recentred recentres recentrifuge recentrifuged recentrifuges recentrifuging recentring recept receptacle receptacles receptacula receptacular receptaculite receptaculitid receptaculitoid receptaculum receptant receptary receptibilities receptibility receptible reception receptionism receptionist receptionists receptionreck receptions receptitious receptive receptively receptiveness receptivenesses receptivities receptivity receptor receptoral receptorial receptors recepts receptual receptually recercelae recercele recercelee recertificate recertification recertifications recertified recertifies recertify recertifying recess recessed recesser recesses recessing recession recessional recessionals recessionary recessions recessive recessively recessiveness recessivenesses recessives recessivity recesslike recessor rechabite rechafe rechain rechal rechallenge rechallenged rechallenges rechallenging rechamber rechange rechanged rechanges rechanging rechannel rechanneled rechanneling rechannelled rechannelling rechannels rechant rechaos rechar recharge rechargeable recharged recharger rechargers recharges recharging rechart recharted recharter rechartered rechartering recharters recharting recharts rechase rechaser rechasten rechate rechated rechates rechating rechauffe rechauffes rechaw recheat recheated recheating recheats recheck rechecked rechecking rechecks recheer recherch recherche recherché rechew rechewed rechewing rechews rechie rechip rechisel rechlesse rechoose rechooses rechoosing rechoreograph rechoreographed rechoreographing rechoreographs rechose rechosen rechristen rechristened rechristening rechristenings rechristens rechromatograph rechromatographed rechromatographies rechromatographing rechromatographs rechromatography rechuck rechurn recide recidivate recidivated recidivates recidivating recidivation recidive recidivism recidivisms recidivist recidivistic recidivists recidivity recidivous recife recip recipe recipes recipiangle recipiatur recipience recipiences recipiencies recipiency recipiend recipiendary recipiendum recipient recipients recipiomotor reciprocable reciprocal reciprocalise reciprocalities reciprocality reciprocalize reciprocally reciprocalness reciprocalnesses reciprocals reciprocant reciprocantive reciprocants reciprocate reciprocated reciprocates reciprocating reciprocation reciprocations reciprocatist reciprocative reciprocator reciprocators reciprocatory reciprocitarian reciprocities reciprocity reciproque recircle recircled recircles recircling recirculate recirculated recirculates recirculating recirculation recirculations recision recisions recission recissory recit recitable recital recitalist recitalists recitals recitando recitatif recitation recitationalism recitationist recitationists recitations recitative recitatively recitatives recitativi recitativical recitativo recitativos recite recited recitement reciter reciters recites reciting recits recivilisation recivilise recivilization recivilize reck reckan recked recking reckla reckless recklessly recklessness recklessnesses reckling recklings reckon reckonable reckoned reckoner reckoners reckoning reckonings reckons recks reclad reclaim reclaimable reclaimableness reclaimably reclaimant reclaimants reclaimed reclaimer reclaimers reclaiming reclaimless reclaimment reclaims reclama reclamation reclamations reclamatory reclame reclames reclang reclasp reclasped reclasping reclasps reclass reclassification reclassifications reclassified reclassifies reclassify reclassifying reclean recleaned recleaner recleaning recleans recleanse recleansed recleansing reclear reclearance reclimb reclimbed reclimbing reclimbs reclinable reclinant reclinate reclinated reclination reclinations recline reclined recliner recliners reclines reclining reclivate reclosable reclose recloseable reclosed recloses reclosing reclothe reclothed reclothes reclothing reclude recluse reclusely recluseness reclusenesses reclusery recluses reclusion reclusions reclusive reclusively reclusiveness reclusivenesses reclusories reclusory recoach recoagulate recoagulated recoagulating recoagulation recoal recoaled recoaling recoals recoast recoat recoated recoating recoats recock recocked recocking recocks recoct recoction recode recoded recodes recodification recodifications recodified recodifies recodify recodifying recoding recogitate recogitation recognisability recognisable recognisably recognisance recognisances recognise recognised recognisedly recogniser recognisers recognises recognising recognisingly recognita recognition recognitions recognitive recognitor recognitory recognizabilities recognizability recognizable recognizably recognizance recognizances recognizant recognize recognized recognizedly recognizee recognizer recognizers recognizes recognizing recognizingly recognizor recognosce recohabitation recoil recoiled recoiler recoilers recoiling recoilingly recoilless recoilment recoils recoin recoinage recoinages recoined recoiner recoining recoins recoke recollapse recollate recollation recollect recollectable recollected recollectedly recollectedness recollectednesses recollectible recollecting recollection recollections recollective recollectively recollectiveness recollects recollet recolonisation recolonisations recolonise recolonised recolonises recolonising recolonization recolonizations recolonize recolonized recolonizes recolonizing recolor recoloration recolored recoloring recolors recolour recolouration recoloured recolouring recolours recomb recombed recombinant recombinants recombination recombinational recombinations recombine recombined recombines recombing recombining recombs recomember recomfort recomforted recomforting recomfortless recomforts recomforture recomfortures recommand recommence recommenced recommencement recommencements recommencer recommences recommencing recommend recommendability recommendable recommendableness recommendably recommendation recommendations recommendative recommendatory recommended recommendee recommender recommenders recommending recommends recommission recommissioned recommissioning recommissions recommit recommiting recommitment recommitments recommits recommittal recommittals recommitted recommitting recommunicate recommunion recompact recompacted recompacting recompacts recompare recompared recomparing recomparison recompass recompel recompence recompences recompensable recompensate recompensated recompensating recompensation recompensatory recompense recompensed recompenser recompenses recompensing recompensive recompete recompetition recompetitor recompilation recompilations recompile recompiled recompilement recompiles recompiling recomplain recomplaint recomplete recompletion recompliance recomplicate recomplication recomply recompose recomposed recomposer recomposes recomposing recomposition recompositions recompound recompounded recompounding recompounds recomprehend recomprehension recompress recompressed recompresses recompressing recompression recompressions recomputable recomputation recomputations recompute recomputed recomputes recomputing recon reconceal reconcealment reconcede reconceive reconceived reconceives reconceiving reconcentrado reconcentrate reconcentrated reconcentrates reconcentrating reconcentration reconcentrations reconception reconceptions reconceptualisation reconceptualising reconceptualization reconceptualizations reconceptualize reconceptualized reconceptualizes reconceptualizing reconcert reconcession reconcilabilities reconcilability reconcilable reconcilableness reconcilablenesses reconcilably reconcile reconciled reconcilee reconcileless reconcilement reconcilements reconciler reconcilers reconciles reconciliability reconciliable reconciliate reconciliated reconciliating reconciliation reconciliations reconciliatiory reconciliative reconciliator reconciliatory reconciling reconcilingly reconclude reconclusion reconcoct reconcrete reconcur recond recondemn recondemnation recondensation recondensations recondense recondensed recondenses recondensing recondite reconditely reconditeness reconditenesses recondition reconditioned reconditioning reconditions reconditory recondole reconduct reconduction reconfer reconferred reconferring reconfers reconfess reconfide reconfigurability reconfigurable reconfiguration reconfigurations reconfigure reconfigured reconfigurer reconfigures reconfiguring reconfine reconfined reconfinement reconfines reconfining reconfirm reconfirmation reconfirmations reconfirmed reconfirming reconfirms reconfiscate reconfiscated reconfiscating reconfiscation reconform reconfound reconfront reconfrontation reconfuse reconfused reconfusing reconfusion recongeal recongelation recongest recongestion recongratulate recongratulation reconjoin reconjunction reconnaissance reconnaissances reconnect reconnected reconnecting reconnection reconnections reconnects reconned reconning reconnoissance reconnoissances reconnoiter reconnoitered reconnoiterer reconnoiterers reconnoitering reconnoiteringly reconnoiters reconnoitre reconnoitred reconnoitrer reconnoitrers reconnoitres reconnoitring reconnoitringly reconquer reconquered reconquering reconqueror reconquers reconquest reconquests recons reconsecrate reconsecrated reconsecrates reconsecrating reconsecration reconsecrations reconsent reconsider reconsideration reconsiderations reconsidered reconsidering reconsiders reconsign reconsigned reconsigning reconsignment reconsignments reconsigns reconsole reconsoled reconsolidate reconsolidated reconsolidates reconsolidating reconsolidation reconsolidations reconsoling reconstituent reconstituents reconstitutable reconstitute reconstituted reconstitutes reconstituting reconstitution reconstitutions reconstruct reconstructed reconstructible reconstructing reconstruction reconstructional reconstructionary reconstructionism reconstructionisms reconstructionist reconstructionists reconstructions reconstructive reconstructively reconstructiveness reconstructor reconstructors reconstructs reconstrue reconsult reconsultation reconsulted reconsulting recontact recontacted recontacting recontacts recontaminate recontaminated recontaminates recontaminating recontamination recontaminations recontemplate recontemplated recontemplating recontemplation recontend reconter recontest recontested recontesting recontests recontextualize recontextualized recontextualizes recontextualizing recontinuance recontinue recontinued recontinues recontinuing recontour recontoured recontouring recontours recontract recontracted recontracting recontraction recontracts recontrast recontribute recontribution recontrivance recontrive recontrol recontrolling reconvalesce reconvalescence reconvalescences reconvalescent reconvene reconvened reconvenes reconvening reconvenire reconvention reconventional reconverge reconverged reconvergence reconverging reconverse reconversion reconversions reconvert reconverted reconvertible reconverting reconverts reconvey reconveyance reconveyances reconveyed reconveying reconveys reconvict reconvicted reconvicting reconviction reconvictions reconvicts reconvince reconvinced reconvinces reconvincing reconvoke recook recooked recooking recooks recool recooper recopied recopies recopilation recopper recopy recopying recopyright record recordable recordance recordant recordation recordations recordative recordatively recordatory recordbook recorded recordedly recorder recorders recordership recorderships recording recordings recordist recordists recordless records recordsize recork recorked recorking recorks recoronation recorporification recorporify recorrect recorrection recorrupt recorruption recost recostume recostumed recostuming recounsel recounseled recounseling recount recountable recountal recountals recounted recountenance recounter recounters recounting recountless recountment recountments recounts recoup recoupable recoupe recouped recouper recouping recouple recoupled recouples recoupling recoupment recoupments recoups recour recoure recoured recoures recouring recours recourse recoursed recourses recoursing recover recoverabilities recoverability recoverable recoverableness recoverablenesses recoverance recovered recoveree recoverees recoverer recoverers recoveries recovering recoveringly recoverless recoveror recoverors recovers recovery recower recowered recowering recowers recoyle recoyled recoyles recoyling recpt recramp recrank recrate recrated recrates recrating recrayed recreance recreances recreancies recreancy recreant recreantly recreantness recreants recrease recreatable recreate recreated recreates recreating recreation recreational recreationally recreationist recreationists recreations recreative recreatively recreativeness recreator recreators recreatory recredential recredit recrement recremental recrementitial recrementitious recrements recrescence recrew recriminate recriminated recriminates recriminating recrimination recriminations recriminative recriminator recriminators recriminatory recriticise recriticize recriticized recriticizing recroon recrop recross recrossed recrosses recrossing recrowd recrown recrowned recrowning recrowns recrucify recrudency recrudesce recrudesced recrudescence recrudescences recrudescencies recrudescency recrudescent recrudesces recrudescing recruit recruitable recruitage recruital recruitals recruited recruitee recruiter recruiters recruithood recruiting recruitment recruitments recruitors recruits recruity recrush recrusher recrystallisation recrystallisations recrystallise recrystallised recrystallises recrystallising recrystallization recrystallizations recrystallize recrystallized recrystallizes recrystallizing recs rect recta rectal rectalgia rectally rectangle rectangled rectangles rectangular rectangularities rectangularity rectangularly rectangularness rectangulate rectangulometer rectectomies rectectomy recti rectifiabilities rectifiability rectifiable rectification rectifications rectificative rectificator rectificatory rectified rectifier rectifiers rectifies rectify rectifying rectigrade rectilineal rectilineally rectilinear rectilinearism rectilinearities rectilinearity rectilinearly rectilinearness rectilineation rectinerved rection rections rectipetalies rectipetalities rectipetality rectipetaly rectirostral rectischiac rectiserial rectitic rectitis rectitises rectitude rectitudes rectitudinous recto rectoabdominal rectocele rectoceles rectoclysis rectococcygeal rectococcygeus rectocolitic rectocolonic rectocystotomy rectogenital rectopexy rectophobia rectoplasty rector rectoral rectorate rectorates rectoress rectoresses rectorial rectorials rectories rectorrhaphy rectors rectorship rectorships rectory rectos rectoscope rectoscopy rectosigmoid rectostenosis rectostomy rectotome rectotomy rectovaginal rectovesical rectress rectresses rectrices rectricial rectrix rectum rectums rectus recubant recubate recubation recueil recueillement recuile recuiled recuiles recuiling reculade recule reculed recules reculing recultivate recultivated recultivates recultivating recultivation recumb recumbence recumbences recumbencies recumbency recumbent recumbently recuperability recuperable recuperance recuperate recuperated recuperates recuperating recuperation recuperations recuperative recuperativeness recuperator recuperators recuperatory recuperet recur recure recured recureful recureless recures recuring recurl recurred recurrence recurrences recurrencies recurrency recurrent recurrently recurrer recurring recurringly recurs recursant recurse recursed recurses recursing recursion recursions recursive recursively recursiveness recursivenesses recurtain recurvant recurvaria recurvate recurvated recurvation recurvations recurvature recurve recurved recurves recurving recurvirostra recurvirostral recurvirostridae recurvity recurvopatent recurvoternate recurvous recusal recusals recusance recusances recusancies recusancy recusant recusants recusation recusations recusative recusator recuse recused recuses recusf recushion recusing recussion recut recuts recutting recyclability recyclable recyclables recyclate recyclates recycle recycled recycler recyclers recycles recycling recyclist recyclists red redact redacted redacteur redacting redaction redactional redactions redactor redactorial redactors redacts redamage redamaged redamages redamaging redamation redame redamnation redan redans redare redared redargue redargued redargues redarguing redargution redargutive redargutory redaring redarken redarn redart redate redated redates redating redaub redawn redback redbacks redbait redbaited redbaiter redbaiters redbaiting redbaitings redbaits redbay redbays redbeard redbellies redbelly redberry redbill redbird redbirds redbone redbones redbreast redbreasts redbrick redbricks redbrush redbuck redbud redbuds redbug redbugs redcap redcaps redcoat redcoats redcoll redcurrant redcurrants redd redded redden reddenda reddendo reddendos reddendum reddened reddening reddens redder redders reddest reddier reddiest redding reddingite reddings reddish reddishly reddishness reddishnesses reddition redditive reddle reddled reddleman reddlemen reddles reddling reddock redds reddsman reddy rede redeal redealing redeals redealt redear redears redebate redebit redecay redeceive redeceived redeceiving redecide redecided redecides redeciding redecimate redecision redeck redeclaration redeclare redeclared redeclares redeclaring redecline redeclined redeclining redecorate redecorated redecorates redecorating redecoration redecorations redecorator redecorators redecraft redecrafts redecrease redecussate reded rededicate rededicated rededicates rededicating rededication rededications rededicatory rededuct rededuction redeed redeem redeemabilities redeemability redeemable redeemableness redeemablenesses redeemably redeemed redeemedness redeemer redeemeress redeemers redeemership redeeming redeemless redeems redefault redefeat redefeated redefeating redefeats redefecate redefect redefected redefecting redefects redefer redefiance redefied redefies redefine redefined redefiner redefines redefining redefinition redefinitions redeflect redefy redefying redeify redelay redelegate redelegated redelegating redelegation redeless redelete redeleted redeleting redeliberate redeliberated redeliberating redeliberation redeliver redeliverance redeliverances redelivered redeliverer redeliverers redeliveries redelivering redelivers redelivery redely redemand redemandable redemanded redemanding redemands redemise redemised redemising redemolish redemonstrate redemonstrated redemonstrates redemonstrating redemonstration redemptible redemption redemptional redemptioner redemptioners redemptionist redemptionists redemptionless redemptions redemptive redemptively redemptor redemptorial redemptorist redemptorists redemptory redemptress redemptrice redenial redenied redenies redenigrate redeny redenying redepend redeploy redeployed redeploying redeployment redeployments redeploys redepmtory redeposit redeposited redepositing redeposition redeposits redepreciate redepreciated redepreciating redepreciation redeprive rederivation redes redescend redescended redescending redescends redescent redescribe redescribed redescribes redescribing redescription redescriptions redesert redesertion redeserve redesign redesignate redesignated redesignates redesignating redesignation redesigned redesigning redesigns redesire redesirous redesman redespise redetect redetention redetermination redeterminations redetermine redetermined redetermines redeterminible redetermining redevable redevelop redeveloped redeveloper redevelopers redeveloping redevelopment redevelopments redevelops redevise redevote redevotion redeye redeyes redfield redfin redfinch redfins redfish redfishes redfoot redhanded redhandedness redhead redheaded redheadedly redheadedness redheader redheads redheart redhearted redhibition redhibitory redhoop redhorse redhorses redia rediae redial redialed redialing redialled redialling redials redias redictate redictated redictating redictation redid redient redifferentiate redifferentiated redifferentiating redifferentiation rediffuse rediffused rediffusing rediffusion redig redigest redigested redigesting redigestion redigestions redigests redigitalize redilate redilated redilating redimension redimensioned redimensioning redimensions rediminish reding redingote redingotes redintegrate redintegrated redintegrates redintegrating redintegration redintegrations redintegrative redintegrator redip redipped redipper redipping redips redipt redirect redirected redirecting redirection redirections redirects redisable redisappear redisburse redisbursed redisbursement redisburses redisbursing redischarge redischarged redischarging rediscipline redisciplined redisciplining rediscount rediscountable rediscounted rediscounting rediscounts rediscourage rediscover rediscovered rediscoverer rediscoverers rediscoveries rediscovering rediscovers rediscovery rediscuss rediscussed rediscusses rediscussing rediscussion redisembark redisinfect redismiss redismissal redispatch redispel redispersal redisperse redispersed redispersing redisplay redisplayed redisplaying redisplays redispose redisposed redisposes redisposing redisposition redispositions redispute redisputed redisputing redissect redissection redisseise redisseisin redisseisor redisseize redisseizin redisseizor redissoluble redissolubleness redissolubly redissolution redissolutions redissolvable redissolve redissolved redissolves redissolving redistend redistil redistill redistillable redistillableness redistillabness redistillation redistillations redistilled redistiller redistilling redistills redistils redistinguish redistrain redistrainer redistributable redistribute redistributed redistributer redistributes redistributing redistribution redistributional redistributionist redistributionists redistributions redistributive redistributor redistributory redistrict redistricted redistricting redistricts redisturb redition redive rediversion redivert redivertible redivide redivided redivides redividing redivision redivisions redivive redivivous redivivus redivorce redivorced redivorcement redivorcing redivulge redivulgence redjacket redknees redleg redlegs redline redlined redliner redliners redlines redlining redlinings redly redmaids redmouth redneck rednecked rednecks redness rednesses redo redock redocked redocket redocketed redocketing redocking redocks redocument redodid redodoing redodone redoes redoing redolence redolences redolencies redolency redolent redolently redominate redominated redominating redon redonda redondilla redone redonned redonning redons redoom redos redouble redoubled redoublement redoublements redoubler redoubles redoubling redoubt redoubtable redoubtableness redoubtably redoubted redoubting redoubts redound redounded redounding redoundings redounds redout redoute redouts redowa redowas redox redoxes redpoll redpolls redraft redrafted redrafting redrafts redrag redrape redraw redrawer redrawerredrawers redrawers redrawing redrawn redraws redream redreamed redreaming redreams redreamt redredge redress redressable redressal redressed redresser redressers redresses redressible redressing redressive redressless redressment redressor redressors redrew redried redries redrill redrilled redrilling redrills redrive redriven redrives redriving redroop redroot redroots redrove redrug redrugged redrugging redruthite redruthites redry redrying reds redsear redshank redshanks redshare redshift redshifted redshifts redshire redshirt redshirted redshirting redshirts redshort redskin redskins redstart redstarts redstreak redstreaks redtab redtail redtails redtapism redthroat redtop redtops redub redubbed redubber redubbing redubs reduccion reduce reduceable reduceableness reduced reducement reducent reducer reducers reduces reducibilities reducibility reducible reducibleness reduciblenesses reducibly reducing reduct reductant reductants reductase reductases reductibility reductio reduction reductional reductionism reductionisms reductionist reductionistic reductionists reductions reductive reductively reductiveness reductivenesses reductivism reductivisms reductivist reductivists reductor reductorial reductors redue redug reduit reduits redundance redundances redundancies redundancy redundant redundantly redupl reduplicate reduplicated reduplicates reduplicating reduplication reduplications reduplicative reduplicatively reduplicatory reduplicature redust reduviid reduviidae reduviids reduvioid redux reduzate redward redware redwares redwater redwaters redweed redwing redwings redwithe redwood redwoods redwud redye redyed redyeing redyes redying ree reearn reearned reearning reearns reebok reeboks reech reeched reeches reechie reechier reechiest reeching reecho reechoed reechoes reechoing reechy reed reedbed reedbeds reedbird reedbirds reedbuck reedbucks reedbush reede reeded reeden reeder reeders reedes reediemadeasy reedier reediest reedified reedifies reedify reedifying reedily reediness reedinesses reeding reedings reedish reedit reedited reediting reedition reeditions reedits reedless reedlike reedling reedlings reedmace reedmaces reedmaker reedmaking reedman reedmen reedplot reeds reedstop reedstops reeducate reeducated reeducates reeducating reeducation reeducations reeducative reedwork reedy reef reefable reefed reefer reefers reeffish reeffishes reefier reefiest reefing reefings reefs reefy reeject reejected reejecting reejects reek reeked reeker reekers reekie reekier reekiest reeking reekingly reeks reeky reel reelable reelect reelected reelecting reelection reelections reelects reeled reeledid reeledoing reeledone reeler reelers reelevate reelevated reelevating reelevation reeligibilities reeligibility reeligible reeligibleness reeligibly reeling reelingly reelings reelman reelmen reelrall reels reem reemanate reemanated reemanating reembarcation reembark reembarkation reembarked reembarking reembarks reembellish reembodied reembodies reembodiment reembody reembodying reembrace reembraced reembraces reembracing reembroider reembroidered reembroidering reembroiders reemerge reemerged reemergence reemergences reemergent reemerges reemerging reemersion reemigrate reemigrated reemigrating reemigration reeming reemish reemission reemissions reemit reemits reemitted reemitting reemphases reemphasis reemphasise reemphasised reemphasises reemphasising reemphasize reemphasized reemphasizes reemphasizing reemploy reemployed reemploying reemployment reemployments reemploys reen reenable reenabled reenact reenacted reenacting reenaction reenactment reenactments reenacts reenclose reenclosed reencloses reenclosing reencounter reencountered reencountering reencounters reencourage reencouraged reencouragement reencouraging reendorse reendorsed reendorsement reendorsing reendow reendowed reendowing reendowment reendows reenergize reenergized reenergizes reenergizing reenforce reenforceable reenforced reenforcement reenforces reenforcing reengage reengaged reengagement reengagements reengages reengaging reenge reengineer reengineered reengineering reengineers reengrave reengraved reengraves reengraving reengross reenjoin reenjoy reenjoyed reenjoying reenjoyment reenjoys reenlarge reenlarged reenlargement reenlarges reenlarging reenlighted reenlighten reenlightened reenlightening reenlightenment reenlightens reenlist reenlisted reenlisting reenlistment reenlistments reenlistness reenlistnesses reenlists reenroll reenrolled reenrolling reenrolls reens reenslave reenslaved reenslavement reenslaves reenslaving reenter reenterable reentered reentering reenters reenthrone reenthroned reenthrones reenthroning reentrance reentranced reentrances reentrancing reentrancy reentrant reentrants reentries reentry reenumerate reenumerated reenumerating reenumeration reenunciate reenunciated reenunciating reenunciation reeper reequip reequipment reequipments reequipped reequipping reequips reequipt reerect reerected reerecting reerection reerects reerupt reeruption rees reescalate reescalated reescalates reescalating reescalation reescalations reese reeshie reeshle reesk reesle reest reestablish reestablished reestablishes reestablishing reestablishment reestablishments reested reester reestier reestiest reestimate reestimated reestimates reestimating reestimation reestiness reestinesses reesting reestle reests reesty reet reetam reetle reevacuate reevacuated reevacuating reevacuation reevaluate reevaluated reevaluates reevaluating reevaluation reevaluations reevasion reeve reeved reeveland reeves reeveship reevidence reevidenced reevidencing reeving reevoke reevoked reevokes reevoking reexamination reexaminations reexamine reexamined reexamines reexamining reexcavate reexcavated reexcavating reexcavation reexchange reexchanged reexchanges reexchanging reexecute reexecuted reexecuting reexecution reexercise reexercised reexercising reexhibit reexhibited reexhibiting reexhibition reexhibits reexpand reexpansion reexpel reexpelled reexpelling reexpels reexperience reexperienced reexperiences reexperiencing reexperiment reexplain reexplained reexplaining reexplains reexplanation reexplicate reexplicated reexplicating reexplication reexploration reexplore reexplored reexplores reexploring reexport reexportation reexportations reexported reexporter reexporting reexports reexpose reexposed reexposes reexposing reexposition reexposure reexposures reexpress reexpressed reexpresses reexpressing reexpression ref refabricate refabrication reface refaced refaces refacilitate refacing refaction refait refall refallen refalling refallow refalls refamiliarization refamiliarize refamiliarized refamiliarizing refan refascinate refascination refashion refashioned refashioner refashioning refashionment refashionments refashions refasten refastened refastening refastens refathered refavor refavour refect refected refecting refection refectionary refectioner refectioners refections refective refectorarian refectorary refectorer refectorial refectorian refectorians refectories refectory refects refed refederalization refederalize refederalized refederalizing refederate refederated refederating refederation refeed refeeding refeeds refeel refeeling refeels refeign refel refell refelled refelling refels refelt refence refenced refences refencing refer referable referda refered referee refereed refereeing referees refereeship reference referenced referencer references referencing referenda referendal referendaries referendary referendaryship referendum referendums referent referential referentialities referentiality referentially referently referents referment referrable referral referrals referred referrer referrers referrible referribleness referring refers refertilisation refertilise refertilizable refertilization refertilize refertilized refertilizing refetch refete reffed reffelt reffing reffo reffos reffroze reffrozen refight refighting refights refigure refigured refigures refiguring refile refiled refiles refiling refill refillable refilled refilling refillings refills refilm refilmed refilming refilms refilter refiltered refiltering refilters refinable refinage refinance refinanced refinancer refinancers refinances refinancing refinancings refind refinding refinds refine refined refinedly refinedness refinednesses refinement refinements refiner refineries refiners refinery refines refinger refining refiningly refinings refinish refinished refinisher refinishers refinishes refinishing refire refired refires refiring refit refitment refitments refits refitted refitting refittings refix refixation refixed refixes refixing refixture refl reflag reflagellate reflagged reflagging reflags reflair reflame reflash reflate reflated reflates reflating reflation reflationary reflationism reflations reflect reflectance reflectances reflected reflectedly reflectedness reflectent reflecter reflecters reflectibility reflectible reflecting reflectingly reflection reflectional reflectioning reflectionist reflectionless reflections reflective reflectively reflectiveness reflectivenesses reflectivities reflectivity reflectogram reflectograms reflectograph reflectographies reflectographs reflectography reflectometer reflectometers reflectometries reflectometry reflector reflectorise reflectorised reflectorises reflectorising reflectorize reflectorized reflectorizes reflectorizing reflectors reflectoscope reflects refledge reflee reflet reflets reflew reflex reflexed reflexes reflexibilities reflexibility reflexible reflexing reflexional reflexism reflexiue reflexive reflexively reflexiveness reflexivenesses reflexives reflexivities reflexivity reflexly reflexness reflexogenous reflexological reflexologically reflexologies reflexologist reflexologists reflexology reflies refling refloat refloatation refloated refloating refloats reflog reflood reflooded reflooding refloods refloor reflooring reflorescence reflorescent reflourish reflourishment reflow reflowed reflower reflowered reflowering reflowerings reflowers reflowing reflowings reflown reflows refluctuation refluence refluences refluency refluent refluous reflush reflux refluxed refluxes refluxing refly reflying refocillate refocillated refocillates refocillating refocillation refocillations refocus refocused refocuses refocusing refocussed refocusses refocussing refold refolded refolding refolds refoment refont refool refoot refooted refooting refoots reforbid reforce reford reforecast reforest reforestation reforestational reforestations reforested reforesting reforestisation reforestise reforestization reforestize reforestment reforests reforfeit reforfeiture reforge reforgeable reforged reforger reforges reforget reforging reforgive reform reformabilities reformability reformable reformableness reformade reformades reformado reformadoes reformados reformanda reformandum reformat reformate reformated reformates reformating reformation reformational reformationary reformationist reformationists reformations reformative reformatively reformativeness reformatness reformatories reformatory reformats reformatted reformatting reformed reformedly reformer reformeress reformers reforming reformingly reformism reformisms reformist reformistic reformists reformproof reforms reformulate reformulated reformulates reformulating reformulation reformulations reforsake refortification refortifications refortified refortifies refortify refortifying reforward refought refound refoundation refoundations refounded refounder refounders refounding refounds refr refract refractable refractaries refractary refracted refractedly refractedness refractile refractility refracting refraction refractional refractionate refractionist refractions refractive refractively refractiveness refractivenesses refractivities refractivity refractometer refractometers refractometric refractometries refractometry refractor refractories refractorily refractoriness refractorinesses refractors refractory refracts refracturable refracture refractured refractures refracturing refragability refragable refragableness refragate refragment refrain refrained refrainer refraining refrainment refrainments refrains reframe reframed reframes reframing refrangent refrangibilities refrangibility refrangible refrangibleness refrangiblenesses refreeze refreezes refreezing refreid refreit refrenation refrenzy refresco refresh refreshable refreshant refreshed refreshen refreshened refreshener refresheners refreshening refreshens refresher refreshers refreshes refreshful refreshfully refreshing refreshingly refreshingness refreshment refreshments refricate refried refries refrig refrigerant refrigerants refrigerate refrigerated refrigerates refrigerating refrigeration refrigerations refrigerative refrigerator refrigeratories refrigerators refrigeratory refrigerium refrighten refringe refringed refringence refringences refringencies refringency refringent refringes refringing refroid refront refronted refronting refronts refroze refrozen refrustrate refrustrated refrustrating refry refrying refs reft refuel refuelable refueled refueling refuellable refuelled refuelling refuels refuge refuged refugee refugeeism refugeeisms refugees refugeeship refuges refugia refuging refugium refulge refulgence refulgences refulgencies refulgency refulgent refulgently refulgentness refunction refund refundabilities refundability refundable refunded refunder refunders refunding refundment refundments refunds refurbish refurbished refurbisher refurbishers refurbishes refurbishing refurbishment refurbishments refurl refurnish refurnished refurnishes refurnishing refurnishment refusable refusal refusals refuse refused refusenik refuseniks refuser refusers refuses refusing refusingly refusion refusions refusive refusnik refusniks refutabilities refutability refutable refutably refutal refutals refutation refutations refutative refutatory refute refuted refuter refuters refutes refuting reg regain regainable regained regainer regainers regaining regainment regainments regains regal regalado regald regale regalecidae regaled regalement regalements regaler regalers regales regalia regalian regalias regaling regalio regalise regalism regalisms regalist regalists regalities regality regalize regallop regally regalness regalo regals regalty regalvanisation regalvanise regalvanization regalvanize regalvanized regalvanizing regamble regambled regambling regar regard regardable regardance regardancy regardant regarded regarder regarders regardful regardfully regardfulness regardfulnesses regarding regardless regardlessly regardlessness regardlessnesses regards regarment regarnish regarrison regars regather regathered regathering regathers regatta regattas regauge regauged regauges regauging regave regd regear regeared regearing regears regel regelate regelated regelates regelating regelation regelations regelled regelling regence regences regencies regency regenerable regeneracies regeneracy regenerance regenerant regenerate regenerated regenerately regenerateness regeneratenesses regenerates regenerating regeneration regenerations regenerative regeneratively regenerator regenerators regeneratory regeneratoryregeneratress regeneratress regeneratrix regenesis regent regental regentess regents regentship regentships regerminate regerminated regerminates regerminating regermination regerminative regerminatively reges regest regests reget regex regexp regexps reggae reggaes reggo reggoes reggos regia regian regicidal regicide regicides regicidism regidor regie regift regifuge regild regilded regilding regilds regill regilt regime regimen regimenal regimens regiment regimental regimentaled regimentalled regimentally regimentals regimentary regimentation regimentations regimented regimenting regiments regimes regiminal regin regina reginae reginal reginas regioide region regional regionalisation regionalisations regionalise regionalised regionalises regionalising regionalism regionalisms regionalist regionalistic regionalists regionalization regionalizations regionalize regionalized regionalizes regionalizing regionally regionals regionary regioned regions regird regisseur regisseurs register registerable registered registerer registerers registering registers registership registrability registrable registral registrant registrants registrar registraries registrars registrarship registrarships registrary registrate registrated registrating registration registrational registrationist registrations registrator registrer registries registry regitive regius regive regiven regives regiving regladden reglaecus reglair reglaze reglazed reglazes reglazing regle reglement reglementary reglementation reglementist reglet reglets reglorification reglorified reglorify reglorifying regloss reglossed reglosses reglossing reglove reglow reglowed reglowing reglows reglue reglued reglues regluing regma regmacarp regmata regna regnal regnancies regnancy regnant regnellidium regnerable regnum rego regoes regolith regoliths regorge regorged regorges regorging regos regosol regosols regovern regovernment regr regrab regrabbed regrabbing regracy regradate regradated regradating regradation regrade regraded regrades regrading regraduate regraduation regraft regrafted regrafting regrafts regrant regranted regranting regrants regraph regrasp regrass regrate regrated regrater regraters regrates regratification regratify regrating regratingly regratings regrator regrators regratress regravel regrease regreased regreasing regrede regreded regredes regredience regrediences regreding regreen regreened regreening regreens regreet regreeted regreeting regreets regress regressed regresses regressing regression regressionist regressions regressive regressively regressiveness regressivenesses regressivities regressivity regressor regressors regret regretable regretableness regretably regretful regretfully regretfulness regretfulnesses regretless regretlessness regrets regrettable regrettableness regrettablenesses regrettably regretted regretter regretters regretting regrettingly regrew regrind regrinder regrinding regrinds regrip regripped regroom regroomed regrooming regrooms regroove regrooved regrooves regrooving reground regroup regrouped regrouping regroupment regroups regrow regrowing regrown regrows regrowth regrowths regs regt reguarantee reguaranteed reguaranteeing reguaranties reguaranty reguard reguardant reguerdon reguerdoned reguerdoning reguerdons reguide reguided reguiding regula regulable regulae regular regularisation regularisations regularise regularised regulariser regularisers regularises regularising regularities regularity regularization regularizations regularize regularized regularizer regularizers regularizes regularizing regularly regularness regulars regulatable regulate regulated regulates regulating regulation regulationist regulations regulative regulatively regulator regulators regulatorship regulatory regulatress regulatris reguli reguline regulise regulised regulises regulising regulize regulized regulizes regulizing regulo regulos regulus reguluses regur regurge regurgitant regurgitants regurgitate regurgitated regurgitates regurgitating regurgitation regurgitations regurgitative regurs regush reh rehab rehabbed rehabber rehabbers rehabbing rehabilitant rehabilitants rehabilitatable rehabilitate rehabilitated rehabilitates rehabilitating rehabilitation rehabilitationist rehabilitations rehabilitative rehabilitator rehabilitators rehabilitee rehabs rehair rehale rehallow rehammer rehammered rehammering rehammers rehandicap rehandle rehandled rehandler rehandles rehandling rehandlings rehang rehanged rehanging rehangs rehappen reharden rehardened rehardening rehardens reharm reharmonisation reharmonise reharmonization reharmonize reharmonized reharmonizing reharness reharrow reharvest rehash rehashed rehashes rehashing rehaul rehayte rehazard rehboc rehead reheal reheap rehear reheard rehearheard rehearhearing rehearing rehearings rehears rehearsable rehearsal rehearsals rehearse rehearsed rehearser rehearsers rehearses rehearsing rehearsings rehearten reheat reheated reheater reheaters reheating reheats rehedge reheel reheeled reheeling reheels reheighten rehem rehemmed rehemming rehems rehete rehi rehid rehidden rehide rehinge rehinged rehinges rehinging rehire rehired rehires rehiring rehoboam rehoboams rehoe rehoist rehollow rehone rehoned rehoning rehonor rehonour rehood rehook rehoop rehospitalization rehospitalizations rehospitalize rehospitalized rehospitalizes rehospitalizing rehouse rehoused rehouses rehousing rehousings rehs rehumanisation rehumanise rehumanises rehumanization rehumanize rehumanized rehumanizes rehumanizing rehumble rehumiliate rehumiliated rehumiliating rehumiliation rehung rehybridise rehybridize rehydratable rehydrate rehydrated rehydrates rehydrating rehydration rehydrations rehypnotize rehypnotized rehypnotizes rehypnotizing rehypothecate rehypothecated rehypothecating rehypothecation rehypothecator rei reice reiced reich reichsgulden reichsmark reichsmarks reichspfennig reichstaler reichsthaler reicing reidentification reidentified reidentifies reidentify reidentifying reif reification reifications reificatory reified reifier reifiers reifies reifs reify reifying reign reigned reigner reigning reignite reignited reignites reigniting reignition reignitions reignore reigns reik reiki reikis reiks reillume reillumed reillumes reilluminate reilluminated reilluminating reillumination reillumine reillumined reillumines reilluming reillumining reillustrate reillustrated reillustrating reillustration reim reimage reimaged reimages reimagination reimagine reimagined reimagines reimaging reimagining reimbark reimbarkation reimbibe reimbody reimbursable reimburse reimburseable reimbursed reimbursement reimbursements reimburser reimbursers reimburses reimbursing reimbush reimbushment reimkennar reimmerge reimmerse reimmersed reimmerses reimmersing reimmersion reimmigrant reimmigration reimpact reimpark reimpart reimpatriate reimpatriation reimpel reimplant reimplantation reimplantations reimplanted reimplanting reimplants reimplement reimplementation reimplemented reimplementing reimplied reimply reimplying reimport reimportation reimportations reimported reimporting reimports reimportune reimpose reimposed reimposes reimposing reimposition reimpositions reimposure reimpregnate reimpregnated reimpregnating reimpress reimpression reimpressions reimprint reimprison reimprisoned reimprisoning reimprisonment reimprisons reimprove reimprovement reimpulse rein reina reinability reinaugurate reinaugurated reinaugurating reinauguration reincapable reincarnadine reincarnate reincarnated reincarnates reincarnating reincarnation reincarnationism reincarnationisms reincarnationist reincarnationists reincarnations reincense reincentive reincidence reincidency reincite reincited reincites reinciting reinclination reincline reinclined reinclining reinclude reincluded reincluding reinclusion reincorporate reincorporated reincorporates reincorporating reincorporation reincorporations reincrease reincreased reincreases reincreasing reincrudate reincrudation reinculcate reincur reincurred reincurring reincurs reindebted reindebtedness reindeer reindeers reindependence reindex reindexed reindexes reindexing reindicate reindicated reindicating reindication reindict reindicted reindicting reindictment reindictments reindicts reindifferent reindoctrinate reindoctrinated reindoctrinating reindoctrination reindorse reindorsed reindorsement reindorsing reinduce reinduced reinducement reinduces reinducing reinduct reinducted reinducting reinduction reinducts reindue reindulge reindulged reindulgence reindulging reindustrialisation reindustrialisations reindustrialise reindustrialised reindustrialises reindustrialising reindustrialization reindustrializations reindustrialize reindustrialized reindustrializes reindustrializing reined reinette reinettes reinfect reinfected reinfecting reinfection reinfections reinfectious reinfects reinfer reinferred reinferring reinfest reinfestation reinfestations reinfiltrate reinfiltrated reinfiltrating reinfiltration reinflame reinflamed reinflames reinflaming reinflatable reinflate reinflated reinflates reinflating reinflation reinflations reinflict reinfliction reinfluence reinfluenced reinfluencing reinforce reinforceable reinforced reinforcement reinforcements reinforcer reinforcers reinforces reinforcing reinform reinformed reinforming reinforms reinfund reinfunded reinfunding reinfunds reinfuse reinfused reinfuses reinfusing reinfusion reingraft reingratiate reingress reinhabit reinhabitation reinhabited reinhabiting reinhabits reinherit reining reinitialisation reinitialise reinitialised reinitialises reinitialising reinitialization reinitialize reinitialized reinitializes reinitializing reinitiate reinitiated reinitiates reinitiating reinitiation reinject reinjected reinjecting reinjection reinjections reinjects reinjure reinjured reinjures reinjuries reinjuring reinjury reink reinked reinking reinks reinless reinnervate reinnervated reinnervates reinnervating reinnervation reinnervations reinoculate reinoculated reinoculates reinoculating reinoculation reinoculations reinquire reinquired reinquiries reinquiring reinquiry reins reinsane reinsanity reinscribe reinscribed reinscribes reinscribing reinsert reinserted reinserting reinsertion reinsertions reinserts reinsist reinsman reinsmen reinspect reinspected reinspecting reinspection reinspections reinspector reinspects reinsphere reinspiration reinspire reinspired reinspires reinspiring reinspirit reinspirited reinspiriting reinspirits reinstall reinstallation reinstallations reinstalled reinstalling reinstallment reinstallments reinstalls reinstalment reinstalments reinstate reinstated reinstatement reinstatements reinstates reinstating reinstation reinstations reinstator reinstators reinstauration reinstil reinstill reinstitute reinstituted reinstitutes reinstituting reinstitution reinstitutionalization reinstitutionalizations reinstitutionalize reinstitutionalized reinstitutionalizes reinstitutionalizing reinstruct reinstructed reinstructing reinstruction reinstructs reinsulate reinsulated reinsulating reinsult reinsurance reinsurances reinsure reinsured reinsurer reinsurers reinsures reinsuring reintegrate reintegrated reintegrates reintegrating reintegration reintegrations reintegrative reintend reinter reintercede reintercession reinterchange reinterest reinterfere reinterference reintermediation reintermediations reinterment reinterments reinterpret reinterpretation reinterpretations reinterpretative reinterpreted reinterpreting reinterprets reinterred reinterring reinterrogate reinterrogated reinterrogates reinterrogating reinterrogation reinterrogations reinterrupt reinterruption reinters reintervene reintervened reintervening reintervention reinterview reinterviewed reinterviewing reinterviews reinthrone reintimate reintimation reintitule reintrench reintrenched reintrenches reintrenching reintrenchment reintroduce reintroduced reintroduces reintroducing reintroduction reintroductions reintrude reintrusion reintuition reintuitive reinvade reinvaded reinvades reinvading reinvasion reinvasions reinvent reinvented reinventing reinvention reinventions reinventor reinvents reinversion reinvert reinvest reinvested reinvestigate reinvestigated reinvestigates reinvestigating reinvestigation reinvestigations reinvesting reinvestiture reinvestment reinvestments reinvests reinvigorate reinvigorated reinvigorates reinvigorating reinvigoration reinvigorations reinvigorator reinvigorators reinvitation reinvite reinvited reinvites reinviting reinvoice reinvoke reinvoked reinvokes reinvoking reinvolve reinvolved reinvolvement reinvolves reinvolving reioyndure reioyndures reird reirds reirrigate reirrigated reirrigating reirrigation reis reises reisner reisolate reisolated reisolating reisolation reissuable reissuably reissue reissued reissuement reissuer reissuers reissues reissuing reist reistafel reistafels reisted reister reistier reistiest reistiness reistinesses reisting reists reisty reit reitbok reitboks reitbuck reitemise reitemize reitemized reitemizing reiter reiterable reiterance reiterances reiterant reiterate reiterated reiteratedly reiteratedness reiterates reiterating reiteration reiterations reiterative reiteratively reiterativeness reiteratives reiterator reiterators reiters reithrodontomys reive reived reiver reivers reives reiving rejacket rejacketed rejacketing rejackets rejail reject rejectable rejectableness rejectage rejectamenta rejectaneous rejected rejectee rejectees rejecter rejecters rejectible rejecting rejectingly rejection rejectionist rejectionists rejections rejective rejectment rejector rejectors rejects rejeopardize rejeopardized rejeopardizing rejerk rejig rejigged rejigger rejiggered rejiggering rejiggers rejigging rejigs rejoice rejoiced rejoiceful rejoicement rejoicements rejoicer rejoicers rejoices rejoicing rejoicingly rejoicings rejoin rejoinder rejoinders rejoindure rejoindures rejoined rejoining rejoins rejolt rejon rejoneador rejoneadora rejoneadores rejoneo rejones rejounce rejourn rejourned rejourney rejourning rejourns rejudge rejudged rejudgement rejudges rejudging rejudgment rejuggle rejuggled rejuggles rejuggling rejumble rejunction rejustification rejustified rejustify rejustifying rejuvenant rejuvenate rejuvenated rejuvenates rejuvenating rejuvenation rejuvenations rejuvenative rejuvenator rejuvenators rejuvenatory rejuvenesce rejuvenesced rejuvenescence rejuvenescences rejuvenescent rejuvenesces rejuvenescing rejuvenise rejuvenised rejuvenises rejuvenising rejuvenize rejuvenized rejuvenizes rejuvenizing rejón reke reked rekes rekey rekeyboard rekeyboarded rekeyboarding rekeyboards rekeyed rekeying rekeys rekhti rekick rekill rekindle rekindled rekindlement rekindler rekindles rekindling reking rekinole rekiss reknead reknit reknits reknitted reknitting reknock reknot reknots reknotted reknotting reknow rel relabel relabeled relabeling relabelled relabelling relabellings relabels relace relaced relaces relache relacing relacquer relacquered relacquering relacquers relade reladen reladle reladled reladling relafen relaid relais relament relamp relance relanced relancing reland relanded relanding relands relandscape relandscaped relandscapes relandscaping relap relapper relapsable relapse relapsed relapseproof relapser relapsers relapses relapsing relast relaster relata relatability relatable relatch relate related relatedly relatedness relatednesses relater relaters relates relating relatinization relation relational relationality relationally relationals relationary relatione relationism relationisms relationist relationists relationless relations relationship relationships relatival relative relatively relativeness relativenesses relatives relativisation relativisations relativise relativised relativises relativising relativism relativisms relativist relativistic relativistically relativists relativities relativitist relativitists relativity relativization relativizations relativize relativized relativizes relativizing relator relators relatrix relatum relaunch relaunched relaunches relaunching relaunder relaundered relaundering relaunders relax relaxable relaxant relaxants relaxation relaxations relaxative relaxatory relaxed relaxedly relaxedness relaxednesses relaxer relaxers relaxes relaxin relaxing relaxingly relaxins relay relayed relayer relaying relayman relays relbun relead releap relearn relearned relearning relearns relearnt releasabilities releasability releasable releasably release released releasee releasees releasement releasements releaser releasers releases releasibility releasible releasing releasor releasors releather relection relegable relegate relegated relegates relegating relegation relegations releivo releivos relend relending relends relent relented relenting relentingly relentings relentless relentlessly relentlessness relentlessnesses relentment relentments relents reles relessa relessee relessor relet relets reletter relettered relettering reletters reletting releva relevance relevances relevancies relevancy relevant relevantly relevate relevation relevator releve relevel releveled releveling relevent relever releves relevied relevy relevying reliabilities reliability reliable reliableness reliablenesses reliables reliably reliance reliances reliant reliantly reliberate reliberated reliberating relic relicary relicense relicensed relicenses relicensing relicensure relicensures relick reliclike relicmonger relics relict relictae relicted relicti reliction relictions relicts relide relie relied relief reliefer reliefless reliefs relier reliers relies relievable relievables relieve relieved relievedly relievement reliever relievers relieves relieving relievingly relievo relievos relift relig religate religation relight relightable relighted relighten relightener relighter relighting relights religieuse religieuses religieux religio religion religionaries religionary religionate religioner religioners religionise religionised religionises religionising religionism religionisms religionist religionistic religionists religionize religionized religionizes religionizing religionless religions religiose religiosities religiosity religioso religious religiouses religiously religiousness religiousnesses reliiant relime relimit relimitation reline relined reliner relines relining relink relinked relinking relinks relinquent relinquish relinquished relinquisher relinquishers relinquishes relinquishing relinquishment relinquishments reliquaire reliquaires reliquaries reliquary relique reliquefied reliquefies reliquefy reliquefying reliques reliquiae reliquian reliquidate reliquidated reliquidates reliquidating reliquidation reliquism relish relishable relished relisher relishes relishing relishingly relishsome relishy relist relisted relisten relistening relisting relists relit relitigate relitigated relitigating relitigation relivable relive relived reliver relivered relivering relivers relives reliving relleno rellenos rellish rellished rellishes rellishing reload reloaded reloader reloaders reloading reloads reloan reloaned reloaning reloans relocable relocatability relocatable relocate relocated relocatee relocatees relocates relocating relocation relocations relocator relock relocked relocking relocks relodge relong relook relooked relooking relooks relose relosing relost relot relove relower relubricate relubricated relubricates relubricating relubrication relubrications reluce relucent reluct reluctance reluctances reluctancies reluctancy reluctant reluctantly reluctate reluctated reluctates reluctating reluctation reluctations relucted relucting reluctivities reluctivity relucts relume relumed relumes relumine relumined relumines reluming relumining rely relying relyric relâche rem remade remades remagnetisation remagnetise remagnetization remagnetize remagnetized remagnetizing remagnification remagnified remagnify remagnifying remail remailed remailing remails remaim remain remainder remaindered remaindering remainderman remaindermen remainders remaindership remaindment remained remainer remaining remains remaintain remaintenance remake remaker remakers remakes remaking reman remanage remanagement remanation remancipate remancipation remand remanded remanding remandment remandments remands remanence remanences remanencies remanency remanent remanents remanet remanets remanie remanies remanifest remanifestation remanipulate remanipulation remanié remaniés remanned remanning remans remantle remanufacture remanufactured remanufacturer remanufacturers remanufactures remanufacturing remanure remap remapped remapping remaps remarch remargin remark remarkability remarkable remarkableness remarkablenesses remarkables remarkably remarked remarkedly remarker remarkers remarket remarketed remarketing remarkets remarking remarks remarque remarqued remarques remarriage remarriages remarried remarries remarry remarrying remarshal remarshaled remarshaling remarshalling remask remass remast remaster remastered remasteries remastering remasters remastery remasticate remasticated remasticating remastication rematch rematched rematches rematching remate remated rematerialise rematerialised rematerialises rematerialization rematerialize rematerialized rematerializes rematerializing remates remating rematriculate rematriculated rematriculating remblai remblais remble rembled remblere rembles rembling rembrandt rembrandtesque remead remeaded remeading remeads remeant remeasure remeasured remeasurement remeasurements remeasures remeasuring remede remeded remedes remediabilities remediability remediable remediableness remediablenesses remediably remedial remedially remediat remediate remediated remediates remediating remediation remediations remedied remedies remediless remedilessly remedilessness remedilessnesses remeding remeditate remeditation remedium remedy remedying remeet remeeting remeets remeid remeided remeiding remeids remelt remelted remelting remelts remember rememberabilities rememberability rememberable rememberably remembered rememberer rememberers remembering rememberingly remembers remembrance remembrancer remembrancers remembrancership remembrances rememorate rememoration rememorative rememorise rememorize rememorized rememorizing remen remenace remenant remend remended remending remends remene remens remention remercied remercies remercy remercying remerge remerged remerges remerging remet remetal remex remica remicate remication remicle remiform remigate remigated remigates remigating remigation remigations remiges remigial remigrant remigrate remigrated remigrates remigrating remigration remigrations remilegia remilitarisation remilitarisations remilitarise remilitarised remilitarises remilitarising remilitarization remilitarizations remilitarize remilitarized remilitarizes remilitarizing remill remillable remimic remind remindal reminded reminder reminders remindful reminding remindingly reminds remineralisation remineralisations remineralise remineralised remineralises remineralising remineralization remineralizations remineralize remineralized remineralizes remineralizing remingle remingled remingling reminisce reminisced reminiscence reminiscenceful reminiscencer reminiscences reminiscency reminiscent reminiscential reminiscentially reminiscently reminiscents reminiscer reminiscers reminisces reminiscing reminiscitory remint reminted reminting remints remiped remirror remise remised remises remising remisrepresent remisrepresentation remiss remissful remissibilities remissibility remissible remissibleness remissibly remission remissions remissive remissively remissiveness remissly remissness remissnesses remissory remisunderstand remit remital remitment remitments remits remittable remittal remittals remittance remittancer remittances remitted remittee remittees remittence remittences remittencies remittency remittent remittently remitter remitters remitting remittitur remittor remittors remix remixed remixer remixers remixes remixing remixt remixture remnant remnantal remnants remobilisation remobilisations remobilise remobilises remobilization remobilizations remobilize remobilized remobilizes remobilizing remock remodel remodeled remodeler remodelers remodeling remodelled remodeller remodelling remodelment remodels remodification remodifications remodified remodifies remodify remodifying remodulate remodulated remodulating remoisten remoistened remoistening remoistens remolade remolades remold remolded remolding remolds remollient remollified remollify remollifying remonetisation remonetisations remonetise remonetised remonetises remonetising remonetization remonetizations remonetize remonetized remonetizes remonetizing remonstrance remonstrances remonstrant remonstrantly remonstrants remonstrate remonstrated remonstrates remonstrating remonstratingly remonstration remonstrations remonstrative remonstratively remonstrator remonstrators remonstratory remontado remontant remontants remontoir remontoire remop remora remoralisation remoralisations remoralise remoralised remoralises remoralising remoralization remoralizations remoralize remoralized remoralizes remoralizing remoras remorate remord remore remorid remorse remorseful remorsefully remorsefulness remorsefulnesses remorseless remorselessly remorselessness remorselessnesses remorseproof remorses remortgage remortgaged remortgages remortgaging remote remoted remotely remoteness remotenesses remoter remotes remotest remotion remotions remotivate remotivated remotivates remotivating remotivation remotivations remotive remoud remoulade remoulades remould remoulded remoulding remoulds remount remounted remounting remounts removabilities removability removable removableness removablenesses removables removably removal removalist removals remove removeable removed removedly removedness removednesses removeless removement remover removers removes removing rems remuable remuage remuages remuda remudas remue remueur remueurs remultiplication remultiplied remultiply remultiplying remunerabilities remunerability remunerable remunerably remunerate remunerated remunerates remunerating remuneration remunerations remunerative remuneratively remunerativeness remunerativenesses remunerator remunerators remuneratory remurmur remurmured remurmuring remurmurs remus remuster remutation remythologize remythologized remythologizes remythologizing ren renable renably renague renagued renagues renaguing renail renailed renailing renails renaissance renaissances renaissant renal rename renamed renames renaming renardine renascence renascences renascency renascent renascible renascibleness renate renationalisation renationalise renationalised renationalises renationalising renationalization renationalizations renationalize renationalized renationalizes renationalizing renaturation renaturations renature renatured renatures renaturing renavigate renavigated renavigating renavigation renay renayed renaying renays rencontre rencontres rencounter rencountered rencountering rencounters renculus rend rended rendement render renderable rendered renderer renderers rendering renderings renders renderset rendezvous rendezvoused rendezvouses rendezvousing rendibility rendible rending rendition renditioned renditioning renditions rendlewood rendoun rendrock rends rendu rendzina rendzinas reneague renecessitate reneg renegade renegaded renegades renegading renegadism renegado renegadoes renegados renegate renegated renegates renegating renegation renegations renege reneged reneger renegers reneges reneging reneglect renegotiable renegotiate renegotiated renegotiates renegotiating renegotiation renegotiations renegotiator renegue renegued reneguer reneguers renegues reneguing renerve renes renest renested renesting renests renet renette reneutralize reneutralized reneutralizing renew renewabilities renewability renewable renewables renewably renewal renewals renewed renewedly renewedness renewednesses renewer renewers renewing renewings renewment renews reney reneyed reneying reneys renfierst renforce renforced renforces renforcing renforst renga rengas rengue renguera renicardiac renickel reniculus renidification renidify renied renies reniform renig renigged renigging renigs renin renins renipericardial reniportal renipuncture renish renishly renitence renitences renitencies renitency renitent renk renky renminbi renminbis renn rennase rennases renne renned renner rennes rennet renneting rennets rennin renning rennings renninogen rennins renniogen reno renocutaneous renogastric renogram renograms renographic renographies renography renointestinal renoir renomee renominate renominated renominates renominating renomination renominations renomme renommee renone renopericardial renopulmonary renormalisation renormalisations renormalise renormalised renormalises renormalising renormalization renormalizations renormalize renormalized renormalizes renormalizing renotarize renotarized renotarizing renotation renotice renoticed renoticing renotification renotified renotifies renotify renotifying renounce renounceable renounced renouncement renouncements renouncer renouncers renounces renouncing renourish renourishment renovare renovascular renovate renovated renovater renovates renovating renovatingly renovation renovations renovative renovator renovators renovatory renove renovel renovize renown renowned renownedly renownedness renowner renowners renownful renowning renownless renowns rens rensselaerite rensselaerites rent rentabilities rentability rentable rentage rental rentaler rentaller rentallers rentals rente rented rentee renter renters rentes rentier rentiers renting rentless rentrant rentrayeuse rentree rents renucleated renule renullification renullified renullify renullifying renumber renumbered renumbering renumbers renumerate renumerated renumerating renumeration renunciable renunciance renunciant renunciate renunciates renunciation renunciations renunciative renunciator renunciatory renunculus renversa renverse renversed renversement renversements renverses renversing renverst renvoi renvois renvoy renvoys renwick reny renying reobject reobjected reobjecting reobjectivisation reobjectivise reobjectivization reobjectivize reobjects reobligate reobligated reobligating reobligation reoblige reobliged reobliging reobscure reobservation reobserve reobserved reobserves reobserving reobtain reobtainable reobtained reobtaining reobtainment reobtains reoccasion reoccupation reoccupations reoccupied reoccupies reoccupy reoccupying reoccur reoccurred reoccurrence reoccurrences reoccurring reoccurs reoffend reoffended reoffending reoffends reoffense reoffer reoffered reoffering reoffers reoffset reoil reoiled reoiling reoils reometer reomission reomit reopen reopened reopener reopeners reopening reopenings reopens reoperate reoperated reoperates reoperating reoperation reoperations reophore reoppose reopposed reopposes reopposing reopposition reoppress reoppression reorchestrate reorchestrated reorchestrates reorchestrating reorchestration reorchestrations reordain reordained reordaining reordains reorder reordered reordering reorders reordinate reordination reordinations reorganisation reorganisational reorganisationist reorganisations reorganise reorganised reorganiser reorganisers reorganises reorganising reorganization reorganizational reorganizationist reorganizations reorganize reorganized reorganizer reorganizers reorganizes reorganizing reorient reorientate reorientated reorientates reorientating reorientation reorientations reoriented reorienting reorients reornament reoutfit reoutfits reoutfitted reoutfitting reoutline reoutlined reoutlining reoutput reoutrage reovercharge reoverflow reovertake reoverwork reovirus reoviruses reown reoxidation reoxidations reoxidise reoxidised reoxidises reoxidising reoxidize reoxidized reoxidizes reoxidizing reoxygenate reoxygenise reoxygenize rep repace repacification repacified repacifies repacify repacifying repack repackage repackaged repackager repackagers repackages repackaging repacked repacker repacking repacks repad repadded repadding repaganisation repaganise repaganiser repaganization repaganize repaganizer repage repaginate repaginated repaginates repaginating repagination repaginations repaid repaint repainted repainting repaintings repaints repair repairabilities repairability repairable repairableness repaired repairer repairers repairing repairman repairmen repairperson repairpersons repairs repairwoman repairwomen repale repand repandly repandodentate repandodenticulate repandolobate repandous repandousness repanel repaneled repaneling repanelled repanelling repanels repaper repapered repapering repapers reparabilities reparability reparable reparably reparagraph reparate reparation reparations reparative reparatory reparel repark reparked reparking reparks repart repartable repartake repartee reparteed reparteeing reparteeist repartees reparticipate reparticipation repartition repartitionable repartitioned repartitioning repartitions repas repass repassable repassage repassages repassant repassed repasser repasses repassing repast repaste repasted repasting repasts repasture repastures repatch repatched repatches repatching repatency repatent repatriable repatriate repatriated repatriates repatriating repatriation repatriations repatriator repatriators repatrol repatrolled repatrolling repatronise repatronize repatronized repatronizing repattern repatterned repatterning repatterns repave repaved repavement repaves repaving repawn repay repayable repayal repayed repaying repayment repayments repays repeal repealability repealable repealableness repealed repealer repealers repealing repealist repealless repeals repeat repeatabilities repeatability repeatable repeatably repeatal repeated repeatedly repeater repeaters repeating repeatings repeats repechage repechages repeddle repeddled repeddling repeg repegged repegging repegs repel repellance repellances repellancies repellancy repellant repellantly repellants repelled repellence repellences repellencies repellency repellent repellently repellents repeller repellers repelling repellingly repellingness repels repen repenalize repenalized repenalizing repenetrate repenned repenning repension repent repentable repentance repentances repentant repentantly repentants repented repenter repenters repenting repentingly repents repeople repeopled repeoples repeopling reperceive reperceived reperceiving repercept reperception repercolation repercuss repercussed repercusses repercussing repercussion repercussions repercussive repercussively repercussiveness repercussor repercutient reperforator reperform reperformance reperfume reperible reperk reperked reperking reperks repermission repermit reperplex repersonalise repersonalization repersonalize repersuade repersuasion repertoire repertoires repertorial repertories repertorily repertorium repertory reperusal reperusals reperuse reperused reperuses reperusing repetatively repetend repetends repetitae repetiteur repetiteurs repetition repetitional repetitionary repetitions repetitious repetitiously repetitiousness repetitiousnesses repetitive repetitively repetitiveness repetitivenesses repetitory repetoire repetticoat repew rephase rephonate rephosphorisation rephosphorise rephosphorization rephosphorize rephotograph rephotographed rephotographing rephotographs rephrase rephrased rephrases rephrasing repic repick repicture repiece repile repin repine repined repineful repinement repinements repiner repiners repines repining repiningly repinings repinned repinning repins repipe repique repiqued repiques repiquing repitch repkie repl repla replace replaceability replaceable replaced replacement replacements replacer replacers replaces replacing replait replan replane replaned replaning replanned replanning replans replant replantable replantation replantations replanted replanter replanting replants replaster replastered replastering replasters replate replated replates replating replay replayed replaying replays replead repleaded repleader repleaders repleading repleads repleat repled repledge repledged repledger repledges repledging replenish replenishable replenished replenisher replenishers replenishes replenishing replenishingly replenishment replenishments replete repleted repletely repleteness repletenesses repletes repleting repletion repletions repletive repletively repletory repleve repleviable replevied replevies replevin replevined replevining replevins replevisable replevisor replevy replevying replial repliant replica replicabilities replicability replicable replicant replicas replicase replicases replicate replicated replicates replicatile replicating replication replications replicative replicatively replicator replicators replicatory replicon replicons replied replier repliers replies replight replique replod replot replotment replots replotted replotter replotting replough replow replowed replowing replows replug replugged replugging replum replumb replumbed replumbing replumbs replume replumed repluming replunder replunge replunged replunges replunging reply replying replyingly repo repocket repoint repointed repointing repoints repolarization repolarizations repolarize repolarized repolarizes repolarizing repolish repolished repolishes repolishing repoll repolled repolling repolls repollute repolon repolymerisation repolymerise repolymerization repolymerize repoman repomen reponder repondez repone reponed repones reponing repope repopularise repopularization repopularize repopularized repopularizes repopularizing repopulate repopulated repopulates repopulating repopulation repopulations report reportable reportage reportages reported reportedly reporter reporteress reporterism reporters reportership reporting reportingly reportings reportion reportorial reportorially reports repos reposal reposall reposalls reposals repose reposed reposedly reposedness reposednesses reposeful reposefully reposefulness reposefulnesses reposer reposers reposes reposing reposit repositary reposited repositing reposition repositioned repositioning repositions repositor repositories repositors repository reposits reposoir repossess repossessed repossesses repossessing repossession repossessions repossessor repossessors repost reposted reposting repostpone repostponed repostponing reposts repostulate repostulated repostulating repostulation reposure reposures repot repots repotted repotting repottings repound repour repoured repouring repours repouss repoussa repoussage repoussages repousse repousses repoussoir repoussoirs repoussé repoussés repowder repower repowered repowering repowers repp repped repping reppings repps repr repractice repracticed repracticing repraise repraised repraising repray repreach reprecipitate reprecipitation repredict repreeve repreeved repreeves repreeving reprefer reprehend reprehendable reprehendatory reprehended reprehender reprehenders reprehending reprehends reprehensibilities reprehensibility reprehensible reprehensibleness reprehensiblenesses reprehensibly reprehension reprehensions reprehensive reprehensively reprehensory repremise repremised repremising repreparation reprepare reprepared repreparing represcribe represcribed represcribing represent representabilities representability representable representably representamen representamens representant representants representation representational representationalism representationalisms representationalist representationalistic representationalists representationally representationary representationes representationism representationisms representationist representationists representations representative representatively representativeness representativenesses representatives representativeship representativities representativity represented representee representees representer representers representing representment representments representor representors represents represide repress repressed repressedly represser repressers represses repressibilities repressibility repressible repressibly repressing repression repressionary repressionist repressions repressive repressively repressiveness repressivenesses repressment repressor repressors repressory repressure repressurize repressurized repressurizes repressurizing reprice repriced reprices repricing repriefe repriefes reprievable reprieval reprievals reprieve reprieved repriever reprievers reprieves reprieving reprimand reprimanded reprimander reprimanding reprimandingly reprimands reprime reprimed reprimer reprimes repriming reprint reprinted reprinter reprinters reprinting reprintings reprints reprisal reprisalist reprisals reprise reprised reprises reprising repristinate repristinated repristinates repristinating repristination repristinations reprivatisation reprivatisations reprivatise reprivatised reprivatises reprivatising reprivatization reprivatizations reprivatize reprivatized reprivatizes reprivatizing reprive reprived reprives reprivilege repriving reprize reprized reprizes reprizing repro reproach reproachability reproachable reproachableness reproachablenesses reproachably reproached reproacher reproachers reproaches reproachful reproachfully reproachfulness reproachfulnesses reproaching reproachingly reproachless reproachlessness reprobacies reprobacy reprobance reprobances reprobate reprobated reprobateness reprobater reprobaters reprobates reprobating reprobation reprobationary reprobationer reprobations reprobative reprobatively reprobator reprobators reprobatory reprobe reprobed reprobes reprobing reproceed reprocess reprocessed reprocesses reprocessing reproclaim reproclamation reprocurable reprocure reproduce reproduceable reproduced reproducer reproducers reproduces reproducibilities reproducibility reproducible reproducibles reproducibly reproducing reproduction reproductionist reproductions reproductive reproductively reproductiveness reproductivenesses reproductives reproductivities reproductivity reproductory reprofane reprofess reproffer reprogram reprogramed reprograming reprogrammable reprogramme reprogrammed reprogrammes reprogramming reprograms reprographer reprographers reprographic reprographics reprographies reprography reprohibit reproject reprojected repromise repromised repromising repromulgate repromulgated repromulgating repromulgation repronounce repronunciation reproof reproofed reproofing reproofless reproofs repropagate repropitiate repropitiation reproportion reproposal repropose reproposed reproposes reproposing repros reprosecute reprosecuted reprosecuting reprosecution reprosper reprotect reprotection reprotest reprovability reprovable reprovableness reprovably reproval reprovals reprove reproved reprover reprovers reproves reprovide reproving reprovingly reprovings reprovision reprovisioned reprovisioning reprovisions reprovocation reprovoke reprune repruned repruning repry repryve repryved repryves repryving reps repses rept reptant reptantia reptation reptations reptatorial reptatory reptile reptiledom reptilelike reptiles reptilferous reptilia reptilian reptilianly reptilians reptiliary reptiliferous reptiliform reptilious reptiliousness reptilism reptility reptilium reptilivorous reptiloid repture republic republica republical republican republicanisation republicanisations republicanise republicanised republicaniser republicanises republicanising republicanism republicanisms republicanization republicanizations republicanize republicanized republicanizer republicanizes republicanizing republicans republication republications republics republish republishable republished republisher republishers republishes republishing republishment repudative repuddle repudiable repudiate repudiated repudiates repudiating repudiation repudiationist repudiationists repudiations repudiative repudiator repudiators repudiatory repuff repugn repugnable repugnance repugnances repugnancies repugnancy repugnant repugnantly repugnantness repugnate repugnatorial repugned repugner repugning repugns repullulate repullulation repullulative repullulescent repulp repulped repulping repulpit repulps repulse repulsed repulseless repulseproof repulser repulsers repulses repulsing repulsion repulsions repulsive repulsively repulsiveness repulsivenesses repulsor repulsory repulverise repulverize repump repumped repumping repumps repunch repunctuate repunctuated repunctuating repunctuation repunctuations repunish repunishable repunishment repunit repunits repurchase repurchased repurchaser repurchases repurchasing repure repured repures repurge repurification repurified repurifies repurify repurifying repuring repurple repurpose repurposed repurposing repursue repursued repursues repursuing repursuit reputabilities reputability reputable reputableness reputabley reputably reputation reputational reputationless reputations reputative reputatively repute reputed reputedly reputeless reputes reputing reputings req reqd requalification requalifications requalified requalifies requalify requalifying requarantine requeen requench requere requered requeres requering request requested requester requesters requesting requestion requestor requestors requests requeued requicken requickened requickening requickens requiem requiems requiescat requiescats requiescence requight requighted requighting requights requin requins requirable require required requirement requirements requirer requirers requires requiring requirings requisite requisitely requisiteness requisitenesses requisites requisition requisitionary requisitioned requisitioner requisitioners requisitioning requisitionist requisitionists requisitions requisitor requisitorial requisitors requisitory requit requitable requital requitals requitative requite requited requiteful requiteless requitement requitements requiter requiters requites requiting requits requittal requitted requitting requiz requotation requote requoted requotes requoting requoyle requoyled requoyles requoyling rerack reracked reracker reracking reracks reradiate reradiated reradiates reradiating reradiation reradiations rerail rerailed rerailer rerailing rerails reraise reraised reraises reraising rerake reran rerank rerate rerated rerating reread rereader rereading rereadings rereads rerebrace rerebraces rerecord rerecorded rerecording rerecords reredorse reredorses reredorter reredorters reredos reredoses reredosse reredosses reree rereel rereeve rerefief reregister reregistered reregistering reregisters reregistration reregistrations reregulate reregulated reregulates reregulating reregulation reregulations rereign rerelease rereleased rereleases rereleasing reremice reremind rereminded rereminding rereminds reremmice reremouse rerent rerental rerented rerenting rerents rerepeat rerepeated rerepeating rerepeats reresupper rereview rereviewed rereviewing rereviews rerevise rerevised rerevises rerevising rereward rerewards rerig rerigged rerigging rerigs rering rerise rerisen rerises rerising rerival rerivet rerob rerobe reroll rerolled reroller rerollers rerolling rerolls reroof reroofed reroofing reroofs reroot rerope rerose reroute rerouted rerouteing reroutes rerouting rerow reroyalise reroyalize rerub rerummage rerun rerunning reruns res resaca resack resacrifice resaddle resaddled resaddles resaddling resaid resail resailed resailing resails resalable resale resaleable resales resalgar resalgars resalt resalutation resalute resaluted resalutes resaluting resalvage resample resampled resamples resampling resanctify resanction resarcelee resat resatisfaction resatisfy resave resaw resawed resawer resawing resawn resaws resawyer resay resaying resays resazurin rescale rescaled rescales rescaling rescan rescanned rescanning rescans rescattering reschedule rescheduled reschedules rescheduling reschedulings reschool reschooled reschooling reschools rescind rescindable rescinded rescinder rescinders rescinding rescindment rescindments rescinds rescissible rescission rescissions rescissory rescore rescored rescores rescoring rescounter rescous rescramble rescratch rescreen rescreened rescreening rescreens rescribe rescript rescripted rescripting rescription rescriptive rescriptively rescripts rescrub rescrubbed rescrubbing rescrutinies rescrutinize rescrutinized rescrutinizing rescrutiny rescuable rescue rescued rescueless rescuer rescuers rescues rescuing resculpt resculpted resculpting resculpts rescusser reseal resealable resealed resealing reseals reseam research researchable researched researcher researchers researches researchful researching researchist researchists reseason reseasoned reseasoning reseasons reseat reseated reseating reseats reseau reseaus reseaux resecate resecrete resecretion resect resectabilities resectability resectable resected resecting resection resectional resections resectoscope resectoscopes resects resecure resecured resecures resecuring reseda resedaceae resedaceous resedas resee reseed reseeded reseeding reseeds reseeing reseek reseeking reseeks reseen resees resegment resegmentation resegregate resegregated resegregates resegregating resegregation resegregations reseise reseiser reseize reseized reseizer reseizes reseizing reseizure reselect reselected reselecting reselection reselections reselects reself resell reseller resellers reselling resells resemblable resemblance resemblances resemblant resemble resembled resembler resemblers resembles resembling resemblingly reseminate resend resending resends resene resensation resensitisation resensitise resensitises resensitization resensitize resensitized resensitizes resensitizing resent resentationally resented resentence resentenced resentences resentencing resenter resenters resentful resentfullness resentfully resentfulness resentfulnesses resentience resentiment resenting resentingly resentive resentless resentment resentments resents reseparate reseparated reseparating reseparation resepulcher resepulchre resequencing resequent resequester resequestration reserate reserene reserpine reserpines reserpinized reservable reserval reservation reservationist reservationists reservations reservative reservatories reservatory reserve reserved reservedly reservedness reservednesses reservee reserveful reserveless reserver reservers reservery reserves reservice reserviced reservices reservicing reserving reservist reservists reservoir reservoired reservoiring reservoirs reservor reses reset resets resettable resetted resetter resetters resetting resettings resettle resettled resettlement resettlements resettles resettling resever resew resewed resewing resewn resews resex resgat resh reshake reshaken reshaking reshape reshaped reshaper reshapers reshapes reshaping reshare reshared resharing resharpen resharpened resharpening resharpens reshave reshaved reshaven reshaves reshaving reshear reshearer resheathe reshelve reshes reshew reshift reshine reshined reshines reshingle reshingled reshingles reshingling reshining reship reshipment reshipments reshipped reshipper reshipping reships reshod reshoe reshoeing reshoes reshone reshook reshoot reshooting reshoots reshorten reshot reshoulder reshovel reshow reshowed reshower reshowered reshowering reshowers reshowing reshown reshows reshrine reshuffle reshuffled reshuffles reshuffling reshun reshunt reshut reshutting reshuttle resiance resiances resiancy resiant resiants resiccate resicken resid reside resided residence residencer residences residencia residencies residency resident residental residenter residenters residential residentiality residentially residentiaries residentiary residentiaryship residentiaryships residents residentship residentships resider residers resides residing residiuum resids residua residual residually residuals residuary residuation residue residuent residues residuous residuua residuum residuums resift resifted resifting resifts resigh resight resighted resighting resights resign resignal resignaled resignaling resignatary resignation resignationism resignations resigned resignedly resignedness resignednesses resignee resigner resigners resignful resigning resignment resignments resigns resile resiled resilement resiles resilia resilial resiliate resilience resiliences resiliencies resiliency resilient resiliently resilifer resilin resiling resilins resiliometer resilition resilium resilver resilvered resilvering resilvers resimmer resin resina resinaceous resinata resinatas resinate resinated resinates resinating resinbush resined resiner resiners resinfiable resing resinic resiniferous resinification resinifications resinified resinifies resinifluous resiniform resinify resinifying resining resinise resinised resinises resinising resinize resinized resinizes resinizing resink resinlike resinoelectric resinoextractive resinogenous resinoid resinoids resinol resinolic resinophore resinoses resinosis resinous resinously resinousness resinousnesses resinovitreous resins resiny resipiscence resipiscences resipiscencies resipiscency resipiscent resist resistability resistable resistableness resistably resistance resistances resistant resistante resistantes resistantly resistants resistate resisted resistence resistent resistents resister resisters resistful resistibilities resistibility resistible resistibleness resistibly resisting resistingly resistive resistively resistiveness resistivenesses resistivities resistivity resistless resistlessly resistlessness resistlessnesses resistor resistors resists resit resite resited resites resiting resits resitting resittings resituate resituated resituates resituating resize resized resizer resizes resizing resketch resketched resketches resketching reskew reskewed reskewing reskews reskill reskilled reskilling reskills reskin reskue reskued reskues reskuing reslander reslash reslate reslated reslates reslating reslay reslide reslot resmell resmelt resmelted resmelting resmelts resmile resmooth resmoothed resmoothing resmooths resmudge resnap resnatch resnatron resnatrons resnub resoak resoaked resoaking resoaks resoap resocialization resocializations resocialize resocialized resocializes resocializing resod resodded resodding resods resoften resoftened resoftening resoftens resoil resoiled resoiling resoils resojet resojets resojourn resold resolder resoldered resoldering resolders resole resoled resolemnise resolemnize resoles resolicit resolicitation resolidification resolidifications resolidified resolidifies resolidify resolidifying resoling resolubilities resolubility resoluble resolubleness resolublenesses resolute resolutely resoluteness resolutenesses resoluter resolutes resolutest resolution resolutioner resolutioners resolutionist resolutions resolutive resolutory resolvabilities resolvability resolvable resolvableness resolvablenesses resolvancy resolve resolved resolvedly resolvedness resolvednesses resolvend resolvent resolvents resolver resolvers resolves resolvible resolving resonance resonances resonancies resonancy resonant resonantly resonants resonate resonated resonates resonating resonation resonations resonator resonators resonatory resoothe resorb resorbed resorbence resorbences resorbent resorbing resorbs resorcin resorcinal resorcine resorcinism resorcinol resorcinolphthalein resorcinols resorcins resorcinum resorcylic resorption resorptions resorptive resort resorted resorter resorters resorting resorts resorufin resought resound resounded resounder resounding resoundingly resounds resource resourced resourceful resourcefully resourcefulness resourcefulnesses resourceless resourcelessness resources resourcing resoutive resow resowed resowing resown resows resp respace respaced respaces respacing respade respaded respades respading respan respangle resparkle respasse respeak respeaking respeaks respecification respecifications respecified respecify respecifying respect respectabilise respectabilised respectabilises respectabilising respectabilities respectability respectabilize respectabilized respectabilizes respectabilizing respectable respectableness respectablenesses respectables respectably respectant respected respecter respecters respectful respectfully respectfulness respectfulnesses respecting respection respective respectively respectiveness respectivenesses respectless respectlessly respectlessness respects respectum respectuous respectworthy respell respelled respelling respellings respells respelt respersive respice respiced respicing respin respirabilities respirability respirable respirableness respirating respiration respirational respirations respirative respirator respiratored respiratories respiratorium respirators respiratory respire respired respires respiring respirit respiritualize respiritualized respiritualizes respiritualizing respirometer respirometers respirometric respirometries respirometry respite respited respiteless respites respiting resplend resplended resplendence resplendences resplendencies resplendency resplendent resplendently resplending resplendish resplends resplice respliced resplices resplicing resplit resplits resplitting respoke respoken respond responde respondeat responded respondence respondences respondencies respondency respondendum respondent respondentia respondentias respondents responder responders responding responds responsa responsable responsal responsary response responseless responser responsers responses responsibilities responsibility responsible responsibleness responsiblenesses responsibles responsiblities responsiblity responsibly responsion responsions responsive responsively responsiveness responsivenesses responsivity responsor responsorial responsorials responsories responsors responsory responsum responsums responsusa respot respots respotted respotting resprang respray resprayed respraying resprays respread respreading respreads respring respringing resprings resprinkle resprinkled resprinkling resprout resprouted resprouting resprouts resprung respue resquander resquare resqueak ressaidar ressala ressalah ressaldar ressaldars ressaut ressentiment ressentiments resshot ressort rest restab restabbed restabbing restabilization restabilize restabilized restabilizes restabilizing restable restabled restables restabling restack restacked restacking restacks restaff restaffed restaffing restaffs restage restaged restages restaging restagnate restain restainable restake restamp restamped restamping restamps restandardisation restandardise restandardization restandardize restant restart restartable restarted restarter restarters restarting restarts restate restated restatement restatements restates restating restation restaur restaurant restauranter restauranteur restauranteurs restaurants restaurate restaurateur restaurateurs restauration restaurations restbalk resteal rested resteel resteep restem restemmed restemming restems restep rester resterilise resterilises resterilization resterilize resterilized resterilizes resterilizing resters restes restful restfuller restfullest restfully restfulness restfulnesses restharrow restharrows resthouse restiaceous restiad restibrachium restier restiest restiff restiffen restiffener restiffness restifle restiform restigmatise restigmatize restimulate restimulated restimulates restimulating restimulation restimulations restiness resting restinging restingly restings restionaceous restipulate restipulated restipulating restipulation restipulatory restir restirred restirring restis restitch restitched restitches restitching restitue restitute restituted restitutes restituting restitution restitutional restitutionism restitutionisms restitutionist restitutionists restitutions restitutive restitutor restitutors restitutory restive restively restiveness restivenesses restless restlessly restlessness restlessnesses restock restocked restocking restocks restoke restoked restokes restoking restopper restorability restorable restorableness restorablenesses restoral restorals restoration restorationer restorationism restorationisms restorationist restorationists restorations restorative restoratively restorativeness restorativenesses restoratives restorator restoratory restore restored restorer restorers restores restoring restoringmoment restow restowal restproof restr restraighten restraightened restraightening restraightens restrain restrainability restrainable restrained restrainedly restrainedness restrainednesses restrainer restrainers restraining restrainingly restrainings restrains restraint restraintful restraints restrap restrapped restrapping restratification restream restrengthen restrengthened restrengthening restrengthens restress restressed restresses restressing restretch restricken restrict restricted restrictedly restrictedness restricting restriction restrictionary restrictionism restrictionisms restrictionist restrictionists restrictions restrictive restrictively restrictiveness restrictivenesses restrictives restricts restrike restrikes restriking restring restringe restringed restringeing restringency restringent restringents restringer restringes restringing restrings restrip restrive restriven restrives restriving restroke restroom restrooms restrove restruck restructure restructured restructures restructuring restructurings restrung rests restudied restudies restudy restudying restuff restuffed restuffing restuffs restung restward restwards resty restyle restyled restyles restyling resubject resubjection resubjugate resublimate resublimated resublimating resublimation resublime resublimed resubmerge resubmerged resubmerges resubmerging resubmission resubmissions resubmit resubmits resubmitted resubmitting resubordinate resubscribe resubscribed resubscriber resubscribes resubscribing resubscription resubstantiate resubstantiated resubstantiating resubstantiation resubstitute resubstitution resucceed resuck resudation resue resuffer resufferance resuggest resuggestion resuing resuit resulfurize resulfurized resulfurizing resulphurize resulphurized resulphurizing result resultance resultancy resultant resultantly resultants resultative resulted resultful resultfully resultfulness resulting resultingly resultive resultless resultlessly resultlessness resultlessnesses results resumability resumable resume resumed resumeing resumer resumers resumes resuming resummon resummonable resummoned resummoning resummons resumption resumptions resumptive resumptively resun resup resuperheat resupervise resupinate resupinated resupination resupinations resupine resupplied resupplies resupply resupplying resupport resuppose resupposition resuppress resuppression resurface resurfaced resurfacer resurfacers resurfaces resurfacing resurgam resurge resurged resurgence resurgences resurgency resurgent resurges resurging resurprise resurrect resurrected resurrectible resurrecting resurrection resurrectional resurrectionary resurrectioner resurrectioning resurrectionise resurrectionised resurrectionises resurrectionising resurrectionism resurrectionisms resurrectionist resurrectionists resurrectionize resurrectionized resurrectionizes resurrectionizing resurrections resurrective resurrector resurrectors resurrects resurrender resurround resurvey resurveyed resurveying resurveys resuscitable resuscitant resuscitants resuscitate resuscitated resuscitates resuscitating resuscitation resuscitations resuscitative resuscitator resuscitators resuspect resuspend resuspension reswage reswallow resward reswarm reswear reswearing resweat resweep resweeping resweeten reswell reswept reswill reswim reswore resyllabification resymbolisation resymbolise resymbolization resymbolize resymbolized resymbolizing resynchronisation resynchronisations resynchronise resynchronised resynchronises resynchronising resynchronization resynchronizations resynchronize resynchronized resynchronizes resynchronizing resyntheses resynthesis resynthesise resynthesises resynthesize resynthesized resynthesizes resynthesizing resynthetize resynthetized resynthetizing resystematize resystematized resystematizes resystematizing ret retable retables retablo retabulate retabulated retabulates retabulating retack retacked retacking retackle retackled retackles retackling retacks retag retagged retagging retags retail retailable retailed retailer retailers retailing retailings retailment retailments retailor retailored retailoring retailors retails retain retainabilities retainability retainable retainableness retainal retainder retained retainer retainers retainership retainerships retaining retainment retainments retains retake retaken retaker retakers retakes retaking retakings retal retaliate retaliated retaliates retaliating retaliation retaliationist retaliationists retaliations retaliative retaliator retaliators retaliatory retalk retallied retallies retally retallying retama retamas retame retan retanned retanner retanning retape retaped retapes retaping retar retard retardance retardant retardants retardate retardates retardation retardations retardative retardatory retarded retardee retardence retardent retarder retarders retarding retardingly retardive retardment retardments retards retardure retare retarget retargeted retargeting retargets retariff retarred retarring retaste retasted retastes retasting retation retattle retaught retax retaxation retaxed retaxes retaxing retch retched retches retching retchless retchlessly retchlessness retchlessnesses retd rete reteach reteaches reteaching reteam reteamed reteaming reteams retear retearing retears retecious retelegraph retelephone retelevise retelevised retelevises retelevising retell reteller retellers retelling retellings retells retem retemper retempered retempering retempers retempt retemptation retems retenant retender retene retenes retent retention retentionist retentionists retentions retentive retentively retentiveness retentivenesses retentivities retentivity retentor retenue retepore retes retest retested retestified retestifies retestify retestifying retestimonies retestimony retesting retests retexture retextured retextures retexturing rethank rethatch rethaw rethe retheness rether rethicken rethink rethinker rethinkers rethinking rethinks rethought rethrash rethread rethreaded rethreading rethreads rethreaten rethresh rethresher rethrill rethrive rethrone rethrow rethrust rethunder retia retial retiarian retiarii retiarius retiariuses retiary reticella reticellas reticello reticence reticences reticencies reticency reticent reticently retick reticket reticle reticles reticula reticular reticularian reticularly reticulary reticulate reticulated reticulately reticulates reticulating reticulation reticulations reticulatocoalescent reticulatogranulate reticulatoramose reticulatovenose reticule reticuled reticules reticuli reticulin reticulitermes reticulitis reticulocyte reticulocytes reticulocytic reticulocytosis reticuloendothelial reticuloramose reticulose reticulovenose reticulum reticulums retie retied retier reties retiform retighten retightened retightening retightens retile retiled retiles retiling retill retimber retimbering retime retimed retimes retiming retin retina retinacula retinacular retinaculate retinaculum retinae retinal retinalite retinalites retinals retinas retinasphalt retinasphaltum retincture retine retinene retinenes retinerved retines retinge retinged retingeing retinian retinic retinise retinispora retinisporas retinite retinites retinitides retinitis retinitises retinize retinker retinned retinning retinoblastoma retinoblastomas retinoblastomata retinochorioid retinochorioidal retinochorioiditis retinoid retinoids retinol retinols retinopapilitis retinopathic retinopathies retinopathy retinophoral retinophore retinoscope retinoscopes retinoscopic retinoscopically retinoscopies retinoscopist retinoscopists retinoscopy retinospora retinosporas retinotectal retint retinted retinting retints retinue retinued retinues retinula retinulae retinular retinulas retinule retip retira retiracied retiracies retiracy retirade retiral retirals retirant retirants retire retired retiredly retiredness retirednesses retiree retirees retirement retirements retirer retirers retires retiring retiringly retiringness retiringnesses retistene retitle retitled retitles retitling retled retling retoast retold retolerate retoleration retomb retonation retook retool retooled retooling retools retooth retoother retore retorn retorsion retorsions retort retortable retorted retorter retorters retorting retortion retortions retortive retorts retorture retoss retotal retotaled retotaling retotalled retotalling retotals retouch retouchable retouched retoucher retouchers retouches retouching retouchment retour retourable retoured retouring retours retrace retraceable retraced retracement retracer retracers retraces retracing retrack retracked retracking retracks retract retractabilities retractability retractable retractation retractations retracted retractibilities retractibility retractible retractile retractilities retractility retracting retraction retractions retractive retractively retractiveness retractivenesses retractor retractors retracts retrad retrade retraded retrading retradition retrahent retraict retraicted retraicting retraicts retrain retrainable retrained retrainee retraining retrains retrait retraite retraited retraites retraiting retraits retraitt retraitts retral retrally retramp retrample retranquilise retranquilize retranscribe retranscribed retranscribing retranscription retransfer retransference retransferred retransferring retransfers retransfigure retransform retransformation retransformations retransformed retransforming retransforms retransfuse retransit retranslate retranslated retranslates retranslating retranslation retranslations retransmission retransmissions retransmissive retransmit retransmited retransmiting retransmits retransmitted retransmitting retransmute retransplant retransplantation retransplanted retransplanting retransplants retransport retransportation retrate retrated retrates retrating retravel retraverse retraversed retraversing retraxit retread retreaded retreading retreads retreat retreatal retreatant retreatants retreated retreater retreaters retreatful retreating retreatingness retreatism retreatist retreative retreatment retreats retree retrees retrench retrenchable retrenched retrencher retrenchers retrenches retrenching retrenchment retrenchments retrial retrials retribute retributed retributes retributing retribution retributions retributive retributively retributor retributors retributory retricked retried retrier retriers retries retrievabilities retrievability retrievable retrievableness retrievablenesses retrievably retrieval retrievals retrieve retrieved retrieveless retrievement retrievements retriever retrieverish retrievers retrieves retrieving retrievings retrim retrimmed retrimmer retrimming retrims retrip retro retroact retroacted retroacting retroaction retroactionary retroactions retroactive retroactively retroactivities retroactivity retroacts retroalveolar retroauricular retrobronchial retrobuccal retrobulbar retrocaecal retrocardiac retrocecal retrocede retroceded retrocedence retrocedent retrocedes retroceding retrocervical retrocession retrocessional retrocessionist retrocessions retrocessive retrochoir retrochoirs retroclavicular retroclusion retrocognition retrocognitions retrocognitive retrocolic retroconsciousness retrocopulant retrocopulation retrocostal retrocouple retrocoupler retrocurved retrod retrodate retrodden retrodeviation retrodict retrodicted retrodicting retrodiction retrodictions retrodictive retrodicts retrodirective retrodisplacement retroduction retrodural retroesophageal retrofire retrofired retrofires retrofiring retrofit retrofits retrofitted retrofitting retrofittings retroflected retroflection retroflections retroflex retroflexed retroflexes retroflexion retroflexions retroflux retroform retrofract retrofracted retrofrontal retrogastric retrogenerative retrogradation retrogradations retrogradatory retrograde retrograded retrogradely retrogrades retrogradient retrograding retrogradingly retrogradism retrogradist retrogress retrogressed retrogresses retrogressing retrogression retrogressional retrogressionist retrogressions retrogressive retrogressively retrogressiveness retrohepatic retroinfection retroinsular retroiridian retroject retrojected retrojecting retrojection retrojections retrojects retrojugular retrolabyrinthine retrolaryngeal retrolental retrolingual retrolocation retromammary retromammillary retromandibular retromastoid retromaxillary retromigration retromingencies retromingency retromingent retromingently retromingents retromorphosed retromorphosis retronasal retronym retronyms retropack retropacks retroperitoneal retroperitoneally retropharyngeal retropharyngitis retrophilia retrophiliac retrophiliacs retrophilias retrophyllum retroplacental retroplexed retroposed retroposition retropresbyteral retropubic retropulmonary retropulsion retropulsions retropulsive retroreception retrorectal retroreflection retroreflections retroreflective retroreflector retroreflectors retrorenal retrorocket retrorockets retrorse retrorsely retros retroserrate retroserrulate retrospect retrospected retrospecting retrospection retrospections retrospective retrospectively retrospectiveness retrospectives retrospectivity retrospects retrosplenic retrostalsis retrostaltic retrosternal retrosusception retrot retrotarsal retrotemporal retrothyroid retrotracheal retrotransfer retrotransference retrotympanic retrouss retroussa retroussage retroussages retrousse retroussé retrovaccinate retrovaccination retrovaccine retroverse retroversion retroversions retrovert retroverted retroverting retroverts retroviral retrovirus retroviruses retrovision retroxiphoid retrude retruded retruding retrue retruse retrusible retrusion retrusive retrust retry retrying rets retsina retsinas retted retter retteries rettery retting rettore rettorn rettory retube retuck retumble retumescence retund retunded retunding retunds retune retuned retunes retuning returban returf returfed returfer returfing returfs return returnability returnable returnables returned returnee returnees returner returners returnik returniks returning returnless returnlessly returns retuse retwine retwined retwining retwist retwisted retwisting retwists retying retype retyped retypes retyping retzian reuben reundercut reundergo reundertake reundulate reundulation reune reunfold reunification reunifications reunified reunifies reunify reunifying reunion reunionism reunionisms reunionist reunionistic reunionists reunions reunitable reunite reunited reunitedly reuniter reuniters reunites reuniting reunition reunitive reunpack reuphold reupholster reupholstered reupholsterer reupholsteries reupholstering reupholsters reupholstery reuplift reuptake reuptakes reurge reurged reurges reurging reusabilities reusability reusable reusableness reusabness reuse reuseable reuseableness reuseabness reused reuses reusing reutilisation reutilise reutilised reutilises reutilising reutilization reutilizations reutilize reutilized reutilizes reutilizing reutter reutterance reuttered reuttering reutters rev revacate revacated revacating revaccinate revaccinated revaccinates revaccinating revaccination revaccinations revalenta revalentas revalescence revalescent revalidate revalidated revalidates revalidating revalidation revalidations revalorisation revalorisations revalorise revalorised revalorises revalorising revalorization revalorizations revalorize revalorized revalorizes revalorizing revaluate revaluated revaluates revaluating revaluation revaluations revalue revalued revalues revaluing revamp revamped revamper revampers revamping revampment revampments revamps revanche revanches revanchism revanchisms revanchist revanchists revaporise revaporization revaporize revaporized revaporizing revapourisation revarnish revarnished revarnishes revarnishing revary revascularization revascularizations revay reve reveal revealability revealable revealableness revealed revealedly revealer revealers revealing revealingly revealingness revealings revealment revealments reveals revegetate revegetated revegetates revegetating revegetation revegetations revehent reveil reveille reveilles revel revelability revelant revelation revelational revelationer revelationise revelationist revelationists revelationize revelations revelative revelator revelators revelatory reveled reveler revelers reveling revelings revelled revellent reveller revellers revelling revellings revelly revelment revelous revelries revelrous revelrout revelry revels revenant revenants revend revender revendicate revendicated revendicates revendicating revendication revendications reveneer revenge revengeable revenged revengeful revengefully revengefulness revengefulnesses revengeless revengement revengements revenger revengers revenges revenging revengingly revengings revengive revent reventilate reventilated reventilating reventilation reventure revenual revenue revenued revenuer revenuers revenues rever reverable reverb reverbatory reverbed reverberance reverberant reverberantly reverberate reverberated reverberates reverberating reverberation reverberations reverberative reverberatively reverberator reverberatories reverberators reverberatory reverbing reverbrate reverbs reverdi reverdure revere revered reveree reverence reverenced reverencer reverencers reverences reverencing reverend reverendly reverends reverendship reverent reverential reverentiality reverentially reverentialness reverently reverentness reverer reverers reveres reverie reveries reverification reverifications reverified reverifies reverify reverifying revering reverist reverists revers reversability reversable reversal reversals reverse reversed reversedly reverseful reverseless reversely reversement reverser reversers reverses reverseways reversewise reversi reversibilities reversibility reversible reversibleness reversiblenesses reversibles reversibly reversification reversifier reversify reversing reversingly reversings reversion reversionable reversional reversionally reversionaries reversionary reversioner reversioners reversionist reversions reversis reversises reversist reversive reverso reversos revert revertal revertant revertants reverted revertendi reverter reverters revertibility revertible reverting revertive revertively reverts revery revest revested revestiaries revestiary revesting revestries revestry revests revet revete revetement revetment revetments reveto revetoed revetoing revets revetted revetting reveur reveurs reveuse reveuses reveverberatory revibrant revibrate revibrated revibrating revibration revibrational revictorious revictory revictual revictualed revictualing revictualled revictualling revictualment revictuals revie revied revies review reviewability reviewable reviewage reviewal reviewals reviewed reviewer revieweress reviewers reviewing reviewish reviewless reviews revification revigor revigorate revigoration revigour revile reviled revilement revilements reviler revilers reviles reviling revilingly revilings revince revindicate revindicated revindicates revindicating revindication revindications reviolate reviolated reviolating reviolation revirado revirescence revirescent revisable revisableness revisal revisals revise revised revisee reviser revisers revisership revises revisible revising revision revisional revisionary revisionism revisionisms revisionist revisionists revisions revisit revisitable revisitant revisitants revisitation revisitations revisited revisiting revisits revisor revisors revisory revisualisation revisualisations revisualise revisualises revisualization revisualizations revisualize revisualized revisualizes revisualizing revitalisation revitalisations revitalise revitalised revitaliser revitalises revitalising revitalization revitalizations revitalize revitalized revitalizer revitalizes revitalizing revivabilities revivability revivable revivably revival revivalise revivalism revivalisms revivalist revivalistic revivalists revivalize revivals revivatory revive revived revivement revivements reviver revivers revives revivescence revivescences revivescencies revivescency revivescent reviviction revivification revivifications revivified revivifier revivifies revivify revivifying reviving revivingly revivings reviviscence reviviscences reviviscencies reviviscency reviviscent reviviscible revivor revivors revocabilities revocability revocabilty revocable revocableness revocablenesses revocably revocandi revocate revocation revocations revocative revocatory revoice revoiced revoices revoicing revoir revokabilities revokability revokable revokableness revokablenesses revokably revoke revoked revokement revokements revoker revokers revokes revoking revokingly revolant revolatilise revolatilize revolt revolted revolter revolters revolting revoltingly revoltress revolts revolubility revoluble revolubly revolunteer revolute revoluted revolution revolutional revolutionally revolutionaries revolutionarily revolutionariness revolutionarinesses revolutionary revolutioneering revolutioner revolutioners revolutionise revolutionised revolutionisement revolutioniser revolutionisers revolutionises revolutionising revolutionism revolutionisms revolutionist revolutionists revolutionize revolutionized revolutionizement revolutionizer revolutionizers revolutionizes revolutionizing revolutions revolvable revolvably revolve revolved revolvement revolvencies revolvency revolver revolvers revolves revolving revolvingly revolvings revomit revote revoted revotes revoting revoyage revoyaged revoyaging revs revue revues revuette revuist revuists revulsant revulse revulsed revulsion revulsionary revulsions revulsive revulsively revved revving revying rew rewade rewager rewake rewaked rewaken rewakened rewakening rewakens rewakes rewaking rewall rewallow rewan reward rewardable rewardableness rewardablenesses rewardably rewarded rewardedly rewarder rewarders rewardful rewardfulness rewarding rewardingly rewardingness rewardless rewardproof rewards rewarehouse rewarewa rewarewas rewarm rewarmed rewarming rewarms rewarn rewarrant rewash rewashed rewashes rewashing rewater rewave rewax rewaxed rewaxes rewaxing rewaybill rewayle reweaken rewear rewearing rewears reweave reweaved reweaves reweaving rewed rewedded rewedding reweds reweigh reweighed reweigher reweighing reweighs reweight rewelcome reweld rewelded rewelding rewelds rewend rewet rewets rewetted rewetting rewhelp rewhirl rewhisper rewhiten rewiden rewidened rewidening rewidens rewin rewind rewindable rewinded rewinder rewinders rewinding rewinds rewing rewinning rewins rewirable rewire rewired rewires rewiring rewish rewithdraw rewithdrawal rewoke rewoken rewon rewood reword reworded rewording rewordings rewords rewore rework reworked reworking reworkings reworks reworn rewound rewove rewoven rewrap rewrapped rewrapping rewraps rewrapt rewritable rewrite rewriter rewriters rewrites rewriting rewritings rewritten rewrote rewrought rews rewth rewths rewwore rewwove rex rexen rexes rexine rexines reyield reykjavik reynard reynards reyoke reyoked reyoking reyouth reyson rez rezbanyite rezone rezoned rezones rezoning rezzes rf rfb rfound rfree rfs rfz rg rgen rgisseur rglement rh rha rhabarb rhabarbarate rhabarbaric rhabarbarum rhabdite rhabditiform rhabdium rhabdocoelan rhabdocoele rhabdocoeles rhabdocoelidan rhabdocoelous rhabdoid rhabdoidal rhabdoids rhabdolith rhabdoliths rhabdology rhabdom rhabdomal rhabdomancer rhabdomancers rhabdomancies rhabdomancy rhabdomantic rhabdomantist rhabdomantists rhabdome rhabdomere rhabdomeres rhabdomes rhabdoms rhabdomyoma rhabdomyomas rhabdomyomata rhabdomyosarcoma rhabdomyosarcomas rhabdomyosarcomata rhabdomysarcoma rhabdophane rhabdophanite rhabdophobia rhabdophoran rhabdopod rhabdos rhabdosome rhabdosophy rhabdosphere rhabdospheres rhabdovirus rhabdoviruses rhabdus rhabduses rhachi rhachides rhachis rhachises rhachitis rhachitises rhadamanthine rhadamanthus rhadamnathus rhaebosis rhaetian rhaetic rhaetizite rhagades rhagadiform rhagiocrin rhagionid rhagite rhagoletis rhagon rhagonate rhagonoid rhagose rhamn rhamnaceae rhamnaceous rhamnal rhamnales rhamnetin rhamninase rhamninose rhamnite rhamnitol rhamnohexite rhamnohexitol rhamnohexose rhamnonic rhamnose rhamnoses rhamnoside rhamnus rhamnuses rhamphoid rhamphorhynchus rhamphotheca rhamphothecas rhaphae rhaphe rhaphes rhaphide rhaphides rhaphis rhapis rhapontic rhaponticin rhapontics rhapontin rhapsode rhapsodes rhapsodic rhapsodical rhapsodically rhapsodie rhapsodies rhapsodise rhapsodised rhapsodises rhapsodising rhapsodism rhapsodist rhapsodistic rhapsodists rhapsodize rhapsodized rhapsodizes rhapsodizing rhapsodomancy rhapsody rhason rhasophore rhatania rhatanies rhatany rhatikon rhb rhd rhe rhea rheadine rheas rhebok rheboks rhebosis rheda rhedae rhedas rheeboc rheebok rheen rhegmatype rhegmatypy rheic rheidae rheiformes rhein rheinberry rheingold rheinic rheinland rhema rhematic rhematology rheme rhemes rhemish rhenea rhenic rhenish rhenium rheniums rhennish rheo rheobase rheobases rheochord rheochords rheocord rheocords rheocrat rheologic rheological rheologically rheologies rheologist rheologists rheology rheometer rheometers rheometric rheometrical rheometry rheopexy rheophil rheophile rheophilic rheophore rheophoric rheoplankton rheoscope rheoscopic rheostat rheostatic rheostatics rheostats rheotactic rheotan rheotaxes rheotaxis rheotome rheotomes rheotron rheotrope rheotropes rheotropic rheotropism rheotropisms rhesian rhesis rhesus rhesuses rhet rhetor rhetoric rhetorical rhetorically rhetoricalness rhetoricals rhetorician rhetoricians rhetorics rhetorise rhetorised rhetorises rhetorising rhetorize rhetorized rhetorizes rhetorizing rhetors rheum rheumarthritis rheumatalgia rheumateese rheumateeses rheumatic rheumatical rheumatically rheumaticky rheumatics rheumatise rheumatises rheumatism rheumatismal rheumatismoid rheumatisms rheumative rheumatiz rheumatize rheumatizes rheumatogenic rheumatoid rheumatoidal rheumatoidally rheumatological rheumatologies rheumatologist rheumatologists rheumatology rheumed rheumic rheumier rheumiest rheumily rheuminess rheums rheumy rhexes rhexia rhexis rhexises rhibhus rhibia rhies rhigolene rhigosis rhigotic rhila rhime rhimed rhimes rhiming rhinal rhinalgia rhinaria rhinarium rhincodon rhincodontidae rhincospasm rhine rhinegrave rhineland rhinencephala rhinencephalic rhinencephalon rhinencephalons rhinencephalous rhinenchysis rhines rhinestone rhinestoned rhinestones rhineurynter rhinion rhinitides rhinitis rhinitises rhino rhinobatidae rhinobyon rhinocaul rhinocele rhinocelian rhinoceri rhinocerial rhinocerian rhinocerical rhinocerine rhinoceroid rhinoceros rhinoceroses rhinoceroslike rhinocerot rhinocerote rhinocerotes rhinocerotic rhinocerotidae rhinocerotiform rhinocerotine rhinocerotoid rhinochiloplasty rhinocoele rhinocoelian rhinodynia rhinogenous rhinolalia rhinolalias rhinolaryngologist rhinolaryngology rhinolaryngoscope rhinolite rhinolith rhinolithic rhinoliths rhinologic rhinological rhinologies rhinologist rhinologists rhinology rhinolophid rhinolophidae rhinolophine rhinonicteris rhinopharyngeal rhinopharyngitides rhinopharyngitis rhinopharyngitises rhinopharynx rhinophonia rhinophore rhinophyma rhinophymas rhinoplastic rhinoplasties rhinoplasty rhinopolypus rhinoptera rhinorrhagia rhinorrhagias rhinorrhea rhinorrheal rhinorrhoea rhinorrhoeal rhinorrhoeas rhinos rhinoscleroma rhinoscleromas rhinoscleromata rhinoscope rhinoscopes rhinoscopic rhinoscopies rhinoscopy rhinosporidiosis rhinosporidium rhinotermitidae rhinotheca rhinothecae rhinothecal rhinothecas rhinotracheitis rhinovirus rhinoviruses rhipidate rhipidion rhipidions rhipidistian rhipidium rhipidiums rhipidoglossal rhipidoglossate rhipidopterous rhipiphorid rhipipteran rhipipterous rhipsalis rhiptoglossa rhizanth rhizanthous rhizautoicous rhizic rhizine rhizines rhizinous rhizobia rhizobiaceae rhizobial rhizobium rhizocarp rhizocarpean rhizocarpian rhizocarpic rhizocarpous rhizocarps rhizocaul rhizocauls rhizocaulus rhizocephalan rhizocephalans rhizocephalid rhizocephalous rhizocorm rhizoctinia rhizoctonia rhizoctonias rhizoctoniose rhizodermis rhizoflagellate rhizogen rhizogenesis rhizogenetic rhizogenic rhizogenous rhizoid rhizoidal rhizoids rhizoma rhizomata rhizomatic rhizomatous rhizome rhizomelic rhizomes rhizomic rhizomorph rhizomorphic rhizomorphoid rhizomorphous rhizomorphs rhizoneure rhizophagous rhizophilous rhizophora rhizophoraceae rhizophoraceous rhizophore rhizophores rhizophorous rhizophyte rhizopi rhizoplane rhizoplanes rhizoplast rhizopod rhizopoda rhizopodal rhizopodan rhizopodans rhizopodist rhizopodous rhizopods rhizopogon rhizopogonaceae rhizopus rhizopuses rhizosphere rhizospheres rhizostomatous rhizostome rhizostomous rhizotaxis rhizotaxy rhizote rhizotic rhizotomi rhizotomies rhizotomy rho rhodaline rhodamin rhodamine rhodamines rhodamins rhodanate rhodanates rhodanic rhodanine rhodanise rhodanised rhodanises rhodanising rhodanize rhodanized rhodanizes rhodanizing rhodanthe rhodeoretin rhodeose rhodes rhodesia rhodesian rhodesians rhodeswood rhodian rhodic rhodie rhodies rhodinal rhoding rhodinol rhodite rhodium rhodiums rhodizite rhodizonic rhodochrosite rhodochrosites rhodocyte rhododaphne rhododaphnes rhododendron rhododendrons rhodolite rhodolites rhodomelaceous rhodomontade rhodomontaded rhodomontades rhodomontading rhodonite rhodonites rhodophane rhodophanes rhodophyceae rhodophyceous rhodophyll rhodophyta rhodoplast rhodopsin rhodopsins rhodora rhodoras rhodorhiza rhodosperm rhodospermin rhodospermous rhodosphaera rhodous rhody rhodymenia rhodymeniaceae rhodymeniaceous rhoeadales rhoeadine rhoeadines rhoicissus rhoicissuses rhomb rhombencephala rhombencephalon rhombencephalons rhombenla rhombenporphyr rhombenporphyries rhombenporphyrs rhombenporphyry rhombi rhombic rhombical rhombiform rhomboclase rhomboganoid rhombogene rhombogenic rhombogenous rhombohedra rhombohedral rhombohedrally rhombohedric rhombohedron rhombohedrons rhomboi rhomboid rhomboidal rhomboidally rhomboidei rhomboides rhomboideus rhomboidly rhomboids rhomboquadratic rhomborectangular rhombos rhombovate rhombporphyries rhombporphyry rhombs rhombus rhombuses rhoncal rhonchal rhonchi rhonchial rhonchus rhone rhones rhopalic rhopalism rhopalisms rhopalium rhopaloceral rhopalocerous rhos rhotacise rhotacised rhotacises rhotacising rhotacism rhotacisms rhotacismus rhotacist rhotacistic rhotacize rhotacized rhotacizes rhotacizing rhotic rhubarb rhubarbing rhubarbings rhubarbs rhubarby rhumb rhumba rhumbaed rhumbaing rhumbas rhumbatron rhumbs rhus rhuses rhy rhyacolite rhyacotriton rhyme rhymed rhymeless rhymelet rhymemaker rhymemaking rhymeproof rhymer rhymers rhymery rhymes rhymester rhymesters rhymewise rhymic rhyming rhymist rhymists rhymster rhymy rhynchocephalia rhynchocephalian rhynchocephalians rhynchocephalic rhynchocephalous rhynchocoel rhynchocoelan rhynchocoele rhynchocoelic rhynchocoelous rhynchocoels rhynchodont rhynchoelaps rhyncholite rhynchonelloid rhynchophoran rhynchophore rhynchophorous rhynchotal rhynchote rhynchotous rhynconellid rhyncostylis rhyne rhynes rhynia rhyniaceae rhyobasalt rhyodacite rhyolite rhyolites rhyolitic rhyotaxitic rhyparographer rhyparographers rhyparographic rhyparographies rhyparographist rhyparography rhypography rhyptic rhyptical rhysimeter rhyta rhythm rhythmal rhythmed rhythmi rhythmic rhythmical rhythmicality rhythmically rhythmicise rhythmicities rhythmicity rhythmicize rhythmics rhythming rhythmisable rhythmisation rhythmisations rhythmise rhythmised rhythmises rhythmising rhythmist rhythmists rhythmizable rhythmization rhythmizations rhythmize rhythmized rhythmizes rhythmizing rhythmless rhythmometer rhythmometers rhythmopoeia rhythmopoeias rhythmproof rhythms rhythmus rhythmuses rhytidectomies rhytidectomy rhytidome rhytidomes rhytidoplasty rhytidosis rhytina rhytinas rhyton rhytons rhytta ria rial rials rialto rialtos rialty riancies riancy riant riantly rias riata riatas rib ribald ribaldish ribaldly ribaldness ribaldries ribaldrous ribaldry ribalds riband ribanded ribanding ribandlike ribandmaker ribandry ribands ribat ribattuta ribattutas ribaud ribaudequin ribaudred ribaudries ribaudry ribauds ribavirin ribavirins ribazuba ribband ribbandry ribbands ribbed ribber ribbers ribbet ribbidge ribbier ribbies ribbiest ribbing ribbings ribble ribbon ribbonback ribboned ribboner ribbonfish ribbonfishes ribboning ribbonlike ribbonmaker ribbonries ribbonry ribbons ribbonweed ribbonwood ribbony ribby ribcage ribcages ribe ribes ribeye ribeyes ribgrass ribgrasses ribhus ribibe ribibes ribible ribibles ribier ribiers ribless riblet riblets riblike riboflavin riboflavine riboflavines riboflavins ribonic ribonuclease ribonucleases ribonucleic ribonucleoprotein ribonucleoproteins ribonucleoside ribonucleosides ribonucleotide ribonucleotides ribose riboses riboso ribosomal ribosome ribosomes ribosos riboza ribozo ribozos ribozyme ribozymes ribroast ribroaster ribroasting ribs ribskin ribspare ribston ribstone ribstones ribstons ribwork ribworks ribwort ribworts ribzuba ricardian ricasso ricciaceous rice ricebird ricebirds ricecar ricecars riced ricegrass riceland ricer ricercar ricercare ricercares ricercari ricercars ricercata ricercatas ricers rices ricey rich richard richardson richdom riche richea riched richelieu richellite richen richened richening richens richer riches richesse richesses richest richeted richeting richetted richetting richfield riching richinised richling richly richmond richmondena richness richnesses richt richted richter richterite richtest richting richts richweed richweeds ricier riciest ricin ricine ricinelaidic ricinelaidinic ricing ricinic ricinine ricininic ricinium ricinoleate ricinoleic ricinolein ricinolic ricins ricinus ricinuses rick rickardite rickburner rickburners ricked ricker rickers ricket ricketier ricketiest ricketily ricketiness ricketinesses ricketish rickets rickettier rickettiest rickettsia rickettsiaceae rickettsiae rickettsial rickettsiales rickettsialpox rickettsias ricketty rickety rickey rickeys ricking rickle rickles ricklier rickliest rickly rickmatic rickrack rickracks ricks ricksha rickshas rickshaw rickshaws rickstaddle rickstand rickstands rickstick ricksticks rickyard rickyards ricochet ricocheted ricocheting ricochets ricochetted ricochetting ricolettaite ricotta ricottas ricrac ricracs rictal rictus rictuses ricy rid ridabilities ridability ridable ridableness ridably riddam riddance riddances ridded riddel ridden ridder ridders ridding riddle riddled riddlemeree riddler riddlers riddles riddling riddlingly riddlings ride rideable rideau riden rident rider ridered rideress riderless riders ridership riderships rides ridesharing ridesharings ridge ridgeback ridgebacks ridgeband ridgeboard ridgebone ridged ridgel ridgelet ridgelike ridgeline ridgelines ridgeling ridgelings ridgels ridgepiece ridgepieces ridgeplate ridgepole ridgepoled ridgepoles ridger ridgerope ridgers ridges ridgetree ridgeway ridgeways ridgewise ridgier ridgiest ridgil ridgils ridging ridgingly ridgings ridgling ridglings ridgy ridibund ridicule ridiculed ridiculer ridiculers ridicules ridiculing ridiculise ridiculize ridiculosity ridiculous ridiculously ridiculousness ridiculousnesses ridiest riding ridingman ridingmen ridings ridley ridleys ridotto ridottos rids rie riebeckite riebeckites riel riels riem riemann riemannian riempie riempies riems rier ries riesling rieslings rieve rieved riever rievers rieves rieving rif rifacimenti rifacimento rifampicin rifampicins rifampin rifampins rifamycin rifamycins rifart rife rifely rifeness rifenesses rifer rifest riff riffed riffian riffing riffle riffled riffler rifflers riffles riffling riffraff riffraffs riffs rifle riflebird riflebirds rifled rifledom rifleite rifleman riflemanship riflemen rifleproof rifler rifleries riflers riflery rifles riflescope riflescopes rifleshot rifling riflings riflip riflips rifs rift rifte rifted rifter riftier riftiest rifting riftless rifts rifty rig riga rigadig rigadon rigadoon rigadoons rigamajig rigamarole rigamaroles rigation rigatoni rigatonis rigaudon rigaudons rigbane rigel rigescence rigescent rigg riggal riggald riggalds rigged rigger riggers rigging riggings riggish riggite riggot riggs right rightable rightabout righted righten rightened rightening rightens righteous righteously righteousness righteousnesses righter righters rightest rightfield rightforth rightful rightfully rightfulness rightfulnesses righthand rightheaded righthearted righties righting rightings rightish rightism rightisms rightist rightists rightle rightless rightlessness rightly rightmost rightness rightnesses righto rightos rights rightship rightsize rightsized rightsizes rightsizing rightward rightwardly rightwards righty rigid rigider rigidest rigidification rigidifications rigidified rigidifies rigidify rigidifying rigidise rigidised rigidises rigidising rigidist rigidities rigidity rigidize rigidized rigidizes rigidizing rigidly rigidness rigidnesses rigids rigidulous rigil riginal riglet riglin rigling riglings riglins rigmaree rigmarole rigmarolery rigmaroles rigmarolic rigmarolish rigmarolishly rignum rigodon rigodons rigol rigole rigolet rigolette rigoll rigolls rigols rigor rigorism rigorisms rigorist rigoristic rigorists rigorous rigorously rigorousness rigorousnesses rigors rigour rigourism rigourist rigouristic rigours rigout rigouts rigs rigsby rigsdaler rigueur rigwiddie rigwiddies rigwiddy rigwoodie rigwoodies rijksdaalder rijksdaaler rijstafel rijstafels rijsttafel rijsttafels rikisha rikishas rikishi rikk riksdaalder riksha rikshas rikshaw rikshaws riksmal rilawa rile riled riles riley rilier riliest rilievi rilievo rilievos riling rill rille rilled rilles rillet rillets rillett rillette rillettes rilling rillmark rillmarks rillock rillow rills rillstone rilly rim rima rimae rimal rimas rimate rimation rimaye rimayes rimbase rime rimed rimeless rimer rimers rimery rimes rimester rimesters rimfire rimfires rimier rimiest rimiform riminess riminesses riming rimland rimlands rimless rimmaker rimmaking rimmed rimmer rimmers rimming rimmings rimose rimosely rimosities rimosity rimous rimpi rimple rimpled rimples rimpling rimption rimptions rimrock rimrocks rims rimshot rimshots rimstone rimu rimula rimulose rimus rimy rin rinceau rinceaux rinch rincon rind rinded rinderpest rinderpests rindier rindiest rinding rindle rindless rinds rindy rine rines rinforzando ring ringable ringbark ringbarked ringbarker ringbarking ringbarks ringbill ringbird ringbit ringbits ringbolt ringbolts ringbone ringboned ringbones ringcraft ringdove ringdoves ringe ringed ringent ringer ringers ringeye ringgit ringgits ringgiver ringgiving ringgoer ringhals ringhalses ringhead ringiness ringing ringingly ringingness ringings ringite ringle ringlead ringleader ringleaderless ringleaders ringleadership ringless ringlet ringleted ringlets ringlety ringlike ringmaker ringmaking ringman ringmaster ringmasters ringmen ringneck ringnecks rings ringsail ringside ringsider ringsiders ringsides ringstand ringstands ringster ringsters ringstick ringstraked ringtail ringtailed ringtails ringtaw ringtaws ringtime ringtoss ringtosses ringwalk ringwall ringway ringways ringwise ringwork ringworks ringworm ringworms ringy rink rinka rinked rinker rinkhals rinkhalses rinking rinkite rinks rinncefada rinneite rinner rinning rins rinsable rinse rinseable rinsed rinser rinsers rinses rinsible rinsing rinsings rinthereout rinthereouts rintherout rio riobitsu rioja riojas riot rioted rioter rioters rioting riotingly riotings riotise riotises riotist riotistic riotize riotizes riotocracy riotous riotously riotousness riotousnesses riotproof riotries riotry riots rip ripa ripal riparia riparial riparian riparians riparious ripcord ripcords ripe ripeck ripecks riped ripelike ripely ripen ripened ripener ripeners ripeness ripenesses ripening ripeningly ripenings ripens riper ripers ripes ripest ripgut ripicolous ripidolite ripidolites ripieni ripienist ripienists ripieno ripienos ripier riping ripoff ripoffs riposte riposted ripostes riposting ripp rippable ripped ripper ripperman rippermen rippers rippet rippier rippiers ripping rippingly rippingness rippit ripple rippled rippleless rippler ripplers ripples ripplet ripplets ripplier rippliest rippling ripplingly ripplings ripply rippon ripps riprap riprapped riprapping ripraps rips ripsack ripsaw ripsawed ripsawing ripsawn ripsaws ripsnorter ripsnorters ripsnorting ripstone ripstop ripstops ript riptide riptides ripuarian ripup riroriro risala risaldar risaldars risberm risc risdaler rise risen riser risers riserva rises rishi rishis rishtadar risibilities risibility risible risibleness risibles risibly rising risings risk risked risker riskers riskful riskfulness riskier riskiest riskily riskiness riskinesses risking riskish riskless risklessness riskproof risks risky risoluto risorgimenti risorgimento risorgimentos risorial risorius risorse risotto risottos risp risped risper rispetti rispetto risping rispings risposta risps risqu risque risquee risques risqué rissa rissel risser rissle rissoid rissola rissole rissoles rissom rist ristori ristra ristras risus risuses rit rita ritalin ritard ritardando ritardandos ritards rite riteless ritelessness ritely ritenuto ritenutos rites rithe ritling ritmaster ritornel ritornell ritornelle ritornelles ritornelli ritornello ritornellos ritornells ritornels ritournelle ritournelles ritratto rits ritsu ritt ritted ritter ritters ritting rittingerite rittmaster rittock ritts ritual rituale ritualisation ritualisations ritualise ritualised ritualises ritualising ritualism ritualisms ritualist ritualistic ritualistically ritualistize ritualists ritualities rituality ritualization ritualizations ritualize ritualized ritualizes ritualizing ritualless ritually rituals ritus ritz ritzes ritzier ritziest ritzily ritziness ritzinesses ritzy riv riva rivage rivages rival rivalable rivaled rivaless rivalesses rivaling rivalise rivalised rivalises rivalising rivalism rivalities rivality rivalize rivalized rivalizes rivalizing rivalled rivalless rivallesses rivalling rivalries rivalrous rivalrousness rivalry rivals rivalship rivalships rivas rive rived rivederci rivel riveled riveling rivell rivelled rivelling rivels riven river riverain riverains riverbank riverbanks riverbed riverbeds riverboat riverboats riverbottom riverbush rivercraft riverdamp rivered riveret riverets riverfront riverfronts riverhead riverheads riverhood riverine riverines riverish riverless riverlet riverlike riverling riverly riverman rivermen rivers riverscape riverscapes riverside riversider riversides riverward riverwards riverwash riverway riverways riverweed riverweeds riverwise riverworthiness riverworthinesses riverworthy rivery rives rivet riveted riveter riveters rivethead riveting rivetingly rivetings rivetless rivetlike rivets rivetted rivetter rivetting riviera rivieras riviere rivieres rivina riving rivingly rivière rivières rivlin rivlins rivo rivos rivose rivulariaceous rivulation rivulet rivulets rivulose rivulus rix rixatrix rixdaler rixy riyadh riyal riyals riz riza rizar rizard rizards rizas riziform rizzar rizzared rizzaring rizzars rizzart rizzarts rizzer rizzered rizzering rizzers rizzle rizzom rizzomed rizzonite rizzor rizzored rizzoring rizzors rld rle rly rm rmoulade rms rn rna rnd ro roach roachback roached roaches roaching road roadabilities roadability roadable roadbed roadbeds roadblock roadblocked roadblocking roadblocks roadbook roadcraft roadcrafts roaded roadeo roadeos roader roaders roadfellow roadhead roadheader roadheaders roadhog roadholding roadholdings roadhouse roadhouses roadie roadies roading roadings roadite roadkill roadkills roadless roadlessness roadlike roadman roadmap roadmaps roadmaster roadmen roadroller roadrunner roadrunners roads roadshow roadshows roadside roadsider roadsides roadsign roadsigns roadsman roadsmen roadstead roadsteads roadster roadsters roadstone roadsweepers roadtrack roadway roadways roadweed roadwise roadwork roadworks roadworthiness roadworthinesses roadworthy roady roak roam roamage roamed roamer roamers roaming roamingly roamings roams roan roanoke roans roar roared roarer roarers roarie roarier roariest roaring roaringly roarings roars roary roast roastable roasted roaster roasters roasting roastingly roastings roasts roate roated roates roating rob robalito robalo robalos roband robands robaxin robbed robber robberies robberproof robbers robbery robbin robbing robbins robe robed robeless rober roberd roberdsman roberdsmen robers robert roberts robertsman robertsmen robes robhah robin robinet robing robings robinia robinias robinin robinoside robins robinson roble robles robolo robomb roborant roborants roborate roborating roboration roborative roborean roboreous robot robotesque robotian robotic robotically roboticist roboticists robotics robotisation robotisations robotise robotised robotises robotising robotism robotisms robotistic robotization robotizations robotize robotized robotizes robotizing robotlike robotries robotry robots robs robur roburite roburites robust robusta robustas robuster robustest robustful robustfully robustfulness robustic robusticity robustious robustiously robustiousness robustiousnesses robustity robustly robustness robustnesses robustuous roc rocaille rocailles rocambole rocamboles roccella roccellaceae roccellic roccellin roccelline roccus rocephin roch roche rochelime rochelle rocher roches rochester rochet rocheted rochets roching rociest rock rockabies rockabillies rockabilly rockable rockably rockaby rockabye rockabyes rockallite rockandroll rockandrolls rockat rockaway rockaways rockbell rockberry rockbird rockborn rockbound rockbrush rockchuck rockcist rockcraft rockcress rockcresses rocked rockelay rocker rockered rockeries rockers rockerthon rockery rocket rocketed rocketeer rocketeers rocketer rocketers rocketing rocketlike rocketor rocketries rocketry rockets rocketsonde rocketsondes rockety rockfall rockfalls rockfish rockfishes rockfoil rockhair rockhearted rockhopper rockhoppers rockhound rockhounding rockhoundings rockhounds rockier rockiers rockies rockiest rockily rockiness rockinesses rocking rockingly rockings rockish rocklay rocklays rockless rocklet rocklike rockling rocklings rockman rockoon rockoons rockribbed rockrose rockroses rocks rockshaft rockshafts rockskipper rockslide rockslides rockstaff rocksteadies rocksteady rocktree rockumentaries rockumentary rockward rockwards rockwater rockwaters rockweed rockweeds rockwood rockwork rockworks rocky rococo rococos rocolo rocquet rocquets rocroi rocs rocta rod rodd rodded rodden rodder rodders roddikin roddin rodding roddings rode roded rodent rodentia rodential rodentially rodentian rodenticidal rodenticide rodenticides rodentproof rodents rodeo rodeoed rodeoing rodeos rodes rodeway rodeways rodfisher rodfishers rodfishing rodfishings rodge rodgersia rodgersias rodham roding rodingite rodings rodknight rodless rodlet rodlike rodmaker rodman rodmen rodney rodolia rodomont rodomontade rodomontaded rodomontader rodomontaders rodomontades rodomontading rodomontadist rodomontador rodriguez rods rodsman rodsmen rodster rodsters rodwood roe roeblingite roebuck roebucks roed roelike roemer roemers roeneng roentgen roentgenise roentgenism roentgenization roentgenize roentgenized roentgenizes roentgenizing roentgenogram roentgenograms roentgenograph roentgenographic roentgenographically roentgenographies roentgenography roentgenologic roentgenological roentgenologically roentgenologies roentgenologist roentgenologists roentgenology roentgenometer roentgenometries roentgenometry roentgenopaque roentgenoscope roentgenoscopic roentgenoscopies roentgenoscopy roentgenotherapies roentgenotherapy roentgens roentgentherapy roer roes roestone roestones roey rog rogaine rogan rogation rogations rogative rogatory roger rogered rogerian rogering rogerings rogers rogersite roggle rognon rognons rogue rogued roguedom rogueing rogueling rogueries roguery rogues rogueship rogueships roguing roguish roguishly roguishness roguishnesses roguy rohan rohob rohun rohuna roi roid roil roiled roiledness roilier roiliest roiling roils roily roin roined roining roinish roins roist roisted roister roistered roisterer roisterers roistering roisteringly roisterings roisterly roisterous roisterously roisters roisting roists roit roitelet rojak roji rojis rok roka roke rokeage roked rokee rokelay rokelays roker rokers rokes rokey rokier rokiest roking rokkaku roks roky rolag rolags rolaids rolamite rolamites roland rolando role roleo roleplay roleplayed roleplaying roles rolf rolfed rolfer rolfers rolfing rolfings rolfs roll rollable rollaway rollaways rollback rollbacks rollbar rollbars rollcollar rollcollars rolled rollejee roller rollerball rollerballs rollerblade rollerbladed rollerblader rollerbladers rollerblades rollerblading rollerbladings rollercoaster rollercoastered rollercoastering rollercoasters rollerer rollermaker rollermaking rollerman rollers rollerskate rollerskater rollerskating rolley rolleyway rolleywayman rolliche rollichie rollick rollicked rollicker rollicking rollickingly rollickingness rollickings rollicks rollicksome rollicksomeness rollicky rolling rollingly rollings rollix rollman rollmop rollmops rollneck rollnecks rollock rollocking rollockings rollocks rollout rollouts rollover rollovers rolls rolltop rollway rollways roloway rolpens rolypoliness rom roma romage romages romaic romaika romaikas romaine romaines romaji romajis romal romals roman romana romanal romance romancealist romancean romanced romanceful romanceish romanceishness romanceless romancelet romancelike romancemonger romanceproof romancer romanceress romancers romances romancical romancing romancings romancist romancy romanesque romani romania romanian romanic romanies romanise romanised romanises romanish romanising romanism romanist romanistic romanium romanization romanizations romanize romanized romanizes romanizing romano romanoff romanos romanov romans romansh romantic romantical romanticalism romanticalities romanticality romantically romanticalness romanticisation romanticisations romanticise romanticised romanticises romanticising romanticism romanticisms romanticist romanticistic romanticists romanticity romanticization romanticizations romanticize romanticized romanticizes romanticizing romanticly romanticness romantics romantism romantist romany romanza romas romaunt romaunts romble rombos rombowline rome romeine romeite romeldale romeldales romeo romeos romerillo romero romeros romeward romic romish rommack rommany rommel romney romneya romneyas romp romped rompee romper rompers romping rompingly rompish rompishly rompishness rompishnesses romps rompu rompy roms romulus romyko ron ronald roncador roncadors roncet roncho ronco roncos rond rondache rondacher rondaches rondavel rondavels rondawel ronde rondeau rondeaux rondel rondelet rondeletia rondelets rondelier rondelle rondelles rondellier rondels rondes rondino rondinos rondle rondo rondolet rondoletto rondolettos rondos rondure rondures rone roneo roneoed roneograph roneoing roneos rones rong rongeur ronggeng ronggengs ronier ronin ronion ronions ronne ronnel ronnels ronning ronquil ront ronte rontes rontgen rontgenisation rontgenise rontgenised rontgenises rontgenising rontgenism rontgenization rontgenize rontgenized rontgenizes rontgenizing rontgenogram rontgenograms rontgenographic rontgenographically rontgenographies rontgenography rontgenologic rontgenological rontgenologies rontgenologist rontgenology rontgenoscope rontgenoscopic rontgenoscopies rontgenoscopy rontgenotherapies rontgenotherapy rontgens ronts ronyon ronyons roo rood roodebok roodle roodles roods roodstone rooed roof roofage roofed roofer roofers roofgarden roofie roofier roofies roofiest roofing roofings roofless rooflessness rooflessnesses rooflet rooflike roofline rooflines roofman roofmen roofpole roofs roofscape roofscapes rooftop rooftops rooftree rooftrees roofward roofwise roofy rooibok rooibos rooinek rooineks rooing rook rooked rooker rookeried rookeries rookery rookie rookier rookies rookiest rooking rookish rooklet rooklike rooks rookus rooky rool room roomage roomed roomer roomers roomette roomettes roomful roomfuls roomie roomier roomies roomiest roomily roominess roominesses rooming roomkeeper roomless roomlet roommate roommates rooms roomsful roomsome roomstead roomth roomthily roomthiness roomthy roomward roomy roon roons roop rooped roopier roopiest rooping roopit roops roopy roorbach roorbachs roorback roorbacks roos roosa roosas roose roosed rooser roosers rooses roosevelt rooseveltian roosing roost roosted rooster roosterfish roosterhood roosterless roosters roostership roosting roosts roosty root rootage rootages rootbound rootcap rootcaps rooted rootedly rootedness rootednesses rooter rooters rootery rootfast rootfastness roothold rootholds rooti rootier rooties rootiest rootiness rootinesses rooting rootings rootle rootled rootles rootless rootlessly rootlessness rootlessnesses rootlet rootlets rootlike rootling roots rootsier rootsiest rootsiness rootsinesses rootstalk rootstock rootstocks rootsy rootwalt rootward rootwise rootworm rootworms rooty roove rooved rooving rooyebok ropable ropand ropani rope ropeable ropeband ropebark roped ropedance ropedancer ropedancers ropedancing ropedancings ropelayer ropelaying ropelike ropemaker ropemaking ropeman ropemen roper roperies roperipe ropers ropery ropes ropesmith ropetrick ropewalk ropewalker ropewalkers ropewalks ropeway ropeways ropework ropeworks ropey ropier ropiest ropily ropiness ropinesses roping ropings ropish ropishness roploch ropp ropy roque roquefort roquelaure roquelaures roquellorz roquer roques roquet roqueted roqueting roquets roquette roquettes roquille roquist roral roratorio rore rores roric rorid roridula roridulaceae rorie rorier roriest roriferous rorifluent rorippa roritorious rorqual rorquals rorschach rort rorted rorter rorters rortier rortiest rorting rorts rorty rorulent rory ros rosa rosace rosacea rosaceae rosacean rosaceas rosaceous rosaces rosaker rosakers rosal rosales rosalger rosalia rosalias rosalind rosalyn rosanilin rosaniline rosanilines rosanilins rosaria rosarian rosarians rosaries rosariia rosario rosarium rosariums rosaruby rosary rosated rosbif roscherite roscian roscid roscoe roscoelite roscoes rose roseal roseate roseately roseau rosebay rosebays rosebowl rosebowls rosebud rosebuds rosebush rosebushes rosed rosedrop rosefinch rosefinches rosefish rosefishes rosehead rosehill rosehiller rosehip rosehips roseine rosel roseless roselet roselike roselite rosella rosellas rosellate roselle roselles rosellinia rosemaling rosemalings rosemaries rosemary rosenbuschite roseola roseolar roseolas roseoliform roseolous roseous roser roseries roseroot roseroots rosery roses roseslug roseslugs roset rosetan rosetangle roseted rosetime roseting rosets rosette rosetted rosettes rosetting rosetty rosetum rosety rosewater rosewaters roseways rosewise rosewood rosewoods rosewort roshi roshis rosicrucian rosicrucianism rosidae rosied rosier rosiere rosieres rosieresite rosiers rosies rosiest rosilla rosillo rosily rosin rosinante rosinate rosinates rosinduline rosined rosiness rosinesses rosing rosining rosinol rosinols rosinous rosins rosinweed rosinweeds rosinwood rosiny rosit rosita rosited rositing rosits rosland roslindale rosmarine rosmarines rosmarinus rosoglio rosoglios rosoli rosolic rosolio rosolios rosolite rosorial ross rossbach rosser rossered rossering rossers rossetti rossini rossite rost rosted rostel rostella rostellar rostellarian rostellate rostelliform rostellum rostellums roster rostered rostering rosterings rosters rosti rosting rostis rostov rostra rostral rostrally rostrate rostrated rostriferous rostriform rostroantennary rostrobranchial rostrocarinate rostrocarinates rostrocaudal rostroid rostrolateral rostrular rostrulate rostrulum rostrum rostrums rosts rosttra rosula rosular rosulas rosulate rosy rosying rot rota rotacism rotal rotalian rotaliform rotaliiform rotaman rotamen rotameter rotameters rotan rotang rotaplane rotaplanes rotarian rotarianize rotaries rotary rotas rotascope rotatable rotatably rotate rotated rotates rotating rotation rotational rotationally rotations rotative rotatively rotativism rotatodentate rotatoplane rotator rotatores rotatoria rotatorian rotators rotatory rotavate rotavated rotavates rotavating rotavator rotavators rotavirus rotaviruses rotavist rotc rotch rotche rotches rotchie rotchies rote roted rotella rotenone rotenones roter rotes rotge rotgrass rotgrasses rotgut rotguts rother rothermuck rothers rothesay roti rotifer rotifera rotiferal rotiferan rotiferous rotifers rotiform roting rotis rotisserie rotisseries rotl rotls roto rotocraft rotodyne rotograph rotographed rotographing rotographs rotogravure rotogravures rotolo rotolos rotometer rotonda rotonde rotor rotorcraft rotors rotos rototill rototilled rototiller rototillers rototilling rototills rotovate rotovated rotovates rotovating rotovator rotovators rotproof rots rotta rottan rottans rotte rotted rotten rottener rottenest rottenish rottenly rottenness rottennesses rottens rottenstone rottenstoned rottenstones rottenstoning rotter rotterdam rotters rottes rotting rottle rottlera rottlerin rottock rottolo rottweiler rottweilers rotula rotulad rotular rotulas rotulet rotulian rotuliform rotulus rotund rotunda rotundas rotundate rotunded rotunder rotundest rotundifoliate rotundifolious rotundiform rotundify rotunding rotundities rotundity rotundly rotundness rotundnesses rotundo rotundotetragonal rotunds roture roturier roturiers roua roub rouble roubles roubouh rouche rouches roucou roucous roud roudas roue rouelle rouen rouens rouerie roues rouge rougeau rougeberry rouged rougelike rougemontite rougeot rouges rough roughage roughages roughcast roughcasted roughcaster roughcasters roughcasting roughcasts roughdraft roughdraw roughdress roughdried roughdries roughdry roughdrying roughed roughen roughened roughener roughening roughens rougher roughers roughest roughet roughfooted roughhearted roughheartedness roughhew roughhewed roughhewer roughhewing roughhewn roughhews roughhouse roughhoused roughhouser roughhouses roughhousing roughhousy roughie roughies roughing roughings roughish roughishly roughishness roughleg roughlegs roughly roughneck roughnecked roughnecking roughnecks roughness roughnesses roughometer roughride roughrider roughriders roughroot roughs roughscuff roughsetter roughshod roughslant roughsome roughstring roughstuff rought roughtail roughtailed roughwork roughwrought roughy rouging rougy rouille rouilles rouky roul roulade roulades roule rouleau rouleaus rouleaux rouled roules roulette rouletted roulettes rouletting rouling rouls roum rouman roumania roumanian roumeliote roums roun rounce rounces rounceval rouncevals rouncies rouncival rouncy round roundabout roundaboutation roundaboutations roundabouted roundaboutedly roundaboutilities roundaboutility roundabouting roundaboutly roundaboutness roundaboutnesses roundabouts roundarch roundarched rounded roundedly roundedness roundednesses roundel roundelay roundelays roundeleer roundels rounder rounders roundest roundfish roundhand roundhands roundhead roundheaded roundheadedness roundheadednesses roundheel roundheeled roundheels roundhouse roundhouses rounding roundings roundish roundishness roundishnesses roundle roundles roundlet roundlets roundline roundly roundmouthed roundness roundnesses roundnose roundnosed roundoff roundridge rounds roundseam roundsman roundsmen roundtable roundtables roundtail roundtop roundtree roundtrip roundtripping roundup roundups roundure roundures roundwise roundwood roundwoods roundworm roundworms roundy rounge rounspik rountree roup rouped rouper roupet roupie roupier roupiest roupily rouping roupingwife roupit roups roupy rous rousant rouse rouseabout rouseabouts roused rousedness rousement rousements rouser rousers rouses rousette rousing rousingly rousseau rousseauan rousseaus roussette roussettes roussillon roust roustabout roustabouts rousted rouster rousters rousting rousts rout route routed routeing routeman routemarch routemen router routers routes routeway routeways routh routhercock routhie routhier routhiest routhiness rouths routhy routier routinary routine routineer routineers routinely routineness routines routing routings routinisation routinisations routinise routinised routinises routinish routinising routinism routinisms routinist routinists routinization routinizations routinize routinized routinizes routinizing routivarite routous routously routs rouvillite roux roué roués rove roved roven rover rovers roves rovescio rovet rovetto roving rovingly rovingness rovings row rowable rowan rowanberries rowanberry rowans rowboat rowboats rowdedow rowdedows rowdier rowdies rowdiest rowdily rowdiness rowdinesses rowdy rowdydow rowdydowdy rowdydows rowdyish rowdyishly rowdyishness rowdyism rowdyisms rowdyproof rowed rowel roweled rowelhead roweling rowelled rowelling rowels rowen rowens rower rowers rowet rowiness rowing rowings rowlandite rowlet rowlock rowlocks rowme rowmes rownd rownded rowndell rowndells rownding rownds rowport rows rowt rowte rowted rowth rowths rowting rowts rowty rowy rox roxburghe roxy royal royale royalet royalets royalisation royalise royalised royalises royalising royalism royalisms royalist royalistic royalists royalization royalize royalized royalizes royalizing royaller royallest royally royalmast royalme royals royalties royalty royet royetness royetous royetously royne royned roynes royning roynish roynous royou royst roysted royster roystered roysterer roysterers roystering roysterous roysters roysting roystonea roysts royt rozelle rozelles rozener rozet rozeted rozeting rozets rozit rozited roziting rozits rozum rozzer rozzers rpm rps rpt rrhiza rs rsum rsvp rt rte rti rtlt rtw ru ruach ruana ruanas ruanda ruandan rub rubaboo rubaboos rubace rubaces rubai rubaiyat rubaiyats rubasse rubasses rubati rubato rubatos rubbaboo rubbaboos rubbed rubbee rubber rubbered rubberer rubberier rubberiest rubberiness rubberinesses rubbering rubberise rubberised rubberises rubberising rubberize rubberized rubberizes rubberizing rubberless rubberlike rubberneck rubbernecked rubbernecker rubberneckers rubbernecking rubbernecks rubbernose rubbers rubberstamp rubberstone rubberwear rubberwears rubberwise rubbery rubbet rubbies rubbing rubbings rubbingstone rubbio rubbish rubbished rubbishes rubbishing rubbishingly rubbishly rubbishry rubbishy rubbisy rubbit rubble rubbled rubbler rubbles rubblestone rubblework rubbleworks rubblier rubbliest rubbling rubbly rubby rubdown rubdowns rube rubedinous rubedity rubefacience rubefacient rubefacients rubefaction rubefactions rubefied rubefies rubefy rubefying rubel rubelet rubella rubellan rubellans rubellas rubelle rubellite rubellites rubellosis rubels rubens rubeola rubeolar rubeolas rubeoloid ruberythric ruberythrinic rubes rubescence rubescences rubescent rubia rubiaceae rubiaceous rubiacin rubiales rubian rubianic rubiate rubiator rubible rubican rubicelle rubicelles rubicon rubiconed rubiconing rubiconned rubiconning rubicons rubicund rubicundities rubicundity rubidic rubidine rubidium rubidiums rubied rubier rubies rubiest rubific rubification rubificative rubified rubifies rubify rubifying rubiginose rubiginous rubigo rubigos rubijervine rubin rubine rubineous rubines rubins rubious ruble rubles rublis ruboff ruboffs rubor rubout rubouts rubrail rubric rubrica rubrical rubricality rubrically rubricate rubricated rubricates rubricating rubrication rubrications rubricator rubricators rubrician rubricians rubricise rubricism rubricist rubricity rubricize rubricose rubrics rubrific rubrification rubrify rubrisher rubrospinal rubs rubstone rubstones rubus ruby rubying rubylike rubytail rubythroat rubythroats rubywise ruc rucervine rucervus ruche ruched ruches ruching ruchings ruck rucked rucker rucking ruckle ruckled ruckles ruckling rucks rucksack rucksacks ruckseat ruckseats rucksey ruckus ruckuses rucky rucola rucolas rucs ructation ructations ruction ructions ructious rud rudaceous rudapithecus rudas rudases rudbeckia rudbeckias rudd rudded rudder rudderfish rudderfishes rudderhead rudderhole rudderless rudderlike rudderpost rudderposts rudders rudderstock rudderstocks ruddervator ruddied ruddier ruddies ruddiest ruddily ruddiness ruddinesses rudding ruddish ruddle ruddled ruddleman ruddlemen ruddles ruddling ruddock ruddocks rudds ruddy ruddying ruddyish rude rudely rudeness rudenesses rudented rudenture ruder rudera ruderal ruderals ruderate ruderies rudery rudes rudesbies rudesby rudesheimer rudest rudge rudie rudies rudiment rudimental rudimentarily rudimentariness rudimentarinesses rudimentary rudimentation rudiments rudinsky rudish rudistan rudistid rudity rudloff rudolphine rudous rudra ruds rue rued rueful ruefully ruefulness ruefulnesses rueing rueings ruelike ruelle ruelles ruellia ruellias ruely ruen ruer ruers rues ruesome ruesomeness ruewort rufescence rufescences rufescent ruff ruffable ruffe ruffed ruffer ruffes ruffian ruffianage ruffiandom ruffianed ruffianhood ruffianing ruffianise ruffianish ruffianism ruffianisms ruffianize ruffianlike ruffianly ruffiano ruffians ruffin ruffing ruffins ruffle ruffled ruffleless rufflement ruffler rufflers ruffles rufflier ruffliest rufflike ruffliness ruffling rufflings ruffly ruffmans ruffs ruficarpous ruficaudate ruficoccin ruficornate rufigallic rufiyaa rufiyaas rufoferruginous rufofulvous rufofuscous rufopiceous rufosity rufotestaceous rufous rufter rufulous rufus rug ruga rugae rugal rugalach rugalachs rugate rugbies rugby rugelach rugelachs rugged ruggeder ruggedest ruggedisation ruggedisations ruggedise ruggedised ruggedises ruggedising ruggedization ruggedizations ruggedize ruggedized ruggedizes ruggedizing ruggedly ruggedness ruggednesses ruggelach rugger ruggers ruggier ruggiest rugging ruggings ruggle ruggown ruggy rugheaded rugine ruglike rugmaker rugmaking rugola rugolas rugosa rugosas rugose rugosely rugosities rugosity rugous rugs rugulose ruhr ruin ruinable ruinate ruinated ruinates ruinating ruination ruinations ruinatious ruinator ruined ruiner ruiners ruing ruings ruiniform ruining ruinings ruinlike ruinous ruinously ruinousness ruinousnesses ruinproof ruins rukh rukhs rulable rule rulebook rulebooks ruled ruledom ruleless rulemonger ruler rulered rulering rulers rulership rulerships rules rulesse rulier ruliest ruling rulingly rulings rull ruller rullion rullions rullock rullocks ruly rum rumage rumaged rumaging rumaki rumakis rumal rumals rumania rumanian rumanians rumanite rumb rumba rumbaed rumbaing rumbarge rumbas rumbelow rumbelows rumble rumbled rumbledethump rumbledethumps rumblegarie rumblegumption rumblegumptions rumblement rumbler rumblers rumbles rumblier rumbliest rumbling rumblingly rumblings rumbly rumbo rumbooze rumbos rumbowline rumbowling rumbullion rumbullions rumbumptious rumbustical rumbustion rumbustious rumbustiously rumbustiousness rumbustiousnesses rumchunder rumdum rume rumelgumption rumelgumptions rumen rumenitis rumenocentesis rumenotomy rumens rumes rumex rumfustian rumfustians rumgumption rumgumptions rumgumptious rumicin rumina ruminal ruminant ruminantia ruminantly ruminants ruminate ruminated ruminates ruminating ruminatingly rumination ruminations ruminative ruminatively ruminator ruminators rumkin rumkins rumlegumption rumlegumptions rumless rumly rummage rummaged rummager rummagers rummages rummaging rummagy rummelgumption rummelgumptions rummer rummers rummery rummes rummest rummier rummies rummiest rummily rumminess rumminesses rummish rummle rummlegumption rummlegumptions rummy rumness rumnesses rumney rumohra rumor rumored rumorer rumorers rumoring rumormonger rumormongered rumormongering rumormongerings rumormongers rumorous rumorproof rumors rumour rumoured rumourer rumourers rumouring rumourmonger rumourmongers rumours rump rumpad rumpadder rumpade rumped rumpelstiltskin rumpies rumping rumple rumpled rumples rumpless rumplier rumpliest rumpling rumply rumpot rumps rumpscuttle rumpuncheon rumpus rumpuses rumpy rumrunner rumrunners rumrunning rumrunnings rums rumshop rumswizzle rumtytoo run runabout runabouts runagado runagate runagates runaround runarounds runaway runaways runback runbacks runboard runby runch runches runchweed runcible runcinate rund rundale rundales rundel rundle rundled rundles rundlet rundlets rundown rundowns runds rundstedt rune runecraft runecrafts runed runefolk runeless runelike runer runes runesmith runestaff runeword runfish runflat rung runghead rungless rungs runholder runic runically runiform runite runkeeper runkle runkled runkles runkling runkly runless runlet runlets runman runnable runnel runnels runner runners runnersup runnerup runnet runneth runnets runnier runniest runniness running runningly runnings runnion runnions runny runoff runoffs runologist runology runout runouts runover runovers runproof runrig runrigs runround runrounds runs runsy runt runted runtee runtgenize runtgenized runtgenizing runtgenographic runtgenographically runtgenography runtgenologic runtgenological runtgenologist runtgenology runtgenoscope runtgenoscopic runtgenoscopy runtier runtiest runtime runtiness runtinesses runtish runtishly runtishness runts runty runup runups runway runways runza runzas rupa rupee rupees rupellary rupert rupestral rupestrian rupestrine rupia rupiah rupiahs rupial rupias rupicapra rupicaprine rupicola rupicoline rupicolous rupie rupitic ruptile ruptiliocarpon ruption ruptive ruptuary rupturable rupture ruptured ruptures rupturewort ruptureworts rupturing rural ruralisation ruralisations ruralise ruralised ruralises ruralising ruralism ruralisms ruralist ruralists ruralite ruralites ruralities rurality ruralization ruralizations ruralize ruralized ruralizes ruralizing rurally ruralness ruralnesses rurals rurban ruridecanal rurigenous ruritania ruritanian rurp rurps ruru rurus rusa rusalka rusalkas rusas ruscaceae ruscus ruscuses ruse ruses rush rushbush rushed rushee rushees rushen rusher rushers rushes rushgrass rushier rushiest rushiness rushinesses rushing rushingly rushingness rushings rushland rushlight rushlighted rushlights rushlike rushlit rushmore rushwork rushy rusine rusines rusk ruskin rusks rusky rusma rusmas rusot ruspone russ russe russel russelet russell russels russet russeted russeting russetings russetish russetlike russets russetting russettings russety russia russian russianisation russianise russianization russianize russians russias russification russified russifies russify russifying russniak russud russula russulaceae rust rustable rustbelt rustbelts rusted rustful rustic rustical rustically rusticalness rusticals rusticanum rusticate rusticated rusticates rusticating rustication rustications rusticator rusticators rusticial rusticise rusticised rusticises rusticising rusticism rusticisms rusticities rusticity rusticize rusticized rusticizes rusticizing rusticly rusticness rusticoat rustics rusticum rusticwork rustier rustiest rustily rustiness rustinesses rusting rustings rustle rustled rustler rustlers rustles rustless rustling rustlingly rustlingness rustlings rustly rustproof rustproofed rustproofing rustproofs rustre rustred rustres rusts rusty rustyback rustyish ruswut rut ruta rutabaga rutabagas rutaceae rutaceous rutaecarpine rutate rutch rutelian ruth ruthenate ruthene ruthenic ruthenious ruthenium rutheniums ruthenous ruther rutherford rutherfordine rutherfordite rutherfordium rutherfordiums rutherfords ruthful ruthfully ruthfulness ruthfulnesses ruthless ruthlessly ruthlessness ruthlessnesses ruths rutic rutidosis rutilant rutilate rutilated rutilation rutile rutiles rutilous rutilus rutin rutinose rutins ruts rutted ruttee rutter rutters ruttier ruttiest ruttily ruttiness ruttinesses rutting ruttings ruttish ruttishly ruttishness ruttishnesses ruttle rutty rutyl rutylene ruvid rux rv rvulsant rwanda rwandan rwd rwound rwy rya ryal ryals ryania ryas rybat rybats rybaudrye rybaudryes rybauld rybaulds rydberg ryder rye ryebread ryebreads ryeflour ryeflours ryegrass ryegrasses ryen ryepeck ryepecks ryes ryfe ryke ryked rykes ryking ryme rymme rymmed rymmes rymming rynchopidae rynchops rynchosporous rynd rynds rynt ryokan ryokans ryot ryots ryotwar ryotwari ryotwaris ryotwary rype rypeck rypecks ryper rypophobia rypticus rytidosis ryukyuan réchauffé réchauffés récit récits réclame récollet régie régisseur régisseurs répétiteur répétiteurs réseau réseaus réseaux rêveur rêveurs rêveuse rêveuses röntgen röntgenisation röntgenise röntgenised röntgenises röntgenising röntgenization röntgenize röntgenized röntgenizes röntgenizing röntgenogram röntgenograms röntgenography röntgenology röntgenoscopy röntgenotherapy röntgens s sa saa saance saanen sab saba sabadilla sabadillas sabadin sabadine sabadinine sabaean sabah sabahan sabaigrass sabaism sabakha sabal sabalo sabalos sabalote sabals sabana sabanut sabaoth sabaton sabatons sabayon sabayons sabbat sabbatarian sabbath sabbaths sabbatia sabbatian sabbatic sabbatical sabbaticals sabbatics sabbatine sabbatise sabbatised sabbatises sabbatising sabbatism sabbatisms sabbatist sabbatize sabbatized sabbatizes sabbatizing sabbaton sabbats sabbed sabbeka sabbing sabbitha sabby sabdariffa sabe sabeca sabed sabeing sabella sabellan sabellarian sabellas sabellian sabellid sabelloid saber saberbill sabered sabering saberleg saberlike sabermetrician sabermetricians sabermetrics saberproof sabers sabertooth sabertoothed saberwing sabes sabiaceous sabian sabicu sabin sabina sabine sabinea sabines sabing sabino sabins sabir sabirs sabji sabjis sabkha sabkhah sabkhahs sabkhas sabkhat sabkhats sable sabled sablefish sablefishes sableness sables sabling sably sabora saboraim sabot sabotage sabotaged sabotages sabotaging saboted saboteur saboteurs sabotier sabotiers sabotine sabots sabra sabras sabre sabrebill sabred sabrelike sabres sabretache sabretaches sabretooth sabreur sabreurs sabring sabromin sabs sabuline sabulite sabulose sabulosities sabulosity sabulous sabulum saburra saburral saburras saburrate saburration saburrations sabutan sabzi sac sacahuista sacahuistas sacahuiste sacahuistes sacalait sacaline sacate sacaton sacatons sacatra sacbrood sacbut sacbuts saccade saccades saccadge saccadic saccadically saccage saccarify saccarimeter saccate saccated saccharamide saccharase saccharases saccharate saccharated saccharates saccharephidrosis saccharic saccharide saccharides sacchariferous saccharification saccharifications saccharified saccharifier saccharifies saccharify saccharifying saccharilla saccharimeter saccharimeters saccharimetric saccharimetrical saccharimetries saccharimetry saccharin saccharinate saccharinated saccharine saccharineish saccharinely saccharines saccharinic saccharinities saccharinity saccharins saccharisation saccharisations saccharise saccharised saccharises saccharising saccharization saccharizations saccharize saccharized saccharizes saccharizing saccharobacillus saccharobiose saccharobutyric saccharoceptive saccharoceptor saccharochemotropic saccharocolloid saccharofarinaceous saccharogalactorrhea saccharogenic saccharohumic saccharoid saccharoidal saccharolactonic saccharolytic saccharometabolic saccharometabolism saccharometer saccharometers saccharometric saccharometrical saccharometry saccharomucilaginous saccharomyces saccharomycetaceae saccharomycetaceous saccharomycete saccharomycetes saccharomycetic saccharomycosis saccharon saccharonate saccharone saccharonic saccharophylly saccharorrhea saccharoscope saccharose saccharoses saccharostarchy saccharosuria saccharotriose saccharous saccharulmic saccharulmin saccharum saccharums saccharuria sacchulmin sacciferous sacciform saccli saccobranchiate saccoderm saccoi saccolabium saccomyian saccomyid saccomyine saccomyoid saccomyoidean saccoon saccos saccoses saccular sacculate sacculated sacculation sacculations saccule saccules sacculi sacculiform sacculoutricular sacculus saccus sacela sacella sacellum sacerdocy sacerdos sacerdotage sacerdotal sacerdotalise sacerdotalised sacerdotalises sacerdotalising sacerdotalism sacerdotalisms sacerdotalist sacerdotalists sacerdotalize sacerdotalized sacerdotalizes sacerdotalizing sacerdotally sacerdotical sacerdotism sacerdotium sachamaker sachcloth sachem sachemdom sachemdoms sachemic sachems sachemship sachemships sachet sacheted sachets sachsen sack sackage sackages sackamaker sackbag sackbut sackbuts sackbutt sackcloth sackclothed sackcloths sackdoudle sacked sacken sacker sackers sacket sackful sackfuls sacking sackings sackless sacklike sackmaker sackmaking sackman sacks sacksful sacktime sacless saclike saco sacope sacque sacques sacra sacrad sacral sacralgia sacralgias sacralisation sacralisations sacralise sacralised sacralises sacralising sacrality sacralization sacralizations sacralize sacralized sacralizes sacralizing sacrals sacrament sacramental sacramentalis sacramentalism sacramentalisms sacramentalist sacramentalists sacramentalities sacramentality sacramentalize sacramentally sacramentalness sacramentals sacramentarian sacramentarianism sacramentarianisms sacramentarians sacramentaries sacramentarist sacramentary sacramented sacramenter sacramenting sacramentise sacramentism sacramentize sacramento sacraments sacramentum sacraria sacrarial sacrarium sacrariums sacrary sacrate sacrcraria sacre sacrectomy sacred sacredly sacredness sacrednesses sacrificable sacrifical sacrificant sacrification sacrificator sacrificatory sacrificature sacrifice sacrificeable sacrificed sacrificer sacrificers sacrifices sacrificial sacrificially sacrificing sacrificingly sacrifide sacrified sacrifies sacrify sacrifying sacrilege sacrileger sacrileges sacrilegious sacrilegiously sacrilegiousness sacrilegiousnesses sacrilegist sacrilegists sacrilumbal sacrilumbalis sacring sacrings sacrist sacristan sacristans sacristies sacristry sacrists sacristy sacro sacrocaudal sacrococcygeal sacrococcygean sacrococcygeus sacrococcyx sacrocostal sacrocostals sacrocotyloid sacrocotyloidean sacrocoxalgia sacrocoxitis sacrodorsal sacrodynia sacrofemoral sacroiliac sacroiliacs sacroiliitis sacroiliitises sacroinguinal sacroischiac sacroischiadic sacroischiatic sacrolumbal sacrolumbalis sacrolumbar sacropectineal sacroperineal sacropictorial sacroposterior sacropubic sacrorectal sacrosanct sacrosanctities sacrosanctity sacrosanctly sacrosanctness sacrosanctnesses sacrosciatic sacrosecular sacrospinal sacrospinalis sacrospinous sacrotomy sacrotuberous sacrovertebral sacrum sacrums sacry sacs sad sadaqat sadden saddened saddening saddeningly saddens sadder saddest saddhu saddhus saddik saddirham saddish saddle saddleback saddlebacked saddlebacks saddlebag saddlebags saddlebill saddlebills saddlebow saddlebows saddlebred saddlebreds saddlecloth saddlecloths saddlecoth saddled saddleleaf saddleless saddlelike saddlemaker saddlenose saddlenosed saddler saddleries saddleroom saddlerooms saddlers saddlery saddles saddlesick saddlesore saddlesoreness saddlestead saddletree saddletrees saddlewise saddling saddo saddos sadducaic sadducean sadducee sadducees sade sades sadh sadhaka sadhana sadhe sadhearted sadheartedness sadhes sadhika sadhu sadhus sadi sadic sadiron sadirons sadis sadism sadisms sadist sadistic sadistically sadists sadleir sadleria sadly sadness sadnesses sado sadomasochism sadomasochisms sadomasochist sadomasochistic sadomasochists sadr sadware sadza sadzas sae saebeins saecula saecular saeculum saeculums saek saernaite saeta saeter saeters saeume safar safari safaried safariing safaris safarist safarists safe safeblower safeblowing safebreaker safebreaking safecracker safecrackers safecracking safecrackings safed safegaurds safeguard safeguarded safeguarder safeguarding safeguardings safeguards safehold safekeeper safekeeping safekeepings safelight safelights safely safemaker safemaking safen safener safeness safenesses safer safes safest safetied safeties safety safetying safetyman safetymen safeway saffian saffians saffior safflor safflorite safflow safflower safflowers saffron saffroned saffrons saffrontree saffronwood saffrony safing safranin safranine safranines safranins safranophil safranophile safranyik safrol safrole safroles safrols safronal safronals saft saftly sag saga sagaciate sagacious sagaciously sagaciousness sagaciousnesses sagacities sagacity sagaie sagaman sagamen sagamite sagamore sagamores sagan saganash saganashes sagapen sagapenum sagapenums sagas sagathies sagathy sagbut sagbuts sage sagebrush sagebrusher sagebrushes sagebush sageer sageleaf sagely sagene sagenes sageness sagenesses sagenite sagenites sagenitic sager sagerose sages sageship sagesse sagest sagewood saggar saggard saggards saggared saggaring saggars sagged sagger saggered saggering saggers saggier saggiest sagginess sagging saggings saggon saggy saghavart sagier sagiest sagina saginate saginated saginates saginating sagination saginations saging sagital sagitarius sagitta sagittae sagittal sagittally sagittaria sagittarian sagittarians sagittaries sagittarii sagittariidae sagittarius sagittary sagittas sagittate sagittiferous sagittiform sagittocyst sagittoid sagless sago sagoin sagoins sagolike sagos sagouin sagouins sagoweer sags saguaro saguaros saguin saguing saguins sagum saguran saguranes sagvandite sagwire sagy sah sahaptin sahara saharan sahh sahib sahiba sahibah sahibahs sahibas sahibs sahidic sahiwal sahiwals sahlite sahme sahoukar sahras sahuaro sahuaros sahukar sahukars sai saibling saiblings saic saice saices saick saicks saics said saidest saids saidst saiga saigas saignant saigon saikei saikeis saikless sail sailable sailage sailboard sailboarded sailboarder sailboarders sailboarding sailboardings sailboards sailboat sailboater sailboaters sailboating sailboatings sailboats sailcloth sailcloths sailed sailer sailers sailfin sailfish sailfishes sailflying sailing sailingly sailings sailless sailmaker sailmaking sailor sailorfish sailoring sailorings sailorising sailorizing sailorless sailorlike sailorly sailorman sailorproof sailors sailour sailplane sailplaned sailplaner sailplaners sailplanes sailplaning sailroom sailrooms sails sailship sailsman saily sailyard sailye saim saimin saimins saimiri saimiris saims saimy sain saindoux saine sained sainfoin sainfoins saining sains saint saintdom saintdoms sainte sainted saintess saintesses saintfoin saintfoins sainthood sainthoods sainting saintish saintism saintisms saintless saintlier saintliest saintlike saintlikeness saintlily saintliness saintlinesses saintling saintlings saintly saintologist saintology saintpaulia saintpaulias saints saintship saintships saip saipan saique saiques sair saired sairer sairest sairing sairly sairs sairve sairy sais saist saith saithe saithes saiths saiva saiyid saiyids saj sajama sajou sajous sakai sakais sakartvelo sake sakeber sakeen saker sakeret sakerets sakers sakes saki sakia sakias sakieh sakiehs sakis sakiyeh sakiyehs sakkara sakkoi sakkos sakkoses saksaul saksauls sakti saktism sakulya sal sala salaam salaamed salaaming salaamlike salaams salabilities salability salable salableness salablenesses salably salaceta salacious salaciously salaciousness salaciousnesses salacities salacity salacot salad salada saladang saladangs salade saladero salades saladin salading saladings salads salago salagrama salai salal salals salamandarin salamander salamanderlike salamanders salamandra salamandrian salamandridae salamandriform salamandrin salamandrine salamandroid salamandroids salamat salambao salame salami salamis salamo salamon salamons salampore salamstone salangane salanganes salangid salar salariat salariats salaried salariego salaries salary salarying salaryless salaryman salarymen salat salay salband salbands salbutamol salbutamols salchow salchows saldid sale saleabilities saleability saleable saleableness saleablenesses saleably salebrous saleeite salegoer salele salem salema salempore salenixon salep saleps saleratus saleratuses salering salerings salerno saleroom salerooms sales salesclerk salesclerks salesgirl salesgirls salesian salesite salesladies saleslady salesman salesmanship salesmanships salesmen salespeople salesperson salespersons salesroom salesrooms saleswoman saleswomen salet salets saleware salewd salework saleyard saleyards salfern salferns salian saliant saliaunce saliaunces salic salicaceae salicaceous salicales salices salicet saliceta salicets salicetum salicetums salicin salicine salicines salicins salicional salicionals salicorn salicornia salicornias salicyl salicylal salicylaldehyde salicylamide salicylamides salicylanilide salicylase salicylate salicylated salicylates salicylating salicylic salicylide salicylidene salicylism salicylisms salicylize salicylous salicyluric salicylyl salience saliences saliencies saliency salient salientia salientian salientians saliently salientness salients saliferous salifiable salification salifications salified salifies salify salifying saligenin saligenol saligot saligots saligram salimeter salimeters salimetric salimetries salimetry salina salinas salinate salination saline salinelle salineness salines saliniferous salinification saliniform salinisation salinise salinises salinities salinity salinization salinizations salinize salinized salinizes salinizing salinometer salinometers salinometric salinometries salinometry salinosulphureous salinoterreous salique saliretin salisbury salish salishan salite salited saliva salival salivant salivary salivas salivate salivated salivates salivating salivation salivations salivator salivators salivatory salivous salix sall sallad sallade sallads sallal sallals salle sallee salleeman salleemen sallees sallender sallenders sallet sallets sallied sallier salliers sallies salloo sallow sallowed sallower sallowest sallowing sallowish sallowly sallowness sallownesses sallows sallowy sally sallying sallyman sallymen sallyport sallyports sallywood salma salmagundi salmagundies salmagundis salmagundy salmanaser salmanasers salmanazar salmanazars salmary salmi salmiac salmin salmine salmis salmo salmon salmonberries salmonberry salmonella salmonellae salmonellas salmonelloses salmonellosis salmonet salmonets salmonid salmonidae salmonids salmoniform salmonlike salmonoid salmonoids salmons salmonsite salmwood salnatron salol salols salome salometer salometers salometry salomon salon salonika salons saloon saloonist saloonists saloonkeep saloonkeeper saloonkeepers saloons saloop saloops salop salopette salopettes salopian salops salp salpa salpacean salpae salpas salpian salpians salpichroa salpicon salpicons salpid salpidae salpids salpiform salpiglosis salpiglossis salpiglossises salpinctes salpingectomies salpingectomy salpingemphraxis salpinges salpingian salpingion salpingitic salpingitis salpingitises salpingocatheterism salpingocele salpingocyesis salpingomalleus salpingonasal salpingopalatal salpingopalatine salpingoperitonitis salpingopexy salpingopharyngeal salpingopharyngeus salpingopterygoid salpingorrhaphy salpingoscope salpingostaphyline salpingostenochoria salpingostomatomy salpingostomies salpingostomy salpingotomies salpingotomy salpinx salpinxes salpoid salps sals salsa salsaed salsaing salsas salse salses salsifies salsifis salsify salsilla salsillas salsoda salsola salsolaceous salsuginose salsuginous salt salta saltando saltant saltants saltarella saltarelli saltarello saltarellos saltary saltate saltated saltates saltating saltation saltationism saltationisms saltationist saltationists saltations saltativeness saltato saltator saltatorial saltatorian saltatoric saltatorily saltatorious saltatory saltatras saltbox saltboxes saltbrush saltbush saltbushes saltcat saltcatch saltcats saltcellar saltcellars saltchuck saltchucker saltchucks salteaux salted saltee salten salter salteretto saltern salterns salters saltery saltest saltfat saltfish saltfishes saltfoot saltgrass salthouse salticid saltie saltier saltierra saltiers saltierwise salties saltiest saltigrade saltigrades saltily saltimbanco saltimbancos saltimbank saltimbankery saltimbanque saltimbocca saltimboccas saltine saltines saltiness saltinesses salting saltings saltire saltires saltireways saltirewise saltish saltishly saltishness saltishnesses saltless saltlessness saltlike saltly saltmaker saltmaking saltman saltmouth saltness saltnesses salto saltoed saltoing saltometer saltorel saltos saltpan saltpans saltpeter saltpeters saltpetre saltpetreman saltpetremen saltpetres saltpetrous saltpond salts saltshaker saltshakers saltspoon saltspoonful saltsprinkler saltus saltuses saltwater saltwaters saltweed saltwife saltwork saltworker saltworks saltwort saltworts salty salubrify salubrious salubriously salubriousness salubriousnesses salubrities salubrity salud saluda salue salued salues salugi saluing saluki salukis salung salus salutarily salutariness salutarinesses salutary salutation salutational salutationless salutations salutatious salutatoria salutatorian salutatorians salutatories salutatorily salutatorium salutatory salute saluted saluter saluters salutes salutiferous salutiferously saluting salutoria salvabilities salvability salvable salvableness salvably salvador salvadora salvadoraceous salvadoran salvadorean salvadorian salvagable salvage salvageabilities salvageability salvageable salvaged salvagee salvagees salvageproof salvager salvagers salvages salvaging salvarsan salvarsans salvatella salvation salvational salvationism salvationisms salvationist salvationists salvations salvator salvatories salvatory salve salved salveline salvelinus salver salverform salvers salves salvete salvetes salvia salvianin salvias salvific salvifical salvifically salvifics salving salvings salvinia salviniaceae salviniaceous salviol salvo salvoed salvoes salvoing salvor salvors salvos salvy salwin salyut salzfelle sam sama samaan samaans samadh samadhi samadhis samaj saman samans samara samaras samarcand samaria samariform samaritan samaritans samarium samariums samarkand samaroid samarra samarskite samarskites samba sambaed sambaing sambal sambals sambaqui sambaquis sambar sambars sambas sambel sambhar sambhars sambhogakaya sambhur sambhurs sambo sambol sambols sambos sambouk sambouse sambuca sambucas sambucus sambuk sambuke sambukes sambul sambunigrin sambur samburs same samech samechs samek samekh samekhs sameks samel sameliness samely samen sameness samenesses sames samesome samey samfoo samfoos samfu samfus samgha samh samhita samhitas sami samia samian samiel samiels samier samiest samiresite samiri samisen samisens samite samites samiti samitis samizdat samizdats samkara samkhya samlet samlets samlor samlors sammel sammer sammier sammy samnani samnite samnitis samnitises samoa samoan samoans samogon samogonka samohu samolus samory samosa samosas samosatenian samothere samothracian samovar samovars samoyed samoyede samoyedic samoyeds samp sampaguita sampaloc sampan sampans samphire samphires sampi sampire sampires sampis sample sampled sampleman samplemen sampler sampleries samplers samplery samples sampling samplings samps samsara samsaras samsaric samshoo samshoos samshu samshus samskara samson samsonian samsonite samuel samuin samurai samurais samvat san sana sanaa sanability sanable sanableness sanai sanataria sanatarium sanatariums sanation sanative sanativeness sanatoria sanatoriria sanatoririums sanatorium sanatoriums sanatory sanbenito sanbenitos sancai sancais sancho sanchos sancoche sancoches sancord sanct sancta sanctae sanctanimity sancties sanctifiable sanctifiableness sanctifiably sanctificate sanctification sanctifications sanctified sanctifiedly sanctifier sanctifiers sanctifies sanctify sanctifying sanctifyingly sanctifyings sanctilogy sanctiloquent sanctimonial sanctimonies sanctimonious sanctimoniously sanctimoniousness sanctimoniousnesses sanctimony sanction sanctionable sanctionableness sanctionary sanctionative sanctioned sanctioneer sanctioneers sanctioner sanctioners sanctioning sanctionist sanctionless sanctionment sanctions sanctities sanctitude sanctitudes sanctity sanctologist sanctorian sanctorium sanctuaried sanctuaries sanctuarise sanctuarised sanctuarises sanctuarising sanctuarize sanctuarized sanctuarizes sanctuarizing sanctuary sanctum sanctums sanctus sancyite sand sandable sandak sandal sandaled sandaliform sandaling sandalled sandalling sandals sandalwood sandalwoods sandalwort sandan sandarac sandarach sandarachs sandaracin sandaracs sandastra sandastros sandbag sandbagged sandbagger sandbaggers sandbagging sandbags sandbank sandbanks sandbar sandbars sandberry sandbin sandblast sandblasted sandblaster sandblasters sandblasting sandblastings sandblasts sandblind sandblindness sandblindnesses sandboard sandbox sandboxes sandboy sandboys sandbug sandbur sandburr sandburrs sandburs sandcastle sandcastles sandclub sandculture sanddab sanddabs sanded sandemanian sander sanderling sanderlings sanders sanderses sanderswood sanderswoods sandfish sandfishes sandflies sandflower sandfly sandglass sandglasses sandgoby sandgroper sandgropers sandgrouse sandgrouses sandheap sandheaps sandheat sandhi sandhill sandhills sandhis sandhog sandhogs sandhopper sandhya sandia sandier sandies sandiest sandiferous sandiness sandinesses sanding sandings sandiver sandivers sandix sandkey sandlapper sandless sandlike sandling sandlings sandlot sandlots sandlotter sandlotters sandman sandmen sandmite sandnatter sandnecker sandpainting sandpaintings sandpaper sandpapered sandpaperer sandpapering sandpapers sandpapery sandpeep sandpeeps sandpile sandpiles sandpiper sandpipers sandpit sandpits sandproof sandpump sandpumps sandra sandril sandrock sandroller sands sandshoe sandshoes sandsoap sandsoaps sandspit sandspout sandspouts sandspur sandspurs sandstay sandstone sandstones sandstorm sandstorms sandsucker sandsuckers sandunga sandust sandweed sandweld sandwich sandwiched sandwiches sandwiching sandwichman sandwood sandworm sandworms sandwort sandworts sandy sandyish sandyx sane saned sanely sanemindedness saneness sanenesses saner sanes sanest sanfoin sanforized sang sanga sangah sangamon sangapenum sangar sangaree sangarees sangars sangas sangay sangei sanger sangerbund sangerfest sangers sangfroid sangfroids sanggau sangh sangha sanghs sangil sanglant sangley sanglier sangliers sango sangoma sangomas sangraal sangraea sangrail sangreal sangreeroot sangrel sangria sangrias sangs sangsue sangu sanguicolous sanguifacient sanguiferous sanguification sanguifications sanguified sanguifier sanguifies sanguifluous sanguify sanguifying sanguimotor sanguimotory sanguinaceous sanguinaria sanguinarias sanguinarily sanguinariness sanguinarinesses sanguinary sanguine sanguined sanguineless sanguinely sanguineness sanguinenesses sanguineobilious sanguineophlegmatic sanguineous sanguineousness sanguineovascular sanguines sanguinicolous sanguiniferous sanguinification sanguining sanguinis sanguinism sanguinities sanguinity sanguinivorous sanguinocholeric sanguinolency sanguinolent sanguinometer sanguinopoietic sanguinopurulent sanguinous sanguinuity sanguisuge sanguisugent sanguisugous sanguivorous sanhedrim sanhedrin sanicle sanicles sanicula sanidine sanidines sanidinic sanidinite sanies sanification sanified sanifies sanify sanifying saning sanious sanipractic sanit sanitaria sanitarian sanitarianism sanitarianisms sanitarians sanitaries sanitariia sanitariiums sanitarily sanitariness sanitarinesses sanitarist sanitarists sanitarium sanitariums sanitary sanitate sanitated sanitates sanitating sanitation sanitationist sanitationists sanitations sanities sanitisation sanitisations sanitise sanitised sanitiser sanitisers sanitises sanitising sanitist sanitization sanitizations sanitize sanitized sanitizer sanitizers sanitizes sanitizing sanitoria sanitorium sanitoriums sanity sanjak sanjakate sanjakbeg sanjaks sanjakship sank sanka sankha sankhya sanko sankos sannaite sannhemp sannie sannies sannop sannops sannup sannups sannyasi sannyasin sannyasins sannyasis sanopurulent sanoserous sanpaku sanpakus sanpan sanpans sans sansa sansar sansara sansars sansas sansculot sansculotte sansculotterie sansculotteries sansculottes sansculottic sansculottid sansculottides sansculottish sansculottism sansculottisms sansculottist sansculottists sansei sanseis sanserif sanserifs sansevieria sansevierias sanshach sansi sanskrit sanskritic sant santa santal santalaceae santalaceous santalales santalic santalin santalins santalol santalols santals santalum santalwood santapee santar santee santene santera santeras santeria santerias santero santeros santiago santification santii santimi santims santimu santir santirs santo santol santolina santolinas santols santon santonate santonic santonica santonicas santonin santonine santoninic santonins santons santoor santoors santorinite santos santour santours sants santur santurs santy sanukite sanvitalia sanyasi sanzen sao saone saouari saouaris sap sapa sapajou sapajous sapan sapans sapanwood sapanwoods sapbush sapego sapegoes sapek sapele sapeles sapful saphead sapheaded sapheadedness sapheads saphena saphenae saphenal saphenas saphenous saphie sapiao sapid sapidities sapidity sapidless sapidness sapidnesses sapience sapiences sapiencies sapiency sapiens sapient sapiential sapientially sapientise sapientize sapiently sapients sapin sapinda sapindaceae sapindaceous sapindales sapindaship sapindus sapir sapit sapiutan saple sapless saplessness saplessnesses sapling saplinghood saplings sapo sapodilla sapodillas sapodillo sapogenin sapogenins saponaceous saponaceousness saponaceousnesses saponacity saponaria saponarias saponarin saponary saponated saponiferous saponifiable saponification saponifications saponified saponifier saponifiers saponifies saponify saponifying saponin saponine saponines saponins saponite saponites saponul saponule sapophoric sapor saporific saporifical saporosity saporous sapors sapota sapotaceae sapotaceous sapotas sapote sapotes sapotilha sapotilla sapotoxin sapour sapours sappan sappans sappanwood sappanwoods sappare sapped sapper sapperment sappers sapphic sapphics sapphira sapphire sapphireberry sapphired sapphires sapphirewing sapphiric sapphirine sapphirines sapphism sapphisms sapphist sapphists sappho sappier sappiest sappily sappiness sappinesses sapping sapple sappled sapples sappling sapporo sappy sapraemia sapraemias sapraemic sapremia sapremias sapremic saprin saprine saprobe saprobes saprobic saprobically saprobiological saprobiologies saprobiologist saprobiologists saprobiology saprobiont saprobiotic saprocoll saprodil saprodontia saprogen saprogenic saprogenicities saprogenicity saprogenous saprolegnia saprolegniaceous saprolegniales saprolegnias saprolegnious saprolite saprolites saprolitic sapromic sapropel sapropelic sapropelite sapropelites sapropels saprophagan saprophagous saprophile saprophilous saprophyte saprophytes saprophytic saprophytically saprophytism saprophytisms saproplankton saprostomous saprozoic saprozoon saps sapsago sapsagos sapsap sapskull sapsuck sapsucker sapsuckers sapucaia sapucaias sapucainha sapwood sapwoods sapwort saqqara saqqarah saquaro sar saraad sarabacan sarabaite saraband sarabande sarabandes sarabands saracen saracenic saracenical saracens saraf sarafan sarafans saragossa sarah sarajevo saran sarangi sarangis sarangousty sarans sarape sarapes sarasvati saratoga saratov saravan sarawak sarawakian sarawakite sarbacane sarbacanes sarbican sarcasm sarcasmproof sarcasms sarcast sarcastic sarcastical sarcastically sarcasticalness sarcasticness sarcel sarcelle sarcelled sarcelly sarcenchymatous sarcenchyme sarcenchymes sarcenet sarcenets sarcilis sarcina sarcinae sarcinas sarcine sarcitis sarcle sarcler sarcoadenoma sarcoadenomas sarcoadenomata sarcobatus sarcoblast sarcocarcinoma sarcocarcinomas sarcocarcinomata sarcocarp sarcocarps sarcocele sarcocephalus sarcochilus sarcocol sarcocolla sarcocollas sarcocollin sarcocyst sarcocystes sarcocystidean sarcocystidian sarcocystieian sarcocystis sarcocystises sarcocystoid sarcocyte sarcode sarcoderm sarcoderma sarcodes sarcodic sarcodictyum sarcodina sarcodine sarcodinian sarcodinians sarcodous sarcoenchondroma sarcoenchondromas sarcoenchondromata sarcogenic sarcogenous sarcoglia sarcoid sarcoidoses sarcoidosis sarcoids sarcolactic sarcolemma sarcolemmal sarcolemmas sarcolemmata sarcolemmic sarcolemmous sarcolemnous sarcoline sarcolite sarcologic sarcological sarcologies sarcologist sarcology sarcolysis sarcolyte sarcolytic sarcoma sarcomas sarcomata sarcomatoid sarcomatoses sarcomatosis sarcomatous sarcomere sarcomeres sarcomeric sarconet sarconets sarcophaga sarcophagal sarcophagi sarcophagic sarcophagid sarcophagine sarcophagize sarcophagous sarcophagus sarcophaguses sarcophagy sarcophile sarcophilous sarcophilus sarcoplasm sarcoplasma sarcoplasmatic sarcoplasmic sarcoplasms sarcoplast sarcoplastic sarcopoietic sarcoptes sarcoptic sarcoptid sarcoptidae sarcorhamphus sarcosaprophagous sarcoscyphaceae sarcosepsis sarcosepta sarcoseptum sarcosin sarcosine sarcosis sarcosoma sarcosomal sarcosomataceae sarcosome sarcosomes sarcosperm sarcosporid sarcosporidia sarcosporidial sarcosporidian sarcosporidiosis sarcostemma sarcostosis sarcostyle sarcostyles sarcotheca sarcotherapeutics sarcotherapy sarcotic sarcous sard sarda sardachate sardana sardanapalian sardanas sardar sardars sardegna sardel sardelle sardelles sardels sardian sardina sardine sardined sardines sardinewise sardinia sardinian sardinians sardining sardinops sardius sardiuses sardonian sardonic sardonical sardonically sardonicism sardonicisms sardonyx sardonyxes sards sare sared saree sarees sargasso sargassos sargassum sargassumfish sargassumfishes sargassums sarge sarges sargo sargos sargoses sargus sarguses sari sarif sarigue sarin sarinda saring sarins sarip saris sark sarkar sarkful sarkfuls sarkical sarkier sarkiest sarkine sarking sarkings sarkinite sarkit sarkless sarks sarky sarlac sarlak sarlyk sarmatian sarmatier sarment sarmenta sarmentaceous sarmentas sarmentiferous sarmentose sarmentous sarments sarmentum sarna sarney sarneys sarnie sarnies sarod sarode sarodes sarodist sarodists sarods saron sarong sarongs saronic saronide saros saroses sarothrum sarpanch sarpanches sarpanitu sarpedon sarpler sarpo sarra sarracenia sarraceniaceae sarraceniaceous sarracenial sarraceniales sarracenias sarraf sarrasin sarrasins sarrazin sarrazins sarred sarring sarrow sarrusophone sarrusophones sarrusophonist sars sarsa sarsaparilla sarsaparillas sarsaparillin sarsar sarsars sarsas sarsden sarsdens sarsen sarsenet sarsenets sarsens sarsnet sarsnets sarson sarsparilla sart sartage sartain sartor sartoriad sartorial sartorially sartorian sartorii sartorite sartorius sartoriuses sartors sarum sarus saruses sarwan sasa sasan sasani sasanqua sasarara sasararas sash sashay sashayed sashaying sashays sashed sasheries sashery sashes sashimi sashimis sashing sashless sashoon sasin sasine sasines sasins saskatchewan saskatoon saskatoons sasquatch sasquatches sass sassabies sassaby sassafac sassafrack sassafras sassafrases sassagum sassandra sassanian sassanid sassarara sassararas sasse sassed sassenach sasses sassier sassies sassiest sassily sassiness sassing sassolin sassoline sassolins sassolite sassolites sasswood sasswoods sassy sassybark sassywood sassywoods sastra sastras sastruga sastrugas sastrugi sat sata satable satai satan satanas satang satangs satanic satanical satanically satanicalness satanicalnesses satanise satanism satanisms satanist satanistic satanists satanities satanity satanize satanologies satanology satanophanies satanophany satanophobia satanophobias satara sataras satay satays satchel satcheled satchelful satchelfuls satchelled satchels satchelsful satd sate sated satedness satednesses sateen sateens sateenwood sateless satelles satellitarian satellite satellited satellites satellitesimal satellitian satellitic satelliting satellitious satellitise satellitised satellitises satellitising satellitium satellitize satellitized satellitizes satellitizing satellitoid satellitory satelloid satem sates sati satiabilities satiability satiable satiableness satiably satiate satiated satiates satiating satiation satiations satient satieties satiety satin satinay satinbush satine satined satinet satinets satinetta satinettas satinette satinettes satinfin satinflower sating satininess satining satinise satinite satinity satinize satinleaf satinleaves satinlike satinpod satinpods satins satinwood satinwoods satiny sation satire satireproof satires satiric satirical satirically satiricalness satiricalnesses satirisable satirisation satirise satirised satiriser satirisers satirises satirising satirism satirist satirists satirizable satirization satirizations satirize satirized satirizer satirizers satirizes satirizing satis satisdation satisdiction satisfaciendum satisfaction satisfactional satisfactionist satisfactionless satisfactions satisfactive satisfactorily satisfactoriness satisfactorinesses satisfactorious satisfactory satisfiability satisfiable satisfice satisficed satisfices satisficing satisficings satisfied satisfiedly satisfiedness satisfier satisfiers satisfies satisfy satisfying satisfyingly satisfyingness satispassion sativa sativae sative satlijk satori satorii satoris satrap satrapal satrapate satrapess satrapic satrapical satrapies satraps satrapy satron satsop satsuma satsumas sattar satterthwaite sattie sattle sattva sattvic satura saturabilities saturability saturable saturant saturants saturate saturated saturatedness saturater saturates saturating saturation saturations saturator saturators saturday saturdays satureia satureja saturity saturization saturn saturnal saturnali saturnalia saturnalian saturnalianly saturnalias saturnia saturnian saturnic saturnicentric saturniid saturniidae saturniids saturnine saturninely saturnineness saturninity saturnism saturnisms saturnist saturnists saturnity saturnize satury satyagraha satyagrahas satyagrahi satyaloka satyashodak satyr satyra satyral satyrals satyras satyresque satyress satyresses satyriases satyriasis satyric satyrical satyrid satyrids satyrine satyrion satyrisk satyrisks satyrism satyrlike satyromaniac satyrs sau sauba saubas sauce sauceboat sauceboats saucebox sauceboxes sauced saucedish sauceless sauceline saucemaker saucemaking sauceman saucemen saucepan saucepans sauceplate saucepot saucepots saucer saucerful saucerfuls saucerize saucerized saucerleaf saucerless saucerlike saucerman saucers saucery sauces sauch sauchs saucier sauciers sauciest saucily sauciness saucinesses saucing saucisse saucisses saucisson saucissons saucy saudade saudi saudis sauerbraten sauerbratens sauerkraut sauerkrauts sauf saufgard saufgards sauger saugers saugh saughen saughs saught saughy sauk saul sauld saulge saulges saulie saulies sauls sault saulter saults saum saumon saumont saumur sauna saunaed saunaing saunas sauncier saunciest sauncy saunders saunderswood saunt saunted saunter sauntered saunterer saunterers sauntering saunteringly saunterings saunters saunting saunts sauqui saur saurel saurels sauria saurian saurians sauriasis sauries sauriosis saurischia saurischian saurischians saurless saurodont saurognathism saurognathous sauroid sauromalus saurophagous sauropod sauropoda sauropodomorpha sauropodous sauropods sauropsid sauropsida sauropsidan sauropsidans sauropsidian sauropterygia sauropterygian saurornithic saurosuchus saururaceae saururaceous saururan saururous saururus saury sausage sausagelike sausages sausinger saussurea saussurite saussurites saussuritic saussuritization saussuritize saut sauta saute sauted sauteed sauteeing sautees sauteing sauter sautereau sauterelle sauterne sauternes sautes sauteur sauting sautoir sautoire sautoires sautoirs sautree sauts sauty sauté sautéed sautéeing sautéing sautés sauve sauvegarde sav savable savableness savablenesses savacu savage savaged savagedom savagedoms savagely savageness savagenesses savager savageries savagerous savagers savagery savages savagess savagest savaging savagise savagism savagisms savagize savanilla savanna savannah savannahes savannahs savannas savant savants savara savarin savarins savate savates savation save saveable saveableness saved savegard savegarded savegarding savegards savelha saveloy saveloys savement saver savers saves savey saveyed saveying saveys savile savin savine savines saving savingly savingness savingnesses savings savins savintry savior savioress saviorhood saviors saviorship saviour saviouress saviourhood saviours saviourship savitar savola savor savored savorer savorers savorier savories savoriest savorily savoriness savorinesses savoring savoringly savorless savorlessness savorly savorous savors savorsome savory savour savoured savourer savourers savourier savouries savouriest savourily savouriness savourinesses savouring savouringly savourless savourly savourous savours savoury savoy savoyard savoyards savoyed savoying savoys savssat savvey savveyed savveying savveys savvied savvier savvies savviest savvily savvy savvying saw sawah sawahs sawali sawan sawarra sawback sawbelly sawbill sawbills sawblade sawblades sawbones sawboneses sawbuck sawbucks sawbwa sawder sawdered sawdering sawders sawdust sawdusted sawdusting sawdustish sawdustlike sawdusts sawdusty sawed sawer sawers sawfish sawfishes sawflies sawflom sawfly sawhorse sawhorses sawine sawines sawing sawings sawish sawlike sawlog sawlogs sawlshot sawmaker sawmaking sawman sawmill sawmiller sawmilling sawmills sawmon sawmont sawn sawneb sawney sawneys sawnie sawny sawpit sawpits saws sawsetter sawshark sawsharks sawsharper sawsmith sawt sawteeth sawtimber sawtimbers sawtooth sawway sawworker sawwort sawyer sawyers sax saxatile saxaul saxauls saxboard saxcornet saxe saxegothea saxes saxhorn saxhorns saxicava saxicavous saxicola saxicole saxicoline saxicolous saxifraga saxifragaceae saxifragaceous saxifragant saxifrage saxifrages saxifragous saxifrax saxigenous saxitoxin saxitoxins saxon saxonic saxonies saxonism saxonite saxonites saxons saxony saxophone saxophones saxophonic saxophonist saxophonists saxotromba saxpence saxten saxtie saxtuba saxtubas say saya sayability sayable sayableness sayanci sayed sayeds sayee sayer sayers sayest sayette sayid sayids saying sayings saynay sayne saynete sayon sayonara sayonaras sayons sayornis says sayst sayyid sayyids saz sazen sazerac sazeracs sazes sazhen sazhens sazzes sb sbe sbirri sbirro sblood sbodikins sbw sc scab scabbado scabbard scabbarded scabbarding scabbardless scabbards scabbed scabbedness scabbednesses scabbery scabbier scabbiest scabbily scabbiness scabbinesses scabbing scabble scabbled scabbler scabbles scabbling scabby scabellum scaberulous scabetic scabia scabicidal scabicide scabid scabies scabietic scabine scabinus scabiophobia scabiosa scabiosas scabiosity scabious scabiouses scabish scabland scablands scablike scabrate scabrescent scabrid scabridities scabridity scabridulous scabrin scabrities scabriusculose scabriusculous scabrock scabrosely scabrous scabrously scabrousness scabrousnesses scabs scabwort scacchic scacchite scad scaddle scads scaena scaff scaffer scaffery scaffie scaffies scaffle scaffolage scaffolages scaffold scaffoldage scaffoldages scaffolded scaffolder scaffolders scaffolding scaffoldings scaffolds scaffs scaffy scag scagged scagging scaglia scaglias scagliola scagliolas scagliolist scags scaife scail scailed scailing scails scaith scaithed scaithing scaithless scaiths scala scalabilities scalability scalable scalableness scalably scalade scalades scalado scalados scalae scalage scalages scalar scalare scalares scalarian scalariform scalariformly scalars scalarwise scalary scalation scalations scalawag scalawaggery scalawaggy scalawags scald scaldberries scaldberry scalded scalder scalders scaldfish scaldfishes scaldhead scaldheads scaldic scalding scaldings scaldini scaldino scaldra scalds scaldship scaldships scaldweed scaldy scale scaleback scalebark scaleboard scaled scaledrake scalefish scaleful scaleless scalelet scalelike scaleman scalemen scalena scalene scaleni scalenohedra scalenohedral scalenohedron scalenohedrons scalenon scalenous scalenum scalenus scalepan scalepans scaleproof scaler scalers scales scalesman scalesmen scalesmith scalet scaletail scaleup scaleups scalewing scalewise scalework scaleworks scalewort scaley scalf scalfe scalic scalier scaliest scaliger scaliness scalinesses scaling scalings scall scallage scallawag scallawaggery scallawaggy scallawags scalled scallies scallion scallions scallola scallom scallop scalloped scalloper scallopers scallopine scalloping scallopini scallopinis scallops scallopwise scalls scally scallywag scallywags scalma scalodo scalogram scalograms scaloni scaloppine scaloppines scaloppini scaloppinis scalp scalped scalpeen scalpel scalpellar scalpellic scalpelliform scalpellum scalpellus scalpels scalper scalpers scalping scalpings scalpins scalpless scalplock scalpra scalpriform scalprum scalprums scalps scalpture scalt scalx scaly scalytail scalz scam scamander scamble scambled scambler scamblers scambles scambling scamblingly scamblings scamel scamell scamels scamillus scamler scamles scammed scammel scammer scammers scamming scammoniate scammonies scammonin scammony scammonyroot scamp scampavia scamped scamper scampered scamperer scampering scampers scamphood scampi scampies scamping scampingly scampings scampis scampish scampishly scampishness scampishnesses scampo scamps scampsman scams scan scance scand scandal scandaled scandaling scandalisation scandalisations scandalise scandalised scandaliser scandalisers scandalises scandalising scandalization scandalizations scandalize scandalized scandalizer scandalizers scandalizes scandalizing scandalled scandalling scandalmonger scandalmongering scandalmongerings scandalmongers scandalmongery scandalmonging scandalous scandalously scandalousness scandalousnesses scandalproof scandals scandaroon scandent scandentia scandia scandian scandias scandic scandicus scandinavia scandinavian scandinavians scandium scandiums scanmag scannable scanned scanner scanners scanning scanningly scannings scans scansion scansionist scansions scansores scansorial scansorious scansory scanstor scant scanted scanter scantest scantier scanties scantiest scantily scantiness scantinesses scanting scantities scantity scantle scantled scantles scantlet scantling scantlinged scantlings scantly scantness scantnesses scants scanty scap scapa scapaed scapaing scapas scape scaped scapegallows scapegoat scapegoated scapegoater scapegoating scapegoatings scapegoatism scapegoatisms scapegoats scapegrace scapegraces scapel scapeless scapement scapements scapes scapethrift scapewheel scapha scaphander scaphe scaphion scaphiopus scaphism scaphite scaphitoid scaphocephalic scaphocephalies scaphocephalism scaphocephalous scaphocephalus scaphocephaluses scaphocephaly scaphocerite scaphoceritic scaphognathite scaphognathitic scaphoid scaphoids scapholunar scaphopod scaphopoda scaphopodous scaphopods scaphosepalum scapi scapiform scapigerous scaping scapoid scapolite scapolites scapolitization scapose scapple scappled scappler scapples scappling scapula scapulae scapulalgia scapular scapulare scapularies scapulars scapulary scapulas scapulated scapulectomy scapulet scapulette scapulimancies scapulimancy scapulimantic scapuloaxillary scapulobrachial scapuloclavicular scapulocoracoid scapulodynia scapulohumeral scapulomancies scapulomancy scapulomantic scapulopexy scapuloradial scapulospinal scapulothoracic scapuloulnar scapulovertebral scapus scar scarab scarabaean scarabaeans scarabaei scarabaeid scarabaeidae scarabaeidoid scarabaeids scarabaeiform scarabaeist scarabaeists scarabaeoid scarabaeoids scarabaeus scarabaeuses scarabee scarabees scaraboid scaraboids scarabs scaramouch scaramouche scaramouches scarborough scarce scarcelins scarcely scarcement scarcements scarcen scarceness scarcenesses scarcer scarcest scarcities scarcity scarcy scardinius scards scare scarebabe scarebug scarecrow scarecrowish scarecrows scarecrowy scared scareder scaredest scaredly scareful scarehead scareheads scaremonger scaremongering scaremongerings scaremongers scareproof scarer scarers scares scaresome scarf scarface scarfe scarfed scarfer scarfers scarfing scarfings scarfish scarfishes scarfless scarflike scarfpin scarfpins scarfs scarfskin scarfskins scarfwise scarfy scarid scaridae scarier scariest scarification scarifications scarificator scarificators scarified scarifier scarifiers scarifies scarify scarifying scarifyingly scarily scariness scarinesses scaring scaringly scariole scariose scarious scarlatina scarlatinal scarlatinas scarlatiniform scarlatinoid scarlatinous scarless scarlet scarletberry scarleted scarletina scarleting scarlets scarletseed scarlety scarman scarmoge scarmoges scarn scaroid scarola scarp scarpa scarpaed scarpaing scarpas scarpe scarped scarper scarpered scarpering scarpers scarpetti scarpetto scarph scarphed scarphing scarphs scarpines scarping scarpings scarplet scarpment scarproof scarps scarre scarred scarrer scarres scarrier scarriest scarring scarrings scarrow scarry scars scart scarted scartella scarth scarths scarting scarts scarus scarved scarves scary scase scasely scat scatback scatbacks scatch scatches scath scathe scathed scatheful scathefulness scathefulnesses scatheless scathelessly scathes scathful scathing scathingly scaths scathy scatland scatole scatoles scatologia scatologic scatological scatologies scatologist scatologists scatologize scatology scatoma scatomancy scatomas scatomata scatophagid scatophagies scatophagoid scatophagous scatophagy scatoscopy scats scatt scatted scatter scatterable scatteration scatterations scatteraway scatterbrain scatterbrained scatterbrains scattered scatteredly scatteredness scatterer scatterers scattergood scattergoods scattergram scattergrams scattergraph scattergun scatterguns scattering scatteringly scatterings scatterling scatterlings scatterment scattermouch scattermouches scatterplot scatterplots scatters scattershot scattersite scattery scattier scattiest scattily scattiness scattinesses scatting scattings scatts scatty scatula scaturient scaud scauded scauding scauds scaul scaum scaup scauped scauper scaupers scauping scaups scaur scaured scaurie scauries scauring scaurs scaury scaut scavage scavager scavagers scavagery scavages scavel scavenage scavenge scavenged scavenger scavengered scavengeries scavengering scavengerings scavengerism scavengers scavengership scavengery scavenges scavenging scavengings scaw scawd scawl scaws scawtite scawtites scazon scazons scazontes scazontic scazontics scclera scd sceat sceatt sceattas scedule sceduled scedules sceduling scegger scelalgia scelerat scelerate scelerates scelerats scelidosaur scelidosaurian scelidosauroid scelidosaurus scelidotherium sceliphron sceloglaux sceloncus sceloporus scelotyrbe scelp scena scenaries scenario scenarioisation scenarioise scenarioist scenarioization scenarioize scenarios scenarisation scenarisations scenarise scenarised scenarises scenarising scenarist scenarists scenarization scenarizations scenarize scenarized scenarizes scenarizing scenary scenas scend scended scendentality scending scends scene scenecraft scened sceneful sceneman scenemen sceneries scenery scenes sceneshifter sceneshifters scenewright scenic scenical scenically scenics scening scenist scenite scenograph scenographer scenographers scenographic scenographical scenographically scenographies scenography scension scent scented scenter scentful scenting scentings scentless scentlessness scentproof scents scentwood scepses scepsis scepsises scepter scepterdom sceptered sceptering scepterless scepters sceptibly sceptic sceptical sceptically scepticism scepticisms scepticize scepticized scepticizing sceptics sceptral sceptre sceptred sceptredom sceptreless sceptres sceptring sceptropherous sceptrosophy sceptry scerne scerned scernes scerning scet sceuophorion sceuophylacium sceuophylaciums sceuophylax sceuophylaxes scewing scf scfh scfm sch schaapsteker schadchan schadenfreude schadenfreudes schaffneria schairerite schalmei schalmey schalstein schalsteins schanse schanses schantze schantzes schanz schanze schanzes schapbachite schappe schapped schappeing schappes schapping schapska schapskas scharf schatchen schav schavs scheat schechita schechitah schechitas schecklaton schecklatons schediasm schediastic schedulable schedular schedulate schedule scheduled scheduler schedulers schedules scheduling schedulise schedulize scheelin scheelite scheelites scheffel schefferite schefflera scheffleras scheherazade schelling schellum schellums schelly schelm schelms scheltopusik schema schemas schemata schemati schematic schematical schematically schematics schematisation schematisations schematise schematised schematiser schematises schematising schematism schematisms schematist schematists schematization schematizations schematize schematized schematizer schematizes schematizing schematogram schematograph schematologetically schematomancy schematonics scheme schemed schemeful schemeless schemer schemers schemery schemes scheming schemingly schemings schemist schemozzle schemozzled schemozzles schemozzling schemy schene schenectady schenk scheol schepel schepen scherm scherzandi scherzando scherzandos scherzi scherzo scherzos scherzoso schesis scheuchzeriaceae scheuchzeriaceous schiavona schiavone schiavones schiavoni schick schiedam schiedams schiffli schiller schillerfels schillerisation schillerisations schillerise schillerised schillerises schillerising schillerization schillerizations schillerize schillerized schillerizes schillerizing schillers schilling schillings schillu schimmel schimmels schindyleses schindylesis schindyletic schinus schipperke schipperkes schism schisma schismas schismatic schismatical schismatically schismaticalness schismaticalnesses schismatics schismatise schismatised schismatises schismatising schismatism schismatist schismatize schismatized schismatizes schismatizing schismic schismless schisms schist schistaceous schistic schistocelia schistocephalus schistocoelia schistocormia schistocormus schistocyte schistocytes schistocytosis schistoglossia schistoid schistomelia schistomelus schistoprosopia schistoprosopus schistorrhachis schistoscope schistose schistosis schistosities schistosity schistosoma schistosomal schistosomatidae schistosome schistosomes schistosomia schistosomiases schistosomiasis schistosomus schistosternia schistothorax schistous schists schistus schiz schizachyrium schizaea schizaeaceae schizaeaceous schizanthus schizanthuses schizaxon schizes schizier schiziest schizo schizocarp schizocarpic schizocarpous schizocarps schizochroal schizocoele schizocoelic schizocoelous schizocyte schizocytosis schizodinic schizogamy schizogeneses schizogenesis schizogenetic schizogenetically schizogenic schizogenous schizogenously schizognath schizognathism schizognathous schizogonic schizogonies schizogonous schizogony schizogregarine schizoid schizoidal schizoidism schizoids schizolaenaceous schizolite schizolysigenous schizomanic schizomycete schizomycetes schizomycetic schizomycetous schizomycosis schizonemertean schizonemertine schizont schizonts schizopelmous schizopetalon schizophasia schizophragma schizophrene schizophrenes schizophrenetic schizophrenetical schizophrenetically schizophrenia schizophreniac schizophrenias schizophrenic schizophrenically schizophrenics schizophrenogenic schizophyceae schizophyceous schizophyta schizophyte schizophytes schizophytic schizopod schizopoda schizopodal schizopodous schizopods schizorhinal schizos schizosaccharomyces schizosaccharomycetaceae schizospore schizostele schizostelic schizostely schizothecal schizothoracic schizothyme schizothymia schizothymias schizothymic schizothymics schizotrichia schiztic schizy schizzier schizziest schizzo schizzy schlager schlagers schlemiel schlemiels schlemihl schlemihls schlenter schlep schlepp schlepped schlepper schleppers schleppier schleppiest schlepping schlepps schleppy schleps schlesien schlich schlichs schliere schlieren schlieric schlimazel schlimazels schlimazl schlock schlocker schlockers schlockier schlockiest schlockmeister schlockmeisters schlocks schlocky schloop schloss schlosses schlub schlubs schlumbergera schlumbergeras schlump schlumped schlumping schlumps schläger schlägers schmaltz schmaltzes schmaltzier schmaltziest schmaltzy schmalz schmalzes schmalzier schmalziest schmalzy schmatte schmattes schmear schmeared schmearing schmears schmeck schmecks schmeer schmeered schmeering schmeers schmeiss schmelz schmelze schmelzes schmitz schmo schmock schmocks schmoe schmoes schmoos schmoose schmoosed schmooses schmoosing schmooz schmooze schmoozed schmoozer schmoozers schmoozes schmoozing schmoozy schmos schmuck schmucks schmutter schmutters schnabel schnapper schnappers schnapps schnappses schnapses schnauzer schnauzers schnebelite schnecke schnecken schneider schneiderian schnell schnittlaugh schnitz schnitzel schnitzels schnook schnooks schnorchel schnorkel schnorkeled schnorkeling schnorkels schnorkle schnorr schnorred schnorrer schnorrers schnorring schnorrs schnoz schnozes schnozz schnozzes schnozzle schnozzles schnozzola scho schochat schoche schochet schoenanth schoenobatic schoenobatist schoenus schokker schola scholae scholaptitude scholar scholarch scholarchs scholardom scholarian scholarism scholarity scholarless scholarlier scholarliest scholarlike scholarliness scholarlinesses scholarly scholars scholarship scholarships scholasm scholastic scholastical scholastically scholasticate scholasticates scholasticism scholasticisms scholasticly scholastics scholasticus scholia scholiast scholiastic scholiasts scholion scholium scholiumlia scholiums schomburgkia schone schonfelsite school schoolable schoolage schoolbag schoolbags schoolbook schoolbookish schoolbooks schoolboy schoolboydom schoolboyhood schoolboyish schoolboyishly schoolboyishness schoolboyism schoolboys schoolbutter schoolchild schoolchildren schoolcraft schoolcrafts schooldame schoolday schooldays schooldom schoole schooled schooler schooleries schoolers schoolery schooles schoolfellow schoolfellows schoolfellowship schoolfriend schoolful schoolgirl schoolgirlhood schoolgirlish schoolgirlishly schoolgirlishness schoolgirlism schoolgirls schoolgirly schoolgoing schoolgoings schoolhouse schoolhouses schoolie schoolies schooling schoolingly schoolings schoolish schoolkeeper schoolkeeping schoolkid schoolkids schoolless schoollike schoolma schoolmaam schoolmaamish schoolmaid schoolmaids schoolman schoolmarm schoolmarmish schoolmarms schoolmaster schoolmastered schoolmasterhood schoolmastering schoolmasterings schoolmasterish schoolmasterishly schoolmasterishness schoolmasterism schoolmasterlike schoolmasterly schoolmasters schoolmastership schoolmasterships schoolmastery schoolmate schoolmates schoolmen schoolmiss schoolmistress schoolmistresses schoolmistressy schoolroom schoolrooms schools schoolteacher schoolteacherish schoolteacherly schoolteachers schoolteachery schoolteaching schoolteachings schooltide schooltides schooltime schooltimes schoolward schoolwards schoolwork schoolworks schoolyard schoolyards schoon schooner schooners schooper schoppen schorenbergite schorl schorlaceous schorlomite schorlomites schorlous schorls schorly schottische schottisches schottish schout schouts schouw schradan schrank schraubthaler schrecklich schreibersite schreiner schreinerize schreinerized schreinerizing schriesheimite schrik schriks schrod schrodinger schrods schrother schrund schryari schtetl schtetlech schtetls schtick schticks schtik schtiks schtoff schtook schtooks schtoom schtuck schtucks schubert schuh schuhe schuit schuits schul schule schuln schuls schultenite schultz schultze schungite schuss schussboomer schussboomers schussed schusser schussers schusses schussing schute schutzstaffel schutzstaffeln schutzstaffels schuyt schuyts schwa schwabacher schwanpan schwarmerei schwarmereis schwarmerisch schwarz schwarzlot schwarzlots schwarzwald schwas schweiz schweizer schweizerkase schwenkfeldian schwärmerei schwärmerisch schynbald sci sciadopityaceae sciadopitys sciaena sciaenid sciaenidae sciaenids sciaeniform sciaenoid sciaenoids sciaenops sciage sciagraph sciagraphed sciagraphic sciagraphing sciagraphy scialytic sciamachies sciamachy sciametry scian sciapod sciapodous sciara sciarid sciaridae sciarids sciascope sciascopy sciath sciatheric sciatherical sciatherically sciatic sciatica sciatical sciatically sciaticas sciaticky sciatics scibile science scienced sciences scient scienter scientia sciential scientiarum scientician scientific scientifical scientifically scientificalness scientificogeographical scientificohistorical scientificophilosophical scientificopoetic scientificoreligious scientificoromantic scientintically scientise scientised scientises scientising scientism scientisms scientist scientistic scientistically scientists scientize scientized scientizes scientizing scientolism scientologist scientologists scientology scil scilicet scilla scillain scillas scillipicrin scillitin scillitine scillitoxin scillonian scimetar scimetars scimitar scimitared scimitarpod scimitars scimiter scimitered scimiterpod scimiters scincella scincid scincidae scincidoid scinciform scincoid scincoidian scincoidians scincoids scincus scind scindapsus sciniph scintigram scintigrams scintigraphic scintigraphies scintigraphy scintil scintilla scintillant scintillantly scintillas scintillascope scintillascopes scintillate scintillated scintillates scintillating scintillatingly scintillation scintillations scintillator scintillators scintillescent scintilliscan scintilliscans scintillize scintillometer scintillometers scintilloscope scintilloscopes scintillose scintillous scintillously scintiscan scintiscanner scintiscanners scintiscans scintle scintled scintler scintling sciograph sciographic sciography sciolism sciolisms sciolist sciolistic sciolists sciolous sciolto sciomachiology sciomachy sciomancy sciomantic scion scions sciophilous sciophobia sciophyte scioptic sciopticon scioptics scioptric sciosophies sciosophist sciosophy scioterical scioterique sciotheism sciotheric sciotherical sciotherically scious scipio scirenga sciroc scirocco sciroccos scirocs scirpus scirrhi scirrhogastria scirrhoid scirrhoma scirrhosis scirrhosity scirrhous scirrhus scirrhuses scirrhusses scirrosity scirtopod scirtopodous sciscitation scissel scissels scissible scissil scissile scissils scission scissions scissiparities scissiparity scissor scissorbill scissorbird scissored scissorer scissorers scissoria scissoring scissorium scissorlike scissorlikeness scissors scissorsbird scissorsmith scissorstail scissortail scissortails scissorwise scissura scissure scissurellid scissures scitamineous scituate sciurid sciuridae sciurids sciurine sciurines sciuroid sciuroids sciuromorph sciuromorpha sciuromorphic sciurus scivvies scivvy sclaff sclaffed sclaffer sclaffers sclaffert sclaffing sclaffs sclat sclatch sclate sclated sclater sclates sclating sclaunder sclaunders sclave sclaves sclaw sclent scler sclera sclerae scleral scleranth scleranthus scleras scleratogenous sclere sclerectasia sclerectomies sclerectomy scleredema sclereid sclereide sclereides sclereids sclerema scleremas sclerencephalia sclerenchyma sclerenchymas sclerenchymata sclerenchymatous sclerenchyme sclererythrin scleres scleretinite scleriases scleriasis sclerification sclerify sclerite sclerites scleritic scleritis scleritises sclerized sclerobase sclerobasic scleroblast scleroblastema scleroblastemic scleroblastic sclerocaulies sclerocaulous sclerocauly sclerochorioiditis sclerochoroiditis scleroconjunctival scleroconjunctivitis sclerocornea sclerocorneal sclerodactylia sclerodactyly sclerodema scleroderm scleroderma sclerodermas sclerodermata sclerodermataceae sclerodermatales sclerodermatitis sclerodermatous sclerodermia sclerodermias sclerodermic sclerodermite sclerodermites sclerodermitic sclerodermitis sclerodermous scleroderms sclerogen sclerogenic sclerogenoid sclerogenous scleroid scleroiritis sclerokeratitis sclerokeratoiritis scleroma scleromalacia scleromalacias scleromas scleromata scleromeninx scleromere sclerometer sclerometers sclerometric scleronychia scleronyxis scleroparei sclerophthalmia sclerophyll sclerophyllies sclerophyllous sclerophylls sclerophylly scleroprotein scleroproteins sclerosal sclerosarcoma scleroscope sclerose sclerosed scleroseptum scleroses sclerosing sclerosis sclerosises scleroskeletal scleroskeleton sclerostenosis sclerostomiasis sclerotal sclerotals sclerote sclerotia sclerotial sclerotic sclerotica sclerotical scleroticectomy scleroticochorioiditis scleroticochoroiditis scleroticonyxis scleroticotomy sclerotics sclerotin sclerotinia sclerotiniaceae sclerotinial sclerotiniose sclerotins sclerotioid sclerotisation sclerotise sclerotised sclerotises sclerotising sclerotitic sclerotitis sclerotitises sclerotium sclerotization sclerotizations sclerotize sclerotized sclerotizes sclerotizing sclerotoid sclerotome sclerotomic sclerotomies sclerotomy sclerous scleroxanthin sclerozone scliff scliffs sclim sclimb sclimmed sclimming sclims sclk scoad scob scobby scobicular scobiform scobs scodgy scoff scoffed scoffer scoffers scoffery scoffing scoffingly scoffings scoffingstock scofflaw scofflaws scoffs scog scoggan scogged scogger scoggin scogging scogginism scogginist scogie scogs scoinson scoinsons scoke scolb scold scoldable scolded scoldenore scolder scolders scolding scoldingly scoldings scolds scoleces scoleciasis scolecid scolecids scoleciform scolecite scolecites scolecoid scolecology scolecophagous scolecospore scoleryng scolex scoley scolia scolices scoliid scoliograptic scoliokyposis scolioma scoliomas scoliometer scolion scoliorachitic scolioses scoliosis scoliotic scoliotone scolite scollop scolloped scolloper scolloping scollops scoloc scolog scolopaceous scolopacidae scolopacine scolopax scolopendra scolopendras scolopendrelloid scolopendrid scolopendrids scolopendriform scolopendrine scolopendrium scolopendriums scolopendroid scolopes scolophore scolopophore scolops scolymus scolytid scolytidae scolytids scolytoid scolytoids scolytus scomber scomberesocidae scomberesox scomberoid scomberomorus scombresocidae scombresox scombrid scombridae scombrids scombriform scombrine scombroid scombroidea scombroidean scombroids scombrone scomfish scomfished scomfishes scomfishing scomfit scomm sconce sconced sconcer sconces sconcheon sconcheons sconcible sconcing scone scones scontion scontions scooch scooched scooches scooching scoog scooged scooging scoogs scoon scoop scooped scooper scoopers scoopful scoopfulfuls scoopfuls scooping scoopingly scoopings scoops scoopsful scoosh scooshed scooshes scooshing scoot scootch scootched scootches scootching scooted scooter scooters scooting scoots scop scopa scopae scopal scoparin scoparium scoparius scopas scopate scope scoped scopeless scopelid scopelids scopeliform scopelism scopeloid scopeloids scopelus scopes scopet scophony scophthalmus scopic scopiferous scopiform scopiformly scopine scoping scopious scopiped scopola scopolamin scopolamine scopolamines scopoleine scopoletin scopolia scopoline scopone scopophilia scopophiliac scopophiliacs scopophilias scopophilic scopophobia scopophobias scopperil scops scoptical scoptically scoptophilia scoptophiliac scoptophilias scoptophilic scoptophobia scoptophobias scopula scopulae scopularian scopulas scopulate scopuliferous scopuliform scopuliped scopulite scopulous scopulousness scorbuch scorbute scorbutic scorbutical scorbutically scorbutize scorbutus scorce scorch scorched scorcher scorchers scorches scorching scorchingly scorchingness scorchingnesses scorchings scorchproof scorchs scordato scordatura scordaturas scordature scordium score scoreboard scoreboards scorebook scorecard scorecards scored scorekeeper scorekeepers scorekeeping scoreless scoreline scorelines scorepad scorepads scorer scorers scores scoresheet scoresheets scoria scoriac scoriaceous scoriae scorification scorifications scorified scorifier scorifiers scorifies scoriform scorify scorifying scoring scorings scorious scorkle scorn scorned scorner scorners scornful scornfully scornfulness scornfulnesses scorning scorningly scornings scornproof scorns scorny scorodite scorodites scorpaena scorpaenid scorpaenidae scorpaenids scorpaenoid scorpaenoidea scorpaenoids scorpene scorper scorpers scorpio scorpioid scorpioidal scorpioids scorpion scorpionfish scorpionfishes scorpionflies scorpionfly scorpionic scorpionid scorpionida scorpions scorpionweed scorpionwort scorpios scorpius scorrendo scorse scorsed scorser scorsers scorses scorsing scortation scortatory scorza scorzonera scorzoneras scot scotal scotale scotch scotched scotcher scotches scotching scotchman scotchmen scotchs scotchwoman scote scoter scoters scoterythrous scotia scotias scotic scotino scotism scotist scotland scotodinia scotodinias scotogram scotograph scotographic scotography scotoma scotomas scotomata scotomatic scotomatical scotomatous scotometer scotometers scotomia scotomias scotomic scotomies scotomy scotophilia scotophiliac scotophobia scotophobin scotophobins scotopia scotopias scotopic scotoscope scotosis scots scotsman scotsmen scotswoman scott scottice scotticism scotticize scottie scotties scottish scotty scouch scoug scouged scouging scougs scouk scoundrel scoundreldom scoundrelish scoundrelism scoundrelly scoundrels scoundrelship scoup scouped scouping scoups scour scourage scoured scourer scourers scouress scourfish scourfishes scourge scourged scourger scourgers scourges scourging scourgingly scourie scouries scouriness scouring scourings scours scourse scoursed scourses scoursing scourway scourweed scourwort scoury scouse scouser scousers scouses scout scoutcraft scoutcrafts scoutdom scouted scouter scouters scouth scouther scouthered scouthering scoutherings scouthers scouthery scouthood scouths scouting scoutingly scoutings scoutish scoutmaster scoutmasters scouts scoutwatch scove scovel scovillite scovy scow scowbank scowbanker scowder scowdered scowdering scowderings scowders scowed scowing scowl scowled scowler scowlers scowlful scowling scowlingly scowlproof scowls scowman scowmen scowp scowped scowping scowps scowrer scowrers scowrie scowries scows scowth scowther scowthered scowthering scowthers scowths scr scrab scrabbed scrabbing scrabble scrabbled scrabbler scrabblers scrabbles scrabblier scrabbliest scrabbling scrabbly scrabe scraber scrabs scrae scraes scraffle scrag scragged scraggedly scraggedness scraggednesses scragger scraggier scraggiest scraggily scragginess scragginesses scragging scraggle scraggled scragglier scraggliest scraggliness scragglinesses scraggling scraggly scraggy scrags scraich scraiched scraiching scraichs scraigh scraighed scraighing scraighs scraily scram scramasax scramasaxe scramb scrambed scrambing scramble scramblebrained scrambled scramblement scrambler scramblers scrambles scrambling scramblingly scramblings scrambly scrambs scramjet scramjets scrammed scramming scrampum scrams scran scranch scranched scranches scranching scranchs scrank scranky scrannel scrannels scrannier scranniest scranning scranny scrans scrap scrapable scrapbook scrapbooks scrape scrapeage scraped scrapegood scrapegoods scrapegut scrapeguts scrapepennies scrapepenny scraper scraperboard scraperboards scrapers scrapes scrapheap scrapheaps scrapie scrapies scrapiness scraping scrapingly scrapings scrapler scraplet scrapling scrapman scrapmonger scrappage scrappages scrapped scrapper scrappers scrappet scrappier scrappiest scrappily scrappiness scrappinesses scrapping scrappingly scrapple scrappler scrapples scrappy scraps scrapworks scrapy scrapyard scrapyards scrat scratch scratchable scratchably scratchback scratchbacks scratchboard scratchboards scratchbrush scratchbuild scratchbuilder scratchbuilders scratchbuilding scratchbuildings scratchbuilds scratchbuilt scratchcard scratchcarding scratchcards scratchcat scratched scratcher scratchers scratches scratchier scratchiest scratchification scratchily scratchiness scratchinesses scratching scratchingly scratchings scratchless scratchlike scratchman scratchpad scratchpads scratchproof scratchweed scratchwork scratchy scrath scrats scratted scratter scratting scrattle scrattled scrattles scrattling scrauch scrauched scrauching scrauchle scrauchs scraugh scraughed scraughing scraughs scraunch scraw scrawk scrawl scrawled scrawler scrawlers scrawlier scrawliest scrawliness scrawling scrawlingly scrawlings scrawls scrawly scrawm scrawmed scrawming scrawms scrawnier scrawniest scrawnily scrawniness scrawninesses scrawny scraws scray scraye scrayes scrays scraze screak screaked screakier screakiest screakily screaking screaks screaky scream screamed screamer screamers screaminess screaming screamingly screamproof screams screamy screar scree screech screechbird screeched screecher screechers screeches screechier screechiest screechily screechiness screechinesses screeching screechingly screechy screed screeded screeder screeders screeding screedings screeds screek screel screeman screen screenable screenage screencraft screencrafts screendom screened screener screeners screenful screening screenings screenland screenlands screenless screenlike screenman screeno screenplay screenplays screens screenshot screenshots screensman screenwise screenwork screenwriter screenwriters screenwriting screenwritings screeny screes screet screeve screeved screever screevers screeves screeving screevings screich screiched screiching screichs screigh screighed screighing screighs screve screver screw screwable screwage screwball screwballs screwbarrel screwbean screwbeans screwdrive screwdriver screwdrivers screwed screwer screwers screwfly screwhead screwier screwiest screwiness screwinesses screwing screwings screwish screwless screwlike screwman screwmatics screwpile screwplate screwpod screwpropeller screws screwship screwsman screwstem screwstock screwtop screwtops screwup screwups screwwise screwworm screwworms screwy scrfchar scribable scribacious scribaciousness scribaciousnesses scribal scribals scribanne scribatious scribatiousness scribbet scribblage scribblative scribblatory scribble scribbleable scribbled scribbledom scribbleism scribblemania scribblemaniacal scribblement scribblements scribbleomania scribbler scribblers scribbles scribblier scribbliest scribbling scribblingly scribblings scribbly scribe scribed scriber scribers scribes scribeship scribing scribings scribism scribisms scribophilous scride scriech scrieched scrieching scriechs scried scriene scrienes scries scrieve scrieveboard scrieveboards scrieved scriever scrieves scrieving scriggle scriggled scriggler scriggles scrigglier scriggliest scriggling scriggly scrike scriked scrikes scriking scrim scrime scrimer scrimmage scrimmaged scrimmager scrimmagers scrimmages scrimmaging scrimp scrimped scrimper scrimpers scrimpier scrimpiest scrimpily scrimpiness scrimpinesses scrimping scrimpingly scrimpit scrimply scrimpness scrimpnesses scrimps scrimption scrimpy scrims scrimshander scrimshanders scrimshandies scrimshandy scrimshank scrimshanked scrimshanker scrimshanking scrimshanks scrimshaw scrimshawed scrimshawing scrimshaws scrimshon scrimshoner scrimshoners scrimshorn scrimure scrimures scrimy scrin scrinch scrine scrines scringe scrinia scriniary scrinium scrip scripee scripless scripophile scripophiles scripophilies scripophilist scripophilists scripophily scrippage scrippages scrips scripsit script scripted scripter scripters scripting scription scriptitious scriptitiously scriptitory scriptive scripto scriptor scriptoria scriptorial scriptorium scriptoriums scriptory scripts scriptum scriptural scripturalise scripturalism scripturalisms scripturalist scripturalists scripturality scripturalize scripturally scripturalness scripture scriptured scriptures scripturiency scripturient scripturism scripturisms scripturist scripturists scriptwriter scriptwriters scriptwriting scriptwritings scripula scripulum scripuralistic scrit scritch scritched scritches scritching scrite scrithe scritoire scrivaille scrivan scrivano scrive scriveboard scriveboards scrived scrivello scrivelloes scrivellos scriven scrivened scrivener scriveners scrivenership scrivenerships scrivenery scrivening scrivenings scrivenly scriver scrives scriving scrob scrobble scrobe scrobes scrobicula scrobicular scrobiculate scrobiculated scrobicule scrobicules scrobiculus scrobis scrod scroddled scrodgill scrods scroff scrofula scrofularoot scrofulas scrofulaweed scrofulide scrofulism scrofulitic scrofuloderm scrofuloderma scrofulorachitic scrofulosis scrofulotuberculous scrofulous scrofulously scrofulousness scrofulousnesses scrog scrogged scroggie scroggier scroggiest scrogging scroggy scrogie scrogs scroinoch scroinogh scrolar scroll scrollable scrolled scrolleries scrollery scrollhead scrolling scrolls scrollwise scrollwork scrollworks scrolly scronach scroo scrooch scrooched scrooches scrooching scrooge scrooged scrooges scroogie scroogies scrooging scroop scrooped scrooping scroops scrootch scrootched scrootches scrootching scrophularia scrophulariaceae scrophulariaceous scrophulariales scrophularias scrota scrotal scrotectomy scrotiform scrotitis scrotocele scrotofemoral scrotta scrotum scrotums scrouge scrouged scrouger scrougers scrouges scrouging scrounge scrounged scrounger scroungers scrounges scroungier scroungiest scrounginess scrounging scroungings scroungy scrout scrow scrowdge scrowdged scrowdges scrowdging scrowl scrowle scrowled scrowles scrowling scrowls scrows scroyle scroyles scrub scrubbable scrubbed scrubber scrubbers scrubbery scrubbier scrubbiest scrubbily scrubbiness scrubbinesses scrubbing scrubbings scrubbird scrubbly scrubboard scrubby scrubgrass scrubland scrublands scrublike scrubs scrubwoman scrubwomen scrubwood scruf scruff scruffier scruffiest scruffily scruffiness scruffinesses scruffle scruffman scruffs scruffy scruft scrum scrumdown scrumdowns scrumhalf scrumhalves scrummage scrummaged scrummager scrummagers scrummages scrummaging scrummed scrummier scrummiest scrumming scrummy scrump scrumped scrumpies scrumping scrumple scrumpled scrumples scrumpling scrumpox scrumpoxes scrumps scrumption scrumptious scrumptiously scrumptiousness scrumptiousnesses scrumpy scrums scrunch scrunched scrunches scrunchie scrunchier scrunchies scrunchiest scrunching scrunchs scrunchy scrunge scrunger scrunt scruntier scruntiest scrunts scrunty scruple scrupled scrupleless scrupler scruplers scruples scruplesome scruplesomeness scrupling scrupula scrupular scrupuli scrupulist scrupulosities scrupulosity scrupulous scrupulously scrupulousness scrupulousnesses scrupulum scrupulus scrush scrutability scrutable scrutate scrutation scrutator scrutators scrutatory scrutinant scrutinate scrutineer scrutineers scrutinies scrutinisation scrutinise scrutinised scrutiniser scrutinisers scrutinises scrutinising scrutinisingly scrutinization scrutinize scrutinized scrutinizer scrutinizers scrutinizes scrutinizing scrutinizingly scrutinous scrutinously scrutiny scruto scrutoire scrutoires scrutos scruze scruzed scruzes scruzing scry scryde scryer scryers scrying scryings scryne scrynes scsi sct sctd scuba scubaed scubaing scubas scuchin scuchins scuchion scuchions scud scuddaler scuddalers scuddawn scudded scudder scudders scuddick scudding scuddle scuddled scuddles scuddling scuddy scudi scudler scudlers scudo scuds scuff scuffed scuffer scuffers scuffing scuffle scuffled scuffler scufflers scuffles scuffling scufflingly scuffly scuffs scuffy scuft scufter scufts scug scugged scuggery scugging scugs scul sculch sculches sculdudderies sculduddery sculduddries sculduddry sculduggeries sculduggery sculk sculked sculker sculkers sculking sculks scull scullduggery sculle sculled sculler sculleries scullers scullery sculles scullful sculling scullings scullion scullionish scullionize scullions scullionship scullog scullogue sculls sculp sculped sculper sculpin sculping sculpins sculps sculpsit sculpt sculpted sculptile sculpting sculptitory sculptograph sculptography sculptor sculptors sculptress sculptresses sculpts sculptural sculpturally sculpturation sculpture sculptured sculpturer sculptures sculpturesque sculpturesquely sculpturesqueness sculpturesquenesses sculpturing sculpturings sculs sculsh scult scultch scultches scum scumbag scumbags scumber scumbered scumbering scumbers scumble scumbled scumbles scumbling scumblings scumboard scumfish scumfished scumfishes scumfishing scumless scumlike scummed scummer scummers scummier scummiest scummily scumminess scumminesses scumming scummings scummy scumproof scums scun scuncheon scuncheons scunder scunge scunged scungeing scunges scungier scungiest scungili scungilli scungillis scunging scungy scunner scunnered scunnering scunners scup scupful scuppaug scuppaugs scupper scuppered scuppering scuppernong scuppernongs scuppers scuppet scuppit scuppler scups scur scurdy scurf scurfer scurfier scurfiest scurfily scurfiness scurfinesses scurflike scurfs scurfy scurling scurred scurried scurrier scurriers scurries scurril scurrile scurrilist scurrilities scurrility scurrilize scurrilous scurrilously scurrilousness scurrilousnesses scurring scurriour scurriours scurry scurrying scurryings scurs scurvied scurvier scurvies scurviest scurvily scurviness scurvinesses scurvish scurvy scurvyweed scusation scuse scused scuses scusin scusing scut scuta scutage scutages scutal scutate scutated scutatiform scutation scutch scutched scutcheon scutcheoned scutcheonless scutcheonlike scutcheons scutcheonwise scutcher scutchers scutches scutching scutchings scutchs scute scutel scutella scutellae scutellar scutellaria scutellarin scutellate scutellated scutellation scutellations scutellerid scutelliform scutelligerous scutelliplantar scutelliplantation scutellum scutes scutibranch scutibranchian scutibranchiate scutifer scutiferous scutiform scutiger scutigera scutigeral scutigerella scutigeridae scutigerous scutigers scutiped scuts scutta scutter scuttered scuttering scutters scuttle scuttlebutt scuttlebutts scuttled scuttleful scuttlefuls scuttleman scuttler scuttlers scuttles scuttling scuttock scutty scutula scutular scutulate scutulated scutulum scutum scutwork scutworks scuz scuzz scuzzbag scuzzbags scuzzball scuzzballs scuzzbucket scuzzbuckets scuzzes scuzzier scuzziest scuzzily scuzzy scybala scybalous scybalum scye scyelite scyes scyliorhinidae scylla scyllarian scyllaroid scyllioid scylliorhinoid scyllite scyllitol scypha scyphae scyphate scyphi scyphiferous scyphiform scyphiphorous scyphistoma scyphistomae scyphistomas scyphistomoid scyphistomous scyphoi scyphomancy scyphomedusan scyphomedusoid scyphophore scyphophorous scyphopolyp scyphose scyphostoma scyphozoa scyphozoan scyphozoans scyphula scyphulus scyphus scypphi scyt scytale scytales scythe scythed scytheless scythelike scytheman scythemen scyther scythers scythes scythesmith scythestone scythework scythian scything scytitis scytoblastema scytodepsic scytonemataceous scytonematoid scytonematous scytopetalaceous sd sdaine sdained sdaines sdaining sdayn sdayned sdayning sdayns sdeath sdeign sdeigne sdeigned sdeignes sdeignfull sdeignfully sdeigning sdeigns sdein sdeined sdeining sdeins sdlc sdrucciola sds sdump se sea seabag seabags seabank seabanks seabeach seabeaches seabeard seabed seabeds seabee seaberries seaberry seabird seabirds seablite seablites seaboard seaboards seaboot seaboots seaborderer seaborgium seaborgiums seaborne seabottle seabottles seabound seacannie seacatch seacliff seacoast seacoasts seacock seacocks seaconny seacraft seacrafts seacrafty seacross seacunnies seacunny seadog seadogs seadrome seadromes seafardinger seafare seafarer seafarers seafaring seafarings seafighter seaflood seafloor seafloors seaflower seafoam seafolk seafolks seafood seafoods seafowl seafowls seafront seafronts seagirt seagoer seagoing seagrass seagull seagulls seah seahawk seahawks seahog seahogs seahorse seahorses seahound seahounds seajack seajacked seajacking seajacks seak seakale seakales seakeeping seakindliness seal sealable sealane sealant sealants sealch sealchs sealed sealer sealeries sealers sealery sealess sealet sealette sealevel sealflower sealgh sealghs sealift sealifted sealifting sealifts sealike sealine sealines sealing sealings sealkie sealless seallike sealpoint sealpoints seals sealskin sealskins sealwax sealwaxes sealwort sealy sealyham sealyhams seam seamaid seamaids seamail seaman seamancraft seamanite seamanlike seamanlikeness seamanliness seamanly seamanship seamanships seamark seamarks seambiter seame seamed seamen seamer seamers seames seamew seamier seamiest seaminess seaminesses seaming seamless seamlessly seamlessness seamlessnesses seamlet seamlike seamoss seamosses seamost seamount seamounts seamrend seamrog seams seamset seamsets seamster seamsters seamstress seamstresses seamstressies seamstressy seamy sean seanad seance seances seaned seaning seannachie seannachies seannachy seans seapiece seapieces seaplane seaplanes seapoose seaport seaports seapost seaquake seaquakes seaquaria seaquarium seaquariums sear searat searats searce searced searcer searces search searchable searchableness searchant searched searcher searcheress searcherlike searchers searchership searches searchful searching searchingly searchingness searchingnesses searchings searchless searchlight searchlights searchment searcing searcloth seare seared searedness searednesses searer searest searing searingly searings searlesite searness searnesses searobin searobins searoom searooms searoving sears seary seas seascape seascapes seascapist seascout seascouting seascouts sease seased seases seashell seashells seashine seashore seashores seasick seasicker seasickest seasickness seasicknesses seaside seasider seasides seasing seasnail season seasonability seasonable seasonableness seasonablenesses seasonably seasonal seasonalities seasonality seasonally seasonalness seasonals seasoned seasonedly seasoner seasoners seasoning seasoninglike seasonings seasonless seasons seaspeak seaspeaks seastar seastrand seastrands seastroke seasure seasures seat seatang seatback seatbacks seatbelt seatbelts seated seater seaters seathe seating seatings seatless seatmate seatmates seatrain seatrains seatron seatrout seatrouts seats seatsman seatstone seattle seatwork seatworks seave seavy seawall seawalls seawan seawans seawant seawants seaward seawardly seawards seaware seawares seawater seawaters seaway seaways seaweed seaweeds seaweedy seawife seawives seawoman seawomen seaworm seaworms seaworn seaworthier seaworthiest seaworthiness seaworthinesses seaworthy seax seaze seazed seazes seazing sebacate sebaceous sebaceousness sebacic sebago sebait sebasic sebastiana sebastianite sebastine sebastodes sebastopol sebat sebate sebates sebe sebesten sebestens sebiferous sebific sebilla sebiparous sebkha sebolith seborrhagia seborrhea seborrheal seborrheas seborrheic seborrhoea seborrhoeas seborrhoeic seborrhoic sebs sebum sebums sebundies sebundy sec secability secable secale secalin secaline secalose secaloses secancy secant secantly secants secateur secateurs secchio secco seccos seccotine secede seceded seceder seceders secedes seceding secern secernate secerned secernent secernents secerning secernment secernments secerns secesh secesher seceshers seceshes secess secession secessional secessionalist secessioner secessionism secessionisms secessionist secessionists secessions sech sechuana seck seckel seckels seckle seckles seclude secluded secludedly secludedness secludednesses secludes secluding secluse seclusion seclusionist seclusionists seclusions seclusive seclusively seclusiveness seclusivenesses secno seco secobarbital secobarbitals secodont secodonts secohm secohmmeter seconal seconals second secondar secondaries secondarily secondariness secondarinesses secondary seconde seconded secondee secondees seconder seconders secondes secondguess secondhand secondhanded secondhandedly secondhandedness secondi secondine secondines seconding secondly secondment secondments secondness secondo secondrater seconds secondsighted secondsightedness secos secotiaceae secotiales secours secpar secpars secque secrate secration secre secrecies secrecy secret secreta secretage secretages secretagogue secretagogues secretaire secretaires secretar secretarial secretarian secretariat secretariate secretariates secretariats secretaries secretary secretaryship secretaryships secrete secreted secreter secreters secretes secretest secretin secreting secretins secretion secretional secretionary secretions secretitious secretive secretivelies secretively secretiveness secretivenesses secretly secretmonger secretness secretnesses secreto secretomotor secretor secretors secretory secrets secretum secs sect sectarial sectarian sectarianise sectarianised sectarianises sectarianising sectarianism sectarianisms sectarianize sectarianized sectarianizes sectarianizing sectarianly sectarians sectaries sectarism sectarist sectary sectator sectators sectile sectilities sectility section sectional sectionalisation sectionalisations sectionalise sectionalised sectionalises sectionalising sectionalism sectionalisms sectionalist sectionalists sectionality sectionalization sectionalizations sectionalize sectionalized sectionalizes sectionalizing sectionally sectionals sectionary sectioned sectioning sectionisation sectionisations sectionise sectionised sectionises sectionising sectionist sectionization sectionizations sectionize sectionized sectionizes sectionizing sections sectioplanography sectism sectist sectiuncle sective sector sectoral sectored sectorial sectorials sectoring sectorisation sectorisations sectorise sectorised sectorises sectorising sectorization sectorizations sectorize sectorized sectorizes sectorizing sectors sectral sectroid sects sectuary sectwise secular secularisation secularisations secularise secularised seculariser secularisers secularises secularising secularism secularisms secularist secularistic secularists secularities secularity secularization secularizations secularize secularized secularizer secularizers secularizes secularizing secularly secularness seculars seculum seculums secund secunda secundate secundation secundiflorous secundigravida secundine secundines secundipara secundiparity secundiparous secundly secundogeniture secundogenitures secundoprimary secundum secundus securable securableness securance securances secure secured secureful securely securement securements secureness securenesses securer securers secures securest securicornate securifer securiferous securiform securigerous securing securings securitan securitans securities securitisation securitisations securitise securitised securitises securitising securitization securitizations securitize securitized securitizes securitizing security secus secutor secy sed sedan sedanier sedans sedarim sedate sedated sedately sedateness sedatenesses sedater sedates sedatest sedating sedation sedations sedative sedatives sedent sedentarily sedentariness sedentarinesses sedentary sedentation seder seders sederunt sederunts sedes sedge sedged sedgeland sedgelands sedgelike sedges sedgier sedgiest sedging sedgy sedigitate sedigitated sedile sedilia sedilium sediment sedimentable sedimental sedimentaries sedimentarily sedimentary sedimentate sedimentation sedimentations sedimented sedimenting sedimentologic sedimentological sedimentologically sedimentologies sedimentologist sedimentologists sedimentology sedimentous sediments sedimetric sedimetrical sedition seditionaries seditionary seditionist seditionists seditions seditious seditiously seditiousness seditiousnesses sedjadeh seduce seduceability seduceable seduced seducee seducement seducements seducer seducers seduces seducible seducing seducingly seducings seducive seduct seduction seductionist seductions seductive seductively seductiveness seductivenesses seductor seductors seductress seductresses sedulities sedulity sedulous sedulously sedulousness sedulousnesses sedum sedums see seeable seeableness seeably seecatch seecatchie seecawk seech seechelt seed seedage seedball seedbed seedbeds seedbird seedbox seedboxes seedcake seedcakes seedcase seedcases seedeater seedeaters seeded seeder seeders seedful seedgall seedier seediest seedily seediness seedinesses seeding seedings seedkin seedleaf seedless seedlessness seedlet seedlike seedling seedlings seedlip seedlips seedman seedmen seedness seednesses seedpod seedpods seeds seedsman seedsmen seedstalk seedster seedtime seedtimes seedy seege seeing seeingly seeingness seeings seek seeker seekers seeking seeks seel seeland seeld seeled seelful seelier seeliest seelily seeliness seeling seelings seels seely seem seemable seemably seemed seemelesse seemer seemers seeming seemingly seemingness seemingnesses seemings seemless seemlier seemliest seemlihead seemliheads seemlihed seemliheds seemlily seemliness seemlinesses seemly seemlyhed seemlyheds seems seen seenie seenil seep seepage seepages seeped seepier seepiest seeping seepproof seeps seepweed seepy seer seerband seercraft seeress seeresses seerfish seerhand seerhood seerlike seerpaw seers seership seersucker seersuckers sees seesaw seesawed seesawiness seesawing seesaws seesee seethe seethed seether seethers seethes seething seethingly seethings seetulputty seewee seewing sefton seg segar segars segathy segetal segfault segfaults seggar seggard seggars segged seggio seggiola seggrom seggy seghol segholate segholates seghols segment segmental segmentalization segmentalize segmentally segmentary segmentate segmentation segmentations segmented segmenter segmenting segmentize segments segni segno segnos sego segol segolate segolates segols segos segou segreant segregable segregant segregants segregate segregated segregatedly segregatedness segregateness segregates segregating segregation segregational segregationist segregationists segregations segregative segregator segregators segs segue segued segueing seguendo segues seguidilla seguidillas seguing sei seicento seicentos seiche seiches seidel seidels seidlitz seif seifs seige seigneur seigneurage seigneuress seigneurial seigneurie seigneuries seigneurs seigneury seignior seigniorage seigniorages seignioral seignioralties seignioralty seigniorial seigniories seigniority seigniors seigniorship seigniorships seigniory seignorage seignorages seignoral seignorial seignories seignorize seignory seik seiker seikest seil seiled seilenoi seilenos seiling seils seimas seine seined seiner seiners seines seining seinings seir seiren seirospore seirosporic seirs seis seisable seise seised seiser seisers seises seisin seising seisings seisins seism seismal seismatical seismetic seismic seismical seismically seismicities seismicity seismism seismisms seismochronograph seismogram seismograms seismograph seismographer seismographers seismographic seismographical seismographies seismographs seismography seismol seismologic seismological seismologically seismologies seismologist seismologists seismologue seismology seismometer seismometers seismometric seismometrical seismometries seismometrograph seismometry seismomicrophone seismonastic seismonasties seismonasty seismosaur seismosaurus seismoscope seismoscopes seismoscopic seismotectonic seismotherapy seismotic seisms seisor seisors seisure seisures seit seitan seitans seiten seitens seities seity seiurus seizable seize seized seizer seizers seizes seizin seizing seizings seizins seizor seizors seizure seizures sejant sejeant sejero sejoin sejoined sejour sejugate sejugous sejunct sejunction sejunctive sejunctively sejunctly sekere sekhet sekos sekoses sekt sekts sel selachian selachians selachii selachoid selachostome selachostomous seladang seladangs selaginella selaginellaceae selaginellaceous selaginellales selaginellas selagite selago selah selahs selamin selamlik selamliks selander selaphobia selar selbergite selcouth seld selden seldom seldomcy seldomer seldomly seldomness seldomnesses seldor seldseen seldshown sele select selectable selectance selected selectedly selectee selectees selecting selection selectional selectionism selectionist selectionists selections selective selectively selectiveness selectivenesses selectivities selectivity selectivitysenescence selectly selectman selectmen selectness selectnesses selector selectorial selectors selects selectus selectwoman selectwomen selegiline selegilines selenarctos selenate selenates selene selenian seleniate selenic selenicereus selenide selenides seleniferous selenigenous selenion selenious selenipedium selenite selenites selenitic selenitical selenitiferous selenitish selenium seleniums seleniuret selenobismuthite selenocentric selenodesy selenodont selenodonts selenodonty selenograph selenographer selenographers selenographic selenographical selenographically selenographies selenographist selenographists selenographs selenography selenolatry selenolog selenological selenologies selenologist selenologists selenology selenomancy selenomorphologies selenomorphology selenoscope selenosis selenotropic selenotropism selenotropy selenous selensilver selensulphur seles seletar selety seleucia seleucus self selfadjoint selfcide selfdom selfdoms selfed selfeffacing selfful selffulness selfheal selfheals selfhood selfhoods selfhypnotization selfing selfings selfish selfishly selfishness selfishnesses selfism selfisms selfist selfists selfless selflessly selflessness selflessnesses selflike selfly selfmovement selfness selfnesses selfpreservatory selfpropelling selfrestrained selfs selfsaid selfsame selfsameness selfsamenesses selfseekingness selfsufficiency selfsustainingly selfward selfwards selictar selictars seligmannite selihoth seling selion seljuk selkie selkies selkup sell sella sellable sellably sellae sellaite sellar sellary sellas sellate sellback sellbacks selle sellenders seller sellers selles sellie selliform selling selloff selloffs sellotape sellotaped sellotapes sellotaping sellout sellouts sells selly selma sels selsoviet selsyn selsyns selt seltzer seltzers seltzogene seltzogenes selva selvage selvaged selvagee selvagees selvages selvaging selvas selvedge selvedged selvedges selvedging selves selzogene sem semainier semainiers semaise semang semanteme semantemes semantic semantical semantically semantician semanticist semanticists semantics semantide semantides semantological semantology semantra semantron semaphore semaphored semaphores semaphoric semaphorical semaphorically semaphoring semaphorist semarum semasiological semasiologically semasiologies semasiologist semasiologists semasiology semateme sematic sematographic sematography sematology sematrope semball semblable semblables semblably semblance semblances semblant semblants semblative semble sembled semblence sembles sembling seme semee semeed semeia semeiography semeiologic semeiological semeiologies semeiologist semeiology semeion semeiotic semeiotical semeiotician semeioticians semeiotics semel semelfactive semelincident semelparity semelparous sememe sememes sememic semen semence semencinae semencontra semens sement sementera semes semese semester semesters semestral semestrial semi semiabsorbent semiabstract semiabstracted semiabstraction semiabstractions semiacademic semiacademical semiacademically semiaccomplishment semiacetic semiacid semiacidic semiacidified semiacidulated semiacquaintance semiacrobatic semiactive semiactively semiactiveness semiadherent semiadhesive semiadhesively semiadhesiveness semiadjectively semiadnate semiaerial semiaffectionate semiagricultural semialbinism semialcoholic semialien semiallegiance semiallegoric semiallegorical semiallegorically semialpine semialuminous semiamplexicaul semiamplitude semian semianaesthetic semianalytic semianalytical semianalytically semianarchism semianarchist semianarchistic semianatomic semianatomical semianatomically semianatropal semianatropous semiandrogenous semianesthetic semiangle semiangles semiangular semianimal semianimate semianimated semianna semiannealed semiannual semiannually semiannular semianthracite semianthropologic semianthropological semianthropologically semiantiministerial semiantique semiape semiaperiodic semiaperture semiappressed semiaquatic semiarboreal semiarborescent semiarc semiarch semiarchitectural semiarchitecturally semiarid semiaridities semiaridity semiarticulate semiarticulately semiasphaltic semiatheist semiattached semiautobiographical semiautomated semiautomatic semiautomatically semiautomatics semiautonomies semiautonomous semiautonomously semiautonomy semiaxis semibacchanalian semibachelor semibald semibaldly semibaldness semibalked semiball semiballoon semiband semibarbarian semibarbarianism semibarbaric semibarbarism semibarbarous semibaronial semibarren semibase semibasement semibastion semibay semibeam semibejan semibelted semibifid semibiographic semibiographical semibiographically semibiologic semibiological semibiologically semibituminous semiblasphemous semiblasphemously semiblasphemousness semibleached semiblind semiblunt semibody semiboiled semibold semibolds semibolshevist semibolshevized semibouffant semibourgeois semibreve semibreves semibull semibulls semibureaucratic semibureaucratically semiburrowing semic semicabalistic semicabalistical semicabalistically semicadence semicalcareous semicalcined semicallipygian semicanal semicanalis semicannibalic semicantilever semicapitalistic semicapitalistically semicarbazide semicarbazides semicarbazone semicarbazones semicarbonate semicarbonise semicarbonize semicardinal semicaricatural semicartilaginous semicarved semicastrate semicastration semicatalyst semicatalytic semicathartic semicatholicism semicaudate semicelestial semicell semicellulose semicellulous semicentenarian semicentenaries semicentenary semicentennial semicentennials semicentury semicha semichannel semichaotic semichaotically semichemical semichemically semicheviot semichevron semichiffon semichivalrous semichoric semichorus semichoruses semichrome semicircle semicircled semicircles semicircular semicircularity semicircularly semicircularness semicircumference semicircumferentor semicircumvolution semicirque semicirques semicitizen semicivilisation semicivilised semicivilization semicivilized semiclassic semiclassical semiclassically semiclassics semiclause semicleric semiclerical semiclerically semiclimber semiclimbing semiclinical semiclinically semiclose semiclosed semiclosure semicoagulated semicoke semicollapsible semicollar semicollegiate semicolloid semicolloidal semicolloquial semicolloquially semicolon semicolonial semicolonialism semicolonialisms semicolonially semicolonies semicolons semicolony semicolumn semicolumnar semicoma semicomas semicomatose semicombined semicombust semicomic semicomical semicomically semicommercial semicommercially semicommunicative semicompact semicompacted semicomplete semicomplicated semiconceal semiconcealed semiconcrete semiconditioned semiconducting semiconduction semiconductive semiconductivities semiconductivity semiconductor semiconductors semicone semiconfident semiconfinement semiconfluent semiconformist semiconformity semiconic semiconical semiconically semiconnate semiconnection semiconoidal semiconscious semiconsciously semiconsciousness semiconsciousnesses semiconservative semiconservatively semiconsonant semiconsonantal semiconspicuous semicontinent semicontinuous semicontinuously semicontinuum semicontraction semicontradiction semiconventional semiconventionality semiconventionally semiconvergence semiconvergent semiconversion semiconvert semicope semicordate semicordated semicoriaceous semicorneous semicoronate semicoronated semicoronet semicostal semicostiferous semicotton semicotyle semicounterarch semicountry semicrepe semicrescentic semicretin semicretinism semicriminal semicroma semicrome semicrustaceous semicrystallic semicrystallinc semicrystalline semicubical semicubit semicultivated semicultured semicup semicupe semicupium semicupola semicured semicurl semicursive semicurvilinear semicyclic semicycloid semicylinder semicylinders semicylindric semicylindrical semicynical semicynically semidaily semidangerous semidangerously semidangerousness semidark semidarkness semidarknesses semidead semideaf semideafness semidecadent semidecadently semidecay semidecayed semidecussation semidefensive semidefensively semidefensiveness semidefined semidefinite semidefinitely semidefiniteness semideific semideification semideified semideifies semideify semideifying semideistical semideity semidelight semidelirious semidelirium semideltaic semidemented semidemisemiquaver semidemisemiquavers semidenatured semidependence semidependent semidependently semideponent semideponents semidesert semideserts semidestruction semidestructive semidetached semidetachment semideterministic semideveloped semidiagrammatic semidiameter semidiameters semidiapason semidiapente semidiaphaneity semidiaphanous semidiaphanously semidiaphanousness semidiatessaron semidictatorial semidictatorially semidictatorialness semidifference semidigested semidigitigrade semidigression semidilapidation semidine semidiness semidirect semidirectness semidisabled semidisk semiditone semidiurnal semidivided semidivine semidivision semidivisive semidivisively semidivisiveness semidocumentaries semidocumentary semidodecagon semidole semidome semidomed semidomes semidomestic semidomestically semidomesticated semidomestication semidomestications semidomical semidominant semidormant semidouble semidrachm semidramatic semidramatical semidramatically semidress semidressy semidried semidry semidrying semiductile semidull semiduplex semidurables semiduration semidwarf semidwarfs semidwarves semie semiearly semieducated semieffigy semiegg semiegret semielastic semielastically semielevated semielision semiellipse semiellipsis semiellipsoidal semielliptic semielliptical semiemotional semiemotionally semiempirical semiempirically semienclosed semienclosure semiengaged semiepic semiepical semiepically semiepiphyte semiequitant semierect semierectly semierectness semieremitical semies semiessay semievergreen semiexclusive semiexclusively semiexclusiveness semiexecutive semiexhibitionist semiexpanded semiexpansible semiexperimental semiexperimentally semiexplanation semiexposed semiexpositive semiexpository semiexposure semiexpressionistic semiexternal semiexternalized semiexternally semiextinct semiextinction semifable semifabulous semifailure semifamine semifascia semifasciated semifashion semifast semifatalistic semiferal semiferous semifeudal semifeudalism semifib semifiction semifictional semifictionalized semifictionally semifigurative semifiguratively semifigurativeness semifigure semifinal semifinalist semifinalists semifinals semifine semifinish semifinished semifiscal semifistular semifit semifitted semifitting semifixed semiflashproof semiflex semiflexed semiflexible semiflexion semiflexure semiflint semifloating semifloret semifloscular semifloscule semiflosculose semiflosculous semifluctuant semifluctuating semifluid semifluidic semifluidities semifluidity semifluids semifoaming semiforbidding semiforeign semiform semiformal semiformed semifossil semifossilised semifossilized semifrantic semifrater semifriable semifrontier semifuddle semifunctional semifunctionalism semifunctionally semifurnished semifused semifusion semifuturistic semify semigala semigelatinous semigentleman semigenuflection semigeometric semigeometrical semigeometrically semigirder semiglaze semiglazed semiglobe semiglobose semiglobular semiglobularly semiglorious semigloss semiglosses semiglutin semigod semigovernmental semigovernmentally semigrainy semigranitic semigranulate semigraphic semigraphics semigravel semigroove semigroup semigroups semih semihand semihaness semihard semiharden semihardened semihardness semihardy semihastate semihepatization semiherbaceous semiheretic semiheretical semiheterocercal semihexagon semihexagonal semihiant semihiatus semihibernation semihigh semihistoric semihistorical semihistorically semihobo semihoboes semihobos semiholiday semihonor semihonour semihoral semihorny semihostile semihostilely semihostility semihot semihuman semihumanised semihumanism semihumanistic semihumanitarian semihumanized semihumbug semihumorous semihumorously semihyaline semihydrate semihydrobenzoinic semihyperbola semihyperbolic semihyperbolical semihysterical semihysterically semiintoxicated semijealousy semijocular semijocularly semijubilee semijudicial semijudicially semijuridic semijuridical semijuridically semikah semilanceolate semilate semilatent semilatus semileafless semilegal semilegendary semilegislative semilegislatively semilens semilenticular semilethal semilethals semiliberal semiliberalism semiliberally semilichen semiligneous semilimber semilined semiliquid semiliquidities semiliquidity semiliquids semiliteracies semiliteracy semiliterate semiliterates semillon semillons semilocular semilog semilogarithm semilogarithmic semilogical semilogs semilong semilooper semiloose semilor semiloyalty semilucent semiluminous semiluminously semiluminousness semilunar semilunare semilunary semilunate semilunated semilunation semilune semilunes semilustrous semiluxation semiluxury semilyric semilyrical semilyrically semimachine semimade semimadman semimagical semimagically semimagnetic semimagnetical semimagnetically semimajor semimalicious semimaliciously semimaliciousness semimalignant semimalignantly semimanagerial semimanagerially semimanneristic semimanufacture semimanufactured semimanufactures semimarine semimarking semimat semimaterialistic semimathematical semimathematically semimatt semimatte semimature semimaturely semimatureness semimaturity semimechanical semimechanistic semimedicinal semimember semimembranosus semimembranous semimenstrual semimercerised semimercerized semimessianic semimetal semimetallic semimetals semimetamorphosis semimetaphoric semimetaphorical semimetaphorically semimicro semimicroanalysis semimicrochemical semimild semimildness semimilitary semimill semimineral semimineralised semimineralized semiminess semiminim semiministerial semiminor semimobile semimoderate semimoderately semimoist semimolecule semimonarchic semimonarchical semimonarchically semimonastic semimonitor semimonopolistic semimonopoly semimonster semimonthlies semimonthly semimoralistic semimoron semimountainous semimountainously semimucous semimute semimystic semimystical semimystically semimysticalness semimythic semimythical semimythically semina seminaked seminal seminalities seminality seminally seminaphthalidine seminaphthylamine seminar seminarcosis seminarcotic seminarial seminarian seminarianism seminarians seminaries seminarise seminarist seminaristic seminarists seminarize seminarrative seminars seminary seminasal seminasality seminasally seminase seminatant seminate seminated seminates seminating semination seminationalisation seminationalism seminationalistic seminationalization seminationalized seminations seminative seminatural seminebulous seminecessary seminegro seminervous seminervously seminervousness seminess semineurotic semineurotically semineutral semineutrality seminiferal seminiferous seminific seminifical seminification seminist seminium seminivorous seminocturnal seminole seminoles seminoma seminomad seminomadic seminomadically seminomadism seminomads seminomas seminomata seminonconformist seminonflammable seminonsensical seminormal seminormality seminormally seminormalness seminose seminovel seminovelty seminude seminudities seminudity seminule seminuliferous seminuria seminvariant seminvariantive semiobjective semiobjectively semiobjectiveness semioblivion semioblivious semiobliviously semiobliviousness semiobscurity semioccasional semioccasionally semiocclusive semiochemical semiochemicals semioctagonal semiofficial semiofficially semiography semiologic semiological semiologically semiologies semiologist semiologists semiology semiopacity semiopacous semiopal semiopalescent semiopaque semiopen semiopened semiopenly semiopenness semioptimistic semioptimistically semioratorical semioratorically semiorb semiorbicular semiorbicularis semiorbiculate semiordinate semiorganic semiorganically semiorganised semiorganized semioriental semiorientally semiorthodox semiorthodoxly semioscillation semioses semiosis semiosseous semiostracism semiotic semiotical semiotically semiotician semioticians semioticism semioticist semioticists semiotics semioval semiovally semiovalness semiovaloid semiovate semioviparous semiovoid semiovoidal semioxidated semioxidised semioxidized semioxygenated semioxygenised semioxygenized semipacifist semipacifistic semipagan semipaganish semipalmate semipalmated semipalmation semipalmations semipanic semipapal semipapist semiparabola semiparallel semiparalysis semiparalytic semiparalyzed semiparameter semiparasite semiparasites semiparasitic semiparasitism semiparochial semipassive semipassively semipassiveness semipaste semipastoral semipastorally semipasty semipathologic semipathological semipathologically semipatriot semipatriotic semipatriotically semipatterned semipause semipeace semipeaceful semipeacefully semipectinate semipectinated semipectoral semiped semipedal semipedantic semipedantical semipedantically semipeds semipellucid semipellucidity semipendent semipendulous semipendulously semipendulousness semipenniform semiperceptive semiperfect semiperimeter semiperimeters semiperimetry semiperiphery semipermanent semipermanently semipermeabilities semipermeability semipermeable semiperoid semiperspicuous semipertinent semiperviness semipervious semiperviousness semipetaloid semipetrified semiphase semiphenomenal semiphenomenally semiphilologist semiphilosophic semiphilosophical semiphilosophically semiphlogisticated semiphonotypy semiphosphorescence semiphosphorescent semiphrenetic semipictorial semipictorially semipinacolic semipinacolin semipinnate semipious semipiously semipiousness semipiscine semiplantigrade semiplastic semiplumaceous semiplume semiplumes semipneumatic semipneumatical semipneumatically semipoisonous semipoisonously semipolar semipolitical semipolitician semipoor semipopish semipopular semipopularity semipopularized semipopularly semiporcelain semiporcelains semipornographic semipornographies semipornography semiporous semiporphyritic semiportable semipostal semipostals semipractical semiprecious semipreservation semipreserved semiprimigenous semiprimitive semiprivacy semiprivate semipro semiproductive semiproductively semiproductiveness semiproductivity semiprofane semiprofanely semiprofaneness semiprofanity semiprofessional semiprofessionalised semiprofessionalized semiprofessionally semiprofessionals semiprogressive semiprogressively semiprogressiveness semipronation semiprone semipronely semiproneness semipronominal semiproof semipropagandist semipros semiproselyte semiprosthetic semiprostrate semiprotected semiprotective semiprotectively semiprotectorate semiproven semiprovincial semiprovincially semipsychologic semipsychological semipsychologically semipsychotic semipublic semipunitive semipunitory semipupa semipurposive semipurposively semipurposiveness semipurulent semiputrid semipyramidal semipyramidical semipyritic semiquadrangle semiquadrantly semiquadrate semiquantitative semiquantitatively semiquartile semiquaver semiquavers semiquietism semiquietist semiquinquefid semiquintile semiquote semiradial semiradiate semiradical semiradically semiradicalness semirapacious semirare semirarely semirareness semirationalized semirattlesnake semiraw semirawly semirawness semireactionary semirealistic semirealistically semirebel semirebellion semirebellious semirebelliously semirebelliousness semirecondite semirecumbent semirefined semireflex semireflexive semireflexively semireflexiveness semiregular semirelief semireligious semireniform semirepublic semirepublican semiresinous semiresiny semiresolute semiresolutely semiresoluteness semirespectability semirespectable semireticulate semiretired semiretirement semiretirements semiretractile semireverberatory semirevolute semirevolution semirevolutionary semirevolutionist semirhythm semirhythmic semirhythmical semirhythmically semiriddle semirigid semirigorous semirigorously semirigorousness semiring semiroll semiromantic semiromantically semirotary semirotating semirotative semirotatory semirotund semirotunda semiround semirounds semiroyal semiruin semirural semiruralism semirurally semirustic semis semisacerdotal semisacred semisagittate semisaint semisaline semisaltire semisaprophyte semisaprophytic semisarcodic semisatiric semisatirical semisatirically semisaturation semisavage semisavagedom semisavagery semiscenic semischolastic semischolastically semiscientific semiseafaring semisecondary semisecrecy semisecret semisecretly semisection semisedentary semisegment semisensuous semisentient semisentimental semisentimentalized semisentimentally semiseparatist semiseptate semiserf semiserious semiseriously semiseriousness semiservile semises semisevere semiseverely semiseverity semisextile semishade semishady semishaft semisheer semishirker semishrub semishrubby semisightseeing semisilica semisimious semisimple semisingle semisirque semisixth semiskilled semislave semismelting semismile semisocial semisocialism semisocialist semisocialistic semisocialistically semisociative semisocinian semisoft semisolemn semisolemnity semisolemnly semisolemnness semisolid semisolids semisolute semisomnambulistic semisomnolence semisomnolent semisomnolently semisomnous semisopor semisoun semisovereignty semispan semispeculation semispeculative semispeculatively semispeculativeness semisphere semispheric semispherical semispheroidal semispinalis semispiral semispiritous semispontaneity semispontaneous semispontaneously semispontaneousness semisport semisporting semisquare semistaged semistagnation semistaminate semistarvation semistarved semistate semisteel semistiff semistiffly semistiffness semistill semistimulating semistock semistory semistratified semistriate semistriated semistuporous semisubmersible semisubmersibles semisubterranean semisuburban semisuccess semisuccessful semisuccessfully semisucculent semisupernatural semisupernaturally semisupernaturalness semisupinated semisupination semisupine semisuspension semisweet semisymmetric semisynthetic semita semitact semitae semitailored semital semitandem semitangent semitar semitars semitaur semitaurs semite semitechnical semiteetotal semitelic semitendinosus semitendinous semiterete semiterrestrial semitertian semites semitesseral semitessular semitextural semitexturally semitheatric semitheatrical semitheatricalism semitheatrically semitheological semitheologically semithoroughfare semitic semitics semitime semitism semitist semitists semitization semitonal semitonally semitone semitones semitonic semitonically semitontine semitorpid semitour semitraditional semitraditionally semitraditonal semitrailer semitrailers semitrained semitrance semitransept semitranslucent semitransparencies semitransparency semitransparent semitransparently semitransparentness semitransverse semitreasonable semitrimmed semitropic semitropical semitropically semitropics semitruth semitruthful semitruthfully semitruthfulness semituberous semitubular semiuncial semiundressed semiuniversalist semiupright semiurban semiurn semivalvate semivault semivector semivegetable semivertebral semiverticillate semivibration semivirtue semiviscid semivisibility semivisible semivital semivitreous semivitrification semivitrified semivocal semivocalic semivolatile semivolcanic semivolcanically semivoluntary semivowel semivowels semivulcanised semivulcanized semiwaking semiwarfare semiweeklies semiweekly semiwild semiwildly semiwildness semiwoody semiworks semiyearlies semiyearly semmel semmet semmit semmits semnopithecine semois semola semolella semolina semolinas semological semology semostomeous semostomous semoted semoule sempatch semper semperannual sempergreen semperidem semperidentical semperjuvenescent sempervirent sempervirid sempervivum sempervivums sempitern sempiternal sempiternally sempiternities sempiternity sempiternize sempiternous sempiternum sempiternums semple sempler semples semplest semplice semplices sempre sempres sempster sempstering sempsterings sempsters sempstress sempstresses sempstressing sempstressings sempstry sempstrywork semsem semsems semsen semuncia semunciae semuncial semuncias semé semée seméed sen sena senachie senage senaite senal senam senarian senaries senarii senarius senarmontite senary senas senate senates senator senatorial senatorially senatorian senators senatorship senatorships senatory senatress senatrices senatrix senatus sence sencio sencion send sendable sendal sendals sended sendee sender senders sending sendings sendle sendoff sendoffs sends sendup sendups sene seneca senecan senecas senecio senecioid senecionine senecios senectitude senectitudes senectude senectuous senega senegal senegalese senegas senegin senesce senesced senescence senescences senescency senescent senesces seneschal seneschally seneschals seneschalship seneschalships seneschalsy seneschalty senescing senex sengi sengreen sengreens senhor senhora senhoras senhores senhorita senhoritas senhors senicide senile senilely seniles senilis senilise senilism senilities senility senilize senior seniorities seniority seniors seniorship seniory senit seniti senium senna sennachie sennachies sennas sennegrass sennet sennets sennett sennight sennights sennit sennite sennits senocular senonian senopia senopias senor senora senoras senores senorita senoritas senors senoufo senryu sens sensa sensable sensal sensate sensated sensately sensates sensating sensation sensational sensationalise sensationalised sensationalises sensationalising sensationalism sensationalisms sensationalist sensationalistic sensationalists sensationalization sensationalizations sensationalize sensationalized sensationalizes sensationalizing sensationally sensationary sensationish sensationism sensationisms sensationist sensationistic sensationists sensationless sensations sensatorial sensatory sense sensed senseful sensei senseis senseless senselessly senselessness senselessnesses senses sensibilia sensibilisin sensibilities sensibilitist sensibilitiy sensibilitous sensibility sensibilium sensibilization sensibilize sensible sensibleness sensiblenesses sensibler sensibles sensiblest sensibly sensical sensifacient sensiferous sensific sensificatory sensifics sensify sensigenous sensile sensilia sensilla sensillae sensillum sensillumla sensimotor sensing sensings sension sensise sensism sensisms sensist sensistic sensists sensitisation sensitisations sensitise sensitised sensitiser sensitisers sensitises sensitising sensitive sensitively sensitiveness sensitivenesses sensitives sensitivist sensitivities sensitivity sensitization sensitizations sensitize sensitized sensitizer sensitizers sensitizes sensitizing sensitometer sensitometers sensitometric sensitometrically sensitometries sensitometry sensitory sensive sensize senso sensomobile sensomobility sensomotor sensoparalysis sensor sensoria sensorial sensorially sensories sensoriglandular sensorily sensorimotor sensorimuscular sensorineural sensorium sensoriums sensorivascular sensorivasomotor sensorivolitional sensors sensory sensu sensual sensualisation sensualisations sensualise sensualised sensualises sensualising sensualism sensualisms sensualist sensualistic sensualists sensualities sensuality sensualization sensualizations sensualize sensualized sensualizes sensualizing sensually sensualness sensualnesses sensuism sensuist sensuists sensum sensuosities sensuosity sensuous sensuously sensuousness sensuousnesses sensus sensyne sent sente sented sentence sentenced sentencer sentencers sentences sentencing sentencings sententia sententiae sentential sententially sententiarian sententiarist sententiary sententiosity sententious sententiously sententiousness sententiousnesses senti sentience sentiences sentiencies sentiency sentiendum sentient sentiently sentients sentiment sentimental sentimentalisation sentimentalisations sentimentalise sentimentalised sentimentaliser sentimentalises sentimentalising sentimentalism sentimentalisms sentimentalist sentimentalists sentimentalities sentimentality sentimentalization sentimentalizations sentimentalize sentimentalized sentimentalizer sentimentalizes sentimentalizing sentimentally sentimenter sentimentless sentimento sentiments sentimo sentimos sentine sentinel sentineled sentineling sentinelled sentinellike sentinelling sentinels sentinelship sentinelwise senting sentisection sentition sentried sentries sentry sentrying sents senufo senvies senvy senza seor seora seorita seoul sep sepad sepadded sepadding sepads sepal sepaled sepaline sepalled sepalodies sepalody sepaloid sepalous sepals separabilities separability separable separableness separablenesses separably separata separate separated separatedly separately separateness separatenesses separates separatical separating separation separationism separationisms separationist separationists separations separatism separatisms separatist separatistic separatists separative separatively separativeness separator separatories separators separatory separatress separatrices separatrici separatrix separatrixes separatum separatums separte sepawn sepd sepg sephardi sephen sephens sephira sephirah sephiric sephiroth sephirothic sepia sepiacean sepiaceous sepiae sepialike sepian sepiarian sepiary sepias sepic sepicolous sepiidae sepiment sepiments sepioid sepiola sepiolite sepiolites sepion sepiost sepiostaire sepiostaires sepiosts sepium sepiums sepmag sepn sepone sepose sepoy sepoys seppa seppuku seppukus seps sepses sepsid sepsin sepsine sepsis sept septa septaemia septage septages septal septan septane septangle septangled septangular septangularness septaria septarian septariate septarium septate septated septation septations septatoarticulate septaugintal septavalent septave septcentenary septectomies septectomy september septembrist septembrize septembrizer septemdecenary septemdecillion septemfid septemfluous septemfoliate septemfoliolate septemia septempartite septemplicate septemvious septemvir septemviral septemvirate septemvirates septemviri septemvirs septenar septenarian septenaries septenarii septenarius septenariuses septenary septenate septendecennial septendecillion septendecillions septendecillionth septendecillionths septendecimal septennary septennate septennates septennia septenniad septennial septennialist septenniality septennially septennium septenous septentrial septentrion septentrional septentrionalis septentrionalises septentrionality septentrionally septentrionate septentriones septentrionic septentrions septerium septet septets septette septettes septfoil septic septicaemia septicaemias septicaemic septical septically septicemia septicemias septicemic septicidal septicidally septicide septicisation septicities septicity septicization septicolored septicoloured septicopyemia septicopyemic septics septier septifarious septiferous septifluous septifolious septiform septifragal septifragally septilateral septile septillion septillions septillionth septillionths septimal septimana septimanae septimanal septimanarian septime septimes septimetritis septimole septimoles septinsular septipartite septisyllabic septisyllable septivalent septleva septlevas septobasidiaceae septobasidium septocosta septocylindrical septodiarrhea septogerm septoic septole septolet septomarginal septomaxillary septonasal septotomy septrional septs septship septuagenarian septuagenarianism septuagenarians septuagenaries septuagenary septuagesima septuagesimal septuagint septula septulate septulum septum septums septuncial septuor septuors septuple septupled septuples septuplet septuplets septuplicate septuplication septupling septuply sepuchral sepulcher sepulchered sepulchering sepulchers sepulchral sepulchralise sepulchralize sepulchrally sepulchre sepulchred sepulchres sepulchring sepulchrous sepult sepultural sepulture sepultured sepultures sepulturing seq seqed seqence seqfchk seqq seqrch sequa sequaces sequacious sequaciously sequaciousness sequaciousnesses sequacities sequacity sequel sequela sequelae sequelant sequella sequels sequence sequenced sequencer sequencers sequences sequencies sequencing sequencings sequency sequent sequential sequentialise sequentialised sequentialises sequentialising sequentialities sequentiality sequentialize sequentialized sequentializes sequentializing sequentially sequentialness sequently sequents sequest sequester sequestered sequestering sequesterment sequesters sequestra sequestrable sequestral sequestrant sequestrants sequestrate sequestrated sequestrates sequestrating sequestration sequestrations sequestrator sequestrators sequestratrices sequestratrix sequestrectomy sequestrotomy sequestrum sequestrums sequin sequined sequining sequinned sequins sequitur sequiturs sequoia sequoiadendron sequoias seqwl ser sera serab serac seracs serafile serafiles serafin serafins seragli seraglio seraglios serahuli serai serail serails seraing serais seral seralbumen seralbumin seralbuminous serang serangs serape serapes seraph seraphic seraphical seraphically seraphicalness seraphicism seraphicness seraphim seraphims seraphin seraphina seraphine seraphines seraphins seraphism seraphlike seraphs seraphtide serapis serasker seraskerate seraskier seraskierat seraskierate seraskierates seraskiers serau seraw serax seraya serb serbia serbian serbians serbonian sercial sercom serdab serdabs sere sered sereh serein sereins serement serena serenade serenaded serenader serenaders serenades serenading serenata serenatas serenate serenates serendibite serendipities serendipitist serendipitists serendipitous serendipitously serendipity serendite serene serened serenely sereneness serenenesses serener serenes sereness serenest serenify serening serenise serenissime serenissimi serenissimo serenities serenity serenize sereno serenoa serer seres serest sereward serf serfage serfages serfdom serfdoms serfhood serfhoods serfish serfishly serfishness serfism serflike serfs serfship serfships serg serge sergeancies sergeancy sergeant sergeantcies sergeantcy sergeantess sergeantfish sergeantfishes sergeanties sergeantry sergeants sergeantship sergeantships sergeanty serged sergedesoy sergedusoy sergelim serger sergers serges sergette serging sergings sergipe serglobulin sergt serial serialisability serialisable serialisation serialisations serialise serialised serialises serialising serialism serialisms serialist serialists serialities seriality serializability serializable serialization serializations serialize serialized serializes serializing serially serials seriary seriate seriated seriately seriates seriatim seriating seriation seriations seriaunt seric sericate sericated sericea sericeotomentose sericeous sericicultural sericiculture sericicultures sericiculturist sericiculturists sericin sericins sericipary sericite sericites sericitic sericitisation sericitisations sericitization sericitizations sericocarpus sericon sericons sericteria sericteries sericterium serictery serictteria sericultural sericulture sericultures sericulturist sericulturists seriema seriemas series serieswound serif serifed seriffed serific seriform serifs serigraph serigrapher serigraphers serigraphic serigraphies serigraphs serigraphy serimeter serimpi serin serine serines serinette serinettes sering seringa seringal seringas seringhi serins serinus serio seriocomedy seriocomic seriocomical seriocomically seriogrotesque seriola serioline serioludicrous seriopantomimic serioridiculous seriosities seriosity serioso serious seriously seriousness seriousnesses seriph seriphidium seriphs seriphus seriplane seripositor serjeancies serjeancy serjeant serjeantcies serjeantcy serjeanties serjeantries serjeantry serjeants serjeantship serjeantships serjeanty serk serkali serkalis serks serment sermo sermocination sermocinatrix sermon sermonary sermoned sermoneer sermoneers sermoner sermoners sermonesque sermonet sermonets sermonette sermonettes sermonettino sermonic sermonical sermonically sermonics sermoning sermonings sermonise sermonised sermoniser sermonisers sermonises sermonish sermonising sermonism sermonist sermonize sermonized sermonizer sermonizers sermonizes sermonizing sermonless sermonoid sermonolatry sermonology sermonproof sermons sermonwise sermuncle sernamby sero seroalbumin seroalbuminuria seroanaphylaxis serobiological serocolitis seroconversion seroconversions seroconvert seroconverted seroconverting seroconverts serocyst serocystic serodermatosis serodermitis serodiagnoses serodiagnosis serodiagnostic seroenteritis seroenzyme serofibrinous serofibrous serofluid serogelatinous serograph serohemorrhagic serohepatitis seroimmunity serolactescent serolemma serolin serolipase serologic serological serologically serologies serologist serologists serology seromaniac seromembranous seromucous seromuscular seron seronegative seronegativities seronegativity serons seroon seroons seroot seroperitoneum serophthisis serophysiology seroplastic seropneumothorax seropositive seropositivities seropositivity seroprevention seroprognosis seroprophylaxis seroprotease seropuriform seropurulent seropus seropuses seroreaction seroresistant serosa serosae serosal serosanguineous serosanguinolent serosas seroscopy serose serosities serositis serosity serosynovial serosynovitis serotaxonomies serotaxonomy serotherapeutic serotherapeutics serotherapies serotherapist serotherapy serotina serotinal serotine serotines serotinous serotonergic serotonin serotoninergic serotonins serotoxin serotype serotyped serotypes serotyping serotypings serous serousness serovaccine serovar serovars serow serows serozem serozyme serpasil serpedinous serpent serpentaria serpentarium serpentariums serpentarius serpentary serpentcleide serpenteau serpented serpentes serpentess serpenticidal serpenticide serpentiferous serpentiform serpentile serpentin serpentina serpentine serpentined serpentinely serpentines serpenting serpentinic serpentining serpentiningly serpentinings serpentinisation serpentinisations serpentinise serpentinised serpentinises serpentinising serpentinite serpentinites serpentinization serpentinizations serpentinize serpentinized serpentinizes serpentinizing serpentinoid serpentinous serpentise serpentised serpentises serpentising serpentivorous serpentize serpentized serpentizes serpentizing serpentlike serpently serpentoid serpentries serpentry serpents serpentwood serpette serphid serphoid serpierite serpigines serpiginous serpiginously serpigo serpigoes serpivolant serpolet serpula serpulae serpulan serpulas serpulid serpulidan serpulids serpuline serpulite serpulites serpulitic serpuloid serr serra serradella serradilla serradillas serrae serrage serrai serran serrana serranid serranidae serranids serrano serranoid serranoids serranos serrans serranus serras serrasalmo serrasalmos serrasalmus serrate serrated serrates serrati serratia serratic serratiform serratile serrating serration serrations serratirostral serratocrenate serratodentate serratodenticulate serratoglandulous serratospinose serratula serratulate serrature serratures serratus serratuses serre serred serrefile serrefiles serrefine serres serricorn serried serriedly serriedness serriednesses serries serriferous serriform serring serriped serrirostrate serrs serrula serrulate serrulated serrulateed serrulation serrulations serrurerie serry serrying sers sert serta serting sertion sertive sertularia sertularian sertularians sertularioid sertularoid sertule sertulum sertum seruewe seruewed seruewes seruewing serule serum serumal serumdiagnosis serums serut serv servable servage serval servaline servals servant servantcy servantdom servanted servantess servanthood servanthoods servanting servantless servantlike servantries servantry servants servantship servantships servation serve served servente serventism server serveries servers servery serves servet servette servewe servewed servewes servewing serviable servian servibar servibars service serviceabilities serviceability serviceable serviceableness serviceablenesses serviceably serviceberries serviceberry serviced serviceless servicelessness serviceman servicemen servicepeople serviceperson servicepersons servicer servicers services servicewoman servicewomen servicing servidor servient serviential serviette serviettes servile servilely servileness servilenesses serviles servilise servilism servilisms servilities servility servilize serving servingman servings servist servite serviteur servitial servitium servitor servitorial servitors servitorship servitorships servitress servitresses servitrix servitude servitudes serviture servo servocontrol servocontrols servoed servoing servolab servomechanical servomechanically servomechanics servomechanism servomechanisms servomotor servomotors servos servosystem servotab servulate servus serwamby sesame sesames sesamin sesamine sesamoid sesamoidal sesamoiditis sesamoids sesamol sesamum sesban sesbania sescuncia sescuple sese seseli seselis sesey seskin sesma sesotho sesperal sesqui sesquialter sesquialtera sesquialteral sesquialteran sesquialteras sesquialterous sesquibasic sesquicarbonate sesquicarbonates sesquicentenaries sesquicentenary sesquicentennial sesquicentennially sesquicentennials sesquichloride sesquiduple sesquiduplicate sesquih sesquihydrate sesquihydrated sesquinona sesquinonal sesquioctava sesquioctaval sesquioxide sesquioxides sesquipedal sesquipedalia sesquipedalian sesquipedalianism sesquipedalianisms sesquipedalians sesquipedalism sesquipedalities sesquipedality sesquiplane sesquiplicate sesquiquadrate sesquiquarta sesquiquartal sesquiquartile sesquiquinta sesquiquintal sesquiquintile sesquisalt sesquiseptimal sesquisextal sesquisilicate sesquisquare sesquisulphate sesquisulphide sesquisulphides sesquisulphuret sesquiterpene sesquiterpenes sesquitertia sesquitertial sesquitertian sesquitertianal sesquitertias sess sessa sessed sesses sessile sessilities sessility session sessional sessionally sessionary sessions sesspool sesspools sesterce sesterces sestertia sestertium sestertius sestet sestets sestett sestette sestettes sestetto sestettos sestetts sesti sestia sestiad sestina sestinas sestine sestines sestole sestolet seston sestons sestuor set seta setaceous setaceously setae setal setaria setarid setarious setation setback setbacks setbolt setdown setenant setenants setfast seth sethead setier setiferous setiform setiger setigerous setioerr setiparous setirostral setline setlines setling setness setnesses setnet setoff setoffs seton setons setophaga setophagine setose setous setout setouts setover setpfx setpoint setpoints sets setscrew setscrews setsman setsquare setsquares setswana sett settable settaine settecento settecentos setted settee settees setter settered settergrass settering setters setterwort setterworts settima settimo setting settings settle settleability settleable settled settledly settledness settlednesses settlement settlements settler settlerdom settlers settles settling settlings settlor settlors settos setts settsman setuale setuales setuid setula setulae setule setules setuliform setulose setulous setup setups setwall setwalls setwise setwork setworks seudah seugh seuora seuorita seuoritas sevastopol seve seven sevenbark sevener sevenfold sevenfolded sevenfoldness sevennight sevenpence sevenpences sevenpennies sevenpenny sevens sevenscore sevensome seventeen seventeenfold seventeens seventeenth seventeenthly seventeenths seventh seventhly sevenths seventies seventieth seventieths seventy seventyfold sever severabilities severability severable several severalfold severalise severality severalization severalize severalized severalizing severally severalness severals severalth severalties severalty severance severances severate severation severe severed severedly severely severeness severenesses severer severers severest severies severing severingly severisation severise severish severities severity severization severize severs severy seviche seviches sevier sevillanas seville sevres sevruga sevrugas sevum sew sewabilities sewability sewable sewage sewages sewan sewans sewar sewars sewed sewel sewellel sewellels sewels sewen sewens sewer sewerage sewerages sewered sewering sewerings sewerless sewerlike sewerman sewers sewery sewin sewing sewings sewins sewless sewn sewround sews sewster sex sexadecimal sexagenarian sexagenarianism sexagenarians sexagenaries sexagenary sexagene sexagesima sexagesimal sexagesimally sexagesimals sexagonal sexangle sexangled sexangular sexangularly sexannulate sexarticulate sexavalent sexcentenaries sexcentenary sexcuspidate sexdecillion sexdecillions sexdigital sexdigitate sexdigitated sexdigitism sexduction sexductions sexed sexenary sexennial sexennially sexennials sexennium sexer sexern sexers sexes sexfarious sexfid sexfoil sexfoils sexhood sexier sexiest sexifid sexillion sexily sexiness sexinesses sexing sexiped sexipolar sexism sexisms sexist sexists sexisyllabic sexisyllable sexitubercular sexivalence sexivalency sexivalent sexless sexlessly sexlessness sexlessnesses sexlike sexlocular sexly sexologic sexological sexologies sexologist sexologists sexology sexpartite sexpert sexperts sexploitation sexploitations sexpot sexpots sexradiate sext sextactic sextain sextains sextan sextans sextanses sextant sextantal sextants sextar sextarii sextarius sextary sextennial sextern sextet sextets sextett sextette sextettes sextetts sextic sextile sextiles sextillion sextillions sextillionth sextillionths sextipara sextipartite sextipartition sextiply sextipolar sexto sextodecimo sextodecimos sextole sextolet sextolets sexton sextoness sextonesses sextons sextonship sextonships sextos sextry sexts sextubercular sextuberculate sextula sextulary sextumvirate sextuor sextuors sextuple sextupled sextuples sextuplet sextuplets sextuplex sextuplicate sextuplicated sextuplicates sextuplicating sextupling sextuply sextur sextus sexual sexuale sexualisation sexualisations sexualise sexualised sexualises sexualising sexualism sexualisms sexualist sexualists sexualities sexuality sexualization sexualizations sexualize sexualized sexualizes sexualizing sexually sexuous sexupara sexuparous sexvalent sexy sey seybertite seychelles seychellois seyen seyens seymour seys seysure seysures sez sezession sf sfax sferics sfm sfogato sfoot sforzandi sforzando sforzandos sforzati sforzato sforzatos sfree sfumato sfumatos sfz sg sgabelli sgabello sgabellos sgd sgml sgraffiato sgraffiti sgraffito sh sha shaatnez shab shabandar shabash shabbat shabbed shabbier shabbiest shabbify shabbily shabbiness shabbinesses shabble shabbles shabbos shabby shabbyish shabeque shabrack shabracks shabracque shabracques shabroon shabunder shabuoth shachle shachly shack shackanite shackatory shackbolt shacked shacker shacking shackings shackland shackle shacklebone shacklebones shackled shackledom shackler shacklers shackles shacklewise shackling shackly shacko shackoes shackos shacks shacky shad shadbelly shadberries shadberry shadbird shadblow shadblows shadbush shadbushes shadchan shadchanim shadchans shadchen shaddock shaddocks shade shaded shadeful shadeless shadelessness shader shaders shades shadetail shadflies shadflower shadfly shadier shadiest shadily shadine shadiness shadinesses shading shadings shadkan shadkhan shadkhanim shadkhans shado shadoof shadoofs shadow shadowable shadowbox shadowboxed shadowboxes shadowboxing shadowboxings shadowcast shadowcasted shadowcasting shadowcastings shadowcasts shadowed shadower shadowers shadowfoot shadowgram shadowgraph shadowgraphic shadowgraphies shadowgraphist shadowgraphs shadowgraphy shadowier shadowiest shadowily shadowiness shadowinesses shadowing shadowings shadowishly shadowist shadowland shadowless shadowlessness shadowlike shadowly shadows shadowy shadrach shadrachs shads shaduf shadufs shady shaffle shafii shafiite shaft shafted shafter shafters shaftfoot shafting shaftings shaftless shaftlike shaftman shaftment shafts shaftsman shaftway shafty shag shaganappi shaganappy shagbag shagbark shagbarks shagbush shagged shaggedness shaggednesses shagger shaggers shaggier shaggiest shaggily shagginess shagginesses shagging shaggy shaggycap shaggymane shaggymanes shaglet shaglike shagpate shagpile shagrag shagreen shagreened shagreens shagroon shagroons shags shagtail shah shahaptian shaharit shaharith shahdom shahdoms shahee shaheen shahi shahidi shahin shahs shahzada shahzadah shahzadi shaikh shaikha shaikhas shaikhi shaikhs shaird shairds shairn shairns shaitan shaitans shakable shakably shake shakeable shakebly shaked shakedown shakedowns shakefork shaken shakenly shakeout shakeouts shakeproof shaker shakerag shakerism shakers shakes shakescene shakespeare shakespearean shakespeareana shakespeareans shakespearian shakeup shakeups shakha shakier shakiest shakily shakiness shakinesses shaking shakingly shakings shako shakoes shakos shaksheer shakspere shaksperean shaksperian shakt shakta shakti shaktis shaktism shaktist shaku shakudo shakudos shakuhachi shakuhachis shaky shalder shale shaled shalee shalelike shaleman shales shaley shalier shaliest shaling shall shallal shalli shallis shallon shallons shalloon shalloons shallop shallops shallopy shallot shallots shallow shallowbrain shallowbrained shallowed shallower shallowest shallowhearted shallowing shallowings shallowish shallowist shallowly shallowness shallownesses shallowpate shallowpated shallows shallowy shallu shallus shally shalm shalms shalom shaloms shalot shalots shalt shalwar shalwars shaly sham shama shamable shamableness shamably shamal shamalo shaman shamaness shamanic shamanism shamanisms shamanist shamanistic shamanists shamanize shamans shamas shamash shamashim shamateur shamateurism shamateurisms shamateurs shamba shambas shamble shambled shambles shamblier shambliest shambling shamblingly shamblings shambly shambolic shambrier shame shameable shamed shameface shamefaced shamefacedly shamefacedness shamefacednesses shamefast shamefastly shamefastness shamefastnesses shameful shamefully shamefulness shamefulnesses shameless shamelessly shamelessness shamelessnesses shameproof shamer shamers shames shamesick shameworthy shamiana shamianah shamianahs shamianas shaming shamir shamisen shamisens shamiyanah shamiyanahs shammas shammash shammashi shammashim shammasim shammed shammer shammers shammes shammick shammied shammies shamming shammish shammock shammocking shammocky shammos shammosim shammy shammying shamois shamos shamosim shamoy shamoyed shamoying shamoys shampoo shampooed shampooer shampooers shampooing shampoos shamrock shamrocks shamroot shams shamsheer shamshir shamus shamuses shan shanachas shanachie shanachies shanachus shand shandean shandies shandite shandries shandry shandrydan shandrydans shands shandy shandygaff shandygaffs shangan shanghai shanghaied shanghaier shanghaiers shanghaiing shanghais shangy shank shankbone shankbones shanked shanker shanking shankings shankpiece shankpieces shanks shanksman shanna shannies shanny shans shansa shant shantey shanteys shanti shantied shanties shantih shantihs shantis shantung shantungs shanty shantying shantylike shantyman shantymen shantytown shantytowns shap shapable shape shapeable shaped shapeful shapeless shapelessly shapelessness shapelessnesses shapelier shapeliest shapeliness shapelinesses shapely shapen shaper shapers shapes shapeshifter shapesmith shapeup shapeups shapier shapiest shaping shapingly shapings shapka shapometer shapoo shaps shaptin shapy sharable sharawadgi sharawadgis sharawaggi sharawaggis shard sharded sharding shards shardy share shareabilities shareability shareable sharebone sharebroker sharecrop sharecroped sharecroping sharecropped sharecropper sharecroppers sharecropping sharecrops shared shareef sharefarmer sharefarmers shareholder shareholders shareholdership shareholding shareholdings shareman sharemen sharemilker sharemilkers shareown shareowner sharepenny sharer sharers shares shareship sharesman sharesmen shareware sharewares sharewort shargar sharger shargoss sharia shariah sharias shariat shariats sharif sharifian sharifs sharing sharings shark sharked sharker sharkers sharkful sharki sharking sharkings sharkish sharkishly sharkishness sharklet sharklike sharks sharkship sharkskin sharkskins sharksucker sharksuckers sharky sharn sharnbud sharnbug sharnier sharniest sharns sharny sharon sharp sharpbill sharped sharpen sharpened sharpener sharpeners sharpening sharpens sharper sharpers sharpest sharpie sharpies sharping sharpings sharpish sharpite sharpling sharply sharpness sharpnesses sharps sharpsaw sharpshin sharpshod sharpshoot sharpshooter sharpshooters sharpshooting sharpshootings sharpster sharptail sharpware sharpy sharrag sharry shash shashed shashes shashing shashlick shashlicks shashlik shashliks shaslick shaslik shasliks shasta shastaite shastan shaster shasters shastra shastracara shastraik shastras shastri shastrik shat shatan shathmont shatter shatterable shatterbrain shatterbrained shattered shatterer shatterers shatterheaded shattering shatteringly shatterment shatterpated shatterproof shatters shatterwit shattery shattuckite shauchle shauchled shauchles shauchlier shauchliest shauchling shauchly shaugh shaughs shaul shauled shauling shauls shaup shauri shauwe shavable shave shaveable shaved shavee shavegrass shaveling shavelings shaven shaver shavers shavery shaves shavester shavetail shavetails shaveweed shavian shavians shavie shavies shaving shavings shavous shavuot shavuoth shaw shawabti shawed shawfowl shawing shawl shawled shawley shawleys shawlie shawlies shawling shawlings shawlless shawllike shawls shawlwise shawm shawms shawn shawnee shawnees shawneewood shawny shaws shawwal shawy shay shaya shayas shayed shaykh shaykhs shays shazam shchi shchis she shea sheading sheadings sheaf sheafage sheafed sheafier sheafiest sheafing sheaflike sheafripe sheafs sheafy sheal shealed shealing shealings sheals shear shearbill sheard sheared shearer shearers sheargrass shearhog shearing shearings shearleg shearlegs shearless shearling shearlings shearman shearmen shearmouse shears shearsman sheartail shearwater shearwaters sheas sheat sheatfish sheatfishes sheath sheathbill sheathbills sheathe sheathed sheather sheathers sheathery sheathes sheathfish sheathfishes sheathier sheathiest sheathing sheathings sheathless sheathlike sheaths sheathy sheave sheaved sheaveless sheaveman sheaves sheaving shebang shebangs shebar shebat shebean shebeans shebeen shebeened shebeener shebeeners shebeening shebeenings shebeens shechita shechitah shechitahs shechitas shecklaton shecklatons shed shedable sheddable shedded shedder shedders shedding sheddings sheder shedhand shedhands shedim shedlike shedman shedrow shedrows sheds shedu shedwise shee sheefish sheefishes sheel sheeled sheeling sheelings sheels sheely sheen sheened sheeney sheeneys sheenful sheenie sheenier sheenies sheeniest sheening sheenless sheenly sheens sheeny sheep sheepback sheepbacks sheepbell sheepberries sheepberry sheepbine sheepbiter sheepbiting sheepcot sheepcote sheepcotes sheepcots sheepcrook sheepdip sheepdog sheepdogs sheepfaced sheepfacedly sheepfacedness sheepfold sheepfolds sheepfoot sheepfoots sheepgate sheephead sheepheaded sheepheads sheephearted sheepherder sheepherders sheepherding sheepherdings sheephook sheephouse sheepier sheepiest sheepified sheepify sheepifying sheepish sheepishly sheepishness sheepishnesses sheepkeeper sheepkeeping sheepkill sheepless sheeplet sheeplike sheepling sheepman sheepmaster sheepmen sheepmint sheepmonger sheepnose sheepnut sheepo sheepos sheeppen sheeprun sheepshank sheepshanks sheepshead sheepsheadism sheepsheads sheepshear sheepshearer sheepshearers sheepshearing sheepshearings sheepshed sheepskin sheepskins sheepsplit sheepsteal sheepstealer sheepstealing sheeptick sheepwalk sheepwalker sheepwalks sheepweed sheepy sheer sheered sheerer sheerest sheering sheerleg sheerlegs sheerly sheerness sheernesses sheers sheesh sheet sheetage sheeted sheeter sheeters sheetfed sheetflood sheetful sheetier sheetiest sheeting sheetings sheetless sheetlet sheetlike sheetling sheetrock sheetrocked sheetrocking sheetrocks sheets sheetwash sheetways sheetwise sheetwork sheetwriting sheety sheeve sheeves sheffield shegets shegetz shehita shehitah shehitahs shehitas sheik sheika sheikas sheikdom sheikdoms sheikh sheikha sheikhas sheikhdom sheikhdoms sheikhlike sheikhly sheikhs sheiklike sheikly sheiks sheila sheilas sheiling sheilings sheitan sheitans sheitel sheitlen shekel shekels shekinah shela shelah sheld sheldapple sheldduck sheldducks shelder sheldfowl sheldrake sheldrakes shelduck shelducks shelf shelfback shelfed shelffellow shelfful shelffuls shelfier shelfiest shelfing shelflike shelflist shelfmate shelfpiece shelfroom shelfrooms shelfs shelftalker shelftalkers shelfworn shelfy shell shellac shellacked shellacker shellackers shellacking shellackings shellacs shellak shellapple shellback shellbacks shellbark shellbarks shellblow shellblowing shellbound shellburst shellcracker shellcrackers shelldrake shelldrakes shellduck shellducks shelleater shelled sheller shellers shelley shelleyan shelleyesque shellfire shellfires shellfish shellfisheries shellfishery shellfishes shellfishing shellfishings shellflower shellful shellfuls shellhead shellier shelliest shelliness shellinesses shelling shellings shellman shellmen shellmonger shellpad shellpot shellproof shells shellshake shellshock shellshocked shellshocks shellum shellwork shellworker shellworks shelly shellycoat shellycoats shelta sheltas shelter shelterage shelterbelt shelterbelts sheltered shelterer shelterers sheltering shelteringly shelterings shelterless shelterlessness shelters shelterwood sheltery sheltie shelties sheltron shelty shelve shelved shelver shelvers shelves shelvier shelviest shelving shelvingly shelvingness shelvings shelvy shem shema shemaal sheminith shemite shemozzle shemozzled shemozzles shemozzling shenanigan shenanigans shend shendful shending shends sheng shent shenyang sheogue sheol sheolic sheols shepard shepherd shepherdage shepherddom shepherded shepherdess shepherdesses shepherdhood shepherding shepherdise shepherdish shepherdism shepherdize shepherdless shepherdlike shepherdling shepherdlings shepherdly shepherdry shepherds shepherdy sheppeck shepperding sheppey sheppherded sheppick shepstare shepster sheqalim sheqel sher sherardise sherardised sherardises sherardising sherardize sherardized sherardizer sherardizes sherardizing sheraton sherbacha sherbert sherberts sherbet sherbetlee sherbets sherbetzide sherd sherds shere shereef shereefian shereefs shergottite shergottites sheria sherias sheriat sheriats sherif sherifa sherifate sheriff sheriffalties sheriffalty sheriffcies sheriffcy sheriffdom sheriffdoms sheriffess sheriffhood sheriffry sheriffs sheriffship sheriffships sheriffwick sherifi sherifian sherifs sherify sheristadar sherlock sherlocks sheroot sheroots sherpa sherpas sherries sherris sherrises sherry sherryvallies sherwani sherwanis shes shet sheth shetland shetlands shets shetting sheuch sheuched sheuching sheuchs sheugh sheughed sheughing sheughs sheva shevas shevat shevel sheveled sheveret shevri shew shewa shewbread shewbreads shewed shewel shewels shewer shewers shewing shewn shews sheygets sheyle shf shfsep shh shi shia shiah shiai shiatsu shiatsus shiatzu shiatzus shibah shibahs shibar shibbeen shibboleth shibbolethic shibboleths shibuichi shibuichis shice shicer shick shicker shickered shickers shicksa shicksas shidder shidders shidduch shidduchim shide shied shiel shield shieldable shieldboard shielddrake shielded shielder shielders shieldfern shieldflower shielding shieldings shieldless shieldlessly shieldlessness shieldlike shieldling shieldlings shieldmaker shieldmay shieldrake shieldrakes shields shieldtail shielduck shielducks shieldwall shieldwalls shieled shieling shielings shiels shier shiers shies shiest shift shiftability shiftable shiftage shifted shifter shifters shiftful shiftfulness shiftier shiftiest shiftily shiftiness shiftinesses shifting shiftingly shiftingness shiftings shiftless shiftlessly shiftlessness shiftlessnesses shiftman shifts shiftwork shifty shigella shigellae shigellas shigelloses shigellosis shiggaion shigionoth shigram shih shiism shiitake shiitakes shiite shikar shikara shikaree shikarees shikargah shikari shikaris shikarred shikarring shikars shikasta shikii shikimi shikimic shikimol shikimole shikimotoxin shikken shikker shikkers shiko shikoku shikra shiksa shiksas shikse shikseh shiksehs shikses shilf shilfa shilingi shill shilla shillaber shillabers shillala shillalah shillalahs shillalas shilled shillelagh shillelaghs shillelah shiller shillet shillety shillhouse shillibeer shilling shillingless shillings shillingsworth shillingsworths shilloo shills shilluk shilly shillyshallied shillyshallier shillyshallies shillyshally shillyshallyer shillyshallying shiloh shilpit shilpits shily shim shimaal shimaals shimal shimmed shimmer shimmered shimmering shimmeringly shimmerings shimmers shimmery shimmey shimmeys shimmied shimmies shimming shimmy shimmying shimose shimozzle shimozzles shimper shims shin shina shinaniging shinarump shinbone shinbones shindies shindig shindigs shindle shindy shindys shine shined shineless shiner shiners shines shiness shinesses shingle shingled shingler shinglers shingles shinglewise shinglewood shinglier shingliest shingling shinglings shingly shingon shinguard shinier shinies shiniest shinily shininess shininesses shining shiningly shiningness shiningnesses shinkin shinleaf shinleafs shinleaves shinne shinned shinner shinneries shinnery shinnes shinney shinneyed shinneying shinneys shinnied shinnies shinning shinny shinnying shinpad shinplaster shinplasters shins shinsplints shintai shinties shintiyan shinto shintoism shintoist shintoistic shintoists shinty shintyan shinwood shiny shinza ship shipboard shipboards shipborne shipbound shipboy shipbreaking shipbroken shipbroker shipbrokers shipbuild shipbuilder shipbuilders shipbuilding shipbuildings shipcraft shipentine shipferd shipfitter shipfitters shipful shipfuls shiphire shipholder shipkeeper shiplap shiplapped shiplapping shiplaps shiplaster shipless shiplessly shiplet shipload shiploads shipman shipmanship shipmast shipmaster shipmasters shipmate shipmates shipmatish shipmen shipment shipments shipowner shipowners shipowning shippable shippage shipped shippen shippens shipper shippers shipping shippings shipplane shippo shippon shippons shippos shippound shippounds shippy shiprade ships shipshape shipshapely shipside shipsides shipsmith shipt shipward shipwards shipway shipways shipwork shipworm shipworms shipwreck shipwrecked shipwrecking shipwrecks shipwrecky shipwright shipwrightery shipwrightry shipwrights shipyard shipyards shir shirakashi shiralee shiralees shirallee shiraz shire shirehouse shireman shiremen shires shirewick shirk shirked shirker shirkers shirking shirks shirky shirl shirlcock shirley shirpit shirr shirra shirralee shirralees shirras shirred shirrel shirring shirrings shirrs shirs shirt shirtband shirtbands shirtdress shirtdresses shirted shirtfront shirtfronts shirtier shirtiest shirtily shirtiness shirtinesses shirting shirtings shirtless shirtlessness shirtlifter shirtlifters shirtlike shirtmake shirtmaker shirtmakers shirtmaking shirtman shirtmen shirts shirtsleeve shirtsleeved shirtsleeves shirttail shirttails shirtwaist shirtwaister shirtwaisters shirtwaists shirty shish shisham shishya shisn shist shists shit shita shitake shitakes shited shitepoke shitfaced shithead shitheads shitheel shither shithole shitholes shiting shitkicker shitkickers shitless shitlist shitlists shitload shitloads shits shittah shittahs shitted shitten shittier shittiest shittim shittims shittimwood shittimwoods shittiness shittinesses shitting shittle shitty shiv shiva shivah shivahs shivaism shivaist shivaree shivareed shivareeing shivarees shivas shive shiver shivered shivereens shiverer shiverers shiverier shiveriest shivering shiveringly shiverings shiverproof shivers shiversome shiverweed shivery shives shivey shiviti shivitis shivoo shivoos shivs shivved shivving shivvy shivy shivzoku shizoku shkotzim shlemiehl shlemiehls shlemiel shlemiels shlemozzle shlemozzled shlemozzles shlemozzling shlep shlepp shlepped shlepper shleppers shlepping shlepps shleps shlimazel shlimazels shlimazl shlock shlockmeister shlocks shlocky shlub shlubs shlump shlumped shlumping shlumps shlumpy shmaltzier shmaltziest shmaltzy shmatte shmattes shmear shmears shmeer shmek shmeks shmo shmock shmocks shmoes shmoose shmoosed shmooses shmoosing shmooze shmoozed shmoozes shmoozing shmuck shmucks shnaps shnook shnooks shnorrer shnorrers sho shoad shoader shoal shoalbrain shoaled shoaler shoalest shoalier shoaliest shoaliness shoaling shoalings shoalness shoalnesses shoals shoalwise shoaly shoat shoats shochet shochetim shochets shock shockabilities shockability shockable shocked shockedness shocker shockers shockhead shockheaded shockheadedness shocking shockingly shockingness shockingnesses shocklike shockproof shocks shockstall shockstalls shockwave shod shodden shoddied shoddier shoddies shoddiest shoddily shoddiness shoddinesses shoddy shoddydom shoddying shoddyism shoddyite shoddylike shoddyward shoddywards shode shoder shoders shoe shoebill shoebills shoebinder shoebindery shoebinding shoebird shoeblack shoeblacks shoebox shoeboxes shoeboy shoebrush shoebuckle shoecraft shoed shoeflower shoeful shoehorn shoehorned shoehorning shoehorns shoeing shoeings shoeingsmith shoelace shoelaces shoeless shoemake shoemaker shoemakers shoemaking shoemakings shoeman shoemold shoepac shoepack shoepacks shoepacs shoer shoers shoes shoescraper shoeshine shoeshines shoeshop shoesmith shoestring shoestrings shoetree shoetrees shoewoman shofar shofars shoffroth shofroth shoful shog shogaol shogged shoggie shogging shoggle shoggled shoggles shogglier shoggliest shoggling shoggly shogi shogis shogs shogun shogunal shogunate shogunates shoguns shohet shohji shohjis shoji shojis shola sholas shole sholom sholoms shonde shone shoneen shoneens shonkier shonkiest shonkinite shonky shoo shood shooed shoofa shooflies shoofly shoogie shoogied shoogieing shoogies shoogle shoogled shoogles shooglier shoogliest shoogling shoogly shooi shooing shook shooks shool shooldarry shoole shooled shooler shooles shooling shools shoon shoop shoopiltie shoor shoos shoot shootable shootboard shootee shooter shooters shoother shooting shootings shootist shootists shootman shootout shootouts shoots shop shopaholic shopaholics shopboard shopboards shopbook shopboy shopboys shopbreaker shopbreakers shopbreaking shopbreakings shope shopfitter shopfitters shopfitting shopfolk shopfront shopfronts shopful shopfuls shopgirl shopgirlish shopgirls shophar shophars shophroth shopkeep shopkeeper shopkeeperess shopkeeperish shopkeeperism shopkeepers shopkeepery shopkeeping shopkeepings shopland shoplet shoplift shoplifted shoplifter shoplifters shoplifting shopliftings shoplifts shoplike shopmaid shopman shopmark shopmate shopmen shopocracy shopocrat shoppe shopped shopper shoppers shoppes shoppier shoppiest shopping shoppings shoppini shoppish shoppishness shoppy shops shopsoiled shopster shoptalk shoptalks shopwalker shopwalkers shopwear shopwife shopwindow shopwindows shopwoman shopwomen shopwork shopworker shopworn shoq shor shoran shorans shore shorea shoreberry shorebird shorebirds shorebush shored shoreface shorefish shorefront shorefronts shoregoing shoreland shoreless shoreline shorelines shoreman shoremen shorer shorers shores shoreside shoresman shoresmen shoreward shorewards shoreweed shoreweeds shoreyer shoring shorings shorl shorling shorls shorn short shortage shortages shortarm shortbread shortbreads shortcake shortcakes shortchange shortchanged shortchanger shortchangers shortchanges shortchanging shortclothes shortcoat shortcomer shortcoming shortcomings shortcrust shortcut shortcuts shortcutting shorted shorten shortened shortener shorteners shortening shortenings shortens shorter shortest shortfall shortfalls shortgown shortgowns shortgrass shortgrasses shorthair shorthaired shorthairs shorthand shorthanded shorthandedness shorthander shorthands shorthandwriter shorthead shortheaded shortheels shorthold shorthorn shorthorns shortia shortias shortie shorties shorting shortish shortite shortliffe shortlist shortlisted shortlisting shortlists shortly shortness shortnesses shorts shortschat shortsighted shortsightedly shortsightedness shortsightednesses shortsome shortstaff shortstop shortstops shortsword shortswords shorttail shortwave shortwaves shorty shoshone shoshonean shoshoni shoshonian shoshonis shoshonite shot shotbush shotcrete shote shotes shotfirer shotfirers shotgun shotgunned shotgunner shotgunners shotgunning shotguns shothole shotholes shotless shotlike shotmaker shotmakers shotmaking shotmakings shotman shotproof shotput shotputs shots shotshell shotsman shotstar shott shotte shotted shotten shotter shottes shotting shottle shottles shotts shotty shou shough shoughs should shoulder shouldered shoulderer shoulderette shouldering shoulderings shoulders shouldest shouldn shouldna shouldnt shouldst shoulerd shoupeltin shouse shout shouted shouter shouters shouther shouthered shouthering shouthers shouting shoutingly shoutings shoutline shoutlines shouts shoval shove shoved shovegroat shovel shovelard shovelbill shovelboard shovelboards shoveled shoveler shovelers shovelfish shovelful shovelfuls shovelhead shovelheads shoveling shovelled shoveller shovellers shovelling shovelmaker shovelman shovelnose shovelnoses shovels shovelsful shovelweed shover shovers shoves shoving show showable showance showbird showbiz showbizzes showbizzy showboard showboat showboated showboater showboaters showboating showboats showbox showboxes showbread showbreads showcase showcased showcases showcasing showd showdom showdown showdowns showed shower showered showerer showerers showerful showerhead showerheads showerier showeriest showeriness showerinesses showering showerings showerless showerlike showerproof showers showery showfolk showful showghe showghes showgirl showgirls showground showgrounds showier showiest showily showiness showinesses showing showings showish showjumper showjumpers showjumping showjumpings showless showman showmanism showmanly showmanry showmanship showmanships showmen shown showoff showoffishness showoffs showpiece showpieces showplace showplaces showring showrings showroom showrooms shows showshop showstopper showstoppers showstopping showtime showtimes showup showworthy showy showyard showyards shoya shoyu shoyus shp shpilkes shpt shr shrab shradd shraddha shraddhas shradh shraf shrag shram shrame shrammed shrank shrap shrape shrapnel shrapnels shrave shravey shreadhead shreading shred shredcock shreddable shredded shredder shredders shreddier shreddiest shredding shreddings shreddy shredless shredlike shreds shree shreek shreeked shreeking shreeks shreeve shreik shreiked shreiking shreiks shrend shreveport shrew shrewd shrewder shrewdest shrewdie shrewdies shrewdish shrewdly shrewdness shrewdnesses shrewdom shrewdy shrewed shrewing shrewish shrewishly shrewishness shrewishnesses shrewlike shrewly shrewmice shrewmmice shrewmouse shrews shrewsbury shrewstruck shri shride shriech shrieched shrieches shrieching shriek shrieked shrieker shriekers shriekery shriekier shriekiest shriekily shriekiness shrieking shriekingly shriekings shriekproof shrieks shrieky shrieval shrievalties shrievalty shrieve shrieved shrieves shrieving shrift shriftless shriftlessness shrifts shright shrights shrike shriked shrikes shriking shrill shrilled shriller shrillest shrillier shrilliest shrilling shrillings shrillish shrillness shrillnesses shrills shrilly shrimp shrimped shrimper shrimpers shrimpfish shrimpi shrimpier shrimpiest shrimpiness shrimping shrimpings shrimpish shrimpishness shrimplike shrimps shrimpton shrimpy shrinal shrine shrined shrineless shrinelet shrinelike shrines shrining shrink shrinkable shrinkage shrinkageproof shrinkages shrinker shrinkerg shrinkers shrinkhead shrinking shrinkingly shrinkingness shrinkpack shrinkpacks shrinkproof shrinks shrinkwrap shrinkwrapped shrinkwrapping shrinkwraps shrinky shrip shris shritch shritched shritches shritching shrite shrive shrived shrivel shriveled shriveling shrivelled shrivelling shrivels shriven shriver shrivers shrives shriving shrivings shroff shroffage shroffages shroffed shroffing shroffs shrog shrogs shropshire shroud shrouded shroudier shroudiest shrouding shroudings shroudless shroudlike shrouds shroudy shrove shroved shrover shroves shrovetide shroving shrovy shrow shrowd shrowed shrowing shrows shrrinkng shrub shrubbed shrubberied shrubberies shrubbery shrubbier shrubbiest shrubbiness shrubbinesses shrubbing shrubbish shrubby shrubland shrubless shrublet shrublike shrubs shrubwood shruff shrug shrugged shrugging shruggingly shrugs shrunk shrunken shrups shruti sht shtchee shtchi shtchis shtetel shtetelach shtetels shtetl shtetlach shtetls shtg shtick shticks shtik shtiks shtinker shtinkers shtook shtooks shtoom shtreimel shtuck shtucks shtum shtumm shtup shtupped shtupping shtups shua shuba shubunkin shubunkins shuck shucked shucker shuckers shucking shuckings shuckins shuckpen shucks shuckses shudder shuddered shudderful shudderiness shuddering shudderingly shudderings shudders shuddersome shuddery shudna shudra shuff shuffle shuffleboard shuffleboards shufflecap shuffled shuffler shufflers shuffles shufflewing shuffling shufflingly shufflings shufti shufties shuftis shufty shug shuggy shuha shul shule shuled shuler shules shuling shuln shuls shulwar shulwaurs shumac shumal shun shunamitism shunamitisms shune shunless shunnable shunned shunner shunners shunning shunpike shunpiked shunpiker shunpikers shunpikes shunpiking shunpikings shuns shunt shunted shunter shunters shunting shuntings shunts shuntwinding shura shuras shure shurf shurgee shush shushed shusher shushers shushes shushing shut shutdown shutdowns shute shuted shutes shuteye shuteyes shuting shutness shutoff shutoffs shutout shutouts shuts shuttance shutten shutter shutterbug shutterbugs shuttered shuttering shutterings shutterless shutters shutterwise shutting shuttle shuttlecock shuttlecocked shuttlecocking shuttlecocks shuttlecraft shuttled shuttleheaded shuttleless shuttlelike shuttler shuttlers shuttles shuttlewise shuttling shvartse shvartses shvartze shvartzes shwa shwanpan shwanpans shwas shwebo shy shydepoke shyer shyers shyest shying shyish shylock shylocked shylocking shylocks shyly shyness shynesses shypoo shyster shysters si siabon siabons siacalle siacle siacles siafu siak sial sialaden sialadenitis sialadenoncus sialagogic sialagogue sialagogues sialagoguic sialemesis sialia sialic sialid sialidae sialidan sialidans sialids sialis sialoangitis sialogenous sialogogic sialogogue sialogogues sialogram sialograms sialographies sialography sialoid sialolith sialolithiasis sialoliths sialology sialon sialons sialorrhea sialorrhoea sialorrhoeas sialoschesis sialosemeiology sialosis sialostenosis sialosyrinx sialozemia sials siam siamang siamangs siamese siamesed siameses siamesing siameze siamezed siamezes siamezing siamoise sian siauliai sib sibb sibbed sibbendy sibbens sibber sibbing sibboleth sibbs sibby siberia siberian siberians siberite sibilance sibilances sibilancies sibilancy sibilant sibilantly sibilants sibilate sibilated sibilates sibilating sibilatingly sibilation sibilations sibilator sibilators sibilatory sibilous sibilus sibine sibling siblings sibness sibrede sibs sibship sibships sibucao sibyl sibylesque sibylic sibylism sibylla sibyllae sibyllic sibylline sibyllism sibyllist sibyls sic sicarian sicarii sicarious sicarius sicc sicca siccan siccaneous siccant siccar siccate siccated siccating siccation siccative siccatives sicced siccimeter siccing siccities siccity sice sicer sices sich sicht sichuan sicilia sicilian siciliana sicilianas siciliane siciliano sicilianos sicilians sicilica sicilicum sicilienne siciliennes sicily sicinnian sick sickbay sickbays sickbed sickbeds sicked sickee sickees sicken sickened sickener sickeners sickening sickeningly sickeningness sickenings sickens sicker sickerly sickerness sickernesses sickest sicket sickhearted sickie sickies sicking sickish sickishly sickishness sickishnesses sickle sicklebill sicklebills sickled sicklelike sickleman sicklemen sicklemia sicklemias sicklemic sicklepod sickler sicklerite sickles sickless sickleweed sicklewise sicklewort sicklied sicklier sicklies sickliest sicklily sickliness sicklinesses sickling sickly sicklying sickness sicknesses sicknessproof sicknurse sicknurses sicknursing sicknursings sicko sickos sickout sickouts sickroom sickrooms sicks sicle siclike sics sicsac sicula sicular sida sidalcea sidalceas sidas sidder siddha siddhartha siddhas siddhi siddhis siddow siddur siddurim siddurs side sideage sidearm sidearms sideband sidebands sidebar sidebars sideboard sideboards sidebone sidebones sidebox sideburn sideburned sideburns sidecar sidecarist sidecars sidechair sidechairs sidecheck sidecutters sided sidedness sidednesses sidedress sidedresses sideflash sidehead sidehill sidehills sidehold sidekick sidekicker sidekicks sidelang sideless sidelight sidelights sideline sidelined sideliner sideliners sidelines sideling sidelings sidelingwise sidelining sidelins sidelock sidelocks sidelong sideman sidemen sideness sidenote sidenotes sidepath sidepaths sidepiece sidepieces sider sideral siderate siderated siderates siderating sideration siderations sidereal siderealise siderealize sidereally siderean siderin siderism siderite siderites sideritic sideritis sideroad sideroads sideroblast siderocyte siderognost siderographer siderographic siderographical siderographist siderography siderolite siderolites siderology sideroma sideromagnetic sideromancy sideromelane sideronatrite sideronym sideropenia sideropenias siderophile siderophiles siderophilic siderophilin siderophobia sideroscope siderose sideroses siderosilicosis siderosis siderostat siderostatic siderostats siderotechny siderotic siderous siders sidership siderurgical siderurgy sides sidesaddle sidesaddles sideshake sideshoot sideshoots sideshow sideshows sideslip sideslipped sideslipping sideslips sidesman sidesmen sidespin sidespins sidesplitter sidesplitting sidesplittingly sidest sidestep sidestepped sidestepper sidesteppers sidestepping sidesteps sidestick sidestream sidestreet sidestreets sidestroke sidestroked sidestrokes sidestroking sidesway sideswipe sideswiped sideswiper sideswipers sideswipes sideswiping sidetrack sidetracked sidetracking sidetracks sidewalk sidewalks sidewall sidewalls sideward sidewards sidewash sideway sideways sidewheel sidewheeler sidewinder sidewinders sidewipe sidewiper sidewise sidh sidha sidhas sidhe sidi sidia siding sidings sidion sidle sidled sidler sidlers sidles sidling sidlingly sidlins sidney sidonian sids sidth sidy sie siecle siecles siege siegeable siegecraft siegecrafts sieged siegenite sieger siegers sieges siegework siegeworks siegfried sieging sield siemens sien siena sienese sienite sienites sienitic sienna siennas siens sient sients sier siering sierozem sierozems sierra sierran sierras siest siesta siestaland siestas sieth sieths sieur sieurs sieva sieve sieved sieveful sievelike sievelikeness siever sievert sieverts sieves sieving sievings sievy sif sifac sifaka sifakas sife siffilate siffle siffled sifflement siffles sifflet siffleur siffleurs siffleuse siffleuses siffling sifflot sift siftage sifted sifter sifters sifting siftingly siftings sifts sig siganid siganids sigatoka sigfile sigfiles sigger sigh sighed sigher sighers sighful sighfully sighing sighingly sighingness sighless sighlike sighs sight sightable sighted sightedness sightednesses sighten sightening sighter sighters sightful sightfulness sighthole sighting sightings sightless sightlessly sightlessness sightlessnesses sightlier sightliest sightlily sightline sightlines sightliness sightlinesses sightly sightproof sightread sights sightsaw sightscreen sightscreens sightsee sightseeing sightseeings sightseen sightseer sightseers sightsees sightsman sightsmen sightworthiness sightworthy sighty sigil sigilative sigilistic sigill sigillaria sigillariaceous sigillarian sigillarians sigillarid sigillarids sigillarioid sigillarist sigillaroid sigillary sigillate sigillated sigillation sigillations sigillative sigillistic sigillographer sigillographical sigillography sigillum sigils sigint sigisbei sigisbeo sigla siglarian sigloi siglos siglum sigma sigmas sigmaspire sigmate sigmated sigmates sigmatic sigmating sigmation sigmations sigmatism sigmatisms sigmatron sigmatrons sigmodon sigmodont sigmoid sigmoidal sigmoidally sigmoidectomies sigmoidectomy sigmoiditis sigmoidopexy sigmoidoproctostomy sigmoidorectostomy sigmoidoscope sigmoidoscopes sigmoidoscopic sigmoidoscopies sigmoidoscopy sigmoidostomy sigmoids sign signa signable signacle signage signages signal signaled signalee signaler signalers signalese signaletic signaletics signaling signalings signalisation signalise signalised signalises signalising signalism signalist signalities signality signalization signalizations signalize signalized signalizes signalizing signalled signaller signallers signalling signallings signally signalman signalmen signalment signalments signals signance signaries signary signatary signate signation signator signatories signatory signatural signature signatured signatureless signatures signaturing signaturist signboard signboards signed signee signees signer signers signet signeted signeting signets signetur signetwise signeur signeurie signeuries signeury signficance signficances signficant signficantly signieur signieurs signifer signifiable signifiant signific significal significance significances significancies significancy significand significant significantly significantness significants significate significates signification significations significatist significative significatively significativeness significativenesses significator significators significatory significatrix significatum significature significavit significian significs signifie signified signifieds signifier signifiers signifies signify signifying signifyings signing signings signior signiori signiories signiors signiorship signiory signist signitor signless signlike signman signoff signoi signon signons signor signora signoras signore signores signori signoria signorial signorias signories signorina signorinas signorine signorini signorino signorinos signorize signors signorship signory signpost signposted signposting signposts signs signum signwriter sigrim sigurd sigyn sijill sijo sijos sika sikar sikara sikas sikatch sike siker sikerly sikerness sikes siket sikh sikhara sikhism sikhra sikhs sikimi sikkim sikorskies sikorsky sikra siksika sil sila silage silaged silageing silages silaging silaginoid silane silanes silanga silas silastic silastics silbergroschen silcrete sild silds sile siled silen silenaceous silence silenced silencer silencers silences silencing silency silene silenes sileni silenic silens silent silenter silentest silential silentiaries silentiary silentio silentious silentish silentium silently silentness silentnesses silents silenus silenuses siler silers siles silesia silesias silex silexes silexite silgreen silhouette silhouetted silhouettes silhouetting silhouettist silhouettists silhouettograph silica silicam silicane silicas silicate silicated silicates silicating silication silicatisation silicatization silicean siliceocalcareous siliceofelspathic siliceofluoric siliceous silicic silicicalcareous silicicolous silicide silicides silicidise silicidize siliciferous silicification silicifications silicified silicifies silicifluoric silicifluoride silicify silicifying siliciophite silicious silicium siliciums siliciuret siliciuretted silicize silicle silicles silico silicoacetic silicoalkaline silicoaluminate silicoarsenide silicocalcareous silicochloroform silicocyanide silicoethane silicoferruginous silicoflagellate silicofluoric silicofluoride silicohydrocarbon silicomagnesian silicomanganese silicomethane silicon silicone silicones siliconise siliconize siliconized silicononane silicons silicopropane silicoses silicosis silicotalcose silicothermic silicotic silicotics silicotitanate silicotungstate silicotungstic silicula siliculae silicular siliculas silicule silicules siliculose siliculous silicyl siling siliqua siliquaceous siliquae siliquas silique siliques siliquiferous siliquiform siliquose siliquous silk silkalene silkaline silkalines silked silken silkened silkening silkens silker silkflower silkgrass silkgrower silkgrowers silkie silkier silkies silkiest silkily silkine silkiness silkinesses silking silklike silkman silkmen silkness silkolene silkoline silkolines silks silkscreen silkscreened silkscreening silkscreens silksman silkstone silktail silktails silkweed silkweeds silkwoman silkwood silkwork silkworker silkworks silkworm silkworms silky sill sillabub sillabubs silladar silladars sillaginidae sillago sillandar sillar sillcock siller sillers sillery sillibib sillibibs sillibouk sillibub sillibubs sillier sillies silliest sillikin sillily sillimanite sillimanites silliness sillinesses sillock sillocks sillograph sillographer sillographist sillometer sillon sills silly sillyhood sillyhow sillyish sillyism sillyton silo siloam siloed siloing siloist silos siloxane siloxanes silphia silphid silphium silphiums silt siltage siltation siltations silted siltier siltiest silting siltlike silts siltstone siltstones silty silundum silure silures silurian silurid siluridae silurids siluriformes silurist silurists siluroid siluroids silurus silva silvae silvan silvanity silvanry silvans silvanus silvas silvatic silvendy silver silverback silverbacks silverbeater silverbelly silverberries silverberry silverbiddy silverbill silverbills silverboom silverbush silvered silverer silverers silvereye silverfin silverfish silverfishes silverhead silverier silveriest silverily silveriness silverinesses silvering silverings silverise silverised silveriser silverises silverish silverising silverite silverize silverized silverizer silverizes silverizing silverlace silverleaf silverleaves silverless silverlike silverling silverlings silverly silvern silverness silverplate silverpoint silverpoints silverrod silvers silverside silversides silverskin silverskins silversmith silversmithing silversmithings silversmiths silverspot silversword silvertail silvertails silvertip silvertips silvertop silvervine silverware silverwares silverweed silverweeds silverwing silverwood silverwork silverworker silverworks silvery silvester silvestrian silvex silvexes silvia silvical silvicolous silvics silvicultural silviculturally silviculture silvicultures silviculturist silviculturists silybum silyl sim sima simagre simal simar simara simarouba simaroubaceae simaroubaceous simaroubas simarre simarres simars simaruba simarubaceous simarubas simas simazine simazines simba simball simbil simblin simbling simblot simcon sime simeon simeonite simi simia simiad simial simian simianity simians simiesque simiid similar similarily similarise similarities similarity similarize similarly similary similate similative simile similes similimum similise similised similises similising similiter similitive similitude similitudes similitudinize simility similize similized similizes similizing simillimum simillimums similor similors simioid simious simiousness simis simitar simitars simity simkin simkins simlin simling simlins simmer simmered simmering simmeringly simmers simmon simmons simnel simnels simnelwise simoleon simoleons simon simoniac simoniacal simoniacally simoniacs simonial simonian simonies simonious simonise simonism simonist simonists simonize simonized simonizes simonizing simony simool simoom simooms simoon simoons simorg simorgs simous simp simpai simpais simpatico simper simpered simperer simperers simpering simperingly simpers simpkin simpkins simple simplectic simpled simplehearted simpleheartedly simpleheartedness simpleminded simplemindedly simplemindedness simplemindednesses simpleness simplenesses simpler simplers simples simplesse simplesses simplest simpleton simpletonian simpletonianism simpletonic simpletonish simpletonism simpletons simplex simplexed simplexes simplexity simplices simplicia simplicial simplicially simplicident simplicidentate simplicist simplicitarian simpliciter simplicities simplicity simplicize simplification simplifications simplificative simplificator simplificators simplified simplifiedly simplifier simplifiers simplifies simplify simplifying simpling simplings simplism simplisms simplist simpliste simplistic simplistically simplists simplum simply simps simpson simptico simpula simpulum simpulumla sims simsim simson simul simula simulacra simulacral simulacrcra simulacre simulacres simulacrize simulacrum simulacrums simulance simulant simulants simular simulars simulate simulated simulates simulating simulation simulations simulative simulatively simulator simulators simulatory simulcast simulcasted simulcasting simulcasts simule simuler simuliid simuliidae simulioid simulium simuliums simulize simuls simultaneities simultaneity simultaneous simultaneously simultaneousness simultaneousnesses simulty simurg simurgh simurghs simurgs sin sina sinaean sinai sinaic sinaite sinaitic sinal sinalbin sinamay sinamays sinamin sinamine sinanthropus sinapate sinapic sinapin sinapine sinapinic sinapis sinapisine sinapism sinapisms sinapize sinapoline sinarchism sinarchisms sinarchist sinarchists sinarquism sinarquisms sinarquist sinarquista sinarquists sinatra sinawa sincaline sincamas since sincere sincerely sincereness sincerenesses sincerer sincerest sincerities sincerity sincipita sincipital sinciput sinciputs sind sinded sinder sindhi sinding sindings sindle sindoc sindon sindonologies sindonologist sindonologists sindonology sindonophanies sindonophany sindons sindry sinds sine sinebada sinecural sinecure sinecured sinecures sinecureship sinecuring sinecurism sinecurisms sinecurist sinecurists sined sinequan sines sinesian sinew sinewed sinewier sinewiest sinewiness sinewinesses sinewing sinewless sinewous sinews sinewy sinfonia sinfonias sinfonie sinfonietta sinfoniettas sinful sinfully sinfulness sinfulnesses sing singabilities singability singable singableness singablenesses singally singalong singalongs singan singapore singaporean singarip singe singed singeing singeingly singer singeress singerie singers singes singey singfest singh singhalese singillatim singing singingfish singingfishes singingly singings singkamas single singlebar singled singlehanded singlehandedly singlehandedness singlehearted singleheartedly singleheartedness singlehood singlehoods singlemindedly singleness singlenesses singleprecision singler singles singlestep singlestick singlesticker singlesticks singlet singleton singletons singletree singletrees singlets singling singlings singly sings singsong singsonged singsonging singsongs singsongy singspiel singspiele singspiels singstress singular singularisation singularisations singularise singularised singularises singularising singularism singularisms singularist singularists singularities singularity singularization singularizations singularize singularized singularizes singularizing singularly singularness singularnesses singulars singult singultation singultous singults singultus singultuses sinh sinhala sinhalese sinhalite sinhasan sinhs sinical sinicise sinicised sinicises sinicising sinicism sinicize sinicized sinicizes sinicizing sinify sinigrin sinigrinase sinigrosid sinigroside sining sinister sinisterities sinisterity sinisterly sinisterness sinisternesses sinisterwise sinistra sinistrad sinistral sinistralities sinistrality sinistrally sinistrals sinistration sinistrin sinistrocerebral sinistrocular sinistrocularity sinistrodextral sinistrogyrate sinistrogyration sinistrogyric sinistromanual sinistrorsal sinistrorsally sinistrorse sinistrorsely sinistrous sinistrously sinistruous sinitic sinjer sink sinkable sinkage sinkages sinkboat sinkbox sinked sinker sinkerball sinkerballs sinkerless sinkers sinkfield sinkhead sinkhole sinkholes sinkier sinkiest sinking sinkingly sinkings sinkless sinklike sinkroom sinks sinkstone sinky sinless sinlessly sinlessness sinlessnesses sinlike sinnable sinnableness sinned sinnen sinner sinnered sinneress sinnering sinners sinnership sinnet sinnets sinning sinningia sinningias sinningly sinningness sinnowed sinoatrial sinoauricular sinoidal sinological sinologies sinologist sinologists sinologue sinologues sinology sinomenine sinon sinoper sinopia sinopias sinopic sinopie sinopis sinopises sinopite sinopites sinople sinorespiratory sinornis sinproof sins sinsemilla sinsemillas sinsion sinsring sinsyne sinter sinterabilities sinterability sintered sintering sinters sintery sintoc sinuate sinuated sinuatedentate sinuately sinuates sinuating sinuation sinuations sinuatocontorted sinuatodentate sinuatodentated sinuatopinnatifid sinuatoserrated sinuatoundulate sinuatrial sinuauricular sinuitis sinuitises sinuose sinuosely sinuosities sinuosity sinuous sinuousities sinuousity sinuously sinuousness sinuousnesses sinupallial sinupalliate sinus sinusal sinuses sinusitis sinusitises sinuslike sinusoid sinusoidal sinusoidally sinusoids sinuventricular sinward sinzer siol sion sioning siouan sioux sip sipage sipapu sipe siped siper sipers sipes siphac siphoid siphon siphonaceous siphonage siphonages siphonal siphonaptera siphonapterous siphonaria siphonariid siphonate siphonated siphoned siphoneous siphonet siphonets siphonia siphonial siphonic siphoniferous siphoniform siphoning siphonium siphonless siphonlike siphonobranchiate siphonogam siphonogamic siphonogamies siphonogamous siphonogams siphonogamy siphonoglyph siphonoglyphe siphonognathid siphonognathous siphonophora siphonophoran siphonophore siphonophores siphonophorous siphonoplax siphonopore siphonorhinal siphonorhine siphonosome siphonostele siphonosteles siphonostelic siphonostely siphonostomatous siphonostome siphonostomous siphonozooid siphons siphonula siphorhinal siphorhinian siphosome siphuncle siphuncled siphuncles siphuncular siphunculate siphunculated siphunculus sipid sipidity siping sipling sipped sipper sippers sippet sippets sipping sippingly sippio sipple sippled sipples sippling sippy sips sipuncula sipunculacean sipunculid sipunculids sipunculoid sipunculoids sipunculus sipylite sir siracusa sircar sircars sirdar sirdars sirdarship sire sired siredon siree sirees sireless siren sirene sirenes sirenia sirenian sirenians sirenic sirenical sirenically sirenidae sirening sirenise sirenised sirenises sirenising sirenize sirenized sirenizes sirenizing sirenlike sirenoid sirenomelus sirens sireny sires sireship siress sirex sirgang sirgangs siri sirian siriases siriasis siricid sirih sirihs siring siriometer siris sirius sirkar sirkars sirkeer sirki sirky sirloin sirloins sirloiny sirmark sirname sirnamed sirnames sirnaming siroc sirocco siroccoish siroccoishly siroccos sirocs sirop siros sirpea sirple sirpoon sirra sirrah sirrahs sirras sirred sirree sirrees sirring sirs sirship siruaballi siruelas sirup siruped siruper siruping sirups sirupy sirvent sirvente sirventes sis sisal sisalana sisals siscowet siscowets sise sisel siserara siseraries siserary siserskite sises sish sisham sisi sisith siskin siskins sislowet sismotherapy sison siss sisseraries sisserary sisses sissier sissies sissiest sissification sissified sissify sissiness sissinesses sissing sissone sissonne sissonnes sissoo sissoos sissu sissy sissyish sissyism sissyness sissynesses sist sisted sisten sistence sistency sistent sister sistered sisterhood sisterhoods sistering sisterise sisterize sisterless sisterlike sisterliness sisterlinesses sisterly sistern sisters sistership sistine sisting sistle sistomensin sistra sistren sistroid sistrum sistrums sistrurus sists sisyphean sisyphus sisyridae sisyrinchium sit sita sitao sitar sitarist sitarists sitars sitatunga sitatungas sitch sitcom sitcoms sitdown sitdowns site sited sitella sitellas sites sitfast sitfasts sith sithcund sithe sithed sithement sithen sithence sithens sithes sithing siti sitient siting sitings sitio sitiologies sitiology sitiomania sitiophobia sitiophobias sitologies sitology sitomania sitomanias sitophobia sitophobias sitophobic sitophylus sitosterin sitosterol sitosterols sitotoxism sitotroga sitrep sitreps sitringee sits sitsang sitta sittar sittars sittee sitten sitter sitters sittidae sittine sitting sittings sittringy situ situal situate situated situates situating situation situational situationally situationism situationisms situationist situations situla situlae situp situps situs situses situtunga situtungas sitz sitzbath sitzkrieg sitzkriegs sitzmark sitzmarks sium siums siva sivaism sivaite sivan sivapithecus sivathere sivatherioid sivatherium siver sivers sivvens siwan siwash siwashed siwashes siwashing siwens six sixain sixaine sixaines sixains sixer sixers sixes sixfoil sixfold sixfolds sixgun sixhaend sixhynde sixing sixish sixmo sixmos sixpence sixpences sixpennies sixpenny sixpennyworth sixscore sixscores sixshooter sixsome sixte sixteen sixteener sixteeners sixteenfold sixteenmo sixteenmos sixteenpenny sixteens sixteenth sixteenthly sixteenths sixtes sixth sixthet sixthly sixths sixties sixtieth sixtieths sixtine sixty sixtyfold sixtyish sixtypenny sizable sizableness sizablenesses sizably sizal sizar sizars sizarship sizarships size sizeable sizeableness sizeably sized sizeine sizeism sizeisms sizeist sizeists sizel sizels sizeman sizer sizers sizes sizier siziest siziests siziness sizinesses sizing sizings sizism sizisms sizist sizists sizy sizygia sizygium sizz sizzard sizzing sizzle sizzled sizzler sizzlers sizzles sizzling sizzlingly sizzlings sjaelland sjambok sjamboked sjamboking sjambokked sjambokking sjamboks sjomil sjomila sk ska skaalpund skaamoog skaddle skaff skaffie skag skagit skags skail skailed skailing skaillie skails skainsmate skair skaitbird skaith skaithed skaithing skaithless skaiths skaithy skal skalawag skald skaldic skalds skaldship skaldships skalpund skance skanda skandhas skank skanked skanker skankers skanking skankings skanks skanky skart skarth skarths skarts skas skasely skat skate skateable skateboard skateboarded skateboarder skateboarders skateboarding skateboardings skateboards skated skatemobile skatepark skateparks skater skaters skates skatikas skatiku skating skatings skatist skatol skatole skatoles skatology skatols skatoma skatoscopy skatosine skatoxyl skats skatt skatts skaw skaws skayles skean skeane skeanes skeanockle skeans skear skeared skearier skeariest skearing skears skeary skeat sked skedaddle skedaddled skedaddler skedaddlers skedaddles skedaddling skedge skedgewith skedlock skee skeeball skeech skeechan skeechans skeed skeeg skeeing skeel skeelier skeeliest skeeling skeely skeen skeens skeenyie skeer skeered skeerier skeeriest skeering skeers skeery skees skeesicks skeet skeeter skeeters skeets skeezicks skeezix skeg skegg skegger skeggers skeggs skegs skeich skeif skeigh skeigher skeighest skeighish skeily skein skeined skeiner skeining skeins skeipp skel skelder skelderdrake skeldered skeldering skelders skeldock skeldraik skeldrake skelet skeletal skeletally skeletin skeletogenous skeletogeny skeletomuscular skeleton skeletonian skeletonic skeletonisation skeletonise skeletonised skeletoniser skeletonisers skeletonises skeletonising skeletonization skeletonize skeletonized skeletonizer skeletonizers skeletonizes skeletonizing skeletonless skeletonlike skeletons skeletonweed skeletony skelf skelfs skelgoose skelic skell skellat skeller skellie skellied skellier skellies skelliest skelloch skelloched skelloching skellochs skells skellum skellums skelly skellying skelm skelms skelp skelped skelper skelpin skelping skelpings skelpit skelps skelter skeltered skeltering skelters skeltonic skeltonics skelum skelums skelvy skemmel skemp sken skenai skene skenes skeo skeos skeough skep skepful skepfuls skeppe skepped skepping skeppist skeppund skeps skepses skepsis skepsises skeptic skeptical skeptically skepticalness skepticise skepticism skepticisms skepticize skepticized skepticizing skeptics skeptophylaxia skeptophylaxis sker skere skerred skerret skerrick skerricks skerries skerring skerry skers sket sketch sketchabilities sketchability sketchable sketchblock sketchbook sketchbooks sketched sketchee sketcher sketchers sketches sketchier sketchiest sketchily sketchiness sketchinesses sketching sketchingly sketchist sketchlike sketchpad sketchpads sketchy skete sketiotai skeuomorph skeuomorphic skeuomorphism skeuomorphisms skeuomorphs skevish skew skewback skewbacked skewbacks skewbald skewbalds skewed skewer skewered skewerer skewering skewers skewerwood skewest skewgee skewing skewings skewl skewly skewness skewnesses skews skewwhiff skewwise skewy skey skeyting skhian ski skiable skiagram skiagrams skiagraph skiagraphed skiagrapher skiagraphic skiagraphical skiagraphically skiagraphies skiagraphing skiagraphs skiagraphy skiamachies skiamachy skiameter skiametry skiapod skiapodous skiascope skiascopes skiascopies skiascopy skiatron skiatrons skibbet skibby skibob skibobbed skibobber skibobbers skibobbing skibobbings skibobs skibslast skice skid skidded skidder skidders skiddier skiddiest skidding skiddingly skiddoo skiddooed skiddooing skiddoos skiddy skiddycock skidlid skidlids skidoo skidooed skidooing skidoos skidpan skidpans skidproof skids skidway skidways skiech skied skiegh skieppe skiepper skier skiers skies skieur skiey skieyer skieyest skiff skiffed skiffing skiffle skiffled skiffles skiffless skiffling skiffs skift skiing skiings skiis skijore skijorer skijorers skijoring skijorings skikjoring skikjöring skil skilder skildfel skilfish skilful skilfully skilfulness skilfulnesses skill skillagalee skillcentre skillcentres skilled skillenton skilless skillessness skillessnesses skillet skilletfish skilletfishes skillets skillful skillfully skillfulness skillfulnesses skillier skillies skilliest skilligalee skilligalees skilligolee skilligolees skilling skillings skillion skillions skillo skills skilly skilpot skilts skilty skim skimback skime skimmed skimmelton skimmer skimmers skimmerton skimmia skimmias skimming skimmingly skimmings skimmington skimmingtons skimmity skimo skimobile skimobiles skimos skimp skimped skimpier skimpiest skimpily skimpiness skimpinesses skimping skimpingly skimps skimpy skims skin skinball skinbound skincare skincares skinch skindive skindiver skindiving skinflick skinflicks skinflint skinflintily skinflintiness skinflints skinflinty skinfood skinfoods skinful skinfuls skinhead skinheads skink skinked skinker skinkers skinking skinkle skinks skinless skinlike skinned skinner skinnerian skinneries skinners skinnery skinnier skinnies skinniest skinniness skinninesses skinning skinny skins skint skinter skintest skintight skintle skintled skintling skinworm skio skiogram skiograph skiophyte skioring skiorings skios skip skipbrain skipdent skipjack skipjackly skipjacks skipkennel skiplane skiplanes skipman skippable skipped skippel skipper skipperage skippered skippering skipperings skippers skippership skippery skippet skippets skippier skippiest skipping skippingly skippings skipple skippund skippy skips skiptail skipway skirl skirlcock skirled skirling skirlings skirls skirmish skirmished skirmisher skirmishers skirmishes skirmishing skirmishingly skirmishings skirp skirr skirred skirreh skirret skirrets skirring skirrs skirt skirtboard skirted skirter skirters skirting skirtingly skirtings skirtless skirtlike skirts skirty skirwhit skirwort skis skit skite skited skiter skites skither skiting skitishly skits skitter skittered skitterier skitteriest skittering skitters skittery skittish skittishly skittishness skittishnesses skittle skittled skittler skittles skittling skitty skittyboot skiv skive skived skiver skivered skivering skivers skiverwood skives skivie skivier skivies skiviest skiving skivings skivvied skivvies skivvy skivvying skivy skiwear skiwears skiwies skiwy sklate sklated sklater sklates sklating sklent sklented sklenting sklents skleropelite skliff skliffs sklim sklimmed sklimming sklims sklinter skoal skoaled skoaling skoals skoff skoffed skoffing skoffs skogbolite skokiaan skokiaans skol skolia skolion skollie skollies skolly skols skomerite skoo skookum skoosh skooshed skooshes skooshing skoot skoptsy skort skorts skosh skoshes skout skouth skraeling skraelling skraigh skran skrans skreak skreegh skreeghed skreeghing skreeghs skreel skreen skreened skreening skreens skreigh skreighed skreighing skreighs skriech skrieched skrieching skriechs skried skriegh skrieghed skrieghing skrieghs skries skrik skrike skriks skrimmage skrimmaged skrimmages skrimmaging skrimp skrimped skrimping skrimps skrimshander skrimshank skrimshanked skrimshanker skrimshankers skrimshanking skrimshanks skrump skrumped skrumping skrumps skrupul skry skryer skryers skrying skua skuas skudler skudlers skug skugged skugging skugs skuld skuldudderies skulduddery skulduggeries skulduggery skulk skulked skulker skulkers skulking skulkingly skulkings skulks skull skullbanker skullcap skullcaps skullduggeries skullduggery skulled skullery skullfish skullful skulls skully skulp skulpin skulpins skummer skummered skummering skummers skun skunk skunkbill skunkbird skunkbirds skunkbush skunkdom skunked skunkery skunkhead skunking skunkish skunklet skunks skunktop skunkweed skunkweeds skunkworks skunky skupshtina skurried skurries skurry skurrying skuse skutterudite skutterudites skuttle skuttled skuttles skuttling sky skybal skybald skyboard skyboards skyborn skyborne skybox skyboxes skycap skycaps skyclad skycoach skycraft skydive skydived skydiver skydivers skydives skydiving skydivings skydove skye skyed skyer skyers skyey skyfte skyful skyhook skyhooks skyhoot skyier skyiest skying skyish skyjack skyjacked skyjacker skyjackers skyjacking skyjackings skyjacks skylab skylabs skylark skylarked skylarker skylarkers skylarking skylarkings skylarks skyless skylight skylighted skylights skylike skyline skylined skylines skylining skylit skylook skylounge skyman skymen skyphoi skyphos skypipe skyplast skyport skyr skyre skyred skyres skyrgaliard skyriding skyrin skyring skyrocket skyrocketed skyrocketing skyrockets skyrockety skyrs skys skysail skysails skyscape skyscapes skyscrape skyscraper skyscrapers skyscraping skyshine skystone skysweeper skyte skyted skytes skyting skyugle skywalk skywalks skyward skywards skywave skyway skyways skywrite skywriter skywriters skywrites skywriting skywritings skywritten skywrote sl sla slab slabbed slabber slabbered slabberer slabberers slabbering slabbers slabbery slabbier slabbiest slabbiness slabbinesses slabbing slabbings slabby slablike slabline slabman slabness slabs slabstone slabstones slabwood slack slackage slacked slacken slackened slackener slackening slackenings slackens slacker slackerism slackers slackest slackie slacking slackingly slackly slackminded slackmindedness slackness slacknesses slacks slackwitted slackwittedness slad sladang sladangs slade slades slae slaes slag slaggability slaggable slagged slagger slaggier slaggiest slagging slaggy slagheap slagheaps slagless slaglessness slagman slags slaid slain slainte slairg slairged slairging slairgs slaister slaistered slaisteries slaistering slaisters slaistery slait slakable slake slakeable slaked slakeless slaker slakers slakes slakier slakiest slakin slaking slaky slalom slalomed slalomer slalomers slaloming slaloms slam slambang slammakin slammakins slammed slammer slammerkin slammerkins slammers slamming slammings slammock slammocking slammocky slamp slampamp slampant slams slander slandered slanderer slanderers slanderful slanderfully slandering slanderingly slanderous slanderously slanderousness slanderousnesses slanderproof slanders slane slanes slang slanged slanger slangers slangier slangiest slangily slanginess slanginesses slanging slangingly slangings slangish slangishly slangism slangkop slangous slangrell slangs slangster slanguage slanguages slangular slangwhang slangy slank slant slanted slantendicular slanter slantindicular slantindicularly slanting slantingly slantingways slantly slants slantways slantwise slanty slap slapdab slapdash slapdasheries slapdashery slapdashes slape slaphappier slaphappiest slaphappy slaphead slapheads slapjack slapjacks slapped slapper slappers slapping slappy slaps slapshot slapshots slapstick slapsticks slapsticky slare slart slarth slash slashed slasher slashers slashes slashing slashingly slashings slashy slask slat slatch slatches slate slated slateful slatelike slatemaker slatemaking slater slaters slates slateworks slatey slateyard slath slather slathered slathering slathers slatier slatiest slatified slatify slatifying slatiness slatinesses slating slatings slatish slats slatted slatter slattered slattering slattern slatternish slatternliness slatternlinesses slatternly slatternness slatterns slatters slattery slatting slattings slaty slaughter slaughterable slaughterdom slaughtered slaughterer slaughterers slaughterhouse slaughterhouses slaughteries slaughtering slaughteringly slaughterings slaughterman slaughtermen slaughterous slaughterously slaughters slaughtery slaughteryard slaum slaunchways slav slave slaveborn slaved slaveholder slaveholders slaveholding slaveholdings slaveland slaveless slavelet slavelike slaveling slavemonger slaveowner slaveownership slavepen slaver slavered slaverer slaverers slaveries slavering slaveringly slavers slavery slaves slavey slaveys slavic slavicist slavikite slavin slaving slavish slavishly slavishness slavishnesses slavocracies slavocracy slavocrat slavocratic slavocrats slavonian slavonic slavophile slavophilism slavs slaw slawbank slaws slay slayable slayed slayer slayers slaying slayings slays sld sle sleathy sleave sleaved sleaves sleaving sleaze sleazebag sleazebags sleazeball sleazeballs sleazes sleazier sleaziest sleazily sleaziness sleazinesses sleazo sleazoid sleazoids sleazy sleck sled sledded sledder sledders sledding sleddings sleded sledful sledge sledged sledgehammer sledgehammered sledgehammering sledgehammers sledgeless sledgemeter sledger sledgers sledges sledging sledgings sledlike sleds slee sleech sleeches sleechier sleechiest sleechy sleek sleeked sleeken sleekened sleekening sleekens sleeker sleekers sleekest sleekier sleekiest sleeking sleekings sleekit sleekly sleekness sleeknesses sleeks sleekstone sleekstones sleeky sleep sleepcoat sleeper sleepered sleepers sleepery sleepful sleepfulness sleepier sleepiest sleepify sleepily sleepiness sleepinesses sleeping sleepingly sleepings sleepish sleepland sleepless sleeplessly sleeplessness sleeplessnesses sleeplike sleepmarken sleepout sleepouts sleepover sleepovers sleepproof sleepry sleeps sleepsuit sleepsuits sleepwaker sleepwaking sleepwalk sleepwalked sleepwalker sleepwalkers sleepwalking sleepwalkings sleepwalks sleepward sleepwear sleepwort sleepy sleepyhead sleepyheaded sleepyheads sleer sleest sleet sleeted sleetier sleetiest sleetiness sleetinesses sleeting sleetproof sleets sleety sleeve sleeveband sleeveboard sleeved sleeveen sleeveens sleevefish sleeveful sleevehand sleevehands sleeveless sleevelessness sleevelet sleevelets sleevelike sleever sleevers sleeves sleeving sleevings sleezier sleeziest sleezy sleided sleigh sleighed sleigher sleighers sleighing sleighings sleighs sleight sleightful sleightness sleights sleighty slendang slender slenderer slenderest slenderise slenderised slenderises slenderish slenderising slenderization slenderize slenderized slenderizes slenderizing slenderly slenderness slendernesses slent slenter slenters slepez slept slete sleuth sleuthdog sleuthed sleuthful sleuthhound sleuthhounds sleuthing sleuthlike sleuths slew slewed slewer slewing slewingslews slews slewth sley sleyed sleyer sleying sleys slezsko slibbersauce slice sliceable sliced slicer slicers slices slich slicht slicing slicingly slicings slick slicked slicken slickened slickening slickens slickenside slickensided slickensides slicker slickered slickers slickery slickest slicking slickings slickly slickness slicknesses slickpaper slickrock slickrocks slicks slickstone slickstones slid slidable slidableness slidably slidage slidden slidder sliddered sliddering slidderness slidders sliddery sliddry slide slideable slideableness slideably slided slidefilm slidegroat slidehead slideknot slideman slideproof slider sliders slides slideway slideways sliding slidingly slidingness slidings slidometer slier sliest slieve slieves slifter sliggeen slight slighted slighten slighter slighters slightest slightier slightiest slightily slightiness slighting slightingly slightish slightly slightness slightnesses slights slighty slik slily slim slime slimeball slimeballs slimed slimeman slimemen slimepit slimer slimes slimier slimiest slimily sliminess sliminesses sliming slimish slimishness slimline slimly slimmed slimmer slimmers slimmest slimming slimmings slimmish slimnastics slimness slimnesses slimpsier slimpsiest slimpsy slims slimsier slimsiest slimsy slimy sline sling slingback slingbacks slingball slinge slinger slingers slinging slingman slings slingshot slingshots slingsman slingsmen slingstone slingstones slink slinked slinker slinkers slinkier slinkiest slinkily slinkiness slinkinesses slinking slinkingly slinks slinkskin slinkskins slinkweed slinkweeds slinky slinte slinter slinters slip slipback slipband slipboard slipbodies slipbody slipcase slipcased slipcases slipcoach slipcoat slipcote slipcover slipcovered slipcovering slipcovers slipe sliped slipes slipform slipformed slipforming slipforms slipgibbet sliphalter sliphorn sliphouse sliping slipknot slipknots slipless slipman slipnoose slipout slipouts slipover slipovers slippage slippages slipped slipper slippered slipperflower slipperier slipperiest slipperily slipperiness slipperinesses slippering slipperlike slippers slipperweed slipperwort slipperworts slippery slipperyback slipperyroot slippier slippiest slippily slippiness slippinesses slipping slippingly slipproof slippy sliprail sliprails slips slipsheet slipsheeted slipsheeting slipsheets slipshod slipshoddiness slipshoddinesses slipshoddy slipshodness slipshoe slipskin slipslap slipslop slipsloppish slipsloppism slipsloppy slipslops slipsole slipsoles slipstep slipstick slipstone slipstream slipstreamed slipstreaming slipstreams slipstring slipt sliptopped slipup slipups slipware slipwares slipway slipways slirt slish slishes slit slitch slite slither slithered slitherier slitheriest slithering slitheroo slithers slithery slithy sliting slitless slitlike slits slitshell slitted slitter slitters slitting slitty slitwing slitwise slitwork slive slived sliven sliver slivered sliverer sliverers slivering sliverlike sliverproof slivers slivery slives sliving slivovic slivovica slivovicas slivovices slivovics slivovitz slivovitzes slivowitz slivowitzes sliwer sloan sloanea sloans sloat slob slobbed slobber slobberchops slobbered slobberer slobberers slobberier slobberiest slobbering slobbers slobbery slobbier slobbiest slobbiness slobbing slobbish slobbishness slobbishnesses slobby slobland sloblands slobs slock slockdolager slockdolagers slockdoliger slockdoligers slockdologer slockdologers slocken slockened slockening slockens slocker slockingstone slockster slod slodder slodge slodger sloe sloeberries sloeberry sloebush sloebushes sloes sloethorn sloethorns sloetree sloetrees slog slogan sloganeer sloganeered sloganeering sloganeerings sloganeers sloganise sloganised sloganises sloganising sloganisings sloganize sloganized sloganizer sloganizers sloganizes sloganizing sloganizings slogans slogged slogger sloggers slogging sloggingly slogs slogwood sloid sloids slojd slojds sloka slokas sloke sloked sloken slokened slokening slokens slokes sloking slommack slommacky slommock slon slone slonk sloo sloom sloomed sloomier sloomiest slooming slooms sloomy sloop sloopman sloopmen sloops sloosh slooshed slooshes slooshing sloot sloots slop slopdash slope sloped slopely slopeness sloper slopers slopes slopeways slopewise slopier slopiest sloping slopingly slopingness slopmaker slopmaking sloppage slopped slopperies sloppery sloppier sloppiest sloppily sloppiness sloppinesses slopping sloppy slops slopseller slopselling slopshop slopstone slopwork slopworker slopworkers slopworks slopy slorp slosh sloshed slosher sloshes sloshier sloshiest sloshily sloshiness sloshing sloshings sloshy slot slotback slotbacks slote sloted sloth slothed slothful slothfully slothfulness slothfulnesses slothfuls slothing slothound sloths slotman slots slotted slotten slotter slotters slottery slotting slotwise sloubbie slouch slouched sloucher slouchers slouches slouchier slouchiest slouchily slouchiness slouchinesses slouching slouchingly slouchy slough sloughed sloughier sloughiest sloughiness sloughing sloughs sloughy slounge slounger slour sloush slovak slovaks slove sloven slovene slovenia slovenian slovenlier slovenliest slovenlike slovenliness slovenlinesses slovenly slovenries slovenry slovens slovenwood slow slowback slowbacks slowbellied slowbellies slowbelly slowcoach slowcoaches slowdown slowdowns slowed slower slowest slowful slowgoing slowheaded slowhearted slowheartedness slowhound slowing slowings slowish slowly slowmouthed slowness slownesses slowpoke slowpokes slowrie slows slowup slowwitted slowwittedly slowworm slowworms sloyd sloyds slt slub slubb slubbed slubber slubberdegullion slubberdegullions slubbered slubberer slubbering slubberingly slubberings slubberly slubbers slubbery slubbier slubbiest slubbing slubbings slubbs slubby slubs slud sludder sluddery sludge sludged sludger sludges sludgier sludgiest sludginess sludging sludgy slue slued slueing sluer slues sluff sluffed sluffing sluffs slug slugabed slugabeds slugfest slugfests sluggabed sluggabeds sluggard sluggarding sluggardise sluggardised sluggardises sluggardising sluggardize sluggardized sluggardizes sluggardizing sluggardliness sluggardlinesses sluggardly sluggardness sluggardnesses sluggardry sluggards sluggardy slugged slugger sluggers slugging sluggingly sluggish sluggishly sluggishness sluggishnesses sluggy slughorn slughorne slughornes slughorns sluglike slugs slugwood sluice sluiced sluicegate sluicegates sluicelike sluicer sluices sluiceway sluiceways sluicier sluiciest sluicing sluicy sluig sluing sluit sluits slum slumber slumbered slumberer slumberers slumberful slumbering slumberingly slumberings slumberland slumberlands slumberless slumberous slumberously slumberousness slumberousnesses slumberproof slumbers slumbersome slumbery slumbrous slumbrously slumbry slumdom slumgullion slumgullions slumgum slumgums slumism slumisms slumland slumlike slumlord slumlords slummage slummed slummer slummers slummier slummiest slumminess slumming slummings slummock slummocked slummocking slummocks slummocky slummy slump slumped slumpflation slumpflationary slumpflations slumpier slumpiest slumping slumpproof slumproof slumps slumpwork slumpy slums slumward slumwise slung slungbodies slungbody slunge slungshot slungshots slunk slunken slup slur slurb slurban slurbow slurbs slurp slurped slurper slurpers slurping slurps slurred slurried slurries slurring slurringly slurry slurrying slurs slurvian sluse slused sluses slush slushed slusher slushes slushier slushiest slushily slushiness slushinesses slushing slushpit slushy slusing slut slutch slutchy sluther sluthood sluts slutted slutter sluttered slutteries sluttering sluttery sluttier sluttiest sluttikin slutting sluttish sluttishly sluttishness sluttishnesses slutty sly slyboots slyer slyest slyish slyly slyness slynesses slype slypes slàinte sm sma smachrie smack smacked smackee smacker smackeroo smackeroos smackers smackful smacking smackingly smackings smacks smacksman smacksmen smaik smaiks small smallage smallages smallboy smallclothes smallcoal smalled smallen smaller smallest smallgoods smallhearted smallholder smallholders smallholding smallholdings smalling smallish smallishness smallmouth smallmouthed smallmouths smallness smallnesses smallpox smallpoxes smalls smallsat smallsats smallsword smallswords smalltalk smalltime smalltimer smallware smally smalm smalmed smalmier smalmiest smalmily smalminess smalminesses smalming smalms smalmy smalt smalter smalti smaltine smaltines smaltite smaltites smalto smaltos smaltost smalts smaltz smaragd smaragde smaragdes smaragdine smaragdines smaragdite smaragdites smaragds smaragdus smarm smarmed smarmier smarmiest smarmily smarminess smarminesses smarming smarms smarmy smart smartarse smartarses smartass smartasses smarted smarten smartened smartening smartens smarter smartest smartie smarties smarting smartingly smartish smartism smartless smartly smartness smartnesses smartphone smarts smartweed smartweeds smarty smartypants smash smashable smashage smashboard smashed smasher smasheroo smasheroos smashers smashery smashes smashing smashingly smashings smashment smashup smashups smatch smatched smatches smatchet smatching smatter smattered smatterer smatterers smattering smatteringly smatterings smatters smattery smaze smazes smear smearcase smearcases smeared smearer smearers smearier smeariest smearily smeariness smearinesses smearing smearless smears smeary smeath smeaths smectic smectis smectite smectites smectitic smectymnuan smeddum smeddums smee smeech smeeched smeeches smeeching smeek smeeked smeeking smeeks smeeky smeer smees smeeth smeeths smegma smegmas smegmatic smell smellable smellage smelled smeller smellers smellful smellfungi smellfungus smellie smellier smelliest smelliness smellinesses smelling smellings smellproof smells smellsome smelly smelt smelted smelter smelteries smelterman smelters smeltery smelting smeltings smeltman smelts smerk smerked smerking smerks smervy smeth smethe smeuse smeuses smeuth smew smews smich smicker smickered smickering smickerings smickers smicket smickets smickly smiddie smiddied smiddies smiddum smiddy smiddying smidge smidgen smidgens smidgeon smidgeons smidges smidgin smidgins smiercase smiercases smifligate smifligated smifligates smifligating smifligation smift smiggins smight smighting smights smilacaceae smilacaceous smilaceous smilacin smilax smilaxes smile smileable smileage smiled smiledon smileful smilefulness smileless smilelessly smilelessness smilemaker smilemaking smileproof smiler smilers smiles smilet smilets smiley smileys smilier smiliest smiling smilingly smilingness smilingnesses smilings smilo smilodon smilodons smily sminthurid smir smirch smirched smircher smirches smirching smirchless smirchy smiris smirk smirked smirker smirkers smirkier smirkiest smirkily smirking smirkingly smirkish smirkle smirkly smirks smirky smirr smirred smirrier smirriest smirring smirrs smirry smirs smirtle smit smitable smitane smitch smite smiter smiters smites smith smitham smithcraft smithcrafts smithed smither smithereen smithereened smithereening smithereens smitheries smithers smithery smithfield smithied smithier smithies smithing smithite smiths smithsonite smithsonites smithum smithwork smithy smithydander smithying smiting smits smitted smitten smitter smitting smittle smittleish smittlish sml smock smocked smocker smockface smocking smockings smockless smocklike smocks smog smoggier smoggiest smogginess smoggy smogless smogs smoile smoiled smoiles smoiling smokable smokables smoke smokeable smokeboard smokeboards smokebox smokebush smokebushes smokechaser smoked smokefarthings smokeho smokehole smokehood smokehoods smokehos smokehouse smokehouses smokejack smokejacks smokejumper smokejumpers smokeless smokelessly smokelessness smokelessnesses smokelike smokepot smokepots smokeproof smoker smokers smokery smokes smokescreen smokescreens smokeshaft smokestack smokestacks smokestone smoketight smoketree smoketrees smokewood smokey smokier smokies smokiest smokily smokiness smokinesses smoking smokings smokish smoko smokos smoky smokyseeming smolder smoldered smoldering smolderingly smolderingness smolders smolt smolts smooch smooched smoocher smoochers smooches smooching smoochs smoochy smoodge smoodged smoodger smoodges smoodging smooge smooged smooges smooging smook smoor smoored smoorich smooring smoors smoosh smooshed smooshes smooshing smoot smooted smooth smoothable smoothback smoothbark smoothboots smoothbore smoothbored smoothbores smoothcoat smoothe smoothed smoothen smoothened smoothening smoothens smoother smoothers smoothes smoothest smoothhound smoothhounds smoothie smoothies smoothification smoothify smoothing smoothingly smoothings smoothish smoothly smoothmouthed smoothness smoothnesses smoothpate smoothpates smooths smoothtongue smoothy smooting smoots smopple smorbrod smorbrods smore smorebro smored smores smorgasbord smorgasbords smoring smorrebrod smorrebrods smorzando smorzandos smorzato smote smother smotherable smotheration smothered smotherer smotherers smotheriness smotherinesses smothering smotheringly smotherings smothers smothery smotter smouch smouched smoucher smouches smouching smoulder smouldered smouldering smoulderingly smoulderings smoulders smouldry smous smouse smoused smouser smousers smouses smousing smout smouted smouting smouts smowt smowts smoyle smoyled smoyles smoyling smrgs smriti smritis smrrebrd smudder smudge smudged smudgedly smudgeless smudgeproof smudger smudgers smudges smudgier smudgiest smudgily smudginess smudginesses smudging smudgy smug smugged smugger smuggery smuggest smugging smuggish smuggishly smuggishness smuggle smuggleable smuggled smuggler smugglers smugglery smuggles smuggling smugglings smugism smugly smugness smugnesses smugs smuisty smur smurf smurfed smurfing smurfs smurks smurr smurred smurrier smurriest smurring smurry smurs smurtle smuse smush smushed smushes smushing smut smutch smutched smutches smutchier smutchiest smutching smutchless smutchy smutless smutproof smuts smutted smutter smuttier smuttiest smuttily smuttiness smuttinesses smutting smutty smyrna smyrniote smyrnium smyth smytrie smytries smörgåsbord smörgåsbords smørbrød smørbrøds smørrebrød smørrebrøds sn snab snabbie snabble snabbled snabbles snabbling snabby snabs snack snacked snacker snackers snackette snacking snackle snackman snacks snacky snaff snaffle snafflebit snaffled snaffles snaffling snafu snafued snafuing snafus snag snagbush snagged snagger snaggier snaggiest snagging snaggle snaggled snaggleteeth snaggletooth snaggletoothed snaggy snaglike snagline snagrel snags snail snaileater snailed snaileries snailery snailfish snailfishessnailflower snailflower snailier snailiest snailing snailish snailishly snaillike snails snaily snaith snake snakebark snakeberry snakebird snakebirds snakebit snakebite snakebites snakebitten snakeblennies snakeblenny snaked snakefish snakefishes snakeflies snakeflower snakefly snakehead snakeheads snakeholing snakeleaf snakeless snakelet snakelike snakeling snakemouth snakemouths snakeneck snakeology snakephobia snakepiece snakepipe snakepit snakepits snakeproof snaker snakeroot snakeroots snakery snakes snakeship snakeskin snakeskins snakestone snakestones snakeweed snakeweeds snakewise snakewood snakewoods snakeworm snakewort snakey snakier snakiest snakily snakiness snakinesses snaking snakish snakishness snakishnesses snaky snap snapback snapbacks snapbag snapberry snapdragon snapdragons snape snaper snaphaan snaphance snaphances snaphaunce snaphaunces snaphaunch snaphaunches snaphead snapholder snapjack snapless snapline snapout snappable snappage snappe snapped snapper snapperback snappered snappering snappers snappier snappiest snappily snappiness snappinesses snapping snappingly snappings snappish snappishly snappishness snappishnesses snapps snappy snaps snapsack snapshare snapshoot snapshooter snapshooters snapshooting snapshootings snapshoots snapshot snapshots snapshotted snapshotter snapshotting snapweed snapweeds snapwood snapwort snapy snar snare snared snareless snarer snarers snares snarf snarfed snarfing snarfs snarier snariest snaring snaringly snarings snark snarkier snarkiest snarkily snarks snarky snarl snarled snarler snarlers snarleyow snarleyyow snarlier snarliest snarling snarlingly snarlings snarlish snarls snarly snarred snarring snars snary snash snashed snashes snashing snast snaste snastes snasty snatch snatchable snatched snatcher snatchers snatches snatchier snatchiest snatchily snatching snatchingly snatchproof snatchy snath snathe snathes snaths snattock snavel snavvle snaw snawed snawing snawle snaws snazzier snazziest snazzily snazziness snazzinesses snazzy snead sneads sneak sneakbox sneaked sneaker sneakered sneakers sneakeup sneakeups sneakier sneakiest sneakily sneakiness sneakinesses sneaking sneakingly sneakingness sneakish sneakishly sneakishness sneakishnesses sneaks sneaksbies sneaksby sneaksman sneaky sneap sneaped sneaping sneaps sneath sneathe sneaths sneb snebbe snebbed snebbes snebbing snebs sneck sneckdraw sneckdrawing sneckdrawn snecked snecker snecket snecking snecks sned snedded snedding sneds snee sneed sneeing sneer sneered sneerer sneerers sneerful sneerfulness sneerier sneeriest sneering sneeringly sneerings sneerless sneers sneery snees sneesh sneeshan sneeshans sneeshes sneeshin sneeshing sneeshings sneeshins sneest sneesty sneeze sneezed sneezeguard sneezeguards sneezeless sneezeproof sneezer sneezers sneezes sneezeweed sneezeweeds sneezewood sneezewoods sneezewort sneezeworts sneezier sneeziest sneezing sneezings sneezy snell snelled sneller snellest snelling snells snelly snerp snew snib snibbed snibbing snibble snibbled snibbler snibel snibs snicher snick snickdraw snickdrawing snicked snicker snickered snickerer snickerers snickering snickeringly snickers snickersnee snickersneed snickersneeing snickersnees snickery snicket snickets snickey snicking snickle snicks sniddle snide snidely snideness snidenesses snider snidery snides snidest snidey snies sniff sniffable sniffed sniffer sniffers sniffier sniffiest sniffily sniffiness sniffinesses sniffing sniffingly sniffings sniffish sniffishly sniffishness sniffishnesses sniffle sniffled sniffler snifflers sniffles sniffling sniffly sniffs sniffy snift snifted snifter sniftered sniftering snifters sniftier snifties sniftiest snifting snifts snifty snig snigged snigger sniggered sniggerer sniggerers sniggering sniggeringly sniggerings sniggers snigging sniggle sniggled sniggler snigglers sniggles sniggling snigglings sniggoringly snight sniglet sniglets snigs snip snipe snipebill sniped snipefish snipefishes snipelike sniper snipers sniperscope sniperscopes snipes snipesbill snipier snipiest sniping snipings snipish snipjack snipnose snipocracy snipped snipper snipperado snippers snippersnapper snippersnappers snipperty snippet snippetier snippetiest snippetiness snippetinesses snippets snippety snippier snippiest snippily snippiness snippinesses snipping snippings snippish snippy snips snipsnapsnorum sniptious snipy snirl snirt snirtle snirtled snirtles snirtling snirts snit snitch snitched snitcher snitchers snitches snitchier snitchiest snitching snitchy snite snithe snithy snits snittle snitz snivel sniveled sniveler snivelers sniveling snivelingly snivelled sniveller snivellers snivelling snivelly snivels snively snivey snivy snob snobber snobberies snobbers snobbery snobbess snobbier snobbiest snobbily snobbiness snobbing snobbish snobbishly snobbishness snobbishnesses snobbism snobbisms snobbocracies snobbocracy snobby snobdom snobism snobling snoblings snobocracies snobocracy snobocrat snobographer snobographers snobographies snobography snobol snobologist snobonomer snobs snobscat snocat snocher snock snocker snod snodded snodder snoddest snodding snoddit snodly snods snoek snoeking snoeks snog snoga snogged snogging snogs snoke snoked snokes snoking snollygoster snollygosters snood snooded snooding snoods snook snooked snooker snookered snookering snookers snooking snooks snookses snookums snool snooled snooling snools snoop snooped snooper snoopers snooperscope snooperscopes snoopier snoopiest snoopily snoopiness snooping snoops snoopy snoose snoot snooted snootful snootfuls snootier snootiest snootily snootiness snootinesses snooting snoots snooty snoove snooze snoozed snoozer snoozers snoozes snoozier snooziest snooziness snoozing snoozle snoozled snoozles snoozling snoozy snop snore snored snoreless snorer snorers snores snoring snoringly snorings snork snorkel snorkeled snorkeler snorkelers snorkeling snorkelled snorkelling snorkellings snorkels snorker snort snorted snorter snorters snortier snortiest snorting snortingly snortings snortle snorts snorty snot snots snotted snotter snottered snotteries snottering snotters snottery snottie snottier snotties snottiest snottily snottiness snottinesses snotting snotty snouch snout snouted snouter snoutfair snoutier snoutiest snouting snoutish snoutless snoutlike snouts snouty snow snowball snowballed snowballing snowballs snowbank snowbanks snowbell snowbells snowbelt snowbelts snowberg snowberries snowberry snowbird snowbirds snowblindness snowblink snowblinks snowblower snowblowers snowboard snowboarded snowboarder snowboarders snowboarding snowboardings snowboards snowboot snowboots snowbound snowbreak snowbridge snowbroth snowbrush snowbrushes snowbush snowbushes snowcap snowcapped snowcaps snowcraft snowcreep snowdon snowdrift snowdrifts snowdrop snowdrops snowed snowfall snowfalls snowfield snowfields snowflake snowflakes snowfleck snowflecks snowflick snowflicks snowflight snowflower snowfowl snowhammer snowhouse snowie snowier snowiest snowily snowiness snowinesses snowing snowish snowk snowked snowking snowks snowl snowland snowlands snowless snowlike snowline snowlines snowmaker snowmakers snowmaking snowmakings snowman snowmanship snowmast snowmelt snowmelts snowmen snowmobile snowmobiled snowmobiler snowmobilers snowmobiles snowmobiling snowmobilings snowmobilist snowmobilists snowmold snowmolds snowpack snowpacks snowplough snowploughed snowploughing snowploughs snowplow snowplowed snowplowing snowplows snowproof snows snowscape snowscapes snowshade snowshed snowsheds snowshine snowshoe snowshoed snowshoeing snowshoer snowshoers snowshoes snowshoing snowslide snowslides snowslip snowslips snowstorm snowstorms snowsuit snowsuits snowsurfing snowsurfings snowthrower snowworm snowy snozzle snub snubbable snubbe snubbed snubbee snubber snubbers snubbes snubbier snubbiest snubbiness snubbinesses snubbing snubbingly snubbings snubbish snubbishly snubbishness snubby snubness snubnesses snubnose snubproof snubs snuck snudge snudged snudgery snudges snudging snuff snuffbox snuffboxer snuffboxes snuffcolored snuffcoloured snuffed snuffer snuffers snuffier snuffiest snuffily snuffiness snuffinesses snuffing snuffingly snuffings snuffish snuffkin snuffle snuffled snuffler snufflers snuffles snuffless snufflier snuffliest snuffliness snuffling snufflingly snufflings snuffly snuffman snuffs snuffy snug snugged snugger snuggerie snuggeries snuggery snuggest snuggies snugging snuggish snuggle snuggled snuggles snuggling snuggly snugify snugly snugness snugnesses snugs snum snup snupper snur snurl snurly snurp snurt snush snushed snushes snushing snuzzle snuzzled snuzzles snuzzling sny snyaptic snye snyed snyes snying so soak soakage soakages soakaway soakaways soaked soaken soaker soakers soaking soakingly soakings soakman soaks soaky soallies soally soam soap soapbark soapbarks soapberries soapberry soapbox soapboxed soapboxer soapboxes soapboxing soapbubbly soapbush soaped soaper soaperies soapers soapery soapfish soapfishes soapi soapie soapier soapies soapiest soapily soapiness soapinesses soaping soapland soaplands soaplees soapless soaplike soapmaker soapmaking soapmonger soapolallie soaprock soaproot soaproots soaps soapstone soapstoner soapstones soapsud soapsuddy soapsuds soapsudsy soapweed soapwood soapworks soapwort soapworts soapy soar soarability soarable soaraway soare soared soarer soarers soares soaring soaringly soarings soars soary soave soavemente soaves sob soba sobas sobbed sobber sobbers sobbing sobbingly sobbings sobby sobeit sober sobered soberer soberest sobering soberingly soberise soberised soberises soberising soberize soberized soberizes soberizing soberlike soberly soberness sobernesses sobers sobersault sobersided sobersidedly sobersidedness sobersidednesses sobersides soberwise sobful sobole soboles soboliferous sobproof sobralia sobralite sobrevest sobrieties sobriety sobriquet sobriquetical sobriquets sobs soc soca socage socager socagers socages socas soccage soccages soccer soccerist soccerite soccers socdolager socdolagers socdoliger socdoligers socdologer socdologers soce socht sociabilities sociability sociable sociableness sociablenesses sociables sociably social socialisation socialisations socialise socialised socialiser socialises socialising socialism socialisms socialist socialistic socialistically socialists socialite socialites socialities sociality socializable socialization socializations socialize socialized socializer socializers socializes socializing socially socialness socialnesses socials sociate sociates sociation sociations sociative socies societal societally societarian societarianism societarians societary societas societe societeit societies societified societism societist societologist societology society societyese societyish societyless socii socinian sociobiologic sociobiological sociobiologically sociobiologies sociobiologist sociobiologists sociobiology sociocentric sociocentricity sociocentrism sociocracy sociocrat sociocratic sociocultural socioculturally sociodrama sociodramatic socioeconomic socioeconomically socioeducational sociogenesis sociogenetic sociogenic sociogeny sociogram sociograms sociography sociohistorical sociol sociolatry sociolect sociolects sociolegal sociolinguist sociolinguistic sociolinguistically sociolinguistics sociolinguists sociologese sociologeses sociologian sociologic sociological sociologically sociologies sociologism sociologisms sociologist sociologistic sociologistically sociologists sociologize sociologized sociologizer sociologizing sociology sociomedical sociometric sociometrical sociometries sociometrist sociometrists sociometry socionomic socionomics socionomy sociopath sociopathic sociopathies sociopaths sociopathy sociophagous sociopolitical sociopsychological socioreligious socioromantic sociosexual sociosexualities sociosexuality sociostatic sociotechnical socius sock sockdolager sockdolagers sockdoliger sockdoligers sockdologer sockdologers socked socker sockeroo sockeroos socket socketed socketful socketing socketless sockets sockette sockettes sockeye sockeyes sockhead socking sockless socklessness sockmaker sockmaking sockman sockmen socko socks socky socle socles socman socmanry socmen soco socotrine socrates socratic socs sod soda sodaclase sodaic sodain sodaine sodaless sodalist sodalists sodalite sodalites sodalithite sodalities sodality sodamid sodamide sodamides sodas sodawater sodbuster sodbusters sodded sodden soddened soddening soddenly soddenness soddennesses soddens soddier soddies soddiest sodding soddite soddy sodger sodgered sodgering sodgers sodic sodio sodioaluminic sodioaurous sodiocitrate sodiohydric sodioplatinic sodiosalicylate sodiotartrate sodium sodiums sodless sodoku sodom sodomic sodomies sodomise sodomised sodomises sodomising sodomist sodomists sodomite sodomites sodomitess sodomitic sodomitical sodomitically sodomize sodomized sodomizes sodomizing sodoms sodomy sods sodwork sody soe soekoe soever sofa sofabed sofabeds sofane sofar sofars sofas sofer soferim soffarid soffione soffioni soffit soffits soffritto sofia sofkee sofrito sofritos soft softa softas softback softbacks softball softballer softballers softballs softboard softbound softbrained softcoal softcover softcovers softed soften softened softener softeners softening softenings softens softer softest softhead softheaded softheadedly softheadedness softheadednesses softheads softhearted softheartedly softheartedness softheartednesses softhorn softie softies softing softish softlanding softling softlings softly softner softness softnesses softpaste softs softshell softshells softship softsoap softtack software softwares softwood softwoods softy sog sogdian sogdolager sogdolagers sogdoliger sogdoligers sogdologer sogdologers soger sogered sogering sogers soget soggarth sogged soggendalite soggier soggiest soggily sogginess sogginesses sogging soggings soggy sogs soh soho sohs soiesette soign soigna soigne soignee soigné soignée soil soilage soilages soilborne soiled soiledness soilier soiliest soiliness soilinesses soiling soilings soilless soilproof soils soilure soilures soily soir soirae soiraes soiree soirees soirée soirées soissons soixantine soja sojas sojourn sojourned sojourner sojourners sojourney sojourning sojournings sojournment sojournments sojourns sok soka sokah sokahs sokaiya soke sokeman sokemanemot sokemanries sokemanry sokemen soken sokens sokes soko sokol sokols sokoro sol sola solace solaced solaceful solacement solacements solaceproof solacer solacers solaces solach solacing solacious solaciously solaciousness solah solahs solan solanaceae solanaceous solanal soland solander solanders solandra solands solanein solaneine solaneous solania solanicine solanidin solanidine solanin solanine solanines solanins solano solanoid solanopteris solanos solans solanum solanums solar solaria solariego solariia solarimeter solarimeters solarisation solarisations solarise solarised solarises solarising solarism solarisms solarist solaristic solaristically solaristics solarists solarium solariums solarization solarizations solarize solarized solarizes solarizing solarometer solars solary solas solate solated solates solatia solating solation solations solatium solattia solay solazzi sold soldado soldadoes soldados soldan soldanel soldanella soldanelle soldanrie soldans soldat soldatesque solde solder solderabilities solderability solderable soldered solderer solderers soldering solderings solderless solders soldes soldi soldier soldierbird soldierbush soldierdom soldiered soldieress soldierfare soldierfish soldierfishes soldierhearted soldierhood soldieries soldiering soldierings soldierise soldierize soldierlike soldierliness soldierlinesses soldierly soldierproof soldiers soldiership soldierships soldierwise soldierwood soldiery soldo solds sole solea soleas solecise solecised solecises solecising solecism solecisms solecist solecistic solecistical solecistically solecists solecize solecized solecizer solecizes solecizing soled solei soleidae soleiform soleil solein soleirolia soleless solely solemn solemncholy solemner solemness solemnesses solemnest solemnified solemnifies solemnifing solemnify solemnifying solemnisation solemnisations solemnise solemnised solemniser solemnisers solemnises solemnising solemnities solemnitude solemnity solemnization solemnizations solemnize solemnized solemnizer solemnizers solemnizes solemnizing solemnly solemnness solemnnesses solen solenacean solenaceous soleness solenesses solenette solenettes solenial solenichthyes solenidae solenite solenitis solenium solenne solennemente solenoconch solenocyte solenodon solenodons solenodont solenogaster solenogastres solenoglyph solenoglyphic solenoid solenoidal solenoidally solenoids solenopsis solenostele solenostelic solenostemon solenostomid solenostomoid solenostomous solens solent solentine solepiece soleplate soleplates soleprint soler solera soleras soleret solerets solers solert soles soleus soleuses soleyn soleyne solfa solfaed solfage solfaing solfaist solfaists solfas solfatara solfataras solfataric solfege solfeges solfeggi solfeggiare solfeggio solfeggios solferino solferinos solfge solfège solfèges solgel soli soliative solicit solicitant solicitants solicitation solicitationism solicitations solicited solicitee soliciter solicities soliciting solicitings solicitor solicitors solicitorship solicitorships solicitous solicitously solicitousness solicitousnesses solicitress solicitrix solicits solicitude solicitudes solicitudinous solicity solid solidago solidagos solidare solidares solidaric solidarily solidarism solidarisms solidarist solidaristic solidarists solidarities solidarity solidarize solidarized solidarizing solidary solidate solidated solidates solidating solideo solider solidest solidi solidifiability solidifiable solidifiableness solidification solidifications solidified solidifier solidifiers solidifies solidiform solidify solidifying solidillu solidish solidism solidisms solidist solidistic solidists solidities solidity solidly solidness solidnesses solido solidomind solids solidudi solidum solidums solidungular solidungulate solidungulous solidus soliduses solifidian solifidianism solifidianisms solifidians solifluction solifluctional solifluctions solifluxion solifluxions soliform solifuge solifugean solifugid solifugous soliloquacious soliloquies soliloquise soliloquised soliloquiser soliloquisers soliloquises soliloquising soliloquisingly soliloquist soliloquists soliloquium soliloquize soliloquized soliloquizer soliloquizers soliloquizes soliloquizing soliloquizingly soliloquy soliloquys solilunar soling solio solion solions soliped solipedal solipedous solipeds solipsism solipsismal solipsisms solipsist solipsistic solipsistically solipsists soliquid soliquids solist soliste solitaire solitaires solitarian solitarians solitaries solitarily solitariness solitarinesses solitary soliterraneous solitidal solito soliton solitons solitude solitudes solitudinarian solitudinarians solitudinize solitudinized solitudinizing solitudinous solivagant solivagants solivagous solive solives sollar sollaria sollars soller solleret sollerets sollers sollicker sollicking solmisation solmisations solmizate solmization solmizations soln solo solod solodi solodization solodize soloecophanes soloed soloing soloist soloistic soloists solomon solon solonchak solonchaks solonets solonetses solonetz solonetzes solonetzic solonetzicity solonisation solonisations solonist solonization solonizations solons solos soloth solotink solotnik solpuga solpugid solpugids solresol sols solstice solstices solsticion solstitia solstitial solstitially solstitium solubilisation solubilisations solubilise solubilised solubilises solubilising solubilities solubility solubilization solubilizations solubilize solubilized solubilizes solubilizing soluble solubleness solublenesses solubles solubly solum solums solunar solus solute solutes solutio solution solutional solutioned solutioner solutioning solutionis solutionist solutionists solutions solutise solutiser solutive solutize solutizer solutory solutrean solutus solv solvaated solvabilities solvability solvable solvabled solvableness solvablenesses solvabling solvate solvated solvates solvating solvation solvations solve solved solvement solvencies solvency solvend solvent solventless solvently solventproof solvents solver solvers solves solving solvolyses solvolysis solvolytic solvolyze solvolyzed solvolyzing solvsbergite solvus som soma somacule somaesthesia somaesthesis somal somali somalia somalian somalo soman somans somaplasm somas somascope somascopes somasthenia somata somatasthenia somatatesthesis somaten somatenes somateria somatesthesia somatic somatical somatically somaticosplanchnic somaticovisceral somatics somatism somatisms somatist somatists somatization somatochrome somatocyst somatocystic somatoderm somatogenetic somatogenic somatognosis somatognostic somatologic somatological somatologically somatologies somatologist somatologists somatology somatome somatomedin somatomedins somatomic somatophyte somatophytic somatoplasm somatoplasms somatoplastic somatopleural somatopleure somatopleures somatopleuric somatopsychic somatosense somatosensory somatosplanchnic somatostatin somatostatins somatotensic somatotonia somatotonias somatotonic somatotrophic somatotrophin somatotrophins somatotropic somatotropically somatotropin somatotropins somatotropism somatotype somatotyped somatotyper somatotypes somatotypic somatotypically somatotyping somatotypology somatotypy somatous somatrophin somber sombered somberer somberest sombering somberish somberly somberness sombernesses sombers sombre sombred sombreish sombreite sombrely sombreness sombrenesses sombrer sombrerite sombrerites sombrero sombreroed sombreros sombres sombrest sombring sombrous sombrously sombrousness somdel somdiel some somebodies somebody somebodyll someday somedays somedeal somedele somegate somehow someone someonell someones somepart someplace somers somersault somersaulted somersaulting somersaults somerset somerseted somerseting somersets somersetted somersetting somerville somervillite somesthesia somesthesis somesthesises somesthetic somet something somethingness somethings sometime sometimes somever someway someways somewhat somewhatly somewhatness somewhats somewhen somewhence somewhere somewheres somewhile somewhiles somewhither somewhy somewise somital somite somites somitic somler somma sommaite somme sommelier sommeliers sommer sommite somnambulance somnambulances somnambulancy somnambulant somnambulantly somnambulants somnambular somnambulary somnambulate somnambulated somnambulates somnambulating somnambulation somnambulations somnambulator somnambulators somnambule somnambulency somnambules somnambulic somnambulically somnambulism somnambulisms somnambulist somnambulistic somnambulistically somnambulists somnambulize somnambulous somne somner somnial somniate somniated somniates somniating somniative somniatory somniculous somnifacient somnifacients somniferous somniferously somnific somnifuge somnifugous somnify somniloquacious somniloquence somniloquences somniloquent somniloquies somniloquise somniloquised somniloquises somniloquising somniloquism somniloquisms somniloquist somniloquists somniloquize somniloquized somniloquizes somniloquizing somniloquous somniloquy somnipathist somnipathy somnivolency somnivolent somnolence somnolences somnolencies somnolency somnolent somnolently somnolescence somnolescent somnolism somnolize somnopathy somnorific somnus sompay sompne sompner sompnour somrai soms son sonable sonagram sonance sonances sonancies sonancy sonant sonantal sonantic sonantina sonantised sonantized sonants sonar sonarman sonarmen sonars sonata sonatas sonatina sonatinas sonatine sonation sonce sonces sonchus soncy sond sondage sondages sondation sonde sondeli sondelis sonder sonderclass sonders sondes sone soneri soneris sones song songbag songbird songbirds songbook songbooks songcraft songcrafts songer songfest songfests songful songfully songfulness songfulnesses songhai songish songkok songland songle songless songlessly songlessness songlet songlike songman songmen songs songsmith songsmiths songster songsters songstress songstresses songworthy songwright songwriter songwriters songwriting songwritings songy sonhood sonhoods sonic sonica sonically sonicate sonicated sonicates sonicating sonication sonications sonicator sonics soniferous sonification soning soniou sonk sonless sonlike sonlikeness sonly sonne sonneratiaceous sonnes sonnet sonnetary sonneted sonneteer sonneteered sonneteeress sonneteering sonneteerings sonneteers sonnetic sonneting sonnetings sonnetisation sonnetise sonnetised sonnetises sonnetish sonnetising sonnetist sonnetists sonnetization sonnetize sonnetized sonnetizes sonnetizing sonnetlike sonnetry sonnets sonnetted sonnetting sonnetwise sonnies sonnikins sonnobuoy sonny sonobuoy sonobuoys sonofabitch sonogram sonograms sonograph sonographer sonographers sonographies sonographs sonography sonoluminescence sonoluminescences sonometer sonora sonorant sonorants sonores sonorescence sonorescent sonoric sonoriferous sonoriferously sonorific sonorities sonority sonorize sonorophone sonorosity sonorous sonorously sonorousness sonorousnesses sonovox sonovoxes sons sonse sonses sonship sonships sonsie sonsier sonsiest sonsofbitches sonsy sontag sontags sontenna sonties soochong soochongs soodle soodled soodling soodly sooey soogan soogee soogeed soogeeing soogees soogeing soogie soogied soogieing soogies soojee soojey soojeyed soojeying soojeys sook sookie sooks sooky sool soole sooled sooles sooling sooloos sools soom soomed sooming sooms soon sooner sooners soonest soonish soonly soony soop sooped sooper sooping soopings soops soopstake soorawn soord sooreyn soorkee soorki soorky soorma soosoo soot soote sooted sooter sooterkin sooterkins sootes sootflake sootflakes sooth soothe soothed soother soothered sootherer soothering soothers soothes soothest soothfast soothfastly soothfastness soothfastnesses soothful soothing soothingly soothingness soothingnesses soothings soothless soothlich soothly sooths soothsaid soothsaw soothsay soothsayer soothsayers soothsayership soothsaying soothsayings soothsays sootied sootier sootiest sootily sootiness sootinesses sooting sootish sootless sootlike sootproof soots sooty sootying sootylike sop sopaipilla sopaipillas sopapilla sopapillas sope soph sopheme sophene sopher sopheric sopherim sophi sophia sophic sophical sophically sophies sophiologic sophiology sophis sophism sophisms sophist sophister sophisters sophistic sophistical sophistically sophisticalness sophisticant sophisticate sophisticated sophisticatedly sophisticates sophisticating sophistication sophistications sophisticative sophisticator sophisticators sophisticism sophistics sophistress sophistries sophistry sophists sophoclean sophocles sophomore sophomores sophomoric sophomorical sophomorically sophora sophoria sophronize sophronized sophronizing sophrosyne sophs sophta sophy sopite sopited sopites sopiting sopition sopor soporate soporiferous soporiferously soporiferousness soporiferousnesses soporific soporifical soporifically soporifics soporifousness soporose soporous sopors sopped sopper soppier soppiest soppily soppiness soppinesses sopping soppings soppy sopra soprani sopranini sopranino sopraninos sopranist sopranists soprano sopranos sops sora sorabian sorage sorages soral soralium sorance soras sorb sorbabilities sorbability sorbable sorbaria sorbarias sorbate sorbates sorbed sorbefacient sorbefacients sorbent sorbents sorbet sorbets sorbian sorbic sorbile sorbin sorbing sorbinose sorbitan sorbite sorbites sorbitic sorbitisation sorbitisations sorbitise sorbitised sorbitises sorbitising sorbitization sorbitizations sorbitize sorbitized sorbitizes sorbitizing sorbitol sorbitols sorbo sorbol sorbonist sorbos sorbose sorboses sorbosid sorboside sorbs sorbus sorbuses sorcer sorcerer sorcerers sorceress sorceresses sorceries sorcering sorcerize sorcerous sorcerously sorcery sorchin sord sorda sordamente sordavalite sordawalite sordellina sordes sordid sordider sordidest sordidity sordidly sordidness sordidnesses sordine sordines sordini sordino sordo sordor sordors sords sore sored soreddia soredia soredial sorediate sorediferous sorediform soredioid soredium soree sorees sorefalcon sorefoot sorehawk sorehead soreheaded soreheadedly soreheadedness soreheads sorehearted sorehon sorehons sorel sorell sorells sorels sorely sorema soreness sorenesses sorer sores sorest sorex sorexes sorghe sorgho sorghos sorghum sorghums sorgo sorgos sori soricid soricidae soricident soricine soricoid soriferous soring sorings sorite sorites soritic soritical sorn sornare sornari sorned sorner sorners sorning sornings sorns soroban sorobans soroche soroches soroptimist sororal sororally sororate sororates sororial sororially sororicidal sororicide sororicides sororise sororised sororises sororising sororities sorority sororize sororized sororizes sororizing sorose soroses sorosil sorosilicate sorosis sorosises sorosphere sorption sorptions sorptive sorra sorrance sorras sorrel sorrels sorren sorrento sorrier sorries sorriest sorrily sorriness sorrinesses sorroa sorrow sorrowed sorrower sorrowers sorrowful sorrowfully sorrowfulness sorrowfulnesses sorrowing sorrowingly sorrowings sorrowless sorrowlessly sorrowlessness sorrowproof sorrows sorrowy sorry sorryhearted sorryish sort sorta sortable sortably sortal sortance sortances sortation sortations sorted sorter sorters sortes sortiary sortie sortied sortieing sorties sortilege sortileger sortilegers sortileges sortilegi sortilegic sortilegies sortilegious sortilegus sortilegy sortiment sorting sortings sortita sortition sortitions sortlige sortly sortment sortments sorts sortwith sorty sorus sorva sory sos sosatie sosaties sosh soshed sosie soso sosoish sospiro sosquil soss sossed sosses sossiego sossing sossings sossle sostenendo sostenente sostenuti sostenuto sostenutos sostinente sostinento sot sotadean sotadic soterial soteriologic soteriological soteriologies soteriology soth sothiac sothic sothis sotho soths sotie sotnia sotnik sotol sotols sots sottage sotted sottedly sottedness sotter sottery sottie sotting sottings sottise sottish sottishly sottishness sottishnesses sottisier sottisiers sotweed sou souagga souamosa souamula souari souaris soubise soubises soubresaut soubresauts soubrette soubrettes soubrettish soubriquet soubriquets soucar soucars souce souced souces souchet souchie souchong souchongs souchy soucing souct soud soudagur soudan soudans soudge soudgy soueak soueef soueege souffl souffla soufflaed soufflaing souffle souffled souffleed souffleing souffles souffleur soufflé soufflés soufousse sougan sough soughed sougher soughfully soughing soughingly soughless soughs sought souk soukous soukouses souks soul soulack soulbell soulcake souldan souldans souldie souldier souldiered souldiering souldiers souled soulful soulfully soulfulness soulfulnesses soulheal soulhealth soulical soulish soulless soullessly soullessness soullessnesses soullike soulmate soulmates soulpence soulpenny souls soulsaving soulter soultre soulward soulx souly soulz soum soumak soumansite soumarque soumed souming soumings soums sound soundable soundage soundalike soundalikes soundbite soundbites soundboard soundboards soundbox soundboxes soundcard soundcards soundcheck soundchecks sounded sounder sounders soundest soundful soundheaded soundheadedness soundhearted soundheartednes soundheartedness sounding soundingly soundingness soundings soundless soundlessly soundlessness soundlessnesses soundly soundman soundmen soundness soundnesses soundpost soundproof soundproofed soundproofing soundproofs sounds soundscape soundscapes soundstage soundstages soundstripe soundtrack soundtracks soup soupbone soupcon soupcons souped souper soupers soupfin soupiares soupier soupiere soupieres soupiest soupiness souping souple soupled souples soupless souplike soupling soupmeat soupon soups soupspoon soupspoons soupy soupçon soupçons sour sourball sourballs sourbellies sourbelly sourberries sourberry sourbread sourbush sourcake source sourcebook sourcebooks sourced sourceful sourcefulness sourceless sources sourcing sourcings sourcrout sourd sourdeline sourdelines sourdine sourdines sourdock sourdook sourdough sourdoughs sourdre soured souredness souren sourer sourest sourhearted souring sourings sourish sourishly sourishness sourjack sourling sourly sourness sournesses sourock sourocks sourpuss sourpussed sourpusses sours sourse sourses soursop soursops sourtop sourveld sourweed sourwood sourwoods soury sous sousa sousaphone sousaphones sousaphonist souse soused souser souses sousewife soushy sousing sousings souslik sousliks sout soutache soutaches soutage soutane soutanes soutar soutars souteneur souteneurs soutenu souter souterly souterrain souterrains souters south southard southbound southcottian southdown southeast southeaster southeasterly southeastern southeasterner southeasternmost southeasters southeasts southeastward southeastwardly southeastwards southed souther southered southering southerland southerlies southerliness southerlinesses southerly southermost southern southerner southerners southernest southernise southernised southernises southernising southernism southernisms southernize southernized southernizes southernizing southernliness southernly southernmost southernness southernnesses southerns southernward southernwards southernwood southernwoods southers southing southings southland southlander southlanders southlands southly southmost southness southpaw southpaws southron southrons souths southsaid southsay southsayer southsayers southsaying southsays southward southwardly southwards southwest southwester southwesterlies southwesterly southwestern southwesterner southwesterners southwesternmost southwesters southwests southwestward southwestwardly southwestwards southwood souts soutter souush souushy souvenir souvenired souveniring souvenirs souverain souvlaki souvlakia souvlakias souvlakis souwester sov sovenance sovenances sovenez sovereign sovereigness sovereignize sovereignly sovereignness sovereigns sovereignship sovereignties sovereigntist sovereigntists sovereignty soverty soviet sovietdom sovietic sovietisation sovietisations sovietise sovietised sovietises sovietising sovietism sovietisms sovietist sovietistic sovietization sovietizations sovietize sovietized sovietizes sovietizing sovietological sovietologist sovietologists soviets sovite sovkhos sovkhose sovkhoz sovkhozes sovkhozy sovprene sovran sovranly sovrans sovranties sovranty sovs sow sowable sowan sowans sowar sowarree sowarrees sowarries sowarry sowars sowback sowbacked sowbacks sowbane sowbellies sowbelly sowbread sowbreads sowcar sowcars sowce sowced sowces sowcing sowder sowdones sowed sowel sowens sower sowers soweto sowf sowfed sowff sowffed sowffing sowffs sowfing sowfoot sowfs sowing sowings sowins sowish sowl sowle sowled sowles sowlike sowling sowls sowlth sowm sowmed sowming sowms sown sownd sownded sownding sownds sowne sownes sowp sowps sows sowse sowsed sowses sowsing sowsse sowssed sowsses sowssing sowt sowte sowter sowters sowth sowthed sowthing sowths sox soy soya soyabean soyamilk soyas soyate soybean soybeans soyle soyled soyles soymilk soymilks soys soyuz soyuzes sozin sozine sozines sozins sozly sozolic sozzle sozzled sozzles sozzlier sozzliest sozzling sozzly sp spa spaad space spaceband spacebands spaceborne spacebridge spacebridges spacecraft spacecrafts spaced spacefaring spacefarings spaceflight spaceflights spaceful spacelab spacelabs spaceless spaceman spacemanship spacemen spaceplane spaceplanes spaceport spaceports spacer spacers spaces spacesaving spaceship spaceships spacesuit spacesuits spacetime spacewalk spacewalked spacewalker spacewalkers spacewalking spacewalks spaceward spacewoman spacewomen spacey spacial spaciality spacially spacier spaciest spaciness spacinesses spacing spacings spaciosity spaciotemporal spacious spaciously spaciousness spaciousnesses spacistor spack spackle spackled spackles spackling spacy spad spadaite spadassin spadassins spaddle spade spadebone spaded spadefish spadefishes spadefoot spadeful spadefuls spadelike spademan spademen spader spaders spades spadesman spadesmen spadewise spadework spadeworks spadger spadgers spadiard spadiceous spadices spadicifloral spadiciflorous spadiciform spadicose spadilla spadille spadilles spadillio spadillios spadillo spadillos spading spadish spadix spadixes spado spadoes spadone spadones spadonic spadonism spados spadrone spadroon spadroons spae spaebook spaecraft spaed spaedom spaeing spaeings spaeman spaemen spaer spaers spaes spaetzle spaetzles spaewife spaewives spaewoman spaework spaewright spag spageric spagerical spagerics spagerist spagerists spagetti spaghetti spaghettilike spaghettini spaghettinis spaghettis spagiric spagirical spagirics spagirist spagirists spagnuolo spags spagyric spagyrical spagyrically spagyrics spagyrist spagyrists spahee spahees spahi spahis spaid spaik spail spails spain spained spaing spaings spaining spains spair spairge spairged spairges spairging spait spaits spak spake spaked spalacid spalacidae spalacine spalax spald spaldeen spaldeens spalder spalding spalds spale spales spall spallable spallation spallations spalle spalled spaller spallers spalles spalling spallings spalls spalpeen spalpeens spalt spalted spalting spalts spam spamblock spamblocks spammed spammer spammers spammier spammiest spamming spammings spammy spams span spanaemia spanaemias spanaemic spanakopita spanakopitas spancel spanceled spanceling spancelled spancelling spancels spandau spandex spandexes spandle spandrel spandrels spandril spandrils spandy spane spaned spanemia spanemic spanemy spanes spang spanged spanghew spanghewed spanghewing spanghews spanging spangle spangled spangler spanglers spangles spanglet spanglets spanglier spangliest spangling spanglings spangly spangolite spangs spaniard spaniards spaniel spanielled spaniellike spanielling spaniels spanielship spaning spaniolate spaniolated spaniolates spaniolating spaniolise spaniolised spaniolises spaniolising spaniolize spaniolized spaniolizes spaniolizing spanipelagic spanish spanishly spank spanked spanker spankers spankily spanking spankingly spankings spankled spanks spanky spanless spann spanned spannel spanner spannerman spannermen spanners spanning spanokopita spanokopitas spanopnea spanopnoea spanpiece spans spanspek spansule spansules spantoon spanule spanworm spanworms spar sparable sparables sparada sparadrap sparage sparagmatic sparagrass sparagrasses sparagus sparassodont sparaxis sparaxises sparch spard spare spareable spared spareful spareless sparely spareness sparenesses sparer sparerib spareribs sparers spares sparesome sparest sparganiaceae sparganium sparganiums sparganosis sparganum sparge sparged spargefication sparger spargers sparges sparging spargosis sparhawk sparid sparidae sparids sparily sparing sparingly sparingness sparingnesses spark sparkback sparke sparked sparker sparkers sparkes sparkie sparkier sparkies sparkiest sparkily sparkiness sparking sparkingly sparkish sparkishly sparkishness sparkle sparkleberries sparkleberry sparkled sparkler sparklers sparkles sparkless sparklessly sparklet sparklets sparklier sparklies sparkliest sparklike sparkliness sparkling sparklingly sparklingness sparklings sparkly sparkplug sparkplugged sparkplugging sparkplugs sparkproof sparks sparky sparlike sparling sparlings sparm sparmannia sparoid sparoids sparpiece sparple sparpled sparpling sparre sparred sparrer sparrers sparres sparrier sparriest sparring sparringly sparrings sparrow sparrowbill sparrowcide sparrowdom sparrowgrass sparrowgrasses sparrowhawk sparrowhawks sparrowish sparrowless sparrowlike sparrows sparrowtail sparrowtongue sparrowwort sparrowy sparry sparrygrass spars sparse sparsedly sparsely sparseness sparsenesses sparser sparsest sparsile sparsim sparsioplast sparsities sparsity spart sparta spartacist spartan spartanly spartans spartein sparteine sparteines sparterie sparteries sparth sparthe sparthes sparths spartiate spartina spartium spartle spartled spartling sparts sparus sparver sparvers spary spas spasm spasmatic spasmatical spasmatomancy spasmed spasmic spasming spasmodic spasmodical spasmodically spasmodicalness spasmodism spasmodist spasmodists spasmolysant spasmolysis spasmolytic spasmolytically spasmolytics spasmophile spasmophilia spasmophilic spasmotin spasmotoxin spasmotoxine spasmous spasms spasmus spastic spastically spasticities spasticity spastics spat spatalamancy spatangoid spatangoida spatangoidean spatangoids spatchcock spatchcocked spatchcocking spatchcocks spate spated spates spatfall spatfalls spath spatha spathaceous spathae spathal spathe spathed spatheful spathes spathic spathiform spathilae spathilla spathillae spathiphyllum spathiphyllums spathose spathous spathulate spatial spatialisation spatialise spatialism spatialist spatialities spatiality spatialization spatialize spatially spatiate spatiation spatilomancy spating spatio spatiography spatiotemporal spatiotemporally spatium spatlese spatlesen spatleses spatling spatlum spats spattania spatted spattee spattees spatter spatterdash spatterdashed spatterdasher spatterdashes spatterdock spatterdocks spattered spattering spatteringly spatterproof spatters spatterware spatterwork spatterworks spatting spattle spattled spattlehoe spattling spatula spatulamancy spatular spatulas spatulate spatulation spatule spatules spatuliform spatulose spatulous spatzle spatzles spaught spaul spauld spaulder spauldrochy spaulds spauls spave spaver spavie spavied spavies spaviet spavin spavindy spavine spavined spavins spavit spaw spawl spawled spawler spawling spawls spawn spawneater spawned spawner spawners spawnier spawniest spawning spawnings spawns spawny spaws spay spayad spayads spayard spayards spayd spayds spayed spaying spays spaz spaza spazas spazes spazz spazzed spazzes spazzing speak speakable speakableness speakablies speakably speakeasies speakeasy speaker speakeress speakerine speakerines speakerphone speakerphones speakers speakership speakerships speakhouse speakie speakies speaking speakingly speakingness speakings speakless speaklessly speakout speakouts speaks speal spealbone speals spean speaned speaning speans spear spearcast speared spearer spearers speareye spearfish spearfished spearfisher spearfishes spearfishing spearflower speargun spearguns spearhead spearheaded spearheading spearheads spearier speariest spearing spearlike spearman spearmanship spearmen spearmint spearmints spearproof spears spearsman spearsmen spearwood spearwort spearworts speary speat speats speave spec specced specchie speccies speccing speccy spece special specialer specialest specialisation specialisations specialise specialised specialiser specialisers specialises specialising specialism specialisms specialist specialistic specialists specialities speciality specialization specializations specialize specialized specializer specializers specializes specializing specially specialness specialnesses specialogue specialogues specials specialties specialty speciate speciated speciates speciating speciation speciational speciations specie species speciesism speciesisms speciesist speciesists speciestaler specif specifiable specifiably specific specifical specificality specifically specificalness specificate specificated specificates specificating specification specifications specificative specificatively specificise specificities specificity specificize specificized specificizing specificly specificness specifics specified specifier specifiers specifies specifist specify specifying specillum specimen specimenise specimenize specimenized specimens speciocide speciocides speciology speciosities speciosity specious speciously speciousness speciousnesses speck specked speckedness speckfall speckier speckiest speckiness specking speckle specklebelly specklebreast speckled speckledbill speckledness specklednesses speckledy specklehead speckles speckless specklessly specklessness speckliness speckling speckly speckproof specks specksioneer specksioneers specktioneer specktioneers specky specs specsartine spect spectacle spectacled spectacleless spectaclelike spectaclemaker spectaclemaking spectacles spectactularly spectacular spectacularism spectacularities spectacularity spectacularly spectaculars spectant spectate spectated spectates spectating spectator spectatordom spectatorial spectators spectatorship spectatorships spectatory spectatress spectatresses spectatrix spectatrixes specter spectered specterlike specters specting spectinomycin spectinomycins spector spectra spectral spectralism spectralities spectrality spectrally spectralness spectralnesses spectre spectred spectrelike spectres spectrin spectrins spectrobolograph spectrobolographic spectrobolometer spectrobolometric spectrochemical spectrochemistries spectrochemistry spectrocolorimetry spectrocolourimetry spectrocomparator spectroelectric spectrofluorimeter spectrofluorimeters spectrofluorometer spectrofluorometers spectrofluorometric spectrofluorometries spectrofluorometry spectrogram spectrograms spectrograph spectrographer spectrographic spectrographical spectrographically spectrographies spectrographs spectrography spectroheliogram spectroheliograms spectroheliograph spectroheliographic spectroheliographies spectroheliographs spectroheliography spectrohelioscope spectrohelioscopes spectrohelioscopic spectrological spectrologically spectrologies spectrology spectrometer spectrometers spectrometric spectrometries spectrometry spectromicroscope spectromicroscopical spectrophobia spectrophoby spectrophone spectrophonic spectrophotoelectric spectrophotograph spectrophotography spectrophotometer spectrophotometers spectrophotometric spectrophotometrical spectrophotometrically spectrophotometries spectrophotometry spectropolarimeter spectropolariscope spectropyrheliometer spectropyrometer spectroradiometer spectroradiometric spectroradiometry spectroscope spectroscopes spectroscopic spectroscopical spectroscopically spectroscopies spectroscopist spectroscopists spectroscopy spectrosocopical spectrotelescope spectrous spectrum spectrums spectry specttra specula specular specularities specularity specularly speculate speculated speculates speculating speculation speculations speculatist speculatists speculative speculatively speculativeness speculativenesses speculativism speculator speculators speculatory speculatrices speculatrix speculatrixes speculist speculum speculums specus sped speece speech speechcraft speechcrafts speeched speecher speeches speechful speechfulness speechfulnesses speechification speechifications speechified speechifier speechifiers speechifies speechify speechifying speeching speechless speechlessly speechlessness speechlessnesses speechlore speechmaker speechmakers speechmaking speechmakings speechment speechway speechwriter speechwriters speed speedaway speedball speedballed speedballing speedballings speedballs speedboat speedboater speedboating speedboatings speedboatman speedboats speeded speeder speeders speedful speedfully speedfulness speedgun speedier speediest speedily speediness speedinesses speeding speedingly speedingness speedings speedless speedlight speedly speedo speedometer speedometers speedos speeds speedskating speedskatings speedster speedsters speedup speedups speedwalk speedway speedways speedwell speedwells speedwriting speedwritings speedy speel speeled speeler speelers speeling speelken speelless speels speen speer speered speering speerings speerity speers speight speil speiled speiling speils speir speired speiring speirings speirs speise speises speiskobalt speiss speisscobalt speisses spek spekboom spekbooms speks spekt spelaean spelaeologies spelaeologist spelaeologists spelaeology spelaeothem spelaeothems spelbinding spelbound speld spelded spelder speldered speldering spelders speldin spelding speldings speldins speldrin speldring speldrings speldrins speldron spelds spelean speleological speleologies speleologist speleologists speleology speleothem speleothems spelk spelks spell spellable spellbind spellbinder spellbinders spellbinding spellbindingly spellbinds spellbound spellcasting spellcheck spellchecker spellcheckers spellchecks spellcraft spelldown spelldowns spelled speller spellers spellful spellican spellicans spelling spellingdown spellingly spellings spellken spellmonger spellproof spells spellstopt spellword spellwork spelman spelt spelter spelterman speltermen spelters speltoid spelts speltz speltzes speluncar speluncean spelunk spelunked spelunker spelunkers spelunking spelunkings spelunks spence spencer spencerian spencerianism spencerite spencers spences spencie spency spend spendable spendall spendalls spender spenders spendful spendible spending spendings spendless spends spendthrift spendthriftiness spendthriftness spendthrifts spendthrifty spenglerian spense spenser spenserian spenses spent speos speoses sperable sperage speramtozoon sperate spere spergillum spergula spergularia sperity sperket sperling sperlings sperm sperma spermaceti spermacetilike spermacetis spermaduct spermaducts spermagonia spermagonium spermalist spermania spermaphyte spermaphytes spermaphytic spermaria spermaries spermarium spermary spermashion spermata spermatangium spermatheca spermathecae spermathecal spermathecas spermatia spermatial spermatic spermatical spermatically spermatics spermatid spermatids spermatiferous spermatin spermatiogenous spermation spermatiophore spermatism spermatist spermatists spermatitis spermatium spermatize spermatoblast spermatoblastic spermatoblasts spermatocele spermatoceles spermatocidal spermatocide spermatocides spermatocyst spermatocystic spermatocystitis spermatocytal spermatocyte spermatocytes spermatogemma spermatogene spermatogeneses spermatogenesis spermatogenetic spermatogenic spermatogenies spermatogenous spermatogeny spermatogonia spermatogonial spermatogonium spermatogoniums spermatoid spermatolysis spermatolytic spermatophobia spermatophoral spermatophore spermatophores spermatophorous spermatophyta spermatophyte spermatophytes spermatophytic spermatoplasm spermatoplasmic spermatoplast spermatorrhea spermatorrheas spermatorrhoea spermatorrhoeas spermatospore spermatotheca spermatothecae spermatothecas spermatova spermatovum spermatoxin spermatozoa spermatozoal spermatozoan spermatozoans spermatozoic spermatozoid spermatozoids spermatozoio spermatozoon spermatozzoa spermaturia spermic spermicidal spermicide spermicides spermidin spermidine spermiducal spermiduct spermiducts spermigerous spermin spermine spermines spermiogeneses spermiogenesis spermiogenetic spermism spermist spermoblast spermoblastic spermocarp spermocenter spermoderm spermoduct spermogenesis spermogenous spermogone spermogones spermogonia spermogoniferous spermogonium spermogonnia spermogonous spermologer spermological spermologist spermology spermolysis spermolytic spermophile spermophiles spermophiline spermophilus spermophobia spermophore spermophorium spermophyte spermophytes spermophytic spermosphere spermotheca spermotoxin spermous spermoviduct sperms spermule spermy speron speronara speronaras speronares speronaro speronaroes speronaros sperone sperple sperre sperred sperres sperring sperrylite sperrylites sperse spersed sperses spersing sperst sperthe sperthes spessartine spessartines spessartite spessartites spet spetch spetches spete spetrophoby spets spetsnaz spetsnazes spetting spettle spetznaz spetznazes speuchan spew spewed spewer spewers spewier spewiest spewiness spewinesses spewing spews spewy spex speyeria sphacel sphacelariaceous sphacelate sphacelated sphacelates sphacelating sphacelation sphacelations sphacele sphacelia sphacelial sphacelism sphaceloderma sphacelotheca sphacelotoxin sphacelous sphacelus sphaceluses sphaer sphaeralcea sphaeraphides sphaere sphaerenchyma sphaeres sphaeriaceae sphaeriaceous sphaeriales sphaeridia sphaeridial sphaeridium sphaeripium sphaeristeria sphaeristerium sphaerite sphaerites sphaeroblast sphaerobolaceae sphaerocarpaceae sphaerocarpales sphaerocarpos sphaerocarpus sphaerocobaltite sphaerocobaltites sphaerococcaceous sphaerocrystal sphaerocrystals sphaerolite sphaerolitic sphaerosiderite sphaerosiderites sphaerosome sphaerospore sphaers sphagia sphagion sphagnaceous sphagnales sphagnicolous sphagnologies sphagnologist sphagnologists sphagnology sphagnous sphagnum sphagnums sphairistike sphairistikes sphalerite sphalerites sphalm sphalma sphear spheare spheares sphears sphecid sphecidae sphecius sphecoid sphecoidea sphecotheres spheges sphegid sphendone sphendones sphene sphenes sphenethmoid sphenethmoidal sphenic sphenion spheniscan spheniscidae sphenisciformes spheniscine spheniscomorph spheniscomorphic spheniscus sphenobasilar sphenobasilic sphenocephalia sphenocephalic sphenocephalous sphenocephaly sphenodon sphenodons sphenodont sphenoethmoid sphenoethmoidal sphenofrontal sphenogram sphenograms sphenographer sphenographic sphenographist sphenography sphenoid sphenoidal sphenoiditis sphenoids sphenolith sphenomalar sphenomandibular sphenomaxillary sphenopalatine sphenoparietal sphenopetrosal sphenophyllaceous sphenopsid sphenopsida sphenopsids sphenosquamosal sphenotemporal sphenotic sphenotribe sphenotripsy sphenoturbinal sphenovomerine sphenozygomatic spherable spheradian spheral spherality spheraster spheration sphere sphered sphereless spherelike spheres spheric spherical sphericalities sphericality spherically sphericalness sphericalnesses sphericist sphericities sphericity sphericle sphericocylindrical sphericotetrahedral sphericotriangular spherics spherier spheriest spheriform spherify sphering spheristerion spheristerions spheroconic spherocrystal spherocyte spherocytes spherocytoses spherocytosis spherograph spheroid spheroidal spheroidally spheroidic spheroidical spheroidically spheroidicities spheroidicity spheroidisation spheroidisations spheroidise spheroidised spheroidises spheroidising spheroidism spheroidity spheroidization spheroidizations spheroidize spheroidized spheroidizes spheroidizing spheroids spherome spheromere spherometer spherometers spheroplast spheroplasts spheroquartic spherosome spherula spherular spherulate spherule spherules spherulite spherulites spherulitic spherulitize sphery spheterize sphex sphexide sphincter sphincteral sphincteralgia sphincterate sphincterectomy sphincterial sphincteric sphincterismus sphincteroscope sphincteroscopy sphincterotomy sphincters sphindid sphingal sphinges sphingid sphingidae sphingids sphingiform sphingine sphingoid sphingometer sphingomyelin sphingomyelins sphingosin sphingosine sphingosines sphinx sphinxes sphinxian sphinxianness sphinxine sphinxlike sphragide sphragistic sphragistics sphygmia sphygmic sphygmochronograph sphygmodic sphygmogram sphygmograms sphygmograph sphygmographic sphygmographies sphygmographs sphygmography sphygmoid sphygmologies sphygmology sphygmomanometer sphygmomanometers sphygmomanometric sphygmomanometrically sphygmomanometries sphygmomanometry sphygmometer sphygmometers sphygmometric sphygmophone sphygmophones sphygmophonic sphygmoscope sphygmoscopes sphygmus sphygmuses sphyraena sphyraenid sphyraenidae sphyraenoid sphyrapicus sphyrna sphyrnidae spial spials spic spica spicae spical spicant spicas spicate spicated spiccato spiccatos spice spiceable spiceberries spiceberry spicebush spicebushes spicecake spiced spiceful spicehouse spiceland spiceless spicelike spicemill spicer spiceries spicers spicery spices spicewood spicey spicier spiciest spiciferous spiciform spicigerous spicilege spicileges spicily spiciness spicinesses spicing spick spicker spickest spicket spickle spicknel spicknels spicks spicose spicosity spicous spicousness spics spicula spiculae spicular spiculas spiculate spiculated spiculation spiculations spicule spicules spiculiferous spiculiform spiculigenous spiculigerous spiculofiber spiculose spiculous spiculum spiculumamoris spicy spide spider spidered spiderflower spiderhunter spiderier spideriest spiderish spiderless spiderlet spiderlike spiderling spiderly spiderman spidermen spidermonkey spiders spiderweb spiderwebbed spiderwebbing spiderwebs spiderwork spiderworks spiderwort spiderworts spidery spidger spie spied spiegel spiegeleisen spiegeleisens spiegels spiel spieled spieler spielers spieling spiels spier spiered spiering spiers spies spif spiff spiffed spiffied spiffier spiffies spiffiest spiffily spiffiness spiffinesses spiffing spifflicate spifflicated spifflicates spifflicating spifflication spifflications spiffs spiffy spiffying spiflicate spiflicated spiflicates spiflicating spiflication spiflications spig spiggoty spight spighted spighting spights spignel spignels spignet spignut spigot spigots spike spikebill spiked spikedace spikedaces spikedness spikefish spikefishes spikehole spikehorn spikelet spikelets spikelike spikemoss spikenard spikenards spiker spikeries spikers spikery spikes spiketail spiketop spikeweed spikewise spikey spikier spikiest spikily spikiness spikinesses spiking spiky spile spiled spilehole spiler spiles spileworm spilikin spilikins spiling spilings spilite spilites spilitic spill spillable spillage spillages spillbox spilled spiller spillers spillet spillikin spillikins spilling spillings spillover spillovers spillpipe spillproof spills spillway spillways spilly spilogale spiloma spilomas spilosite spilosites spilt spilth spilths spilus spin spina spinacene spinacenes spinaceous spinach spinaches spinachlike spinachy spinacia spinae spinage spinages spinal spinales spinalis spinally spinals spinar spinars spinas spinate spincaster spinder spindlage spindle spindleage spindleberry spindled spindleful spindlehead spindlelegs spindlelike spindler spindlers spindles spindleshank spindleshanks spindletail spindlewise spindlewood spindleworm spindlier spindliest spindliness spindling spindlings spindly spindrift spindrifts spine spinebill spinebone spined spinefinned spinel spineless spinelessly spinelessness spinelessnesses spinelet spinelike spinelle spinelles spinels spines spinescence spinescences spinescent spinet spinetail spinets spinette spinettes spingel spinibulbar spinicarpous spinicerebellar spinidentate spinier spiniest spiniferous spinifex spinifexes spiniform spinifugal spinigerous spinigrade spininess spininesses spinipetal spinitis spinituberculate spink spinks spinless spinmeister spinmeisters spinnability spinnable spinnaker spinnakers spinnel spinner spinneret spinnerets spinnerette spinnerettes spinneries spinners spinnerular spinnerule spinnerules spinnery spinnet spinnets spinney spinneys spinnies spinning spinningly spinnings spinny spinobulbar spinocarpous spinocerebellar spinodal spinode spinodes spinoff spinoffs spinogalvanization spinoglenoid spinoid spinomuscular spinoneural spinoperipheral spinor spinors spinose spinosely spinoseness spinosities spinosity spinosodentate spinosodenticulate spinosotubercular spinosotuberculate spinosympathetic spinotectal spinothalamic spinotuberculous spinous spinousness spinout spinouts spinozism spinozist spinproof spins spinster spinsterdom spinsterdoms spinsterhood spinsterhoods spinsterial spinsterian spinsterish spinsterishly spinsterism spinsterlike spinsterly spinsterous spinsters spinstership spinsterships spinstress spinstresses spinstry spintext spintexts spinthariscope spinthariscopes spinthariscopic spintherism spinto spintos spintry spinturnix spinula spinulae spinulate spinulated spinulation spinule spinules spinulescent spinuliferous spinuliform spinulose spinulosely spinulosociliate spinulosodentate spinulosodenticulate spinulosogranulate spinulososerrate spinulous spinus spinwriter spiny spionid spira spirable spiracle spiracles spiracula spiracular spiraculate spiraculiferous spiraculiform spiraculum spirae spiraea spiraeas spiral spirale spiraled spiraliform spiraling spiralisation spiralise spiralism spiralisms spiralist spiralists spiralities spirality spiralization spiralize spiralled spiralling spirally spiraloid spirals spiraltail spiralwise spiran spirane spirant spirantal spiranthes spiranthic spiranthy spirantic spirantism spirantization spirantize spirantized spirantizing spirants spiraster spirasters spirate spirated spiration spirations spire spirea spireas spired spiregrass spireless spirelet spirem spireme spiremes spirems spirepole spires spireward spirewise spiric spiricle spirics spirier spiriest spirifer spiriferid spiriferoid spiriferous spiriform spirignath spirignathous spirilla spirillaceae spirillaceous spirillar spirillolysis spirilloses spirillosis spirillotropic spirillotropism spirillum spiring spirit spirital spiritally spiritdom spirited spiritedly spiritedness spiritednesses spiriter spiritful spiritfully spiritfulness spirithood spiriting spiritings spiritise spiritism spiritisms spiritist spiritistic spiritists spiritize spiritlamp spiritland spiritleaf spiritless spiritlessly spiritlessness spiritlessnesses spiritlevel spiritlike spiritmonger spiritoso spiritous spiritousness spiritousnesses spiritrompe spirits spiritsome spiritual spiritualisation spiritualisations spiritualise spiritualised spiritualiser spiritualisers spiritualises spiritualising spiritualism spiritualisms spiritualist spiritualistic spiritualistically spiritualists spiritualities spirituality spiritualization spiritualizations spiritualize spiritualized spiritualizer spiritualizers spiritualizes spiritualizing spiritually spiritualness spiritualnesses spirituals spiritualship spiritualties spiritualty spirituel spirituelle spirituosities spirituosity spirituous spirituously spirituousness spirituousnesses spiritus spirituses spiritweed spirity spirivalve spirket spirketing spirketting spirlie spirling spirlings spiro spirobranchiate spirochaeta spirochaetaceae spirochaetae spirochaetaemia spirochaetaemias spirochaetal spirochaetales spirochaete spirochaetes spirochaetoses spirochaetosis spirochaetotic spirochetal spirochete spirochetemia spirochetes spirochetic spirocheticidal spirocheticide spirochetoses spirochetosis spirochetotic spirodela spirogram spirograms spirograph spirographic spirographically spirographidin spirographies spirographin spirographs spirography spirogyra spirogyras spiroid spiroidal spiroilic spirol spirole spiroloculine spirometer spirometers spirometric spirometrical spirometries spirometry spironolactone spironolactones spiropentane spirophore spirophores spiroscope spirous spirt spirted spirting spirtle spirtles spirts spirula spirulae spirulas spirulate spirulidae spirulina spirulinas spiry spise spiss spissated spissatus spissitude spissitudes spissus spissy spit spital spitals spitball spitballer spitballs spitbox spitchcock spitchcocked spitchcocking spitchcocks spitcher spite spited spiteful spitefuller spitefullest spitefully spitefulness spitefulnesses spiteless spiteproof spites spitfire spitfires spitfrog spitful spithamai spithame spiting spitish spitkid spitkit spitous spitpoison spits spitsbergen spitscocked spitstick spitsticker spitted spitten spitter spitters spitting spittings spittle spittlebug spittlebugs spittlefork spittleman spittlemen spittles spittlestaff spittoon spittoons spitz spitzenberg spitzenburg spitzer spitzes spitzflute spitzkop spiv spivery spivs spivveries spivvery spivvier spivviest spivving spivvy spizella spizzerinctum spl splachnaceous splachnoid splacknuck splad splairge splake splakes splanchnapophysial splanchnapophysis splanchnectopia splanchnemphraxis splanchnesthesia splanchnesthetic splanchnic splanchnicectomies splanchnicectomy splanchnoblast splanchnocele splanchnoceles splanchnocoele splanchnoderm splanchnodiastasis splanchnodynia splanchnographer splanchnographical splanchnography splanchnolith splanchnologic splanchnological splanchnologies splanchnologist splanchnology splanchnomegalia splanchnomegaly splanchnopathy splanchnopleural splanchnopleure splanchnopleuric splanchnoptosia splanchnoptosis splanchnosclerosis splanchnoscopy splanchnoskeletal splanchnoskeleton splanchnosomatic splanchnotomical splanchnotomy splanchnotribe splash splashback splashboard splashboards splashdown splashdowns splashed splasher splashers splashes splashguard splashguards splashier splashiest splashily splashiness splashinesses splashing splashingly splashings splashproof splashs splashwing splashy splat splatch splatched splatcher splatches splatching splatchy splather splathering splats splatted splatter splatterdash splatterdock splattered splatterer splatterfaced splattering splatterpunk splatterpunks splatters splatterwork splatting splattings splay splayed splayer splayfeet splayfoot splayfooted splaying splaymouth splaymouthed splaymouths splays spleen spleened spleenful spleenfully spleenier spleeniest spleening spleenish spleenishly spleenishness spleenless spleens spleenstone spleenstones spleenwort spleenworts spleeny spleet spleetnew splenadenoma splenalgia splenalgic splenalgy splenative splenatrophia splenatrophy splenauxe splenculi splenculus splendaceous splendacious splendaciously splendaciousness splendatious splendent splendently splender splendescent splendid splendider splendidest splendidious splendidly splendidness splendidnesses splendidous splendiferous splendiferously splendiferousness splendiferousnesses splendor splendorous splendorously splendorousness splendorproof splendors splendour splendourproof splendours splendrous splendrously splendrousness splenectama splenectasis splenectomies splenectomised splenectomist splenectomize splenectomized splenectomizes splenectomizing splenectomy splenectopia splenectopy splenelcosis splenemia splenemphraxis spleneolus splenepatitis splenetic splenetical splenetically spleneticals splenetics splenetive splenia splenial splenic splenical splenicterus splenification spleniform splenii spleninii splenisation splenisations spleniti splenitis splenitises splenitive splenium spleniums splenius spleniuses splenization splenizations splenoblast splenocele splenoceratosis splenocleisis splenocolic splenocyte splenodiagnosis splenodynia splenography splenohemia splenoid splenolaparotomy splenology splenolymph splenolymphatic splenolysin splenolysis splenoma splenomalacia splenomedullary splenomegalia splenomegalic splenomegalies splenomegaly splenomyelogenous splenoncus splenonephric splenopancreatic splenoparectama splenoparectasis splenopathy splenopexia splenopexis splenopexy splenophrenic splenopneumonia splenoptosia splenoptosis splenorrhagia splenorrhaphy splenotomy splenotoxin splenotyphoid splent splented splenting splents splenulus splenunculus splet spleuchan spleuchans spleughan splice spliceable spliced splicer splicers splices splicing splicings spliff spliffs splinder spline splined splines splineway splining splint splintage splintbone splinted splinter splinterd splintered splinterier splinteriest splintering splinterize splinterless splinternew splinterproof splinters splintery splinting splints splintwood splintwoods splinty split splitbeak splite splitfinger splitfruit splitmouth splitnew splitnut splits splitsaw splittable splittail splitted splitten splitter splitterman splitters splitting splittings splitworm splodge splodged splodges splodgier splodgiest splodgily splodginess splodginesses splodging splodgy sploit splore splores splosh sploshed sploshes sploshing sploshy splotch splotched splotches splotchier splotchiest splotchily splotchiness splotchinesses splotching splotchy splother splunge splunt splurge splurged splurger splurgers splurges splurgier splurgiest splurgily splurging splurgy splurt spluther splutter spluttered splutterer splutterers spluttering splutteringly splutterings splutters spluttery spninx spninxes spoach spod spodding spoddings spode spodes spodiosite spodium spodiums spodogenic spodogenous spodogram spodograms spodomancies spodomancy spodomantic spodoptera spodosol spodosols spods spodumene spodumenes spoffish spoffle spoffy spogel spoil spoilable spoilables spoilage spoilages spoilate spoilated spoilation spoilbank spoiled spoiler spoilers spoilfive spoilfives spoilful spoiling spoilless spoilment spoils spoilsman spoilsmen spoilsmonger spoilsport spoilsports spoilt spokane spoke spoked spokeless spoken spokes spokeshave spokeshaves spokesman spokesmanship spokesmanships spokesmen spokespeople spokesperson spokespersons spokester spokeswoman spokeswomanship spokeswomen spokewise spoking spoky spole spolia spoliaria spoliarium spoliary spoliate spoliated spoliates spoliating spoliation spoliations spoliative spoliator spoliators spoliatory spolium spondaic spondaical spondaics spondaize spondean spondee spondees spondiac spondias spondil spondoolicks spondulicks spondulics spondulix spondyl spondylalgia spondylarthritis spondylarthrocace spondyle spondylexarthrosis spondylic spondylid spondylioid spondylitic spondylitis spondylitises spondylium spondylizema spondylocace spondylodiagnosis spondylodidymia spondylodymus spondyloid spondylolistheses spondylolisthesis spondylolisthetic spondylolyses spondylolysis spondylopathy spondylopyosis spondyloschisis spondyloses spondylosis spondylosyndeses spondylosyndesis spondylotherapeutics spondylotherapist spondylotherapy spondylotomy spondylous spondyls spondylus spong sponge spongeable spongebag spongebags spongecake sponged spongeflies spongefly spongeful spongeless spongelet spongelike spongeous spongeproof sponger spongers sponges spongeware spongewares spongewood spongewoods spongian spongicolous spongiculture spongier spongiest spongiferous spongiform spongillaflies spongillafly spongillid spongilline spongily spongin sponginblast sponginblastic sponginess sponginesses sponging spongingly spongins spongioblast spongioblastic spongioblastoma spongioblasts spongiocyte spongiole spongiolin spongiopilin spongiopiline spongioplasm spongioplasmic spongiose spongiosity spongious spongiousness spongiozoon spongoblast spongoblastic spongocoel spongoid spongologies spongologist spongologists spongology spongophore spongy sponsal sponsalia sponsibility sponsible sponsing sponsings sponsion sponsional sponsions sponson sponsons sponsor sponsored sponsorial sponsoring sponsors sponsorship sponsorships sponspeck spontaneities spontaneity spontaneous spontaneously spontaneousness spontaneousnesses sponton spontoon spontoons spoof spoofed spoofer spooferies spoofers spoofery spoofing spoofish spoofs spoofy spook spookdom spooked spookeries spookery spookier spookies spookiest spookily spookiness spookinesses spooking spookish spookism spookist spookological spookologist spookology spooks spooky spool spooled spooler spoolers spoolful spooling spoolings spoollike spools spoolwood spoom spoomed spooming spooms spoon spoonback spoonbait spoonbaits spoonbill spoonbills spoonbread spoondrift spoondrifts spooned spooner spoonerism spoonerisms spooners spooney spooneyism spooneyly spooneyness spooneys spoonfed spoonfeed spoonfeeding spoonfeeds spoonflower spoonful spoonfuls spoonholder spoonhook spoonhooks spoonhutch spoonier spoonies spooniest spoonily spooniness spooning spoonism spoonless spoonlike spoonmaker spoonmaking spoonmeat spoonmeats spoons spoonsful spoonways spoonwise spoonwood spoonwort spoony spoonyism spoor spoored spoorer spoorers spooring spoorn spoors spoot spoots spor sporabola sporaceous sporades sporadial sporadic sporadical sporadically sporadicalness sporadicity sporadicness sporadin sporadism sporadosiderite sporal sporange sporangia sporangial sporangidium sporangiferous sporangiform sporangigia sporangioid sporangiola sporangiole sporangioles sporangiolum sporangiophore sporangiophores sporangiospore sporangiospores sporangite sporangium sporation spore spored sporeformer sporeforming sporeling spores sporicidal sporicide sporicides sporid sporidesm sporidesms sporidia sporidial sporidiferous sporidiiferous sporidiole sporidiolum sporidium sporiferous sporification sporing sporiparity sporiparous sporoblast sporobolus sporocarp sporocarpia sporocarpium sporocarps sporocyst sporocystic sporocystid sporocysts sporocyte sporocytes sporoderm sporodochia sporodochium sporoduct sporogen sporogeneses sporogenesis sporogenic sporogenies sporogenous sporogeny sporogone sporogonia sporogonial sporogonic sporogonies sporogonium sporogoniums sporogonous sporogony sporoid sporologist sporomycosis sporonia sporont sporonts sporophore sporophores sporophoric sporophorous sporophydium sporophyl sporophyll sporophyllary sporophylls sporophyllum sporophyls sporophyte sporophytes sporophytic sporoplasm sporoplasms sporopollenin sporopollenins sporosac sporostegium sporostrote sporotrichoses sporotrichosis sporotrichotic sporous sporozoa sporozoal sporozoan sporozoans sporozoic sporozoid sporozoite sporozoites sporozooid sporozoon sporran sporrans sport sportabilities sportability sportable sportance sportances sportcaster sportcasters sported sporter sporters sportfisherman sportfishermen sportfishing sportfishings sportful sportfully sportfulness sportfulnesses sportier sportiest sportif sportily sportiness sportinesses sporting sportingly sportive sportively sportiveness sportivenesses sportless sportling sportly sports sportscast sportscaster sportscasters sportscasting sportscastings sportscasts sportsman sportsmanlike sportsmanlikeness sportsmanliness sportsmanly sportsmanship sportsmanships sportsmen sportsome sportspeople sportsperson sportspersons sportswear sportswears sportswoman sportswomanly sportswomanship sportswomen sportswrite sportswriter sportswriters sportswriting sportswritings sportula sportulae sporty sporular sporulate sporulated sporulates sporulating sporulation sporulations sporulative sporule sporules sporuliferous sporuloid sposh sposhes sposhier sposhiest sposhy spot spotless spotlessly spotlessness spotlessnesses spotlight spotlighted spotlighter spotlighting spotlights spotlike spotlit spotrump spots spotsman spotsmen spotsylvania spottable spottail spotted spottedly spottedness spottednesses spotteldy spotter spotters spottier spottiest spottily spottiness spottinesses spotting spottings spottle spotty spotweld spotwelder spoucher spousage spousages spousal spousally spousals spouse spoused spousehood spouseless spouses spousing spousy spout spouted spouter spouters spoutier spoutiest spoutiness spouting spoutings spoutless spoutlike spoutman spouts spouty spoylefull spp sprachgefuhl sprachgefuhls sprachgefühl sprachle sprack sprackish sprackle sprackled sprackles sprackling sprackly sprackness sprad spraddle spraddled spraddles spraddling sprag spragged spragger spragging spraggly spragman sprags spraguea spraich spraickle spraickled spraickles spraickling spraid sprain sprained spraing spraining sprains spraint spraints spraith sprang sprangle sprangled sprangles sprangling sprangly sprangs sprank sprat sprats spratted spratter spratting sprattle sprattled sprattles sprattling spratty sprauchle sprauchled sprauchles sprauchling sprauncier spraunciest sprauncy sprawl sprawled sprawler sprawlers sprawlier sprawliest sprawling sprawlingly sprawls sprawly spray sprayboard sprayed sprayer sprayers sprayey sprayful sprayfully sprayier sprayiest spraying sprayless spraylike sprayproof sprays spread spreadabilities spreadability spreadable spreadation spreadboard spreadeagle spreadeagled spreaded spreader spreaders spreadhead spreading spreadingly spreadingness spreadings spreadover spreads spreadsheet spreadsheets spready spreagh spreagheries spreaghery spreaghs spreath spreathe spreathed spreathes spreathing spreaze spreazed spreazes spreazing sprecheries sprechery sprechgesang sprechgesangs sprechstimme sprechstimmes spreckle spreckled spred spredd spredde spredden spreddes spredding spredds spreds spree spreed spreeing sprees spreethe spreethed spreethes spreething spreeuw spreeze spreezed spreezes spreezing spreng sprenge sprenging sprent spret spretty sprew sprewl sprews sprezzatura spridhogue spried sprier spriest sprig sprigged sprigger spriggers spriggier spriggiest sprigging spriggy spright sprighted sprightful sprightfully sprightfulness sprightfulnesses sprighting sprightless sprightlier sprightliest sprightlily sprightliness sprightlinesses sprightly sprights sprighty spriglet sprigs sprigtail sprigtails sprindge spring springal springald springalds springals springboard springboards springbok springboks springbuck springbucks springe springed springeing springer springerle springers springes springfield springfinger springfish springfishes springful springgun springhaas springhalt springhalts springhase springhead springheads springhouse springhouses springier springiest springily springiness springinesses springing springingly springings springkeeper springkeepers springle springled springles springless springlet springlets springlike springling springlock springly springmaker springmaking springs springtail springtails springtide springtides springtime springtimes springtrap springwater springwaters springwood springwoods springworm springwort springworts springwurzel springy sprink sprinkle sprinkled sprinkleproof sprinkler sprinklered sprinklers sprinkles sprinkling sprinklingly sprinklings sprint sprinted sprinter sprinters sprinting sprintings sprints sprit sprite spriteful spritehood spriteless spritelier spriteliest spritelike spriteliness spritely sprites spritish sprits spritsail spritsails sprittail spritted sprittie spritting spritty spritz spritzed spritzer spritzers spritzes spritzig spritzigs spritzing sproat sprocket sprockets sprod sprods sprog sprogs sprogue sproil sprong sprose sprot sprottle sproty sprout sproutage sprouted sprouter sproutful sprouting sproutings sproutland sproutling sprouts sprowsy spruce spruced sprucely spruceness sprucenesses sprucer sprucery spruces sprucest sprucier spruciest sprucification sprucify sprucing sprucy sprue spruer sprues sprug sprugs spruik spruiked spruiker spruikers spruiking spruiks spruit spruits sprung sprunk sprunny sprunt spruntly sprusado sprush sprushed sprushes sprushing spry spryer spryest spryly spryness sprynesses sps spt spud spudded spudder spudders spuddier spuddiest spudding spuddings spuddle spuddy spuds spue spued spueing spues spuffle spug spuggy spuilyie spuilzie spuilzied spuilzieing spuilzies spuing spuke spule spulebane spulebanes spuleblade spuleblades spulebone spulebones spules spulye spulyed spulyeing spulyes spulyie spulyied spulyieing spulyiement spulyies spulzie spulzied spulzieing spulzies spumante spumantes spume spumed spumes spumescence spumescences spumescent spumier spumiest spumiferous spumification spumiform spuming spumoid spumone spumones spumoni spumonis spumose spumous spumy spun spunbonded spunch spung spunge spunged spunges spunging spunk spunked spunkie spunkier spunkies spunkiest spunkily spunkiness spunkinesses spunking spunkless spunklessly spunklessness spunks spunky spunnies spunny spunware spunyarn spunyarns spur spurdie spurdog spurflower spurgall spurgalled spurgalling spurgalls spurge spurges spurgewort spuria spuriae spuries spuriosities spuriosity spurious spuriously spuriousness spuriousnesses spurl spurless spurlet spurlike spurling spurlings spurluous spurmaker spurmoney spurn spurne spurned spurner spurners spurnes spurning spurnings spurnpoint spurns spurnwater spurproof spurred spurreies spurrer spurrers spurrey spurreys spurrial spurrier spurriers spurries spurriest spurring spurrings spurrite spurry spurs spurt spurted spurter spurters spurting spurtive spurtively spurtle spurtleblade spurtles spurts spurway spurways spurwing spurwinged spurwort sput sputa sputative spute sputnik sputniks sputta sputter sputtered sputterer sputterers sputtering sputteringly sputterings sputters sputtery sputum sputumary sputumose sputumous spy spyal spyals spyboat spydom spyer spyeria spyfault spyglass spyglasses spyhole spyholes spying spyings spyism spymaster spymasters spyplane spyplanes spyproof spyre spyred spyres spyring spyship spytower spyware sq sqd sqq sqrt squab squabash squabashed squabasher squabashers squabashes squabashing squabbed squabber squabbest squabbier squabbiest squabbing squabbish squabble squabbled squabbler squabblers squabbles squabbling squabblingly squabbly squabby squabs squacco squaccos squad squadded squadder squadding squaddy squader squadrate squadrism squadrol squadron squadronal squadrone squadroned squadrones squadroning squadrons squadroom squads squail squailed squailer squailers squailing squailings squails squalene squalenes squalid squalidae squalider squalidest squalidities squalidity squalidly squalidness squalidnesses squaliform squall squalled squaller squallers squallery squallier squalliest squalling squallings squallish squalls squally squalm squalodon squalodont squaloid squalor squalors squalus squam squama squamaceous squamae squamata squamate squamated squamates squamatine squamation squamations squamatogranulous squamatotuberculate squame squamella squamellae squamellas squamellate squamelliferous squamelliform squameous squames squamiferous squamiform squamify squamigerous squamipennate squamipinnate squamish squamocellular squamoepithelial squamoid squamomastoid squamoparietal squamopetrosal squamosa squamosal squamosals squamose squamosely squamoseness squamosis squamosities squamosity squamosodentated squamosoimbricated squamosomaxillary squamosoparietal squamosoradiate squamosotemporal squamosozygomatic squamosphenoid squamosphenoidal squamotemporal squamous squamously squamousness squamousnesses squamozygomatic squamula squamulae squamulas squamulate squamulation squamule squamules squamuliform squamulose squamy squander squandered squanderer squanderers squandering squanderingly squanderings squandermania squandermaniac squandermanias squanders squantum squarable square squareage squarecap squared squaredly squareface squareflipper squarehead squareheads squarelike squarely squareman squaremen squaremouth squareness squarenesses squarer squarers squares squarest squaretail squaretoed squarewise squarial squarials squarier squaring squarings squarish squarishly squarishness squarishnesses squark squarrose squarrosely squarrous squarrulose squarson squarsonage squarsonages squarsonry squarsons squary squash squashable squashberry squashed squasher squashers squashes squashier squashiest squashily squashiness squashinesses squashing squashs squashy squassation squat squatarole squaterole squatina squatinid squatinidae squatinoid squatly squatment squatmore squatness squatnesses squats squattage squatted squatter squatterarchy squatterdom squattered squattering squatterism squatterproof squatters squattest squattier squattiest squattily squattiness squattinesses squatting squattingly squattish squattle squattled squattles squattling squattocracies squattocracy squattocratic squatty squatwise squaw squawberries squawberry squawbush squawdom squawfish squawfishes squawflower squawk squawked squawker squawkers squawkie squawkier squawkiest squawking squawkingly squawkings squawks squawky squawl squawler squawman squawmen squawroot squawroots squaws squawweed squdge squdgy squeak squeaked squeaker squeakeries squeakers squeakery squeakier squeakiest squeakily squeakiness squeakinesses squeaking squeakingly squeakings squeaklet squeakproof squeaks squeaky squeakyish squeal squeald squealed squealer squealers squealing squealings squeals squeam squeamish squeamishly squeamishness squeamishnesses squeamous squeamy squeasy squeege squeegee squeegeed squeegeeing squeegees squeegeing squeel squeezabilities squeezability squeezable squeezableness squeezably squeeze squeezebox squeezeboxes squeezed squeezeman squeezer squeezers squeezes squeezier squeeziest squeezing squeezingly squeezings squeezy squeg squegged squegger squeggers squegging squeggings squegs squelch squelched squelcher squelchers squelches squelchier squelchiest squelchily squelchiness squelching squelchingly squelchingness squelchings squelchy squelette squench squencher squet squeteague squeteagues squetee squib squibbed squibber squibbery squibbing squibbings squibbish squibcrack squiblet squibling squibs squibster squid squidded squidder squidding squiddle squidge squidged squidgereen squidges squidgier squidgiest squidging squidgy squids squier squiers squiff squiffed squiffer squiffers squiffier squiffiest squiffy squiggle squiggled squiggles squigglier squiggliest squiggling squiggly squilgee squilgeed squilgeeing squilgeer squilgees squilgeing squill squilla squillae squillagee squillageed squillageeing squillageing squillas squillery squillgee squillgeed squillgeeing squillgeing squillian squillid squillidae squillitic squilloid squills squimmidge squin squinacy squinance squinancies squinancy squinant squinch squinched squinches squinching squinied squinies squinnied squinnier squinnies squinniest squinny squinnying squinsy squint squinted squinter squinters squintest squintier squintiest squinting squintingly squintingness squintings squintly squintness squints squinty squiny squinying squirage squirages squiralities squirality squiralties squiralty squirarch squirarchal squirarchical squirarchies squirarchs squirarchy squire squireage squireages squirearch squirearchal squirearchical squirearchies squirearchs squirearchy squired squiredom squiredoms squireen squireens squirehood squirehoods squireless squirelet squirelike squireling squirelings squirely squireocracy squires squireship squireships squiress squiresses squiret squirewise squiring squirish squirism squirk squirl squirm squirmed squirmer squirmers squirmier squirmiest squirminess squirming squirmingly squirms squirmy squirr squirred squirrel squirreled squirrelfish squirrelfishes squirrelian squirreline squirreling squirrelish squirrelled squirrellike squirrelling squirrelly squirrelproof squirrels squirrelsstagnate squirreltail squirrely squirring squirrs squirt squirted squirter squirters squirtiness squirting squirtingly squirtings squirtish squirts squirty squish squished squishes squishier squishiest squishiness squishinesses squishing squishy squiss squit squitch squitches squitchy squits squitter squitters squiz squizzes squoosh squooshed squooshes squooshier squooshiest squooshing squooshy squoze squshier squshiest squshy squush squushed squushes squushier squushiest squushing squushy sr srac sraddha sraddhas sradha sradhas sramana sravaka srbija sri sris sruti ss sse ssed ssh ssing ssort ssp sstor ssu ssw st sta staab staatsraad stab stabbed stabber stabbers stabbing stabbingly stabbingness stabbings stabilate stabilates stabile stabiles stabilify stabiliment stabilimeter stabilisation stabilisations stabilisator stabilisators stabilise stabilised stabiliser stabilisers stabilises stabilising stabilist stabilitate stabilities stability stabilivolt stabilizability stabilization stabilizations stabilizator stabilizators stabilize stabilized stabilizer stabilizers stabilizes stabilizing stable stableboy stableboys stabled stableful stablekeeper stablelike stableman stablemate stablemates stablemeal stablemen stableness stablenesses stabler stablers stables stablest stablestand stableward stablewards stabling stablings stablish stablished stablishes stablishing stablishment stablishments stably staboy stabproof stabroek stabs stabulate stabulation stabwort stacc staccado staccati staccatissimo staccato staccatos stacher stachering stachydrin stachydrine stachyose stachys stachyses stachyuraceous stack stackable stackage stacked stackencloud stacker stackering stackers stacket stackets stackfreed stackful stackgarth stackhousiaceous stacking stackings stackless stackman stackmen stackroom stackrooms stacks stackstand stackup stackups stackyard stackyards stacte stactes stactometer stactometers stad stadda staddas staddle staddles staddlestone staddlestones staddling stade stader stades stadholder stadholderate stadholders stadholdership stadhouse stadia stadial stadials stadias stadic stadie stadimeter stadiometer stadion stadium stadiums stadle stadthaus stadtholder stadtholderate stadtholderates stadtholders stadtholdership stadtholderships stadthouse stafette staff staffage staffages staffed staffelite staffer staffers staffete staffier staffing staffish staffless staffman staffmen stafford staffroom staffrooms staffs staffstriker stag stagbush stage stageabilities stageability stageable stageableness stageably stagecoach stagecoaches stagecoaching stagecoachings stagecoachman stagecoachmen stagecraft stagecrafts staged stagedom stagefright stagefrights stageful stagefuls stagehand stagehands stagehouse stageland stagelike stageman stagemen stager stageries stagers stagery stages stagese stagestruck stagewise stageworthy stagewright stagey stagflation stagflationary stagflations staggard staggards staggart staggarth staggarts stagged stagger staggerbush staggerbushes staggered staggerer staggerers staggering staggeringly staggerings staggers staggerweed staggerwort staggery staggie staggier staggies staggiest stagging staggy staghead staghorn staghorns staghound staghounds staghunt staghunter staghunting stagiary stagier stagiest stagily staginess staginesses staging stagings stagion stagirite staglike stagmometer stagnance stagnancies stagnancy stagnant stagnantly stagnantness stagnate stagnated stagnates stagnating stagnation stagnations stagnatory stagnature stagne stagnicolous stagnize stagnum stags stagskin stagworm stagy stagyrite stahlhelm stahlian staia staid staider staidest staidly staidness staidnesses staig staigs stail stain stainabilities stainability stainable stainableness stainably stained stainer stainers stainful stainierite staining stainings stainless stainlesses stainlessly stainlessness stainlessnesses stainproof stains staio stair stairbeak stairbuilder stairbuilding staircase staircased staircases staircasing staircasings staired stairfoot stairfoots stairhead stairheads stairless stairlift stairlifts stairlike stairs stairstep stairstepped stairstepping stairsteps stairway stairways stairwell stairwells stairwise stairwork stairworks stairy staith staithe staithes staithman staithmen staiths staiver stake staked stakehead stakeholder stakeholders stakemaster stakeout stakeouts staker stakerope stakes stakhanovism stakhanovisms stakhanovite stakhanovites staking staktometer staktometers stalace stalactic stalactical stalactiform stalactital stalactite stalactited stalactites stalactitic stalactitical stalactitically stalactitied stalactitiform stalactitious stalag stalagma stalagmas stalagmite stalagmites stalagmitic stalagmitical stalagmitically stalagmometer stalagmometers stalagmometric stalagmometries stalagmometry stalags stalder stale staled stalely stalemate stalemated stalemates stalemating staleness stalenesses staler stales stalest stalin staling stalingrad stalinism stalinist stalinists stalino stalk stalkable stalked stalker stalkers stalkier stalkiest stalkily stalkiness stalkinesses stalking stalkingly stalkings stalkless stalklet stalklike stalko stalkoes stalks stalky stall stallage stallages stalland stallar stallary stallboard stallboat stalled stallenger stallengers staller stallership stallholder stallholders stalling stallinger stallingers stallingken stallings stallion stallionise stallionize stallions stallkeeper stallman stallmaster stallmasters stallmen stallment stallon stalls stalwart stalwartise stalwartism stalwartize stalwartly stalwartness stalwartnesses stalwarts stalworth stalworthly stalworthness stalworths stam stamba stambha stamboul stambouline stambul stamen stamened stamens stamin stamina staminal staminas staminate stamindia stamineal stamineous staminiferous staminigerous staminode staminodes staminodia staminodies staminodium staminodiums staminody staminoid stammel stammelcolor stammelcolour stammels stammer stammered stammerer stammerers stammering stammeringly stammeringness stammerings stammers stammerwort stammrel stamnoi stamnos stamp stampable stampage stamped stampedable stampede stampeded stampeder stampeders stampedes stampeding stampedingly stampedo stampedoed stampedoing stampedos stampee stamper stampers stampery stamphead stamping stampings stample stampless stampman stampmen stamps stampsman stampsmen stampweed stance stances stanch stanchable stanched stanchel stancheled stanchelled stanchelling stanchels stancher stanchered stanchering stanchers stanches stanchest stanching stanchings stanchion stanchioned stanchioning stanchions stanchless stanchlessly stanchly stanchness stanchnesses stanck stand standage standalone standard standardbearer standardbearers standardbred standardbreds standardisable standardisation standardisations standardise standardised standardiser standardisers standardises standardising standardizable standardization standardizations standardize standardized standardizer standardizers standardizes standardizing standardless standardly standardness standards standardwise standaway standback standby standbybys standbys standdown standdowns standee standees standel standelwelks standelwort standen stander standergrass standers standerwort standeth standfast standgale standgales standi standing standings standish standishes standoff standoffish standoffishly standoffishness standoffishnesses standoffs standout standouts standpat standpatism standpats standpatter standpatters standpattism standpattisms standpipe standpipes standpoint standpoints standpost stands standstill standstills standup standups stane stanechat staned stanek stanes stanford stang stanged stanging stangs stanhope stanhopea stanhopes staniel staniels stanine stanines staning stanitsa stanitza stanjen stank stankie stanks stanley stanleya stannane stannaries stannary stannate stannates stannator stannators stannel stannels stanner stanners stannery stannic stannid stannide stanniferous stannite stannites stanno stannotype stannotypes stannous stannoxyl stannum stannums stannyl stantibus stanyel stanyels stanza stanzaed stanzaic stanzaical stanzaically stanzas stanze stanzes stanzo stanzoes stanzos stap stapedectomies stapedectomised stapedectomized stapedectomy stapedes stapedez stapedial stapediform stapedii stapediovestibular stapedius stapediuses stapelia stapelias stapes stapeses staph staphisagria staphs staphylaceae staphyle staphylea staphyleaceous staphylectomy staphyledema staphylematoma staphyles staphylic staphyline staphylinic staphylinid staphylinidae staphylinideous staphylinids staphylion staphylitis staphylitises staphyloangina staphylococcal staphylococcemia staphylococcemic staphylococci staphylococcic staphylococcocci staphylococcus staphylodermatitis staphylodialysis staphyloedema staphylohemia staphylolysin staphyloma staphylomas staphylomata staphylomatic staphylomatous staphylomycosis staphyloncus staphyloplasies staphyloplastic staphyloplasties staphyloplasty staphyloplasy staphyloptosia staphyloptosis staphyloraphic staphylorrhaphic staphylorrhaphies staphylorrhaphy staphyloschisis staphylosis staphylotome staphylotomies staphylotomy staphylotoxin staple stapled stapler staplers staples staplewise staplf stapling stapped stapping stapple stapples staps star staragen staragens starblind starbloom starboard starboarded starboarding starboards starbolins starbowlines starbright starburst starbursts starch starchboard starched starchedly starchedness starchednesses starcher starchers starches starchflower starchier starchiest starchily starchiness starchinesses starching starchless starchlike starchly starchmaker starchmaking starchman starchmen starchness starchroot starchworks starchwort starchy starcraft stardom stardoms stardrift stardrifts stardust stardusts stare stared staree starer starers stares starets staretses staretz staretzes starfish starfishes starflower starflowers starfruit starfruits starful stargaze stargazed stargazer stargazers stargazes stargazing stargazings starik staring staringly starings stark starked starken starkened starkening starkens starker starkers starkest starking starkle starkly starkness starknesses starks starky starless starlessly starlessness starlet starlets starlight starlighted starlights starlike starling starlings starlit starlite starlitten starmonger starmongers starn starned starnel starnie starnies starning starnose starnoses starns starny starost starosta starostas starosti starosties starosty starquake starr starred starrier starriest starrify starrily starriness starrinesses starring starringly starrings starrs starry stars starshake starshine starshines starship starships starshoot starshot starspot starspots starstone starstones starstroke starstruck start started starter starters startful startfulness starthroat starting startingly startingno startings startish startle startled startlement startlements startler startlers startles startling startlingly startlingness startlings startlish startlishness startly startor starts startsy startup startups starty starvation starvations starve starveacre starved starvedly starveling starvelings starven starver starvers starves starving starvings starvy starw starward starwise starworm starwort starworts stary stases stash stashed stashes stashie stashies stashing stasidia stasidion stasidions stasima stasimetric stasimon stasimorphies stasimorphy stasiphobia stasis stasisidia stasophobia stassfurtite stat statable statal statampere statant statary statcoulomb state stateable statecraft statecrafts stated statedly stateful statefully statefulness statehood statehooder statehooders statehoods statehouse statehouses stateless statelessness statelessnesses statelet statelets statelich statelier stateliest statelily stateliness statelinesses stately statement statemented statementing statementings statements statemonger statequake stater statera stateroom staterooms staters states statesboy stateship stateside statesider statesman statesmanese statesmanlike statesmanly statesmanship statesmanships statesmen statesmonger statespeople statesperson statespersons stateswoman stateswomen stateway statewide statfarad stathenries stathenry stathenrys stathmoi stathmos static statical statically statice statices staticky staticproof statics statim statin stating statins station stational stationaries stationarily stationariness stationarinesses stationarity stationary stationed stationer stationeries stationers stationery stationing stationman stationmaster stationmasters stations statiscope statism statisms statist statistic statistical statistically statistician statisticians statisticise statisticize statistics statistology statists stative statives statize statoblast statoblasts statocracy statocyst statocysts statohm statolatry statolith statolithic statoliths statometer stator statoreceptor statorhab stators statoscope statoscopes statospore stats statua statuaries statuarism statuarist statuary statuas statue statuecraft statued statueless statuelike statues statuesque statuesquely statuesqueness statuesquenesses statuette statuettes statuing stature statured statures status statuses statusy statutable statutableness statutably statutary statute statuted statutes statuting statutorily statutoriness statutory statutum statvolt staucher stauk staumer staumeral staumrel staumrels staun staunch staunchable staunched stauncher staunchers staunches staunchest staunching staunchings staunchless staunchly staunchness staunchnesses staup stauracin stauraxonia stauraxonial staurikosaur staurikosaurus staurion staurolatries staurolatry staurolite staurolites staurolitic staurology stauromedusan stauropegia stauropegial stauropegion stauropgia stauroscope stauroscopes stauroscopic stauroscopically staurotide stauter stavable stave staveable staved staveless staver stavers staverwort staves stavesacre stavesacres stavewise stavewood staving stavrite staw stawed stawing stawn staws stawsome staxis stay stayable stayaway stayaways staybolt stayed stayer stayers staying stayings staylace stayless staylessness staymaker staymakers staymaking stayman stayne stayned staynes staynil stayning stayover staypak stayre stayres stays staysail staysails stayship stbd stchi std stddmp stdio steaakhouse stead steadable steaded steadfast steadfastly steadfastness steadfastnesses steadicam steadicams steadied steadier steadiers steadies steadiest steadily steadiment steadiness steadinesses steading steadings steadite steadman steads steady steadying steadyingly steadyish steak steakhouse steakhouses steaks steal stealability stealable stealage stealages steale stealed stealer stealers steales stealing stealingly stealings steals stealt stealth stealthed stealthful stealthfully stealthier stealthiest stealthily stealthiness stealthinesses stealthing stealthings stealthless stealthlike stealths stealthwise stealthy stealy steam steamboat steamboating steamboatman steamboatmen steamboats steamcar steamed steamer steamered steamerful steamering steamerless steamerload steamers steamfitter steamfitters steamfitting steamfittings steamie steamier steamies steamiest steamily steaminess steaminesses steaming steamings steamless steamlike steampipe steamproof steamroll steamrolled steamroller steamrollered steamrollering steamrollers steamrolling steamrolls steams steamship steamships steamtight steamtightness steamy stean steane steaned steanes steaning steanings steans steapsin steapsins stear stearage stearages stearate stearates steard steare steared steares stearic steariform stearin stearine stearines stearing stearins stearolactone stearone stearoptene stearoptenes stearrhea stearrhoea stears stearsman stearsmate stearsmates stearsmen stearyl steatin steatite steatites steatitic steatocele steatoceles steatocystoma steatogenous steatolyses steatolysis steatolytic steatoma steatomas steatomata steatomatous steatopathic steatopyga steatopygia steatopygias steatopygic steatopygous steatopygy steatornis steatornithidae steatorrhea steatorrheas steatorrhoea steatorrhoeas steatoses steatosis stebbins stech stechados stechling steckling sted stedd stedde stedded steddes steddied steddies stedding steddle stedds steddy steddying stede steded stedes stedfast stedfastly stedfastness stedfasts stedhorses steding steds steeadying steed steeded steedied steedies steeding steedless steedlike steeds steedy steedying steek steeked steeking steekit steekkan steekkannen steeks steel steelbow steelbows steeld steele steeled steelen steeler steelers steelhead steelheads steelhearted steelie steelier steelies steeliest steelification steelified steelify steelifying steeliness steelinesses steeling steelings steelless steellike steelmake steelmaker steelmakers steelmaking steelmakings steelman steelmen steelproof steels steelware steelwares steelwork steelworker steelworkers steelworking steelworkings steelworks steely steelyard steelyards steem steemed steeming steems steen steenboc steenbock steenbok steenboks steenbras steenbrases steenbrass steened steening steenings steenkirk steenkirks steens steenstrupine steenth steep steepdown steepdowne steeped steepedowne steepen steepened steepening steepens steeper steepers steepest steepeup steepgrass steepier steepiest steepiness steepinesses steeping steepish steeple steeplebush steeplebushes steeplechase steeplechased steeplechaser steeplechasers steeplechases steeplechasing steeplechasings steepled steeplejack steeplejacks steepleless steeplelike steeples steepletop steeply steepness steepnesses steeps steepup steepweed steepwort steepy steer steerability steerable steerage steerages steerageway steerageways steered steerer steerers steeries steering steeringly steerings steerless steerling steerlings steerman steermanship steers steersman steersmate steersmates steersmen steerswoman steery steeve steeved steevely steever steeves steevest steeving steevings steg steganogram steganograms steganograph steganographer steganographers steganographic steganographical steganographies steganographist steganographists steganographs steganography steganophthalmate steganophthalmatous steganopod steganopodan steganopodous steganopods steganopus stegh stegnoses stegnosis stegnosisstegnotic stegnotic stegocarpous stegocephalia stegocephalian stegocephalians stegocephalous stegodon stegodons stegodont stegodontine stegodonts stegomyia stegophilist stegophilists stegosaur stegosauri stegosaurian stegosauroid stegosaurs stegosaurus stegosauruses steid steigh steil steils stein steinbock steinbocks steinbok steinboks steinbuck steined steinful steining steinings steinkirk steinkirks steins stekan stela stelae stelai stelar stelas stele stelene steles stelic stelis stell stella stellar stellarator stellarators stellaria stellary stellas stellate stellated stellately stellation stellature stelled stellenbosch stellerid stelleridan stelleridans stelleridean stellerids stellerine stelliferous stellification stellified stellifies stelliform stellify stellifying stellifyings stelling stellio stellion stellionate stellionates stellions stelliscript stellite stellites stells stellular stellularly stellulate stelography stem stema stembok stemboks stembuck stembucks steme stemed stemes stemform stemhead steming stemless stemlet stemlets stemlike stemma stemmas stemmata stemmatic stemmatics stemmatiform stemmatous stemme stemmed stemmer stemmeries stemmers stemmery stemmes stemmier stemmiest stemming stemmings stemmy stemonaceous stempel stempels stemple stemples stempost stems stemson stemsons stemwards stemware stemwares stemwinder stemwinders sten stenar stench stenched stenchel stenches stenchful stenchier stenchiest stenching stenchion stenchy stencil stenciled stenciler stencilers stenciling stencilise stencilize stencilled stenciller stencillers stencilling stencillings stencilmaker stencilmaking stencils stend stended stending stends steng stengah stengahs stenia stenion stenlock stenlocks stenned stenning steno stenobath stenobathic stenobaths stenobenthic stenobragmatic stenobregma stenocardia stenocardiac stenocardias stenocarpus stenocephalia stenocephalic stenocephalous stenocephaly stenochlaena stenochoria stenochoric stenochrome stenochromes stenochromies stenochromy stenocoriasis stenocranial stenocrotaphia stenog stenogastric stenogastry stenograph stenographed stenographer stenographers stenographic stenographical stenographically stenographies stenographing stenographist stenographists stenographs stenography stenohaline stenokies stenoky stenometer stenopaeic stenopaic stenopeic stenopelmatidae stenopelmatus stenopetalous stenophagous stenophile stenophyllous stenopterygius stenorhyncous stenos stenosed stenosepalous stenoses stenosing stenosis stenosphere stenostomatous stenostomia stenotaphrum stenotelegraphy stenotherm stenothermal stenothermic stenothermophilic stenothermous stenotherms stenothermy stenothorax stenotic stenotomus stenotopic stenotropic stenotus stenotype stenotyped stenotyper stenotypers stenotypes stenotypic stenotypies stenotyping stenotypist stenotypists stenotypy stens stent stented stenter stenterer stenting stentmaster stentmasters stenton stentor stentoraphonic stentorian stentorianly stentorine stentorious stentoriously stentoriousness stentoronic stentorophonic stentorphone stentorphones stentors stentour stentours stentrel stents step stepaunt stepbairn stepbairns stepbrother stepbrotherhood stepbrothers stepchild stepchildren stepdame stepdames stepdance stepdancer stepdancers stepdancing stepdancings stepdaughter stepdaughters stepdown stepdowns stepfamilies stepfamily stepfather stepfatherhood stepfatherly stepfathers stepgrandchild stepgrandfather stepgrandmother stepgrandson stephane stephanes stephanial stephanic stephanion stephanite stephanites stephanome stephanomeria stephanos stephanotis stephanotises stephead stephen stepladder stepladders stepless steplike stepminnie stepmother stepmotherhood stepmotherless stepmotherliness stepmotherly stepmothers stepnephew stepney stepneys stepniece stepony stepparent stepparenting stepparentings stepparents steppe stepped steppeland stepper steppers steppes stepping steppingstone steppingstones steprelation steprelationship steps stepsire stepsister stepsisters stepson stepsons stepstone stepstool stept steptoe steptoes stepuncle stepup stepups stepway stepwise ster steracle sterad steradian steradians stercobilin stercolin stercophagic stercophagous stercoraceous stercoraemia stercoral stercoranism stercoranisms stercoranist stercoranists stercoraries stercorariidae stercorarious stercorarius stercorary stercorate stercorated stercorates stercorating stercoration stercorean stercoremia stercoreous stercoricolous stercorin stercorite stercorol stercorous stercovorous sterculia sterculiaceae sterculiaceous sterculiad sterculias stere stereagnosis stereid sterelminthic sterelminthous sterelminthus stereo stereoacuities stereoacuity stereobate stereobates stereobatic stereoblastula stereoblind stereocamera stereocampimeter stereocard stereocards stereochemic stereochemical stereochemically stereochemistries stereochemistry stereochromatic stereochromatically stereochrome stereochromes stereochromic stereochromically stereochromies stereochromy stereocomparagraph stereocomparator stereoed stereoelectric stereofluoroscope stereofluoroscopes stereofluoroscopic stereofluoroscopy stereogastrula stereognosis stereognostic stereogoniometer stereogram stereograms stereograph stereographed stereographer stereographic stereographical stereographically stereographies stereographing stereographs stereography stereoing stereoisomer stereoisomeric stereoisomerical stereoisomeride stereoisomerism stereoisomerisms stereoisomers stereological stereologically stereologies stereology stereom stereomatrix stereome stereomer stereomeric stereomerical stereomerism stereomes stereometer stereometers stereometric stereometrical stereometrically stereometries stereometry stereomicrometer stereomicroscope stereomicroscopes stereomicroscopic stereomicroscopically stereomicroscopy stereomonoscope stereoneural stereopair stereophantascope stereophone stereophonic stereophonically stereophonies stereophony stereophotogrammetry stereophotograph stereophotographic stereophotographies stereophotography stereophotomicrograph stereophotomicrography stereophysics stereopicture stereoplanigraph stereoplanula stereoplasm stereoplasma stereoplasmic stereopses stereopsides stereopsis stereopsises stereopter stereoptican stereoptician stereopticon stereopticons stereoptics stereoradiograph stereoradiography stereoregular stereoregularities stereoregularity stereornithic stereoroentgenogram stereoroentgenography stereos stereoscope stereoscopes stereoscopic stereoscopical stereoscopically stereoscopies stereoscopism stereoscopist stereoscopists stereoscopy stereosonic stereospecific stereospecifically stereospecificities stereospecificity stereospondyli stereospondylous stereostatic stereostatics stereotactic stereotactical stereotactically stereotape stereotapes stereotaxes stereotaxia stereotaxias stereotaxic stereotaxically stereotaxies stereotaxis stereotaxy stereotelemeter stereotelescope stereotomic stereotomical stereotomies stereotomist stereotomy stereotropic stereotropism stereotropisms stereotypable stereotype stereotyped stereotyper stereotypers stereotypery stereotypes stereotypic stereotypical stereotypically stereotypies stereotyping stereotypings stereotypist stereotypists stereotypographer stereotypography stereotypy stereovision steres sterhydraulic steri steric sterical sterically sterics sterid steride sterigma sterigmas sterigmata sterigmatic sterilant sterilants sterile sterilely sterileness sterilenesses sterilisability sterilisable sterilisation sterilisations sterilise sterilised steriliser sterilisers sterilises sterilising sterilities sterility sterilizability sterilizable sterilization sterilizations sterilize sterilized sterilizer sterilizers sterilizes sterilizing sterilsation sterin sterk sterlet sterlets sterling sterlingly sterlingness sterlingnesses sterlings stern sterna sternad sternage sternages sternal sternalgia sternalgias sternalgic sternalis sternbergia sternbergite sternboard sternboards sterncastle sterneber sternebra sternebrae sternebral sternebras sterned sterner sternest sternfast sternfasts sternforemost sternful sternfully sterninae sterning sternite sternites sternitic sternknee sternly sternman sternmen sternmost sternna sternness sternnesses sternoclavicular sternocleidomastoid sternocleidomastoideus sternoclidomastoid sternocoracoid sternocostal sternofacial sternofacialis sternoglossal sternohumeral sternohyoid sternohyoidean sternomancy sternomastoid sternomaxillary sternonuchal sternopericardiac sternopericardial sternoscapular sternothere sternotherus sternothyroid sternotracheal sternotribe sternovertebral sternoxiphoid sternport sternports sternpost sternposts sterns sternsheet sternsheets sternson sternsons sternum sternums sternutaries sternutate sternutation sternutations sternutative sternutatives sternutator sternutatories sternutators sternutatory sternward sternwards sternway sternways sternwheel sternwheeler sternworks stero steroid steroidal steroidogeneses steroidogenesis steroidogenic steroids sterol sterols sterope sterrinck stert stertor stertorious stertoriously stertoriousness stertorous stertorously stertorousness stertorousnesses stertors sterve sterved sterves sterving stet stetch stethal stetharteritis stethogoniometer stethograph stethographic stethokyrtograph stethometer stethometric stethometry stethoparalysis stethophone stethophonometer stethoscope stethoscoped stethoscopes stethoscopic stethoscopical stethoscopically stethoscopies stethoscopist stethoscopists stethoscopy stethospasm stethy stets stetson stetsons stetted stetting steuben steve stevedorage stevedore stevedored stevedores stevedoring stevel steven stevengraph stevengraphs stevens stevia stew stewable steward stewarded stewardess stewardesses stewarding stewardly stewardries stewardry stewards stewardship stewardships stewart stewartries stewartry stewarty stewbum stewbums stewed stewer stewers stewhouse stewier stewiest stewing stewings stewish stewpan stewpans stewpond stewponds stewpot stewpots stews stewy stey steyer steyest steyning stg stge sthene sthenia sthenias sthenic stheno sthenochire stiacciato stiacciatos stib stibble stibbler stibblerig stibblers stibbles stibethyl stibial stibialism stibialisms stibiate stibiated stibic stibiconite stibine stibines stibious stibium stibiums stibnite stibnites stibonium stibophen sticcado sticcadoes sticcados sticcato sticcatoes sticcatos stich stichado stichaeidae sticharia sticharion sticharions stichcharia stichel stichera sticheron sticherons sticherus stichic stichically stichid stichidia stichidium stichocrome stichoi stichologies stichology stichomancy stichometric stichometrical stichometrically stichometries stichometry stichomythia stichomythias stichomythic stichomythies stichomythy stichos stichs stichwort stick stickabilities stickability stickable stickadore stickadove stickage stickball stickballer stickballers stickballs stickboat sticked stickel sticken sticker stickered stickering stickers stickery sticket stickfast stickful stickfuls stickhandle stickhandled stickhandler stickhandlers stickhandles stickhandling stickie stickied stickier stickies stickiest stickily stickiness stickinesses sticking stickings stickit stickjaw stickjaws sticklac stickle stickleader stickleaders stickleaf stickleback sticklebacks stickled stickler sticklers stickles stickless sticklike stickling stickly stickman stickmen stickout stickouts stickpin stickpins sticks stickseed stickseeds sticksmanship sticktail sticktight sticktights stickum stickums stickup stickups stickwater stickweed stickweeds stickwork stickworks sticky stickybeak stickybeaks stickying stictiform stiction stictions stictomys stictopelia stid stiddie stiddied stiddieing stiddies stiddy stiddying stie stied sties stieve stievely stiever stievest stife stiff stiffed stiffen stiffened stiffener stiffeners stiffening stiffenings stiffens stiffer stiffest stiffhearted stiffie stiffies stiffing stiffish stiffleg stiffler stifflike stiffly stiffneck stiffneckedly stiffneckedness stiffness stiffnesses stiffrump stiffs stifftail stiffware stiffwares stiffy stifle stifled stifledly stifler stiflers stifles stifling stiflingly stiflings stigma stigmai stigmal stigmaria stigmariae stigmarian stigmarians stigmarioid stigmas stigmasterol stigmasterols stigmat stigmata stigmatal stigmatic stigmatical stigmatically stigmaticalness stigmatics stigmatiferous stigmatiform stigmatisation stigmatisations stigmatise stigmatised stigmatiser stigmatisers stigmatises stigmatising stigmatism stigmatisms stigmatist stigmatists stigmatization stigmatizations stigmatize stigmatized stigmatizer stigmatizers stigmatizes stigmatizing stigmatoid stigmatophilia stigmatophilias stigmatophilist stigmatophilists stigmatose stigmatypy stigme stigmeology stigmes stigmonose stigonomancy stilb stilbene stilbenes stilbestrol stilbestrols stilbite stilbites stilboestrol stilboestrols stilbs stile stiled stileman stilemen stiles stilet stilets stilette stiletted stiletto stilettoed stilettoes stilettoing stilettolike stilettos stiling still stillage stillages stillatitious stillatories stillatory stillbirth stillbirths stillborn stillborns stilled stiller stillers stillery stillest stillhouse stillhouses stillicide stillicides stillicidium stillier stilliest stilliform stilling stillings stillion stillions stillish stillman stillmen stillness stillnesses stillroom stillrooms stills stillstand stillwater stilly stilpnomelane stilpnosiderite stilpnosiderites stilt stiltbird stiltbirds stilted stiltedly stiltedness stiltednesses stilter stilters stiltier stiltiest stiltified stiltify stiltifying stiltiness stiltinesses stilting stiltings stiltish stiltlike stilton stilts stilty stilyaga stilyagi stim stime stimed stimes stimie stimied stimies stiming stimpart stimpert stimpmeter stimpmeters stimulability stimulable stimulance stimulancies stimulancy stimulant stimulants stimulate stimulated stimulater stimulaters stimulates stimulating stimulatingly stimulation stimulations stimulative stimulatives stimulator stimulators stimulatory stimulatress stimulatrix stimuli stimulogenous stimulose stimulus stimy stimying stine sting stingaree stingareeing stingarees stingbull stingbulls stinge stinged stinger stingers stingfish stingfishes stingier stingiest stingily stinginess stinginesses stinging stingingly stingingness stingings stingless stingo stingos stingproof stingray stingrays stings stingtail stingy stink stinkard stinkardly stinkards stinkaroo stinkaroos stinkball stinkballs stinkberries stinkberry stinkbird stinkbug stinkbugs stinkbush stinkdamp stinker stinkeroo stinkeroos stinkers stinkhorn stinkhorns stinkibus stinkier stinkiest stinkily stinkiness stinking stinkingly stinkingness stinkingnesses stinkings stinko stinkpot stinkpots stinks stinkstone stinkstones stinkweed stinkweeds stinkwood stinkwoods stinkwort stinky stinkyfoot stint stinted stintedly stintedness stintednesses stinter stinters stintier stintiest stinting stintingly stintings stintless stints stinty stion stionic stioning stipa stipas stipate stipe stiped stipel stipellate stipels stipend stipendary stipendia stipendial stipendiarian stipendiaries stipendiary stipendiate stipendiated stipendiates stipendiating stipendium stipendiums stipendless stipends stipes stipiform stipitate stipites stipitiform stipiture stipo stipos stippen stipple stippled stippledness stippler stipplers stipples stippling stipplings stipply stipula stipulable stipulaceous stipulae stipulant stipular stipulary stipulate stipulated stipulates stipulating stipulatio stipulation stipulations stipulator stipulators stipulatory stipule stipuled stipules stipuliferous stipuliform stir stirabout stirabouts stire stired stires stiria stiring stirk stirks stirless stirlessly stirlessness stirling stirp stirpes stirpicultural stirpiculture stirpicultures stirpiculturist stirps stirra stirrable stirrage stirrah stirrahs stirras stirre stirred stirrer stirrers stirres stirring stirringly stirrings stirrup stirrupless stirruplike stirrups stirrupwise stirs stishie stishies stishovite stishovites stitch stitchbird stitchcraft stitchcrafts stitchdown stitched stitcher stitcheries stitchers stitchery stitches stitching stitchings stitchlike stitchwhile stitchwork stitchworks stitchwort stitchworts stite stith stithe stithied stithies stithly stithy stithying stituted stive stived stiver stivers stives stivier stiviest stiving stivy stizidae stizolobium stizostedion stk stlg stm stoa stoach stoae stoai stoas stoat stoater stoating stoats stob stobball stobbed stobbing stobs stocah stoccado stoccados stoccata stoccatas stochastic stochastical stochastically stocious stock stockade stockaded stockades stockading stockado stockage stockages stockannet stockateer stockbow stockbreeder stockbreeders stockbreeding stockbreedings stockbroker stockbrokerage stockbrokerages stockbrokers stockbroking stockbrokings stockcar stockcars stocked stocker stockers stockfather stockfish stockfishes stockholder stockholders stockholding stockholdings stockholm stockhorn stockhorns stockhorse stockhorses stockhouse stockier stockiest stockily stockiness stockinesses stockinet stockinets stockinette stockinettes stocking stockinged stockinger stockingers stockinging stockingless stockings stockish stockishly stockishness stockist stockists stockjobber stockjobberies stockjobbers stockjobbery stockjobbing stockjobbings stockjudging stockkeeper stockkeepers stockkeeping stockless stocklike stocklist stocklists stocklock stocklocks stockmaker stockmaking stockman stockmen stockowner stockpile stockpiled stockpiler stockpilers stockpiles stockpiling stockpilings stockpot stockpots stockproof stockpunisht stockrider stockriding stockroom stockrooms stocks stockstill stockstone stocktake stocktaken stocktaker stocktakes stocktaking stocktakings stocktook stockwork stockworks stockwright stocky stockyard stockyards stod stodge stodged stodger stodgers stodgery stodges stodgier stodgiest stodgily stodginess stodginesses stodging stodgy stodtone stoechas stoechiological stoechiologies stoechiology stoechiometric stoechiometrically stoechiometries stoechiometry stoep stoeps stof stoff stog stoga stogeies stogey stogeys stogie stogies stogy stoic stoical stoically stoicalness stoicalnesses stoicharion stoicheiological stoicheiologies stoicheiology stoicheiometric stoicheiometrically stoicheiometries stoicheiometry stoichiological stoichiologies stoichiology stoichiometric stoichiometrical stoichiometrically stoichiometries stoichiometry stoicism stoicisms stoics stoit stoited stoiter stoitered stoitering stoiters stoiting stoits stoke stoked stokehold stokeholds stokehole stokeholes stoker stokerless stokers stokes stokesia stokesias stokesite stoking stokroos stokvis stola stolae stolas stold stole stoled stolelike stolen stolenly stolenness stolenwise stoles stolewise stolid stolider stolidest stolidities stolidity stolidly stolidness stolidnesses stolist stolkjaerre stollen stollens stoln stolon stolonate stolonic stoloniferous stoloniferously stolonization stolonlike stolons stolport stolports stolzite stoma stomacace stomach stomachable stomachache stomachaches stomachachy stomachal stomached stomacher stomachers stomaches stomachful stomachfully stomachfulness stomachfulnesses stomachfuls stomachic stomachical stomachically stomachicness stomachics stomaching stomachless stomachlessness stomachous stomachs stomachy stomack stomal stomapod stomapodiform stomapodous stomas stomata stomatal stomatalgia stomate stomates stomatic stomatiferous stomatitic stomatitides stomatitis stomatitises stomatitus stomatocace stomatodaea stomatodaeal stomatodaeum stomatodaeums stomatode stomatodeum stomatodynia stomatogastric stomatograph stomatography stomatolalia stomatologic stomatological stomatologies stomatologist stomatologists stomatology stomatomalacia stomatomenia stomatomy stomatomycosis stomatonecrosis stomatopathy stomatophorous stomatoplastic stomatoplasties stomatoplasty stomatopod stomatopoda stomatopodous stomatopods stomatorrhagia stomatoscope stomatoscopy stomatose stomatosepsis stomatotomies stomatotomy stomatotyphus stomatous stomenorrhagia stomion stomium stomodaea stomodaeal stomodaeudaea stomodaeum stomodaeums stomode stomodea stomodeal stomodeum stomodeumdea stomodeums stomoxys stomp stomped stomper stompers stompie stompies stomping stompingly stomps stonable stonage stond stonds stone stoneable stonebass stonebird stonebiter stoneblindness stoneboat stoneboats stoneborer stoneborers stonebow stonebrash stonebrashes stonebreak stonebreaks stonebrood stonecast stonecasts stonecat stonecats stonechat stonechats stonecraft stonecress stonecrop stonecrops stonecutter stonecutters stonecutting stonecuttings stoned stonedamp stoneface stonefish stonefishes stoneflies stonefly stonegale stonegall stoneground stonehand stonehands stonehatch stonehead stonehearted stonehenge stonehorse stonehorses stoneite stonelayer stonelaying stoneless stonelessness stonelike stoneman stonemason stonemasonries stonemasonry stonemasons stonemen stonemint stonen stonepecker stoneput stoner stonerag stonerags stoneraw stoneraws stonern stoneroller stonerollers stoneroot stoners stones stoneseed stonesfield stoneshot stoneshots stonesmatch stonesmich stonesmitch stonesmith stonewall stonewalled stonewaller stonewallers stonewalling stonewallings stonewalls stonewally stoneware stonewares stonewash stonewashed stonewashes stonewashing stoneweed stonewise stonewood stonework stoneworker stoneworkers stoneworks stonewort stoneworts stoney stoneyard stong stonied stonier stonies stoniest stonifiable stonify stonily stoniness stoninesses stoning stonings stonish stonished stonishes stonishing stonishment stonk stonked stonker stonkered stonkering stonkers stonking stonks stonn stonne stonned stonnes stonning stonns stony stonyhearted stonyheartedly stonyheartedness stonyheartednesses stonying stood stooded stooden stoof stooge stooged stooges stooging stook stooked stooker stookers stookie stooking stooks stool stoolball stoolballs stooled stoolie stoolies stooling stoollike stoolpigeon stools stoon stoond stoop stoopball stoopballs stoope stooped stooper stoopers stoopes stoopgallant stooping stoopingly stoops stoor stoorey stoors stoory stooshie stooshies stoot stooter stooth stoothing stop stopa stopback stopband stopbank stopbanks stopblock stopboard stopcock stopcocks stopdice stope stoped stopen stoper stopers stopes stopgap stopgaps stophound stoping stopings stopless stoplessness stoplight stoplights stopoff stopoffs stopover stopovers stoppability stoppable stoppableness stoppably stoppage stoppages stopped stoppel stopper stoppered stoppering stopperless stoppers stoppeur stopping stoppings stoppit stopple stoppled stopples stoppling stops stopship stopt stopwatch stopwatches stopwater stopway stopwork stor storability storable storables storage storages storax storaxes storay store stored storeen storefront storefronts storehouse storehouseman storehouses storekeep storekeeper storekeepers storekeeping storekeepings storeman storemaster storemen storer storeria storeroom storerooms storers stores storeship storeships storesman storewide storey storeys storge storges storial storiate storiated storiation storied storier stories storiette storiettes storified storify storifying storing storiological storiologies storiologist storiologists storiology stork storken storkish storklike storkling storks storksbill storksbills storkwise storm stormable stormbelt stormbird stormbirds stormbound stormcock stormed stormer stormers stormful stormfully stormfulness stormfulnesses stormier stormiest stormily storminess storminesses storming stormingly stormings stormish stormless stormlessly stormlessness stormlike stormproof storms stormtide stormtight stormtrooper stormtroopers stormward stormwind stormwise stormy stornelli stornello storthing story storyboard storyboarded storyboarding storyboards storybook storybooks storyette storyettes storying storyings storyless storyline storylines storymaker storymonger storys storyteller storytellers storytelling storytellings storywise storywork storywriter stosh stoss stosses stosston stot stoter stotin stoting stotinka stotinki stotinov stotins stotious stots stott stotted stotter stotterel stotters stotting stoun stound stounded stounding stoundmeal stounds stouning stouns stoup stoupful stoups stour stoure stoures stourie stourier stouriest stouring stourliness stourly stourness stours stoury stoush stoushed stoushes stoushing stout stouten stoutened stoutening stoutens stouter stoutest stouth stouthearted stoutheartedly stoutheartedness stoutheartednesses stoutherie stoutheries stouthrie stouthrief stouthriefs stouthries stouths stoutish stoutly stoutness stoutnesses stouts stoutwood stouty stovaine stovaines stove stovebrush stoved stoveful stovehouse stoveless stovemaker stovemaking stoveman stovemen stoven stovepipe stovepipes stover stovers stoves stovetop stovetops stovewood stovies stoving stovings stow stowable stowage stowages stowaway stowaways stowball stowboard stowbord stowbordman stowbordmen stowce stowdown stowdowns stowed stower stowers stowing stowings stowlins stown stownd stownded stownding stownds stownet stownlins stowp stowps stowre stowres stows stowse stowth stowwood str stra strabism strabismal strabismally strabismic strabismical strabismies strabismometer strabismometers strabismometry strabisms strabismus strabismuses strabometer strabometers strabometry strabotome strabotomies strabotomy stracchini stracchino strack strackling stract strad stradametrical straddle straddleback straddlebug straddled straddler straddlers straddles straddleways straddlewise straddling straddlingly strade stradico stradine stradiot stradiots stradivarius stradl stradld stradlings strads strae straes strafe strafed strafer strafers strafes straff straffed straffing straffs strafing strag strage straggle straggled straggler stragglers straggles stragglier straggliest straggling stragglingly stragglings straggly strags stragular stragulum straicht straichter straichtest straight straightabout straightarrow straightaway straightaways straightbred straightbreds straighted straightedge straightedged straightedges straightedging straighten straightened straightener straighteners straightening straightens straighter straightest straightforth straightforward straightforwarder straightforwardest straightforwardly straightforwardness straightforwardnesses straightforwards straightfoward straighthead straighting straightish straightjacket straightjacketed straightjacketing straightjackets straightlaced straightly straightness straightnesses straights straighttail straightup straightwards straightway straightways straightwise straik straike straiked straiking straiks strail strain strainable strainableness strainably strained strainedly strainedness strainer strainerman strainermen strainers straining strainingly strainings strainless strainlessly strainometer strainometers strainproof strains strainslip straint straints strait straited straiten straitened straitening straitens straiter straitest straiting straitjacket straitjacketed straitjacketing straitjackets straitlaced straitlacedly straitlacedness straitlacednesses straitlacing straitly straitness straitnesses straits straitsman straitsmen straitwaistcoat straitwaistcoats straitwork strake straked strakes straky stralet stram stramacon stramacons stramash stramashed stramashes stramashing stramazon stramazons stramineous stramineously strammel strammels strammer stramonies stramonium stramoniums stramony stramp stramped stramping stramps strand strandage stranded strandedness strandednesses strander stranders strandflat strandflats stranding strandless strandline strandlines strandlooper strands strandward strandwolf strandwolves strang strange strangeling strangely strangeness strangenesses stranger strangerdom strangered strangerhood strangering strangerlike strangers strangership strangerwise strangest strangle strangleable strangled stranglehold strangleholds stranglement stranglements strangler stranglers strangles strangletare strangleweed strangling stranglingly stranglings strangulable strangulate strangulated strangulates strangulating strangulation strangulations strangulative strangulatory strangullion stranguries strangurious strangury stranner strany strap straphang straphanger straphangers straphanging straphangs straphead straphung strapless straplesses straplike strapline straplines strapness strapnesses strapontin strapontins strappable strappado strappadoed strappadoes strappadoing strappados strappan strapped strapper strappers strappier strappiest strapping strappings strapple strappy straps strapwork strapwort strapworts strasburg strass strasses strata stratagem stratagematic stratagematical stratagematically stratagematist stratagemical stratagemically stratagems stratal stratameter stratas strate stratege strategetic strategetical strategetics strategi strategian strategic strategical strategically strategics strategies strategist strategists strategize strategized strategizes strategizing strategoi strategos strategus strategy strath straths strathspey strathspeys strati stratic straticulate straticulation straticulations stratification stratificational stratifications stratified stratifies stratiform stratiformis stratify stratifying stratig stratigrapher stratigraphers stratigraphic stratigraphical stratigraphically stratigraphies stratigraphist stratigraphists stratigraphy stratiote stratlin stratochamber stratocracies stratocracy stratocrat stratocratic stratocrats stratocruiser stratocruisers stratocumuli stratocumulus stratofreighter stratographic stratographical stratographically stratography stratojet stratonic stratopause stratopauses stratopedarch stratoplane stratose stratosphere stratospheres stratospheric stratospherical stratospherically stratotanker stratotankers stratotrainer stratous stratovision stratovolcano stratovolcanoes stratovolcanos stratum stratums stratus stratuses straucht strauchted strauchten strauchter strauchtest strauchting strauchts straught straughted straughter straughtest straughting straughts straunge strauss stravagant stravage stravaged stravages stravaging stravague stravaig stravaiged stravaiger stravaigers stravaiging stravaigs strave stravinskian stravinsky stravinskyan straw strawberries strawberry strawberrylike strawbill strawboard strawboards strawbreadth strawed strawen strawer strawflower strawflowers strawfork strawhat strawier strawiest strawing strawish strawless strawlike strawman strawmote strawn straws strawsmall strawsmear strawstack strawstacker strawwalker strawwork strawworm strawworms strawy strawyard stray strayaway strayed strayer strayers straying strayings strayling straylings strays stre streahte streak streaked streakedly streakedness streaker streakers streakier streakiest streakily streakiness streakinesses streaking streakings streaklike streaks streakwise streaky stream streambed streambeds streamed streamer streamered streamers streamful streamhead streamier streamiest streaminess streaminesses streaming streamingly streamings streamless streamlet streamlets streamlike streamline streamlined streamliner streamliners streamlines streamling streamlings streamlining streams streamside streamsides streamward streamway streamwort streamy streck streckly stree streek streeked streeker streekers streeking streeks streel streeled streeler streeling streels streen streep street streetage streetages streetboy streetboys streetcar streetcars streeted streeters streetfighter streetful streetfuls streetier streetiest streetkeeper streetkeepers streetlamp streetlamps streetless streetlet streetlight streetlights streetlike streetroom streetrooms streets streetscape streetscapes streetside streetsmart streetwalk streetwalker streetwalkers streetwalking streetwalkings streetward streetwards streetway streetways streetwise streety streight streights streigne streigned streignes streigning streit streite streke strekelia strelitz strelitzes strelitzi strelitzia strelitziaceae strelitzias streltzi stremma stremmas stremmatograph strene strenes streng strengite strength strengthed strengthen strengthened strengthener strengtheners strengthening strengtheningly strengthenings strengthens strengthful strengthfulness strengthily strengthless strengthlessly strengthlessness strengths strengthy strent strenth strenuities strenuity strenuosities strenuosity strenuous strenuously strenuousness strenuousnesses strep strepen strepent strepera streperous strephonade strephosymbolia strephosymbolias strepitant strepitantly strepitation strepitations strepitoso strepitous strepor streps strepsiceros strepsinema strepsipteral strepsipteran strepsipteron strepsipterous strepsirhini strepsis strepsitene streptaster streptobacilli streptobacillus streptocarpus streptocarpuses streptococcal streptococci streptococcic streptococcocci streptococcus streptodornase streptodornases streptokinase streptokinases streptolysin streptolysins streptomyces streptomycetacaea streptomycete streptomycetes streptomycin streptomycins streptoneura streptoneural streptoneurous streptopelia streptosepticemia streptosolen streptosolens streptothricial streptothricin streptothricins streptothricosis streptotrichal streptotrichosis stress stressed stresser stresses stressful stressfully stressfulness stressfulnesses stressing stressless stresslessness stresslessnesses stressor stressors stret stretch stretchabilities stretchability stretchable stretchberry stretched stretcher stretchered stretchering stretcherman stretchers stretches stretchier stretchiest stretchiness stretchinesses stretching stretchless stretchmarks stretchneck stretchpants stretchproof stretchy stretman stretmen stretta strettas strette stretti stretto strettos streusel streuselkuchen streusels strew strewage strewages strewed strewer strewers strewing strewings strewment strewments strewn strews strewth strey streyne stria striae strial striata striatal striate striated striates striating striation striations striatum striatums striature striatures strich striche striches strick stricken strickenly strickenness stricker strickle strickled strickler strickles strickless strickling stricks strict stricter strictest striction strictish strictly strictness strictnesses strictum stricture strictured strictures strid stridden striddle striddled striddles striddling stride strideleg stridelegged stridelegs stridence stridences stridencies stridency strident stridently strider striders strides strideways stridhan stridhana stridhanum striding stridingly stridling stridlins stridor stridors strids stridulant stridulantly stridulate stridulated stridulates stridulating stridulation stridulations stridulator stridulators stridulatory stridulent stridulous stridulously stridulousness strife strifeful strifeless strifemaker strifemaking strifemonger strifeproof strifes striffen strift strifts strig striga strigae strigal strigate striges strigged strigging striggle stright strigidae strigiform strigiformes strigil strigilate strigilation strigilator strigiles strigilis strigillose strigilous strigils strigine strigose strigous strigovite strigs strigulose strike strikeboard strikeboat strikebound strikebreak strikebreaker strikebreakers strikebreaking strikebreakings striked strikeless striken strikeout strikeouts strikeover strikeovers striker strikers strikes striking strikingly strikingness strikingnesses strikings strind strine strines string stringboard stringboards stringcourse stringcourses stringed stringencies stringency stringendo stringendos stringene stringent stringently stringentness stringentnesses stringer stringers stringful stringhalt stringhalted stringhaltedness stringhalts stringhalty stringholder stringier stringiest stringily stringiness stringinesses stringing stringings stringless stringlike stringmaker stringmaking stringman stringmen stringpiece stringpieces strings stringsman stringsmen stringways stringwood stringy stringybark stringybarks strinkle strinkled strinkles strinkling strinklings striola striolae striolate striolated striolet strip stripagram stripagrams stripe striped stripeless striper stripers stripes stripey stripfilm stripier stripiest stripiness stripinesses striping stripings striplet striplight stripling striplings strippable strippage stripped stripper strippergram strippergrams strippers strippies stripping strippings strippit strippler strippy strips stript striptease stripteased stripteaser stripteasers stripteases stripteasing stripteuse stripy strit strive strived striven striver strivers strives striving strivingly strivings strivy strix stroam stroamed stroaming stroams strobe strobed strobes strobic strobil strobila strobilaceous strobilae strobilar strobilate strobilated strobilates strobilating strobilation strobilations strobile strobiles strobili strobiliferous strobiliform strobiline strobilisation strobilisations strobilization strobilizations strobiloid strobilomyces strobils strobilus strobing strobings stroboradiograph stroboscope stroboscopes stroboscopic stroboscopical stroboscopically stroboscopy strobotron strobotrons strockle stroddle stroddled stroddles stroddling strode strodle strodled strodles strodling stroganoff stroganoffs stroil stroke stroked stroken stroker strokers strokes strokesman strokesmen stroking strokings stroky strold stroll strolld strolled stroller strollers strolling strollings strolls strom stroma stromal stromata stromatal stromateid stromateidae stromateoid stromatic stromatiform stromatolite stromatolites stromatolitic stromatology stromatoporoid stromatous stromb strombidae strombiform strombite stromboid strombolian strombs strombuliferous strombuliform strombus strombuses strome stromed stromeyerite stroming stromming stromuhr strond stronds strone strong strongarm strongarmed strongarmer strongarming strongarms strongback strongbark strongbow strongbox strongboxes strongbrained stronger strongest strongfully stronghand stronghanded stronghead strongheaded strongheadedly strongheadedness strongheadness stronghearted stronghold strongholds strongish stronglike strongly strongman strongmen strongness strongpoint strongpoints strongroom strongrooms strongyl strongylate strongyle strongyles strongyliasis strongylid strongylidosis strongylodon strongyloid strongyloidiases strongyloidiasis strongyloidoses strongyloidosis strongyloids strongylon strongyloses strongylosis strongyls strontia strontian strontianiferous strontianite strontianites strontians strontias strontic strontion strontitic strontium strontiums strook strooke strooken strookes stroot strop strophaic strophanhin strophanthin strophanthins strophanthus strophanthuses stropharia strophariaceae strophe strophes strophic strophical strophically strophiolate strophiolated strophiole strophioles strophoid strophoids strophomenid strophomenoid strophosis strophotaxis strophuli strophulus strophuluses stropped stropper stroppers stroppier stroppiest stroppily stroppiness stropping stroppings stroppy strops strosser strossers stroth strother stroud strouding stroudings strouds strounge stroup stroupach stroupachs stroupan stroupans stroups strout strouted strouthiocamel strouthiocamelian strouthocamelian strouting strouts strove strow strowd strowed strower strowers strowing strowings strown strows stroy stroyed stroyer stroyers stroygood stroying stroys strub strubbly strucion struck strucken struct structed struction structional structive structural structuralisation structuralisations structuralise structuralises structuralism structuralisms structuralist structuralists structuralization structuralizations structuralize structuralized structuralizes structuralizing structurally structuration structurations structure structured structureless structurelessness structurelessnesses structurely structurer structures structuring structurist strude strudel strudels strue struggle struggled struggler strugglers struggles struggling strugglingly strugglings struis struissle struldbrug strum struma strumae strumas strumatic strumaticness strumectomy strumiferous strumiform strumiprivic strumiprivous strumitis strumitises strummed strummel strummels strummer strummers strumming strumose strumous strumousness strumpet strumpeted strumpeting strumpetlike strumpetry strumpets strums strumstrum strumulose strung strunt strunted strunting strunts struse strut struth struthian struthiform struthiiform struthiin struthin struthio struthioid struthioids struthiomimus struthionidae struthioniform struthioniformes struthionine struthious struthonine struts strutted strutter strutters strutting struttingly struttings struv struvite strych strychnia strychnias strychnic strychnin strychnina strychnine strychnines strychninic strychninisation strychninise strychninism strychninisms strychninization strychninize strychnism strychnisms strychnize strychnol strychnos strymon strype stuart stub stubachite stubb stubbed stubbedness stubber stubbier stubbies stubbiest stubbily stubbiness stubbinesses stubbing stubble stubbleberry stubbled stubbles stubbleward stubblier stubbliest stubbliness stubbling stubbly stubborn stubborned stubborner stubbornest stubbornhearted stubborning stubbornly stubbornness stubbornnesses stubborns stubboy stubbs stubby stubchen stube stuber stubiest stubornly stuboy stubrunner stubs stubwort stucco stuccoed stuccoer stuccoers stuccoes stuccoing stuccos stuccowork stuccoworker stuccoworks stuccoyer stuck stucken stucking stuckling stucks stucturelessness stud studbook studbooks studded studden studder studdery studdie studdies studding studdings studdingsail studdingsails studdle studdles studdy stude student studenthood studentless studentlike studentries studentry students studentship studentships studerite studfarm studfarms studfish studfishes studflower studhorse studhorses studia studiable studied studiedly studiedness studiednesses studier studiers studies studio studios studious studiously studiousness studiousnesses studium studlier studliest studly studs studwork studworks study studying studys stue stuff stuffage stuffata stuffed stuffender stuffer stuffers stuffgownsman stuffier stuffiest stuffily stuffiness stuffinesses stuffing stuffings stuffless stuffs stuffy stug stuggier stuggiest stuggy stuiver stuivers stull stuller stulls stulm stulms stultification stultifications stultified stultifier stultifiers stultifies stultify stultifying stultiloquence stultiloquently stultiloquious stultiloquy stultioquy stultloquent stulty stum stumble stumblebum stumblebums stumblebunny stumbled stumbler stumblers stumbles stumblier stumbliest stumbling stumblingly stumbly stumer stumers stumm stummed stummel stummels stummer stumming stummy stumor stumour stump stumpage stumpages stumped stumper stumpers stumpier stumpies stumpiest stumpily stumpiness stumpinesses stumping stumpish stumpknocker stumpless stumplike stumpling stumpnose stumps stumpsucker stumpwise stumpwork stumpworks stumpy stums stun stundist stung stunk stunkard stunned stunner stunners stunning stunningly stunnings stunpoll stuns stunsail stunsails stunsle stunt stunted stuntedly stuntedness stuntednesses stunter stuntiness stunting stuntingly stuntist stuntman stuntmen stuntness stunts stuntwoman stuntwomen stunty stupa stupas stupe stuped stupefacient stupefacients stupefaction stupefactions stupefactive stupefactiveness stupefied stupefiedness stupefier stupefiers stupefies stupefy stupefying stupefyingly stupend stupendious stupendly stupendous stupendously stupendousness stupendousnesses stupent stupeous stupes stupex stuphe stupid stupider stupidest stupidhead stupidheaded stupidish stupidities stupidity stupidly stupidness stupidnesses stupids stupify stuping stupor stuporific stuporose stuporous stupors stupose stupp stuprate stuprated stuprates stuprating stupration stuprations stuprum stupulose sturble sturdied sturdier sturdiersturdies sturdies sturdiest sturdily sturdiness sturdinesses sturdy sturdyhearted sture sturgeon sturgeons sturin sturine sturionian sturionine sturk sturmer sturmers sturnella sturnidae sturniform sturnine sturnoid sturnus sturnuses sturoch sturshum sturt sturtan sturte sturted sturtin sturting sturtion sturtite sturts sturty stushie stushies stuss stut stutter stuttered stutterer stutterers stuttering stutteringly stutterings stutters stuttgart sty styan styany styca styceric stycerin stycerinol stychomythia stye styed styes styful styfziekte stygian stygiophobia stying stylar stylaster stylate styldia style stylebook stylebooks styled styledom styleless stylelessness stylelessnesses stylelike stylemark styler stylers styles stylet stylets stylewort styli stylidiaceous stylidium styliferous styliform styline styling stylings stylion stylisation stylisations stylise stylised styliser stylisers stylises stylish stylishly stylishness stylishnesses stylising stylist stylistic stylistical stylistically stylistics stylists stylite stylites stylitic stylitism stylitisms stylization stylizations stylize stylized stylizer stylizers stylizes stylizing stylli stylo styloauricularis stylobata stylobate stylobates styloglossal styloglossus stylogonidium stylograph stylographic stylographical stylographically stylographies stylographs stylography stylohyal stylohyoid stylohyoidean stylohyoideus styloid styloids stylolite stylolites stylolitic stylomandibular stylomastoid stylomaxillary stylomecon stylometer stylometries stylometry stylommatophorous stylomyloid stylopharyngeal stylopharyngeus stylophone stylophones stylophorum stylopid stylopised stylopization stylopize stylopized stylopod stylopodia stylopodium stylopodiums stylops stylos stylospore stylosporous stylostegium stylostemon stylostixis stylotypite stylus styluses styme stymed stymes stymie stymied stymieing stymies styming stymphalian stymying styphelia styphnate styphnic stypses stypsis stypsises styptic styptical stypticalness stypticin stypticities stypticity stypticness styptics styracaceae styracaceous styracin styracosaur styracosaurus styrax styraxes styre styred styrene styrenes styres styrian styring styrofoam styrofoams styrogallol styrol styrolene styrone styryl styrylic styte styted stytes stythe styting styward styx su suabilities suability suable suably suade suaharo suant suantly suasibility suasible suasion suasionist suasions suasive suasively suasiveness suasivenesses suasoria suasory suavastika suave suavely suaveness suavenesses suaveolent suaver suavest suavify suaviloquence suaviloquent suavities suavity sub suba subabbot subabbots subabdominal subabilities subability subabsolute subabsolutely subabsoluteness subacademic subacademical subacademically subaccount subacetabular subacetate subacetates subacid subacidities subacidity subacidly subacidness subacidnesses subacidulous subacrid subacridity subacridly subacridness subacrodrome subacrodromous subacromial subact subacted subacting subaction subactions subacts subacuminate subacumination subacute subacutely subadar subadars subadditive subadditively subadjacent subadjacently subadjutor subadministrate subadministrated subadministrating subadministration subadministrative subadministratively subadministrator subadministrators subadolescent subadolescents subadult subadultness subadults subaduncate subadvocate subaerate subaerated subaerating subaeration subaerial subaerially subaetheric subaffluence subaffluent subaffluently subage subagencies subagency subagent subagents subaggregate subaggregately subaggregates subaggregation subaggregations subaggregative subah subahdar subahdaries subahdars subahdary subahs subahship subahships subaid subalar subalary subalate subalated subalbid subalgebra subalgebraic subalgebraical subalgebraically subalgebraist subalimentation subalkaline suballiance suballiances suballocate suballocated suballocating suballocation suballocations subalmoner subalpine subaltern subalternant subalternants subalternate subalternately subalternates subalternating subalternation subalternations subalternities subalternity subalterns subamare subanal subanconeal subandean subangled subangular subangularities subangularity subangularly subangularness subangulate subangulated subangulately subangulation subanniversary subantarctic subantichrist subantique subantiquely subantiqueness subantiquities subantiquity subapical subapically subaponeurotic subapostolic subapparent subapparently subapparentness subappearance subappearances subappressed subapprobatiness subapprobation subapprobative subapprobativeness subapprobatory subapterous subaqua subaqual subaquatic subaquean subaqueous subarachnoid subarachnoidal subarachnoidean subarboraceous subarboreal subarboreous subarborescence subarborescent subarch subarchesporial subarchitect subarctic subarctics subarcuate subarcuated subarcuation subarcuations subarea subareal subareas subareolar subareolet subarid subarmale subarmor subarmour subarousal subarouse subarration subarrations subarrhation subarrhations subartesian subarticle subarticles subarticulate subarticulately subarticulateness subarticulation subarticulative subarytenoid subarytenoidal subas subascending subashi subassemblage subassemble subassembled subassembler subassembles subassemblies subassembling subassembly subassociation subassociational subassociations subassociative subassociatively subastragalar subastragaloid subastral subastringent subatmospheric subatom subatomic subatomics subatoms subattenuate subattenuated subattenuation subattorney subattorneys subattorneyship subaud subaudibility subaudible subaudibleness subaudibly subaudio subaudition subauditionist subauditions subauditor subauditur subaural subaurally subauricular subauriculate subautomatic subautomatically subaverage subaveragely subaxial subaxially subaxile subaxillar subaxillary subbailie subbailiff subbailiwick subballast subband subbank subbasal subbasals subbasaltic subbase subbasement subbasements subbases subbasin subbasins subbass subbassa subbasses subbeadle subbeau subbed subbias subbie subbies subbifid subbing subbings subbituminous subblock subblocks subbookkeeper subboreal subbourdon subbrachial subbrachian subbrachiate subbrachycephalic subbrachycephaly subbrachyskelic subbranch subbranched subbranches subbranchial subbred subbreed subbreeding subbreeds subbrigade subbrigadier subbroker subbromid subbromide subbronchial subbronchially subbureau subbureaus subbureaux subby subcabinet subcabinets subcaecal subcalcareous subcalcarine subcaliber subcalibre subcallosal subcampanulate subcancellate subcancellous subcandid subcandidly subcandidness subcantor subcantors subcapsular subcaptain subcaptaincy subcaptainship subcaption subcarbide subcarbonaceous subcarbonate subcarbureted subcarburetted subcardinal subcardinally subcardinals subcarinate subcarinated subcarrier subcarriers subcartilaginous subcase subcash subcashier subcasing subcasino subcasinos subcast subcaste subcastes subcategories subcategorising subcategorization subcategorizations subcategorize subcategorized subcategorizes subcategorizing subcategory subcaudal subcaudate subcaulescent subcause subcauses subcavate subcavities subcavity subceiling subceilings subcelestial subcell subcellar subcellars subcells subcellular subcenter subcenters subcentral subcentrally subcentre subception subceptions subcerebellar subcerebral subch subchairman subchairmen subchamberer subchancel subchannel subchannels subchanter subchanters subchapter subchapters subcharter subcharters subchaser subchasers subchela subchelae subchelate subcheliform subchief subchiefs subchloride subchlorides subchondral subchord subchordal subchords subchorioid subchorioidal subchorionic subchoroid subchoroidal subchronic subchronical subchronically subcinctoria subcinctorium subcincttoria subcineritious subcingulum subcircuit subcircuits subcircular subcircularity subcircularly subcision subcities subcity subcivilization subcivilizations subcivilized subclaim subclaims subclan subclans subclass subclassed subclasses subclassification subclassifications subclassified subclassifies subclassify subclassifying subclassing subclausal subclause subclauses subclavate subclavia subclavian subclavians subclavicular subclavii subclavioaxillary subclaviojugular subclavius subclei subclerk subclerks subclerkship subclimactic subclimate subclimatic subclimax subclimaxes subclinical subclinically subclique subclone subclover subcluster subclusters subcoastal subcoat subcode subcodes subcollateral subcollection subcollections subcollector subcollectorship subcollege subcolleges subcollegial subcollegiate subcolonies subcolony subcolumnar subcommand subcommander subcommanders subcommandership subcommands subcommendation subcommendatory subcommended subcommissarial subcommissaries subcommissary subcommissaryship subcommission subcommissioner subcommissioners subcommissionership subcommissions subcommit subcommittee subcommittees subcommunities subcommunity subcompact subcompacts subcompany subcompensate subcompensated subcompensating subcompensation subcompensational subcompensative subcompensatory subcomplete subcompletely subcompleteness subcompletion subcomponent subcomponents subcompressed subcomputation subcomputations subconcave subconcavely subconcaveness subconcavities subconcavity subconcealed subconcept subconcepts subconcession subconcessionaire subconcessionaries subconcessionary subconcessioner subconchoidal subconference subconferential subconformability subconformable subconformableness subconformably subconic subconical subconically subconjunctival subconjunctive subconjunctively subconnate subconnation subconnect subconnectedly subconnivent subconscience subconscious subconsciouses subconsciously subconsciousness subconsciousnesses subconservator subconsideration subconstable subconstellation subconsul subconsular subconsulship subcontained subcontest subcontiguous subcontinent subcontinental subcontinents subcontinual subcontinued subcontinuous subcontract subcontracted subcontracting subcontractings subcontractor subcontractors subcontracts subcontraoctave subcontraoctaves subcontraries subcontrarieties subcontrariety subcontrarily subcontrary subcontrol subcontrolled subcontrolling subconvex subconvolute subconvolutely subcool subcooled subcooling subcools subcoracoid subcordate subcordately subcordiform subcoriaceous subcorneous subcornual subcorporation subcortex subcortexes subcortical subcortically subcortices subcorymbose subcorymbosely subcosta subcostae subcostal subcostalis subcostals subcostas subcouncil subcouncils subcounties subcounty subcover subcranial subcranially subcreative subcreatively subcreativeness subcreek subcrenate subcrenated subcrenately subcrepitant subcrepitation subcrescentic subcrest subcriminal subcriminally subcript subcritical subcrossing subcruciform subcrureal subcrureus subcrust subcrustaceous subcrustal subcrusts subcrystalline subcubic subcubical subcuboid subcuboidal subcult subcultrate subcultrated subcults subcultural subculturally subculture subcultured subcultures subculturing subcuneus subcurate subcurative subcuratives subcurator subcuratorial subcurators subcuratorship subcurrent subcutaneous subcutaneously subcutaneousness subcutes subcuticular subcutis subcutises subcyaneous subcyanid subcyanide subcycle subcycles subcylindric subcylindrical subdataries subdatary subdate subdated subdating subdeacon subdeaconate subdeaconess subdeaconries subdeaconry subdeacons subdeaconship subdeaconships subdealer subdean subdeaneries subdeanery subdeans subdeb subdebs subdebutante subdebutantes subdecanal subdecimal subdecision subdecisions subdecuple subdeducible subdefinition subdefinitions subdelegate subdelegated subdelegating subdelegation subdeliliria subdeliria subdelirious subdelirium subdeliriums subdeltaic subdeltoid subdeltoidal subdemonstrate subdemonstrated subdemonstrating subdemonstration subdendroid subdendroidal subdenomination subdentate subdentated subdentation subdented subdenticulate subdenticulated subdepartment subdepartmental subdepartments subdeposit subdepositories subdepository subdepot subdepots subdepressed subdeputies subdeputy subderivative subdermal subdermally subdermic subdeterminant subdevelopment subdevelopments subdevil subdew subdewed subdewing subdews subdiaconal subdiaconate subdiaconates subdiaconus subdial subdialect subdialectal subdialectally subdialects subdiapason subdiapasonic subdiapente subdiaphragmatic subdiaphragmatically subdichotomies subdichotomize subdichotomous subdichotomously subdichotomy subdie subdilated subdirector subdirectories subdirectors subdirectorship subdirectory subdiscipline subdisciplines subdiscoid subdiscoidal subdisjunctive subdistich subdistichous subdistichously subdistinction subdistinctions subdistinctive subdistinctively subdistinctiveness subdistinguish subdistinguished subdistrict subdistricted subdistricting subdistricts subdit subdititious subdititiously subdivecious subdiversify subdividable subdivide subdivided subdivider subdividers subdivides subdividing subdividingly subdivine subdivinely subdivineness subdivisible subdivision subdivisional subdivisions subdivisive subdoctor subdolent subdolichocephalic subdolichocephalism subdolichocephalous subdolichocephaly subdolous subdolously subdolousness subdomains subdominance subdominant subdominants subdorsal subdorsally subdouble subdrain subdrainage subdrill subdruid subduable subduableness subduably subdual subduals subduce subduced subduces subducing subduct subducted subducting subduction subductions subducts subdue subdued subduedly subduedness subduednesses subduement subduements subduer subduers subdues subduing subduingly subduple subduplicate subdural subdurally subdure subdwarf subecho subechoes subeconomic subeconomies subeconomy subectodermal subectodermic subedar subedars subedit subedited subediting subeditor subeditorial subeditors subeditorship subeditorships subedits subeffective subeffectively subeffectiveness subelaphine subelection subelectron subelement subelemental subelementally subelementary subelliptic subelliptical subelongate subelongated subemarginate subemarginated subemployed subemployment subemployments subencephalon subencephaltic subendocardial subendorse subendorsed subendorsement subendorsing subendothelial subendymal subenfeoff subengineer subentire subentitle subentitled subentitling subentries subentry subepidermal subepiglottal subepiglottic subepithelial subepoch subepochs subequal subequalities subequality subequally subequatorial subequilateral subequivalve suber suberane suberate suberates suberect suberectly suberectness subereous suberic suberiferous suberification suberiform suberin suberine suberinization suberinize suberins suberisation suberisations suberise suberised suberises suberising suberite suberization suberizations suberize suberized suberizes suberizing suberone suberose suberous subers subescheator subesophageal subessential subessentially subessentialness subestuarine subet subeth subetheric subevergreen subexaminer subexcitation subexcite subexecutor subexpression subexpressions subextensibility subextensible subextensibleness subextensibness subexternal subexternally subface subfacies subfactor subfactorial subfactorials subfactories subfactory subfalcate subfalcial subfalciform subfamilies subfamily subfascial subfastigiate subfastigiated subfebrile subferryman subferrymen subfertile subfertilities subfertility subfestive subfestively subfestiveness subfeu subfeudation subfeudations subfeudatory subfeued subfeuing subfeus subfibrous subfief subfield subfields subfigure subfigures subfile subfiles subfissure subfix subfixes subflavor subflavour subflexuose subflexuous subflexuously subfloor subflooring subfloorings subfloors subflora subfluid subflush subfluvial subfocal subfoliar subfoliate subfoliation subforeman subforemanship subforemen subform subformation subformative subformatively subformativeness subfossil subfossils subfossorial subfoundation subfraction subfractional subfractionally subfractionary subfractions subframe subframes subfreezing subfreshman subfreshmen subfrontal subfrontally subfulgent subfulgently subfumigation subfumose subfunction subfunctional subfunctionally subfunctions subfusc subfuscous subfuscs subfusiform subfusk subfusks subg subgalea subgallate subganger subganoid subgape subgaped subgaping subgelatinization subgelatinoid subgelatinous subgelatinously subgelatinousness subgenera subgeneration subgenerations subgeneric subgenerical subgenerically subgeniculate subgeniculation subgenital subgenre subgenres subgens subgentes subgenual subgenus subgenuses subgeometric subgeometrical subgeometrically subgerminal subgerminally subget subgiant subgit subglabrous subglacial subglacially subglenoid subgloboid subglobose subglobosely subglobosity subglobous subglobular subglobularity subglobularly subglobulose subglossal subglossitis subglottal subglottally subglottic subglumaceous subgoal subgoals subgod subgoverness subgovernment subgovernments subgovernor subgovernorship subgrade subgrades subgranular subgranularity subgranularly subgraph subgraphs subgrin subgross subgroup subgrouped subgrouping subgroups subgular subgum subgums subgwely subgyre subgyri subgyrus subhalid subhalide subhall subharmonic subharmonics subhastation subhastations subhatcheries subhatchery subhead subheading subheadings subheadquarters subheads subheadwaiter subhealth subhedral subhemispheric subhemispherical subhemispherically subhepatic subherd subhero subheroes subhexagonal subhirsuness subhirsute subhirsuteness subhooked subhorizontal subhorizontally subhorizontalness subhornblendic subhouse subhuman subhumanly subhumans subhumeral subhumid subhyalin subhyaline subhyaloid subhymenial subhymenium subhyoid subhyoidean subhypotheses subhypothesis subhysteria subicle subicteric subicterical subicular subiculum subidar subidea subideal subideas subilia subililia subilium subimaginal subimagines subimago subimagos subimbricate subimbricated subimbricately subimbricative subimposed subimpressed subincandescent subincident subincise subincised subincises subincising subincision subincisions subincomplete subindex subindexes subindicate subindicated subindicates subindicating subindication subindications subindicative subindices subindividual subinduce subindustries subindustry subinfection subinfer subinferior subinferred subinferring subinfeud subinfeudate subinfeudated subinfeudates subinfeudating subinfeudation subinfeudations subinfeudatories subinfeudatory subinflammation subinflammatory subinfluent subinform subingression subinguinal subinhibitory subinitial subinoculate subinoculation subinsert subinsertion subinsinuation subinsinuations subinspector subinspectors subinspectorship subinspectorships subintegumental subintegumentary subintellection subintellections subintelligence subintelligences subintelligential subintelligitur subintelligiturs subintent subintention subintentional subintentionally subintercessor subinternal subinternally subinterval subintervals subintestinal subintimal subintrant subintroduce subintroduced subintroduces subintroducing subintroduction subintroductive subintroductory subinvolute subinvoluted subinvolution subinvolutions subiodide subirrigate subirrigated subirrigates subirrigating subirrigation subirrigations subitane subitaneous subitany subitem subitems subitise subitised subitises subitising subitize subitized subitizes subitizing subito subitous subj subjacencies subjacency subjacent subjacently subjack subject subjectability subjectable subjectdom subjected subjectedly subjectedness subjecthood subjectibility subjectible subjectification subjectified subjectifies subjectify subjectifying subjectile subjecting subjection subjectional subjections subjectist subjective subjectively subjectiveness subjectivenesses subjectives subjectivisation subjectivisations subjectivise subjectivised subjectivises subjectivising subjectivism subjectivisms subjectivist subjectivistic subjectivistically subjectivists subjectivities subjectivity subjectivization subjectivizations subjectivize subjectivized subjectivizes subjectivizing subjectivoidealistic subjectless subjectlike subjectness subjects subjectship subjectships subjee subjicible subjoin subjoinder subjoinders subjoined subjoining subjoins subjoint subjudge subjudgeship subjudicial subjudicially subjudiciaries subjudiciary subjugable subjugal subjugate subjugated subjugates subjugating subjugation subjugations subjugator subjugators subjugular subjunct subjunction subjunctions subjunctive subjunctively subjunctives subjunior subking subkingdom subkingdoms sublabial sublabially sublaciniate sublacunose sublacustrine sublanate sublanceolate sublanguage sublanguages sublapsar sublapsarian sublapsarianism sublapsarianisms sublapsarians sublapsary sublaryngal sublaryngeal sublaryngeally sublate sublated sublateral sublates sublating sublation sublations sublative sublattices sublavius sublayer sublayers subleader sublease subleased subleases subleasing sublecturer sublegislation sublegislature sublenticular sublenticulate sublessee sublessees sublessor sublessors sublet sublethal sublethally sublets sublettable subletter subletters subletting sublettings sublevaminous sublevate sublevation sublevel sublevels sublibrarian sublibrarians sublibrarianship sublicense sublicensed sublicensee sublicenses sublicensing sublid sublieutenancy sublieutenant sublieutenants subligation sublighted sublimable sublimableness sublimant sublimate sublimated sublimates sublimating sublimation sublimational sublimationist sublimations sublimator sublimatory sublime sublimed sublimely sublimeness sublimenesses sublimer sublimers sublimes sublimest sublimification subliminal subliminally subliminals subliming sublimings sublimise sublimised sublimises sublimish sublimising sublimit sublimitation sublimities sublimits sublimity sublimize sublimized sublimizes sublimizing subline sublinear sublineation sublineations sublines sublingua sublinguae sublingual sublingually sublinguate sublist sublists subliteracies subliteracy subliterary subliterate subliterature subliteratures sublittoral sublittorals sublobular sublong subloral subloreal sublot sublots sublumbar sublunar sublunars sublunary sublunate sublunated sublustrous sublustrously sublustrousness subluxate subluxation subluxations submachine submaid submain submakroskelic submammary subman submanager submanagers submanagership submandibular submandibulars submania submaniacal submaniacally submanic submanor submarginal submarginally submarginate submargined submarine submarined submariner submariners submarines submarining submarinism submarinist submarket submarkets submarshal submaster submatrices submatrix submatrixes submaxilla submaxillae submaxillaries submaxillary submaxillas submaximal submeaning submedial submedially submedian submediant submediants submediation submediocre submeeting submember submembers submembranaceous submembranous submen submeningeal submenta submental submentum submentums submenu submenus submerge submerged submergement submergements submergence submergences submerges submergibilities submergibility submergible submerging submerse submersed submerses submersibilities submersibility submersible submersibles submersing submersion submersions submetacentric submetacentrics submetallic submetaphoric submetaphorical submetaphorically submeter submetering submicrogram submicrominiature submicron submicrons submicroscopic submicroscopical submicroscopically submiliary submillimeter submind subminiature subminiatures subminiaturisation subminiaturise subminiaturised subminiaturises subminiaturising subminiaturization subminiaturizations subminiaturize subminiaturized subminiaturizes subminiaturizing subminima subminimal subminimum subminimums subminister subministers subministrant submiss submissible submission submissionist submissions submissit submissive submissively submissiveness submissivenesses submissly submissness submissnesses submit submitochondrial submits submittable submittal submittals submittance submitted submitter submitters submitting submittingly submittings submode submodes submodule submodules submolecular submolecule submolecules submonition submontagne submontane submontanely submontaneous submorphous submortgage submotive submountain submucosa submucosae submucosal submucosally submucosas submucous submucronate submucronated submultiple submultiples submultiplexed submundane submunition submunitions submuriate submuscular submuscularly subnacreous subnanosecond subnarcotic subnasal subnascent subnational subnatural subnaturally subnaturalness subnect subnervian subness subnet subnets subnetwork subnetworks subneural subnex subniche subniches subnitrate subnitrated subniveal subnivean subnodal subnode subnodes subnodulose subnodulous subnormal subnormalities subnormality subnormally subnormals subnotation subnotational subnote subnotebook subnotebooks subnotochordal subnubilar subnuclear subnuclei subnucleus subnucleuses subnude subnumber subnutritious subnutritiously subnutritiousness subnuvolar suboblique subobliquely subobliqueness subobscure subobscurely subobscureness subobsolete subobsoletely subobsoleteness subobtuse subobtusely subobtuseness suboccipital subocean suboceanic suboctave suboctaves suboctile suboctuple subocular subocularly suboesophageal suboffice subofficer subofficers suboffices subofficial subofficially subolive subopaque subopaquely subopaqueness subopercle subopercula subopercular suboperculum suboperculums subopposite suboppositely suboppositeness suboptic suboptical suboptically suboptima suboptimal suboptimally suboptimization suboptimizations suboptimize suboptimized suboptimizes suboptimizing suboptimum suboptimuma suboptimums suboral suborbicular suborbicularity suborbicularly suborbiculate suborbiculated suborbital suborbitar suborbitary subordain suborder suborders subordinacy subordinal subordinancies subordinancy subordinaries subordinary subordinate subordinated subordinately subordinateness subordinatenesses subordinates subordinating subordinatingly subordination subordinationism subordinationisms subordinationist subordinationists subordinations subordinative subordinator subordinators suborganic suborganically suborganization suborganizations suborn subornation subornations subornative suborned suborner suborners suborning suborns suboscine suboscines suboval subovarian subovate subovated suboverseer subovoid suboxid suboxidation suboxide suboxides subpackage subpagoda subpallial subpalmate subpalmated subpanation subpanations subpanel subpanels subpar subparagraph subparagraphs subparallel subparalytic subparameter subparameters subparietal subparliament subpart subparties subpartition subpartitioned subpartitionment subpartnership subparts subparty subpass subpassage subpastor subpastorship subpatellar subpatron subpatronal subpatroness subpattern subpavement subpectinate subpectinated subpectination subpectoral subpeduncle subpeduncled subpeduncular subpedunculate subpedunculated subpellucid subpellucidity subpellucidly subpellucidness subpeltate subpeltated subpeltately subpentagonal subpentangular subpericardiac subpericardial subpericranial subperiod subperiods subperiosteal subperiosteally subperitoneal subperitoneally subpermanent subpermanently subperpendicular subpetiolar subpetiolate subpetiolated subpetrosal subpharyngal subpharyngeal subpharyngeally subphase subphases subphosphate subphratries subphratry subphrenic subphyla subphylar subphylla subphylum subpial subpilose subpilosity subpimp subpiston subplacenta subplacentae subplacental subplacentas subplant subplantigrade subplat subplate subpleural subplexal subplinth subplot subplots subplow subpodophyllous subpoena subpoenaed subpoenaing subpoenal subpoenas subpolar subpolygonal subpolygonally subpool subpools subpopular subpopulation subpopulations subporphyritic subport subpost subpostmaster subpostmasters subpostmastership subpostscript subpotencies subpotency subpotent subpreceptor subpreceptoral subpreceptorate subpreceptorial subpredicate subpredication subpredicative subprefect subprefectorial subprefects subprefecture subprefectures subprehensile subprehensility subpreputial subpress subprimary subprimate subprimates subprincipal subprincipals subprior subprioress subprioresses subpriors subpriorship subproblem subproblems subprocess subprocesses subproctor subproctorial subproctorship subproduct subproducts subprofessional subprofessionally subprofessionals subprofessor subprofessorate subprofessoriate subprofessorship subprofitable subprofitableness subprofitably subprogram subprograms subproject subprojects subproletariat subproletariats subproof subproofs subproportional subproportionally subprostatic subprotector subprotectorship subprovince subprovinces subprovincial subpubescent subpubic subpulmonary subpulveriser subpulverizer subpunch subpunctuation subpurchaser subpurlin subputation subpyramidal subpyramidic subpyramidical subpyriform subquadrangular subquadrate subqualities subquality subquarter subquarterly subquestion subqueues subquinquefid subquintuple subrace subraces subradial subradiance subradiancy subradiate subradiative subradical subradicalness subradicness subradius subradular subrail subrailway subrameal subramose subramous subrange subranges subrational subreader subreason subrebellion subrectal subrectangular subrector subrectories subrectory subreference subreferences subregent subregion subregional subregions subregular subregularity subreguli subregulus subrelation subreligion subreniform subrent subrents subrepand subrepent subreport subreptary subreption subreptions subreptitious subreptitiously subreptive subreputable subreputably subresin subresults subretinal subretractile subrhombic subrhombical subrhomboid subrhomboidal subrictal subrident subridently subrigid subrigidity subrigidly subrigidness subring subrings subrision subrisive subrisory subrogate subrogated subrogates subrogating subrogation subrogations subrogee subrogor subroot subrostral subrotund subrotundity subrotundly subrotundness subround subroutine subroutines subroutining subrule subruler subrules subs subsacral subsale subsales subsaline subsalinity subsalt subsample subsampled subsamples subsampling subsartorial subsatellite subsatellites subsatiric subsatirical subsatirically subsatiricalness subsaturated subsaturation subsaturations subscale subscales subscapular subscapularis subscapulars subscapulary subschedule subschedules subschema subschemas subschemata subscheme subschool subscience subsciences subscleral subsclerotic subscribable subscribe subscribed subscriber subscribers subscribership subscribes subscribing subscribings subscript subscripted subscripting subscription subscriptionist subscriptions subscriptive subscriptively subscripts subscripture subscrive subscriver subsea subsecive subsecretarial subsecretaries subsecretary subsecretaryship subsect subsection subsections subsector subsectors subsects subsecurities subsecurity subsecute subsecutive subsegment subsegments subseizure subseizures subsella subsellia subsellium subsemifusa subsemitone subsensation subsense subsenses subsensible subsensual subsensually subsensuous subsensuously subsensuousness subsentence subsentences subsept subseptate subseptuple subsequence subsequences subsequency subsequent subsequential subsequentially subsequently subsequentness subsequents subsere subseres subseries subserosa subserous subserrate subserrated subserve subserved subserves subserviate subservience subserviences subserviencies subserviency subservient subserviently subservientness subservients subserving subsesqui subsessile subset subsets subsetting subsewer subsextuple subshaft subshafts subshell subshells subsheriff subshire subshrub subshrubby subshrubs subsibilance subsibilancy subsibilant subsibilantly subsicive subside subsided subsidence subsidences subsidencies subsidency subsident subsider subsiders subsides subsidiarie subsidiaries subsidiarily subsidiariness subsidiarinesses subsidiarities subsidiarity subsidiary subsidies subsiding subsidisable subsidisation subsidisations subsidise subsidised subsidiser subsidisers subsidises subsidising subsidist subsidium subsidizable subsidization subsidizations subsidize subsidized subsidizer subsidizers subsidizes subsidizing subsidy subsign subsilicate subsilicic subsill subsimian subsimilation subsimious subsimple subsinuous subsist subsisted subsistence subsistences subsistency subsistent subsistential subsister subsisters subsisting subsistingly subsists subsite subsites subsizar subsizars subsizarship subskill subskills subslot subslots subsmile subsneer subsocial subsocially subsocieties subsociety subsoil subsoiled subsoiler subsoilers subsoiling subsoilings subsoils subsolar subsolid subsong subsongs subsonic subsonically subsonics subsort subsorter subsovereign subspace subspaces subspatulate subspecialise subspecialises subspecialist subspecialists subspecialities subspeciality subspecialization subspecializations subspecialize subspecialized subspecializes subspecializing subspecialties subspecialty subspecies subspecific subspecifically subsphenoid subsphenoidal subsphere subspheric subspherical subspherically subspinose subspinous subspiral subspirally subsplenial subspontaneous subspontaneously subspontaneousness subsquadron subssellia subst substage substages substalagmite substalagmitic substance substanced substanceless substances substanch substandard substandardise substandardization substandardize substandardized substandardizing substanially substant substantia substantiability substantiable substantiae substantial substantialia substantialise substantialised substantialises substantialising substantialism substantialisms substantialist substantialists substantialities substantiality substantialization substantialize substantialized substantializes substantializing substantially substantiallying substantialness substantialnesses substantials substantiatable substantiate substantiated substantiates substantiating substantiation substantiations substantiative substantiator substantiators substantify substantious substantival substantivally substantive substantively substantiveness substantivenesses substantives substantivise substantivised substantivises substantivising substantivities substantivity substantivization substantivizations substantivize substantivized substantivizes substantivizing substantize substate substates substation substations substellar substernal substile substituent substituents substitutabilities substitutability substitutable substitute substituted substituter substitutes substituting substitutingly substitution substitutional substitutionally substitutionary substitutions substitutive substitutively substitutivities substitutivity substock substore substoreroom substories substory substract substracted substracting substraction substractions substractor substractors substracts substrat substrata substratal substrate substrates substrati substrative substrator substratose substratosphere substratospheres substratospheric substratum substratums substream substriate substriated substring substrings substrstrata substruct substructed substructing substruction substructional substructions substructs substructural substructure substructured substructures substylar substyle substyles subsulci subsulcus subsulfate subsulfid subsulfide subsulphate subsulphid subsulphide subsult subsultive subsultorily subsultorious subsultory subsultorysubsultus subsultus subsultuses subsumable subsume subsumed subsumes subsuming subsumption subsumptions subsumptive subsuperficial subsuperficially subsuperficialness subsureties subsurety subsurface subsurfaces subsyndicate subsyndication subsynod subsynodal subsynodic subsynodical subsynodically subsynovial subsystem subsystems subtack subtacks subtacksman subtacksmen subtangent subtangents subtarget subtarsal subtartarean subtask subtasking subtasks subtaxa subtaxer subtaxon subtaxons subtectacle subtectal subteen subteener subteens subtegminal subtegulaneous subtegumental subtegumentary subtemperate subtemporal subtenancies subtenancy subtenant subtenants subtend subtended subtending subtends subtense subtenses subtentacular subtenure subtenures subtepid subtepidity subtepidly subtepidness subteraqueous subterbrutish subtercelestial subterconscious subtercutaneous subterete subterethereal subterfluent subterfluous subterfuge subterfuges subterhuman subterjacent subtermarine subterminal subterminally subternatural subterpose subterposition subterpositions subterrain subterrains subterrane subterraneal subterranean subterraneanise subterraneanize subterraneanized subterraneanizing subterraneanly subterraneans subterraneity subterraneous subterraneously subterraneousness subterranes subterranity subterrany subterraqueous subterrene subterrenes subterrestrial subterrestrials subterritorial subterritories subterritory subtersensual subtersensuous subtersuperlative subtersurface subtertian subtest subtests subtetanic subtetanical subtext subtexts subtextual subthalamic subthalamus subtheme subthemes subtherapeutic subthoracal subthoracic subthreshold subthrill subtidal subtil subtile subtilely subtileness subtilenesses subtiler subtilest subtiliate subtiliation subtilin subtilins subtilis subtilisation subtilisations subtilise subtilised subtiliser subtilises subtilisin subtilising subtilisins subtilism subtilist subtilists subtilities subtility subtilization subtilizations subtilize subtilized subtilizer subtilizes subtilizing subtill subtillage subtilly subtilties subtilty subtitle subtitled subtitles subtitling subtitular subtle subtlely subtleness subtlenesses subtler subtlest subtleties subtlety subtlist subtlists subtly subtone subtones subtonic subtonics subtopia subtopian subtopias subtopic subtopics subtorrid subtotal subtotaled subtotaling subtotalled subtotalling subtotally subtotals subtotem subtotemic subtower subtract subtracted subtracter subtracters subtracting subtraction subtractions subtractive subtractively subtractor subtractors subtracts subtrahend subtrahends subtranslucence subtranslucency subtranslucent subtransparent subtransparently subtransparentness subtransversal subtransversally subtransverse subtransversely subtrapezoid subtrapezoidal subtray subtread subtreasurer subtreasurers subtreasurership subtreasuries subtreasury subtree subtrees subtrench subtrend subtrends subtriangular subtriangularity subtriangulate subtribal subtribe subtribes subtribual subtrifid subtrigonal subtrihedral subtriplicate subtriplicated subtriplication subtriquetrous subtrist subtrochanteric subtrochlear subtrochleariform subtropic subtropical subtropically subtropics subtrousers subtrude subtruded subtrudes subtruding subtruncate subtruncated subtruncation subtrunk subtuberant subtubiform subtunic subtunics subtunnel subturbary subturriculate subturriculated subtutor subtutorship subtwined subtympanitic subtype subtypes subtypical subucula subuculas subularia subulate subulated subulicorn subuliform subultimate subumbellar subumbellate subumbellated subumbelliferous subumbilical subumbonal subumbonate subumbral subumbrella subumbrellar subumbrellas subuncinal subuncinate subuncinated subunequal subunequally subunequalness subungual subunguial subungulate subungulates subunit subunits subuniversal subuniverse suburb suburban suburbandom suburbanhood suburbanisation suburbanisations suburbanise suburbanised suburbanises suburbanising suburbanism suburbanisms suburbanite suburbanites suburbanities suburbanity suburbanization suburbanizations suburbanize suburbanized suburbanizes suburbanizing suburbanly suburbans suburbed suburbia suburbian suburbias suburbican suburbicarian suburbicary suburbs suburethral subursine subutopian subvaginal subvaluation subvarietal subvarieties subvariety subvassal subvassalage subvassals subvein subvendee subvene subvened subvenes subvening subvenize subvent subvention subventionary subventioned subventionize subventions subventitious subventive subventral subventrally subventricose subventricous subventricular subvermiform subversal subversals subverse subversed subverses subversing subversion subversionaries subversionary subversions subversive subversively subversiveness subversivenesses subversives subversivism subverst subvert subvertebral subvertebrate subverted subverter subverters subvertible subvertical subvertically subverticalness subverticilate subverticilated subverticillate subverting subverts subvesicular subvestment subvicar subvicars subvicarship subvii subvillain subviral subvirate subvirile subvirus subviruses subvisible subvisual subvitalisation subvitalised subvitalization subvitalized subvitreous subvitreously subvitreousness subvocal subvocalization subvocalizations subvocalize subvocalized subvocalizes subvocalizing subvocally subvola subwar subwarden subwardens subwardenship subwater subway subwayed subwaying subways subwealthy subweight subwink subwoofer subwoofers subworker subworkman subworkmen subworld subworlds subwriter subwriters subzero subzonal subzonary subzone subzones subzygomatic succade succades succah succahs succedanea succedaneous succedaneum succedaneums succedent succeed succeedable succeeded succeeder succeeders succeeding succeedingly succeeds succent succentor succentors succenturiate succenturiation succes succesful succesive success successantly successes successful successfully successfulness successfulnesses succession successional successionally successionist successionists successionless successions successive successively successiveness successivenesses successivity successless successlessly successlessness successlessnesses successor successoral successors successorship successorships successory succi succiferous succin succinamate succinamic succinamide succinanil succinate succinates succinct succincter succinctest succinctly succinctness succinctnesses succinctoria succinctories succinctorium succinctoriums succinctory succincture succinea succinic succiniferous succinimid succinimide succinite succinites succinol succinoresinol succinosulphuric succinous succintorium succinum succinyl succinylcholine succinylcholines succinyls succinylsulfathiazole succinylsulphathiazole succise succivorous succor succorable succored succorer succorers succorful succories succoring succorless succorrhea succorrhoea succors succory succos succose succot succotash succotashes succoth succour succourable succoured succourer succourers succourful succouring succourless succours succous succub succuba succubae succubas succube succubi succubine succubous succubus succubuses succudry succula succulence succulences succulencies succulency succulent succulently succulentness succulents succulous succumb succumbed succumbence succumbency succumbent succumber succumbers succumbing succumbs succursal succursale succursales succursals succus succuss succussation succussations succussatory succussed succusses succussing succussion succussions succussive succès such suchlike suchness suchnesses suchwise suci sucivilized suck suckable suckabob suckage suckauhock sucked sucken suckener suckeners suckens suckeny sucker suckered suckerel suckerfish suckerfishes suckering suckerlike suckers sucket suckets suckfish suckfishes suckhole sucking suckings suckle sucklebush suckled suckler sucklers suckles suckless suckling sucklings sucks suckstone suclat sucralfate sucralfates sucramin sucramine sucrase sucrases sucrate sucre sucres sucrier sucriers sucroacid sucrose sucroses suction suctional suctioned suctioning suctions suctorial suctorian suctorians suctorious sucupira sucuri sucuriu sucuruju sucurujus sucurujú sucurujús sucury sud sudadero sudamen sudamina sudaminal sudan sudanese sudanic sudaria sudaries sudarium sudariums sudary sudate sudated sudates sudating sudation sudations sudatoria sudatories sudatorium sudatoriums sudatory sudburite sudd sudden suddenly suddenness suddennesses suddens suddenties suddenty sudder sudders suddle sudds suddy sude sudes sudiform sudor sudoral sudoresis sudoric sudoriferous sudoriferousness sudorific sudorifics sudoriparous sudorous sudors sudra suds sudsed sudser sudsers sudses sudsier sudsiest sudsing sudsless sudsman sudsmen sudsy sue sueabilities sueability sueable sued suede sueded suedes suedette suedettes suedine sueding suegee suent suer suers suerte sues suet suetier suetiest suets suettier suettiest suetty suety sueve suevian suey suez suf suff suffari suffaris suffect suffection suffer sufferable sufferableness sufferablenesses sufferably sufferance sufferances sufferant suffered sufferer sufferers suffering sufferingly sufferings suffers suffete suffetes suffice sufficeable sufficed sufficer sufficers suffices sufficience sufficiences sufficiencies sufficiency sufficient sufficiently sufficientness sufficients sufficing sufficingly sufficingness sufficingnesses suffiction suffigance suffigances suffisance suffisances suffisant suffix suffixal suffixation suffixations suffixed suffixer suffixes suffixing suffixion suffixions suffixment sufflaminate sufflamination sufflate sufflated sufflates sufflating sufflation sufflations sufflue suffocate suffocated suffocates suffocating suffocatingly suffocatings suffocation suffocations suffocative suffolk suffragan suffraganal suffraganate suffragancy suffraganeous suffragans suffraganship suffraganships suffragant suffragate suffragatory suffrage suffrages suffragette suffragettes suffragettism suffragettisms suffragial suffragism suffragisms suffragist suffragistic suffragistically suffragists suffragitis suffrago suffrain suffront suffructescent suffrutescent suffrutex suffrutices suffruticose suffruticous suffruticulose suffumigate suffumigated suffumigates suffumigating suffumigation suffumigations suffusable suffuse suffused suffusedly suffuses suffusing suffusion suffusions suffusive sufi sufiism sugamo sugan sugann sugar sugarallie sugarallies sugarally sugarberries sugarberry sugarbird sugarbirds sugarbush sugarbushes sugarcane sugarcanes sugarcoat sugarcoated sugarcoating sugarcoats sugared sugarelly sugarer sugarers sugargerry sugarhouse sugarhouses sugarier sugaries sugariest sugariness sugarinesses sugaring sugarings sugarless sugarlike sugarloaf sugarloaves sugarplate sugarplum sugarplums sugars sugarsop sugarsweet sugarworks sugary sugat sugent sugescent sugg suggan suggest suggesta suggestable suggested suggestedness suggester suggesters suggestibilities suggestibility suggestible suggestibleness suggestiblenesses suggestibly suggesting suggestingly suggestion suggestionability suggestionable suggestionisation suggestionisations suggestionise suggestionised suggestionises suggestionising suggestionism suggestionisms suggestionist suggestionists suggestionization suggestionizations suggestionize suggestionized suggestionizes suggestionizing suggestions suggestive suggestively suggestiveness suggestivenesses suggestivity suggestment suggestor suggestress suggests suggestum suggil suggillate suggillation sugging suggings sugh sughed sughing sughs sugi sugillate sugis sugsloot suguaro suhuaro sui suicidal suicidalism suicidally suicidalwise suicide suicided suicides suicidical suiciding suicidism suicidist suicidologies suicidologist suicidologists suicidology suicism suid suidae suidian suidians suids suiform suikerbosch suiline suilline suillus suimate suine suing suingly suings suint suints suiogothic suisimilar suisse suist suit suitabilities suitability suitable suitableness suitablenesses suitably suitcase suitcases suite suited suitedness suiter suiters suites suithold suiting suitings suitlike suitly suitor suitored suitoress suitoring suitors suitorship suitress suitresses suits suity suivante suivantes suivez sujee sujeed sujeeing sujees suji suk sukh sukhs sukiyaki sukiyakis sukkah sukkahs sukkenye sukkos sukkot sukkoth suks suksdorfia sukur sula sulamyd sulawesi sulbasutra sulcal sulcalise sulcalised sulcalises sulcalising sulcalization sulcalize sulcalized sulcalizes sulcalizing sulcar sulcate sulcated sulcation sulcations sulcatoareolate sulcatocostate sulcatorimose sulci sulciform sulcomarginal sulcular sulculate sulculus sulcus suld suldan suldans sulea sulfa sulfacetamide sulfacetamides sulfacid sulfadiazine sulfadiazines sulfadimethoxine sulfadoxine sulfadoxines sulfaguanidine sulfamate sulfamerazin sulfamerazine sulfamethazine sulfamethoxazole sulfamethoxazoles sulfamethylthiazole sulfamezathine sulfamic sulfamidate sulfamide sulfamidic sulfamine sulfaminic sulfamyl sulfanilamide sulfanilamides sulfanilic sulfanilylguanidine sulfantimonide sulfapyrazine sulfapyridine sulfaquinoxaline sulfarsenide sulfarsenite sulfarseniuret sulfarsphenamine sulfas sulfatase sulfatases sulfate sulfated sulfates sulfathiazole sulfathiazoles sulfatic sulfating sulfation sulfations sulfatise sulfatization sulfatize sulfatized sulfatizing sulfato sulfazide sulfhydrate sulfhydric sulfhydryl sulfhydryls sulfid sulfide sulfides sulfids sulfinate sulfindigotate sulfindigotic sulfindylic sulfine sulfinic sulfinide sulfinpyrazone sulfinpyrazones sulfinyl sulfinyls sulfion sulfionide sulfisoxazole sulfite sulfites sulfitic sulfito sulfo sulfoacid sulfoamide sulfobenzide sulfobenzoate sulfobenzoic sulfobismuthite sulfoborite sulfocarbamide sulfocarbimide sulfocarbolate sulfocarbolic sulfochloride sulfocyan sulfocyanide sulfofication sulfogermanate sulfohalite sulfohydrate sulfoindigotate sulfoleic sulfolysis sulfomethylic sulfonal sulfonals sulfonamic sulfonamide sulfonamides sulfonate sulfonated sulfonates sulfonating sulfonation sulfonations sulfonator sulfone sulfonephthalein sulfones sulfonethylmethane sulfonic sulfonium sulfoniums sulfonmethane sulfonmethanes sulfonyl sulfonyls sulfonylurea sulfonylureas sulfophthalein sulfopurpurate sulfopurpuric sulforicinate sulforicinic sulforicinoleate sulforicinoleic sulfoselenide sulfosilicide sulfostannide sulfotelluride sulfourea sulfovinate sulfovinic sulfowolframic sulfoxide sulfoxides sulfoxism sulfoxylate sulfoxylic sulfur sulfurage sulfuran sulfurate sulfurated sulfurates sulfurating sulfuration sulfurations sulfurator sulfurators sulfurea sulfured sulfureous sulfureously sulfureousness sulfureousnesses sulfuret sulfureted sulfureting sulfurets sulfurette sulfuretted sulfuretting sulfuric sulfuring sulfurization sulfurizations sulfurize sulfurized sulfurizes sulfurizing sulfurosyl sulfurous sulfurously sulfurousness sulfurousnesses sulfurs sulfury sulfuryl sulfuryls sulidae sulindac suling sulk sulka sulked sulker sulkers sulkier sulkies sulkiest sulkily sulkiness sulkinesses sulking sulks sulky sulkylike sull sulla sullage sullages sullen sullener sullenest sullenhearted sullenly sullenness sullennesses sullens sulliable sulliage sullied sulliedness sullies sullivan sullow sully sullying sulpha sulphacetamide sulphacetamides sulphacid sulphadiazine sulphadiazines sulphaguanidine sulphaldehyde sulphamate sulphamerazine sulphamethoxazole sulphamethoxazoles sulphamic sulphamid sulphamidate sulphamide sulphamidic sulphamin sulphamine sulphaminic sulphamino sulphammonium sulphamyl sulphanilamide sulphanilamides sulphanilate sulphanilic sulphantimonate sulphantimonial sulphantimonic sulphantimonide sulphantimonious sulphantimonite sulphapyrazine sulphapyridine sulpharsenate sulpharseniate sulpharsenic sulpharsenid sulpharsenide sulpharsenious sulpharsenite sulpharseniuret sulpharsphenamine sulphas sulphatase sulphatases sulphate sulphates sulphathiazole sulphathiazoles sulphatic sulphation sulphations sulphatization sulphatize sulphatized sulphatizing sulphato sulphatoacetic sulphatocarbonic sulphazid sulphazide sulphazotize sulphbismuthite sulphethylate sulphethylic sulphhemoglobin sulphhydryl sulphhydryls sulphichthyolate sulphid sulphidation sulphide sulphides sulphidic sulphidize sulphids sulphimide sulphin sulphinate sulphindigotate sulphindigotic sulphine sulphinic sulphinide sulphinpyrazone sulphinpyrazones sulphinyl sulphinyls sulphion sulphisoxazole sulphitation sulphite sulphites sulphitic sulphito sulphmethemoglobin sulpho sulphoacetic sulphoamid sulphoamide sulphoantimonate sulphoantimonic sulphoantimonious sulphoantimonite sulphoarsenic sulphoarsenious sulphoarsenite sulphoazotize sulphobenzid sulphobenzide sulphobenzoate sulphobenzoic sulphobismuthite sulphoborite sulphobutyric sulphocarbamic sulphocarbamide sulphocarbanilide sulphocarbimide sulphocarbolate sulphocarbolic sulphocarbonate sulphocarbonic sulphochloride sulphochromic sulphocinnamic sulphocyan sulphocyanate sulphocyanic sulphocyanide sulphocyanogen sulphodichloramine sulphofication sulphofy sulphogallic sulphogel sulphogermanate sulphogermanic sulphohalite sulphohaloid sulphohydrate sulphoichthyolate sulphoichthyolic sulphoindigotate sulphoindigotic sulpholeate sulpholeic sulpholipin sulpholysis sulphonal sulphonalism sulphonamic sulphonamid sulphonamide sulphonamides sulphonamido sulphonamine sulphonaphthoic sulphonate sulphonated sulphonates sulphonating sulphonation sulphonations sulphonator sulphoncyanine sulphone sulphonephthalein sulphones sulphonethylmethane sulphonic sulphonium sulphoniums sulphonmethane sulphonphthalein sulphonyl sulphonylurea sulphonylureas sulphoparaldehyde sulphophenyl sulphophosphate sulphophosphite sulphophosphoric sulphophosphorous sulphophthalein sulphophthalic sulphopropionic sulphoproteid sulphopupuric sulphopurpurate sulphopurpuric sulphoricinate sulphoricinic sulphoricinoleate sulphoricinoleic sulphosalicylic sulphoselenide sulphoselenium sulphosilicide sulphosol sulphostannate sulphostannic sulphostannide sulphostannite sulphostannous sulphosuccinic sulphosulphurous sulphotannic sulphotelluride sulphoterephthalic sulphothionyl sulphotoluic sulphotungstate sulphotungstic sulphouinic sulphourea sulphovanadate sulphovinate sulphovinic sulphowolframic sulphoxid sulphoxide sulphoxism sulphoxylate sulphoxylic sulphoxyphosphate sulphozincate sulphur sulphurage sulphuran sulphurate sulphurated sulphurates sulphurating sulphuration sulphurations sulphurator sulphurators sulphurea sulphurean sulphured sulphureity sulphureonitrous sulphureosaline sulphureosuffused sulphureous sulphureously sulphureousness sulphureousnesses sulphureovirescent sulphuret sulphureted sulphureting sulphurets sulphurette sulphuretted sulphuretting sulphuric sulphuriferous sulphuring sulphurious sulphurisation sulphurisations sulphurise sulphurised sulphurises sulphurising sulphurity sulphurization sulphurizations sulphurize sulphurized sulphurizes sulphurizing sulphurless sulphurlike sulphurosyl sulphurou sulphurous sulphurously sulphurousness sulphurproof sulphurs sulphurweed sulphurwort sulphurworts sulphury sulphuryl sulphydrate sulphydric sulphydryl sulpician sultam sultan sultana sultanas sultanaship sultanate sultanated sultanates sultanating sultane sultanesque sultaness sultanesses sultanian sultanic sultanin sultanise sultanism sultanist sultanize sultanlike sultanry sultans sultanship sultanships sultany sultone sultrier sultriest sultrily sultriness sultrinesses sultry sulu sulung sulus sulvanite sulvasutra sum sumac sumach sumaches sumachs sumacs sumage sumatra sumatran sumatrans sumatras sumbal sumbul sumbulic sumen sumer sumerian sumerology sumi sumless sumlessness summa summabilities summability summable summae summage summand summands summar summaries summarily summariness summarinesses summarisable summarisation summarisations summarise summarised summariser summarisers summarises summarising summarist summarists summarizable summarization summarizations summarize summarized summarizer summarizers summarizes summarizing summary summas summat summate summated summates summating summation summational summations summative summatory summats summed summer summerbird summercastle summercater summered summerer summergame summerhead summerhouse summerhouses summerier summeriest summeriness summering summerings summerise summerish summerite summerize summerland summerlay summerless summerlike summerliness summerling summerlong summerly summerproof summerroom summers summersault summersaulted summersaulting summersaults summerset summersets summersetted summersetting summertide summertides summertime summertimes summertree summerward summerweight summerwood summerwoods summery summing summings summist summists summit summital summited summiteer summiteers summiting summitless summitries summitry summits summity summon summonable summoned summoner summoners summoning summoningly summonings summons summonsed summonses summonsing summula summulae summulist summut sumner sumo sumoist sumoists sumos sumotori sumotoris sump sumpage sumper sumph sumphish sumphishly sumphishness sumphishnesses sumphs sumphy sumpit sumpitan sumpitans sumpits sumple sumpman sumps sumpsimus sumpsimuses sumpt sumpter sumpters sumption sumptious sumptuary sumptuosities sumptuosity sumptuous sumptuously sumptuousness sumptuousnesses sumpture sumpweed sumpweeds sums sun sunback sunbake sunbaked sunbakes sunbaking sunbath sunbathe sunbathed sunbather sunbathers sunbathes sunbathing sunbathings sunbaths sunbeam sunbeamed sunbeams sunbeamy sunbeat sunbeaten sunbed sunbeds sunbelt sunbelts sunberries sunberry sunbird sunbirds sunblind sunblinds sunblink sunblock sunblocks sunbonnet sunbonneted sunbonnets sunbow sunbows sunbreak sunbreaker sunbright sunburn sunburned sunburnedness sunburning sunburnproof sunburns sunburnt sunburntness sunburst sunbursts suncherchor sunchoke sunchokes suncke suncream suncup sundacarpus sundae sundaes sundanese sundang sundari sundaris sunday sundays sundeck sundecks sundek sunder sunderable sunderance sunderances sundered sunderer sunderers sundering sunderings sunderly sunderment sunderments sunders sunderwise sundew sundews sundial sundials sundik sundog sundogs sundown sundowned sundowner sundowners sundowning sundowns sundra sundras sundrenched sundress sundresses sundri sundried sundries sundriesman sundrily sundriness sundris sundrops sundry sundryman sundrymen sune sunfall sunfast sunfish sunfisher sunfishery sunfishes sunflower sunflowers sunfoil sung sungar sungars sungazer sungazers sungha sunglade sunglass sunglasses sunglo sunglow sunglows sungod sungods sungrebe sunhat sunhats suni sunis sunk sunken sunket sunkets sunkie sunkies sunkland sunks sunlamp sunlamps sunland sunlands sunless sunlessly sunlessness sunlessnesses sunlet sunlight sunlighted sunlights sunlike sunlit sunlounger sunloungers sunn sunna sunnah sunnahs sunnas sunned sunni sunnier sunnies sunniest sunnily sunniness sunninesses sunning sunnism sunnite sunns sunnud sunny sunnyasee sunnyasse sunnyhearted sunnyheartedness sunporch sunporches sunproof sunquake sunray sunrays sunrise sunrises sunrising sunrisings sunroof sunroofs sunroom sunrooms sunrose suns sunscald sunscalds sunscorch sunscreen sunscreening sunscreens sunseeker sunseekers sunset sunsets sunsetting sunsettings sunsetty sunshade sunshades sunshine sunshineless sunshines sunshining sunshiny sunsmit sunsmitten sunspace sunspaces sunspot sunspots sunspotses sunspotted sunspottedness sunspottery sunspotty sunsquall sunstar sunstars sunstay sunstead sunstone sunstones sunstricken sunstroke sunstrokes sunstruck sunsuit sunsuits sunt suntan suntanned suntanning suntans suntrap suntraps sunup sunups sunward sunwards sunway sunways sunweed sunwise sunworshipper sunworshippers sunyata sunyie suomi suovetaurilia sup supa supari suparis supawn supawns supe supellectile supellex super superabduction superabhor superabilities superability superable superableness superablenesses superably superabnormal superabnormally superabominable superabominableness superabominably superabomination superabound superabounded superabounding superabounds superabsorbent superabsorbents superabstract superabstractly superabstractness superabsurd superabsurdity superabsurdly superabsurdness superabundance superabundances superabundancy superabundant superabundantly superaccession superaccessory superaccommodating superaccomplished superaccrue superaccrued superaccruing superaccumulate superaccumulated superaccumulating superaccumulation superaccurate superaccurately superaccurateness superacetate superachievement superachiever superachievers superacid superacidity superacidulated superacknowledgement superacknowledgment superacquisition superacromial superactivate superactivated superactivating superactive superactively superactiveness superactivities superactivity superacute superacutely superacuteness superadaptable superadaptableness superadaptably superadd superadded superadding superaddition superadditional superadditions superadds superadequate superadequately superadequateness superadjacent superadjacently superadministration superadministrator superadministrators superadmirable superadmirableness superadmirably superadmiration superadorn superadornment superaerial superaerially superaerodynamics superaesthetical superaesthetically superaffiliation superaffiuence superaffluence superaffluent superaffluently superaffusion superagencies superagency superagent superagents superaggravation superagitation superagrarian superalbal superalbuminosis superalimentation superalkaline superalkalinity superallowance superalloy superalloys superaltar superaltars superaltern superalterns superambition superambitious superambitiously superambitiousness superambulacral superanal superangelic superangelical superangelically superanimal superanimality superannate superannated superannuable superannuate superannuated superannuates superannuating superannuation superannuations superannuitant superannuities superannuity superapologies superapology superappreciation superaqual superaqueous superarbiter superarbitrary superarctic superarduous superarduously superarduousness superarrogance superarrogant superarrogantly superarseniate superartificial superartificiality superartificially superaspiration superassertion superassociate superassume superassumed superassuming superassumption superastonish superastonishment superate superated superates superathlete superathletes superating superation superations superattachment superattainable superattainableness superattainably superattendant superattraction superattractive superattractively superattractiveness superauditor superaural superaverage superaverageness superaveraness superavit superaward superaxillary superazotation superb superbad superbank superbanks superbazaar superbazooka superbelief superbelievable superbelievableness superbelievably superbeloved superbenefit superbenevolence superbenevolent superbenevolently superbenign superbenignly superber superbest superbia superbias superbillionaire superbillionaires superbious superbitch superbitches superbities superbity superblessed superblessedness superblock superblocks superblunder superbly superbness superbnesses superboard superboards superbold superboldly superboldness superbomb superbomber superbombers superbombs superborrow superbrain superbrains superbrat superbrats superbrave superbravely superbraveness superbright superbrute superbug superbugs superbuild superbungalow superbureaucrat superbureaucrats superbusily superbusy supercabinet supercabinets supercalender supercalendered supercalendering supercalenders supercalifragilistic supercalifragilisticexpialidocious supercallosal supercandid supercandidly supercandidness supercanine supercanonical supercanonisation supercanonization supercanopies supercanopy supercapabilities supercapability supercapable supercapableness supercapably supercapital supercaption supercar supercarbonate supercarbonisation supercarbonise supercarbonization supercarbonize supercarbureted supercargo supercargoes supercargos supercargoship supercargoships supercarpal supercarrier supercarriers supercars supercatastrophe supercatastrophic supercatholic supercatholically supercausal supercaution supercautious supercavitation supercede superceded supercedes superceding supercelestial supercelestially supercensure supercenter supercenters supercentral supercentrifuge supercerebellar supercerebral supercerebrally superceremonious superceremoniously superceremoniousness supercharge supercharged supercharger superchargers supercharges supercharging superchemical superchemically supercherie supercheries superchery superchic superchivalrous superchivalrously superchivalrousness superchurch superchurches supercicilia supercilia superciliaries superciliary superciliosity supercilious superciliously superciliousness superciliousnesses supercilium supercities supercity supercivil supercivilisation supercivilisations supercivilised supercivilization supercivilizations supercivilized supercivilly superclaim superclass superclasses superclassified superclean supercloth superclub superclubs supercluster superclusters supercoil supercoiled supercoiling supercoils supercoincidence supercoincident supercoincidently supercold supercollider supercolliders supercolossal supercolossally supercolumnar supercolumniation supercolumniations supercombination supercombing supercomfortable supercommendation supercommentaries supercommentary supercommentator supercommercial supercommercially supercommercialness supercompetition supercompetitive supercomplete supercomplex supercomplexities supercomplexity supercomprehension supercompression supercomputer supercomputers supercomputing superconception superconduct superconducted superconducting superconduction superconductions superconductive superconductivities superconductivity superconductor superconductors superconducts superconfidence superconfidences superconfident superconfidently superconfirmation superconformable superconformableness superconformably superconformist superconformity superconfused superconfusion supercongested supercongestion superconglomerate superconglomerates superconscious superconsciousness superconsecrated superconsequence superconsequency superconservative superconservatively superconservativeness superconstitutional superconstitutionally supercontest supercontinent supercontinents supercontribution supercontrol superconvenient supercool supercooled supercooling supercools supercop supercops supercordial supercordially supercordialness supercorporation supercorporations supercow supercredit supercrescence supercrescent supercretaceous supercrime supercriminal supercriminally supercriminals supercritic supercritical supercritically supercriticalness supercrowned supercrust supercube supercultivated superculture supercurious supercuriously supercuriousness supercurrent supercurrents supercute supercycle supercynical supercynically supercynicalness superdainty superdanger superdebt superdeclamatory superdecorated superdecoration superdeficit superdeities superdeity superdejection superdelegate superdelegates superdelicate superdelicately superdelicateness superdeluxe superdemand superdemocratic superdemocratically superdemonic superdemonstration superdense superdensity superdeposit superdesirous superdesirously superdevelopment superdevilish superdevilishly superdevilishness superdevotion superdiabolical superdiabolically superdiabolicalness superdicrotic superdifficult superdifficultly superdiplomacy superdiplomat superdiplomats superdirection superdiscount superdistention superdistribution superdividend superdivine superdivision superdoctor superdominant superdominants superdomineering superdonation superdose superdramatist superdreadnought superdubious superdubiously superdubiousness superduper superduplication superdural superdying superearthly supereconomies supereconomy supered superedification superedify supereducated supereducation supereffective supereffectively supereffectiveness superefficiencies superefficiency superefficient supereffluence supereffluent supereffluently superego superegoist superegoists superegos superelaborate superelaborately superelaborateness superelastic superelastically superelated superelegance superelegancies superelegancy superelegant superelegantly superelementary superelevate superelevated superelevates superelevating superelevation superelevations supereligibility supereligible supereligibleness supereligibly superelite superelites supereloquence supereloquent supereloquently supereminence supereminences supereminency supereminent supereminently superemphasis superemphasise superemphasize superemphasized superemphasizing superempirical superencipher superenciphered superenciphering superencipherment superenciphers superendorse superendorsed superendorsement superendorsing superendow superenergetic superenergetically superenforcement superengrave superengraved superengraving superenrollment superenthusiasm superenthusiasms superenthusiastic superepic superepoch superequivalent supererogant supererogantly supererogate supererogated supererogates supererogating supererogation supererogations supererogative supererogator supererogatorily supererogators supererogatory superespecial superessential superessentially superessive superestablish superestablishment supereternity superether superethical superethically superethicalness superethmoidal superette superettes superevangelical superevangelically superevidence superevident superevidently superexacting superexalt superexaltation superexaltations superexalted superexalting superexalts superexaminer superexceed superexceeding superexcellence superexcellences superexcellency superexcellent superexcellently superexceptional superexceptionally superexcitation superexcited superexcitement superexcrescence superexcrescent superexcrescently superexert superexertion superexiguity superexist superexistent superexpand superexpansion superexpectation superexpenditure superexpensive superexplicit superexplicitly superexport superexpress superexpresses superexpression superexpressive superexpressively superexpressiveness superexquisite superexquisitely superexquisiteness superextend superextension superextol superextoll superextreme superextremely superextremeness superextremities superextremity superfamilies superfamily superfan superfancy superfans superfantastic superfantastically superfarm superfarms superfast superfat superfatted superfecta superfectas superfecundation superfecundations superfecundity superfee superfemale superfeminine superfemininity superfervent superfervently superfetate superfetated superfetates superfetating superfetation superfetations superfete superfeudation superfibrination superfice superficial superficialise superficialised superficialises superficialising superficialism superficialist superficialities superficiality superficialize superficialized superficializes superficializing superficially superficialness superficialnesses superficials superficiaries superficiary superficie superficies superfidel superfinance superfinanced superfinancing superfine superfineness superfinenesses superfinical superfinish superfinite superfinitely superfiniteness superfirm superfirms superfissure superfit superfitted superfitting superfix superfixes superflack superflacks superfleet superflexion superfluent superfluid superfluidities superfluidity superfluids superfluitance superfluities superfluity superfluous superfluously superfluousness superfluousnesses superflux superfluxes superfoetation superfoetations superfoliaceous superfoliation superfollies superfolly superformal superformally superformalness superformation superformidable superformidableness superformidably superfortunate superfortunately superfriendly superfrontal superfrontals superfructified superfulfill superfulfillment superfunction superfunctional superfund superfunds superfuse superfused superfuses superfusibility superfusible superfusing superfusion superfusions supergaiety supergalactic supergalaxies supergalaxy supergallant supergallantly supergallantness supergene supergeneric supergenerically supergenerosity supergenerous supergenerously supergenes supergenual supergiant supergiants superglacial superglorious supergloriously supergloriousness superglottal superglottally superglottic superglue superglued superglues supergluing supergoddess supergood supergoodness supergovern supergovernment supergovernments supergraduate supergrant supergraphics supergrass supergrasses supergratification supergratified supergratify supergratifying supergravitate supergravitated supergravitating supergravitation supergravities supergravity supergroup supergroups supergrowth supergrowths superguarantee superguaranteed superguaranteeing supergun superguns supergyre superhandsome superhard superharden superhardened superhardening superhardens superheartily superheartiness superhearty superheat superheated superheatedness superheater superheaters superheating superheats superheavies superheavy superheavyweight superheavyweights superhelical superhelices superhelix superhelixes superheresies superheresy superhero superheroes superheroic superheroically superheroine superheroines superheros superhet superheterodyne superheterodynes superhets superhigh superhighway superhighways superhirudine superhistoric superhistorical superhistorically superhit superhits superhive superhives superhot superhuman superhumanise superhumanised superhumanises superhumanising superhumanities superhumanity superhumanize superhumanized superhumanizes superhumanizing superhumanly superhumanness superhumannesses superhumans superhumeral superhumerals superhype superhyped superhypes superhyping superhypocrite superi superial superideal superideally superidealness superignorant superignorantly superillustrate superillustrated superillustrating superillustration superimpend superimpending superimpersonal superimpersonally superimplied superimply superimplying superimportant superimportantly superimposable superimpose superimposed superimposes superimposing superimposition superimpositions superimposure superimpregnated superimpregnation superimprobable superimprobableness superimprobably superimproved superincentive superinclination superinclusive superinclusively superinclusiveness superincomprehensible superincomprehensibleness superincomprehensibly superincrease superincreased superincreasing superincumbence superincumbences superincumbencies superincumbency superincumbent superincumbently superindependence superindependent superindependently superindiction superindictment superindifference superindifferent superindifferently superindignant superindignantly superindividual superindividualism superindividualist superindividually superinduce superinduced superinducement superinducements superinduces superinducing superinduct superinduction superinductions superindue superindulgence superindulgent superindulgently superindustries superindustrious superindustriously superindustriousness superindustry superinenarrable superinfect superinfected superinfecting superinfection superinfections superinfects superinfer superinference superinferred superinferring superinfeudation superinfinite superinfinitely superinfiniteness superinfirmities superinfirmity superinfluence superinfluenced superinfluencing superinformal superinformalities superinformality superinformally superinfuse superinfused superinfusing superinfusion supering superingenious superingeniously superingeniousness superingenuities superingenuity superinitiative superinjection superinjustice superinnocence superinnocent superinnocently superinquisitive superinquisitively superinquisitiveness superinsaniated superinscribe superinscribed superinscribing superinscription superinsist superinsistence superinsistent superinsistently superinsscribed superinsscribing superinstitute superinstitution superinsulated superintellectual superintellectually superintellectuals superintelligence superintelligences superintelligent superintend superintendant superintended superintendence superintendences superintendencies superintendency superintendent superintendential superintendents superintendentship superintendentships superintender superintending superintends superintense superintensely superintenseness superintensities superintensity superintolerable superintolerableness superintolerably superinundation superinvolution superior superioress superioresses superiorities superiority superiorly superiorness superiors superiorship superiorships superirritability superius superjacent superjet superjets superjock superjocks superjoined superjudicial superjudicially superjumbo superjunction superjurisdiction superjustification superknowledge superl superlabial superlaborious superlaboriously superlaboriousness superlactation superlain superlapsarian superlarge superlaryngeal superlaryngeally superlation superlative superlatively superlativeness superlativenesses superlatives superlawyer superlawyers superlay superlenient superleniently superlie superlied superlies superlight superlikelihood superline superliner superliners superload superlobbyist superlobbyists superlocal superlocally superlogical superlogicalities superlogicality superlogically superloo superloos superloyal superloyalist superloyalists superloyally superlucky superluminal superlunar superlunary superlunatical superluxuries superluxurious superluxuriously superluxuriousness superluxury superlying supermacho supermachos supermagnificent supermagnificently supermajorities supermajority supermalate supermale supermales superman supermanhood supermanifest supermanism supermanliness supermanly supermannish supermarginal supermarginally supermarine supermarket supermarkets supermart supermarts supermarvelous supermarvelously supermarvelousness supermasculine supermasculinity supermassive supermaterial supermathematical supermathematically supermax supermaxilla supermaxillary supermechanical supermechanically supermedial supermedially supermedicine supermediocre supermen supermental supermentality supermentally supermetropolitan supermicro supermicros supermilitant supermilitary supermillionaire supermillionaires supermind superminds supermini superminicomputer superminicomputers superminis superminister superministers supermishap supermixture supermodel supermodels supermodern supermodest supermodestly supermoisten supermolecular supermolecule supermolten supermom supermoms supermoral supermorally supermorose supermorosely supermoroseness supermotility supermundane supermunicipal supermuscan supermysteries supermystery supernacula supernacular supernaculum supernaculums supernal supernalize supernally supernatant supernatants supernatation supernation supernational supernationalism supernationalisms supernationalist supernationally supernations supernatural supernaturaldom supernaturalise supernaturalised supernaturalises supernaturalising supernaturalism supernaturalisms supernaturalist supernaturalistic supernaturalists supernaturality supernaturalize supernaturalized supernaturalizes supernaturalizing supernaturally supernaturalness supernaturalnesses supernaturals supernature supernatures supernecessities supernecessity supernegligence supernegligent supernegligently supernormal supernormalities supernormality supernormally supernormalness supernotable supernotableness supernotably supernova supernovae supernovas supernuity supernumeral supernumeraries supernumerariness supernumerary supernumeraryship supernumerous supernumerously supernumerousness supernutrition supernutritions superoanterior superobedience superobedient superobediently superobese superobject superobjection superobjectionable superobjectionably superobligation superobstinate superobstinately superobstinateness superoccipital superoctave superoctaves superocular superocularly superodorsal superoexternal superoffensive superoffensively superoffensiveness superofficious superofficiously superofficiousness superofrontal superointernal superolateral superomedial superoposterior superopposition superoptimal superoptimist superoratorical superoratorically superorbital superordain superorder superorders superordinal superordinary superordinate superordinated superordinates superordinating superordination superordinations superorganic superorganisation superorganise superorganism superorganisms superorganization superorganize superorgasm superorgasms superornament superornamental superornamentally superosculate superoutput superovulate superovulated superovulates superovulating superovulation superovulations superoxalate superoxide superoxides superoxygenate superoxygenated superoxygenating superoxygenation superparamount superparasite superparasitic superparasitism superparasitisms superparliamentary superparticular superpartient superpassage superpatience superpatient superpatiently superpatriot superpatriotic superpatriotically superpatriotism superpatriotisms superpatriots superperfect superperfection superperfectly superperson superpersonal superpersonalism superpersonally superpersons superpetrosal superpetrous superphenomena superphenomenon superphenomenons superphlogisticate superphlogistication superphosphate superphosphates superphyla superphylum superphysical superphysicalness superphysicposed superphysicposing superpiety superpigmentation superpimp superpimps superpious superpiously superpiousness superplane superplanes superplant superplastic superplasticities superplasticity superplastics superplausible superplausibleness superplausibly superplayer superplayers superplease superplus superpluses superpolite superpolitely superpoliteness superpolitic superpolymer superpolymers superponderance superponderancy superponderant superpopulated superpopulatedly superpopulatedness superpopulation superport superports superposable superpose superposed superposes superposing superposition superpositions superpositive superpositively superpositiveness superpossition superpower superpowered superpowerful superpowers superpraise superpraised superpraises superpraising superprecarious superprecariously superprecariousness superprecise superprecisely superpreciseness superprelatical superpremium superpremiums superpreparation superprepared superpressure superprinting superpro superprobability superproduce superproduced superproducing superproduction superprofit superprofits superproportion superpros superprosperous superpublicity superpure superpurgation superpurity superquadrupetal superqualified superqualify superqualifying superqualities superquality superquote superquoted superquoting superrace superraces superradical superradically superradicalness superrational superrationally superreaction superreal superrealism superrealisms superrealist superrealists superrefine superrefined superrefinement superrefines superrefining superreflection superreform superreformation superrefraction superregal superregally superregeneration superregenerative superregional superregistration superregulation superreliance superremuneration superrenal superrequirement superrespectability superrespectable superrespectableness superrespectably superresponsibility superresponsible superresponsibleness superresponsibly superrestriction superreward superrheumatized superrich superrighteous superrighteously superrighteousness superroad superroads superromantic superromantically superromanticism superromanticisms superroyal supers supersacerdotal supersacerdotally supersacral supersacred supersacrifice supersafe supersafely supersafeness supersafeties supersafety supersagacious supersagaciously supersagaciousness supersaint supersaintly supersale supersales supersalesman supersalesmanship supersalesmen supersaliency supersalient supersalt supersalts supersanction supersanguine supersanguinity supersanity supersarcasm supersarcastic supersarcastically supersatisfaction supersatisfied supersatisfy supersatisfying supersaturate supersaturated supersaturates supersaturating supersaturation supersaturations supersaver supersavers superscalar superscale superscales superscandal superscandalous superscandalously superscholarly superschool superschools superscientific superscientifically superscout superscouts superscreen superscreens superscribe superscribed superscribes superscribing superscript superscripted superscripting superscription superscriptions superscripts superscrive superseaman superseamen supersecrecies supersecrecy supersecret supersecretion supersecretive supersecretively supersecretiveness supersecrets supersecular supersecularly supersecure supersecurely supersecureness supersedable supersede supersedeas supersedeases superseded supersedence supersedences superseder supersedere supersederes superseders supersedes superseding supersedure supersedures superselect superselection supersell superseller supersellers supersells superseminate supersemination superseminator superseniority supersensible supersensibleness supersensibly supersensitisation supersensitise supersensitised supersensitiser supersensitising supersensitive supersensitively supersensitiveness supersensitivenesses supersensitivities supersensitivity supersensitization supersensitize supersensitized supersensitizing supersensory supersensual supersensualism supersensualist supersensualistic supersensuality supersensually supersensuous supersensuously supersensuousness supersentimental supersentimentally superseptal superseptuaginarian superseraphic superseraphical superseraphically superserious superseriously superseriousness superservice superserviceable superserviceableness superserviceably supersesquitertial supersession supersessions supersessive superset supersets supersevere superseverely supersevereness superseverity supersex supersexes supersexual supersexualities supersexuality supersharp supership supershipment superships supershow supershows supersignificant supersignificantly supersilent supersilently supersimplicity supersimplified supersimplify supersimplifying supersincerity supersinger supersingers supersingular supersistent supersize supersized superslasher supersleuth supersleuths superslick supersmart supersmartly supersmartness supersmooth supersocial supersoft supersoil supersolar supersolemn supersolemness supersolemnity supersolemnly supersolemnness supersolicit supersolicitation supersolid supersonant supersonic supersonically supersonics supersophisticated supersound supersounds supersovereign supersovereignty superspecial superspecialise superspecialist superspecialists superspecialization superspecializations superspecialize superspecialized superspecializing superspecials superspecies superspecification superspectacle superspectacles superspectacular superspectaculars superspeculation superspeculations superspeed superspeeds supersphenoid supersphenoidal superspies superspinous superspiritual superspirituality superspiritually superspy supersquamosal superstage superstamp superstandard superstar superstardom superstardoms superstars superstate superstates superstatesman superstatesmen superstation superstations superstimulate superstimulated superstimulates superstimulating superstimulation superstition superstitionist superstitionless superstitions superstitious superstitiously superstitiousness superstitiousnesses superstock superstocks superstoical superstoically superstore superstores superstrain superstrata superstratum superstratums superstrength superstrengths superstrenuous superstrenuously superstrenuousness superstrict superstrictly superstrictness superstrike superstrikes superstring superstrings superstrong superstruct superstructed superstructing superstruction superstructions superstructive superstructor superstructory superstructral superstructs superstructural superstructure superstructures superstud superstuds superstuff superstylish superstylishly superstylishness supersublimated supersuborder supersubsist supersubstantial supersubstantiality supersubstantially supersubstantiate supersubtile supersubtilised supersubtilized supersubtle supersubtleties supersubtlety supersuccessful supersufficiency supersufficient supersufficiently supersulcus supersulfate supersulfureted supersulfurize supersulfurized supersulfurizing supersulphate supersulphuret supersulphureted supersulphurise supersulphurize supersulphurized supersulphurizing supersuperabundance supersuperabundant supersuperabundantly supersuperb supersuperior supersupremacy supersupreme supersurgeon supersurgeons supersurprise supersuspicion supersuspicious supersuspiciously supersuspiciousness supersweet supersweetly supersweetness supersymmetric supersymmetrical supersymmetries supersymmetry supersympathetic supersympathies supersympathy supersyndicate supersystem supersystems supertanker supertankers supertare supertartrate supertax supertaxation supertaxes supertemporal supertempt supertemptation supertension superterranean superterraneous superterrene superterrestial superterrestrial superterrific superthankful superthankfully superthankfulness superthick superthin superthorough superthoroughly superthoroughness superthriller superthrillers superthyroidism supertight supertitle supertitles supertoleration supertonic supertonics supertotal supertough supertower supertragedies supertragedy supertragic supertragical supertragically supertrain supertramp supertranscendent supertranscendently supertranscendentness supertreason supertrivial supertuchun supertunic supertutelary supertwist supertwists superugly superultrafrostified superunfit superunit superunity superuniversal superuniversally superuniversalness superuniverse superurgency superurgent superurgently superuser superusers supervalue supervalued supervaluing supervast supervastly supervastness supervene supervened supervenes supervenience superveniences supervenient supervening supervenosity supervention superventions supervestment supervexation supervictories supervictorious supervictoriously supervictoriousness supervictory supervigilance supervigilant supervigilantly supervigorous supervigorously supervigorousness supervirile supervirtuosi supervirtuoso supervirtuosos supervirulent supervirulently supervisal supervisals supervisance supervise supervised supervisee supervisees supervises supervising supervision supervisionary supervisions supervisive supervisor supervisorial supervisors supervisorship supervisorships supervisory supervisual supervisually supervisure supervital supervitality supervitally supervitalness supervive supervolition supervoluminous supervoluminously supervolute superwager superwaif superwaifs superwave superwaves superweak superwealthy superweapon superweapons superweening superwide superwife superwise superwives superwoman superwomen superworldliness superworldly superwrought superyacht superzealous superzealously superzealousness supes supinate supinated supinates supinating supination supinations supinator supinators supine supinely supineness supinenesses supines supinity suplex suporvisory supp suppable suppage suppawn suppawns suppeago suppeagoes supped suppedanea suppedaneous suppedaneum suppedit suppeditate suppeditation supper suppered suppering supperless suppers suppertime suppertimes supperward supperwards supping suppl supplace supplant supplantation supplantations supplanted supplanter supplanters supplanting supplantment supplants supple suppled supplejack supplejacks supplely supplement supplemental supplementally supplementals supplementaries supplementarily supplementary supplementation supplementations supplemented supplementer supplementers supplementing supplements suppleness supplenesses suppler supples supplest suppletion suppletions suppletive suppletively suppletories suppletorily suppletory suppliable supplial supplials suppliance suppliances suppliancies suppliancy suppliant suppliantly suppliantness suppliants supplicancy supplicant supplicantly supplicants supplicat supplicate supplicated supplicates supplicating supplicatingly supplication supplicationer supplications supplicative supplicator supplicatory supplicats supplicavit supplicavits supplice supplied supplier suppliers supplies suppling supply supplying supplyment supplyments suppnea suppone support supportabilities supportability supportable supportableness supportablenesses supportably supportance supportances supportasse supportation supported supporter supporters supportful supporting supportingly supportings supportive supportively supportiveness supportivenesses supportless supportlessly supportment supportments supportress supportresses supports supporture supportures suppos supposable supposableness supposably supposal supposals suppose supposed supposedly supposer supposers supposes supposing supposings supposital supposition suppositional suppositionally suppositionary suppositionless suppositions suppositious suppositiously suppositiousness supposititious supposititiously supposititiousness supposititiousnesses suppositive suppositively suppositives suppositor suppositories suppository suppositum suppost suppresion suppresive suppress suppressal suppressant suppressants suppressed suppressedly suppressen suppresser suppressers suppresses suppressibilities suppressibility suppressible suppressing suppression suppressionist suppressions suppressive suppressively suppressiveness suppressivenesses suppressor suppressors supprime supprise suppurant suppurate suppurated suppurates suppurating suppuration suppurations suppurative suppuratives suppuratory supputation suppute supr supra suprabasidorsal suprabranchial suprabuccal supracaecal supracargo supracaudal supracensorious supracentenarian suprachiasmic suprachorioid suprachorioidal suprachorioidea suprachoroid suprachoroidal suprachoroidea supraciliary supraclavicle supraclavicular supraclusion supracommissure supraconduction supraconductor supracondylar supracondyloid supraconscious supraconsciousness supracoralline supracostal supracoxal supracranial supracretaceous supracrustal supradecompound supradental supradorsal supradural suprafeminine suprafine suprafoliaceous suprafoliar supraglacial supraglenoid supraglottal supraglottic supragovernmental suprahepatic suprahistorical suprahuman suprahumanity suprahyoid suprailiac suprailium suprainfection supraintellectual suprainterdorsal suprajural supralabial supralapsarian supralapsarianism supralapsarianisms supralapsarians supralateral supralegal supraliminal supraliminally supralineal supralinear supralittoral supralocal supralocally supraloral supralunar supralunary supramammary supramarginal supramarine supramastoid supramaxilla supramaxillary supramaximal suprameatal supramechanical supramedial supramental supramolecular supramolecule supramolecules supramoral supramortal supramundane supranasal supranational supranationalism supranationalisms supranationalist supranationalists supranationalities supranationality supranatural supranaturalism supranaturalist supranaturalistic supranature supranervian supraneural supranormal supranuclear supraoccipital supraocclusion supraocular supraoesophagal supraoesophageal supraoptic supraoptimal supraoptional supraoral supraorbital supraorbitar supraordinary supraordinate supraordination supraorganism suprapapillary suprapedal suprapharyngeal supraposition supraprotest suprapubian suprapubic suprapygal supraquantivalence supraquantivalent suprarational suprarationalism suprarationality suprarenal suprarenalectomize suprarenalectomy suprarenalin suprarenals suprarenin suprarenine suprarimal suprasaturate suprascapula suprascapular suprascapulary suprascript suprasegmental suprasensible suprasensitive suprasensual suprasensuous supraseptal suprasolar suprasoriferous suprasphanoidal supraspinal supraspinate supraspinatus supraspinous suprasquamosal suprastandard suprastapedial suprastate suprasternal suprastigmal suprasubtle supratemporal supraterraneous supraterrestrial suprathoracic supratonsillar supratrochlear supratropical supratympanic supravaginal supraventricular supraversion supravise supravital supravitally supraworld supremacies supremacism supremacisms supremacist supremacists supremacy supremal suprematism suprematisms suprematist suprematists supreme supremely supremeness supremenesses supremer supremes supremest supremities supremity supremo supremos supremum suprerogative supressed suprising sups supt suption supulchre supvr suq suqs sur sura suraddition suradditions surah surahee surahi surahs sural suralimentation suramin suramins suranal surance surances surangular suras surat surats surbahar surbahars surbase surbased surbasement surbasements surbases surbate surbated surbater surbates surbating surbed surbedded surbedding surbeds surbet surcease surceased surceases surceasing surcharge surcharged surchargement surchargements surcharger surchargers surcharges surcharging surcingle surcingled surcingles surcingling surcle surcloy surcoat surcoats surcrue surculi surculigerous surculose surculous surculus surculuses surd surdation surdeline surdent surdimutism surdities surdity surdomute surds sure surebutted sured surefire surefooted surefootedly surefootedness surefootednesses surely surement sureness surenesses surer sures suresby surest suretied sureties surette surety suretying suretyship suretyships surexcitation surf surfable surface surfaced surfacedly surfaceless surfacely surfaceman surfacemen surfaceness surfacer surfacers surfaces surfacing surfacings surfactant surfactants surfacy surfbird surfbirds surfboard surfboarded surfboarder surfboarders surfboarding surfboardings surfboards surfboat surfboatman surfboats surfcaster surfcasters surfcasting surfcastings surfed surfeit surfeited surfeitedness surfeiter surfeiters surfeiting surfeitings surfeits surfer surfers surffish surffishes surficial surficially surfie surfier surfies surfiest surfing surfings surfle surflike surfman surfmanship surfmen surfperch surfperches surfrappe surfrider surfriding surfs surfside surfuse surfusion surfy surg surge surged surgeful surgeless surgency surgent surgeon surgeoncies surgeoncy surgeoness surgeonfish surgeonfishes surgeonless surgeons surgeonship surgeonships surgeproof surger surgeries surgerise surgerize surgers surgery surges surgical surgically surgicenter surgicenters surgicotherapy surgier surgiest surginess surging surgings surgy surhai suricat suricata suricate suricates suriga surimi surimis surinam suriname surinamine suring surique surjection surjections surjective surlier surliest surlily surliness surlinesses surloin surloins surly surma surmark surmaster surmasters surmenage surmisable surmisal surmisals surmisant surmise surmised surmisedly surmiser surmisers surmises surmising surmisings surmistress surmistresses surmit surmount surmountability surmountable surmountableness surmountal surmounted surmounter surmounters surmounting surmountings surmounts surmullet surmullets surnai surname surnamed surnamer surnamers surnames surnaming surnap surnape surnay surnia surnominal surnoun surpass surpassable surpassed surpasser surpasses surpassing surpassingly surpassingness surpassingnesses surpeopled surphul surplice surpliced surplices surplicewise surplician surplus surplusage surplusages surplused surpluses surplusing surplussed surplussing surpoose surpreciation surprint surprinted surprinting surprints surprisable surprisal surprisals surprise surprised surprisedly surprisement surpriseproof surpriser surprisers surprises surprising surprisingly surprisingness surprisingnesses surprisings surprizal surprize surprized surprizes surprizing surquedies surquedries surquedry surquedy surquidry surquidy surra surrah surras surreal surrealism surrealisms surrealist surrealistic surrealistically surrealists surreality surreally surreals surrebound surrebut surrebuts surrebuttal surrebuttals surrebutted surrebutter surrebutters surrebutting surrection surrein surreined surrejoin surrejoinder surrejoinders surrejoined surrejoining surrejoins surrenal surrender surrendered surrenderee surrenderees surrenderer surrenderers surrendering surrenderor surrenderors surrenders surrendries surrendry surrept surreption surreptitious surreptitiously surreptitiousness surreptitiousnesses surreverence surreverently surrey surreys surrogacies surrogacy surrogata surrogate surrogated surrogates surrogateship surrogateships surrogating surrogation surrogations surrogatum surrosion surround surrounded surroundedly surrounder surrounding surroundings surrounds surroyal surroyals sursaturation sursise sursize sursolid surstyle sursumduction sursumvergence sursumversion surtarbrand surtarbrands surtax surtaxed surtaxes surtaxing surtitle surtitles surtout surtouts surturbrand surturbrands surucucu surucucus surv surveil surveiled surveiling surveillance surveillances surveillant surveillants surveille surveilled surveilles surveilling surveils survew survewe survewed survewes survewing survews survey surveyable surveyage surveyal surveyals surveyance surveyances surveyed surveying surveyings surveyor surveyors surveyorship surveyorships surveys surview surviewed surviewing surviews survigrous survise survivabilities survivability survivable survival survivalism survivalisms survivalist survivalists survivals survivance survivances survivancy survivant survive survived surviver survivers survives surviving survivor survivoress survivors survivorship survivorships surwan surya sus susan susanee susannite susans suscept susceptance susceptances susceptibilities susceptibility susceptible susceptibleness susceptiblenesses susceptibly susception susceptive susceptiveness susceptivenesses susceptivities susceptivity susceptor susceptors suscipient suscipients suscitate suscitated suscitates suscitating suscitation suscitations suscite suses sushi sushis susi susian suslik susliks susotoxin suspect suspectable suspected suspectedly suspectedness suspectednesses suspecter suspectful suspectfulness suspectible suspecting suspection suspectless suspector suspects suspence suspend suspended suspender suspendered suspenderless suspenders suspendibilities suspendibility suspendible suspending suspends suspens suspensation suspense suspenseful suspensefully suspensefulness suspensefulnesses suspenseless suspensely suspenser suspensers suspenses suspensibilities suspensibility suspensible suspension suspensions suspensive suspensively suspensiveness suspensivenesses suspensoid suspensoids suspensor suspensoria suspensorial suspensories suspensorium suspensoriums suspensors suspensory suspercollate suspercollated suspercollates suspercollating suspicable suspicion suspicionable suspicional suspicioned suspicionful suspicioning suspicionless suspicions suspicious suspiciously suspiciousness suspiciousnesses suspiral suspiration suspirations suspiratious suspirative suspire suspired suspires suspiring suspirious susquehanna suss sussarara sussararas sussed susses sussex sussexite sussing susso sussultatory sussultorial sussy sustain sustainabilities sustainability sustainable sustainably sustained sustainedly sustainer sustainers sustaining sustainingly sustainings sustainment sustainments sustains sustanedly sustenance sustenanceless sustenances sustenant sustentacula sustentacular sustentaculum sustentaculums sustentate sustentated sustentates sustentating sustentation sustentational sustentations sustentative sustentator sustentators sustention sustentions sustentive sustentor sustinent susu susurr susurrant susurrate susurrated susurrates susurrating susurration susurrations susurringly susurrous susurrus susurruses susus suterberries suterberry suterbery suther sutile sutler sutlerage sutleress sutleries sutlers sutlership sutlery sutor sutoria sutorial sutorian sutorious sutors sutra sutras sutta suttas suttee sutteeism sutteeisms suttees sutten sutter suttin suttle suttled suttles suttletie suttleties suttling suttly sutura sutural suturally suturation suturations suture sutured sutures suturing suum suva suversed suwarro suwe suz suzanne suzerain suzeraine suzerains suzerainship suzerainties suzerainty suzette suzettes suzuki sv svabite svalbard svamin svarabhakti svarabhaktic svarabhaktis svaraj svarajes svarajs svastika svastikas svc svce svedberg svedbergs svelt svelte sveltely svelteness sveltenesses svelter sveltest svengali sverige svgs sviatonosite svizzera sw swa swab swabbed swabber swabberly swabbers swabbie swabbies swabbing swabble swabby swabian swabs swack swacked swacken swacking swad swadder swaddies swaddish swaddle swaddlebill swaddled swaddler swaddlers swaddles swaddling swaddy swadeshi swads swag swagbellied swagbellies swagbelly swage swaged swager swagers swages swagged swagger swaggered swaggerer swaggerers swaggering swaggeringly swaggerings swaggers swaggi swaggie swaggies swagging swaggir swaggy swaging swaglike swagman swagmen swags swagshop swagshops swagsman swagsmen swahili swahilian swail swails swaimous swain swaining swainings swainish swainishness swainishnesses swainmote swains swainship swainsona swaird swakara swakaras swale swaled swaler swales swalier swaliest swaling swalingly swalings swallet swallets swallo swallow swallowable swallowed swallower swallowers swallowing swallowlike swallowling swallowpipe swallows swallowtail swallowtailed swallowtails swallowwort swallowworts swaly swam swami swamies swamis swamp swampable swampberries swampberry swamped swamper swampers swamphen swampier swampiest swampine swampiness swampinesses swamping swampish swampishness swampland swamplands swampless swamps swampside swampweed swampwood swampy swamy swan swandown swanflower swang swangy swanherd swanherds swanhood swanimote swank swanked swanker swankers swankest swankey swankeys swankie swankier swankies swankiest swankily swankiness swankinesses swanking swankness swankpot swankpots swanks swanky swanlike swanmark swanmarker swanmarking swanmote swanneck swannecked swanned swanner swanneries swannery swannet swannied swannier swannies swanniest swanning swannings swannish swanny swannying swanpan swanpans swans swansdown swansdowns swansea swanskin swanskins swansong swansongs swanweed swanwort swap swape swappable swapped swapper swappers swapping swappings swaps swapt swaption swaptions swaraj swarajes swarajism swarajisms swarajist swarajists swarbie sward swarded swardier swardiest swarding swards swardy sware swarf swarfed swarfer swarfing swarfs swarga swarm swarmed swarmer swarmers swarming swarmingness swarmings swarms swarmy swarry swart swartback swarth swarthier swarthiest swarthily swarthiness swarthinesses swarthness swarths swarthy swartish swartly swartness swartnesses swartrutter swartrutting swarty swartzite swarve swarved swarves swarving swash swashbuckle swashbuckled swashbuckler swashbucklerdom swashbucklering swashbucklers swashbucklery swashbuckles swashbuckling swashbucklings swashed swasher swashers swashes swashier swashiest swashing swashingly swashings swashway swashwork swashworks swashy swastica swasticas swastika swastikaed swastikas swat swatch swatchbook swatchbooks swatcher swatches swatchway swath swathable swathband swathe swatheable swathed swather swathers swathes swathier swathiest swathing swaths swathy swats swatted swatter swattered swattering swatters swatting swattings swattle swaver sway swayable swayableness swayback swaybacked swaybacks swayed swayer swayers swayful swaying swayingly swayings swayl swayled swayless swayling swaylings swayls sways swazi swaziland swazzle swazzles swbs swbw sweal swealed swealing swealings sweals sweamish swear sweard sweards swearer swearers swearing swearingly swearings swears swearword swearwords sweat sweatband sweatbands sweatbox sweatboxes sweated sweater sweaterdress sweaterdresses sweaters sweatful sweath sweathouse sweatier sweatiest sweatily sweatiness sweatinesses sweating sweatings sweatless sweatpants sweatproof sweats sweatshirt sweatshirts sweatshop sweatshops sweatsuit sweatsuits sweatweed sweaty swede sweden swedenborgian swedes swedge swedger swedish swedru swee sweed sweeing sweel sweeled sweeling sweels sweeney sweeneys sweenies sweens sweeny sweep sweepable sweepage sweepback sweepbacks sweepboard sweepdom sweeper sweeperess sweepers sweepforward sweepier sweepiest sweeping sweepingly sweepingness sweepingnesses sweepings sweeps sweepstake sweepstakes sweepup sweepwasher sweepwashings sweepy sweer sweered sweert swees sweese sweeswee sweet sweetbells sweetberry sweetbread sweetbreads sweetbriar sweetbriars sweetbrier sweetbriers sweetbriery sweetclover sweetcorn sweetcorns sweeted sweeten sweetened sweetener sweeteners sweetening sweetenings sweetens sweeter sweetest sweetfish sweetfishes sweetful sweetheart sweetheartdom sweethearted sweetheartedness sweethearting sweethearts sweetheartship sweetie sweeties sweetiewife sweetiewives sweeting sweetings sweetish sweetishly sweetishness sweetishnesses sweetkins sweetleaf sweetless sweetlike sweetling sweetly sweetmaker sweetman sweetmeal sweetmeat sweetmeats sweetmouthed sweetness sweetnesses sweetpea sweetpeas sweetroot sweets sweetshop sweetshops sweetsome sweetsop sweetsops sweetwater sweetwaters sweetweed sweetwood sweetwoods sweetwort sweetworts sweety swego sweir sweirness sweirnesses sweirt swelchie swelchies swell swellage swelldom swelldoms swelldoodle swelled sweller swellers swellest swellfish swellfishes swellhead swellheaded swellheadedness swellheadednesses swellheads swelling swellingly swellings swellish swellishness swellmobsman swellness swells swelltoad swelly swelp swelt swelted swelter sweltered swelterer sweltering swelteringly swelterings swelters swelth swelting sweltrier sweltriest sweltry swelts swelty swep swept sweptback sweptwing sweptwings swerd swerf swerfed swerfing swerfs swertia swervable swerve swerved swerveless swerver swervers swerves swervily swerving swervings sweven swevens swey sweyed sweying sweys swick swidden swiddens swidge swies swietinia swift swifted swiften swifter swifters swiftest swiftfoot swiftian swiftie swifties swifting swiftlet swiftlets swiftlier swiftliest swiftlike swiftly swiftness swiftnesses swifts swifty swig swigged swigger swiggers swigging swiggle swigs swile swilkie swill swillbelly swillbowl swilled swiller swillers swilling swillings swillpot swills swilltub swim swimbel swimmable swimmer swimmeret swimmerets swimmerette swimmers swimmier swimmiest swimmily swimminess swimming swimmingly swimmingness swimmingnesses swimmings swimmist swimmy swims swimsuit swimsuits swimwear swimwears swimy swindge swindged swindges swindging swindle swindleable swindled swindledom swindler swindlers swindlership swindlery swindles swindling swindlingly swindlings swine swinebread swinecote swinehead swineherd swineherds swineherdship swinehood swinehoods swinehull swinelike swinely swinepipe swinepox swinepoxes swineries swinery swines swinestone swinestones swinesty swiney swing swingable swingably swingaround swingback swingbeat swingbeats swingboat swingboats swingby swingbys swingdevil swingdingle swinge swinged swingeing swingeingly swingel swingeour swinger swingers swinges swingier swingiest swinging swingingest swingingly swingings swingism swingisms swingknife swingle swinglebar swingled swingles swingletail swingletree swingletrees swingling swinglings swingman swingmen swingometer swingometers swings swingstock swingtree swingtrees swingy swinish swinishly swinishness swinishnesses swink swinked swinker swinking swinks swinney swinneys swinnies swinny swipe swiped swiper swipers swipes swipey swipier swipiest swiping swiple swiples swipper swipple swipples swipy swird swire swires swirl swirled swirlier swirliest swirling swirlingly swirls swirly swirrer swirring swish swished swisher swishers swishes swishest swishier swishiest swishing swishingly swishings swishy swiss swisser swisses swissing swissings switch switchable switchback switchbacked switchbacker switchbacking switchbacks switchblade switchblades switchboard switchboards switched switchel switchels switcher switcheroo switcheroos switchers switches switchgear switchgears switchgirl switchgrass switchgrasses switchier switchiest switching switchings switchkeeper switchlike switchman switchmen switchover switchtail switchy switchyard switchyards swith swithe swithen swither swithered swithering swithers swithly swits switses switzer switzerland swive swived swivel swivelblock swivelblocks swiveled swiveleye swiveleyed swiveling swivelled swivellike swivelling swivels swiveltail swiver swives swivet swivets swivetty swiving swiwet swiz swizz swizzed swizzes swizzing swizzle swizzled swizzler swizzlers swizzles swizzling swleaves swobber swobbers swollen swollenly swollenness swoln swom swone swones swonk swonken swoon swooned swooner swooners swooning swooningly swoonings swoons swoony swoop swooped swooper swoopers swooping swoops swoopstake swoose swooses swoosh swooshed swooshes swooshing swop swopped swopper swoppers swopping swoppings swops swopt sword swordbearer swordbill swordbills swordcraft swordcrafts sworded sworder sworders swordfish swordfisherman swordfishery swordfishes swordfishing swordgrass swordick swording swordknot swordless swordlet swordlike swordmaker swordmaking swordman swordmanship swordmen swordplay swordplayer swordplayers swordplays swordproof swords swordslipper swordsman swordsmanship swordsmanships swordsmen swordsmith swordster swordstick swordswoman swordswomen swordtail swordtails swordweed swore sworn swosh swot swots swotted swotter swotters swotting swottings swough swoun swound swounded swounding swounds swoune swouned swounes swouning swouns swow swownd swownds swowne swownes swozzle swozzles swum swung swungen swure swy swythe syagush sybarism sybarist sybarite sybarites sybaritic sybaritical sybaritically sybaritish sybaritism sybaritisms sybbe sybbes sybil sybils sybo syboe syboes sybotic sybotism sybotisms sybow sybows sycamine sycamines sycamore sycamores syce sycee sycees syces sychee sychnocarpous sycite sycoceric sycock sycoma sycomancy sycomore sycomores sycon syconarian syconate sycones syconia syconid syconium syconiums syconoid syconus sycophancies sycophancy sycophant sycophantic sycophantical sycophantically sycophantise sycophantised sycophantises sycophantish sycophantishly sycophantising sycophantism sycophantisms sycophantize sycophantized sycophantizes sycophantizing sycophantly sycophantries sycophantry sycophants sycoses sycosiform sycosis syddir sydney sye syed syeing syen syenite syenites syenitic syenodiorite syenogabbro syens syes syftn syke syker sykerly sykes syl sylene syli sylid syling sylis sylistically syll syllab syllabaria syllabaries syllabarium syllabariums syllabary syllabatim syllabation syllabe syllabi syllabic syllabical syllabically syllabicate syllabicated syllabicates syllabicating syllabication syllabications syllabicities syllabicity syllabicness syllabics syllabification syllabifications syllabified syllabifies syllabify syllabifying syllabise syllabised syllabises syllabising syllabism syllabisms syllabize syllabized syllabizes syllabizing syllable syllabled syllables syllabling syllabogram syllabography syllabub syllabubs syllabus syllabuses syllepses syllepsis sylleptic sylleptical sylleptically syllid syllidian sylloge syllogisation syllogisations syllogise syllogised syllogiser syllogisers syllogises syllogising syllogism syllogisms syllogist syllogistic syllogistical syllogistically syllogistics syllogists syllogization syllogizations syllogize syllogized syllogizer syllogizers syllogizes syllogizing sylph sylphic sylphid sylphide sylphides sylphidine sylphids sylphier sylphiest sylphine sylphish sylphize sylphlike sylphs sylphy sylva sylvae sylvage sylvan sylvaner sylvaners sylvanesque sylvanise sylvanite sylvanites sylvanitic sylvanity sylvanize sylvanly sylvanry sylvans sylvanus sylvas sylvate sylvatic sylvatical sylvester sylvestral sylvestrene sylvestrian sylvia sylvian sylvias sylvic sylvicoline sylvicultural sylviculture sylvicultures sylviid sylviidae sylviinae sylviine sylvilagus sylvin sylvine sylvines sylvinite sylvinites sylvins sylvite sylvites sylvius sym symar symars symbasic symbasical symbasically symbasis symbiogenesis symbiogenetic symbiogenetically symbion symbionic symbions symbiont symbiontic symbionticism symbionts symbioses symbiosis symbiot symbiote symbiotes symbiotic symbiotical symbiotically symbiotics symbiotism symbiotrophic symbiots symblepharon symbol symbolaeography symbolater symbolatrous symbolatry symbole symboled symboles symbolic symbolical symbolically symbolicalness symbolicalnesses symbolicly symbolics symboling symbolisation symbolisations symbolise symbolised symboliser symbolisers symbolises symbolising symbolism symbolisms symbolist symbolistic symbolistical symbolistically symbolists symbolization symbolizations symbolize symbolized symbolizer symbolizers symbolizes symbolizing symbolled symbolling symbolofideism symbological symbologies symbologist symbologists symbolographies symbolography symbology symbololatries symbololatry symbolologies symbolology symbolry symbols symbolum symbouleutic symbranch symbranchiate symbranchoid symbranchous symitar symitare symitares symitars symmachy symmedian symmelia symmelian symmelus symmetalism symmetalisms symmetallic symmetallism symmetallisms symmetral symmetrian symmetrians symmetric symmetrical symmetricality symmetrically symmetricalness symmetricalnesses symmetricly symmetricness symmetricnesses symmetries symmetrisation symmetrisations symmetrise symmetrised symmetrises symmetrising symmetrist symmetrization symmetrizations symmetrize symmetrized symmetrizes symmetrizing symmetroid symmetrophobia symmetrophobias symmetry symmist symmorphic symmorphism symmory sympalmograph sympathectomies sympathectomize sympathectomized sympathectomy sympathetectomies sympathetectomy sympathetic sympathetical sympathetically sympatheticism sympatheticity sympatheticness sympatheticotonia sympatheticotonic sympathetics sympathetoblast sympathic sympathicoblast sympathicotonia sympathicotonic sympathicotripsy sympathies sympathin sympathins sympathique sympathise sympathised sympathiser sympathisers sympathises sympathising sympathisingly sympathism sympathist sympathize sympathized sympathizer sympathizers sympathizes sympathizing sympathizingly sympathoblast sympatholysis sympatholytic sympatholytics sympathomimetic sympathomimetics sympathy sympatric sympatrically sympatries sympatry sympetalies sympetalous sympetaly symphalangus symphenomena symphenomenal symphile symphiles symphilic symphilid symphilies symphilism symphilisms symphilous symphily symphogenous symphonetic symphonette symphonia symphonic symphonically symphonies symphonion symphonions symphonious symphoniously symphonisation symphonise symphonised symphonising symphonist symphonists symphonization symphonize symphonized symphonizing symphonous symphony symphoricarpos symphoricarpous symphrase symphronistic symphyantherous symphycarpous symphyla symphylan symphyllous symphylous symphynote symphyogenesis symphyogenetic symphyostemonous symphyseal symphyseotomies symphyseotomy symphyses symphysial symphysian symphysic symphysion symphysiotomies symphysiotomy symphysis symphysodactylia symphysotomy symphystic symphysy symphytic symphytically symphytism symphytize symphytum sympiesometer sympiesometers symplasm symplast symplasts symplectic symplesite symplocaceae symplocaceous symplocarpus symploce symploces symplocium symplocos symplocus sympode sympodia sympodial sympodially sympodium sympolity symposia symposiac symposiacal symposiacs symposial symposiarch symposiarchs symposiast symposiastic symposiasts symposion symposisia symposisiums symposium symposiums sympossia symptom symptomatic symptomatical symptomatically symptomaticness symptomatics symptomatise symptomatised symptomatises symptomatising symptomatize symptomatized symptomatizes symptomatizing symptomatography symptomatologic symptomatological symptomatologically symptomatologies symptomatology symptomical symptomise symptomises symptomize symptomized symptomizes symptomizing symptomless symptomological symptomology symptoms symptoses symptosis symptotic sympus symtab symtomology syn synacme synacmic synacmy synactic synadelphite synadelphites synaereses synaeresis synaestheses synaesthesia synaesthesias synaesthesis synaesthetic synagog synagogal synagogian synagogical synagogism synagogist synagogs synagogue synagogues synagrops synalepha synalephas synalephe synalgia synalgic synallactic synallagmatic synallaxine synaloepha synaloephas synaloephe synanastomosis synanceja synandria synandrium synandriums synandrous synange synangia synangial synangic synangium synangiums synanon synanons synanthema synantherological synantherologist synantherology synantherous synantheses synanthesis synanthetic synanthic synanthies synanthous synanthrose synanthy synaphe synaphea synapheas synapheia synapheias synaposematic synaposematism synaposematisms synapse synapsed synapses synapsid synapsida synapsidan synapsids synapsing synapsis synaptai synaptase synaptases synapte synaptene synapterous synaptes synaptic synaptical synaptically synapticula synapticulae synapticular synapticulate synapticulum synaptid synaptomys synaptosomal synaptosome synaptosomes synaptychus synarchical synarchies synarchism synarchy synarmogoid synarquism synarses synartesis synartete synartetic synarthrodia synarthrodial synarthrodially synarthroses synarthrosis synascidian synastries synastry synaxar synaxaria synaxaries synaxarion synaxarions synaxarist synaxarium synaxary synaxaxaria synaxes synaxis sync syncarp syncarpia syncarpies syncarpium syncarpous syncarps syncarpy syncaryon syncategorem syncategorematic syncategorematical syncategorematically syncategoreme synced syncellus syncephalic syncephalus syncerebral syncerebrum synch synched synches synching synchitic synchondoses synchondroses synchondrosial synchondrosially synchondrosis synchondrotomy synchoreses synchoresis synchro synchrocyclotron synchrocyclotrons synchroflash synchroflashes synchromesh synchromeshes synchromism synchromist synchronal synchrone synchroneities synchroneity synchronic synchronical synchronically synchronicities synchronicity synchronies synchronisable synchronisation synchronisations synchronise synchronised synchroniser synchronisers synchronises synchronising synchronism synchronisms synchronistic synchronistical synchronistically synchronizable synchronization synchronizations synchronize synchronized synchronizer synchronizers synchronizes synchronizing synchronograph synchronological synchronologies synchronology synchronoscope synchronous synchronously synchronousness synchronousnesses synchrony synchros synchroscope synchroscopes synchrotron synchrotrons synchs synchyses synchysis synchytriaceae synchytrium syncing syncladous synclastic synclinal synclinally synclinals syncline synclines synclinical synclinore synclinoria synclinorial synclinorian synclinorium synclitic syncliticism synclitism syncoelom syncom syncoms syncopal syncopare syncopate syncopated syncopates syncopating syncopation syncopations syncopative syncopator syncopators syncope syncopes syncopic syncopism syncopist syncopize syncoptic syncotyledonous syncracy syncraniate syncranterian syncranteric syncrasy syncretic syncretical syncreticism syncretion syncretise syncretised syncretises syncretising syncretism syncretisms syncretist syncretistic syncretistical syncretists syncretize syncretized syncretizes syncretizing syncrisis syncryptic syncs syncytia syncytial syncytioma syncytiomas syncytiomata syncytium syncytiums synd syndactyl syndactyle syndactyli syndactylia syndactylic syndactylies syndactylism syndactylisms syndactylous syndactyls syndactylus syndactyly syndectomy synded syndereses synderesis syndeses syndesis syndesises syndesmectopia syndesmies syndesmitis syndesmography syndesmology syndesmoma syndesmoplasty syndesmorrhaphy syndesmoses syndesmosis syndesmotic syndesmotomy syndet syndetic syndetical syndetically syndeton syndetons syndets syndic syndical syndicalise syndicalism syndicalisms syndicalist syndicalistic syndicalists syndicalize syndicat syndicate syndicated syndicateer syndicates syndicating syndication syndications syndicator syndicators syndics syndicship syndicships synding syndings syndiotactic syndoc syndrome syndromes syndromic synds syndyasmian syne synecdoche synecdoches synecdochic synecdochical synecdochically synecdochism synecdochisms synechdochical synechdochism synechia synechiae synechias synechiological synechiology synechist synechistic synechological synechology synechotomy synechthran synechthry synecious synecologic synecological synecologically synecologies synecologist synecologists synecology synecphoneses synecphonesis synectic synectically synecticity synectics syned synedral synedria synedrial synedrian synedrion synedrium synedrous syneideses syneidesis synema synemata synemmenon synenergistic synenergistical synenergistically synentognath synentognathi synentognathous synephrine synercus synereses syneresis synergastic synergetic synergetically synergia synergias synergic synergical synergically synergid synergidae synergidal synergids synergies synergise synergised synergises synergising synergism synergisms synergist synergistic synergistical synergistically synergists synergize synergized synergizes synergizing synergy synerize synes syneses synesis synesises synesthesia synesthesias synesthete synesthetes synesthetic synethnic synetic synezesis synezisis synfuel synfuels syngamic syngamies syngamous syngamy syngas syngases syngasses syngeneic syngeneically syngeneses syngenesia syngenesian syngenesious syngenesis syngenetic syngenic syngenism syngenite syngnathid syngnathidae syngnathoid syngnathous syngnathus syngonium syngraph syngraphs syning synizeses synizesis synkarya synkaryon synkaryonic synkaryons synkatathesis synkineses synkinesia synkinesis synkinetic synnema synnemata synneurosis synneusis synocha synochal synochoid synochous synochus synocreate synod synodal synodalian synodalist synodally synodals synodian synodic synodical synodically synodicon synodist synodite synodontid synodontidae synodontoid synods synodsman synodsmen synoecete synoecetes synoecioses synoeciosis synoecious synoeciously synoeciousness synoecise synoecised synoecises synoecising synoecism synoecisms synoecize synoecized synoecizes synoecizing synoecologies synoecology synoecy synoekete synoeketes synoeky synoetic synoicous synoicousness synomosy synonomous synonomously synonym synonymatic synonyme synonymes synonymic synonymical synonymicon synonymicons synonymics synonymies synonymise synonymised synonymises synonymising synonymist synonymists synonymities synonymity synonymize synonymized synonymizes synonymizing synonymous synonymously synonymousness synonymousnesses synonyms synonymy synop synophthalmia synophthalmus synopses synopsic synopsis synopsise synopsised synopsises synopsising synopsize synopsized synopsizes synopsizing synopsy synoptic synoptical synoptically synoptics synoptist synoptistic synoptists synorchidism synorchism synorthographic synosteology synosteoses synosteosis synostose synostoses synostosis synostotic synostotical synostotically synousiacs synovectomy synovia synovial synovially synovias synoviparous synovitic synovitis synovitises synovium synpelmous synrhabdosome synroc synrocs synsacral synsacrum synsepalous synspermous synsporous syntactially syntactic syntactical syntactically syntactician syntactics syntagm syntagma syntagmas syntagmata syntagmatic syntagmatite syntagmatites syntagms syntalities syntality syntan syntans syntasis syntax syntaxes syntaxis syntaxist syntechnic syntectic syntectical syntelome syntenic syntenies syntenoses syntenosis synteny syntereses synteresis syntexis syntexises synth syntheme synthermal syntheses synthesis synthesisation synthesisations synthesise synthesised synthesiser synthesisers synthesises synthesising synthesism synthesist synthesists synthesization synthesizations synthesize synthesized synthesizer synthesizers synthesizes synthesizing synthetase synthetases synthete synthetic synthetical synthetically syntheticism syntheticisms syntheticness synthetics synthetisation synthetise synthetised synthetiser synthetisers synthetises synthetising synthetism synthetist synthetists synthetization synthetize synthetized synthetizer synthetizers synthetizes synthetizing synthol synthon synthons synthpop synthpops synthroni synthronoi synthronos synthronus synthronuses synths syntomia syntomy syntone syntonic syntonical syntonically syntonies syntonin syntonins syntonisation syntonise syntonised syntonises syntonising syntonization syntonize syntonized syntonizer syntonizes syntonizing syntonolydian syntonous syntony syntripsis syntrope syntrophic syntrophoblast syntrophoblastic syntropic syntropical syntropy syntype syntypic syntypicism synura synurae synusia synusiast syodicon sype syped sypes syph sypher syphered syphering syphers syphilid syphilide syphilidography syphilidologist syphiliphobia syphilis syphilisation syphilisations syphilise syphilised syphilises syphilising syphilitic syphilitically syphilitics syphilization syphilizations syphilize syphilized syphilizes syphilizing syphiloderm syphilodermatous syphilogenesis syphilogeny syphilographer syphilography syphiloid syphilologies syphilologist syphilologists syphilology syphiloma syphilomas syphilomata syphilomatous syphilophobe syphilophobia syphilophobias syphilophobic syphilopsychosis syphilosis syphilous syphon syphoned syphoning syphonless syphonlike syphonophore syphonostele syphonostelic syphonostely syphons syphs syping syr syracusan syracuse syrah syrahs syre syren syrens syrette syrettes syria syriac syrian syrians syriarch syriasm syringa syringadenous syringas syringe syringeal syringed syringeful syringes syringing syringitis syringitises syringium syringocele syringocoele syringomyelia syringomyelias syringomyelic syringotome syringotomies syringotomy syrinx syrinxes syrlye syrma syrmaea syrophoenician syrphian syrphians syrphid syrphids syrphus syrrhaptes syrringed syrringing syrt syrtes syrtic syrtis syrup syruped syruper syrupier syrupiest syrupiness syruping syruplike syrups syrupy syrus sysadmin sysadmins sysin sysop sysops sysout syssarcoses syssarcosic syssarcosis syssarcotic syssel sysselman syssiderite syssita syssitia syssitias syssition syst systaltic systasis systatic system systematic systematical systematicality systematically systematicalness systematician systematicians systematicness systematicnesses systematics systematisation systematisations systematise systematised systematiser systematisers systematises systematising systematism systematisms systematist systematists systematization systematizations systematize systematized systematizer systematizers systematizes systematizing systematologies systematology systematy systemed systemic systemically systemics systemisable systemisation systemisations systemise systemised systemiser systemisers systemises systemising systemist systemizable systemization systemizations systemize systemized systemizer systemizers systemizes systemizing systemless systemoid systemproof systems systemwide systemwise systilius systolated systole systoles systolic systyle systyles systylous sythe sythes syud syver syvers syzygal syzygetic syzygetically syzygia syzygial syzygies syzygium syzygy szaibelyite szechuan szechwan szlachta szopelka séance séances t ta taa taal taar taata tab tabac tabacco tabacin tabacism tabacosis tabacum tabagie tabagism tabanca tabancas taband tabanid tabanidae tabanids tabaniform tabanuco tabard tabarded tabardillo tabards tabaret tabarets tabasco tabasheer tabasheers tabashir tabashirs tabatiere tabaxir tabbarea tabbed tabber tabbied tabbies tabbinet tabbinets tabbing tabbis tabbises tabbouleh tabboulehs tabby tabbyhood tabbyhoods tabbying tabefaction tabefactions tabefied tabefies tabefy tabefying tabel tabella tabellion tabellions taber taberd taberdar taberdars taberds tabered tabering taberna tabernacle tabernacled tabernacler tabernacles tabernacling tabernacular tabernae tabernaemontana tabernariae tabers tabes tabescence tabescences tabescent tabet tabetic tabetics tabetiform tabetless tabi tabic tabid tabidly tabidness tabific tabifical tabinet tabinets tabis tabitude tabla tablanette tablanettes tablas tablature tablatures table tableau tableaus tableaux tablecloth tablecloths tableclothwise tableclothy tabled tablefellow tablefellowship tablefork tableful tablefuls tablehopped tablehopping tableity tableland tablelands tableless tablelike tablemaid tablemaker tablemaking tableman tablemate tablemates tablement tablemount tabler tables tablesful tablespoon tablespoonful tablespoonfuls tablespoons tablespoonsful tablet tabletary tableted tableting tabletop tabletopped tabletops tablets tabletted tabletting tableware tablewares tablewise tablier tabliers tablina tabling tablings tablinum tablita tabloid tabloidism tabloidisms tabloids tabloidy tabog taboggan tabogganed tabogganing taboggans taboo tabooed tabooing tabooism tabooist tabooley tabooleys tabooli taboolis taboos taboot taboparalysis tabopareses taboparesis taboparetic tabophobia tabor tabora tabored taborer taborers taboret taborets taborin taborine taborines taboring taborins tabors tabouleh taboulehs tabouli taboulis tabour taboured tabourer tabourers tabouret tabourets tabourin tabourine tabouring tabourins tabours tabrere tabreres tabret tabrets tabriz tabs tabstop tabstops tabu tabued tabuing tabula tabulable tabulae tabular tabulare tabularia tabularisation tabularisations tabularise tabularised tabularises tabularising tabularium tabularization tabularizations tabularize tabularized tabularizes tabularizing tabularly tabulary tabulate tabulated tabulates tabulating tabulation tabulations tabulator tabulators tabulatory tabule tabuli tabuliform tabulis tabun tabuns tabus tabut tacahout tacahouts tacamahac tacamahaca tacamahacas tacamahack tacamahacks tacamahacs tacan tacans tacca taccaceae taccaceous taccada tace taces tacet tach tache tacheless tacheography tacheometer tacheometers tacheometric tacheometrical tacheometries tacheometry taches tacheture tachhydrite tachi tachibana tachina tachinarian tachinid tachinidae tachinids tachiol tachism tachisme tachismes tachisms tachist tachiste tachistes tachistoscope tachistoscopes tachistoscopic tachistoscopically tachists tacho tachogram tachograms tachograph tachographs tachometer tachometers tachometric tachometrical tachometrically tachometries tachometry tachophobia tachos tachoscope tachs tachyarrhythmia tachyarrhythmias tachyauxesis tachyauxetic tachycardia tachycardiac tachycardias tachygen tachygenesis tachygenetic tachygenic tachyglossal tachyglossate tachyglossidae tachyglossus tachygraph tachygrapher tachygraphers tachygraphic tachygraphical tachygraphically tachygraphies tachygraphist tachygraphists tachygraphometer tachygraphometry tachygraphs tachygraphy tachyhydrite tachyiatry tachylalia tachylite tachylites tachylitic tachylyte tachylytes tachylytic tachymeter tachymeters tachymetric tachymetrical tachymetries tachymetry tachyon tachyonic tachyons tachyphagia tachyphasia tachyphasias tachyphemia tachyphrasia tachyphrasias tachyphrenia tachyphylactic tachyphylaxia tachyphylaxis tachypleus tachypnea tachypneas tachypneic tachypnoea tachypnoeas tachypnoeic tachyscope tachyseism tachysterol tachysterols tachysystole tachytelic tachytely tachythanatous tachytomy tachytype tacit tacitean tacitly tacitness tacitnesses taciturn taciturnist taciturnities taciturnity taciturnly tack tackboard tackboards tacked tacker tackers tacket tacketed tackets tackety tackey tackie tackier tackies tackiest tackified tackifier tackifiers tackifies tackify tackifying tackily tackiness tackinesses tacking tackingly tackings tackle tackled tackleless tackleman tackler tacklers tackles tackless tackling tacklings tackproof tacks tacksman tacksmen tacky taclocus tacmahack tacmahacks tacnode tacnodes taco tacoma taconite taconites tacos tacpoint tacrine tacrines tacso tact tactable tactful tactfully tactfulness tactfulnesses tactic tactical tactically tactician tacticians tacticities tacticity tactics tactile tactilely tactilist tactilists tactilities tactility tactilogical tactinvariant taction tactions tactism tactisms tactite tactive tactless tactlessly tactlessness tactlessnesses tactoid tactometer tactor tactosol tacts tactual tactualist tactualities tactuality tactually tactus tacuacine tad tadarida tadbhava taddie taddies tade tadjik tadorna tadpole tadpoledom tadpolehood tadpolelike tadpoles tadpolism tads tadvance tadzhik tadzhikistan tae taed taedium taediums taegu taeing tael taels taen taenia taeniacidal taeniacide taeniacides taeniae taeniafuge taeniafuges taenial taenian taenias taeniases taeniasis taeniate taenicide taenidia taenidial taenidium taeniform taenifuge taeniidae taeniiform taeninidia taeniobranchiate taenioglossate taenioid taeniola taeniosome taeniosomous taenite taennin taes taffarel taffarels tafferel tafferels taffeta taffetas taffetases taffeties taffetised taffetized taffety taffia taffias taffies taffle taffrail taffrails taffy taffylike taffymaker taffymaking taffywise tafia tafias tafinagh taft tafwiz tag tagalog tagalogs tagalong tagalongs tagamet tagasaste tagatose tagboard tagboards tagel tagetes tageteses tageteste tagetol tagetone taggant taggants tagged taggee taggees tagger taggers taggier taggiest tagging taggings taggle taggy taghairm taghairms tagilite taglet taglia tagliarini tagliarinis tagliatelle tagliatelles taglike tagline taglines taglioni taglionis taglock tagma tagmata tagmeme tagmemes tagmemic tagmemics tagnicati tagrag tagraggery tagrags tags tagsore tagster tagtail tagua taguan taguans tagus tagwerk taha tahali tahanun tahar taharah tahas taheen tahgook tahil tahin tahina tahinas tahini tahinis tahiti tahitian tahitians tahkhana tahona tahr tahrs tahseeldar tahsil tahsildar tahsildars tahsils tahua tai taiaha taiahas taich taichung taig taiga taigas taiglach taigle taigled taigles taiglesome taigling taigs taihoa taikhana taikih taikun tail tailage tailard tailards tailback tailbacks tailband tailboard tailboards tailbone tailbones tailcoat tailcoated tailcoats tailed tailender tailenders tailer taileron tailerons tailers tailet tailfan tailfans tailfin tailfins tailfirst tailflower tailforemost tailgate tailgated tailgater tailgaters tailgates tailgating tailge tailgunner tailhead tailing tailings taillamp taillamps taille tailles tailless taillessly taillessness tailleur tailleurs taillie taillies taillight taillights taillike tailloir tailor tailorable tailorage tailorbird tailorbirds tailorcraft tailordom tailored tailoress tailoresses tailorhood tailoring tailorings tailorisation tailorise tailorism tailorization tailorize tailorless tailorlike tailorly tailormade tailormake tailormakes tailormaking tailorman tailors tailorship tailorwise tailory tailpiece tailpieces tailpin tailpipe tailpiped tailpipes tailpiping tailplane tailplanes tailrace tailraces tails tailshaft tailsheet tailskid tailskids tailslide tailslides tailsman tailspin tailspinned tailspinning tailspins tailstock tailstocks tailward tailwards tailwater tailwaters tailwheel tailwheels tailwind tailwinds tailwise tailwort taily tailye tailyes tailzee tailzie tailzied tailzies taimen taimyrite tain taino tainos tains taint taintable tainte tainted taintedness tainting taintless taintlessly taintlessness taintment taintor taintproof taints tainture taintures taintworm taipan taipans taipei taiping taipo taira tairas tairge tairger tairn tais taisch taisches taise taish taishes taissle taistrel taistril tait taits taiver taivered taivering taivers taivert taiwan taiwanese taj tajes tajik tajiki tajikistan tajine tajines tak taka takable takahe takahes takamaka takamakas takar takas take takeable takeaway takeaways taked takedown takedownable takedowns takeful takeing takelma taken takeoff takeoffs takeout takeouts takeover takeovers taker takers takes taketh takeup takeups takhi takhis taki takier takiest takilman takin taking takingly takingness takingnesses takings takins takis takkanah takosis takrouri taks takt taky takyr tal tala talabon talahib talaje talak talaks talalgia talant talanton talants talao talapoin talapoins talaq talaqs talar talari talaria talaric talars talas talaunt talaunts talayot talayoti talayots talbot talbots talbotype talbotypes talbotypist talc talcarie talcaries talced talcer talcier talciest talcing talck talcked talckier talckiest talcking talcky talclike talcochlorite talcoid talcomicaceous talcose talcous talcs talcum talcums talcy tald tale talea taleae talebearer talebearers talebearing talebearings talebook talecarrier talecarrying taled taleful talegalla talegallas talemaster talemonger talemongering talent talented talenter talenting talentless talentlessness talents talepyet taler talers tales talesman talesmen taleteller taletellers taletelling taletellings talewise taleysim tali taliacotian taliage taliation taliera taligrade talinum talio talion talionic talionis talions talipat talipats taliped talipedic talipeds talipes talipomanus talipot talipots talis talisay talisman talismanic talismanical talismanically talismanist talismanni talismans talite talitol talk talkabilities talkability talkable talkathon talkathons talkative talkatively talkativeness talkativenesses talkback talkbacks talked talkee talker talkers talkfest talkfests talkful talkie talkier talkies talkiest talkily talkiness talkinesses talking talkings talks talkworthy talky tall tallage tallageability tallageable tallaged tallages tallaging tallahassee tallaisim tallaism tallapoi tallat tallate tallats tallboy tallboys tallegalane tallent tallents taller tallero talles tallest tallet tallets tallgrass talli talliable talliage talliar talliate talliated talliates talliating talliatum tallied tallier talliers tallies tallinn tallis tallises tallish tallisim tallit tallith tallithes tallithim talliths tallitim tallitoth tallits tallness tallnesses talloel tallol tallols tallot tallote tallots tallow tallowberries tallowberry tallowed tallower tallowiness tallowing tallowish tallowlike tallowmaker tallowmaking tallowman tallowroot tallows tallowweed tallowwood tallowy talls tallwood tally tallyho tallyhoed tallyhoing tallyhos tallying tallyman tallymanship tallymen tallyshop tallyshops tallywag tallywalka tallywoman tallywomen talma talmas talmouse talmud talmudic talmudical talmudism talmudisms talmudist talmudists talmuds talocalcaneal talocalcanean talocrural talofibular talon talonavicular taloned talonic talonid talons talooka talookas taloscaphoid talose talotibial talpa talpacoti talpae talpas talpatate talpetate talpicide talpid talpidae talpiform talpify talpine talpoid talshide taltarum talter talthib taluk taluka talukas talukdar talukdari talukdars taluks talus taluses taluto talwar talweg talwegs talwood tam tamabilities tamability tamable tamableness tamablenesses tamably tamacoare tamagotchi tamagotchis tamal tamale tamales tamals tamandu tamandua tamanduas tamandus tamanduy tamanoas tamanoir tamanoirs tamanowus tamanu tamanus tamara tamarack tamaracks tamaraite tamarao tamaraos tamaras tamarau tamaraus tamari tamaricaceae tamaricaceous tamarillo tamarillos tamarin tamarind tamarindo tamarinds tamarindus tamarins tamaris tamarisk tamarisks tamarix tamas tamasha tamashas tamasic tambac tambacs tambak tambaks tambala tambalas tambaroora tamber tambers tambo tamboo tambookie tambor tambour tamboura tambouras tamboured tambourer tambourers tambouret tambourgi tambourin tambourinade tambourine tambourines tambouring tambourinist tambourinists tambourins tambourist tambours tambreet tambur tambura tamburan tamburas tamburello tamburin tamburins tamburitza tamburitzas tamburlaine tamburone tamburs tame tameabilities tameability tameable tameableness tameablenesses tamed tamehearted tameheartedness tamein tameins tameless tamelessly tamelessness tamelessnesses tamely tamenes tameness tamenesses tamer tamerlane tamers tames tamest tamias tamiasciurus tamidine tamil tamin tamine tamines taming tamings tamins taminy tamis tamise tamises tamlung tammany tammar tammars tammie tammies tammock tammuz tammy tamoxifen tamoxifens tamp tampa tampala tampalas tampan tampang tampans tamped tamper tampered tamperer tamperers tampering tamperings tamperproof tampers tampin tamping tampings tampion tampioned tampions tampoe tampon tamponade tamponades tamponage tamponages tamponed tamponing tamponment tampons tampoon tampoy tamps tampur tams tamure tamus tamworth tamworths tan tana tanacetin tanacetone tanacetum tanacetyl tanach tanadar tanadars tanager tanagers tanagra tanagras tanagrine tanagroid tanaist tanaiste tanaistes tanak tanalised tanalized tanan tanas tanbark tanbarks tanbur tanburs tancel tanchoir tandan tandava tandearil tandem tandemer tandemise tandemist tandemize tandems tandemwise tandle tandoor tandoori tandooris tandoors tandour tandsticka tandstickor tane tanega tanekaha tang tanga tangalung tangantangan tanganyika tangas tanged tangeite tangelo tangelos tangence tangences tangencies tangency tangent tangental tangentally tangential tangentialities tangentiality tangentially tangently tangents tanger tangerine tangerines tangfish tangfishes tangham tanghan tanghin tanghinin tanghinins tanghins tangi tangibile tangibilities tangibility tangible tangibleness tangiblenesses tangibles tangibly tangie tangier tangiers tangies tangiest tangile tangilin tanginess tanginesses tanging tangis tangka tanglad tangle tangleberries tangleberry tanglebush tangled tanglefish tanglefishes tanglefoot tanglefoots tanglehead tanglement tanglements tangleproof tangler tangleroot tanglers tangles tanglesome tangless tangleweed tangleweeds tanglewrack tanglier tangliest tangling tanglingly tanglings tangly tango tangoed tangoing tangoist tangoists tangor tangoreceptor tangors tangos tangram tangrams tangs tangue tanguile tanguin tangum tangun tanguns tangy tanh tanha tanhouse tanhs tania tanica tanier taniko taniness tanist tanistic tanistries tanistry tanists tanistship taniwha taniwhas tanjib tanjong tank tanka tankage tankages tankah tankard tankards tankas tankbuster tankbusters tankbusting tankbustings tanked tanker tankerabogus tankers tankert tankette tankful tankfuls tankia tankias tankie tankies tanking tankings tankka tankle tankless tanklike tankmaker tankmaking tankman tankodrome tankroom tanks tankship tankships tankwise tanky tanling tanlings tanna tannable tannadar tannage tannages tannah tannahs tannaic tannaim tannaitic tannalbin tannas tannase tannate tannates tanned tannenberg tanner tanneries tanners tannery tannest tannhauser tannia tannic tannid tannide tanniferous tannigen tannin tannined tanning tannings tanninlike tannins tannish tannocaffeic tannogallate tannogallic tannogelatin tannogen tannoid tannometer tannoy tannoyed tannoying tannoys tanny tannyl tanoa tanoak tanoaks tanoan tanproof tanquam tanquen tanrec tanrecs tans tansel tansey tansies tanstuff tansy tantadlin tantafflin tantalate tantalates tantalic tantaliferous tantalifluoride tantalisation tantalisations tantalise tantalised tantaliser tantalisers tantalises tantalising tantalisingly tantalisingness tantalisings tantalism tantalisms tantalite tantalites tantalization tantalizations tantalize tantalized tantalizer tantalizers tantalizes tantalizing tantalizingly tantalizingness tantalizings tantalofluoride tantalous tantalum tantalums tantalus tantaluses tantamount tantara tantarabobus tantarara tantararas tantaras tantawy tanti tantie tantieme tanties tantilla tantivies tantivy tantle tanto tantonies tantony tantra tantras tantric tantrik tantrism tantrisms tantrist tantrum tantrums tantum tanuki tanukis tanwood tanworks tanyard tanyards tanystomatous tanystome tanzania tanzanian tanzanians tanzanite tanzanites tanzeb tanzib tanzy tao taoiseach taoiseachs taoism taoist taoists taoiya taonga taongas taos taotai taoyin tap tapa tapacolo tapacolos tapaculo tapaculos tapadera tapaderas tapadero tapaderos tapalo tapalos tapamaker tapamaking tapas tapases tapasvi tapayaxin tapdance tapdanced tapdancer tapdancers tapdances tapdancing tape tapeable tapecopy taped tapedrives tapeinocephalic tapeinocephalism tapeinocephaly tapeless tapelike tapeline tapelines tapemaker tapemaking tapeman tapemarks tapemen tapemove tapen tapenade tapenades taper taperbearer tapered taperer taperers tapering taperingly taperings taperly tapermaker tapermaking taperness tapernesses tapers taperstick tapersticks taperwise tapery tapes tapescript tapescripts tapesium tapester tapestried tapestries tapestring tapestry tapestrying tapestrylike tapet tapeta tapetal tapete tapeti tapetis tapetless tapets tapetta tapetum tapework tapeworm tapeworms taphephobia taphephobias taphole tapholes taphonomic taphonomical taphonomies taphonomist taphonomists taphonomy taphophobia taphophobias taphouse taphouses taphrogeneses taphrogenesis tapia tapidero tapinceophalism taping tapings tapinocephalic tapinocephaly tapinophobia tapinophoby tapinosis tapioca tapiocas tapiolite tapir tapiridae tapiridian tapirine tapiroid tapirs tapirus tapis tapiser tapises tapism tapisser tapisserie tapissery tapissier tapist tapists tapit taplash taplashes taplet tapling tapmost tapnet tapoa tapotement tapotements tapoun tappa tappable tappableness tappall tappas tappaul tapped tappen tapper tapperer tappers tappet tappets tappice tappiced tappices tappicing tappietoorie tapping tappings tappish tappit tappoon taproom taprooms taproot taprooted taproots taps tapsalteerie tapsalteeries tapsieteerie tapsieteeries tapsman tapsmen tapster tapsterlike tapsterly tapsters tapstress tapstry tapu tapued tapuing tapul tapus tapwort taqlid taqua taqueria taquerias tar tara tarabooka taracahitian taradiddle taradiddles taraf tarafdar tarage tarahumara tarairi tarakihi tarakihis taraktagenos taraktogenos tarama taramas taramasalata taramasalatas taramellite taramosalata taramosalatas tarand tarands tarantara tarantaraed tarantaraing tarantaras tarantarize tarantas tarantases tarantass tarantasses tarantella tarantellas tarantelle tarantism tarantisms tarantist tarantula tarantulae tarantular tarantulary tarantulas tarantulated tarantulid tarantulism tarantulite tarantulous tarapatch taraph tarapin taras tarassis tarata taratah taratantara taratantaraed taratantaraing taratantaras taratantarize tarau tarawa taraxacerin taraxacin taraxacum taraxacums tarbadillo tarbagan tarball tarballs tarbet tarble tarboard tarbogan tarboggin tarboggined tarboggining tarboggins tarboosh tarbooshed tarbooshes tarboush tarboushes tarbox tarboy tarboys tarbrush tarbrushes tarbush tarbushes tarbuttite tarcel tarcels tarchon tardamente tardando tardant tarde tardied tardier tardies tardiest tardigrada tardigrade tardigrades tardigradous tardiloquent tardiloquous tardiloquy tardily tardiness tardinesses tarditude tardity tardive tardle tardo tardy tardying tardyon tardyons tare tarea tared tarefa tarefitch tarentala tarente tarentism tarentola tarepatch tares tarfa tarflower targe targed targeman targer targes target targetable targeted targeteer targeteers targetier targeting targetless targetlike targetman targets targetshooter targing targum targumical tarheel tarhood tari taricha tarie tariff tariffable tariffed tariffication tariffications tariffing tariffise tariffism tariffist tariffite tariffize tariffless tariffs tarin taring tarings tariqa tariqat tariric taririnic tarish tarkashi tarkeean tarkhan tarlatan tarlataned tarlatans tarleather tarletan tarletans tarlies tarlike tarltonize tarmac tarmacadam tarmacadams tarmacked tarmacking tarmacs tarman tarmined tarmosined tarn tarnal tarnally tarnation tarnations tarnish tarnishable tarnished tarnisher tarnishers tarnishes tarnishing tarnishment tarnishproof tarnkappe tarnlike tarns tarnside taro taroc tarocco tarocs tarogato tarogatos tarok taroks taropatch taros tarot tarots tarp tarpan tarpans tarpaper tarpapered tarpapers tarpaulian tarpaulin tarpauling tarpaulings tarpaulinmaker tarpaulins tarpeian tarpon tarpons tarpot tarps tarpum tarr tarraba tarrack tarradiddle tarradiddler tarradiddles tarragon tarragona tarragons tarras tarrases tarrass tarre tarred tarrer tarres tarri tarriance tarriances tarrie tarried tarrier tarriers tarries tarriest tarrietia tarrify tarrily tarriness tarrinesses tarring tarrings tarrish tarrock tarrocks tarrow tarrowed tarrowing tarrows tarry tarryiest tarrying tarryingly tarryingness tars tarsadenitis tarsal tarsale tarsalgia tarsalgias tarsalia tarsals tarse tarseal tarsealed tarsealing tarseals tarsectomy tarsectopia tarsel tarsels tarsi tarsia tarsias tarsier tarsiers tarsiidae tarsioid tarsioidea tarsiped tarsipeds tarsitis tarsius tarsochiloplasty tarsoclasis tarsomalacia tarsome tarsometatarsal tarsometatarsi tarsometatarsus tarsonemid tarsophalangeal tarsophyma tarsoplasia tarsoplasty tarsoptosis tarsorrhaphy tarsotarsal tarsotibal tarsotomy tarsus tart tartago tartan tartana tartanalia tartanalias tartanas tartane tartaned tartanes tartanries tartanry tartans tartar tartarated tartare tartarean tartareous tartares tartaret tartarian tartaric tartarin tartarine tartarisation tartarisations tartarise tartarised tartarises tartarish tartarising tartarization tartarizations tartarize tartarized tartarizes tartarizing tartarly tartarous tartarproof tartars tartarum tartarus tartary tarte tarted tartemorion tarten tarter tartest tartier tartiest tartily tartine tartines tartiness tartinesses tarting tartish tartishly tartishness tartle tartlet tartlets tartly tartness tartnesses tartralic tartramate tartramic tartramid tartramide tartrate tartrated tartrates tartratoferric tartrazin tartrazine tartrazines tartrazinic tartrelic tartro tartronate tartronic tartronyl tartronylurea tartrous tartryl tartrylic tarts tartufe tartufery tartufes tartuffe tartuffery tartuffes tartuffian tartuffish tartuffishly tartuffism tartufian tartufish tartufishly tartufism tartwoman tartwomen tarty tarve tarvia tarweed tarweeds tarwhine tarwhines tarwood tarworks taryard tarzan tarzans tas tasajillo tasajillos tasajo tasar tasars tasbih tascal tasco taseometer taseometers taser tasered tasering tasers tash tashed tasheriff tashes tashie tashing tashkent tashlik tashmit tashmitum tashreef tashrif tasimeter tasimeters tasimetric tasimetry task taskage taskbar taskbars tasked taskent tasker taskers taskforce tasking taskings taskit taskless tasklike taskmaster taskmasters taskmastership taskmistress taskmistresses tasks tasksetter tasksetting taskwork taskworks taslet taslets tasmania tasmanian tasmanite tass tassago tassah tassal tassard tasse tassel tasseled tasseler tasselet tasselfish tasseling tassell tasselled tasseller tasselling tassellings tassellus tasselly tasselmaker tasselmaking tassels tassely tasser tasses tasset tassets tassie tassies tassoo tasswage tastable tastableness tastably taste tasteable tasteableness tasteably tastebud tastebuds tasted tasteful tastefully tastefulness tastefulnesses tastekin tasteless tastelessly tastelessness tastelessnesses tastemaker tastemakers tasten taster tasters tastes tastetester tastevin tastevins tastier tastiest tastily tastiness tastinesses tasting tastingly tastings tasty tasu tat tatahumara tatami tatamis tatar tatars tatary tataupa tatbeb tatchy tate tater taters tates tath tathata tathed tathing taths tatie taties tatin tatinek tatler tatlers tatmjolk tatoo tatoos tatou tatouay tatouays tatous tatpurusha tatpurushas tats tatsman tatt tatta tatted tatter tatterdemalion tatterdemalionism tatterdemalionry tatterdemalions tatterdemallion tatterdemallions tattered tatteredly tatteredness tattering tatterly tatters tattersail tattersall tattersalls tatterwag tatterwallop tattery tatther tattie tattied tattier tatties tattiest tattily tattiness tattinesses tatting tattings tattle tattled tattlement tattler tattlers tattlery tattles tattletale tattletales tattling tattlingly tattlings tattoo tattooage tattooed tattooer tattooers tattooing tattooist tattooists tattooment tattoos tattow tattowed tattowing tattows tatts tattva tatty tatu tatuasu tatued tatuing tatukira tatus tau taube taubes taught taula taulch tauld taulia taum taun taunt taunted taunter taunters taunting tauntingly tauntingness tauntings tauntress taunts tauon tauons taupe taupes taupie taupies taupo taupou taur tauranga taurean taurian tauric tauricide tauricornous taurid tauriferous tauriform taurin taurine taurines taurite taurobolia taurobolium tauroboliums tauroboly taurocephalous taurocholate taurocholic taurocol taurocolla taurodont tauroesque taurokathapsia taurolatry tauromachia tauromachian tauromachic tauromachies tauromachy tauromaquia tauromorphic tauromorphous taurophile taurophobe taurophobia taurotragus taurus tauruses tauryl taurylic taus taut tautaug tautaugs tauted tautegorical tautegory tauten tautened tautening tautens tauter tautest tauting tautirite tautit tautly tautness tautnesses tautochrone tautochrones tautochronism tautochronisms tautochronous tautog tautoga tautogolabrus tautogs tautoisomerism tautologic tautological tautologically tautologicalness tautologies tautologise tautologised tautologises tautologising tautologism tautologisms tautologist tautologists tautologize tautologized tautologizer tautologizes tautologizing tautologous tautologously tautology tautomer tautomeral tautomeric tautomerism tautomerisms tautomerizable tautomerization tautomerize tautomerized tautomerizing tautomers tautomery tautometer tautometric tautometrical tautomorphous tautonym tautonymic tautonymies tautonymous tautonyms tautonymy tautoousian tautoousious tautophonic tautophonical tautophonies tautophony tautopodic tautopody tautosyllabic tautotype tautourea tautousian tautousious tautozonal tautozonality tauts tav tava tavah tavahs tavas tave tavell taver tavered tavering tavern taverna tavernas taverner taverners tavernise tavernize tavernless tavernlike tavernly tavernous tavernry taverns tavernwards tavers tavert tavestock tavistockite tavola tavolatite tavoy tavs taw tawa tawas tawdered tawdrier tawdries tawdriest tawdrily tawdriness tawdrinesses tawdry tawed tawer taweries tawers tawery tawhai tawhid tawie tawier tawiest tawing tawings tawite tawkee tawkin tawn tawneier tawneiest tawney tawneys tawnie tawnier tawnies tawniest tawnily tawniness tawninesses tawnle tawny tawpi tawpie tawpies tawpy taws tawse tawsed tawses tawsing tawsy tawt tawted tawtie tawtier tawtiest tawting tawts tawyer tax taxa taxabilities taxability taxable taxableness taxablenesses taxables taxably taxaceae taxaceous taxales taxameter taxameters taxaspidean taxation taxational taxations taxative taxatively taxator taxeater taxeating taxed taxeme taxemes taxemic taxeopod taxeopodous taxeopody taxer taxers taxes taxgatherer taxgathering taxi taxiable taxiarch taxiarchs taxiauto taxibus taxicab taxicabs taxicorn taxidea taxidermal taxidermic taxidermies taxidermise taxidermised taxidermises taxidermising taxidermist taxidermists taxidermize taxidermized taxidermizes taxidermizing taxidermy taxidriver taxied taxies taxiing taximan taximen taximeter taximetered taximeters taximetrics taxin taxine taxing taxingly taxings taxinomic taxinomist taxinomy taxiplane taxir taxis taxistand taxite taxites taxitic taxiway taxiways taxless taxlessly taxlessness taxman taxmen taxodiaceae taxodium taxodont taxol taxology taxols taxometer taxon taxonomer taxonomers taxonomic taxonomical taxonomically taxonomies taxonomist taxonomists taxonomize taxonomy taxons taxophytina taxopsida taxor taxors taxpaid taxpayer taxpayers taxpaying taxus taxwax taxwise taxy taxying tay tayalic tayassu tayassuid tayassuidae tayassuids tayberries tayberry tayer tayir taylor taylorite tayra tayras tays taysaam taysmm tazeea tazia tazicef tazza tazzas tazze tb tbilisi tbs tbsp tbssaraglot tc tch tchad tchai tchaikovsky tchapan tcharik tchast tche tcheckup tcheirek tcheka tchervonets tchervonetz tchervontzi tchetvert tchick tchicked tchicking tchicks tchincou tchotchke tchotchkes tchoukball tchoukballs tchr tchu tck tcp tdr tdt te tea teabag teabags teaberries teaberry teaboard teaboards teabowl teabowls teabox teaboxes teaboy teacake teacakes teacart teacarts teach teachabilities teachability teachable teachableness teachablenesses teachably teache teached teacher teacherage teacherdom teacheress teacherhood teacherish teacherless teacherlike teacherly teachers teachership teacherships teachery teaches teachie teaching teachingly teachings teachless teachment teachy teacloth teacup teacupful teacupfuls teacups teacupsful tead teade teades teadish teads teaed teaer teaey teagardeny teagle teagled teagles teagling teague teahouse teahouses teaing teaish teaism teak teakettle teakettles teaks teakwood teakwoods teal tealeafy tealeaves tealery tealess tealike teallite teals team teamaker teamakers teamaking teaman teamed teameo teamer teamers teaming teamings teamland teamless teamman teammate teammates teams teamsman teamster teamsters teamwise teamwork teamworks tean teanal teap teapot teapotful teapots teapottykin teapoy teapoys tear tearable tearableness tearably tearage tearaway tearaways tearcat teardown teardowns teardrop teardrops teared tearer tearers tearful tearfully tearfulness tearfulnesses teargas teargases teargassed teargasses teargassing tearier teariest tearily teariness tearinesses tearing tearingly tearjerker tearjerkers tearjerking tearless tearlessly tearlessness tearlessnesses tearlet tearlike tearoom tearooms tearpit tearproof tears tearsheet tearsheets tearstain tearstained tearstains teart tearthroat tearthumb teary teas teasable teasableness teasably tease teaseable teaseableness teaseably teased teasehole teasel teaseled teaseler teaselers teaseling teaselings teaselled teaseller teasellers teasellike teaselling teasellings teasels teaselwort teasement teaser teasers teases teashop teashops teasiness teasing teasingly teasings teasle teasler teaspoon teaspoonful teaspoonfuls teaspoons teaspoonsful teasy teat teataster teatasters teated teatfish teathe teather teatime teatimes teatlike teatling teatman teats teaty teave teaware teawares teaze teazed teazel teazeled teazeling teazelled teazelling teazels teazer teazes teazing teazle teazled teazles teazling tebbad tebbads tebbet tebeldi tebet tec teca tecali tecassir tech teched techie techier techies techiest techily techiness techinesses techne technetium technetiums technetronic technic technica technical technicalisation technicalise technicalises technicalism technicalist technicalities technicality technicalization technicalizations technicalize technicalized technicalizes technicalizing technically technicalness technicalnesses technicals technician technicians technicise technicised technicises technicising technicism technicisms technicist technicists technicize technicized technicizes technicizing technicological technicology technicolor technicolored technicolour technicoloured technicon technics techniphone technique techniquer techniques technism technist techno technobabble technobabbles technocausis technochemical technochemistry technocracies technocracy technocrat technocratic technocrats technofear technofears technographer technographic technographical technographically technographies technography technojunkie technojunkies technol technolithic technologic technological technologically technologies technologise technologist technologists technologize technologized technologizes technologizing technologue technology technomania technomaniac technomaniacs technomanias technomusic technomusics technonomic technonomy technophile technophiles technophobe technophobes technophobia technophobias technophobic technophobics technopole technopoles technopolis technopolises technopolitan technopolitans technopop technopops technopsychology technos technospeak technospeaks technostress technostresses technostructure technostructures technothriller technothrillers techous techs techy teck teckel teckels tecnoctonia tecnology tecomin tecon tecophilaeacea tecta tectal tectaria tectibranch tectibranchian tectibranchiate tectibranchiates tectibranchs tectiform tectite tectites tectocephalic tectocephaly tectological tectology tectona tectonic tectonically tectonics tectonism tectonisms tectorial tectorium tectosphere tectospinal tectospondylic tectospondylous tectrices tectricial tectrix tectum tectums tecture tecum tecuma tecumseh ted tedded tedder teddered teddering tedders teddie teddies tedding teddy tedesca tedescan tedesche tedeschi tedesco tedge tedier tediest tediosities tediosity tedious tediously tediousness tediousnesses tediousome tedisome tedium tediums teds tedy tee teecall teed teedle teeing teel teels teem teemed teemer teemers teemful teemfulness teeming teemingly teemingness teemingnesses teemless teems teen teenage teenaged teenager teenagers teend teended teending teends teene teened teener teeners teenes teenet teenful teenfully teenfuls teenie teenier teeniest teening teenish teens teensier teensiest teensy teentier teentiest teentsier teentsiest teentsy teenty teeny teenybop teenybopper teenyboppers teeoff teeoffs teepee teepees teer teered teerer teering teers tees teest teet teetaller teetan teetee teeter teeterboard teeterboards teetered teeterer teetering teeteringly teeters teetertail teetery teeth teethache teethbrush teethe teethed teether teethers teethes teethful teethier teethiest teethily teething teethings teethless teethlike teethmarks teethridge teethridges teethy teeting teetotal teetotaled teetotaler teetotalers teetotaling teetotalism teetotalisms teetotalist teetotalists teetotalled teetotaller teetotallers teetotalling teetotally teetotals teetotum teetotumism teetotumize teetotums teetotumwise teetsook teety teevee teewhaap tef teff teffs tefillah tefillin teflon teflons tefs teg tega tegg teggs tegmen tegment tegmenta tegmental tegmentum tegmina tegminal tegs tegu tegua teguas tegucigalpa teguexin teguexins teguguria tegula tegulae tegular tegularly tegulated tegumen tegument tegumenta tegumental tegumentary teguments tegumentum tegumina teguria tegurium tegus tehee teheed teheeing tehees teheran tehr tehrs tehseel tehseeldar tehsil tehsildar teicher teichopsia teichopsias teiglach teiglech teihte teiid teiidae teiids teil teils teind teindable teinded teinder teinding teinds teinland teinoscope teinoscopes teioid teise tejano tejon teju tekedye tekiah tekke tekken tekkie tekkies teknonymies teknonymous teknonymously teknonymy tektite tektites tektitic tektos tektosi tektosil tektosilicate tektronix tekya tel tela telacoustic telae telaesthesia telaesthesias telaesthetic telakucha telamon telamones telang telangiectases telangiectasia telangiectasias telangiectasis telangiectasy telangiectatic telangiosis telanthera telar telarian telarly telary telautogram telautograph telautographic telautographies telautographist telautography telautomatic telautomatically telautomatics telco telcos teld tele teleanemograph teleangiectasia telearchics telebanking telebankings telebarograph telebarometer teleblem telebridge telebridges telecamera telecameras telecast telecasted telecaster telecasters telecasting telecasts telechemic telechir telechiric telechirograph telechirs telecine telecinematography telecines telecode telecom telecomm telecommand telecommands telecommunicate telecommunicated telecommunicates telecommunicating telecommunication telecommunicational telecommunications telecommunicator telecommunicators telecommute telecommuted telecommuter telecommuters telecommutes telecommuting telecommutings telecomputer telecomputing telecoms telecon teleconference teleconferenced teleconferences teleconferencing teleconferencings telecontrol telecontrols teleconverter teleconverters telecottage telecottages telecottaging telecottagings telecourse telecourses telecryptograph telectrograph telectroscope teledendrion teledendrite teledendron teledildonics teledrama teledramas teledu teledus telefacsimile telefacsimiles telefax telefaxed telefaxes telefaxing teleferique teleferiques telefilm telefilms teleg telega telegas telegenic telegenically telegnoses telegnosis telegnostic telegonic telegonies telegonous telegony telegraf telegram telegrammatic telegramme telegrammed telegrammic telegramming telegrams telegraph telegraphed telegraphee telegrapheme telegrapher telegraphers telegraphese telegrapheses telegraphic telegraphical telegraphically telegraphics telegraphies telegraphing telegraphist telegraphists telegraphone telegraphonograph telegraphophone telegraphoscope telegraphs telegraphy telehydrobarometer teleianthous teleiosis telejournalism telejournalisms telejournalist telejournalists telekinematography telekineses telekinesis telekinetic telekinetically telelectric telelectrograph telelectroscope telelens telemachus teleman telemanometer telemark telemarked telemarketer telemarketers telemarketing telemarketings telemarking telemarks telematic telematics telemechanic telemechanics telemechanism telemedicine telemedicines telemen telemetacarpal telemeteorograph telemeteorographic telemeteorography telemeter telemetered telemetering telemeters telemetric telemetrical telemetrically telemetries telemetrist telemetrograph telemetrographic telemetrography telemetry telemotor telencephal telencephala telencephalic telencephalla telencephalon telencephalons telenergic telenergy teleneurite teleneuron telengiscope teleobjective teleocephalous teleoceras teleodesmacean teleodesmaceous teleodont teleologic teleological teleologically teleologies teleologism teleologisms teleologist teleologists teleology teleometer teleonomic teleonomies teleonomy teleophobia teleophore teleophyte teleoptile teleorganic teleoroentgenogram teleoroentgenography teleosaur teleosaurian teleosaurians teleosaurs teleost teleostan teleostean teleosteans teleostei teleosteous teleostomate teleostome teleostomes teleostomian teleostomous teleosts teleotemporal teleotrocha teleozoic teleozoon telepath telepathed telepathic telepathically telepathies telepathing telepathise telepathised telepathises telepathising telepathist telepathists telepathize telepathized telepathizes telepathizing telepaths telepathy teleph telepheme telephemes telepherique telepheriques telephone telephoned telephoner telephoners telephones telephonic telephonical telephonically telephonics telephonies telephoning telephonist telephonists telephonograph telephonographic telephonophobia telephony telephote telephoto telephotograph telephotographed telephotographic telephotographies telephotographing telephotographs telephotography telephotometer telephotos telephoty telepicture teleplasm teleplasmic teleplastic teleplay teleplays telepoint telepoints teleport teleportation teleportations teleported teleporting teleports telepost telepresence telepresences teleprinter teleprinters teleprocessing teleprocessings teleprompter teleprompters teleradiography teleradiophone teleran telerans telerecord telerecorded telerecording telerecordings telerecords telergic telergical telergically telergies telergy telerobotics teles telesale telesales telescience telesciences telescope telescoped telescopes telescopic telescopical telescopically telescopies telescopiform telescoping telescopist telescopists telescopy telescreen telescreens telescribe telescript telescriptor teleseism teleseismic teleseismology teleselling telesellings teleseme telesemes teleservices teleses teleshop teleshopped teleshopper teleshoppers teleshopping teleshoppings teleshops telesia telesis telesiurgic telesm telesmatic telesmatical telesmatically telesmeter telesms telesoftware telesoftwares telesomatic telespectroscope telespectroscopes telestereograph telestereography telestereoscope telestereoscopes telesteria telesterion telesthesia telesthesias telesthetic telestial telestic telestich telestichs telestics teletactile teletactor teletape teletex teletexes teletext teletexts teletheater teletheaters teletherapy telethermogram telethermograph telethermometer telethermometry telethermoscope telethon telethons teletopometer teletranscription teletranscriptions teletron teletrons teletube teletype teletyped teletyper teletypes teletypesetter teletypesetting teletypewrite teletypewriter teletypewriters teletypewriting teletyping teletypist teletypists teleuto teleutoform teleutosori teleutosorus teleutosorusori teleutospore teleutospores teleutosporic teleutosporiferous televangelical televangelism televangelisms televangelist televangelists televerite televerites teleview televiewed televiewer televiewers televiewing televiews televise televised televiser televisers televises televising television televisional televisionally televisionary televisions televisor televisors televisual televisually televize televocal televox televérité teleworker teleworkers teleworking teleworkings telewriter telewriters telex telexed telexes telexing telfairic telfer telferage telferages telfered telferic telfering telfers telford telfordize telfordized telfordizing telfords telharmonic telharmonium telharmony teli telia telial telic telical telically telicity teliferous telinga telint teliosorus teliospore teliospores teliosporic teliosporiferous teliostage telium tell tellable tellach tellar tellared tellaring tellars tellee tellen tellens teller tellered tellering tellers tellership tellerships tellies tellieses telligraph tellima tellin tellinacean tellinaceous telling tellingly tellings tellinoid tellins tells tellsome tellt telltale telltalely telltales telltruth tellural tellurate tellurates telluret tellureted tellurethyl telluretted tellurhydric tellurian tellurians telluric telluride tellurides telluriferous tellurion tellurions tellurise tellurised tellurises tellurising tellurism tellurist tellurite tellurites tellurium telluriums tellurize tellurized tellurizes tellurizing tellurometer tellurometers telluronium tellurous tellus telluses telly tellys telmatological telmatology telnet telneted telneting telnets telnetted telnetting teloblast teloblastic telocentric telocentrics telodendria telodendrion telodendron telodynamic teloi telokinesis telolecithal telolemma telolemmata telome telomere telomeres telomerization telomes telomic telomitic telonism telopea telophase telophases telophasic telophragma telopsis teloptic telos teloses telosporidia telosynapsis telosynaptic telosynaptist telotaxes telotaxis teloteropathic teloteropathically teloteropathy telotrematous telotroch telotrocha telotrochal telotrochous telotrophic telotype telpath telpher telpherage telpherages telphered telpheric telphering telpherline telpherlines telpherman telphermen telphers telpherway telpherways tels telson telsonic telsons telsontail telt telugu telurgy telyn tem temacha temadau temalacatl teman temazepam temazepams tembe tembeitera tembeta tembetara temblor temblores temblors teme temed temene temenos temenoses temerarious temerariously temerariousness temerariousnesses temerate temerities temeritous temerity temerous temerously temerousness temes temescal temiak temin temmoku temmokus temnospondyli temnospondylous temp tempe temped tempeh tempehs temper tempera temperabilities temperability temperable temperably temperalitie temperalities temperality temperament temperamental temperamentalist temperamentally temperamentalness temperamented temperamentful temperaments temperance temperances temperas temperate temperated temperately temperateness temperatenesses temperates temperating temperative temperature temperatures tempered temperedly temperedness temperer temperers tempering temperings temperish temperless tempers tempersome tempery tempes tempest tempested tempestical tempesting tempestive tempestively tempestivity tempests tempestuous tempestuously tempestuousness tempestuousnesses tempesty tempete tempi temping templar templardom templarism templarlike templarlikeness templars templary template templater templates temple templed templeful templeless templelike temples templet templetonia templets templeward templise templize templon templum tempo tempolabile tempora temporal temporale temporalis temporalise temporalised temporalises temporalising temporalism temporalist temporalities temporality temporalize temporalized temporalizes temporalizing temporally temporalness temporalnesses temporals temporalties temporalty temporaneous temporaneously temporaneousness temporaries temporarily temporariness temporarinesses temporary temporator tempore temporisation temporisations temporise temporised temporiser temporisers temporises temporising temporisingly temporisings temporist temporization temporizations temporize temporized temporizer temporizers temporizes temporizing temporizingly temporizings temporoalar temporoauricular temporocentral temporocerebellar temporofacial temporofrontal temporohyoid temporomalar temporomandibular temporomastoid temporomaxillary temporooccipital temporoparietal temporopontine temporosphenoid temporosphenoidal temporozygomatic tempos tempra tempre temprely temps tempt temptabilities temptability temptable temptableness temptablenesses temptation temptational temptationless temptations temptatious temptatory tempted tempter tempters tempting temptingly temptingness temptingnesses temptings temptress temptresses tempts temptsome tempura tempuras tempus tems temse temsebread temsed temseloaf temser temses temsing temulence temulences temulencies temulency temulent temulentive temulently ten tenabilities tenability tenable tenableness tenablenesses tenably tenace tenaces tenacious tenaciously tenaciousness tenaciousnesses tenacities tenacity tenacle tenacula tenaculum tenaculums tenacy tenai tenail tenaille tenailles tenaillon tenaillons tenails tenaim tenalgia tenancies tenancy tenant tenantable tenantableness tenanted tenanter tenanting tenantism tenantless tenantlike tenantries tenantry tenants tenantship tenantships tench tenches tenchweed tend tendable tendance tendances tendant tended tendejon tendence tendences tendencies tendencious tendenciously tendenciousness tendency tendent tendential tendentially tendentious tendentiously tendentiousness tendentiousnesses tendenz tender tenderability tenderable tenderably tendered tenderee tenderer tenderers tenderest tenderfeet tenderfoot tenderfootish tenderfoots tenderful tenderfully tendergreen tenderheart tenderhearted tenderheartedly tenderheartedness tenderheartednesses tendering tenderings tenderisation tenderisations tenderise tenderised tenderiser tenderisers tenderises tenderish tenderising tenderization tenderizations tenderize tenderized tenderizer tenderizers tenderizes tenderizing tenderling tenderlings tenderloin tenderloins tenderly tenderminded tenderness tendernesses tenderometer tenderometers tenders tendersome tendicle tendido tendinal tendineal tending tendingly tendinitis tendinitises tendinous tendinousness tendment tendo tendomucin tendomucoid tendon tendonitis tendonitises tendonous tendons tendoor tendoplasty tendosynovitis tendotome tendotomy tendour tendovaginal tendovaginitis tendovaginitises tendrac tendre tendrel tendres tendresse tendresses tendril tendriled tendriliferous tendrillar tendrilled tendrillous tendrilly tendrilous tendrils tendron tendrons tendry tends tendu tendus tene tenebra tenebrae tenebres tenebricose tenebrific tenebrificate tenebrio tenebrion tenebrionid tenebrionidae tenebrionids tenebrios tenebrious tenebriously tenebriousness tenebrism tenebrisms tenebrist tenebrists tenebrities tenebrity tenebrose tenebrosi tenebrosities tenebrosity tenebrous tenebrously tenebrousness tenebrousnesses tenectomy tenement tenemental tenementary tenemented tenementer tenementisation tenementise tenementization tenementize tenements tenementum tenenda tenendas tenendum tenendums tenent teneral teneramente tenerity tenes tenesmic tenesmus tenesmuses tenet tenets tenez tenfold tenfoldness tenfolds teng tenga tenge tengere tengerite tenges tengu tenia teniacidal teniacide teniacides teniae teniafuge teniafuges tenias teniases teniasis teniasises teniate tenible teniente tenio tenioid tenla tenline tenmantale tennantite tennantites tenne tenner tenners tennes tennessean tennesseans tennessee tennesseeans tennies tennis tennisdom tennises tennist tennists tennisy tenno tennos tennu tenny tennyson tennysonian tenné tenodesis tenodynia tenography tenology tenomyoplasty tenomyotomy tenon tenonectomy tenoned tenoner tenoners tenonian tenoning tenonitis tenonostosis tenons tenontagra tenontitis tenontodynia tenontography tenontolemmitis tenontology tenontomyoplasty tenontomyotomy tenontophyma tenontoplasty tenontothecitis tenontotomy tenophony tenophyte tenoplastic tenoplasty tenor tenore tenoretic tenorino tenorist tenorister tenorists tenorite tenorites tenorless tenormin tenoroon tenoroons tenorrhaphies tenorrhaphy tenors tenositis tenostosis tenosuture tenosynovitis tenosynovitises tenotome tenotomies tenotomist tenotomists tenotomize tenotomy tenovaginitis tenovaginitises tenpence tenpences tenpenny tenpin tenpins tenpounder tenpounders tenrec tenrecidae tenrecs tens tensas tensaw tense tensed tensegrity tenseless tenselessly tenselessness tensely tenseness tensenesses tenser tenses tensest tensibilities tensibility tensible tensibleness tensibly tensify tensile tensilely tensileness tensilenesses tensilities tensility tensimeter tensimeters tensing tensiometer tensiometers tensiometric tensiometries tensiometry tension tensional tensionally tensioned tensioner tensioners tensioning tensionless tensions tensities tensity tensive tenso tensome tensometer tenson tensons tensor tensorial tensors tensorship tenspot tensure tent tentability tentable tentacle tentacled tentaclelike tentacles tentacula tentacular tentaculata tentaculate tentaculated tentaculiferous tentaculite tentaculites tentaculocyst tentaculoid tentaculum tentage tentages tentamen tentation tentations tentative tentatively tentativeness tentativenesses tentatives tented tenter tenterbelly tentered tenterer tenterhook tenterhooks tentering tenters tentful tentfuls tenth tenthly tenthmeter tenthmetre tenthredinid tenthredinidae tenthredinoid tenthredo tenths tenticle tentie tentier tentiest tentiform tentiginous tentigo tentigos tentilla tentillum tentily tenting tentings tention tentless tentlet tentlike tentmaker tentmaking tentmate tentor tentoria tentorial tentorium tentoriums tentortoria tentory tents tenture tentwards tentwise tentwork tentwort tenty tenuate tenue tenues tenuicostate tenuifasciate tenuiflorous tenuifolious tenuious tenuiroster tenuirostral tenuirostrate tenuis tenuistriate tenuit tenuities tenuity tenuous tenuously tenuousness tenuousnesses tenurable tenure tenured tenures tenurial tenurially tenuring tenury tenuti tenuto tenutos tenzon tenzone tenzons teocalli teocallis teonanacatl teopan teopans teosinte teosintes tepa tepache tepal tepals teparies tepary tepas tepe tepee tepees tepefaction tepefactions tepefied tepefies tepefy tepefying tepetate tephigram tephigrams tephillah tephillim tephillin tephra tephramancy tephras tephrite tephrites tephritic tephroite tephroites tephromalacia tephromancies tephromancy tephromyelitic tephrosia tephrosis tepid tepidaria tepidarium tepidariums tepider tepidest tepidities tepidity tepidly tepidness tepidnesses tepomporize teponaztli tepor tepoy tepoys tequila tequilas tequilla tequillas ter tera terabit terabits terabyte terabytes teraflop teraflops teraglin terahertz terahertzes terai terais terakihi terakihis teramorphous teraohm teraohms terap teraph teraphim teraphims terapixel terapixels teras terass terata teratic teratical teratism teratisms teratoblastoma teratocarcinoma teratocarcinomas teratocarcinomata teratogen teratogeneses teratogenesis teratogenetic teratogenic teratogenicities teratogenicity teratogenies teratogenous teratogens teratogeny teratoid teratologic teratological teratologies teratologist teratologists teratology teratoma teratomas teratomata teratomatous teratophobia teratoscopy teratosis terawatt terawatts terbia terbias terbic terbium terbiums terce tercel tercelet tercelets tercels tercentenarian tercentenaries tercentenarize tercentenary tercentennial tercentennials tercer terceron terceroon terces tercet tercets terchloride tercia tercine tercio tercios terdiurnal terebate terebella terebellid terebellidae terebelloid terebellum terebene terebenes terebenic terebenthene terebic terebilic terebinic terebinth terebinthial terebinthian terebinthic terebinthina terebinthinate terebinthine terebinthinous terebinths terebra terebrae terebral terebrant terebrants terebras terebrate terebrated terebrates terebrating terebration terebrations terebratula terebratulae terebratular terebratulas terebratulid terebratuliform terebratuline terebratulite terebratuloid teredines teredinid teredinidae teredo teredos terefa terefah terek tereks terentian terephah terephthalate terephthalates terephthalic terephthallic teres terete teretes teretial tereticaudate teretifolious teretipronator teretiscapular teretiscapularis teretish teretism tereu tereus terf terfe terfes terfez terfs terga tergal tergant tergeminal tergeminate tergeminous tergiferous tergite tergites tergitic tergiversant tergiversants tergiversate tergiversated tergiversates tergiversating tergiversation tergiversations tergiversator tergiversators tergiversatory tergiverse tergolateral tergum teriyaki teriyakis terlinguaite term terma termagancies termagancy termagant termagantish termagantism termagantly termagants termage termal terman termatic termed termen termer termers termes termillenary termin terminabilities terminability terminable terminableness terminablenesses terminably terminal terminalis terminalisation terminalised terminalization terminalized terminally terminals terminant terminate terminated terminates terminating termination terminational terminations terminative terminatively terminator terminators terminatory termine terminer terminers terming termini terminine terminism terminisms terminist terministic terminists terminize termino terminological terminologically terminologies terminologist terminologists terminology terminus terminuses termital termitaria termitaries termitarium termitariums termitary termite termites termitic termitid termitidae termitophagous termitophile termitophilous termless termlessly termlessness termlies termly termolecular termon termor termors terms termtime termtimes termwise tern terna ternal ternar ternariant ternaries ternarious ternary ternate ternately ternatipinnate ternatisect ternatopinnate terne terned terneplate terneplates terner ternery ternes terning ternion ternions ternise ternize ternlet terns terotechnologies terotechnology teroxide terp terpadiene terpane terpen terpene terpeneless terpenes terpenic terpenoid terpenoids terphenyl terpilene terpin terpine terpinene terpineol terpineols terpinol terpinolene terpinols terpodion terpolymer terpolymers terpsichore terpsichoreal terpsichoreally terpsichorean terpsichoreans terr terra terrace terraced terraceless terraceous terracer terraces terracette terracettes terracewards terracewise terracework terraciform terracing terracings terracotta terracottas terraculture terrae terraefilial terraefilian terraform terraformed terraforming terraformings terraforms terrage terrain terrains terral terramara terramare terramares terramycin terran terrane terranean terraneous terranes terrapene terrapin terrapins terraquean terraquedus terraqueous terraqueousness terrar terraria terrariia terrariiums terrarium terrariums terras terrases terrasse terrazzo terrazzos terre terreen terreens terreity terrella terrellas terremotive terrene terrenely terreneness terrenes terreno terreous terreplein terrepleins terrestrial terrestrialise terrestrialism terrestriality terrestrialize terrestrially terrestrialness terrestrialnesses terrestrials terrestricity terrestrify terrestrious terret terreted terrets terribilita terribilities terribility terrible terribleness terriblenesses terribles terribly terricole terricoles terricoline terricolist terricolous terrie terrier terrierlike terriers terries terrietia terrific terrifical terrifically terrification terrificly terrificness terrified terrifiedly terrifier terrifiers terrifies terrify terrifying terrifyingly terrigene terrigenous terriginous terrine terrines territ territelarian territorality territorial territorialisation territorialisations territorialise territorialised territorialises territorialising territorialism territorialisms territorialist territorialists territorialities territoriality territorialization territorializations territorialize territorialized territorializes territorializing territorially territorials territorian territoried territories territory territs terron terror terrorful terrorific terrorisation terrorisations terrorise terrorised terroriser terrorisers terrorises terrorising terrorism terrorisms terrorist terroristic terroristical terrorists terrorization terrorizations terrorize terrorized terrorizer terrorizers terrorizes terrorizing terrorless terrorproof terrors terrorsome terrs terry terrycloth tersanctus tersanctuses terse tersely terseness tersenesses terser tersest tersion tersions tersulfid tersulfide tersulphate tersulphid tersulphide tersulphuret tertenant tertia tertial tertials tertian tertiana tertians tertianship tertiarian tertiaries tertiary tertias tertiate tertigravida tertii tertio tertium tertius terton tertrinal tertry terts tertulia teruah teruncius terutero teruteru tervalence tervalencies tervalency tervalent tervariant tervee terylene terylenes terzet terzetta terzettas terzetti terzetto terzettos terzina terzio terzo tes tesack tesarovitch tescaria teschenite teschenites teschermacherite teskere teskeria tesla teslas tessara tessarace tessaraconter tessaradecad tessaraglot tessaraphthong tessarescaedecahedron tessel tesselate tesselated tesselating tesselation tessella tessellae tessellar tessellate tessellated tessellates tessellating tessellation tessellations tessellite tessera tesseract tesseracts tesseradecade tesserae tesseraic tesseral tesserarian tesserate tesserated tesseratomic tesseratomy tessin tessitura tessituras tessiture tessular test testa testabilities testability testable testacea testacean testaceography testaceology testaceous testaceousness testacies testacy testae testament testamenta testamental testamentally testamentalness testamentar testamentarily testamentary testamentate testamentation testaments testamentum testamur testamurs testandi testao testar testas testata testate testates testation testations testator testators testatorship testatory testatrices testatrix testatrixes testatum testatums testbed testbeds testcard testcross testcrossed testcrosses testcrossing teste tested testee testees tester testern testerned testerning testerns testers testes testibrachial testibrachium testicardinate testicardine testicardines testicle testicles testicond testicular testiculate testiculated testier testiere testiest testificate testificates testification testifications testificator testificators testificatory testified testifier testifiers testifies testify testifying testily testimonia testimonial testimonialisation testimonialise testimonialised testimonialiser testimonialises testimonialising testimonialist testimonialization testimonialize testimonialized testimonializer testimonializes testimonializing testimonials testimonied testimonies testimonium testimony testimonying testiness testinesses testing testingly testings testis testitis testmatch teston testone testons testoon testoons testor testosterone testosterones testpatient testril testrill testrills testrils tests testudinal testudinarian testudinarious testudinary testudinata testudinate testudinated testudinates testudineal testudineous testudines testudinidae testudinous testudo testudos testule testy tesvino tet tetanal tetania tetanic tetanical tetanically tetanics tetanies tetaniform tetanigenous tetanilla tetanine tetanisation tetanisations tetanise tetanised tetanises tetanising tetanism tetanization tetanizations tetanize tetanized tetanizes tetanizing tetanoid tetanolysin tetanomotor tetanospasmin tetanotoxin tetanus tetanuses tetany tetarcone tetarconid tetard tetartemorion tetartocone tetartoconid tetartohedral tetartohedrally tetartohedrism tetartohedron tetartoid tetartosymmetry tetch tetched tetchier tetchiest tetchily tetchiness tetchinesses tetchy tete tetel teterrimous teth tethelin tether tetherball tetherballs tethered tethering tethers tethery teths tethydan tethyidae tethys tetotum tetotums tetra tetraamylose tetrabasic tetrabasicities tetrabasicity tetrabelodont tetrabiblos tetraborate tetraboric tetrabrach tetrabrachs tetrabranch tetrabranchiate tetrabranchiates tetrabromid tetrabromide tetrabromo tetrabromoethane tetrabromofluorescein tetracadactylity tetracaine tetracaines tetracarboxylate tetracarboxylic tetracarpellary tetracene tetraceratous tetracerous tetrachical tetrachlorethylene tetrachlorethylenes tetrachlorid tetrachloride tetrachlorides tetrachloro tetrachloroethane tetrachloroethylene tetrachloroethylenes tetrachloromethane tetrachloromethanes tetrachord tetrachordal tetrachordon tetrachords tetrachoric tetrachotomies tetrachotomous tetrachotomy tetrachromatic tetrachromic tetrachronous tetracid tetracids tetraclinis tetracocci tetracoccous tetracoccus tetracolic tetracolon tetracoral tetracoralline tetracosane tetract tetractinal tetractine tetractinellid tetractinellidan tetractinelline tetractinose tetracts tetractys tetracyclic tetracycline tetracyclines tetrad tetradactyl tetradactyle tetradactylies tetradactylous tetradactyls tetradactyly tetradarchy tetradecane tetradecanoic tetradecapod tetradecapodan tetradecapodous tetradecyl tetradiapason tetradic tetradite tetradites tetradrachm tetradrachma tetradrachmal tetradrachmon tetradrachms tetrads tetradymite tetradymites tetradynamia tetradynamian tetradynamious tetradynamous tetraedron tetraedrum tetraethyl tetraethyllead tetraethylleads tetraethylsilane tetrafluoride tetrafluorides tetrafluoroethylene tetrafluouride tetrafolious tetragamy tetragenous tetraglot tetraglottic tetragon tetragonal tetragonally tetragonalness tetragonia tetragoniaceae tetragonidium tetragonous tetragons tetragonurus tetragonus tetragram tetragrammata tetragrammatic tetragrammaton tetragrammatonic tetragrammatons tetragrams tetragrid tetragyn tetragynia tetragynian tetragynous tetrahalide tetrahedra tetrahedral tetrahedrally tetrahedric tetrahedrite tetrahedrites tetrahedroid tetrahedron tetrahedrons tetrahexahedral tetrahexahedron tetrahydrate tetrahydrated tetrahydric tetrahydrid tetrahydride tetrahydro tetrahydrocannabinol tetrahydrocannabinols tetrahydrofolate tetrahydrofolates tetrahydrofuran tetrahydrofurans tetrahydropyrrole tetrahydroxy tetrahymena tetrahymenas tetraiodid tetraiodide tetraiodo tetraiodophenolphthalein tetraiodopyrrole tetrakaidecahedron tetraketone tetrakis tetrakisazo tetrakishexahedra tetrakishexahedron tetrakishexahedrons tetralemma tetralite tetralogic tetralogies tetralogue tetralogy tetralophodont tetramastia tetramastigote tetramer tetrameral tetrameralian tetrameric tetramerism tetramerisms tetramerous tetramers tetrameter tetrameters tetramethyl tetramethylammonium tetramethyldiarsine tetramethylene tetramethylium tetramethyllead tetramethylleads tetramethylsilane tetrametric tetramin tetramine tetrammine tetramorph tetramorphic tetramorphism tetramorphous tetrander tetrandria tetrandrian tetrandrous tetrane tetraneuris tetranitrate tetranitro tetranitroaniline tetranitromethane tetrant tetranuclear tetranychid tetranychidae tetrao tetraodont tetraodontidae tetraonid tetraonidae tetraonine tetrapartite tetrapetalous tetraphalangeate tetrapharmacal tetrapharmacon tetraphenol tetraphony tetraphosphate tetraphyllous tetrapla tetraplas tetraplegia tetraplegias tetraplegic tetrapleuron tetraploid tetraploidic tetraploidies tetraploids tetraploidy tetraplous tetrapneumonian tetrapneumonous tetrapod tetrapodic tetrapodies tetrapodous tetrapods tetrapody tetrapolar tetrapolis tetrapolises tetrapolitan tetrapous tetraprostyle tetrapteran tetrapteron tetrapterous tetraptote tetraptotes tetrapturus tetraptych tetrapyla tetrapylon tetrapyramid tetrapyrenous tetrapyrrole tetrapyrroles tetraquetrous tetrarch tetrarchate tetrarchates tetrarchic tetrarchical tetrarchies tetrarchs tetrarchy tetras tetrasaccharide tetrasalicylide tetraselenodont tetraseme tetrasemic tetrasepalous tetraskele tetraskelion tetrasome tetrasomic tetrasomy tetraspermal tetraspermatous tetraspermous tetraspgia tetraspheric tetrasporange tetrasporangia tetrasporangiate tetrasporangium tetraspore tetraspores tetrasporic tetrasporiferous tetrasporous tetraster tetrastich tetrastichal tetrastichic tetrastichous tetrastichs tetrastoon tetrastyle tetrastyles tetrastylic tetrastylos tetrastylous tetrasubstituted tetrasubstitution tetrasulfid tetrasulfide tetrasulphid tetrasulphide tetrasyllabic tetrasyllabical tetrasyllable tetrasyllables tetrasymmetry tetrathecal tetratheism tetratheisms tetratheist tetratheite tetrathionates tetrathionic tetrathlon tetrathlons tetratomic tetratone tetravalence tetravalences tetravalency tetravalent tetraxial tetraxile tetraxon tetraxonian tetraxonid tetraxons tetrazane tetrazene tetrazin tetrazine tetrazo tetrazole tetrazolium tetrazoliums tetrazolyl tetrazone tetrazotization tetrazotize tetrazyl tetrazzini tetrdra tetremimeral tetrevangelium tetri tetric tetrical tetricalness tetricity tetricous tetrifol tetrigid tetriodide tetrobol tetrobolon tetrode tetrodes tetrodon tetrodont tetrodotoxin tetrodotoxins tetrol tetrole tetrolic tetronal tetronals tetronic tetronymal tetrose tetrotoxin tetrotoxins tetrous tetroxalate tetroxid tetroxide tetroxides tetroxids tetrsyllabical tetryl tetrylene tetryls tets tetter tettered tettering tetterish tetterous tetters tetterworm tetterwort tettery tettigoniid tettigoniidae tettish tettix tettixes tetty teuch teuchat teuchats teucher teuchest teuchit teuchter teuchters teucrin teucrium teufit teugh teugher teughest teughly teughness teuk teuton teutonic teutonise teutonism teutonist teutonize teutonized teutonizes teutonizing teutons tevatron tevatrons tevere tevet teviss tew tewart tewarts tewed tewel tewels tewer tewhit tewhits tewing tewit tewits tewly tews tewsome tewtaw tewter tex texaco texan texans texas texases texguino text textarian textbook textbookish textbookless textbooks textiferous textile textiles textilist textless textlet textman textorial textphone textphones textrine texts textual textualism textualisms textualist textualists textuality textually textuaries textuarist textuary textuist textural texturally texture textured textureless textures texturing texturise texturised texturises texturising texturize texturized texturizer texturizers texturizes texturizing textus tez tezkere tezkirah tfr tg tgn tgt th tha thack thacked thacker thacking thackless thackoor thacks thaddeus thae thagi thagis thai thailand thaim thairm thairms thak thakur thakurate thala thalamencephala thalamencephalic thalamencephalon thalamencephalons thalami thalamia thalamic thalamically thalamifloral thalamiflorous thalamite thalamium thalamiumia thalamocele thalamocoele thalamocortical thalamocrural thalamolenticular thalamomammillary thalamopeduncular thalamotegmental thalamotomies thalamotomy thalamus thalarctos thalassa thalassaemia thalassaemias thalassaemic thalassal thalassemia thalassemias thalassemic thalassemics thalassian thalassians thalassiarch thalassic thalassical thalassinian thalassinid thalassinidian thalassinoid thalassiophyte thalassiophytous thalasso thalassocracies thalassocracy thalassocrat thalassocrats thalassographer thalassographers thalassographic thalassographical thalassographies thalassography thalassoma thalassometer thalassophilous thalassophobia thalassotherapies thalassotherapy thalatta thalattocracies thalattocracy thalattology thalenite thaler thalerophagous thalers thalia thaliacea thaliacean thalian thalictrum thalictrums thalidomide thalidomides thalli thallic thalliferous thalliform thallin thalline thallious thallium thalliums thallochlore thallodal thallodic thallogen thallogenic thallogenous thallogens thalloid thalloidal thallome thallophyta thallophyte thallophytes thallophytic thallose thallous thallus thalluses thalmencephalon thalposis thalpotic thalthan thalweg thalwegs thamakau thameng thames thamin thammuz thamnium thamnophile thamnophiline thamnophilus thamnophis thamuria than thana thanadar thanadars thanage thanages thanah thanahs thanan thanas thanatism thanatisms thanatist thanatists thanatobiologic thanatognomonic thanatographer thanatographies thanatography thanatoid thanatological thanatologies thanatologist thanatologists thanatology thanatomantic thanatometer thanatophidia thanatophidian thanatophobe thanatophobia thanatophobiac thanatophobias thanatophoby thanatopses thanatopsis thanatopsises thanatos thanatoses thanatosis thanatotic thanatousia thane thanedom thanedoms thanehood thanehoods thaneland thanes thaneship thaneships thaness thank thanked thankee thankees thanker thankers thankful thankfuller thankfullest thankfully thankfulness thankfulnesses thanking thankings thankless thanklessly thanklessness thanklessnesses thanks thanksgiver thanksgivers thanksgiving thanksgivings thankworthily thankworthiness thankworthinesses thankworthy thankyou thankyous thanna thannadar thannah thannahs thannas thans thapes thapsia thar tharborough tharboroughs tharf tharfcake tharginyah tharm tharms thars that thataway thatch thatched thatcher thatchers thatches thatchier thatchiest thatching thatchings thatchless thatcht thatchwood thatchwork thatchy thatd thatll thatn thatness thatnesses thats thaught thaumasite thaumasites thaumatin thaumatins thaumatogenies thaumatogeny thaumatographies thaumatography thaumatolatries thaumatolatry thaumatologies thaumatology thaumatrope thaumatropes thaumatropical thaumaturge thaumaturges thaumaturgi thaumaturgia thaumaturgic thaumaturgical thaumaturgics thaumaturgies thaumaturgism thaumaturgisms thaumaturgist thaumaturgists thaumaturgus thaumaturguses thaumaturgy thaumoscopic thave thaw thawable thawed thawer thawers thawier thawiest thawing thawings thawless thawn thaws thawy thb thd the thea theaceae theaceous theah theandric theanthropic theanthropical theanthropies theanthropism theanthropisms theanthropist theanthropists theanthropology theanthropophagy theanthropos theanthroposophy theanthropy thearchic thearchies thearchy theasum theat theater theatercraft theatergoer theatergoers theatergoing theatergoings theaterless theaterlike theaters theaterward theaterwards theaterwise theatine theatral theatre theatregoer theatregoers theatregoing theatregoings theatreless theatrelike theatres theatric theatricable theatrical theatricalisation theatricalisations theatricalise theatricalised theatricalises theatricalising theatricalism theatricalisms theatricalities theatricality theatricalization theatricalizations theatricalize theatricalized theatricalizes theatricalizing theatrically theatricalness theatricalnesses theatricals theatrician theatricise theatricised theatricises theatricising theatricism theatricisms theatricize theatricized theatricizes theatricizing theatrics theatrize theatrocracy theatrograph theatromania theatromaniac theatromanias theatron theatrophile theatrophobia theatrophone theatrophones theatrophonic theatropolis theatroscope theatry theatticalism theave theaves theb thebaic thebaid thebain thebaine thebaines thebaism theban thebe theberge thebes theca thecae thecal thecaphore thecasporal thecaspore thecaspored thecasporous thecate thecia thecial thecitis thecium thecla theclan thecodont thecodontia thecodonts thecoglossate thecoid thecosomatous thed thee theed theedom theeing theek theeked theeker theeking theeks theelin theelins theelol theelols theer thees theet theetsee theezan theft theftboot theftboots theftbote theftbotes theftdom theftless theftproof thefts theftuous theftuously thegether thegidder thegither thegn thegndom thegnhood thegnland thegnlike thegnly thegns thegnship thegnworthy theia theic theics theiform thein theine theines theinism theins their theirn theirs theirself theirselves theirsens theism theisms theist theistic theistical theistically theists thelalgia thelement thelements thelemite thelephoraceae thelf theligonaceous thelion thelitis thelitises thelium theloncus thelorrhagia thelphusian thelves thelyblast thelyblastic thelyotokous thelyotoky thelyplasty thelypteridaceae thelypteris thelytocia thelytokies thelytokous thelytoky thelytonic them thema themas themata thematic thematical thematically thematics thematist theme themed themeless themelet themer themes theming themis themsel themself themselves then thenabout thenabouts thenad thenadays thenage thenages thenal thenar thenardite thenars thence thenceafter thenceforth thenceforward thenceforwards thencefoward thencefrom thenceward thenne thenness thens theoanthropomorphic theoanthropomorphism theoastrological theobroma theobromic theobromin theobromine theobromines theocentric theocentricism theocentricisms theocentricities theocentricity theocentrism theocentrisms theochristic theocollectivism theocollectivist theocracies theocracy theocrasia theocrasical theocrasies theocrasy theocrat theocratic theocratical theocratically theocratist theocrats theodemocracy theodicaea theodicean theodiceans theodicies theodicy theodidact theodolite theodolites theodolitic theodore theodosian theodosianus theodrama theody theogamy theogeological theognostic theogonal theogonic theogonical theogonies theogonism theogonist theogonists theogony theohuman theokrasia theoktonic theoktony theol theolatrous theolatry theolepsy theoleptic theolog theologal theologaster theologasters theologastric theologate theologates theologeion theologer theologers theologi theologian theologians theologic theological theologically theologician theologicoastronomical theologicoethical theologicohistorical theologicometaphysical theologicomilitary theologicomoral theologiconatural theologicopolitical theologics theologies theologisation theologise theologised theologiser theologisers theologises theologising theologism theologist theologists theologium theologization theologize theologized theologizer theologizers theologizes theologizing theologoumena theologoumenon theologs theologue theologues theologus theology theomachia theomachies theomachist theomachists theomachy theomagic theomagical theomagics theomagy theomammomist theomancies theomancy theomania theomaniac theomaniacs theomanias theomantic theomastix theomicrist theomisanthropist theomorphic theomorphism theomorphisms theomorphize theomythologer theomythology theonomies theonomous theonomously theonomy theopantism theopaschite theopaschitic theopathetic theopathic theopathies theopathy theophagic theophagies theophagite theophagous theophagy theophania theophanic theophanies theophanism theophanous theophany theophilanthrope theophilanthropic theophilanthropies theophilanthropism theophilanthropisms theophilanthropist theophilanthropists theophilanthropy theophile theophilist theophilosophic theophilus theophobia theophobiac theophobiacs theophobias theophobist theophobists theophoric theophorous theophrastaceae theophrastaceous theophyllin theophylline theophyllines theophysical theopneust theopneusted theopneustia theopneustic theopneusties theopneusty theopolitician theopolitics theopolity theopsychism theor theorbist theorbists theorbo theorbos theorem theorematic theorematical theorematically theorematist theorematists theoremic theorems theoretic theoretical theoreticalism theoretically theoreticalness theoretician theoreticians theoreticopractical theoretics theoria theoriai theoric theorica theorical theorically theorician theoricon theorics theories theorique theoriques theorisation theorisations theorise theorised theoriser theorisers theorises theorising theorism theorist theorists theorization theorizations theorize theorized theorizer theorizers theorizes theorizies theorizing theorum theory theoryless theorymonger theos theosoph theosopheme theosopher theosophers theosophic theosophical theosophically theosophies theosophise theosophised theosophises theosophising theosophism theosophisms theosophist theosophistic theosophistical theosophists theosophize theosophized theosophizes theosophizing theosophs theosophy theotechnic theotechnies theotechnist theotechny theoteleological theoteleology theotherapist theotherapy theotokoi theotokos theow theowdom theowman theowmen theows theralite theralites therap therapeuses therapeusis therapeutae therapeutic therapeutical therapeutically therapeutics therapeutism therapeutist therapeutists theraphose theraphosid theraphosidae theraphosoid therapia therapies therapist therapists therapsid therapsida therapsids theraputant therapy theravada therblig therbligs there thereabout thereabouts thereabove thereacross thereafter thereafterward thereagainst thereamong thereamongst thereanent thereanents therearound thereas thereat thereaway thereaways therebefore thereben therebeside therebesides therebetween therebiforn thereby thereckly thered therefor therefore therefrom therehence therein thereinafter thereinbefore thereinto therell theremin theremins therence thereness therenesses thereof thereoid thereologist thereology thereon thereonto thereout thereover thereright theres therese therethrough theretil theretill thereto theretofore theretoward thereunder thereuntil thereunto thereup thereupon therevid therewhile therewhiles therewhilst therewith therewithal therewithin theriac theriaca theriacal theriacas theriacs therial therian therians therianthropic therianthropism therianthropisms theriatrics thericlean theridiid theridiidae theriodic theriodont theriolater theriolatries theriolatry theriomancy theriomaniac theriomimicry theriomorph theriomorphic theriomorphism theriomorphisms theriomorphoses theriomorphosis theriomorphous theriomorphs theriotheism theriotheist theriotrophical theriozoic therm thermacogenesis thermae thermaesthesia thermaic thermal thermalgesia thermalisation thermalisations thermalise thermalised thermalises thermalising thermality thermalization thermalizations thermalize thermalized thermalizes thermalizing thermally thermals thermanalgesia thermanesthesia thermanesthesias thermantic thermantidote thermatologic thermatologist thermatology therme thermel thermels thermes thermesthesia thermesthesias thermesthesiometer thermetograph thermetrograph thermic thermical thermically thermidor thermidorian thermion thermionic thermionically thermionics thermions thermistor thermistors thermit thermite thermites thermits thermo thermoacidophile thermoammeter thermoanaesthesia thermoanalgesia thermoanesthesia thermobalance thermobalances thermobarograph thermobarometer thermobarometers thermobattery thermobia thermocauteries thermocautery thermochemic thermochemical thermochemically thermochemist thermochemistries thermochemistry thermochemists thermochroic thermochromism thermochrosy thermoclinal thermocline thermoclines thermocoagulation thermocouple thermocouples thermocurrent thermodiffusion thermoduric thermodynam thermodynamic thermodynamical thermodynamically thermodynamician thermodynamicist thermodynamicists thermodynamics thermodynamist thermoelastic thermoelectric thermoelectrical thermoelectrically thermoelectricities thermoelectricity thermoelectrometer thermoelectromotive thermoelectron thermoelectronic thermoelectrons thermoelement thermoelements thermoesthesia thermoexcitory thermoform thermoformable thermoformed thermoforming thermoforms thermogalvanometer thermogen thermogenerator thermogeneses thermogenesis thermogenetic thermogenic thermogenous thermogeny thermogeographical thermogeography thermogram thermograms thermograph thermographer thermographers thermographic thermographically thermographies thermographs thermography thermogravimeter thermogravimetric thermohaline thermohydrometer thermohydrometric thermohyperesthesia thermojunction thermojunctions thermokinematics thermolabile thermolabilities thermolability thermological thermologies thermology thermoluminescence thermoluminescences thermoluminescent thermolyses thermolysis thermolytic thermolyze thermolyzed thermolyzing thermomagnetic thermomagnetically thermomagnetism thermometamorphic thermometamorphism thermometer thermometerise thermometerize thermometers thermometric thermometrical thermometrically thermometries thermometrograph thermometrographs thermometry thermomigrate thermomotive thermomotor thermomotors thermomultiplier thermonastic thermonasties thermonasty thermonatrite thermoneurosis thermoneutrality thermonous thermonuclear thermopair thermopalpation thermopenetration thermoperiod thermoperiodic thermoperiodicities thermoperiodicity thermoperiodism thermoperiodisms thermophil thermophile thermophiles thermophilic thermophilous thermophils thermophobia thermophobous thermophone thermophore thermophosphor thermophosphorescence thermophosphorescent thermophyllous thermopile thermopiles thermoplastic thermoplasticities thermoplasticity thermoplastics thermoplegia thermopleion thermopolymerisation thermopolymerization thermopolypnea thermopolypneic thermopower thermopsis thermopylae thermoradiotherapy thermoreceptor thermoreceptors thermoreduction thermoregulate thermoregulated thermoregulates thermoregulating thermoregulation thermoregulations thermoregulator thermoregulators thermoregulatory thermoremanence thermoremanences thermoremanent thermoresistance thermoresistant thermos thermoscope thermoscopes thermoscopic thermoscopical thermoscopically thermosensitive thermoses thermoset thermosets thermosetting thermosiphon thermosiphons thermosphere thermospheres thermospheric thermostabilities thermostability thermostable thermostat thermostated thermostatic thermostatically thermostatics thermostating thermostats thermostatted thermostatting thermostimulation thermoswitch thermosynthesis thermosyphon thermosyphons thermosystaltic thermosystaltism thermotactic thermotank thermotaxes thermotaxic thermotaxis thermotelephone thermotelephonic thermotensile thermotension thermotherapeutics thermotherapies thermotherapy thermotic thermotical thermotically thermotics thermotolerant thermotropic thermotropics thermotropism thermotropisms thermotropy thermotype thermotypic thermotypy thermovoltaic therms therodont theroid therolater therolatry therologic therological therologies therologist therology theromorph theromorphia theromorphic theromorphism theromorphological theromorphology theromorphous therophyte theropod theropoda theropodan theropodous theropods thersitean thersites thersitical thesaur thesaural thesauri thesauris thesaurismosis thesaurus thesaurusauri thesauruses thesaury these theses theseus thesial thesicle thesis thesmothetae thesmothete thesmothetes thesocyte thespesia thespian thespians thessalia thessalonians thessalonika thessaly thester thestreen theta thetas thetch thetched thetches thetching thete thetes thether thetic thetical thetically thetics thetin thetine thetis theurgic theurgical theurgically theurgies theurgist theurgists theurgy thevetia thevetin thew thewed thewes thewier thewiest thewiness thewless thewlike thewness thews thewy they theyaou theyd theyll theyre theyve thiabendazole thiabendazoles thiacetic thiadiazole thialdin thialdine thiamid thiamide thiamin thiaminase thiaminases thiamine thiamines thiamins thianthrene thiasi thiasine thiasite thiasoi thiasos thiasote thiasus thiasuses thiasusi thiazide thiazides thiazin thiazine thiazines thiazins thiazol thiazole thiazoles thiazoline thiazols thibet thibets thible thibles thick thickbrained thicke thicked thicken thickened thickener thickeners thickening thickenings thickens thicker thickest thicket thicketed thicketful thickets thickety thickhead thickheaded thickheadedly thickheadedness thickheadednesses thickheads thickie thickies thicking thickish thickleaf thickleaves thicklips thickly thickneck thickness thicknesses thicknessing thicko thickoes thickos thicks thickset thicksets thickskin thickskins thickskull thickskulled thickspread thickwind thickwit thicky thief thiefcraft thiefdom thiefland thiefly thiefmaker thiefmaking thiefproof thieftaker thiefwise thielavia thienone thienyl thievable thieve thieved thieveless thiever thieveries thievery thieves thieving thievingly thievings thievish thievishly thievishness thievishnesses thig thigged thigger thiggers thigging thiggings thiggit thigh thighbone thighbones thighed thighs thight thightness thigmonegative thigmopositive thigmotactic thigmotactically thigmotaxes thigmotaxis thigmotropic thigmotropically thigmotropism thigmotropisms thigs thilk thill thiller thillers thills thilly thimber thimble thimbleberries thimbleberry thimbled thimbleflower thimbleful thimblefuls thimblelike thimblemaker thimblemaking thimbleman thimblerig thimblerigged thimblerigger thimbleriggers thimbleriggery thimblerigging thimbleriggings thimblerigs thimbles thimbleweed thimbleweeds thimblewit thimbling thimerosal thimerosals thin thinbrained thinclad thinclads thindown thindowns thine thing thingal thingamabob thingamabobs thingamajig thingamajigs thingamies thingamy thingamybob thingamybobs thingamyjig thingamyjigs thinghood thinghoods thingier thingies thingiest thinginess thinginesses thingish thingless thinglet thinglike thinglikeness thingliness thinglinesses thingly thingmabob thingmajig thingman thingness thingnesses things thingstead thingum thingumabob thingumabobs thingumadad thingumadoodle thingumajig thingumajigger thingumajigs thingumaree thingumbob thingumbobs thingummies thingummy thingummybob thingummybobs thingummyjig thingummyjigs thingut thingy think thinkability thinkable thinkableness thinkablenesses thinkably thinker thinkers thinkful thinking thinkingly thinkingness thinkingnesses thinkingpart thinkings thinkling thinks thinly thinned thinner thinners thinness thinnesses thinnest thinning thinnings thinnish thinolite thins thio thioacet thioacetal thioacetic thioalcohol thioaldehyde thioamid thioamide thioantimonate thioantimoniate thioantimonious thioantimonite thioarsenate thioarseniate thioarsenic thioarsenious thioarsenite thiobaccilli thiobacilli thiobacillus thiobacteria thiobacteriaceae thiobarbiturate thiobarbiturates thiobismuthite thiocarbamic thiocarbamide thiocarbamides thiocarbamyl thiocarbanilide thiocarbimide thiocarbonate thiocarbonic thiocarbonyl thiochloride thiochrome thiocresol thiocyanate thiocyanates thiocyanation thiocyanic thiocyanide thiocyano thiocyanogen thiodiazole thiodiglycol thiodiglycols thiodiphenylamine thioester thiofuran thiofurane thiofurfuran thiofurfurane thioguanine thiogycolic thiohydrate thiohydrolysis thiohydrolyze thioindigo thioketone thiokol thiol thiolacetic thiolactic thiolic thiolics thiols thionamic thionaphthene thionate thionates thionation thioneine thionic thionin thionine thionines thionins thionitrite thionium thionobenzoic thionthiolic thionurate thionyl thionylamine thionyls thiopental thiopentals thiopentone thiopentones thiophen thiophene thiophenes thiophenic thiophenol thiophens thiophil thiophosgene thiophosphate thiophosphite thiophosphoric thiophosphoryl thiophthene thiopyran thioresorcinol thioridazine thioridazines thiosinamine thiostannate thiostannic thiostannite thiostannous thiosulfate thiosulfates thiosulfuric thiosulphate thiosulphates thiosulphonic thiosulphuric thiotepa thiotepas thiotolene thiotungstate thiotungstic thiouracil thiouracils thiourea thioureas thiourethan thiourethane thioxene thiozone thiozonid thiozonide thir thiram thirams third thirdborough thirdboroughs thirded thirdendeal thirdhand thirding thirdings thirdling thirdly thirdness thirds thirdsman thirdsmen thirdstream thirl thirlage thirlages thirled thirling thirls thirst thirsted thirster thirsters thirstful thirstier thirstiest thirstily thirstiness thirstinesses thirsting thirstingly thirstland thirstle thirstless thirstlessness thirstproof thirsts thirsty thirt thirteen thirteener thirteenfold thirteens thirteenth thirteenthly thirteenths thirties thirtieth thirtieths thirty thirtyfold thirtyish thirtypenny thirtysomething thirtysomethings thirtytwomo this thisaway thisbe thishow thislike thisll thisn thisness thisnesses thissen thistle thistlebird thistled thistledown thistledowns thistlelike thistleproof thistlery thistles thistlewarp thistlier thistliest thistlish thistly thiswise thither thitherto thitherward thitherwards thitka thitsi thitsiol thiuram thivel thivels thixle thixolabile thixophobia thixotrope thixotropes thixotropic thixotropies thixotropy thlaspi thlipses thlipsis thm tho thob thocht thof thoft thoftfellow thofts thoght thoke thokish tholance thole tholed tholeiite tholeiites tholeiitic tholeite tholemod tholepin tholepins tholes tholi tholing tholli tholobate tholobates tholoi tholos tholus thomaean thoman thomas thomasing thomisid thomism thomist thomite thomomys thompson thomsenolite thomsonian thomsonite thon thonder thone thong thonged thongman thongs thongy thoo thooid thoom thor thoracal thoracalgia thoracaorta thoracectomies thoracectomy thoracenteses thoracentesis thoraces thoracic thoracical thoracically thoracicoabdominal thoracicoacromial thoracicohumeral thoracicolumbar thoraciform thoracispinal thoracoabdominal thoracoacromial thoracobronchotomy thoracoceloschisis thoracocenteses thoracocentesis thoracocyllosis thoracocyrtosis thoracodelphus thoracodidymus thoracodorsal thoracodynia thoracogastroschisis thoracograph thoracohumeral thoracolumbar thoracolysis thoracomelus thoracometer thoracometry thoracomyodynia thoracopagus thoracoplasties thoracoplasty thoracoschisis thoracoscope thoracoscopes thoracoscopy thoracostenosis thoracostomies thoracostomy thoracostracan thoracostracous thoracotomies thoracotomy thoral thorascope thorax thoraxes thorazine thore thoreau thoreauvian thoria thorianite thorianites thorias thoriate thoriated thoric thoriferous thorina thorite thorites thorium thoriums thorn thornback thornbacks thornbill thornbills thornbush thornbushes thorned thornen thornhead thornhedge thornhedges thornier thorniest thornily thorniness thorninesses thorning thornless thornlessness thornlet thornlike thornproof thornproofs thorns thornset thornstone thorntail thorntree thorntrees thorny thoro thorocopagous thorogummite thoron thorons thorough thoroughbass thoroughbasses thoroughbrace thoroughbraced thoroughbraces thoroughbred thoroughbredness thoroughbreds thorougher thoroughest thoroughfare thoroughfarer thoroughfares thoroughfaresome thoroughfoot thoroughfooted thoroughfooting thoroughgoing thoroughgoingly thoroughgoingness thoroughgoingnesses thoroughgrowth thoroughly thoroughness thoroughnesses thoroughpaced thoroughpin thoroughpins thoroughs thoroughsped thoroughstem thoroughstitch thoroughstitched thoroughwax thoroughwaxes thoroughway thoroughwort thoroughworts thorp thorpe thorpes thorps thorshavn thort thorter thortveitite thos those thoth thother thou thoued though thought thoughtcast thoughtcasts thoughted thoughten thoughtfree thoughtfreeness thoughtful thoughtfully thoughtfulness thoughtfulnesses thoughtkin thoughtless thoughtlessly thoughtlessness thoughtlessnesses thoughtlet thoughtness thoughts thoughtsick thoughtway thoughtways thoughty thouing thous thousand thousandfold thousandfoldly thousandfolds thousands thousandth thousandths thousandweight thouse thow thowel thowels thowl thowless thowls thowt thrace thracian thrack thrae thraep thrail thrain thraldom thraldoms thrall thrallborn thralldom thralldoms thralled thralling thralls thram thrammle thrang thranged thranging thrangity thrangs thranite thranitic thrap thrapple thrappled thrapples thrappling thrash thrashed thrashel thrasher thrasherman thrashers thrashes thrashing thrashings thraso thrasonic thrasonical thrasonically thrast thratch thraupidae thrave thraver thraves thraw thraward thrawart thrawartlike thrawartness thrawcrook thrawed thrawing thrawn thrawneen thrawnly thrawnness thraws thread threadbare threadbareness threadbarenesses threadbarity threaded threaden threader threaders threadfin threadfins threadfish threadfishes threadflower threadfoot threadier threadiest threadiness threadinesses threading threadle threadless threadlet threadlike threadmaker threadmakers threadmaking threads threadway threadweed threadworm threadworms thready threap threaped threapen threaper threapers threaping threapit threaps threat threated threaten threatenable threatened threatener threateners threatening threateningly threateningness threatenings threatens threatful threatfully threatfulness threating threatless threatproof threats threave threaves three threedimensionality threefold threefolded threefoldedness threefoldly threefoldness threefoldnesses threeling threeness threenesses threep threeped threepence threepences threepenceworth threepenceworths threepennies threepenny threepennyworth threepennyworths threeping threepit threeps threes threescore threescores threesome threesomes threip thremmatologies thremmatology threne threnes threnetic threnetical threnode threnodes threnodial threnodian threnodic threnodical threnodies threnodist threnodists threnody threnos threnoses threonin threonine threonines threose threpe threpsology threptic thresh threshal threshed threshel threshels thresher thresherman threshers threshes threshing threshings threshingtime threshold thresholds threskiornis threskiornithidae threstle thretties thretty threw thribble thrice thricecock thrid thridace thridaces thridacium thridded thridding thrids thrift thriftbox thriftier thriftiest thriftily thriftiness thriftinesses thriftless thriftlessly thriftlessness thriftlessnesses thriftlike thrifts thriftshop thrifty thrill thrillant thrilled thriller thrillers thrillful thrillfully thrillier thrilliest thrilling thrillingly thrillingness thrillingnesses thrillproof thrills thrillsome thrilly thrimble thrimp thrimsa thrimsas thrinax thring thringing thrinter thrioboly thrip thripel thripid thripidae thrippence thripple thrips thripses thrissel thrissels thrist thristed thristing thristle thristles thrists thristy thrive thrived thriveless thriven thriver thrivers thrives thriving thrivingly thrivingness thrivingnesses thrivings thro throat throatal throatband throatboll throated throatful throatier throatiest throatily throatiness throatinesses throating throatlash throatlatch throatlatches throatless throatlet throatlike throatroot throats throatstrap throatwort throatworts throaty throb throbbed throbber throbbers throbbing throbbingly throbbings throbless throbs throck throdden throddy throe throed throeing throes thrombase thrombasthenia thrombectomies thrombectomy thrombi thrombin thrombins thromboangiitis thromboarteritis thromboclasis thromboclastic thrombocyst thrombocyte thrombocytes thrombocytic thrombocytopenia thrombocytopenias thrombocytopenic thrombocytosis thromboembolic thromboembolism thromboembolisms thrombogen thrombogenic thromboid thrombokinase thrombokinases thrombolymphangitis thrombolyses thrombolysis thrombolytic thrombolytics thrombopenia thrombophilia thrombophilias thrombophlebitides thrombophlebitis thrombophlebitises thromboplastic thromboplastically thromboplastin thromboplastins thrombose thrombosed thromboses thrombosing thrombosis thrombostasis thrombotic thromboxane thromboxanes thrombus thronal throne throned thronedom throneless thronelet thronelike thrones throneward throng thronged thronger throngful thronging throngingly throngings throngs throning thronise thronize thronoi thronos thrope thropple throppled thropples throppling throroughly throstle throstlelike throstles throttle throttleable throttled throttlehold throttleholds throttler throttlers throttles throttling throttlingly throttlings throu throuch throucht through throughbear throughbred throughcome throughfare throughfares throughgang throughganging throughgaun throughgauns throughgoing throughgrow throughither throughknow throughly throughother throughout throughput throughputs throughway throughways throve throw throwaway throwaways throwback throwbacks throwdown throwe thrower throwers throwes throwing throwings thrown throwoff throwout throws throwst throwster throwsters throwwort thru thrum thrumble thrummed thrummer thrummers thrummier thrummiest thrumming thrummingly thrummings thrummy thrums thrumwort thruout thruppence thruppences thruppennies thruppenny thruput thruputs thrush thrushel thrusher thrushes thrushlike thrushy thrust thrusted thruster thrusters thrustful thrustfulness thrusting thrustings thrustle thrustor thrustors thrustpush thrusts thrutch thrutched thrutches thrutching thrutchings thruv thruway thruways thrymsa thrymsas thryothorus thsant thucydides thud thudded thudding thuddingly thuds thug thugdom thugged thuggee thuggeeism thuggees thuggeries thuggery thuggess thugging thuggish thuggism thuggisms thuggo thuggos thugs thuja thujas thujene thujin thujone thujopsis thujyl thule thulia thulias thulir thulite thulites thulium thuliums thulr thuluth thumb thumbbird thumbed thumber thumbhole thumbholes thumbier thumbiest thumbikin thumbikins thumbing thumbkin thumbkins thumble thumbless thumblike thumbling thumblings thumbmark thumbnail thumbnails thumbnut thumbnuts thumbpiece thumbpieces thumbpot thumbpots thumbprint thumbprints thumbrope thumbs thumbscrew thumbscrews thumbstall thumbstalls thumbstring thumbsucker thumbsuckers thumbtack thumbtacked thumbtacking thumbtacks thumbwheel thumbwheels thumby thumlungur thummin thump thumped thumper thumpers thumping thumpingly thumps thunbergia thunbergias thunbergilene thund thunder thunderation thunderations thunderball thunderbearer thunderbearing thunderbird thunderbirds thunderblast thunderbolt thunderbolts thunderbox thunderboxes thunderburst thunderclap thunderclaps thundercloud thunderclouds thundercrack thundered thunderer thunderers thunderfish thunderfishes thunderflash thunderflashes thunderflower thunderful thunderhead thunderheaded thunderheads thunderier thunderiest thundering thunderingly thunderings thunderless thunderlight thunderlike thunderous thunderously thunderousness thunderousnesses thunderpeal thunderpeals thunderplump thunderproof thunderpump thunders thundershower thundershowers thundersmite thundersmiting thundersmote thundersquall thundersqualls thunderstick thunderstone thunderstones thunderstorm thunderstorms thunderstricken thunderstrike thunderstrikes thunderstriking thunderstroke thunderstrokes thunderstruck thunderwood thunderworm thunderwort thundery thundrous thundrously thung thunge thunk thunked thunking thunks thunnus thuoc thurgi thurible thuribles thuribuler thuribulum thurifer thuriferous thurifers thurificate thurificati thurification thurifications thurified thurifies thurify thurifying thuringia thuringian thuringite thurl thurle thurls thurm thurmus thurrock thursday thursdays thurse thurst thurt thus thuses thusgate thusly thusness thusnesses thuswise thutter thuya thuyas thwack thwacked thwacker thwackers thwacking thwackingly thwackings thwacks thwackstave thwait thwaite thwaites thwart thwarted thwartedly thwarteous thwarter thwarters thwarting thwartingly thwartings thwartly thwartman thwartmen thwartness thwartover thwarts thwartsaw thwartship thwartships thwartways thwartwise thwite thwittle thworl thy thyestean thyestes thyiad thyine thylacine thylacines thylacinus thylacitis thylakoid thylakoids thylogale thylose thyloses thylosis thymacetin thymate thyme thymectomies thymectomise thymectomize thymectomized thymectomizes thymectomizing thymectomy thymegol thymelaeaceae thymelaeaceous thymelaeales thymelcosis thymele thymelic thymelical thymelici thymene thymes thymetic thymey thymi thymiama thymic thymicolymphatic thymidine thymidines thymier thymiest thymin thymine thymines thymiosis thymitis thymocyte thymocytes thymogenic thymol thymolate thymolize thymolphthalein thymols thymolsulphonephthalein thymoma thymomas thymomata thymonucleic thymopathy thymoprivic thymoprivous thymopsyche thymoquinone thymosin thymosins thymotactic thymotic thymotinic thyms thymus thymuses thymy thymyl thymylic thynnid thyratron thyratrons thyreoadenitis thyreoantitoxin thyreoarytenoid thyreoarytenoideus thyreocervical thyreocolloid thyreoepiglottic thyreogenic thyreogenous thyreoglobulin thyreoglossal thyreohyal thyreohyoid thyreoid thyreoidal thyreoideal thyreoidean thyreoidectomy thyreoiditis thyreoids thyreoitis thyreolingual thyreophora thyreophoran thyreoprotein thyreosis thyreotomy thyreotoxicosis thyreotropic thyridia thyridial thyridium thyrisiferous thyristor thyristors thyroadenitis thyroantitoxin thyroarytenoid thyroarytenoideus thyrocalcitonin thyrocalcitonins thyrocardiac thyrocarditis thyrocele thyrocervical thyrocolloid thyrocricoid thyroepiglottic thyroepiglottidean thyrogenic thyrogenous thyroglobulin thyroglobulins thyroglossal thyrohyal thyrohyoid thyrohyoidean thyroid thyroidal thyroidea thyroideal thyroidean thyroidectomies thyroidectomised thyroidectomize thyroidectomized thyroidectomy thyroidisation thyroidism thyroiditis thyroiditises thyroidization thyroidless thyroidotomies thyroidotomy thyroids thyroiodin thyrold thyrolingual thyronin thyronine thyroparathyroidectomize thyroparathyroidectomy thyroprival thyroprivia thyroprivic thyroprivous thyroprotein thyroria thyrorion thyrorroria thyrosis thyrostracan thyrotherapy thyrotome thyrotomy thyrotoxic thyrotoxicity thyrotoxicoses thyrotoxicosis thyrotrophic thyrotrophin thyrotrophins thyrotropic thyrotropin thyrotropins thyroxin thyroxine thyroxines thyroxinic thyroxins thyrse thyrses thyrsi thyrsiflorous thyrsiform thyrsoid thyrsoidal thyrsopteris thyrsus thyrsusi thysanocarpus thysanopter thysanoptera thysanopteran thysanopteron thysanopterous thysanouran thysanourous thysanura thysanuran thysanurans thysanurian thysanuriform thysanuron thysanurous thysel thyself thysen ti tiamat tiang tiangue tianjin tiao tiar tiara tiaraed tiaralike tiaras tiarella tiars tib tibbit tibby tiber tibert tibet tibetan tibetans tibey tibia tibiad tibiae tibial tibiale tibialia tibialis tibias tibicen tibicinist tibiocalcanean tibiofemoral tibiofibula tibiofibulae tibiofibular tibiofibulas tibiometatarsal tibionavicular tibiopopliteal tibioscaphoid tibiotarsal tibiotarsi tibiotarsus tibiotarsuses tibiotarsusi tibouchina tibouchinas tibourbou tiburon tiburtine tic tical ticals ticca ticced ticchen ticcing tice ticed ticement ticer tices tich tichel tiches tichier tichiest tichodroma tichodrome tichorhine tichorrhine tichy ticing ticino tick tickbean tickbird tickbirds tickeater ticked ticken tickens ticker tickers tickertape ticket ticketed ticketer ticketing ticketless ticketmonger tickets tickettyboo tickey tickeys tickicide tickie tickies ticking tickings tickle tickleback ticklebrain tickled ticklely ticklenburg ticklenburgs tickleness tickleproof tickler ticklers tickles ticklesome tickless tickleweed ticklier tickliest tickliness tickling ticklingly ticklings ticklish ticklishly ticklishness ticklishnesses tickly tickney tickproof ticks tickseed tickseeded tickseeds ticktack ticktacked ticktacker ticktacking ticktacks ticktacktoe ticktacktoes ticktacktoo ticktick ticktock ticktocked ticktocking ticktocks tickweed ticky ticqueur ticqueurs tics tictac tictacked tictacking tictacs tictactoe tictic tictoc tictocked tictocking tictocs ticul tid tidal tidally tidbit tidbits tidder tiddier tiddies tiddiest tiddle tiddled tiddledywink tiddledywinks tiddler tiddlers tiddles tiddley tiddleys tiddleywink tiddlier tiddlies tiddliest tiddling tiddly tiddlywink tiddlywinker tiddlywinking tiddlywinks tiddy tide tidecoach tided tideful tidehead tideland tidelands tideless tidelessness tidelike tideling tidely tidemaker tidemaking tidemark tidemarks tidemill tidemills tidepool tidepools tiderace tiderip tiderips tiderode tides tidesman tidesmen tidesurveyor tidewaiter tidewaiters tidewaitership tideward tidewater tidewaters tidewave tidewaves tideway tideways tidi tidiable tidied tidier tidiers tidies tidiest tidife tidily tidiness tidinesses tiding tidingless tidings tidiose tidivate tidivated tidivates tidivating tidivation tidivations tidley tidling tidological tidology tids tidy tidying tidyism tidytips tie tieback tiebacks tieboy tiebreak tiebreaker tiebreakers tiebreaking tiebreaks tieclasp tieclasps tied tiedog tieing tieless tiemaker tiemaking tiemannite tiemannites tien tienda tiens tienta tiento tientsin tiepin tiepins tier tierce tierced tiercel tiercelet tiercelets tiercels tierceron tiercerons tierces tiercet tiercets tiered tierer tiering tierlike tierod tierods tierras tiers tiersman ties tietac tietack tietacks tietacs tietick tievine tiewig tiewigged tiff tiffanies tiffany tiffanyite tiffed tiffie tiffin tiffined tiffing tiffings tiffining tiffins tiffish tiffle tiffs tiffy tifinagh tiflis tifosi tifoso tift tifted tifter tifting tifts tig tige tigella tigellate tigelle tigellum tigellus tiger tigerbird tigereye tigereyes tigerfish tigerfishes tigerflower tigerfoot tigerhearted tigerhood tigerish tigerishly tigerishness tigerishnesses tigerism tigerisms tigerkin tigerlike tigerling tigerly tigernut tigerproof tigers tigerwood tigery tiges tigged tigger tigging tiggywinkle tiggywinkles tight tighten tightened tightener tighteners tightening tightenings tightens tighter tightest tightfisted tightfistedly tightfistedness tightfistednesses tightfitting tightish tightishly tightknit tightlier tightliest tightlipped tightly tightness tightnesses tightrope tightroped tightropes tightroping tights tightwad tightwads tightwire tightwires tiglaldehyde tiglic tiglinic tiglon tiglons tignon tignum tigon tigons tigress tigresses tigresslike tigrine tigrinya tigris tigrish tigrishly tigrishness tigrishnesses tigroid tigrolysis tigrolytic tigrone tigs tigtag tigurine tijuana tika tikas tike tikes tiki tikis tikitiki tikka tikkas tikker tikkun tiklin tikolosh tikoloshe tikoor tikor tikur til tilaite tilak tilaka tilaks tilapia tilapias tilasite tilburies tilbury tilde tilden tildes tile tiled tilefish tilefishes tilelike tilemaker tilemaking tiler tileries tileroot tilers tilery tiles tileseed tilesherd tilestone tilette tileways tilework tileworks tilewright tileyard tilia tiliaceae tiliaceous tilicetum tilikum tiling tilings tiliomycetes till tillable tillage tillages tillandsia tillandsias tilled tiller tillered tillering tillerless tillerman tillermen tillers tillet tilletia tilletiaceae tilletiaceous tilley tillicum tillier tilliest tilling tillings tillite tillites tillman tillodont tillot tillotter tills tilly tilmus tilpah tils tilt tiltable tiltboard tilted tilter tilters tilth tilthead tilths tilting tiltings tiltlike tiltmaker tiltmaking tiltmeter tiltmeters tilts tiltup tilture tilty tiltyard tiltyards tilyer tim timable timalia timaliidae timaliine timaline timar timarau timaraus timariot timariots timarri timaua timawa timazite timbal timbale timbales timbals timbang timbe timber timberdoodle timberdoodles timbered timberer timberhead timberheads timbering timberings timberjack timberland timberlands timberless timberlike timberline timberlines timberling timberman timbermen timbermonger timbern timbers timbersome timbertuned timberwood timberwork timberworks timberwright timbery timberyard timberyards timbestere timbo timbos timbral timbre timbrel timbreled timbreler timbrelled timbreller timbrels timbres timbrologies timbrologist timbrologists timbrology timbromania timbromaniac timbromaniacs timbromanias timbromanist timbrophilic timbrophilies timbrophilism timbrophilist timbrophilists timbrophily timbuktu timbó timbós time timeable timebase timebinding timecard timecards timed timeframe timeframes timeful timefully timefulness timekeep timekeeper timekeepers timekeepership timekeeping timekeepings timeless timelessly timelessness timelessnesses timelia timelier timeliest timeliine timelily timeline timelines timeliness timelinesses timeling timely timenoguy timenoguys timeous timeously timeout timeouts timepiece timepieces timepleaser timepleasers timeproof timer timerau timerity timers times timesaver timesavers timesaving timescale timescales timeserver timeservers timeserving timeservingness timeservings timeshare timeshares timesharing timestamp timestamped timestamps timet timetable timetabled timetables timetabling timetaker timetaking timetrp timeward timework timeworker timeworkers timeworks timeworn timezone timezones timid timider timidest timidities timidity timidly timidness timidnesses timidous timing timings timish timist timists timmer timocracies timocracy timocratic timocratical timolol timolols timon timoneer timoneers timons timor timoroso timorous timorously timorousness timorousnesses timorousnous timorsome timothies timothy timous timously timpana timpani timpanist timpanists timpano timpanum timpanums timps timucu timur timwhisky tin tinage tinaja tinajas tinamidae tinamiformes tinamine tinamou tinamous tinampipi tinbergen tinc tinca tincal tincals tinchel tinchels tinchill tinclad tinct tincted tincting tinction tinctorial tinctorially tinctorious tincts tinctumutation tincture tinctured tinctures tincturing tind tindal tindalo tindals tinded tinder tinderbox tinderboxes tindered tinderish tinderlike tinderous tinders tindery tinding tinds tine tinea tineal tinean tineas tined tinegrass tineid tineidae tineids tineine tineman tinemen tineoid tineoidea tineola tinerer tines tinetare tinety tineweed tinfoil tinfoils tinful tinfuls ting tinge tinged tingeing tingent tinger tinges tingi tingibility tingible tingid tingidae tinging tingitid tinglass tingle tingled tingler tinglers tingles tingletangle tinglier tingliest tingling tinglingly tinglings tinglish tingly tings tingtang tinguaite tinguaites tinguaitic tinguy tinhorn tinhorns tinhouse tinier tinies tiniest tinily tininess tininesses tining tink tinked tinker tinkerbird tinkerdom tinkered tinkerer tinkerers tinkering tinkerings tinkerlike tinkerly tinkers tinkershere tinkershire tinkershue tinkerwise tinking tinkle tinkled tinkler tinklerman tinklers tinkles tinklier tinkliest tinkling tinklingly tinklings tinkly tinks tinlet tinlike tinman tinmen tinned tinnen tinner tinners tinnery tinnet tinnie tinnient tinnier tinnies tinniest tinnified tinnily tinniness tinninesses tinning tinnings tinnitus tinnituses tinnock tinny tinoceratid tinosa tinplate tinplated tinplates tinplating tinpot tinpots tins tinsel tinseled tinseling tinselled tinsellike tinselling tinselly tinselmaker tinselmaking tinselries tinselry tinsels tinselweaver tinselwork tinsey tinseys tinsman tinsmen tinsmith tinsmithing tinsmithings tinsmiths tinsmithy tinsnips tinstone tinstones tinstuff tinsy tint tinta tintack tintacks tintage tintamar tintamarre tintarron tinted tinter tinternell tinters tintie tintier tintiest tintiness tintinesses tinting tintingly tintings tintinnabula tintinnabulant tintinnabular tintinnabulary tintinnabulate tintinnabulated tintinnabulates tintinnabulating tintinnabulation tintinnabulations tintinnabulatory tintinnabulism tintinnabulist tintinnabulous tintinnabulum tintist tintless tintlessness tintometer tintometric tintometry tints tinty tintype tintyper tintypes tinwald tinware tinwares tinwoman tinwork tinworker tinworking tinworks tiny tinyness tinzenite tip tipburn tipcart tipcarts tipcat tipcats tipe tipful tiphead tipi tipis tipit tipiti tiple tipless tiplet tipman tipmen tipmost tipoff tipoffs tiponi tippable tipped tippee tipper tippers tippet tippets tippex tippexed tippexes tippexing tippier tippiest tipping tippings tipple tippled tippleman tippler tipplers tipples tippling tipply tipproof tippy tippytoe tippytoed tippytoeing tippytoes tipree tips tipsheet tipsheets tipsier tipsiest tipsification tipsified tipsifier tipsifies tipsify tipsifying tipsily tipsiness tipsinesses tipstaff tipstaffs tipstaves tipster tipsters tipstock tipstocks tipsy tipt tiptail tipteerer tiptilt tiptoe tiptoed tiptoeing tiptoeingly tiptoes tiptoing tiptop tiptopness tiptopper tiptoppish tiptoppishness tiptops tiptopsome tipu tipuana tipula tipulas tipulid tipulidae tipuloid tipuna tipup tiqueur tirade tirades tirage tirailleur tirailleurs tiralee tiramisu tiramisus tirana tirasse tirasses tiraz tire tired tireder tiredest tiredly tiredness tirednesses tiredom tirehouse tireless tirelessly tirelessness tirelessnesses tireling tirelings tiremaid tiremaker tiremaking tireman tiremen tirement tirer tireroom tires tiresias tiresmith tiresol tiresome tiresomely tiresomeness tiresomenesses tiresomeweed tirewoman tirewomen tiriba tiring tiringly tirings tirl tirled tirling tirls tirma tiro tirocinia tirocinium tirociniums tiroes tirol tironian tiros tirr tirracke tirralirra tirred tirret tirring tirrit tirrits tirrivee tirrivees tirrivie tirrivies tirrlie tirrs tirrwirr tirshatha tirthankara tirve tirwit tis tisane tisanes tisar tishri tisic tisick tisicks tissu tissual tissue tissued tissueless tissuelike tissues tissuey tissuing tissular tisswood tiswas tiswases tiswin tit titan titanate titanates titanaugite titaness titanesses titania titanias titanic titanically titaniferous titanifluoride titanis titanises titanism titanisms titanite titanites titanitic titanium titaniums titano titanocolumbate titanocyanide titanofluoride titanolatry titanomagnetite titanoniobate titanosaur titanosaurian titanosauridae titanosaurs titanosaurus titanosilicate titanothere titanotheres titanous titans titanyl titar titbit titbits titbitty titch titches titchier titchiest titchy tite titely titer titeration titers titfer titfers titfish tithable tithal tithe tithebook tithed titheless tithemonger tithepayer tither titheright tithers tithes tithing tithingman tithingmen tithingpenny tithings tithonia tithonias tithonic tithonicity tithonographic tithonometer tithonus tithymal titi titian titians titien titilate titillability titillant titillate titillated titillater titillaters titillates titillating titillatingly titillation titillations titillative titillator titillators titillatory titis titivate titivated titivates titivating titivation titivations titivator titivil titiviller titlark titlarks title titleboard titled titledom titleholder titleholders titleless titlene titleproof titler titlers titles titleship titlike titling titlings titlist titlists titly titmal titmall titman titmen titmice titmmice titmose titmouse titoism titoki titokis titrable titrant titrants titratable titrate titrated titrates titrating titration titrations titrator titrators titre titres titrimetric titrimetrically titrimetry tits titted titter titteration tittered titterel titterer titterers tittering titteringly titterings titters tittery tittie titties titting tittish tittivate tittivated tittivates tittivating tittivation tittivations tittivator tittle tittlebat tittlebats tittled tittler tittles tittlin tittling tittup tittuped tittuping tittupped tittupping tittuppy tittups tittupy titty tittymouse titubancies titubancy titubant titubantly titubate titubated titubates titubating titubation titubations titulado titular titularies titularities titularity titularly titulars titulary titulation titule tituled titules tituli tituling titulus titup tituped tituping titupped titupping titups titupy tiu tiver tivoli tivy tiyin tiza tizeur tizwas tizwases tizwin tizz tizzes tizzies tizzy tjaele tjandi tjanting tjantings tjenkal tji tjosite tjurunga tk tko tkos tkt tl tlaco tlc tlingit tln tlo tlr tm tmema tmemata tmeses tmesis tmh tmv tn tng tnpk tnt to toa toad toadback toadded toadding toadeat toadeater toadeaters toadeating toader toadery toadess toadfish toadfishes toadflax toadflaxes toadflower toadfrog toadgrass toadgrasses toadhead toadied toadier toadies toadish toadishness toadless toadlet toadlike toadlikeness toadling toadpipe toadpipes toadroot toadrush toadrushes toads toadshade toadship toadstone toadstones toadstool toadstoollike toadstools toadwise toady toadying toadyish toadyism toadyisms toadyship toarcian toast toastable toasted toastee toaster toasters toastie toastier toasties toastiest toastiness toasting toastings toastmaster toastmasters toastmastery toastmistress toastmistresses toastrack toasts toasty toat toatoa toaze toazed toazes toazing tob tobaccanalian tobaccanalians tobacco tobaccoes tobaccofied tobaccoism tobaccoite tobaccoless tobaccolike tobaccoman tobaccomen tobacconalian tobacconing tobacconist tobacconistical tobacconists tobacconize tobaccophil tobaccoroot tobaccos tobaccosim tobaccoweed tobaccowood tobaccoy tobago tobagonian tobbaconist tobe tobies tobine tobira toboggan tobogganed tobogganeer tobogganer tobogganers tobogganing tobogganings tobogganist tobogganists toboggans toboggin toboggined toboggining toboggins toby tobyman tobymen tobys toc tocalote toccata toccatas toccate toccatella toccatellas toccatina toccatinas toch tocharian tocher tochered tochering tocherless tochers tock tocked tocking tocks tocktact toco tocodynamometer tocogenetic tocogony tocokinin tocological tocologies tocologist tocology tocome tocometer tocopherol tocopherols tocophobia tocororo tocos tocs tocsin tocsins tocusso tod toda today todayish todayll todays todde todded todder toddes toddick toddies todding toddite toddle toddled toddlekins toddler toddlerhood toddlerhoods toddlers toddles toddling toddy toddyize toddyman toddymen tode todea todelike todidae todies todlowrie tods todus tody toe toea toeas toeboard toecap toecapped toecaps toeclip toeclips toed toehold toeholds toeier toeiest toeing toeless toelike toellite toenail toenailed toenailing toenails toepiece toepieces toeplate toeplates toerag toeragger toeraggers toerags toernebohmite toes toeshoe toeshoes toetoe toetoes toey toff toffee toffeeman toffees toffier toffies toffiest toffing toffish toffishness toffishnesses toffs toffy toffyman toffymen tofieldia tofile tofore toforn toft tofter toftman toftmen tofts toftstead tofu tofus tofutti tofuttis tog toga togae togaed togalike togas togata togate togated togavirus togawise toge togeman toges together togetherhood togetheriness togetherness togethernesses togethers togged toggel togger toggeries toggery togging toggle toggled toggler togglers toggles toggling togless togo togolese togs togt togue togues toher toheroa toheroas toho tohos tohubohu tohunga tohungas toi toil toile toiled toiler toilers toiles toilet toileted toileting toiletries toiletry toilets toilette toiletted toilettes toiletware toilful toilfully toilinet toilinets toilinette toilinettes toiling toilingly toilings toilless toillessness toils toilsome toilsomely toilsomeness toilsomenesses toilworn toise toiseach toiseachs toisech toisechs toised toises toising toison toisons toist toit toited toiting toitish toitoi toitois toits toity toivel tokamak tokamaks tokay tokays toke toked token tokened tokening tokenish tokenism tokenisms tokenistic tokenize tokenless tokens tokenworth toker tokers tokes tokharian toking tokio toko tokodynamometer tokologies tokology tokoloshe tokoloshes tokomak tokomaks tokonoma tokonomas tokopat tokos toktokje tokyo tokyoite tokyoites tol tola tolamine tolan tolane tolanes tolans tolar tolarjev tolars tolas tolazamide tolbooth tolbooths tolbutamide tolbutamides told tolderia toldo tole tolectin toled toledo toledos tolerabilities tolerability tolerable tolerableness tolerablenesses tolerablish tolerably tolerance tolerances tolerancy tolerant tolerantism tolerantly tolerate tolerated tolerates tolerating toleration tolerationism tolerationisms tolerationist tolerationists tolerations tolerative tolerator tolerators tolerism toles toleware tolewares tolfraedic tolguacha tolidin tolidine tolidines tolidins tolinase toling tolings tolipane tolite toll tollable tollage tollages tollbar tollbars tollbook tollbooth tollbooths tollbridge tollbridges tolldish tolldishes tolled tollent toller tollers tollery tollgate tollgates tollgatherer tollhall tollhouse tollhouses tollies tolliker tolling tollings tollkeeper tollkeepers tollman tollmaster tollmen tollon tollpenny tolls tolltaker tollway tollways tolly tolmen tolmiea tolpatch tolpatchery tolsel tolsels tolsester tolsey tolseys tolstoy tolstoyan tolt toltec tolter toltered toltering tolters tolts tolu tolualdehyde toluate toluates toluene toluenes toluic toluid toluide toluides toluidide toluidin toluidine toluidines toluidino toluidins toluido toluids tolunitrile toluol toluole toluoles toluols toluquinaldine tolus tolusafranine tolutation toluyl toluylene toluylenediamine toluylic toluyls tolyl tolylene tolylenediamine tolyls tolypeutes tolypeutine tolzey tolzeys tom tomahawk tomahawked tomahawker tomahawking tomahawks tomalley tomalleys toman tomand tomans tomatillo tomatilloes tomatillos tomato tomatoes tomatoey tomb tombac tomback tombacks tombacs tombak tombaks tombal tombe tombed tombic tombigbee tombing tombless tomblet tomblike tomboc tombocs tombola tombolas tombolo tombolos tomboy tomboyful tomboyish tomboyishly tomboyishness tomboyishnesses tomboyism tomboys tombs tombstone tombstones tomcat tomcats tomcatted tomcatting tomcod tomcods tome tomeful tomelet toment tomenta tomentose tomentous tomentulose tomentum tomes tomfool tomfooled tomfooleries tomfoolery tomfooling tomfoolish tomfoolishness tomfoolishnesses tomfools tomia tomial tomin tomines tomish tomistoma tomium tomiumia tomiums tomjohn tomjon tomkin tommed tommied tommies tomming tommy tommybag tommycod tommycods tommying tommyrot tommyrots tommyto tommytoes tomnoddy tomnorry tomnoup tomogram tomograms tomograph tomographic tomographies tomographs tomography tomolo tomomania tomorn tomorrow tomorrower tomorrowing tomorrowness tomorrows tomosis tompion tompions tompiper tompon tomponed tomponing tompons tomrig toms tomtate tomtit tomtits tomtom ton tonada tonal tonalamatl tonalist tonalite tonalites tonalities tonalitive tonality tonally tonalmatl tonant tonation tondi tondini tondino tondinos tondo tondos tone tonearm tonearms toned tonedeafness tonelada toneladas toneless tonelessly tonelessness tonelessnesses toneme tonemes tonemic tonepad tonepads toneproof toner toners tones tonetic tonetically tonetician tonetics tonette tonettes toney tong tonga tongan tongas tonged tonger tongers tonging tongkang tongman tongmen tongrian tongs tongsman tongsmen tongster tongsters tongue tonguebird tonguecraft tongued tonguedoughty tonguefence tonguefencer tonguefish tonguefishes tongueflower tongueful tonguefuls tongueless tonguelessness tonguelet tonguelets tonguelike tongueman tonguemanship tonguemen tongueplay tongueproof tonguer tongues tongueshot tonguesman tonguesore tonguester tonguesters tonguetie tonguetip tonguey tonguiness tonguing tonguings tonguy tonic tonical tonically tonicise tonicities tonicity tonicize tonicked tonicking tonicobalsamic tonicoclonic tonicostimulant tonics tonier tonies toniest tonify tonight tonights toning tonings tonish tonishly tonishness tonishnesses tonite tonites tonitrocirrus tonitrophobia tonitrual tonitruant tonitruone tonitruous tonjon tonk tonka tonked tonker tonkers tonkin tonking tonks tonlet tonlets tonn tonnag tonnage tonnages tonnags tonne tonneau tonneaued tonneaus tonneaux tonnell tonnelle tonnells tonner tonners tonnes tonnish tonnishly tonnishness tonnishnesses tonnland tonoclonic tonogram tonograph tonological tonology tonometer tonometers tonometric tonometries tonometry tonophant tonoplast tonoplasts tonoscope tonotactic tonotaxis tonous tons tonsbergite tonsil tonsilar tonsile tonsilectomies tonsilectomy tonsilitic tonsilitis tonsilitises tonsillar tonsillary tonsillectome tonsillectomic tonsillectomies tonsillectomize tonsillectomy tonsillith tonsillitic tonsillitis tonsillitises tonsillolith tonsillotome tonsillotomies tonsillotomy tonsilomycosis tonsilotomies tonsilotomy tonsils tonsor tonsorial tonsors tonsurate tonsure tonsured tonsures tonsuring tontine tontiner tontiners tontines tonto tonus tonuses tony tonyhoop too tooart tooarts toodle toodleloodle took tooken tool toolach toolbag toolbags toolbar toolbars toolbox toolboxes toolbuilder toolbuilding tooled tooler toolers toolhead toolheads toolholder toolholders toolholding toolhouse toolhouses tooling toolings toolkit toolkits toolless toolmake toolmaker toolmakers toolmaking toolmakings toolman toolmark toolmarking toolmen toolplate toolpusher toolpushers toolroom toolrooms tools toolsetter toolshed toolsheds toolsi toolslide toolsmith toolstock toolstone toolsy toom toomed toomer toomest tooming toomly tooms toon toona toonie toonies toons toonwood toop toorie toories toorock tooroo toosh tooshie toosie toot tooted tooter tooters tooth toothache toothaches toothaching toothachy toothbill toothbrush toothbrushes toothbrushing toothbrushings toothbrushy toothchiseled toothcomb toothcombs toothcup toothdrawer toothdrawing toothed toother toothflower toothful toothfuls toothier toothiest toothill toothily toothiness toothinesses toothing toothless toothlessly toothlessness toothlessnesses toothlet toothleted toothlike toothmarks toothpaste toothpastes toothpick toothpicks toothplate toothpowder toothproof tooths toothshell toothshells toothsome toothsomely toothsomeness toothsomenesses toothstick toothwash toothwashes toothwork toothwort toothworts toothy tooting tootinghole tootle tootled tootler tootlers tootles tootling tootlish tootmoot toots tootsed tootses tootsie tootsies tootsing tootsy toozle toozoo top topaesthesia topalgia toparch toparchia toparchiae toparchical toparchies toparchs toparchy topas topass topato topau topaz topazes topazfels topazine topazite topazolite topazolites topazy topcap topcast topcastle topchrome topcoat topcoating topcoats topcross topcrosses topdress topdressing topdressings tope topechee topectomies topectomy toped topee topees topeewallah topek topeka topeks topeng topepo toper toperdom topers topes topesthesia topfilled topflight topflighter topful topfull topgallant topgallants toph tophaceous tophaike tophamper tophe tophes tophet tophetic tophetical tophetize tophi tophous tophphi tophs tophus tophyperidrosis topi topia topiaria topiarian topiaries topiarist topiarists topiarius topiary topic topical topicalities topicality topicalization topicalizations topicalize topicalized topicalizes topicalizing topically topics topinambou toping topis topiwala topkick topkicks topknot topknots topknotted topless toplessness toplessnesses toplighted toplike topline toplined topliner topliners toplines toplining toploftical toploftier toploftiest toploftily toploftiness toploftinesses toplofty topmaker topmakers topmaking topmakings topman topmast topmasts topmaul topmen topminnow topminnows topmost topmostly topnet topnotch topnotcher topnotchers topo topoalgia topocentric topochemical topochemistry topodeme topog topognosia topognosis topograph topographer topographers topographic topographical topographically topographics topographies topographist topographize topographometric topography topoi topolatry topolect topolects topologic topological topologically topologies topologist topologists topologize topology toponarcosis toponeural toponeurosis toponym toponymal toponymic toponymical toponymics toponymies toponymist toponymists toponymous toponyms toponymy topophilia topophilias topophobia topophone topopolitan topos topotactic topotaxis topotype topotypes topotypic topotypical topped topper toppers toppiece topping toppingly toppingness toppings topple toppled toppler topples toppling topply toppy toprail toprope tops topsail topsailite topsails topside topsider topsiders topsides topsl topsman topsmelt topsmelts topsmen topsoil topsoiled topsoiling topsoilings topsoils topspin topspins topssmelt topstitch topstitched topstitches topstitching topstitchings topstone topstones topswarm topsy topsyturn topsyturvied topsyturvies topsyturvification topsyturvily topsyturviness topsyturvy topsyturvydom topsyturvying toptail topv topwise topwork topworked topworking topworks toque toques toquet toquets toquilla toquillas tor tora toradol torah torahs toral toran torana toranas torans toras torbanite torbanites torbanitic torbernite torbernites torc torcel torch torchare torchbearer torchbearers torchbearing torched torcher torchere torcheres torchers torches torchet torchier torchiere torchieres torchiers torchiest torching torchings torchière torchières torchless torchlight torchlighted torchlights torchlike torchlit torchman torchon torchons torchweed torchwood torchwoods torchwort torchy torchère torchères torcs torcular torculars torculus tordion tordions tordrillite tore toreador toreadors tored torero toreros tores toret toreumatography toreumatology toreutic toreutics torfaceous torfel torfle torgoch torgochs tori toric torics tories torii toriis torino torma tormae tormen torment tormenta tormentable tormentation tormentatious tormentative tormented tormentedly tormenter tormenters tormentful tormentil tormentilla tormentils tormenting tormentingly tormentingness tormentings tormentive tormentor tormentors tormentous tormentress tormentry torments tormentum tormentums tormina torminal torminous tormodont torn tornachile tornada tornade tornades tornadic tornado tornadoes tornadoesque tornadolike tornadoproof tornados tornal tornaria tornariae tornarian tornarias tornese tornesi torney tornilla tornillo tornillos tornote tornus toro torodal toroid toroidal toroidally toroids torolillo toronja toronto tororokombu toros torose torosities torosity torot toroth torotoro torous torpedineer torpedinidae torpediniformes torpedinous torpedo torpedoed torpedoer torpedoers torpedoes torpedoing torpedoist torpedoists torpedolike torpedoman torpedomen torpedoplane torpedoproof torpedos torpefied torpefies torpefy torpefying torpent torpescence torpescences torpescent torpex torpid torpidities torpidity torpidly torpidness torpidnesses torpids torpified torpify torpifying torpitude torpitudes torpor torporific torporise torporize torpors torquate torquated torque torqued torquer torquers torques torqueses torquey torquing torr torrefacation torrefaction torrefactions torrefication torrefied torrefies torrefy torrefying torrens torrent torrentful torrentfulness torrential torrentialities torrentiality torrentially torrentine torrentless torrentlike torrents torrentuous torrentwise torret torrets torreya torricelli torricellian torrid torrider torridest torridities torridity torridly torridness torridnesses torrified torrifies torrify torrifying torrone torrs tors torsade torsades torsalo torse torsel torsels torses torsi torsibilities torsibility torsigraph torsile torsimeter torsiogram torsiograph torsiographs torsiometer torsion torsional torsionally torsioning torsionless torsions torsive torsk torsks torso torsoclusion torsoes torsometer torsoocclusion torsos tort torta tortays torte torteau torteaus torteaux tortellini tortellinis torten tortes tortfeasor tortfeasors torticollar torticollis torticollises torticone tortie tortil tortile tortilities tortility tortilla tortillas tortille tortillions tortillon tortious tortiously tortis tortive tortoise tortoiselike tortoises tortoiseshell tortoiseshells tortoni tortonis tortor tortrices tortricid tortricidae tortricids tortricine tortricoid tortrix tortrixes torts tortue tortula tortulaceous tortulous tortuose tortuosities tortuosity tortuous tortuously tortuousness tortuousnesses torturable torturableness torture tortured torturedly tortureproof torturer torturers tortures torturesome torturesomeness torturing torturingly torturings torturous torturously torturousness toru toruffled torula torulaceous torulae torulaform torulas toruli toruliform torulin torulins toruloid torulose toruloses torulosis torulous torulus torus toruses torve torvid torvity torvous tory toryhillite toryism toryweed tos tosa tosaphist tosaphoth tosas tosca toscana toscanite tose tosed toses tosh toshach toshachs toshakhana toshed tosher toshers toshery toshes toshier toshiest toshing toshly toshnail toshy tosily tosing tosk toss tossed tossen tosser tossers tosses tossicated tossier tossiest tossily tossing tossingly tossings tossment tosspot tosspots tossup tossups tossut tossy tost tostada tostadas tostado tostados tostamente tostao tosticate tosticated tosticating tostication tostications toston tosy tot totable total totaled totaler totalers totaling totalisation totalisations totalisator totalisators totalise totalised totaliser totalisers totalises totalising totalism totalisms totalist totalistic totalists totalitarian totalitarianise totalitarianism totalitarianisms totalitarianize totalitarianized totalitarianizes totalitarianizing totalitarians totalities totalitizer totality totalization totalizations totalizator totalizators totalize totalized totalizer totalizers totalizes totalizing totalled totaller totallers totalling totally totalness totals totanine totanus totanuses totaquin totaquina totaquine totaquines totara totaras totchka tote toteable toted toteload totem totemic totemically totemisation totemism totemisms totemist totemistic totemists totemite totemites totemization totems totemy toter toters totery totes tother tothers totient totients toting totipalmate totipalmation totipalmations totipotence totipotencies totipotency totipotent totipotential totipotentiality totitive totitives toto totoaba totora totquot tots totsiens totted totten totter tottered totterer totterers tottergrass totteriness tottering totteringly totterings totterish totters tottery tottie tottier totties tottiest totting tottings tottle tottlish tottum totty tottyhead totuava totum toty totyman tou touareg touart toucan toucanet toucanets toucans touch toucha touchabilities touchability touchable touchableness touchablenesses touchback touchbacks touchbell touchbox touchdown touchdowns touche touched touchedness toucher touchers touches touchhole touchholes touchier touchiest touchily touchiness touchinesses touching touchingly touchingness touchingnesses touchings touchless touchline touchlines touchmark touchmarks touchous touchpad touchpads touchpan touchpaper touchpapers touchpiece touchscreen touchscreens touchstone touchstones touchtone touchtones touchup touchups touchwood touchwoods touchy touché toug tough toughed toughen toughened toughener tougheners toughening toughenings toughens tougher toughest toughhead toughhearted toughie toughies toughing toughish toughly toughness toughnesses toughra toughs tought toughy touk touked touking touks tould toumnah toun touns toup toupe toupee toupeed toupees toupet toupets tour touraco touracos tourbe tourbillion tourbillions tourbillon tourbillons toured tourelle tourelles tourer tourers touret tourette tourie touries touring tourings tourise tourism tourisms tourist tourista touristas touristdom touristed touristic touristical touristically touristproof touristry tourists touristship touristy tourize tourmalin tourmaline tourmalines tourmalinic tourmaliniferous tourmalinization tourmalinize tourmalite tourmente tourn tournai tournament tournamental tournaments tournant tournasin tournay tourne tournedos tournee tournel tournette tourneur tourney tourneyed tourneyer tourneyers tourneying tourneys tourniquet tourniquets tournois tournure tournures tours tourt tourte tousche touse toused tousel touser tousers touses tousier tousiest tousing tousings tousle tousled tousles tousling tously toust toustie toustier toustiest tousy tout touted touter touters toutie toutier toutiest touting touts touze touzed touzes touzier touziest touzing touzle touzled touzles touzling touzy tov tovar tovariaceous tovarich tovariches tovarisch tovarisches tovarish tovarishes tovet tow towability towable towage towages towai towan toward towardliness towardlinesses towardly towardness towardnesses towards towaway towaways towbar towbars towboat towboats towcock towd towdie towed towel toweled towelette towelettes towelhead towelheads toweling towelings towelled towelling towellings towelry towels tower towered towerier toweriest towering toweringly toweringness towerless towerlet towerlike towerman towermen towerproof towers towerwise towerwork towerwort towery towght towhead towheaded towheads towhee towhees towie towier towies towiest towing towings towkay towlike towline towlines towmast towmon towmond towmonds towmons towmont towmonts town towned townee townees towner townet townfaring townfolk townfolks townful towngate townhome townhomes townhood townhouse townhouses townie townier townies towniest townified townify townifying towniness townish townishly townishness townist townland townlands townless townlet townlets townlier townliest townlike townling townlings townly townman townmen towns townsboy townscape townscaped townscapes townscaping townscapings townsendi townsendia townsfellow townsfolk township townships townside townsite townskip townskips townsman townsmen townspeople townswoman townswomen townward townwards townwear townwears towny towpath towpaths towplane towplanes towrope towropes tows towsack towsacks towse towsed towser towsers towses towsier towsiest towsing towson towsy towt towted towting towts towy towze towzed towzes towzie towzier towziest towzing towzy tox toxa toxaemia toxaemias toxaemic toxalbumic toxalbumin toxalbumins toxalbumose toxamin toxanaemia toxanemia toxaphene toxaphenes toxcatl toxemia toxemias toxemic toxic toxicaemia toxical toxically toxicant toxicants toxicarol toxicate toxication toxications toxicemia toxicities toxicity toxicodendrol toxicodendron toxicoderma toxicodermatitis toxicodermatosis toxicodermia toxicodermitis toxicogenic toxicognath toxicohaemia toxicohemia toxicoid toxicol toxicologic toxicological toxicologically toxicologies toxicologist toxicologists toxicology toxicomania toxicomanias toxicon toxicopathic toxicopathy toxicophagous toxicophagy toxicophidia toxicophobia toxicophobias toxicoses toxicosis toxicotraumatic toxics toxicum toxidermic toxidermitis toxifer toxiferous toxified toxify toxifying toxigenic toxigenicities toxigenicity toxihaemia toxihemia toxiinfection toxiinfectious toxin toxinaemia toxine toxinemia toxines toxinfection toxinfectious toxinosis toxins toxiphagi toxiphagous toxiphagus toxiphobia toxiphobiac toxiphobiacs toxiphobias toxiphoric toxitabellae toxity toxocara toxocaras toxocariases toxocariasis toxodon toxodont toxogenesis toxoglossate toxoid toxoids toxology toxolysis toxon toxone toxonosis toxophil toxophile toxophilies toxophilism toxophilite toxophilites toxophilitic toxophilitism toxophilous toxophily toxophobia toxophoric toxophorous toxoplasma toxoplasmas toxoplasmic toxoplasmoses toxoplasmosis toxosis toxosozin toxostoma toxotae toxotes toxotidae toy toyboy toyboys toydom toyed toyer toyers toyful toyfulness toyhouse toying toyingly toyings toyish toyishly toyishness toyishnesses toyland toylesome toyless toylike toylsom toymaker toymaking toyman toymen toyo toyon toyons toyos toyota toyotas toys toyshop toyshops toysome toytown toywoman toywomen toywort toze tozed tozee tozer tozes tozie tozies tozing tp tpd tph tpi tpk tpke tpm tps tr tra trabacoli trabacolo trabacolos trabal trabant trabascolo trabea trabeae trabeatae trabeate trabeated trabeation trabeations trabecula trabeculae trabecular trabecularism trabeculas trabeculate trabeculated trabeculation trabecule trabes trabu trabuch trabucho trabuco trabucos trac tracasserie tracasseries trace traceabilities traceability traceable traceableness traceablenesses traceably traceback traced traceless tracelessly tracer traceried traceries tracers tracery traces trachea tracheae tracheaectasy tracheal trachealgia trachealis trachean trachearian trachearians trachearies tracheary tracheas tracheate tracheated tracheates tracheation trachecheae trachecheas tracheid tracheidal tracheide tracheides tracheids tracheitis tracheitises trachelagra trachelate trachelectomopexia trachelectomy trachelia trachelismus trachelitis trachelium tracheloacromialis trachelobregmatic tracheloclavicular trachelocyllosis trachelodynia trachelology trachelomastoid trachelopexia tracheloplasty trachelorrhaphy tracheloscapular trachelospermum trachelotomy trachenchyma tracheobronchial tracheobronchitis tracheocele tracheochromatic tracheoesophageal tracheofissure tracheolar tracheolaryngeal tracheolaryngotomy tracheole tracheoles tracheolingual tracheopathia tracheopathy tracheopharyngeal tracheophone tracheophonesis tracheophonine tracheophony tracheophyta tracheophyte tracheophytes tracheoplasty tracheopyosis tracheorrhagia tracheoschisis tracheoscopic tracheoscopies tracheoscopist tracheoscopy tracheostenosis tracheostomies tracheostomy tracheotome tracheotomies tracheotomist tracheotomize tracheotomized tracheotomizing tracheotomy tracherous tracherously trachile trachinoid trachinotus trachinus trachinuses trachipteridae trachipterus trachitis trachitises trachle trachled trachles trachling trachodon trachodont trachodontid trachoma trachomas trachomatous trachomedusan trachurus trachyandesite trachybasalt trachycarpous trachychromatic trachydolerite trachyglossate trachyline trachymedusan trachyphonia trachyphonous trachypteroid trachypterus trachypteruses trachyspermous trachyte trachytes trachytic trachytoid tracing tracingly tracings track trackable trackage trackages trackball trackballs trackbarrow trackbed tracked tracker trackerball trackerballs trackers trackhound tracking trackings trackingscout tracklayer tracklayers tracklaying tracklayings tracklement tracklements trackless tracklessly tracklessness tracklessnesses trackman trackmanship trackmaster trackmen trackpad trackpads trackpot trackroad trackroads tracks trackscout trackshifter tracksick trackside tracksides tracksuit tracksuits trackwalker trackwalkers trackway trackways trackwork traclia tract tractabilities tractability tractable tractableness tractablenesses tractably tractarian tractarianism tractarianize tractarians tractate tractates tractation tractator tractators tractatule tracted tractellate tractellum tractibility tractiferous tractile tractilities tractility tracting traction tractional tractioneering tractions tractism tractitian tractive tractlet tractor tractoration tractorations tractorfeed tractorisation tractorise tractorism tractorist tractorization tractorize tractors tractory tractrices tractrix tracts tractus tractuses trad tradable tradal trade tradeable tradecraft tradecrafts traded tradeful tradeless trademark trademarked trademarking trademarks trademaster tradename tradenames tradeoff tradeoffs trader traders tradership trades tradescantia tradescantias tradesfolk tradesfolks tradesman tradesmanlike tradesmanship tradesmanwise tradesmen tradespeople tradesperson tradespersons tradeswoman tradeswomen tradevman tradiment trading tradings tradite tradition traditional traditionalise traditionalised traditionalises traditionalism traditionalisms traditionalist traditionalistic traditionalists traditionalities traditionality traditionalize traditionalized traditionalizes traditionalizing traditionally traditionaries traditionarily traditionary traditionate traditionately traditioner traditioners traditionise traditionism traditionist traditionists traditionitis traditionize traditionless traditionmonger traditions traditious traditive traditor traditores traditors traditorship trads traduce traduced traducement traducements traducent traducer traducers traduces traducian traducianism traducianisms traducianist traducianistic traducianists traducible traducing traducingly traducings traduct traduction traductionist traductions traductive trady trafalgar traffic trafficabilities trafficability trafficable trafficableness trafficator trafficators traffick trafficked trafficker traffickers trafficking traffickings trafficks trafficless traffics trafficway trafflicker trafflike trag tragacanth tragacantha tragacanthin tragacanths tragal tragedial tragedian tragedianess tragedians tragedical tragedienne tragediennes tragedies tragedietta tragedious tragedist tragedization tragedize tragedy tragelaph tragelaphine tragelaphs tragelaphus tragi tragia tragic tragical tragicality tragically tragicalness tragicalnesses tragicaster tragicise tragicize tragicly tragicness tragicofarcical tragicoheroicomic tragicolored tragicoloured tragicomedian tragicomedies tragicomedy tragicomic tragicomical tragicomicality tragicomically tragicomipastoral tragicoromantic tragicose tragics tragion tragions tragoedia tragopan tragopans tragopogon tragule tragules tragulidae traguline traguloid tragulus tragus trah traheen trahison traik traiked traiking traikit traiks traiky trail trailable trailbaston trailbastons trailblaze trailblazer trailblazers trailblazing trailblazings trailboard trailbreaker trailbreakers trailed trailer trailerable trailered trailering trailerings trailerist trailerists trailerite trailerites trailerload trailers trailership trailery trailhead trailheads trailiness trailing trailingly trailings trailless trailmaker trailmaking trailman trails trailside trailsman trailsmen trailway traily train trainabilities trainability trainable trainableness trainage trainagraph trainant trainante trainband trainbands trainbearer trainbearers trainbolt trainboy traineau trained trainee trainees traineeship traineeships trainel trainer trainers trainful trainfuls training trainings trainless trainline trainload trainloads trainman trainmaster trainmen trainpipe trains trainshed trainsick trainsickness trainspotter trainspotters trainspotting trainster traintime trainway trainways trainy traipse traipsed traipses traipsing traipsings traist trait traiteur traiteurs traitless traitor traitoress traitoresses traitorhood traitorhoods traitorise traitorism traitorisms traitorize traitorlike traitorling traitorly traitorous traitorously traitorousness traitorousnesses traitors traitorship traitorships traitorwise traitory traitress traitresses traits traject trajected trajectile trajecting trajection trajections trajectitious trajectories trajectory trajects trajet tralatician tralaticiary tralaticious tralatition tralatitious tralatitiously tralineate tralira tralucency tralucent tram trama tramal tramcar tramcars trame tramel trameled trameling tramell tramelled tramelling tramells tramels tramful tramless tramline tramlined tramlines tramman trammed trammel trammeled trammeler trammelers trammelhead trammeling trammelingly trammelled trammeller trammellers trammelling trammellingly trammels trammer trammie tramming trammon tramontana tramontanas tramontane tramontanes tramp trampage trampcock trampdom tramped tramper trampers trampess trampet trampets trampette trampettes tramphood tramping trampings trampish trampishly trampism trample trampled trampler tramplers tramples tramplike trampling tramplings trampolin trampoline trampolined trampoliner trampoliners trampolines trampolining trampolinings trampolinist trampolinists trampolins trampoose tramposo trampot tramps trampy tramroad tramroads trams tramsmith tramway tramwayman tramwaymen tramways tramyard trance tranced trancedly tranceful trancelike trances tranchant tranchante tranche tranchefer tranches tranchet tranchets tranchoir trancing trancoidal traneau tranect tranects traneen tranfd trangam trangams trangle trangles trank tranka tranker tranks trankum trankums tranky tranmissibility trannie trannies tranny tranq tranqs tranquil tranquiler tranquilest tranquilisation tranquilisations tranquilisingly tranquilities tranquility tranquilization tranquilizations tranquilize tranquilized tranquilizer tranquilizers tranquilizes tranquilizing tranquilizingly tranquiller tranquillest tranquillisation tranquillisations tranquillise tranquillised tranquilliser tranquillisers tranquillises tranquillising tranquillisingly tranquillities tranquillity tranquillization tranquillizations tranquillize tranquillized tranquillizer tranquillizers tranquillizes tranquillizing tranquillizingly tranquillo tranquilly tranquilness tranquilnesses trans transaccidentation transact transacted transacting transactinide transactinides transaction transactional transactionally transactioneer transactions transactivation transactivations transactor transactors transacts transalpine transalpinely transalpiner transalpines transaminase transaminases transamination transaminations transandean transandine transanimate transanimation transannular transapical transappalachian transaquatic transarctic transatlantic transatlantically transatlantican transatlanticism transaudient transaxle transaxles transbaikal transbaikalian transbay transboard transborder transcalencies transcalency transcalent transcalescency transcalescent transcaucasian transceive transceiver transceivers transcend transcendant transcended transcendence transcendences transcendencies transcendency transcendent transcendental transcendentalisation transcendentalise transcendentalised transcendentalises transcendentalising transcendentalism transcendentalisms transcendentalist transcendentalistic transcendentalists transcendentalities transcendentality transcendentalization transcendentalize transcendentalized transcendentalizes transcendentalizing transcendentalizm transcendentally transcendentalness transcendentalnesses transcendentals transcendently transcendentness transcendentnesses transcendible transcending transcendingly transcendingness transcends transcension transchange transchanged transchanger transchanging transchannel transcience transcolor transcoloration transcolour transcolouration transconductance transcondylar transcondyloid transconscious transcontinental transcontinentally transcorporate transcorporeal transcortical transcreate transcribable transcribble transcribbler transcribe transcribed transcriber transcribers transcribes transcribing transcript transcriptase transcriptases transcription transcriptional transcriptionally transcriptionist transcriptionists transcriptions transcriptitious transcriptive transcriptively transcripts transcriptural transcrystalline transcultural transculturally transculturation transculturations transcur transcurrent transcurrently transcursion transcursive transcursively transcurvation transcutaneous transdermal transdermic transdesert transdialect transdiaphragmatic transdisciplinary transdiurnal transduce transduced transducer transducers transduces transducing transductant transductants transduction transductional transductions transductor transductors transe transect transected transecting transection transections transects transelement transelemental transelementary transelementate transelementated transelementating transelementation transempirical transenna transennae transennas transept transeptal transeptally transeptate transepts transequatorial transequatorially transes transessentiate transessentiated transessentiating transeunt transexperiental transexperiential transf transfard transfashion transfd transfeature transfeatured transfeaturing transfect transfected transfecting transfection transfections transfects transfer transferabilities transferability transferable transferableness transferably transferal transferals transferase transferases transferee transferees transference transferences transferent transferential transferer transferography transferor transferors transferotype transferrabilities transferrability transferrable transferral transferrals transferred transferrer transferrers transferribilities transferribility transferrible transferrin transferring transferrins transferror transferrotype transfers transfigurate transfiguration transfigurations transfigurative transfigure transfigured transfigurement transfigurements transfigures transfiguring transfiltration transfinite transfinitely transfission transfix transfixation transfixed transfixes transfixing transfixion transfixions transfixt transfixture transfluent transfluvial transflux transforation transform transformability transformable transformance transformation transformational transformationalist transformationalists transformationally transformationist transformations transformative transformator transformed transformer transformers transforming transformingly transformings transformism transformisms transformist transformistic transformists transforms transfretation transfrontal transfrontier transfuge transfugitive transfusable transfuse transfused transfuser transfusers transfuses transfusible transfusing transfusion transfusional transfusionist transfusionists transfusions transfusive transfusively transgender transgendered transgenders transgeneration transgenerational transgenerations transgeneses transgenesis transgenic transgenics transgredient transgress transgressed transgresses transgressible transgressing transgressingly transgression transgressional transgressions transgressive transgressively transgressor transgressors transhape tranship transhipment transhipments transhipped transhipper transhippers transhipping transhippings tranships transhistorical transhuman transhumanate transhumanation transhumance transhumances transhumanize transhumant transhumants transhume transhumed transhumes transhuming transience transiences transiencies transiency transient transiently transientness transientnesses transients transigence transigent transiliac transilience transiliences transiliencies transiliency transilient transilluminate transilluminated transilluminates transilluminating transillumination transilluminations transilluminator transilluminators transimpression transincorporation transindividual transinsular transire transires transischiac transisthmian transistor transistorisation transistorisations transistorise transistorised transistorises transistorising transistorization transistorizations transistorize transistorized transistorizes transistorizing transistors transit transitable transited transiter transiting transition transitional transitionally transitionalness transitionals transitionary transitioned transitioning transitionist transitions transitival transitive transitively transitiveness transitivenesses transitives transitivism transitivities transitivity transitivize transitman transitmen transitorily transitoriness transitorinesses transitory transitron transits transitted transitting transitu transitus transl translade translatabilities translatability translatable translatableness translatablenesses translate translated translater translates translating translation translational translationally translations translative translatives translator translatorese translatorial translators translatorship translatory translatress translatrix translay transleithan transletter translight translinguate transliterate transliterated transliterates transliterating transliteration transliterations transliterator transliterators translocalization translocate translocated translocates translocating translocation translocations translocatory transluce translucence translucences translucencies translucency translucent translucently translucid translucidities translucidity translucidus translunar translunary transmade transmake transmaking transmanche transmarginal transmarginally transmarine transmaterial transmateriation transmedial transmedian transmembrane transmen transmental transmentally transmentation transmeridional transmeridionally transmethylation transmew transmewed transmewing transmews transmigrant transmigrants transmigrate transmigrated transmigrates transmigrating transmigration transmigrational transmigrationism transmigrationisms transmigrationist transmigrationists transmigrations transmigrative transmigratively transmigrator transmigrators transmigratory transmissibilities transmissibility transmissible transmissiblel transmission transmissional transmissionist transmissions transmissive transmissively transmissiveness transmissivenesses transmissivities transmissivity transmissometer transmissometers transmissory transmit transmits transmittability transmittable transmittal transmittals transmittance transmittances transmittancy transmittant transmitted transmitter transmitters transmittible transmitting transmogrification transmogrifications transmogrified transmogrifier transmogrifies transmogrify transmogrifying transmold transmontane transmorphism transmould transmountain transmove transmoved transmoves transmoving transmue transmundane transmural transmuscle transmutabilities transmutability transmutable transmutableness transmutablenesses transmutably transmutate transmutation transmutational transmutationist transmutationists transmutations transmutative transmutatory transmute transmuted transmuter transmuters transmutes transmuting transmutive transmutual transmutually transnatation transnational transnationalism transnationalisms transnationally transnationals transnatural transnaturation transnature transnihilation transnormal transnormally transocean transoceanic transocular transom transomed transoms transonic transonics transorbital transovarian transp transpacific transpadane transpalatine transpalmar transpanamic transparence transparences transparencies transparency transparent transparentise transparentises transparentize transparentized transparentizes transparentizing transparently transparentness transparentnesses transparietal transparish transpass transpassional transpatronized transpatronizing transpeciate transpeciation transpeer transpenetrable transpenetration transpeninsular transpenisular transpeptidation transperitoneal transperitoneally transpersonal transpersonally transphenomenal transphysical transphysically transpicuity transpicuous transpicuously transpicuousness transpierce transpierced transpierces transpiercing transpirability transpirable transpirate transpiration transpirational transpirations transpirative transpiratory transpire transpired transpires transpiring transpirometer transplace transplacement transplacental transplacentally transplanetary transplant transplantabilities transplantability transplantable transplantar transplantation transplantations transplanted transplantee transplanter transplanters transplanting transplantings transplants transplendency transplendent transplendently transpleural transpleurally transpolar transpond transponder transponders transpondor transponibility transponible transpontine transport transportabilities transportability transportable transportableness transportables transportal transportals transportance transportances transportation transportational transportationist transportations transportative transported transportedly transportedness transportednesses transportee transportees transporter transporters transporting transportingly transportings transportive transportment transports transportship transposabilities transposability transposable transposableness transposal transposals transpose transposed transposer transposers transposes transposing transposings transposition transpositional transpositions transpositive transpositively transpositor transpository transposon transposons transpour transprint transprocess transprose transproser transpulmonary transput transputer transputers transpyloric transradiable transrational transrationally transreal transrectification transrhenane transrhodanian transriverina transriverine transscriber transsegmental transsegmentally transsensual transsensually transseptal transsepulchral transsexual transsexualism transsexualisms transsexualities transsexuality transsexuals transshape transshaped transshapes transshaping transshift transship transshiped transshiping transshipment transshipments transshipped transshipper transshippers transshipping transshippings transships transsocietal transsolid transsonic transsonics transstellar transsubjective transtemporal transthalamic transthoracic transthoracically transtracheal transubstantial transubstantially transubstantiate transubstantiated transubstantiates transubstantiating transubstantiation transubstantiationalist transubstantiationalists transubstantiationist transubstantiationists transubstantiationite transubstantiations transubstantiative transubstantiatively transubstantiator transubstantiators transubstantiatory transudate transudates transudation transudations transudative transudatory transude transuded transudes transuding transume transumed transumes transuming transumpt transumption transumptions transumptive transumpts transuranian transuranic transuranics transuranium transurethral transuterine transvaal transvaluate transvaluated transvaluates transvaluating transvaluation transvaluations transvalue transvalued transvaluer transvaluers transvalues transvaluing transvasate transvasation transvase transvectant transvection transvenom transverbate transverbation transverberate transverberation transversal transversale transversalis transversalities transversality transversally transversals transversan transversary transverse transversed transversely transverseness transversenesses transverser transverses transversing transversion transversions transversive transversocubital transversomedial transversospinal transversovertical transversum transversus transvert transverter transvest transvested transvestic transvesting transvestism transvestisms transvestist transvestists transvestite transvestites transvestitism transvestitisms transvests transvolation transwritten trant tranted tranter tranters tranting trantlum trants tranvia trap trapa trapaceae trapaceous trapan trapanned trapanner trapanning trapans trapball trapballs trapdoor trapdoors trape traped trapes trapesed trapeses trapesing trapesings trapezate trapeze trapezed trapezes trapezia trapezial trapezian trapeziform trapezii trapezing trapeziometacarpal trapezist trapezists trapezium trapeziums trapezius trapeziuses trapezohedra trapezohedral trapezohedron trapezohedrons trapezoid trapezoidal trapezoidiform trapezoids trapezophora trapezophoron trapezophozophora trapfall traphole trapiche trapiferous traping trapish traplight traplike trapline traplines trapmaker trapmaking trapnest trapnested trapnesting trapnests trappabilities trappability trappable trappean trapped trapper trapperlike trappers trappier trappiest trappiness trappinesses trapping trappingly trappings trappist trappoid trappose trappous trappy traprock traprocks traps trapshoot trapshooter trapshooters trapshooting trapshootings trapstick trapt trapunto trapuntos trasformism trash trashcan trashcans trashed trasher trasheries trashers trashery trashes trashier trashiest trashify trashily trashiness trashinesses trashing traship trashless trashman trashmen trashrack trashtrie trashtries trashy trass trasses trasy trat tratler trats tratt trattle trattoria trattorias trattorie tratts trauchle trauchled trauchles trauchling traulism trauma traumas traumasthenia traumata traumatic traumatically traumaticin traumaticine traumatisation traumatisations traumatise traumatised traumatises traumatising traumatism traumatisms traumatization traumatizations traumatize traumatized traumatizes traumatizing traumatological traumatologies traumatologist traumatologists traumatology traumatonasties traumatonasty traumatonesis traumatophobia traumatopnea traumatopyra traumatosis traumatotactic traumatotaxis traumatropic traumatropism trautvetteria trav travado travail travailed travailer travailing travailous travails travale travally travated trave travel travelability travelable traveldom traveled traveler traveleress travelerlike travelers traveling travelings travellability travellable travelled traveller travellers travelling travellings travelog travelogs travelogue traveloguer travelogues travels traveltime traversable traversal traversals traversary traverse traversed traversely traverser traversers traverses traversewise traversework traversing traversings traversion travertin travertine travertines travertins traves travest travestied travestier travesties travestiment travesty travestying travis travises traviss travois travoise travoises travolator travolators travoy trawl trawlability trawlable trawlboat trawled trawler trawlerman trawlermen trawlers trawley trawleys trawling trawlings trawlnet trawlnets trawls tray traybit traybits trayful trayfuls traylike traymobile traymobiles trayne trayned traynes trayning trays trazia treacher treacherer treacherers treacheries treacherous treacherously treacherousness treacherousnesses treachers treachery treachetour treachetours treachour treachours treachousness treacle treacleberries treacleberry treacled treaclelike treacles treaclewort treaclier treacliest treacliness treaclinesses treacling treacly tread treadboard treaded treader treaders treading treadings treadle treadled treadler treadlers treadles treadless treadling treadlings treadmill treadmills treadplate treads treadwheel treague treagues treas treason treasonable treasonableness treasonablenesses treasonably treasonful treasonish treasonist treasonless treasonmonger treasonous treasonously treasonproof treasons treasr treasurable treasure treasured treasureless treasurer treasurers treasurership treasurerships treasures treasuress treasuries treasuring treasurous treasury treasuryship treat treatabilities treatability treatable treatableness treatably treated treatee treater treaters treaties treating treatings treatise treatiser treatises treatment treatments treator treats treaty treatyist treatyite treatyless treble trebled trebleness treblenesses trebles treblet trebletree trebling trebly trebuchet trebuchets trebucket trebuckets trecentist trecentists trecento trecentos trechmannite treck trecked trecking treckpot trecks treckschuyt treddle treddled treddles treddling tredecaphobia tredecile tredecillion tredecillions tredecillionth tredecillionths tredefowel tredille tredilles tredrille tredrilles tree treebeard treebine treed treefish treefishes treefrog treeful treehair treehood treehopper treehoppers treehouse treehouses treeify treeiness treeing treelawn treelawns treeless treelessness treelessnesses treelet treelike treelikeness treeline treelined treeling treemaker treemaking treeman treen treenail treenails treens treenware treenwares trees treescape treeship treeships treespeeler treetise treetop treetops treeward treewards treey tref trefa trefah trefgordd trefle treflee trefoil trefoiled trefoillike trefoils trefoilwise tregadyne tregerg treget tregetour tregetours tregohm trehala trehalas trehalase trehalases trehalose trehaloses treif treillage treillaged treillages treille treilles treitour treitre trek trekboer trekked trekker trekkers trekking trekometer trekpath treks trekschuit trekschuits trellis trellised trellises trellising trellislike trelliswork trellisworks trema tremandraceous tremas trematic trematoda trematode trematodes trematoid trematoids tremblant tremble trembled tremblement tremblements trembler tremblers trembles tremblier trembliest trembling tremblingly tremblingness tremblings tremblor trembly tremeline tremella tremellaceae tremellaceous tremellales tremelliform tremelline tremellineous tremelloid tremellose tremendous tremendously tremendousness tremendousnesses tremenousness tremens tremetol tremex tremie tremies tremogram tremolandi tremolando tremolandos tremolant tremolants tremolist tremolite tremolites tremolitic tremolo tremolos tremoloso tremophobia tremor tremored tremoring tremorless tremorlessly tremorous tremors tremplin tremulando tremulant tremulants tremulate tremulated tremulates tremulating tremulation tremulent tremulous tremulously tremulousness tremulousnesses trenail trenails trench trenchancies trenchancy trenchand trenchant trenchantly trenchantness trenchard trenchards trenchboard trenchcoats trenched trencher trenchering trencherless trencherlike trenchermaker trenchermaking trencherman trenchermen trenchers trencherside trencherwise trencherwoman trenches trenchfoot trenchful trenching trenchlet trenchlike trenchmaster trenchmore trenchward trenchwise trenchwork trend trended trendel trendier trendies trendiest trendily trendiness trendinesses trending trendle trends trendsetter trendsetters trendsetting trendsettings trendy trendyism trendyisms trenise trenises trental trentals trentepohliaceous trentine trenton trepak trepan trepanation trepanations trepang trepangs trepanize trepanned trepanner trepanners trepanning trepanningly trepannings trepans trephination trephinations trephine trephined trephiner trephiners trephines trephining trephinings trephocyte trephone trephritidae trepid trepidancy trepidant trepidate trepidation trepidations trepidatory trepidity trepidly trepidness treponema treponemal treponemas treponemata treponemataceae treponematoses treponematosis treponematous treponeme treponemes treponemiasis treponemiatic treponemicidal treponemicide trepostomatous treppe tres tresaiel tresance tresche tresillo tresis trespass trespassage trespassed trespasser trespassers trespasses trespassing trespassory tress tressed tressel tressels tresses tressful tressier tressiest tressilate tressilation tressing tressless tresslet tresslike tresson tressour tressours tressure tressured tressures tressy trest trestle trestles trestletree trestletrees trestlewise trestlework trestleworks trestling trests tret tretinoin tretinoins tretis trets trevallies trevally trevet trevets trevette trevis trevises treviss trevisses trew trewage trewel trews trewsman trewsmen trey treybit treybits treys trez trezes trezzes trf tri triable triableness triablenesses triac triace triacetamide triacetate triacetates triacetonamine triacetyloleandomycin triachenium triacid triacids triacontad triacontaeterid triacontane triaconter triaconters triacs triact triactinal triactine triad triadelphous triadic triadical triadically triadics triadism triadisms triadist triadists triads triaene triaenodon triaenose triage triaged triages triaging triagonal triakid triakidae triakisicosahedral triakisicosahedron triakisoctahedra triakisoctahedral triakisoctahedrid triakisoctahedron triakisoctahedrons triakistetrahedral triakistetrahedron trial trialate trialed trialeurodes trialing trialism trialisms trialist trialists trialities triality trialled trialling triallist triallists trialog trialogs trialogue trialogues trials triamcinolone triamcinolones triamid triamide triamin triamine triamino triammonium triamorph triamorphous triamylose triander triandria triandrian triandrous triangle triangled triangler triangles triangleways trianglewise trianglework triangulable triangular triangularis triangularities triangularity triangularly triangulate triangulated triangulately triangulates triangulating triangulation triangulations triangulator trianguloid triangulopyramidal triangulotriangular triannual triannulate trianon triantelope trianthous triapsal triapsidal triarch triarchate triarchies triarchs triarchy triarctic triarcuated triareal triarian triarii triarticulate triary triaryl trias triassic triaster triathlete triathletes triathlon triathlons triatic triatics triatoma triatomic triatomically triatomicity triaxal triaxial triaxialities triaxiality triaxials triaxon triaxonian triaxons triazane triazin triazine triazines triazins triazo triazoic triazole triazoles triazolic trib tribade tribades tribadic tribadies tribadism tribadisms tribadistic tribady tribal tribalism tribalisms tribalist tribalistic tribalists tribally tribarred tribase tribasic tribasicity tribasilar tribble tribbles tribe tribeless tribelet tribelike tribes tribesfolk tribeship tribesman tribesmanship tribesmen tribespeople tribeswoman tribeswomen triblastic triblet triblets triboelectric triboelectricities triboelectricity tribofluorescence tribofluorescent tribolium triboloby tribological tribologies tribologist tribologists tribology triboluminescence triboluminescences triboluminescent tribometer tribometers tribonema tribonemaceae tribophosphorescence tribophosphorescent tribophosphoroscope tribophysics triborough tribrac tribrach tribrachial tribrachic tribrachs tribracteate tribracteolate tribromacetic tribromid tribromide tribromoacetaldehyde tribromoethanol tribromoethanols tribromophenol tribromphenate tribromphenol tribual tribually tribular tribulate tribulated tribulates tribulating tribulation tribulations tribuloid tribulus tribuna tribunal tribunals tribunary tribunate tribunates tribune tribunes tribuneship tribuneships tribunicial tribunician tribunitial tribunitian tribunitiary tribunitive tributable tributaries tributarily tributariness tributarinesses tributary tribute tributed tributer tributers tributes tributing tributist tributorian tributyrin trica tricae tricalcic tricalcium tricameral tricapsular tricar tricarballylic tricarbimide tricarbon tricarboxylic tricarinate tricarinated tricarpellary tricarpellate tricarpous tricars tricaudal tricaudate trice triced tricellular tricenaries tricenarious tricenarium tricenary tricennial tricentenarian tricentenaries tricentenary tricentennial tricentennials tricentral tricep tricephal tricephalic tricephalous tricephalus triceps tricepses triceratops triceratopses triceria tricerion tricerions tricerium trices trichatrophia trichauxis trichechidae trichechine trichechodont trichechus trichevron trichi trichia trichiases trichiasis trichina trichinae trichinal trichinas trichinella trichinellae trichinellas trichiniases trichiniasis trichiniferous trichinisation trichinisations trichinise trichinised trichinises trichinising trichinization trichinizations trichinize trichinized trichinizes trichinizing trichinoid trichinophobia trichinopoli trichinopoly trichinoscope trichinoscopy trichinose trichinosed trichinoses trichinosing trichinosis trichinotic trichinous trichion trichions trichite trichites trichitic trichitis trichiurid trichiuridae trichiuroid trichlorethylene trichlorethylenes trichlorfon trichlorfons trichlorid trichloride trichlorides trichlorids trichlormethane trichloro trichloroacetaldehyde trichloroacetic trichloroethane trichloroethanes trichloroethylene trichloroethylenes trichloromethane trichloromethanes trichloromethyl trichloronitromethane trichlorphon trichlorphons trichobacteria trichobezoar trichoblast trichobranchia trichobranchiate trichocarpous trichocephaliasis trichoceros trichoclasia trichoclasis trichocyst trichocystic trichocysts trichode trichodesmium trichodontidae trichoepithelioma trichogen trichogenous trichoglossia trichoglossine trichoglossus trichogyne trichogynes trichogynial trichogynic trichoid trichological trichologies trichologist trichologists trichology tricholoma tricholomataceae trichoma trichomanes trichomaphyte trichomatose trichomatosis trichomatous trichome trichomes trichomic trichomonacidal trichomonacide trichomonacides trichomonad trichomonadal trichomonads trichomonal trichomoniases trichomoniasis trichomycosis trichonosis trichonosus trichonotid trichopathic trichopathophobia trichopathy trichophaga trichophobia trichophore trichophoric trichophyllous trichophyte trichophytia trichophytic trichophyton trichophytons trichophytoses trichophytosis trichopore trichopter trichoptera trichopteran trichopterans trichopterist trichopterists trichopteron trichopterous trichopterygid trichord trichords trichorrhea trichorrhexic trichorrhexis trichoschisis trichoschistic trichoschistism trichoses trichosis trichosporange trichosporangial trichosporangium trichostasis trichostema trichostrongyle trichostrongylid trichosurus trichothallic trichothecene trichothecenes trichotillomania trichotillomanias trichotomic trichotomies trichotomise trichotomised trichotomises trichotomising trichotomism trichotomist trichotomize trichotomized trichotomizes trichotomizing trichotomous trichotomously trichotomy trichroic trichroism trichroisms trichromat trichromate trichromatic trichromatism trichromatisms trichromatist trichromatopsia trichromats trichrome trichromic trichromics trichronous trichuriases trichuriasis trichy trichys tricing tricinium tricipital tricircular trick tricked tricker trickeries trickers trickery trickful trickie trickier trickiest trickily trickiness trickinesses tricking trickingly trickings trickish trickishly trickishness trickishnesses trickle trickled trickledown trickles trickless tricklet tricklets tricklier trickliest tricklike trickling tricklingly tricklings trickly trickment trickproof tricks tricksical tricksier tricksiest tricksily tricksiness tricksinesses tricksome trickster trickstering tricksterings tricksters trickstress tricksy tricktrack tricky triclad triclads triclclinia triclinate triclinia triclinial tricliniarch tricliniary triclinic triclinium tricliniums triclinohedric tricoccose tricoccous tricolette tricolettes tricolic tricolon tricolor tricolored tricolors tricolour tricoloured tricolours tricolumnar tricompound tricon triconch triconodont triconodontid triconodontoid triconodonty triconsonantal triconsonantalism triconsonantic tricophorous tricorn tricorne tricornered tricornes tricorns tricornute tricorporal tricorporate tricorporated tricoryphean tricosane tricosanone tricostate tricosyl tricosylic tricot tricotee tricoteuse tricoteuses tricotine tricotines tricots tricotyledonous tricouni tricresol tricrotic tricrotism tricrotisms tricrotous tricrural trictrac trictracs tricurvate tricuspal tricuspid tricuspidal tricuspidate tricuspidated tricuspids tricussate tricyanide tricycle tricycled tricyclene tricycler tricyclers tricycles tricyclic tricyclics tricycling tricyclings tricyclist tricyclists trid tridacna tridacnas tridacnidae tridactyl tridactylous tridaily tridarn tridarns triddler tride tridecane tridecene tridecilateral tridecoic tridecyl tridecylene tridecylic trident tridental tridentate tridentated tridented tridentiferous tridentine tridentlike tridents tridepside tridermic tridiagonal tridiametral tridiapason tridigitate tridii tridimensional tridimensionalities tridimensionality tridimensionally tridimensioned tridiurnal tridominium tridominiums tridra tridrachm triduam triduan triduo triduum triduums tridymite tridymites tridynamous trie triecious trieciously tried triedly triedness trieennia trielaidin triene trienes triennia triennial trienniality triennially triennials triennias triennium trienniums triens triental trientes triequal trier trierarch trierarchal trierarchic trierarchies trierarchs trierarchy triers trierucin tries trieteric trieterics triethanolamine triethyl triethylamine triethylamines triethylstibine trifa trifacial trifacials trifanious trifarious trifasciated trifecta trifectas triferous triff triffer triffest triffic triffid triffidian triffids triffidy trifid trifilar trifistulary triflagellate trifle trifled trifledom trifler triflers trifles triflet trifling triflingly triflingness triflingnesses triflings trifloral triflorate triflorous trifluoperazine trifluoperazines trifluoride trifluorochloromethane trifluouride trifluralin trifluralins trifly trifocal trifocals trifoil trifold trifoliata trifoliate trifoliated trifolies trifoliolate trifoliosis trifolium trifoliums trifoly triforia triforial triforium triform triformed triformin triformity triformous trifornia trifoveolate trifuran trifurcal trifurcate trifurcated trifurcates trifurcating trifurcation trifurcations trig triga trigae trigamies trigamist trigamists trigamous trigamy trigatron trigeminal trigeminals trigemini trigeminous trigeminus trigeneric trigesimal trigged trigger triggered triggerfish triggerfishes triggering triggerless triggerman triggermen triggers triggest trigging trigintal trigintennial triglandular triglid triglidae triglinae triglochid triglochin triglot triglots trigly triglyceride triglycerides triglyceryl triglyph triglyphal triglyphed triglyphic triglyphical triglyphs trigness trignesses trigo trigon trigona trigonal trigonally trigone trigonella trigonellin trigonelline trigoneutic trigoneutism trigoniacean trigoniaceous trigonic trigonid trigonite trigonitis trigonocephalic trigonocephalous trigonocephaly trigonocerous trigonododecahedron trigonodont trigonoid trigonometer trigonometers trigonometria trigonometric trigonometrical trigonometrically trigonometrician trigonometries trigonometry trigonon trigonotype trigonous trigons trigonum trigos trigram trigrammatic trigrammatically trigrammatism trigrammic trigrams trigraph trigraphic trigraphically trigraphs trigs triguttulate trigyn trigynia trigynian trigynous trihalid trihalide trihalomethane trihalomethanes trihedra trihedral trihedrals trihedron trihedrons trihemeral trihemimer trihemimeral trihemimeris trihemiobol trihemiobolion trihemitetartemorion trihoral trihourly trihybrid trihybrids trihydrate trihydrated trihydric trihydride trihydrol trihydroxy trihypostatic triiodomethane triiodothyronine triiodothyronines trijet trijets trijugate trijugous trijunction trikaya trike triked triker trikeria trikerion trikes triketo triketone triking trikir trilabe trilabiate trilamellar trilamellated trilaminar trilaminate trilarcenous trilateral trilateralism trilateralisms trilateralist trilateralists trilaterality trilaterally trilateralness trilaterals trilateration trilaterations trilaurin trilbies trilby trilbys trild trilemma trilemmas trilinear trilineate trilineated trilingual trilingualism trilingualisms trilingually trilinguals trilinguar trilinolate trilinoleate trilinolenate trilinolenin trilisa trilit trilite triliteral triliteralism triliteralisms triliterality triliterally triliteralness triliterals trilith trilithic trilithon trilithons triliths trilium trill trillachan trillado trillando trilled triller trillers trillet trilleto trilletto trilli trilliaceae trilliaceous trillibub trilliin trillil trilling trillings trillion trillionaire trillionise trillionize trillions trillionth trillionths trillium trilliums trillo trilloes trills trilobal trilobate trilobated trilobation trilobe trilobed trilobes trilobite trilobites trilobitic trilocular triloculate trilogic trilogical trilogies trilogist trilogy trilophodont triluminar triluminous trim trimacer trimacular trimaculate trimaculated trimaran trimarans trimargarate trimargarin trimastigate trimellic trimellitic trimembral trimensual trimer trimercuric trimeric trimeride trimerisation trimerite trimerization trimerous trimers trimesic trimesinic trimesitic trimesitinic trimester trimesters trimestral trimestrial trimesyl trimetalism trimetallic trimetallism trimeter trimeters trimethadione trimethadiones trimethoprim trimethoprims trimethoxy trimethyl trimethylacetic trimethylamine trimethylamines trimethylbenzene trimethylene trimethylenes trimethylglycine trimethylmethane trimethylstibine trimetric trimetrical trimetrogon trimetrogons trimly trimmed trimmer trimmers trimmest trimming trimmingly trimmings trimness trimnesses trimodal trimodality trimolecular trimonthly trimoric trimorph trimorphic trimorphically trimorphism trimorphisms trimorphodon trimorphous trimorphs trimotor trimotored trimotors trims trimscript trimscripts trimstone trimtab trimtabs trimtram trimucronatus trimurti trimuscular trimyristate trimyristin trin trina trinacrian trinacriform trinal trinality trinalize trinary trination trinational trinchera trindle trindled trindles trindling trine trinectes trined trinely trinervate trinerve trinerved trines trineural tringa tringine tringle tringles tringoid trinidad trinidadian trinidado trining triniscope triniscopes trinitarian trinitarianism trinitarians trinities trinitrate trinitrates trinitration trinitrid trinitride trinitrin trinitrins trinitro trinitroaniline trinitrobenzene trinitrobenzenes trinitrocarbolic trinitrocellulose trinitrocresol trinitrocresols trinitroglycerin trinitromethane trinitrophenol trinitrophenols trinitrophenylmethylnitramine trinitroresorcin trinitrotoluene trinitrotoluenes trinitrotoluol trinitrotoluols trinitroxylene trinitroxylol trinity trinityhood trinitytide trink trinkerman trinkermen trinket trinketed trinketer trinketers trinketing trinketings trinketries trinketry trinkets trinkety trinkle trinklement trinklet trinkum trinkums trinoctial trinoctile trinocular trinodal trinode trinodine trinol trinomen trinomial trinomialism trinomialisms trinomialist trinomialists trinomiality trinomially trinomials trinopticon trins trintle trinucleate trinucleotide trinucleotides trinunity trio triobol triobolon trioctile triocular triode triodes triodia triodion triodontoid trioecia trioecious trioeciously trioecism trioecs trioicous triol triolcous triole trioleate triolefin triolefine trioleic triolein triolet triolets triology triols trional triones trionfi trionfo trionychid trionychidae trionychoid trionychoidean trionym trionymal trionyms trionyx trioperculate triopidae triops trior triorchis triorchism triors triorthogonal trios triose trioses triostium triovulate trioxazine trioxid trioxide trioxides trioxids trioxymethylene triozonid triozonide trip tripack tripacks tripal tripaleolate tripalmitate tripalmitin tripalmitins tripara tripart triparted tripartedly tripartible tripartient tripartism tripartisms tripartite tripartitely tripartition tripartitions tripaschal tripe tripedal tripehound tripehounds tripel tripelennamine tripelike tripeman tripemen tripemonger tripennate tripenny tripeptide triperies tripersonal tripersonalism tripersonalisms tripersonalist tripersonalists tripersonalities tripersonality tripersonally tripery tripes tripeshop tripestone tripetaloid tripetalous tripewife tripewives tripewoman tripewomen tripey triphammer triphammers triphane triphase triphaser triphasic triphenyl triphenylamine triphenylamines triphenylated triphenylcarbinol triphenylmethane triphenylmethanes triphenylmethyl triphenylphosphine triphibian triphibians triphibious triphone triphones triphony triphosphate triphosphates triphosphopyridine triphthong triphthongal triphthongs triphyletic triphyline triphylite triphyllous tripier tripiest tripinnate tripinnated tripinnately tripinnatifid tripinnatisect tripitaka tripitakas tripl tripla triplane triplanes triplasian triplasic triple tripleback tripled triplefold triplegia tripleness triplenesses tripler triples triplet tripletail tripletails tripletree triplets tripleurospermum triplewise triplex triplexes triplexity triplicate triplicated triplicately triplicates triplicating triplication triplications triplicative triplicature triplice triplicities triplicity triplicostate triplied triplies tripliform triplinerved tripling triplings triplite triplites triploblastic triplocaulescent triplocaulous triplochiton triploid triploidic triploidies triploidite triploids triploidy triplopia triplopy triplum triplumbic triply triplying tripmadam tripod tripodal tripodial tripodian tripodic tripodical tripodies tripods tripody tripointed tripolar tripoli tripoline tripolis tripolite tripos triposes tripot tripotage tripotassium tripoter trippant tripped tripper tripperish trippers trippery trippet trippets trippier trippiest tripping trippingly trippingness trippings trippist tripple trippled trippler tripplers tripples trippling trippy trips tripses tripsill tripsis tripsome tripsomely tript triptane triptanes tripterous triptote triptotes triptyca triptycas triptych triptychs triptyque triptyques tripudia tripudial tripudiant tripudiary tripudiate tripudiated tripudiates tripudiating tripudiation tripudiations tripudist tripudium tripudiums tripunctal tripunctate tripwire tripwires tripy tripylaean tripylarian tripylean tripyrenous triquadrantal triquet triquetra triquetral triquetras triquetric triquetrous triquetrously triquetrum triquinate triquinoyl triradial triradially triradiate triradiated triradiately triradiation triradii triradius triradiuses trirectangular triregnum trireme triremes trirhombohedral trirhomboidal triricinolein trisaccharide trisaccharides trisaccharose trisacramentarian trisagion trisagions trisalt trisazo triscele trisceles trisceptral trisect trisected trisecting trisection trisections trisector trisectors trisectrices trisectrix trisectrixes trisects triseme trisemes trisemic trisensory trisepalous triseptate triserial triserially triseriate triseriatim trisetose trisha trishaw trishaws trishna trisilane trisilicane trisilicate trisilicic trisinuate trisinuated triskaidecaphobia triskaidecaphobias triskaidekaphobe triskaidekaphobes triskaidekaphobia triskaidekaphobias triskaidekaphobic triskele triskeles triskelia triskelion triskelions trismegist trismegistic trismic trismus trismuses trisoctahedra trisoctahedral trisoctahedron trisoctahedrons trisodium trisome trisomes trisomic trisomics trisomies trisomy trisonant trispast trispaston trispermous trispinose trisplanchnic trisporic trisporous trisquare trist tristachyous tristan tristate triste tristearate tristearin tristearins tristeness tristesse tristesses tristetrahedron tristeza tristezas tristful tristfully tristfulness tristfulnesses tristich tristichic tristichous tristichs tristigmatic tristigmatose tristiloquy tristimulus tristisonous tristive tristram tristylous tristyly trisubstituted trisubstitution trisul trisula trisulas trisulc trisulcate trisulcated trisulfate trisulfid trisulfide trisulfides trisulfone trisulfoxid trisulfoxide trisulphate trisulphid trisulphide trisulphides trisulphone trisulphonic trisulphoxid trisulphoxide trisuls trisylabic trisyllabic trisyllabical trisyllabically trisyllabism trisyllabity trisyllable trisyllables trit tritactic tritagonist tritagonists tritangent tritangential tritanope tritanopia tritanopias tritanopic tritanopsia tritanoptic tritaph trite tritely tritemorion tritencephalon triteness tritenesses triter triternate triternately triterpene triterpenoid trites tritest tritetartemorion tritheism tritheisms tritheist tritheistic tritheistical tritheists tritheite tritheocracy trithing trithings trithioaldehyde trithiocarbonate trithiocarbonic trithionate trithionates trithionic tritiate tritiated tritiates tritiating tritiation tritiations tritical triticale triticales triticality tritically triticalness triticalnesses triticeous triticeum triticin triticism triticisms triticoid triticum triticums tritide tritides tritish tritium tritiums tritocerebral tritocerebrum tritocone tritoconid tritolo tritoma tritomas tritomite triton tritonal tritonality tritone tritones tritonia tritonias tritonoid tritonous tritons tritonymph tritonymphal tritopatores tritopine tritor tritoral tritorium tritoxide tritozooid tritriacontane trittichan tritubercular trituberculate trituberculies trituberculism trituberculisms trituberculy triturable tritural triturate triturated triturates triturating trituration triturations triturator triturators triturature triture triturium triturus trityl triumf triumph triumphal triumphalism triumphalisms triumphalist triumphalists triumphals triumphance triumphancy triumphant triumphantly triumphator triumphed triumpher triumpheries triumphers triumphery triumphing triumphings triumphs triumphwise triumvir triumviral triumvirate triumvirates triumviri triumviries triumvirs triumvirship triumviry triunal triune triunes triungulin triunification triunion triunitarian triunities triunity triunsaturated triurid trivalence trivalences trivalencies trivalency trivalent trivalerin trivalve trivalved trivalves trivalvular trivant trivantly trivariant trivat triverbal triverbial trivet trivets trivette trivetwise trivia trivial trivialisation trivialisations trivialise trivialised trivialises trivialising trivialism trivialisms trivialist trivialists trivialities triviality trivialization trivializations trivialize trivialized trivializes trivializing trivially trivialness trivialnesses trivirga trivirgate trivium triviums trivoltine trivvet triweeklies triweekliess triweekly triwet trizoic trizomal trizonal trizone trizones trm trna troad troade troades troads troak troaked troaking troaks troat troated troating troats trobador troca trocaical trocar trocars troch trocha trochaic trochaicality trochaically trochaics trochal trochalopod trochalopodous trochanter trochanteral trochanteric trochanterion trochanters trochantin trochantine trochantinian trochar trochars trochart trochate troche trocheameter trocheameters troched trochee trocheeize trochees trochelminth troches trocheus trochi trochid trochiferous trochiform trochil trochili trochilic trochilics trochilidae trochilidine trochilidist trochiline trochilopodous trochilos trochils trochiluli trochilus trochiluses troching trochiscation trochisci trochiscus trochiscuses trochisk trochisks trochite trochites trochitic trochlea trochleae trochlear trochleariform trochlearis trochlears trochleary trochleas trochleate trochleiform trochocephalia trochocephalic trochocephalus trochocephaly trochodendraceous trochoid trochoidal trochoidally trochoides trochoids trochometer trochometers trochophore trochophores trochosphere trochospheres trochospherical trochotron trochotrons trochozoic trochozoon trochus trochuses trock trocked trocken trockery trocking trocks troco troctolite troctolites trod trodden trode trodes trods troegerite troelie troelies troely troffer troffers troft trog trogerite trogged trogger troggin trogging troggs trogium troglodytal troglodyte troglodytes troglodytic troglodytical troglodytidae troglodytish troglodytism troglodytisms trogon trogonidae trogoniformes trogonoid trogons trogs trogue troic troika troikas troilism troilisms troilist troilists troilite troilites troilus troiluses trois trojan trojans troke troked troker trokes troking troland trolands trolatitious troll trolldom trolled trolleite troller trollers trolley trolleybus trolleybuses trolleybusses trolleyed trolleyer trolleyful trolleying trolleyman trolleymen trolleys trollflower trollied trollies trollimog trolling trollings trollish trollius trolliuses trollman trollmen trollol trollop trolloped trollopee trollopees trollopian trolloping trollopish trollops trollopy trolls trolly trollying trollyman trollymen tromba trombash trombe trombicula trombiculiases trombiculiasis trombiculid trombiculidae trombiculids trombiculiid trombidiases trombidiasis trombidiid trombidiidae trombidiosis trombone trombones trombonist trombonists trombony tromino trominoes trominos trommel trommels tromometer tromometers tromometric tromometrical tromometry tromp trompe tromped trompes trompil trompillo tromping tromple tromps tron trona tronador tronage tronas tronc troncs trondheim trondhjemite trone troner trones tronk tronned tronning trons troodont troolie troolies trooly troop trooped trooper trooperess troopers troopfowl troopial troopials trooping troops troopship troopships troopwise trooshlach troostite troostites troostitic troot trooz trop tropacocaine tropaeola tropaeolaceae tropaeolaceous tropaeoli tropaeolin tropaeolins tropaeolum tropaeolums tropaia tropaion tropal troparia troparion tropary tropate trope troped tropeic tropein tropeine tropeolin troper tropes tropesis trophaea trophaeum trophal trophallactic trophallaxes trophallaxis trophectoderm trophedema trophema trophesial trophesies trophesy trophi trophic trophical trophically trophicity trophied trophies trophism trophobiont trophobioses trophobiosis trophobiotic trophoblast trophoblastic trophoblasts trophochromatin trophocyte trophoderm trophoderms trophodisc trophodynamic trophodynamics trophogenesis trophogenic trophogeny trophologies trophology trophon trophonema trophoneuroses trophoneurosis trophoneurotic trophonian trophonucleus trophopathy trophophore trophophorous trophophyte trophoplasm trophoplasmatic trophoplasmic trophoplasms trophoplast trophosomal trophosome trophosperm trophosphere trophospongia trophospongial trophospongium trophospore trophotactic trophotaxes trophotaxis trophotherapy trophothylax trophotropic trophotropism trophotropisms trophozoite trophozoites trophozooid trophy trophying trophyless trophywort tropia tropic tropical tropicalih tropicalisation tropicalisations tropicalise tropicalised tropicalises tropicalising tropicality tropicalization tropicalizations tropicalize tropicalized tropicalizes tropicalizing tropically tropicals tropicbird tropicbirds tropicopolitan tropics tropidine tropidoclonion tropin tropine tropines troping tropins tropism tropismatic tropisms tropist tropistic tropistically tropists tropocaine tropocollagen tropocollagens tropologic tropological tropologically tropologies tropologize tropologized tropologizing tropology tropometer tropomyosin tropomyosins troponin troponins troponym troponymy tropopause tropopauses tropophil tropophilous tropophyte tropophytes tropophytic troposcatter troposcatters troposphere tropospheres tropospheric tropostereoscope tropotactic tropotactically tropotaxes tropotaxis tropoyl troppaia troppo troptometer tropyl trossers trostera trot trotcozy troth trothed trothful trothing trothless trothlessness trothlike trothplight trothplighted trothplighting trothplights troths trotlet trotline trotlines trotol trots trotskyism trotted trotter trotters trotteur trottie trotting trottings trottles trottoir trottoired trotty trotyl trotyls troubador troubadour troubadourish troubadourism troubadourist troubadours trouble troubled troubledly troubledness troublefree troublemaker troublemakers troublemaking troublemakings troublement troubleproof troubler troublers troubles troubleshoot troubleshooted troubleshooter troubleshooters troubleshooting troubleshootings troubleshoots troubleshot troublesome troublesomely troublesomeness troublesomenesses troublespot troublesshot troubling troublingly troublings troublous troublously troublousness troublousnesses troubly troue trough troughed troughful troughing troughlike troughs troughster troughway troughwise troughy troule trouled troules trouling trounce trounced trouncer trouncers trounces trouncing trouncings troupand troupe trouped trouper troupers troupes troupial troupials trouping trouse trouser trouserdom trousered trouserettes trouserian trousering trouserings trouserless trousers trouses trouss trousse trousseau trousseaus trousseaux trout troutbird trouter trouters troutflower troutful troutier troutiest troutiness trouting troutings troutless troutlet troutlets troutlike troutling troutlings troutperch troutperches trouts troutstone troutstones trouty trouv trouvaille trouvailles trouvares trouvere trouveres trouveur trouveurs trouvre trouvère trouvères trovatore trove troveless trover trovers troves trow trowable trowane trowed trowel trowelbeak troweled troweler trowelers trowelful troweling trowelled troweller trowellers trowelling trowelman trowels trowie trowing trowlesworthite trowman trows trowser trowsers trowth trowths troy troys trp trpset trs trt truancies truancy truandise truant truantcy truanted truanting truantism truantlike truantly truantness truantries truantry truants truantship truantships trub trubu trucage truce trucebreaker trucebreaking truced truceless trucemaker trucemaking truces trucha truchman truchmans truchmen trucial trucidation trucing truck truckage truckages truckdriver trucked trucker truckers truckful truckfuls truckie truckies trucking truckings truckle truckled truckler trucklers truckles trucklike truckline trucklines truckling trucklingly trucklings truckload truckloads truckman truckmaster truckmasters truckmen trucks truckster truckway truculence truculences truculencies truculency truculent truculental truculently truculentness truddo trudellite trudge trudged trudgen trudgens trudgeon trudgeons trudger trudgers trudges trudging trudgings true trueblue trueblues trueborn truebred trued truehearted trueheartedly trueheartedness trueheartednesses trueing truelike truelove trueloves trueman truemen trueness truenesses truepennies truepenny truer trues truest truewood truff truffe truffes truffle truffled trufflelike truffler truffles trufflesque truffling trufflings trug trugmallion trugs truing truish truism truismatic truisms truistic truistical truistically trull truller trulli trullisatio trullisatios trullization trullo trulls truly truman trumbash trumeau trumeaux trummel trump trumped trumper trumperies trumperiness trumpery trumpet trumpetbush trumpeted trumpeter trumpeters trumpetfish trumpetfishes trumpeting trumpetings trumpetleaf trumpetless trumpetlike trumpetry trumpets trumpetweed trumpetwood trumpety trumph trumpie trumping trumpings trumpless trumplike trumps trumscheit trun truncage truncal truncate truncated truncately truncates truncating truncation truncations truncator truncatorotund truncatosinuate truncature trunch trunched truncheon truncheoned truncheoner truncheoners truncheoning truncheons truncher trunchman truncocolumella truncus trundle trundled trundlehead trundler trundlers trundles trundleshot trundletail trundling trunk trunkback trunked trunkfish trunkfishes trunkful trunkfuls trunking trunkings trunkless trunkmaker trunknose trunks trunksful trunksleeve trunksleeves trunkway trunkwork trunnel trunnels trunnion trunnioned trunnionless trunnions truong truquage truqueur truqueurs trush trusion truss trussed trussell trusser trussers trussery trusses trussing trussings trussmaker trussmaking trusswork trust trustabilities trustability trustable trustableness trustably trustbuster trustbusters trustbusting trustbustings trusted trustee trusteed trusteeing trusteeism trustees trusteeship trusteeships trusteing trusten truster trusters trustful trustfully trustfulness trustfulnesses trustier trusties trustiest trustification trustified trustify trustifying trustihood trustily trustiness trustinesses trusting trustingly trustingness trustingnesses trustle trustless trustlessly trustlessness trustlessnesses trustman trustmen trustmonger trustor trustors trusts trustwoman trustwomen trustworthier trustworthiest trustworthily trustworthiness trustworthinesses trustworthy trusty truth truthable truthful truthfully truthfulness truthfulnesses truthier truthiest truthify truthiness truthless truthlessly truthlessness truthlessnesses truthlike truthlikeness truths truthsman truthteller truthtelling truthy trutinate trutination trutine truttaceous truvat truxillic truxillin truxilline try trye tryer tryers trygon tryhouse trying tryingly tryingness tryings tryma trymata tryms tryout tryouts tryp trypa trypaflavine trypaflavines trypan trypaneid trypanocidal trypanocide trypanocides trypanolysin trypanolysis trypanolytic trypanophobia trypanosoma trypanosomacidal trypanosomacide trypanosomal trypanosomatic trypanosomatosis trypanosomatous trypanosome trypanosomes trypanosomiases trypanosomiasis trypanosomic tryparsamide tryparsamides trypetid trypetidae trypiate trypodendron trypograph trypographic tryps trypsin trypsinise trypsinize trypsinogen trypsinogens trypsins tryptamine tryptamines tryptase tryptic tryptogen tryptone tryptonize tryptophan tryptophane tryptophanes tryptophans trysail trysails tryst tryste trysted tryster trysters trystes trysting trysts tryt trytophan tryworks très ts tsaddik tsaddikim tsaddiks tsaddiq tsaddiqim tsaddiqs tsade tsades tsadi tsadik tsadis tsamba tsambas tsantsa tsar tsardom tsardoms tsarevich tsareviches tsarevitch tsarevitches tsarevna tsarevnas tsarina tsarinas tsarism tsarisms tsarist tsaristic tsarists tsaritsa tsaritsas tsaritsyn tsaritza tsaritzas tsars tsarship tsatlee tsatske tsatskes tscharik tscheffkinite tschernosem tschernosems tsere tsesarevich tsesareviches tsesarevitch tsesarevitches tsesarevna tsesarevnas tsesarewich tsesarewiches tsesarewitch tsesarewitches tsessebe tsessebes tsetse tsetses tsh tshi tshiluba tshwala tshwalas tsi tsia tsigane tsiganes tsimmes tsimmeses tsimshian tsine tsingtauite tsiology tsitses tsitsith tsk tsked tsking tsks tsktsk tsktsked tsktsking tsktsks tsooris tsores tsoris tsorriss tsotsi tsotsis tsouic tsouris tsourises tsp tss tst tsuba tsubas tsubo tsuga tsukupin tsumebite tsun tsunami tsunamic tsunamis tsungtu tsures tsuris tsurises tsurugi tsushima tsutsugamushi tsutsugamushis tsutsumu tsutsumus tswana tt tty ttys tu tua tuan tuans tuant tuareg tuarn tuart tuarts tuatara tuataras tuatera tuateras tuath tuaths tub tuba tubae tubage tubages tubaist tubaists tubal tubaphone tubar tubaron tubas tubate tubatoxin tubba tubbable tubbal tubbeck tubbed tubber tubbers tubbie tubbier tubbiest tubbiness tubbinesses tubbing tubbings tubbish tubbist tubboe tubby tube tubectomies tubectomy tubed tubeflower tubeform tubeful tubefuls tubehead tubehearted tubeless tubelet tubelike tubemaker tubemaking tubeman tubemen tubenose tubenoses tuber tuberaceae tuberaceous tuberales tuberation tubercle tubercled tuberclelike tubercles tubercula tubercular tubercularia tuberculariaceae tuberculariaceous tubercularisation tubercularise tubercularised tubercularising tubercularization tubercularize tubercularized tubercularizing tubercularly tubercularness tuberculars tuberculate tuberculated tuberculatedly tuberculately tuberculation tuberculations tuberculatogibbous tuberculatonodose tuberculatoradiate tuberculatospinous tubercule tuberculed tubercules tuberculid tuberculide tuberculiferous tuberculiform tuberculin tuberculination tuberculine tuberculinic tuberculinisation tuberculinise tuberculinised tuberculinising tuberculinization tuberculinize tuberculinized tuberculinizing tuberculins tuberculisation tuberculisations tuberculise tuberculised tuberculises tuberculising tuberculization tuberculizations tuberculize tuberculized tuberculizes tuberculizing tuberculocele tuberculocidin tuberculoderma tuberculoid tuberculoma tuberculomania tuberculomas tuberculomata tuberculophobia tuberculoprotein tuberculose tuberculosectorial tuberculosed tuberculoses tuberculosis tuberculotherapist tuberculotherapy tuberculotoxin tuberculotrophic tuberculous tuberculously tuberculousness tuberculum tuberculums tuberiferous tuberiform tuberin tuberisation tuberise tuberization tuberize tuberless tuberoid tuberose tuberoses tuberosities tuberosity tuberous tuberously tuberousness tubers tuberuculate tubes tubesmith tubesnout tubework tubeworks tubeworm tubeworms tubfast tubfasts tubfish tubfishes tubful tubfuls tubhunter tubicen tubicinate tubicination tubicolar tubicole tubicoles tubicolous tubicorn tubicornous tubifacient tubifer tubiferous tubifex tubifexes tubificid tubificids tubiflorous tubiform tubig tubik tubilingual tubinarial tubinarine tubing tubings tubiparous tubipore tubiporid tubiporoid tubiporous tubist tubists tublet tublike tubmaker tubmaking tubman tubmen tuboabdominal tubocurarine tubocurarines tuboid tubolabellate tuboligamentous tuboovarial tuboovarian tuboperitoneal tuboplasties tuboplasty tuborrhea tubotympanal tubovaginal tubs tubster tubtail tubular tubularia tubularian tubularians tubularidan tubularities tubularity tubularly tubulate tubulated tubulates tubulating tubulation tubulations tubulator tubulators tubulature tubulatures tubule tubules tubulet tubuli tubulibranch tubulibranchian tubulibranchiate tubulidentata tubulidentate tubuliferan tubuliferous tubulifloral tubuliflorous tubuliform tubulin tubulins tubulipore tubuliporid tubuliporoid tubulisation tubulization tubulodermoid tubuloracemose tubulosaccular tubulose tubulostriato tubulous tubulously tubulousness tubulure tubulures tubulus tubuphone tubwoman tucana tucandera tuchis tuchit tuchun tuchunate tuchunism tuchunize tuchuns tuck tuckahoe tuckahoes tucked tucker tuckerbag tuckerbags tuckerbox tuckerboxes tuckered tuckering tuckermanity tuckers tucket tuckets tucking tuckner tucks tuckshop tuckshops tucktoo tucky tucotuco tucotucos tucson tucum tucuma tucuman tucutuco tucutucos tucutucu tudel tudor tue tuebor tuedian tueiron tues tuesday tuesdays tufa tufaceous tufalike tufan tufas tuff tuffaceous tuffe tuffes tuffet tuffets tuffing tuffoon tuffs tufftaffeta tufftaffetas tufftaffeties tufftaffety tufoli tuft tuftaffeta tuftaffetas tuftaffeties tuftaffety tufted tufter tufters tufthunter tufthunting tuftier tuftiest tuftily tufting tuftings tuftlet tufts tufty tug tugboat tugboatman tugboatmen tugboats tugela tugged tugger tuggers tuggery tugging tuggingly tuggings tughra tughras tughrik tughriks tugless tuglike tugman tugra tugras tugrik tugriks tugs tugui tuguria tugurium tui tuik tuille tuilles tuillette tuillettes tuilyie tuilyied tuilyieing tuilyies tuilzie tuilzied tuilzieing tuilzies tuina tuinas tuinga tuis tuism tuisms tuition tuitional tuitionary tuitionless tuitions tuitive tuke tukra tukutuku tula tuladi tuladis tularaemia tularaemias tularaemic tulare tularemia tularemias tularemic tulasi tulban tulbans tulcan tulchan tulchans tulchin tule tules tulestoma tuliac tulip tulipa tulipant tulipants tulipflower tulipi tulipiferous tulipist tuliplike tulipomania tulipomaniac tulipomanias tulips tulipwood tulipwoods tulipy tulisan tulisanes tulle tulles tullibee tullibees tully tulnic tulostoma tulostomaceae tulostomataceae tulostomatales tulsa tulsi tulu tulwar tulwars tulwaur tum tumain tumasha tumatakuru tumatukuru tumbak tumbaki tumbek tumbeki tumbester tumble tumblebug tumblebugs tumbled tumbledown tumbledung tumblehome tumblehomes tumbler tumblerful tumblerfuls tumblerlike tumblers tumblerwise tumbles tumblewed tumbleweed tumbleweeds tumblification tumbling tumblingly tumblings tumbly tumbrel tumbrels tumbril tumbrils tume tumefacient tumefaction tumefactions tumefactive tumefied tumefies tumefy tumefying tumeric tumesce tumesced tumescence tumescences tumescent tumescently tumesces tumescing tumfie tumid tumidily tumidities tumidity tumidly tumidness tumidnesses tumli tummals tummed tummel tummeler tummels tummer tummies tumming tummler tummlers tummock tummuler tummy tumor tumoral tumored tumorgenic tumorgenicities tumorgenicity tumorigeneses tumorigenesis tumorigenic tumorigenicities tumorigenicity tumorlike tumorous tumors tumour tumoured tumours tump tumped tumphies tumphy tumpier tumpiest tumping tumpline tumplines tumps tumpy tums tumshie tumshies tumtum tumular tumulary tumulate tumulation tumuli tumulose tumulosities tumulosity tumulous tumult tumulted tumulter tumulting tumults tumultuaries tumultuarily tumultuariness tumultuary tumultuate tumultuated tumultuates tumultuating tumultuation tumultuations tumultuoso tumultuous tumultuously tumultuousness tumultuousnesses tumultus tumulus tumuluses tun tuna tunabilities tunability tunable tunableness tunablenesses tunably tunaburger tunal tunas tunbellied tunbellies tunbelly tunca tund tundagslatta tundation tunded tunder tunding tundish tundishes tundra tundras tunds tundun tunduns tune tuneable tuneableness tuneably tuned tuneful tunefully tunefulness tunefulnesses tuneless tunelessly tunelessness tunelessnesses tunemaker tunemaking tuner tuners tunes tunesmith tunesmiths tunesome tunester tuneup tuneups tunful tung tunga tungah tungate tungo tungos tungs tungstate tungstates tungsten tungstenic tungsteniferous tungstenite tungstens tungstic tungstite tungstites tungstosilicate tungstosilicic tungstous tungus tungusic tunguz tunhoof tunic tunica tunicae tunicary tunicata tunicate tunicated tunicates tunicin tunicins tunicked tunicle tunicles tunicless tunics tunier tuniest tuniness tuning tunings tunis tunish tunisia tunisian tunisians tunist tunk tunka tunker tunket tunland tunlike tunmoot tunna tunnage tunnages tunned tunnel tunneled tunneler tunnelers tunneling tunnelings tunnelist tunnelite tunnelled tunneller tunnellers tunnellike tunnelling tunnellings tunnellite tunnelly tunnelmaker tunnelmaking tunnelman tunnelmen tunnels tunnelway tunner tunneries tunnery tunney tunnies tunning tunnings tunnland tunnor tunny tuno tuns tunu tuny tup tupaia tupaiid tupaiidae tupakihi tupanship tupara tupek tupeks tupelo tupelos tupi tupian tupik tupiks tupinambis tuple tuples tupman tupmen tupped tuppence tuppences tuppennies tuppenny tuppeny tupping tups tuptowing tupuna tupungatito tupungato tuque tuques tuquoque tur turacin turacins turaco turacos turacou turacous turacoverdin turacoverdins turakoo turanian turanite turanose turb turban turband turbands turbaned turbanesque turbanette turbanless turbanlike turbanned turbans turbant turbanto turbantop turbants turbanwise turbaries turbary turbatrix turbeh turbellaria turbellarian turbellarians turbellariform turbescency turbeth turbeths turbid turbidimeter turbidimeters turbidimetric turbidimetrically turbidimetries turbidimetry turbidite turbidites turbidities turbidity turbidly turbidness turbidnesses turbinaceous turbinacious turbinage turbinal turbinals turbinate turbinated turbinates turbination turbinations turbinatoconcave turbinatocylindrical turbinatoglobose turbinatostipitate turbine turbinectomy turbined turbinelike turbinelloid turbiner turbines turbiniform turbinite turbinoid turbinotome turbinotomy turbit turbith turbiths turbits turbitteen turble turbo turboalternator turboblower turbocar turbocars turbocharge turbocharged turbocharger turbochargers turbocharges turbocharging turbochargings turbocompressor turbodynamo turboelectric turboexciter turbofan turbofans turbogenerator turbogenerators turbojet turbojets turbomachine turbomachineries turbomachinery turbomotor turbond turbonds turboprop turboprops turbopump turbos turboshaft turboshafts turbosupercharge turbosupercharged turbosupercharger turbosuperchargers turbot turbotlike turbots turboventilator turbulator turbulators turbulence turbulences turbulencies turbulency turbulent turbulently turbulentness turcism turco turcois turcoman turcopole turcopoles turcopolier turcopoliers turd turdidae turdiform turdinae turdine turdion turdions turdoid turds turdus tureen tureenful tureens turf turfage turfan turfdom turfed turfen turfier turfiest turfiness turfinesses turfing turfings turfite turfites turfless turflike turfman turfmen turfs turfski turfskiing turfskiings turfskis turfwise turfy turgencies turgency turgent turgently turgesce turgesced turgescence turgescences turgescencies turgescency turgescent turgescently turgescible turgescing turgid turgider turgidest turgidities turgidity turgidly turgidness turgidnesses turgite turgites turgoid turgor turgors turgy turicata turin turing turio turion turioniferous turions turista turistas turjaite turjite turk turken turkess turkestan turkey turkeyback turkeyberry turkeybush turkeyfish turkeyfishes turkeyfoot turkeylike turkeys turki turkic turkies turkieses turkis turkises turkish turkism turkistan turkize turkle turkmen turkmenia turkmenistan turkois turkoises turkoman turkomen turks turlough turloughs turm turma turmaline turme turment turmeric turmerics turmerol turmes turmet turmit turmoil turmoiled turmoiler turmoiling turmoils turms turmut turn turnable turnabout turnabouts turnagain turnagains turnaround turnarounds turnaway turnback turnbacks turnbout turnbroach turnbroaches turnbuckle turnbuckles turncap turncoat turncoatism turncoats turncock turncocks turndown turndowns turndun turnduns turned turnel turner turneraceous turneresque turneries turnerite turners turnery turney turngate turnhall turnhalls turnicidae turnicine turnicomorphic turning turningness turnings turnip turniped turniping turniplike turnips turnipweed turnipwise turnipwood turnipy turnix turnkey turnkeys turnmeter turnoff turnoffs turnon turnons turnor turnout turnouts turnover turnovers turnpike turnpiker turnpikes turnpin turnplate turnplough turnplow turnpoke turnrow turns turnscrew turnsheet turnskin turnskins turnsole turnsoles turnspit turnspits turnstile turnstiles turnstone turnstones turntable turntables turntail turntale turnup turnups turnverein turnvereins turnway turnwrest turnwrist turonian turophile turophiles turp turpantineweed turpentine turpentined turpentines turpentineweed turpentinic turpentining turpentinous turpentiny turpeth turpethin turpeths turpid turpidly turpify turpinite turpis turpitude turpitudes turps turquet turquois turquoise turquoiseberry turquoiselike turquoises turr turreae turrel turrell turret turreted turrethead turretheads turreting turretless turretlike turrets turribant turribants turrical turricle turricula turriculae turricular turriculate turriculated turriferous turriform turrigerous turrilite turriliticone turrion turrited turritella turritellid turritelloid turritis turrum turse tursio tursiops turtle turtleback turtlebacks turtlebloom turtled turtledom turtledove turtledoved turtledoves turtledoving turtlehead turtleheads turtleize turtlelike turtleneck turtlenecked turtlenecks turtlepeg turtler turtlers turtles turtlestone turtlet turtling turtlings turtosa turtur tururi turus turves turvy turwar tuscan tuscany tuscarora tusche tusches tush tushed tusher tusheries tushery tushes tushie tushies tushing tushkar tushkars tushker tushkers tushs tushy tusk tuskar tuskars tusked tusker tuskers tuskier tuskiest tusking tuskings tuskish tuskless tusklike tusks tuskwise tusky tussah tussahs tussal tussar tussars tusseh tussehs tusser tussers tusses tussicular tussilago tussis tussises tussive tussle tussled tussler tussles tussling tussock tussocked tussocker tussocks tussocky tussor tussore tussores tussors tussuck tussucks tussur tussurs tut tutament tutania tutanias tutankhamen tutball tute tutee tutees tutela tutelae tutelage tutelages tutelar tutelaries tutelars tutelary tutele tutelo tutenag tutenags tutenague tuth tutin tutiorism tutiorisms tutiorist tutiorists tutler tutly tutman tutmen tutoiement tutor tutorage tutorages tutored tutorer tutoress tutoresses tutorhood tutorial tutorially tutorials tutoriate tutoring tutorings tutorisation tutorise tutorised tutorises tutorising tutorism tutorisms tutorization tutorize tutorized tutorizes tutorizing tutorless tutorly tutors tutorship tutorships tutory tutoyed tutoyer tutoyered tutoyering tutoyers tutress tutresses tutrice tutrices tutrix tutrixes tuts tutsan tutsans tutsed tutses tutsing tutster tutted tutti tutties tuttiman tutting tuttings tuttis tutto tutty tuttyman tutu tutued tutulus tutus tutwork tutworker tutworkers tutworkman tutworkmen tutworks tuum tuvalu tuwi tux tuxedo tuxedoed tuxedoes tuxedos tuxes tuy tuyer tuyere tuyeres tuyers tuyère tuyères tuza tuzz tuzzes tuzzle tv twa twaddell twaddle twaddled twaddledom twaddleize twaddlement twaddlemonger twaddler twaddlers twaddles twaddlesome twaddlier twaddliest twaddling twaddlingly twaddlings twaddly twaddy twae twaes twaesome twafald twafauld twagger twain twains twait twaite twaites twal twale twalhours twalpennies twalpenny twalpennyworth twals twalt twang twanged twanger twangers twangier twangiest twanginess twanging twangingly twangings twangle twangled twangler twanglers twangles twangling twanglingly twanglings twangs twangy twank twankay twankays twanker twankies twanking twankingly twankle twanks twanky twant twarly twas twasome twasomes twat twatchel twats twatterlight twattle twattled twattler twattlers twattles twattling twattlings tway twayblade twayblades tways twazzy tweag tweak tweaked tweaker tweakier tweakiest tweaking tweakings tweaks tweaky twee tweed tweeded tweedier tweediest tweedily tweediness tweedinesses tweedle tweedled tweedledee tweedledeed tweedledeeing tweedledees tweedledum tweedledums tweedler tweedlers tweedles tweedling tweeds tweedy tweeg tweel tweeled tweeling tweels tweely tween tweeness tweenesses tweenies tweenlight tweens tweeny tweer tweered tweering tweers tweese tweesh tweesht tweest tweet tweeted tweeter tweeters tweeting tweets tweeze tweezed tweezer tweezered tweezering tweezers tweezes tweezing tweil twelfhynde twelfhyndeman twelfth twelfthly twelfths twelfthtide twelve twelvefold twelvehynde twelvehyndeman twelvemo twelvemonth twelvemonths twelvemos twelvepence twelvepenny twelves twelvescore twenties twentieth twentiethly twentieths twenty twentyfold twentyfolds twentyfourmo twentyish twentymo twentypenny twere twerp twerps tweyfold twi twibil twibill twibilled twibills twibils twice twicer twicers twicet twichild twichildren twick twiddle twiddled twiddler twiddlers twiddles twiddlier twiddliest twiddling twiddlings twiddly twie twier twiers twifallow twifoil twifold twifoldly twiforked twiformed twig twigful twigged twiggen twigger twiggers twiggier twiggiest twigginess twigging twiggy twight twighted twighting twights twigless twiglet twiglike twigloo twigloos twigs twigsome twigwithy twilight twilighted twilighting twilightless twilightlike twilights twilighty twilit twill twilled twiller twillies twilling twillings twills twilly twilt twilted twilting twilts twin twinable twinberries twinberry twinborn twindle twine twineable twinebush twined twineless twinelike twinemaker twinemaking twiner twiners twines twinflower twinflowers twinfold twinge twinged twingeing twinges twinging twingle twinhood twinier twiniest twinight twinighter twinighters twining twiningly twinings twinism twinjet twinjets twink twinked twinkie twinkies twinking twinkle twinkled twinkledum twinkleproof twinkler twinklers twinkles twinkless twinkling twinklingly twinklings twinkly twinks twinleaf twinleaves twinlike twinling twinlings twinly twinned twinner twinness twinning twinnings twins twinset twinsets twinship twinships twinsomeness twint twinter twinters twiny twire twired twires twiring twirk twirl twirled twirler twirlers twirlier twirliest twirligig twirling twirlingly twirls twirly twirp twirps twiscar twiscars twisel twist twistabilities twistability twistable twisted twistedly twistened twister twisterer twisters twisthand twistical twistier twistiest twistification twistily twistiness twisting twistingly twistings twistiways twistiwise twistle twistless twistor twistors twists twistwood twisty twit twitch twitched twitchel twitcheling twitcher twitchers twitches twitchet twitchety twitchfire twitchier twitchiest twitchily twitchiness twitchinesses twitching twitchingly twitchings twitchy twite twites twitlark twits twitted twitten twittens twitter twitteration twitterboned twittered twitterer twitterers twittering twitteringly twitterings twitterly twitters twittery twitting twittingly twittings twittle twitty twixt twixtbrain twizzened twizzle twizzled twizzles twizzling two twoccer twoccers twoccing twoccings twodecker twoer twoers twoes twofer twofers twofold twofoldly twofoldness twofoldnesses twofolds twohanded twohandedness twolegged twoling twoness twonesses twoonie twoonies twopence twopences twopenceworth twopenceworths twopennies twopenny twopennyworth twopennyworths twos twoscore twoseater twoseaters twosome twosomes twostroke twotime twp twyblade twyer twyere twyeres twyers twyfold twyforked twyformed twyhynde twyver tx txt tyauve tyburn tyche tychism tychisms tychistic tychite tychonian tychonic tychoparthenogenesis tychopotamic tycoon tycoonate tycoonates tycooneries tycoonery tycoons tydden tyddyn tyde tydeus tydie tye tyed tyee tyees tyeing tyer tyers tyes tyg tygs tyin tying tyiyn tyiyns tyke tyken tykes tykhana tyking tykish tylari tylarus tylaster tyleberry tylectomies tylectomy tylenchidae tylenchus tylenol tyler tylers tylion tylocin tyloma tylopod tylopodous tylopods tylose tyloses tylosin tylosins tylosis tylosoid tylosteresis tylostylar tylostyle tylostylote tylostylus tylotate tylote tylotes tylotic tylotoxea tylotoxeate tylotus tylus tymbal tymbalon tymbals tymp tympan tympana tympanal tympanam tympanectomy tympani tympanic tympanichord tympanichordal tympanicity tympanics tympanies tympaniform tympaning tympanism tympanist tympanists tympanites tympanitic tympanitis tympanitises tympanize tympano tympanocervical tympanohyal tympanomalleal tympanomandibular tympanomastoid tympanomaxillary tympanon tympanoperiotic tympanoplasties tympanoplasty tympanosis tympanosquamosal tympanostapedial tympanotemporal tympanotomy tympans tympanuchus tympanum tympanums tympany tymps tynd tyndallmeter tynde tyne tyned tynes tyning tynwald typ typable typal typarchical type typeable typebar typebars typecase typecases typecast typecasting typecasts typed typeface typefaces typeform typefounder typefounders typefounding typefoundings typefoundry typehead typeholder typeless typeout typer types typescript typescripts typeset typeseting typesets typesetter typesetters typesetting typesettings typesof typestyle typestyles typewrite typewrited typewriter typewriters typewrites typewriting typewritings typewritten typewrote typey typha typhaceae typhaceous typhaemia typhemia typhia typhic typhinia typhization typhlatonia typhlatony typhlectasis typhlectomy typhlenteritis typhlitic typhlitis typhlitises typhloalbuminuria typhlocele typhloempyema typhloenteritis typhlohepatitis typhlolexia typhlolithiasis typhlologies typhlology typhlomegaly typhlon typhlopexia typhlopexy typhlophile typhlopid typhlopidae typhloptosis typhlosis typhlosolar typhlosole typhlosoles typhlostenosis typhlostomy typhlotomy typhoaemia typhobacillosis typhoean typhoemia typhoeus typhogenic typhoid typhoidal typhoidin typhoidlike typhoids typholysin typhomalaria typhomalarial typhomania typhon typhonia typhonian typhonic typhons typhoon typhoonish typhoons typhopneumonia typhose typhosepsis typhosis typhotoxine typhous typhus typhuses typic typica typical typicalities typicality typically typicalness typicalnesses typicon typicum typier typiest typification typifications typified typifier typifiers typifies typify typifying typika typikon typikons typing typings typist typists typo typobar typocosmy typograph typographed typographer typographers typographia typographic typographical typographically typographies typographing typographist typographists typographs typography typolithographic typolithography typologic typological typologically typologies typologist typologists typology typomania typomanias typometry typonym typonymal typonymic typonymous typophile typorama typos typoscript typotelegraph typotelegraphy typothere typothetae typp typps typto typtoed typtoing typtological typtologist typtology typtos typw typy tyr tyramin tyramine tyramines tyran tyraned tyraning tyranne tyranned tyrannes tyranness tyrannesses tyranni tyrannial tyrannic tyrannical tyrannically tyrannicalness tyrannicalnesses tyrannicidal tyrannicide tyrannicides tyrannicly tyrannid tyrannidae tyrannies tyrannine tyranning tyrannis tyrannise tyrannised tyranniser tyrannisers tyrannises tyrannising tyrannisingly tyrannism tyrannize tyrannized tyrannizer tyrannizers tyrannizes tyrannizing tyrannizingly tyrannoid tyrannophobia tyrannosaur tyrannosaurs tyrannosaurus tyrannosauruses tyrannous tyrannously tyrannousness tyrannus tyranny tyrans tyrant tyrantcraft tyranted tyranting tyrantlike tyrants tyrantship tyrasole tyre tyreless tyremesis tyres tyrian tyriasis tyrings tyro tyrocidin tyrocidine tyrocidines tyrocidins tyroes tyroglyphid tyroglyphids tyroid tyrol tyrolean tyrolese tyrolite tyrology tyroma tyromancy tyromas tyromata tyromatous tyrone tyrones tyronic tyronism tyros tyrosinase tyrosinases tyrosine tyrosines tyrosinuria tyrosyl tyrothricin tyrothricins tyrotoxicon tyrotoxine tyrr tyrrhene tyrrhenian tyrtaean tysonite tyste tystie tysties tyt tyte tytely tythe tythed tythes tything tyto tytonidae tyum tyyn tzaddik tzaddikim tzaddiks tzaddiq tzaddiqim tzaddiqs tzar tzardom tzardoms tzarevich tzarevitch tzarevitches tzarevna tzarevnas tzarina tzarinas tzarism tzarisms tzarist tzaristic tzarists tzaritza tzaritzas tzars tzatziki tzatzikis tzedakah tzetse tzetses tzetze tzetzes tzigane tziganes tziganies tzigany tzimmes tzimmeses tzitzes tzitzis tzitzit tzitzith tzolkin tzontle tzuris téléférique téléfériques téléphérique téléphériques tête u uakari uakaris ualis uang uayeb ubangi ubc uberant ubermensch uberous uberously uberousness uberrima uberties uberty ubi ubication ubieties ubiety ubiquarian ubiquarians ubique ubiquinone ubiquinones ubiquious ubiquit ubiquitarian ubiquitarianism ubiquitarians ubiquitaries ubiquitariness ubiquitary ubiquities ubiquitism ubiquitities ubiquitity ubiquitous ubiquitously ubiquitousness ubiquitousnesses ubiquity ubound ubuntu ubuntus ubussu ubykh uc uca uckers uckia ucuuba udal udaler udaller udallers udalman udals udasi udder uddered udderful udderless udderlike udders udell udmurt udo udographic udom udometer udometers udometric udometries udometry udomograph udon udons udos uds uey ueys ufa ufer ufo ufological ufologies ufologist ufologists ufology ufos ufs ug ugali uganda ugandan ugandans ugaritic ugged ugging ugglesome ugh ughs ughten ugli uglied uglier uglies ugliest uglification uglifications uglified uglifier uglifiers uglifies uglify uglifying uglily ugliness uglinesses uglis uglisome ugly uglying ugrian ugrianize ugric ugs ugsome ugsomely ugsomeness ugsomenesses ugt uh uhf uhlan uhlans uhllo uhs uhtensang uhtsong uhuru uhurus ui uighur uigur uily uinal uintahite uintahites uintaite uintaites uintathere uintatheres uintatheriidae uintatherium uintjie uit uitlander uitlanders uitspan ujamaa ujamaas uji uk ukase ukases uke ukelele ukeleles ukes ukiyoe ukiyoye ukraine ukrainian ukrainians ukranian ukrayina ukulele ukuleles ula ulaanbaatar ulama ulamas ulan ulans ulatrophia ulatrophy ulaula ulcer ulcerable ulcerate ulcerated ulcerates ulcerating ulceration ulcerations ulcerative ulcered ulcering ulcerogenic ulceromembranous ulcerous ulcerously ulcerousness ulcerousnesses ulcers ulcery ulcus ulcuscle ulcuscule ule ulema ulemas ulemorrhagia ulerythema ules uletic ulex ulexes ulexine ulexite ulexites ulfila ulfilas ulichon ulichons ulicon ulicons uliginose uliginous ulikon ulikons ulitis ulitises ull ulla ullage ullaged ullages ullaging ullagone uller ulling ullings ullmannite ullr ulluco ullucos ullucu ulmaceae ulmaceous ulmate ulmic ulmin ulminic ulmins ulmo ulmous ulmus ulna ulnad ulnae ulnage ulnar ulnare ulnaria ulnas ulnocarpal ulnocondylar ulnometacarpal ulnoradial uloborid ulocarcinoma uloid uloncus ulorrhagia ulorrhagy ulorrhea uloses ulosis ulotrichaceous ulotrichan ulotrichies ulotrichous ulotrichy ulpan ulpanim ulpans ulrichite ulster ulstered ulsterette ulsterettes ulstering ulsters ult ulta ulterior ulteriorly ultima ultimacies ultimacy ultimas ultimata ultimate ultimated ultimately ultimateness ultimatenesses ultimates ultimating ultimation ultimatum ultimatums ultime ultimity ultimo ultimobranchial ultimogenitary ultimogeniture ultimogenitures ultimum ultion ultions ulto ultonian ultra ultrabasic ultrabasics ultrabasite ultrabelieving ultrabenevolent ultrabrachycephalic ultrabrachycephaly ultrabrilliant ultracareful ultracasual ultracautious ultracentenarian ultracentenarianism ultracentraliser ultracentralizer ultracentrifugal ultracentrifugally ultracentrifugation ultracentrifugations ultracentrifuge ultracentrifuged ultracentrifuges ultracentrifuging ultraceremonious ultrachic ultrachurchism ultracivil ultracivilized ultraclean ultracold ultracommercial ultracompact ultracompetent ultracomplex ultraconcomitant ultracondenser ultraconfident ultraconscientious ultraconservatism ultraconservatisms ultraconservative ultraconservatives ultracontemporaries ultracontemporary ultraconvenient ultracool ultracordial ultracosmopolitan ultracredulous ultracrepidarian ultracrepidarianism ultracrepidarians ultracrepidate ultracrepidated ultracrepidates ultracrepidating ultracritical ultradandyism ultradeclamatory ultrademocratic ultradense ultradespotic ultradignified ultradiscipline ultradistance ultradistances ultradistant ultradolichocephalic ultradolichocephaly ultradolichocranial ultradry ultraeducationist ultraefficient ultraeligible ultraelliptic ultraemphasis ultraenergetic ultraenforcement ultraenthusiasm ultraenthusiastic ultraepiscopal ultraevangelical ultraexcessive ultraexclusive ultraexpeditious ultrafamiliar ultrafantastic ultrafashionable ultrafast ultrafastidious ultrafederalist ultrafeminine ultrafeudal ultrafiche ultrafiches ultrafidian ultrafidianism ultrafilter ultrafilterability ultrafilterable ultrafiltered ultrafiltering ultrafilters ultrafiltrate ultrafiltrates ultrafiltration ultrafiltrations ultrafine ultraformal ultrafrivolous ultragallant ultragaseous ultragenteel ultraglamorous ultragood ultragrave ultrahazardous ultraheat ultraheated ultraheating ultraheats ultraheavy ultraheroic ultrahigh ultrahip ultrahonorable ultrahonourable ultrahot ultrahuman ultraimperialism ultraimperialist ultraimpersonal ultrainclusive ultraindifferent ultraindulgent ultraingenious ultrainsistent ultraintellectual ultraintimate ultrainvolved ultraism ultraisms ultraist ultraistic ultraists ultralaborious ultraleft ultraleftism ultraleftisms ultraleftist ultraleftists ultralegality ultralenient ultraliberal ultraliberalism ultraliberalisms ultraliberals ultralight ultralights ultralightweight ultralogical ultralow ultraloyal ultraluxurious ultramafic ultramarathon ultramarathoner ultramarathoners ultramarathons ultramarine ultramarines ultramasculine ultramasculinity ultramaternal ultramaximal ultramelancholy ultrametamorphism ultramicro ultramicrobe ultramicrochemical ultramicrochemist ultramicrochemistries ultramicrochemistry ultramicrometer ultramicrometers ultramicron ultramicroscope ultramicroscopes ultramicroscopic ultramicroscopical ultramicroscopically ultramicroscopies ultramicroscopy ultramicrotome ultramicrotomes ultramicrotomies ultramicrotomy ultramilitant ultraminiature ultraminiaturization ultraminiaturizations ultraminiaturize ultraminiaturized ultraminiaturizes ultraminiaturizing ultraminute ultramoderate ultramodern ultramodernism ultramodernisms ultramodernist ultramodernistic ultramodernists ultramodest ultramontane ultramontanes ultramontanism ultramontanisms ultramontanist ultramontanists ultramorose ultramulish ultramundane ultranational ultranationalism ultranationalisms ultranationalist ultranationalistic ultranationalistically ultranationalists ultranatural ultranegligent ultranet ultranice ultranonsensical ultraobscure ultraobstinate ultraofficious ultraoptimistic ultraorganized ultraornate ultraorthodox ultraorthodoxy ultraoutrageous ultrapapist ultraparadoxical ultraparallel ultrapatriotic ultraperfect ultrapersuasive ultraphotomicrograph ultraphysical ultrapious ultraplanetary ultraplausible ultrapopish ultrapowerful ultrapractical ultraprecise ultraprecision ultraprecisions ultraprofessional ultraprogressive ultraprogressives ultraproud ultraprudent ultrapure ultraquiet ultraradical ultraradicalism ultraradicals ultrarapid ultrarare ultrararefied ultrarational ultrareactionary ultrarealism ultrarealisms ultrarealist ultrarealistic ultrarealists ultrared ultrareds ultrarefined ultrarefinement ultrareliable ultrareligious ultraremuneration ultrarepublican ultrarespectable ultrarevolutionaries ultrarevolutionary ultrarevolutionist ultrarich ultraright ultrarightist ultrarightists ultraritualism ultraromantic ultraroyalism ultraroyalist ultraroyalists ultras ultrasafe ultrasanguine ultrascholastic ultrascientific ultrasecret ultrasegregationist ultrasegregationists ultraselect ultrasensitive ultrasensual ultrasentimental ultraserious ultraservile ultrasevere ultrasharp ultrashort ultrashrewd ultrasimian ultrasimple ultraslick ultraslow ultrasmall ultrasmart ultrasmooth ultrasoft ultrasolemn ultrasonic ultrasonically ultrasonics ultrasonogram ultrasonograms ultrasonograph ultrasonographer ultrasonographers ultrasonographic ultrasonographies ultrasonography ultrasophisticated ultrasound ultrasounds ultraspartan ultraspecialisation ultraspecialization ultraspiritual ultraspiritualism ultrasplendid ultrastandardisation ultrastandardization ultrastellar ultrasterile ultrastrenuous ultrastrict ultrastructural ultrastructurally ultrastructure ultrastructures ultrastylish ultrasubtle ultrasuede ultrasystematic ultratechnical ultratense ultraterrene ultraterrestrial ultrathin ultratotal ultratrivial ultratropical ultraugly ultrauncommon ultraurgent ultravacua ultravacuum ultravacuums ultravicious ultraviolence ultraviolences ultraviolent ultraviolet ultraviolets ultravirile ultravirilities ultravirility ultravirtuous ultravirus ultraviruses ultravisible ultrawealthy ultrawide ultrawise ultrayoung ultrazealous ultrazealousness ultrazodiacal ultroneous ultroneously ultroneousness ultroneousnesses ulu ulua uluhi ululant ululate ululated ululates ululating ululation ululations ululative ululatory ululu ulus ulva ulvaceae ulvaceous ulvales ulvas ulvophyceae ulyie ulyies ulyssean ulysses ulzie ulzies um uma umangite umangites umbecast umbeclad umbel umbelap umbeled umbella umbellales umbellar umbellate umbellated umbellately umbelled umbellet umbellets umbellic umbellifer umbelliferae umbelliferone umbelliferous umbellifers umbelliflorous umbelliform umbelloid umbellularia umbellulate umbellule umbellules umbelluliferous umbels umbelwort umber umbered umberima umbering umbers umberty umbery umbeset umbethink umbibilici umbilectomy umbilic umbilical umbilically umbilicals umbilicar umbilicate umbilicated umbilication umbilications umbilici umbiliciform umbilicus umbilicuses umbiliform umbilroot umble umbles umbo umbolateral umbonal umbonate umbonated umbonation umbonations umbone umbones umbonial umbonic umbonulate umbonule umbos umbra umbracious umbraciousness umbracle umbracula umbraculate umbraculiferous umbraculiform umbraculum umbraculums umbrae umbrage umbraged umbrageous umbrageously umbrageousness umbrageousnesses umbrages umbraging umbraid umbral umbrally umbrana umbras umbrate umbrated umbratic umbratical umbratile umbratilous umbre umbrel umbrella umbrellaed umbrellaing umbrellaless umbrellalike umbrellas umbrellawise umbrellawort umbrello umbrelloes umbrellos umbrels umbrere umbreres umbres umbret umbrette umbrettes umbria umbrian umbriere umbrieres umbriferous umbriferously umbriferousness umbril umbrils umbrina umbrine umbrose umbrosity umbrous umbundu ume umeboshi umeboshis umest umfaan umgang umiac umiack umiacks umiacs umiak umiaks umiaq umiaqs umimpeded umiri umist umland umlaut umlauted umlauting umlauts umload umm umma ummah ummahs ummas ummps umouhile ump umped umph umphed umphing umphs umping umpirage umpirages umpire umpired umpirer umpires umpireship umpireships umpiress umpiring umpirism umppired umppiring umps umpsteen umpteen umpteens umpteenth umptekite umptieth umpty umpy umquhile ums umset umstroke umteen umteenth umu umwhile un una unabandoned unabandoning unabased unabasedly unabashable unabashed unabashedly unabasing unabatable unabated unabatedly unabating unabatingly unabbreviated unabdicated unabdicating unabdicative unabducted unabetted unabettedness unabetting unabhorred unabhorrently unabiding unabidingly unabidingness unability unabject unabjective unabjectly unabjectness unabjuratory unabjured unablative unable unableness unably unabnegated unabnegating unabolishable unabolished unaborted unabortive unabortively unabortiveness unabraded unabrased unabrasive unabrasively unabridgable unabridged unabridgeds unabrogable unabrogated unabrogative unabrupt unabruptly unabscessed unabsent unabsentmindedness unabsolute unabsolvable unabsolved unabsolvedness unabsorb unabsorbable unabsorbed unabsorbent unabsorbing unabsorbingly unabsorptiness unabsorptive unabsorptiveness unabstemious unabstemiously unabstemiousness unabstentious unabstract unabstracted unabstractedly unabstractedness unabstractive unabstractively unabsurd unabundance unabundant unabundantly unabusable unabused unabusive unabusively unabusiveness unabutting unacademic unacademical unacademically unacceding unaccelerated unaccelerative unaccent unaccented unaccentuated unaccept unacceptabilities unacceptability unacceptable unacceptableness unacceptablenesses unacceptably unacceptance unacceptances unacceptant unaccepted unaccepting unaccessibility unaccessible unaccessibleness unaccessibly unaccessional unaccessory unaccidental unaccidentally unaccidented unacclaimate unacclaimed unacclimated unacclimation unacclimatised unacclimatization unacclimatized unacclivitous unacclivitously unaccommodable unaccommodated unaccommodatedness unaccommodating unaccommodatingly unaccommodatingness unaccompanable unaccompanied unaccompanying unaccomplishable unaccomplished unaccomplishedness unaccomplishment unaccomplishments unaccord unaccordable unaccordance unaccordant unaccorded unaccording unaccordingly unaccostable unaccosted unaccountabilities unaccountability unaccountable unaccountableness unaccountablenesses unaccountably unaccounted unaccoutered unaccoutred unaccreditated unaccredited unaccrued unacculturated unaccumulable unaccumulate unaccumulated unaccumulation unaccumulative unaccumulatively unaccumulativeness unaccuracy unaccurate unaccurately unaccurateness unaccursed unaccusable unaccusably unaccuse unaccused unaccusing unaccusingly unaccustom unaccustomed unaccustomedly unaccustomedness unaccustomednesses unacerbic unacerbically unacetic unachievability unachievable unachievably unachieved unaching unachingly unacidic unacidulated unacknowledged unacknowledgedness unacknowledging unacknowledgment unacoustic unacoustical unacoustically unacquaint unacquaintable unacquaintance unacquaintances unacquainted unacquaintedly unacquaintedness unacquaintednesses unacquiescent unacquiescently unacquirability unacquirable unacquirableness unacquirably unacquired unacquisitive unacquisitively unacquisitiveness unacquit unacquittable unacquitted unacquittedness unacrimonious unacrimoniously unacrimoniousness unact unactability unactable unacted unacting unactinic unaction unactionable unactivated unactive unactively unactiveness unactivity unactorish unactorlike unactual unactuality unactually unactuated unacuminous unacute unacutely unadamant unadapt unadaptability unadaptable unadaptableness unadaptably unadaptabness unadapted unadaptedly unadaptedness unadaptive unadaptively unadaptiveness unadd unaddable unadded unaddible unaddicted unaddictedness unadditional unadditioned unaddled unaddress unaddressable unaddressed unadduceable unadduced unadducible unadept unadeptly unadeptness unadequate unadequately unadequateness unadherence unadherent unadherently unadhering unadhesive unadhesively unadhesiveness unadjacent unadjacently unadjectived unadjoined unadjoining unadjourned unadjournment unadjudged unadjudicated unadjunctive unadjunctively unadjust unadjustable unadjustably unadjusted unadjustment unadministered unadministrable unadministrative unadministratively unadmirable unadmirableness unadmirably unadmire unadmired unadmiring unadmiringly unadmissible unadmissibleness unadmissibly unadmission unadmissive unadmittable unadmittableness unadmittably unadmitted unadmittedly unadmitting unadmonished unadmonitory unadopt unadoptable unadoptably unadopted unadoption unadoptional unadoptive unadoptively unadorable unadorableness unadorably unadoration unadored unadoring unadoringly unadorn unadornable unadorned unadornedly unadornedness unadornment unadroit unadroitly unadroitness unadulating unadulatory unadult unadulterate unadulterated unadulteratedly unadulteratedness unadulterately unadulteration unadulterous unadulterously unadvanced unadvancedly unadvancedness unadvancement unadvancing unadvantaged unadvantageous unadvantageously unadvantageousness unadventrous unadventured unadventuring unadventurous unadventurously unadventurousness unadverse unadversely unadverseness unadvertency unadvertised unadvertisement unadvertising unadvertized unadvisability unadvisable unadvisableness unadvisablenesses unadvisably unadvised unadvisedly unadvisedness unadvisednesses unadvocated unaerated unaesthetic unaesthetical unaesthetically unaestheticism unaestheticness unafeard unafeared unaffability unaffable unaffableness unaffably unaffectation unaffected unaffectedly unaffectedness unaffectednesses unaffecting unaffectionate unaffectionately unaffectionateness unaffectioned unaffianced unaffied unaffiliated unaffiliation unaffirmation unaffirmed unaffixed unafflicted unafflictedly unafflictedness unafflicting unaffliction unaffluent unaffordabilities unaffordability unaffordable unafforded unaffranchised unaffrighted unaffrightedly unaffronted unafire unafloat unaflow unafraid unafraidness unaged unageing unagglomerative unaggravated unaggravating unaggregated unaggression unaggressive unaggressively unaggressiveness unaghast unagile unagilely unagility unaging unagitated unagitatedly unagitatedness unagitation unagonise unagonize unagrarian unagreeable unagreeableness unagreeably unagreed unagreeing unagreement unagricultural unagriculturally unai unaidable unaided unaidedly unaiding unailing unaimed unaiming unairable unaired unairily unairworthy unais unaisled unakin unaking unakite unakites unal unalacritous unalarm unalarmed unalarming unalarmingly unalcoholised unalcoholized unaldermanly unalert unalerted unalertly unalertness unalgebraical unalienability unalienable unalienableness unalienably unalienated unalienating unalignable unaligned unalike unalimentary unalimentative unalist unalists unalive unallayable unallayably unallayed unalleged unallegedly unallegorical unallegorically unallegorized unallergic unalleviably unalleviated unalleviatedly unalleviating unalleviatingly unalleviation unalleviative unalliable unallied unalliedly unalliedness unalliterated unalliterative unallocated unallotment unallotted unallow unallowable unallowably unallowed unallowedly unallowing unalloyed unalloyedly unallurable unallured unalluring unalluringly unallusive unallusively unallusiveness unalmsed unalone unaloud unalphabeted unalphabetic unalphabetical unalphabetised unalphabetized unalterabilities unalterability unalterable unalterableness unalterablenesses unalterably unalteration unalterative unaltered unaltering unalternated unalternating unaltruistic unaltruistically unamalgamable unamalgamated unamalgamating unamalgamative unamassed unamative unamatively unamazed unamazedly unamazedness unamazement unambidextrousness unambient unambiently unambiguity unambiguous unambiguously unambiguousness unambition unambitious unambitiously unambitiousness unambivalent unambivalently unambrosial unambulant unambush unameliorable unameliorated unameliorative unamenability unamenable unamenableness unamenably unamend unamendable unamended unamendedly unamending unamendment unamerceable unamerced unamiabilities unamiability unamiable unamiableness unamiablenesses unamiably unamicability unamicable unamicableness unamicably unamiss unammoniated unamo unamorous unamorously unamorousness unamortisation unamortised unamortization unamortized unample unamplifiable unamplified unamply unamputated unamputative unamusable unamusably unamused unamusement unamusing unamusingly unamusingness unamusive unanachronistic unanachronistical unanachronistically unanachronous unanachronously unanaemic unanalagous unanalagously unanalagousness unanalogical unanalogically unanalogized unanalogous unanalogously unanalogousness unanalysable unanalysed unanalytic unanalytical unanalytically unanalyzable unanalyzably unanalyzed unanalyzing unanarchic unanarchistic unanatomisable unanatomised unanatomizable unanatomized unancestored unancestried unanchor unanchored unanchoring unanchors unanchylosed unancient unanecdotal unanecdotally unaneled unanemic unanesthetized unangelic unangelical unangelicalness unangered unangrily unangry unanguished unangular unangularly unangularness unanimalised unanimalized unanimate unanimated unanimatedly unanimatedness unanimately unanimating unanimatingly unanime unanimism unanimist unanimistic unanimistically unanimiter unanimities unanimity unanimous unanimously unanimousness unanimousnesses unannealed unannex unannexable unannexed unannexedly unannexedness unannihilable unannihilated unannihilative unannihilatory unannotated unannounced unannoyed unannoying unannoyingly unannullable unannulled unannunciable unannunciative unanointed unanswerabilities unanswerability unanswerable unanswerableness unanswerablenesses unanswerably unanswered unanswering unantagonisable unantagonised unantagonising unantagonistic unantagonizable unantagonized unantagonizing unanthologized unanticipated unanticipatedly unanticipating unanticipatingly unanticipation unanticipative unantiquated unantiquatedness unantique unantiquity unantlered unanxiety unanxious unanxiously unanxiousness unapart unaphasic unapocryphal unapologetic unapologetically unapologising unapologizing unapostatised unapostatized unapostolic unapostolical unapostolically unapostrophized unappalled unappalling unappallingly unapparel unappareled unapparelled unapparelling unapparels unapparent unapparently unapparentness unappealable unappealableness unappealably unappealed unappealing unappealingly unappealingness unappeasable unappeasableness unappeasably unappeased unappeasedly unappeasedness unappeasing unappeasingly unappendaged unappended unapperceived unapperceptive unappertaining unappetising unappetisingly unappetizing unappetizingly unappetizingness unapplaudable unapplauded unapplauding unapplausive unappliable unappliableness unappliably unapplianced unapplicability unapplicable unapplicableness unapplicably unapplicative unapplied unappliquad unappliqued unapplying unappoint unappointable unappointableness unappointed unapportioned unapposable unapposite unappositely unappositeness unappraised unappreciable unappreciableness unappreciably unappreciated unappreciating unappreciation unappreciations unappreciative unappreciatively unappreciativeness unapprehendable unapprehendableness unapprehendably unapprehended unapprehending unapprehendingness unapprehensible unapprehensibleness unapprehension unapprehensive unapprehensively unapprehensiveness unapprehensivenesses unapprenticed unapprised unapprisedly unapprisedness unapprized unapproachabilities unapproachability unapproachable unapproachableness unapproachablenesses unapproachably unapproached unapproaching unapprobation unappropriable unappropriate unappropriated unappropriately unappropriateness unappropriation unapprovable unapprovableness unapprovably unapproved unapproving unapprovingly unapproximate unapproximately unaproned unapropos unapt unaptitude unaptly unaptness unaptnesses unarbitrarily unarbitrariness unarbitrary unarbitrated unarbitrative unarbored unarboured unarch unarchdeacon unarched unarching unarchitected unarchitectural unarchitecturally unarchived unarchly unarduous unarduously unarduousness unare unarguable unarguableness unarguably unargued unarguing unargumentative unargumentatively unargumentativeness unarisen unarising unaristocratic unaristocratically unarithmetical unarithmetically unark unarm unarmed unarmedly unarmedness unarming unarmored unarmorial unarmoured unarms unaromatic unaromatically unaromatized unarousable unaroused unarousing unarraignable unarraignableness unarraigned unarranged unarray unarrayed unarrestable unarrested unarresting unarrestive unarrival unarrived unarriving unarrogance unarrogant unarrogantly unarrogated unarrogating unarted unartful unartfully unartfulness unarticled unarticulate unarticulated unarticulately unarticulative unarticulatory unartificial unartificiality unartificially unartificialness unartistic unartistical unartistically unartistlike unary unascendable unascendableness unascendant unascended unascendent unascendible unascertainable unascertainableness unascertainably unascertained unascetic unascetically unascribable unascribed unashamed unashamedly unashamedness unashamednesses unasinous unaskable unasked unasking unaskingly unasleep unaspersed unaspersive unasphalted unaspirated unaspiring unaspiringly unaspiringness unaspiringnesses unassailabilities unassailability unassailable unassailableness unassailablenesses unassailably unassailed unassailing unassassinated unassaultable unassaulted unassayed unassaying unassembled unassented unassenting unassentive unasserted unassertive unassertively unassertiveness unassertivenesses unassessable unassessableness unassessed unassibilated unassiduous unassiduously unassiduousness unassignable unassignably unassigned unassimilable unassimilated unassimilating unassimilative unassistant unassisted unassistedly unassisting unassociable unassociably unassociated unassociative unassociatively unassociativeness unassoiled unassorted unassuageable unassuaged unassuaging unassuasive unassuetude unassumable unassumed unassumedly unassuming unassumingly unassumingness unassumingnesses unassured unassuredly unassuredness unassuring unasterisk unasterisked unasthmatic unastonish unastonished unastonishment unastounded unastray unathirst unathletic unathletically unatmospheric unatonable unatoned unatoning unatrophied unattach unattachable unattached unattackable unattackableness unattackably unattacked unattainabilities unattainability unattainable unattainableness unattainablenesses unattainably unattained unattaining unattainment unattaint unattainted unattaintedly unattempered unattemptable unattempted unattempting unattendance unattendant unattended unattending unattentive unattentively unattentiveness unattenuated unattenuatedly unattestable unattested unattestedness unattire unattired unattractable unattractableness unattracted unattracting unattractive unattractively unattractiveness unattractivenesses unattributable unattributably unattributed unattributive unattributively unattributiveness unattuned unau unauctioned unaudacious unaudaciously unaudaciousness unaudible unaudibleness unaudibly unaudienced unaudited unauditioned unaugmentable unaugmentative unaugmented unaus unauspicious unauspiciously unauspiciousness unaustere unausterely unaustereness unauthentic unauthentical unauthentically unauthenticalness unauthenticated unauthenticities unauthenticity unauthorise unauthorised unauthorisedly unauthorisedness unauthorish unauthoritative unauthoritatively unauthoritativeness unauthoritied unauthoritiveness unauthorizable unauthorization unauthorize unauthorized unauthorizedly unauthorizedness unautistic unautographed unautomated unautomatic unautomatically unautoritied unautumnal unavailabilities unavailability unavailable unavailableness unavailablenesses unavailably unavailed unavailful unavailing unavailingly unavailingness unavailingnesses unavengeable unavenged unavenging unavengingly unavenued unaverage unaveraged unaverred unaverse unavertable unaverted unavertible unavertibleness unavertibly unavian unavid unavidly unavidness unavoidabilities unavoidability unavoidable unavoidableness unavoidablenesses unavoidably unavoidal unavoided unavoiding unavouchable unavouchableness unavouchably unavouched unavowable unavowableness unavowably unavowed unavowedly unawakable unawakableness unawake unawaked unawakened unawakenedness unawakening unawaking unawardable unawardableness unawardably unawarded unaware unawared unawaredly unawarely unawareness unawarenesses unawares unaway unawed unawesome unawful unawfully unawfulness unawkward unawkwardly unawkwardness unawned unaxed unaxiomatic unaxiomatically unaxised unaxled unazotized unb unbackboarded unbacked unbackward unbacterial unbadged unbadgered unbadgering unbaffled unbaffling unbafflingly unbag unbagged unbagging unbags unbailable unbailableness unbailed unbain unbait unbaited unbaized unbaked unbalance unbalanceable unbalanceably unbalanced unbalancement unbalances unbalancing unbalconied unbale unbaled unbales unbaling unbalked unbalking unbalkingly unballast unballasted unballasting unballoted unban unbandage unbandaged unbandages unbandaging unbanded unbane unbangled unbanished unbank unbankable unbankableness unbankably unbanked unbankrupt unbanned unbannered unbanning unbans unbantering unbanteringly unbaptise unbaptised unbaptises unbaptising unbaptize unbaptized unbaptizes unbaptizing unbar unbarb unbarbarise unbarbarised unbarbarising unbarbarize unbarbarized unbarbarizing unbarbarous unbarbarously unbarbarousness unbarbed unbarbered unbarded unbare unbared unbares unbargained unbaring unbark unbarked unbarking unbarks unbaronet unbarrable unbarred unbarrel unbarreled unbarrelled unbarren unbarrenly unbarrenness unbarricade unbarricaded unbarricades unbarricading unbarricadoed unbarring unbars unbartered unbartering unbase unbased unbasedness unbashful unbashfully unbashfulness unbasket unbasketlike unbastardised unbastardized unbaste unbasted unbastilled unbastinadoed unbated unbathed unbating unbatted unbatten unbatterable unbattered unbattling unbay unbe unbeached unbeaconed unbeaded unbeamed unbeaming unbear unbearable unbearableness unbearablenesses unbearably unbeard unbearded unbeared unbearing unbears unbeast unbeatable unbeatableness unbeatably unbeaten unbeaued unbeauteous unbeauteously unbeauteousness unbeautified unbeautiful unbeautifully unbeautifulness unbeautify unbeavered unbeckoned unbeclogged unbeclouded unbecome unbecoming unbecomingly unbecomingness unbecomingnesses unbecomings unbed unbedabbled unbedaggled unbedashed unbedaubed unbedded unbedding unbedecked unbedewed unbedimmed unbedinned unbedizened unbedraggled unbeds unbeen unbefit unbefitting unbefittingly unbefittingness unbefool unbefriend unbefriended unbefringed unbeget unbegets unbegetting unbeggar unbeggarly unbegged unbegilt unbeginning unbeginningly unbeginningness unbegirded unbegirt unbegot unbegotten unbegottenly unbegottenness unbegreased unbegrimed unbegrudged unbeguile unbeguiled unbeguileful unbeguiles unbeguiling unbegun unbehaving unbeheaded unbeheld unbeholdable unbeholden unbeholdenness unbeholding unbehoveful unbehoving unbeing unbeings unbejuggled unbeknown unbeknownst unbelied unbelief unbeliefful unbelieffulness unbeliefs unbelievability unbelievable unbelievableness unbelievably unbelieve unbelieved unbeliever unbelievers unbelieves unbelieving unbelievingly unbelievingness unbelievingnesses unbell unbellicose unbelligerent unbelligerently unbelonging unbeloved unbelt unbelted unbelting unbelts unbemoaned unbemourned unbemused unbench unbend unbendable unbendableness unbendably unbended unbender unbending unbendingly unbendingness unbendingnesses unbendings unbends unbendsome unbeneficed unbeneficent unbeneficently unbeneficial unbeneficially unbeneficialness unbenefitable unbenefited unbenefiting unbenetted unbenevolence unbenevolent unbenevolently unbenevolentness unbenight unbenighted unbenign unbenignant unbenignantly unbenignity unbenignly unbenignness unbent unbenumb unbenumbed unbequeathable unbequeathed unbereaved unbereaven unbereft unberouged unberth unberufen unbeseeching unbeseechingly unbeseem unbeseemed unbeseeming unbeseemingly unbeseemingness unbeseemly unbeseems unbeset unbesieged unbesmeared unbesmirched unbesmutted unbesot unbesotted unbesought unbespeak unbespeaking unbespeaks unbespoke unbespoken unbesprinkled unbestarred unbestowed unbet unbeteared unbethink unbethought unbetide unbetoken unbetray unbetrayed unbetraying unbetrothed unbetterable unbettered unbeveled unbevelled unbewailed unbewailing unbeware unbewilder unbewildered unbewilderedly unbewildering unbewilderingly unbewilled unbewitch unbewitched unbewitching unbewitchingly unbewrayed unbewritten unbias unbiasable unbiased unbiasedly unbiasedness unbiasednesses unbiases unbiasing unbiassable unbiassed unbiassedly unbiassedness unbiassednesses unbiasses unbiassing unbiblical unbibulous unbibulously unbibulousness unbickered unbickering unbid unbidable unbiddable unbidden unbigamous unbigamously unbigged unbigoted unbigotedness unbilious unbiliously unbiliousness unbillable unbilled unbillet unbilleted unbind unbindable unbinding unbindings unbinds unbinned unbiographical unbiographically unbiological unbiologically unbirdlike unbirdlimed unbirdly unbirthday unbirthdays unbishop unbishoped unbishoping unbishoply unbishops unbit unbiting unbitt unbitted unbitten unbitter unbitting unbitts unblacked unblackened unblade unbladed unblading unblamability unblamable unblamableness unblamably unblameable unblameableness unblameably unblamed unblameworthiness unblameworthy unblaming unblanched unblanketed unblasphemed unblasted unblazoned unbleached unbleaching unbled unbleeding unblemishable unblemished unblemishedness unblemishing unblenched unblenching unblenchingly unblendable unblended unblent unbless unblessed unblessedness unblessednesses unblesses unblessing unblest unblighted unblightedly unblightedness unblind unblinded unblindfold unblindfolded unblindfolding unblindfolds unblinding unblinds unblinking unblinkingly unbliss unblissful unblissfully unblissfulness unblistered unblithe unblithely unblock unblockaded unblocked unblocking unblocks unblooded unbloodied unbloodily unbloodiness unbloody unbloom unbloomed unblooming unblossomed unblossoming unblotted unblottedness unbloused unblowed unblown unblued unbluestockingish unbluffable unbluffed unbluffing unblunder unblundered unblundering unblunted unblurred unblush unblushing unblushinghly unblushingly unblushingness unblushingnesses unblusterous unblusterously unboarded unboasted unboastful unboastfully unboastfulness unboasting unboat unbobbed unbodied unbodiliness unbodily unboding unbodkined unbody unbodylike unbog unboggy unbohemianize unboiled unboisterous unboisterously unboisterousness unbokel unbold unbolden unboldly unboldness unbolled unbolster unbolstered unbolt unbolted unbolting unbolts unbombarded unbombast unbombastic unbombastically unbombed unbondable unbondableness unbonded unbone unboned unbones unboning unbonnet unbonneted unbonneting unbonnets unbonny unbooked unbookish unbookishly unbookishness unbooklearned unboot unbooted unbooting unboots unboraxed unborder unbordered unbore unbored unboring unborn unborne unborough unborrowed unborrowing unbosom unbosomed unbosomer unbosomers unbosoming unbosoms unbossed unbotanical unbothered unbothering unbottle unbottled unbottles unbottling unbottom unbottomed unbought unbouncy unbound unboundable unboundableness unboundably unbounded unboundedly unboundedness unboundednesses unboundless unbounteous unbounteously unbounteousness unbountiful unbountifully unbountifulness unbow unbowable unbowdlerized unbowed unbowel unboweled unbowelled unbowered unbowing unbowingness unbowled unbowsome unbox unboxed unboxes unboxing unboy unboyish unboyishly unboyishness unboylike unbrace unbraced unbracedness unbracelet unbraceleted unbraces unbracing unbracketed unbragged unbragging unbraid unbraided unbraiding unbraids unbrailed unbrained unbrainwashed unbrake unbraked unbrakes unbraking unbran unbranched unbranching unbrand unbranded unbrandied unbraste unbrave unbraved unbravely unbraveness unbrawling unbrawny unbraze unbrazen unbrazenly unbrazenness unbreachable unbreachableness unbreachably unbreached unbreaded unbreakability unbreakable unbreakableness unbreakablenesses unbreakably unbreakfasted unbreaking unbreast unbreath unbreathable unbreathableness unbreatheable unbreathed unbreathing unbred unbreech unbreeched unbreeches unbreeching unbreezy unbrent unbrewed unbribable unbribableness unbribably unbribed unbribing unbrick unbricked unbridegroomlike unbridgeable unbridged unbridle unbridled unbridledly unbridledness unbridlednesses unbridles unbridling unbrief unbriefed unbriefly unbriefness unbright unbrightened unbrightly unbrightness unbrilliant unbrilliantly unbrilliantness unbrimming unbrined unbristled unbrittle unbrittleness unbrittness unbrizzed unbroached unbroad unbroadcast unbroadcasted unbroadened unbrocaded unbroid unbroidered unbroiled unbroke unbroken unbrokenly unbrokenness unbrokennesses unbronzed unbrooch unbrooded unbrooding unbrookable unbrookably unbrothered unbrotherlike unbrotherliness unbrotherly unbrought unbrown unbrowned unbrowsed unbrowsing unbruised unbrused unbrushable unbrushed unbrutalise unbrutalised unbrutalising unbrutalize unbrutalized unbrutalizing unbrute unbrutelike unbrutify unbrutise unbrutised unbrutising unbrutize unbrutized unbrutizing unbuckle unbuckled unbuckles unbuckling unbuckramed unbud unbudded unbudding unbudgeability unbudgeable unbudgeableness unbudgeably unbudged unbudgeted unbudging unbudgingly unbuffed unbuffered unbuffeted unbuild unbuildable unbuilded unbuilding unbuilds unbuilt unbulky unbulled unbulletined unbullied unbullying unbumped unbumptious unbumptiously unbumptiousness unbunched unbundle unbundled unbundler unbundlers unbundles unbundling unbundlings unbung unbungling unbuoyant unbuoyantly unbuoyed unburden unburdened unburdening unburdenment unburdens unburdensome unburdensomeness unbureaucratic unbureaucratically unburgessed unburglarized unburiable unburial unburied unburies unburlesqued unburly unburn unburnable unburnableness unburned unburning unburnished unburnt unburrow unburrowed unburrowing unburrows unburst unburstable unburstableness unburthen unburthened unburthening unburthens unbury unburying unbush unbusied unbusily unbusiness unbusinesslike unbusk unbuskin unbuskined unbusted unbustling unbusy unbutchered unbutcherlike unbuttered unbutton unbuttoned unbuttoning unbuttonment unbuttons unbuttressed unbuxom unbuxomly unbuxomness unbuyable unbuyableness unbuying unc unca uncabined uncabled uncacophonous uncadenced uncage uncaged uncages uncaging uncajoling uncake uncaked uncakes uncaking uncalamitous uncalamitously uncalcareous uncalcified uncalcined uncalculable uncalculableness uncalculably uncalculated uncalculatedly uncalculatedness uncalculating uncalculatingly uncalculative uncalendared uncalendered uncalibrated uncalk uncalked uncall uncalled uncallous uncalloused uncallously uncallousness uncallow uncallower uncallused uncalm uncalmative uncalmed uncalmly uncalmness uncalorific uncalumniated uncalumniative uncalumnious uncalumniously uncambered uncamerated uncamouflaged uncamp uncampaigning uncamped uncamphorated uncanalized uncancelable uncanceled uncancellable uncancelled uncancerous uncandid uncandidly uncandidness uncandidnesses uncandied uncandled uncandor uncandour uncandours uncaned uncankered uncanned uncannier uncanniest uncannily uncanniness uncanninesses uncanny uncanonic uncanonical uncanonically uncanonicalness uncanonicalnesses uncanonicity uncanonisation uncanonise uncanonised uncanonises uncanonising uncanonization uncanonize uncanonized uncanonizes uncanonizing uncanopied uncantoned uncantonised uncantonized uncanvassably uncanvassed uncap uncapable uncapableness uncapably uncapacious uncapaciously uncapaciousness uncapacitate uncaparisoned uncape uncaped uncapering uncapes uncaping uncapitalised uncapitalistic uncapitalized uncapitulated uncapitulating uncapped uncapper uncapping uncapricious uncapriciously uncapriciousness uncaps uncapsizable uncapsized uncapsuled uncaptained uncaptioned uncaptious uncaptiously uncaptiousness uncaptivate uncaptivated uncaptivating uncaptivative uncaptived uncapturable uncaptured uncaramelised uncaramelized uncarbonated uncarboned uncarbonized uncarbureted uncarburetted uncarded uncardinal uncardinally uncared uncareful uncarefully uncarefulness uncaressed uncaressing uncaressingly uncargoed uncaricatured uncaring uncarnate uncarnivorous uncarnivorously uncarnivorousness uncaroled uncarolled uncarousing uncarpentered uncarpeted uncarriageable uncarried uncart uncarted uncarting uncartooned uncarts uncarved uncascaded uncascading uncase uncased uncasemated uncases uncashed uncasing uncask uncasked uncasketed uncasque uncassock uncast uncaste uncastigated uncastigative uncastle uncastled uncastrated uncasual uncasually uncasualness uncataloged uncatalogued uncatastrophic uncatastrophically uncatchable uncatchy uncate uncatechised uncatechisedness uncatechized uncatechizedness uncategorical uncategorically uncategoricalness uncategorised uncategorizable uncategorized uncatenated uncatered uncatering uncathartic uncathedraled uncatholcity uncatholic uncatholical uncatholicalness uncatholicise uncatholicised uncatholicising uncatholicity uncatholicize uncatholicized uncatholicizing uncatholicly uncaucusable uncaught uncaulked uncausable uncausal uncausative uncausatively uncausativeness uncause uncaused uncaustic uncaustically uncautelous uncauterised uncauterized uncautioned uncautious uncautiously uncautiousness uncavalier uncavalierly uncave uncavernous uncavernously uncaviling uncavilling uncavitied unce unceasable unceased unceasing unceasingly unceasingness unceasingnesses unceded unceiled unceilinged uncelebrated uncelebrating uncelestial uncelestialised uncelestialized uncelibate uncellar uncement uncemented uncementing uncensorable uncensored uncensorious uncensoriously uncensoriousness uncensurability uncensurable uncensurableness uncensured uncensuring uncenter uncentered uncentral uncentralised uncentrality uncentralized uncentrally uncentre uncentred uncentric uncentrical uncentripetal uncentury uncephalic uncerated uncerebral uncerebric uncereclothed unceremented unceremonial unceremonially unceremonious unceremoniously unceremoniousness unceremoniousnesses unceriferous uncertain uncertainly uncertainness uncertainnesses uncertainties uncertainty uncertifiable uncertifiablely uncertifiableness uncertificated uncertified uncertifying uncertitude unces uncessant uncessantly uncessantness unchafed unchaffed unchaffing unchagrined unchain unchainable unchained unchaining unchains unchair unchaired unchairing unchairs unchalked unchalky unchallengable unchallengeable unchallengeableness unchallengeably unchallenged unchallenging unchambered unchamfered unchampioned unchance unchanceable unchanced unchancellor unchancier unchanciest unchancy unchange unchangeabilities unchangeability unchangeable unchangeableness unchangeablenesses unchangeably unchanged unchangedness unchangeful unchangefully unchangefulness unchanging unchangingly unchangingness unchangingnesses unchanneled unchannelized unchannelled unchanted unchaotic unchaotically unchaperoned unchaplain unchapleted unchapped unchapter unchaptered uncharacter uncharactered uncharacterised uncharacteristic uncharacteristically uncharacterized uncharge unchargeable uncharged uncharges uncharging uncharily unchariness unchariot uncharismatic uncharitable uncharitableness uncharitablenesses uncharitably uncharities uncharity uncharm uncharmable uncharmed uncharming uncharms uncharnel uncharnelled uncharnelling uncharnels uncharred uncharted unchartered unchary unchased unchaste unchastely unchastened unchasteness unchastenesses unchaster unchastest unchastisable unchastised unchastising unchastities unchastity unchastizable unchastized unchatteled unchattering unchauffeured unchauvinistic unchawed uncheapened uncheaply uncheat uncheated uncheating uncheck uncheckable unchecked uncheckered unchecking uncheckmated unchecks uncheerable uncheered uncheerful uncheerfully uncheerfulness uncheerfulnesses uncheerily uncheeriness uncheering uncheery unchemical unchemically uncherished uncherishing unchested unchevroned unchewable unchewableness unchewed unchic unchicly unchid unchidden unchided unchiding unchidingly unchild unchilded unchilding unchildish unchildishly unchildishness unchildlike unchilds unchilled unchiming unchinked unchippable unchipped unchipping unchiseled unchiselled unchivalric unchivalrous unchivalrously unchivalrousness unchivalry unchloridised unchloridized unchlorinated unchoicely unchokable unchoke unchoked unchokes unchoking uncholeric unchoosable unchopped unchoral unchorded unchoreographed unchosen unchrisom unchrist unchristen unchristened unchristening unchristens unchristian unchristianed unchristianing unchristianise unchristianised unchristianises unchristianising unchristianity unchristianize unchristianized unchristianizes unchristianizing unchristianlike unchristianliness unchristianly unchristianness unchristians unchristlike unchromatic unchromed unchronic unchronically unchronicled unchronological unchronologically unchurch unchurched unchurches unchurching unchurchlike unchurchly unchurlish unchurlishly unchurlishness unchurn unchurned unci uncia unciae uncial uncialize uncially uncials unciatim uncicatrized unciferous unciform unciforms unciliated uncinal uncinaria uncinariases uncinariasis uncinariatic uncinate uncinated uncinatum uncinch uncinct uncinctured uncinematic uncini uncinus uncipher unciphered unciphering unciphers uncircled uncircuitous uncircuitously uncircuitousness uncircular uncircularised uncircularized uncircularly uncirculated uncirculating uncirculative uncircumcised uncircumcisedness uncircumcision uncircumcisions uncircumlocutory uncircumscribable uncircumscribed uncircumscribedness uncircumscript uncircumscriptible uncircumscription uncircumspect uncircumspection uncircumspective uncircumspectly uncircumspectness uncircumstanced uncircumstantial uncircumstantially uncircumstantialy uncircumvented uncirostrate uncitable uncite unciteable uncited uncitied uncitizen uncitizenlike uncitizenly uncity uncivic uncivil uncivilisable uncivilise uncivilised uncivilisedly uncivilisedness uncivilish uncivility uncivilizable uncivilization uncivilize uncivilized uncivilizedly uncivilizedness uncivilizednesses uncivilizing uncivilly uncivilness uncivilnesses unclad unclaimed unclaiming unclamorous unclamorously unclamorousness unclamp unclamped unclamping unclamps unclandestinely unclannish unclannishly unclannishness unclarified unclarifying unclarities unclarity unclashing unclasp unclasped unclasping unclasps unclassable unclassableness unclassably unclassed unclassible unclassical unclassically unclassifiable unclassifiableness unclassifiably unclassification unclassified unclassify unclassifying unclassy unclawed unclay unclayed uncle unclead unclean uncleanable uncleaned uncleaner uncleanest uncleanlier uncleanliest uncleanlily uncleanliness uncleanlinesses uncleanly uncleanness uncleannesses uncleansable uncleanse uncleansed uncleansedness unclear unclearable uncleared unclearer unclearest unclearing unclearly unclearness unclearnesses uncleavable uncleave uncled uncledom uncleft unclehood uncleless unclement unclemently unclementness unclench unclenched unclenches unclenching unclergy unclergyable unclerical unclericalise unclericalize unclerically unclericalness unclerklike unclerkly uncles uncleship uncleships unclever uncleverly uncleverness unclew unclewed unclewing unclews uncliched unclick uncliented unclify unclimactic unclimaxed unclimb unclimbable unclimbableness unclimbablenesses unclimbably unclimbed unclimbing unclinch unclinched unclinches unclinching uncling unclinging unclinical unclip unclipped unclipper unclipping unclips unclipt uncloak uncloakable uncloaked uncloaking uncloaks unclog unclogged unclogging unclogs uncloister uncloistered uncloistering uncloisters uncloistral unclosable unclose unclosed uncloses uncloseted unclosing unclot unclothe unclothed unclothedly unclothedness unclothes unclothing unclotted unclotting uncloud unclouded uncloudedly uncloudedness uncloudednesses unclouding unclouds uncloudy unclout uncloven uncloyable uncloyed uncloying unclub unclubable unclubbable unclubby unclustered unclustering unclutch unclutchable unclutched unclutches unclutching unclutter uncluttered uncluttering unclutters unco uncoach uncoachable uncoachableness uncoached uncoacted uncoagulable uncoagulated uncoagulating uncoagulative uncoalesce uncoalesced uncoalescent uncoalesces uncoalescing uncoarse uncoarsely uncoarseness uncoat uncoated uncoatedness uncoating uncoaxable uncoaxal uncoaxed uncoaxial uncoaxing uncobbled uncock uncocked uncocking uncockneyfy uncocks uncocted uncodded uncoddled uncoded uncodified uncoerced uncoercive uncoercively uncoffer uncoffin uncoffined uncoffining uncoffins uncoffle uncoft uncogent uncogently uncogged uncogitable uncognisable uncognizable uncognizant uncognized uncognoscibility uncognoscible uncoguidism uncoherent uncoherently uncoherentness uncohesive uncohesively uncohesiveness uncoif uncoifed uncoiffed uncoil uncoiled uncoiling uncoils uncoin uncoincided uncoincident uncoincidental uncoincidentally uncoincidently uncoinciding uncoined uncoked uncoking uncolike uncollaborative uncollaboratively uncollapsable uncollapsed uncollapsible uncollar uncollared uncollaring uncollated uncollatedness uncollectable uncollected uncollectedly uncollectedness uncollectible uncollectibleness uncollectibles uncollectibly uncollective uncollectively uncolleged uncollegian uncollegiate uncollimated uncolloquial uncolloquially uncollusive uncolonellike uncolonial uncolonise uncolonised uncolonising uncolonize uncolonized uncolonizing uncolorable uncolorably uncolored uncoloredly uncoloredness uncolourable uncolourably uncoloured uncolouredly uncolouredness uncolt uncolted uncolting uncolts uncolumned uncoly uncomatable uncombable uncombatable uncombatant uncombated uncombative uncombed uncombinable uncombinableness uncombinably uncombinational uncombinative uncombine uncombined uncombines uncombining uncombiningness uncombustible uncombustive uncome uncomeatable uncomelier uncomeliest uncomelily uncomeliness uncomelinesses uncomely uncomfort uncomfortable uncomfortableness uncomfortablenesses uncomfortably uncomforted uncomforting uncomfy uncomic uncomical uncomically uncommanded uncommandedness uncommanderlike uncommemorated uncommemorative uncommemoratively uncommenced uncommendable uncommendableness uncommendably uncommendatory uncommended uncommensurability uncommensurable uncommensurableness uncommensurate uncommensurately uncommented uncommenting uncommerciable uncommercial uncommercialized uncommercially uncommercialness uncommingled uncomminuted uncommiserated uncommiserating uncommiserative uncommiseratively uncommissioned uncommitted uncommitting uncommixed uncommodious uncommodiously uncommodiousness uncommon uncommonable uncommoner uncommones uncommonest uncommonly uncommonness uncommonnesses uncommonplace uncommunicable uncommunicableness uncommunicably uncommunicated uncommunicating uncommunicative uncommunicatively uncommunicativeness uncommunicativenesses uncommutable uncommutative uncommutatively uncommutativeness uncommuted uncompact uncompacted uncompahgrite uncompaniable uncompanied uncompanionability uncompanionable uncompanioned uncomparable uncomparableness uncomparably uncompared uncompartmentalize uncompartmentalized uncompartmentalizes uncompartmented uncompass uncompassability uncompassable uncompassed uncompassion uncompassionate uncompassionated uncompassionately uncompassionateness uncompassionating uncompassioned uncompatible uncompatibly uncompellable uncompelled uncompelling uncompendious uncompensable uncompensated uncompensating uncompensative uncompensatory uncompetent uncompetently uncompetitive uncompetitively uncompetitiveness uncompetitivenesses uncompilable uncompiled uncomplacent uncomplacently uncomplained uncomplaining uncomplainingly uncomplainingness uncomplaint uncomplaisance uncomplaisant uncomplaisantly uncomplemental uncomplementally uncomplementary uncomplemented uncompletable uncomplete uncompleted uncompletely uncompleteness uncomplex uncomplexity uncomplexly uncomplexness uncompliability uncompliable uncompliableness uncompliably uncompliance uncompliant uncompliantly uncomplicated uncomplicatedness uncomplication uncomplimentary uncomplimented uncomplimenting uncomplying uncomportable uncomposable uncomposeable uncomposed uncompound uncompoundable uncompounded uncompoundedly uncompoundedness uncompounding uncomprehend uncomprehended uncomprehending uncomprehendingly uncomprehendingness uncomprehened uncomprehensible uncomprehensibleness uncomprehensibly uncomprehension uncomprehensive uncomprehensively uncomprehensiveness uncompressed uncompressible uncomprised uncomprising uncomprisingly uncompromisable uncompromised uncompromising uncompromisingly uncompromisingness uncompromisingnesses uncompt uncompulsive uncompulsively uncompulsory uncomputable uncomputableness uncomputably uncomputed uncomputerized uncomraded unconcatenated unconcatenating unconcealable unconcealableness unconcealably unconcealed unconcealedly unconcealing unconcealingly unconcealment unconceded unconceding unconceited unconceitedly unconceivable unconceivableness unconceivablenesses unconceivably unconceived unconceiving unconcentrated unconcentratedly unconcentrative unconcentric unconcentrically unconceptual unconceptualized unconceptually unconcern unconcerned unconcernedlies unconcernedly unconcernedness unconcernednesses unconcerning unconcernment unconcernments unconcerns unconcertable unconcerted unconcertedly unconcertedness unconcessible unconciliable unconciliated unconciliatedness unconciliating unconciliative unconciliatory unconcludable unconcluded unconcludent unconcluding unconcludingness unconclusive unconclusively unconclusiveness unconcocted unconcordant unconcordantly unconcrete unconcreted unconcretely unconcreteness unconcurred unconcurrent unconcurrently unconcurring uncondemnable uncondemned uncondemning uncondemningly uncondensable uncondensableness uncondensably uncondensational uncondensed uncondensing uncondescending uncondescendingly uncondescension uncondited uncondition unconditional unconditionalities unconditionality unconditionally unconditionalness unconditionalnesses unconditionate unconditionated unconditionately unconditioned unconditionedly unconditionedness unconditionednesses uncondolatory uncondoled uncondoling uncondoned uncondoning unconducing unconducive unconducively unconduciveness unconducted unconductible unconductive unconductiveness unconfected unconfederated unconferred unconfess unconfessed unconfessing unconfided unconfidence unconfident unconfidential unconfidentialness unconfidently unconfiding unconfinable unconfine unconfined unconfinedly unconfinedness unconfinement unconfines unconfining unconfirm unconfirmability unconfirmable unconfirmative unconfirmatory unconfirmed unconfirming unconfiscable unconfiscated unconfiscatory unconflicting unconflictingly unconflictingness unconflictive unconform unconformabilities unconformability unconformable unconformableness unconformablenesses unconformably unconformed unconformedly unconforming unconformism unconformist unconformities unconformity unconfound unconfounded unconfoundedly unconfounding unconfoundingly unconfrontable unconfronted unconfusable unconfusably unconfuse unconfused unconfusedly unconfuses unconfusing unconfutability unconfutable unconfutative unconfuted unconfuting uncongeal uncongealable uncongealed uncongealing uncongeals uncongenial uncongenialities uncongeniality uncongenially uncongested uncongestive unconglobated unconglomerated unconglutinated unconglutinative uncongratulate uncongratulated uncongratulating uncongratulatory uncongregated uncongregational uncongregative uncongressional uncongruous uncongruously uncongruousness unconical unconjecturable unconjectural unconjectured unconjoined unconjugal unconjugated unconjunctive unconjured unconnected unconnectedly unconnectedness unconnectednesses unconned unconnived unconniving unconnotative unconquerable unconquerableness unconquerablenesses unconquerably unconquered unconquest unconscienced unconscient unconscientious unconscientiously unconscientiousness unconscientiousnesses unconscionabilities unconscionability unconscionable unconscionableness unconscionablenesses unconscionably unconscious unconsciouses unconsciously unconsciousness unconsciousnesses unconsecrate unconsecrated unconsecratedly unconsecratedness unconsecrates unconsecrating unconsecration unconsecrative unconsecutive unconsecutively unconsent unconsentaneous unconsentaneously unconsentaneousness unconsented unconsentient unconsenting unconsequential unconsequentially unconsequentialness unconservable unconservative unconservatively unconservativeness unconserved unconserving unconsiderable unconsiderablely unconsiderate unconsiderately unconsiderateness unconsidered unconsideredly unconsideredness unconsidering unconsideringly unconsignable unconsigned unconsistent unconsociable unconsociated unconsolability unconsolable unconsolably unconsolatory unconsoled unconsolidated unconsolidating unconsolidation unconsoling unconsolingly unconsonancy unconsonant unconsonantly unconsonous unconspicuous unconspicuously unconspicuousness unconspired unconspiring unconspiringly unconspiringness unconstancy unconstant unconstantly unconstantness unconstellated unconsternated unconstipated unconstituted unconstitutional unconstitutionalism unconstitutionalities unconstitutionality unconstitutionally unconstrainable unconstrained unconstrainedly unconstrainedness unconstraining unconstraint unconstraints unconstricted unconstrictive unconstruable unconstructed unconstructive unconstructively unconstructural unconstrued unconsular unconsult unconsultable unconsultative unconsultatory unconsulted unconsulting unconsumable unconsumed unconsuming unconsummate unconsummated unconsummately unconsummative unconsumptive unconsumptively uncontacted uncontagious uncontagiously uncontainable uncontainableness uncontainably uncontained uncontaminable uncontaminate uncontaminated uncontaminating uncontaminative uncontemned uncontemnedly uncontemning uncontemningly uncontemplable uncontemplated uncontemplative uncontemplatively uncontemplativeness uncontemporaneous uncontemporaneously uncontemporaneousness uncontemporary uncontemptibility uncontemptible uncontemptibleness uncontemptibly uncontemptuous uncontemptuously uncontemptuousness uncontended uncontending uncontent uncontentable uncontented uncontentedly uncontentedness uncontenting uncontentingness uncontentious uncontentiously uncontentiousness uncontestability uncontestable uncontestablely uncontestableness uncontestably uncontestant uncontested uncontestedly uncontestedness uncontiguous uncontiguously uncontiguousness uncontinence uncontinent uncontinental uncontinented uncontinently uncontingent uncontingently uncontinual uncontinually uncontinued uncontinuous uncontinuously uncontorted uncontortedly uncontortioned uncontortive uncontoured uncontract uncontracted uncontractedness uncontractile uncontradictable uncontradictablely uncontradictableness uncontradictably uncontradicted uncontradictedly uncontradictious uncontradictive uncontradictory uncontrastable uncontrastably uncontrasted uncontrasting uncontrastive uncontrastively uncontributed uncontributing uncontributive uncontributively uncontributiveness uncontributory uncontrite uncontriteness uncontrived uncontriving uncontrol uncontrollabilities uncontrollability uncontrollable uncontrollableness uncontrollablenesses uncontrollably uncontrolled uncontrolledly uncontrolledness uncontrolling uncontroversial uncontroversially uncontrovertable uncontrovertableness uncontrovertably uncontroverted uncontrovertedly uncontrovertible uncontrovertibleness uncontrovertibly uncontumacious uncontumaciously uncontumaciousness unconvenable unconvened unconvenial unconvenience unconvenient unconveniently unconvening unconventional unconventionalise unconventionalises unconventionalism unconventionalities unconventionality unconventionalize unconventionalized unconventionalizes unconventionally unconventioned unconverged unconvergent unconverging unconversable unconversableness unconversably unconversance unconversant unconversational unconversing unconversion unconvert unconverted unconvertedly unconvertedness unconvertibility unconvertible unconvertibleness unconvertibly unconveyable unconveyed unconvicted unconvicting unconvictive unconvince unconvinced unconvincedly unconvincedness unconvincibility unconvincible unconvincing unconvincingly unconvincingness unconvincingnesses unconvolute unconvoluted unconvolutely unconvoyed unconvulsed unconvulsive unconvulsively unconvulsiveness uncookable uncooked uncool uncooled uncoop uncooped uncooperating uncooperative uncooperatively uncooperativeness uncooperativenesses uncoopered uncooping uncoordinate uncoordinated uncoordinately uncoordinateness uncope uncoped uncopes uncopiable uncopied uncoping uncopious uncopyable uncopyrightable uncopyrighted uncoquettish uncoquettishly uncoquettishness uncord uncorded uncordial uncordiality uncordially uncordialness uncording uncords uncore uncored uncoring uncork uncorked uncorker uncorking uncorks uncorned uncorner uncornered uncoronated uncoroneted uncorporal uncorpulent uncorpulently uncorrect uncorrectable uncorrectablely uncorrected uncorrectible uncorrective uncorrectly uncorrectness uncorrelated uncorrelatedly uncorrelative uncorrelatively uncorrelativeness uncorrelativity uncorrespondency uncorrespondent uncorresponding uncorrespondingly uncorridored uncorrigible uncorrigibleness uncorrigibly uncorroborant uncorroborated uncorroborative uncorroboratively uncorroboratory uncorroded uncorrugated uncorrupt uncorrupted uncorruptedly uncorruptedness uncorruptibility uncorruptible uncorruptibleness uncorruptibly uncorrupting uncorruption uncorruptive uncorruptly uncorruptness uncorseted uncorven uncos uncosseted uncost uncostliness uncostly uncostumed uncottoned uncouch uncouched uncouching uncounselable uncounseled uncounsellable uncounselled uncountable uncountableness uncountably uncounted uncountenanced uncounteracted uncounterbalanced uncounterfeit uncounterfeited uncountermandable uncountermanded uncountervailed uncountess uncountrified uncouple uncoupled uncoupler uncouplers uncouples uncoupling uncourageous uncourageously uncourageousness uncoursed uncourted uncourteous uncourteously uncourteousness uncourtesies uncourtesy uncourtierlike uncourting uncourtlike uncourtliness uncourtlinesses uncourtly uncous uncousinly uncouth uncouther uncouthest uncouthie uncouthly uncouthness uncouthnesses uncouthsome uncovenable uncovenant uncovenanted uncover uncoverable uncovered uncoveredly uncovering uncovers uncoveted uncoveting uncovetingly uncovetous uncovetously uncovetousness uncow uncowed uncowl uncowled uncowling uncowls uncoy uncoyly uncoyned uncoyness uncrackable uncracked uncradled uncraftily uncraftiness uncrafty uncraggy uncram uncramp uncramped uncrampedness uncranked uncrannied uncrate uncrated uncrates uncrating uncravatted uncraven uncraving uncravingly uncrazed uncrazy uncream uncreased uncreatability uncreatable uncreatableness uncreate uncreated uncreatedness uncreatednesses uncreates uncreating uncreation uncreative uncreatively uncreativeness uncreativity uncreaturely uncredentialed uncredentialled uncredibility uncredible uncredibly uncredit uncreditable uncreditableness uncreditably uncredited uncrediting uncredulous uncredulously uncredulousness uncreeping uncreosoted uncrest uncrested uncrevassed uncrewed uncrib uncribbed uncribbing uncried uncrime uncriminal uncriminally uncringing uncrinkle uncrinkled uncrinkling uncrippled uncrisp uncritical uncritically uncriticalness uncriticisable uncriticisably uncriticised uncriticising uncriticisingly uncriticism uncriticizable uncriticizably uncriticized uncriticizing uncriticizingly uncrochety uncrook uncrooked uncrookedly uncrooking uncropped uncropt uncross uncrossable uncrossableness uncrossed uncrosses uncrossexaminable uncrossexamined uncrossing uncrossly uncrowded uncrown uncrowned uncrowning uncrowns uncrucified uncrudded uncrude uncrudely uncrudeness uncrudity uncruel uncruelly uncruelness uncrumbled uncrumple uncrumpled uncrumples uncrumpling uncrushable uncrushed uncrusted uncrying uncrystaled uncrystalled uncrystalline uncrystallisability uncrystallisable uncrystallised uncrystallizability uncrystallizable uncrystallized uncs unct unction unctional unctioneer unctionless unctions unctious unctiousness unctorian unctorium unctuarium unctuose unctuosities unctuosity unctuous unctuously unctuousness unctuousnesses uncubbed uncubic uncubical uncubically uncubicalness uncuckold uncuckolded uncudgeled uncudgelled uncuff uncuffed uncuffing uncuffs uncular unculled uncullibility uncullible unculpable unculted uncultivability uncultivable uncultivatable uncultivate uncultivated uncultivatedness uncultivation unculturable unculture uncultured unculturedness uncumber uncumbered uncumbrous uncumbrously uncumbrousness uncumulative uncunning uncunningly uncunningness uncupped uncurable uncurableness uncurably uncurb uncurbable uncurbed uncurbedly uncurbing uncurbs uncurd uncurdled uncurdling uncured uncurious uncuriously uncurl uncurled uncurling uncurls uncurrent uncurrently uncurrentness uncurricularised uncurricularized uncurried uncurse uncursed uncurses uncursing uncurst uncurtailable uncurtailably uncurtailed uncurtain uncurtained uncurtaining uncurtains uncurved uncurving uncus uncushioned uncusped uncustomable uncustomarily uncustomariness uncustomary uncustomed uncut uncute uncuth uncuticulate uncuttable uncynical uncynically uncypress unda undabbled undaggled undaily undaintily undaintiness undainty undallying undam undamageable undamaged undamaging undamasked undammed undamming undamn undamned undamnified undampable undamped undampened undams undanceable undancing undandiacal undandled undangered undangerous undangerously undangerousness undapper undappled undared undaring undaringly undark undarken undarkened undarned undashed undatable undate undateable undated undatedness undaub undaubed undaughter undaughterliness undaughterly undauntable undaunted undauntedly undauntedness undauntednesses undaunting undawned undawning undazed undazing undazzle undazzled undazzles undazzling unde undead undeadened undeadlocked undeadly undeaf undeafed undeafing undeafs undealable undealt undean undear undebarred undebased undebatable undebatably undebated undebating undebauched undebauchedness undebilitated undebilitating undebilitative undebited undecadent undecadently undecagon undecanaphthene undecane undecatoic undecayable undecayableness undecayed undecayedness undecaying undeceased undeceitful undeceitfully undeceitfulness undeceivability undeceivable undeceivableness undeceivably undeceive undeceived undeceiver undeceivers undeceives undeceiving undecency undecennary undecennial undecent undecently undeception undeceptious undeceptitious undeceptive undeceptively undeceptiveness undecidabilities undecidability undecidable undecide undecided undecidedly undecidedness undecidednesses undecideds undeciding undecillion undecillions undecillionth undecimal undeciman undecimole undecimoles undecipher undecipherability undecipherable undecipherably undeciphered undecision undecisive undecisively undecisiveness undeck undecked undecking undecks undeclaimed undeclaiming undeclamatory undeclarable undeclarative undeclare undeclared undeclinable undeclinableness undeclinably undeclined undeclining undecocted undecoic undecolic undecomposable undecomposed undecompounded undecorated undecorative undecorous undecorously undecorousness undecorticated undecoyed undecreased undecreasing undecreasingly undecree undecreed undecrepit undecretive undecretory undecried undecyl undecylene undecylenic undecylic undedicate undedicated undeduced undeducible undeducted undeductible undeductive undeductively undee undeeded undeemed undeemous undeemously undeep undeepened undeeply undefaceable undefaced undefalcated undefamatory undefamed undefaming undefatigable undefaulted undefaulting undefeasible undefeat undefeatable undefeatableness undefeatably undefeated undefeatedly undefeatedness undefecated undefectible undefective undefectively undefectiveness undefence undefendable undefendableness undefendably undefendant undefended undefending undefense undefensed undefensible undefensibleness undefensibly undefensive undefensively undefensiveness undeferential undeferentially undeferrable undeferrably undeferred undefiable undefiably undefiant undefiantly undeficient undeficiently undefide undefied undefilable undefiled undefiledly undefiledness undefinability undefinable undefinableness undefinably undefine undefined undefinedly undefinedness undefinite undefinitely undefiniteness undefinitive undefinitively undefinitiveness undeflectability undeflectable undeflected undeflective undeflowered undefoliated undeformable undeformed undeformedness undefrauded undefrayed undeft undeftly undeftness undegeneracy undegenerate undegenerated undegenerateness undegenerating undegenerative undegraded undegrading undeification undeified undeifies undeify undeifying undeistical undejected undejectedly undejectedness undelated undelayable undelayed undelayedly undelaying undelayingly undelectability undelectable undelectably undelegated undeleted undeleterious undeleteriously undeleteriousness undeliberate undeliberated undeliberately undeliberateness undeliberating undeliberatingly undeliberative undeliberatively undeliberativeness undelible undelicious undeliciously undelight undelighted undelightedly undelightful undelightfully undelightfulness undelighting undelights undelightsome undelimited undelineable undelineated undelineative undelinquent undelinquently undelirious undeliriously undeliverable undeliverableness undelivered undelivery undeludable undelude undeluded undeludedly undeluding undeluged undelusive undelusively undelusiveness undelusory undelve undelved undelylene undemagnetisable undemagnetizable undemanded undemanding undemandingness undemised undemocratic undemocratically undemocratisation undemocratise undemocratised undemocratising undemocratization undemocratize undemocratized undemocratizing undemolishable undemolished undemonstrable undemonstrableness undemonstrably undemonstratable undemonstrated undemonstrational undemonstrative undemonstratively undemonstrativeness undemonstrativenesses undemoralized undemure undemurely undemureness undemurring unden undeniability undeniable undeniableness undeniablenesses undeniably undenied undeniedly undenizened undenominated undenominational undenominationalise undenominationalism undenominationalisms undenominationalist undenominationalize undenominationally undenotable undenotative undenotatively undenoted undenounced undented undenuded undenunciated undenunciatory undepartableness undepartably undeparted undeparting undependability undependable undependableness undependablenesses undependably undependent undepending undephlegmated undepicted undepleted undeplored undeported undeposable undeposed undeposited undepraved undepravedness undeprecated undeprecating undeprecatingly undeprecative undeprecatively undepreciable undepreciated undepreciative undepreciatory undepressed undepressible undepressing undepressive undepressively undepressiveness undeprivable undeprived undepurated undeputed undeputized under underabyss underaccident underaccommodated underachieve underachieved underachievement underachievements underachiever underachievers underachieves underachieving underact underacted underacting underaction underactions underactive underactivities underactivity underactor underactors underacts underadjustment underadmiral underadventurer underage underaged underagency underagent underagents underages underagitation underaid underaim underair underalderman underaldermen underanged underappreciated underarch underargue underarm underarmed underarming underarms underassessed underassessment underate underaverage underback underbailiff underbake underbaked underbakes underbaking underbalance underbalanced underbalancing underballast underbank underbarber underbarring underbasal underbeadle underbeak underbeam underbear underbearer underbearers underbearing underbearings underbears underbeat underbeaten underbed underbedding underbeing underbellies underbelly underbeveling underbevelling underbid underbidder underbidders underbidding underbids underbill underbillow underbind underbishop underbishopric underbit underbite underbites underbiting underbitted underbitten underblanket underblankets underboard underboated underbodice underbodies underbody underboil underboom underbore underborn underborne underboss underbosses underbottom underbough underboughs underbought underbound underbowed underbowser underbox underboy underbrace underbraced underbracing underbranch underbreath underbreathing underbreaths underbred underbreeding underbrew underbridge underbridged underbridges underbridging underbrigadier underbright underbrim underbrims underbrush underbrushed underbrushes underbrushing underbubble underbud underbudde underbudded underbudding underbudget underbudgeted underbudgeting underbudgets underbuds underbuild underbuilder underbuilders underbuilding underbuilds underbuilt underbuoy underburn underburned underburnt underbursar underbury underbush underbushed underbushes underbushing underbutler underbuy underbuying underbuys undercanopy undercanvass undercap undercapitaled undercapitalisation undercapitalisations undercapitalise undercapitalised undercapitalises undercapitalising undercapitalization undercapitalizations undercapitalize undercapitalized undercapitalizes undercapitalizing undercaptain undercard undercarder undercards undercarriage undercarriages undercarried undercarry undercarrying undercart undercarter undercarts undercarve undercarved undercarving undercase undercasing undercast undercasts undercause underceiling undercellar undercellarer underchamber underchamberlain underchancellor underchanter underchap undercharge undercharged undercharges undercharging underchief underchime underchin underchord underchurched undercircle undercircled undercircling undercitizen undercitizenries undercitizenry underclad undercladding underclass underclasses underclassman underclassmen underclay underclays underclearer underclerk underclerks underclerkship undercliff undercliffs underclift undercloak undercloth underclothe underclothed underclothes underclothing underclothings underclub underclubbed underclubbing underclubs underclutch undercoachman undercoachmen undercoat undercoated undercoater undercoating undercoatings undercoats undercollector undercolor undercolored undercoloring undercolour undercoloured undercolouring undercommander undercomment undercompounded underconcerned undercondition underconsciousness underconsciousnesses underconstable underconstumble underconsume underconsumed underconsuming underconsumption undercook undercooked undercooking undercooks undercool undercooled undercooling undercools undercooper undercorrect undercount undercounted undercountenance undercounting undercounts undercourse undercoursed undercoursing undercourtier undercover undercovering undercovert undercoverts undercraft undercrawl undercreep undercrest undercrested undercresting undercrests undercrier undercroft undercrofts undercrop undercrossing undercrust undercry undercrypt undercumstand undercup undercurl undercurrent undercurrents undercurve undercurved undercurving undercut undercuts undercutter undercutting underdamper underdampers underdauber underdeacon underdead underdealer underdealing underdebauchee underdeck underdecks underdegreed underdepth underdevelop underdevelope underdeveloped underdevelopement underdeveloping underdevelopment underdevelopments underdevelops underdevil underdialogue underdid underdig underdigging underdip underdish underdistinction underdistributor underditch underdive underdo underdoctor underdoer underdoers underdoes underdog underdogs underdoing underdone underdose underdosed underdosing underdot underdotted underdotting underdown underdraft underdrag underdrain underdrainage underdrained underdrainer underdraining underdrains underdraught underdraw underdrawers underdrawing underdrawings underdrawn underdraws underdress underdressed underdresses underdressing underdrew underdried underdrift underdrive underdriven underdrives underdrudgery underdrumming underdry underdrying underdug underdunged underearth undereat undereate undereaten undereating undereats underedge undereducated undereducation underemphases underemphasis underemphasise underemphasised underemphasises underemphasising underemphasize underemphasized underemphasizes underemphasizing underemployed underemployment underemployments underendowed underengraver underenter underer underescheator underestimate underestimated underestimates underestimating underestimation underestimations underevaluation underexcited underexercise underexercised underexercises underexercising underexploited underexpose underexposed underexposes underexposing underexposure underexposures undereye undereyed undereying underface underfaced underfacing underfaction underfactor underfaculty underfalconer underfall underfarmer underfeathering underfeature underfed underfeed underfeeder underfeeding underfeeds underfeel underfeeling underfeet underfellow underfelt underfelts underffed underfiend underfill underfilling underfinance underfinanced underfinances underfinancing underfind underfinished underfire underfired underfires underfiring underfish underfished underfishes underfishing underfitting underflame underflannel underfleece underflood underfloor underflooring underflow underflowed underflowing underflows underfo underfold underfolded underfong underfonged underfonging underfongs underfoot underfootage underfooted underfooting underfootman underfootmen underfoots underforebody underform underfortified underfortify underfortifying underframe underframework underframing underfreight underfrequencies underfrequency underfringe underfrock underfulfil underfulfilled underfulfilling underfulfils underfund underfunded underfunding underfundings underfunds underfur underfurnish underfurnished underfurnisher underfurrow underfurs undergabble undergage undergamekeeper undergaoler undergarb undergardener undergarment undergarments undergarnish undergauge undergear undergeneral undergentleman undergentlemen undergird undergirded undergirder undergirding undergirdle undergirds undergirt undergirth underglaze underglazes undergloom underglow undergnaw undergo undergod undergods undergoer undergoes undergoing undergone undergore undergos undergoverness undergovernment undergovernor undergown undergowns undergrad undergrade undergrads undergraduate undergraduatedom undergraduateness undergraduates undergraduateship undergraduateships undergraduatish undergraduette undergraduettes undergraining undergrass undergreen undergrieve undergroan undergrope underground undergrounder undergrounders undergroundling undergroundness undergrounds undergrove undergroves undergrow undergrowl undergrown undergrowth undergrowths undergrub underguard underguardian undergunner underhabit underhammer underhand underhanded underhandedly underhandedness underhandednesses underhands underhang underhanging underhangman underhangmen underhatch underhead underheat underheaven underhelp underhew underhid underhill underhint underhistory underhive underhold underhole underhonest underhorse underhorsed underhorseman underhorsemen underhorsing underhoused underhousemaid underhum underhung underided underinflated underinflation underinflations underinstrument underinsurance underinsure underinsured underinsures underinsuring underinvestment underinvestments underisible underisive underisively underisiveness underisory underissue underivable underivative underivatively underived underivedly underivedness underjacket underjailer underjanitor underjaw underjawed underjaws underjobbing underjoin underjoint underjudge underjudged underjudging underjungle underkeel underkeep underkeeper underkeepers underkeeping underkeeps underkept underkind underking underkingdom underkingdoms underkings underlaborer underlabourer underlaid underlain underlains underland underlanguaged underlap underlapped underlapper underlapping underlaps underlash underlaundress underlawyer underlay underlayer underlayers underlaying underlayment underlayments underlays underleaf underlease underleased underleases underleasing underleather underlegate underlessee underlet underlets underletter underletters underletting underlettings underlevel underlever underli underlid underlie underlielay underlier underlies underlieutenant underlife underlift underlight underliking underlimbed underlimit underline underlineation underlined underlineman underlinemen underlinement underlinen underlinens underliner underlines underling underlings underlining underlinings underlip underlips underlit underlive underload underloaded underlock underlodging underloft underlook underlooker underlookers underlout underlunged underly underlye underlying underlyingly undermade undermaid undermaker underman undermanager undermanned undermanning undermans undermark undermarshal undermarshalman undermarshalmen undermasted undermaster undermatch undermatched undermate undermath undermeal undermeaning undermeanings undermeasure undermeasured undermeasuring undermediator undermelodies undermelody undermen undermentioned undermiller undermimic underminable underminde underminded undermindes underminding undermine undermined underminer underminers undermines undermining underminingly underminings underminister underministry undermirth undermist undermoated undermoney undermoral undermost undermotion undermount undermountain undermusic undermuslin undern undernam undername undernamed undernatural underneath underneaths underness underniceness undernicenesses undernim undernome undernomen undernote undernoted undernotes undernoting undernourish undernourished undernourishes undernourishing undernourishment undernourishments underns undernsong underntide underntime underntimes undernumen undernurse undernutrition undernutritions underoccupied underofficer underofficered underofficial underofficials underogating underogative underogatively underogatory underopinion underorb underorganisation underorganization underorseman underoverlooker underoxidise underoxidised underoxidising underoxidize underoxidized underoxidizing underpacking underpaid underpain underpainting underpaintings underpan underpants underpart underparticipation underpartner underparts underpass underpasses underpassion underpassions underpay underpaying underpayment underpayments underpays underpeep underpeeped underpeeping underpeeps underpeer underpen underpeopled underperform underperformance underperformances underperformed underperformer underperformers underperforming underperforms underpetticoat underpetticoated underpick underpicked underpier underpilaster underpile underpin underpinned underpinner underpinning underpinnings underpins underpitch underpitched underplain underplan underplant underplanted underplanting underplants underplate underplay underplayed underplaying underplays underplot underplots underplotter underply underpoint underpole underpopulate underpopulated underpopulating underpopulation underporch underporter underpose underpossessor underpot underpower underpowered underpraise underpraised underpraises underpraising underprefect underprentice underpreparation underpreparations underprepared underpresence underpresser underpressure underprice underpriced underprices underpricing underpriest underprincipal underprint underprior underprise underprised underprises underprising underprivileged underprize underprized underprizes underprizing underproduce underproduced underproducer underproduces underproducing underproduction underproductions underproductive underproficient underprompt underprompter underproof underprop underproportion underproportioned underproposition underpropped underpropper underproppers underpropping underprops underprospect underpry underpublicized underpuke underpull underpuller underput underqualified underqueen underquote underquoted underquotes underquoting underran underranger underrate underrated underratement underrates underrating underreach underreact underreacted underreacting underreacts underread underreader underrealise underrealised underrealising underrealize underrealized underrealizing underrealm underream underreamer underreceiver underreckon underreckoning underrecompense underrecompensed underrecompensing underregion underregistration underrent underrented underrenting underreport underreported underreporting underreports underrepresent underrepresentation underrepresentations underrepresented underrepresenting underrepresents underrespected underriddle underriding underrigged underring underripe underripened underriver underroarer underroast underrobe underrogue underroll underroller underroof underroom underroot underrooted underrower underrule underruled underruler underruling underrun underrunning underrunnings underruns undersacristan undersaid undersail undersailed undersally undersap undersatisfaction undersaturate undersaturated undersaturation undersavior undersaviour undersaw undersawyer undersay undersaye undersayes undersaying undersays underscale underscheme underschool underscoop underscore underscored underscores underscoring underscribe underscriber underscript underscrub underscrubs underscrupulous underscrupulously undersea underseal undersealed undersealing undersealings underseals underseam underseaman undersearch underseas underseated undersecretariat undersecretariats undersecretaries undersecretary undersecretaryship undersect undersee underseeded underseedman underseeing underseen underself undersell underseller undersellers underselling undersells underselves undersense undersenses undersequence underservant underserve underserved underservice underset undersets undersetter undersetting undersettle undersettler undersettling undersexed undersexton undershapen undersharp undersheathing undershepherd undersheriff undersheriffry undersheriffs undersheriffship undersheriffwick undershield undershine undershining undershire undershirt undershirted undershirts undershoe undershone undershoot undershooting undershoots undershore undershored undershoring undershorten undershorts undershot undershrievalty undershrieve undershrievery undershrub undershrubbiness undershrubby undershrubs undershunter undershut underside undersides undersight undersighted undersign undersignalman undersignalmen undersigned undersigner undersigning undersigns undersill undersinging undersitter undersize undersized underskies underskin underskinker underskinkers underskirt underskirts undersky undersleep undersleeping undersleeve undersleeves underslept underslip underslope undersluice underslung undersneer undersociety undersoil undersoils undersold undersole undersomething undersong undersongs undersorcerer undersort undersoul undersound undersovereign undersow underspan underspar undersparred underspecies underspecification underspecified underspecify underspecifying underspend underspending underspends underspent undersphere underspin underspinner underspins undersplice underspliced undersplicing underspore underspread underspreading underspring undersprout underspurleather undersquare undersshot understaff understaffed understaffing understaffings understaffs understage understain understairs understamp understand understandabilities understandability understandable understandableness understandably understanded understander understanders understanding understandingly understandingness understandings understands understate understated understatedly understatedness understatednesses understatement understatements understates understating understay understeer understeered understeering understeers understem understep understeward understewardship understimuli understimulus understock understocked understocking understocks understood understorey understoreys understories understory understrain understrap understrapped understrapper understrappers understrapping understrata understratum understratums understream understrength understress understrew understrewed understricken understride understriding understrife understrike understriking understring understroke understruck understruction understructure understructures understrung understudied understudies understudy understudying understuff understuffing undersubscribe undersubscribed undersubscribes undersubscribing undersubscription undersubscriptions undersuck undersuggestion undersuit undersupplied undersupplies undersupply undersupplying undersupport undersurface undersurfaces underswain underswamp undersward underswearer undersweat undersweep undersweeping underswell underswept undertakable undertake undertakement undertaken undertaker undertakerish undertakerlike undertakerly undertakers undertakery undertakes undertaking undertakingly undertakings undertalk undertane undertapster undertaught undertax undertaxed undertaxes undertaxing underteach underteacher underteaching underteamed underteller undertenancies undertenancy undertenant undertenants undertenter undertenure underterrestrial undertest underthane underthaw underthief underthing underthings underthink underthirst underthirsts underthought underthroating underthrob underthrust underthrusting underthrusts undertide undertided undertie undertied undertime undertimed undertimes undertint undertints undertitle undertone undertoned undertones undertook undertow undertows undertrade undertraded undertrader undertrading undertrain undertrained undertread undertreasurer undertreat undertribe undertrick undertricks undertrodden undertruck undertrump undertrumped undertrumping undertrumps undertruss undertub undertune undertuned undertunic undertuning underturf underturn underturnkey undertutor undertwig undertying undertype undertyrant underuse underused underuses underusher underusing underutilisation underutilisations underutilise underutilised underutilises underutilising underutilization underutilizations underutilize underutilized underutilizes underutilizing undervaluation undervaluations undervalue undervalued undervaluement undervaluer undervaluers undervalues undervaluing undervaluinglike undervaluingly undervalve undervassal undervaulted undervaulting undervegetation underventilate underventilated underventilating underventilation underverse undervest undervests undervicar underviewer underviewers undervillain undervinedresser undervitalised undervitalized undervocabularied undervoice undervoices undervoltage underwage underwaist underwaistcoat underwaists underwalk underward underwarden underwarmth underwarp underwash underwatch underwatcher underwater underwaters underwave underwaving underway underweapon underwear underwears underweft underweigh underweight underweighted underweights underwent underwheel underwhelm underwhelmed underwhelming underwhelms underwhistle underwind underwinding underwinds underwing underwings underwire underwired underwires underwiring underwirings underwit underwitch underwits underwitted underwood underwooded underwoods underwool underwools underwork underworked underworker underworkers underworking underworkman underworkmen underworks underworld underworlds underwound underwrap underwrapped underwrapping underwrit underwrite underwriter underwriters underwrites underwriting underwritings underwritten underwrote underwrought underyield underyoke underzeal underzealot underzealous underzealously underzealousness undescendable undescended undescendent undescendible undescending undescribable undescribableness undescribably undescribed undescried undescript undescriptive undescriptively undescriptiveness undescrying undesecrated undesert undeserted undeserting undeserts undeserve undeserved undeservedly undeservedness undeservednesses undeserver undeservers undeserves undeserving undeservingly undeservingness undesiccated undesign undesignated undesignative undesigned undesignedly undesignedness undesignednesses undesigning undesigningly undesigningness undesirabilities undesirability undesirable undesirableness undesirablenesses undesirables undesirably undesire undesired undesiredly undesiring undesirous undesirously undesirousness undesisting undespaired undespairing undespairingly undespatched undespised undespising undespoiled undespondent undespondently undesponding undespondingly undespotic undespotically undestined undestitute undestroyable undestroyed undestructible undestructibleness undestructibly undestructive undestructively undestructiveness undetachable undetached undetachment undetailed undetainable undetained undetectability undetectable undetectably undetected undetectible undeteriorated undeteriorating undeteriorative undeterminable undeterminableness undeterminably undeterminate undeterminateness undeterminatenesses undetermination undeterminations undetermined undeterminedly undeterminedness undetermining undeterrability undeterrable undeterrably undeterred undeterring undetestability undetestable undetestableness undetestably undetested undetesting undethronable undethroned undetonated undetracting undetractingly undetractive undetractively undetractory undetrimental undetrimentally undevastated undevastating undevastatingly undevelopable undeveloped undeveloping undevelopment undevelopmental undevelopmentally undeviable undeviated undeviating undeviatingly undeviation undevil undevilish undevious undeviously undeviousness undevisable undevised undevoted undevotion undevotional undevoured undevout undevoutly undevoutness undewed undewily undewiness undewy undexterous undexterously undexterousness undextrous undextrously undextrousness undflow undiabetic undiademed undiagnosable undiagnosed undiagramed undiagrammatic undiagrammatical undiagrammatically undiagrammed undialectical undialed undialled undialysed undialyzed undiametric undiametrical undiametrically undiamonded undiapered undiaphanous undiaphanously undiaphanousness undiatonic undiatonically undichotomous undichotomously undictated undictatorial undictatorially undid undidactic undies undieted undifferenced undifferent undifferentiable undifferentiably undifferential undifferentiated undifferentiating undifferentiation undifferently undiffering undifficult undifficultly undiffident undiffidently undiffracted undiffractive undiffractively undiffractiveness undiffused undiffusible undiffusive undiffusively undiffusiveness undig undigenous undigest undigestable undigested undigestible undigesting undigestion undigged undight undighted undighting undights undigitated undigne undignified undignifiedly undignifiedness undignifies undignify undignifying undigressive undigressively undigressiveness undiked undilapidated undilatable undilated undilating undilative undilatorily undilatory undiligent undiligently undilute undiluted undiluting undilution undiluvial undiluvian undim undimensioned undimerous undimidiate undimidiated undiminishable undiminishableness undiminishably undiminished undiminishing undiminutive undimly undimmed undimpled undine undined undines undinism undinisms undinted undiocesed undiphthongise undiphthongize undiplomaed undiplomatic undiplomatically undipped undirect undirected undirectional undirectly undirectness undirk undisabled undisadvantageous undisagreeable undisappearing undisappointable undisappointed undisappointing undisarmed undisastrous undisastrously undisbanded undisbarred undisburdened undisbursed undiscardable undiscarded undiscernable undiscernably undiscerned undiscernedly undiscernible undiscernibleness undiscernibly undiscerning undiscerningly undiscerningness undiscernings undischargeable undischarged undiscipled undisciplinable undiscipline undisciplined undisciplinedness undisciplines undisclaimed undisclosable undisclose undisclosed undisclosing undiscolored undiscoloured undiscomfitable undiscomfited undiscomposed undisconcerted undisconnected undisconnectedly undiscontinued undiscordant undiscordantly undiscording undiscountable undiscounted undiscourageable undiscouraged undiscouraging undiscouragingly undiscoursed undiscoverability undiscoverable undiscoverableness undiscoverably undiscovered undiscreditable undiscredited undiscreet undiscreetly undiscreetness undiscretion undiscriminated undiscriminating undiscriminatingly undiscriminatingness undiscriminative undiscriminativeness undiscriminatory undiscursive undiscussable undiscussed undiscussible undisdained undisdaining undiseased undisestablished undisfigured undisfranchised undisfulfilled undisgorged undisgraced undisguisable undisguise undisguised undisguisedly undisguisedness undisguising undisgusted undisheartened undished undisheveled undishonored undishonoured undisillusioned undisinfected undisinheritable undisinherited undisintegrated undisinterested undisjoined undisjointed undisliked undislocated undislodgeable undislodged undismantled undismay undismayable undismayed undismayedly undismembered undismissed undismounted undisobedient undisobeyed undisobliging undisordered undisorderly undisorganised undisorganized undisowned undisowning undisparaged undisparity undispassionate undispassionately undispassionateness undispatchable undispatched undispatching undispellable undispelled undispensable undispensed undispensing undispersed undispersing undisplaceable undisplaced undisplanted undisplay undisplayable undisplayed undisplaying undispleased undispose undisposed undisposedness undisprivacied undisprovable undisproved undisproving undisputable undisputableness undisputably undisputatious undisputatiously undisputatiousness undisputed undisputedly undisputedness undisputing undisqualifiable undisqualified undisquieted undisreputable undisrobed undisrupted undissected undissembled undissembledness undissembling undissemblingly undisseminated undissenting undissevered undissimulated undissimulating undissipated undissociated undissoluble undissolute undissoluteness undissolvable undissolved undissolving undissonant undissonantly undissuadable undissuadably undissuade undistanced undistant undistantly undistasted undistasteful undistempered undistend undistended undistilled undistinct undistinctive undistinctly undistinctness undistinguish undistinguishable undistinguishableness undistinguishablenesses undistinguishably undistinguished undistinguishedness undistinguishing undistinguishingly undistorted undistortedly undistorting undistracted undistractedly undistractedness undistractednesses undistracting undistractingly undistrained undistraught undistress undistressed undistributed undistroyable undistrusted undistrustful undistrustfully undistrustfulness undisturbable undisturbance undisturbed undisturbedly undisturbedness undisturbing undisturbingly unditched undithyrambic undittoed undiuretic undiurnal undiurnally undivable undivergent undivergently undiverging undiverse undiversely undiverseness undiversified undiverted undivertible undivertibly undiverting undivertive undivested undivestedly undividable undividableness undividably undivided undividedly undividedness undividednesses undividing undividual undivinable undivine undivined undivinelike undivinely undivining undivisible undivisive undivisively undivisiveness undivorceable undivorced undivorcedness undivorcing undivulgable undivulgeable undivulged undivulging undizened undizzied undo undoable undocible undocile undock undocked undocketed undocking undocks undoctor undoctored undoctrinaire undoctrinal undoctrinally undoctrined undocumentary undocumented undocumentedness undodged undoer undoers undoes undoffed undog undogmatic undogmatical undogmatically undoing undoingness undoings undolled undolorous undolorously undolorousness undomed undomestic undomesticable undomestically undomesticate undomesticated undomesticates undomesticating undomestication undomicilable undomiciled undominated undominative undomineering undominical undominoed undon undonated undonating undone undoneness undonkey undonnish undoomed undoped undormant undose undosed undoting undotted undouble undoubled undoubles undoubling undoubtable undoubtableness undoubtably undoubted undoubtedly undoubtedness undoubtful undoubtfully undoubtfulness undoubting undoubtingly undoubtingness undouched undoughty undovelike undoweled undowelled undowered undowned undowny undrab undraftable undrafted undrag undragoned undragooned undrainable undrained undramatic undramatical undramatically undramatisable undramatised undramatizable undramatized undrape undraped undraperied undrapes undraping undraw undrawable undrawing undrawn undraws undreaded undreadful undreadfully undreading undreamed undreaming undreamlike undreamt undreamy undredged undreggy undrenched undress undressed undresses undressing undressings undrest undrew undried undrifting undrillable undrilled undrinkability undrinkable undrinkableness undrinkably undrinking undripping undrivable undrivableness undriveable undriven undronelike undrooping undroppable undropped undropsical undrossily undrossiness undrossy undrowned undrubbed undrugged undrunk undrunken undrunkenness undry undryable undrying undualise undualistic undualistically undualize undub undubbed undubious undubiously undubiousness undubitable undubitably undubitative undubitatively unducal unduchess unductile undue unduelling undueness undug unduke undulance undulancies undulancy undulant undular undularly undulatance undulate undulated undulately undulates undulating undulatingly undulation undulationist undulationists undulations undulative undulator undulatory undulatus undull undulled undullness unduloid undulose undulous unduly undumbfounded undumped unduncelike undunged undupability undupable unduped unduplicability unduplicable unduplicated unduplicative unduplicity undurability undurable undurableness undurably undure undust undusted undusty unduteous unduteously unduteousness undutiable undutiful undutifully undutifulness undutifulnesses unduty undwarfed undwellable undwelt undwindling undy undyable undye undyeable undyed undying undyingly undyingness undyingnesses undynamic undynamically undynamited uneager uneagerly uneagerness uneagled uneared unearly unearmarked unearned unearnest unearnestly unearnestness unearth unearthed unearthing unearthlier unearthliest unearthliness unearthlinesses unearthly unearths unease uneaseful uneasefulness uneases uneasier uneasiest uneasily uneasiness uneasinesses uneastern uneasy uneatable uneatableness uneatablenesses uneated uneaten uneath uneathes uneaths uneating uneaved unebbed unebbing unebriate unebullient uneccentric uneccentrically unecclesiastic unecclesiastical unecclesiastically unechoed unechoic unechoing uneclectic uneclectically uneclipsed uneclipsing unecliptic unecliptical unecliptically unecological uneconomic uneconomical uneconomically uneconomicalness uneconomising uneconomizing unecstatic unecstatically unedacious unedaciously uneddied uneddying unedge unedged unedges unedging unedible unedibleness unedibly unedificial unedified unedifying uneditable unedited uneducable uneducableness uneducably uneducate uneducated uneducatedly uneducatedness uneducative uneduced uneffable uneffaceable uneffaceably uneffaced uneffected uneffectible uneffective uneffectively uneffectiveness uneffectless uneffectual uneffectually uneffectualness uneffectuated uneffeminate uneffeminated uneffeminately uneffeness uneffervescent uneffervescently uneffete uneffeteness unefficacious unefficaciously unefficient uneffigiated uneffulgent uneffulgently uneffused uneffusing uneffusive uneffusively uneffusiveness unegal unegally unegalness unegoist unegoistical unegoistically unegotistical unegotistically unegregious unegregiously unegregiousness unejaculated unejected unejective unelaborate unelaborated unelaborately unelaborateness unelapsed unelastic unelastically unelasticity unelated unelating unelbowed unelderly unelect unelectable unelected unelective unelectric unelectrical unelectrically unelectrified unelectrify unelectrifying unelectrized unelectronic uneleemosynary unelegant unelegantly unelegantness unelemental unelementally unelementary unelevated unelicitable unelicited unelided unelidible uneligibility uneligible uneligibly uneliminated unelliptical unelongated uneloped uneloping uneloquent uneloquently unelucidated unelucidating unelucidative uneludable uneluded unelusive unelusively unelusiveness unelusory unemaciated unemanative unemancipable unemancipated unemancipative unemasculated unemasculative unemasculatory unembalmed unembanked unembarassed unembarrassed unembarrassedly unembarrassedness unembarrassing unembarrassment unembased unembattled unembayed unembellished unembellishedness unembellishment unembezzled unembittered unemblazoned unembodied unembodiment unembossed unemboweled unembowelled unembowered unembraceable unembraced unembroidered unembroiled unembryonal unembryonic unemendable unemended unemerged unemergent unemerging unemigrant unemigrating uneminent uneminently unemissive unemitted unemitting unemolumentary unemolumented unemotional unemotionalism unemotionality unemotionally unemotionalness unemotioned unemotive unemotively unemotiveness unempaneled unempanelled unemphasized unemphasizing unemphatic unemphatical unemphatically unempirical unempirically unemploy unemployabilities unemployability unemployable unemployableness unemployables unemployably unemployed unemployeds unemployment unemployments unempoisoned unempowered unempt unemptiable unemptied unempty unemulative unemulous unemulsified unenabled unenacted unenameled unenamelled unenamored unenamoured unencamped unenchafed unenchant unenchanted unenciphered unencircled unenclosed unencompassed unencored unencounterable unencountered unencouraged unencouraging unencroached unencroaching unencrypted unencumber unencumbered unencumberedly unencumberedness unencumbering unencysted unendable unendamaged unendangered unendeared unendearing unendeavored unendeavoured unended unendemic unending unendingly unendingness unendingnesses unendly unendorsable unendorsed unendowed unendowing unendued unendurability unendurable unendurableness unendurablenesses unendurably unendured unenduring unenduringly unenergetic unenergetically unenergised unenergized unenervated unenfeebled unenfiladed unenforceability unenforceable unenforced unenforcedly unenforcedness unenforcibility unenfranchised unengaged unengaging unengagingness unengendered unengineered unenglish unenglished unengraved unengraven unengrossed unengrossing unenhanced unenigmatic unenigmatical unenigmatically unenjoined unenjoyable unenjoyableness unenjoyably unenjoyed unenjoying unenjoyingly unenkindled unenlarged unenlarging unenlightened unenlightening unenlightenment unenlisted unenlivened unenlivening unennobled unennobling unenounced unenquired unenquiring unenraged unenraptured unenrichable unenrichableness unenriched unenriching unenrobed unenrolled unenshrined unenslave unenslaved unensnared unensouled unensured unentailed unentangle unentangleable unentangled unentanglement unentangler unentangling unenterable unentered unentering unenterprise unenterprised unenterprising unenterprisingly unenterprisingness unentertainable unentertained unentertaining unentertainingly unentertainingness unenthralled unenthralling unenthroned unenthused unenthusiasm unenthusiastic unenthusiastically unenticeable unenticed unenticing unentire unentitled unentitledness unentitlement unentombed unentomological unentrance unentranced unentrapped unentreatable unentreated unentreating unentrenched unentwined unenumerable unenumerated unenumerative unenunciable unenunciated unenunciative unenveloped unenvenomed unenviability unenviable unenviably unenvied unenviedly unenvious unenviously unenvironed unenvying unenvyingly unenwoven unepauleted unepauletted unephemeral unephemerally unepic unepicurean unepigrammatic unepigrammatically unepilogued unepiscopal unepiscopally unepistolary unepitaphed unepithelial unepitomised unepitomized unepochal unequability unequable unequableness unequably unequal unequalable unequaled unequalise unequalised unequalising unequality unequalize unequalized unequalizing unequalled unequally unequalness unequals unequated unequatorial unequestrian unequiangular unequiaxed unequilateral unequilaterally unequilibrated unequine unequipped unequitable unequitableness unequitably unequivalent unequivalently unequivalve unequivalved unequivocably unequivocal unequivocally unequivocalness unequivocating uneradicable uneradicated uneradicative unerasable unerased unerasing unerect unerected unergetic unergonomic unermined unerodable uneroded unerodent uneroding unerosive unerotic unerrable unerrableness unerrably unerrancy unerrant unerrantly unerratic unerring unerringly unerringness unerringnesses unerroneous unerroneously unerroneousness unerudite unerupted uneruptive unescaladed unescalloped unescapable unescapableness unescapably unescaped unescheatable unescheated uneschewable uneschewably uneschewed unesco unescorted unescutcheoned unesoteric unespied unespousable unespoused unessayed unessence unessenced unessences unessencing unessential unessentially unessentialness unessentials unestablish unestablishable unestablished unestablishment unesteemed unesthetic unestimable unestimableness unestimably unestimated unestopped unestranged unetched uneternal uneternized uneth unethereal unethereally unetherealness unethic unethical unethically unethicalness unethnologic unethnological unethnologically unethylated unetymologic unetymological unetymologically unetymologizable uneucharistical uneugenic uneugenical uneugenically uneulogised uneulogized uneuphemistic uneuphemistical uneuphemistically uneuphonic uneuphonious uneuphoniously uneuphoniousness unevacuated unevadable unevaded unevadible unevading unevaluated unevanescent unevanescently unevangelic unevangelical unevangelically unevangelised unevangelized unevaporate unevaporated unevaporative unevasive unevasively unevasiveness uneven unevener unevenest unevenly unevenness unevennesses uneventful uneventfully uneventfulness uneventfulnesses uneversible uneverted unevicted unevidenced unevident unevidential unevil unevilly unevinced unevincible unevirated uneviscerated unevitable unevitably unevocable unevocative unevokable unevoked unevolutional unevolutionary unevolved unexacerbated unexacerbating unexact unexacted unexactedly unexacting unexactingly unexactingness unexactly unexactness unexaggerable unexaggerated unexaggerating unexaggerative unexaggeratory unexalted unexalting unexaminable unexamined unexamining unexampled unexampledness unexasperated unexasperating unexcavated unexceedable unexceeded unexcelled unexcellent unexcellently unexcelling unexceptable unexcepted unexcepting unexceptionability unexceptionable unexceptionableness unexceptionablenesses unexceptionably unexceptional unexceptionality unexceptionally unexceptionalness unexceptive unexcerpted unexcessive unexcessively unexcessiveness unexchangeability unexchangeable unexchangeableness unexchangeabness unexchanged unexcised unexcitability unexcitable unexcitablely unexcitableness unexcited unexciting unexcitingly unexclaiming unexcludable unexcluded unexcluding unexclusive unexclusively unexclusiveness unexcogitable unexcogitated unexcogitative unexcommunicated unexcoriated unexcorticated unexcrescent unexcrescently unexcreted unexcruciating unexculpable unexculpably unexculpated unexcursive unexcursively unexcusable unexcusableness unexcusably unexcused unexcusedly unexcusedness unexcusing unexecrated unexecutable unexecuted unexecuting unexecutorial unexemplary unexemplifiable unexemplified unexempt unexemptable unexempted unexemptible unexempting unexercisable unexercise unexercised unexerted unexhalable unexhaled unexhausted unexhaustedly unexhaustedness unexhaustible unexhaustibleness unexhaustibly unexhaustion unexhaustive unexhaustively unexhaustiveness unexhibitable unexhibitableness unexhibited unexhilarated unexhilarating unexhilarative unexhortative unexhorted unexhumed unexigent unexigently unexigible unexilable unexiled unexistence unexistent unexistential unexistentially unexisting unexonerable unexonerated unexonerative unexorable unexorableness unexorbitant unexorbitantly unexorcisable unexorcisably unexorcised unexotic unexotically unexpandable unexpanded unexpanding unexpansible unexpansive unexpansively unexpansiveness unexpect unexpectability unexpectable unexpectably unexpectant unexpectantly unexpected unexpectedly unexpectedness unexpectednesses unexpecteds unexpecting unexpectingly unexpectorated unexpedient unexpediently unexpeditable unexpeditated unexpedited unexpeditious unexpeditiously unexpeditiousness unexpellable unexpelled unexpendable unexpended unexpensive unexpensively unexpensiveness unexperience unexperienced unexperiencedness unexperient unexperiential unexperientially unexperimental unexperimentally unexperimented unexpert unexpertly unexpertness unexpiable unexpiated unexpired unexpiring unexplainable unexplainableness unexplainably unexplained unexplainedly unexplainedness unexplaining unexplanatory unexplicable unexplicableness unexplicably unexplicated unexplicative unexplicit unexplicitly unexplicitness unexplodable unexploded unexploitable unexploitation unexploitative unexploited unexplorable unexplorative unexploratory unexplored unexplosive unexplosively unexplosiveness unexponible unexportable unexported unexporting unexposable unexposed unexpostulating unexpoundable unexpounded unexpress unexpressable unexpressableness unexpressably unexpressed unexpressedly unexpressible unexpressibleness unexpressibly unexpressive unexpressively unexpressiveness unexpressivenesses unexpressly unexpropriable unexpropriated unexpugnable unexpunged unexpurgated unexpurgatedly unexpurgatedness unextendable unextended unextendedly unextendedness unextendibility unextendible unextensibility unextensible unextenuable unextenuated unextenuating unexterminable unexterminated unexternal unexternality unexterritoriality unextinct unextinctness unextinguishable unextinguishableness unextinguishably unextinguished unextirpable unextirpated unextolled unextortable unextorted unextractable unextracted unextradited unextraneous unextraneously unextraordinary unextravagance unextravagant unextravagantly unextravagating unextravasated unextreme unextremeness unextricable unextricated unextrinsic unextruded unexuberant unexuberantly unexudative unexuded unexultant unexultantly uneye uneyeable uneyed unfabled unfabling unfabricated unfabulous unfabulously unfacaded unface unfaceable unfaced unfaceted unfacetious unfacetiously unfacetiousness unfacile unfacilely unfacilitated unfact unfactional unfactious unfactiously unfactitious unfactorable unfactored unfacts unfactual unfactually unfactualness unfadable unfaded unfading unfadingly unfadingness unfadingnesses unfagged unfagoted unfailable unfailableness unfailably unfailed unfailing unfailingly unfailingness unfailingnesses unfain unfaint unfainting unfaintly unfair unfaired unfairer unfairest unfairing unfairly unfairminded unfairness unfairnesses unfairs unfairylike unfaith unfaithful unfaithfully unfaithfulness unfaithfulnesses unfaiths unfaithworthiness unfaithworthy unfakable unfaked unfalcated unfallacious unfallaciously unfallaciousness unfallen unfallenness unfallible unfallibleness unfallibly unfalling unfallowed unfalse unfalseness unfalsifiable unfalsified unfalsifiedness unfalsity unfaltering unfalteringly unfamed unfamiliar unfamiliarised unfamiliarities unfamiliarity unfamiliarized unfamiliarly unfamous unfanatical unfanatically unfanciable unfancied unfanciful unfancifulness unfanciness unfancy unfanged unfanned unfantastic unfantastical unfantastically unfar unfarced unfarcical unfardle unfarewelled unfarmable unfarmed unfarming unfarrowed unfarsighted unfasciate unfasciated unfascinate unfascinated unfascinating unfashion unfashionable unfashionableness unfashionablenesses unfashionably unfashioned unfast unfasten unfastenable unfastened unfastener unfastening unfastens unfastidious unfastidiously unfastidiousness unfasting unfatalistic unfatalistically unfated unfather unfathered unfatherlike unfatherliness unfatherly unfathomability unfathomable unfathomableness unfathomablenesses unfathomably unfathomed unfatigable unfatigue unfatigueable unfatigued unfatiguing unfattable unfatted unfatten unfattened unfatty unfatuitous unfatuitously unfauceted unfaultable unfaultfinding unfaulty unfavorable unfavorableness unfavorablenesses unfavorably unfavored unfavoring unfavorite unfavourable unfavourableness unfavourablenesses unfavourably unfavoured unfavouring unfavourite unfawning unfazed unfazedness unfealty unfeared unfearful unfearfully unfearfulness unfearing unfearingly unfearingness unfeary unfeasable unfeasableness unfeasably unfeasibility unfeasible unfeasibleness unfeasibly unfeasted unfeastly unfeather unfeathered unfeatured unfeaty unfebrile unfecund unfecundated unfed unfederal unfederated unfederative unfederatively unfeeble unfeebleness unfeebly unfeed unfeedable unfeeding unfeeing unfeel unfeelable unfeeling unfeelingly unfeelingness unfeelingnesses unfeignable unfeignableness unfeignably unfeigned unfeignedly unfeignedness unfeignednesses unfeigning unfeigningly unfeigningness unfele unfelicitated unfelicitating unfelicitous unfelicitously unfelicitousness unfeline unfellable unfelled unfellied unfellow unfellowed unfellowlike unfellowly unfellowshiped unfelon unfelonious unfeloniously unfelony unfelt unfelted unfemale unfeminine unfemininely unfeminineness unfemininity unfeminise unfeminised unfeminising unfeminist unfeminize unfeminized unfeminizing unfence unfenced unfences unfencing unfended unfendered unfenestral unfenestrated unfeoffed unfermentable unfermentableness unfermentably unfermentative unfermented unfermenting unfernlike unferocious unferociously unferreted unferreting unferried unfertile unfertileness unfertilisable unfertilised unfertilising unfertility unfertilizable unfertilized unfertilizing unfervent unfervently unfervid unfervidly unfester unfestered unfestering unfestival unfestive unfestively unfestooned unfetchable unfetched unfetching unfeted unfetter unfettered unfettering unfetters unfettled unfeudal unfeudalise unfeudalised unfeudalises unfeudalising unfeudalize unfeudalized unfeudalizes unfeudalizing unfeudally unfeued unfevered unfeverish unfew unffroze unfibbed unfibbing unfiber unfibered unfibred unfibrous unfibrously unfickle unfictitious unfictitiously unfictitiousness unfidelity unfidgeting unfiducial unfielded unfiend unfiendlike unfierce unfiercely unfiery unfight unfightable unfighting unfigurable unfigurative unfigured unfilamentous unfilched unfilde unfile unfiled unfilial unfilially unfilialness unfiling unfill unfillable unfilled unfilleted unfilling unfilm unfilmed unfilterable unfiltered unfiltering unfiltrable unfiltrated unfimbriated unfinable unfinalized unfinanced unfinancial unfindable unfine unfineable unfined unfinessed unfingered unfingured unfinical unfinicalness unfinish unfinishable unfinished unfinishedly unfinishedness unfinishing unfinite unfired unfireproof unfiring unfirm unfirmamented unfirmly unfirmness unfiscal unfiscally unfishable unfished unfishing unfishlike unfissile unfistulous unfit unfitly unfitness unfitnesses unfits unfittable unfitted unfittedness unfittednesses unfitten unfitter unfittest unfitting unfittingly unfittingness unfitty unfix unfixable unfixated unfixative unfixed unfixedness unfixednesses unfixes unfixing unfixities unfixity unfixt unflag unflagged unflagging unflaggingly unflaggingness unflagitious unflagrant unflagrantly unflaked unflaking unflaky unflamboyant unflamboyantly unflame unflaming unflanged unflank unflanked unflappabilities unflappability unflappable unflappably unflapping unflared unflaring unflashing unflashy unflat unflated unflatted unflattened unflatterable unflattered unflattering unflatteringly unflaunted unflaunting unflauntingly unflavored unflavorous unflavoured unflavourous unflawed unflayed unflead unflecked unfledge unfledged unfledgedness unfleece unfleeced unfleeing unfleeting unflesh unfleshed unfleshes unfleshing unfleshliness unfleshly unfleshy unfletched unflexed unflexibility unflexible unflexibleness unflexibly unflickering unflickeringly unflighty unflinching unflinchingly unflinchingness unflintify unflippant unflippantly unflirtatious unflirtatiously unflirtatiousness unflitched unfloatable unfloating unflock unfloggable unflogged unflooded unfloor unfloored unflorid unflossy unflounced unfloundering unfloured unflourished unflourishing unflouted unflower unflowered unflowering unflowery unflowing unflown unfluctuant unfluctuating unfluent unfluently unfluffed unfluffy unfluid unfluked unflunked unfluorescent unfluorinated unflurried unflush unflushed unflushes unflushing unflustered unfluted unflutterable unfluttered unfluttering unfluvial unfluxile unflyable unflying unfoaled unfoamed unfoaming unfocused unfocusing unfocussed unfocussing unfogged unfogging unfoggy unfoilable unfoiled unfoisted unfold unfoldable unfolded unfolden unfolder unfolders unfolding unfoldings unfoldment unfoldments unfolds unfoldure unfoliaged unfoliated unfollowable unfollowed unfollowing unfomented unfond unfondled unfondly unfondness unfoodful unfool unfoolable unfooled unfooling unfoolish unfoolishly unfoolishness unfools unfooted unfootsore unfoppish unforaged unforbade unforbearance unforbearing unforbid unforbidded unforbidden unforbiddenly unforbiddenness unforbidding unforceable unforced unforcedly unforcedness unforceful unforcefully unforcible unforcibleness unforcibly unforcing unfordable unfordableness unforded unforeboded unforeboding unforecast unforecasted unforegone unforeign unforeknowable unforeknown unforensic unforensically unforeordained unforesee unforeseeable unforeseeableness unforeseeably unforeseeing unforeseeingly unforeseen unforeseenly unforeseenness unforeshortened unforesightful unforeskinned unforest unforestallable unforestalled unforested unforetellable unforethought unforethoughtful unforetold unforewarned unforewarnedness unforfeit unforfeitable unforfeited unforfeiting unforgeability unforgeable unforged unforget unforgetful unforgetfully unforgetfulness unforgettability unforgettable unforgettableness unforgettablenesses unforgettably unforgetting unforgettingly unforgivable unforgivableness unforgivably unforgiven unforgiveness unforgivenesses unforgiver unforgiving unforgivingly unforgivingness unforgivingnesses unforgoable unforgone unforgot unforgotten unfork unforked unforkedness unforlorn unform unformal unformalised unformalistic unformality unformalized unformally unformalness unformative unformatted unformed unformidable unformidableness unformidably unforming unforms unformulable unformularizable unformularize unformulated unformulistic unforsaken unforsaking unforseen unforsook unforsworn unforthcoming unforthright unfortifiable unfortified unfortify unfortuitous unfortuitously unfortuitousness unfortunate unfortunately unfortunateness unfortunatenesses unfortunates unfortune unfortuned unfortunes unforward unforwarded unforwardly unfossiliferous unfossilised unfossilized unfostered unfostering unfought unfoughten unfoul unfoulable unfouled unfouling unfoully unfound unfounded unfoundedly unfoundedness unfoundednesses unfoundered unfoundering unfountained unfowllike unfoxed unfoxy unfractious unfractiously unfractiousness unfractured unfragile unfragmented unfragrance unfragrant unfragrantly unfrail unframable unframableness unframably unframe unframeable unframed unfranchised unfrangible unfrank unfrankable unfranked unfrankly unfrankness unfraternal unfraternally unfraternised unfraternising unfraternized unfraternizing unfraudulent unfraudulently unfraught unfraughted unfraughting unfraughts unfrayed unfrazzled unfreakish unfreakishly unfreakishness unfreckled unfree unfreed unfreedom unfreedoms unfreehold unfreeing unfreeingly unfreely unfreeman unfreemen unfreeness unfrees unfreezable unfreeze unfreezes unfreezing unfreight unfreighted unfreighting unfrenchified unfrenzied unfrequency unfrequent unfrequentable unfrequentative unfrequented unfrequentedness unfrequentednesses unfrequently unfrequentness unfret unfretful unfretfully unfretted unfretting unfretty unfriable unfriableness unfriarlike unfricative unfrictional unfrictionally unfrictioned unfried unfriend unfriended unfriendedness unfriendednesses unfriending unfriendlier unfriendliest unfriendlike unfriendlily unfriendliness unfriendlinesses unfriendly unfriends unfriendship unfriendships unfrighted unfrightenable unfrightened unfrightenedness unfrightening unfrightful unfrigid unfrigidity unfrigidly unfrigidness unfrill unfrilled unfrilly unfringe unfringed unfringing unfrisking unfrisky unfrittered unfrivolous unfrivolously unfrivolousness unfrizz unfrizzled unfrizzly unfrizzy unfrock unfrocked unfrocking unfrocks unfroglike unfrolicsome unfronted unfrost unfrosted unfrosty unfrothed unfrothing unfrounced unfroward unfrowardly unfrowning unfroze unfrozen unfructed unfructified unfructify unfructuous unfructuously unfrugal unfrugality unfrugally unfrugalness unfruitful unfruitfully unfruitfulness unfruitfulnesses unfruity unfrustrable unfrustrably unfrustratable unfrustrated unfrutuosity unfuddled unfudged unfueled unfuelled unfugal unfugally unfugitive unfugitively unfulfil unfulfill unfulfillable unfulfilled unfulfilling unfulfillment unfulfilment unfulgent unfulgently unfull unfulled unfully unfulminant unfulminated unfulminating unfulsome unfumbled unfumbling unfumed unfumigated unfuming unfunctional unfunctionally unfunctioning unfundable unfundamental unfundamentally unfunded unfunereal unfunereally unfungible unfunnily unfunniness unfunny unfur unfurbelowed unfurbished unfurcate unfurious unfurl unfurlable unfurled unfurling unfurls unfurnish unfurnished unfurnishedness unfurnishes unfurnishing unfurnitured unfurred unfurrow unfurrowable unfurrowed unfurthersome unfused unfusibility unfusible unfusibleness unfusibly unfusibness unfussed unfussily unfussiness unfussing unfussy unfutile unfuturistic ung ungabled ungag ungaged ungagged ungagging ungags ungain ungainable ungained ungainful ungainfully ungainfulness ungaining ungainlier ungainliest ungainlike ungainliness ungainlinesses ungainly ungainness ungainsaid ungainsayable ungainsayably ungainsaying ungainsome ungainsomely ungaite ungaited ungallant ungallantly ungallantness ungalled ungalleried ungalling ungalloping ungalvanised ungalvanized ungambled ungambling ungamboled ungamboling ungambolled ungambolling ungamelike ungamy unganged ungangrened ungangrenous ungaping ungaraged ungarbed ungarbled ungardened ungargled ungarland ungarlanded ungarment ungarmented ungarnered ungarnish ungarnished ungaro ungarrisoned ungarrulous ungarrulously ungarrulousness ungarter ungartered ungashed ungassed ungastric ungated ungathered ungaudily ungaudiness ungaudy ungauged ungauntlet ungauntleted ungazed ungazetted ungazing ungear ungeared ungearing ungears ungelatinisable ungelatinised ungelatinizable ungelatinized ungelatinous ungelatinously ungelatinousness ungelded ungelt ungeminated ungendered ungenerable ungeneral ungeneraled ungeneralised ungeneralising ungeneralized ungeneralizing ungenerate ungenerated ungenerating ungenerative ungeneric ungenerical ungenerically ungenerosities ungenerosity ungenerous ungenerously ungenerousness ungenial ungeniality ungenially ungenialness ungenitive ungenitured ungenius ungenteel ungenteelly ungenteelness ungenteely ungentile ungentilise ungentilities ungentility ungentilize ungentle ungentled ungentleman ungentlemanise ungentlemanize ungentlemanlike ungentlemanlikeness ungentlemanliness ungentlemanlinesses ungentlemanly ungentleness ungentlenesses ungentlewomanlike ungently ungentrified ungenuine ungenuinely ungenuineness ungenuinenesses ungeodetic ungeodetical ungeodetically ungeographic ungeographical ungeographically ungeological ungeologically ungeometric ungeometrical ungeometrically ungeometricalness ungermane ungerminant ungerminated ungerminating ungerminative ungermlike ungerontic ungesticular ungesticulating ungesticulative ungesticulatory ungesting ungestural ungesturing unget ungetable ungetatable ungets ungettable ungetting ungeuntarium ungeuntary unghostlike unghostly ungiant ungibbet ungiddy ungift ungifted ungiftedness ungild ungilded ungilding ungilds ungill ungilled ungilt ungimmicky ungingled unginned ungird ungirded ungirding ungirdle ungirdled ungirdling ungirds ungirlish ungirlishly ungirlishness ungirt ungirth ungirthed ungirthing ungirths ungivable ungive ungiveable ungiven ungiving ungivingness ungka unglacial unglacially unglaciated unglad ungladden ungladdened ungladly ungladness ungladsome unglamorized unglamorous unglamorously unglamorousness unglandular unglaring unglassed unglassy unglaze unglazed ungleaming ungleaned unglee ungleeful ungleefully unglib unglibly ungliding unglimpsed unglistening unglittering unglittery ungloating unglobe unglobular unglobularly ungloom ungloomed ungloomily ungloomy unglorified unglorify unglorifying unglorious ungloriously ungloriousness unglory unglosed ungloss unglossaried unglossed unglossily unglossiness unglossy unglove ungloved ungloves ungloving unglowering ungloweringly unglowing unglozed unglue unglued unglueing unglues ungluing unglutinate unglutinosity unglutinous unglutinously unglutinousness unglutted ungluttonous ungnarled ungnarred ungnaw ungnawed ungnawn ungnostic ungoaded ungoatlike ungod ungodded ungoddess ungodding ungodlier ungodliest ungodlike ungodlily ungodliness ungodlinesses ungodly ungodmothered ungods ungoggled ungoitered ungold ungolden ungone ungood ungoodliness ungoodly ungoodness ungord ungored ungorge ungorged ungorgeous ungospel ungospelised ungospelized ungospelled ungospellike ungossiping ungossipy ungot ungothic ungotten ungouged ungouty ungovernability ungovernable ungovernableness ungovernablenesses ungovernably ungoverned ungovernedness ungoverning ungovernmental ungovernmentally ungown ungowned ungowning ungowns ungrabbing ungrace ungraced ungraceful ungracefully ungracefulness ungracefulnesses ungracious ungraciously ungraciousness ungraciousnesses ungradated ungradating ungraded ungradual ungradually ungraduated ungraduating ungraft ungrafted ungrain ungrainable ungrained ungrammar ungrammared ungrammatic ungrammatical ungrammaticalities ungrammaticality ungrammatically ungrammaticalness ungrammaticism ungrand ungrantable ungranted ungranular ungranulated ungraphable ungraphic ungraphical ungraphically ungraphitised ungraphitized ungrapple ungrappled ungrappler ungrappling ungrasp ungraspable ungrasped ungrasping ungrassed ungrassy ungrated ungrateful ungratefully ungratefulness ungratefulnesses ungratifiable ungratification ungratified ungratifying ungratifyingly ungrating ungratitude ungratuitous ungratuitously ungratuitousness ungrave ungraved ungraveled ungravelled ungravelly ungravely ungraven ungravitating ungravitational ungravitative ungrayed ungrazed ungreased ungreasy ungreat ungreatly ungreatness ungreeable ungreedy ungreen ungreenable ungreened ungreeted ungregarious ungregariously ungregariousness ungreyed ungrid ungrieve ungrieved ungrieving ungrilled ungrimed ungrindable ungrinned ungrip ungripe ungripped ungripping ungritty ungrizzled ungroaning ungroined ungroomed ungrooved ungropeable ungross ungrotesque unground ungroundable ungroundably ungrounded ungroundedly ungroundedness ungroundednesses ungroupable ungrouped ungroveling ungrovelling ungrow ungrowing ungrowling ungrown ungrubbed ungrudged ungrudging ungrudgingly ungrudgingness ungruesome ungruff ungrumbling ungrumblingly ungrumpy ungt ungual unguals unguaranteed unguard unguardable unguarded unguardedly unguardedness unguardednesses unguarding unguards ungueal unguent unguenta unguentaria unguentarian unguentaries unguentarium unguentariums unguentary unguentiferous unguento unguentous unguents unguentum unguerdoned ungues unguessable unguessableness unguessed unguessing unguical unguicorn unguicular unguiculata unguiculate unguiculated unguiculates unguicule unguidable unguidableness unguidably unguided unguidedly unguiferous unguiform unguiled unguileful unguilefully unguilefulness unguillotined unguiltily unguiltiness unguiltless unguilty unguinal unguinous unguirostral unguis ungula ungulae ungular ungulata ungulate ungulated ungulates unguled unguligrade ungulite ungull ungullibility ungullible ungulous ungulp ungum ungummed ungumming ungums ungushing ungusseted ungustatory ungutted unguttural ungutturally ungutturalness unguyed unguzzled ungymnastic ungypsylike ungyrating ungyve ungyved ungyves ungyving unh unhabile unhabit unhabitability unhabitable unhabitableness unhabitably unhabited unhabitual unhabitually unhabituate unhabituated unhabituatedness unhable unhacked unhackled unhackneyed unhackneyedness unhad unhaft unhafted unhaggled unhaggling unhailable unhailed unhair unhaired unhairer unhairers unhairily unhairiness unhairing unhairs unhairy unhale unhallooed unhallow unhallowed unhallowedness unhallowing unhallows unhallucinated unhallucinating unhallucinatory unhaloed unhalsed unhalted unhalter unhaltered unhaltering unhalting unhaltingly unhalved unhammered unhamper unhampered unhampering unhand unhandcuff unhandcuffed unhanded unhandicapped unhandier unhandiest unhandily unhandiness unhandinesses unhanding unhandled unhands unhandseled unhandselled unhandsome unhandsomely unhandsomeness unhandsomenesses unhandy unhang unhanged unhanging unhangs unhanked unhap unhappen unhappi unhappied unhappier unhappies unhappiest unhappily unhappiness unhappinesses unhappy unhappying unharangued unharassed unharbor unharbored unharbour unharboured unharbouring unharbours unhard unharden unhardenable unhardened unhardihood unhardily unhardiness unhardness unhardy unharked unharmable unharmed unharmful unharmfully unharming unharmonic unharmonical unharmonically unharmonious unharmoniously unharmoniousness unharmonise unharmonised unharmonising unharmonize unharmonized unharmonizing unharmony unharness unharnessed unharnesses unharnessing unharped unharping unharried unharrowed unharsh unharshly unharshness unharvested unhashed unhasp unhasped unhasping unhasps unhaste unhasted unhastened unhastily unhastiness unhasting unhasty unhat unhatchability unhatchable unhatched unhatcheled unhate unhated unhateful unhating unhatingly unhats unhatted unhatting unhattings unhauled unhaunt unhaunted unhave unhawked unhayed unhazarded unhazarding unhazardous unhazardously unhazardousness unhazed unhazily unhaziness unhazy unhead unheaded unheader unheading unheads unheady unheal unhealable unhealableness unhealably unhealed unhealing unheals unhealth unhealthful unhealthfully unhealthfulness unhealthfulnesses unhealthier unhealthiest unhealthily unhealthiness unhealthinesses unhealths unhealthsome unhealthsomeness unhealthy unheaped unhearable unheard unhearing unhearse unhearsed unhearses unhearsing unheart unhearted unhearten unheartily unhearting unhearts unheartsome unhearty unheatable unheated unheathen unheaved unheaven unheavenly unheavily unheaviness unheavy unhectic unhectically unhectored unhedge unhedged unhedging unhedonistic unhedonistically unheed unheeded unheededly unheedful unheedfully unheedfulness unheedily unheeding unheedingly unheedy unheeled unheelpieced unhefted unheightened unheired unheld unhele unheled unheler unheles unheling unhelm unhelmed unhelmet unhelmeted unhelming unhelms unhelp unhelpable unhelpableness unhelped unhelpful unhelpfully unhelpfulness unhelping unhelved unhemmed unhende unhent unheppen unheralded unheraldic unherbaceous unherd unherded unhereditary unheretical unheritable unhermetic unhermitic unhermitical unhermitically unhero unheroic unheroical unheroically unheroicalness unheroicness unheroise unheroism unheroize unherolike unherst unhesitant unhesitantly unhesitating unhesitatingly unhesitatingness unhesitative unhesitatively unheuristic unheuristically unhewable unhewed unhewn unhex unhid unhidable unhidableness unhidably unhidated unhidden unhide unhideable unhideably unhidebound unhideboundness unhideous unhideously unhideousness unhieratic unhieratical unhieratically unhigh unhilarious unhilariously unhilariousness unhilly unhinderable unhinderably unhindered unhindering unhinderingly unhinge unhinged unhingement unhingements unhinges unhinging unhinted unhip unhipped unhired unhissed unhistoric unhistorical unhistorically unhistoried unhistory unhistrionic unhit unhitch unhitched unhitches unhitching unhittable unhive unhived unhives unhiving unhoard unhoarded unhoarding unhoards unhoary unhoaxability unhoaxable unhoaxed unhobble unhobbling unhocked unhoed unhogged unhoist unhoisted unhold unholiday unholier unholiest unholily unholiness unholinesses unhollow unhollowed unholpen unholy unhome unhomelike unhomelikeness unhomeliness unhomely unhomicidal unhomiletic unhomiletical unhomiletically unhomish unhomogeneity unhomogeneous unhomogeneously unhomogeneousness unhomogenized unhomologic unhomological unhomologically unhomologized unhomologous unhoned unhonest unhonestly unhonesty unhoneyed unhonied unhonorable unhonorably unhonored unhonourable unhonourably unhonoured unhood unhooded unhooding unhoods unhoodwink unhoodwinked unhoofed unhook unhooked unhooking unhooks unhoop unhoopable unhooped unhooper unhooping unhoops unhooted unhope unhoped unhopedly unhopedness unhopeful unhopefully unhopefulness unhoping unhopingly unhopped unhoppled unhorizoned unhorizontal unhorizontally unhorned unhorny unhoroscopic unhorrified unhorse unhorsed unhorses unhorsing unhortative unhortatively unhose unhosed unhospitable unhospitableness unhospitably unhospital unhospitalized unhostile unhostilely unhostileness unhostility unhot unhounded unhoundlike unhouse unhoused unhouseled unhouselike unhouselled unhouses unhousewifely unhousing unhouzzled unhubristic unhuddle unhuddled unhuddling unhued unhugged unhull unhulled unhuman unhumane unhumanely unhumaneness unhumanise unhumanised unhumanises unhumanising unhumanistic unhumanitarian unhumanize unhumanized unhumanizes unhumanizing unhumanly unhumanness unhumble unhumbled unhumbledness unhumbleness unhumbly unhumbugged unhumid unhumidified unhumidifying unhumiliated unhumiliating unhumiliatingly unhumored unhumorous unhumorously unhumorousness unhumoured unhumourous unhumourously unhung unhuntable unhunted unhurdled unhurled unhurried unhurriedly unhurriedness unhurrying unhurryingly unhurt unhurted unhurtful unhurtfully unhurtfulness unhurtfulnesses unhurting unhusbanded unhusbandly unhushable unhushed unhushing unhusk unhuskable unhusked unhusking unhusks unhustled unhustling unhutched unhuzzaed unhydrated unhydraulic unhydrolized unhydrolysed unhydrolyzed unhygenic unhygienic unhygienically unhygrometric unhymeneal unhymned unhyphenable unhyphenated unhyphened unhypnotic unhypnotically unhypnotisable unhypnotise unhypnotised unhypnotising unhypnotizable unhypnotize unhypnotized unhypnotizing unhypocritical unhypocritically unhypothecated unhypothetical unhypothetically unhysterical unhysterically uni unialgal uniambic uniambically uniangulate uniarticular uniarticulate uniat uniate uniatism uniauriculate uniauriculated uniaxal uniaxally uniaxial uniaxially unibasal unibivalent unible unibody unibracteate unibracteolate unibranchiate unicalcarate unicameral unicameralism unicameralisms unicameralist unicameralists unicamerally unicamerate unicapsular unicarinate unicarinated unice uniced unicef unicell unicellate unicelled unicellular unicellularities unicellularity unicentral unichord uniciliate unicing unicism unicist unicities unicity uniclinal unicolor unicolorate unicolored unicolorous unicolour unicolourate unicoloured unicolourous uniconoclastic uniconoclastically uniconstant unicorn unicorneal unicornic unicornlike unicornous unicorns unicornuted unicostate unicotyledonous unicum unicursal unicursality unicursally unicuspid unicuspidate unicycle unicycled unicycles unicycling unicyclist unicyclists unidactyl unidactyle unidactylous unideaed unideal unidealised unidealism unidealisms unidealist unidealistic unidealistically unidealized unideated unideating unideational unidentate unidentated unidentical unidentically unidenticulate unidentifiable unidentifiableness unidentifiably unidentified unidentifiedly unidentifying unideographic unideographical unideographically unideological unidextral unidextrality unidigitate unidimensional unidimensionalities unidimensionality unidiomatic unidiomatically unidirect unidirected unidirection unidirectional unidirectionality unidirectionally unidle unidleness unidling unidly unidolatrous unidolised unidolized unidyllic unie uniembryonate uniequivalent uniface unifaced unifaces unifacial unifactoral unifactorial unifarious unifiable unific unification unificationist unifications unificator unified unifiedly unifiedness unifier unifiers unifies unifilar uniflagellate unifloral uniflorate uniflorous uniflow uniflowered unifocal unifoliar unifoliate unifoliolate uniform uniformal uniformalization uniformalize uniformally uniformation uniformed uniformer uniformest uniforming uniformisation uniformise uniformised uniformising uniformist uniformitarian uniformitarianism uniformitarianisms uniformitarianist uniformitarianists uniformitarians uniformities uniformity uniformization uniformize uniformized uniformizing uniformless uniformly uniformness uniformnesses uniforms unify unifying unifyings unigenesis unigenetic unigenist unigenistic unigenital unigeniture unigenitures unigenous uniglandular uniglobular unignitable unignited unignitible unigniting unignominious unignominiously unignominiousness unignorable unignorant unignorantly unignored unignoring unigravida uniguttulate unijugate unijugous unilabiate unilabiated unilamellar unilamellate unilaminar unilaminate unilateral unilateralisation unilateralise unilateralism unilateralisms unilateralist unilateralists unilateralities unilaterality unilateralization unilateralize unilaterally unilineal unilinear unilingual unilingualism uniliteral unilluded unilludedly unillumed unilluminant unilluminated unilluminating unillumination unilluminative unillumined unillusioned unillusive unillusory unillustrated unillustrative unillustrious unillustriously unillustriousness unilobal unilobar unilobate unilobe unilobed unilobular unilocular unilocularity uniloculate unimacular unimaged unimaginability unimaginable unimaginableness unimaginablenesses unimaginably unimaginary unimaginative unimaginatively unimaginativeness unimaginativenesses unimagine unimagined unimanual unimbanked unimbellished unimbezzled unimbibed unimbibing unimbittered unimbodied unimboldened unimbordered unimbosomed unimbowed unimbowered unimbroiled unimbrowned unimbrued unimbued unimedial unimitable unimitableness unimitably unimitated unimitating unimitative unimmaculate unimmaculately unimmaculateness unimmanent unimmanently unimmediate unimmediately unimmediateness unimmerged unimmergible unimmersed unimmigrating unimminent unimmolated unimmortal unimmortalise unimmortalised unimmortalize unimmortalized unimmovable unimmunised unimmunized unimmured unimodal unimodality unimodular unimolecular unimolecularity unimpacted unimpair unimpairable unimpaired unimpartable unimparted unimpartial unimpartially unimpartible unimpassionate unimpassionately unimpassioned unimpassionedly unimpassionedness unimpatient unimpatiently unimpawned unimpeachability unimpeachable unimpeachableness unimpeachably unimpeached unimpearled unimped unimpeded unimpededly unimpedible unimpeding unimpedingly unimpedness unimpelled unimpenetrable unimperative unimperatively unimperial unimperialistic unimperially unimperious unimperiously unimpertinent unimpertinently unimpinging unimplanted unimplementable unimplemented unimplicable unimplicate unimplicated unimplicit unimplicitly unimplied unimplorable unimplored unimpoisoned unimportance unimportances unimportant unimportantly unimportantness unimported unimporting unimportunate unimportunately unimportunateness unimportuned unimposed unimposedly unimposing unimpostrous unimpounded unimpoverished unimpowered unimprecated unimpregnable unimpregnate unimpregnated unimpressed unimpressibility unimpressible unimpressibleness unimpressibly unimpressionability unimpressionable unimpressionableness unimpressive unimpressively unimpressiveness unimprinted unimprison unimprisonable unimprisoned unimpropriated unimprovable unimprovableness unimprovably unimproved unimprovedly unimprovedness unimprovement unimproving unimprovised unimpugnable unimpugned unimpulsive unimpulsively unimpurpled unimputable unimputed unimucronate unimultiplex unimuscular uninaugurated unincantoned unincarcerated unincarnate unincarnated unincensed uninceptive uninceptively unincestuous unincestuously uninchanted uninchoative unincidental unincidentally unincinerated unincised unincisive unincisively unincisiveness unincited uninclinable uninclined uninclining uninclosed uninclosedness unincludable unincluded unincludible uninclusive uninclusiveness uninconvenienced unincorporate unincorporated unincorporatedly unincorporatedness unincreasable unincreased unincreasing unincriminated unincriminating unincubated uninculcated unincumbered unindeared unindebted unindebtedly unindebtedness unindemnified unindentable unindented unindentured unindexed unindicable unindicated unindicative unindicatively unindictable unindictableness unindicted unindifference unindifferency unindifferent unindifferently unindigenous unindigenously unindigent unindignant unindividual unindividualise unindividualised unindividualize unindividualized unindividuated unindoctrinated unindorsed uninduced uninducible uninducted uninductive unindulged unindulgent unindulgently unindulging unindurate unindurated unindurative unindustrial unindustrialised unindustrialized unindustrious unindustriously unindwellable uninebriate uninebriated uninebriatedness uninebriating uninebrious uninert uninertly uninervate uninerved uninfallibility uninfallible uninfatuated uninfectable uninfected uninfectious uninfectiously uninfectiousness uninfective uninfeft uninferable uninferably uninferential uninferentially uninferrable uninferrably uninferred uninferrible uninferribly uninfested uninfiltrated uninfinite uninfinitely uninfiniteness uninfixed uninflamed uninflammability uninflammable uninflated uninflected uninflectedness uninflective uninflicted uninfluenceability uninfluenceable uninfluenced uninfluencing uninfluencive uninfluential uninfluentiality uninfluentially uninfolded uninforceable uninforced uninformative uninformatively uninformed uninforming uninfracted uninfringeable uninfringed uninfringible uninfuriated uninfused uninfusing uninfusive uningenious uningeniously uningeniousness uningenuity uningenuous uningenuously uningenuousness uningested uningestive uningrafted uningrained uningratiating uninhabitabilities uninhabitability uninhabitable uninhabitableness uninhabitably uninhabited uninhabitedness uninhaled uninherent uninherently uninheritability uninheritable uninherited uninhibited uninhibitedly uninhibitedness uninhibitednesses uninhibiting uninhibitive uninhumed uninimical uninimically uniniquitous uniniquitously uniniquitousness uninitialed uninitialised uninitialized uninitialled uninitiate uninitiated uninitiatedness uninitiates uninitiation uninitiative uninjectable uninjected uninjurable uninjured uninjuredness uninjuring uninjurious uninjuriously uninjuriousness uninked uninlaid uninn uninnate uninnately uninnateness uninnocence uninnocent uninnocently uninnocuous uninnocuously uninnocuousness uninnovating uninnovative uninoculable uninoculated uninoculative uninodal uninominal uninquired uninquiring uninquisitive uninquisitively uninquisitiveness uninquisitorial uninquisitorially uninsane uninsatiable uninscribed uninserted uninshrined uninsidious uninsidiously uninsidiousness uninsightful uninsinuated uninsinuating uninsinuative uninsistent uninsistently uninsolated uninsolating uninsolvent uninspected uninspirable uninspired uninspiring uninspiringly uninspirited uninspissated uninstall uninstallable uninstalled uninstaller uninstallers uninstalling uninstalls uninstanced uninstated uninstigated uninstigative uninstilled uninstinctive uninstinctively uninstinctiveness uninstituted uninstitutional uninstitutionally uninstitutive uninstitutively uninstructed uninstructedly uninstructedness uninstructible uninstructing uninstructive uninstructively uninstructiveness uninstrumental uninstrumentally uninsular uninsulate uninsulated uninsulating uninsultable uninsulted uninsulting uninsurabilities uninsurability uninsurable uninsured unintegrable unintegral unintegrally unintegrated unintegrative unintellective unintellectual unintellectualism unintellectuality unintellectually unintelligence unintelligences unintelligent unintelligently unintelligentsia unintelligibilities unintelligibility unintelligible unintelligibleness unintelligiblenesses unintelligibly unintended unintendedly unintensified unintensive unintensively unintent unintentional unintentionalities unintentionality unintentionally unintentionalness unintentiveness unintently unintentness unintercalated unintercepted unintercepting uninterchangeable uninterdicted uninterest uninterested uninterestedly uninterestedness uninterestednesses uninteresting uninterestingly uninterestingness uninterests uninterferedwith uninterjected uninterlaced uninterlarded uninterleave uninterleaved uninterlined uninterlinked uninterlocked unintermarrying unintermediate unintermediately unintermediateness unintermingled unintermission unintermissive unintermitted unintermittedly unintermittedness unintermittent unintermittently unintermitting unintermittingly unintermittingness unintermixed uninternalized uninternational uninterpleaded uninterpolated uninterpolative uninterposed uninterposing uninterpretability uninterpretable uninterpretative uninterpreted uninterpretive uninterpretively uninterred uninterrogable uninterrogated uninterrogative uninterrogatively uninterrogatory uninterruptable uninterrupted uninterruptedly uninterruptedness uninterruptible uninterruptibleness uninterrupting uninterruption uninterruptive unintersected unintersecting uninterspersed unintervening uninterviewed unintervolved uninterwoven uninthralled uninthroned unintialized unintimate unintimated unintimately unintimidated unintimidating unintitled unintombed unintoned unintoxicated unintoxicatedness unintoxicating unintrenchable unintrenched unintrepid unintrepidly unintrepidness unintricate unintricately unintricateness unintrigued unintriguing unintrlined unintroduced unintroducible unintroductive unintroductory unintroitive unintromitted unintromittive unintrospective unintrospectively unintroversive unintroverted unintruded unintruding unintrudingly unintrusive unintrusively unintrusted unintuitable unintuitional unintuitive unintuitively unintwined uninuclear uninucleate uninucleated uninundated uninured uninurned uninvadable uninvaded uninvaginated uninvalidated uninvasive uninvective uninveighing uninveigled uninvented uninventful uninventibleness uninventive uninventively uninventiveness uninverted uninvertible uninvestable uninvested uninvestigable uninvestigated uninvestigating uninvestigative uninvestigatory uninvidious uninvidiously uninvigorated uninvigorating uninvigorative uninvigoratively uninvincible uninvincibleness uninvincibly uninvite uninvited uninvitedly uninviting uninvitingly uninvitingness uninvocative uninvoiced uninvokable uninvoked uninvoluted uninvolved uninvolvement uninweaved uninwoven uninwrapped uninwreathed unio uniocular unioid union unioned unionic unionid unionidae unioniform unionisation unionisations unionise unionised unioniser unionisers unionises unionising unionism unionisms unionist unionistic unionists unionization unionizations unionize unionized unionizer unionizers unionizes unionizing unionoid unions unioval uniovular uniovulate unipara uniparental uniparentally uniparient uniparous unipart unipartite uniped unipeds unipeltate uniperiodic unipersonal unipersonalist unipersonality unipetalous uniphase uniphaser uniphonous uniplanar uniplex uniplicate unipod unipods unipolar unipolarities unipolarity uniporous unipotence unipotent unipotential uniprocessor uniprocessorunix unipulse uniquantic unique uniquely uniqueness uniquenesses uniquer uniques uniquest uniquity uniradial uniradiate uniradiated uniradical uniramose uniramous unirascibility unirascible unireme unirenic unirhyme uniridescent uniridescently unironed unironic unironical unironically unirradiated unirradiative unirrigable unirrigated unirritable unirritableness unirritably unirritant unirritated unirritatedly unirritating unirritative unirrupted unirruptive unis unisepalous uniseptate uniserial uniserially uniseriate uniseriately uniserrate uniserrulate unisex unisexed unisexes unisexual unisexualities unisexuality unisexually unisilicate unisize unism unisoil unisolable unisolate unisolated unisolating unisolationist unisolative unisomeric unisometrical unisomorphic unison unisonal unisonally unisonance unisonances unisonant unisonous unisons unisotropic unisotropous unisparker unispiculate unispinose unispiral unissuable unissuant unissued unist unistylist unisulcate unit unitable unitage unitages unital unitalicised unitalicized unitard unitards unitarian unitarianism unitarianisms unitarians unitarily unitariness unitarism unitarist unitary unite uniteability uniteable uniteably united unitedly unitedness unitednesses unitemised unitemized unitentacular uniter uniterated uniterative uniters unites unitholder unitholders unities unitinerant uniting unitingly unitings unition unitions unitisation unitisations unitise unitised unitises unitising unitism unitistic unitive unitively unitiveness unitization unitizations unitize unitized unitizer unitizers unitizes unitizing unitooth unitrivalent unitrope unitrust unitrusts units unituberculate unitude unity uniunguiculate uniungulate unius univ univalence univalences univalencies univalency univalent univalents univalvate univalve univalved univalves univalvular univariant univariate univerbal universal universalia universalis universalisation universalisations universalise universalised universaliser universalises universalising universalism universalisms universalist universalistic universalisties universalists universalities universality universalization universalizations universalize universalized universalizer universalizes universalizing universally universalness universalnesses universals universanimous universe universeful universes universitarian universitarianism universitarians universitary universitas universitatis universite universities universitize university universityless universitylike universityship universological universologist universology univied univocability univocacy univocal univocality univocalized univocally univocals univocity univoltine univorous uniwear unix unixism unixisms unjacketed unjaded unjagged unjailed unjam unjammed unjamming unjams unjapanned unjarred unjarring unjaundiced unjaunty unjealous unjealoused unjealously unjeered unjeering unjelled unjellied unjeopardised unjeopardized unjesting unjestingly unjesuited unjesuitical unjesuitically unjewel unjeweled unjewelled unjilted unjocose unjocosely unjocoseness unjocund unjogged unjogging unjoin unjoinable unjoined unjoint unjointed unjointedness unjointing unjoints unjointured unjoking unjokingly unjolly unjolted unjostled unjournalised unjournalistic unjournalized unjovial unjovially unjoyed unjoyful unjoyfully unjoyfulness unjoyous unjoyously unjoyousness unjubilant unjubilantly unjudgable unjudge unjudgeable unjudged unjudgelike unjudging unjudicable unjudicative unjudiciable unjudicial unjudicially unjudicious unjudiciously unjudiciousness unjuggled unjuiced unjuicily unjuicy unjumbled unjumpable unjuridic unjuridical unjuridically unjust unjuster unjustest unjustice unjusticiable unjustifiability unjustifiable unjustifiableness unjustifiably unjustification unjustified unjustifiedly unjustifiedness unjustify unjustled unjustly unjustness unjustnesses unjuvenile unjuvenilely unjuvenileness unkaiserlike unkamed unked unkeeled unkembed unkempt unkemptly unkemptness unkemptnesses unken unkend unkenned unkennedness unkennel unkenneled unkenneling unkennelled unkennelling unkennels unkenning unkensome unkent unkept unkerchiefed unket unkey unkeyed unkicked unkid unkidnaped unkidnapped unkill unkillability unkillable unkilled unkilling unkilned unkin unkind unkinder unkindest unkindhearted unkindled unkindledness unkindlier unkindliest unkindlily unkindliness unkindlinesses unkindling unkindly unkindness unkindnesses unkindred unkindredly unking unkingdom unkinged unkinger unkinging unkinglier unkingliest unkinglike unkingly unkings unkink unkinked unkinking unkinks unkinlike unkirk unkiss unkissed unkisses unkissing unkist unknave unkneaded unkneeling unknelled unknew unknight unknighted unknighting unknightlike unknightliness unknightlinesses unknightly unknights unknit unknits unknittable unknitted unknitting unknocked unknocking unknot unknots unknotted unknotting unknotty unknow unknowabilities unknowability unknowable unknowableness unknowablenesses unknowables unknowably unknowen unknowing unknowingly unknowingness unknowingnesses unknowings unknowledgeable unknown unknownly unknownness unknownnesses unknowns unknownst unkodaked unkosher unkoshered unl unlabeled unlabelled unlabialise unlabialised unlabialising unlabialize unlabialized unlabializing unlabiate unlaborable unlabored unlaboring unlaborious unlaboriously unlaboriousness unlabourable unlaboured unlabouring unlace unlaced unlacerated unlacerating unlaces unlacing unlackeyed unlaconic unlacquered unlade unladed unladen unlades unlading unladings unladled unladyfied unladylike unlagging unlaid unlame unlamed unlamentable unlamented unlaminated unlampooned unlanced unland unlanded unlandmarked unlanguaged unlanguid unlanguidly unlanguidness unlanguishing unlanterned unlap unlapped unlapsed unlapsing unlarcenous unlarcenously unlarded unlarge unlash unlashed unlasher unlashes unlashing unlassoed unlast unlaste unlasting unlatch unlatched unlatches unlatching unlath unlathed unlathered unlatinized unlatticed unlaudable unlaudableness unlaudably unlaudative unlaudatory unlauded unlaugh unlaughing unlaunched unlaundered unlaureled unlaurelled unlaved unlaving unlavish unlavished unlaw unlawed unlawful unlawfully unlawfulness unlawfulnesses unlawing unlawlearned unlawlike unlawly unlaws unlawyered unlawyerlike unlax unlay unlayable unlaying unlays unleached unlead unleaded unleadeds unleaderly unleading unleads unleaf unleafed unleaflike unleagued unleaguer unleakable unleaky unleal unlean unleared unlearn unlearnability unlearnable unlearnableness unlearned unlearnedly unlearnedness unlearnednesses unlearning unlearns unlearnt unleasable unleased unleash unleashed unleashes unleashing unleathered unleave unleaved unleavenable unleavened unlecherous unlecherously unlecherousness unlectured unled unledged unleft unlegacied unlegal unlegalised unlegalized unlegally unlegalness unlegate unlegible unlegislated unlegislative unlegislatively unleisured unleisuredness unleisurely unlengthened unlenient unleniently unlensed unlent unless unlessened unlessoned unlet unlethal unlethally unlethargic unlethargical unlethargically unlettable unletted unlettered unletteredly unletteredness unlettering unletterlike unlevel unleveled unleveling unlevelled unlevelling unlevelly unlevelness unlevels unleviable unlevied unlevigated unlexicographical unlexicographically unliability unliable unlibeled unlibelled unlibellous unlibellously unlibelous unlibelously unliberal unliberalised unliberalized unliberally unliberated unlibidinous unlibidinously unlicenced unlicensed unlicentiated unlicentious unlicentiously unlicentiousness unlich unlichened unlickable unlicked unlid unlidded unlidding unlids unlie unlifelike unliftable unlifted unlifting unligable unligatured unlight unlighted unlightedly unlightedness unlightened unlightsome unlignified unlikable unlikableness unlikably unlike unlikeable unlikeableness unlikeably unliked unlikelier unlikeliest unlikelihood unlikelihoods unlikeliness unlikelinesses unlikely unliken unlikened unlikeness unlikenesses unlikes unliking unlimb unlimber unlimbered unlimbering unlimberness unlimbers unlime unlimed unlimes unliming unlimitable unlimitableness unlimitably unlimited unlimitedly unlimitedness unlimitednesses unlimitless unlimned unlimp unline unlineal unlined unlines unlingering unlining unlink unlinked unlinking unlinks unlionised unlionized unlionlike unlipped unliquefiable unliquefied unliquescent unliquid unliquidatable unliquidated unliquidating unliquidation unliquored unlisping unlist unlisted unlistenable unlistened unlistening unlisty unlit unliteral unliteralised unliteralized unliterally unliteralness unliterary unliterate unlithographic unlitigated unlitigating unlitigious unlitigiously unlitigiousness unlitten unlittered unliturgical unliturgize unlivability unlivable unlivableness unlivably unlive unliveable unliveableness unliveably unlived unliveliness unlivelinesses unlively unliver unliveried unliveries unlivery unlives unliving unlizardlike unload unloaded unloaden unloader unloaders unloading unloadings unloads unloafing unloanably unloaned unloaning unloath unloathed unloathful unloathly unloathness unloathsome unlobbied unlobbying unlobed unlocal unlocalisable unlocalise unlocalised unlocalising unlocalizable unlocalize unlocalized unlocalizing unlocally unlocated unlocative unlock unlockable unlocked unlocker unlocking unlocks unlocomotive unlodge unlodged unlofty unlogged unlogic unlogical unlogically unlogicalness unlogistic unlogistical unlonely unlook unlooked unloop unlooped unloosable unloosably unloose unloosed unloosen unloosened unloosening unloosens unlooses unloosing unlooted unlopped unloquacious unloquaciously unloquaciousness unlord unlorded unlording unlordly unlords unlosable unlosableness unlost unlotted unloudly unlouken unlounging unlousy unlovable unlovableness unlovably unlove unloveable unloveableness unloveably unloved unlovelier unloveliest unlovelily unloveliness unlovelinesses unlovely unloverlike unloverly unloves unlovesome unloving unlovingly unlovingness unlovingnesses unlowered unlowly unloyal unloyally unloyalty unltraconservative unlubricant unlubricated unlubricating unlubricative unlubricious unlucent unlucid unlucidly unlucidness unluck unluckful unluckier unluckiest unluckily unluckiness unluckinesses unluckly unlucky unlucrative unludicrous unludicrously unludicrousness unluffed unlugged unlugubrious unlugubriously unlugubriousness unlumbering unluminescent unluminiferous unluminous unluminously unluminousness unlumped unlumpy unlunar unlunate unlunated unlured unlurking unlush unlust unlustered unlustful unlustfully unlustie unlustier unlustiest unlustily unlustiness unlusting unlustred unlustrous unlustrously unlusty unlute unluted unluxated unluxuriant unluxuriantly unluxuriating unluxurious unluxuriously unlycanthropize unlying unlyric unlyrical unlyrically unlyricalness unmacadamised unmacadamized unmacerated unmachinable unmachinated unmachinating unmachineable unmachined unmacho unmackly unmad unmadded unmaddened unmade unmagic unmagical unmagically unmagisterial unmagistrate unmagistratelike unmagnanimous unmagnanimously unmagnanimousness unmagnetic unmagnetical unmagnetised unmagnetized unmagnified unmagnify unmagnifying unmaid unmaiden unmaidenlike unmaidenliness unmaidenly unmail unmailable unmailableness unmailed unmaimable unmaimed unmaintainable unmaintained unmajestic unmajestically unmakable unmake unmaker unmakers unmakes unmaking unmakings unmalarial unmaledictive unmaledictory unmalevolent unmalevolently unmalicious unmaliciously unmalignant unmalignantly unmaligned unmalleabilities unmalleability unmalleable unmalleableness unmalled unmaltable unmalted unmammalian unmammonized unman unmanacle unmanacled unmanacles unmanacling unmanageabilities unmanageability unmanageable unmanageableness unmanageablenesses unmanageably unmanaged unmancipated unmandated unmandatory unmanducated unmaned unmaneged unmaneuverable unmaneuvered unmanful unmanfully unmanfulness unmangled unmanhood unmaniable unmaniac unmaniacal unmaniacally unmanicured unmanifest unmanifestative unmanifested unmanipulable unmanipulatable unmanipulated unmanipulative unmanipulatory unmanlier unmanliest unmanlike unmanlily unmanliness unmanlinesses unmanly unmanned unmanner unmannered unmanneredly unmannerliness unmannerlinesses unmannerly unmanning unmannish unmannishly unmannishness unmanoeuvred unmanored unmans unmantle unmantled unmantles unmantling unmanual unmanually unmanufacturable unmanufactured unmanumissible unmanumitted unmanurable unmanured unmappable unmapped unmarbelize unmarbelized unmarbelizing unmarbled unmarbleize unmarbleized unmarbleizing unmarch unmarching unmard unmarginal unmarginally unmarginated unmarine unmaritime unmarkable unmarked unmarketable unmarketed unmarking unmarled unmarred unmarriable unmarriageability unmarriageable unmarriageableness unmarriageablenesses unmarried unmarrieds unmarries unmarring unmarry unmarrying unmarshaled unmarshalled unmartial unmartyr unmartyred unmarveling unmarvellous unmarvellously unmarvellousness unmarvelous unmarvelously unmarvelousness unmasculine unmasculinely unmashed unmask unmasked unmasker unmaskers unmasking unmaskings unmasks unmasquerade unmassacred unmassed unmast unmaster unmasterable unmastered unmasterful unmasterfully unmasticable unmasticated unmasticatory unmatchable unmatchableness unmatchably unmatched unmatchedness unmatching unmate unmated unmaterial unmaterialised unmaterialistic unmaterialistically unmaterialized unmaterially unmateriate unmaternal unmaternally unmathematical unmathematically unmating unmatriculated unmatrimonial unmatrimonially unmatronlike unmatted unmaturative unmature unmatured unmaturely unmatureness unmaturing unmaturity unmaudlin unmaudlinly unmauled unmaze unmeandering unmeanderingly unmeaning unmeaningful unmeaningfully unmeaningfulness unmeaningly unmeaningness unmeaningnesses unmeant unmeasurability unmeasurable unmeasurableness unmeasurably unmeasured unmeasuredly unmeasuredness unmeasurely unmeated unmechanic unmechanical unmechanically unmechanise unmechanised unmechanises unmechanising unmechanistic unmechanize unmechanized unmechanizes unmechanizing unmedaled unmedalled unmeddle unmeddled unmeddlesome unmeddling unmeddlingly unmeddlingness unmediaeval unmediated unmediating unmediatised unmediative unmediatized unmedicable unmedical unmedically unmedicated unmedicative unmedicinable unmedicinal unmedicinally unmedieval unmeditated unmeditating unmeditative unmeditatively unmediumistic unmedullated unmeedful unmeedy unmeek unmeekly unmeekness unmeet unmeetable unmeetly unmeetness unmeetnesses unmelancholic unmelancholically unmelancholy unmeliorated unmellifluent unmellifluently unmellifluous unmellifluously unmellow unmellowed unmelodic unmelodically unmelodious unmelodiously unmelodiousness unmelodiousnesses unmelodised unmelodized unmelodramatic unmelodramatically unmelt unmeltable unmeltableness unmeltably unmelted unmeltedness unmelting unmember unmemoired unmemorable unmemorably unmemorialised unmemorialized unmemoried unmemorised unmemorized unmenaced unmenacing unmendable unmendableness unmendably unmendacious unmendaciously unmended unmenial unmenially unmenseful unmenstruating unmensurable unmental unmentally unmentholated unmentionability unmentionable unmentionableness unmentionablenesses unmentionables unmentionably unmentioned unmercantile unmercenarily unmercenariness unmercenary unmercerised unmercerized unmerchandised unmerchantable unmerchantlike unmerchantly unmerciable unmerciably unmercied unmerciful unmercifully unmercifulness unmercifulnesses unmerciless unmercurial unmercurially unmercurialness unmeretricious unmeretriciously unmeretriciousness unmerge unmerged unmerging unmeridional unmeridionally unmeringued unmeritability unmeritable unmerited unmeritedly unmeritedness unmeriting unmeritorious unmeritoriously unmeritoriousness unmerrily unmerry unmesh unmeshed unmeshes unmeshing unmesmeric unmesmerically unmesmerise unmesmerised unmesmerize unmesmerized unmet unmetabolized unmetaled unmetalised unmetalized unmetalled unmetallic unmetallically unmetallised unmetallized unmetallurgic unmetallurgical unmetallurgically unmetamorphic unmetamorphosed unmetaphorical unmetaphysic unmetaphysical unmetaphysically unmete unmeted unmeteorologic unmeteorological unmeteorologically unmetered unmeth unmethodic unmethodical unmethodically unmethodicalness unmethodised unmethodising unmethodized unmethodizing unmethylated unmeticulous unmeticulously unmeticulousness unmetred unmetric unmetrical unmetrically unmetricalness unmetrified unmetropolitan unmettle unmew unmewed unmewing unmews unmiasmal unmiasmatic unmiasmatical unmiasmic unmicaceous unmicrobial unmicrobic unmicroscopic unmicroscopically unmidwifed unmight unmighty unmigrant unmigrating unmigrative unmigratory unmild unmildewed unmildness unmilitant unmilitantly unmilitarily unmilitariness unmilitarised unmilitaristic unmilitaristically unmilitarized unmilitary unmilked unmilled unmillinered unmilted unmimeographed unmimetic unmimetically unmimicked unminable unminced unmincing unmind unminded unmindful unmindfully unmindfulness unmindfulnesses unminding unmined unmineralised unmineralized unmingle unmingleable unmingled unmingles unmingling unminimised unminimising unminimized unminimizing unminished unminister unministered unministerial unministerially unministrant unministrative unminted unminuted unmiracled unmiraculous unmiraculously unmired unmirrored unmirthful unmirthfully unmirthfulness unmiry unmisanthropic unmisanthropical unmisanthropically unmiscarrying unmischievous unmischievously unmiscible unmisconceivable unmiserly unmisgiving unmisgivingly unmisguided unmisguidedly unmisinterpretable unmisled unmissable unmissed unmissionary unmissionised unmissionized unmist unmistakable unmistakableness unmistakably unmistakeable unmistakeably unmistakedly unmistaken unmistaking unmistakingly unmistressed unmistrusted unmistrustful unmistrustfully unmistrusting unmisunderstandable unmisunderstanding unmisunderstood unmiter unmitered unmitering unmiters unmitigability unmitigable unmitigably unmitigated unmitigatedly unmitigatedness unmitigatednesses unmitigative unmitre unmitred unmitres unmitring unmittened unmix unmixable unmixableness unmixed unmixedly unmixedness unmixes unmixing unmixt unmnemonic unmoaned unmoaning unmoated unmobbed unmobile unmobilised unmobilized unmoble unmocked unmocking unmockingly unmodel unmodeled unmodelled unmoderate unmoderated unmoderately unmoderateness unmoderating unmodern unmodernise unmodernised unmodernity unmodernize unmodernized unmodest unmodestly unmodestness unmodifiability unmodifiable unmodifiableness unmodifiablenesses unmodifiably unmodificative unmodified unmodifiedness unmodish unmodishly unmodulated unmodulative unmoiled unmoist unmoisten unmoistened unmold unmoldable unmoldableness unmolded unmoldered unmoldering unmolding unmolds unmoldy unmolest unmolested unmolestedly unmolesting unmolified unmollifiable unmollifiably unmollified unmollifying unmolten unmomentary unmomentous unmomentously unmomentousness unmonarch unmonarchic unmonarchical unmonarchically unmonastic unmonastically unmonetary unmoneyed unmonied unmonistic unmonitored unmonkish unmonkly unmonogrammed unmonopolise unmonopolised unmonopolising unmonopolize unmonopolized unmonopolizing unmonotonous unmonotonously unmonumental unmonumented unmoody unmoor unmoored unmooring unmoors unmooted unmopped unmoral unmoralise unmoralised unmoralising unmoralist unmoralistic unmoralities unmorality unmoralize unmoralized unmoralizing unmorally unmoralness unmorbid unmorbidly unmorbidness unmordant unmordanted unmordantly unmoribund unmoribundly unmorose unmorosely unmoroseness unmorphological unmorphologically unmorrised unmortal unmortalize unmortared unmortgage unmortgageable unmortgaged unmortgaging unmortified unmortifiedly unmortifiedness unmortise unmortised unmortising unmossed unmossy unmothered unmotherly unmotile unmotionable unmotioned unmotioning unmotivated unmotivatedly unmotivatedness unmotivating unmotived unmotored unmotorised unmotorized unmottled unmould unmouldable unmoulded unmouldered unmouldering unmoulding unmoulds unmouldy unmounded unmount unmountable unmountainous unmounted unmounting unmounts unmourned unmournful unmournfully unmourning unmouthable unmouthed unmouthpieced unmovability unmovable unmovableness unmovablety unmovably unmoveable unmoveably unmoved unmovedly unmoving unmovingly unmovingness unmowed unmown unmucilaged unmudded unmuddied unmuddle unmuddled unmuddy unmuffle unmuffled unmuffles unmuffling unmulcted unmulish unmulled unmullioned unmultipliable unmultiplicable unmultiplicative unmultiplied unmultipliedly unmultiply unmultiplying unmumbled unmumbling unmummied unmummified unmummify unmummifying unmunched unmundane unmundanely unmundified unmunicipalised unmunicipalized unmunificent unmunificently unmunitioned unmurmured unmurmuring unmurmuringly unmurmurous unmurmurously unmuscled unmuscular unmuscularly unmusical unmusicality unmusically unmusicalness unmusicalnesses unmusicianly unmusing unmusked unmussed unmusted unmusterable unmustered unmutable unmutant unmutated unmutation unmutational unmutative unmuted unmutilated unmutilative unmutinous unmutinously unmutinousness unmuttered unmuttering unmutteringly unmutual unmutualised unmutualized unmutually unmuzzle unmuzzled unmuzzles unmuzzling unmuzzlings unmyelinated unmyopic unmysterious unmysteriously unmysteriousness unmystery unmystic unmystical unmystically unmysticalness unmysticise unmysticised unmysticising unmysticize unmysticized unmysticizing unmystified unmythical unmythically unmythological unmythologically unn unnabbed unnacreous unnagged unnagging unnaggingly unnail unnailed unnailing unnails unnaive unnaively unnaked unnamability unnamable unnamableness unnamably unname unnameability unnameable unnameableness unnameably unnamed unnaneld unnaove unnaovely unnapkined unnapped unnapt unnarcissistic unnarcotic unnarratable unnarrated unnarrative unnarrow unnarrowed unnarrowly unnasal unnasally unnascent unnation unnational unnationalised unnationalistic unnationalistically unnationalized unnationally unnative unnatural unnaturalisable unnaturalise unnaturalised unnaturalises unnaturalising unnaturalism unnaturalist unnaturalistic unnaturality unnaturalizable unnaturalize unnaturalized unnaturalizes unnaturalizing unnaturally unnaturalness unnaturalnesses unnature unnauseated unnauseating unnautical unnavigability unnavigable unnavigableness unnavigably unnavigated unnealed unneaped unnear unnearable unneared unnearly unnearness unneat unneath unneatly unneatness unnebulous unneccessary unnecessaries unnecessarily unnecessariness unnecessarinesses unnecessary unnecessitated unnecessitating unnecessitous unnecessitously unnecessitousness unnecessity unnectareous unnectarial unneeded unneedful unneedfully unneedfulness unneedy unnefarious unnefariously unnefariousness unnegated unneglected unneglectful unneglectfully unnegligent unnegotiable unnegotiableness unnegotiably unnegotiated unnegro unneighbored unneighborlike unneighborliness unneighborlinesses unneighborly unneighboured unneighbourlike unneighbourliness unneighbourlinesses unneighbourly unnephritic unnerve unnerved unnerves unnerving unnervingly unnervous unnervously unnervousness unness unnest unnested unnesting unnestle unnestled unnests unnet unneth unnethe unnethes unnethis unnetted unnettled unneural unneuralgic unneurotic unneurotically unneutered unneutral unneutralise unneutralised unneutralising unneutrality unneutralize unneutralized unneutralizing unneutrally unnew unnewly unnewness unnewsed unnewsworthy unnibbed unnibbied unnibbled unnice unnicely unniceness unniched unnicked unnickeled unnickelled unnicknamed unniggard unniggardly unnigh unnihilistic unnilennium unnilenniums unnilhexium unnilhexiums unniloctium unniloctiums unnilpentium unnilpentiums unnilquadium unnilquadiums unnilquintium unnilseptium unnilseptiums unnimbed unnimble unnimbleness unnimbly unnipped unnitrogenised unnitrogenized unnitrogenous unnobilitated unnobility unnoble unnobled unnobleness unnobles unnobling unnobly unnocturnal unnocturnally unnodding unnoddingly unnoised unnoisily unnoisy unnojectionable unnomadic unnomadically unnominal unnominalistic unnominally unnominated unnominative unnonsensical unnooked unnoosed unnormal unnormalised unnormalising unnormalized unnormalizing unnormally unnormalness unnormative unnorthern unnose unnosed unnotable unnotational unnotched unnoted unnoteworthiness unnoteworthy unnoticeable unnoticeableness unnoticeably unnoticed unnoticing unnotified unnotify unnoting unnotional unnotionally unnotioned unnourishable unnourished unnourishing unnovel unnovercal unnucleated unnullified unnumbed unnumber unnumberable unnumberableness unnumberably unnumbered unnumberedness unnumerable unnumerated unnumerical unnumerous unnumerously unnumerousness unnurtured unnutritious unnutritiously unnutritive unnuzzled unnymphal unnymphean unnymphlike unoared unobdurate unobdurately unobdurateness unobedience unobedient unobediently unobese unobesely unobeseness unobeyed unobeying unobfuscated unobjected unobjectified unobjectionability unobjectionable unobjectionableness unobjectionably unobjectional unobjective unobjectively unobjectivized unobligated unobligating unobligative unobligatory unobliged unobliging unobligingly unobligingness unobliterable unobliterated unoblivious unobliviously unobliviousness unobnoxious unobnoxiously unobnoxiousness unobscene unobscenely unobsceneness unobscure unobscured unobscurely unobscureness unobsequious unobsequiously unobsequiousness unobservable unobservance unobservances unobservant unobservantly unobservantness unobserved unobservedly unobserving unobservingly unobsessed unobsolete unobstinate unobstinately unobstruct unobstructed unobstructedly unobstructedness unobstructive unobstruent unobstruently unobtainability unobtainable unobtainableness unobtainably unobtained unobtruded unobtruding unobtrusive unobtrusively unobtrusiveness unobtrusivenesses unobtunded unobumbrated unobverted unobviable unobviated unobvious unobviously unobviousness unoccasional unoccasionally unoccasioned unoccidental unoccidentally unoccluded unoccupancy unoccupation unoccupiable unoccupied unoccupiedly unoccupiedness unoccurring unoceanic unocular unode unodious unodiously unodiousness unodored unodoriferous unodoriferously unodoriferousness unodorous unodorously unodorousness unoecumenic unoecumenical unoffendable unoffended unoffendedly unoffender unoffending unoffendingly unoffensive unoffensively unoffensiveness unoffered unofficed unofficered unofficerlike unofficial unofficialdom unofficially unofficialness unofficiated unofficiating unofficinal unofficious unofficiously unofficiousness unoffset unoften unogled unoil unoiled unoiling unoily unold unomened unominous unominously unominousness unomitted unomnipotent unomnipotently unomniscient unomnisciently unonerous unonerously unonerousness unontological unopaque unoped unopen unopenable unopened unopening unopenly unopenness unoperably unoperatable unoperated unoperatic unoperatically unoperating unoperative unoperculate unoperculated unopiated unopiatic unopined unopinionated unopinionatedness unopinioned unoppignorated unopportune unopportunely unopportuneness unopportunistic unopposable unopposed unopposedly unopposedness unopposing unopposite unoppositional unoppressed unoppressive unoppressively unoppressiveness unopprobrious unopprobriously unopprobriousness unoppugned unopressible unopted unoptimised unoptimistic unoptimistical unoptimistically unoptimized unoptional unoptionally unopulence unopulent unopulently unoral unorally unorational unoratorial unoratorical unoratorically unorbed unorbital unorbitally unorchestrated unordain unordainable unordained unorder unorderable unordered unordering unorderly unorders unordinal unordinarily unordinariness unordinary unordinate unordinately unordinateness unordnanced unorganed unorganic unorganical unorganically unorganicalness unorganisable unorganised unorganisedly unorganisedness unorganizable unorganized unorganizedly unorganizedness unoriental unorientally unorientalness unoriented unoriginal unoriginalities unoriginality unoriginally unoriginalness unoriginate unoriginated unoriginatedness unoriginately unoriginateness unorigination unoriginative unoriginatively unoriginativeness unorn unornament unornamental unornamentally unornamentalness unornamentation unornamented unornate unornately unornateness unornithological unornly unorphaned unorthodox unorthodoxically unorthodoxies unorthodoxly unorthodoxness unorthodoxy unorthographical unorthographically unoscillating unosculated unosmotic unossified unossifying unostensible unostensibly unostensive unostensively unostentation unostentatious unostentatiously unostentatiousness unostentatiousnesses unousted unoutgrown unoutlawed unoutraged unoutspeakable unoutspoken unoutworn unoverclouded unovercomable unovercome unoverdone unoverdrawn unoverflowing unoverhauled unoverleaped unoverlooked unoverpaid unoverpowered unoverruled unovert unovertaken unoverthrown unovervalued unoverwhelmed unowed unowing unown unowned unoxidable unoxidated unoxidative unoxidisable unoxidised unoxidizable unoxidized unoxygenated unoxygenised unoxygenized unp unpacable unpaced unpacifiable unpacific unpacified unpacifiedly unpacifiedness unpacifist unpacifistic unpack unpackaged unpacked unpacker unpackers unpacking unpackings unpacks unpadded unpadlocked unpagan unpaganise unpaganize unpaganized unpaganizing unpaged unpaginal unpaginated unpaid unpained unpainful unpainfully unpaining unpainstaking unpaint unpaintability unpaintable unpaintableness unpaintably unpainted unpaintedly unpaintedness unpainting unpaints unpaired unpaised unpalatabilities unpalatability unpalatable unpalatableness unpalatably unpalatal unpalatalized unpalatally unpalatial unpale unpaled unpalisaded unpalisadoed unpalled unpalliable unpalliated unpalliative unpalpable unpalpablely unpalped unpalpitating unpalsied unpaltry unpampered unpanegyrised unpanegyrized unpanel unpaneled unpanelled unpanelling unpanels unpanged unpanicky unpannel unpannelled unpannelling unpannels unpanniered unpanoplied unpantheistic unpantheistical unpantheistically unpanting unpapal unpapaverous unpaper unpapered unpapering unpapers unparaded unparadise unparadised unparadises unparadising unparadox unparadoxal unparadoxical unparadoxically unparagoned unparagonised unparagonized unparagraphed unparallel unparallelable unparalleled unparalleledly unparalleledness unparallelness unparalysed unparalyzed unparametrised unparametrized unparaphrased unparasitic unparasitical unparasitically unparasitized unparcel unparceled unparceling unparcelled unparcelling unparch unparched unparching unpardon unpardonability unpardonable unpardonableness unpardonablenesses unpardonably unpardoned unpardonedness unpardoning unpared unparegal unparental unparentally unparented unparenthesised unparenthesized unparenthetic unparenthetical unparenthetically unparfit unpargeted unpark unparked unparking unparliamentary unparliamented unparochial unparochialism unparochially unparodied unparolable unparoled unparrel unparriable unparried unparroted unparrying unparsed unparser unparsimonious unparsimoniously unparsonic unparsonical unpartable unpartableness unpartably unpartaken unpartaking unparted unpartial unpartiality unpartially unpartialness unpartible unparticipant unparticipated unparticipating unparticipative unparticular unparticularised unparticularising unparticularized unparticularizing unparticularness unpartisan unpartitioned unpartitive unpartizan unpartnered unpartook unparty unpass unpassable unpassableness unpassablenesses unpassably unpassed unpassing unpassionate unpassionately unpassionateness unpassioned unpassive unpassively unpaste unpasted unpasteurised unpasteurized unpasting unpastor unpastoral unpastorally unpastured unpatched unpatent unpatentable unpatented unpaternal unpaternally unpathed unpathetic unpathetically unpathological unpathologically unpathwayed unpatience unpatient unpatiently unpatientness unpatinated unpatriarchal unpatriarchally unpatrician unpatriotic unpatriotically unpatriotism unpatristic unpatristical unpatristically unpatrolled unpatronisable unpatronised unpatronising unpatronizable unpatronized unpatronizing unpatronizingly unpatted unpatterned unpatternized unpaunch unpaunched unpauperised unpauperized unpausing unpausingly unpave unpaved unpavilioned unpaving unpawed unpawn unpawned unpay unpayable unpayableness unpayably unpaying unpayment unpays unpeace unpeaceable unpeaceableness unpeaceablenesses unpeaceably unpeaceful unpeacefully unpeacefulness unpeaked unpealed unpearled unpebbled unpeccable unpecked unpeculating unpeculiar unpeculiarly unpecuniarily unpedagogic unpedagogical unpedagogically unpedantic unpedantical unpeddled unpedestal unpedestaled unpedestaling unpedigreed unpeel unpeelable unpeelableness unpeeled unpeeling unpeerable unpeered unpeevish unpeevishly unpeevishness unpeg unpegged unpegging unpegs unpejorative unpejoratively unpelagic unpelted unpen unpenal unpenalised unpenalized unpenally unpenanced unpenciled unpencilled unpendant unpendent unpending unpendulous unpendulously unpendulousness unpenetrable unpenetrably unpenetrant unpenetrated unpenetrating unpenetratingly unpenetrative unpenetratively unpenitent unpenitential unpenitentially unpenitently unpenitentness unpenned unpennied unpenning unpennoned unpens unpensionable unpensionableness unpensioned unpensioning unpent unpenurious unpenuriously unpenuriousness unpeople unpeopled unpeoples unpeopling unpeppered unpeppery unperceivability unperceivable unperceivably unperceived unperceivedly unperceiving unperceptible unperceptibleness unperceptibly unperceptional unperceptive unperceptively unperceptiveness unperceptual unperceptually unperch unperched unperches unperching unpercipient unpercolated unpercussed unpercussive unperdurable unperdurably unperemptorily unperemptoriness unperemptory unperfect unperfected unperfectedly unperfectedness unperfectible unperfection unperfections unperfective unperfectively unperfectiveness unperfectly unperfectness unperfectnesses unperfidious unperfidiously unperfidiousness unperflated unperforable unperforate unperforated unperforating unperforative unperformability unperformable unperformance unperformed unperforming unperfumed unperilous unperilously unperiodic unperiodical unperiodically unperipheral unperipherally unperiphrased unperiphrastic unperiphrastically unperishable unperishableness unperishably unperished unperishing unperjured unperjuring unpermanency unpermanent unpermanently unpermeable unpermeant unpermeated unpermeating unpermeative unpermed unpermissible unpermissibly unpermissive unpermissiveness unpermit unpermits unpermitted unpermitting unpermixed unpernicious unperniciously unperpendicular unperpendicularly unperpetrated unperpetuable unperpetuated unperpetuating unperplex unperplexed unperplexes unperplexing unpersecuted unpersecuting unpersecutive unperseverance unpersevering unperseveringly unperseveringness unpersisting unperson unpersonable unpersonableness unpersonal unpersonalised unpersonalising unpersonality unpersonalized unpersonalizing unpersonally unpersoned unpersonified unpersonify unpersonifying unpersoning unpersons unperspicuous unperspicuously unperspicuousness unperspirable unperspired unperspiring unpersuadability unpersuadable unpersuadableness unpersuadablenesses unpersuadably unpersuade unpersuaded unpersuadedness unpersuasibility unpersuasible unpersuasibleness unpersuasion unpersuasive unpersuasively unpersuasiveness unpertaining unpertinent unpertinently unperturbable unperturbably unperturbed unperturbedly unperturbedness unperturbing unperuked unperusable unperused unpervaded unpervading unpervasive unpervasively unpervasiveness unperverse unperversely unperversive unpervert unperverted unpervertedly unperverting unperverts unpervious unperviously unperviousness unpessimistic unpessimistically unpestered unpesterous unpestilent unpestilential unpestilently unpetal unpetaled unpetalled unpetitioned unpetrified unpetrify unpetrifying unpetted unpetticoated unpetulant unpetulantly unpharasaic unpharasaical unphased unphenomenal unphenomenally unphilanthropic unphilanthropically unphilologic unphilological unphilosophic unphilosophical unphilosophically unphilosophicalness unphilosophise unphilosophised unphilosophize unphilosophized unphilosophy unphlegmatic unphlegmatical unphlegmatically unphonetic unphoneticness unphonnetical unphonnetically unphonographed unphosphatised unphosphatized unphotographable unphotographed unphotographic unphrasable unphrasableness unphrased unphrenological unphysical unphysically unphysicianlike unphysicked unphysiological unphysiologically unpicaresque unpick unpickable unpicked unpicketed unpicking unpickled unpicks unpictorial unpictorialise unpictorialised unpictorialising unpictorialize unpictorialized unpictorializing unpictorially unpicturability unpicturable unpictured unpicturesque unpicturesquely unpicturesqueness unpiece unpieced unpierceable unpierced unpiercing unpiety unpigmented unpile unpiled unpiles unpilfered unpilgrimlike unpiling unpillaged unpillared unpilled unpilloried unpillowed unpiloted unpimpled unpin unpinched unpining unpinion unpinioned unpinked unpinkt unpinned unpinning unpins unpioneering unpious unpiously unpiped unpiqued unpirated unpiratical unpiratically unpitched unpited unpiteous unpiteously unpiteousness unpitiable unpitiably unpitied unpitiedly unpitiedness unpitiful unpitifully unpitifulness unpitifulnesses unpitted unpity unpitying unpityingly unpityingness unplacable unplacably unplacated unplacatory unplace unplaced unplacement unplaces unplacid unplacidly unplacidness unplacing unplagiarised unplagiarized unplagued unplaid unplain unplained unplainly unplainness unplait unplaited unplaiting unplaits unplan unplaned unplanished unplank unplanked unplanned unplannedly unplannedness unplanning unplant unplantable unplanted unplantlike unplashed unplaster unplastered unplastic unplat unplated unplatitudinous unplatitudinously unplatitudinousness unplatted unplausible unplausibleness unplausibly unplausive unplayability unplayable unplayed unplayful unplayfully unplaying unpleached unpleadable unpleaded unpleading unpleasable unpleasant unpleasantish unpleasantly unpleasantness unpleasantnesses unpleasantries unpleasantry unpleased unpleasing unpleasingly unpleasingness unpleasive unpleasurable unpleasurably unpleasure unpleat unpleated unplebeian unpledged unplenished unplenteous unplenteously unplentiful unplentifully unplentifulness unpliability unpliable unpliableness unpliably unpliancy unpliant unpliantly unpliantness unplied unplight unplighted unplodding unplotted unplotting unplough unploughed unplow unplowed unplucked unplug unplugged unplugging unplugs unplumb unplumbed unplumbing unplumbs unplume unplumed unplumes unpluming unplummeted unplump unplundered unplunderous unplunderously unplunge unplunged unpluralised unpluralistic unpluralized unplutocratic unplutocratical unplutocratically unpneumatic unpneumatically unpoached unpocket unpocketed unpodded unpoetic unpoetical unpoetically unpoeticalness unpoeticalnesses unpoeticised unpoeticized unpoetise unpoetised unpoetize unpoetized unpoignant unpoignantly unpoignard unpointed unpointedness unpointing unpoise unpoised unpoison unpoisonable unpoisoned unpoisoning unpoisonous unpoisonously unpoisons unpolarisable unpolarised unpolarizable unpolarized unpoled unpolemic unpolemical unpolemically unpoliced unpolicied unpolish unpolishable unpolished unpolishedness unpolishes unpolishing unpolite unpolitely unpoliteness unpolitenesses unpolitic unpolitical unpolitically unpoliticly unpollarded unpolled unpollened unpollutable unpolluted unpollutedly unpolluting unpolymerised unpolymerized unpompous unpompously unpompousness unponderable unpondered unponderous unponderously unponderousness unpontifical unpontifically unpooled unpope unpoped unpopes unpoping unpopular unpopularise unpopularised unpopularities unpopularity unpopularize unpopularized unpopularly unpopularness unpopulate unpopulated unpopulous unpopulously unpopulousness unporcelainized unporness unpornographic unporous unporousness unportable unportended unportentous unportentously unportentousness unporticoed unportionable unportioned unportly unportmanteaued unportraited unportrayable unportrayed unportunate unportuous unposed unposing unpositive unpositively unpositiveness unpositivistic unpossess unpossessable unpossessed unpossessedness unpossessing unpossessive unpossessively unpossessiveness unpossibility unpossible unpossibleness unpossibly unposted unpostered unposthumous unpostmarked unpostponable unpostponed unpostulated unpot unpotable unpotent unpotently unpotted unpotting unpouched unpoulticed unpounced unpounded unpourable unpoured unpouting unpoutingly unpowdered unpower unpowered unpowerful unpowerfulness unpracticability unpracticable unpracticableness unpracticably unpractical unpracticalities unpracticality unpractically unpracticalness unpractice unpracticed unpracticedness unpractised unpractisedness unpractisednesses unpragmatic unpragmatical unpragmatically unpraisable unpraise unpraised unpraiseful unpraises unpraiseworthy unpraising unpranked unprating unpray unprayable unprayed unprayerful unprayerfully unprayerfulness unpraying unprays unpreach unpreached unpreaches unpreaching unprecarious unprecariously unprecariousness unprecautioned unpreceded unprecedented unprecedentedly unprecedentedness unprecedential unprecedently unpreceptive unpreceptively unprecious unpreciously unpreciousness unprecipiced unprecipitant unprecipitantly unprecipitate unprecipitated unprecipitately unprecipitateness unprecipitative unprecipitatively unprecipitous unprecipitously unprecipitousness unprecise unprecisely unpreciseness unprecisive unprecludable unprecluded unprecludible unpreclusive unpreclusively unprecocious unprecociously unprecociousness unpredaceous unpredaceously unpredaceousness unpredacious unpredaciously unpredaciousness unpredatory unpredestinated unpredestined unpredetermined unpredicable unpredicableness unpredicably unpredicated unpredicative unpredicatively unpredict unpredictabilities unpredictability unpredictabilness unpredictable unpredictableness unpredictables unpredictably unpredicted unpredictedness unpredicting unpredictive unpredictively unpredicts unpredisposed unpredisposing unpreempted unpreened unprefaced unpreferable unpreferableness unpreferably unpreferred unprefigured unprefined unprefixal unprefixally unprefixed unpregnable unpregnant unprehensive unprejudged unprejudicated unprejudice unprejudiced unprejudicedly unprejudicedness unprejudiciable unprejudicial unprejudicially unprejudicialness unprelatic unprelatical unpreluded unpremature unprematurely unprematureness unpremeditable unpremeditate unpremeditated unpremeditatedly unpremeditatedness unpremeditatednesses unpremeditately unpremeditation unpremeditations unpremonished unpremonstrated unprenominated unprenticed unpreoccupied unpreordained unpreparation unprepare unprepared unpreparedly unpreparedness unpreparednesses unprepares unpreparing unpreponderated unpreponderating unprepossessed unprepossessedly unprepossessing unprepossessingly unprepossessingness unpreposterous unpreposterously unpreposterousness unpresaged unpresageful unpresaging unpresbyterated unprescient unpresciently unprescinded unprescribed unpresentability unpresentable unpresentableness unpresentably unpresentative unpresented unpreservable unpreserved unpresidential unpresidentially unpresiding unpressed unpresses unpressured unpressurised unpressurized unprest unpresumable unpresumably unpresumed unpresuming unpresumingness unpresumptive unpresumptively unpresumptuous unpresumptuously unpresumptuousness unpresupposed unpretended unpretending unpretendingly unpretendingness unpretentious unpretentiously unpretentiousness unpretentiousnesses unpretermitted unpreternatural unpreternaturally unprettified unprettily unprettiness unprettinesses unpretty unprevailing unprevalence unprevalent unprevalently unprevaricating unpreventability unpreventable unpreventableness unpreventablenesses unpreventably unpreventative unprevented unpreventible unpreventive unpreventively unpreventiveness unpreviewed unpreying unpriceably unpriced unpricked unprickled unprickly unprideful unpridefully unpriest unpriested unpriesting unpriestlike unpriestly unpriests unpriggish unprim unprime unprimed unprimitive unprimitively unprimitiveness unprimitivistic unprimly unprimmed unprimness unprince unprincelike unprinceliness unprincely unprincess unprincipal unprinciple unprincipled unprincipledly unprincipledness unprinciplednesses unprint unprintable unprintableness unprintably unprinted unpriority unprismatic unprismatical unprismatically unprison unprisonable unprisoned unprisoning unprisons unprivate unprivately unprivateness unprivileged unprizable unprized unprobable unprobably unprobated unprobational unprobationary unprobative unprobed unprobity unproblematic unproblematical unproblematically unprocedural unprocessed unprocessional unproclaimed unprocrastinated unprocreant unprocreate unprocreated unproctored unprocurable unprocurableness unprocure unprocured unprodded unproded unprodigious unprodigiously unprodigiousness unproduceable unproduceableness unproduceably unproduced unproducedness unproducible unproducibleness unproducibly unproductive unproductively unproductiveness unproductivenesses unproductivities unproductivity unprofanable unprofane unprofaned unprofanely unprofaneness unprofessed unprofessing unprofessional unprofessionalism unprofessionalisms unprofessionally unprofessionalness unprofessionals unprofessorial unprofessorially unproffered unproficiency unproficient unproficiently unprofit unprofitabilities unprofitability unprofitable unprofitableness unprofitablenesses unprofitably unprofited unprofiteering unprofiting unprofound unprofoundly unprofoundness unprofundity unprofuse unprofusely unprofuseness unprognosticated unprognosticative unprogrammable unprogrammatic unprogrammed unprogressed unprogressive unprogressively unprogressiveness unprogressivenesses unprohibited unprohibitedness unprohibitive unprohibitively unprojected unprojecting unprojective unproliferous unprolific unprolifically unprolificness unprolifiness unprolix unprologued unprolongable unprolonged unpromiscuous unpromiscuously unpromiscuousness unpromise unpromised unpromising unpromisingly unpromisingness unpromotable unpromoted unpromotional unpromotive unprompt unprompted unpromptly unpromptness unpromulgated unpronounce unpronounceable unpronounced unpronouncing unproofread unprop unpropagable unpropagandistic unpropagated unpropagative unpropelled unpropellent unpropense unproper unproperly unproperness unpropertied unprophesiable unprophesied unprophetic unprophetical unprophetically unprophetlike unpropice unpropitiable unpropitiated unpropitiatedness unpropitiating unpropitiative unpropitiatory unpropitious unpropitiously unpropitiousness unpropitiousnesses unproportion unproportionable unproportionableness unproportionably unproportional unproportionality unproportionally unproportionate unproportionately unproportionateness unproportioned unproportionedly unproportionedness unproposable unproposed unproposing unpropounded unpropped unpropping unpropriety unprops unprorogued unprosaic unprosaical unprosaically unprosaicness unproscribable unproscribed unproscriptive unproscriptively unprosecutable unprosecuted unprosecuting unproselyte unproselyted unprosodic unprospected unprospective unprosperably unprospered unprospering unprosperity unprosperous unprosperously unprosperousness unprosperousnesses unprostitute unprostituted unprostrated unprotect unprotectable unprotected unprotectedly unprotectedness unprotectednesses unprotecting unprotection unprotective unprotectively unprotestant unprotestantise unprotestantised unprotestantises unprotestantising unprotestantize unprotestantized unprotestantizes unprotestantizing unprotested unprotesting unprotestingly unprotracted unprotractive unprotruded unprotrudent unprotruding unprotrusible unprotrusive unprotrusively unprotuberant unprotuberantly unproud unproudly unprovability unprovable unprovableness unprovably unproved unprovedness unproven unproverbial unproverbially unprovidable unprovide unprovided unprovidedly unprovidedness unprovidenced unprovident unprovidential unprovidentially unprovidently unprovides unproviding unprovincial unprovincialism unprovincially unproving unprovised unprovisedly unprovision unprovisional unprovisioned unprovocative unprovocatively unprovocativeness unprovokable unprovoke unprovoked unprovokedly unprovokedness unprovokes unprovoking unprovokingly unprowling unproximity unprudence unprudent unprudential unprudentially unprudently unprunable unpruned unprying unpsychic unpsychically unpsychological unpsychologically unpsychopathic unpsychotic unpublic unpublicised unpublicity unpublicized unpublicly unpublishable unpublishableness unpublishably unpublished unpucker unpuckered unpuckering unpuckers unpuddled unpuff unpuffed unpuffing unpugilistic unpugnacious unpugnaciously unpugnaciousness unpulled unpulleyed unpulped unpulsating unpulsative unpulverable unpulverise unpulverised unpulverize unpulverized unpulvinate unpulvinated unpumicated unpummeled unpummelled unpumpable unpumped unpunched unpunctate unpunctated unpunctilious unpunctiliously unpunctiliousness unpunctual unpunctualities unpunctuality unpunctually unpunctualness unpunctuated unpunctuating unpunctured unpunishable unpunishably unpunished unpunishedly unpunishedness unpunishing unpunishingly unpunitive unpurchasable unpurchaseable unpurchased unpure unpured unpurely unpureness unpurgative unpurgatively unpurgeable unpurged unpurifiable unpurified unpurifying unpuristic unpuritan unpuritanic unpuritanical unpuritanically unpurled unpurloined unpurpled unpurported unpurposed unpurposelike unpurposely unpurposing unpurposive unpurse unpursed unpurses unpursing unpursuable unpursuant unpursued unpursuing unpurvaide unpurveyed unpushed unput unputative unputatively unputdownable unputrefiable unputrefied unputrid unputridity unputridly unputridness unputtied unpuzzle unpuzzled unpuzzles unpuzzling unq unquadded unquaffed unquailed unquailing unquailingly unquakerlike unquakerly unquaking unqualifiable unqualification unqualified unqualifiedly unqualifiedness unqualifiednesses unqualifies unqualify unqualifying unqualifyingly unqualiied unqualited unqualitied unquality unquantifiable unquantified unquantised unquantitative unquantized unquarantined unquarreled unquarreling unquarrelled unquarrelling unquarrelsome unquarried unquartered unquashed unquavering unquayed unqueen unqueened unqueening unqueenlier unqueenliest unqueenlike unqueenly unqueens unquellable unquelled unqueme unquemely unquenchable unquenchableness unquenchably unquenched unqueried unquert unquerulous unquerulously unquerulousness unquested unquestionabilities unquestionability unquestionable unquestionableness unquestionablenesses unquestionably unquestionate unquestioned unquestionedly unquestionedness unquestioning unquestioningly unquestioningness unquibbled unquibbling unquick unquickened unquickly unquickness unquicksilvered unquiescence unquiescent unquiescently unquiet unquietable unquieted unquieter unquietest unquieting unquietly unquietness unquietnesses unquietous unquiets unquietude unquilleted unquilted unquit unquittable unquitted unquivered unquivering unquixotic unquixotical unquixotically unquizzable unquizzed unquizzical unquizzically unquod unquotable unquote unquoted unquotes unquoting unrabbeted unrabbinic unrabbinical unraced unrack unracked unracking unradiant unradiated unradiative unradical unradicalise unradicalize unradically unradioactive unraffled unraftered unraided unrailed unrailroaded unrailwayed unrainy unraisable unraiseable unraised unrake unraked unrakes unraking unrallied unrallying unram unrambling unramified unrammed unramped unranched unrancid unrancored unrancorous unrancoured unrancourous unrandom unranging unrank unranked unrankled unransacked unransomable unransomed unranting unrapacious unrapaciously unrapaciousness unraped unraptured unrapturous unrapturously unrapturousness unrare unrarefied unrash unrashly unrashness unrasped unrasping unraspy unratable unrated unratified unrationable unrational unrationalised unrationalising unrationalized unrationalizing unrationally unrationed unrattled unravaged unravel unravelable unraveled unraveler unravelers unraveling unravellable unravelled unraveller unravellers unravelling unravellings unravelment unravelments unravels unraving unravished unravishing unray unrayed unrazed unrazored unreachabilities unreachability unreachable unreachableness unreachably unreached unreactionary unreactive unread unreadabilities unreadability unreadable unreadableness unreadablenesses unreadably unreadier unreadiest unreadily unreadiness unreadinesses unready unreal unrealisable unrealise unrealised unrealises unrealising unrealism unrealisms unrealist unrealistic unrealistically unrealities unreality unrealizability unrealizable unrealize unrealized unrealizes unrealizing unreally unrealmed unrealness unreaped unreared unreason unreasonability unreasonable unreasonableness unreasonablenesses unreasonably unreasoned unreasoning unreasoningly unreasoningness unreasons unreassuring unreassuringly unreave unreaved unreaves unreaving unrebated unrebel unrebellious unrebelliously unrebelliousness unrebuffable unrebuffably unrebuffed unrebuilt unrebukable unrebukably unrebukeable unrebuked unrebuttable unrebuttableness unrebutted unrecalcitrant unrecallable unrecallably unrecalled unrecalling unrecantable unrecanted unrecanting unrecapturable unrecaptured unreceding unreceipted unreceivable unreceived unreceiving unrecent unreceptant unreceptive unreceptively unreceptiveness unreceptivity unrecessive unrecessively unrecipient unreciprocal unreciprocally unreciprocated unreciprocating unrecitative unrecited unrecked unrecking unreckingness unreckless unreckon unreckonable unreckoned unreclaimable unreclaimably unreclaimed unreclaimedness unreclaiming unreclined unreclining unrecluse unreclusive unrecoded unrecognisable unrecognisably unrecognised unrecognising unrecognisingly unrecognition unrecognitory unrecognizable unrecognizableness unrecognizably unrecognized unrecognizing unrecognizingly unrecoined unrecollectable unrecollected unrecollective unrecommendable unrecommended unrecompensable unrecompensed unreconcilable unreconcilableness unreconcilablenesses unreconcilably unreconciled unreconciliable unreconciling unrecondite unreconnoitered unreconnoitred unreconsidered unreconstructed unreconstructible unrecordable unrecorded unrecordedness unrecording unrecountable unrecounted unrecoverable unrecoverableness unrecoverably unrecovered unrecreant unrecreated unrecreating unrecreational unrecriminative unrecruitable unrecruited unrectangular unrectangularly unrectifiable unrectifiably unrectified unrecumbent unrecumbently unrecuperated unrecuperatiness unrecuperative unrecuperativeness unrecuperatory unrecuring unrecurrent unrecurrently unrecurring unrecusant unrecyclable unred unredacted unredeemable unredeemableness unredeemably unredeemed unredeemedly unredeemedness unredeeming unredemptive unredressable unredressed unredrest unreduceable unreduced unreducible unreducibleness unreducibly unreduct unredy unreeel unreefed unreel unreelable unreeled unreeler unreelers unreeling unreels unreeve unreeved unreeves unreeving unrefereed unreferenced unreferencing unreferred unrefilled unrefine unrefined unrefinedly unrefinedness unrefinement unrefining unrefitted unreflected unreflecting unreflectingly unreflectingness unreflective unreflectively unreformable unreformative unreformed unreformedness unreforming unrefracted unrefracting unrefractive unrefractively unrefractiveness unrefractory unrefrainable unrefrained unrefraining unrefrangible unrefreshed unrefreshful unrefreshing unrefreshingly unrefrigerated unrefulgent unrefulgently unrefundable unrefunded unrefunding unrefusable unrefusably unrefused unrefusing unrefusingly unrefutability unrefutable unrefutably unrefuted unrefuting unregainable unregained unregal unregaled unregality unregally unregard unregardable unregardant unregarded unregardedly unregardful unregarding unregenerable unregeneracies unregeneracy unregenerate unregenerated unregenerately unregenerateness unregenerating unregeneration unregenerative unregimental unregimentally unregimented unregistered unregistrable unregressive unregressively unregressiveness unregretful unregretfully unregretfulness unregrettable unregrettably unregretted unregretting unregulable unregular unregularised unregularity unregularized unregulated unregulative unregulatory unregurgitated unrehabilitated unrehearsable unrehearsed unrehearsing unreigning unreimbodied unrein unreined unreinforced unreining unreins unreinstated unreiterable unreiterated unreiterating unreiterative unrejectable unrejected unrejective unrejoiced unrejoicing unrejuvenated unrejuvenating unrelapsing unrelatable unrelated unrelatedness unrelating unrelational unrelative unrelatively unrelativistic unrelaxable unrelaxed unrelaxing unrelaxingly unrelayed unreleasable unreleased unreleasible unreleasing unrelegable unrelegated unrelentable unrelentance unrelented unrelenting unrelentingly unrelentingness unrelentingnesses unrelentless unrelentor unrelentors unrelevant unrelevantly unreliabilities unreliability unreliable unreliableness unreliablenesses unreliably unreliance unreliant unrelievability unrelievable unrelievableness unrelieved unrelievedly unrelievedness unrelieving unreligion unreligioned unreligious unreligiously unreligiousness unrelinquishable unrelinquishably unrelinquished unrelinquishing unrelishable unrelished unrelishing unreluctance unreluctant unreluctantly unremaining unremanded unremarkable unremarkableness unremarkably unremarked unremarking unremarried unremediable unremedied unremember unrememberable unremembered unremembering unremembrance unreminded unreminiscent unreminiscently unremissible unremissive unremittable unremitted unremittedly unremittence unremittency unremittent unremittently unremitting unremittingly unremittingness unremittingnesses unremonstrant unremonstrated unremonstrating unremonstrative unremorseful unremorsefully unremorsefulness unremorseless unremote unremotely unremoteness unremounted unremovable unremovableness unremovably unremoved unremunerated unremunerating unremunerative unremuneratively unremunerativeness unrenderable unrendered unrenewable unrenewed unrenounceable unrenounced unrenouncing unrenovated unrenovative unrenowned unrenownedly unrenownedness unrent unrentable unrented unrenunciable unrenunciative unrenunciatory unreorganised unreorganized unrepaid unrepair unrepairable unrepaired unrepairs unrepartable unreparted unrepayable unrepealability unrepealable unrepealableness unrepealably unrepealed unrepeatability unrepeatable unrepeated unrepellable unrepelled unrepellent unrepellently unrepent unrepentable unrepentance unrepentances unrepentant unrepentantly unrepentantness unrepented unrepenting unrepentingly unrepentingness unrepetitious unrepetitiously unrepetitiousness unrepetitive unrepetitively unrepined unrepining unrepiningly unrepiqued unreplaceable unreplaced unrepleness unreplenished unreplete unrepleteness unrepleviable unreplevinable unreplevined unreplevisable unrepliable unrepliably unreplied unreplying unreportable unreported unreportedly unreportedness unreportorial unrepose unreposed unreposeful unreposefully unreposefulness unreposing unrepossessed unreprehended unreprehensible unreprehensibleness unreprehensibly unrepreseed unrepresentable unrepresentation unrepresentational unrepresentative unrepresentatively unrepresentativeness unrepresentativenesses unrepresented unrepresentedness unrepressed unrepressible unrepression unrepressive unrepressively unrepressiveness unreprievable unreprievably unreprieved unreprimanded unreprimanding unreprinted unreproachable unreproachableness unreproachably unreproached unreproachful unreproachfully unreproachfulness unreproaching unreproachingly unreprobated unreprobative unreprobatively unreproduced unreproducible unreproducibly unreproductive unreproductively unreproductiveness unreprovable unreprovableness unreprovably unreproved unreprovedly unreprovedness unreproving unrepublican unrepudiable unrepudiated unrepudiative unrepugnable unrepugnant unrepugnantly unrepulsable unrepulsed unrepulsing unrepulsive unrepulsively unrepulsiveness unreputable unreputed unrequalified unrequest unrequested unrequickened unrequired unrequisite unrequisitely unrequisiteness unrequisitioned unrequitable unrequital unrequited unrequitedly unrequitedness unrequitement unrequiter unrequiting unrescinded unrescissable unrescissory unrescuable unrescued unresearched unresemblance unresemblant unresembling unresented unresentful unresentfully unresentfulness unresenting unreserve unreserved unreservedly unreservedness unreservednesses unreserves unresident unresidential unresidual unresifted unresigned unresignedly unresilient unresiliently unresinous unresistable unresistably unresistance unresistant unresistantly unresisted unresistedly unresistedness unresistible unresistibleness unresistibly unresisting unresistingly unresistingness unresistive unresolute unresolutely unresoluteness unresolvable unresolve unresolved unresolvedly unresolvedness unresolvednesses unresolving unresonant unresonantly unresonating unresounded unresounding unresourceful unresourcefully unresourcefulness unrespect unrespectability unrespectable unrespectably unrespected unrespectful unrespectfully unrespectfulness unrespective unrespectively unrespectiveness unrespirable unrespired unrespited unresplendent unresplendently unresponding unresponsal unresponsible unresponsibleness unresponsibly unresponsive unresponsively unresponsiveness unresponsivenesses unrest unrestable unrested unrestful unrestfully unrestfulness unrestfulnesses unresting unrestingly unrestingness unrestingnesses unrestitutive unrestorable unrestorableness unrestorative unrestored unrestrainable unrestrainably unrestrained unrestrainedly unrestrainedness unrestrainednesses unrestraint unrestraints unrestrictable unrestricted unrestrictedly unrestrictedness unrestriction unrestrictive unrestrictively unrests unresty unresultive unresumed unresumptive unresurrected unresuscitable unresuscitated unresuscitating unresuscitative unretainable unretained unretaining unretaliated unretaliating unretaliative unretaliatory unretardable unretarded unretentive unretentively unretentiveness unreticence unreticent unreticently unretinued unretire unretired unretires unretiring unretorted unretouched unretractable unretracted unretractive unretreated unretreating unretrenchable unretrenched unretributive unretributory unretrievable unretrieved unretrievingly unretroactive unretroactively unretrograded unretrograding unretrogressive unretrogressively unretted unreturnable unreturnableness unreturnably unreturned unreturning unreturningly unrevealable unrevealed unrevealedness unrevealing unrevealingly unrevelational unrevelationise unrevelationize unreveling unrevelling unrevenged unrevengeful unrevengefully unrevengefulness unrevenging unrevengingly unrevenue unrevenued unreverberant unreverberated unreverberating unreverberative unrevered unreverence unreverenced unreverend unreverendly unreverent unreverential unreverentially unreverently unreverentness unreversable unreversed unreversible unreversibleness unreversibly unreverted unrevertible unreverting unrevested unrevetted unreviewable unreviewed unreviled unreviling unrevised unrevivable unrevived unrevocable unrevocableness unrevocably unrevokable unrevoked unrevolted unrevolting unrevolutionary unrevolutionized unrevolved unrevolving unrewardable unrewarded unrewardedly unrewarding unrewardingly unreworded unrhapsodic unrhapsodical unrhapsodically unrhetorical unrhetorically unrhetoricalness unrheumatic unrhyme unrhymed unrhyming unrhythmic unrhythmical unrhythmically unribbed unribboned unrich unriched unricht unricked unrid unridable unridableness unridably unridden unriddle unriddleable unriddled unriddler unriddlers unriddles unriddling unride unrideable unridely unridered unridged unridiculed unridiculous unridiculously unridiculousness unrife unriffled unrifled unrifted unrig unrigged unrigging unright unrightable unrighted unrighteous unrighteously unrighteousness unrighteousnesses unrightful unrightfully unrightfulness unrightfulnesses unrightly unrights unrightwise unrigid unrigidly unrigidness unrigorous unrigorously unrigorousness unrigs unrimed unrimpled unrind unring unringable unringed unringing unrinsed unrioted unrioting unriotous unriotously unriotousness unrip unripe unriped unripely unripened unripeness unripenesses unripening unriper unripest unrippable unripped unripping unrippings unrippled unrippling unripplingly unrips unrisen unrisible unrising unriskable unrisked unrisky unritual unritualistic unritually unrivalable unrivaled unrivaledly unrivaledness unrivaling unrivalled unrivalledly unrivalling unrivalrous unrived unriven unrivet unriveted unriveting unrivets unroaded unroadworthy unroaming unroast unroasted unrobbed unrobe unrobed unrobes unrobing unrobust unrobustly unrobustness unrocked unrocky unrococo unrodded unroiled unroll unrollable unrolled unroller unrolling unrollment unrolls unromanised unromanized unromantic unromantical unromantically unromanticalness unromanticised unromanticism unromanticized unroof unroofed unroofing unroofs unroomy unroost unroosted unroosting unroosts unroot unrooted unrooting unroots unrope unroped unropes unroping unrosed unrosined unrostrated unrotary unrotated unrotating unrotational unrotative unrotatory unroted unrotted unrotten unrotund unrouged unrough unroughened unround unrounded unrounding unrounds unrousable unroused unrousing unrout unroutable unrouted unroutine unroutinely unrove unroved unroven unroving unrow unrowdy unrowed unroweled unrowelled unroyal unroyalised unroyalist unroyalized unroyally unroyalness unrrove unrubbed unrubbish unrubified unrubrical unrubrically unrubricated unruddered unruddled unrude unrudely unrued unrueful unruefully unruefulness unrufe unruffable unruffe unruffed unruffle unruffled unruffledness unruffles unruffling unrugged unruinable unruinated unruined unruinous unruinously unruinousness unrulable unrulableness unrule unruled unruledly unruledness unruleful unrules unrulier unruliest unrulily unruliment unruliments unruliness unrulinesses unruly unruminant unruminated unruminating unruminatingly unruminative unrummaged unrumored unrumoured unrumple unrumpled unrun unrung unrupturable unruptured unrural unrurally unrushed unrushing unrust unrusted unrustic unrustically unrusticated unrustling unruth uns unsabbatical unsabered unsabled unsabotaged unsabred unsaccharic unsaccharine unsacerdotal unsacerdotally unsack unsacked unsacrament unsacramental unsacramentally unsacramentarian unsacred unsacredly unsacredness unsacrificeable unsacrificeably unsacrificed unsacrificial unsacrificially unsacrificing unsacrilegious unsacrilegiously unsacrilegiousness unsad unsadden unsaddened unsaddle unsaddled unsaddles unsaddling unsadistic unsadistically unsadly unsadness unsafe unsafeguarded unsafely unsafeness unsafenesses unsafer unsafest unsafetied unsafeties unsafety unsagacious unsagaciously unsagaciousness unsage unsagely unsageness unsagging unsaid unsailable unsailed unsailorlike unsained unsaint unsainted unsainting unsaintlier unsaintliest unsaintlike unsaintliness unsaintlinesses unsaintly unsaints unsaked unsalabilities unsalability unsalable unsalableness unsalably unsalacious unsalaciously unsalaciousness unsalaried unsaleabilities unsaleability unsaleable unsaleably unsalesmanlike unsalient unsaliently unsaline unsalivated unsalivating unsallow unsallowness unsallying unsalmonlike unsalness unsalt unsaltable unsaltatorial unsaltatory unsalted unsalty unsalubrious unsalubriously unsalubriousness unsalutariness unsalutary unsalutatory unsaluted unsaluting unsalvability unsalvable unsalvableness unsalvably unsalvageability unsalvageable unsalvageably unsalvaged unsalved unsame unsameness unsampled unsanctification unsanctified unsanctifiedly unsanctifiedness unsanctifies unsanctify unsanctifying unsanctimonious unsanctimoniously unsanctimoniousness unsanction unsanctionable unsanctioned unsanctioning unsanctitude unsanctity unsanctuaried unsandaled unsandalled unsanded unsane unsaneness unsanguinarily unsanguinariness unsanguinary unsanguine unsanguinely unsanguineness unsanguineous unsanguineously unsanitariness unsanitary unsanitated unsanitation unsanitized unsanity unsapient unsapiential unsapientially unsapiently unsaponifiable unsaponified unsapped unsappy unsarcastic unsarcastical unsarcastically unsardonic unsardonically unsartorial unsartorially unsash unsashed unsatable unsatanic unsatanical unsatanically unsatcheled unsated unsatedly unsatedness unsatiability unsatiable unsatiableness unsatiably unsatiate unsatiated unsatiating unsatin unsating unsatire unsatiric unsatirical unsatirically unsatiricalness unsatirisable unsatirise unsatirised unsatirizable unsatirize unsatirized unsatisfaction unsatisfactions unsatisfactorily unsatisfactoriness unsatisfactorinesses unsatisfactory unsatisfiability unsatisfiable unsatisfiableness unsatisfiably unsatisfied unsatisfiedly unsatisfiedness unsatisfiednesses unsatisfy unsatisfying unsatisfyingly unsatisfyingness unsatisfyingnesses unsaturable unsaturate unsaturated unsaturatedly unsaturatedness unsaturates unsaturation unsaturations unsatyrlike unsauced unsaught unsaurian unsavable unsavage unsavagely unsavageness unsaveable unsaved unsaving unsavingly unsavor unsavored unsavoredly unsavoredness unsavorily unsavoriness unsavorinesses unsavorly unsavory unsavoured unsavouredly unsavouredness unsavourily unsavouriness unsavourinesses unsavoury unsawed unsawn unsay unsayability unsayable unsaying unsays unscabbard unscabbarded unscabbarding unscabbards unscabbed unscabrous unscabrously unscabrousness unscaffolded unscalable unscalableness unscalably unscalded unscalding unscale unscaled unscaledness unscales unscaling unscalloped unscaly unscamped unscandalise unscandalised unscandalize unscandalized unscandalous unscandalously unscannable unscanned unscanted unscanty unscapable unscarb unscarce unscarcely unscarceness unscared unscarfed unscarified unscarred unscarved unscary unscathed unscathedly unscathedness unscattered unscavenged unscavengered unscenic unscenically unscent unscented unscepter unsceptered unsceptical unsceptically unsceptre unsceptred unscheduled unschematic unschematically unschematised unschematized unschemed unscheming unschismatic unschismatical unschizoid unschizophrenic unscholar unscholarlike unscholarliness unscholarly unscholastic unscholastically unschool unschooled unschooledly unschooledness unscience unscienced unscientific unscientifical unscientifically unscientificness unscintillant unscintillating unscioned unscissored unscoffed unscoffing unscolded unscolding unsconced unscooped unscorched unscorching unscored unscorified unscoring unscorned unscornful unscornfully unscornfulness unscotch unscotched unscottified unscottify unscoured unscourged unscourging unscouring unscowling unscowlingly unscramble unscrambled unscrambler unscramblers unscrambles unscrambling unscraped unscraping unscratchable unscratched unscratching unscratchingly unscrawled unscrawling unscreen unscreenable unscreenably unscreened unscrew unscrewable unscrewed unscrewing unscrews unscribal unscribbled unscribed unscrimped unscripted unscriptural unscripturally unscripturalness unscrubbed unscrupled unscrupulosity unscrupulous unscrupulously unscrupulousness unscrupulousnesses unscrutable unscrutinised unscrutinising unscrutinisingly unscrutinized unscrutinizing unscrutinizingly unsculptural unsculptured unscummed unscutcheoned unscythed unseafaring unseal unsealable unsealableness unsealablenesses unsealed unsealer unsealing unseals unseam unseamanlike unseamanship unseamed unseaming unseams unsearchable unsearchableness unsearchablenesses unsearchably unsearched unsearcherlike unsearching unsearchingly unseared unseason unseasonable unseasonableness unseasonablenesses unseasonably unseasonal unseasoned unseasoning unseasons unseat unseated unseating unseats unseaworthiness unseaworthinesses unseaworthy unseceded unseceding unsecluded unsecludedly unsecluding unseclusive unseclusively unseclusiveness unseconded unsecrecy unsecret unsecretarial unsecretarylike unsecreted unsecreting unsecretive unsecretively unsecretiveness unsecretly unsecretness unsectarian unsectarianise unsectarianism unsectarianisms unsectarianize unsectarianized unsectarianizing unsectional unsectionalised unsectionalized unsectionally unsectioned unsecular unsecularise unsecularised unsecularize unsecularized unsecularly unsecurable unsecurableness unsecure unsecured unsecuredly unsecuredness unsecurely unsecureness unsecurity unsedate unsedately unsedateness unsedative unsedentary unsedimental unsedimentally unseditious unseditiously unseditiousness unseduce unseduceability unseduceable unseduced unseducible unseducibleness unseducibly unseductive unseductively unseductiveness unsedulous unsedulously unsedulousness unsee unseeable unseeableness unseeded unseeding unseeing unseeingly unseeingness unseeking unseel unseeled unseeliness unseeling unseels unseely unseeming unseemingly unseemings unseemlier unseemliest unseemlily unseemliness unseemlinesses unseemly unseen unseens unseethed unseething unsegmental unsegmentally unsegmentary unsegmented unsegregable unsegregated unsegregatedness unsegregating unsegregational unsegregative unseignioral unseignorial unseismal unseismic unseizable unseize unseized unseldom unselect unselected unselecting unselective unselectively unselectiveness unself unselfassured unselfconfident unselfconscious unselfconsciously unselfconsciousness unselfconsciousnesses unselfed unselfing unselfish unselfishly unselfishness unselfishnesses unselflike unselfness unselfreliant unselfs unseliness unsell unsellable unselling unsells unselth unselves unsely unseminared unseminaried unsenatorial unsenescent unsenile unsensate unsensational unsensationally unsense unsensed unsenses unsensibility unsensible unsensibleness unsensibly unsensing unsensitise unsensitised unsensitising unsensitive unsensitively unsensitiveness unsensitize unsensitized unsensitizing unsensory unsensual unsensualise unsensualised unsensualises unsensualising unsensualistic unsensualize unsensualized unsensualizes unsensualizing unsensually unsensuous unsensuously unsensuousness unsent unsentenced unsententious unsententiously unsententiousness unsentient unsentiently unsentimental unsentimentalise unsentimentalised unsentimentalist unsentimentality unsentimentalize unsentimentalized unsentimentally unsentineled unsentinelled unseparable unseparableness unseparably unseparate unseparated unseparately unseparateness unseparating unseparative unseptate unseptated unsepulcher unsepulchered unsepulchral unsepulchrally unsepulchre unsepulchred unsepulchring unsepultured unsequenced unsequent unsequential unsequentially unsequestered unseraphic unseraphical unseraphically unsere unserenaded unserene unserenely unsereneness unserflike unserialised unserialized unserious unseriously unseriousness unseriousnesses unserrate unserrated unserried unservable unserved unservice unserviceability unserviceable unserviceableness unserviceably unserviced unservicelike unservile unservilely unserving unsesquipedalian unset unsets unsetting unsettle unsettleable unsettled unsettledly unsettledness unsettlednesses unsettlement unsettlements unsettles unsettling unsettlingly unsettlings unseven unseverable unseverableness unsevere unsevered unseveredly unseveredness unseverely unsevereness unsew unsewed unsewered unsewing unsewn unsews unsex unsexed unsexes unsexing unsexist unsexlike unsexual unsexually unsexy unshabbily unshabby unshackle unshackled unshackles unshackling unshade unshaded unshadily unshadiness unshading unshadow unshadowable unshadowed unshadowing unshadows unshady unshafted unshakable unshakableness unshakably unshakeable unshakeably unshaked unshaken unshakenly unshakenness unshakiness unshaking unshakingness unshaky unshale unshaled unshales unshaling unshamable unshamableness unshamably unshameable unshameableness unshameably unshamed unshamefaced unshamefacedness unshameful unshamefully unshamefulness unshammed unshanked unshapable unshape unshapeable unshaped unshapedness unshapelier unshapeliest unshapeliness unshapely unshapen unshapenly unshapenness unshapes unshaping unsharable unshareable unshared unsharedness unsharing unsharp unsharped unsharpen unsharpened unsharpening unsharping unsharply unsharpness unshatterable unshattered unshavable unshave unshaveable unshaved unshavedly unshavedness unshaven unshavenly unshavenness unshawl unsheaf unsheared unsheathe unsheathed unsheathes unsheathing unshed unshedding unsheds unsheer unsheerness unsheet unsheeted unsheeting unshell unshelled unshelling unshells unshelterable unsheltered unsheltering unshelve unshelved unshent unshepherded unshepherding unsheriff unshewed unshewn unshieldable unshielded unshielding unshift unshiftable unshifted unshiftiness unshifting unshifts unshifty unshimmering unshimmeringly unshined unshingled unshining unshiny unship unshiplike unshipment unshippable unshipped unshipping unships unshipshape unshipwrecked unshirked unshirking unshirred unshirted unshivered unshivering unshness unshockability unshockable unshocked unshocking unshod unshodden unshoe unshoed unshoeing unshoes unshook unshoot unshooted unshooting unshoots unshop unshore unshored unshorn unshort unshorten unshortened unshot unshotted unshoulder unshout unshouted unshouting unshouts unshoved unshoveled unshovelled unshowable unshowed unshowered unshowering unshowily unshowiness unshowmanlike unshown unshowy unshredded unshrew unshrewd unshrewdly unshrewdness unshrewish unshrill unshrine unshrined unshrinement unshrink unshrinkability unshrinkable unshrinking unshrinkingly unshrinkingness unshrived unshriveled unshrivelled unshriven unshroud unshrouded unshrouding unshrouds unshrubbed unshrubd unshrugging unshrunk unshrunken unshuddering unshuffle unshuffled unshunnable unshunned unshunning unshunted unshut unshuts unshutter unshuttered unshuttering unshutters unshutting unshy unshyly unshyness unsibilant unsiccated unsiccative unsick unsickened unsicker unsickered unsickerly unsickerness unsickled unsickly unsided unsidereal unsiding unsidling unsiege unsieged unsieved unsifted unsighing unsight unsightable unsighted unsightedly unsighting unsightless unsightlier unsightliest unsightliness unsightlinesses unsightly unsights unsigmatic unsignable unsignaled unsignalised unsignalized unsignalled unsignatured unsigned unsigneted unsignifiable unsignificancy unsignificant unsignificantly unsignificative unsignified unsignifying unsilenceable unsilenceably unsilenced unsilent unsilentious unsilently unsilhouetted unsilicated unsilicified unsilly unsilvered unsimilar unsimilarity unsimilarly unsimmered unsimmering unsimpering unsimple unsimpleness unsimplicity unsimplified unsimplify unsimplifying unsimply unsimular unsimulated unsimulating unsimulative unsimultaneous unsimultaneously unsimultaneousness unsin unsincere unsincerely unsincereness unsincerity unsinew unsinewed unsinewing unsinews unsinewy unsinful unsinfully unsinfulness unsing unsingability unsingable unsingableness unsinged unsingle unsingled unsingleness unsingular unsingularly unsingularness unsinister unsinisterly unsinisterness unsinkability unsinkable unsinking unsinnable unsinning unsinningness unsinnowed unsinuate unsinuated unsinuately unsinuous unsinuously unsinuousness unsiphon unsipped unsister unsistered unsisterliness unsisterlinesses unsisterly unsisting unsitting unsittingly unsituated unsizable unsizableness unsizeable unsizeableness unsized unskaithd unskaithed unskeptical unskeptically unskepticalness unsketchable unsketched unskewed unskewered unskilfully unskilfulness unskilfulnesses unskill unskilled unskilledly unskilledness unskillful unskillfully unskillfulness unskillfulnesses unskimmed unskin unskinned unskirmished unskirted unslack unslacked unslackened unslackening unslacking unslagged unslain unslakable unslakeable unslaked unslammed unslandered unslanderous unslanderously unslanderousness unslanted unslanting unslapped unslashed unslate unslated unslating unslatted unslaughtered unslave unslayable unsleaved unsleek unsleepably unsleeping unsleepingly unsleepy unsleeve unsleeved unslender unslept unsliced unslicked unsliding unslighted unslim unslimly unslimmed unslimness unsling unslinging unslings unslinking unslip unslipped unslippered unslippery unslipping unslit unslockened unslogh unsloped unsloping unslopped unslot unslothful unslothfully unslothfulness unslotted unslouched unslouching unslouchy unsloughed unsloughing unslow unslowed unslowly unslowness unsluggish unsluggishly unsluggishness unsluice unsluiced unsluices unsluicing unslumbering unslumberous unslumbery unslumbrous unslumped unslumping unslung unslurred unsly unslyly unslyness unsmacked unsmart unsmarting unsmartly unsmartness unsmashed unsmeared unsmelled unsmelling unsmelted unsmiled unsmiling unsmilingly unsmilingness unsmirched unsmirking unsmirkingly unsmitten unsmocked unsmokable unsmokeable unsmoked unsmokified unsmokily unsmokiness unsmoking unsmoky unsmoldering unsmooth unsmoothed unsmoothened unsmoothing unsmoothly unsmoothness unsmooths unsmote unsmotherable unsmothered unsmothering unsmouldering unsmoulderingly unsmudged unsmug unsmuggled unsmugly unsmugness unsmutched unsmutted unsmutty unsnaffled unsnag unsnagged unsnagging unsnaggled unsnags unsnaky unsnap unsnapped unsnapping unsnaps unsnare unsnared unsnarl unsnarled unsnarling unsnarls unsnatch unsnatched unsneaking unsneaky unsneck unsnecked unsnecking unsnecks unsneering unsneeringly unsnib unsnipped unsnobbish unsnobbishly unsnobbishness unsnoring unsnouted unsnow unsnubbable unsnubbed unsnuffed unsnug unsnugly unsnugness unsoaked unsoaped unsoarable unsoaring unsober unsobered unsobering unsoberly unsoberness unsobriety unsociabilities unsociability unsociable unsociableness unsociablenesses unsociably unsocial unsocialised unsocialising unsocialism unsocialisms unsocialistic unsocialities unsociality unsocializable unsocialized unsocializing unsocially unsocialness unsociological unsociologically unsocket unsocketed unsocketing unsockets unsod unsodden unsoft unsoftened unsoftening unsoftly unsoftness unsoggy unsoil unsoiled unsoiledness unsoiling unsolaced unsolacing unsolar unsold unsolder unsoldered unsoldering unsolders unsoldier unsoldiered unsoldierlike unsoldierly unsoldiery unsole unsoled unsolemn unsolemness unsolemnified unsolemnise unsolemnised unsolemnize unsolemnized unsolemnly unsolemnness unsolicitated unsolicited unsolicitedly unsolicitous unsolicitously unsolicitousness unsolicitude unsolid unsolidarity unsolidifiable unsolidified unsolidities unsolidity unsolidly unsolidness unsoling unsolitary unsolubility unsoluble unsolubleness unsolubly unsolvable unsolvableness unsolvably unsolve unsolved unsomatic unsomber unsomberly unsomberness unsombre unsombrely unsombreness unsome unsomnolent unsomnolently unson unsonable unsonant unsonantal unsoncy unsonlike unsonneted unsonorous unsonorously unsonorousness unsonsie unsonsy unsoot unsoote unsoothable unsoothed unsoothfast unsoothing unsoothingly unsooty unsophistic unsophistical unsophistically unsophisticate unsophisticated unsophisticatedly unsophisticatedness unsophisticatednesses unsophistication unsophistications unsophomoric unsophomorical unsophomorically unsoporiferous unsoporiferously unsoporiferousness unsoporific unsordid unsordidly unsordidness unsore unsorely unsoreness unsorriness unsorrowed unsorrowful unsorrowing unsorry unsort unsortable unsorted unsorting unsotted unsought unsoul unsouled unsoulful unsoulfully unsoulfulness unsouling unsoulish unsouls unsound unsoundable unsoundableness unsounded unsounder unsoundest unsounding unsoundly unsoundness unsoundnesses unsour unsourced unsoured unsourly unsourness unsoused unsovereign unsowed unsown unspaced unspacious unspaciously unspaciousness unspaded unspan unspangled unspanked unspanned unspanning unspar unsparable unspared unsparing unsparingly unsparingness unsparingnesses unsparked unsparkling unsparred unsparring unspars unsparse unsparsely unsparseness unspasmed unspasmodic unspasmodical unspasmodically unspatial unspatiality unspatially unspattered unspawned unspayed unspeak unspeakability unspeakable unspeakableness unspeakablenesses unspeakably unspeaking unspeaks unspeared unspecialised unspecialising unspecialized unspecializing unspecifiable unspecific unspecifically unspecified unspecifiedly unspecifying unspecious unspeciously unspeciousness unspecked unspeckled unspectacled unspectacular unspectacularly unspecterlike unspectrelike unspeculating unspeculative unspeculatively unspeculatory unsped unspeed unspeedful unspeedily unspeediness unspeedy unspeered unspell unspellable unspelled unspeller unspelling unspells unspelt unspendable unspending unspent unspewed unsphere unsphered unspheres unspherical unsphering unspiable unspiced unspicily unspiciness unspicy unspide unspied unspike unspillable unspilled unspilt unspin unspinnable unspinning unspinsterlike unspinsterlikeness unspiral unspiraled unspiralled unspirally unspired unspiring unspirit unspirited unspiritedly unspiriting unspiritual unspiritualise unspiritualised unspiritualises unspiritualising unspirituality unspiritualize unspiritualized unspiritualizes unspiritualizing unspiritually unspiritualness unspirituous unspissated unspit unspited unspiteful unspitefully unspitted unsplashed unsplattered unsplayed unspleened unspleenish unspleenishly unsplendid unsplendidly unsplendidness unsplendorous unsplendorously unsplendourous unsplendourously unsplenetic unsplenetically unspliced unsplinted unsplinterable unsplintered unsplit unsplittable unspoil unspoilable unspoilableness unspoilably unspoiled unspoiledness unspoilt unspoke unspoken unspokenly unsponged unspongy unsponsored unspontaneous unspontaneously unspontaneousness unspookish unsported unsportful unsporting unsportingly unsportive unsportively unsportiveness unsportsmanlike unsportsmanlikeness unsportsmanliness unsportsmanly unspot unspotlighted unspottable unspotted unspottedly unspottedness unspottednesses unspotten unspoused unspouselike unspouted unsprained unsprayable unsprayed unspread unspreadable unspreading unsprightliness unsprightly unspring unspringing unspringlike unsprinkled unsprinklered unsprouted unsproutful unsprouting unspruced unsprung unspun unspurious unspuriously unspuriousness unspurned unspurred unsputtering unspying unsquabbling unsquandered unsquarable unsquare unsquared unsquashable unsquashed unsqueamish unsqueamishly unsqueamishness unsqueezable unsqueezed unsquelched unsquinting unsquire unsquired unsquirelike unsquirming unsquirted unstabbed unstabilised unstabilising unstability unstabilized unstabilizing unstable unstabled unstableness unstablenesses unstabler unstablest unstablished unstably unstack unstacked unstacker unstacking unstacks unstaffed unstaged unstaggered unstaggering unstagily unstaginess unstagnant unstagnantly unstagnating unstagy unstaid unstaidly unstaidness unstaidnesses unstain unstainable unstainableness unstained unstainedly unstainedness unstaled unstalemated unstalked unstalled unstammering unstammeringly unstamped unstampeded unstanch unstanchable unstanched unstandard unstandardisable unstandardised unstandardizable unstandardized unstanding unstanzaic unstaple unstapled unstar unstarch unstarched unstarches unstarching unstarlike unstarred unstarted unstarting unstartled unstartling unstarved unstatable unstate unstateable unstated unstately unstates unstatesmanlike unstatic unstatical unstatically unstating unstation unstationary unstationed unstatistic unstatistical unstatistically unstatued unstatuesque unstatuesquely unstatuesqueness unstatutable unstatutably unstatutory unstaunch unstaunchable unstaunched unstavable unstaveable unstaved unstayable unstayed unstayedness unstaying unsteadfast unsteadfastly unsteadfastness unsteadfastnesses unsteadied unsteadier unsteadies unsteadiest unsteadily unsteadiness unsteadinesses unsteady unsteadying unstealthily unstealthiness unstealthy unsteamed unsteaming unsteck unstecked unsteek unsteel unsteeled unsteeling unsteels unsteep unsteeped unsteepled unsteered unstemmable unstemmed unstentorian unstentoriously unstep unstepped unstepping unsteps unstercorated unstereotyped unsterile unsterilised unsterilized unstern unsternly unsternness unstethoscoped unstewardlike unstewed unstick unsticked unsticking unstickingness unsticks unsticky unstiff unstiffen unstiffened unstiffly unstiffness unstifled unstifling unstigmatic unstigmatised unstigmatized unstill unstilled unstillness unstilted unstimulable unstimulated unstimulating unstimulatingly unstimulative unsting unstinged unstinging unstingingly unstinted unstintedly unstinting unstintingly unstippled unstipulated unstirrable unstirred unstirring unstitch unstitched unstitches unstitching unstock unstocked unstocking unstockinged unstocks unstoic unstoical unstoically unstoicise unstoicize unstoked unstoken unstolen unstonable unstone unstoneable unstoned unstonily unstoniness unstony unstooped unstooping unstop unstoppable unstoppably unstopped unstopper unstoppered unstoppering unstoppers unstopping unstopple unstops unstorable unstore unstored unstoried unstormable unstormed unstormily unstorminess unstormy unstout unstoutly unstoutness unstoved unstow unstowed unstowing unstows unstraddled unstrafed unstraight unstraightened unstraightforward unstraightforwardness unstraightness unstrain unstrained unstraitened unstrand unstranded unstrange unstrangely unstrangeness unstrangered unstrangled unstrangulable unstrap unstrapped unstrapping unstraps unstrategic unstrategical unstrategically unstratified unstraying unstreaked unstreamed unstreaming unstreamlined unstreng unstrength unstrengthen unstrengthened unstrengthening unstrenuous unstrenuously unstrenuousness unstrepitous unstress unstressed unstressedly unstressedness unstresses unstretch unstretchable unstretched unstrewed unstrewn unstriated unstricken unstrict unstrictly unstrictness unstrictured unstride unstrident unstridently unstridulating unstridulous unstrike unstriking unstring unstringed unstringent unstringently unstringing unstrings unstrip unstriped unstripped unstripping unstrips unstriving unstroked unstrong unstruck unstructural unstructurally unstructured unstruggling unstrung unstubbed unstubbled unstubborn unstubbornly unstubbornness unstuccoed unstuck unstudded unstudied unstudiedness unstudious unstudiously unstudiousness unstuff unstuffed unstuffily unstuffiness unstuffing unstuffy unstuft unstultified unstultifying unstumbling unstung unstunned unstunted unstupefied unstupid unstupidly unstupidness unsturdily unsturdiness unsturdy unstuttered unstuttering unsty unstyled unstylish unstylishly unstylishness unstylized unsuasible unsubdivided unsubduable unsubduableness unsubduably unsubducted unsubdued unsubduedly unsubduedness unsubject unsubjectable unsubjected unsubjectedness unsubjection unsubjective unsubjectively unsubjectlike unsubjugate unsubjugated unsublimable unsublimated unsublimed unsubmerged unsubmergible unsubmerging unsubmersible unsubmission unsubmissive unsubmissively unsubmissiveness unsubmitted unsubmitting unsubordinate unsubordinated unsubordinative unsuborned unsubpoenaed unsubrogated unsubscribe unsubscribed unsubscribes unsubscribing unsubscripted unsubservient unsubserviently unsubsided unsubsidiary unsubsiding unsubsidised unsubsidized unsubstanced unsubstantial unsubstantialise unsubstantialised unsubstantialises unsubstantialising unsubstantialities unsubstantiality unsubstantialization unsubstantialize unsubstantialized unsubstantializes unsubstantializing unsubstantially unsubstantialness unsubstantiatable unsubstantiate unsubstantiated unsubstantiation unsubstantiations unsubstantive unsubstituted unsubstitutive unsubtle unsubtleness unsubtlety unsubtly unsubtracted unsubtractive unsuburban unsuburbed unsubventioned unsubventionized unsubversive unsubversively unsubversiveness unsubvertable unsubverted unsubvertive unsucceedable unsucceeded unsucceeding unsuccess unsuccesses unsuccessful unsuccessfully unsuccessfulness unsuccessfulnesses unsuccessive unsuccessively unsuccessiveness unsuccinct unsuccinctly unsuccorable unsuccored unsuccourable unsuccoured unsucculent unsucculently unsuccumbing unsucked unsuckled unsued unsufferable unsufferableness unsufferably unsuffered unsuffering unsufficed unsufficience unsufficiency unsufficient unsufficiently unsufficing unsufficingness unsuffixed unsufflated unsuffocate unsuffocated unsuffocative unsuffused unsuffusive unsugared unsugary unsuggested unsuggestedness unsuggestibility unsuggestible unsuggesting unsuggestive unsuggestively unsuggestiveness unsuicidal unsuicidally unsuit unsuitabilities unsuitability unsuitable unsuitableness unsuitablenesses unsuitably unsuited unsuitedness unsuiting unsuits unsulfonated unsulfureness unsulfureous unsulfureousness unsulfurized unsulkily unsulkiness unsulky unsullen unsullenly unsulliable unsullied unsulliedly unsulliedness unsulphonated unsulphureness unsulphureous unsulphureousness unsulphurised unsulphurized unsultry unsummable unsummarisable unsummarised unsummarizable unsummarized unsummed unsummered unsummerlike unsummerly unsummonable unsummoned unsumptuary unsumptuous unsumptuously unsumptuousness unsun unsunburned unsunburnt unsundered unsung unsunk unsunken unsunned unsunny unsuperable unsuperannuated unsupercilious unsuperciliously unsuperciliousness unsuperficial unsuperficially unsuperfluous unsuperfluously unsuperfluousness unsuperior unsuperiorly unsuperlative unsuperlatively unsuperlativeness unsupernatural unsupernaturalise unsupernaturalised unsupernaturalize unsupernaturalized unsupernaturally unsupernaturalness unsuperscribed unsuperseded unsuperseding unsuperstitious unsuperstitiously unsuperstitiousness unsupervised unsupervisedly unsupervisory unsupine unsupped unsupplantable unsupplanted unsupple unsuppled unsupplemental unsupplementary unsupplemented unsuppleness unsupplenesses unsuppliable unsuppliant unsupplicated unsupplicating unsupplicatingly unsupplied unsupply unsupportable unsupportableness unsupportably unsupported unsupportedly unsupportedness unsupporting unsupportive unsupposable unsupposed unsuppositional unsuppositive unsuppressed unsuppressible unsuppressibly unsuppression unsuppressive unsuppurated unsuppurative unsupreme unsurcharge unsurcharged unsure unsured unsurely unsureness unsurenesses unsurer unsurest unsurety unsurfaced unsurfeited unsurfeiting unsurgical unsurgically unsurging unsurlily unsurliness unsurly unsurmised unsurmising unsurmountable unsurmountableness unsurmountably unsurmounted unsurnamed unsurpassable unsurpassableness unsurpassably unsurpassed unsurpassedly unsurpassedness unsurplice unsurpliced unsurprise unsurprised unsurprisedness unsurprising unsurprisingly unsurrealistic unsurrealistically unsurrendered unsurrendering unsurrounded unsurveyable unsurveyed unsurvivable unsurvived unsurviving unsusceptibility unsusceptible unsusceptibleness unsusceptibly unsusceptive unsuspect unsuspectable unsuspectably unsuspected unsuspectedly unsuspectedness unsuspectednesses unsuspectful unsuspectfully unsuspectfulness unsuspectible unsuspecting unsuspectingly unsuspectingness unsuspectingnesses unsuspective unsuspended unsuspendible unsuspicion unsuspicions unsuspicious unsuspiciously unsuspiciousness unsuspiciousnesses unsustainability unsustainable unsustainably unsustained unsustaining unsutured unswabbed unswaddle unswaddled unswaddles unswaddling unswaggering unswaggeringly unswallowable unswallowed unswampy unswanlike unswappable unswapped unswarming unswathable unswathe unswatheable unswathed unswathes unswathing unswayable unswayableness unswayed unswayedness unswaying unswear unswearing unswearings unswears unsweat unsweated unsweating unsweepable unsweet unsweeten unsweetened unsweetenedness unsweetly unsweetness unswell unswelled unswelling unsweltered unsweltering unswept unswervable unswerved unswerving unswervingly unswervingness unswilled unswing unswingled unswitched unswivel unswiveled unswiveling unswollen unswooning unswore unsworn unswung unsyllabic unsyllabicated unsyllabified unsyllabled unsyllogistic unsyllogistical unsyllogistically unsymbolic unsymbolical unsymbolically unsymbolicalness unsymbolised unsymbolized unsymmetric unsymmetrical unsymmetrically unsymmetricalness unsymmetries unsymmetrised unsymmetrized unsymmetry unsympathetic unsympathetically unsympatheticness unsympathies unsympathisability unsympathisable unsympathised unsympathising unsympathisingly unsympathizability unsympathizable unsympathized unsympathizing unsympathizingly unsympathy unsymphonious unsymphoniously unsymptomatic unsymptomatical unsymptomatically unsynchronised unsynchronized unsynchronous unsynchronously unsynchronousness unsyncopated unsyndicated unsynonymous unsynonymously unsyntactic unsyntactical unsyntactically unsynthesised unsynthesized unsynthetic unsynthetically unsyntheticness unsyphon unsyringed unsystematic unsystematical unsystematically unsystematicness unsystematised unsystematisedly unsystematising unsystematized unsystematizedly unsystematizing unsystemisable unsystemizable unta untabernacled untabled untabulable untabulated untaciturn untaciturnity untaciturnly untack untacked untacking untackle untackled untackles untackling untacks untactful untactfully untactfulness untactical untactically untactile untactual untactually untagged untailed untailored untailorlike untailorly untaint untaintable untainted untaintedly untaintedness untaintednesses untainting untakable untakableness untakeable untakeableness untaken untaking untalented untalkative untalkativeness untalked untalking untall untallied untallowed untaloned untamable untamableness untamablenesses untamably untame untameable untameableness untameablenesses untameably untamed untamedly untamedness untamednesses untamely untameness untames untaming untampered untangental untangentally untangential untangentially untangibility untangible untangibleness untangibly untangle untangled untangles untangling untanned untantalised untantalising untantalized untantalizing untap untaped untapered untapering untapestried untappable untapped untappice untar untarnishable untarnished untarnishedness untarnishing untarred untarried untarrying untartarised untartarized untasked untasseled untasselled untastable untaste untasteable untasted untasteful untastefully untastefulness untastily untasting untasty untattered untattooed untaught untaughtness untaunted untaunting untauntingly untaut untautly untautness untautological untautologically untawdry untawed untax untaxable untaxed untaxes untaxied untaxing unteach unteachability unteachable unteachableness unteachablenesses unteachably unteacherlike unteaches unteaching unteam unteamed unteaming unteams untearable unteased unteaseled unteaselled unteasled untechnical untechnicalise untechnicalize untechnically untedded untedious untediously unteem unteeming unteethed untelegraphed untelevised untelic untell untellable untellably untelling untemper untemperable untemperamental untemperamentally untemperance untemperate untemperately untemperateness untempered untempering untempers untempested untempestuous untempestuously untempestuousness untempled untemporal untemporally untemporary untemporising untemporizing untemptability untemptable untemptably untempted untemptible untemptibly untempting untemptingly untemptingness untenabilities untenability untenable untenableness untenablenesses untenably untenacious untenaciously untenaciousness untenacity untenant untenantable untenantableness untenanted untenanting untenants untended untender untendered untenderized untenderly untenderness untenebrous untenible untenibleness untenibly untense untensely untenseness untensibility untensible untensibly untensile untensing untent untentacled untentaculate untented untentered untenting untents untenty untenuous untenuously untenuousness untenured untermed unterminable unterminableness unterminably unterminated unterminating unterminational unterminative unterraced unterred unterrestrial unterrible unterribly unterrifiable unterrific unterrifically unterrified unterrifying unterrorised unterrorized unterse untersely unterseness untessellated untestable untestamental untestamentary untestate untested untestifying untether untethered untethering untethers untewed untextual untextually untextural untextured unthank unthanked unthankful unthankfully unthankfulness unthankfulnesses unthanking unthatch unthatched unthatches unthatching unthaw unthawed unthawing unthaws untheatric untheatrical untheatrically untheistic untheistical untheistically unthematic unthematically unthende untheologic untheological untheologically untheologize untheoretic untheoretical untheoretically untheorisable untheorizable untherapeutic untherapeutical untherapeutically unthewed unthick unthicken unthickened unthickly unthickness unthievish unthievishly unthievishness unthink unthinkabilities unthinkability unthinkable unthinkableness unthinkablenesses unthinkables unthinkably unthinker unthinking unthinkingly unthinkingness unthinkingnesses unthinks unthinned unthinning unthirsting unthirsty unthistle untholeable untholeably unthorn unthorny unthorough unthoroughly unthoroughness unthoughful unthought unthoughted unthoughtedly unthoughtful unthoughtfully unthoughtfulness unthoughtfulnesses unthoughtlike unthrall unthralled unthrashed unthread unthreadable unthreaded unthreading unthreads unthreatened unthreatening unthreateningly unthreshed unthrid unthridden unthrift unthriftier unthriftiest unthriftihood unthriftily unthriftiness unthriftinesses unthriftlike unthrifts unthrifty unthriftyhead unthriftyheads unthriftyhed unthriftyheds unthrilled unthrilling unthrive unthriven unthriving unthrivingly unthrivingness unthroatily unthroaty unthrob unthrobbing unthrone unthroned unthrones unthronged unthroning unthrottled unthrowable unthrown unthrushlike unthrust unthumbed unthumped unthundered unthundering unthwacked unthwartable unthwarted unthwarting untiaraed unticketed untickled untidal untidied untidier untidies untidiest untidily untidiness untidinesses untidy untidying untie untied untieing untiered unties untight untighten untightened untightening untightness untiing until untile untiled untiles untiling untill untillable untilled untilling untilt untilted untilting untimbered untime untimed untimedness untimeless untimelier untimeliest untimeliness untimelinesses untimely untimeous untimeously untimesome untimid untimidly untimidness untimorous untimorously untimorousness untimous untin untinct untinctured untindered untine untinged untinkered untinned untinning untins untinseled untinselled untinted untippable untipped untippled untipsy untipt untirability untirable untire untired untiredly untiring untiringly untissued untithability untithable untithed untitillated untitillating untitled untittering untitular untitularly unto untoadying untoasted untochered untogaed untogether untoggle untoggler untoiled untoileted untoiling untold untolerable untolerableness untolerably untolerated untolerating untolerative untolled untomb untombed untombing untombs untonality untone untoned untongue untongued untonsured untooled untooth untoothed untoothsome untoothsomeness untop untopographical untopographically untoppable untopped untopping untoppled untormented untormenting untormentingly untorn untorpedoed untorpid untorpidly untorporific untorrid untorridity untorridly untorridness untortious untortiously untortuous untortuously untortuousness untorture untortured untossed untotaled untotalled untotted untottering untouch untouchabilities untouchability untouchable untouchableness untouchables untouchably untouched untouchedness untouching untough untoughened untoughly untoughness untoured untouristed untoward untowardliness untowardlinesses untowardly untowardness untowardnesses untowered untown untownlike untoxic untoxically untrace untraceable untraceableness untraceably untraced untraceried untraces untracing untracked untractability untractable untractableness untractablenesses untractably untractarian untracted untractible untractibleness untradable untradeable untraded untradesmanlike untrading untraditional untraditionally untraduced untraffickable untrafficked untragic untragical untragically untragicalness untrailed untrailerable untrailered untrailing untrain untrainable untrained untrainedly untrainedness untraitored untraitorous untraitorously untraitorousness untrammed untrammeled untrammeledness untrammelled untramped untrampled untrance untranquil untranquilised untranquilize untranquilized untranquilizing untranquillise untranquillised untranquillising untranquillize untranquillized untranquilly untranquilness untransacted untranscended untranscendent untranscendental untranscendentally untranscribable untranscribed untransferable untransferrable untransferred untransferring untransfigured untransfixed untransformable untransformative untransformed untransforming untransfused untransfusible untransgressed untransient untransiently untransientness untransitable untransitional untransitionally untransitive untransitively untransitiveness untransitorily untransitoriness untransitory untranslatabilities untranslatability untranslatable untranslatableness untranslatablenesses untranslatably untranslated untransmigrated untransmissible untransmissive untransmitted untransmutability untransmutable untransmutableness untransmutably untransmuted untransparent untransparently untransparentness untranspassable untranspired untranspiring untransplanted untransportable untransported untransposed untransubstantiated untrappable untrapped untrashed untraumatic untravelable untraveled untraveling untravellable untravelled untravelling untraversable untraversed untravestied untreacherous untreacherously untreacherousness untread untreadable untreading untreads untreasonable untreasurable untreasure untreasured untreasures untreasuring untreatable untreatableness untreatably untreated untreed untrekked untrellised untrembling untremblingly untremendous untremendously untremendousness untremolant untremulant untremulent untremulous untremulously untremulousness untrenched untrend untrendy untrepanned untrespassed untrespassing untress untressed untriable untriableness untriabness untribal untribally untributarily untributary untriced untrickable untricked untride untried untrifling untriflingly untrig untriggered untrigonometric untrigonometrical untrigonometrically untrill untrim untrimmable untrimmed untrimmedness untrimming untrims untrinitarian untripe untrippable untripped untripping untrist untrite untritely untriteness untriturated untriumphable untriumphant untriumphantly untriumphed untrivial untrivially untrochaic untrod untrodden untroddenness untrolled untrophied untropic untropical untropically untroth untrotted untroublable untrouble untroubled untroubledly untroubledness untroublednesses untroublesome untroublesomeness untrounced untrowable untrowed untruant untruced untruck untruckled untruckling untrue untrueness untruenesses untruer untruest untruism untruisms untruly untrumped untrumpeted untrumping untrundled untrunked untruss untrussed untrusser untrussers untrusses untrussing untrussings untrust untrustable untrustably untrusted untrustful untrustfully untrustiness untrustinesses untrusting untrustness untrusts untrustworthily untrustworthiness untrustworthinesses untrustworthy untrusty untruth untruther untruthful untruthfully untruthfulness untruthfulnesses untruths untrying unttrod untubbed untubercular untuberculous untuck untucked untuckered untucking untucks untufted untugged untumbled untumefied untumid untumidity untumidly untumidness untumultuous untumultuously untumultuousness untunable untunableness untunablenesses untunably untune untuneable untuneableness untuneably untuned untuneful untunefully untunefulness untunefulnesses untunes untuning untunneled untunnelled untupped unturbaned unturbid unturbidly unturbulent unturbulently unturf unturfed unturfing unturfs unturgid unturgidly unturn unturnable unturned unturning unturns unturpentined unturreted untusked untutelar untutelary untutored untutoredly untutoredness untwilled untwinable untwind untwine untwineable untwined untwines untwining untwinkled untwinkling untwinned untwirl untwirled untwirling untwist untwistable untwisted untwister untwisting untwistings untwists untwitched untwitching untwitten untying untyings untypable untyped untypical untypicality untypically untyrannic untyrannical untyrannically untyrannised untyrannized untyrantlike untyreable untz unubiquitous unubiquitously unubiquitousness unugly unulcerated unulcerative unulcerous unulcerously unulcerousness unultra unum unumpired ununanimity ununanimous ununanimously ununbium ununbiums ununderstandability ununderstandable ununderstandably ununderstanding ununderstood unundertaken unundulatory ununifiable ununified ununiform ununiformed ununiformity ununiformly ununiformness ununionized ununique ununiquely ununiqueness ununitable ununitableness ununitably ununited ununiting ununiversity ununiversitylike ununnilium ununniliums unununium unununiums unupbraided unupbraiding unupbraidingly unupdated unupholstered unuplifted unupright unuprightly unuprightness unupset unupsettable unurban unurbane unurbanely unurbanized unured unurged unurgent unurgently unurging unurn unurned unusability unusable unusableness unusably unusage unuse unuseable unuseableness unuseably unused unusedness unuseful unusefully unusefulness unusefulnesses unushered unusual unusuality unusually unusualness unusualnesses unusurious unusuriously unusuriousness unusurped unusurping unutilisable unutilised unutilitarian unutilizable unutilized unutterability unutterable unutterableness unutterablenesses unutterables unutterably unuttered unuxorial unuxorious unuxoriously unuxoriousness unvacant unvacantly unvacated unvaccinated unvacillating unvacuous unvacuously unvacuousness unvagrant unvagrantly unvagrantness unvague unvaguely unvagueness unvail unvailable unvaile unvailed unvailes unvailing unvails unvain unvainly unvainness unvaleted unvaletudinary unvaliant unvaliantly unvaliantness unvalid unvalidated unvalidating unvalidity unvalidly unvalidness unvalorous unvalorously unvalorousness unvaluable unvaluableness unvaluably unvalue unvalued unvamped unvaned unvanishing unvanquishable unvanquished unvanquishing unvantaged unvaporised unvaporized unvaporosity unvaporous unvaporously unvaporousness unvariable unvariableness unvariably unvariant unvariation unvaried unvariedly unvariedness unvariegated unvarnished unvarnishedly unvarnishedness unvarying unvaryingly unvaryingness unvascular unvascularly unvasculous unvassal unvatted unvaulted unvaulting unvaunted unvaunting unvauntingly unveering unveeringly unvehement unvehemently unveil unveiled unveiledly unveiledness unveiler unveilers unveiling unveilings unveilment unveils unveined unvelvety unvenal unvendable unvendableness unvended unvendible unvendibleness unveneered unvenerability unvenerable unvenerableness unvenerably unvenerated unvenerative unvenereal unvenged unvengeful unveniable unvenial unveniality unvenially unvenialness unvenom unvenomed unvenomous unvenomously unvenomousness unventable unvented unventilated unventured unventuresome unventurous unventurously unventurousness unvenued unveracious unveraciously unveraciousness unveracities unveracity unverbal unverbalised unverbalized unverbally unverbose unverbosely unverboseness unverdant unverdantly unverdured unverdurness unverdurous unverdurousness unveridic unveridical unveridically unverifiabilities unverifiability unverifiable unverifiableness unverifiably unverificative unverified unverifiedness unveritable unveritableness unveritably unverity unvermiculated unverminous unverminously unverminousness unvernicular unversatile unversatilely unversatileness unversatility unversed unversedly unversedness unversified unvertebrate unvertical unvertically unvertiginous unvertiginously unvertiginousness unvesiculated unvessel unvesseled unvest unvested unvetoed unvetted unvexatious unvexatiously unvexatiousness unvexed unvext unviable unvibrant unvibrantly unvibrated unvibrating unvibrational unvicar unvicarious unvicariously unvicariousness unvicious unviciously unviciousness unvictimised unvictimized unvictorious unvictualed unvictualled unviewable unviewed unvigilant unvigilantly unvigorous unvigorously unvigorousness unvilified unvillaged unvillainous unvillainously unvincible unvindicable unvindicated unvindictive unvindictively unvindictiveness unvinous unvintaged unviolable unviolableness unviolably unviolate unviolated unviolative unviolenced unviolent unviolently unviolined unvirgin unvirginal unvirginlike unvirile unvirility unvirtue unvirtues unvirtuous unvirtuously unvirtuousness unvirulent unvirulently unvisceral unvisible unvisibleness unvisibly unvision unvisionary unvisioned unvisitable unvisited unvisiting unvisor unvisored unvisoring unvisors unvistaed unvisual unvisualised unvisualized unvisually unvital unvitalised unvitalized unvitalizing unvitally unvitalness unvitiable unvitiated unvitiatedly unvitiatedness unvitiating unvitreosity unvitreous unvitreously unvitreousness unvitrescent unvitrescibility unvitrescible unvitrifiable unvitrified unvitriolised unvitriolized unvituperated unvituperative unvituperatively unvituperativeness unvivacious unvivaciously unvivaciousness unvivid unvividly unvividness unvivified unvizard unvizarded unvizarding unvizards unvizored unvocable unvocal unvocalised unvocalized unvociferous unvociferously unvociferousness unvoice unvoiced unvoiceful unvoices unvoicing unvoicings unvoid unvoidable unvoided unvoidness unvolatile unvolatilise unvolatilised unvolatilize unvolatilized unvolcanic unvolcanically unvolitional unvolitioned unvolitive unvoluble unvolubleness unvolubly unvolumed unvoluminous unvoluminously unvoluminousness unvoluntarily unvoluntariness unvoluntary unvolunteering unvoluptuous unvoluptuously unvoluptuousness unvomited unvoracious unvoraciously unvoraciousness unvote unvoted unvoting unvouched unvouchedly unvouchedness unvouchsafed unvowed unvoweled unvowelled unvoyageable unvoyaging unvulcanised unvulcanized unvulgar unvulgarise unvulgarised unvulgarises unvulgarising unvulgarize unvulgarized unvulgarizes unvulgarizing unvulgarly unvulgarness unvulnerable unvulturine unvulturous unvying unwadable unwadded unwaddling unwadeable unwaded unwading unwafted unwaged unwagered unwaggable unwaggably unwagged unwailed unwailing unwainscoted unwainscotted unwaited unwaiting unwaivable unwaived unwaked unwakeful unwakefully unwakefulness unwakened unwakening unwaking unwalkable unwalked unwalking unwall unwalled unwallet unwallowed unwan unwandered unwandering unwanderingly unwaned unwaning unwanted unwantedly unwanton unwarbled unwarded unware unwarely unwareness unwarenesses unwares unwarie unwarier unwariest unwarily unwariness unwarinesses unwarlike unwarlikeness unwarm unwarmable unwarmed unwarming unwarn unwarned unwarnedly unwarnedness unwarning unwarnished unwarp unwarpable unwarped unwarping unwarranness unwarrant unwarrantability unwarrantable unwarrantableness unwarrantably unwarrantabness unwarranted unwarrantedly unwarrantedness unwarrayed unwarred unwarren unwary unwas unwashable unwashed unwashedness unwashednesses unwasheds unwashen unwassailing unwastable unwasted unwasteful unwastefully unwastefulness unwasting unwastingly unwatchable unwatched unwatchful unwatchfully unwatchfulness unwatchfulnesses unwatching unwater unwatered unwatering unwaterlike unwatermarked unwaters unwatery unwattled unwaved unwaverable unwavered unwavering unwaveringly unwaving unwax unwaxed unwayed unwayward unweaken unweakened unweakening unweal unweals unwealsomeness unwealthy unweaned unweapon unweaponed unweaponing unweapons unwearable unwearably unweariability unweariable unweariableness unweariably unwearied unweariedly unweariedness unwearily unweariness unwearing unwearisome unwearisomeness unweary unwearying unwearyingly unweathered unweatherly unweatherwise unweave unweaved unweaves unweaving unweb unwebbed unwebbing unwed unwedded unweddedly unweddedness unwedgable unwedge unwedgeable unwedged unwedging unweeded unweel unweelness unweened unweeping unweeting unweetingly unweft unweighability unweighable unweighableness unweighed unweighing unweight unweighted unweighting unweights unweighty unwelcome unwelcomed unwelcomely unwelcomeness unwelcomenesses unwelcoming unweld unweldable unwelde unwelded unweldy unwell unwellness unwellnesses unwelted unwelth unwemmed unwept unwestern unwesternised unwesternized unwet unwettable unwetted unwheedled unwheel unwheeled unwhelmed unwhelped unwhetted unwhig unwhiglike unwhimpering unwhimperingly unwhimsical unwhimsically unwhimsicalness unwhining unwhiningly unwhip unwhipped unwhipt unwhirled unwhisked unwhiskered unwhisperable unwhispered unwhispering unwhistleable unwhistled unwhite unwhited unwhitened unwhitewashed unwhole unwholesome unwholesomely unwholesomeness unwholesomenesses unwicked unwickedly unwickedness unwidened unwidowed unwield unwieldable unwieldier unwieldiest unwieldily unwieldiness unwieldinesses unwieldly unwieldsome unwieldy unwifed unwifelier unwifeliest unwifelike unwifely unwig unwigged unwigging unwild unwildly unwildness unwilful unwilfully unwilfulness unwilier unwilily unwiliness unwill unwillable unwille unwilled unwilledness unwillful unwillfully unwillfulness unwilling unwillingly unwillingness unwillingnesses unwills unwilted unwilting unwily unwimple unwincing unwincingly unwind unwindable unwinded unwinder unwinders unwinding unwindingly unwindings unwindowed unwinds unwindy unwingable unwinged unwink unwinking unwinkingly unwinly unwinnable unwinning unwinnowed unwinsome unwinter unwintry unwiped unwirable unwire unwired unwires unwiring unwisdom unwisdoms unwise unwisely unwiseness unwisenesses unwiser unwisest unwish unwished unwishes unwishful unwishfully unwishfulness unwishing unwist unwistful unwistfully unwistfulness unwit unwitch unwitched unwitches unwitching unwithdrawable unwithdrawing unwithdrawn unwitherable unwithered unwithering unwithheld unwithholden unwithholding unwithstanding unwithstood unwitless unwitnessed unwits unwitted unwittily unwitting unwittingly unwittingness unwittingnesses unwitty unwive unwived unwives unwiving unwoeful unwoefully unwoefulness unwoful unwoman unwomaned unwomaning unwomanise unwomanised unwomanish unwomanize unwomanized unwomanlier unwomanliest unwomanlike unwomanliness unwomanlinesses unwomanly unwomans unwomb unwon unwonder unwonderful unwonderfully unwondering unwont unwonted unwontedly unwontedness unwontednesses unwooded unwooed unwoof unwooly unwordable unwordably unworded unwordily unwordy unwork unworkabilities unworkability unworkable unworkableness unworkablenesses unworkables unworkably unworked unworkedness unworker unworking unworkmanlike unworkmanly unworks unworld unworldlier unworldliest unworldliness unworldlinesses unworldly unwormed unworminess unwormy unworn unworried unworriedly unworriedness unworship unworshiped unworshipful unworshiping unworshipped unworshipping unworth unworthier unworthies unworthiest unworthily unworthiness unworthinesses unworths unworthy unwotting unwound unwoundable unwoundableness unwounded unwove unwoven unwrangling unwrap unwrapped unwrapper unwrappered unwrapping unwraps unwrathful unwrathfully unwrathfulness unwreaked unwreaken unwreathe unwreathed unwreathes unwreathing unwrecked unwrench unwrenched unwrest unwrested unwrestedly unwresting unwrestled unwretched unwriggled unwrinkle unwrinkleable unwrinkled unwrinkles unwrinkling unwrit unwritable unwrite unwriteable unwrites unwriting unwritten unwroken unwronged unwrongful unwrongfully unwrongfulness unwrote unwrought unwrung unwry unwwove unwwoven unyachtsmanlike unyeaned unyearned unyearning unyielded unyielding unyieldingly unyieldingness unyieldingnesses unyoke unyoked unyokes unyoking unyolden unyoung unyouthful unyouthfully unyouthfulness unze unzealous unzealously unzealousness unzen unzephyrlike unzip unzipped unzipping unzips unzone unzoned unzoning up upadaisies upadaisy upaisle upaithric upalley upalong upanaya upanayana upanishad upanishadic upapurana uparch uparching uparise uparm uparna upas upases upattic upavenue upaya upband upbank upbar upbay upbbore upbborne upbear upbearer upbearers upbearing upbears upbeat upbeats upbelch upbelt upbend upbid upbind upbinding upbinds upblacken upblast upblaze upblew upblow upblowing upblown upblows upboil upboiled upboiling upboils upbolster upbolt upboost upbore upborne upbotch upboulevard upbound upbounden upbow upbows upbrace upbraid upbraided upbraider upbraiders upbraiding upbraidingly upbraidings upbraids upbrast upbray upbrayed upbraying upbrays upbreak upbreaking upbreaks upbreathe upbred upbreed upbreeze upbrighten upbrim upbring upbringing upbringings upbrings upbristle upbroke upbroken upbrook upbrought upbrow upbubble upbuild upbuilder upbuilders upbuilding upbuildings upbuilds upbuilt upbulging upbuoy upbuoyance upbuoyances upbuoying upburn upburning upburst upbursting upbursts upbuy upby upbye upcall upcanal upcanyon upcard upcarry upcast upcasted upcasting upcasts upcatch upcatches upcatching upcaught upchamber upchannel upchariot upchaunce upcheard upcheer upcheered upcheering upcheers upchimney upchoke upchuck upchucked upchucking upchucks upcity upclimb upclimbed upclimber upclimbing upclimbs upclose upclosed upcloser upcloses upclosing upcoast upcock upcoil upcoiled upcoiling upcoils upcolumn upcome upcomes upcoming upconjure upcountries upcountry upcourse upcourt upcover upcrane upcrawl upcreek upcreep upcrop upcropping upcrowd upcry upcurl upcurled upcurling upcurls upcurrent upcurve upcurved upcurves upcurving upcushion upcut upcutting updart updarted updarting updarts updatability updatable update updated updater updaters updates updating updeck updelve updive updived updives updiving updo updome updos updove updraft updrafts updrag updragged updragging updrags updraught updraughts updraw updrawing updrawn updraws updress updrew updried updries updrink updry updrying upeat upend upended upending upends uperize upeygan upfeed upfield upfill upfilled upfilling upfillings upfills upfingered upflame upflare upflash upflashing upflee upflicker upfling upflinging upflings upfloat upflood upflow upflowed upflower upflowing upflows upflung upfly upfold upfolded upfolding upfolds upfollow upfollowed upfollowing upfollows upframe upfront upfurl upfurled upfurling upfurls upgale upgang upgangs upgape upgather upgathered upgathering upgathers upgaze upgazed upgazes upgazing upget upgird upgirded upgirding upgirds upgirt upgive upglean upglide upgo upgoes upgoing upgoings upgone upgorge upgradabilities upgradability upgradable upgradation upgradations upgrade upgradeabilities upgradeability upgradeable upgraded upgrader upgraders upgrades upgrading upgradings upgrave upgrew upgrow upgrowing upgrowings upgrown upgrows upgrowth upgrowths upgully upgush upgushed upgushes upgushing uphale uphand uphang uphanging uphangs upharbor upharrow upharsin uphasp uphaud uphauding uphauds upheal upheap upheaped upheaping upheapings upheaps uphearted upheaval upheavalist upheavals upheave upheaved upheaven upheaver upheavers upheaves upheaving upheld uphelm uphelya upher uphhove uphild uphill uphills uphillward uphoard uphoarded uphoarding uphoards uphoist uphoisted uphoisting uphoists uphold upholden upholder upholders upholding upholdings upholds upholster upholstered upholsterer upholsterers upholsteress upholsteries upholstering upholsterous upholsters upholstery upholsterydom upholstress upholstresses uphoord uphoorded uphoording uphoords uphove uphroe uphroes uphudden uphung uphurl uphurled uphurling uphurls upisland upjerk upjet upjets upjetted upjetting upkeep upkeeps upkindle upknell upknit upknits upknitted upknitting upla upladder uplaid uplake upland uplander uplanders uplandish uplands uplane uplay uplaying uplays uplead upleading upleads uplean upleaned upleaning upleans upleant upleap upleaped upleaping upleaps upleapt upled upleg uplick uplift upliftable uplifted upliftedly upliftedness uplifter uplifters uplifting upliftingly upliftingness upliftings upliftitis upliftment upliftments uplifts uplight uplighted uplighter uplighters uplighting uplights uplimb uplimber upline uplink uplinked uplinking uplinkings uplinks uplit upload uploadable uploaded uploading uploads uplock uplocked uplocking uplocks uplong uplook uplooked uplooker uplooking uplooks uploom uploop uplying upmake upmaker upmakers upmakes upmaking upmakings upmanship upmanships upmarket upmast upmix upmost upmount upmountain upmove upness upo upon uppard uppbad upped uppent upper uppercase uppercased uppercases uppercasing upperch upperclassman upperclassmen upperclasswoman upperclasswomen uppercut uppercuts uppercutted uppercutting upperer upperest upperhandism uppermore uppermost upperpart upperparts uppers upperstocks uppertendom upperworks uppile uppiled uppiles uppiling upping uppings uppish uppishly uppishness uppishnesses uppitiness uppitinesses uppity uppityness uppitynesses upplough upplow uppluck uppoint uppoise uppop uppour uppowoc upprick upprop uppropped uppropping upprops uppuff uppull uppush upquiver upraisal upraise upraised upraiser upraisers upraises upraising upran uprate uprated uprates uprating upraught upreach upreached upreaches upreaching uprear upreared uprearing uprears uprein uprend uprender uprest uprestore uprests uprid upridge upright uprighted uprighteous uprighteously uprighteousness uprighting uprightish uprightly uprightman uprightness uprightnesses uprights uprip uprisal uprisals uprise uprisement uprisen upriser uprisers uprises uprising uprisings uprist uprists uprive upriver uprivers uproad uproar uproared uproarer uproariness uproaring uproarious uproariously uproariousness uproariousnesses uproars uproll uprolled uprolling uprolls uproom uproot uprootal uprootals uprooted uprootedness uprootednesses uprooter uprooters uprooting uprootings uproots uprose uprouse uproused uprouses uprousing uproute uprun uprunning upruns uprush uprushed uprushes uprushing upryst ups upsadaisy upsaddle upscale upscaled upscales upscaling upscrew upscuddle upseal upsedoun upsee upseek upsees upseize upsend upsending upsends upsent upset upsetment upsets upsettable upsettal upsetted upsetter upsetters upsetting upsettingly upsettings upsey upseys upshaft upshear upsheath upshift upshifted upshifting upshifts upshoot upshooting upshoots upshore upshot upshots upshoulder upshove upshut upsidaisy upside upsidedown upsideowne upsides upsies upsighted upsiloid upsilon upsilonism upsilons upsit upsitten upsitting upsittings upsize upsized upsizes upsizing upskip upslant upslip upslope upsloping upsmite upsnatch upsoak upsoar upsoared upsoaring upsoars upsolve upspake upspeak upspeaking upspeaks upspear upspeared upspearing upspears upspeed upspew upspin upspire upsplash upspoke upspoken upspout upsprang upspread upspring upspringing upsprings upsprinkle upsprout upsprung upspurt upsring upstaff upstage upstaged upstager upstagers upstages upstaging upstair upstairs upstamp upstand upstander upstanding upstandingly upstandingness upstandingnesses upstands upstare upstared upstares upstaring upstart upstarted upstarting upstartism upstartle upstartness upstarts upstate upstater upstaters upstates upstaunch upstay upstayed upstaying upstays upsteal upsteam upstem upstep upstepped upstepping upsteps upstick upstir upstirred upstirring upstirs upstood upstraight upstream upstreamed upstreaming upstreams upstreamward upstreet upstretch upstretched upstrike upstrive upstroke upstrokes upstruggle upsuck upsun upsup upsurge upsurged upsurgence upsurgences upsurges upsurging upswallow upswarm upswarmed upswarming upswarms upsway upswayed upswaying upsways upsweep upsweeping upsweeps upswell upswelled upswelling upswells upswept upswing upswinging upswings upswollen upswung upsy uptable uptak uptake uptaken uptaker uptakes uptaking uptaks uptalk uptalks uptear uptearing uptears uptemper uptempo uptempos uptend upthrew upthrow upthrowing upthrown upthrows upthrust upthrusted upthrusting upthrusts upthunder upthundered upthundering upthunders uptick upticks uptide uptie uptied upties uptight uptighter uptightest uptightness uptightnesses uptill uptilt uptilted uptilting uptilts uptime uptimes uptook uptore uptorn uptoss uptossed uptosses uptossing uptower uptown uptowner uptowners uptowns uptrace uptrack uptrail uptrain uptrained uptraining uptrains uptree uptrend uptrended uptrending uptrends uptrill uptrilled uptrunk uptruss upttore upttorn uptube uptuck upturn upturned upturning upturnings upturns uptwined uptwist uptying upupa upupidae upupoid upvalley upvaluation upvaluations upvalue upvalued upvalues upvaluing upvomit upwaft upwafted upwafting upwafts upwall upward upwardly upwardness upwardnesses upwards upwarp upwax upway upways upwell upwelled upwelling upwellings upwells upwent upwheel upwhelm upwhir upwhirl upwhirled upwhirling upwhirls upwind upwinding upwinds upwith upwork upwound upwrap upwraps upwreathe upwrench upwring upwrought upyard upyoke ur ura urachal urachi urachovesical urachus urachuses uracil uracils uraei uraemia uraemias uraemic uraeus uraeuses ural urali uralian uralic uraline uralis uralite uralites uralitic uralitisation uralitisations uralitise uralitised uralitises uralitising uralitization uralitizations uralitize uralitized uralitizes uralitizing uralium urals uramido uramil uramilic uramino uran uranalyses uranalysis uranate urania uranian uranias uranic uranide uranides uranidin uranidine uraniferous uraniid uranin uranine uraninite uraninites uranins uranion uranisci uraniscochasma uraniscoplasty uraniscoraphy uraniscorrhaphy uraniscus uraniscuses uranism uranisms uranist uranite uranites uranitic uranium uraniums uranocircite uranographer uranographers uranographic uranographical uranographies uranographist uranographists uranography uranolatry uranolite uranological uranologies uranologist uranology uranometria uranometrical uranometries uranometrist uranometry uranophane uranophobia uranophotography uranoplastic uranoplasties uranoplasty uranoplegia uranorrhaphia uranorrhaphy uranoschisis uranoschism uranoscope uranoscopia uranoscopic uranoscopidae uranoscopy uranospathite uranosphaerite uranospinite uranostaphyloplasty uranostaphylorrhaphy uranotantalite uranothallite uranothorite uranotil uranous uranus uranyl uranylic uranyls urao uraos urare urares urari uraris urarthritis urase urases urataemia urate uratemia urates uratic uratoma uratosis uraturia urazin urazine urazole urb urbacity urbainite urban urbana urbane urbanely urbaneness urbanenesses urbaner urbanest urbanisation urbanisations urbanise urbanised urbanises urbanising urbanism urbanisms urbanist urbanistic urbanistically urbanists urbanite urbanites urbanities urbanity urbanization urbanizations urbanize urbanized urbanizes urbanizing urbanolatry urbanologies urbanologist urbanologists urbanology urbarial urbia urbian urbias urbic urbicolous urbiculture urbification urbify urbinate urbs urceiform urceolar urceolate urceole urceoli urceolus urceoluses urceus urchin urchiness urchinlike urchinly urchins urd urde urdee urds urdu urdy urdé ure urea ureal ureameter ureametry ureas urease ureases urechitin urechitoxin uredema uredia uredial uredidia uredidinia uredinales uredine uredineal uredineous uredines uredinia uredinial urediniospore urediniospores urediniosporic uredinium uredinoid uredinologist uredinology uredinous urediospore urediospores uredium uredo uredos uredosori uredosorus uredosoruses uredospore uredospores uredosporic uredosporiferous uredosporous uredostage uredostages ureic ureid ureide ureides ureido uremia uremias uremic urena urenas urent ureometer ureometry ureosecretory ureotelic ureotelism ureotelisms ures ureses uresis uretal ureter ureteral ureteralgia uretercystoscope ureterectasia ureterectasis ureterectomies ureterectomy ureteric ureteritis ureteritises ureterocele ureterocervical ureterocolostomy ureterocystanastomosis ureterocystoscope ureterocystostomy ureterodialysis ureteroenteric ureteroenterostomy ureterogenital ureterogram ureterograph ureterography ureterointestinal ureterolith ureterolithiasis ureterolithic ureterolithotomies ureterolithotomy ureterolysis ureteronephrectomy ureterophlegma ureteroplasty ureteroproctostomy ureteropyelitis ureteropyelogram ureteropyelography ureteropyelonephritis ureteropyelostomy ureteropyosis ureteroradiography ureterorectostomy ureterorrhagia ureterorrhaphy ureterosalpingostomy ureterosigmoidostomy ureterostegnosis ureterostenoma ureterostenosis ureterostoma ureterostomies ureterostomy ureterotomy ureterouteral ureterovaginal ureterovesical ureters urethan urethane urethanes urethans urethra urethrae urethragraph urethral urethralgia urethrameter urethras urethrascope urethratome urethratresia urethrectomies urethrectomy urethremphraxis urethreurynter urethrism urethritic urethritis urethritises urethroblennorrhea urethrobulbar urethrocele urethrocystitis urethrogenital urethrogram urethrograph urethrometer urethropenile urethroperineal urethrophyma urethroplastic urethroplasty urethroprostatic urethrorectal urethrorrhagia urethrorrhaphy urethrorrhea urethrorrhoea urethroscope urethroscopes urethroscopic urethroscopical urethroscopies urethroscopy urethrosexual urethrospasm urethrostaxis urethrostenosis urethrostomy urethrotome urethrotomic urethrotomy urethrovaginal urethrovesical urethylan urethylane uretic ureylene urf urfirnis urge urged urgeful urgence urgences urgencies urgency urgent urgently urgentness urger urgers urges urginea urging urgingly urgings urheen uria urial urials uric uricacidemia uricaciduria uricaemia uricaemic uricase uricases uricemia uricemic uricolysis uricolytic uriconian uricosuric uricotelic uricotelism uricotelisms uridine uridines uridrosis uriel urim urinaemia urinaemic urinal urinalist urinals urinalyses urinalysis urinant urinaries urinarium urinary urinate urinated urinates urinating urination urinations urinative urinator urinators urine urined urinemia urinemias urinemic urines uriniferous urining uriniparous urinocryoscopy urinogenital urinogenitary urinogenous urinologies urinologist urinology urinomancy urinometer urinometers urinometric urinometry urinoscopic urinoscopies urinoscopist urinoscopy urinose urinosexual urinous urinousness urite urites urlar urled urling urluch urman urmans urn urna urnae urnal urned urnfield urnfields urnflower urnful urnfuls urning urningism urnings urnism urnlike urnmaker urns uroacidimeter uroazotometer urobenzoic urobilin urobilinemia urobilinogen urobilinogenuria urobilinuria urocanic urocele urocerid urochloralic urochord urochorda urochordal urochordata urochordate urochordates urochords urochrome urochromes urochromogen urochs urocyanogen urocyon urocyst urocystic urocystis urocystitis urodaeum urodelan urodelans urodele urodeles urodella urodelous urodialysis urodynia uroedema uroerythrin urofuscohematin urogaster urogastric urogenic urogenital urogenitary urogenous uroglaucin urogomphi urogomphus urogram urograms urographic urographies urography urogravimeter urohaematin urohematin urohyal urokinase urokinases urol urolagnia urolagnias uroleucic uroleucinic urolith urolithiases urolithiasis urolithic urolithology uroliths urologic urological urologies urologist urologists urology urolutein urolytic uromancy uromantia uromantist uromelanin uromelus uromere uromeres uromeric urometer uronephrosis uronic uronology uroo uroodal uropatagium urophaein urophanic urophanous urophein urophi urophobia urophthisis urophycis uroplania uropod uropodal uropodous uropods uropoetic uropoieses uropoiesis uropoietic uroporphyrin uropsile uropsilus uroptysis uropygi uropygia uropygial uropygium uropygiums uropyloric urorosein urorrhagia urorrhea urorubin urosaccharometry urosacral urosaurus uroschesis uroscopic uroscopies uroscopist uroscopists uroscopy urosepsis uroseptic uroses urosis urosomatic urosome urosomes urosomite urosomitic urostea urostealith urostegal urostege urosteges urostegite urostegites urosteon urosternite urosthene urosthenic urostomies urostomy urostylar urostyle urostyles urotoxia urotoxic urotoxicity urotoxies urotoxin urotoxy uroxanate uroxanic uroxanthin uroxin urp urped urping urpriser urps urradhus urrhodin urrhodinic urs ursa ursae ursal ursicidal ursicide ursid ursidae ursids ursiform ursigram ursine ursinia ursoid ursolic urson ursone ursons ursprache ursuk ursuline ursus urtext urtexte urtexts urth urtica urticaceae urticaceous urtical urticales urticant urticants urticaria urticarial urticarias urticarious urticas urticate urticated urticates urticating urtication urtications urticose urtite urubu urubupunga urubus urucu urucum urucuri urucury uruguay uruguayan uruguayans uruisg urunday urus uruses urushi urushic urushinic urushiol urushiols urushiye urutu urva urvas us usa usabilities usability usable usableness usablenesses usably usage usager usagers usages usance usances usant usar usara usaron usation usaunce usaunces usbeg usbek use useability useable useableness useablenesses useably used usedly usedness usednt usee useful usefullish usefully usefulness usefulnesses usehold useless uselessly uselessness uselessnesses usenet usent user username usernames users uses ush ushabti ushabtis ushabtiu ushas usher usherance usherdom ushered usherer usheress usheresses usherette usherettes usherian ushering usherings usherism usherless ushers ushership usherships usine using usings usitate usitative usnea usneaceae usneaceous usneae usneas usneoid usnic usnin usninic uspeaking uspoke uspoken usquabae usquabaes usque usquebae usquebaes usquebaugh usquebaughs usques usself ussels usselven ussingite ussr ust uster ustilaginaceae ustilaginaceous ustilaginales ustilagineous ustilaginoidea ustilaginous ustilago ustion ustions ustorious ustulate ustulation ustulations usu usual usualism usually usualness usualnesses usuals usuary usucapient usucapients usucapion usucapionary usucapions usucapt usucaptable usucapted usucaptible usucapting usucaption usucaptions usucaptor usucapts usufruct usufructed usufructing usufructs usufructuaries usufructuary usufruit usumbura usure usured usurer usurerlike usurers usures usuress usuresses usuries usuring usurious usuriously usuriousness usuriousnesses usurous usurp usurpation usurpations usurpative usurpatively usurpatory usurpature usurpatures usurped usurpedly usurper usurpers usurpership usurping usurpingly usurpings usurpment usurpor usurpress usurps usurption usury usw usward uswards ut uta utah utahan utahans utahite utahraptor utai utas utases utc utch utchy ute utees utend utensil utensile utensils uteralgia uterectomies uterectomy uteri uterine uteritis uteritises utero uteroabdominal uterocele uterocervical uterocystotomy uterofixation uterogestation uterogestations uterogram uterography uterointestinal uterolith uterology uteromania uteromaniac uteromaniacal uterometer uteroovarian uteroparietal uteropelvic uteroperitoneal uteropexia uteropexy uteroplacental uteroplasty uterosacral uterosclerosis uteroscope uterotomies uterotomy uterotonic uterotubal uterovaginal uteroventral uterovesical uterus uteruses utes utfangenethef utfangethef utfangthef utfangthief uther uti utible utica utick util utile utilidor utilidors utilisability utilisable utilisation utilisations utilise utilised utiliser utilisers utilises utilising utilitarian utilitarianise utilitarianised utilitarianises utilitarianising utilitarianism utilitarianisms utilitarianist utilitarianize utilitarianized utilitarianizes utilitarianizing utilitarianly utilitarians utilities utility utilizability utilizable utilization utilizations utilize utilized utilizer utilizers utilizes utilizing utinam utis utises utlagary utlilized utmost utmostness utmosts utnapishtim utopia utopian utopianise utopianised utopianiser utopianisers utopianises utopianising utopianism utopianisms utopianist utopianize utopianized utopianizer utopianizers utopianizes utopianizing utopians utopias utopiast utopiasts utopism utopisms utopist utopistic utopists utopographer utraquist utraquistic utrecht utricle utricles utricul utricular utricularia utricularias utriculate utriculi utriculiferous utriculiform utriculitis utriculoid utriculoplastic utriculoplasty utriculosaccular utriculose utriculus utriform utrillo utrubi utrum uts utsuk utter utterability utterable utterableness utterablenesses utterance utterances utterancy uttered utterer utterers utterest uttering utterings utterless utterly uttermost uttermosts utterness utternesses utters utu utug utum uturuncu uucpnet uv uva uvae uval uvala uvalha uvanite uvarovite uvarovites uvas uvate uvea uveal uveas uveitic uveitides uveitis uveitises uveous uvic uvid uviol uvitic uvitinic uvito uvitonic uvre uvres uvrou uvula uvulae uvular uvularia uvulariaceae uvularly uvulars uvulas uvulatomies uvulatomy uvulectomies uvulectomy uvulitis uvulitises uvuloptosis uvulotome uvulotomies uvulotomy uvver ux uxor uxorial uxoriality uxorially uxoricidal uxoricide uxoricides uxorilocal uxorious uxoriously uxoriousness uxoriousnesses uxoris uzan uzara uzarin uzaron uzbak uzbeg uzbek uzbekistan uzbekiston uzi v va vaad vaadim vaagmaer vaagmar vaagmer vaalite vac vacabond vacance vacances vacancies vacancy vacandi vacant vacante vacanthearted vacantheartedness vacantia vacantly vacantness vacantnesses vacantry vacatable vacate vacated vacates vacating vacation vacational vacationed vacationer vacationers vacationing vacationist vacationists vacationland vacationlands vacationless vacations vacatur vacaturs vaccaria vaccary vaccenic vaccicide vaccigenous vaccina vaccinable vaccinal vaccinas vaccinate vaccinated vaccinates vaccinating vaccination vaccinationist vaccinations vaccinator vaccinators vaccinatory vaccine vaccinee vaccinees vaccinella vaccines vaccinia vacciniaceous vaccinial vaccinias vaccinifer vacciniform vacciniola vaccinisation vaccinist vaccinium vacciniums vaccinization vaccinogenic vaccinogenous vaccinoid vaccinophobia vaccinotherapy vache vacherin vacherins vachette vacillancy vacillant vacillate vacillated vacillates vacillating vacillatingly vacillation vacillations vacillator vacillators vacillatory vacked vacking vacoa vacona vacoua vacouf vacs vacua vacual vacuate vacuated vacuates vacuating vacuation vacuations vacuefy vacuist vacuists vacuit vacuities vacuity vacuo vacuolar vacuolary vacuolate vacuolated vacuolation vacuolations vacuole vacuoles vacuolisation vacuolisations vacuolization vacuolizations vacuome vacuometer vacuous vacuously vacuousness vacuousnesses vacuua vacuum vacuuma vacuumed vacuuming vacuumise vacuumize vacuums vada vadas vade vaded vadelect vades vadimonium vadimony vading vadis vadium vadose vaduz vady vae vaes vafrous vag vagabond vagabondage vagabondager vagabondages vagabonded vagabondia vagabonding vagabondise vagabondised vagabondiser vagabondises vagabondish vagabondising vagabondism vagabondisms vagabondismus vagabondize vagabondized vagabondizer vagabondizes vagabondizing vagabondry vagabonds vagal vagally vagancy vagant vaganti vagarian vagaries vagarious vagariously vagarish vagarisome vagarist vagaristic vagarity vagary vagas vagation vagbondia vage vagi vagient vagiform vagile vagilities vagility vagina vaginae vaginal vaginalectomies vaginalectomy vaginaless vaginalitis vaginally vaginant vaginas vaginate vaginated vaginectomies vaginectomy vaginervose vaginicoline vaginicolous vaginiferous vaginipennate vaginismus vaginismuses vaginitides vaginitis vaginitises vaginoabdominal vaginocele vaginodynia vaginofixation vaginolabial vaginometer vaginomycosis vaginoperineal vaginoperitoneal vaginopexy vaginoplasty vaginoscope vaginoscopy vaginotome vaginotomies vaginotomy vaginovesical vaginovulvar vaginula vaginulae vaginulate vaginule vaginules vagitus vagituses vagoaccessorius vagodepressor vagoglossopharyngeal vagogram vagolysis vagosympathetic vagotomies vagotomize vagotomy vagotonia vagotonias vagotonic vagotony vagotropic vagotropism vagous vagrance vagrancies vagrancy vagrant vagrantise vagrantism vagrantize vagrantlike vagrantly vagrantness vagrants vagrate vagrom vague vagued vagueing vaguely vagueness vaguenesses vaguer vagues vaguest vaguing vaguio vaguios vaguish vaguity vagulous vagus vahana vahine vahines vahini vaidya vaidyas vail vailable vailed vailing vails vain vainer vainesse vainesses vainest vainful vaingloried vainglories vainglorious vaingloriously vaingloriousness vaingloriousnesses vainglory vainglorying vainly vainness vainnesses vair vairagi vaire vairee vairier vairiest vairs vairy vairé vaishnava vaishnavism vaisnavism vaisya vaivode vaivodes vaivodeship vaivodeships vajra vajrasana vakass vakasses vakeel vakeels vakia vakil vakils vakkaliga val valance valanced valances valanche valancing valbellite valdez valdosta vale valebant valediction valedictions valedictorian valedictorians valedictories valedictorily valedictory valence valences valencia valencianite valencias valenciennes valencies valency valens valent valentiam valentine valentines valentinian valentinite valeral valeraldehyde valeramid valeramide valerate valerates valerian valeriana valerianaceae valerianaceous valerianate valerianella valerianic valerians valeric valerin valerolactone valerone valeryl valerylene vales valet valeta valetage valetaille valetas valetdom valete valeted valetes valethood valeting valetings valetism valetry valets valetta valetude valetudinaire valetudinarian valetudinarianism valetudinarianisms valetudinarians valetudinaries valetudinariness valetudinarist valetudinarium valetudinary valeur valew valeward valewe valgoid valgous valgus valguses valhall valhalla vali valiance valiances valiancies valiancy valiant valiantly valiantness valiantnesses valiants valid validatable validate validated validates validating validation validations validatory valider validest validification validities validity validly validness validnesses validous valinch valine valines valinomycin valinomycins valis valise valiseful valises valiship valium valkyr valkyrie valkyries valkyrs vall valla vallancy vallar vallary vallate vallated vallates vallating vallation vallations vallecula valleculae vallecular valleculate valletta vallevarite valley valleyed valleyful valleyite valleylet valleylike valleys valleyward valleywise vallicula valliculae vallicular vallidom vallies vallis vallisneria vallisneriaceous vallonia vallonias vallum vallums valmy valois valonea valoneas valonia valoniaceous valonias valor valorem valorisation valorisations valorise valorised valorises valorising valorization valorizations valorize valorized valorizes valorizing valorous valorously valorousness valorousnesses valors valour valourousness valours valouwe valparaiso valpolicella valpolicellas valproate valproates valsalvan valse valsed valses valsing valsoid valuable valuableness valuablenesses valuables valuably valuate valuated valuates valuating valuation valuational valuationally valuations valuative valuator valuators value valued valueless valuelessness valuelessnesses valuer valuers values valuing valure valuta valutas valva valvae valval valvar valvassor valvassors valvate valve valved valveless valvelet valvelets valvelike valveman valvemen valves valviferous valviform valving valvotomy valvula valvulae valvular valvulate valvule valvules valvulitis valvulitises valvuloplasties valvuloplasty valvulotome valvulotomy valyl valylene vambrace vambraced vambraces vambrash vamfont vammazsa vamoose vamoosed vamooses vamoosing vamos vamose vamosed vamoses vamosing vamp vamped vamper vampers vampey vamphorn vamping vampings vampire vampired vampireproof vampires vampiric vampirical vampiring vampirise vampirised vampirises vampirish vampirising vampirism vampirisms vampirize vampirized vampirizes vampirizing vampish vampishly vamplate vamplates vampproof vamps vampy vampyre vamure van vanadate vanadates vanadiate vanadic vanadiferous vanadinite vanadinites vanadious vanadium vanadiums vanadosilicate vanadous vanadyl vanaprastha vanaspati vanaspatis vanbrace vancocin vancomycin vancourier vancouver vanda vandal vandalic vandalisation vandalisations vandalise vandalised vandalises vandalish vandalising vandalism vandalisms vandalistic vandalization vandalizations vandalize vandalized vandalizes vandalizing vandalroot vandals vandas vandelas vandyke vandyked vandykes vandyking vane vaned vaneless vanelike vanellus vanes vanessa vanessas vanessian vanfoss vang vangee vangeli vanglo vangloe vangs vanguard vanguardism vanguardisms vanguardist vanguardists vanguards vangueria vanilla vanillal vanillaldehyde vanillas vanillate vanille vanillery vanillic vanillin vanilline vanillinic vanillins vanillism vanilloes vanillon vanilloyl vanillyl vanir vanish vanished vanisher vanishers vanishes vanishing vanishingly vanishings vanishment vanishments vanitarianism vanitas vanitases vanitied vanities vanitories vanitory vanitous vanity vanjarrah vanlay vanload vanloads vanman vanmen vanmost vanned vanner vannerman vannermen vanners vannet vanning vannings vannus vanpool vanpooled vanpooling vanpoolings vanpools vanquish vanquishable vanquished vanquisher vanquishers vanquishes vanquishing vanquishment vanquishments vans vansire vant vantage vantaged vantageless vantages vantaging vantbrace vantbraces vantbrass vanterie vantguard vants vanuatu vanward vapid vapider vapidest vapidism vapidities vapidity vapidly vapidness vapidnesses vapocauterization vapographic vapography vapor vaporabilities vaporability vaporable vaporarium vaporary vaporate vapored vaporer vaporers vaporescence vaporescences vaporescent vaporetti vaporetto vaporettos vaporiferous vaporiferousness vaporific vaporiform vaporimeter vaporimeters vaporiness vaporing vaporingly vaporings vaporisable vaporisation vaporisations vaporise vaporised vaporiser vaporisers vaporises vaporish vaporishness vaporishnesses vaporising vaporium vaporizability vaporizable vaporization vaporizations vaporize vaporized vaporizer vaporizers vaporizes vaporizing vaporless vaporlike vaporograph vaporographic vaporose vaporoseness vaporosities vaporosity vaporous vaporously vaporousness vaporousnesses vapors vaportight vaporware vaporwares vapory vapotherapy vapour vapourabilities vapourability vapourable vapoured vapourer vapourers vapourescent vapourific vapourimeter vapouring vapouringly vapourings vapourisable vapourise vapourised vapouriser vapourish vapourishness vapourishnesses vapourising vapourizable vapourization vapourize vapourized vapourizer vapourizing vapourless vapourlike vapourose vapourous vapourously vapours vapourware vapourwares vapoury vappa vapulary vapulate vapulated vapulates vapulating vapulation vapulations vapulatory vaquero vaqueros var vara varactor varactors varahan varan varangian varanian varanid varanidae varans varanus varas vardapet vardies vardingale vardy vare varec varech varechs varecs vareheaded varella vares vareuse vareuses vargueno varguenos vargueño vargueños vari varia variabilities variability variable variableness variablenesses variables variably variac variadic variagles variance variances variancy variant variantly variants varias variate variated variates variating variation variational variationally variationist variationists variations variatious variative variatively variator varical varicated varication variceal varicella varicellar varicellas varicellate varicellation varicelliform varicelloid varicellous varices variciform varicoblepharon varicocele varicoceles varicoid varicolored varicolorous varicoloured varicolourous varicose varicosed varicoseness varicoses varicosis varicosities varicosity varicotomies varicotomy varicula varidical varied variedly variedness variednesses variegate variegated variegates variegating variegation variegations variegator variegators varier variers varies varietal varietally varietals varietas varieties varietism varietist varietur variety varificatory varifocal varifocals variform variformed variformity variformly varify varigradation varindor varing vario variocoupler variocuopler variola variolar variolas variolate variolated variolates variolating variolation variolations variolator variolators variole varioles variolic varioliform variolite variolites variolitic variolitization variolization varioloid varioloids variolosser variolous variolovaccine variolovaccinia variometer variometers variorum variorums varios variotinted various variously variousness variousnesses variscite variscites varisized varisse varistor varistors varitype varityped varityping varitypist varitypists varix varkas varlet varletaille varletess varletesses varletries varletry varlets varletto varlettos varmannie varment varments varmint varmints varna varnas varnashrama varnish varnished varnisher varnishers varnishes varnishing varnishings varnishlike varnishment varnishy varnpliktige varnsingite varoom varoomed varooming varooms varroa varroas varronian vars varsal varsha varsiter varsities varsity varsoviana varsovienne varsoviennes vartabed vartabeds varuna varus varuses varve varved varvel varvelled varvels varves vary varying varyingly varyings vas vasa vasal vasalled vascla vascon vascula vascular vascularisation vascularisations vascularise vascularised vascularises vascularising vascularities vascularity vascularization vascularizations vascularize vascularized vascularizes vascularizing vascularly vasculated vasculature vasculatures vasculiferous vasculiform vasculitides vasculitis vasculogenesis vasculolymphatic vasculomotor vasculose vasculous vasculum vasculums vase vasectomies vasectomise vasectomised vasectomising vasectomize vasectomized vasectomizes vasectomizing vasectomy vaseful vaselet vaselike vaseline vaselines vasemaker vasemaking vases vasewise vasework vashegyite vasicentric vasicine vasifactive vasiferous vasiform vasoactive vasoactivities vasoactivity vasoconstricting vasoconstriction vasoconstrictions vasoconstrictive vasoconstrictor vasoconstrictors vasoconstrictory vasocorona vasodentinal vasodentine vasodepressor vasodilatation vasodilatations vasodilatatory vasodilating vasodilation vasodilations vasodilator vasodilators vasodilatory vasoepididymostomy vasofactive vasoformative vasoganglion vasohypertonic vasohypotonic vasoinhibitor vasoinhibitors vasoinhibitory vasoligation vasoligature vasomotion vasomotor vasomotorial vasomotoric vasomotory vasoneurosis vasoparesis vasopressin vasopressins vasopressor vasopressors vasopuncture vasoreflex vasorrhaphy vasosection vasospasm vasospasms vasospastic vasostimulant vasostomy vasotocin vasotocins vasotomies vasotomy vasotonic vasotribe vasotripsy vasotrophic vasovagal vasovesiculectomy vasquine vassail vassails vassal vassalage vassalages vassaldom vassaled vassaless vassalesses vassalic vassaling vassalise vassalised vassalising vassalism vassality vassalize vassalized vassalizing vassalled vassalless vassalling vassalries vassalry vassals vassalship vassar vast vastate vastation vaster vastest vastidities vastidity vastier vastiest vastily vastiness vastities vastitude vastitudes vastity vastly vastness vastnesses vasts vastus vasty vasu vat vatable vates vatful vatfuls vatic vatical vatically vatican vaticanal vaticanic vaticanical vaticanism vaticanist vaticide vaticides vaticinal vaticinant vaticinate vaticinated vaticinates vaticinating vaticination vaticinations vaticinator vaticinators vaticinatory vaticinatress vaticinatrix vaticine vatmaker vatmaking vatman vatmen vats vatted vatter vatters vatting vatu vatus vau vaucheriaceous vaudeville vaudevillean vaudevilleans vaudevilles vaudevillian vaudevillians vaudevillist vaudevillists vaudios vaudois vaudoo vaudooed vaudooing vaudoos vaudoux vaudouxed vaudouxes vaudouxing vaudy vaugnerite vauguelinite vault vaultage vaultages vaulted vaultedly vaulter vaulters vaultier vaultiest vaulting vaultingly vaultings vaultlike vaults vaulty vaumure vaunce vaunced vaunces vauncing vaunt vauntage vauntages vaunted vaunter vaunteries vaunters vauntery vauntful vauntie vauntier vauntiest vauntiness vaunting vauntingly vauntings vauntlay vauntmure vaunts vaunty vauquelinite vaurien vaus vaut vaute vauted vautes vauting vauts vauxite vav vavasor vavasories vavasors vavasory vavasour vavasours vavassor vavassors vavs vaw vaward vawards vawntie vaws vawte vawted vawtes vawting vax vayu vb vc vcr vd veadar veadore veal veale vealed vealer vealers veales vealier vealiest vealiness vealing veallike veals vealskin vealy veau vectigal vection vectis vectitation vectograph vectographic vectographs vector vectorcardiogram vectorcardiographic vectorcardiography vectored vectorial vectorially vectoring vectorings vectorisation vectorisations vectorise vectorised vectorises vectorising vectorization vectorizations vectorize vectorized vectorizes vectorizing vectors vectorscope vectorscopes vecture veda vedalia vedalias vedana vedanta vedantic vedda veddoid vedet vedette vedettes vedic vedika vedism vedro veduis veduta vedute vedutista vedutisti vee veejay veejays veen veena veenas veep veepee veepees veeps veer veerable veered veeries veering veeringly veerings veers veery vees vefry veg vega vegan veganic veganism veganisms vegans vegas vegasite vegeburger vegeburgers vegeculture vegelate vegelates veges vegetability vegetable vegetablelike vegetables vegetablewise vegetablise vegetablize vegetably vegetal vegetalcule vegetality vegetals vegetant vegetarian vegetarianism vegetarianisms vegetarians vegetate vegetated vegetates vegetating vegetatings vegetation vegetational vegetationally vegetationless vegetations vegetative vegetatively vegetativeness vegetativenesses vegete vegeteness vegeterianism vegetism vegetist vegetists vegetive vegetives vegetivorous vegetoalkali vegetoalkaline vegetoalkaloid vegetoanimal vegetobituminous vegetocarbonaceous vegetomineral vegetous vegged vegges veggie veggieburger veggieburgers veggies vegging vegie vegies vegs vehemence vehemences vehemencies vehemency vehement vehemently vehicle vehicles vehicula vehicular vehicularly vehiculary vehiculate vehiculation vehiculatory vehiculum vehm vehme vehmgericht vehmic vehmique vei veigle veil veiled veiledly veiledness veiler veilers veilier veiliest veiling veilings veilless veilleuse veilleuses veillike veilmaker veilmaking veils veiltail veiltails veily vein veinage veinal veinbanding veined veiner veiners veinery veinier veiniest veininess veining veinings veinless veinlet veinlets veinlike veinous veins veinstone veinstones veinstuff veinstuffs veinule veinules veinulet veinulets veinwise veinwork veiny vejoces vel vela velal velamen velamentous velamentum velamina velar velardenite velaria velaric velarisation velarisations velarise velarised velarises velarising velarium velariums velarization velarizations velarize velarized velarizes velarizing velars velary velate velated velating velation velatura velaturas velban velcro velcros veld veldcraft veldman velds veldschoen veldschoenen veldschoens veldskoen veldskoens veldt veldts veldtschoen veldtsman vele velella velellidous veles veleta veletas velic velicate veliferous veliform veliger veligerous veligers velitation velitations velites vell vellala velleda velleities velleity vellenage vellenages vellet vellets vellicate vellicated vellicates vellicating vellication vellications vellicative vellinch vellincher vellon vellons vellosin vellosine velloziaceous vells vellum vellums vellumy vellus velluses vellute velo veloce velociman velocimeter velocimeters velocimetries velocimetry velocious velociously velocipedal velocipede velocipedean velocipedeans velocipeded velocipeder velocipeders velocipedes velocipedestrian velocipedestrians velocipedian velocipedians velocipedic velocipeding velocipedist velocipedists velociraptor velociraptors velocities velocitous velocity velodrome velodromes velometer velour velours velout velouta veloute veloutes veloutine veloutines velouté veloutés velskoen velskoens velte veltfare velum velumen velumina velunge velure velured velures veluring velutinous velveeta velveret velverets velvet velvetbreast velveted velveteen velveteened velveteens velvetier velvetiest velvetiness velvetinesses velveting velvetings velvetleaf velvetlike velvetmaker velvetmaking velvetry velvets velvetseed velvetweed velvetwork velvety velyarde vena venacularism venada venae venal venalisation venalise venalities venality venalization venalize venally venalness venanzite venatic venatical venatically venation venational venations venator venatorial venatorious venators venatory vencola vend vendable vendables vendace vendaces vendage vendages vendange vendanges vendaval vendean vended vendee vendees vendemiaire vender venders vendetta vendettas vendettist vendettists vendeuse vendeuses vendibilities vendibility vendible vendibleness vendiblenesses vendibles vendibly vendicate vending vendis vendises vendiss vendisses venditate venditation venditations vendition venditions venditor vendor vendors vends vendue vendues venectomy veneer veneered veneerer veneerers veneering veneerings veneers venefic venefical venefically venefice veneficious veneficiously veneficness veneficous veneficously venemous venenate venenated venenately venenates venenating venenation venene venenes veneniferous venenific venenosalivary venenose venenosi venenosity venenosus venenosusi venenous venenousness venepuncture venepunctures venerabilities venerability venerable venerableness venerablenesses venerably veneracean veneraceous veneral venerance venerant venerate venerated venerates venerating veneration venerational venerations venerative veneratively venerativeness venerator venerators venere venereal venereally venerealness venerean venereans venereological venereologies venereologist venereologists venereology venereophobia venereous venerer venerers venerial venerian veneridae veneries veneriform veneris venero venerology veneros venerous venery venesect venesection venesections venesector venesia veneti venetia venetian venetians venetic veneto veneur venewe venewes veney veneys venezia venezolano venezuela venezuelan venezuelans venge vengeable vengeably vengeance vengeancely vengeances vengeant venged vengeful vengefully vengefulness vengefulnesses vengement vengements vengeously venger vengers venges venging veniable venial venialities veniality venially venialness venialnesses veniam venice venidium venidiums venie venin venine venines venins veniplex venipuncture venipunctures venire venireman veniremen venires venise venisection venisections venison venisonivorous venisonlike venisons venisuture venite venites venkisen venlin vennel vennels venner venoatrial venoauricular venogram venograms venographic venographical venographies venography venologies venology venom venomed venomer venomers venoming venomisation venomise venomization venomize venomless venomly venomness venomosalivary venomous venomously venomousness venomousnesses venomproof venoms venomsome venomy venosal venosclerosis venose venosinal venosities venosity venostasis venous venously venousness venousnesses vent venta ventage ventages ventail ventaile ventailes ventails ventana ventanas ventayle ventayles vented venter ventered ventering venters venthole ventiduct ventiducts ventifact ventifacts ventige ventiges ventil ventilable ventilagin ventilate ventilated ventilates ventilating ventilation ventilations ventilative ventilator ventilators ventilatory ventils ventin venting ventings ventless ventolin ventometer ventose ventoseness ventosities ventosity ventoy ventpiece ventrad ventral ventrally ventralmost ventrals ventralward ventre ventred ventres ventric ventricle ventricles ventricolumna ventricolumnar ventricornu ventricornual ventricose ventricoseness ventricosities ventricosity ventricous ventricular ventricularis ventricule ventricules ventriculi ventriculite ventriculitic ventriculogram ventriculographies ventriculography ventriculopuncture ventriculoscopy ventriculose ventriculous ventriculus ventricumbent ventriduct ventrifixation ventrilateral ventrilocution ventriloqual ventriloqually ventriloque ventriloquial ventriloquially ventriloquies ventriloquise ventriloquised ventriloquises ventriloquising ventriloquism ventriloquisms ventriloquist ventriloquistic ventriloquists ventriloquize ventriloquized ventriloquizes ventriloquizing ventriloquous ventriloquously ventriloquy ventriloquys ventrimesal ventrimeson ventrine ventring ventrings ventripotence ventripotency ventripotent ventripotential ventripyramid ventroaxial ventroaxillary ventrocaudal ventrocystorrhaphy ventrodorsad ventrodorsal ventrodorsally ventrofixation ventrohysteropexy ventroinguinal ventrolateral ventrolaterally ventromedial ventromedially ventromedian ventromesal ventromesial ventromyel ventroposterior ventroptosia ventroptosis ventroscopy ventrose ventrosity ventrosuspension ventrotomies ventrotomy ventrous vents venture ventured venturer venturers ventures venturesome venturesomely venturesomeness venturesomenesses venturi venturine venturing venturingly venturings venturis venturous venturously venturousness venturousnesses venue venues venula venulae venular venule venules venulose venulous venus venusberg venuses venushair venusian venusians venust venusty venville venvilles veny veps vepse vepsian ver vera veracious veraciously veraciousness veraciousnesses veracities veracity veracruz verament veranda verandaed verandah verandahed verandahs verandas verapamil verapamils verascope veratral veratralbin veratralbine veratraldehyde veratrate veratria veratrias veratric veratridin veratridine veratridines veratrin veratrina veratrine veratrines veratrinize veratrinized veratrinizing veratrins veratrize veratrized veratrizing veratroidine veratrol veratrole veratroyl veratrum veratrums veratryl veratrylidene veray verb verbal verbalisation verbalisations verbalise verbalised verbaliser verbalisers verbalises verbalising verbalism verbalisms verbalist verbalistic verbalists verbalities verbality verbalizable verbalization verbalizations verbalize verbalized verbalizer verbalizers verbalizes verbalizing verballed verballing verbally verbals verbarian verbarians verbarium verbasco verbascose verbascum verbate verbatim verbena verbenaceae verbenaceous verbenalike verbenalin verbenas verbenate verbenated verbenating verbene verbenol verbenone verberate verberated verberates verberating verberation verberations verberative verbesina verbesserte verbiage verbiages verbicide verbicides verbiculture verbid verbids verbification verbifications verbified verbifies verbify verbifying verbigerate verbigerated verbigerates verbigerating verbigeration verbigerations verbigerative verbile verbiles verbless verbolatry verbomania verbomaniac verbomotor verbose verbosely verboseness verbosenesses verboser verbosest verbosities verbosity verboten verbous verbs verbum verby verchok verd verdancies verdancy verdandi verdant verdantly verdantness verde verdea verdelho verdelhos verderer verderers verderership verderor verderors verdet verdets verdetto verdi verdict verdicts verdigris verdigrised verdigrises verdigrising verdigrisy verdin verdins verdit verdite verditer verditers verdites verdits verdolagas verdour verdoy verdugo verdugoship verdun verdure verdured verdureless verdurer verdures verdurous verdurousness verdurousnesses verecund verecundity verecundness veredict veredicto veredictum verek verenda veretilliform veretillum verey vergaloo verge vergeboard verged vergence vergences vergencies vergency vergent vergentness verger vergeress vergerism vergerless vergers vergership vergerships vergery verges vergi vergiform vergil vergilian verging verglas verglases vergobret vergoyne vergunning veri veridic veridical veridicalities veridicality veridically veridicalness veridicous veridity verier veriest verifiabilities verifiability verifiable verifiableness verifiablenesses verifiably verificate verification verifications verificative verificatory verified verifier verifiers verifies verify verifying verily veriment verine veriscope verisimilar verisimilarly verisimilities verisimilitude verisimilitudes verisimilitudinous verisimility verisimilous verism verismo verismos verisms verist veristic verists veritability veritable veritableness veritablenesses veritably veritas veritates verite verites verities veritism veritist veritistic verity verjuice verjuiced verjuices verkramp verkrampte verkramptes verlig verligte verligtes vermal vermeil vermeiled vermeiles vermeiling vermeille vermeilled vermeilles vermeilling vermeils vermell vermells vermenging vermeologist vermeology vermes vermetid vermetidae vermetio vermian vermicelli vermicellis vermiceous vermicidal vermicide vermicides vermicious vermicle vermicular vermicularly vermiculate vermiculated vermiculates vermiculating vermiculation vermiculations vermicule vermicules vermiculite vermiculites vermiculose vermiculosity vermiculous vermiculture vermicultures vermiform vermiformis vermiformity vermiformous vermifugal vermifuge vermifuges vermifugous vermigerous vermigrade vermil vermilies vermilinguial vermilion vermilioned vermilionette vermilioning vermilionise vermilionize vermilions vermilled vermilling vermillion vermillions vermils vermily vermin verminal verminate verminated verminates verminating vermination verminations vermined verminer verminicidal verminicide verminiferous verminlike verminly verminosis verminous verminously verminousness verminproof vermins verminy vermiparous vermiparousness vermiphobia vermis vermises vermivorous vermivorousness vermix vermont vermonter vermonters vermorel vermoulu vermoulue vermouth vermouths vermuth vermuths vernaccia vernacle vernacles vernacular vernacularisation vernacularisations vernacularise vernacularised vernacularises vernacularising vernacularism vernacularisms vernacularist vernacularists vernacularities vernacularity vernacularization vernacularizations vernacularize vernacularized vernacularizes vernacularizing vernacularly vernacularness vernaculars vernaculate vernaculous vernage vernal vernalisation vernalisations vernalise vernalised vernalises vernalising vernalities vernality vernalization vernalizations vernalize vernalized vernalizes vernalizing vernally vernant vernation vernations verneuk verneuker verneukery vernicle vernicles vernicose vernier verniers vernile vernility vernin vernine vernissage vernissages vernition vernix vernixes vernon vernonia vernoniaceous vernonin verona veronal veronalism veronals veronese veronica veronicas veronique verpa verquere verqueres verquire verquires verray verrazano verrazzano verre verrel verrell verrels verrey verriare verriculate verriculated verricule verriere verruca verrucae verrucano verrucariaceous verrucarioid verrucas verrucated verruciferous verruciform verrucose verrucoseness verrucosis verrucosities verrucosity verrucous verruculose verruga verrugas verry vers versa versabilities versability versable versableness versailles versal versals versant versants versate versatec versatile versatilely versatileness versatilenesses versatilities versatility versation versative verse versecraft versed verseless verselet verselets versemaker versemaking verseman versemanship versemen versemonger versemongering versemongery verser versers verses versesmith verset versets versette verseward versewright versicle versicler versicles versicolor versicolorate versicolored versicolorous versicolour versicolourate versicoloured versicolourous versicular versicule versiculi versiculus versiera versifiable versifiaster versification versifications versificator versificators versificatory versificatrix versified versifier versifiers versifies versiform versify versifying versiloquy versin versine versines versing versings versins version versional versioner versioners versionise versionist versionists versionize versions versipel verslibrist verslibriste verslibristes verslibrists verso versor versos verst versta verste verstes versts versual versus versute vert vertebra vertebrae vertebral vertebraless vertebrally vertebrarium vertebrarterial vertebras vertebrata vertebrate vertebrated vertebrates vertebration vertebrations vertebre vertebrectomy vertebriform vertebroarterial vertebrobasilar vertebrochondral vertebrocostal vertebrodymus vertebrofemoral vertebroiliac vertebromammary vertebrosacral vertebrosternal verted vertep vertex vertexes verthandi vertibility vertible vertibleness vertical verticaled verticaling verticalism verticalities verticality verticalled verticalling vertically verticalness verticalnesses verticals vertices verticil verticillary verticillaster verticillasters verticillastrate verticillate verticillated verticillately verticillation verticillations verticilli verticilliaceous verticilliose verticilliosis verticillium verticilliums verticillus verticils verticities verticity verticomental verticordious vertiginate vertigines vertiginous vertiginously vertiginousness vertiginousnesses vertigo vertigoes vertigos vertilinear vertimeter verting vertiport vertiports verts vertu vertue vertues vertugal vertumnus vertuous vertus verty veruled verumontana verumontanum verumontanums verus veruta verutum vervain vervainlike vervains verve vervecean vervecine vervel verveled vervelle vervelled vervels verven vervenia vervens verver verves vervet vervets vervine very verzini verzino vesalius vesania vesanic vesbite vese vesica vesicae vesical vesicant vesicants vesicaria vesicate vesicated vesicates vesicating vesication vesications vesicatories vesicatory vesicle vesicles vesicoabdominal vesicocavernous vesicocele vesicocervical vesicoclysis vesicofixation vesicointestinal vesicoprostatic vesicopubic vesicorectal vesicosigmoid vesicospinal vesicotomy vesicovaginal vesicula vesiculae vesicular vesicularities vesicularity vesicularly vesiculary vesiculase vesiculate vesiculated vesiculates vesiculating vesiculation vesiculations vesicule vesiculectomy vesiculiferous vesiculiform vesiculigerous vesiculitis vesiculobronchial vesiculocavernous vesiculopustular vesiculose vesiculotomy vesiculotubular vesiculotympanic vesiculotympanitic vesiculous vesiculus vesicupapular vesigia veskit vesp vespa vespacide vespal vespas vesper vesperal vesperals vesperian vespering vespers vespertide vespertilian vespertilio vespertilionid vespertilionidae vespertilionids vespertilionine vespertinal vespertine vespery vespetro vespiaries vespiary vespid vespidae vespids vespiform vespine vespoid vespucci vespula vessail vessails vessel vesseled vesselful vesselled vessels vesses vessets vessicnon vessignon vest vesta vestal vestalia vestally vestals vestalship vestas vested vestee vestees vester vestiarian vestiaries vestiarium vestiary vestible vestibula vestibular vestibulary vestibulate vestibule vestibuled vestibules vestibuling vestibulitis vestibulitises vestibulospinal vestibulum vestibulums vestigal vestige vestiges vestigia vestigial vestigially vestigiary vestigium vestiment vestimental vestimentary vestiments vesting vestings vestiture vestitures vestless vestlet vestlike vestment vestmental vestmentary vestmented vestments vestral vestralization vestrical vestries vestrification vestrify vestry vestrydom vestryhood vestryise vestryish vestryism vestryize vestryman vestrymanly vestrymanship vestrymen vestrywoman vests vestuary vestural vesture vestured vesturer vesturers vestures vesturing vesuvian vesuvianite vesuvianites vesuvians vesuviate vesuvin vesuvite vesuvius veszelyite vet veta vetanda vetch vetches vetchier vetchiest vetchlike vetchling vetchlings vetchworm vetchy veter veteran veterancy veteraness veteranise veteranize veterans veterinarian veterinarianism veterinarians veterinaries veterinary vetitive vetivene vetivenol vetiver vetiveria vetivers vetivert vetiverts vetkoek vetkoeks vetkousie veto vetoed vetoer vetoers vetoes vetoing vetoism vetoist vetoistic vetoistical vets vetted vetting vettura vetturas vetture vetturini vetturino vetus vetust vetusty veuglaire veuve vex vexable vexation vexations vexatious vexatiously vexatiousness vexatiousnesses vexatory vexed vexedly vexedness vexednesses vexer vexers vexes vexful vexil vexilla vexillar vexillaries vexillarious vexillary vexillate vexillation vexillations vexillologic vexillological vexillologies vexillologist vexillologists vexillology vexillum vexils vexing vexingly vexingness vexingnesses vexings vext vezir vezirs vfw vg vhf vi via viabilities viability viable viableness viably viaduct viaducts viae viage viaggiatory viagram viagraph viajaca vial vialed vialful vialfuls vialing vialled vialling vialmaker vialmaking vialogue vials viameter viameters viand viande vianden viander viandry viands vias viasma viatic viatica viatical viaticals viatication viaticum viaticums viaticus viatometer viator viatores viatorial viatorially viators vibe vibes vibetoite vibex vibgyor vibices vibioid vibist vibists vibix vibracula vibracular vibracularia vibracularium vibraculoid vibraculum vibraharp vibraharpist vibraharpists vibraharps vibramycin vibrance vibrances vibrancies vibrancy vibrant vibrantly vibrants vibraphone vibraphones vibraphonist vibraphonists vibrate vibrated vibrates vibratile vibratilities vibratility vibrating vibratingly vibration vibrational vibrationally vibrationless vibrations vibratiuncle vibratiuncles vibratiunculation vibrative vibrato vibratoless vibrator vibrators vibratory vibratos vibrio vibrioid vibrion vibriones vibrionic vibrions vibrios vibrioses vibriosis vibrissa vibrissae vibrissal vibroflotation vibroflotations vibrograph vibrographs vibromassage vibrometer vibrometers vibromotive vibronic vibrophone vibroscope vibroscopic vibrotherapeutics vibs viburnic viburnin viburnum viburnums vic vica vicaire vicar vicara vicarage vicarages vicarate vicarates vicarchoral vicaress vicaresses vicargeneral vicarial vicarian vicariance vicariances vicarianism vicariant vicariants vicariate vicariates vicariateship vicaries vicarii vicariism vicarious vicariously vicariousness vicariousnesses vicarius vicarly vicars vicarship vicarships vicary vice vicecomes vicecomital vicecomites viced vicegeral vicegerencies vicegerency vicegerent vicegerents vicegerentship viceless vicelike vicenary vicennial viceregal viceregally viceregency viceregent viceregents vicereine vicereines viceroies viceroy viceroyal viceroyalties viceroyalty viceroydom viceroys viceroyship viceroyships vices vicesimal vicety viceversally vichies vichy vichyssois vichyssoise vichyssoises vicia vicianin vicianose viciate viciated viciates viciating vicilin vicinage vicinages vicinal vicine vicing vicinities vicinity viciosities viciosity vicious viciously viciousness viciousnesses vicissitous vicissitude vicissitudes vicissitudinary vicissitudinous vicissitudinousness vicksburg vicoite vicomte vicomtes vicomtesse vicomtesses vicontiel vicontiels victal victim victimhood victimhoods victimisable victimisation victimisations victimise victimised victimiser victimisers victimises victimising victimizable victimization victimizations victimize victimized victimizer victimizers victimizes victimizing victimless victimologies victimologist victimologists victimology victims victless victor victordom victoress victoresses victorfish victorfishes victoria victorian victoriana victorianism victorianize victorians victorias victoriate victoriatus victories victorine victorines victorious victoriously victoriousness victoriousnesses victorium victors victory victoryless victress victresses victrices victrix victrixes victrola victrolla victrollas victual victualage victualages victualed victualer victualers victualess victualing victuallage victuallages victualled victualler victuallers victuallership victualless victuallesses victualling victualry victuals victus vicua vicualling vicuda vicugna vicugnas vicuna vicunas vicus vicuua vicuña vicuñas vid vidame vidames vidar viddui vidduy vide videlicet videnda videndum video videocassette videocassettes videocast videocasting videoconference videoconferences videoconferencing videoconferencings videodisc videodiscs videoed videofit videofits videogenic videogram videograms videographer videographers videographies videography videoing videoland videolands videophile videophiles videophone videophones videorecorder videorecorders videos videotape videotaped videotapes videotaping videotelephone videotelephones videotex videotexes videotext videotexts videruff vidette videttes videtur vidian vidicon vidicons vidimus vidimuses vidkid vidkids vidonia vidry vids vidua viduage viduages vidual vidually viduate viduated viduation viduine viduities viduity viduous vidya vie vied vielle vielles vienna viennese vientiane vier vierkleur vierling viers viertel viertelein vies vietcong vietminh vietnam vietnamese vietnamization view viewable viewably viewdata viewdatas viewed viewer viewers viewership viewerships viewfinder viewfinders viewgraph viewier viewiest viewiness viewinesses viewing viewings viewless viewlessly viewlessness viewly viewphone viewphones viewpoint viewpoints viewport views viewsome viewster viewworthy viewy vifda vifdas vig viga vigas vigentennial vigesimal vigesimation vigesimo vigesimoquarto vigesimos viggle vigia vigias vigil vigilance vigilances vigilancy vigilant vigilante vigilanteism vigilantes vigilantism vigilantisms vigilantist vigilantly vigilantness vigilate vigilation vigils vigintiangular vigintillion vigintillions vigintillionth vigna vigneron vignerons vignette vignetted vignetter vignetters vignettes vignetting vignettist vignettists vignin vigogne vigone vigonia vigor vigorish vigorishes vigorist vigorless vigoro vigoros vigoroso vigorous vigorously vigorousness vigorousnesses vigors vigour vigourless vigours vigs vihara viharas vihuela vihuelas vii viii vijao viking vikingism vikingisms vikinglike vikings vikingship vil vila vilayet vilayets vild vilde vildly vildness vildnesses vile vilehearted vilely vileness vilenesses viler vilest vileyns viliaco viliacoes viliacos viliago viliagoes viliagos vilicate vilification vilifications vilified vilifier vilifiers vilifies vilify vilifying vilifyingly vilipend vilipended vilipender vilipending vilipendious vilipenditory vilipends vilities vility vill villa villache villadom villadoms villae villaette village villageful villagehood villageless villagelet villagelike villageous villager villageress villageries villagers villagery villages villaget villageward villagey villagio villagioes villagios villagisation villagisations villagism villagization villagizations villagree villagrees villagy villain villainage villainages villaindom villainess villainesses villainies villainist villainize villainous villainously villainousness villainousnesses villainproof villains villainy villakin villaless villalike villan villanage villanages villancico villanella villanelle villanelles villanette villanies villanous villanously villans villany villar villarsite villas villate villatic villayet ville villeggiatura villeggiaturas villeggiature villegiatura villegiature villein villeinage villeinages villeiness villeinhold villeins villeity villenage villenages villi villiago villiagoes villiagos villianess villianesses villianous villianously villianousness villianousnesses villiaumite villication villications villicus villiferous villiform villiplacental villitis villoid villoma villose villosities villosity villota villote villous villously vills villus vilna vilnius vilno vim vimana vimanas vimen vimful vimina viminal viminaria vimineous vimpa vims vin vina vinaceous vinaconic vinage vinagron vinaigre vinaigrette vinaigretted vinaigrettes vinaigrier vinaigrous vinal vinals vinas vinasse vinasses vinata vinblastine vinblastines vinca vincas vincent vincentian vincetoxicum vincetoxin vinchuca vinci vincibilities vincibility vincible vincibleness vincibly vincristine vincristines vincula vincular vinculate vinculation vinculo vinculula vinculum vinculums vindaloo vindaloos vindemial vindemiate vindemiated vindemiates vindemiating vindemiation vindemiatory vindemiatrix vindesine vindex vindhyan vindicabilities vindicability vindicable vindicableness vindicably vindicate vindicated vindicates vindicating vindication vindications vindicative vindicatively vindicativeness vindicativenesses vindicator vindicatorily vindicators vindicatorship vindicatory vindicatress vindicatresses vindices vindict vindicta vindictive vindictively vindictiveness vindictivenesses vindictivolence vindresser vine vinea vineae vineal vineatic vined vinedresser vinedressers vinegar vinegared vinegarer vinegarette vinegariness vinegaring vinegarish vinegarishness vinegarist vinegarlike vinegarrette vinegarrettes vinegarroon vinegarroons vinegars vinegarweed vinegary vinegerone vinegrower vineity vineland vineless vinelet vinelike viner vineries viners vinery vines vinestalk vinet vinetta vinew vinewed vinewing vinewise vinews vineyard vineyarding vineyardist vineyardists vineyards vingerhoed vingt vingtieme vingtun vinhatico vinic vinicultural viniculture vinicultures viniculturist viniculturists vinier viniest vinifera viniferas viniferous vinification vinifications vinificator vinificators vinified vinifies vinify vinifying vining vinitor vinny vino vinoacetous vinolence vinolent vinologies vinologist vinologists vinology vinometer vinomethylic vinos vinose vinosities vinosity vinosulphureous vinous vinously vinousness vinquish vins vint vinta vintage vintaged vintager vintagers vintages vintaging vintagings vinted vintem vintener vinter vinting vintlite vintner vintneress vintners vintnership vintnery vintress vintries vintry vints vinum viny vinyl vinylacetylene vinylate vinylated vinylating vinylation vinylbenzene vinylene vinylethylene vinylic vinylidene vinylidenes vinylite vinyls vinyon viocin viol viola violabilities violability violable violableness violablenesses violably violaceae violacean violaceous violaceously violal violan violand violanin violaquercitrin violas violate violated violater violaters violates violating violation violational violations violative violator violators violatory violature viold violence violences violency violent violented violenting violently violentness violents violer violers violescent violet violetish violetlike violets violette violetwise violety violin violina violincello violincellos violine violined violinette violining violinist violinistic violinistically violinists violinless violinlike violinmaker violinmakers violinmaking violino violins violist violists violmaker violmaking violon violoncelli violoncellist violoncellists violoncello violoncellos violone violones violotta violous viols violuric viomycin viomycins viosterol viosterols vip viper vipera viperan viperess viperfish viperfishes viperian viperid viperidae viperiform viperine viperish viperishly viperlike viperling viperoid viperous viperously viperousness vipers vipery vipolitic vipresident vips viqueen viraemia viraemias viraemic viragin viraginian viraginity viraginous virago viragoes viragoish viragolike viragos viragoship viral virally viranda virandas virando virandos virason vire vired virelai virelais virelay virelays virement virements viremia viremias viremic virent vireo vireonidae vireonine vireos vires virescence virescences virescent virescently viretot viretots virga virgal virgas virgate virgated virgater virgates virgation virge virger virgers virges virgil virgilia virgilian virgin virginal virginalist virginalists virginality virginalled virginalling virginally virginals virgined virgineous virginhead virginhood virginhoods virginia virginian virginians virginias virgining virginities virginitis virginity virginityship virginium virginiums virginlike virginly virgins virginship virgo virgos virgouleuse virgula virgular virgularian virgulate virgule virgules virgultum virial viricidal viricide viricides virid viridaria viridarium viridene viridescence viridescences viridescent viridian viridians viridigenous viridin viridine viridite viridites viridities viridity virific virify virile virilely virileness virilescence virilescences virilescent virilia virilify viriliously virilisation virilisations virilised virilising virilism virilisms virilist virilities virility virilization virilizations virilize virilized virilizes virilizing virilocal virilocally viring virino virinos virion virions viripotent viritoot viritrate virl virled virls virogene virogenes viroid viroids virole viroled virologic virological virologically virologies virologist virologists virology viron virose viroses virosis virous virtu virtual virtualise virtualism virtualisms virtualist virtualists virtualities virtuality virtualize virtually virtue virtued virtuefy virtueless virtuelessness virtueproof virtues virtuless virtuosa virtuosas virtuose virtuosi virtuosic virtuosically virtuosities virtuosity virtuoso virtuosos virtuosoship virtuosoships virtuous virtuouslike virtuously virtuousness virtuousnesses virtus virtuti virtutis virucidal virucide virucides viruela virulence virulences virulencies virulency virulent virulented virulently virulentness viruliferous virus viruscidal viruscide virusemic viruses viruslike virusoid virusoids virustatic vis visa visaed visage visaged visages visagist visagiste visagistes visagists visagraph visaing visammin visard visards visarga visas visayan viscaceae viscacha viscachas viscachera viscacheras viscera visceral visceralgia viscerally visceralness viscerate viscerated viscerates viscerating visceration visceripericardial viscerogenic visceroinhibitory visceromotor visceroparietal visceroperitioneal visceropleural visceroptoses visceroptosis visceroptotic viscerosensory visceroskeletal viscerosomatic viscerotomy viscerotonia viscerotonias viscerotonic viscerotrophic viscerotropic viscerous viscid viscidities viscidity viscidize viscidly viscidness viscidnesses viscidulous viscin viscins viscoelastic viscoelasticities viscoelasticity viscoid viscoidal viscolize viscometer viscometers viscometric viscometrical viscometrically viscometries viscometry viscontal viscontial viscoscope viscose viscoses viscosimeter viscosimeters viscosimetric viscosimetrical viscosimetries viscosimetry viscosities viscosity viscount viscountcies viscountcy viscountess viscountesses viscounties viscounts viscountship viscountships viscounty viscous viscously viscousness viscousnesses viscum viscums viscus vise vised viseed viseing viselike viseman visement visenomy vises vishnu vishnuism visibilities visibility visibilize visible visibleness visiblenesses visibles visibly visie visied visieing visier visiers visies visigoth visigothic visile visiles vising visiogenic vision visional visionally visionaries visionarily visionariness visionarinesses visionary visioned visioner visioners visionic visioning visionings visionise visionist visionists visionize visionless visionlike visionmonger visionproof visions visiophone visiophones visit visita visitable visitador visitandine visitant visitants visitate visitation visitational visitations visitative visitator visitatorial visitators visite visited visitee visitees visiter visiters visites visiting visitings visitment visitor visitoress visitorial visitors visitorship visitress visitresses visitrix visits visive visna visnas visne visnes visney visnomie visnomies visnomy vison visons visor visored visoring visorless visorlike visors visory viss vista vistaed vistaing vistal vistaless vistamente vistas visto vistos vistula visual visualisable visualisation visualisations visualise visualised visualiser visualisers visualises visualising visualist visualists visualities visuality visualizable visualization visualizations visualize visualized visualizer visualizers visualizes visualizing visually visualness visualnesses visuals visuoauditory visuokinesthetic visuometer visuomotor visuopsychic visuosensory visuospatial viséed vita vitaceae vitaceous vitae vitagraph vital vitalic vitalisation vitalisations vitalise vitalised vitaliser vitalisers vitalises vitalising vitalisingly vitalism vitalisms vitalist vitalistic vitalistically vitalists vitalities vitality vitalization vitalizations vitalize vitalized vitalizer vitalizers vitalizes vitalizing vitalizingly vitallium vitally vitalness vitalnesses vitals vitamer vitameric vitamers vitamin vitamine vitamines vitaminic vitaminisation vitaminise vitaminised vitaminises vitaminising vitaminization vitaminize vitaminized vitaminizes vitaminizing vitaminologist vitaminology vitamins vitapath vitapathy vitaphone vitas vitascope vitascopes vitascopic vitasti vitative vitativeness vitativenesses vite vitellaria vitellarian vitellarium vitellariums vitellary vitelli vitellicle vitellicles vitelliferous vitelligenous vitelligerous vitellin vitelline vitellines vitellins vitellogene vitellogeneses vitellogenesis vitellogenous vitellose vitellus vitelluses viterbite vitesse vitesses vitex vitexes vithar vitharr vithayasai vitiable vitial vitiate vitiated vitiates vitiating vitiation vitiations vitiator vitiators viticeta viticetum viticetums viticide viticides viticolous viticulose viticultural viticulturally viticulture viticulturer viticultures viticulturist viticulturists vitidaceae vitiferous vitilago vitiliginous vitiligo vitiligoid vitiligoidea vitiligos vitilitigate vitilitigated vitilitigates vitilitigating vitilitigation vitilitigations vitiosities vitiosity vitis vitita vitium vitochemic vitochemical vitra vitrage vitrages vitrail vitrailed vitrailist vitrailled vitraillist vitraillists vitrain vitrains vitraux vitreal vitrean vitrectomies vitrectomy vitrella vitremyte vitreodentinal vitreodentine vitreoelectric vitreosities vitreosity vitreous vitreouses vitreouslike vitreously vitreousness vitreousnesses vitrescence vitrescences vitrescency vitrescent vitrescibilities vitrescibility vitrescible vitreum vitreums vitrial vitric vitrics vitrifaction vitrifactions vitrifacture vitrifactures vitrifiabilities vitrifiability vitrifiable vitrificate vitrification vitrifications vitrified vitrifies vitriform vitrify vitrifying vitrine vitrines vitrinoid vitriol vitriolate vitriolated vitriolates vitriolating vitriolation vitriolations vitrioled vitriolic vitriolically vitrioline vitrioling vitriolisable vitriolisation vitriolisations vitriolise vitriolised vitrioliser vitriolises vitriolising vitriolizable vitriolization vitriolizations vitriolize vitriolized vitriolizer vitriolizes vitriolizing vitriolled vitriolling vitriols vitrite vitro vitrobasalt vitrophyre vitrophyric vitrotype vitrous vitrum vitruvian vitry vitta vittae vittaria vittariaceae vittate vittle vittled vittles vittling vitular vitulary vituline vituper vituperable vituperance vituperate vituperated vituperates vituperating vituperation vituperations vituperatiou vituperative vituperatively vituperativeness vituperativenesses vituperator vituperators vituperatory vituperious vituperous vitupery viuva viva vivace vivaces vivacious vivaciously vivaciousness vivaciousnesses vivacissimo vivacities vivacity vivaed vivaing vivamente vivandi vivandiares vivandier vivandiere vivandieres vivandiers vivandire vivandière vivandières vivant vivants vivaria vivaries vivariia vivariiums vivarium vivariums vivarvaria vivary vivas vivat vivax vivaxes vivda vivdas vive vively vivencies vivency vivendi viver viverra viverras viverricula viverrid viverridae viverrids viverriform viverrinae viverrine viverrines vivers vives viveur vivian vivianite vivianites vivicremation vivid vivider vividest vividialysis vividiffusion vividissection vividities vividity vividly vividness vividnesses vivific vivifical vivificant vivificate vivificated vivificating vivification vivifications vivificative vivificator vivified vivifier vivifiers vivifies vivify vivifying vivipara viviparies viviparism viviparisms viviparities viviparity viviparous viviparously viviparousness viviparousnesses vivipary viviperfuse vivisect vivisected vivisectible vivisecting vivisection vivisectional vivisectionally vivisectionist vivisectionists vivisections vivisective vivisector vivisectorium vivisectoriums vivisectors vivisects vivisepulture vivisepultures vivo vivos vivre vivres vixen vixenish vixenishly vixenishness vixenishnesses vixenlike vixenly vixens viyella viyellas viz vizament vizaments vizard vizarded vizarding vizardless vizardlike vizardmonger vizards vizcacha vizcachas vizied vizier vizierate vizierates viziercraft vizierial viziers viziership vizierships vizies vizir vizirate vizirates vizircraft vizirial vizirs vizirship vizirships vizla viznomy vizor vizored vizoring vizorless vizors vizsla vizslas vizy vizying vizzie vizzied vizzieing vizzies vizzy vl vlach vladivostok vlei vleis vlf vlies vlsi vly vmintegral vmsize vo voar voars vobis voc vocab vocability vocable vocables vocably vocabs vocabular vocabularian vocabularians vocabularied vocabularies vocabulary vocabulation vocabulist vocabulists vocal vocalese vocaleses vocalic vocalically vocalics vocalion vocalions vocalisation vocalisations vocalise vocalised vocaliser vocalisers vocalises vocalising vocalism vocalisms vocalist vocalistic vocalists vocalities vocality vocalizable vocalization vocalizations vocalize vocalized vocalizer vocalizers vocalizes vocalizing vocaller vocally vocalness vocalnesses vocals vocat vocate vocation vocational vocationalisation vocationalise vocationalism vocationalisms vocationalist vocationalists vocationalization vocationalize vocationally vocations vocative vocatively vocatives voce voces vochysiaceous vocicultural vociferance vociferanced vociferances vociferancing vociferant vociferate vociferated vociferates vociferating vociferation vociferations vociferative vociferator vociferators vociferize vociferosities vociferosity vociferous vociferously vociferousness vociferousnesses vocification vocimotor vocoder vocoders vocoid vocular vocule vocules voder vodka vodkas vodou vodoun vodouns vodous vodum vodums vodun voduns voe voes voet voeten voetganger voetgangers voetsak voetsek voetstoots vog vogesite vogie vogier vogiest voglite vogt vogue vogued vogueing vogueings voguer voguers vogues voguey voguier voguiest voguing voguings voguish voguishly voguishness voguishnesses vogul voice voiceband voiced voicedness voicednesses voiceful voicefulness voicefulnesses voiceless voicelessly voicelessness voicelessnesses voicelet voicelike voiceover voiceovers voiceprint voiceprints voicer voicers voices voicing voicings void voidable voidableness voidablenesses voidance voidances voided voidee voidees voider voiders voiding voidings voidless voidly voidness voidnesses voids voila voile voiles voilier voilà voisinage voisinages voiture voitures voiturette voiturier voituriers voiturin voivod voivode voivodes voivodeship voivodeships vol vola volable volacious volador volae volage volageous volaille voland volant volante volantes volantly volapie volapuk volar volaries volary volas volata volatic volatile volatilely volatileness volatilenesses volatiles volatilisable volatilisation volatilisations volatilise volatilised volatiliser volatilisers volatilises volatilising volatilities volatility volatilizable volatilization volatilizations volatilize volatilized volatilizer volatilizers volatilizes volatilizing volation volational volatize volborthite volcan volcanian volcanic volcanically volcanicities volcanicity volcanics volcanisation volcanisations volcanise volcanised volcanises volcanising volcanism volcanisms volcanist volcanists volcanite volcanity volcanizate volcanization volcanizations volcanize volcanized volcanizes volcanizing volcano volcanoes volcanoism volcanologic volcanological volcanologies volcanologist volcanologists volcanologize volcanology volcanos vole voled volemite volemitol volency volens volent volente volenti volently voleries volery voles volet volets volga volgaic volgograd volhynite voling volipresence volipresent volitant volitate volitated volitates volitating volitation volitational volitations volitiency volitient volition volitional volitionalist volitionality volitionally volitionary volitionate volitionless volitions volitive volitives volitorial volk volks volkslied volkslieder volksraad volksraads volkswagen volkswagens vollenge volley volleyball volleyballer volleyballers volleyballs volleyed volleyer volleyers volleying volleyingly volleys volost volosts volow volpane volpino volpinos volplane volplaned volplanes volplaning volplanist vols volsci volscian volsella volsellum volt volta voltaelectric voltaelectricity voltaelectrometer voltaelectrometric voltage voltages voltagraphy voltaic voltaire voltairean voltaism voltaisms voltaite voltameter voltameters voltametric voltammeter voltammeters voltaplast voltarean voltaren voltarian voltatype volte volteador volteadores voltes volti voltigeur voltigeurs voltinism voltinisms voltise voltivity voltize voltmeter voltmeters volto volts voltzine voltzite volubil volubilate volubilities volubility voluble volubleness volublenesses volubly volucrine volume volumed volumen volumenometer volumenometers volumenometry volumes volumescope volumeter volumeters volumetric volumetrical volumetrically volumetry volumette volumina voluminal voluming voluminosities voluminosity voluminous voluminously voluminousness voluminousnesses volumise volumised volumises volumising volumist volumists volumize volumized volumizes volumizing volumometer volumometers volumometrical volumometry voluntariate voluntaries voluntarily voluntariness voluntarinesses voluntarious voluntarism voluntarisms voluntarist voluntaristic voluntarists voluntarity voluntary voluntaryism voluntaryisms voluntaryist voluntaryists voluntative volunteer volunteered volunteering volunteerism volunteerisms volunteerly volunteers volunteership volunty voluper volupt voluptary voluptas volupte voluptuarian voluptuaries voluptuary voluptuate voluptuosities voluptuosity voluptuous voluptuously voluptuousness voluptuousnesses volupty voluspa voluspas voluta volutae volutate volutation volutations volute voluted volutes volutiform volutin volutins volution volutions volutoid volva volvaria volvariaceae volvariella volvas volvate volve volved volvell volvelle volvent volvents volves volving volvocaceae volvocaceous volvocales volvox volvoxes volvuli volvullus volvulus volvuluses volyer vombatid vombatidae vomer vomerine vomerobasilar vomeronasal vomeropalatine vomers vomica vomicae vomicas vomicin vomicine vomit vomitable vomited vomiter vomiters vomiting vomitingly vomitings vomition vomitive vomitiveness vomitives vomito vomitoria vomitories vomitorium vomitoriums vomitory vomitos vomitous vomits vomiture vomiturition vomituritions vomitus vomituses vomitwort vomity vomtoria von vondsira vonsenite voodoo voodooed voodooing voodooism voodooisms voodooist voodooistic voodooists voodoos voop vooped vooping voops voorhuis voorlooper voortrekker voortrekkers vor voracious voraciously voraciousness voraciousnesses voracities voracity vorage voraginous vorago voragoes vorant voraz vorhand vorlage vorlages vorlooper vorondreo vorpal vorred vorring vors vorspiel vortex vortexes vortical vortically vorticel vorticella vorticellae vorticellas vorticellid vorticellum vortices vorticial vorticiform vorticism vorticisms vorticist vorticists vorticities vorticity vorticose vorticosely vorticular vorticularly vortiginous vota votable votal votally votaress votaresses votaries votarist votarists votary votation vote voteable voted voteen voteens voteless voter voters votes voting votist votive votively votiveness votivenesses votograph votometer votress votresses votyak vouch vouchable vouched vouchee vouchees voucher voucherable vouchered voucheress vouchering vouchers vouches vouching vouchment vouchor vouchsafe vouchsafed vouchsafement vouchsafements vouchsafer vouchsafes vouchsafing vouchsafings voudon voudons voudou voudoued voudouing voudoun voudouns voudous vouge vouges voulge voulges voulu voussoir voussoired voussoiring voussoirs voust vouster vousty voutsafe voutsafed voutsafes voutsafing vouvary vouvray vouvrays vow vowed vowel vowelisation vowelisations vowelise vowelised vowelises vowelish vowelising vowelism vowelist vowelization vowelizations vowelize vowelized vowelizes vowelizing vowelled vowelless vowellessness vowellike vowelling vowelly vowels vowely vower vowers vowess vowesses vowing vowless vowmaker vowmaking vows vowson vox voxel voxels voyage voyageable voyaged voyager voyagers voyages voyageur voyageurs voyaging voyagings voyance voyeur voyeurism voyeurisms voyeuristic voyeuristical voyeuristically voyeurs voyeuse voyeuses vozhd vozhds vp vr vraic vraicker vraickers vraicking vraickings vraics vraisemblance vraisemblances vrbaite vriddhi vril vrille vrilled vrilling vrils vrocht vroom vroomed vrooming vrooms vrother vrouw vrouws vrow vrows vs vss vt vucom vucoms vug vugg vuggier vuggiest vuggs vuggy vugh vughs vugs vulcan vulcanian vulcanic vulcanicities vulcanicity vulcanisable vulcanisate vulcanisates vulcanisation vulcanisations vulcanise vulcanised vulcaniser vulcanisers vulcanises vulcanising vulcanism vulcanisms vulcanist vulcanists vulcanite vulcanites vulcanizable vulcanizate vulcanizates vulcanization vulcanizations vulcanize vulcanized vulcanizer vulcanizers vulcanizes vulcanizing vulcano vulcanological vulcanologies vulcanologist vulcanologists vulcanology vulcans vulg vulgar vulgare vulgarer vulgarest vulgarian vulgarians vulgarisation vulgarisations vulgarise vulgarised vulgariser vulgarisers vulgarises vulgarish vulgarising vulgarism vulgarisms vulgarist vulgarities vulgarity vulgarization vulgarizations vulgarize vulgarized vulgarizer vulgarizers vulgarizes vulgarizing vulgarlike vulgarly vulgarness vulgarnesses vulgars vulgarwise vulgate vulgates vulgo vulgus vulguses vuln vulned vulnerabilities vulnerability vulnerable vulnerableness vulnerablenesses vulnerably vulneral vulneraries vulnerary vulnerate vulnerated vulnerates vulnerating vulneration vulnerations vulnerative vulnerose vulnific vulnifical vulning vulnose vulns vulpanser vulpecide vulpecular vulpes vulpic vulpicidal vulpicide vulpicides vulpicidism vulpine vulpinic vulpinism vulpinisms vulpinite vulpinites vulsella vulsellae vulsellum vulsinite vultur vulture vulturelike vultures vulturewise vulturine vulturish vulturism vulturisms vulturn vulturns vulturous vulva vulvae vulval vulvar vulvas vulvate vulvectomy vulviform vulvitis vulvitises vulvocrural vulvouterine vulvovaginal vulvovaginitides vulvovaginitis vum vummed vumming vums vv vvll vyase vying vyingly vyrnwy véronique völuspa völuspas w wa waac waag waapa waar wab wabain wabains wabash wabayo wabber wabbit wabbits wabble wabbled wabbler wabblers wabbles wabblier wabbliest wabbliness wabbling wabblingly wabblings wabbly wabby wabe wabeno waboom wabooms wabron wabs wabster wabsters wac wacadash wacago wacapou wace wachna wack wacke wacked wacken wacker wackers wackes wackest wackier wackiest wackily wackiness wackinesses wacking wacko wackoes wackos wacks wacky wacs wad wada wadable wadas wadcutter wadd wadded waddent wadder wadders waddie waddied waddies wadding waddings waddle waddled waddler waddlers waddles waddlesome waddling waddlingly waddly wadds waddy waddying waddywood wade wadeable waded wader waders wades wadge wadges wadi wadies wading wadingly wadings wadis wadlike wadmaal wadmaals wadmaker wadmaking wadmal wadmals wadmeal wadmel wadmels wadmol wadmoll wadmolls wadmols wadna wads wadset wadsets wadsett wadsetted wadsetter wadsetters wadsetting wadsetts wadt wadts wady wae waefu waeful waeg waeness waenesses waer waes waesome waesuck waesucks waf wafer wafered waferer wafering waferish waferlike wafermaker wafermaking wafers waferwoman waferwork wafery waff waffed waffie waffies waffing waffle waffled waffler wafflers waffles wafflestomper wafflestompers wafflier waffliest wafflike waffling wafflingly wafflings waffly waffness waffs waflib waft waftage waftages wafted wafter wafters wafting waftings wafts wafture waftures wafty wag wagang waganging wagati wagaun wagbeard wage waged wagedom wageless wagelessness wagelessnesses wageling wagenboom wagenbooms wager wagered wagerer wagerers wagering wagers wages wagesman waget wagework wageworker wageworkers wageworking wagga waggable waggably wagged waggel wagger waggeries waggers waggery waggie wagging waggish waggishly waggishness waggishnesses waggle waggled waggler wagglers waggles wagglier waggliest waggling wagglingly waggly waggon waggonable waggonage waggoned waggoneer waggoner waggoners waggonette waggonettes waggoning waggonload waggonry waggons waggonsmith waggonway waggonwayman waggonwright waggy wagh waghalter waghalters waging waglike wagling wagmoire wagmoires wagner wagnerian wagnerians wagnerite wagon wagonable wagonage wagonages wagoned wagoneer wagoner wagoners wagoness wagonette wagonettes wagonful wagonfuls wagoning wagonless wagonload wagonloads wagonmaker wagonmaking wagonman wagonry wagons wagonsmith wagonway wagonwayman wagonwork wagonwright wagonwrights wagram wags wagsome wagtail wagtails wagwag wagwants wagwit wah wahabi wahahe wahconda wahcondas wahhabi wahine wahines wahlund wahoo wahoos wahpekute wahunsonacock wahvey wahwah waiata waid waide waif waifed waifing waifish waiflike waifs waift waifts waik waikly waikness wail wailed wailer wailers wailful wailfully wailing wailingly wailings wailment wails wailsome waily wain wainable wainage wainages wainbote wained wainer wainful waining wainman wainmen wainrope wains wainscot wainscoted wainscoting wainscotings wainscots wainscotted wainscotting wainscottings wainwright wainwrights waipiro wair wairch waird waired wairepo wairing wairs wairsh waise waist waistband waistbands waistbelt waistbelts waistboat waistboats waistcloth waistcloths waistcoat waistcoated waistcoateer waistcoateers waistcoathole waistcoating waistcoatings waistcoatless waistcoats waisted waister waisters waisting waistings waistless waistline waistlines waists wait waite waited waiter waiterage waiterages waiterdom waitered waiterhood waiterhoods waitering waiterings waiterlike waiters waitership waites waitewoman waiting waitingly waitings waitlist waitlisted waitlisting waitlists waitpeople waitperson waitpersons waitress waitressed waitresses waitressing waitressings waitressless waitron waitrons waits waitsmen waitstaff waitstaffs waivatua waive waived waiver waiverable waivers waivery waives waiving waivod waivode waivodes waiwode waiwodes wajang waka wakame wakames wakan wakanda wakandas wakane wakanes wakari wakas wakashan wake wakeboard wakeboarding wakeboardings wakeboards waked wakeel wakeful wakefully wakefulness wakefulnesses wakeless wakeman wakemen waken wakened wakener wakeners wakening wakenings wakens waker wakerife wakerifeness wakerobin wakers wakes waketime wakeup wakf wakfs wakif wakiki wakikis wakil wakils waking wakingly wakings wakiup wakizashi wakken wakon wakonda waky walach walachian walahee walapai walbiri walcheren wald waldenses waldflute waldflutes waldglas waldgrave waldgraves waldgravine waldgravines waldhorn waldhorns waldmeister waldo waldoes waldorf waldos waldrapp waldrapps walds waldsterben waldsterbens wale waled walepiece waler walers wales walewort walhalla wali walier walies waliest waling walis walise walises walk walkabilities walkability walkable walkabout walkabouts walkathon walkathons walkaway walkaways walked walkene walker walkerite walkers walkie walkies walking walkings walkingstick walkingsticks walkist walkmill walkmiller walkmills walkout walkouts walkover walkovers walkrife walks walkside walksman walksmen walkup walkups walkway walkways walkyrie walkyries wall wallaba wallabas wallabies wallaby wallago wallah wallahs wallaroo wallaroos wallbird wallboard wallboards wallchart wallcharts wallclimber wallclimbers wallcovering wallcoverings walled waller wallerian wallers wallet walletful wallets walleye walleyed walleyes wallfish wallfishes wallflower wallflowers wallful wallhick wallie wallier wallies walliest walling wallings wallise wallless wallman walloch walloon wallop walloped walloper wallopers walloping wallopings wallops wallow wallowed wallower wallowers wallowing wallowings wallowish wallowishly wallowishness wallows wallpaper wallpapered wallpapering wallpapers wallpiece walls wallsend wallsends wallwise wallwork wallwort wallworts wally wallyball wallyballs wallydrag wallydrags wallydraigle wallydraigles walnut walnuts walnutwood walnutwoods walpole walpurgite walrus walruses walsh walspere walt walter walth waltier waltiest waltonian waltron waltrot walty waltz waltzed waltzer waltzers waltzes waltzing waltzings waltzlike waly walycoat wamara wambais wambenger wambengers wamble wambled wambles wamblier wambliest wambliness wamblinesses wambling wamblingly wamblings wambly wame wamed wamefou wamefous wamefu wameful wamefull wamefuls wamel wames wamfle wammikin wammus wammuses wamp wampanoag wampee wampees wampish wampished wampishes wampishing wample wampum wampumpeag wampumpeags wampums wampus wampuses wamus wamuses wan wanchancie wanchancy wand wandala wander wanderable wandered wanderer wanderers wandering wanderingly wanderingness wanderings wanderlust wanderluster wanderlustful wanderlusts wanderoo wanderoos wanders wandery wanderyear wandflower wandle wandlike wandoo wandoos wandought wandreth wands wandsman wandy wane waned waneless wanely waner wanes waney wang wanga wangala wangan wangans wangateur wanger wanghee wangle wangled wangler wanglers wangles wangling wanglings wangrace wangs wangtooth wangun wanguns wanhap wanhappy wanhope wanhopes wanhorn waniand wanier waniest wanigan wanigans waning wanings wanion wanions wank wankapin wanked wankel wanker wankers wankier wankiest wanking wankle wankliness wankly wanks wanky wanlas wanle wanly wanmol wanna wannabe wannabee wannabees wannabes wanned wannel wanner wanness wannesses wannest wannigan wannigans wanning wannish wanny wanrest wanrestful wanrufe wanruly wans wanshape wansith wansome wansonsy want wantad wantage wantages wanted wanter wanters wantful wanthill wanthills wanthrift wanthriven wanties wanting wantingly wantingness wantings wantless wantlessness wanton wantoned wantoner wantoners wantonest wantoning wantonise wantonised wantonises wantonising wantonize wantonized wantonizes wantonizing wantonlike wantonly wantonness wantonnesses wantons wantroke wantrust wants wantwit wanty wanweird wanwit wanwordy wanworth wanworths wany wanze wanzed wanzes wanzing wap wapacut wapata wapato wapatoo wapatoos wapenschaw wapenschaws wapenshaw wapenshaws wapentake wapentakes wapinschaw wapinschaws wapinshaw wapinshaws wapiti wapitis wapp wappato wapped wappend wappened wappenschaw wappenschawing wappenschawings wappenschaws wappenshaw wappenshawing wappenshawings wappenshaws wapper wappered wappering wapperjaw wapperjawed wappers wappet wapping waps waqf waqfs war warabi waragi warantee waratah waratahs warb warbier warbiest warbird warbite warble warbled warblelike warbler warblerlike warblers warbles warblet warbling warblingly warblings warbly warbonnet warbonnets warby warch warcraft warcrafts ward wardable wardage wardapet wardatour warday wardcorn wardcorns wardcors warded warden wardency wardened wardening wardenries wardenry wardens wardenship wardenships warder wardered warderer wardering warders wardership warderships wardholding wardialer wardialers wardian warding wardings wardite wardless wardlike wardmaid wardman wardmen wardmote wardmotes wardog wardogs wardress wardresses wardrobe wardrobed wardrober wardrobers wardrobes wardrobing wardroom wardrooms wardrop wardrops wards wardship wardships wardsmaid wardsman wardswoman wardwite wardwoman wardwomen wardword ware wared wareful warehou warehouse warehouseage warehoused warehouseful warehouseman warehousemen warehouser warehousers warehouses warehousing warehousings wareless warely waremaker waremaking wareman warentment warer wareroom warerooms wares wareship warez warezes warf warfare warfared warfarer warfarers warfares warfarin warfaring warfarings warfarins warful wargus warhable warhead warheads warhorse warhorses wariance wariangle waribashi waribashis waried warier wariest warily wariment wariments warine wariness warinesses waring waringin warish warison warisons warji wark warkamoowee warked warking warkloom warklume warks warl warless warlessly warlessness warlike warlikely warlikeness warlikenesses warling warlings warlock warlockries warlockry warlocks warlord warlordism warlordisms warlords warlow warlpiri warluck warly warm warmable warmaker warmakers warmaking warman warmblood warmblooded warmbloods warmboot warmbooted warmbooting warmboots warmed warmedly warmen warmer warmers warmest warmful warmhearted warmheartedly warmheartedness warmheartednesses warmhouse warming warmings warmish warmly warmmess warmness warmnesses warmonger warmongering warmongerings warmongers warmouth warmouths warms warmth warmthless warmthlessness warmths warmup warmups warmus warn warnage warned warnel warner warners warning warningly warningproof warnings warnish warnison warniss warnoth warns warnt warp warpable warpage warpages warpaint warpath warpaths warped warper warpers warping warpings warplane warplanes warple warplike warpower warpowers warproof warps warpwise warracoori warragal warragals warragle warragles warragul warraguls warrambool warran warrand warranded warrandice warrandices warranding warrands warraned warraning warrans warrant warrantabilities warrantability warrantable warrantableness warrantablenesses warrantably warranted warrantedly warrantedness warrantee warranteed warrantees warranter warranters warrantied warranties warranting warrantings warrantise warrantises warrantize warrantless warranto warrantor warrantors warrants warranty warrantying warratau warray warrayed warraying warrays warre warred warree warren warrener warreners warrenlike warrens warrer warrey warreyed warreying warreys warrigal warrigals warrin warring warrior warrioress warrioresses warriorhood warriorism warriorlike warriors warriorship warriorwise warrish warrison warrisons warrok warrty warryn wars warsaw warsaws warse warsel warship warships warsle warsled warsler warslers warsles warsling warst warsted warsting warstle warstled warstler warstlers warstles warstling warsts wart warted wartern wartflower warth warthog warthogs wartier wartiest wartime wartimes wartiness wartless wartlet wartlike wartproof warts wartweed wartweeds wartwort wartworts warty wartyback warve warwards warwickite warwolf warwolves warwork warworker warworks warworn wary warytree was wasabi wasabis wase wasegoose wasegooses wasel wases wash washabilities washability washable washableness washables washateria washaterias washaway washball washballs washbasin washbasins washbasket washboard washboards washbowl washbowls washbrew washcloth washcloths washday washdays washdish washdown washed washen washer washered washeries washering washerless washerman washermen washers washerwife washerwoman washerwomen washery washeryman washerymen washes washeteria washeterias washhand washhouse washhouses washier washiest washily washin washiness washinesses washing washings washington washingtonia washingtonian washingtonians washingtonias washland washlands washleather washmaid washman washmen washoff washout washouts washpot washpots washproof washrag washrags washroad washroom washrooms washshed washstand washstands washtail washtray washtrough washtub washtubs washup washups washway washwipe washwipes washwoman washwomen washwork washy wasm wasms wasn wasnt wasp waspen wasphood waspie waspier waspies waspiest waspily waspiness waspinesses waspish waspishly waspishness waspishnesses wasplike waspling waspnest waspnesting waspnests wasps waspy wassail wassailed wassailer wassailers wassailing wassailings wassailous wassailries wassailry wassails wasserman wassermen wassie wast wastabl wastable wastage wastages waste wastebasket wastebaskets wastebin wasteboard wasted wasteful wastefully wastefulness wastefulnesses wastel wasteland wastelands wastelbread wasteless wastelot wastelots wastels wastely wasteman wastemen wastement wasteness wastenesses wastepaper wastepapers wastepile wasteproof waster wastered wasterful wasterfully wasterfulness wasterfulnesses wasterie wasteries wasterife wasterifes wastering wastern wasters wastery wastes wastethrift wastewater wastewaters wasteway wasteways wasteweir wasteword wasteyard wastfull wastier wastiest wastine wasting wastingly wastingness wastings wastland wastme wastness wastnesses wastrel wastrels wastrie wastries wastrife wastrifes wastry wasts wasty wat watap watape watapeh watapes wataps watch watchabilities watchability watchable watchables watchband watchbands watchbill watchboat watchbox watchboxes watchcase watchcases watchcries watchcry watchdog watchdogged watchdogging watchdogs watched watcher watchers watches watchet watchets watcheye watcheyes watchfire watchfree watchful watchfully watchfulness watchfulnesses watchglass watchglasses watchglassful watchguard watchguards watchhouse watching watchingly watchings watchkeeper watchless watchlessness watchmake watchmaker watchmakers watchmaking watchmakings watchman watchmanly watchmanship watchmate watchmen watchment watchout watchouts watchspring watchsprings watchstrap watchstraps watchtower watchtowers watchwise watchwoman watchwomen watchword watchwords watchwork watchworks wate water waterage waterages waterbailage waterbank waterbear waterbed waterbeds waterbelly waterbird waterbirds waterblink waterbloom waterboard waterbok waterborne waterbosh waterbottle waterbound waterbrain waterbroo waterbrose waterbuck waterbucks waterbury waterbus waterbuses waterbush waterbusses watercannon watercart watercaster waterchat watercolor watercoloring watercolorist watercolorists watercolors watercolour watercolouring watercolourist watercolourists watercolours watercolous watercooler watercoolers watercourse watercourses watercraft watercrafts watercress watercresses watercup watercycle waterdoe waterdog waterdogs waterdrive waterdrives waterdrop watered waterer waterers waterfall waterfalls waterfinder waterfinders waterflood waterflooded waterflooding waterfloodings waterfloods waterfowl waterfowler waterfowlers waterfowling waterfowlings waterfowls waterfree waterfront waterfronts watergate waterglass waterglasses waterhead waterheap waterhen waterhens waterhole waterholes waterhorse waterie waterier wateriest waterily wateriness waterinesses watering wateringly wateringman waterings waterish waterishly waterishness waterishnesses waterjet waterjets waterleaf waterleafs waterleave waterleaves waterless waterlessly waterlessness waterlessnesses waterlike waterlilies waterlilly waterlily waterline waterlines waterlocked waterlog waterlogged waterloggedness waterlogger waterlogging waterlogs waterloo waterloos watermain waterman watermanship watermanships watermark watermarked watermarking watermarks watermaster watermeal watermelon watermelons watermen watermill watermills watermint watermonger waterphone waterpit waterplane waterpot waterpower waterpowers waterpox waterpoxes waterproof waterproofed waterproofer waterproofers waterproofing waterproofings waterproofness waterproofnesses waterproofs waterquake waterquakes waterrug waters waterscape waterscapes watershake watershed watersheds watershoot watershut waterside watersider watersides waterski waterskier waterskiing waterskiings waterskin waterskis watersmeet watersmeets watersoaked watersport watersports waterspout waterspouts waterstead waterstoup waterthrush waterthrushes watertight watertightal watertightness watertightnesses waterwall waterward waterwards waterway waterways waterweed waterweeds waterwheel waterwheels waterwings waterwise waterwoman waterwood waterwork waterworker waterworks waterworm waterworn waterwort waterworthy watery waterzooi waterzoois watfiv wath wather wathstead wats watson watt wattage wattages wattape wattapes watteau watter wattest watthour watthours wattis wattle wattlebark wattlebarks wattlebird wattlebirds wattleboy wattled wattles wattless wattlework wattleworks wattling wattlings wattman wattmen wattmeter wattmeters watts wattsecond waubeen wauble wauch wauchle waucht wauchted wauchting wauchts wauf wauff wauffed wauffing wauffs waufie waugh waughed waughing waughs waught waughted waughting waughts waughy wauk wauked wauken wauker waukers wauking waukit waukmill waukmills waukrife wauks waul wauled wauling waulings waulk waulked waulker waulkers waulking waulkmill waulkmills waulks wauls waumle wauner wauns waup waur waured wauregan wauring waurs waurst wauve wavable wavably wave waveband wavebands waved waveform waveforms wavefront wavefronts waveguide waveguides wavelength wavelengths waveless wavelessly wavelessness wavelet wavelets wavelike wavellite wavellites wavemark wavement wavemeter wavemeters wavenumber waveoff waveoffs waveproof waver waverable wavered waverer waverers waverier waveriest wavering waveringly waveringness waveringnesses waverings waverous wavers wavery waves waveshape waveshapes waveson wavesons waveward wavewise wavey waveys waviata wavicle wavicles wavier wavies waviest wavily waviness wavinesses waving wavingly wavings wavy waw wawa wawah wawas wawaskeesh wawe wawes wawl wawled wawling wawlings wawls waws wax waxable waxand waxberries waxberry waxbill waxbills waxbird waxbush waxchandler waxchandlery waxcloth waxcloths waxcomb waxed waxen waxer waxers waxes waxflower waxflowerl waxhearted waxier waxiest waxily waxiness waxinesses waxing waxingly waxings waxlike waxmaker waxmaking waxmallow waxman waxplant waxplants waxweed waxweeds waxwing waxwings waxwork waxworker waxworkers waxworking waxworks waxworm waxworms waxy waxycap way wayaka wayang wayback wayberry waybill waybills waybird wayboard wayboards waybook waybread waybreads waybung wayed wayfare wayfared wayfarer wayfarers wayfares wayfaring wayfaringly wayfarings wayfellow waygang waygate waygoer waygoing waygoings waygone waygoose waygooses wayhouse waying waylaid waylaidlessness wayland waylay waylayer waylayers waylaying waylays wayleave wayleaves wayless waymaker wayman waymark waymarked waymarking waymarks waymate waymen wayment waymented waymenting wayments wayne waypoint waypoints waypost wayposts ways wayside waysider waysides waysliding waythorn wayward waywarden waywardly waywardness waywardnesses waywiser waywisers waywode waywodes waywodeship waywodeships wayworn waywort wayzgoose wayzgooses wazir wazirate wazirs wazirship wazoo wazoos wb wbn wbs wc wcs wd we weak weakbrained weaken weakened weakener weakeners weakening weakens weaker weakest weakfish weakfishes weakhanded weakhearted weakheartedly weakheartedness weakish weakishly weakishness weaklier weakliest weakliness weaklinesses weakling weaklings weakly weakmouthed weakness weaknesses weakon weakons weakside weaksides weaky weal weald wealden wealdish wealds wealdsman wealdsmen wealful weals wealsman wealsmen wealsome wealth wealthful wealthfully wealthier wealthiest wealthily wealthiness wealthinesses wealthless wealthmaker wealthmaking wealthmonger wealths wealthy weam weamb weambs wean weanable weaned weanedness weanednesses weanel weanels weaner weaners weanie weaning weanling weanlings weanly weans weanyer weapon weaponed weaponeer weaponeers weaponing weaponless weaponmaker weaponmaking weaponproof weaponries weaponry weapons weaponshaw weaponshow weaponshowing weaponsmith weaponsmithy weapschawing wear wearabilities wearability wearable wearables weared wearer wearers weariable weariableness wearied weariedly weariedness wearier wearies weariest weariful wearifully wearifulness wearifulnesses weariless wearilessly wearilessness wearilessnesses wearily weariness wearinesses wearing wearingly wearings wearish wearishly wearishness wearisome wearisomely wearisomeness wearisomenesses wearproof wears weary wearying wearyingly weasand weasands weasel weaseled weaseler weaselers weaselfish weaseling weaselled weaseller weasellers weasellike weaselling weaselly weasels weaselship weaselskin weaselsnout weaselwise weasely weaser weason weasons weather weatherabilities weatherability weatherable weatherbeaten weatherboard weatherboarded weatherboarding weatherboardings weatherboards weatherbound weatherbreak weathercast weathercaster weathercasters weathercasts weathercloth weathercloths weathercock weathercocked weathercocking weathercockish weathercockism weathercocks weathercocky weathered weatherer weatherers weatherfish weatherfishes weathergirl weathergirls weatherglass weatherglasses weathergleam weatherhead weatherheaded weathering weatherings weatherise weatherised weatherises weatherising weatherization weatherizations weatherize weatherized weatherizes weatherizing weatherliness weatherlinesses weatherly weathermaker weathermaking weatherman weathermen weathermost weatherologist weatherology weatherometer weatherometers weatherperson weatherpersons weatherproof weatherproofed weatherproofing weatherproofness weatherproofnesses weatherproofs weathers weathersick weatherstrip weatherstripped weatherstrippers weatherstripping weatherstrippings weatherstrips weathertight weathertightness weathervane weathervanes weatherward weatherwise weatherworn weathery weatings weavable weave weaveable weaved weavement weaver weaverbird weaverbirds weaveress weavers weaves weaving weavings weazand weazands weazen weazened weazening weazens weazeny web webbed webber webbier webbiest webbing webbings webby webcam webcams webcast webcasting webcastings webcasts webelos weber weberian webers webeye webfed webfeet webfoot webfooted webfooter webhead webheads webisode webisodes webless weblike webmaker webmaking webmaster webmasters webmistress webmistresses webpage webpages webs website websites webster websterian websterite websters webwheel webwheels webwork webworks webworm webworms webworn wecche wecht wechts weck wecks wed wedana wedbed wedbedrip wedded weddedly weddedness weddeed wedder weddered weddering wedders wedding weddinger weddings wede wedel wedeled wedeling wedeln wedelned wedelning wedelns wedels wedfee wedge wedgeable wedgebill wedged wedgelike wedger wedges wedgewise wedgie wedgier wedgies wedgiest wedging wedgings wedgwood wedgy wedlock wedlocks wednesday wednesdays weds wedset wee weebill weebills weeble weed weeda weedable weedage weeded weeder weederies weeders weedery weedful weedhook weedicide weedicides weedier weediest weedily weediness weedinesses weeding weedings weedingtime weedish weedkiller weedkillers weedless weedlike weedling weedow weedproof weeds weedses weedy weeing week weekday weekdays weeke weekend weekended weekender weekenders weekending weekendings weekends weekes weeklies weekling weeklong weekly weeknight weeknights weeks weekwam weel weeldlesse weelfard weelfaured weeloo weeloos weels weem weemen weems ween weendigo weened weeness weenie weenier weenies weeniest weening weenong weens weensier weensiest weensy weent weenty weeny weep weepable weeped weeper weepered weepers weepful weephole weepholes weepie weepier weepies weepiest weepily weepiness weepinesses weeping weepingly weepings weeply weeps weepy weer weerish wees weesh weeshee weeshy weest weet weetbird weete weeted weeten weeter weetest weeting weetingly weetless weets weety weever weevers weevil weeviled weevilled weevillike weevilly weevilproof weevils weevily weewaw weewee weeweed weeweeing weewees weewow weeze weezle wef weft weftage weftages wefte wefted weftes wefting wefts weftwise weftwize wefty wegenerian wegotism wehee wehner wehrlite weibyeite weichselwood weid weids weierstrassian weigela weigelas weigelia weigelias weigelite weigh weighable weighage weighages weighbar weighbauk weighbeam weighboard weighboards weighbridge weighbridgeman weighbridges weighed weigher weighers weighership weighhouse weighin weighing weighings weighlock weighman weighmaster weighmen weighment weighs weighshaft weight weightchaser weighted weightedly weightedness weighter weighters weightier weightiest weightily weightiness weightinesses weighting weightings weightless weightlessly weightlessness weightlessnesses weightlift weightlifter weightlifters weightlifting weightliftings weightometer weights weightwith weighty weil weilang weils weimar weimaraner weimaraners weinbergerite weiner weiners weinschenkite weir weirangle weird weirded weirder weirdest weirdful weirdie weirdies weirding weirdish weirdless weirdlessness weirdlike weirdliness weirdly weirdness weirdnesses weirdo weirdoes weirdos weirds weirdsome weirdward weirdwoman weirdwomen weirdy weired weiring weirless weirs weisbachite weise weised weiselbergite weisenheimer weisenheimers weises weising weism weismannian weismannism weisshorn weissite weize weized weizes weizing wejack wejacks weka wekas wekau wekeen weki welaway welch welched welcher welchers welches welching welcome welcomed welcomeless welcomely welcomeness welcomenesses welcomer welcomers welcomes welcoming welcomingly weld weldabilities weldability weldable welded welder welders welding weldings weldless weldment weldments weldmesh weldmeshes weldor weldors welds welfare welfares welfaring welfarism welfarisms welfarist welfaristic welfarists weli welk welke welked welkes welkin welking welkinlike welkins welks welkt well wellacquainted welladay welladays welladvised wellaffected wellanear wellat wellaway wellaways wellbeing wellbeings wellborn wellbred wellchosen wellconnected wellcontent wellcurb wellcurbs welldecked welldoer welldoers welldoing welldone welled weller welleresque wellerism wellesley wellfound wellfounded wellhead wellheads wellhole wellholes wellhouse wellhouses wellie wellies welling wellings wellington wellingtonia wellingtonian wellingtonias wellingtons wellish wellknown wellmaker wellmaking wellman wellmen wellmost wellnear wellness wellnesses wellnigh wellpoint wellqueme wellread wellring wells wellseen wellset wellside wellsite wellsites wellspoken wellspring wellsprings wellstead wellstrand welly wellyard wels welsbach welsh welshed welsher welshers welshes welshing welshman welshmen welshry welshwoman welshwomen welsium welsom welt weltanschauung weltanschauungen weltanschauungs welted welter weltered weltering welters welterweight welterweights welting weltings welts weltschmerz weltschmerzes welwitschia welwitschiaceae welwitschias wem wemb wembly wembs wemless wemmy wemodness wems wen wench wenched wenchel wencher wenchers wenches wenching wenchless wenchlike wenchman wenchmen wend wende wended wendic wendigo wendigoes wendigos wending wendish wends wene weneth wenge wenges wenliche wenlock wennebergite wennier wenniest wennish wenny wens wensleydale went wentle wentletrap wentletraps wents wenzel wepman wepmankin wept wer were wereass werebear wereboar werecalf werecat werecrocodile werefolk werefox weregild weregilds werehare werehyena werejaguar wereleopard werelion weren werent weretiger werewall werewolf werewolferies werewolfery werewolfish werewolfism werewolfisms werewolves werf wergeld wergelds wergelt wergelts wergil wergild wergilds weri wering wermethe wernard wernerian wernerite wernerites weroole werowance wersh wersher wershest werslete werste wert wertherian wervel werwolfish wesand wesands wese weskit weskits wesley wesleyan wesleyanism wesleyans wesleyism wessand wessands wessel wesselton west westabout westaway westbound weste wested wester westered westering westerings westerlies westerliness westerling westerly westermost western westerner westerners westernisation westernisations westernise westernised westernises westernising westernism westernisms westernization westernizations westernize westernized westernizes westernizing westernly westernmost westernness westernnesses westerns westers westerwards westfalite westham westing westinghouse westings westlan westland westlander westlandways westlaw westlin westling westlings westlins westme westmeless westminster westmost westness westnorthwestwardly westphalia westralian wests westside westward westwardly westwardmost westwards westwork westy wet weta wetas wetback wetbacks wetbird wetched wetchet wether wetherhog wethers wetherteg wetland wetlands wetly wetness wetnesses wetproof wets wetsuit wetsuits wettabilities wettability wettable wetted wetter wetters wettest wetting wettings wettish wettishness wetware wetwares weve wevet wex wexe wexed wexes wexing wey weyard weymouth weys weyward wezand wezands wf wg wh wha whabby whack whacked whacker whackers whackier whackiest whacking whackings whacko whackoes whackos whacks whacky whaddie whafabout whaisle whaisled whaisles whaisling whaizle whaizled whaizles whaizling whale whaleback whalebacker whalebacks whalebird whaleboat whaleboats whalebone whaleboned whalebones whaled whaledom whalehead whalelike whaleman whalemen whaler whaleries whaleroad whalers whalery whales whaleses whaleship whalesucker whaling whalings whalish whallock whally whalm whalp whaly wham whamble whame whammed whammies whamming whammle whammo whammos whammy whamo whamp whampee whample whamples whams whan whand whang whangable whangam whangams whangdoodle whanged whangee whangees whangers whanghee whanging whangs whank whap whapped whapper whappers whappet whapping whaps whapuka whapukee whapuku whar whare whareer whares wharf wharfage wharfages wharfe wharfed wharfhead wharfholder wharfie wharfies wharfing wharfinger wharfingers wharfings wharfland wharfless wharfman wharfmaster wharfmasters wharfmen wharfrae wharfs wharfside wharl wharp wharrow wharry whart whartonian wharve wharves whase whasle what whata whatabouts whatchamacallit whatchamacallits whatchy whatd whaten whatever whatkin whatlike whatman whatna whatness whatnesses whatnot whatnots whatre whatreck whats whatshername whatshisname whatsis whatsises whatsit whatsits whatso whatsoeer whatsoever whatsomever whatten whatzit whau whauk whaup whaups whaur whaurs whauve wheal whealed whealing wheals whealworm whealy wheam whear wheare wheat wheatbird wheatear wheateared wheatears wheaten wheatens wheatfield wheatfields wheatflake wheatflakes wheatgerm wheatgrass wheatgrower wheatier wheaties wheatiest wheatland wheatless wheatlike wheatmeal wheatmeals wheats wheatsheaf wheatsheaves wheatstalk wheatstone wheatworm wheatworms wheaty whedder whee wheech wheeched wheeching wheechs wheedle wheedled wheedler wheedlers wheedles wheedlesome wheedling wheedlingly wheedlings wheel wheelabrate wheelabrated wheelabrating wheelage wheelband wheelbarrow wheelbarrowed wheelbarrower wheelbarrowful wheelbarrowing wheelbarrows wheelbase wheelbases wheelbird wheelbox wheelchair wheelchairs wheeldom wheeled wheeler wheelerite wheelers wheelery wheelhorse wheelhorses wheelhouse wheelhouses wheelie wheelier wheelies wheeliest wheeling wheelingly wheelings wheelless wheellike wheelmaker wheelmaking wheelman wheelmen wheelrace wheelroad wheels wheelsman wheelsmen wheelsmith wheelspin wheelswarf wheelway wheelwise wheelwork wheelworks wheelwright wheelwrighting wheelwrights wheely wheem wheen wheencat wheenge wheenged wheengeing wheenges wheenging wheens wheep wheeped wheeping wheeple wheepled wheeples wheepling wheeps wheer wheerikins whees wheesh wheeshed wheeshes wheeshing wheesht wheeshted wheeshtes wheeshting wheeshts wheetle wheeze wheezed wheezer wheezers wheezes wheezier wheeziest wheezily wheeziness wheezinesses wheezing wheezingly wheezings wheezle wheezled wheezles wheezling wheezy wheft whefts whein whekau wheki whelk whelked whelker whelkier whelkiest whelklike whelks whelky whelm whelmed whelming whelms whelp whelped whelphood whelping whelpish whelpless whelpling whelps whelve whemmel whemmle whemmled whemmles whemmling when whenabouts whenas whence whenceeer whenceforth whenceforward whences whencesoeer whencesoever whencever wheneer whenever whenness whens whenso whensoever whensomever whenua whenuas where whereabout whereabouts whereafter whereagainst whereanent whereas whereases whereat whereaway whereby whered whereer wherefor wherefore wherefores whereforth wherefrom wherehence wherein whereinsoever whereinto whereis whereness wherenesses whereof whereon whereout whereover wherere wheres whereso wheresoeer wheresoever wheresomever wherethrough wheretill whereto wheretoever wheretosoever whereunder whereuntil whereunto whereup whereupon wherever wherewith wherewithal wherewithals wherewiths wherret wherreted wherreting wherrets wherried wherries wherrit wherry wherrying wherryman wherrymen wherve wherves whesten whet whether whetile whetrock whets whetstone whetstones whetted whetter whetters whetting wheugh wheughed wheughing wheughs whew whewed whewellite whewellites whewer whewing whewl whews whewt whey wheybeard wheybird wheyey wheyeyness wheyface wheyfaced wheyfaces wheyier wheyiest wheyish wheyishness wheyishnesses wheyisness wheylike wheyness wheys wheyworm wheywormed whf whiba which whichever whichsoever whichway whichways whick whicken whicker whickered whickering whickers whid whidah whidahs whidded whidder whiddered whiddering whidders whidding whids whiff whiffable whiffed whiffenpoof whiffer whiffers whiffet whiffets whiffier whiffiest whiffing whiffings whiffle whiffled whiffler whiffleries whifflers whifflery whiffles whiffletree whiffletrees whiffling whifflingly whifflings whiffs whiffy whift whifts whig whiggamore whiggamores whigged whiggery whigging whiggism whigmaleerie whigmaleeries whigmaleery whigmeleerie whigs whigship whikerby while whileas whiled whileen whilend whilere whiles whiley whilie whiling whilk whill whillaballoo whillaloo whillied whillies whillikers whillikins whillilew whilly whillying whillywha whillywhaed whillywhaing whillywhas whillywhaw whillywhawed whillywhawing whillywhaws whilock whilom whils whilst whilter whim whimberries whimberry whimble whimbrel whimbrels whimling whimmed whimmier whimmiest whimming whimmy whimper whimpered whimperer whimperers whimpering whimperingly whimperings whimpers whimple whimpled whimples whimpling whims whimsey whimseys whimsic whimsical whimsicalities whimsicality whimsically whimsicalness whimsicalnesses whimsied whimsier whimsies whimsiest whimsily whimsiness whimsinesses whimstone whimsy whimwham whimwhams whin whinberries whinberry whinchacker whinchat whinchats whincheck whincow whindle whine whined whiner whiners whines whinestone whiney whing whingding whingdings whinge whinged whingeing whingeingly whingeings whinger whingers whinges whinging whingy whiniard whiniards whinier whiniest whininess whininesses whining whiningly whinings whinnel whinner whinnied whinnier whinnies whinniest whinnock whinny whinnying whins whinstone whinstones whiny whinyard whinyards whip whipbelly whipbird whipbirds whipcat whipcats whipcord whipcords whipcordy whipcrack whipcracker whipcraft whipgraft whipjack whipjacks whipking whiplash whiplashed whiplashes whiplashing whiplike whipmaker whipmaking whipman whipmanship whipmaster whipoorwill whippa whippable whipparee whipped whipper whipperginny whippers whippersnapper whippersnappers whippertail whippet whippeter whippeting whippetings whippets whippier whippiest whippiness whippinesses whipping whippingly whippings whippletree whippletrees whippoorwill whippoorwills whippost whippowill whippy whipray whiprays whips whipsaw whipsawed whipsawing whipsawn whipsaws whipsawyer whipscorpion whipship whipsnake whipsnakes whipsocket whipstaff whipstaffs whipstalk whipstall whipstalled whipstalling whipstalls whipstaves whipster whipsters whipstick whipstitch whipstitched whipstitches whipstitching whipstock whipstocks whipt whiptail whiptailed whiptails whiptree whipwise whipworm whipworms whir whirken whirl whirlabout whirlabouts whirlbat whirlbats whirlblast whirlblasts whirlbone whirlbrain whirled whirler whirlers whirley whirlgig whirlicane whirlicote whirlier whirlies whirliest whirligig whirligigs whirlimagig whirling whirlingly whirlings whirlmagee whirlpit whirlpool whirlpools whirlpuff whirls whirlwig whirlwind whirlwindish whirlwinds whirlwindy whirly whirlybird whirlybirds whirlygigum whirr whirred whirret whirreted whirreting whirrets whirrey whirrick whirried whirries whirring whirrings whirroo whirrs whirry whirrying whirs whirtle whirtles whish whished whishes whishing whisht whishted whishting whishts whisk whiskbroom whiskbrooms whisked whisker whiskerage whiskerando whiskerandoed whiskerandos whiskered whiskerer whiskerette whiskerless whiskerlike whiskers whiskery whisket whiskets whiskey whiskeyfied whiskeys whiskful whiskied whiskies whiskified whiskin whisking whiskingly whisks whisky whiskyfied whiskylike whiskys whisp whisper whisperable whisperation whispered whisperer whisperers whisperhood whispering whisperingly whisperingness whisperings whisperless whisperous whisperously whisperproof whispers whispery whiss whissed whisses whissing whissle whist whisted whister whisterpoop whisting whistle whistleable whistlebelly whistleblower whistleblowers whistleblowing whistleblowings whistled whistlefish whistlefishes whistlelike whistler whistlerism whistlers whistles whistlestop whistlewing whistlewood whistlike whistling whistlingly whistlings whistly whistness whists whit whitblow white whiteacre whiteback whitebait whitebaits whitebark whitebass whitebasses whitebeam whitebeams whitebeard whitebeards whitebelly whitebelt whiteberry whitebill whitebird whiteblaze whiteblow whiteboard whiteboards whitebottle whiteboy whiteboyism whiteboyisms whitecap whitecapper whitecapping whitecaps whitechapel whitecoat whitecoats whitecomb whitecorn whitecup whited whitedamp whiteface whitefaces whitefeet whitefieldian whitefish whitefisher whitefishery whitefishes whiteflies whitefly whitefoot whitefootism whitehall whitehanded whitehass whitehawse whitehead whiteheads whiteheart whitehearted whitehorse whitelash whitelike whiteline whitely whiten whitened whitener whiteners whiteness whitenesses whitening whitenings whitenose whitens whiteout whiteouts whitepine whitepot whitepots whiter whiteroot whiterump whites whitesark whiteseam whiteshank whiteside whiteslave whitesmith whitesmiths whitespace whitest whitestone whitestraits whitetail whitetails whitethorn whitethorns whitethroat whitethroats whitetip whitetop whitevein whiteveins whitewall whitewalls whitewards whiteware whitewares whitewash whitewashed whitewasher whitewashers whitewashes whitewashing whitewashings whitewater whiteweed whitewing whitewings whitewood whitewoods whiteworm whitewort whitey whiteys whitfield whitfinch whither whithered whithering whithers whitherso whithersoever whitherto whitherward whitherwards whitier whities whitiest whitin whiting whitings whitish whitishness whitishnesses whitlavia whitleather whitleathers whitling whitlings whitlow whitlows whitlowwort whitman whitmonday whitney whitneyite whitrack whitracks whitret whitrets whits whitster whitsters whitsun whitsunday whitsuntide whittaw whittawer whittawers whittaws whitten whittener whitter whittered whitterick whittericks whittering whitters whittle whittled whittler whittlers whittles whittling whittlings whittret whittrets whittrick whitweek whitworth whity whiz whizbang whizbangs whizgig whizkid whizz whizzbang whizzbangs whizzed whizzer whizzerman whizzers whizzes whizziness whizzing whizzingly whizzings whizzle who whoa whoas whod whodunit whodunitries whodunitry whodunits whodunnit whodunnitries whodunnitry whodunnits whoever whole wholefood wholefoods wholegrain wholehearted wholeheartedly wholeheartedness wholeheartednesses wholely wholemeal wholemeals wholeness wholenesses wholes wholesale wholesaled wholesalely wholesaleness wholesaler wholesalers wholesales wholesaling wholesome wholesomely wholesomeness wholesomenesses wholesomer wholesomest wholestitch wholestitches wholetone wholewheat wholewise wholism wholisms wholist wholistic wholistically wholists wholl wholly whom whomble whombled whombles whombling whomever whommle whommled whommles whommling whomp whomped whomping whomps whomso whomsoever whone whoo whoobub whoobubs whoof whoofed whoofing whoofs whoop whoope whooped whoopee whoopees whooper whoopers whoopie whoopies whooping whoopingly whoopings whoopla whooplas whooplike whoops whoopsie whoopsies whooses whoosh whooshed whooshes whooshing whoosies whoosis whoosises whoosy whoot whooted whooting whoots whop whopped whopper whoppers whopping whoppings whops whorage whore whored whoredom whoredoms whorehouse whorehouses whoreish whoreishly whoreishness whorelike whoremaster whoremasterly whoremasters whoremastery whoremistress whoremistresses whoremonger whoremongering whoremongers whoremonging whores whoreship whoreson whoresons whoring whorish whorishly whorishness whorishnesses whorl whorlbat whorlbats whorle whorled whorlflower whorls whorly whorlywort whorry whort whortle whortleberries whortleberry whortles whorts whory whose whosen whosesoever whosever whosis whosises whoso whosoever whosome whosomever whosumdever whot whow whr whs whse whsle whud whuff whuffle whulk whulter whummle whummled whummles whummling whump whumped whumping whumps whun whunstane whunstanes whup whupped whupping whups whush whuskie whussle whute whuther whutter whuttering whuz why whydah whydahs whyever whyfor whyness whyo whys wi wibble wicca wiccan wiccans wiccas wice wich wiches wichita wicht wichtisite wichtje wick wickape wickapes wickawee wicked wickeder wickedest wickedish wickedlike wickedly wickedness wickednesses wickeds wicken wickens wicker wickerby wickered wickers wickerware wickerwork wickerworked wickerworker wickerworks wicket wicketkeep wicketkeeper wicketkeepers wicketkeeping wickets wicketwork wickies wicking wickings wickiup wickiups wickless wicks wickthing wickup wicky wickyup wickyups wicopies wicopy wid widbin widdendream widder widders widdershins widdie widdies widdifow widdle widdled widdles widdling widdrim widdy wide wideawake wideawakes wideband widebodies widebody widechapped widegab widegap widehearted widely widemouthed widen widened widener wideners wideness widenesses widening widens wideout wideouts wider widershins wides widescreen widespread widespreadedly widespreading widespreadly widespreadness widest widewhere widework widgeon widgeons widget widgets widgie widgies widish widorror widow widowbird widowbirds widowed widower widowered widowerhood widowerhoods widowers widowership widowery widowhood widowhoods widowing widowish widowlike widowly widowman widowmen widows widowy width widthless widths widthway widthways widthwise widu wied wiedersehen wiel wieland wielare wield wieldable wieldableness wielded wielder wielders wieldier wieldiest wieldiness wieldinesses wielding wieldless wields wieldy wiels wiener wieners wienerwurst wienerwursts wienie wienies wierangle wierd wiesenboden wife wifecarl wifed wifedom wifedoms wifehood wifehoods wifeism wifekin wifeless wifelessness wifelet wifelier wifeliest wifelike wifeliness wifelinesses wifeling wifelkin wifely wifes wifeship wifething wifeward wiffle wifie wifiekie wifies wifing wifish wifock wiftier wiftiest wifty wig wigan wigans wigdom wigeling wigeon wigeons wigful wigged wiggen wigger wiggeries wiggery wiggier wiggiest wigging wiggings wiggish wiggishness wiggism wiggle wiggled wiggler wigglers wiggles wiggleses wigglier wiggliest wiggliness wiggling wiggly wiggy wigher wight wighted wighting wightly wightness wights wigless wiglet wiglets wiglike wigmake wigmaker wigmakers wigmaking wigs wigtail wigwag wigwagged wigwagger wigwaggers wigwagging wigwags wigwam wigwams wiikite wiki wiking wikis wikiup wikiups wikiwiki wilco wilcoxon wilcweme wild wildbore wildcard wildcards wildcat wildcats wildcatted wildcatter wildcatters wildcatting wildebeest wildebeeste wildebeests wilded wilder wildered wilderedly wildering wilderment wilderments wildern wilderness wildernesses wilders wildest wildfire wildfires wildflower wildflowers wildfowl wildfowler wildfowlers wildfowling wildfowlings wildfowls wildgrave wildgraves wilding wildings wildish wildishly wildishness wildland wildlands wildlife wildlifes wildlike wildling wildlings wildly wildness wildnesses wildoat wildoats wilds wildsome wildtype wildwind wildwood wildwoods wile wiled wileful wileless wileproof wiles wilful wilfully wilfulness wilfulnesses wilga wilgas wilgers wili wilier wiliest wilily wiliness wilinesses wiling wilis wiliwili wilja wiljas wilk wilkeite wilkin will willable willawa willble willed willedness willemite willemites willer willers willes willest willet willets willey willeyed willeyer willeying willeys willful willfully willfulness willfulnesses willi william williamite williams williamsite williche willie willier willies williewaucht williewaught williewaughts willing willinger willingest willinghearted willinghood willingly willingness willingnesses williwau williwaus williwaw williwaws willmaker willmaking willness willock willow willowbiter willowed willower willowers willowherb willowherbs willowier willowiest willowiness willowing willowish willowlike willows willowware willowwares willowweed willowworm willowwort willowy willpower willpowers wills willy willyard willyart willyer willywaw willywaws wilmington wilning wilrone wilroun wilsome wilsomely wilsomeness wilson wilsonian wilt wilted wilter wilting wiltja wiltjas wilton wiltproof wilts wiltshire wily wilycoat wim wimberry wimble wimbled wimblelike wimbles wimbling wimbrel wimbrels wime wimick wimlunge wimmin wimp wimped wimpier wimpiest wimpiness wimpinesses wimping wimpish wimpishly wimpishness wimpishnesses wimple wimpled wimpleless wimplelike wimpler wimples wimpling wimps wimpy win winare winberry winbrow wince winced wincer wincers winces wincey winceyette winceyettes winceys winch winched wincher winchers winches winchester winching winchman winchmen wincing wincingly wincings wincopipe wincopipes wind windable windac windacs windage windages windas windases windbag windbagged windbaggeries windbaggery windbags windball windberry windbibber windblast windblasts windblow windblown windblows windboat windbore windborne windbound windbracing windbreak windbreaker windbreakers windbreaks windbroach windburn windburned windburning windburns windburnt windcatcher windcheater windcheaters windchest windchill windchills windclothes windcuffer winddog winded windedly windedness windel winder windermost winders windfall windfallen windfalls windfanner windfirm windfish windfishes windflaw windflaws windflower windflowers windgall windgalled windgalls windgun windguns windhole windhover windhovers windier windiest windigo windigoes windigos windill windily windiness windinesses winding windingly windingness windings windjam windjammer windjammers windjamming windjammings windlass windlassed windlasser windlasses windlassing windle windled windles windless windlessly windlessness windlessnesses windlestrae windlestraes windlestraw windlestraws windlike windlin windling windlings windmill windmilled windmilling windmills windmilly windock windocks windore windores window windowdress windowed windowful windowing windowings windowless windowlessness windowlet windowlight windowlike windowmaker windowmaking windowman windowpane windowpanes windowpeeper windows windowshade windowshopped windowshopping windowshut windowsill windowsills windowward windowwards windowwise windowy windpipe windpipes windplayer windproof windpuff windpuffs windring windroad windrode windroot windrose windroses windrow windrowed windrower windrowers windrowing windrows winds windsail windsailor windsails windscoop windscreen windscreens windses windshake windshakes windshield windshields windship windships windshock windslab windsock windsocks windsor windsorite windstorm windstorms windstream windsucker windsuckers windsucking windsuckings windsurf windsurfed windsurfer windsurfers windsurfing windsurfings windsurfs windswept windthrow windthrows windtight windup windups windward windwardly windwardmost windwardness windwards windway windways windwayward windwaywardly windy windz wine wineball wineberries wineberry winebibber winebibbers winebibbery winebibbing winebibbings wineconner wined winedraf wineglass wineglasses wineglassful wineglassfuls winegrower winegrowers winegrowing winegrowings winehouse wineier wineiest wineless winelike winemake winemaker winemakers winemaking winemakings winemaster winemay winepot winepress winepresser winepresses winer wineries winers winery wines winesap winesaps wineshop wineshops wineskin wineskins winesop winesops winetaster winetasting winetastings winetree winevat winey wineyard winfree winful wing wingable wingate wingback wingbacks wingbeat wingbeats wingbow wingbows wingcut wingding wingdings winged wingedly wingedness winger wingers wingfish wingfishes winghanded wingier wingiest winging wingle wingless winglessness winglessnesses winglet winglets winglike wingman wingmanship wingmen wingnut wingover wingovers wingpiece wingpost wings wingseed wingspan wingspans wingspread wingspreads wingstem wingtip wingtips wingy winier winiest wining winish wink winked winkel winkelman winker winkered winkers winking winkingly winkings winkle winkled winklehawk winklehole winkler winklers winkles winklet winkling winklot winks winless winlestrae winly winn winna winnabilities winnability winnable winnard winnebago winned winnel winnelstrae winner winners winning winningest winningly winningness winningnesses winnings winninish winnipeg winnle winnles winnock winnocks winnonish winnow winnowed winnower winnowers winnowing winnowingly winnowings winnows winns wino winoes winos winrace winrow wins winsey winseys winslow winsome winsomely winsomeness winsomenesses winsomer winsomest winster wint winter wintera winteraceae winterage winterberries winterberry winterbloom winterbound winterbourne winterbournes wintercreeper winterdykes wintered winterer winterers winterfed winterfeed winterfeeding winterfeeds winterffed wintergreen wintergreens winterhain winterier winteriest wintering winterisation winterisations winterise winterised winterises winterish winterishly winterishness winterising winterization winterizations winterize winterized winterizes winterizing winterkill winterkilled winterkilling winterkills winterless winterlike winterliness winterling winterly winterproof winters wintersome wintertide wintertides wintertime wintertimes winterward winterwards winterweed winterweight wintery wintle wintled wintles wintling wintrier wintriest wintrify wintrily wintriness wintrinesses wintrish wintrous wintry wintun winy winze winzeman winzemen winzes wipe wiped wipeout wipeouts wiper wipers wipes wiping wipings wippen wippens wips wipstock wir wirable wirble wird wire wirebar wirebird wirecutters wired wiredancer wiredancing wiredraw wiredrawer wiredrawers wiredrawing wiredrawings wiredrawn wiredraws wiredrew wireds wirefree wiregrass wirehair wirehaired wirehairs wireless wirelessed wirelesses wirelessing wirelessly wirelessness wirelike wiremaker wiremaking wireman wiremen wiremonger wirephoto wirephotos wirepull wirepuller wirepullers wirepulling wirepullings wirer wireroom wirerooms wirers wires wiresmith wiresonde wirespun wirestitched wiretail wiretap wiretapped wiretapper wiretappers wiretapping wiretaps wirewalker wireway wireways wireweed wirework wireworker wireworkers wireworking wireworkings wireworks wireworm wireworms wirewove wirier wiriest wirily wiriness wirinesses wiring wirings wirl wirling wirr wirra wirrah wirrasthru wirricow wirricows wiry wis wisard wisards wisconsin wisconsinite wisconsinites wisdom wisdomful wisdomless wisdomproof wisdoms wisdomship wise wiseacre wiseacred wiseacredness wiseacredom wiseacreish wiseacreishness wiseacreism wiseacres wiseass wiseasses wisecrack wisecracked wisecracker wisecrackers wisecrackery wisecracking wisecracks wised wiseguy wiseguys wisehead wisehearted wiseheartedly wiseheimer wiselier wiseliest wiselike wiseling wiselings wisely wiseman wisen wiseness wisenesses wisenheimer wisenheimers wisent wisents wiser wises wisest wiseweed wisewoman wisewomen wish wisha wishable wishbone wishbones wished wishedly wisher wishers wishes wishful wishfully wishfulness wishfulnesses wishing wishingly wishings wishless wishly wishmay wishness wisht wishtonwish wishtonwishes wishy wising wisket wiskets wisking wiskinkie wiskinky wismuth wisp wisped wispier wispiest wispily wispiness wispinesses wisping wispish wisplike wisps wispy wiss wisse wissed wissel wisses wisshe wissing wissle wist wistaria wistarias wiste wisted wistened wister wisteria wisterias wistful wistfully wistfulness wistfulnesses wisting wistit wistiti wistitis wistless wistlessness wistly wistonwish wists wisure wit witan witans witblits witblitses witch witchbells witchbroom witchcraft witchcrafts witchdoctor witchdoctors witched witchedly witchen witchens witcher witchercully witcheries witchering witchery witches witchet witchetties witchetty witchgrass witchgrasses witchhood witchier witchiest witching witchingly witchings witchknot witchknots witchleaf witchlike witchman witchmeal witchmeals witchmonger witchuck witchweed witchweeds witchwife witchwoman witchwood witchwork witchy witcraft wite wited witeless witen witenagemot witenagemote witenagemotes witenagemots witepenny witereden wites witess witful witgat witgatboom witgatbooms witgats with withal witham withamite withbeg withcall withdaw withdraught withdraw withdrawable withdrawal withdrawals withdrawer withdrawers withdrawing withdrawingness withdrawment withdrawments withdrawn withdrawnness withdrawnnesses withdraws withdrew withe withed withen wither witherband witherblench withercraft witherdeed withered witheredly witheredness witherednesses witherer witherers withergloom withering witheringly witherings witherite witherites witherling witherly withernam withers withershins witherso withersoever withertip witherwards witherweight withery withes withewood withgang withgate withhault withheld withhele withhie withhold withholdable withholdal withholden withholdens withholder withholders withholding withholdings withholdment withholdments withholds withier withies withiest within withindoors withinforth withing withins withinside withinsides withinward withinwards withnay withness withnim witholden without withoutdoors withouten withoutforth withouts withoutside withoutwards withs withsave withsaw withsay withsayer withset withslip withspar withstand withstander withstanders withstanding withstandingness withstands withstay withstood withstrain withtake withtee withturn withvine withwind withwinds withy withypot withywind withywinds witing witjar witless witlessly witlessness witlessnesses witlet witling witlings witloof witloofs witlosen witmonger witness witnessable witnessdom witnessed witnesser witnessers witnesses witnesseth witnessing witney witneyer witneys wits witsafe witship wittal wittall wittawer witteboom witted wittedness wittednesses witten witter wittered wittering witterly witterness witters wittgenstein wittgensteinian witticaster wittichenite witticism witticisms witticize wittier wittiest wittified wittily wittiness wittinesses witting wittingite wittingly wittings wittol wittolly wittols wittome witty witwall witwalls witwanton witwantoned witwantoning witwantons witword witworm witzchoura wive wived wivehood wivehoods wiver wivern wiverns wivers wives wiving wiwi wiz wizard wizardess wizardism wizardlike wizardly wizardries wizardry wizards wizardship wizen wizened wizenedness wizening wizens wizes wizier wiziers wizzen wizzens wizzes wjc wk wkly wl wlatful wlatsome wlecche wlench wlity wloka wlonkhede wm wmk wmo wnw wo woa woad woaded woader woadman woads woadwax woadwaxen woadwaxens woadwaxes woady woak woald woalds woan wob wobbegong wobbegongs wobble wobbled wobbler wobblers wobbles wobblier wobblies wobbliest wobbliness wobblinesses wobbling wobblingly wobblings wobbly wobegone wobegoneness wobegonish wobster wocas wocheinite wock wocks wod wodan woddie wode wodeleie woden wodenism wodge wodges wodgy woe woebegone woebegoneness woebegonenesses woebegonish woefare woeful woefuller woefullest woefully woefulness woefulnesses woehlerite woeness woenesses woes woesome woevine woewearied woeworn woffler woft woful wofully wofulness wofulnesses wog woggish woggle woggles woghness wogiet wogs wogul wohlac wohlerite woibe woidre woilie woiwode woiwodes wok wokas woke woken wokowi woks wold woldes woldlike wolds woldsman woldy woleai wolf wolfachite wolfbane wolfberries wolfberry wolfdom wolfed wolfen wolfer wolfers wolffia wolffian wolffiella wolffish wolffishes wolfhood wolfhound wolfhounds wolfian wolfing wolfings wolfish wolfishly wolfishness wolfishnesses wolfkin wolfkins wolfless wolflike wolfling wolflings wolfman wolfmen wolfram wolframate wolframic wolframine wolframinium wolframite wolframites wolframium wolframs wolfs wolfsbane wolfsbanes wolfsbergite wolfskin wolfskins wolfward wolfwards wollastonite wollastonites wollies wollock wollomai wollop wolly wolof wolter wolve wolveboon wolved wolver wolverene wolverenes wolverine wolverines wolvers wolves wolving wolvings wolvish wolvishly woman womanbodies womanbody womandom womaned womanfolk womanfully womanhead womanhearted womanhood womanhoods womanhouse womaning womanisation womanise womanised womaniser womanisers womanises womanish womanishly womanishness womanishnesses womanising womanism womanisms womanist womanists womanity womanization womanize womanized womanizer womanizers womanizes womanizing womankind womankinds womanless womanlier womanliest womanlihood womanlike womanlikeness womanliness womanlinesses womanly womanmuckle womanness womanpost womanpower womanpowers womanproof womans womanship womanways womanwise womb wombat wombats wombed wombier wombiest wombing womble wombles womblike wombs wombside wombstone womby women womenfolk womenfolks womenkind womenkinds womenswear womenswears womera womerah womeras wommala wommera wommerah wommerala wommeras womp womplit womps womyn won wonder wonderberries wonderberry wonderbright wondercraft wonderdeed wondered wonderer wonderers wonderful wonderfuller wonderfully wonderfulness wonderfulnesses wondering wonderingly wonderings wonderland wonderlandish wonderlands wonderless wonderlessness wonderment wonderments wondermonger wondermongering wondermongerings wondermongers wonderous wonders wondersmith wondersome wonderstrong wonderstruck wonderwell wonderwoman wonderwork wonderworker wonderworkers wonderworking wonderworks wonderworthy wondie wondred wondrous wondrously wondrousness wondrousnesses wone wonegan wong wonga wongah wongas wongen wongi wongied wongies wongiing wongis wongshy wongsky woning wonings wonk wonkier wonkiest wonks wonky wonna wonned wonner wonners wonning wonnings wonnot wons wont wonted wontedly wontedness wontednesses wonting wontless wonton wontons wonts woo wooable woobut woobuts wood woodagate woodbark woodbin woodbind woodbinds woodbine woodbined woodbines woodbins woodblock woodblocks woodborer woodborers woodboring woodbound woodbox woodboxes woodburning woodbury woodburytype woodburytypes woodbush woodcarver woodcarvers woodcarving woodcarvings woodchat woodchats woodchip woodchips woodchop woodchopper woodchoppers woodchopping woodchoppings woodchops woodchuck woodchucks woodcoc woodcock woodcockise woodcockize woodcocks woodcracker woodcraf woodcraft woodcrafter woodcrafters woodcraftiness woodcrafts woodcraftsman woodcraftsmen woodcrafty woodcreeper woodcreepers woodcut woodcuts woodcutter woodcutters woodcutting woodcuttings wooded wooden woodendite woodener woodenest woodenhead woodenheaded woodenheadedness woodenheadednesses woodenheads woodenly woodenness woodennesses woodentop woodentops woodenware woodenwares woodenweary woodeny woodfall woodfern woodfish woodfrog woodgeld woodgrain woodgraining woodgrains woodgrouse woodgrouses woodgrub woodhack woodhacker woodhen woodhens woodhewer woodhole woodholes woodhorse woodhorses woodhouse woodhouses woodhung woodie woodier woodies woodiest woodine woodiness woodinesses wooding woodish woodjobber woodkern woodknacker woodland woodlander woodlanders woodlands woodlark woodlarks woodless woodlessness woodlessnesses woodlet woodlice woodlike woodlind woodlocked woodlore woodlores woodlot woodlots woodlouse woodly woodmaid woodman woodmancraft woodmanship woodmeal woodmeals woodmen woodmice woodmonger woodmote woodmouse woodness woodnesses woodnote woodnotes woodoo woodpeck woodpecker woodpeckers woodpenny woodpigeon woodpigeons woodpile woodpiles woodprint woodprints woodranger woodrat woodreed woodreeve woodreeves woodrick woodrime woodris woodrock woodroof woodroofs woodrow woodrowel woodruff woodruffs woodrush woodrushes woods woodscrew woodscrews woodsere woodshed woodshedde woodshedded woodsheddi woodshedding woodsheddings woodsheds woodship woodshock woodshocks woodshop woodshrike woodshrikes woodsia woodsias woodside woodsier woodsiest woodsilver woodsiness woodskin woodskins woodsman woodsmen woodsmoke woodsorrel woodspite woodspites woodstone woodstones woodstove woodstoves woodsy woodthrush woodthrushes woodtone woodtones woodturner woodturners woodturning woodwale woodwales woodwall woodward woodwardia woodwards woodwardship woodware woodwax woodwaxen woodwaxens woodwaxes woodwind woodwinds woodwise woodwork woodworker woodworkers woodworking woodworkings woodworks woodworm woodworms woodwose woodwoses woodwright woody woodyard woodyards wooed wooer wooers woof woofed woofell woofer woofers woofier woofiest woofing woofs woofter woofters woofy woohoo wooing wooingly wooings wool woold woolded woolder woolders woolding wooldings woolds wooled woolen woolenet woolenette woolenization woolenize woolens wooler woolers woolert woolf woolfat woolfats woolfell woolfells woolgather woolgathered woolgatherer woolgatherers woolgathering woolgatherings woolgathers woolgrower woolgrowers woolgrowing woolgrowings woolhat woolhats woolhead woolie woolier woolies wooliest wooliness woolinesses woolled woollen woollenisation woollenise woollenization woollenize woollens woollier woollies woolliest woollike woollily woolliness woollinesses woolly woollyback woollybacks woollybutt woollybutts woollyhead woollyish woolman woolmen woolpack woolpacks woolpress wools woolsack woolsacks woolsaw woolsey woolseys woolshearer woolshearing woolshears woolshed woolsheds woolskin woolskins woolsorter woolsorters woolsorting woolsower woolstapling woolstock woolulose woolward woolwasher woolweed woolwheel woolwich woolwinder woolwork woolworker woolworking woolworks woolworth wooly woom woomer woomera woomerah woomerahs woomerang woomerangs woomeras woomp woomping woon wooned wooning woons woopie woopies woops woopsed woopses woopsing woorali wooralis woorara wooraras woorari wooraris woordbook woos woosel woosell woosells woosels woosh wooshed wooshes wooshing wooster woot wootz wootzes woozier wooziest woozily wooziness woozinesses woozle woozy wop wopped wopping woppish wops wopsy worble worcester worcesterberries worcesterberry worcesters worcestershire word wordable wordably wordage wordages wordbook wordbooks wordbound wordbreak wordbreaks wordbuilding wordcraft wordcraftsman worded worder wordfinder wordfinders wordgame wordgames wordhoard wordier wordiers wordiest wordily wordiness wordinesses wording wordings wordish wordishly wordishness wordishnesses wordle wordlength wordless wordlessly wordlessness wordlessnesses wordlier wordlike wordlore wordlores wordlorist wordmaker wordmaking wordman wordmanship wordmen wordmonger wordmongering wordmongerings wordmongers wordmongery wordness wordnet wordperfect wordplay wordplays wordprocessing wordprocessor wordprocessors words wordsman wordsmanship wordsmen wordsmith wordsmitheries wordsmithery wordsmiths wordspinner wordspite wordstar wordster wordsworth wordsworthian wordy wore work workabilities workability workable workableness workablenesses workably workaday workadays workaholic workaholics workaholism workaholisms workaround workarounds workaway workbag workbags workbank workbasket workbaskets workbench workbenches workboard workboat workboats workbook workbooks workbox workboxes workbrittle workday workdays worked worker workerist workerists workers workfare workfares workfellow workfellows workfile workflow workflows workfolk workfolks workforce workforces workful workgirl workgirls workgroup workgroups workhand workhorse workhorses workhour workhours workhouse workhoused workhouses working workingly workingman workingmen workings workingwoman workingwomen workingwonan workless worklessness worklessnesses workload workloads workloom workman workmanlike workmanlikeness workmanliness workmanly workmanship workmanships workmaster workmasters workmate workmates workmen workmistress workmistresses workout workouts workpan workpeople workpiece workpieces workplace workplaces workroom workrooms works worksheet worksheets workship workshop workshopped workshopping workshops workshy worksome workspace workspaces workstand workstation workstations worktable worktables worktime worktop worktops workup workups workwatcher workwatchers workways workwear workwears workweek workweeks workwise workwoman workwomanlike workwomanly workwomen worky workyard world worldaught worldbeater worldbeaters worlded worldful worldish worldless worldlet worldlier worldliest worldlike worldlily worldliness worldlinesses worldling worldlings worldly worldmaker worldmaking worldman worldproof worldquake worlds worldscale worldscales worldview worldviews worldward worldwards worldway worldwide worldwideness worldy worm wormcast wormcasts wormed wormer wormeries wormers wormery wormfish wormfishes wormgear wormgears wormhole wormholed wormholes wormhood wormian wormier wormiest wormil wormils worminess worminesses worming wormish wormless wormlike wormling wormproof wormroot wormroots worms wormseed wormseeds wormship wormweed wormwood wormwoods wormy worn wornil wornness wornnesses wornout worral worrals worrel worrels worriable worricow worricows worriecow worried worriedly worriedness worrier worriers worries worriless worriment worriments worrisome worrisomely worrisomeness worrisomenesses worrit worrited worriter worriting worrits worry worrycow worrycows worryguts worrying worryingly worryings worryproof worrywart worrywarts worrywort worse worsed worsement worsen worsened worseness worsenesses worsening worsens worser worserment worses worset worsets worship worshipability worshipable worshiped worshiper worshipers worshipful worshipfully worshipfulness worshipfulnesses worshiping worshipingly worshipless worshipped worshipper worshippers worshipping worshippingly worships worshipworth worshipworthy worsing worsle worsleya worsleyas worssett worst worsted worsteds worsting worsts worsum wort worth worthed worthful worthfulness worthied worthier worthies worthiest worthily worthiness worthinesses worthing worthless worthlessly worthlessness worthlessnesses worths worthship worthward worthwhile worthwhileness worthwhilenesses worthy worthying wortle wortles worts wortworm wos wosbird wosbirds wosith wosome wost wostteth wot wotan wotcha wotcher wotchers wote wotlink wots wotted wottest wotteth wotting woubit woubits wouch wouf wough wouhleche would wouldest woulding wouldn wouldnt woulds wouldst woulfe wound woundability woundable woundableness wounded woundedly wounder wounders woundily wounding woundingly woundings woundless woundly wounds woundwort woundworth woundworts woundy wourali wouralis wourari wournil woustour wove woven wovens wow wowed wowee wowening wowf wowfer wowfest wowing wows wowser wowserdom wowserian wowserish wowserism wowsers wowsery wowt wowwows wox woxen woy wpm wr wrabbe wrabill wrack wracked wracker wrackful wracking wracks wrager wraggle wrainbolt wrainstaff wrainstave wraist wraith wraithe wraithlike wraiths wraithy wraitly wraker wramp wran wrang wrangle wrangled wrangler wranglers wranglership wranglerships wrangles wranglesome wrangling wranglingly wranglings wrangs wrannock wranny wrap wraparound wraparounds wraple wrapover wrapovers wrappage wrappages wrapped wrapper wrappered wrapperer wrappering wrappers wrapping wrappings wraprascal wrapround wraprounds wraps wrapt wrapup wrasse wrasses wrassle wrassled wrassles wrassling wrast wrasted wrasting wrastle wrastled wrastler wrastles wrastling wrasts wratack wrate wrath wrathed wrathful wrathfully wrathfulness wrathfulnesses wrathier wrathiest wrathily wrathiness wrathinesses wrathing wrathless wrathlike wraths wrathy wraw wrawl wrawled wrawler wrawling wrawls wraxle wraxled wraxles wraxling wraxlings wray wrayful wreak wreaked wreaker wreakers wreakful wreaking wreakless wreaks wreat wreath wreathage wreathe wreathed wreathen wreather wreathers wreathes wreathier wreathiest wreathing wreathingly wreathless wreathlet wreathlike wreathmaker wreathmaking wreathpiece wreaths wreathwise wreathwork wreathwort wreathy wreck wreckage wreckages wrecked wrecker wreckers wreckfish wreckfishes wreckful wrecking wreckings wreckmaster wreckmasters wrecks wrecky wren wrench wrenched wrencher wrenchers wrenches wrenching wrenchingly wrenchings wrenlet wrenlike wrens wrentail wrest wrestable wrested wrester wresters wresting wrestingly wrestle wrestled wrestler wrestlerlike wrestlers wrestles wrestling wrestlings wrests wretch wretched wretcheder wretchedest wretchedly wretchedness wretchednesses wretches wretchless wretchlessly wretchlessness wretchock wrethe wrethed wrethes wrething wrible wricht wrick wricked wricking wricks wride wried wrier wries wriest wrig wriggle wriggled wriggler wrigglers wriggles wrigglesome wrigglework wrigglier wriggliest wriggling wrigglingly wrigglings wriggly wright wrightine wrightry wrights wrigley wrihte wrimple wring wringbolt wringed wringer wringers wringing wringings wringle wringman wrings wringstaff wringstaves wrinkle wrinkleable wrinkled wrinkledness wrinkledy wrinkleful wrinkleless wrinkleproof wrinkles wrinklet wrinklier wrinklies wrinkliest wrinkling wrinkly wrist wristband wristbands wristbone wristdrop wristed wrister wristfall wristier wristiest wristikin wristing wristlet wristlets wristlock wristlocks wrists wristwatch wristwatches wristwork wristy writ writability writable writation writative write writeable writee writeoff writeoffs writer writeress writeresses writerling writerly writers writership writerships writes writeup writeups writh writhe writhed writhedly writhedness writhen writheneck writher writhers writhes writhing writhingly writhings writhled writhy writing writinger writings writmaker writmaking writproof writs written writter wrive wrixle wrizled wrizzled wrnt wro wroath wroaths wrocht wroclaw wroke wroken wrong wrongdo wrongdoer wrongdoers wrongdoing wrongdoings wronged wronger wrongers wrongest wrongfile wrongful wrongfully wrongfulness wrongfulnesses wrongfuly wronghead wrongheaded wrongheadedly wrongheadedness wrongheadednesses wronghearted wrongheartedly wrongheartedness wronging wrongish wrongless wronglessly wrongly wrongness wrongnesses wrongous wrongously wrongousness wrongrel wrongs wrongwise wroot wrooted wrooting wroots wrossle wrote wroth wrothe wrothful wrothfully wrothily wrothiness wrothly wrothsome wrothy wrought wrox wrung wrungness wry wrybill wrybills wryer wryest wrying wryly wrymouth wrymouths wryneck wrynecked wrynecks wryness wrynesses wrytail wrythen ws wsw wt wtv wu wud wudded wuddie wudding wudge wuds wudu wuerzburg wuff wugg wuggishness wulder wulfenite wulfenites wulfila wulk wull wullawins wullcat wulled wulling wulliwa wulls wumble wumman wummel wun wunderbar wunderkind wunderkinder wunderkinds wungee wunna wunner wunners wunsome wuntee wup wur wurley wurleys wurlies wurly wurmal wurraluh wurrung wurrup wurrus wurset wurst wursts wurtzilite wurtzite wurtzites wurtzitic wurzburg wurzel wurzels wus wuses wush wushu wushus wusp wuss wusser wusses wussier wussies wussiest wussy wust wut wuther wuthered wuthering wuthers wuzu wuzzer wuzzle wuzzled wuzzles wuzzling wuzzy www wy wyandot wyandotte wyandottes wych wyches wycliffite wyclifian wyclifism wyclifite wyde wye wyes wyethia wyke wykehamical wykehamist wyle wyled wyles wyliecoat wyliecoats wyling wymote wyn wynd wynds wyne wynkernel wynn wynne wynnea wynns wynris wyns wyoming wyomingite wype wyrd wyrock wysiwyg wyson wyss wysty wyte wyted wytes wyting wyve wyver wyvern wyverns x xalostockite xanax xanthaline xantham xanthamic xanthamid xanthamide xanthams xanthan xanthane xanthans xanthate xanthates xanthation xanthein xantheins xanthelasma xanthelasmic xanthelasmoidea xanthemia xanthene xanthenes xanthian xanthic xanthid xanthide xanthin xanthindaba xanthine xanthines xanthins xanthinuria xanthione xanthippe xanthism xanthite xanthium xanthiuria xanthocarpous xanthochroi xanthochroia xanthochroias xanthochroic xanthochroid xanthochroids xanthochroism xanthochroisms xanthochromia xanthochromias xanthochromic xanthochroous xanthocobaltic xanthocone xanthoconite xanthocreatinine xanthocyanopia xanthocyanopsia xanthocyanopsy xanthocyanopy xanthoderm xanthoderma xanthodermatous xanthodont xanthodontous xanthogen xanthogenamic xanthogenamide xanthogenate xanthogenic xantholeucophore xanthoma xanthomas xanthomata xanthomatoses xanthomatosis xanthomatous xanthomelanous xanthometer xanthomonad xanthomonas xanthomyeloma xanthone xanthones xanthophane xanthophore xanthophose xanthophyceae xanthophyl xanthophyll xanthophyllic xanthophyllite xanthophyllous xanthophylls xanthopia xanthopicrin xanthopicrite xanthoproteic xanthoprotein xanthoproteinic xanthopsia xanthopsias xanthopsin xanthopsydracia xanthopterin xanthopterine xanthopterines xanthopterins xanthopurpurin xanthorhamnin xanthorrhoea xanthorrhoeaceae xanthorroea xanthosiderite xanthosis xanthosoma xanthospermous xanthotic xanthous xanthoxenite xanthoxyl xanthoxylin xanthoxyls xanthrochroid xanthuria xanthydrol xanthyl xantippe xantusiidae xarque xat xc xci xcii xciv xcix xcl xctl xcvi xcvii xd xdiv xe xebec xebecs xed xeme xenacanthine xenagogue xenagogy xenarthra xenarthral xenarthrous xenelasia xenelasy xenia xenial xenian xenias xenic xenically xenicidae xenicus xenium xenobiologies xenobiology xenobiosis xenobiotic xenobiotics xenoblast xenochia xenocryst xenocrystic xenocrysts xenocyst xenoderm xenodiagnoses xenodiagnosis xenodiagnostic xenodocheion xenodochia xenodochium xenodochiums xenodochy xenogamies xenogamous xenogamy xenogeneic xenogeneses xenogenesis xenogenetic xenogenic xenogenies xenogenous xenogeny xenoglossia xenoglossias xenograft xenografts xenolite xenolith xenolithic xenoliths xenomania xenomaniac xenomanias xenomenia xenomenias xenomorphic xenomorphically xenomorphosis xenon xenons xenoparasite xenoparasitism xenopeltid xenophile xenophiles xenophilia xenophilias xenophilic xenophilism xenophilous xenophobe xenophobes xenophobia xenophobian xenophobias xenophobic xenophobically xenophobies xenophobism xenophoby xenophontean xenophoran xenophthalmia xenophya xenoplastic xenopodid xenopodidae xenopodoid xenopteran xenopterygian xenopus xenopuses xenorhyncus xenosaurid xenosauridae xenosauroid xenosaurus xenotime xenotimes xenotransplant xenotransplantation xenotransplantations xenotransplants xenotropic xenurine xenyl xenylamine xerafin xerafins xeranses xeransis xeranthemum xeranthemums xerantic xeraphim xeraphims xeraphin xeraphins xerarch xerasia xerasias xeres xeric xerically xericities xericity xeriff xerobates xerochasies xerochasy xerocline xeroderma xerodermas xerodermata xerodermatic xerodermatous xerodermia xerodermias xerodermic xerogel xerographer xerographers xerographic xerographically xerographies xerography xeroma xeromas xeromata xeromenia xeromorph xeromorphic xeromorphous xeromorphs xeromorphy xeromyron xeromyrum xeronate xeronic xerophagia xerophagies xerophagy xerophil xerophile xerophilies xerophilous xerophily xerophobous xerophthalmia xerophthalmias xerophthalmic xerophthalmos xerophthalmy xerophyllum xerophyte xerophytes xerophytic xerophytically xerophytism xerophytisms xeroprinting xeroradiographies xeroradiography xerosere xeroseres xeroses xerosis xerostoma xerostomas xerostomata xerostomia xerostomias xerotes xerotherm xerothermic xerotic xerotocia xerotripses xerotripsis xerox xeroxed xeroxes xeroxing xerus xeruses xhosa xi xian xii xiii xint xiphias xiphihumeralis xiphihumeralises xiphiid xiphiidae xiphiiform xiphioid xiphiplastra xiphiplastral xiphiplastrals xiphiplastron xiphiplastrons xiphisterna xiphisternal xiphisternum xiphisternums xiphistna xiphisuran xiphocostal xiphodynia xiphoid xiphoidal xiphoidian xiphoids xiphopagi xiphopagic xiphopagous xiphopagus xiphopaguses xiphophyllous xiphosterna xiphosternum xiphosura xiphosuran xiphosurans xiphosure xiphosurous xiphuous xiphydriid xis xiv xix xl xmas xmases xoana xoanon xoanona xonotlite xor xr xray xref xreffed xreffing xrefs xs xt xterm xu xurel xv xvi xvii xviii xw xx xxi xxii xxiii xxiv xxix xxv xxvi xxvii xxviii xxx xxxi xxxii xxxiii xxxiv xxxix xxxv xxxvi xxxvii xxxviii xyla xylan xylans xylanthrax xylaria xylariaceae xylate xylem xylems xylene xylenes xylenol xylenols xylenyl xyletic xylic xylidic xylidin xylidine xylidines xylidins xylindein xylinid xylite xylitol xylitols xylitone xylo xylobalsamum xylobalsamums xylocaine xylocarp xylocarpous xylocarps xylochrome xylochromes xylocopa xylocopid xylogen xylogenous xylogens xyloglyphy xylograph xylographed xylographer xylographers xylographic xylographical xylographically xylographies xylographing xylographs xylography xyloid xyloidin xyloidine xyloidines xyloidins xylol xylologies xylology xylols xyloma xylomancy xylomas xylomata xylomelum xylometer xylometers xylon xylonic xylonite xylonites xylonitrile xylophagan xylophagans xylophage xylophages xylophagid xylophagous xylophilous xylophone xylophones xylophonic xylophonist xylophonists xylopia xyloplastic xylopolist xylopyrographer xylopyrographies xylopyrography xyloquinone xylorcin xylorcinol xylorimba xylorimbas xylose xyloses xylosid xyloside xylosma xylostroma xylostromata xylostromatoid xylotile xylotomic xylotomical xylotomies xylotomist xylotomists xylotomous xylotomy xylotypographic xylotypographies xylotypography xyloyl xylyl xylylene xylylic xylyls xyphoid xyphophorus xyrid xyridaceae xyridaceous xyridales xyris xyst xyster xysters xysti xystoi xystos xysts xystum xystus xystuses xyz y ya yaba yabber yabbered yabbering yabbers yabbi yabbie yabbies yabble yabby yaboo yabu yacal yacare yacata yacca yaccas yachan yacht yachtdom yachted yachter yachters yachtie yachties yachting yachtings yachtist yachtman yachtmanship yachtmanships yachtmen yachts yachtsman yachtsmanlike yachtsmanship yachtsmanships yachtsmen yachtswoman yachtswomen yachty yack yacked yacker yackers yacking yacks yad yadayim yade yadim yaff yaffed yaffil yaffing yaffingale yaffingales yaffle yaffler yaffles yaffs yafo yag yager yagers yagger yaggers yaghourt yagi yagis yagourundi yags yagua yaguarundi yaguas yaguaza yah yahan yahi yahoo yahooism yahooisms yahoos yahrzeit yahrzeits yahs yahve yahveh yahwe yahweh yahwism yahwistic yair yaird yairds yaje yajein yajeine yajenin yajenine yajnopavita yak yakalo yakamik yakattalo yakhdan yakhdans yakima yakimona yakimonas yakimono yakimonos yakin yakitori yakitoris yakka yakkas yakked yakker yakkers yakking yakmak yakman yakow yakows yaks yaksha yakshi yakut yakuza yalb yald yale yales yali yalla yallaer yallock yallow yalta yaltopya yalu yam yama yamalka yamalkas yamaltu yamamai yamanai yamaskite yamen yamens yamilke yammadji yammer yammered yammerer yammerers yammering yammerings yammerly yammers yamp yampa yampee yamph yams yamshik yamstchick yamstchik yamulka yamulkas yamun yamuns yan yana yanacona yanan yancha yanchas yancopin yander yang yanggona yangon yangs yangtao yangtze yank yanked yankee yankees yanker yankers yankie yankies yanking yanks yanky yannam yanolite yanquapin yanqui yanquis yantra yantras yaoort yaounde yaourt yaourti yaourts yap yapa yaply yapness yapock yapocks yapok yapoks yapon yapons yapp yapped yapper yappers yappie yappier yappies yappiest yappiness yapping yappingly yappish yapps yappy yaps yapster yapsters yaqona yaqonas yar yarak yaray yarb yarborough yarboroughs yard yardage yardages yardang yardangs yardarm yardarms yardbird yardbirds yarded yarder yardful yardgrass yardie yarding yardkeep yardland yardlands yardline yardman yardmaster yardmasters yardmen yards yardsman yardstick yardsticks yardwand yardwands yardwork yardworks yare yarely yarer yarest yareta yarfa yarfas yariyari yark yarke yarkee yarl yarly yarm yarmalke yarmelke yarmelkes yarmouth yarmulka yarmulkas yarmulke yarmulkes yarn yarned yarnen yarner yarners yarning yarns yarnwindle yarovization yarovize yarovized yarovizing yarpha yarphas yarr yarraman yarramans yarramen yarran yarrans yarringle yarrow yarrows yarrs yarry yarta yartas yarth yarthen yarto yartos yarwhelp yarwhip yas yashiro yashmac yashmacs yashmak yashmaks yasmak yasmaks yat yatagan yatagans yataghan yataghans yatalite yate yates yati yatra yatras yatter yattered yattering yatteringly yatterings yatters yaud yauds yauld yaup yauped yauper yaupers yauping yaupon yaupons yaups yautia yautias yava yavapai yaw yawed yawey yawing yawl yawled yawler yawling yawls yawlsman yawmeter yawmeters yawn yawned yawner yawners yawney yawnful yawnfully yawnier yawniest yawnily yawniness yawning yawningly yawnings yawnproof yawns yawnups yawny yawp yawped yawper yawpers yawping yawpings yawps yawroot yaws yawshrub yawweed yawy yaxche yay yaya yays yazata yb ybet yblent ybore ybound ybounden ybrent ycie yclad ycled ycleepe ycleeped ycleepes ycleeping ycleped ycleping yclept ycond yd ydrad ydred yds ye yea yead yeading yeads yeah yeahs yealdon yealdons yealing yealings yealm yealmed yealming yealms yean yeaned yeaning yeanling yeanlings yeans yeaoman year yeara yearbird yearbook yearbooks yeard yearday yearded yearding yeards yeared yearend yearends yearful yearlies yearling yearlings yearlong yearly yearn yearned yearner yearners yearnful yearnfully yearnfulness yearning yearningly yearnings yearnling yearns yearock years yearth yeas yeasayer yeasayers yeasaying yeast yeasted yeastier yeastiest yeastily yeastiness yeastinesses yeasting yeastless yeastlike yeasts yeasty yeat yeather yeats yeatsian yecch yecchs yecchy yech yechs yechy yed yedding yeddo yede yederly yedes yeding yedo yee yeech yeed yeeding yeeds yeel yeelaman yeelin yeelins yees yeeuch yeeuck yegg yeggman yeggmen yeggs yeguita yeh yeld yeldrin yeldrine yeldring yeldrings yeldrock yeldrocks yelek yelk yelks yell yelled yeller yellers yelling yellings yelloch yelloched yelloching yellochs yellow yellowammer yellowback yellowbacks yellowbark yellowbellied yellowbellies yellowbelly yellowberries yellowberry yellowbill yellowbird yellowbirds yellowcake yellowcakes yellowcrown yellowcup yellowed yellower yellowest yellowfin yellowfins yellowfish yellowhammer yellowhammers yellowhead yellowheads yellowier yellowiest yellowing yellowish yellowishness yellowishnesses yellowknife yellowlegs yellowly yellowman yellowness yellownesses yellowroot yellowrump yellows yellowseed yellowshank yellowshanks yellowshins yellowstone yellowtail yellowtails yellowthorn yellowthroat yellowthroats yellowtop yellowware yellowwares yellowweed yellowwood yellowwoods yellowwort yellowy yells yelm yelmed yelmer yelming yelms yelp yelped yelper yelpers yelping yelpings yelps yelt yelts yelver yemeless yemen yemeni yemenite yemenites yeming yemschik yemsel yen yender yengees yeni yenisei yeniseian yenisey yenite yenned yenning yens yenta yentas yente yentes yentnite yeo yeom yeoman yeomaness yeomanette yeomanhood yeomanlike yeomanly yeomanries yeomanry yeomanwise yeomen yeorling yeowoman yeowomen yep yepeleic yepely yephede yeply yeps yer yerb yerba yerbal yerbales yerbas yercum yerd yerded yerding yerds yere yerga yerk yerked yerking yerks yern yersinia yersiniae yersinias yersinioses yersiniosis yertchuk yerth yerupaja yerva yes yese yeses yeshiva yeshivah yeshivahs yeshivas yeshivot yeshivoth yesk yesked yesking yesks yeso yessed yesses yessing yessir yessiree yesso yest yester yesterday yesterdayness yesterdays yestereve yestereven yesterevening yesterevenings yesterevens yestereves yestermorn yestermorning yestermornings yestermorns yestern yesternight yesternights yesternoon yesterweek yesteryear yesteryears yestreen yestreens yests yesty yet yeta yetapa yeth yether yethhounds yeti yetis yetlin yetling yett yetter yetts yetzer yeuk yeuked yeukieness yeuking yeuks yeuky yeve yeven yeves yeving yew yewen yews yex yexed yexes yexing yezidi yezo yezzy yfacks yfere yferre ygapo ygerne yggdrasil yglaunst ygo ygoe yhwh yi yibbles yicker yickered yickering yickers yid yiddish yiddishism yids yield yieldabilities yieldability yieldable yieldableness yieldablenesses yieldance yielded yielden yielder yielders yielding yieldingly yieldingness yieldingnesses yieldings yields yieldy yigh yike yikes yikker yikkered yikkering yikkers yill yills yilt yin yince yins yinst yip yipe yipee yipes yipped yippee yippees yipper yippers yippie yippies yipping yippy yips yird yirded yirding yirds yirk yirked yirking yirks yirm yirmilik yirn yirr yirred yirring yirrs yirth yirths yis yisrael yite yites yizkor ylahayll ylem ylems ylike ylke ylkes ym ymca ymir ymolt ymolten ympe ympes ymping ympt yn ynambu ynambus yo yob yobberies yobbery yobbish yobbishly yobbism yobbisms yobbo yobboes yobbos yobi yobo yobs yocco yochel yock yocked yockel yockernut yocking yocks yod yode yodel yodeled yodeler yodelers yodeling yodelist yodelled yodeller yodellers yodelling yodels yodh yodhs yodle yodled yodler yodlers yodles yodling yods yoe yoga yogas yogasana yogee yogeeism yogees yogh yoghourt yoghourts yoghs yoghurt yoghurts yogi yogic yogin yogini yoginis yogins yogis yogism yogisms yogist yogistic yogoite yogourt yogourts yogurt yogurts yohimbe yohimbenine yohimbes yohimbi yohimbin yohimbine yohimbines yohimbinization yohimbinize yoho yohourt yoi yoick yoicked yoicking yoicks yoicksed yoickses yoicksing yojan yojana yojanas yojans yok yokage yoke yokeable yokeableness yokeage yoked yokefellow yokefellows yokel yokeldom yokeless yokelish yokelism yokelry yokels yokemate yokemates yokemating yoker yokes yokewise yokewood yoking yokings yokked yokking yokohama yokozuna yokozunas yoks yokul yokuts yoky yold yolden yoldring yoldrings yolk yolked yolkier yolkiest yolkiness yolkless yolks yolky yom yomer yomim yomin yomp yomped yomping yomps yon yoncopin yond yonder yonderly yonders yondmost yondward yongthly yoni yonic yonis yonker yonkers yonks yonner yonnie yonside yont yoof yoofs yook yoop yoops yopper yoppers yor yore yores yoretime york yorked yorker yorkers yorkie yorkies yorking yorkish yorkist yorks yorkshire yorktown yorlin yoruba yos yosemite yot yotacism yotacize yote yottabyte yottabytes you youd youden youdith youff youk youked youking youks young youngberries youngberry younger youngers youngest younghearted youngish younglet youngling younglings youngly youngness youngnesses youngs youngster youngsters youngstown youngth youngthly youngths youngun younker younkers youp youpon youpons your youre yourn yours yourself yourselves yourt yourts yous youse youstir youth youthen youthened youthening youthens youthes youthful youthfullity youthfully youthfulness youthfulnesses youthhead youthheads youthheid youthhood youthhoods youthier youthiest youthily youthiness youthless youthlessness youthlike youthlikeness youthly youthquake youthquakes youths youthsome youthtide youthwort youthy youve youward youwards youze yoven yow yowden yowe yowed yowes yowie yowies yowing yowl yowled yowler yowlers yowley yowleys yowling yowlings yowlring yowls yows yowt yox yoy yoyo yperite yperites ypight yplast yplight ypocras ypres ypsiliform ypsiloid ypsilon ypsilons yr yrapt yravished yrbk yrent yrivd yrneh yrnehs yrs ys ysame yshend yshending yshends yshent yslaked yt ythundered ytost ytter ytterbia ytterbias ytterbic ytterbite ytterbium ytterbiums ytterbous ytterite yttria yttrialite yttrias yttric yttriferous yttrious yttrium yttriums yttrocerite yttrocolumbite yttrocrasite yttrofluorite yttrogummite yttrotantalite yu yuan yuans yuca yucas yucatan yucatec yucateco yucca yuccas yucch yuch yuchier yuchiest yuchy yuck yucked yuckel yucker yuckers yuckier yuckiest yuckiness yuckinesses yucking yuckle yucks yucky yue yuft yufts yug yuga yugada yugas yugoslav yugoslavia yugoslavian yugoslavians yugoslavs yugs yuh yuk yukata yukatas yuke yuked yukes yukier yukiest yuking yukked yukkel yukkier yukkiest yukking yukky yuko yukon yukos yuks yuky yulan yulans yule yuleblock yules yuletide yuletides yum yuma yuman yummier yummies yummiest yumminess yumminesses yummy yump yumped yumpie yumpies yumping yumps yungan yunker yunnan yunx yunxes yup yupon yupons yuppie yuppiedom yuppiedoms yuppies yuppification yuppifications yuppified yuppifies yuppify yuppifying yuppy yups yuquilla yuquillas yurt yurta yurts yus yusdrum yutu yutz yutzes yuzlik yuzluk ywca ywis ywroke z za zaar zabaglione zabagliones zabaione zabaiones zabajone zabajones zabeta zaboglione zabra zabras zabti zabtie zabtieh zabtiehs zaburro zac zacate zacaton zacatons zacatun zachariah zachun zack zacks zad zaddick zaddickim zaddik zaddikim zaddiks zadruga zaffar zaffars zaffer zaffers zaffir zaffirs zaffre zaffree zaffres zafree zaftig zag zagaie zagged zagging zaglossus zagreb zags zaguan zaibatsu zaikai zaikais zain zaire zairean zaires zairese zairian zairians zaitech zaitechs zak zakah zakat zakats zakkeu zakuska zakuski zalambdodont zalambdodonts zalamboodont zalophus zama zaman zamang zamangs zamans zamarra zamarras zamarro zamarros zambac zambezi zambia zambian zambians zambo zambomba zambombas zamboorak zambooraks zambos zambra zambuck zambucks zambuk zambuks zamia zamiaceae zamias zamindar zamindari zamindaries zamindaris zamindars zamindary zaminder zamorin zamorine zamouse zamouses zampogna zampognas zampone zamponi zanana zananas zander zanders zandmole zandoli zandolis zanella zanellas zanied zanier zanies zaniest zanily zaniness zaninesses zanja zanjas zanjero zanjeros zanjon zanjona zannichellia zannichelliaceae zant zantac zante zantedeschia zantedeschias zantes zantewood zanthoxyl zanthoxyls zanthoxylum zantiote zany zanying zanyish zanyism zanyisms zanyship zanza zanzas zanze zanzes zanzibar zap zapas zapata zapateado zapateados zapateo zapateos zapatero zaphara zaphrentid zaphrentoid zapodidae zapota zapote zapotilla zapotillas zapped zapper zappers zappier zappiest zapping zappy zaps zaptiah zaptiahs zaptieh zaptiehs zapupe zapus zaqqum zar zarabanda zaragoza zarape zarapes zarathustra zarathustrian zaratite zaratites zareba zarebas zareeba zareebas zarf zarfs zari zariba zaribas zaris zarnec zarnecs zarnich zarnichs zarontin zarp zarpanit zarzuela zarzuelas zas zastruga zastrugas zastrugi zat zati zatis zattare zax zaxes zayat zayin zayins zazen zazens zea zeal zealand zealander zealanders zealant zealants zealed zealful zealless zeallessness zealot zealotic zealotical zealotism zealotisms zealotist zealotries zealotry zealots zealous zealously zealousness zealousnesses zealousy zealproof zeals zeas zeatin zeatins zeaxanthin zebec zebeck zebecks zebecs zebedee zebra zebrafish zebrafishes zebraic zebralike zebras zebrass zebrasses zebrawood zebrawoods zebrina zebrinas zebrine zebrinnies zebrinny zebroid zebroids zebrula zebrulas zebrule zebrules zebu zebub zebubs zebulun zeburro zebus zecchin zecchine zecchines zecchini zecchino zecchinos zecchins zechariah zechin zechins zechstein zed zedoaries zedoary zedonk zedonks zeds zee zeed zeekoe zees zehner zeidae zeilanite zein zeins zeism zeiss zeist zeitgeber zeitgebers zeitgeist zeitgeists zek zeks zel zelant zelants zelator zelators zelatrice zelatrices zelatrix zelatrixes zelkova zelkovas zelophobia zelophobias zelophobic zelophobics zeloso zelotic zelotypia zelotypias zelotypie zels zeme zemeism zemi zemiism zemimdari zemindar zemindari zemindaries zemindaris zemindars zemindary zemmi zemni zemstroist zemstva zemstvo zemstvos zen zenaida zenaidas zenaidura zenana zenanas zend zendic zendician zendik zendikite zendiks zendo zendos zenick zenith zenithal zeniths zenithward zenithwards zenned zenning zeno zenobia zenocentric zenographic zenographical zenography zenonian zens zentner zenu zenzuic zeolite zeolites zeolitic zeolitiform zeolitization zeolitize zeolitized zeolitizing zeomorphi zeoscope zep zephaniah zepharovichite zephiran zephyr zephyranth zephyrean zephyrian zephyrless zephyrlike zephyrous zephyrs zephyrus zephyry zeppelin zeppelins zeppole zeppoles zeppoli zeps zeptosecond zeptoseconds zequin zer zerda zerdas zereba zerebas zeriba zeribas zerk zerks zermahbub zero zeroaxial zeroed zeroes zeroeth zeroing zeroise zeroize zeros zeroth zerumbet zerumbets zest zested zester zesters zestful zestfully zestfulness zestfulnesses zestier zestiest zestily zestiness zesting zestless zestril zests zesty zeta zetacism zetas zetetic zetetics zetland zettabyte zettabytes zeuctocoelomatic zeuctocoelomic zeugite zeuglodon zeuglodont zeuglodontoid zeuglodonts zeugma zeugmas zeugmatic zeugmatically zeunerite zeus zeuxite zeuxites zeuzerian zex zexes zeze zezes zho zhomo zhomos zhos zhuang ziamet ziara ziarat zibeline zibelines zibelline zibellines zibet zibeth zibethone zibeths zibetone zibets zibetum ziczac zidovudine zidovudines ziega zieger zietrisikite ziff ziffius ziffiuses ziffs zig zigadene zigadenus zigamorph zigamorphs zigan ziganka zigankas zigans zigged zigger zigging ziggurat ziggurats zigs zigzag zigzagged zigzaggedly zigzaggedness zigzagger zigzaggeries zigzaggers zigzaggery zigzagging zigzaggy zigzags zigzagways zigzagwise zihar zikkurat zikkurats zikurat zikurats zila zilas zilch zilches zilchviticetum zileuton zileutons zill zilla zillah zillahs zillas zillion zillionaire zillionaires zillions zillionth zillionths zills zilpah zimarra zimb zimbabwe zimbabwean zimbalon zimbaloon zimbi zimbis zimbs zimentwater zimme zimmer zimmers zimmi zimmis zimmy zimocca zimoccas zin zinacef zinc zincalo zincate zincates zinced zincenite zincic zincid zincide zincier zinciest zinciferous zincification zincifications zincified zincifies zincify zincifying zincing zincite zincites zincize zincke zincked zinckenite zinckenites zinckier zinckiest zinckification zinckifications zinckified zinckifies zinckify zinckifying zincking zincks zincky zinco zincode zincodes zincograph zincographer zincographers zincographic zincographical zincographies zincographs zincography zincoid zincolyses zincolysis zincos zincotype zincous zincs zincum zincuret zincy zindabad zindiq zine zineb zinebs zines zinfandel zinfandels zing zingana zingani zingano zingara zingare zingaresca zingari zingaro zinged zingel zingels zinger zingerone zingers zingiber zingiberaceae zingiberaceous zingiberene zingiberol zingiberone zingibers zingier zingiest zinging zings zingy zinjanthropi zinjanthropus zinjanthropuses zink zinke zinked zinkenite zinkenites zinkes zinkier zinkiest zinkiferous zinkification zinkifications zinkified zinkifies zinkify zinkifying zinking zinky zinnia zinnias zinnwaldite zinober zins zinsang zinyamunga zinziberaceous zion zionism zionist zionists zip ziphian ziphiidae ziphioid zipless ziplock zipped zippeite zipper zippered zippering zippers zippier zippiest zipping zippingly zippo zippos zipppier zipppiest zippy zips ziptop zira zirai ziram zirams zirbanit zircalloy zircaloy zircaloys zircite zircofluoride zircoloy zircoloys zircon zirconate zirconia zirconian zirconias zirconic zirconiferous zirconifluoride zirconium zirconiums zirconofluoride zirconoid zircons zirconyl zirkelite zirkite zit zite zither zitherist zitherists zithern zitherns zithers ziti zitis zits zitter zittern zitty zitzit zitzith ziz zizania zizanias zizany zizel zizels ziziphus zizit zizith zizyphus zizyphuses zizz zizzed zizzes zizzing zizzle zizzled zizzles zizzling zlote zloties zloty zlotych zlotys zn zo zoa zoacum zoaea zoanthacean zoantharian zoantharians zoanthid zoanthodeme zoanthodemic zoanthoid zoanthropic zoanthropies zoanthropy zoarces zoarcidae zoaria zoarial zoarium zoariums zobo zobos zobtenite zobu zobus zocalo zocalos zocco zoccolo zoccolos zoccos zod zodiac zodiacal zodiacs zodiophilous zoea zoeae zoeaform zoeal zoeas zoechrome zoechromes zoecia zoecium zoeform zoehemera zoehemerae zoetic zoetrope zoetropes zoetropic zoftig zogan zogo zoiatria zoiatrias zoiatrics zoic zoid zoidiophilous zoidogamous zoilus zoisia zoisite zoisites zoisitization zoism zoisms zoist zoistic zoists zokor zola zolaesque zolaism zoll zolle zollpfund zollverein zolotink zolotnik zolpidem zolpidems zomba zombi zombie zombielike zombies zombification zombifications zombified zombifies zombify zombifying zombiism zombiisms zombis zomboruk zomboruks zomotherapeutic zomotherapy zona zonae zonaesthesia zonal zonality zonally zonar zonary zonate zonated zonation zonations zonda zondas zone zoned zoneless zonelet zonelike zoner zoners zones zonesthesia zonetime zonetimes zonic zoniferous zoning zonings zonite zonitid zonk zonked zonking zonks zonnar zonochlorite zonociliate zonoid zonolimnetic zonoplacental zonoskeleton zonotrichia zonta zonula zonulae zonular zonulas zonule zonules zonulet zonulets zonure zonures zonurid zonuroid zoo zoobenthoic zoobenthos zoobiotic zooblast zooblasts zoocarp zoocecidium zoocephalic zoochem zoochemical zoochemistries zoochemistry zoochemy zoochore zoochores zoochories zoochorous zoochory zoocoenocyte zoocultural zooculture zoocultures zoocurrent zoocyst zoocystic zoocytia zoocytial zoocytium zoodendria zoodendrium zoodendriums zoodynamic zoodynamics zooea zooeae zooeal zooeas zooecia zooecial zooecium zooerastia zooerasty zooerythrin zooey zooflagellate zooflagellates zoofulvin zoogamete zoogametes zoogamies zoogamous zoogamy zoogene zoogenesis zoogenic zoogenies zoogenous zoogeny zoogeog zoogeographer zoogeographers zoogeographic zoogeographical zoogeographically zoogeographies zoogeography zoogeological zoogeologist zoogeology zooglea zoogleae zoogleal zoogleas zoogler zoogloea zoogloeae zoogloeal zoogloeas zoogloeic zoogloeoid zoogonic zoogonidia zoogonidium zoogonies zoogonous zoogony zoograft zoografting zoograftings zoografts zoographer zoographers zoographic zoographical zoographically zoographies zoographist zoographists zoography zoogrpahy zooid zooidal zooidiophilous zooids zooier zooiest zookeeper zookeepers zookers zooks zookses zool zoolater zoolaters zoolatria zoolatrias zoolatries zoolatrous zoolatry zoolite zoolites zoolith zoolithic zooliths zoolitic zoologer zoologic zoological zoologically zoologicoarchaeologist zoologicobotanical zoologies zoologist zoologists zoologize zoologized zoologizing zoology zoom zoomagnetic zoomagnetism zoomagnetisms zoomancies zoomancy zoomania zoomanias zoomantic zoomantist zoomastigina zoomastigote zoomechanical zoomechanics zoomed zoomelanin zoometric zoometrical zoometries zoometry zoomimetic zoomimic zooming zoomorph zoomorphic zoomorphies zoomorphism zoomorphisms zoomorphize zoomorphs zoomorphy zooms zoon zoona zoonal zooned zoonerythrin zoonic zooning zoonist zoonite zoonites zoonitic zoonomia zoonomias zoonomic zoonomical zoonomies zoonomist zoonomists zoonomy zoonoses zoonosis zoonosologist zoonosology zoonotic zoons zoonule zoopaleontology zoopantheon zooparasite zooparasites zooparasitic zoopathies zoopathological zoopathologies zoopathologist zoopathology zoopathy zooperal zooperies zooperist zooperists zoopery zoophagan zoophagans zoophagies zoophagous zoophagus zoophagy zoopharmacological zoopharmacy zoophile zoophiles zoophilia zoophiliac zoophilias zoophilic zoophilies zoophilism zoophilisms zoophilist zoophilists zoophilite zoophilitic zoophilous zoophily zoophism zoophobe zoophobes zoophobia zoophobias zoophobous zoophori zoophoric zoophorous zoophorus zoophysical zoophysicist zoophysics zoophysiologies zoophysiologist zoophysiologists zoophysiology zoophytal zoophyte zoophytes zoophytic zoophytical zoophytish zoophytography zoophytoid zoophytological zoophytologies zoophytologist zoophytologists zoophytology zooplankter zooplankters zooplankton zooplanktonic zooplanktons zooplastic zooplasties zooplasty zoopraxiscope zoopsia zoopsychological zoopsychologies zoopsychologist zoopsychology zoos zooscopic zooscopies zooscopy zoosis zoosmosis zoosperm zoospermatic zoospermia zoospermium zoospermiums zoosperms zoospgia zoosphere zoosporange zoosporangia zoosporangial zoosporangiophore zoosporangium zoosporangiums zoospore zoospores zoosporic zoosporiferous zoosporocyst zoosporous zoosterol zoosterols zootaxies zootaxonomist zootaxy zootechnic zootechnical zootechnician zootechnics zootechnies zootechny zooter zoothapses zoothapsis zoothecia zoothecial zoothecium zootheism zootheisms zootheist zootheistic zootherapies zootherapy zoothome zoothomes zootic zootier zootiest zootomic zootomical zootomically zootomies zootomist zootomists zootomy zoototemism zootoxic zootoxin zootoxins zootrope zootropes zootrophic zootrophies zootrophy zootsuiter zootsuiters zooty zootype zootypes zootypic zooxanthella zooxanthellae zooxanthin zoozoo zoozoos zophophori zophori zophorus zopilote zopilotes zoppa zoppo zorch zorched zorches zorching zorgite zorgites zori zoril zorilla zorillas zorille zorilles zorillo zorillos zorils zorino zorinos zoris zoroaster zoroastra zoroastrian zoroastrianism zoroastrians zorrillo zorro zorros zortzico zos zoster zostera zosteraceae zosteriform zosterops zosters zouave zouaves zouk zouks zounds zoundses zovirax zowie zoysia zoysias zr zs zu zubird zubr zuccarino zucchetti zucchetto zucchettos zucchini zucchinis zucco zuchetta zuchettas zuchetto zuchettos zudda zuffoli zuffolo zufoli zufolo zugtierlast zugtierlaster zugzwang zugzwangs zuisin zulu zulus zumatic zumbooruck zumboorucks zumbooruk zumbooruks zuni zunian zunis zunyite zupa zupan zupanate zupans zupas zurf zurfs zurich zurlite zuurveldt zuz zuza zuzes zuzim zuzzes zwanziger zwieback zwiebacks zwieselite zwinglian zwischenzug zwischenzugs zwitter zwitterion zwitterionic zwitterions zydeco zydecos zyga zygadenin zygadenine zygadite zygaena zygaenid zygaenine zygaenoid zygal zygantra zygantrum zygantrums zygapophyseal zygapophyses zygapophysial zygapophysis zygenid zygion zygite zygnema zygnemaceous zygnemales zygnemataceae zygnemataceous zygnematales zygobranch zygobranches zygobranchiate zygobranchiates zygobranchs zygocacti zygocactus zygocactuses zygocardiac zygodactyl zygodactyle zygodactylic zygodactylism zygodactylisms zygodactylous zygodactyls zygodont zygogeneses zygogenesis zygogenetic zygoid zygolabialis zygoma zygomas zygomata zygomatic zygomaticoauricular zygomaticoauricularis zygomaticofacial zygomaticofrontal zygomaticomaxillary zygomaticoorbital zygomaticosphenoid zygomaticotemporal zygomaticum zygomaticus zygomaxillare zygomaxillary zygomorphic zygomorphies zygomorphism zygomorphisms zygomorphous zygomorphy zygomycete zygomycetes zygomycetous zygomycota zygomycotina zygon zygoneure zygons zygophore zygophoric zygophyceous zygophyllaceae zygophyllaceous zygophyllum zygophyte zygophytes zygopleural zygoptera zygopteran zygopterid zygopteron zygopterous zygose zygoses zygosis zygosities zygosity zygosperm zygosperms zygosphenal zygosphene zygosphenes zygosphere zygosporange zygosporangium zygospore zygospores zygosporic zygosporophore zygostyle zygotactic zygotaxis zygote zygotene zygotenes zygotes zygotic zygotically zygotoblast zygotoid zygotomere zygous zygozoospore zylonite zylonites zyloprim zymase zymases zyme zymes zymic zymin zymite zymites zymochemistry zymogen zymogene zymogenes zymogeneses zymogenesis zymogenic zymogenous zymogens zymogram zymograms zymoid zymologic zymological zymologies zymologist zymologists zymology zymolyis zymolyses zymolysis zymolytic zymome zymomes zymometer zymometers zymomin zymophore zymophoric zymophosphate zymophyte zymoplastic zymosan zymosans zymoscope zymoses zymosimeter zymosimeters zymosis zymosterol zymosthenic zymotechnic zymotechnical zymotechnics zymotechny zymotic zymotically zymotics zymotize zymotoxic zymurgic zymurgies zymurgy zyrian zythem zythum zythums zyzzyva zyzzyvas zzz Ångström Ångströms Österreich Übermensch Übermenschen åsar ébauche éboulement éboulements ébrillade ébrillades ébéniste ébénistes écarté écartés échappé échappés éclair éclaircissement éclairs éclat éclats écorché écorchés écossaise écossaises écraseur écraseurs écritoire écritoires écuelle écuelles écurie écuries égarement élan éloge éloges émeute émeutes émigré émigrés éolienne épatant éperdu éperdue épicier épiciers épris éprise éprouvette éprouvettes épuisé épuisée épée épées équipe équipes étage étages étagère étagères étalage étalages étape étapes état étoile étoiles étourderie étourdi étourdie étrangèr étrangère étrangères étrangèrs étrennes étrenness étrier étriers étude études étui étuis évolué évolués événement événements AA AAA AAAA AAAAAA AAAL AAAS AAE AAEE AAF AAG AAII AAM AAMSI AAO AAP AAPSS AARC AARP AAS AATech AAU AAUP AAUW AAVSO AAX AAeE AAgr AAvTech AB ABA ABATS ABBR ABC ABCs ABD ABDs ABEL ABEPP ABEd ABFM ABHC ABI ABLS ABM ABMs ABPC ABS ABSBH ABus AC ACAA ACAS ACAWS ACB ACBL ACC ACCRA ACCS ACCT ACD ACDA ACE ACF ACGI ACH ACHEFT ACK ACL ACLS ACLU ACM ACO ACOF ACP ACRNEMA ACRV ACS ACSE ACSNET ACSU ACT ACTH ACTPU ACTS ACTU ACTUP ACU ACV ACW ACWA ACWP AD ADA ADB ADC ADCCP ADCI ADD ADDCP ADEW ADF ADFRF ADI ADIZ ADM ADMD ADN ADP ADPCM ADR ADRs ADS ADSP ADSR ADT AE AEA AEC AEF AEGIS AES AET AEU AEd AEng AF AFA AFACTS AFADS AFAIK AFAIKs AFAM AFATDS AFB AFC AFCAC AFCC AFDC AFGE AFI AFIPS AFL AFLCIO AFM AFN AFNOR AFP AFS AFSC AFSCME AFSK AFT AFTRA AFUU AG AGC AGCA AGCT AGD AGE AGL AGM AGMA AGN AGR AGS AGU AH AHA AHE AHL AHQ AHSA AI AIA AIAA AIC AICC AID AIDDE AIDS AIDSes AIEEE AIF AIH AIM AIME AIMS AIOD AIPS AIR AIS AISI AIX AInd AIs AJ AJA AJC AK AKA AKC AL ALA ALAP ALBM ALBO ALC ALEXIS ALFA ALFE ALGOL ALI ALIT ALM ALP ALPO ALRU ALS ALU AM AMA AMACS AMARC AMASE AMAT AMATPS AMBA AMC AMD AMDG AME AMEDS AMERITECH AMEX AMI AMICE AMIChemE AMIMechE AMLS AMORC AMP AMPAS AMPS AMRAAM AMROC AMS AMSAT AMSW AMT AMU AMVET AMus AMusD AN ANA ANAC ANC AND ANDF ANF ANG ANI ANIF ANL ANOVA ANPA ANSI ANSIs ANTA ANTU ANU ANZUS AO AOA AOCS AOL AOP AOPA AOQ AOS AOSS AOU AOW AP APA APB APC APDA APDU APE APG API APICS APJ APM APO APP APPC APR APRA APS APSA APSE APT APU AQ AQL AR ARA ARAMIS ARC ARCM ARCNET ARCO ARCS ARE ARENA ARF ARIS ARM ARO ARP ARPA ARPANET ARQ ARRL ARS ARSA ARSB ARSM ART ARTCC ARTEMIS ARU ARV ARel AS ASA ASAIGAC ASAP ASAT ASC ASCAP ASCC ASCII ASCIIs ASCQ ASDIC ASDSP ASEAN ASG ASHRAE ASI ASIC ASIO ASK ASL ASLEF ASM ASME ASN ASOC ASP ASPAC ASPCA ASPEN ASR ASRM ASRS ASS ASSR AST ASTM ASTMS ASU ASV ASW AT ATA ATACC ATB ATC ATDA ATDRS ATE ATF ATH ATI ATIS ATK ATLAS ATM ATMS ATN ATO ATOMS ATP ATPCO ATPase ATPases ATR ATRS ATS ATT ATTC ATTCOM ATTIS ATV ATVs ATech AU AUA AUC AUDIX AUEW AUI AUM AUP AURA AUS AUTODIN AUTOVON AUX AUXF AV AVC AVD AVLIS AVM AW AWACS AWB AWEA AWG AWK AWL AWOL AWST AWU AXAF AY AYH AZ AZT Aaberg Aachen Aaedon Aaerope Aalborg Aalesund Aaliyah Aalst Aalto Aandahl Aani Aaqbiye Aar Aara Aarau Aaren Aargau Aarhus Aarika Aaron Aaronic Aaronical Aaronite Aaronitic Aaronsburg Aaronson Aaru Ab Aba Ababa Ababdeh Ababua Abaco Abad Abadan Abaddon Abadite Abagael Abagail Abagtha Abailard Abakan Abakumov Abalard Abama Abana Abanic Abantes Abarambo Abarbarea Abaris Abas Abasgi Abassieh Abassin Abate Abatua Abba Abbadide Abbado Abbai Abbas Abbasid Abbasids Abbassid Abbasside Abbate Abbe Abbevilean Abbeville Abbevillean Abbevillian Abbey Abbi Abbie Abbot Abbotsen Abbotsford Abbotson Abbotsun Abbott Abbottson Abbottstown Abboud Abby Abbye Abbyville Abdel Abdella Abderhalden Abderian Abderite Abderus Abdias Abdiel Abdominales Abdon Abdu Abdul Abdulla Abdullah Abe Abebi Abednego Abel Abelard Abelia Abelian Abelicea Abelite Abell Abelmoschus Abelonian Abelson Abenaki Abenakis Abencerrages Abenezra Abeokuta Abercrombie Abercromby Aberdare Aberdeen Aberdeenshire Aberdonian Aberdonians Aberfan Aberglaube Aberia Abernant Abernathy Abernon Abert Aberystwyth Abeu Abey Abgatha Abhorson Abia Abiathar Abib Abibs Abidjan Abie Abies Abietineae Abiezer Abigael Abigail Abigale Abihu Abijah Abilene Abilyne Abimelech Abineri Abingdon Abinger Abington Abinoam Abinoem Abipon Abiquiu Abisag Abisha Abishag Abisia Abitibi Abiu Abixah Abkhas Abkhases Abkhasia Abkhasian Abkhasians Abkhaz Abkhazes Abkhazia Abkhazian Abkhazians Ablepharus Abnaki Abnakis Abner Abo Abobra Abolitionist Abolitionists Abongo Aboriginal Aboriginals Aborigine Aborigines Aborn Abos Abott Aboukir Abourezk Abp Abqaiq Abra Abraham Abrahamic Abrahamidae Abrahamite Abrahamitic Abrahams Abrahamsen Abrahan Abram Abramis Abramo Abrams Abramson Abran Abranchiata Abrocoma Abroma Abroms Abronia Abrus Abruzzi Abs Absa Absalom Absaraka Absaroka Absaroke Absarokee Absarokes Absecon Abshier Absi Absolute Absyrtus Abu Abucay Abuja Abukir Abulfeda Abuna Abundantia Abury Abuta Abutilon Abydos Abyla Abyss Abyssinia Abyssinian Abyssinians Ac Acacallis Acacea Acaceae Acacia Acacian Academic Academus Academy Acadia Acadian Acadians Acadie Acaena Acalepha Acalephae Acalia Acalypha Acalypterae Acalyptrata Acalyptratae Acamar Acamas Acampo Acanthaceae Acantharia Acanthia Acanthocephala Acanthocephali Acanthocereus Acanthodea Acanthodei Acanthodes Acanthodidae Acanthodii Acanthodini Acantholimon Acanthomeridae Acanthopanax Acanthophis Acanthopteri Acanthopterygii Acanthuridae Acanthurus Acapulco Acarapis Acarida Acaridea Acarina Acarnan Acarnanian Acarnanians Acarus Acastus Accad Accadian Accadians Accalia Accenture Accipiter Accipitres Accius Accokeek Accolate Accolates Accomac Accoville Accra Accrington Accutane Accutanes Accutron Ace Aceldama Aceldamas Acemetae Acemetic Acephala Acephali Acephalina Acephalite Acer Aceraceae Acerae Acerata Acerates Aceratherium Acerbas Acesius Acessamenus Acestes Acetabularia Acetaminophen Acetes Acetobacter Acevedo Acey Achab Achad Achaea Achaean Achaeans Achaemenes Achaemenian Achaemenians Achaemenid Achaemenidae Achaemenides Achaemenidian Achaemenids Achaenodon Achaeta Achaeus Achagua Achaia Achaian Achaians Achakzai Achamoth Achan Achango Achariaceae Achariaceous Acharnians Achates Achateses Achatina Achatinella Achatinidae Achaz Achebe Achelous Achen Acherman Achernar Acheron Acheronian Acherontic Acherontical Acheson Achetidae Acheulean Acheulian Achill Achille Achillea Achillean Achilleid Achilles Achillize Achimaas Achimelech Achimenes Achinese Achish Achitophel Achlamydeae Achmed Achmetha Acholoe Achomawi Achomawis Achordata Achorion Achorn Achras Achroanthes Achromatiaceae Achromatium Achromobacter Achromobacterieae Achromycin Achromycins Achsah Achuas Achumawi Achumawis Achyranthes Achyrodes Acidalium Acidanthera Acidaspis Acie Acieral Acilius Acima Acineta Acinetae Acinetaria Acinetina Acipenser Acipenseres Acipenseridae Acipenseroidei Acis Acker Ackerley Ackerly Ackerman Ackermanville Ackler Ackley Ackworth Aclemon Acmaea Acmaeidae Acmispon Acmon Acnida Acocanthera Acoela Acoelomata Acoelomi Acoemetae Acoemeti Acoemetic Acol Acolapissa Acolhua Acolhuan Acoma Acomas Aconcagua Aconitum Acontias Acontius Acorus Acosta Acousticon Acquah Acquaviva Acra Acrab Acraea Acraeinae Acrania Acrasiaceae Acrasiales Acrasida Acrasieae Acraspeda Acre Acredula Acres Acrididae Acridiidae Acridium Acrilan Acrilans Acrisius Acrita Acroa Acrobates Acrocarpi Acrocera Acroceratidae Acroceraunian Acroceridae Acrochordidae Acrochordinae Acroclinium Acrocomia Acrocorinth Acrodus Acrogynae Acromyodi Acronycta Acropolis Acropora Acrosticheae Acrostichum Acrothoracica Acrotreta Acrotretidae Acrux Acrydium Act Acta Actaea Actaeaceae Actaeon Actaeonidae Actiad Actian Actinia Actiniaria Actinidia Actinidiaceae Actiniomorpha Actinistia Actinobacillus Actinocrinidae Actinocrinus Actinoida Actinoidea Actinomyces Actinomycetaceae Actinomycetales Actinomyxidia Actinomyxidiida Actinonema Actinophrys Actinopoda Actinopteri Actinopterygii Actinosphaerium Actinozoa Actipylea Actis Actium Activase Activases ActiveX Acton Actor Actoridae Acts Acuan Acubens Acuff Aculeata Acus Acushnet Acutilinguae Acworth Ad Ada Adabel Adabelle Adachi Adad Adah Adaha Adai Adaiha Adair Adairsville Adairville Adaize Adal Adala Adalai Adalard Adalbert Adalheid Adali Adalia Adaliah Adalie Adaline Adall Adallard Adam Adama Adamas Adamastor Adamawa Adamec Adamek Adamello Adamhood Adamic Adamical Adamically Adamik Adamina Adaminah Adamis Adamite Adamites Adamitic Adamitical Adamitism Adamo Adamok Adams Adamsbasin Adamsburg Adamsen Adamsia Adamski Adamson Adamstown Adamsun Adamsville Adan Adana Adansonia Adao Adapa Adapis Adar Adara Adars Adas Adaurd Aday Adda Addam Addams Adderley Addi Addia Addie Addiego Addiel Addieville Addington Addis Addison Addisonian Addisoniana Addressograph Addressographs Addu Addy Addyston Ade Adebayo Adee Adel Adela Adelaida Adelaide Adelaja Adelanto Adelarthra Adelarthrosomata Adelbert Adele Adelea Adeleidae Adelges Adelheid Adelia Adelice Adelie Adelies Adelina Adelind Adeline Adeliza Adell Adella Adelle Adelochorda Adelops Adelphe Adelphi Adelphia Adelphian Adelpho Adelphoi Adelric Aden Adena Adenanthera Adenauer Adenophora Adenostoma Adeodatus Adeona Adephaga Ader Adessenarian Adest Adey Adger Adhafera Adham Adhamh Adhara Adhern Adi Adiana Adiantum Adib Adicea Adidas Adie Adiel Adiell Adige Adigei Adighe Adigranth Adigun Adila Adim Adin Adina Adine Adinida Adirondack Adirondacks Adis Aditya Adivasi Adjuntas Adkins Adlai Adlar Adlare Adlay Adlee Adlei Adler Adlerian Adley Adlumia Adm Admah Admete Admetus Administration Administrations Admiral Admiralties Admiralty Adna Adnah Adnan Adne Adnopoz Ado Adolf Adolfo Adolph Adolphe Adolpho Adolphus Adon Adona Adonai Adonais Adonean Adonia Adoniad Adonian Adonias Adonic Adonica Adonijah Adoniram Adonis Adonises Adonoy Adoptianism Adoptianisms Adoptionism Adoptionisms Adoptionist Adoptionists Adora Adorantes Adore Adoree Adoretus Adorl Adorne Adoula Adowa Adoxa Adoxaceae Adramelech Adrammelech Adrastea Adrastos Adrastus Adrea Adrell Adrenalin Adrenalins Adrestus Adria Adriaen Adriaens Adrial Adriamycin Adriamycins Adrian Adriana Adriane Adrianna Adrianne Adriano Adrianople Adrianopolis Adriatic Adriel Adriell Adrien Adriena Adriene Adrienne Adron Adullam Adullamite Adur Adurol Aduwa Adv Advaita Advent Adventism Adventisms Adventist Adventists Advents Advil Adyge Adygei Adyghe Adzhar Adzharia Adzharian Adzharians Adzharistan Adzhars AeE Aeacidae Aeacides Aeacus Aeaea Aeaean Aeaetes Aechmagoras Aechmophorus Aecidiaceae Aecidiomycetes Aedes Aedilberct Aedon Aeetes Aegaeon Aegates Aegean Aegeria Aegeriidae Aegesta Aegeus Aegia Aegiale Aegialeus Aegialia Aegialitis Aegicores Aegimius Aegina Aeginaea Aeginetan Aeginetans Aeginetic Aegiochus Aegipan Aegir Aegisthus Aegithalos Aegithognathae Aegium Aegle Aegopodium Aegospotami Aegyptus Aekerly Aelber Aelbert Aelfric Aella Aello Aeluroidea Aenea Aeneas Aeneid Aeneolithic Aeneus Aeniah Aenius Aenneea Aeolia Aeolian Aeolians Aeolic Aeolicism Aeolics Aeolidae Aeolides Aeolididae Aeolis Aeolism Aeolist Aeolus Aepyceros Aepyornis Aepyornithidae Aepyornithiformes Aepytus Aequi Aequian Aequiculi Aequipalpia Aeria Aerides Aeriel Aeriela Aeriell Aerobacter Aerobranchia Aerocharidae Aeroflot Aerojet Aerol Aerope Aerosol Aesacus Aeschines Aeschylean Aeschylus Aeschynanthus Aeschynomene Aesculaceae Aesculapian Aesculapius Aesculus Aesepus Aeshma Aesir Aesop Aesopian Aesopic Aestatis Aestii Aesyetes Aethalides Aethelbert Aetheria Aethionema Aethiopian Aethra Aethusa Aethylla Aetian Aetna Aetobatidae Aetobatus Aetolia Aetolian Aetolians Aetolus Aetomorphae Aetosaurus Af Afar Afenil Affer Affra Affrica Afg Afgh Afghan Afghani Afghanis Afghanistan Afghans Afifi Aflex Afr Afra Aframerican Afrasia Afrasian Afric Africa Africah African Africana Africander Africanderism Africanders Africanisation Africanisations Africanise Africanised Africanises Africanising Africanism Africanisms Africanist Africanists Africanization Africanizations Africanize Africanized Africanizes Africanizing Africanness Africannesses Africanoid Africans Africanthropus Afridi Afrika Afrikaans Afrikah Afrikander Afrikanderdom Afrikanderism Afrikanders Afrikaner Afrikanerdom Afrikanerdoms Afrikanerise Afrikanerize Afrikaners Afro Afroasiatic Afrocentric Afrocentrism Afrocentrisms Afrocentrist Afrocentrists Afrogaea Afrogaean Afros Afshah Afshar Afton Aftonian Afyon Afzelia Ag AgE Agabus Agace Agaces Agacles Agada Agade Agadic Agadir Agadoth Agag Agagianian Agalena Agalenidae Agalinis Agama Agamae Agamede Agamedes Agamemnon Agamidae Agan Agana Aganice Aganippe Aganus Agao Agaonidae Agapanthus Agape Agapemone Agapemonian Agapemonist Agapemonite Agapetidae Agapornis Agar Agaricales Agaricus Agaristidae Agartala Agarum Agassi Agassiz Agastache Agastreae Agastrophus Agastya Agata Agate Agatha Agathaea Agatharchides Agathaumas Agathe Agathis Agatho Agathocles Agathon Agathosma Agathy Agathyrsus Agau Agaua Agave Agawam Agaz Agbogla Agdistis Age Agee Agelacrinites Agelacrinitidae Agelaius Agelaus Agen Agena Agenais Agenois Agenor Ageratum Ages Aggada Aggadah Aggadahs Aggadic Aggadist Aggadists Aggadot Aggadoth Aggappe Aggappera Aggappora Aggarwal Aggeus Aggi Aggie Aggies Aggregata Aggregatae Aggri Aggy Agh Aghan Aghlabite Aghorapanthi Aghori Agialid Agib Agiel Agincourt Agkistrodon Aglaia Aglaonema Aglaos Aglaspis Aglauros Aglaus Agle Agler Aglipayan Aglipayano Aglossa Aglypha Aglyphodonta Aglyphodontia Agna Agnatha Agnathostomata Agnella Agnes Agnese Agness Agnesse Agneta Agnew Agni Agnoetae Agnoete Agnoetism Agnoite Agnola Agnostus Agnotozoic Agon Agoniatites Agonista Agonostomus Agoraea Agoraeus Agostini Agostino Agosto Agra Agraeus Agram Agrania Agrapha Agrauleum Agraulos Agretha Agricola Agrigento Agrilus Agrimonia Agrinion Agriochoeridae Agriochoerus Agrionia Agrionidae Agriope Agriotes Agriotypidae Agriotypus Agripina Agrippa Agrippina Agrius Agromyza Agromyzidae Agropyron Agrostemma Agrostis Agrotera Agrotis Agt Aguacateca Aguada Aguadilla Aguadulce Aguanga Aguascalientes Aguayo Agudist Aguecheek Agueda Aguie Aguijan Aguila Aguilar Aguinaldo Aguirre Aguistin Agulhas Agung Aguste Agustin Agutter Agway Agyieus Ah Ahab Ahaggar Ahantchuyuk Aharon Ahasuerus Ahaz Ahaziah Ahders Ahearn Ahepatokla Ahern Ahet Ahgwahching Ahhiyawa Ahidjo Ahiezer Ahimaaz Ahimelech Ahir Ahira Ahisar Ahishar Ahithophel Ahl Ahlgren Ahmad Ahmadabad Ahmadi Ahmadinejad Ahmadiya Ahmadnagar Ahmadou Ahmadpur Ahmar Ahmed Ahmedabad Ahmednagar Ahmeek Ahnfeltia Ahola Aholah Aholla Ahom Ahoskie Ahoufe Ahouh Ahousaht Ahrendahronon Ahrendt Ahrens Ahriman Ahrimanian Ahron Ahsahka Aht Ahtena Ahuramazda Ahuzzath Ahvaz Ahvenanmaa Ahwahnee Ahwaz Aia Aias Aiawong Aibonito Aida Aidan Aiden Aidenn Aides Aidin Aidit Aidoneus Aidos Aiea Aiello Aigialosauridae Aigialosaurus Aigneis Aiken Aila Ailanthus Ailbert Aile Ailee Aileen Ailene Ailey Aili Ailie Ailin Ailina Ailis Ailleret Ailsa Ailssa Ailsun Ailuridae Ailuroidea Ailuropoda Ailuropus Ailurus Ailyn Aimak Aime Aimee Aimil Aimo Aimore Aimwell Ain Aindrea Ainslee Ainsley Ainslie Ainsworth Aintab Aintree Ainu Ainus Air Aira Airdrie Aire Airedale Airedales Airel Aires Airla Airlee Airlia Airliah Airlie Airville Airy Aisha Aisne Aissaoua Aissor Aistopoda Aistopodes Aitken Aitkenite Aitkin Aitutakian Aix Aizoaceae Aizoon Ajaccio Ajaja Ajani Ajanta Ajatasatru Ajax Ajay Ajit Ajivika Ajmer Ajo Ajodhya Ajuga Aka Akaba Akademi Akal Akali Akamnik Akan Akanekunik Akania Akaniaceae Akanke Akans Akaska Akawai Akbar Akebia Akel Akela Akelas Akeldama Akeley Aker Akerboom Akerley Akers Akeyla Akeylah Akh Akha Akhaia Akhenaten Akhenaton Akhetaton Akhisar Akhissar Akhlame Akhmatova Akhmimic Akhnaton Akhziv Akiachak Akiak Akiba Akihito Akili Akim Akimovsky Akin Akins Akira Akiskemikinik Akita Akitas Akiva Akiyenik Akka Akkad Akkadian Akkadians Akkadist Akkerman Akkra Aklog Akmolinsk Akontae Akoulalion Akra Akrabattine Akron Aksel Aksoyn Aksum Aktiengesellschaft Aktistetae Aktistete Aktivismus Aktivist Aktyubinsk Akure Akutagawa Akutan Akwapim Akyab Al Ala Alabama Alabaman Alabamans Alabamas Alabamian Alabamians Alabaster Alachua Alactaga Aladdin Aladdinize Aladfar Aladinist Alage Alagez Alagoas Alagoz Alaguz Alai Alain Alaine Alair Alakanuk Alake Alaki Alala Alalcomeneus Alamance Alamanni Alamannian Alamannic Alameda Alamein Alamine Alamines Alaminos Alamo Alamogordo Alamosa Alamota Alan Alana Alanah Alanbrooke Aland Alane Alangiaceae Alangium Alanna Alano Alanreed Alans Alansen Alanson Alapaha Alar Alarbus Alarcon Alarcun Alard Alaria Alaric Alarice Alarick Alarise Alarodian Alars Alas Alascan Alasdair Alaska Alaskan Alaskans Alastair Alasteir Alaster Alastor Alatea Alathia Alauda Alaudidae Alaunian Alawi Alayne Alb Alba Albacete Albainn Albamycin Alban Albana Albanenses Albanensian Albanese Albania Albanian Albanians Albaniz Albany Albarran Albategnius Albatros Albay Albee Albemarle Alben Albeniz Alber Alberene Alberic Alberich Alberik Alberio Alberoni Albers Albert Alberta Albertan Albertans Alberti Albertina Albertine Albertinian Albertist Albertists Albertlea Alberto Alberton Albertson Albertville Albi Albia Albian Albie Albigenses Albigensian Albigensianism Albigensianisms Albigensians Albin Albina Albinoni Albinus Albion Albireo Albizzia Albniz Albococcus Alboin Alboran Alborg Alborn Albrecht Albric Albright Albrightsville Albruna Albuca Albuginaceae Albuna Albunea Albuquerque Albuquerquean Albuquerqueans Albur Alburg Alburga Alburnett Alburtis Albury Alby Albyn Alca Alcaaba Alcae Alcaeus Alcaic Alcaics Alcaids Alcalde Alcaligenes Alcalzar Alcandre Alcantara Alcantarines Alcathous Alcatraz Alcazar Alcedines Alcedinidae Alcedininae Alcedo Alcelaphus Alces Alceste Alcester Alcestis Alchemilla Alchornea Alchuine Alcibiadean Alcibiades Alcicornium Alcidae Alcide Alcides Alcidice Alcimede Alcimedes Alcimedon Alcina Alcindor Alcine Alcinia Alcinofs Alcinous Alcippe Alcis Alcithoae Alcithoe Alcmaeon Alcman Alcmaon Alcmena Alcmene Alco Alcoa Alcock Alcolu Alcon Alcor Alcoran Alcoranic Alcoranist Alcorans Alcot Alcotate Alcott Alcova Alcuin Alcuinian Alcus Alcyonacea Alcyonaria Alcyone Alcyones Alcyoneus Alcyoniaceae Alcyonium Ald Alda Aldabra Aldan Aldarcie Aldarcy Aldas Aldebaran Aldeburgh Alded Alden Aldenville Alder Alderamin Aldercy Alderman Aldermaston Alderney Alderneys Aldershot Alderson Aldhafara Aldhafera Aldhelm Aldiborontiphoscophornia Aldie Aldin Aldine Aldines Aldington Aldis Aldiss Aldm Aldo Aldon Aldora Aldos Aldous Aldred Aldredge Aldric Aldrich Aldridge Aldrin Aldrovanda Alduino Aldus Aldwin Aldwon Alea Aleardi Alebion Alec Alecia Aleck Alecto Alectoria Alectorides Alectoris Alectoromorphae Alectoropodes Alectrion Alectrionidae Alectryon Aleda Aledo Aleece Aleedis Aleen Aleetha Alegre Alegrete Aleichem Aleixandre Alejandra Alejandrina Alejandro Alejo Alejoa Alek Alekhine Aleknagik Aleksandr Aleksandropol Aleksandrov Aleksandrovac Aleksandrovsk Alekseyevska Aleksin Alem Aleman Alemanni Alemannian Alemannic Alemannish Alembert Alemcn Alemite Alena Alencon Alencons Alene Alenion Alenson Alentejo Aleochara Alep Aleppine Aleppines Aleppo Aleras Aleris Aleron Ales Alesandrini Alesia Alessandra Alessandri Alessandria Alessandro Aleta Aletes Aletha Alethea Alethia Aletris Aletta Alette Aleurites Aleurobius Aleurodes Aleurodidae Aleus Aleut Aleutian Aleutians Aleutic Aleuts Alevitsa Alex Alexa Alexander Alexanders Alexanderson Alexandr Alexandra Alexandre Alexandreid Alexandretta Alexandria Alexandrian Alexandrianism Alexandrians Alexandrina Alexandrine Alexandrines Alexandrinus Alexandro Alexandropolis Alexandros Alexandroupolis Alexas Alexei Alexi Alexia Alexian Alexiares Alexicacus Alexina Alexine Alexio Alexis Alexishafen Alexius Aley Aleydis Aleyrodes Aleyrodidae Alf Alfadir Alfarabius Alfedena Alfeo Alfeus Alfheim Alfi Alfie Alfieri Alfirk Alfons Alfonse Alfonso Alfonson Alfonzo Alford Alfraganus Alfred Alfreda Alfredo Alfric Alfs Alfur Alfurese Alfuro Alfy Alg Algalene Algar Algaroth Algarsife Algarsyf Algarve Algebar Algeciras Algedi Algenib Alger Algeria Algerian Algerians Algerine Algerines Algernon Alghero Algic Algie Algieba Algiers Algol Algoma Algoman Algomian Algomic Algona Algonac Algonkian Algonkians Algonkin Algonkins Algonquian Algonquians Algonquin Algonquins Algorab Algores Algren Alguire Algy Alhagi Alhambra Alhambraic Alhambresque Alhazen Alhena Ali Alia Aliacensis Alibamu Aliber Alic Alica Alicant Alicante Alice Alicea Aliceville Alichino Alicia Alick Alida Alidia Alidis Alids Alidus Alie Alief Alifanfaron Aligarh Alighieri Alika Alikee Alikuluf Alikulufan Alina Aline Alinna Alioth Aliquippa Alis Alisa Alisan Alisander Alisen Alisha Alisia Alisma Alismaceae Alismales Alismataceae Alison Alissa Alistair Alister Alisun Alita Alitalia Alitha Alithea Alithia Alitta Alius Alix Aliza Alkabo Alkaid Alkalurops Alkanna Alkaphrah Alkes Alkhimovo Alkmaar Alkol Alkoran Alkoranic Alkorans Alla Allah Allahabad Allain Allamanda Allamuchy Allan Allana Allanson Allantoidea Allard Allardt Allare Allasch Allayne Allbee Allcot Alle Alledonia Alleen Alleene Allegan Allegany Alleghanian Alleghany Alleghenian Alleghenians Alleghenies Allegheny Allegra Allegre Allegri Alleluia Alleman Allemande Allemandes Allen Allenby Allendale Allende Allendorf Allene Allenhurst Allenport Allensville Allentiac Allentiacan Allentiacs Allenton Allentown Allenwood Alleppey Alleras Allerie Alleris Allerton Allerus Alley Alleyn Alleyne Allgood Allhallow Allhallowmas Allhallowmases Allhallows Allhallowtide Allhallowtides Alli Alliaceae Alliance Allianora Alliaria Alliber Allie Allied Allier Allies Allin Allina Allingham Allionia Allioniaceae Allis Allisan Allison Allissa Allista Allister Allistir Allium Allix Allmon Alloa Allobroges Allock Allons Allophone Allophones Allophylus Allosaurus Allotheria Allotriognathi Allouez Alloway Allport Allred Allrud Allsopp Allstate Allston Allsun Allvar Allveta Allwein Allworthy Allx Ally Allyce Allyn Allyne Allys Allyson Alma Almach Almad Almada Almadan Almaden Almagest Almagests Almain Almaine Almallah Alman Almanon Almaty Almeda Almeeta Almeida Almelo Almena Almera Almeraea Almeria Almerian Almerians Almeric Almeta Almida Almighty Almira Almire Almita Almo Almohad Almohade Almohades Almon Almond Almont Almoravid Almoravide Almoravides Almund Almuredin Almyra Alna Alnaschar Alnascharism Alnico Alnilam Alnitak Alnitham Alnus Alo Aloadae Alocasia Alodee Alodi Alodie Aloeus Alogi Alogian Aloha Aloidae Aloin Alois Aloise Aloisia Aloisius Aloke Alon Alonso Alonsoa Alonzo Alope Alopecias Alopecurus Alopecus Alopias Alopiidae Alorton Alosa Alost Alouatta Alouette Aloxite Aloys Aloysia Aloysius Alpaugh Alpax Alpen Alpena Alper Alpers Alpert Alpetragius Alpha Alphaea Alphard Alpharetta Alphas Alphatype Alphean Alphecca Alpheratz Alphesiboea Alpheus Alphonist Alphons Alphonsa Alphonse Alphonsine Alphonsism Alphonso Alphonsus Alpian Alpid Alpine Alpines Alpini Alpinia Alpiniaceae Alpinism Alpinisms Alpinist Alpinists Alpino Alpo Alpoca Alps Alpujarra AlrZc Alric Alrich Alrick Alroi Alroy Alsace Alsatia Alsatian Alsatians Alsea Alsen Alsey Alshain Alsinaceae Alsine Alsip Also Alson Alsop Alsophila Alstead Alston Alstonia Alstroemeria Alsworth Alta Altadena Altaf Altai Altaian Altaic Altaid Altair Altaloma Altamahaw Altamira Altamont Altavista Altay Altdorf Altdorfer Alten Altenburg Alternanthera Alternaria Altes Altgeld Altha Althaea Althaemenes Althea Althee Altheimer Altheta Althing Althings Althorn Althorns Altica Alticamelus Altingiaceae Altiplano Altis Altman Altmar Altoids Alton Altona Altoona Altrincham Altro Altura Alturas Altus Aluco Aluconidae Aluconinae Aludra Aluin Aluino Alulim Alumbank Alumel Alumnol Alundum Alundums Alur Alurd Alurta Alva Alvada Alvadore Alvah Alvan Alvar Alvarado Alvarez Alvaro Alvaton Alveolites Alver Alvera Alverda Alverson Alverta Alverton Alves Alveta Alviani Alvie Alvin Alvina Alvinia Alvino Alvira Alvis Alviso Alviss Alvissmal Alvita Alvito Alvo Alvord Alvordton Alvy Alwin Alwitt Alwyn Alya Alyattes Alyce Alyda Alydar Alyeska Alyose Alyosha Alys Alysa Alyse Alysia Alyson Alysoun Alyss Alyssa Alyssum Alytes Alyworth Alzada Alzheimer Am AmMIEE Ama Amabel Amabella Amabelle Amabil Amadas Amadeo Amadeus Amadi Amadis Amado Amador Amadus Amaethon Amafingo Amagansett Amagasaki Amagon Amahuaca Amaigbo Amakosa Amal Amalbena Amalberga Amalbergas Amalburga Amalea Amalee Amalek Amalekite Amalekites Amaleta Amalfian Amalfians Amalfitan Amalia Amalie Amalings Amalita Amalle Amalrician Amalthaea Amalthea Amaltheia Amampondo Aman Amana Amand Amanda Amandi Amandie Amando Amandus Amandy Amanist Amanita Amanitopsis Amann Amap Amapa Amapc Amapondo Amar Amara Amaral Amarant Amarantaceae Amaranthaceae Amaranthus Amarantus Amaras Amarette Amaretto Amarettos Amargo Amari Amarillas Amarillis Amarillo Amarilloan Amarilloans Amaris Amarna Amaru Amary Amaryl Amaryllidaceae Amaryllis Amarynceus Amasa Amasias Amasta Amata Amatembu Amaterasu Amathi Amathist Amathiste Amati Amatis Amato Amatruda Amatsumara Amaty Amawalk Amaya Amaziah Amazilia Amazon Amazona Amazonas Amazonia Amazonian Amazonis Amazonism Amazonomachia Amazons Amazulu Amb Ambala Ambassadeur Ambedkar Amber Amberg Amberley Amberlite Amberlites Amberly Amberson Ambert Ambia Ambie Amble Ambler Amblycephalidae Amblycephalus Amblydactyla Amblyomma Amblyopsidae Amblyopsis Amblypoda Amblyrhynchus Amblystoma Ambocoelia Amboina Amboinese Amboise Ambon Ambonese Ambonnay Amboy Ambrica Ambrogino Ambrogio Ambroise Ambros Ambrosane Ambrose Ambrosi Ambrosia Ambrosiaceae Ambrosian Ambrosine Ambrosio Ambrosius Ambulatoria Ambur Amburgey Amby Ambystoma Ambystomidae Amchitka Ame Ameagle Amedeo Ameiuridae Ameiurus Ameiva Ameizoeira Amelanchier Amelia Amelie Amelina Ameline Amelita Amen Amena Amend Amenhotep Amenia Amenism Amenite Amenti Amentiferae Amer AmerInd AmerSp Amerada Amerasian Amerasians America American Americana Americanese Americanisation Americanisations Americanise Americanised Americaniser Americanises Americanising Americanism Americanisms Americanist Americanistic Americanists Americanitis Americanization Americanizations Americanize Americanized Americanizer Americanizes Americanizing Americanly Americanness Americannesses Americano Americanoid Americanos Americans Americas Americaward Americawards Americomania Americophobe Americus Amerigo Amerika Amerimnon Amerind Amerindian Amerindians Amerindic Amerinds Amero Amersfoort Amersham Amery Ames Amesbury Ameslan Amesville Ametabola Amethi Amethist Amethyst Amex Amfortas Amhara Amharic Amherst Amherstdale Ami Amia Amianthium Amias Amice Amick Amida Amidah Amidism Amidist Amidol Amidon Amie Amiel Amiens Amieva Amiga Amigen Amii Amiidae Amil Amilcare Amiles Amiloun Amin Aminta Amintor Amintore Amioidei Amir Amiranha Amiret Amis Amish Amishgo Amissville Amistad Amita Amitabha Amite Amitie Amittai Amity Amityville Amizilis Amlin Amling Amma Ammadas Ammadis Ammamaria Amman Ammanati Ammanite Ammann Ammerman Ammi Ammiaceae Ammianus Ammisaddai Ammishaddai Ammobium Ammocoetidae Ammodytes Ammodytidae Ammon Ammonea Ammonite Ammonites Ammonitess Ammonitish Ammonitoidea Ammonoidea Ammophila Amnigenia Amnionata Amniota Amo Amoakuh Amoco Amoebaea Amoebida Amoebidae Amoebobacter Amoebobacterieae Amoebogeniae Amomales Amomis Amon Amonate Amopaon Amor Amora Amores Amoret Amoreta Amorete Amorette Amoretti Amoreuxia Amorgos Amorita Amorite Amorites Amoritic Amoritish Amoritta Amorpha Amorphophallus Amorua Amory Amos Amoskeag Amou Amoy Amoyan Amoyese Amp Ampare Amparo Ampelidaceae Ampelidae Ampelis Ampelopsis Ampelos Ampelosicyos Ampere Amperian Ampex Amphiaraus Amphibia Amphibiotica Amphibola Amphicarpa Amphicarpaea Amphicondyla Amphictyon Amphictyony Amphicyon Amphicyonidae Amphidamas Amphidiscophora Amphigaea Amphigamae Amphilochus Amphimachus Amphimarus Amphinesian Amphineura Amphinome Amphinomus Amphion Amphionic Amphioxi Amphioxidae Amphioxides Amphioxididae Amphipleura Amphipneusta Amphipnous Amphipoda Amphirhina Amphisbaenidae Amphisile Amphisilidae Amphissa Amphissus Amphistoma Amphistomum Amphithemis Amphitrite Amphitruo Amphitryon Amphiuma Amphiumidae Amphius Amphizoidae Amphoterus Amphrysian Ampicillin Ampullaria Ampullariidae Ampycides Ampycus Ampyx Amr Amram Amratian Amravati Amri Amrita Amritsar Amroati Amschel Amsden Amsonia Amsterdam Amsterdamer Amsterdammer Amsterdammers Amston Amtorg Amtrak Amuchco Amueixa Amulius Amun Amund Amundsen Amur Amurru Amusgo Amvrakikos Amway Amy Amyas Amyclaean Amyclas Amycus Amye Amygdalaceae Amygdalus Amymone Amynodon Amyntor Amyraldism Amyraldist Amyridaceae Amyris Amytal Amytals Amythaon An Ana Anabaena Anabal Anabantidae Anabaptism Anabaptisms Anabaptist Anabaptistic Anabaptistical Anabaptistically Anabaptistry Anabaptists Anabas Anabase Anabel Anabella Anabelle Anablepidae Anableps Anacanthini Anacardiaceae Anacardium Anaces Anacharis Anacin Anaclete Anacletus Anacoco Anaconda Anacortes Anacostia Anacreon Anacreontic Anacreontically Anacreontics Anacrogynae Anacyclus Anadarko Anadyomene Anadyr Anafranil Anafranils Anagallis Anagni Anagnos Anagyris Anaheim Anahita Anahola Anahuac Anaitis Anakes Anakim Analects Analgesidae Analiese Analise Anallantoidea Anallese Anallise Analomink Anam Anambra Anamelech Anamirta Anamite Anammelech Anamnesis Anamnia Anamniata Anamnionata Anamniota Anamoose Anamosa Anana Anand Ananda Ananias Ananiases Ananism Ananite Ananna Anansi Ananta Anaphalis Anaphe Anaplasma Anapolis Anaprox Anaproxes Anapsida Anapterygota Anaptomorphidae Anaptomorphus Anapurna Anarcestes Anarthropoda Anaryan Anas Anasa Anasazi Anasazis Anasco Anasitch Anaspida Anaspidacea Anaspides Anastas Anastase Anastasia Anastasian Anastasie Anastasio Anastasius Anastassia Anastatica Anastatius Anastatus Anastice Anastomus Anastos Anastrophia Anat Anatherum Anatidae Anatifae Anatinacea Anatinae Anatol Anatola Anatole Anatolia Anatolian Anatolians Anatolic Anatolio Anatollo Anatone Anatum Anawalt Anax Anaxagoras Anaxagorean Anaxagorize Anaxarete Anaxibia Anaximander Anaximandrian Anaximenes Anaxo Anaxonia Ancaeus Ancalin Ancel Ancelin Anceline Ancell Ancerata Ancha Anchat Anchesmius Anchiale Anchie Anchietea Anchinoae Anchinoe Anchisaurus Anchises Anchistea Anchistopoda Anchorage Anchorville Anchtherium Anchusa Ancier Ancilin Ancistrocladaceae Ancistrocladus Ancius Anco Ancohuma Ancon Ancona Ancpolis Ancram Ancramdale Ancun Ancyloceras Ancylocladus Ancylodactyla Ancylopoda Ancylostoma Ancylostomum Ancylus Ancyrean Ancyrene And Andale Andalusia Andalusian Andalusians Andaman Andamanese Andaqui Andaquian Andarko Andaste Ande Andean Andeans Andee Andeee Andel Andelee Ander Anderea Anderegg Anderer Anderlecht Anders Andersen Anderson Andersonville Anderssen Anderstorp Andert Andes Andesic Andevo Andhra Andi Andian Andie Andikithira Andine Andira Andizhan Ando Andoche Andoke Andonis Andorobo Andorra Andorran Andorrans Andorre Andover Andr Andra Andrade Andras Andrassy Andrcssy Andre Andrea Andreaea Andreaeaceae Andreaeales Andreana Andreas Andree Andrei Andrej Andrel Andrena Andrenidae Andreotti Andres Andretti Andrew Andrewes Andrews Andrey Andreyev Andreyevka Andri Andria Andriana Andrianampoinimerina Andrias Andric Andrien Andriette Andrija Andris Androclea Androcles Androclus Androcrates Androgeus Andrographis Android Andromache Andromada Andromaque Andromeda Andromede Andron Andronicus Androphonos Andropogon Andropov Andros Androsace Androscoggin Androuet Androw Andrsy Andrus Andryc Andvar Andvare Andvari Andy Aneale Anemia Anemonella Anemopsis Anemotis Anesidora Anestassia Anet Aneta Aneth Anethum Aneto Anett Anetta Anette Aneurin Aney Anezeh Anfuso Angadreme Angadresma Angalique Angami Angang Angara Angarsk Angarstroi Angdistis Ange Angel Angela Angele Angeleno Angelenos Angeles Angeli Angelia Angelic Angelica Angelical Angelican Angelicas Angelico Angelika Angelina Angeline Angelique Angelis Angelita Angell Angelle Angelo Angelologies Angelology Angelonia Angelou Angelus Angeluses Angelyn Angerboda Angerona Angeronalia Angeronia Angers Angetenar Angevin Angevine Angevines Angevins Angi Angie Angier Angil Angiospermae Angka Angkor Angl Angle Angledozer Angleinlet Angles Anglesey Angleton Anglia Anglian Anglians Anglic Anglican Anglicanise Anglicanism Anglicanisms Anglicanize Anglicanly Anglicans Anglicanum Anglice Anglicisation Anglicise Anglicised Anglicises Anglicising Anglicism Anglicisms Anglicist Anglicists Anglicization Anglicizations Anglicize Anglicized Anglicizes Anglicizing Anglification Anglified Anglifies Anglify Anglifying Anglim Anglish Anglist Anglistics Anglists Anglo AngloCatholicism Anglocentric Anglocentrism Anglocentrisms Anglocentrist Anglogaea Anglogaean Angloman Anglomane Anglomania Anglomaniac Anglomaniacal Anglomanias Anglophil Anglophile Anglophiles Anglophilia Anglophiliac Anglophilias Anglophilic Anglophilism Anglophilisms Anglophils Anglophobe Anglophobes Anglophobia Anglophobiac Anglophobias Anglophobic Anglophobist Anglophone Anglophones Anglophonic Anglos Angola Angolan Angolans Angolese Angora Angoras Angostura Angouleme Angoumian Angoumois Angraecum Angrbodha Angrist Angst Angstrom Angstroms Angsts Anguidae Anguier Anguilla Anguillan Anguillans Anguillaria Anguillidae Anguillula Anguillulidae Anguimorpha Anguinidae Anguis Anguloa Angurboda Angus Anguses Angwin Angy Anh Anhalonium Anhalt Anhanga Anheuser Anhimae Anhimidae Anhwei Ania Aniak Aniakchak Aniakudo Aniba Anibal Anica Anice Anicetus Aniela Aniellidae Anil Animalia Animalivora Animas Animikean Anis Anisodactyla Anisodactyli Anisomeles Anisomyodi Anisopoda Anisoptera Anisostichus Anissa Anita Anitra Anius Aniwa Aniweta Anjali Anjanette Anjela Anjou Anjous Ankara Ankeny Anking Ankney Ankole Ankoles Ankoli Ankou Ankylosaurus Anlage Anlagen Anlages Anmoore Ann Anna Annaba Annabal Annabel Annabela Annabell Annabella Annabelle Annada Annadiana Annadiane Annale Annalee Annalen Annaliese Annalise Annam Annamaria Annamarie Annamese Annamite Annamites Annamitic Annandale Annapolis Annapurna Annarbor Annatol Annawan Anne Annecorinne Annecy Annelida Annelides Anneliese Annelise Annellata Annemanie Annemarie Annenberg Annenski Annensky Anneslia Annetta Annette Annfwn Anni Annia Annibale Annice Annie Anniellidae Annigoni Anniken Annis Annissa Annist Anniston Annmaria Annmarie Annnora Annona Annonaceae Annora Annorah Annularia Annulata Annuloida Annulosa Annunciata Annunciation Annunciations Annunziata Annville Annwfn Annwn Anny Anobiidae Anodon Anodonta Anogra Anoka Anolis Anolympiad Anomala Anomalogonatae Anomalon Anomalopteryx Anomaluridae Anomalurus Anomatheca Anomia Anomiacea Anomiidae Anomodontia Anomoean Anomoeanism Anomura Anona Anonaceae Anopheles Anophelinae Anophthalmus Anopla Anoplanthus Anoplonemertini Anoplotheriidae Anoplotherium Anoplura Anora Anosia Anostraca Another Anouilh Anoura Anous Ansafone Ansafones Ansar Ansarian Ansarie Anschauung Anschauungen Anschluss Anschlusses Anse Anseis Ansel Ansela Ansell Anselm Anselma Anselme Anselmi Anselmian Anselmo Anser Anseres Anseriformes Anserinae Ansermet Ansgarius Anshan Anshar Ansilma Ansilme Ansley Anson Ansonia Ansonville Ansted Anstice Anstus Anta Antabus Antabuse Antabuses Antaea Antaean Antaeus Antagoras Antaimerina Antaios Antaiva Antakiya Antakya Antal Antalya Antananarivo Antanandro Antar Antara Antarctalia Antarctalian Antarctic Antarctica Antarctogaea Antarctogaean Antares Antebi Antechinomys Antedon Antennaria Antennariidae Antennarius Antennata Antenor Antep Anteros Anterus Antesfort Anteva Antevorta Anthas Anthe Anthea Antheia Antheil Anthelme Anthemideae Anthemis Antheraea Anthericum Anthesteria Anthesteriac Anthesterion Antheus Anthia Anthiathia Anthicidae Anthidium Anthinae Anthoceros Anthocerotaceae Anthocerotales Antholyza Anthomedusae Anthomyia Anthomyiidae Anthon Anthonin Anthonomus Anthony Anthophila Anthophora Anthophoridae Anthophyta Anthospermum Anthoxanthum Anthozoa Anthracomarti Anthracomartus Anthracosaurus Anthracotheriidae Anthracotherium Anthrenus Anthribidae Anthriscus Anthropidae Anthropodus Anthropoidea Anthropomorpha Anthropomorphidae Anthropopithecus Anthropos Anthropozoic Anthurium Anthus Anthyllis Anti Antia Antiarcha Antiarchi Antiaris Antibes Antiburgher Antichrist Antichrists Antichthon Anticlea Anticosti Antidicomarian Antidicomarianite Antido Antidorcas Antietam Antifederalism Antifederalisms Antifederalist Antifederalists Antigo Antigone Antigonon Antigonus Antigua Antiguan Antiguans Antikamnia Antikythera Antilia Antillean Antilleans Antilles Antilocapra Antilocapridae Antilochus Antilope Antilopinae Antimachus Antimarian Antimason Antimasonic Antimasonry Antimerina Antin Antinomian Antinomians Antinos Antinous Antioch Antiochene Antiochenes Antiochian Antiochianism Antiochians Antiochus Antiope Antipas Antipasch Antipascha Antipater Antipatharia Antipathida Antipedobaptism Antipedobaptist Antiphas Antiphates Antiphus Antipodes Antipoenus Antipus Antipyrine Antiremonstrant Antirrhinum Antisana Antisi Antisthenes Antlers Antlia Antliae Antlid Antntonioni Antofagasta Antoine Antoinetta Antoinette Anton Antonchico Antone Antonella Antonescu Antonet Antonetta Antoni Antonia Antonian Antonians Antonie Antonietta Antonin Antonina Antonine Antonino Antoninus Antonio Antonito Antonius Antonovich Antons Antony Antrim Antron Antrons Antrostomus Antsirane Antu Antum Antung Antwan Antwerp Antwerpen Anu Anubis Anukit Anunaki Anunnaki Anura Anuradhapura Anurag Anuska Anvers Anvik Any Anya Anyah Anyang Anychia Anystidae Anza Anzac Anzacs Anzanian Anzanite Anzengruber Anzio Anzovin Anzus Ao Aoda Aoede Aoide Aoife Aoki Aomori Aonian Aor Aorangi Aornis Aornum Aosta Aotea Aotearoa Aotes Aotus Aouellimiden Aoul Ap Apache Apachean Apacheans Apaches Apachette Apalachee Apalachicola Apalachin Apama Apanteles Apantesis Aparai Apargia Aparri Apartheid Apatela Apathus Apatornis Apatosaurus Apaturia Apayao Apeldoorn Apelles Apemantus Apemius Apemosyne Apennine Apennines Apepi Aperu Apetalae Apfel Apfelstadt Apgar Aphanapteryx Aphanes Aphaniptera Aphanomyces Aphareus Apharsathacites Aphelandra Aphelenchus Aphelinus Aphelops Aphesius Aphidas Aphididae Aphidiinae Aphidius Aphis Aphodius Aphoruridae Aphra Aphrodisian Aphrodision Aphrodistic Aphrodite Aphroditeum Aphroditidae Aphrogeneia Aphthartodocetae Aphthartodocetic Aphthartodocetism Apia Apiaca Apiaceae Apiales Apianus Apicella Apician Apidae Apiezon Apina Apinae Apinage Apioceridae Apios Apiosoma Apis Apison Apium Apl Aplacentalia Aplacentaria Aplacophora Aplanobacter Aplectrum Aplington Aplodontia Aplodontiidae Aplopappus Apluda Aplysia Apneumona Apo Apoc Apocalypse Apocr Apocrita Apocrypha Apocryphal Apocynaceae Apocynum Apoda Apodes Apodia Apodidae Apodis Apogon Apogonidae Apoidea Apolista Apolistan Apollinaire Apollinarian Apollinarianism Apollinaris Apolline Apollinian Apollo Apollon Apollonia Apollonian Apollonic Apollonistic Apollonius Apollos Apolloship Apollus Apollyon Apolysin Apomyius Aponogeton Aponogetonaceae Apophis Apopka Aporobranchia Aporobranchiata Aporocactus Aporosa Aporrhaidae Aporrhais Apostle Apostles Apostolian Apostolic Apostolici Apostolos Apostrophia Apotactic Apotactici Apoxyomenos Appalachia Appalachian Appalachians Appaloosa Appaloosas Appel Appendicularia Appendiculariidae Appendiculata Appenzell Appia Appian Appius Apple Appleby Appledorf Applegate Appleseed Appleton Appling Appolonia Appomatox Appomattoc Appomattox Appropriations Apps Apr Apresoline April Aprile Aprilesque Aprilette Apriline Aprilis Aprils Aprocta Apsaras Apsarases Apsu Apsyrtus Aptal Aptenodytes Aptera Apteryges Apterygidae Apterygiformes Apterygogenea Apterygota Apteryx Apthorp Aptian Aptiana Aptos Apul Apuleius Apulia Apulian Apulians Apuraemac Apure Apurimac Apus Aq Aqaba Aquafresh Aqualung Aqualungs Aquarian Aquarians Aquarid Aquarii Aquarius Aquariuses Aquasco Aquashicola Aquebogue Aqueus Aquifoliaceae Aquila Aquilae Aquilaria Aquilegia Aquileia Aquilian Aquilid Aquilla Aquilo Aquilon Aquinas Aquinist Aquinists Aquino Aquitaine Aquitania Aquitanian Aquitanians Aquone Ar ArM Ara Arab Arabeila Arabel Arabela Arabele Arabella Arabelle Arabesque Arabi Arabia Arabian Arabianise Arabianize Arabians Arabic Arabicise Arabicises Arabicism Arabicization Arabicizations Arabicize Arabicized Arabicizes Arabicizing Arabidopsis Arabis Arabise Arabised Arabises Arabising Arabism Arabisms Arabist Arabists Arabization Arabizations Arabize Arabized Arabizes Arabizing Arabophil Arabs Araby Aracaj Aracaju Aracana Aracatuba Araceae Araceli Arachis Arachne Arachnida Arachnites Arachnoidea Arachnomorphae Arad Aradidae Arae Arafat Arafura Aragallus Aragats Arago Aragon Aragonese Aragonian Araguaia Araguarae Araguari Araguaya Araiatuba Arains Arak Arakan Arakanese Arakawa Araks Aral Aralac Araldite Araldo Arales Aralia Araliaceae Araliaephyllum Araliophyllum Arallu Aralu Aram Aramaean Aramaeans Aramaic Aramaicize Aramaism Aramanta Aramburu Aramco Aramean Arameans Aramen Aramenta Aramidae Araminta Aramis Aramitess Aramu Aramus Aran Arand Aranda Arandas Aranea Araneae Araneida Araneiformes Araneiformia Araneina Araneoidea Aranha Arany Aranyaka Aranyaprathet Arapaho Arapahoe Arapahoes Arapahos Arapesh Arapeshes Araquaju Arara Ararat Aras Arathorn Aratus Araua Arauan Araucan Araucania Araucanian Araucanians Araucano Araucans Araucaria Araucariaceae Araucarioxylon Araujia Arauna Arawa Arawak Arawakan Arawakans Arawakian Arawaks Arawn Araxa Araxc Araxes Arbacia Arbe Arbela Arber Arbil Arbitron Arblay Arboles Arbon Arbovale Arbroath Arbuckle Arbuthnot Arbyrd Arcacea Arcadia Arcadian Arcadianism Arcadianisms Arcadianly Arcadians Arcadias Arcadic Arcadies Arcady Arcangelo Arcanum Arcaro Arcas Arcata Arce Arcella Arcesilaus Arcesius Arceuthobium Arch Archaean Archaeoceti Archaeocyathid Archaeocyathidae Archaeocyathus Archaeopithecus Archaeopteris Archaeopterygiformes Archaeopteryx Archaeornis Archaeornithes Archaeostomata Archaeozoic Archaeus Archaic Archaimbaud Archambault Archangel Archangelica Archbald Archbold Archbp Archcape Archd Archean Archegetes Archegoniata Archegoniatae Archegosaurus Archelaus Archelenis Archelochus Archelon Archemorus Archencephala Archeozoic Archeptolemus Archer Arches Archeus Archfiend Archiannelida Archias Archibald Archibaldo Archibold Archibuteo Archichlamydeae Archidamus Archidiaceae Archidiskodon Archidium Archie Archilochian Archilochus Archimago Archimedean Archimedes Archimycetes Archipenko Archiplata Archispermae Architectonica Architeuthis Archle Archontia Archy Archytas Arcidae Arcifera Arcimboldi Arciniegas Arcite Arco Arcola Arcos Arctalia Arctalian Arctamerican Arctia Arctic Arctiidae Arctisca Arctium Arctocephalus Arctogaea Arctogaeal Arctogaean Arctogaeic Arctogea Arctogean Arctogeic Arctoidea Arctomys Arctos Arctosis Arctostaphylos Arcturia Arcturian Arcturus Ard Arda Ardabil Ardache Ardara Ardath Arde Ardea Ardeae Ardebil Ardeche Ardeen Ardeha Ardehs Ardeidae Ardel Ardelia Ardelis Ardell Ardella Ardelle Arden Ardene Ardenia Ardennes Ardenvoir Ardeth Ardhamagadhi Ardhanari Ardie Ardin Ardine Ardis Ardisia Ardisiaceae Ardisj Ardith Ardme Ardmore Ardmored Ardoch Ardolino Ardra Ardrey Ards Ardsley Ardussi Ardy Ardyce Ardys Ardyth Ardèche Arean Areca Arecaceae Arecales Arecibo Arecuna Aredale Areithous Areius Arel Arela Arelia Arella Arelus Arenaria Arends Arendt Arendtsville Arene Arenga Arenicola Arenig Arensky Arenzville Areopagist Areopagite Areopagites Areopagitic Areopagitica Areopagus Areopaguses Areothofs Arequipa Ares Areskutan Aret Areta Arete Aretha Arethusa Arethuse Aretina Aretinian Aretino Aretta Arette Aretus Areus Arezzini Arezzo Arg Argades Argall Argante Argas Argasidae Argean Argeiphontes Argelander Argemone Argent Argenta Argenteuil Argentia Argentina Argentine Argentinean Argentineans Argentines Argentinian Argentinians Argentinidae Argentinize Argentino Arges Argestes Argfedas Argia Argid Argile Argillite Argiope Argiopidae Argiopoidea Argiphontes Argive Argives Argo Argoan Argolian Argolic Argolid Argolis Argonaut Argonauta Argonautic Argonauts Argonia Argonne Argos Argostolion Argovian Argovie Arguedas Argulus Argus Arguses Argusianus Arguslike Argusville Argyle Argyles Argyll Argylls Argyllshire Argynnis Argyra Argyraspides Argyres Argyrol Argyrols Argyroneta Argyropelecus Argyrosomus Argyrotoxus Arhat Arhats Arhatship Arhauaco Arhna Arhus Ari Aria Ariadaeus Ariadna Ariadne Arian Ariana Ariane Arianie Arianise Arianised Arianises Arianising Arianism Arianisms Arianistic Arianistical Arianize Arianized Arianizer Arianizes Arianizing Arianna Arianne Arianrhod Arians Aribold Aric Arica Aricas Arician Arick Aridatha Arided Arie Ariege Ariel Ariela Ariella Arielle Aries Arieses Arietid Arietis Ariew Ariidae Arikara Arikaras Arimasp Arimaspian Arimaspians Arimathaea Arimathaean Arimathea Arimathean Ariminum Arimo Arin Ario Ariocarpus Arioi Arioian Arion Ariosto Ariovistus Aripeka Arisaema Arisbe Arispe Arissa Arista Aristaeus Aristarch Aristarchian Aristarchus Aristeas Aristes Aristida Aristide Aristides Aristillus Aristippus Aristo Aristodemus Aristol Aristolochia Aristolochiaceae Aristolochiales Aristomachus Aristophanes Aristophanic Aristotelean Aristoteleans Aristoteles Aristotelian Aristotelianism Aristotelianisms Aristotelians Aristotelic Aristotelism Aristotle Arita Ariton Arius Arivaca Arivaipa Ariz Arizona Arizonan Arizonans Arizonian Arizonians Ariège Arjan Arjay Arjun Arjuna Ark Arkab Arkabutla Arkadelphia Arkansan Arkansans Arkansas Arkansaw Arkansawyer Arkansian Arkdale Arkhangelsk Arkie Arkite Arkoma Arkport Arks Arkville Arkwright Arlan Arlana Arlberg Arlee Arleen Arlen Arlena Arlene Arleng Arles Arlesian Arlesians Arleta Arlette Arley Arleyne Arlie Arliene Arlin Arlina Arlinda Arline Arlington Arlis Arliss Arlo Arlon Arlott Arluene Arly Arlyn Arlyne Arlynne Arm Arma Armada Armadillididae Armadillidium Armado Armageddon Armageddonist Armageddons Armagh Armagnac Armagnacs Armalda Armalite Armalla Armallas Arman Armand Armanda Armando Armani Armata Armatoles Armatoli Armavir Armbrecht Armbrust Armbruster Armco Armelda Armen Armenia Armenian Armenians Armenic Armenize Armenoid Armenti Armentiares Armentieres Armentières Armeria Armeriaceae Armida Armies Armil Armilda Armilla Armillaria Armillas Armillda Armillia Armin Armina Armington Arminian Arminianism Arminianisms Arminianize Arminianizer Arminians Arminius Armitage Armona Armond Armonk Armoracia Armorel Armoric Armorica Armorican Armoricans Armorician Armorics Armouchiquois Armour Armstrong Armuchee Army Armyn Arnaeus Arnaldo Arnaud Arnaudville Arnaut Arndt Arne Arneb Arnebia Arnegard Arnel Arnelle Arnett Arney Arnhem Arni Arnie Arnim Arno Arnold Arnoldian Arnoldist Arnoldo Arnoldsburg Arnoldson Arnoldsville Arnon Arnoseris Arnot Arnst Arnuad Arnulf Arnulfo Arnusian Arny Aro Arock Aroda Aroides Arola Aromas Aron Arona Arondel Arondell Aronia Aronoff Aronow Aronson Aroostook Aroras Arosaguntacook Arouet Arp Arpanet Arpin Arquit Arracacia Arragon Arran Arras Arratoon Arrau Arrephoria Arrephoroi Arrephoros Arretine Arretium Arrey Arrhenatherum Arrhenius Arrhephoria Arri Arria Arriba Arries Arriet Arrigny Arrigo Arrington Arrio Arron Arrowsmith Arruague Arry Arryish Arsacid Arsacidan Arsacids Arseny Arshile Arsinoae Arsinoe Arsinoitherium Arsinous Arsippe Arst Art Arta Artacia Artair Artamas Artamidae Artamus Artas Artaud Artaxerxes Arte Artegal Artema Artemas Artemia Artemis Artemisa Artemisia Artemision Artemisium Artemovsk Artemus Artesia Artesian Arteveld Artevelde Artex Artgum Artha Arthaud Arther Arthrobacter Arthrodira Arthrodonteae Arthrogastra Arthropoda Arthropomata Arthrostraca Arthrozoa Arthur Arthurdale Arthurian Arthuriana Articodactyla Articulata Artie Artigas Artima Artimas Artina Artinskian Artiodactyla Artocarpaceae Artocarpus Artois Artotyrite Artsybashev Artukovic Artur Arturo Artus Arty Artzybasheff Artzybashev Aruabea Aruac Aruba Aruban Arubans Arulo Arum Arun Aruncus Arundel Arundell Arundinaria Arundo Aruns Arunta Aruntas Arup Aruru Arusha Arutiunian Aruwimi Arv ArvArva Arva Arvad Arvada Arval Arvales Arvell Arverni Arvicola Arvicolinae Arvid Arvida Arvie Arvilla Arvin Arvind Arvo Arvol Arvonia Arvonio Arvy Ary Arya Aryaman Aryan Aryanisation Aryanise Aryanised Aryanises Aryanising Aryanism Aryanization Aryanize Aryanized Aryanizes Aryanizing Aryans Aryn Arzachel Arzava Arzawa As Asa Asabi Asael Asag Asahel Asahi Asahigawa Asahikawa Asama Asante Asantehene Asantes Asaph Asaphic Asaphidae Asaphus Asapurna Asar Asaraceae Asare Asarh Asarum Asat Asben Asbestosis Asbjornsen Asbjurnsen Asbury Asc Ascabart Ascalabota Ascalabus Ascalaphus Ascanian Ascanius Ascapart Ascaridae Ascaridia Ascaris Ascella Ascendant Ascendants Ascendent Ascendents Ascenez Ascension Ascensions Ascensiontide Ascetta Asch Aschaffenburg Ascham Aschelminthes Aschim Ascidia Ascidiacea Ascidiae Ascidioida Ascidioidea Ascidiozoa Asclepi Asclepiad Asclepiadaceae Asclepiadae Asclepiade Asclepiadean Asclepiadic Asclepian Asclepias Asclepieion Asclepius Asco Ascochyta Ascolichenes Ascomycetes Ascones Ascophyllum Ascot Ascothoracica Ascupart Ascus Ascutney Ascyrum Asdic Ase Asel Aselli Asellidae Aselline Asellus Asenath Aseneth Aser Aseyev Asgard Asgardhr Asgarth Asgeir Asgeirsson Ash Asha Ashab Ashangos Ashantee Ashanti Ashantis Asharasi Ashaway Ashbaugh Ashbey Ashburn Ashburnham Ashburton Ashby Ashcan Ashchenaz Ashcroft Ashdod Ashdown Ashe Asheboro Ashelman Ashely Asher Asherah Asherahs Asherim Asherite Asherites Asherton Ashes Asheville Ashfield Ashford Ashgabat Ashia Ashien Ashikaga Ashil Ashippun Ashir Ashjian Ashkenaz Ashkenazi Ashkenazic Ashkenazim Ashkenazis Ashkenazy Ashkhabad Ashkum Ashla Ashlan Ashland Ashlee Ashleigh Ashlen Ashley Ashli Ashlie Ashlin Ashling Ashluslay Ashly Ashman Ashmead Ashmole Ashmolean Ashmore Ashochimi Ashok Ashraf Ashtabula Ashtaroth Ashti Ashton Ashtoreth Ashuelot Ashur Ashura Ashurbanipal Ashville Ashwell Ashwin Ashwood Asia Asiadollar Asiadollars Asiago Asiagos Asian Asianic Asianism Asianization Asianizations Asians Asiarch Asiarchate Asiatic Asiatical Asiatically Asiatican Asiaticisation Asiaticise Asiaticism Asiaticization Asiaticize Asiatics Asiatize Asilidae Asilomar Asilus Asimina Asimov Asine Asio Asir Asius Ask Askari Askelon Askey Askja Asklepios Askov Askr Askwith Aslam Asmara Asmera Asmoday Asmodeus Asmonaean Asmonean Asni Asniares Asnieres Aso Asoka Asopus Asosan Asotin Asp Aspa Aspalax Aspartame Aspasia Aspatia Aspell Aspen Asperges Aspergillaceae Aspergillales Asperifoliae Aspermont Aspers Asperugo Asperula Asphalius Asphodelaceae Asphodeline Asphodelus Aspia Aspidiotus Aspidiske Aspidistra Aspidobranchia Aspidobranchiata Aspidocephali Aspidochirota Aspidoganoidei Aspidosperma Aspinwall Asplenieae Asplenium Aspredinidae Aspredo Asquith Asroc Assad Assam Assama Assamese Assamites Assaracus Assaria Assassin Assassins Assawoman Assemblies Assembly Assemblyman Assemblymen Assen Asser Asshur Assidaean Assidean Assiniboin Assiniboine Assiniboines Assiniboins Assisan Assisi Assiut Assmannshausen Assmannshauser Assn Associate Associates Assonet Assonia Assouan Assuan Assuerus Assumption Assumptionist Assumptions Assur Assurbanipal Assyr Assyria Assyrian Assyrianise Assyrianize Assyrians Assyriological Assyriologies Assyriologist Assyriologists Assyriologue Assyriology Assyroid Assyut Asta Astacidae Astacus Astaire Astakiwi Astana Astarte Astartian Astartidae Astatula Astera Asteraceae Asterales Asterella Asteria Asterias Asteriidae Asterina Asterinidae Asterion Asterionella Asterius Asternata Asterochiton Asterodia Asteroidea Asterolepidae Asterolepis Asteropaeus Asterope Asterophyllites Asterospondyli Asteroxylaceae Asteroxylon Asterozoa Asti Astian Astilbe Astispumante Astolat Aston Astor Astoria Astra Astrabacus Astrachan Astraea Astraean Astraeidae Astraeus Astragalus Astrahan Astrakhan Astrakhans Astrangia Astrantia Astrateia Astrea Astred Astrex Astrexes Astri Astrid Astrix AstroTurf AstroTurfs Astrocaryum Astronautarum Astronauts Astropecten Astropectinidae Astrophyton Astroscopus Astroturf Astroturfs Astto Astur Asturian Asturians Asturias Astyanax Astydamia Astylospongia Astylosternus Asunci Asuncion Asunciun Asunción Asur Asura Asuri Asvins Aswan Asymmetron Asynjur Asyut Asz At Ata Atabalipa Atabrine Atabrines Atabyrian Atacama Atacaman Atacamenan Atacamenian Atacameno Ataentsic Atahualpa Ataigal Ataiyal Atakapa Atakapas Atal Atalan Atalanta Atalante Atalanti Atalaya Atalayah Atalee Ataliah Atalie Atalissa Atalya Atamosco Atarax Atari Atascadero Atascosa Atat Atatfrk Ataturk Atatürk Atbara Atchafalaya Atcheson Atchison Atcliffe Atco Ate Ateba Ateles Atellan Aten Atenism Atenist Aterian Ateste Atestine Atfalati Atglen Athabasca Athabascan Athabascans Athabaska Athabaskan Athabaskans Athal Athalee Athalia Athaliah Athalie Athalla Athallia Athamantid Athamas Athanasian Athanasianism Athanasianist Athanasians Athanasius Athanienne Athapascan Athapascans Athapaskan Athapaskans Atharvan Athecae Athecata Athel Athelbert Athelred Athelstan Athelstane Athena Athenaea Athenaeum Athenaeus Athenagoras Athenai Athene Athenian Athenianly Athenians Athenienne Athens Athericera Atherinidae Atheriogaea Atheriogaean Atheris Atherosperma Atherton Atherurus Athey Athie Athiste Athlone Athol Athos Athyridae Athyris Athyrium Ati Atiana Atik Atikokania Atila Ativan Ativans Atka Atkins Atkinson Atlanta Atlantan Atlantans Atlante Atlantean Atlantes Atlantic Atlantica Atlanticism Atlanticisms Atlanticist Atlanticists Atlantid Atlantides Atlantis Atlantosaurus Atlas Atlasburg Atlases Atlaslike Atlee Atli Atman Atmans Atmore Atnah Atoka Aton Atonsah Atophan Atorai Atossa Atoxyl Atractaspis Atragene Atrahasis Atrax Atrebates Atremata Atreus Atria Atrice Atridae Atridean Atriplex Atronna Atropa Atropatene Atropidae Atropos Atrypa Ats Atsina Atsinas Atsugi Atta Attacapan Attacus Attah Attalanta Attalea Attalid Attalie Attalla Attapulgus Attenborough Attenweiler Atterbury Atthia Attic Attica Attical Atticise Atticised Atticises Atticising Atticism Atticisms Atticist Atticize Atticized Atticizes Atticizing Atticus Attidae Attila Attis Attius Attiwendaronk Attleboro Attlee Attn Attu Attucks Attwood Atuami Atul Atum Atwater Atwekk Atwood Atworth Atymnius Atys Au Aubanel Aubarta Aube Auber Auberbach Auberge Auberon Auberry Aubert Auberta Aubervilliers Aubigny Aubin Aubine Aubree Aubreir Aubrette Aubrey Aubrie Aubrietia Aubry Auburn Auburndale Auburntown Auburta Aubusson Aubussons Aubyn Auca Aucan Aucaner Aucanian Auchenia Auchincloss Auchinleck Auckland Aucklander Aucklanders Aucuba Audaean Aude Auden Audenesque Audette Audhumbla Audhumla Audi Audian Audibertia Audie Audion Audley Audly Audra Audras Audre Audres Audrey Audri Audrie Audris Audrit Audry Audrye Audsley Audubon Audubonistic Audun Audwen Audwin Audy Auer Auerbach Aueto Aufidius Aufklarung Aufklarungs Aufklerung Aufklrung Aufklärung Aufmann Aug Auge Augean Augeas Augelot Augie Augier Augres Augsburg August Augusta Augustales Augustan Augustans Auguste Augusti Augustin Augustina Augustine Augustinian Augustinianism Augustinianisms Augustinians Augustinism Augustinisms Augusto Augusts Augustus Augustuses Augy Auk Aulacodus Aulacomniaceae Aulacomnium Aulander Aulard Aulea Auliffe Aulis Aulostoma Aulostomatidae Aulostomi Aulostomidae Aulostomus Ault Aultman Aum Aums Aumsville Aun Aundrea Aunjetitz Aunson Aura Aural Aurangabad Aurangzeb Aurantiaceae Aurantium Aurea Aurel Aurelea Aurelia Aurelian Aurelie Aurelio Aurelius Aureocasidium Aureomycin Aureomycins Aures Auria Auric Auricula Auricularia Auriculariaceae Auriculariales Auriculidae Aurie Auriga Aurigae Aurigid Aurignac Aurignacian Aurilia Auriol Aurita Aurlie Auroora Aurora Aurore Aurorian Aurthur Aurum Aurungabad Aurungzeb Aus Ausable Auschwitz Auscultoscope Ause Ausgleich Ausgleiche Aushar Auslander Auslender Auslese Ausländer Ausones Ausonian Ausonius Aussie Aussies Aust Austafrican Austell Austen Auster Austerlitz Austin Austina Austinburg Austine Austins Austinville Auston Austral Australanthropus Australasia Australasian Australasians Australe Australia Australian Australiana Australianise Australianism Australianisms Australianize Australians Australic Australioid Australioids Australis Australoid Australoids Australopithecinae Australopithecine Australopithecines Australopithecus Australorp Austrasia Austrasian Austrasians Austreng Austria Austrian Austrianise Austrianize Austrians Austric Austroasiatic Austrogaea Austrogaean Austronesia Austronesian Austronesians Austrophil Austrophile Austrophilism Austroriparian Austwell Autarchoglossa Autaugaville Auteuil Authon Autobahn Autobahns Autobasidiomycetes Autobasisii Autogiro Autoharp Autoharps Autolycus Autolytus Automat Automats Automedon Autonoae Autonoe Autopositive Autosauri Autosauria Autosyn Autrain Autrans Autrey Autry Autryville Autum Autumn Autumni Autun Autunian Auvergne Auvil Auwers Auxerre Auxier Auxo Auxvasse Auzout Av Ava Avallon Avalokita Avalokitesvara Avalon Avan Avanguardisti Avant Avanti Avar Avaradrano Avaria Avarian Avarish Avars Avawam Ave Avebury Aveiro Avelin Avelina Aveline Avella Avellaneda Avellino Avena Avenal Avenel Aventine Avera Averell Averi Averil Averill Averir Avernal Averno Avernus Averrhoa Averrhoism Averrhoist Averrhoistic Averroaes Averroes Averroism Averroist Averroistic Avertin Avery Averyl Aves Avesta Avestan Avestas Avestic Aveyron Avi Avice Avicebron Avicebrun Avicenna Avicennia Avicenniaceae Avicennism Avictor Avicula Avicularia Aviculariidae Avicularimorphae Aviculidae Avie Aviemore Avigdor Avignon Avignonese Avikom Avila Avilion Avilla Avinger Avior Avis Avisco Aviston Avitzur Aviv Aviva Avivah Avlona Avner Avo Avoca Avogadro Avon Avondale Avonmore Avonne Avra Avraham Avram Avril Avrit Avrom Avron Avruch Avs Avshar Awabakal Awacs Awad Awadhi Awaitlala Awan Awellimiden Awendaw Awol Awolowo Awshar Ax Axa Axe Axel Axels Axifera Axiopoenus Axis Axminster Axminsters Axonia Axonolipa Axonophora Axonopus Axson Axtel Axtell Axton Axum Axumite Axumites Ay Ayacucho Ayahuca Ayala Ayckbourn Aycliffe Aydelotte Ayden Aydendron Aydin Aydlett Ayer Ayers Ayesha Ayina Aykroyd Aylesbury Aylett Aylmar Aylmer Aylsworth Aylward Aym Ayma Aymara Aymaran Aymarans Aymaras Ayme Aymer Aymoro Ayn Aynat Aynor Ayntab Ayo Ayr Ayres Ayrshire Ayrshires Aythya Ayubite Ayudhya Ayurveda Ayurvedas Ayurvedic Ayuthea Ayuthia Ayutthaya Ayyubid Azal Azalea Azaleah Azalia Azan Azana Azande Azandes Azania Azanian Azanians Azar Azarcon Azaria Azariah Azarria Azaua Azazel Azbine Azcapotzalco Azeglio Azeito Azelea Azelfafage Azerbaidzhan Azerbaijan Azerbaijanese Azerbaijani Azerbaijanian Azerbaijanians Azerbaijanis Azeri Azeria Azeris Azha Azide Azikiwe Azilian Azimech Aziza Azle Aznavour Azobacter Azof Azoic Azolla Azophi Azor Azoraen Azorean Azoreans Azores Azorian Azorians Azorin Azotobacter Azotobacterieae Azotos Azov Azpurua Azrael Azral Azriel Aztec Azteca Aztecan Aztecs Aztlan Azuela Azuero Azusa Azygobranchia Azygobranchiata B BA BAA BACH BAE BAEd BAFO BAJour BAL BALPA BALUN BAM BAMAF BAMusEd BANCS BAO BAOR BAPCO BAPCT BAR BARRNET BAS BASH BASIC BASICs BASc BATSE BAU BAcc BAdmEng BAg BAgE BAgSc BAgr BAppArts BAr BArch BArchE BB BBA BBB BBC BBL BBN BBQ BBS BBSes BBXRT BC BCBS BCC BCD BCDIC BCE BCG BCL BCM BCME BCP BCPL BCR BCS BCWP BCWS BCerE BCh BChE BCom BComSc BD BDA BDC BDD BDF BDS BDSA BDT BDes BE BEA BEAV BED BEE BEF BELLCORE BEM BEMA BENELUX BEP BER BERT BES BEST BETRS BEW BEd BEng BF BFA BFAMus BFD BFDC BFHD BFR BFS BFT BG BGE BGP BGeNEd BH BHA BHC BHL BHP BHT BI BIA BICS BID BIE BIM BIMA BIND BIOC BIOS BIS BISDN BISP BISYNC BIT BITNET BITNETs BITS BIU BIX BIndEd BL BLA BLAS BLAST BLDS BLE BLER BLERT BLF BLFE BLI BLL BLM BLOBS BLS BLT BLTs BLV BLandArch BLit BLitt BM BMA BME BMEWS BMEd BMG BMI BMJ BMO BMOC BMP BMR BMS BMT BMV BMW BMX BMarE BMet BMetE BMgtE BMus BN BNC BNET BNF BNFL BNS BNSC BNU BO BOAC BOC BOD BOF BOM BOMFOG BOQ BOR BOS BOSIX BOSS BOT BP BPA BPC BPDPA BPE BPH BPI BPOC BPOE BPPS BPS BPSS BPetE BPh BPharm BPhil BR BRAT BRC BRCA BRCS BRE BRG BRI BRIEF BRL BRM BRN BRS BRT BS BSA BSAA BSAE BSAdv BSAeE BSAgE BSAgr BSArch BSArchE BSArchEng BSBA BSBH BSBus BSBusMgt BSC BSCE BSCM BSCP BSCh BSChE BSCom BSD BSDHyg BSDes BSDs BSE BSEE BSEEngr BSEM BSEP BSES BSEc BSEd BSElE BSEng BSF BSFM BSFMgt BSFS BSFT BSGE BSGMgt BSGeNEd BSGeolE BSGph BSHA BSHE BSHEc BSHEd BSHyg BSI BSIE BSIR BSIT BSIndEd BSIndEngr BSIndMgt BSJ BSL BSLArch BSLM BSLS BSLabRel BSM BSME BSMT BSMTP BSMedTech BSMet BSMetE BSMin BSMusEd BSN BSNA BSO BSOC BSOT BSOrNHort BSP BSPA BSPE BSPH BSPHN BSPT BSPhTh BSPhar BSPharm BSRFS BSRT BSRec BSRet BSS BSSA BSSE BSSS BSSc BST BSTIE BSTJ BSTrans BSW BSc BSchMusic BT BTAM BTCh BTE BTHU BTL BTN BTO BTOL BTS BTU BTW BTh BThU BU BUF BUR BURP BUS BUT BV BVA BVC BVD BVDs BVE BVM BVY BW BWC BWG BWI BWM BWR BWT BWTS BWV BX BYO BYOB BYU Ba Baal Baalath Baalbeer Baalbek Baalim Baalish Baalism Baalisms Baalist Baalistic Baalists Baalite Baalites Baalitical Baalize Baalized Baalizing Baalman Baals Baalshem Baarnaise Baastan Baath Baathism Baathisms Baathist Baathists Bab Baba Babar Babara Babb Babbage Babbette Babbie Babbitries Babbitry Babbitt Babbittess Babbittian Babbittish Babbittism Babbittries Babbittry Babbitts Babbitty Babby Babcock Babe Babee Babeeism Babees Babel Babeldom Babelic Babelisation Babelise Babelised Babelish Babelising Babelism Babelization Babelize Babelized Babelizing Babels Baber Babes Babesia Babette Babeuf Babhan Babi Babiana Babies Babiism Babine Babis Babism Babisms Babist Babists Babita Babite Babites Babits Babol Babongo Babouvism Babouvist Babs Babson Babua Babuma Babungera Babur Baby Babycham Babygro Babygros Babylon Babylonia Babylonian Babylonians Babylonic Babylonise Babylonish Babylonism Babylonite Babylonize Babylons Bac Bacall Bacardi Bacardis Bacau Bacchae Bacchanalia Bacchanalian Bacchanalians Bacchanalias Bacchelli Bacchic Bacchical Bacchides Bacchus Bacchuslike Bacchylides Baccio Bach Bacharach Bache Bacheller Bachichi Bachman Bacillaceae Bacillariaceae Bacillariales Bacillarieae Bacillariophyta Bacis Backer Backhaus Backler Backs Backstein Backus Bacliff Baco Bacolod Bacon Baconian Baconianism Baconians Baconic Baconism Baconist Baconton Bacopa Bacova Bacquer Bacteriaceae Bacteroideae Bacteroides Bactra Bactria Bactrian Bactrians Bactris Bactrites Baculites Badacsonyi Badaga Badajoz Badakhshan Badalona Badarian Badawi Badaxe Badb Baden Bader Badger Badgers Badin Badlands Badoeng Badoglio Badon Badr Baduhenna Baecher Baeda Baedeker Baedekerian Baedekers Baekeland Bael Baelbeer Baer Baeria Baerl Baerman Baese Baeyer Baez Baffin Bafyot Baganda Bagatha Bagaudae Bagdad Bagdi Bagehot Baggara Bagger Baggett Baggie Baggies Baggott Baggs Baghdad Baghdadi Baghdadis Bagheera Bagheli Baghlan Baginda Bagirmi Bagley Bagnes Bagobo Bagpuize Bagram Bagritski Baguio Bagwell Bahadur Bahai Bahais Bahaism Bahaisms Bahaist Bahaists Baham Bahama Bahaman Bahamanian Bahamanians Bahamans Bahamas Bahamian Bahamians Bahaullah Bahawalpur Bahcaesm Bahcist Bahcullch Bahia Bahian Bahians Bahima Bahmani Bahmanid Bahner Bahr Bahrain Bahraini Bahrainis Bahrein Bahreini Bahreinis Bahuma Bahutu Bai Baiae Baianism Baidya Baiel Baiera Baikal Baikonur Bail Bailar Bailey Baileyton Baileyville Bailie Baillaud Baillie Baillieu Baillonella Bailly Baily Bain Bainbridge Bainbrudge Baining Bains Bainter Bainville Bairam Bairams Baird Bairdford Bairiki Bairnsfather Bairoil Bais Baisakh Baisaki Baisden Baiss Baja Bajadero Bajaj Bajan Bajans Bajardo Bajau Bajer Bajocian Bak Bakairi Bakalai Bakalei Bakatan Bakelite Bakelites Bakeman Bakemeier Baker Bakerman Bakersfield Bakerstown Bakersville Bakerton Bakes Bakewell Bakhmut Bakhtaran Bakhtiari Bakke Bakki Bakongo Bakshaish Bakst Baku Bakuba Bakunda Bakunin Bakuninism Bakuninist Bakutu Bakwiri Baky Bal Bala Balaam Balaamite Balaamitical Balac Balaclava Balaclavas Balaena Balaenicipites Balaenidae Balaenoidea Balaenoptera Balaenopteridae Balaic Balak Balakirev Balaklava Balan Balance Balanchine Balanga Balanidae Balanites Balanoglossida Balanoglossus Balanophora Balanophoraceae Balanops Balanopsidaceae Balanopsidales Balanta Balante Balantes Balantidium Balanus Balao Balarama Balas Balaton Balawa Balawu Balbinder Balbo Balboa Balbriggan Balbuena Balbur Balcer Balch Balcke Balcon Bald Baldad Baldassare Balder Baldie Baldomero Baldr Baldridge Balduin Baldur Baldwin Baldwins Baldwinsville Baldwinville Baldwyn Bale Baleares Balearian Balearic Balearica Balenciaga Baler Balewa Balf Balfore Balfour Bali Balija Balikpapan Balilla Balinese Baliol Balistes Balistidae Balius Balkan Balkanic Balkanisation Balkanisations Balkanise Balkanised Balkanises Balkanising Balkanism Balkanite Balkanization Balkanizations Balkanize Balkanized Balkanizes Balkanizing Balkans Balkar Balkh Balkhash Balkin Balkis Balko Ball Balla Ballance Ballantine Ballantyne Ballarat Ballard Ballengee Ballentine Ballesteros Ballhausplatz Ballico Balliett Balling Ballinger Ballington Balliol Ballistite Ballman Ballota Ballou Ballouville Ballplatz Ballwin Bally Ballycastle Ballyllumford Ballymena Ballymoney Balmain Balmarcodes Balmat Balmawhapple Balmont Balmoral Balmorals Balmorhea Balmunc Balmung Balmuth Balnibarbi Baloch Balochi Balochis Baloghia Balolo Balopticon Balor Baloskion Baloskionaceae Balough Balsam Balsamea Balsameaceae Balsamina Balsaminaceae Balsamodendron Balsamorrhiza Balshem Balt Balta Baltassar Balthasar Balthazar Balthazars Balthus Balti Baltic Baltimore Baltimorean Baltimoreans Baltis Baltoslav Baltoslavic Baltoslavonic Balts Baluba Baluch Baluches Baluchi Baluchis Baluchistan Baluchitherium Baluga Balunda Balzac Balzacian Bamako Bamalip Bamangwato Bambara Bambaras Bamberg Bamberger Bambi Bambie Bambos Bambuba Bambusa Bambuseae Bambute Bamby Bamford Bamian Bamileke Ban Bana Banach Bananaland Bananalander Bananalanders Banande Banaras Banares Banat Banate Banba Banbridge Banbury Banco Bancroft Banda Bandana Bandaranaike Bande Bandeen Bandello Bander Bandera Banderma Bandhor Bandinelli Bandjarmasin Bandjermasin Bandkeramik Bandler Bandoeng Bandon Bandor Bandundu Bandung Bandur Bandusia Bandusian Bandytown Banebrudge Banecroft Banerjea Banerjee Banff Banffshire Bang Bangala Bangall Bangalore Bangash Bangia Bangiaceae Bangiales Bangka Bangkok Bangladesh Bangladeshi Bangladeshis Bangor Bangs Bangui Bangwaketsi Bangweulu Banias Baniva Banjarmasin Banjermasin Banjul Bank Banka Bankalachi Bankhead Banking Banks Banksia Banksian Bankside Bankston Banky Banlon Bann Banna Bannasch Banneker Banner Banneret Bannerets Bannerman Banning Bannister Bannock Bannockburn Bannocks Bannon Banon Banquer Banquete Banquo Banstead Bantam Bantams Banthine Banting Bantingism Bantock Bantoid Bantry Bantu Bantus Bantustan Bantustans Banville Banwell Banyai Banyoro Banyuls Baotou Bap Baphia Baphomet Baphometic Bapt Baptanodon Baptisia Baptist Baptista Baptiste Baptistic Baptistown Baptists Baptlsta Baptornis Bar Bara Barabas Barabbas Baraboo Barabra Barac Baraca Barack Baracoa Baraga Barahona Baraithas Barajas Barak Baralipton Baram Baramika Baranger Baranice Baranov Barany Baras Barashit Barataria Baray Barayon Barb Barbabas Barbabra Barbacoa Barbacoan Barbadian Barbadians Barbadoes Barbados Barbara Barbaraanne Barbarea Barbarella Barbaresco Barbarese Barbaresi Barbarian Barbarossa Barbary Barbe Barbeau Barbee Barber Barbera Barberton Barberville Barbette Barbey Barbeyaceae Barbi Barbica Barbie Barbies Barbirolli Barbizon Barbour Barbours Barboursville Barbourville Barboza Barbra Barbuda Barbudan Barbudans Barbula Barbur Barbusse Barbuto Barby Barca Barcan Barce Barcellona Barcelona Barcelonan Barcelonans Barcelonese Barceloneta Barchester Barclay Barclaycard Barclaycards Barco Barcoo Barcot Barcroft Barcus Bard Barde Bardeen Barden Bardesanism Bardesanist Bardesanite Bardia Bardo Bardolater Bardolatry Bardolino Bardolinos Bardolph Bardolphian Bardot Bardstown Bardulph Bardwell Bare Barea Barefoot Bareilly Bareli Barenboim Barents Barfuss Barger Bargersville Barham Barhamsville Bari Bariloche Barimah Barina Barinas Baring Barker Barking Barkinji Barkla Barkleigh Barkley Barksdale Barlach Barletta Barleycorn Barling Barlow Barmecidal Barmecide Barmecides Barmen Barn Barna Barnaba Barnabas Barnabe Barnabite Barnaby Barnaise Barnard Barnardo Barnardsville Barnaul Barnburner Barncard Barnebas Barnegat Barnes Barnesboro Barneston Barnesville Barnet Barnett Barneveld Barneveldt Barney Barnhard Barnhart Barnie Barnsdall Barnsley Barnstable Barnstaple Barnstead Barnstock Barnum Barnumesque Barnumism Barnumize Barnwell Barny Barocchio Barocius Baroco Baroda Baroja Barolet Barolo Barolong Barolos Baron Baronga Baroque Baroques Barosma Barotse Barotseland Barotses Barouni Barozzi Barquero Barquisimeto Barr Barra Barrackville Barrada Barram Barrancabermeja Barranquilla Barranquitas Barras Barrault Barraza Barre Barree Barren Barrens Barrera Barres Barret Barrett Barri Barrie Barrientos Barrier Barriers Barrington Barringtonia Barrios Barris Barron Barronett Barros Barrow Barrowist Barrus Barry Barrymore Barryton Barrytown Barryville Barsac Barset Barsky Barstow Bart Barta Bartel Bartelso Barth Barthel Barthelemy Barthes Barthian Barthianism Barthians Barthol Barthold Bartholdi Bartholemy Bartholomean Bartholomeo Bartholomeus Bartholomew Bartholomewtide Bartholomite Barthou Bartie Bartko Bartle Bartlemy Bartlesville Bartlet Bartlett Bartletts Bartley Barto Bartok Bartokian Bartolemo Bartolome Bartolomeo Bartolommeo Bartolozzi Barton Bartonella Bartonia Bartonsville Bartonville Bartosch Bartow Bartram Bartramia Bartramiaceae Bartramian Bartsia Bartuk Barty Bartók Baruch Barundi Barvick Barwick Bary Barye Baryram Baryshnikov Barzani Bascio Basco Bascology Bascom Bascomb Base Basehor Basel Baseler Basella Basellaceae Basenji Basham Bashan Bashee Bashemath Bashemeth Bashilange Bashkir Bashkiria Bashkirs Bashmuric Basho Bashuk Basia Basibracteolate Basic Basidiolichenes Basidiomycetes Basie Basil Basilan Basilarchia Basildon Basile Basilian Basilians Basilica Basilicae Basilicata Basilics Basilidian Basilidianism Basiliensis Basilio Basiliscus Basilius Basilosauridae Basilosaurus Basinger Basingstoke Basir Baskerville Baskervilles Baskett Baskin Baskish Baskonize Basle Basoche Basoga Basoko Basom Basommatophora Basongo Basotho Basothos Basov Basque Basques Basra Bass Bassa Bassalia Bassalian Bassanio Bassano Bassaris Bassariscus Bassein Bassenthwaite Basset Basseterre Bassett Bassetts Bassfield Bassia Basso Bast Bastaard Bastad Bastard Bastia Bastian Bastien Bastille Bastogne Bastrop Basuto Basutoland Basutos Basye Bat Bataan Batak Batan Batanes Batangas Batatas Batavi Batavia Batavian Batavians Batchelder Batchelor Batchtown Bate Batekes Bateman Baten Bates Batesburg Batesian Batesland Batesville Batetela Bath Batha Bathala Bathelda Bathesda Bathilda Bathinette Bathinettes Batholomew Bathonian Bathsheb Bathsheba Bathsheeb Bathulda Bathurst Batia Batidaceae Batilda Batis Batish Batista Batley Batman Batna Batocrinidae Batocrinus Batodendron Batoidei Batoka Baton Batonga Bator Batory Batrachia Batrachidae Batrachium Batrachoididae Batrachophidia Batrachospermum Batruk Batsheva Batson Batta Battak Battakhin Battambang Battat Battelle Battelmatt Battenberg Battenburg Battersea Battery Batticaloa Battiest Battipaglia Battista Battiste Battle Battleboro Battletown Battus Batty Batu Batum Batumi Batussi Batwa Bau Baubo Bauchi Baucis Baudelaire Baudelairean Baudelairian Baudette Baudin Baudoin Baudouin Baudrons Bauer Bauera Bauernbrot Baugh Baughman Bauhaus Bauhauses Bauhinia Baul Baum Bauma Baumann Baumbaugh Baume Baumeister Baun Baure Bauru Bausch Bauske Bausman Bautain Bautista Bautram Bautzen Bav Bavaria Bavarian Bavarians Bavian Bavius Bavon Bawra Bax Baxie Baxley Baxter Baxterian Baxterianism Baxy Bay Baya Bayam Bayamo Bayamon Bayamun Bayar Bayard Bayboro Baycol Baycols Bayda Bayeau Bayer Bayern Bayes Bayesian Bayeux Bayfield Bayh Baykal Bayle Bayless Bayley Baylis Baylor Bayly Bayminette Baynebridge Bayogoula Bayonne Bayougoula Baypines Bayport Bayreuth Bays Bayshore Bayside Bayswater Baytown Bayview Bayville Baywatch Bazaine Bazar Bazatha Baziers Bazigar Bazil Bazin Bazine Baziotes Bazluke Bcb Bcbae Bchar Bcrcny Bde Bdellidae Bdelloida Bdellostoma Bdellostomatidae Bdellostomidae Bdelloura Bdellouridae Be BeShT BeV Bea Beach Beacham Beachboys Beachwood Beaconsfield Beadle Beagle Beal Beale Bealeton Beall Bealle Beallsville Beals Bealtine Bealtuinn Beaman Bean Beane Beaner Bear Bearce Beard Bearden Beardmore Beardsley Beardsleyesque Beardstown Beare Bearnaise Bearnard Bearsville Beasley Beason Beaston Beat Beata Beatitude Beatitudes Beatlemania Beatles Beatnik Beatniks Beaton Beatrice Beatrisa Beatrix Beatriz Beats Beattie Beatty Beattyville Beau Beauchamp Beauclerc Beaudoin Beaufert Beauford Beaufort Beauharnais Beaujolais Beaujolaises Beaulieu Beaumarchais Beaumaris Beaumont Beaumontia Beaune Beauregard Beauvais Beauvoir Beaver Beaverboard Beaverboards Beaverbrook Beaverdale Beaverkill Beaverlett Beaverton Beavertown Beaverville Bebe Bebel Beberg Bebington Bebryces Bebung Becca Beccaria Bechet Bechler Bechstein Becht Bechtel Bechtelsville Bechtler Bechuana Bechuanaland Bechuanas Beck Becka Beckemeyer Beckenbauer Becker Beckerman Becket Beckett Beckettian Beckford Becki Beckie Beckley Beckman Beckmann Beckville Beckwith Becky Becquer Becquerel Bedad Beddoes Bede Bedelia Bedell Bedford Bedfordshire Bedias Bedivere Bedlam Bedlamic Bedlams Bedlington Bedlingtons Bedlingtonshire Bedloe Bedminster Bedouin Bedouinism Bedouins Beds Bedu Beduin Beduins Bedwell Bedworth Bee Beeb Beebe Beecham Beechbottom Beecher Beeching Beechmont Beeck Beedeville Beedon Beefaroni Beefeater Beefeaters Beehive Beehouse Beekman Beekmantown Beeler Beelzebub Beelzebubian Beelzebul Beemer Beer Beera Beerbohm Beernaert Beerothite Beers Beersheba Beersheeba Beesley Beeson Beethoven Beethovenian Beethovenish Beethovian Beetner Beeton Beetown Beeville Beffrey Befind Bega Begga Beggiatoa Beggiatoaceae Beggs Beghard Beghtol Begin Begoniaceae Begoniales Beguin Beguine Beguines Behah Behaim Behan Behar Behistun Behka Behl Behlau Behlke Behm Behmen Behmenism Behmenist Behmenite Behn Behnken Behre Behrens Behring Behrman Beica Beichner Beid Beiderbecke Beijing Beilul Bein Beira Beirne Beirut Beiruti Beirutis Beisel Beitch Beitnes Beitris Beitz Beja Bejas Bejou Beka Bekaa Bekah Bekelja Beker Bekesy Bekha Bekki Bel Bela Belafonte Belair Belait Belaites Belak Belalton Belam Belamcanda Belamy Belanger Belarus Belarusan Belarusans Belarusian Belarusians Belarussian Belarussians Belasco Belatrix Belau Belaunde Belayneh Belcher Belchertown Belcourt Belda Belden Beldenville Belding Bele Belem Belemnites Belemnitidae Belemnoidea Belen Belfair Belfast Belfield Belford Belfort Belg Belgae Belgaum Belgian Belgians Belgic Belgique Belgium Belgophile Belgorod Belgrade Belgrano Belgravia Belgravian Belgravians Belia Belial Belialic Belialist Belicia Belier Belili Belinda Belington Belinuridae Belinurus Belis Belisarius Belita Belitoeng Belitong Belitung Belize Belizean Belizeans Belk Belknap Bell Bella Bellabella Bellacoola Bellaghy Bellaire Bellamy Bellanca Bellarthur Bellatrix Bellaude Bellay Bellbrook Bellbuckle Bellda Belldame Belldas Belle Bellechasse Belleek Belleeks Bellefonte Bellelay Bellemead Bellemina Belleplaine Beller Bellerive Bellerophon Bellerophontes Bellerophontic Bellerophontidae Bellerose Bellevernon Belleview Belleville Bellevue Bellew Bellflower Bellina Bellingham Bellini Bellinis Bellinzona Bellis Bellmead Bellmont Bellmore Bello Belloc Belloir Bellona Bellonian Bellot Bellotto Bellovaci Bellow Bellows Bellport Bells Bellvale Bellville Bellvue Bellwood Belmar Belmond Belmondo Belmont Belmonte Belmopan Beloit Belone Belonger Belongers Belongership Belongerships Belonidae Belorussia Belorussian Belorussians Belostok Belostoma Belostomatidae Belostomidae Belovo Belpre Belsano Belsen Belshazzar Belshazzaresque Belshin Belsky Beltane Beltanes Beltene Belter Belteshazzar Beltian Beltir Beltis Belton Beltrami Beltran Beltsville Beltu Beltway Beluchi Belucki Belus Belushi Belva Belvedere Belverdian Belvia Belvidere Belview Belvue Bely Belzoni Bemba Bembas Bembecidae Bemberg Bembex Bembexes Bembix Bembixes Bemelmans Bement Bemidji Bemis Ben Bena Benacerraf Benacus Benadryl Benadryls Benares Benarnold Benat Benaud Benavides Benbow Benbrook Bench Benches Benchley Bencion Benco Bend Benda Benday Bendays Bendel Bendena Bender Bendersville Bendick Bendict Bendicta Bendicty Bendigo Bendite Bendix Bene Benedetta Benedetto Benedic Benedicite Benedick Benedict Benedicta Benedictine Benedictines Benedictinism Benediction Benedictions Benedicto Benedictus Benedictuses Benedikt Benedikta Benediktov Benedix Benelux Benemid Benenson Benes Benesh Benet Benetnasch Benetta Benetton Beneventan Beneventana Benevento Benezett Benfleet Beng Bengal Bengalese Bengali Bengalic Bengalis Bengals Bengasi Benge Benghazi Bengkalis Bengola Bengt Benguela Benham Benhur Beni Benia Beniamino Benicia Benidorm Benil Benilda Benildas Benildis Benin Benincasa Beninese Benioff Benis Benisch Benita Benito Benjamen Benjamin Benjaminite Benjamite Benji Benjie Benjy Benkelman Benkley Benkulen Benld Benlomond Benn Bennet Bennett Bennettitaceae Bennettitales Bennettites Bennettsville Benni Bennie Bennington Bennink Bennion Bennir Bennu Benny Beno Benoit Benoite Benoni Benoot Bensalem Bensen Bensenville Bensky Benson Bent Bentham Benthamic Benthamism Benthamisms Benthamite Benthamites Bentinck Bentincks Bentine Bentlee Bentley Bentleyville Bently Benton Bentonia Bentonville Bentree Benu Benue Benvenuto Benwood Benxi Benyamin Benz Benzedrine Benzedrines Benzel Benzonia Beograd Beora Beore Beothuk Beothukan Beowawe Beowulf Bepaint Beqaa Ber Beranger Berar Berard Berardo Berber Berbera Berberi Berberian Berberidaceae Berberis Berbers Berchemia Berchta Berchtesgaden Berck Berclair Bercovici Bercy Berdichev Berdyaev Berdyayev Berea Berean Berecyntia Berengaria Berengarian Berengarianism Berenice Berenices Berenson Beresford Bereshith Beret Berets Beretta Berey Berezina Berezniki Berfield Berg Berga Bergama Bergamask Bergamee Bergamo Bergamos Bergamot Bergdama Bergeman Bergen Bergenfield Berger Bergerac Bergeron Bergess Berget Bergh Berghoff Bergholz Bergin Bergius Bergland Berglund Bergman Bergmann Bergmans Bergonian Bergonians Bergonism Bergonisms Bergoo Bergquist Bergren Bergsma Bergson Bergsonian Bergsonians Bergsonism Bergsonisms Bergstein Bergstrom Bergton Bergwall Berhley Beri Beria Bering Berio Beriosova Berit Berith Berk Berke Berkeleian Berkeleianism Berkeleianisms Berkeleians Berkeley Berkeleyan Berkeleyans Berkeleyism Berkeleyite Berkelian Berkelianism Berkelianisms Berkelians Berkelyan Berkelyans Berkey Berkhamsted Berkie Berkin Berkley Berkly Berkman Berkoff Berkow Berkowitz Berks Berkshire Berkshires Berky Berl Berlauda Berle Berlen Berlichingen Berlin Berlinda Berliner Berliners Berlinguer Berlinise Berlinize Berlins Berlioz Berliozian Berlitz Berlon Berlyn Berlyne Berman Bermejo Bermuda Bermudan Bermudans Bermudas Bermudian Bermudians Bern Berna Bernadene Bernadette Bernadina Bernadine Bernadotte Bernal Bernalillo Bernanke Bernanos Bernard Bernardette Bernardi Bernardina Bernardine Bernardines Bernardino Bernardo Bernardston Bernardsville Bernarr Bernat Bernays Bernbach Berne Bernelle Berner Berners Bernese Bernet Berneta Bernete Bernetta Bernette Bernhard Bernhardi Bernhardt Berni Bernice Bernicia Bernie Berniece Bernina Berninesque Bernini Bernis Bernita Bernj Bernkasteler Bernouilli Bernoulli Bernoullian Berns Bernstein Bernstorff Bernt Bernville Berny Beroae Beroe Beroida Beroidae Berossos Berosus Beroun Berra Berrellez Berri Berrie Berriman Berry Berryman Berrysburg Berryton Berryville Berserk Berserker Berserkers Berserks Bersiamite Bersil Berstine Bert Berta Bertasi Bertat Bertaud Berte Bertelli Bertelsmann Bertero Berteroa Bertha Berthe Berthold Bertholletia Berthoud Berti Bertie Bertila Bertilla Bertillon Bertina Bertine Bertle Bertoia Bertold Bertolde Bertolonia Bertolt Bertolucci Berton Bertram Bertrand Bertrando Bertrant Bertsche Berty Berwick Berwickshire Berwind Berwyn Berycidae Berycoidea Berycoidei Berycomorphi Beryl Beryle Berytidae Beryx Berzelius Bes Besancon Besanion Besant Besançon Beseleel Beshore Besier Beskids Besnard Bess Bessarabia Bessarabian Bessarabians Bessarion Besse Bessel Besselian Bessemer Bessemerise Bessemerize Bessera Bessi Bessie Bessies Bessy Bessye Best Beta Betamax Betamaxes Betancourt Betas Betelgeuse Betelgeux Beth Bethalto Bethania Bethanna Bethanne Bethany Bethe Bethel Bethena Bethera Bethesda Bethesde Bethezel Bethina Bethlehem Bethlehemite Bethpage Bethsabee Bethsaida Bethuel Bethune Bethylidae Betjeman Betonica Betoya Betoyan Betsey Betsi Betsileos Betsimisaraka Betsy Bett Betta Bette Betteann Betteanne Bettencourt Bettendorf Betterton Betthel Betthezel Betthezul Betti Bettie Bettina Bettine Bettinus Bettongia Bettsville Betty Bettye Bettzel Betula Betulaceae Betulites Betz Beulah Beulaville Beuthel Beuthen Beutler Beutner Bev Bevan Bevash Bever Beveridge Beverie Beverle Beverlee Beverley Beverlie Beverly Bevers Bevier Bevin Bevington Bevinsville Bevis Bevon Bevus Bevvy Bewick Bexar Bexhill Bexley Beyer Beyle Beylic Beyo Beyoglu Beyrouth Bezae Bezaleel Bezaleelian Bezanson Beziers Bezpopovets Bezwada Bflow Bfnde Bfrg Bglr Bhabha Bhadgaon Bhadon Bhaga Bhagalpur Bhai Bhairava Bhairavi Bhaktapur Bhar Bharat Bharata Bharati Bharatiya Bhatpara Bhatt Bhaunagar Bhavabhuti Bhavani Bhave Bhavnagar Bhayani Bhikku Bhikkuni Bhikshu Bhil Bhili Bhima Bhojpuri Bhola Bhoodan Bhopal Bhotia Bhotiya Bhowani Bhubaneswar Bhudan Bhudevi Bhumibol Bhumij Bhutan Bhutanese Bhutani Bhutatathata Bhutia Bhutto Bi Bia Biadice Biafra Biafran Biafrans Biagi Biagio Biak Bialik Bialystok Biamonte Bianca Biancha Bianchi Bianchini Bianco Bianka Biarritz Bias Biayenda Bib Bibbie Bibbiena Bibbies Bibby Bibbye Bibeau Bibi Bibiena Bibio Bibionidae Bibl BiblHeb Bible Bibles Biblic Biblical Biblicality Biblically Biblicism Biblicisms Biblicist Biblicistic Biblicists Biblicolegal Biblicoliterary Biblicopsychological Bibliologies Bibliology Biblism Biblist Bibulus Bic Bicakci Bice Bichat Bichelamar Bick Bickart Bickleton Bickmore Bicknell Bicol Bicols Bicorn Bida Bidault Biddeford Biddelian Biddick Biddie Biddle Biddulphia Biddulphiaceae Biddy Biden Bidens Bidget Bidle Bidpai Bidwell Biebel Bieber Biedermann Biedermeier Biedermeyer Biegel Biel Biela Bielefeld Bielersee Bielid Bielka Bielorouss Biennale Bienne Bienville Bierce Bierman Biernat Biffar Bifrost Bigarreau Bigarreaus Bigelow Bigfeet Bigfoot Bigfooted Bigfooting Bigfoots Bigford Bigg Biggles Biggs Bighorn Bighorns Bigler Bigner Bignonia Bignoniaceae Bigod Bigot Bigtha Bihai Biham Bihar Bihari Biharis Bihzad Biisk Bijapur Bik Bikales Bikaner Bikila Bikini Bikinian Bikinians Biko Bikol Bikols Bikram Bikukulla Bil Bilaan Bilac Bilati Bilbao Bilbe Bilbo Bildad Bildungsroman Bildungsromans Bilek Biles Bilhah Bilharzia Bili Bilicki Bilin Bill Billat Billbergia Bille Billen Billerica Billi Billie Billiken Billings Billingsgate Billingsley Billiton Billjim Billmyre Billows Billroth Bills Billy Billye Biloculina Bilow Biloxi Biloxis Bilski Bilskirnir Biltmore Bim Bimana Bimbisara Bimble Bimini Biminis Bimmeler Bina Binah Binalonen Binchois Bindman Binet Binetta Binette Binford Bing Bingen Binger Bingham Binghamton Bingo Bingos Bings Binhdinh Bini Binis Binitarian Binitarianism Bink Binky Binni Binnie Binnings Binny Binyon Binzuru Bioko Biola Biometrika Bion Biondo Biosatellite Biot Biota Bipaliidae Bipalium Bipont Bipontine Bippus Birch Birchard Birchdale Bircher Birchers Birches Birchism Birchisms Birchist Birchists Birchite Birchites Birchleaf Birchrunville Birchtree Birchwood Birck Bird Birdell Birdella Birdeye Birdie Birdinhand Birds Birdsboro Birdseye Birdt Birecree Birgit Birgitta Birgus Birk Birkbeck Birkenhead Birkenia Birkeniidae Birkenstock Birkenstocks Birkett Birkhoff Birkle Birkner Birman Birmans Birmingham Birminghamise Birminghamize Birnamwood Birney Biro Birobidzhan Birobijan Birobizhan Birome Biron Biros Birrell Birt Birtwhistle Birtwistle Birzai Bisaltae Bisayan Bisayans Bisayas Bisbee Biscanism Biscay Biscayan Biscayanism Biscayans Biscayne Biscayner Biscoe Bish Bishareen Bishari Bisharin Bishkek Bishop Bishopville Bisitun Bisk Biskra Bisley Bismarck Bismarckian Bismarckianism Bismark Bismosol Bisquick Bissau Bissell Bisset Bisto Bistorta Bisutun BitTorrent Bitburg Bitely Bithia Bithynia Bithynian Bithynians Bitis Bitolj Biton Bittencourt Bitthia Bittinger Bittium Bittner Bitto Bitulithic Bivalvia Bivins Biwabik Bixa Bixaceae Bixby Bixler Biysk Bizen Bizerta Bizerte Bizet Bizonia Biztha Bjart Bjerknes Bjneborg Bjoerling Bjork Bjorn Bjornson Bjurnson Bk Blacher Blachly Black Blackbeard Blackburn Blackduck Blackett Blackey Blackfeet Blackfoot Blackford Blackfriars Blackhander Blackhawk Blackheath Blackington Blacklick Blackman Blackmore Blackmun Blackmur Blackpool Blacks Blacksburg Blackshear Blackshirt Blackshirts Blackstock Blackstone Blacksville Blackville Blackwater Blackwell Blackwood Bladen Bladenboro Bladensburg Blader Bladon Blaeu Blaeuw Blaew Blagg Blagonravov Blagoveshchensk Blain Blaine Blainey Blair Blaire Blairism Blairite Blairites Blairs Blairsburg Blairsden Blairstown Blairsville Blaisdell Blaise Blake Blakean Blakelee Blakeley Blakely Blakemore Blakesburg Blakeslee Blakey Blalock Blamey Blanc Blanca Blancanus Blanch Blancha Blanchard Blanchardville Blanche Blanchester Blanchette Blanchflower Blanchinus Blanco Bland Blandburg Blandford Blandfordia Blandina Blanding Blandinsville Blandon Blandville Blane Blanford Blank Blanka Blankenship Blankit Blanks Blantyre Blarina Blariot Blas Blasdell Blase Blaseio Blasia Blasien Blasius Blastoidea Blastomyces Blastomycetes Blastophaga Blatman Blatt Blatta Blattariae Blattidae Blattodea Blattoidea Blatz Blau Blaugas Blauvelt Blavatsky Blawenburg Blaydon Blayne Blayze Blaze Blcher BldgE Blechnum Bledsoe Bleeker Bleiblerville Bleier Blemmyes Blen Blencoe Blenda Blenheim Blenker Blenniidae Blenniiformes Blennioidea Blephariglottis Blepharocera Blepharoceridae Blephillia Bleriot Blessing Blessington Bletia Bletilla Bleuler Blevins Blfcher Blida Bligh Blighia Blight Blighty Blim Blimp Blimpish Blimps Blindheim Blinn Blinni Blinnie Blinny Bliss Blisse Blissfield Blithe Blitum Blitz Blitzstein Blixen Bloch Block Blockbuster Blocker Blocksburg Blockton Blockus Blodenwedd Blodget Blodgett Bloem Bloemfontein Blois Blok Blomberg Blomkest Blomquist Blondel Blondell Blondelle Blondie Blondin Blondy Blood Bloods Bloom Bloomburg Bloomdale Bloomer Bloomeria Bloomery Bloomfield Bloomfieldian Bloomingburg Bloomingdale Bloomingrose Bloomington Bloomsburg Bloomsburian Bloomsbury Bloomsdale Bloomville Blossburg Blossom Blossvale Blount Blountstown Blountsville Blountville Blow Bloxberg Bloxom Blriot Blu Blucher Blue Blueball Bluebeard Bluebeardism Bluebeards Bluebell Blueeye Bluefarb Bluefield Bluefields Bluehole Bluejay Bluemont Bluenose Bluenoser Bluenoses Blues Bluet Bluetooth Bluewater Bluey Bluffdale Bluffs Bluffton Bluford Bluh Bluhm Blum Bluma Blumea Blumenfeld Blumenthal Blunden Blunderbore Blunk Blunkett Blunt Blus Blut Blvd Bly Blynn Blyth Blythe Blythedale Blytheville Blythewood Blyton Blériot Bme Bn Bo BoT Boabdil Boadicea Boaedon Boaedromius Boak Boalsburg Boanbura Boanerges Boar Board Boardman Boards Boarer Boas Boasian Boaten Boatwright Boaz Bob Bobadil Bobadilian Bobadilish Bobadilism Bobadilla Bobbe Bobbee Bobbette Bobbi Bobbie Bobbielee Bobbinite Bobbitt Bobby Bobbye Bobette Bobina Bobine Bobinette Bobker Bobo Bobseine Bobtown Bobwhite Boca Boccaccio Boccherini Boccioni Bocconia Boche Boches Bochism Bochum Bock Bockstein Bocock Bodanzky Bodb Bode Bodega Bodenheim Bodensee Bodfish Bodhidharma Bodhisattva Bodhisattvas Bodi Bodine Bodkin Bodleian Bodley Bodmin Bodnar Bodo Bodoni Bodonis Bodrogi Bodwell Body Boebera Boece Boedromion Boedromius Boehike Boehme Boehmenism Boehmenist Boehmenite Boehmer Boehmeria Boehmian Boehmist Boehmite Boeing Boeke Boelter Boelus Boeotia Boeotian Boeotians Boeotic Boeotus Boer Boerdom Boerhavia Boerne Boers Boesch Boeschen Boethian Boethius Boethusian Boetius Boettiger Boff Boffa Boffin Boffins Bofors Bogalusa Bogan Bogard Bogarde Bogart Bogata Bogey Boggers Boggs Boggstown Boghazkeui Boghazkoy Boghazkuy Bogie Bogijiab Bognor Bogo Bogoch Bogomil Bogomile Bogomiles Bogomilian Bogomilism Bogomils Bogor Bogosian Bogot Bogota Bogotc Bogotá Bogue Boguechitto Boguslawsky Bogusz Bohairic Bohannon Bohaty Bohea Boheas Bohemia Bohemian Bohemianism Bohemianisms Bohemians Bohemias Bohi Bohlen Bohlin Bohm Bohman Bohme Bohmerwald Bohnenberger Bohner Bohol Bohon Bohr Bohrer Bohs Bohun Bohuslav Boiardo Boice Boiceville Boidae Boieldieu Boigie Boii Boiko Boileau Boiney Bois Boisdarc Boise Boissevain Boito Bojangles Bojardo Bojer Bok Bokchito Bokeelia Bokhara Bokharan Bokharans Bokmal Bokmål Bokoshe Bokoto Bol Bolaevar Bolag Bolan Boland Bolanger Bolboxalis Bolckow Bolderian Boldu Bolelia Bolen Boles Boleslaw Boletaceae Boletus Boley Boleyn Bolger Boligee Bolinas Boling Bolingbroke Bolinger Bolitho Bolivar Bolivia Bolivian Bolivians Boll Bolland Bollandist Bollandus Bollay Bollen Bolling Bollinger Bollywood Bolme Bolo Bologna Bolognan Bolognans Bologne Bolognese Boloism Bolshevik Bolsheviki Bolshevikian Bolshevikism Bolsheviks Bolshevise Bolshevised Bolshevising Bolshevism Bolshevisms Bolshevist Bolshevistic Bolshevistically Bolshevists Bolshevization Bolshevizations Bolshevize Bolshevized Bolshevizes Bolshevizing Bolshie Bolshies Bolshoi Bolshy Bolt Bolte Bolten Bolton Boltonia Boltzmann Bolyai Bolyaian Bolzano Boma Bomarc Bomarea Bombacaceae Bombax Bombay Bombays Bombidae Bombinae Bombus Bombycidae Bombycilla Bombycillidae Bombycina Bombyliidae Bombyx Bomke Bomont Bomoseen Bomu Bon Bona Bonacci Bonadoxin Bonair Bonaire Bonaparte Bonapartean Bonapartism Bonapartisms Bonapartist Bonapartists Bonaqua Bonar Bonasa Bonaventura Bonaventure Bonaventurism Bonaveria Bonbo Boncarbo Bond Bondelswarts Bondes Bondie Bondon Bondsville Bonduel Bondurant Bondville Bondy Bone Bonellia Bonesteel Boneville Boney Bonfield Bongo Bonham Bonheur Bonhoeffer Bonhomme Boni Boniface Bonifay Bonilla Bonina Bonine Bonington Bonis Bonita Bonlee Bonn Bonnard Bonnaz Bonne Bonneau Bonnee Bonnell Bonner Bonnerdale Bonnes Bonnesbosq Bonnet Bonneterre Bonnette Bonneville Bonney Bonni Bonnibelle Bonnice Bonnie Bonnieville Bonns Bonny Bonnyman Bono Bononcini Bononian Bonpa Bonpland Bonsall Bonsecour Bontempelli Bontoc Bontocs Bontok Bontoks Bonucci Bonwier Boodin Boody Book Booker Bookman Boole Boolean Boolian Booma Boomer Boone Booneville Boonie Boonsboro Boonton Boonville Boony Boophilus Boor Boorer Boorman Boot Boote Bootes Booth Boothe Boothia Boothian Boothman Boothville Bootid Bootle Boots Booz Booze Bop Bopeep Bophuthatswana Bopp Bopyridae Bopyrus Boqueron Bor Bora Boraginaceae Borago Borah Borak Boran Borana Borani Borassus Borazon Borazons Borboridae Borborus Borchers Borchert Bord Borda Bordeaux Bordelais Bordelaise Bordelonville Borden Bordentown Border Borderies Borders Borderside Bordet Bordie Bordiuk Bordon Bordulac Bordy Bore Boreadae Boreades Boreal Borealis Boreas Boreiad Borek Borel Borer Bores Boreum Boreus Borg Borger Borgerhout Borges Borgesian Borgeson Borghese Borghild Borgholm Borgia Borglum Borgs Bori Boring Borinqueno Boris Borislav Bork Borlase Borlaug Borlow Borman Born Bornean Borneans Borneo Bornholm Bornie Bornstein Bornu Boro Borobudur Borocaine Borodankov Borodin Borodino Borongan Boronia Bororo Bororoan Borotno Borras Borrelia Borrell Borrelomycetaceae Borreri Borreria Borrichia Borries Borroff Borromean Borromini Borroughs Borrovian Borrow Bors Borsalino Borstal Borstals Borszcz Bortman Bortz Boru Boruca Borup Borussian Borzicactus Bos Bosanquet Bosc Bosch Boschneger Boscobel Boscovich Boscs Bose Boselaphus Boser Boshas Bosjesman Boskop Bosler Bosnia Bosniac Bosniak Bosnian Bosnians Bosnisch Bosone Bosphorus Bosporan Bosporanic Bosporian Bosporus Bosque Bosson Bossuet Bostic Boston Bostonese Bostonian Bostonians Bostons Bostow Bostrychidae Bostwick Boswall Boswell Boswellia Boswellian Boswelliana Boswellians Boswellise Boswellised Boswellises Boswellising Boswellism Boswellize Boswellized Boswellizes Boswellizing Boswells Bosworth Botaurinae Botaurus Botein Botes Botha Botham Bothe Bothell Bothnia Bothnian Bothnians Bothnic Bothriocephalus Bothriocidaris Bothriolepis Bothrodendron Bothrops Bothwell Botkin Botkins Botnick Botocudo Botrychium Botrydium Botryllidae Botryllus Botryomyces Botryopteriaceae Botryopteris Botrytis Botsares Botsford Botswana Botswanan Botswanans Bottali Bottger Botti Botticelli Botticellian Bottineau Bottrop Botvinnik Botzow Bouak Bouaka Bouake Bouar Boucha Bouchard Bouche Boucher Bouchier Boucicault Bouckville Boudain Boudains Boudicca Boudreaux Boufarik Bougainvillaea Bougainville Bougainvillea Bougainvillia Bougainvilliidae Bough Bouguer Bouguereau Boulanger Boulangism Boulangist Boulder Bouldon Boule Boules Bouley Boulez Boulle Boulles Boulogne Boult Boumdienne Bound Boundbrook Bounds Bountiful Bounty Bouphonia Bourbaki Bourbon Bourbonesque Bourbonian Bourbonic Bourbonism Bourbonisms Bourbonist Bourbonnais Bourbons Bourg Bourgeois Bourges Bourget Bourgogne Bourguiba Bourguignon Bourguignonne Bourignian Bourignianism Bourignianist Bourignonism Bourignonist Bourke Bourn Bourne Bournemouth Bourneville Bourout Bourque Bourse Bourses Boursin Boursins Bouse Boussingault Boussingaultia Bouteloua Boutes Boutis Bouton Boutte Boutwell Bouvard Bouvardia Bouvier Bouviers Bouvines Bouzoun Bovard Bovary Bove Bovensmilde Bovet Bovey Bovgazk Bovidae Bovill Bovina Bovista Bovril Bow Bowbells Bowden Bowdichia Bowditch Bowdle Bowdler Bowdoin Bowdoinham Bowdon Bowe Bowell Bowen Bower Bowerman Bowers Bowerston Bowersville Bowery Boweryish Bowes Bowie Bowlds Bowlegs Bowler Bowles Bowlus Bowman Bowmansdale Bowmanstown Bowmansville Bowne Bowra Bowrah Bowring Bowyer Box Boxelder Boxer Boxerism Boxers Boxford Boxholm Boy Boyce Boyceville Boycey Boycie Boyd Boyden Boyds Boydton Boyer Boyers Boyertown Boyes Boykin Boykins Boylan Boyle Boylston Boyne Boynton Boys Boyse Boystown Boyt Boz Bozcaada Bozeman Bozen Bozman Bozoo Bozovich Bozrah Bozuwa Bozzaris Boötes Br Bra Braasch Brabancon Brabanion Brabant Brabanter Brabantine Brabantio Brabazon Brabejum Brabham Braca Bracci Brace Braceville Bracey Brachelytra Brachiata Brachinus Brachioganoidei Brachiopoda Brachiosaurus Brachycera Brachycome Brachyoura Brachyphyllum Brachystegia Brachystomata Brachyura Brachyurus Brackely Brackenridge Brackett Brackettville Bracknell Brackney Bracon Braconidae Brad Bradan Bradbury Bradburya Bradburys Braddock Braddyville Brade Braden Bradenton Bradenville Bradeord Brader Bradford Bradfordsville Bradlee Bradleian Bradleianism Bradleigh Bradley Bradleyan Bradleyville Bradly Bradman Bradner Bradney Bradshaw Bradski Bradstreet Bradway Bradwell Brady Bradypodidae Bradypus Bradyville Braemar Braeunig Brag Braga Bragdon Brage Bragg Braggadocio Braggs Bragi Braham Brahe Brahear Brahm Brahma Brahmagupta Brahmahood Brahmaic Brahmajnana Brahmaloka Brahman Brahmana Brahmanaspati Brahmanda Brahmanee Brahmaness Brahmanhood Brahmani Brahmanic Brahmanical Brahmanis Brahmanism Brahmanisms Brahmanist Brahmanistic Brahmanists Brahmanize Brahmans Brahmany Brahmaputra Brahmas Brahmi Brahmic Brahmin Brahminee Brahminic Brahminical Brahminism Brahminisms Brahminist Brahmins Brahmoism Brahms Brahmsian Brahmsite Brahui Braidism Braidist Braidwood Braila Braille Brailled Brailler Braillers Brailles Braillewriter Braillewriters Brailling Braillist Braillists Brailowsky Brain Brainard Brainardsville Braine Brainerd Braintree Braithwaite Brakpan Brale Bram Bramah Braman Bramante Bramantesque Bramantip Bramia Bramley Bramleys Brampton Bramwell Bran Brana Branagh Branca Branch Branchdale Branchellion Branchiata Branchiobdella Branchiopoda Branchiopulmonata Branchiosauria Branchiosaurus Branchiostegidae Branchiostoma Branchiostomidae Branchipodidae Branchipus Branchiura Branchland Branchport Branchton Branchus Branchville Brancusi Brand Brandais Brandamore Brande Brandea Brandeis Branden Brandenburg Brandenburger Brandenburgers Brander Brandes Brandi Brandice Brandie Brandise Brando Brandon Brandonville Brandsville Brandt Brandtr Brandwein Brandy Brandyn Brandywine Branen Branford Branger Brangus Branguses Branham Braniff Brannon Brans Branscum Bransford Branson Branstock Brant Branta Brantford Branting Brantingham Brantley Brantsford Brantwood Branwen Braque Brasaelia Brasca Braselton Brasenia Brasenose Brashear Brasia Brasil Brasilia Brasov Brass Brassavola Brassia Brassica Brassicaceae Brasso Brasstown Brassu Braswell Brathwaite Bratianu Bratislava Brattain Brattleboro Bratton Bratwurst Brauhaus Brauhauser Brauheuser Braun Brauneberger Brauneria Braunfels Braunschweig Braunschweiger Braunschweigers Braunstein Brauronia Brauronian Brause Brautlied Brava Bravar Braveheart Bravin Brawley Brawner Braxton Bray Brayley Braymer Braynard Brayton Braz Brazeau Brazee Brazil Brazilian Brazilians Brazoria Brazos Brazzaville Bre Brea Breaks Breakspear Bream Breana Breanne Brear Breasted Breathalyzer Breathalyzers Breathitt Breban Brebner Brecher Brechites Brecht Brechtel Brechtian Brechtians Breckenridge Breckinridge Brecknock Brecknockshire Brecksville Brecon Breconshire Bred Breda Bree Breech Breed Breeden Breeding Breedsville Breen Breena Breese Breesport Breeze Breezewood Bregenz Breger Breinigsville Breislak Breithablik Brelje Bremble Bremen Bremer Bremerhaven Bremerton Bremia Bremner Bremond Bremser Bren Brena Brenan Brenda Brendan Brendel Brenden Brendin Brendis Brendon Brengun Brenham Brenk Brenn Brenna Brennan Brennen Brenner Brennschluss Brens Brent Brentano Brentford Brenthis Brenton Brentt Brentwood Brenza Bres Brescia Brescian Bresee Breshkovsky Breskin Breslau Bress Bresson Brest Bret Bretagne Brethren Breton Bretonian Bretons Bretschneideraceae Brett Bretta Bretwalda Bretwaldadom Bretwaldaship Bretz Breuer Breugel Breughel Brevard Breviaries Breviary Brevicipitidae Brevirostrines Brew Brewer Brewerton Brewster Brewton Brey Breyer Brezhnev Brezin Brezonek Brfnn Brfnnhilde Bria Brian Briana Briand Brianhead Brianna Brianne Briano Briant Briard Briards Briarean Briareus Bribri Brice Bricelyn Briceville Brick Bricker Brickeys Bridalveil Bride Brideshead Bridey Bridge Bridgehampton Bridgeland Bridgeport Bridger Bridgerama Bridges Bridget Bridgeton Bridgetown Bridgett Bridgette Bridgeville Bridgewater Bridgid Bridgman Bridgton Bridgwater Bridie Bridport Bridwell Brie Brielle Brien Brier Brierfield Bries Brieta Brietta Brieux Brig Brigadoon Brigadoons Brigantes Brigantia Brigantine Brigette Brigg Briggs Briggsdale Briggsian Briggsville Brigham Brighella Brighid Brighouse Bright Brighteyes Brightman Brighton Brightwaters Brightwood Brigid Brigida Brigit Brigitta Brigitte Brigittine Brihaspati Brill Brilliant Brillion Brillo Brillos Brillouin Brimfield Brimhall Brimley Brimo Brimson Brina Brindell Brindisi Brindle Brine Briney Bring Bringhurst Brinje Brink Brinkema Brinkley Brinklow Brinktown Brinn Brinna Brinnon Brinsmade Brinson Briny Brion Brioni Brioschi Brisbane Brisbin Briscoe Briseis Briseus Brisingamen Brissotin Brissotine Bristo Bristol Bristolian Bristolians Bristolville Bristow Brit Brita Britain Britannia Britannian Britannias Britannic Britannica Britannically Britannicus Brith Briticism Briticisms British Britisher Britishers Britishhood Britishism Britishisms Britishly Britishness Britishnesses Britney Britni Britomart Britomartis Briton Britoness Britons Britpop Brits Britt Britta Brittain Brittan Brittaney Brittani Brittanies Brittany Brittanys Britte Britten Britteny Brittne Brittnee Brittney Brittni Britton Brittonic Brix Brixes Brixey Briza Brize Brizo Brnaba Brnaby Brno Bro Broad Broadalbin Broadbent Broadbrim Broadbrook Broaddus Broadford Broadlands Broadleaf Broadmoor Broadrun Broads Broadus Broadview Broadwater Broadway Broadwayite Broadwayites Broadways Broadwell Brobdignag Brobdignagian Brobdingnag Brobdingnagian Brobdingnagians Broca Broccio Brock Brocken Brocket Brockie Brocklin Brockport Brockton Brockway Brockwell Brocky Brocton Brod Broddie Broddy Brodehurst Brodench Broder Broderic Broderick Brodeur Brodhead Brodheadsville Brodiaea Brodie Brodnax Brodsky Brody Broeder Broederbond Broek Broeker Brogan Brogle Broglie Brogue Brohard Brohman Broida Brok Brokaw Brokenbow Brom Bromberg Brome Bromeikon Bromelia Bromeliaceae Bromfield Bromian Bromios Bromius Bromleigh Bromley Bromo Bromos Bromsgrove Bromus Bron Bronaugh Bronchoscopy Bronder Bronez Bronislaw Bronk Bronnie Bronny Bronson Bronston Bront Brontae Bronte Bronteana Brontes Brontesque Brontops Brontosaurus Brontotherium Brontozoum Bronwen Bronwood Bronwyn Bronx Bronxite Bronxites Bronxville Bronzino Brook Brookdale Brooke Brookeland Brooker Brookes Brookesmith Brookeville Brookfield Brookhaven Brookhouse Brooking Brookings Brookland Brooklandville Brooklawn Brooklet Brooklin Brookline Brooklyn Brooklynese Brooklynite Brooklynites Brookneal Brookner Brookport Brooks Brookshire Brookside Brookston Brooksville Brookton Brooktondale Brookview Brookville Brookwood Broomall Broome Broomfield Broonzy Brooten Bros Brose Broseley Brosimum Brosine Brosnan Brost Brosy Brote Broteas Brother Brothers Brotherson Brotherton Brott Brottman Brotula Brotulidae Broucek Broughton Broun Broussard Broussonetia Brout Brouwer Browallia Browder Brower Browerville Brown Browne Brownell Brownfield Brownian Brownie Brownies Browning Browningesque Brownism Brownist Brownistic Brownistical Brownlee Brownley Brownlow Browns Brownsboro Brownsburg Brownsdale Brownshirt Brownshirts Brownson Brownstone Brownstown Brownsville Brownton Browntown Brownville Brownwood Broxton Broz Brozak Bruant Brubaker Brubeck Bruce Brucella Bruceton Brucetown Bruceville Bruch Bruchidae Bruchus Brucie Brucke Bruckner Brucknerian Bructeri Bruegel Brueghel Bruell Brufsky Bruges Brugge Bruhn Bruin Bruington Bruis Brule Brules Brum Brumaire Brumalia Brumidi Brumley Brummagem Brummel Brummell Brummie Brummies Brunanburh Brundidge Brundisium Bruneau Brunei Bruneian Bruneians Brunel Brunell Brunella Brunelle Brunelleschi Brunellesco Brunellia Brunelliaceae Bruner Brunetiare Brunetiere Brunfelsia Brunhild Brunhilda Brunhilde Bruni Bruning Brunistic Brunk Brunn Brunner Brunnhilde Brunnichia Bruno Brunonia Brunoniaceae Brunonian Brunonism Bruns Brunson Brunsville Brunswick Brusa Brusett Brush Brushton Brusly Brussel Brussels Brut Bruta Brutalism Brutalisms Brutalist Brutalists Brutus Bruxelles Bruxellois Bruyeres Bruyn Bryaceae Bryales Bryan Bryana Bryanism Bryanite Bryansk Bryant Bryanthus Bryantown Bryantsville Bryantville Bryanty Bryce Bryceland Bryceville Brylcreem Bryn Bryna Brynathyn Bryner Brynhild Brynmawr Brynn Brynna Brynne Brynner Brynza Bryon Bryonia Bryophyllum Bryophyta Bryozoa Bryson Brython Brythonic Brythons Bryum Brzegiem Brzezinski Brücke Brünnhilde Bt Bts Btu Bu BuAer Buatti Bub Bubalis Bubalo Bubastid Bubastite Bubb Bubba Bubbas Bube Buber Bubo Bubona Bubonidae Bucaramanga Buccellarius Buccinidae Buccinum Bucco Bucconidae Bucconinae Bucculatrix Bucelas Bucella Bucentaur Bucephala Bucephalus Buceros Bucerotes Bucerotidae Bucerotinae Buch Buchalter Buchan Buchanan Buchanite Bucharest Buchbinder Buchenwald Bucher Buchheim Buchloe Buchman Buchmanism Buchmanite Buchner Buchnera Buchtel Buchwald Buck Buckatunna Buckden Buckels Buckeye Buckeyes Buckeystown Buckfield Buckhannon Buckhead Buckholts Buckie Buckingham Buckinghamshire Buckland Buckle Buckler Buckley Buckleya Bucklin Buckman Bucknell Buckner Bucks Buckskin Buckskins Bucksport Bucky Bucoda Bucolics Bucolion Bucorvinae Bucorvus Bucovina Bucure Bucuresti Bucyrus Bud Buda Budaenny Budapest Budd Budde Buddenbrooks Buddh Buddha Buddhahood Buddhahoods Buddhas Buddhaship Buddhic Buddhism Buddhisms Buddhist Buddhistic Buddhistical Buddhistically Buddhists Buddhological Buddhology Buddie Budding Buddleia Buddy Bude Budennovsk Budenny Buderus Budge Budget Budh Budorcas Budukha Buduma Budweis Budweiser Budwig Budworth Bueche Buehler Buehrer Buell Buellton Buena Buenaventura Bueno Buenos Buerger Bueschel Buettneria Buettneriaceae Bueyeros Buff Buffalo Buffalonian Buffalonians Bufferin Buffet Buffo Buffon Buffum Buffy Bufonidae Buford Bug Buganda Bugas Bugatti Bugayev Bugbee Bugi Buginese Buginvillaea Bugzilla Buhl Buhler Buhls Buhm Buhme Buhmerwald Bui Buia Buick Buine Buiron Buisson Buitenzorg Bujumbura Buka Bukat Bukavu Buke Bukeyef Bukhara Bukharan Bukharans Bukharin Bukidnon Bukittinggi Bukovina Bukum Bul Bula Bulacan Bulan Bulanda Bulawayo Bulbilis Bulbochaete Bulbocodium Bulbophyllum Bulfinch Bulg Bulganin Bulgar Bulgari Bulgaria Bulgarian Bulgarians Bulgaric Bulgarophil Bulgars Bulge Bulger Bulimulidae Bulimus Bull Bullard Bullen Buller Bulley Bullialdus Bullidae Bullion Bullis Bullitt Bullivant Bullock Bullockite Bullom Bullough Bullpup Bulls Bullshoals Bullville Bullwinkle Bully Bulmer Bulolo Bulow Bulpitt Bultman Bultmann Bultmannian Bulwer Bum Bumbledom Bumbry Bumelia Bumgardner Bumppo Bun Buna Bunaea Bunas Bunbury Bunburying Bunce Bunceton Bunch Bunche Buncombe Bund Bunda Bundaberg Bundahish Bunde Bundeli Bundelkhand Bunder Bundesbank Bundesrat Bundesrath Bundesraths Bundesrats Bundestag Bundestags Bundist Bundists Bundoora Bunds Bundt Bundts Bundu Bundy Bunga Bungarus Bungay Bunia Bunin Buninahua Bunker Bunkerville Bunkie Bunky Bunn Bunnell Bunni Bunnie Bunns Bunny Bunodonta Bunola Bunomastodontidae Bunow Bunpa Bunraku Bunrakus Bunsen Bunsens Bunter Bunting Bunuel Bunus Bunyan Bunyanesque Bunyoro Buonaparte Buonarroti Buonomo Buononcini Buote Buphaga Buphagus Buphonia Buphthalmum Bupleurum Buprestidae Buprestis Bur Burack Buran Buraq Buras Burayan Buraydah Burbage Burbank Burbankism Burberries Burberry Burch Burchard Burchett Burchfield Burck Burckhardt Burd Burdelle Burdett Burdette Burdick Burdigalian Burdine Bure Burford Burfordville Burg Burgas Burgaw Burgener Burgenland Burger Burgess Burget Burgettstown Burghley Burgin Burgoon Burgos Burgoyne Burgundian Burgundians Burgundies Burgundy Burgwell Burhans Burhinidae Burhinus Buri Buriat Burk Burkburnett Burke Burkean Burkesville Burket Burkett Burkettsville Burkeville Burkhard Burkhardt Burkhart Burkian Burkitt Burkittsville Burkle Burkley Burks Burkville Burl Burleigh Burleson Burley Burleys Burlie Burlingame Burlingham Burlington Burlison Burma Burman Burmannia Burmanniaceae Burmans Burmese Burn Burna Burnaby Burnard Burne Burner Burnet Burnett Burnettsville Burney Burneyville Burnham Burnie Burnight Burnips Burnley Burns Burnsed Burnsian Burnside Burnsville Burntcorn Burnwell Burny Buroker Burr Burra Burrell Burrill Burris Burroughs Burrow Burrows Burrton Burrus Bursa Bursch Burschenism Burschenschaft Burschenschaften Bursera Burseraceae Burseraceous Burson Burt Burta Burtie Burtis Burton Burtonsville Burtrum Burtt Burty Burundi Burundian Burundians Burushaski Burut Burwell Bury Buryat Buryats Busaos Busby Busch Buschi Busching Buseck Busey Bush Bushel Bushey Bushido Bushidos Bushire Bushkill Bushland Bushman Bushmen Bushnell Bushongo Bushore Bushton Bushveld Bushweller Bushwood Busiek Busiris Buskirk Buskus Busoni Busra Busrah Bussey Bussy Bust Buster Busters Busycon Butazolidin Butazolidins Butch Butcher Bute Butea Butenandt Buteo Butes Buteshire Butler Butlerville Butlin Butner Butomaceae Butomus Butsu Butt Butta Buttaro Butte Butterfield Butterfingers Buttermere Butters Butterworth Buttger Button Buttonwillow Buttrick Buttzville Butung Butyl Butyn Butzbach Buxaceae Buxbaumia Buxbaumiaceae Buxtehude Buxton Buxus Buyer Buyers Buyides Buyse Buzfuz Buzz Buzzard Buzzell Buñuel Bwana Bwanas Byam Byars Byatt Bybee Byblidaceae Byblis Byblos Bydgoszcz Byelarus Byelorussia Byelorussian Byelorussians Byelostok Byelovo Byers Byesville Byfield Bygraves Byhalia Bylas Byler Byng Bynin Bynum Bypro Byram Byran Byrann Byrd Byrdie Byrdstown Byrgius Byrl Byrle Byrn Byrne Byrnedale Byrnes Byrom Byromville Byron Byronesque Byronian Byroniana Byronic Byronically Byronics Byronise Byronish Byronism Byronist Byronite Byronize Byrrh Byrsonima Bysacki Bysshe Byssinosis Bytom Bywaters Bywoods Byz Byzantian Byzantine Byzantines Byzantinesque Byzantinise Byzantinism Byzantinist Byzantinists Byzantinize Byzantium Byzas Bz Bziers Bände Béziers Böhm C CA CAA CAB CABS CAC CACM CAD CADD CADV CAE CAF CAFE CAGR CAI CAIS CALRS CALS CAM CAMA CAMAC CAMM CAMP CAMRA CAN CAP CAPP CAPTAIN CAR CARE CARIFTA CAROT CART CAS CASE CASSIS CASU CAT CATIS CATLAS CATV CAU CAV CAVU CB CBC CBD CBDS CBE CBEL CBEMA CBI CBR CBS CBW CBX CBer CBers CC CCA CCAFS CCC CCCCM CCCI CCD CCDS CCF CCH CCI CCIM CCIP CCIR CCIS CCITT CCL CCNC CCNY CCP CCR CCRP CCS CCSA CCT CCTA CCTAC CCTV CCU CCV CCW CCls CD CDA CDAR CDB CDC CDCF CDEV CDF CDI CDIAC CDN CDO CDP CDPR CDR CDROM CDS CDSF CDT CDU CE CEA CEC CED CEERT CEF CEGB CEI CELSS CEN CENS CENTO CEO CEQ CERMET CERN CERT CET CEV CEVI CF CFA CFB CFC CFCA CFD CFE CFF CFHT CFI CFL CFO CFP CFR CG CGA CGCT CGE CGI CGIAR CGM CGN CGS CGX CH CHA CHAP CHARA CHARGEN CHI CHOTS CHP CHQ CI CIA CIAC CIB CIC CICA CICS CICSVS CID CIDIN CIE CIF CIGS CII CIM CIMA CIO CIP CIRCA CIRRIS CIS CISC CIT CIU CJ CL CLASP CLASS CLDN CLEF CLEI CLI CLID CLLI CLNP CLOS CLOUD CLR CLRC CLS CLTP CLU CLUT CLV CM CMA CMAC CMC CMCC CMD CMDF CMDS CMF CMG CMH CMI CMIP CMIS CMISE CML CMMU CMOS CMOT CMRR CMS CMSGT CMT CMTC CMU CMW CMYK CN CNA CNAA CNAB CNC CNCC CND CNES CNI CNM CNMS CNN CNO CNR CNS CNSR CO COAM COB COBE COBOL COBOLs COC COCOM COCOT COD CODASYL CODCF CODEC COE COEES COER COFF COI COL COLA COLAs COLT COM COMAS COMDEX COMINCH COMM COMPACT COMPTEL COMS COMSAT CONN CONS CONTAC CONUS COO COP COPS COQ CORE CORN CORNET COS COSINE COSMIC COSMOS COSPAR COSTAR COT COTS CP CPA CPC CPCU CPD CPE CPFF CPH CPI CPIO CPL CPM CPMP CPO CPP CPR CPS CPSR CPSU CPT CPU CPW CQ CR CRAF CRAM CRAS CRB CRC CRD CREG CREN CRFC CRFMP CRI CRIN CRIS CRISP CRL CRLF CRONIC CRP CRRES CRS CRSAB CRT CRTC CRTs CRY CS CSA CSAB CSACC CSACS CSAR CSB CSC CSD CSDC CSE CSF CSI CSIRO CSIS CSL CSM CSMA CSMACA CSMACD CSN CSNET CSO CSOC CSP CSPAN CSR CSRG CSRI CSRS CSS CST CSTC CSU CT CTA CTC CTD CTERM CTIO CTM CTMS CTNE CTO CTS CTSS CTT CTTC CTTN CTV CU CUA CUCRIT CUL CUNY CUSO CUTK CUTS CV CVA CVCC CVO CVR CVT CW CWA CWC CWI CWO CWRU CXI CY CYO CZ Ca Caaba Caanthus Cabaeus Cabal Cabala Cabalas Cabalist Cabalists Caball Caballe Caballo Caballé Cabanatuan Cabanis Cabazon Cabbala Cabbalah Cabbalahs Cabbalas Cabe Cabeiri Cabell Cabernet Cabernets Cabery Cabet Cabimas Cabinda Cabinet Cabinets Cabins Cabirean Cabiri Cabiria Cabirian Cabiric Cabiritic Cable Caboclo Caboclos Cabomba Cabombaceae Cabool Caborojo Cabot Cabral Cabrera Cabrini Caca Cacajao Cacak Cacalia Cacan Cacana Cacara Cacatua Cacatuidae Cacatuinae Caccabis Caccini Cacciocavallo Cacia Cacicus Cacie Cacilia Cacilie Cacka Cactaceae Cactales Cactus Cacus Cad Cadal Cadbury Caddaric Caddie Caddo Caddoan Caddos Caddric Cade Cadel Cadell Cadena Cadence Cadenza Cades Cadet Cadette Cadettes Cadillac Cadillacs Cadiz Cadman Cadmann Cadmar Cadmarr Cadmean Cadmopone Cadmus Cadogan Cadorna Cadott Caducibranchiata Cadwal Cadwalader Cadwallader Cadwell Cady Cadyville Cadzand Caecilia Caeciliae Caeciliidae Caedmon Caedmonian Caedmonic Caeli Caelian Caelum Caelus Caen Caeneus Caenis Caenogaea Caenogaean Caenolestes Caenozoic Caerleon Caernarfon Caernarvon Caernarvonshire Caerphillies Caerphilly Caesalpinia Caesalpiniaceae Caesar Caesaraugusta Caesardom Caesarea Caesarean Caesareanize Caesareans Caesaria Caesarian Caesarians Caesarise Caesarism Caesarisms Caesarist Caesaristic Caesarists Caesarize Caesarotomy Caesars Caesarship Caetano Caffre Caffrey Cafiero Cagayan Cage Cagle Cagliari Cagliostro Cagn Cagney Cagoulard Cagoulards Caguas Cahan Cahenslyism Cahill Cahilly Cahita Cahn Cahnite Cahokia Cahone Cahors Cahra Cahuapana Cahuilla Cahuillas Cai Caia Caiaphas Caicos Cailean Cailleac Cailly Cain Caine Caines Caingang Caingangs Caingua Cainian Cainish Cainism Cainite Cainitic Cainozoic Cains Cainsville Cairba Caird Cairene Cairenes Cairistiona Cairnbrook Cairns Cairo Caitanyas Caite Caithness Caitlin Caitrin Caius Cajan Cajans Cajanus Cajun Cajuns Cakavci Cakchikel Cakile Cal Calabar Calabari Calabasas Calabrese Calabreses Calabresi Calabria Calabrian Calabrians Caladium Calah Calais Calakmul Calama Calamagrostis Calamariaceae Calamariales Calamintha Calamites Calamodendron Calamopitys Calamospermae Calamostachys Calan Calandra Calandria Calandridae Calandrinae Calandrinia Calantha Calanthe Calapan Calappa Calappidae Calas Calathea Calatrava Calbert Calcarea Calceolaria Calchaqui Calchaquian Calchas Calciferous Calcispongiae Calculagraph Calcutta Calcuttan Calcuttans Calcydon Caldeira Calder Caldera Calderca Calderon Caldora CaldoraCaldwell Caldwell Cale Caleb Calebite Caledonia Caledonian Caledonians Calemes Calen Calender Calendra Calendre Calends Calendula Calera Calesta Caletor Calexico Calgarian Calgarians Calgary Calgon Calgons Calhan Calhoun Cali Calia Caliban Calibanism Caliburn Caliburno Calica Calicut Calida Calie Caliente Calif Califon California Californian Californians Californio Californios Californium Caligula Caligulism Calimere Calimeris Calinago Calinagos Caline Calinog Calio Calion Calipatria Calippus Calisa Calise Calista Calistoga Calite Calixtin Calixtine Calixto Calixtus Calkins Call Calla Callaghan Callahan Callan Callands Callanetics Callao Callas Callaway Calle Callean Callender Callensburg Callery Calles Calley Calli Callianassa Callianassidae Calliandra Callicarpa Callicebus Callicoon Callicrates Callida Callidice Callie Calliham Callimachus Callionymidae Callionymus Calliope Calliopsis Calliphora Calliphoridae Callipolis Callippus Callipus Callirrhoae Callirrhoe Callisaurus Callista Calliste Callistemon Callistephus Callisto Callithrix Callitrichaceae Callitriche Callitrichidae Callitris Callorhynchidae Callorhynchus Callot Callovian Calloway Callum Calluna Calluori Cally Callynteria Calmar Calmas Calmuck Calocarpum Calochortaceae Calochortus Calondra Calonectria Calonyction Caloocan Calophyllum Calopogon Calore Calorie Calorite Calosoma Calotermes Calotermitidae Calothrix Calpe Calpurnia Caltanissetta Caltech Caltha Calumet Calusa Calusas Calv Calva Calvados Calvadoses Calvano Calvaries Calvary Calvatia Calve Calvert Calverton Calvin Calvina Calvinian Calvinise Calvinism Calvinisms Calvinist Calvinistic Calvinistical Calvinistically Calvinists Calvinize Calvinna Calvo Calycanthaceae Calycanthus Calyce Calyceraceae Calycocarpum Calycophora Calycophorae Calycozoa Calydon Calydonian Calydonians Calymene Calypso Calypsoes Calypsonian Calypsos Calypterae Calyptoblastea Calyptorhynchus Calyptraea Calyptranthes Calyptrata Calyptratae Calyptrogyne Calysta Calystegia Cam Camacan Camacho Camag Camagfey Camaguey Camak Camala Camaldolensian Camaldolese Camaldolesian Camaldolite Camaldule Camaldulian Camanche Camarasaurus Camarata Camargo Camargue Camarillo Camas Camassia Camaxtli Camb Camball Cambalo Cambarus Cambay Camberwell Cambeva Cambodia Cambodian Cambodians Cambon Cambra Cambrai Cambria Cambrian Cambrians Cambric Cambridge Cambridgeport Cambridgeshire Cambs Cambuscan Camby Cambyses Cambyuskan Camden Camdenton Came Camel Camelid Camelidae Camelina Camella Camellia Camelliaceae Camellus Cameloidea Camelopardalis Camelopardid Camelopardidae Camelopardus Camelot Camelotian Camelots Camelus Camembert Camemberts Camena Camenae Camenes Cameo Camerata Camerina Camerinidae Cameron Cameronian Cameroon Cameroonian Cameroonians Cameroons Cameroun Camestres Camey Camfort Cami Camiguin Camila Camile Camilia Camilla Camille Camillo Camillus Camilo Camino Camirus Camisard Camm Cammaerts Cammal Cammarum Cammi Cammie Cammy Camoaens Camoens Camoes Camorist Camorra Camorras Camorrism Camorrisms Camorrist Camorrista Camorrists Camp Campa Campagna Campagne Campanella Campania Campanian Campanians Campanula Campanulaceae Campanulales Campanularia Campanulariae Campanularidae Campanulatae Campanus Campari Camparis Campaspe Campball Campbell Campbellism Campbellite Campbellites Campbellsburg Campbellsville Campbellton Campbelltown Campbeltown Campe Campeche Campephagidae Campephilus Campfire Campignian Campinas Campine Campion Campman Campney Campo Campobello Campodea Campodeidae Campoformido Camponotus Camporeale Campos Campti Campton Camptonite Camptonville Camptosorus Camptown Campwood Campy Campyloneuron Camry Camulodunum Camus Camuy Can CanF Cana Canaan Canaanite Canaanites Canaanitess Canaanitic Canaanitish Canace Canacee Canad Canada Canadarm Canadarms Canadensis Canadian Canadianisation Canadianise Canadianism Canadianisms Canadianization Canadianize Canadianized Canadianizing Canadians Canadys Canajan Canajoharie Canakkale Canale Canaletto Canalou Canamary Cananaean Canandaigua Canandelabrum Cananea Cananean Cananga Canangium Canara Canarese Canari Canarian Canarians Canaries Canariote Canarium Canarsee Canary Canaseraga Canastota Canavali Canavalia Canaveral Canberra Canby Cancer Cancerian Cancerians Cancers Canchi Cancri Cancrid Cancun Cand Candace Candee Candi Candia Candice Candida Candide Candie Candiot Candiote Candiotes Candiots Candis Candlemas Candlemases Candler Candless Cando Candolle Candollea Candolleaceae Candomble Candombles Candor Candra Candy Candyce Canea Caneadea Canebrake Caneghem Canellaceae Canelo Canens Canestrato Canevari Caney Caneyville Canfield Canica Canice Canichana Canichanan Canicula Canidae Canidia Caniff Canis Canisiana Canisteo Canistota Canjilon Canmer Cann Canna Cannabinaceae Cannabis Cannaceae Cannae Cannanore Cannelburg Cannell Cannelton Cannes Cannice Canning Cannizzaro Cannock Cannon Cannonism Cannonsburg Cannonville Cannstatt Cannulate Canoeiro Canoga Canon Canones Canonsburg Canopic Canopus Canossa Canotas Canova Canovanas Canrobert Canso Cant Cantab Cantabri Cantabrian Cantabrigian Cantabrigians Cantabrize Cantabs Cantacuzene Cantal Cantate Canteloube Canter Canterburian Canterburianism Canterbury Cantharellus Cantharidae Canthus Canticles Cantigny Cantil Cantillon Cantlon Canton Cantona Cantone Cantonese Cantonment Cantor Cantorian Cantos Cantrall Cantrell Cantril Cantu Cantuar Cantuarian Canty Canuck Canucks Canute Canutillo Canyon Canyonville Caodaism Caodaist Capablanca Capac Capaneus Cape Capefair Capek Capella Capello Capels Capemay Capeneddick Capernaism Capernaite Capernaitic Capernaitical Capernaitically Capernaitish Capernaum Capes Capet Capetian Capetians Capetonian Capetonians Capetown Capeville Caph Caphaurus Caphtor Caphtorim Capistrano Capitan Capito Capitol Capitola Capitolian Capitoline Capitolium Capitols Capitonidae Capitoninae Capiz Caplan Caplets Capnodium Capnoides Capodacqua Capon Capone Caporetto Capote Capp Cappadocia Cappadocian Cappadocians Capparidaceae Capparis Cappella Cappello Cappotas Capps Capra Capraesque Caprella Caprellidae Capreolus Capri Caprice Capricorn Capricorni Capricornian Capricornians Capricornid Capricornis Capricorns Capricornus Capricornuses Caprifoliaceae Caprifolium Caprimulgi Caprimulgidae Caprimulgiformes Caprimulgus Capriola Capriote Capriotes Capris Capromys Capron Capsella Capshaw Capsian Capsicum Capsidae Capt Captain Captaincook Captiva Capua Capuan Capuanus Capuchin Capuchins Capulet Capulets Capulin Caputa Caputo Caputto Capuzzo Capwell Capys Caquet Caquetio Car Cara Carabancel Carabidae Carabini Carabus Caracalla Caracas Caractacus Caradoc Caradon Caragana Caraguata Caraho Caraipa Caraja Carajas Caralie Caramuel Carandas Caranga Carangidae Carangus Caranx Carapa Carapache Carapacho Carapidae Carapus Carara Caras Caratacus Caratinga Caratunk Caravaggesque Caravaggio Caravette Caraviello Carayan Caraz Carberry Carbo Carbolineum Carboloy Carbona Carbonado Carbonari Carbonarism Carbonarist Carbonaro Carboncliff Carbondale Carbone Carboni Carboniferous Carbonnieux Carborundum Carborundums Carboxydomonas Carbrey Carcas Carcassonne Carcavelhos Carce Carcharhinus Carcharias Carchariidae Carcharodon Carchemish Carcinoscorpius Card Cardale Cardamine Cardanic Cardanus Cardea Cardenas Carder Cardew Cardiacea Cardiazol Cardie Cardiff Cardiga Cardigan Cardigans Cardiganshire Cardiidae Cardijn Cardin Cardinal Cardinalis Cardinas Cardington Cardiospermum Cardito Cardium Cardon Cardozo Carduaceae Carducci Carduelis Carduus Cardville Cardwell Care Careaga Carel Caren Carena Carencro Carenton Caresa Caressa Caresse Caretta Carettochelydidae Carew Carex Carey Careywood Cargian Cargill Carhart Cari Caria Cariacus Cariamae Carian Carians Carib Caribal Cariban Caribans Caribbean Caribbeans Caribbee Caribbees Caribees Caribi Caribisi Caribou Caribs Carica Caricaceae Carida Caridea Caridomorpha Carie Carignan Carijona Caril Carilla Carilyn Carin Carina Carinaria Carinatae Carine Cariniana Carinthia Carinthian Carinthians Carioca Cariocan Cariocas Cariotta Caripuna Cariri Caririan Carisa Carissa Carissimi Carita Caritta Carius Cariyo Carl Carla Carland Carlee Carleen Carlen Carlene Carleta Carleton Carley Carli Carlick Carlie Carlile Carlin Carlina Carline Carling Carlini Carlinville Carlisle Carlism Carlisms Carlist Carlists Carlita Carlo Carlock Carlos Carlota Carlotta Carlovingian Carlovingians Carlow Carlsbad Carlsborg Carlson Carlstadt Carlstrom Carlton Carludovica Carly Carlye Carlyle Carlylean Carlyleian Carlylese Carlylesque Carlylian Carlylism Carlyn Carlyne Carlynn Carlynne Carma Carman Carmania Carmanians Carmanor Carmarthen Carmarthenshire Carme Carmel Carmela Carmelia Carmelina Carmelita Carmelite Carmelites Carmelitess Carmella Carmelle Carmelo Carmen Carmena Carmencita Carmenta Carmentis Carmi Carmichael Carmichaels Carmina Carmine Carmita Carmon Carn Carnac Carnacian Carnahan Carnap Carnaria Carnarvon Carnarvonshire Carnatic Carnation Carnay Carne Carneades Carnegie Carnegiea Carnes Carnesville Carneus Carney Carniola Carniolan Carniolans Carnival Carnivals Carnivora Carnot Carnoustie Carnovsky Carnus Carny Caro Caroid Carol Carola Carolan Carolann Carole Carolean Carolee Caroleen Carolin Carolina Carolinas Caroline Caroling Carolingian Carolingians Carolinian Carolinians Caroljean Carolle Carolus Carolyn Carolyne Carolynn Carolynne Caron Carona Carothers Carousel Carousels Carpaccio Carpathia Carpathian Carpathians Carpeaux Carpentaria Carpenter Carpenteria Carpentersville Carpentier Carper Carpet Carphiophiops Carphophis Carpinteria Carpinus Carpio Carpiodes Carpo Carpocapsa Carpocratian Carpodacus Carpodetus Carpoidea Carpophaga Carpophorus Carr Carrabelle Carracci Carranza Carrara Carraran Carrarans Carrare Carrboro Carree Carrel Carrelli Carreras Carrere Carrew Carri Carriare Carrick Carrickfergus Carrie Carrier Carriere Carrillo Carrington Carrissa Carrizo Carrizozo Carrnan Carrobili Carrol Carroll Carrollian Carrolls Carrollton Carrolltown Carrothers Carrsville Carruthers Carry Carson Carsonville Carstensz Cart Cartagena Cartago Cartan Carte Cartel Cartels Carter Carteret Cartersburg Cartersville Carterville Cartesian Cartesianism Cartesianisms Cartesians Carthage Carthaginian Carthaginians Carthal Carthamus Carthusian Carthusians Carthy Cartie Cartier Cartilaginei Cartilagines Cartist Cartland Cartwell Cartwright Carum Carupano Caruso Caruthers Caruthersville Carver Carversville Carvey Carville Cary Carya Caryatis Caryl Caryll Caryn Caryocar Caryocaraceae Caryophyllaceae Caryophyllus Caryopteris Caryota Caryville Cas Casa Casabianca Casablanca Casabonne Casadesus Casady Casaleggio Casals Casamarca Casandra Casanova Casanovanic Casanovas Casar Casasia Casatus Casaubon Casavant Casbah Casbahs Casca Cascades Cascadia Cascadian Cascais Cascilla Casco Case Casearia Casel Casement Caserta Caseville Casey Caseyville Cash Cashibo Cashiers Cashion Cashmere Cashmerian Cashmirian Cashton Cashtown Casi Casia Casie Casilda Casilde Casimir Casimire Casimiroa Casio Caslon Casmalia Casmey Casnovia Cason Caspar Casparian Casper Caspian Cass Cassadaga Cassady Cassander Cassandra Cassandran Cassandras Cassandre Cassandrian Cassandry Cassatt Cassaundra Casscoe Cassegrain Cassegrainian Cassel Casselberry Cassell Cassella Casselton Cassey Cassi Cassia Cassiaceae Cassian Cassiani Cassicus Cassida Cassididae Cassidinae Cassidulina Cassiduloidea Cassidy Cassie Cassiepea Cassiepean Cassiepeia Cassil Cassilda Cassinese Cassini Cassinian Cassino Cassio Cassiodorus Cassiope Cassiopea Cassiopean Cassiopeia Cassiopeiae Cassiopeian Cassiopeid Cassirer Cassis Cassite Cassius Cassoday Casson Cassondra Cassopolis Casstown Cassville Cassy Cassytha Cassythaceae Casta Castalia Castalian Castalides Castalio Castana Castanea Castaneda Castanopsis Castanospermum Castara Casteau Casteel Castell Castella Castellanos Castellna Castelvetro Caster Castera Castiglione Castile Castiles Castilian Castilians Castilla Castilleja Castillo Castilloa Castine Castle Castleberry Castledale Castleford Castlereagh Castleton Castlewood Castor Castora Castores Castoridae Castorina Castorland Castoroides Castra Castries Castro Castroism Castroisms Castroist Castroists Castroite Castroites Castroville Casuariidae Casuariiformes Casuarina Casuarinaceae Casuarinales Casuarius Caswell Casziel Cat Cataebates Cataian Catalan Catalanganes Catalanist Catalans Catalaunian Cataldo Catalin Catalina Catalonia Catalonian Catalonians Catalpa Catamarca Catamarcan Catamarenan Catamitus Catananche Catanduanes Catania Catano Catanzaro Cataphracta Cataphracti Cataphrygian Catapres Catapreses Catarina Catarrhina Catasauqua Catasetum Cataula Cataumet Catavi Catawba Catawbas Catawissa Cate Catechism Caterina Caterpillar Caterpillars Cates Catesbaea Catesby Cath Catha Cathar Cathari Catharina Catharine Catharism Catharisms Catharist Catharistic Catharists Catharpin Cathars Catharsius Cathartae Cathartes Cathartidae Cathartides Cathartolinum Cathay Cathayan Cathe Cathee Cather Catherin Catherina Catherine Catherwood Catheryn Cathey Cathi Cathie Cathlamet Cathleen Cathlene Catholic Catholicisation Catholicism Catholicisms Catholicities Catholicity Catholicization Catholics Cathomycin Cathrin Cathrine Cathryn Cathy Cathyleen Cati Catie Catilinarian Catiline Catima Catina Catlaina Catlee Catlett Catlettsburg Catlin Cato Catocala Catoctin Catodon Catoism Caton Catonian Catonic Catonically Catonism Catonsville Catoosa Catoquina Catostomidae Catostomus Catreus Catrina Catriona Catron Cats Catskill Catskills Catt Cattan Cattaraugus Cattegat Cattell Catterick Catti Cattier Cattima Cattleya Catto Catton Catty Catullian Catullus Caty Cauca Caucasia Caucasian Caucasians Caucasic Caucasoid Caucasoids Caucasus Caucete Cauchy Caucon Caudata Caudebec Caudillo Caughey Caughnawaga Caulerpa Caulerpaceae Caulfield Caulite Caulonia Caulophyllum Caulopteris Caundra Caunos Caunus Cauquenes Cauqui Caurus Causey Causus Cauthornville Cauvery Cav Cavafy Cavalcanti Cavalerius Cavalier Cavalieri Cavaliers Cavallaro Cavan Cavanagh Cavanaugh Cave Cavell Cavendish Cavennes Caves Cavetown Cavia Cavicornia Cavidae Cavil Cavill Cavina Caviness Cavit Cavite Cavour Cavuoto Cawdrey Cawley Cawnpore Cawood Caxias Caxton Caxtonian Cayapa Cayapo Cayce Caye Cayenne Cayes Cayey Cayla Cayley Cayleyan Caylor Cayman Caymanian Caymanians Cayser Cayubaba Cayubaban Cayucos Cayuga Cayugan Cayugas Cayuse Cayuses Cayuta Cayuvava Caz Cazadero Cazanne Cazenovia Cazzie Cb Cc Ccdiz Cceres Cchaddie Cchakri Ccoya Ccrdenas Ccuta Cd Cdenas Cdiz Cdn Cdoba Cdr Cdre Ce Ceanothus Cear Ceara Cearc Ceausescu Ceb Cebalrai Cebatha Cebidae Cebolla Cebriones Cebu Cebuano Cebus Cece Cecelia Cechy Cecidomyiidae Cecil Cecile Ceciley Cecilia Cecilio Cecilius Cecilla Cecillia Cecilton Cecily Ceclor Ceclors Cecomorphae Cecropia Cecrops Cecyle Ced Cedalion Cedar Cedarbrook Cedarburg Cedarcrest Cedaredge Cedarhurst Cedarkey Cedarlane Cedars Cedartown Cedarvale Cedarville Cedell Cedreatis Cedrela Cedric Cedrus Ceefax Ceevah Ceevee Cefis Ceiba Ceil Cela Celadon Celaeno Celanese Celarent Celastraceae Celastrus Celaya Cele Celebes Celebesian Celebrezze Celene Celeomorphae Celeski Celesta Celeste Celestia Celestial Celestials Celestina Celestine Celestinian Celestyn Celestyna Celeuthea Celia Celie Celik Celin Celina Celinda Celine Celinka Celio Celisse Celka Celle Cellepora Cellfalcicula Cellini Cellite Cellnet Cello Cellucotton Celluloid Cellulomonadeae Cellulomonas Cellvibrio Celoron Celosia Celotex Celotexes Cels Celsia Celsius Celsiuses Celt Celtdom Celtiberi Celtiberian Celtiberians Celtic Celtically Celticise Celticism Celticisms Celticist Celticists Celticize Celtics Celtidaceae Celtillyrians Celtis Celtish Celtism Celtist Celtization Celtologist Celtologue Celtomaniac Celtophil Celtophobe Celtophobia Celts Cemal Cementon Cenac Cenaean Cenaeum Cence Cenchrias Cenchrus Cenci Cenis Cenomanian Cenozoic Censorinus Centaurea Centauri Centaurid Centauridium Centaurium Centaurus Centenary Centeno Center Centers Centerville Centetes Centetidae Centigrade Centiloquy Centimani Centonze Centrahoma Central Centrales Centralia Centranthus Centrarchidae Centraxonia Centre Centrechinoida Centrehall Centreville Centrex Centrexes Centricae Centriscidae Centriscus Centrist Centrists Centrolepidaceae Centropomidae Centropomus Centrosema Centrosoyus Centrospermae Centrotus Centunculus Centuria Century Cephaelis Cephalacanthidae Cephalacanthus Cephalanthus Cephalaspis Cephalata Cephaleuros Cephalina Cephalobranchiata Cephalocereus Cephalochorda Cephalochordata Cephalodiscida Cephalodiscus Cephalonia Cephalophus Cephalopoda Cephalopterus Cephalosporium Cephalotaceae Cephalotaxus Cephalotus Cephalus Cephas Cephei Cepheid Cepheids Cepheus Cephidae Cephus Cepolidae Ceporah CerE Cerallua Ceram Cerambus Cerambycidae Ceramiaceae Ceramium Cerastium Cerasus Ceratiidae Ceratites Ceratitidae Ceratitis Ceratitoidea Ceratium Ceratobatrachinae Ceratodidae Ceratodontidae Ceratodus Ceratonia Ceratophrys Ceratophyllaceae Ceratophyllum Ceratophyta Ceratops Ceratopsia Ceratopsidae Ceratopteridaceae Ceratopteris Ceratosa Ceratosaurus Ceratospongiae Ceratostomataceae Ceratostomella Ceratozamia Cerbberi Cerberean Cerberi Cerberic Cerberus Cerberuses Cercidiphyllaceae Cercis Cercocebus Cercolabes Cercolabidae Cercomonadidae Cercomonas Cercopes Cercopidae Cercopithecidae Cercopithecoid Cercopithecus Cercospora Cercosporella Cercyon Cerdonian Cerebratulus Ceredo Cerelia Cerell Cerellia Cerelly Cerenkov Ceres Ceresco Cereus Cerf Cerialia Cerianthidae Cerianthus Cerigo Cerinthe Cerinthian Ceriomyces Cerion Cerionidae Ceriornis Cerithiidae Cerithium Cern Cernauti Cernuda Ceroxylon Cerracchio Cerrillos Cerritos Cerro Cerrogordo Certhia Certhiidae Certie Cervantes Cervantist Cerveny Cervicapra Cervidae Cervin Cervinae Cervulus Cervus Cery Cerynean Cerys Ceryx Cesar Cesare Cesarean Cesareans Cesaria Cesarian Cesaro Cesena Cessna Cestar Cesti Cestida Cestidae Cestoda Cestodaria Cestoidea Cestracion Cestraciontes Cestraciontidae Cestrian Cestrinus Cestrum Cesya Ceta Cetacea Cete Ceti Cetid Cetinje Cetiosauria Cetiosaurus Ceto Cetomorpha Cetonia Cetoniides Cetoniinae Cetorhinidae Cetorhinus Cetraria Cetura Cetus Ceuta Cevdet Cevennes Cevennian Cevenol Cevenole Cewa Cewas Ceylon Ceylonese Ceyx Cezanne Cezannesque Cf Ch ChB ChE ChM Cha Chabichou Chablis Chabot Chabrier Chabrol Chac Chace Chachapuya Chackchiuma Chaco Chacon Chad Chadabe Chadbourn Chadbourne Chadburn Chadd Chadderton Chaddie Chaddsford Chaddy Chader Chadian Chadians Chadic Chadron Chadwick Chadwicks Chae Chaenactis Chaenolobus Chaenomeles Chaeronea Chaetangiaceae Chaetangium Chaetetes Chaetetidae Chaetifera Chaetites Chaetitidae Chaetochloa Chaetodon Chaetodontidae Chaetognatha Chaetophora Chaetophoraceae Chaetophorales Chaetopoda Chaetopterus Chaetosoma Chaetosomatidae Chaetosomidae Chaetura Chafee Chaffee Chaffin Chaffinch Chaga Chagall Chagatai Chagga Chagos Chagres Chahab Chahar Chaiken Chaikovski Chaille Chailletiaceae Chaillot Chaim Chain Chainey Chaing Chaingy Chait Chaitanya Chaitin Chak Chakales Chakavski Chaker Chal Chalastogastra Chalcedon Chalcedonian Chalcedonians Chalcidian Chalcidians Chalcidic Chalcidice Chalcididae Chalcidoidea Chalcioecus Chalciope Chalcis Chalcolithic Chald Chaldaea Chaldaean Chaldaeans Chaldaei Chaldaic Chaldaical Chaldaics Chaldaism Chaldea Chaldean Chaldeans Chaldee Chaldees Chaldeic Chalfont Chaliapin Chalicotheriidae Chalicotherium Chalina Chalinidae Chalinitis Challenger Challis Chally Chalmer Chalmers Chalmette Chalonnais Chalons Chalukya Chalukyan Chalybean Chalybes Cham Chama Chamacea Chamacoco Chamaebatia Chamaecistus Chamaecrista Chamaecyparis Chamaedaphne Chamaeleo Chamaeleon Chamaeleontidae Chamaeleontis Chamaelirium Chamaenerion Chamaepericlymenum Chamaerops Chamaesaura Chamaesiphon Chamaesiphonaceae Chamaesiphonaceous Chamaesiphonales Chamaesyce Chamar Chambary Chamberino Chamberlain Chamberlin Chambers Chambersburg Chambersville Chambertin Chambery Chambioa Chamblee Chambord Chambry Chambéry Chamdo Chamian Chamicuro Chamidae Chaminade Chamisal Chamite Chamizal Chamkanni Chamkis Chamoisette Chamomilla Chamonix Chamorro Chamorros Chamos Chamouni Champ Champa Champagne Champagnes Champaign Champaigne Champenois Champlain Champlainic Champlin Champollion Chamuel Chamyne Chan Chana Chanaan Chanabal Chanc Chanca Chancay Chance Chancellor Chancellors Chancellorsville Chancelor Chancery Chancey Chanda Chandal Chandarnagar Chandernagor Chandernagore Chandi Chandigarh Chandler Chandlersville Chandlerville Chandless Chandon Chandos Chandra Chandragupta Chandrasekhar Chane Chanel Chaney Chang Changan Changaris Changchiakow Changchow Changchowfu Changchun Changewater Changoan Changos Changsha Changteh Changuina Changuinan Chanhassen Chanidae Chanier Channa Channahon Channel Channing Chansoo Chantal Chantalle Chantillies Chantilly Chanukah Chanukahs Chanukkah Chanute Chany Chao Chaoan Chaochow Chaochowfu Chaon Chaos Chaoses Chaouia Chaource Chap Chapa Chapacura Chapacuran Chapanec Chapei Chapel Chapell Chapen Chapin Chapland Chaplin Chaplinesque Chapman Chapmansboro Chapmanville Chapnick Chappaqua Chappaquiddick Chappelka Chappell Chappells Chappie Chappy Chaptico Chapultepec Char Chara Characeae Characinidae Charadrii Charadriidae Charadriiformes Charadriomorphae Charadrius Charales Charbonneau Charbonnier Charbray Charca Charcas Charchemish Charcot Chard Chardin Chardon Chardonnay Chardonnays Chardonnet Charentais Charente Charenton Chari Charicleia Chariclo Charie Charil Charin Chariot Charis Charissa Charisse Charita Charites Chariton Charity Charla Charlean Charlee Charleen Charlemagne Charlemont Charlena Charlene Charleroi Charleroy Charles Charleston Charlestoned Charlestonian Charlestonians Charlestoning Charlestons Charlestown Charlet Charleton Charlevoix Charley Charleys Charlie Charlies Charline Charlo Charlot Charlotta Charlotte Charlottenburg Charlottesville Charlottetown Charlotteville Charlton Charlye Charlyn Charlyne Charmain Charmaine Charmane Charmco Charmeuse Charmian Charmin Charminar Charmine Charmion Charo Charolais Charolaise Charolaises Charollais Charon Charonian Charonic Charontas Charophyta Charops Charpentier Charron Charruan Charruas Charry Charta Charterhouse Charterhouses Charteris Charterist Charters Chartism Chartisms Chartist Chartists Chartley Chartres Chartreuse Chartreuses Chartreux Chartwell Charvaka Charybdian Charybdis Charyl Chas Chase Chaseburg Chaseley Chasid Chasidic Chasidim Chasidism Chasidisms Chasity Chaska Chasles Chasse Chasselas Chassell Chassepot Chassid Chassidic Chassidim Chassidism Chassidisms Chassin Chastacosta Chastain Chastity Chataignier Chatav Chatawa Chateau Chateaubriand Chateaubriands Chateaugay Chateauroux Chatfield Chatham Chatillon Chatino Chatom Chatot Chatsworth Chattahoochee Chattanooga Chattanoogan Chattanoogian Chattaroy Chatterjee Chatterley Chatterton Chattertonian Chatti Chatwin Chaucer Chaucerian Chauceriana Chaucerianism Chaucerians Chaucerism Chauchat Chaudoin Chaui Chauliodes Chaumont Chauna Chaunce Chauncey Chausson Chautauqua Chautauquan Chautauquans Chautauquas Chautemps Chauvin Chavannes Chavante Chavantean Chavaree Chaves Chavey Chavez Chavies Chavignol Chavin Chawia Chaworth Chayefsky Chayma Chayota Chazy Che CheE Cheadle Cheam Cheapside Cheatham Cheb Chebacco Chebanse Cheboksary Cheboygan Checani Chechehet Chechen Chechens Chechnya Chechnyan Chechnyans Checkhovian Checotah Cheddar Cheddars Chee Cheektowaga Cheer Cheerios Cheetos Cheever Chefang Cheffetz Chefoo Chefornak Chefrinia Chehalis Cheilanthes Cheilodipteridae Cheilodipterus Cheilostomata Cheiranthus Cheirogaleus Cheiroglossa Cheiron Cheiroptera Cheirotherium Cheju Cheka Cheke Chekhov Chekhovian Chekiang Chekist Chekov Chekovian Chelan Chelidon Chelidonium Chelidosaurus Chelifer Cheliferidea Chellean Chellian Chellman Chelmno Chelmsford Chelodina Chelonia Chelonidae Cheloniidae Chelons Chelsae Chelsea Chelsey Chelsie Chelsy Cheltenham Chelton Chelura Chelyabinsk Chelydidae Chelydra Chelydridae Chelyuskin Chem ChemE Chema Chemakuan Chemar Chemaram Chemarin Chemash Chemehuevi Chemesh Chemnitz Chemosh Chemstrand Chemulpo Chemult Chemung Chemush Chen Chenab Chenay Chenee Cheney Cheneyville Cheng Chengchou Chengchow Chengdu Chengteh Chengtu Chenier Chennai Chennault Chenoa Chenopodiaceae Chenopodiales Chenopodium Chenoweth Cheops Chepachet Chephren Chepstow Chequers Cher Chera Cheraw Cherbourg Chere Cheremis Cheremiss Cheremissian Cheremkhovo Cherenkov Cherepovets Cherey Cheri Cheria Cherian Cherianne Cheribon Cherice Cherida Cherie Cheries Cherilyn Cherilynn Cherin Cherise Cherish Cheriton Cherkess Cherkesser Cherkesses Cherlyn Chermes Chermidae Chermish Chernenko Chernobyl Chernomorish Chernomyrdin Chernovtsy Chernow Cherokee Cherokees Cherri Cherrita Cherry Cherryfield Cherrylog Cherrytree Cherryvale Cherryville Chersydridae Chertsey Cherubicon Cherubikon Cherubini Cherusci Chervante Cherwell Chery Cherye Cheryl Cherylene Ches Chesaning Chesapeake Cheshire Cheshires Cheshunt Cheshvan Cheshvans Cheslie Chesna Chesnee Chesney Chesnut Chessa Chessy Chester Chesterfield Chesterfieldian Chesterfields Chesterland Chesterton Chestertonian Chestertown Chesterville Cheston Cheswick Cheswold Chet Cheteaubriand Cheteauroux Chetek Chetnik Chetopa Chetumal Cheung Cheux Chev Chevak Chevalier Chevallier Cheverly Cheves Cheviot Cheviots Chevret Chevrier Chevrolet Chevrolets Chevron Chevrotin Chevy Chew Chewa Chewalla Chewas Chewelah Chewsville Cheyenne Cheyennes Cheyne Cheyney Chhnang Chi Chiai Chiaki Chiam Chian Chiang Chiangling Chiangmai Chianina Chianinas Chians Chianti Chiantis Chiapanec Chiapanecan Chiapas Chiaretto Chiari Chiarra Chiasmodon Chiasmodontidae Chiasso Chiayi Chiba Chibcha Chibchan Chibchans Chibchas Chibemba Chibembas Chic Chicago Chicagoan Chicagoans Chicana Chicanas Chicano Chicanos Chicha Chichester Chichewa Chichihaerh Chichihar Chichimec Chichivache Chick Chickahominy Chickamauga Chickasaw Chickasaws Chickasha Chickie Chicky Chiclayo Chiclets Chico Chicoine Chicomecoatl Chicopee Chicora Chicota Chidester Chief Chiefland Chiefs Chiemsee Chien Chiengmai Chiengrai Chifley Chignik Chigwell Chihli Chihuahua Chihuahuas Chikamatsu Chikmagalur Chil Chilcat Chilcats Chilcoot Chilcote Child Childe Childermas Childermases Childers Childersburg Childress Childs Childwold Chile Chilean Chileanization Chileanize Chileans Chiles Chilhowee Chilhowie Chilin Chilina Chilinidae Chilion Chilkat Chilkats Chill Chillan Chillcn Chillicothe Chilliwack Chillon Chilmark Chilo Chilognatha Chilomastix Chilomonas Chilon Chilopoda Chilopsis Chiloquin Chilostoma Chilostomata Chilpancingo Chilson Chilt Chiltern Chilton Chilung Chimacum Chimaera Chimaeras Chimaeridae Chimaeroidei Chimakuan Chimakum Chimalakwe Chimalapa Chimane Chimaphila Chimarikan Chimariko Chimayo Chimborazo Chimbote Chimene Chimera Chimeras Chimique Chimkent Chimmesyan Chimonanthus Chimu Chimus Chin China Chinagraph Chinaman Chinamen Chinan Chinantecan Chinantecs Chinatown Chinatowns Chinchasuyu Chinchow Chincoteague Chindit Chindits Chindwin Chinee Chinese Chinesery Ching Chinghai Chingpaw Chingtao Chinhwan Chink Chinkiang Chinks Chinle Chinnampo Chino Chinoiserie Chinoiseries Chinook Chinookan Chinooks Chinua Chiococca Chiogenes Chionanthus Chionaspis Chione Chionididae Chionis Chionodoxa Chios Chiot Chiou Chip Chipewayan Chipewayans Chipewyan Chipewyans Chipley Chipman Chippendale Chippendales Chippewa Chippewas Chippeway Chippeways Chiquia Chiquinquira Chiquita Chiquitan Chiquito Chirac Chiran Chirau Chireno Chiriana Chiricahua Chiricahuas Chirico Chiriguano Chirikof Chirino Chiriqui Chirlin Chiromantis Chiromyidae Chiromys Chiron Chironomidae Chironomus Chiroptera Chirotes Chirotherium Chisanbop Chisanbops Chisedec Chishima Chisholm Chisimaio Chisin Chisinau Chita Chitimacha Chitimachan Chitina Chitkara Chitragupta Chitrali Chittagong Chittenango Chittenden Chiusi Chivas Chivers Chivington Chiwere Chkalov Chladek Chladni Chlamydia Chlamydobacteriaceae Chlamydobacteriales Chlamydomonadaceae Chlamydomonadidae Chlamydomonas Chlamydosaurus Chlamydoselachidae Chlamydoselachus Chlamydozoa Chlamyphorus Chleuh Chlidanope Chlo Chlodwig Chloe Chloette Chloranthaceae Chloranthus Chloras Chlorella Chlorellaceae Chlores Chlori Chloridella Chloridellidae Chlorion Chlorioninae Chloris Chlorococcaceae Chlorococcales Chlorococcum Chlorococcus Chloromycetin Chloromycetins Chlorophora Chlorophyceae Chmielewski Chnier Chnuphis Cho Choaephori Choanephora Choanoflagellata Choanoflagellida Choanoflagellidae Choapas Choate Chobot Choccolocco Chocho Choco Chocoan Chocorua Chocowinity Choctaw Choctaws Choephori Choeropsis Choes Chogyal Choiak Choiseul Choisya Chokio Chokoloskee Chol Chola Cholame Cholo Choloepus Cholon Cholonan Cholones Cholos Cholula Choluteca Chomskian Chomsky Chomskyan Chomskyans Chon Chondrichthyes Chondrilla Chondroganoidei Chondromyces Chondropterygii Chondrostei Chong Chongjin Chongqing Chonju Chontal Chontalan Chontaquiro Choo Choong Chopin Chopra Chopsticks Chopunnish Chor Chora Chorai Chorasmian Chordaceae Chordata Chordeiles Chorioptes Choripetalae Chorley Chorotega Choroti Chorti Chorwat Chorwon Chorz Chorzow Chorzuw Chosen Chosn Chosunilbo Choteau Chou Chouan Chouanize Choudrant Chouest Choukoutien Chouteau Chow Chowanoc Chowchilla Chozar Chr Chretien Chriesman Chris Chrisman Chrisney Chrisoula Chrissa Chrisse Chrissie Chrissy Christ Christa Christabel Christabella Christabelle Christadelphian Christadelphianism Christal Christalle Christan Christchurch Christdom Christean Christed Christel Christen Christendie Christendom Christendoms Christenmas Christensen Christenson Christer Christers Christhood Christhoods Christi Christiaan Christiad Christian Christiana Christiane Christiania Christianiadeal Christianias Christianisation Christianisations Christianise Christianised Christianiser Christianisers Christianises Christianising Christianism Christianities Christianity Christianization Christianizations Christianize Christianized Christianizer Christianizers Christianizes Christianizing Christianlike Christianly Christianna Christianness Christiano Christianogentilism Christianography Christianomastix Christianopaganism Christians Christiansand Christiansburg Christiansen Christianson Christiansted Christicide Christie Christies Christiform Christin Christina Christine Christingle Christingles Christis Christless Christlessness Christlike Christlikeness Christlikenesses Christliness Christlinesses Christly Christmann Christmas Christmasberries Christmasberry Christmases Christmasing Christmassy Christmastide Christmastides Christmastime Christmastimes Christmasy Christocentric Christocentrism Christoff Christoffel Christoffer Christoforo Christogram Christograms Christolatry Christological Christologies Christologist Christologists Christology Christoper Christoph Christophanic Christophanies Christophany Christophe Christopher Christophorus Christos Christoval Christs Christy Christye Christyna Chrisy Chrobat Chromatioideae Chromatium Chromel Chromidae Chromides Chromididae Chromo Chromobacterieae Chromobacterium Chron Chronicles Chronium Chrononhotonthologos Chronos Chronotron Chroococcaceae Chroococcales Chroococcus Chrosperma Chrotoem Chrysa Chrysamphora Chrysaor Chryseis Chrysemys Chryses Chrysidella Chrysididae Chrysippus Chrysis Chrysler Chryslers Chrysobalanaceae Chrysobalanus Chrysochloridae Chrysochloris Chrysolophus Chrysomelidae Chrysomonadales Chrysomonadina Chrysomyia Chrysopa Chrysophanus Chrysophlyctis Chrysophyllum Chrysopidae Chrysops Chrysopsis Chrysosplenium Chrysostom Chrysostomus Chrysothamnus Chrysothemis Chrysothrix Chrysotis Chryssee Chrystal Chryste Chrystel Chtaura Chteauroux Chthonius Chu Chuadanga Chuah Chualar Chuanchow Chubb Chuch Chuchchi Chuchchis Chucho Chuchona Chuck Chuckchi Chuckchis Chuckey Chud Chude Chudic Chueta Chugiak Chugwater Chui Chuipek Chuje Chukchee Chukchees Chukchi Chukchis Chula Chumash Chumashan Chumashes Chumashim Chumawi Chumley Chumpivilca Chumulu Chun Chuncho Chunchula Chung Chungking Chunichi Chunnel Chuquicamata Chur Chura Church Churches Churchill Churchillian Churchman Churchton Churchville Churdan Churoya Churoyan Churriguera Churrigueresque Churubusco Chute Chuu Chuvash Chuvashes Chuvashi Chuzzlewit Chwana Chyou Chytridiaceae Chytridiales Chytridium Chytroi Ci Cia Ciales Ciampino Cianca Ciano Ciapas Ciapha Ciaphus Ciardi Cibber Cibis Cibola Cibolan Cibolo Ciboney Ciboneyes Ciboneys Cicadellidae Cicadidae Ciccia Cicely Cicenia Cicero Ciceronian Ciceronianise Ciceronianism Ciceronianize Ciceronic Ciceronically Cichlidae Cichocki Cichoriaceae Cichorium Cichus Cicily Cicindela Cicindelidae Ciclo Cicones Ciconia Ciconiae Ciconians Ciconiidae Ciconiiformes Cicuta Cid Cida Cidaridae Cidaroida Cidney Cidra Cie Ciel Cienfuegos Ciitroen Cila Ciliata Cilicia Cilician Cilicians Cilicism Cilioflagellata Ciliophora Cilissa Cilix Cilka Cilla Cillus Cilo Cilurzo Cima Cimabue Cimah Cimarosa Cimarron Cimbri Cimbrian Cimbric Cimbura Cimicidae Cimicifuga Cimmeria Cimmerian Cimmerianism Cimmerians Cimmerium Cimon Cinchona Cinchonaceae Cinchonero Cincinnati Cincinnatia Cincinnatian Cincinnatians Cincinnatus Cinclidae Cinclidotus Cinclus Cinda Cindee Cindelyn Cinderella Cinderellas Cindi Cindie Cindra Cindy Cindylou Cinebar Cinelli CinemaScope CinemaScopic Cinemascope Cinerama Cineraria Cingalese Cini Cinna Cinnamodendron Cinnamomum Cinnamon Cinura Cinyras Cinzano Cioban Cioffred Cipango Ciprian Cipro Cipros Cipus Circaea Circaeaceae Circaean Circaetus Circassia Circassian Circassians Circassic Circe Circean Circensian Circini Circinus Circleville Circlorama Circosta Circumcellion Circumcision Circumcisions Cirenaica Cirencester Ciri Cirilla Cirillo Cirilo Ciro Cirone Cirratulidae Cirratulus Cirrhopetalum Cirri Cirripedia Cirrostomi Cirsium Cis Cisalpine Cisalpinism Cisatlantic Ciscaucasia Cisco Ciskei Ciskeian Ciskeians Cisleithan Cismontane Cismontanism Cisne Cispadane Cissaea Cissampelos Cissie Cissiee Cissus Cissy Cistaceae Cistercian Cistercianism Cistercians Cistudo Cistus Ciszek Cita Citarella Citation Citellus Cithaeron Cithaeronian Citharexylum Citibank Cities Citigradae Citigroup Citlaltepetl Citlaltpetl Citra Citroen Citromyces Citron Citronelle Citropsis Citrullus Citrus Cittticano City Ciudad Civia Civil Civitan Civitans Cixiidae Cixo Cl Clabo Clackama Clackamas Clackmannan Clackmannanshire Clacton Clactonian Clactonians Cladocera Cladodontidae Cladodus Cladonia Cladoniaceae Cladophora Cladophoraceae Cladophorales Cladoselache Cladoselachea Cladoselachidae Cladosporium Cladothrix Cladrastis Claflin Claiborn Claiborne Claibornian Clair Clairaut Claire Clairfield Clairol Clairton Clallam Claman Clamatores Clance Clancy Clangula Clanton Claosaurus Clapeyron Clapp Clapper Clapton Clara Clarabelle Claramae Clarance Clarcona Clardy Clare Claremont Claremore Clarence Clarenceux Clarenceuxship Clarencieux Clarendon Claresta Clareta Claretian Claretta Clarette Clarey Clarhe Clari Claribel Clarice Clarie Clarinda Clarine Clarington Clarion Clarisa Clarise Clarissa Clarisse Clarist Clarita Clark Clarkdale Clarke Clarkedale Clarkesville Clarkfield Clarkia Clarkin Clarks Clarksboro Clarksburg Clarksdale Clarkson Clarkston Clarksville Clarkton Claromontane Claromontanus Clary Claryville Classic Classical Classics Clathraceae Clathraria Clathrina Clathrinidae Clathrus Clatonia Clatskanie Clatsop Claud Clauddetta Claude Claudel Claudell Claudelle Claudetta Claudette Claudia Claudian Claudianus Claudie Claudina Claudine Claudio Claudius Claudville Claudy Claunch Claus Clausen Clausewitz Clausewitzian Clausilia Clausiliidae Clausius Clava Clavaria Clavariaceae Claverack Claviceps Clavicornes Clavicornia Clavius Clawson Claxton Clay Clayberg Clayborn Clayborne Claybourne Clayhanger Clayhole Claymation Claymations Claymont Claymore Claymores Clayoquot Claypool Claysburg Clayson Claysville Clayton Claytonia Claytonville Clayville Clea Cleanth Cleantha Cleanthes Clearasil Clearbrook Clearchus Clearfield Clearmont Clearsite Clearview Clearville Clearwater Cleary Cleasta Cleaton Cleave Cleaves Cleavland Cleburne Cleelum Cleese Cleethorpes Cleghorn Clein Cleisthenes Cleistothecopsis Clela Cleland Clellan Clem Clematis Clemclemalats Clemen Clemence Clemenceau Clemency Clemens Clement Clementas Clemente Clementi Clementia Clementina Clementine Clementis Clementius Clementon Clements Clemmie Clemmons Clemmy Clemon Clemons Clemson Clendenin Cleo Cleobis Cleobulus Cleodaeus Cleodal Cleodel Cleodell Cleome Cleon Cleone Cleopatra Cleopatre Cleostratus Cleota Cleothera Clepsine Clerc Clercq Clere Cleres Cleridae Clerissa Clerk Clerkenwell Clermont Clerodendron Clerus Clervaux Cleta Clete Clethra Clethraceae Cleti Cletis Cletus Cleva Cleve Cleveland Clevelander Clevelanders Clevenger Cleverdale Cleves Clevey Clevie Clewiston Cliburn Clichy Clidastes Clide Clie Cliff Cliffes Clifford Cliffwood Clift Clifton Cliftonia Clifty Clim Climaciaceae Climacium Climatius Clinchco Clinchfield Cline Clingan Clinis Clinopodium Clint Clintock Clinton Clintondale Clintonia Clintonville Clintwood Clio Cliona Clione Clios Clippard Clisiocampa Clisthenes Clistogastra Clite Clitherall Clitocybe Clitoria Clitus Clive Cliveden Clivia Cllr Clo Cloae Cloanthus Clockville Cloe Cloelia Cloete Clois Cloisonnisme Cloisonnist Clomid Clomids Clonmel Clonorchis Clonothrix Clontarf Clootie Cloots Clopton Cloquet Clorets Clorinda Clorinde Cloris Clorox Close Closplint Closter Closterium Clostridium Closure Clothilda Clothilde Clotho Clotilda Clotilde Cloudcroft Cloudcuckooland Clouds Clouet Clough Clougher Clouseau Cloutierville Cloutman Clova Clovah Clovelly Clover Cloverdale Cloverport Clovis Clower Clubb Clubionidae Cluj Clumber Clumbers Clune Cluniac Cluniacensian Clunisian Clunist Cluny Clupea Clupeidae Clupeodei Clurman Clusia Clusiaceae Clusium Clute Clutier Clwyd Cly Clyde Clydebank Clydes Clydesdale Clydesdales Clydeside Clydesider Clyman Clymene Clymenia Clymenus Clymer Clynes Clyo Clypeaster Clypeastridea Clypeastrina Clypeastroida Clypeastroidea Clytaemnesra Clytaemnestra Clyte Clytemnestra Clytia Clytiae Clytie Clytius Clyve Clywd Cm Cmdr Cmon Cnemidophorus Cneoraceae Cneorum Cnicus Cnidaria Cnidean Cnidia Cnidian Cnidoscolus Cnidus Cnossian Cnossus Cnut Co CoComanchean Coachella Coad Coady Coahoma Coahuila Coahuiltecan Coaldale Coalfield Coalgood Coaling Coalinga Coalisland Coalite Coalmont Coalport Coalsack Coalton Coalville Coalwood Coamo Coan Coanda Coarsegold Coastguard Coatbridge Coates Coatesville Coats Coatsburg Coatsville Coatsworth Cob Cobain Coban Cobb Cobbett Cobbie Cobbtown Cobby Cobden Cobdenism Cobdenite Cobdenites Coben Cobh Cobham Cobitidae Cobitis Coblentzian Coblenz Cobleskill Cobol Cobra Coburg Coburn Cobus Cocaigne Cocalus Cocama Cocamama Cocanucos Coccaceae Cocceian Cocceianism Coccidae Coccidiidea Coccidioides Coccidiomorpha Coccinellidae Coccogonales Coccogoneae Coccolithophoridae Coccoloba Coccolobis Coccomyces Coccosteidae Coccosteus Coccothraustes Coccothrinax Cocculus Coccygius Coccygomorphae Coccyzus Cochabamba Cochard Cochecton Cochin Cochinchine Cochins Cochise Cochlearia Cochlidiidae Cochliodontidae Cochliodus Cochlospermaceae Cochlospermum Cochran Cochrane Cochranea Cochranton Cochranville Cock Cockaigne Cockayne Cockburn Cockcroft Cocke Cocker Cockerell Cockeysville Cockney Cockneys Cocks Cocle Cocles Coco Cocolalla Cocolamus Coconino Coconucan Coconuco Cocos Cocteau Cocytean Cocytus Cod Codd Codding Coddington Codee Codel Codell Coden Codi Codiaceae Codiaeum Codiales Codie Codium Codorus Codrus Cody Coe Coeburn Coelacanthidae Coelacanthini Coelastraceae Coelastrum Coelata Coelebogyne Coelelminthes Coelentera Coelenterata Coelicolae Coelicolist Coello Coelococcus Coeloglossum Coelogyne Coelomata Coelomocoela Coendidae Coendou Coerebidae Coetzee Coeus Coeymans Cofane Coffea Coffee Coffeen Coffeeville Coffeng Coffey Coffeyville Coffin Coffman Cofield Cofsky Cogan Cogen Coggan Coggon Cognac Cognacs Cognitum Cogswell Cogswellia Coh Cohagen Cohan Cohanim Cohasset Cohbath Cohberg Cohbert Cohby Cohdwell Cohe Coheman Cohen Cohens Cohette Cohin Cohl Cohla Cohleen Cohlette Cohlier Cohligan Cohn Cohoctah Cohocton Cohoes Cohutta Coibita Coila Coimbatore Coimbra Coinjock Cointon Cointreau Cointreaus Coire Coit Coix Cokato Coke Cokeburg Cokedale Coker Cokes Cokeville Col Cola Colada Colan Colares Colas Colaxais Colaxaos Colb Colbaith Colbert Colbertine Colbertism Colbies Colburn Colby Colbye Colchester Colchian Colchians Colchicaceae Colchicum Colchis Colcine Colcord Cold Coldbrook Colden Colditz Coldstream Coldwater Cole Colebrook Coleen Coleman Colen Colene Coleochaetaceae Coleochaete Coleophora Coleophoridae Coleoptera Coleosporiaceae Coleosporium Colerain Coleraine Coleridge Coleridgean Coleridgian Coles Colesburg Colet Coleta Coletta Colette Coleus Coleville Colfax Colfin Colgate Colias Colier Coligni Coligny Coliidae Coliiformes Colima Colin Colinette Colinson Colinus Colis Coliseum Colius Colla Collar Collayer Collbaith Collbran Collect Collects Colleen Collegiant Collembola Collen Colleri Colleries Collery Collete Colletes Colletia Colletidae Colletotrichum Collette Collettsville Colley Colleyville Collie Collier Colliers Colliersville Collierville Colligan Collimore Collin Colline Collingswood Collingwood Collins Collinses Collinsia Collinsonia Collinston Collinsville Collinwood Collis Collison Collocalia Collodi Collomia Colloq Collum Colly Collybia Collyer Collyridian Colman Colmar Colmer Colmesneil Coln Colner Colo Colobus Colocasia Colocephali Cologne Coloma Colombes Colombi Colombia Colombian Colombians Colombina Colombo Colome Colon Colona Colonel Colonial Colonie Colonies Colonsay Colophon Colophonian Colophonians Colora Coloradan Coloradans Colorado Coloradoan Coloradoans Colored Coloreds Colorum Colossae Colosseum Colossian Colossians Colossochelys Colossuswise Coloured Coloureds Colp Colpin Colpoda Colquitt Colrain Colson Colston Colstrip Colt Coltee Coltin Colton Coltrane Coltson Coltun Coltwood Coluber Colubridae Colubriformes Colubriformia Colubrina Colubrinae Colum Columba Columbae Columban Columbanian Columbella Columbia Columbian Columbiana Columbians Columbiaville Columbic Columbid Columbidae Columbiformes Columbine Columbus Columbyne Columellia Columelliaceae Colun Colusa Colutea Colver Colvert Colville Colvin Colwell Colwen Colwich Colwin Colwyn Colyer Colymbidae Colymbriformes Colymbus Com Comaetho Coman Comanche Comanchean Comanches Comandra Comaneci Comarum Combe Combes Combretaceae Combretum Combs Comdr Comdt Comecon Comecrudo Comenius Comer Comerio Cometes Comfort Comforter Comfrey Comiakin Comice Comices Comid Comilla Comines Cominform Cominformist Comins Comintern Comiso Comitadji Comitium Commack Commager Commander Commelina Commelinaceae Commerce Commie Commies Commines Commiphora Commiskey Commodore Commodus Common Commons Commonwealth Commonwealths Communard Communards Commune Communion Communions Communism Communisms Communist Communistic Communists Communize Communized Communizes Communizing Comneni Comnenian Comnenus Como Comoran Comorian Comorin Comoro Comoros Comox Compagnie Companies Companion Companions Company Compaq Compasses Compazine Compazines Compi Compiagne Compiegne Compitalia Complin Compline Complines Complins Complutensian Compoboard Composaline Compositae Composite Compostela Compsilura Compsoa Compsognathus Compsothlypidae Comptche Compte Comptean Comptom Comptometer Compton Comptonia CompuServe Comr Comrade Comrades Comras Comsat Comsats Comsomol Comstock Comstockeries Comstockery Comstockian Comsymp Comsymps Comte Comtean Comtesse Comtian Comtism Comtisms Comtist Comtists Comus Comyns Con Conah Conakry Conal Conall Conan Conant Conard Conasauga Conaway Concan Concarneau Concepci Concepcion Concepciun Concepción Concertgebouw Concesio Concetta Concettina Conch Concha Conches Conchifera Conchita Concho Conchobar Conchobor Conchostraca Conchs Conchubar Conchucu Concoff Conconully Concord Concorde Concordes Concordia Concords Concordville Concorrezanes Cond Conda Condalia Condamine Conde Condillac Condit Condon Condorcet Condylarthra Condylopoda Condylura Conehatta Conejos Conelrad Conemaugh Conestee Conestoga Conestogas Conesus Conesville Conetoe Coney Confed Confederacy Confederate Confederates Confederation Conference Conferences Conferva Confervaceae Confervales Confervoideae Confiteor Confiteors Confluence Conformist Conformists Confucian Confucianism Confucianisms Confucianist Confucianists Confucians Confucius Cong Congdon Conger Congers Congerville Congo Congoese Congolese Congoleum Congonhas Congregational Congregationalism Congregationalisms Congregationalist Congregationalists Congregationer Congreso Congress Congresses Congressional Congressman Congressmen Congresso Congressperson Congresspersons Congresswoman Congresswomen Congreve Congridae Coniacian Coniah Conias Conidae Coniferae Conilurus Coniogramme Coniophora Coniopterygidae Conioselinum Coniothyrium Conirostres Coniston Conium Conjugales Conjugatae Conklin Conlan Conlee Conlen Conley Conlin Conlon Conn Connacht Connally Connaraceae Connarus Connaught Conneaut Conneautville Connecticut Connee Connel Connell Connelley Connellsville Connelly Connemara Connemaras Conner Conners Connersville Connerville Connery Connett Conney Conni Connie Connochaetes Connolly Connor Connors Conny Conocarpus Conocephalum Conocephalus Conolophus Conon Conopholis Conopidae Conopophaga Conopophagidae Conor Conorhinus Conover Conowingo Conoy Conqueror Conquest Conrad Conrade Conradian Conrado Conrail Conral Conran Conrath Conringia Conroe Conroy Cons Consalve Consecration Consecrations Conservatism Conservatisms Conservative Conservatives Consett Conshohocken Consolamentum Consolata Consolato Const Constable Constableville Constance Constancia Constancy Constant Constanta Constantia Constantin Constantina Constantine Constantinian Constantino Constantinople Constantinopolitan Constitution Constructivism Constructivisms Constructivist Constructivists Consuela Consuelo Consulate Consulates Consus Cont Conte Conti Continent Continental Continentaler Continentalise Continentalize Continentals Contoocook Contortae Contraposaune Contreras Conularia Conuropsis Conurus Convair Convallaria Convallariaceae Conventual Conventuals Converse Converso Conversos Convery Convoluta Convolvulaceae Convolvulus Conway Conwy Cony Conyers Conyngham Coo Cooe Coohee Cook Cooke Cookeville Cookie Cooks Cooksburg Cookson Cookstown Cooksville Cookville Cooky Cooleemee Cooley Coolidge Coolin Coolville Coombs Coonan Coop Cooper Cooperia Cooperman Coopersburg Coopersmith Cooperstein Cooperstown Coopersville Coorg Coors Coos Coosa Coosada Coosuc Cooter Cop Copacabana Copaifera Copaiva Copake Copan Copcn Cope Copehan Copeland Copelata Copelatae Copemish Copenhagen Copenhagener Copenhageners Copeognatha Copepoda Copernican Copernicanism Copernicanisms Copernicans Copernicia Copernicus Copeville Cophetua Copht Copiague Copiapo Copiapu Copland Coplay Copley Coplin Copp Coppard Coppelia Coppell Copperfield Copperhead Copperheadism Copperheads Coppermine Copperopolis Coppertone Coppinger Coppins Coppock Coppola Copreus Coprides Coprinae Coprinus Coprosma Copt Coptic Coptis Copts Coquelin Coquilhatville Coquille Coquimbo Coquitlam Cor Cora Corabeca Corabecan Corabel Corabella Corabelle Coraciae Coracias Coracii Coraciidae Coraciiformes Coracomorphae Coral Coralie Coraline Corallian Corallidae Coralligena Corallina Corallinaceae Corallium Corallorhiza Corallus Coralville Coralye Coralyn Coram Corambis Coramine Corantijn Coraopolis Corapeake Coray Corbeil Corbet Corbett Corbetts Corbettsville Corbie Corbieres Corbin Corbières Corbusier Corby Corchorus Corcoran Corcovado Corcyra Corcyraean Corcyraeans Cord Cordaitaceae Cordaitales Cordaites Cordalia Corday Cordeau Cordeelia Cordele Cordelia Cordelie Cordelier Cordeliers Cordell Corder Cordery Cordesville Cordey Cordi Cordia Cordie Cordier Cordilleran Cordilleras Cordle Cordoba Cordoban Cordobans Cordova Cordovan Cordovans Cordula Cordy Cordyceps Cordylanthus Cordyline Core Corea Coree Coreen Coregonidae Coregonus Coreidae Corel Corell Corella Corelli Corema Corena Corenda Corene Coreopsis Coresus Coretta Corette Corey Corfam Corfiot Corfiote Corfiotes Corfiots Corflambo Corfu Cori Coriandrum Coriaria Coriariaceae Coricidin Coridon Corie Corilla Corimelaena Corimelaenidae Corin Corina Corine Corineus Corinna Corinne Corinth Corinthian Corinthianesque Corinthianise Corinthianism Corinthianize Corinthians Corinthus Coriolanus Coriolis Coriss Corissa Corixa Corixidae Cork Corkhill Corleone Corley Corliss Corly Cormac Cormack Cormick Cormier Cormophyta Corn Cornaceae Cornall Corneille Cornel Cornela Cornelia Cornelie Cornelis Cornelius Cornell Cornelle Corner Cornersville Cornettsville Cornew Corney Cornhill Cornhusker Cornhuskers Cornia Cornichon Cornie Corniferous Corning Cornish Cornishes Cornishman Cornishmen Cornishwoman Cornishwomen Cornland Cornlea Corno Cornopion Cornstalk Cornucopiae Cornulites Cornus Cornville Cornwall Cornwallis Cornwallville Cornwell Corny Coro Coroado Coroebus Corolla Corolliflorae Coronado Coronel Coronilla Coronis Coronopus Coronus Coropo Corot Corotto Corozal Corp Corpl Corporal Corr Corrado Corrales Corraze Correa Correctionville Correggio Corregidor Correll Correna Correy Correze Corri Corrianne Corrie Corriedale Corriedales Corrientes Corrigan Corriganville Corrigiola Corrigiolaceae Corrina Corrine Corrinne Corrodentia Corron Corry Corryton Corrèze Corse Corsetti Corsica Corsican Corsicana Corsicans Corsiglia Corso Corson Cort Cortaderia Cortaillod Cortaro Cortas Cortelyou Cortemadera Cortes Cortese Corteses Cortez Corti Corticium Cortie Cortinarius Cortland Cortlands Cortney Corton Cortona Cortot Corty Corum Corumba Corumbc Coruminacan Coruna Corunna Coruua Corvallis Corvese Corvette Corvi Corvidae Corvin Corvinae Corvo Corvus Corwin Corwith Corwun Cory Coryat Coryate Corybant Corybantes Corybantian Corybantic Corybantine Corybants Corycia Corycian Corydalis Coryden Corydon Coryell Corylaceae Corylopsis Corylus Corynebacterium Corynetes Coryneum Corynne Corynocarpaceae Corynocarpus Corypha Coryphaea Coryphaena Coryphaenidae Coryphaenoididae Coryphasia Coryphodon Corythus Cos Cosby Coscinodiscaceae Coscinodiscus Coscob Cosenza Cosetta Cosette Cosgrave Cosgrove Coshocton Coshow Cosimo Cosma Cosmati Cosme Cosmetas Cosmo Cosmoline Cosmolines Cosmopolis Cosmos Cosmotron Cossack Cossacks Cossaean Cossayuna Cossidae Cost Costa Costaea Costain Costanoan Costanza Costanzia Costata Costco Costello Costen Coster Costermansville Costigan Costilla Costin Costner Cosyra Cot Cotabato Cotati Cote Coteau Cotesfield Cotesian Cotherstone Cotinga Cotingidae Cotinus Cotman Cotolaurel Cotonam Cotoneaster Cotonou Cotopaxi Cotoxo Cotsen Cotswold Cotswolds Cott Cottageville Cottbus Cottekill Cottenham Cotter Cotterell Cottidae Cottle Cottleville Cotton Cottondale Cottonian Cottonopolis Cottonport Cottonton Cottontown Cottrell Cottus Cotuit Cotulla Coturnix Coty Cotyleus Cotylophora Cotylosauria Cotys Cotyttia Coua Couaism Coucher Couchman Couderay Coudersport Coue Coueism Coueist Coueists Coughlin Coulomb Coulombe Coulommiers Coulson Coulter Coulters Coulterville Coumarouna Coumas Counce Counselor Count Countee Countess Couperin Couperus Coupeville Coupland Courantyne Courbet Courbevoie Courcy Courier Courland Cournand Cours Court Courtauld Courtelle Courtenay Courteney Courtland Courtnay Courtney Courtois Courtrai Courtund Coushatta Cousin Cousins Coussoule Cousteau Cousy Coutet Couture Coué Couéism Couéist Couéists Covarecan Covarecas Covarrubias Covel Covell Covelo Covena Covenant Covenanter Covenanters Coveney Coventries Coventry Coverdale Coverley Covesville Coviello Covillea Covina Covington Cowan Cowanesque Cowansville Coward Cowarts Cowden Cowdrey Cowell Cowen Cower Cowes Coweta Cowey Cowgill Cowichan Cowiche Cowie Cowl Cowles Cowlesville Cowley Cowlitz Cown Cowpens Cowper Cowperian Cox Coxey Coxsackie Coxyde Coy Coyanosa Coyle Coyolxauhqui Coyotero Coysevox Coyville Cozad Cozens Cozmo Cozumel Cozza Cozzens Cpl Cr Crab Crabb Crabbe Craborchard Crabtree Cracca Cracidae Cracinae Cracker Crackerjack Crackerjacks Crackers Cracow Cracy Craddock Craddockville Cradock Craft Craftint Crafton Craftsbury Craftype Crag Cragford Craggie Craggy Cragsmoor Craig Craigavon Craigie Craigmont Craigsville Craigville Craik Crailsheim Crain Craiova Craley Cralg Cram Crambe Crambidae Crambinae Crambus Cramer Cramerton Cran Cranach Cranaus Cranbury Crandale Crandall Crandell Crandon Crane Craner Cranesville Cranford Crania Craniata Craniota Cranko Cranks Cranmer Cranston Cranwell Crapo Crary Craryville Crashaw Craspedota Crassina Crassula Crassulaceae Crassus Crataegus Crataeis Crataeva Crater Craterellus Craterid Crateris Cratinean Cratus Cravecoeur Craven Cravenette Cravenetted Cravenetting Craw Crawford Crawfordsville Crawfordville Crawley Crawthumper Crax Cray Crayne Craynor Crayola Crcy Creamer Crean Creath Creation Creator Crecy Credo Credos Cree Creed Creede Creedmoor Creedon Creek Creeks Creel Crees Crefeld Crefsa Creigh Creight Creighton Creil Crelin Crellen Cremer Cremini Cremona Cremonese Crenothrix Crenshaw Creodonta Creola Creole Creoles Creolin Creon Crepidula Crepin Crepis Crepy Cres Cresa Cresbard Crescantia Crescas Crescen Crescendo Crescent Crescentia Crescents Crescin Crescint Cresco Cresida Cresius Cresphontes Crespi Crespo Cressey Cressi Cressida Cressie Cresskill Cressler Cresson Cressona Cressy Crest Crestline Creston Crestone Crestview Crestwood Creswell Creta Cretaceous Cretacic Cretan Cretans Crete Cretheis Cretheos Cretheus Cretic Cretism Creusa Creuse Creusois Creusot Crevecoeur Crewe Crex Crfger Cricetidae Cricetus Crichton Crick Cricotus Criders Crifasi Crile Crim Crimea Crimean Crimora Crimplene Crin Criniger Crinoidea Crinum Crioceras Crioceris Criollo Criollos Criophoros Criophorus Crippen Cripplegate Cripps Cris Crisco Crises Crisey Criseyde Crisfield Crisium Crispa Crispas Crispen Crispi Crispin Crispinian Crissie Crissy Crist Crista Cristabel Cristal Cristatella Cristen Cristi Cristian Cristiano Cristie Cristin Cristina Cristine Cristineaux Cristino Cristiona Cristionna Cristispira Cristivomer Cristobal Cristoforo Cristophe Cristy Criswell Critchfield Crithidia Critta Crittenden Critz Crius Crivitz Croaker Croat Croatan Croatia Croatian Croatians Croats Crocanthemum Croce Croceatas Crocheron Crocidura Crocker Crockett Crocketville Crockford Crockpot Crockpots Crocodilia Crocodilidae Crocodilus Crocodylidae Crocodylus Crocosmia Crocus Croesi Croesus Croesuses Croesusi Crofoot Croft Crofton Croghan Croix Crokinole Crom Cromer Cromerian Crommelin Cromona Crompton Cromwell Cromwellian Cronartium Croner Cronia Cronian Cronin Cronkite Cronos Cronus Cronyn Crookes Crooks Crookston Crooksville Croom Croomia Cropsey Cropseyville Cropwell Crosby Crosbyton Crosley Cross Crossbow Crosse Crossett Crossman Crossnore Crossopterygii Crossosoma Crossosomataceae Crossroads Crossville Crosswicks Croswell Crotalaria Crotalidae Crotalinae Crotalus Crotaphytus Croteau Crothersville Crotia Croton Crotone Crotophaga Crotopus Crotty Crotus Crouse Crouseville Crow Crowder Crowe Crowell Crowheart Crowley Crown Crowns Crownsville Crows Crowville Croydon Crozet Crozier Cruce Crucianella Crucibulum Cruciferae Crucifixion Crucifixions Crucis Crudden Cruft Cruger Cruickshank Cruikshank Cruise Crum Crumpler Crumpton Crumrod Crusade Crusades Crusca Crusoe Crustacea Crutcher Crux Cruyff Cruz Cruzan Cruzans Cryan Crypteronia Crypteroniaceae Cryptobranchia Cryptobranchiata Cryptobranchidae Cryptobranchus Cryptocarya Cryptocephala Cryptocerata Cryptocleidus Cryptococcus Cryptodira Cryptogamia Cryptoglaux Cryptogramma Cryptomeria Cryptomonadales Cryptomonadina Cryptonemiales Cryptophagidae Cryptophyceae Cryptoprocta Cryptorhynchus Cryptostegia Cryptostomata Cryptotaenia Cryptozoic Cryptozonia Cryptozoon Crypturi Crypturidae Crysta Crystal Crystalite Crystallose Crystie Crystolon Cs Csel Csonka Ct Cteatus Ctenacanthus Ctenocephalus Ctenodipterini Ctenodontidae Ctenodus Ctenoidei Ctenophora Ctenoplana Ctenostomata Ctesiphon Ctesippus Ctesius Cthrine Cthulhu Cu Cuailnge Cuajone Cub Cuba Cubage Cuban Cubanise Cubanize Cubans Cubelium Cubero Cubh Cubism Cubisms Cubist Cubists Cubomedusae Cubrun Cubs Cuchan Cuchillo Cuchulain Cuchulainn Cuchullain Cucujid Cucujidae Cucujus Cuculi Cuculidae Cuculiformes Cuculus Cucumaria Cucumariidae Cucumis Cucurbita Cucurbitaceae Cucuta Cuda Cudahy Cuddebackville Cuddy Cudlip Cuenca Cuernavaca Cuero Cuervo Cueva Cufic Cui Cuiaba Cuiabc Cuicuilco Cuisenaire Cuisenaires Cuisinart Cuisinarts Cuitlateco Cujam Cukor Culavamsa Culberson Culbert Culbertson Culdee Culdesac Culebra Culex Culham Culhert Culiac Culiacan Culiaccn Culicidae Culicinae Culicoides Culion Cull Cullan Cullen Culleoka Culley Cullie Cullin Culliton Cullman Culloden Cullom Cullowhee Cully Culm Culn Culosio Culpeper Cultirostres Cultrirostres Culver Cumacea Cumae Cumaean Cuman Cumana Cumanagoto Cumanagotos Cumanc Cumar Cumberland Cumbernauld Cumbola Cumbria Cumbrian Cumbrians Cumby Cumine Cumings Cummaquid Cummine Cumming Cummings Cummington Cummins Cuna Cunan Cunard Cunarder Cunas Cunaxa Cundiff Cuneo Cuney Cung Cunina Cunningham Cunninghamia Cunonia Cunoniaceae Cunza Cuon Cupania Cupar Cupavo Cupertino Cuphea Cupid Cupo Cupressaceae Cupressinoxylon Cupressus Cupuliferae Curaao Curacao Curacaos Curaiao Curare Curavecan Curcio Curculio Curculionidae Curcuma Curdoba Curdsville Curetes Curhan Curia Curiae Curial Curiatii Curie Curitiba Curitis Curityba Curkell Curley Curllsville Curnin Curr Curran Curren Currer Currey Currie Currier Currituck Curry Curryville Cursa Curson Cursores Cursoria Cursoriidae Cursorius Curt Curtana Curtice Curtin Curtis Curtise Curtiss Curtisville Curtius Curucaneca Curucanecan Curuminaca Curuminacan Curupira Curvirostres Curwensville Curzon Cusack Cusanus Cusco Cuscus Cuscuta Cuscutaceae Cush Cushing Cushite Cushites Cushitic Cushman Cusick Cusp Cusseta Custar Custer Cut Cutaiar Cutbank Cutch Cutcheon Cutchogue Cutcliffe Cuterebra Cuthbert Cuthbertson Cuthburt Cutiterebra Cutler Cutleria Cutleriaceae Cutleriales Cutlerr Cutlip Cutlor Cutshin Cuttack Cutter Cuttie Cuttingsville Cuttler Cutty Cuttyhunk Cutuno Cuvier Cuvierian Cuxhaven Cuyab Cuyaba Cuyabc Cuyama Cuyapo Cuyler Cuyp Cuzceno Cuzco Cuzzart Cvennes Cwikielnik Cwlth Cwmbran Cy Cyamus Cyanamid Cyanastraceae Cyanastrum Cyane Cyanea Cyaneae Cyanee Cyanocitta Cyanophyceae Cyanospiza Cyathaspis Cyathea Cyatheaceae Cyathophyllidae Cyathophyllum Cyb Cybebe Cybele Cybil Cybill Cybister Cycadaceae Cycadales Cycadeoidea Cycadofilicales Cycadofilices Cycadophyta Cycas Cychosz Cychreus Cyclades Cycladic Cyclamycin Cyclanthaceae Cyclanthales Cyclanthus Cycliae Cyclobothra Cycloconium Cycloganoidei Cycloidei Cycloloma Cyclomyaria Cyclone Cyclones Cyclopean Cyclopes Cyclophorus Cyclopic Cyclops Cyclopteridae Cyclorrhapha Cyclospondyli Cyclospora Cyclosporales Cyclosporas Cyclosporeae Cyclosporinae Cyclostoma Cyclostomata Cyclostomatidae Cyclostomes Cyclostomi Cyclostomidae Cyclotella Cyclothurus Cyclotosaurus Cycnus Cyd Cydippe Cydippida Cydnus Cydonia Cydonian Cygnet Cygni Cygnid Cygninae Cygnus Cykana Cyler Cylindrella Cylindrophis Cylindrosporium Cyllene Cyllenian Cyllenius Cylvia Cym Cyma Cymbalaria Cymbeline Cymbella Cymbium Cymbopogon Cymbre Cymodoce Cymodoceaceae Cymoidium Cymraeg Cymric Cymru Cymry Cyn Cyna Cynanchum Cynar Cynara Cynarra Cynde Cyndi Cyndia Cyndie Cyndy Cynera Cynewulf Cynias Cynic Cynical Cynicism Cynicisms Cynics Cynipidae Cynipoidea Cynips Cynocephalus Cynocrambaceae Cynocrambe Cynodon Cynodontia Cynogale Cynoglossum Cynognathus Cynoidea Cynomoriaceae Cynomorium Cynomorpha Cynomys Cynopithecidae Cynortes Cynosarges Cynoscephalae Cynoscion Cynosura Cynosurus Cynoxylon Cynth Cynthea Cynthia Cynthian Cynthiana Cynthie Cynthiidae Cynthius Cynthla Cynthy Cynurus Cynwulf Cynwyd Cyparissia Cyparissus Cyperaceae Cyperus Cyphomandra Cypraea Cypraeidae Cypressinn Cypria Cyprian Cyprians Cyprididae Cypridina Cypridinidae Cyprina Cyprinidae Cyprinodont Cyprinodontes Cyprinodontidae Cyprinodonts Cyprinoidea Cyprinus Cyprio Cypriot Cypriote Cypriotes Cypriots Cypripedium Cypris Cypro Cyprus Cypseli Cypselid Cypselidae Cypseliformes Cypselomorphae Cypselus Cyra Cyrano Cyrena Cyrenaic Cyrenaica Cyrenaican Cyrenaicans Cyrenaicism Cyrenaicisms Cyrenaics Cyrene Cyrenian Cyrenians Cyrie Cyril Cyrill Cyrilla Cyrillaceae Cyrille Cyrillian Cyrillianism Cyrillic Cyrillus Cyrtandraceae Cyrtidae Cyrtoceras Cyrtomium Cyrus Cysatus Cystidea Cystignathidae Cystoflagellata Cystoidea Cystonectae Cystophora Cystopteris Cystopus Cythera Cytherea Cytherean Cytherella Cytherellidae Cytinaceae Cytinus Cytissorus Cytisus Cytophaga Cytospora Cytosporina Cyzicene Cyzicus Czajer Czanne Czarra Czech Czechic Czechisation Czechish Czechization Czechosl Czechoslovak Czechoslovakia Czechoslovakian Czechoslovakians Czechoslovaks Czechs Czerniak Czerniakov Czernowitz Czerny Czestochowa Czstochowa Czur Cévennes D DA DAB DAC DACCS DACS DACTYL DAD DAE DAIS DAMQAM DAP DAR DARC DARPA DARU DAS DASD DASWDT DAT DATA DAV DAY DAgr DAs DB DBA DBAC DBAS DBCP DBE DBF DBI DBM DBME DBMS DBO DBRAD DBS DBib DC DCA DCB DCC DCCO DCCS DCD DCE DCH DCI DCL DCLU DCM DCMG DCMS DCMU DCNA DCNL DCO DCP DCPR DCPSK DCS DCT DCTN DCTS DCVO DChE DD DDA DDB DDC DDCMP DDCU DDD DDE DDI DDJ DDK DDL DDN DDP DDPEX DDR DDS DDSc DDT DDTs DDVP DDX DE DEA DEAR DEBNA DEC DECUS DECed DECing DECs DEET DEI DELNI DELQA DELUA DEMPR DEPCA DEQNA DEREP DERP DES DESPR DESTA DET DEUNA DEW DEXEC DEd DEng DEngS DF DFA DFC DFD DFE DFI DFM DFMS DFRF DFS DFT DFW DG DGA DGP DGSC DH DHEA DHHS DHL DHSS DI DIA DIAD DIAL DIAS DIB DIC DID DIF DIFMOS DIL DILOG DIM DIMS DIN DINK DIP DIR DIRE DIRT DIS DISA DISOSS DIU DIV DIX DIY DJ DJS DJT DJourn DK DLA DLC DLCU DLE DLG DLI DLL DLO DLP DLS DLTU DLUPG DLitt DM DMA DMD DMDT DME DMI DMK DML DMOS DMS DMSO DMSP DMT DMU DMV DMZ DMus DN DNA DNAase DNAases DNAse DNAses DNB DNC DNCRI DNHR DNI DNIC DNL DNR DNS DNX DO DOA DOB DOC DOCS DOD DOE DOHC DOJ DOM DOMAIN DOP DORAN DORE DOS DOT DOTE DOTS DOV DOVAP DOW DP DPA DPAC DPANS DPC DPE DPH DPI DPM DPMI DPN DPNH DPNPH DPP DPS DPSK DPT DPW DPhil DPs DQ DQDB DQL DR DRAM DRAMs DRD DRE DRG DRI DRMU DRP DRS DS DSA DSAB DSBAM DSC DSCS DSD DSDC DSE DSEE DSI DSM DSN DSO DSP DSR DSRI DSS DSSI DST DSTN DSU DSW DSX DSc DT DTAS DTB DTC DTD DTE DTF DTG DTI DTIF DTL DTMF DTP DTR DTSS DTU DTh DTs DU DUA DUATS DUI DUKW DUT DUV DV DVC DVD DVDs DVM DVMA DVMRP DVMS DVS DVX DW DWAPS DWB DWI DWIM DX DXT DZ DaMassa Dabbs Daberath Dabih Dabitis Dabney Dabneys Dabolt Dacca Dace Dacelo Daceloninae Dacey Dacha Dachau Dache Dachi Dachia Dachy Dacia Dacian Dacians Dacie Dacko Dacoma Dacono Dacron Dacrons Dacrydium Dactyi Dactyl Dactyli Dactylis Dactylopius Dactylopteridae Dactylopterus Dactyls Dacula Dacus Dacy Dada Dadaism Dadaisms Dadaist Dadaistic Dadaists Dadas Dadayag Dadd Daddah Dade Dadeville Dadoxylon Dadu Dadupanthi Daeaz Daedal Daedala Daedalea Daedalean Daedalian Daedalic Daedalid Daedalidae Daedalion Daedalist Daedalus Daegal Dael Daemonelix Daffi Daffie Daffodil Daffy Dafla Dafna Dafodil Dafter Dafydd Dag Dagall Dagan Dagbamba Dagbane Dagda Dagenham Dagestan Dagestani Dagestanis Daggett Daggna Daghda Daghestan Dagley Dagmar Dagna Dagnah Dagney Dagny Dago Dagoberto Dagoes Dagomba Dagon Dagos Dagsboro Dagu Daguerre Daguerrean Dagupan Dagusmines Dagwood Dagwoods Dahinda Dahl Dahle Dahlgren Dahlia Dahlonega Dahlstrom Dahna Dahoman Dahomans Dahomean Dahomeans Dahomey Dahomeyan Dahomeyans Dai Daibutsu Daigle Daigneault Daijo Dail Dailamite Daile Dailey Daimler Daingerfield Daiquiri Daira Dairen Dairylea Dais Daisetta Daisey Daisi Daisie Daisies Daisy Daisytown Daitzman Dak Dakar Dakhini Dakhla Dakota Dakotan Dakotans Dakotas Daksha Daktyi Daktyl Daktyli Daktyls Dal Daladier Dalan Dalarnian Dalat Dalbergia Dalbo Dalcassian Dalcroze Dale Dalea Dalecarlian Dalek Daleks Dalen Dalenna Dales Daleville Daley Dalglish Dalhart Dalhousie Dali Dalia Dalian Dalibarda Daliesque Dalila Dalilia Dalis Dall Dallan Dallapiccola Dallardsville Dallas Dallasite Dallasites Dallastown Dalli Dallin Dallis Dallman Dallon Dalmane Dalmanes Dalmania Dalmanites Dalmatia Dalmatian Dalmatians Dalmatic Dalny Daloris Dalpe Dalradian Dalrymple Dalston Dalt Dalton Daltonian Daltonic Daltonism Daltonisms Daltonist Dalury Daly Dalyce Dalymore Dalzell Dam Damal Damalas Damales Damali Damalis Damalus Daman Damanh Damanhur Damar Damara Damaraland Damaris Damariscotta Damarra Damas Damascene Damascened Damascenes Damascening Damascus Damastes Damayanti Dambro Dame Damek Dameron Dames Damgalnunna Damia Damian Damiani Damianist Damiano Damick Damicke Damien Damietta Damion Damita Damkina Damle Dammara Damnii Damnonii Damoclean Damocles Damodar Damoetas Damon Damour Dampier Damrosch Damysus Dan Dana Danaae Danaan Danae Danaen Danagla Danaher Danai Danaid Danaidae Danaidean Danaides Danaids Danainae Danais Danakil Danang Danas Danaus Danava Danaë Danboro Danbury Danby Danciger Danczyk Dandie Dandy Dane Daneball Daneen Daneflower Danegeld Danegelds Danegelt Danegelts Danelage Danelagh Danelaw Danell Danella Danelle Danene Danes Danese Danete Danette Danevang Daneweed Danewort Daney Danford Danforth Dang Dangerfield Dani Dania Danial Daniala Danialah Danian Danic Danica Danice Danie Daniel Daniela Daniele Danielic Daniell Daniella Danielle Daniels Danielson Danielsville Danieu Daniglacial Danika Danila Danilo Danilova Danisation Danise Danish Danishes Danism Danit Danita Danite Danites Daniyal Danization Danize Dankali Dankworth Danl Danmark Dann Danna Dannebrog Dannel Dannemora Danni Dannica Dannie Dannon Danny Dannye Danone Dans Dansker Danskers Dansville Dante Dantean Danteans Dantescan Dantesque Danthonia Dantist Dantology Dantomania Danton Dantonesque Dantonist Dantophilist Dantophily Danu Danube Danubian Danuloff Danuri Danuta Danvers Danville Danya Danyelle Danyette Danyluk Danzig Danziger Dao Daoism Daoisms Daoist Daoistic Daoists Dapedium Dapedius Daph Daphene Daphie Daphna Daphnaceae Daphnaea Daphne Daphnean Daphnephoria Daphnia Daphnis Dapsang Dar Dara Darach Daraeo Darapti Darb Darbee Darbie Darby Darbyism Darbyite Darce Darcee Darcey Darci Darcia Darcie Darcy Dard Darda Dardan Dardanelle Dardanelles Dardani Dardanian Dardanians Dardans Dardanus Darden Dardic Dardistan Dare Dareece Dareen Darees Darell Darelle Daren Dares Darfur Darghin Dargo Dari Daria Darian Darice Darien Darii Darill Darin Dario Darius Darjeeling Darjeelings Darken Darla Darlan Darleen Darlene Darline Darling Darlington Darlingtonia Darlleen Darmit Darmstadt Darn Darnall Darnell Darney Darnley Darold Daron Darooge Darra Darragh Darrel Darrell Darrelle Darren Darrey Darrick Darrill Darrin Darrington Darrouzett Darrow Darry Darryl Darryn Darsey Darsie Darsonval Darsonvalism Dart Dartagnan Dartford Darth Dartmoor Dartmouth Darton Darvon Darvons Darwen Darwin Darwinian Darwinians Darwinical Darwinically Darwinise Darwinism Darwinisms Darwinist Darwinistic Darwinists Darwinite Darwinize Darya Daryl Daryle Daryn Dasahara Dasahra Dasara Daschagga Dascylus Dasehra Dash Dasha Dashahara Dashnak Dashnakist Dashnaktzutiun Dasi Dasie Dasiphora Dasipodidae Dasirae Dassel Dassin Dasteel Dasya Dasyatidae Dasyatis Dasycladaceae Dasylirion Dasypeltis Dasypodidae Dasyprocta Dasyproctidae Dasypus Dasystephana Dasyuridae Dasyurus Dasyus Datamation Datamations Datapost Datel Datha Datil Datisca Datiscaceae Datisi Datism Datnow Datsun Datsuns Datto Datuk Datuks Datura Daub Daubentonia Daubentoniidae Daubigny Daucus Daudet Daugava Daugavpils Daugherty Daughtry Daukas Daulias Daumier Daune Daunii Dauphin Dauphina Dauphine Dauphines Dauphins Daur Dauri Dav Davallia Davant Davao Dave Daveda Daveen Daven Davena Davenant Davene Davenport Daventry Daveta Davey David Davida Davidde Davide Davidian Davidic Davidical Davidist Davidoff Davids Davidson Davidsonville Davidsville Davie Davies Daviesia Davilla Davilman Davin Davina Davine Davis Davisboro Davisburg Davison Davisson Daviston Davisville Davita Davon Davos Davout Davy Davys Dawes Dawkins Dawmont Dawn Dawna Dawson Dawsonia Dawsoniaceae Dawsonville Dax Day Dayak Dayakker Dayaks Dayan Daye Dayhoit Daykin Dayle Dayna Days Daysie Dayton Daytona Dayville Daza Dazey Dbh Ddene Ddenise De DeBolt DeFalco DeForest DeGeneres DeHoff DeKalb DeKoven DeLacey DeLayre DeLillo DeLong DeMaio DeMartini DePew DePree DeRosa DeSantis DeSimone DeWayne Dea Deach Deacon Deadhead Deadman Deadwood Deaf Deakin Deale Dean Deana Deandre Deane Deaner Deann Deanna Deanne Deansboro Deanville Dear Dearborn Dearden Dearing Dearman Dearmanville Dearr Dears Deary Death Deatsville Deauville Deaver Deb Debarath Debary Debbee Debbi Debbie Debbora Debbra Debby Debee Debeque Debera Deberry Debes Debi Debian Debir Debor Debora Deborah Deborath Debord Debouillet Debra Debrecen Debrett Debs Debussy Debussyan Debussyanize Debye Dec Decadent Decadents Decadron Decagynia Decaisnea Decalin Decalog Decalogist Decalogs Decalogue Decalogues Decameron Decameronic Decamp Decandria Decapoda Decapolis Decato Decatur Decaturville Decay Decca Deccan December Decemberish Decemberly Decembers Decembrist Decembrists Dechen Decherd Dechlog Decian Deciduata Decima Decimus Decius Decize Deck Decker Deckert Deckerville Declan Declo Declomycin Deco Decodon Decorah Decorated Decos Decretals Decuma Decumaria Dedagach Dedan Dedanim Dedanite Dede Dedekind Deden Dedham Dedie Dedlock Dedra Dedric Dedrick Dee DeeAnn Deeann Deeanne Deedee Deedsville Deegan Deems Deena Deenya Deepfreeze Deepfreezes Deephaven Deeping Deepwater Deer Deerbrook Deerdre Deere Deerfield Deering Deersville Deerton Deerwood Deery Deeth Deeyn Defant Deferiet Defiance Defoe Deford Degas Degraff Deguelia Dehaites Dehgan Dehkan Dehlia Dehnel Dehradun Dehue Dehwar Deianeira Deianira Deibel Deicoon Deicoun Deidamia Deidesheimer Deidre Deighton Deimos Deina Deino Deinocephalia Deinoceras Deinodon Deinodontidae Deinornis Deinosauria Deinotherium Deion Deiope Deipara Deiphilus Deiphobe Deiphobus Deiphontes Deipyle Deipylus Deirdra Deirdre Deism Deisms Deist Deists Deity Dejesus Dekabrist Dekeles Dekker Dekow Del Dela Delacourt Delacroix Delacruz Delafield Delaine Delainey Delamare Delambre Delancey Deland Delaney Delanie Delannoy Delano Delanos Delanson Delanty Delaplaine Delaplane Delaroche Delaryd Delastre Delaunay Delavan Delavigne Delaware Delawarean Delawareans Delawares Delawarian Delbarton Delbert Delcambre Delcassa Delcasse Delcina Delcine Delco Deledda Deleon Delesseria Delesseriaceae Delevan Delfeena Delfine Delft Delftware Delgado Delhi Delia Delian Delians Delibes Delichon Delicia Delicious Deliciouses Delight Delija Delila Delilah Delilahs Delinda Delisle Delium Delius Dell Della Delle Deller Dellora Dellroy Dellslow Delly Delma Delmar Delmarva Delmer Delmita Delmonico Delmonicos Delmont Delmor Delmore Delmotte Delnorte Delobranchiata Delogu Deloit Delong Delora Delorean Delorenzo Delores Deloria Deloris Delorme Delors Delos Delp Delphacidae Delphi Delphia Delphian Delphic Delphically Delphin Delphina Delphinapterus Delphine Delphini Delphinia Delphinid Delphinidae Delphinium Delphinius Delphinoidea Delphinus Delphos Delphus Delphyne Delray Delrey Delrio Delsarte Delsartean Delsartian Delsman Delta Deltas Deltaville Delton Deluc Deluge Delvalle Delwin Delwyn Dem Dema Demaggio Demakis Demarest Demaria Dematiaceae Demavend Demb Dembowski Demchok Demerara Demeraras Demerol Demerols Demeter Demetra Demetre Demetri Demetria Demetrian Demetrias Demetrios Demetris Demetrius Demeyer Deming Demiourgos Demiphon Demirel Demitria Demiurge Demiurges Demjanjuk Demmer Demmy Demo Democoon Democracies Democracy Democrat Democratic Democrats Democritus Demodena Demodex Demodicidae Demodocus Demogorgon Demon Demona Demonassa Demonax Demonian Demophon Demophoon Demophoun Demopolis Demorest Demos Demospongiae Demossville Demosthenean Demosthenes Demosthenian Demosthenic Demotic Demotika Demott Demotte Demp Dempsey Dempster Dempstor Demus Demuth Demy Den Dena Denae Denair Denali Denbigh Denbighshire Denbo Denbrook Denby Dench Dendraspis Dendrites Dendrium Dendrobates Dendrobatinae Dendrobium Dendrocalamus Dendroceratina Dendrochirota Dendrocoela Dendrocolaptidae Dendroctonus Dendrocygna Dendrodus Dendroeca Dendrogaea Dendrogaean Dendrohyrax Dendroica Dendroidea Dendrolagus Dendrolene Dendromecon Dendron Dendropogon Dene Deneb Denebola Denes Deneuve Deng Denham Denhoff Deni Denice Denie Deniker Denio Denis Denise Denison Denizlik Denman Denmark Denn Denna Dennard Dennet Dennett Denney Denni Dennie Denning Dennis Dennison Dennisport Denniston Dennisville Dennstaedtia Denny Dennysville Denos Denoting Denpasar Densmore Dent Dentaliidae Dentalium Dentaria Denten Denticeti Dentirostres Denton Denver Denverite Denverites Denville Deny Denys Denyse Denzil Deo Deon Deonne Deoon Deoope Deophilus Deophobe Deophobus Deopyle Deopylus Depardieu Department Departments Depauville Depauw Depere Depew Depeyster Depoliti Deposition Depoy Depp Deppy Depression Deprez Deptford Depue Depuy Dequeen Der Deragon Derain Derayne Derbend Derbent Derbies Derby Derbyline Derbyshire Dercy Derek Derian Derick Derina Deringa Derinna Deripia Derk Derleth Derma Dermacentor Derman Dermaptera Dermatobia Dermatocoptes Dermatophagus Dermatoptera Dermestes Dermestidae Dermobranchia Dermochelys Dermoptera Dermorhynchi Dermot Dermott Derna Deron Deroo Derotrema Derotremata Derounian Derr Derrek Derrel Derrick Derrida Derridean Derridian Derriey Derrik Derril Derris Derron Derry Derte Deruyter Derward Derwent Derwentwater Derwin Derwon Derwood Deryl Derzon Des Desai Desarc Desargues Desberg Descanso Descartes Descendant Deschamps Deschampsia Deschutes Descombes Desdamona Desdamonna Desde Desdee Desdemona Deseilligny Desha Deshler Desi Desiderii Desiderius Desimone Desirae Desirea Desireah Desiree Desiri Deslacs Deslandres Desma Desmanthus Desmarestia Desmarestiaceae Desmatippus Desmet Desmidiaceae Desmidiales Desmodactyli Desmodium Desmodontidae Desmodus Desmognathae Desmoines Desmomyaria Desmona Desmoncus Desmond Desmontes Desmoscolecidae Desmoscolex Desmothoraca Desmoulins Desmund Desoto Despenser Despiau Despoena Despoina Despotes Dessalines Dessau Dessma Desta Deste Desterro Destin Destinee Destiny Destrehan Desulfovibrio Deth Detmold Detroit Detroiter Detroiters Dett Detta Dettmer Dettol Deucalion Deuno Deurne Deus Deusdedit Deut Deuteromycetes Deuteronomic Deuteronomical Deuteronomist Deuteronomistic Deuteronomists Deuteronomy Deuterostomata Deutsch Deutschemark Deutscher Deutschland Deutschmark Deutschmarks Deutzia Dev Deva Devaki Devan Devanagari Devaney Devault Deventer Dever Devereux Devers Devi Devil Deville Devin Devina Devine Devinna Devinne Devitt Devizes Devland Devlen Devlin Devol Devon Devona Devondra Devonian Devonic Devonna Devonne Devonport Devons Devonshire Devora Devy Dew Dewain Dewali Dewar Dewars Dewart Dewayne Dewees Deweese Dewey Deweyan Deweyville Dewhirst Dewhurst Dewi Dewie Dewitt Dewittville Dewsbury Dewyrose Dex Dexamenus Dexamyl Dexedrine Dexedrines Dexter Dextra Dey Deyoung Dezaley Dezful Dezhnev Dfna Dfnaburg Dfrer Dfsseldorf Dhabi Dhahran Dhaka Dhammapada Dhanis Dhanvantari Dhar Dharma Dharmapada Dharmasastra Dharmasutra Dharuk Dharuks Dhaulagiri Dhegiha Dhegihas Dhekelia Dheneb Dhiman Dhiren Dhlos Dhodheknisos Dhritarashtra Dhruv Dhu Dhumma Dhundia Di DiBiasi DiBlasi DiCaprio DiCenzo DiGenova DiGiangi DiMaggio DiMaria Dia Diabelli Diablo Diabrotica Diacromyodi Diadelphia Diadema Diadematoida Diadochi Diadochian Diaghilev Diaguitas Diaguite Diahann Dial Dialister Dialonian Dialypetalae Diamant Diamanta Diamante Diamond Diamondville Diamox Dian Diana Diancecht Diandra Diandre Diandria Diane Dianemarie Dianil Diann Dianna Dianne Diannne Diantha Dianthaceae Dianthe Dianthera Dianthus Diao Diapason Diapensia Diapensiaceae Diaporthe Diapsida Diarbekr Diarmid Diarmit Diarmuid Dias Diascia Diasia Diaspidinae Diaspinae Diaspora Diasporas Diatoma Diatomaceae Diatomales Diatomeae Diatryma Diatrymiformes Diatype Diau Diaz Diazinon Diazinons Dib Diba Dibai Dibatis Dibb Dibbell Dibbrun Dibelius Diboll Dibothriocephalus Dibranchia Dibranchiata Dibri Dibrin Dibru Dicaeidae Diccon Dice Dicentra Diceras Diceratidae Dich Dichapetalaceae Dichapetalum Dichelyma Dichondra Dichondraceae Dichorisandra Dichter Dichterliebe Dichy Dick Dickens Dickensian Dickensiana Dickensians Dickenson Dickerson Dickey Dickeyville Dickie Dickinson Dickman Dickon Dicks Dickson Dicksonia Dicky Diclidantheraceae Diclytra Dicotyledones Dicotyles Dicotylidae Dicranaceae Dicranum Dicrostonyx Dicruridae Dictaen Dictamnus Dictaphone Dictaphones Dictograph Dictographs Dictynidae Dictynna Dictyoceratina Dictyograptus Dictyonema Dictyonina Dictyophora Dictyopteris Dictyosiphon Dictyosiphonaceae Dictyota Dictyotaceae Dictyotales Dictyoxylon Dictys Dicumarol Dicyclica Dicyema Dicyemata Dicyemida Dicyemidae Dicynodon Dicynodontia Dicynodontidae Didache Didachist Didachographer Didelphia Didelphidae Didelphis Didelphyidae Diderot Didi Dididae Didier Didinium Didlove Dido Didrikson Didunculidae Didunculinae Didunculus Didus Didymaea Didynamia Die Dieball Diebold Diefenbaker Dieffenbachia Diego Diegueno Diehl Diella Dielle Diels Dielu Dielytra Diem Diena Dienbienphu Dieppe Dierdre Dieri Dierks Dierolf Diervilla Dies Diesel Diesels Diet Dieter Dieterich Dietrich Dietsche Dietz Dieu Dieyerie Difda Difflugia Diflucan Diflucans Digambara Digby Digenea Digenetica Digest Digger Diggers Diggins Diggs Dighton Digiorgio Digitalis Digitaria Digitigrada Digor Digynia Diipolia Dijkstra Dijon Dike Dikelocephalus Dikmen Dilan Dilantin Dilantins Dilaudid Dilaudids Dilbert Dilberts Dilemi Dilemite Diley Dili Dilisio Dilks Dill Dillard Dille Dillenia Dilleniaceae Diller Dilley Dillie Dilliner Dillinger Dillingham Dillon Dillonvale Dillsboro Dillsburg Dilltown Dillwyn Dilly Dilolo Dilthey Dilworth Dimaris Dimashq Dimatis Dimbleby Dimebox Dimera Dimitri Dimitris Dimitrov Dimitrovo Dimitry Dimittis Dimmick Dimmitt Dimna Dimock Dimond Dimondale Dimorphotheca Dimphia Dimyaria Din Dina Dinah Dinan Dinantian Dinard Dinaric Dinarzade Dincolo Dindymene Dindymus Dine Dinerman Dinesen Dinesh Dingaan Dingbelle Dingell Dingelstadt Dingess Dingle Dingman Dingus Dingwall Dinichthys Dinin Dinka Dinkas Dinkum Dinnage Dinnie Dinny Dino Dinobryon Dinoceras Dinocerata Dinoceratidae Dinoflagellata Dinoflagellatae Dinoflagellida Dinomys Dinophilea Dinophilus Dinophyceae Dinornis Dinornithes Dinornithidae Dinornithiformes Dinosauria Dinotheres Dinotheriidae Dinotherium Dinsdale Dinse Dinsmore Dinuba Dinwiddie Diocletian Dioctophyme Diodia Diodon Diodontidae Dioecia Diogenean Diogenes Diogenic Diomede Diomedea Diomedeidae Diomedes Dion Dionaea Dionaeaceae Dione Dionis Dionisio Dionne Dionysia Dionysiac Dionysiacal Dionysiacally Dionysiacs Dionysian Dionysius Dionysos Dionysus Dioon Diophantine Diophantus Diopsidae Diopsis Dioptidae Dior Diores Dioscorea Dioscoreaceae Dioscuri Dioscurian Diosdado Diosma Diospyraceae Diospyros Diotocardia Dipala Diphyes Diphylla Diphylleia Diphyllobothrium Diphysite Diphysitism Diplacanthidae Diplacanthus Dipladenia Diplocarpon Diplodia Diplodocus Diplodus Diploglossata Diplopoda Diploptera Diplopteryga Diplospondyli Diplotaxis Diplozoon Dipneumona Dipneumones Dipneusti Dipnoi Dipodidae Dipodomyinae Dipodomys Dipolia Dipper Dippold Diprotodon Diprotodontia Diprotodontidae Dipsacaceae Dipsaceae Dipsacus Dipsadinae Dipsosaurus Diptera Dipteraceae Dipterocarpaceae Dipterocarpus Dipteryx Dipus Dir Dira Dirac Dirae Dirca Dircaean Dirck Directoire Directory Diredawa Dirian Dirichlet Dirichletian Dirk Dis Disa Disamis Disario Disciflorae Discina Disciple Disciples Discoglossidae Discoidea Discoideae Discomedusae Discomycetes Disconanthae Disconectae Discophora Discoplacentalia Discordia Discoverer Disestablishmentarian Disestablishmentarians Disharoon Dishley Disini Diskin Disko Diskson Dismissal Disney Disneyesque Disneyfication Disneyfications Disneyfied Disneyfies Disneyfy Disneyfying Disneyland Disneylands Dispersion Dispersions Disporum Disputanta Disraeli Dissent Dissenter Dissenters Dissenting Distalgesic Distichlis Distoma Distomatidae Distomidae Distomum Dita Dithyrambos Dithyrambus Ditmars Ditmore Ditremidae Ditrocha Ditter Dittersdorf Dittman Dittmer Ditto Dituri Ditzel Diu Diuril Diurna Diushambe Div Divali Diver Divernon Dives Divine Divinities Divinity Division Divisionism Divisionisms Divisionist Divvers Diwali Dix Dixfield Dixiana Dixie Dixiecrat Dixiecratic Dixiecrats Dixieland Dixielander Dixielands Dixil Dixmont Dixmoor Dixon Dixonville Diyarbakir Diyarbekir Dizney Djagatay Djailolo Djaja Djajapura Djakarta Djambi Djeloula Djemas Djerba Djibouti Djiboutian Djiboutians Djilas Djokjakarta Djuka Dle Dli Dlo Dm Dmitrevsk Dmitri Dmitriev Dmitrov Dmitrovka Dnaburg Dnepr Dneprodzerzhinsk Dnepropetrovsk Dnestr Dnieper Dniester Dnipropetrovsk Dniren Dnitz Doak Doane Doanna Dob Dobb Dobbin Dobbins Dobbs Dobe Doberman Dobermann Dobermanns Dobermans Dobes Dobie Doble Doblin Dobrinsky Dobro Dobrogea Dobros Dobrovir Dobruja Dobrynin Dobson Dobuan Dobuans Docena Docetae Docete Docetic Docetically Docetism Docetisms Docetist Docetistic Docetists Docetize Docherty Docia Docila Docile Docilla Docilu Docoglossa Doctor Doctorow Doctors Dodd Dodds Doddsville Dode Dodecagynia Dodecandria Dodecanese Dodecanesian Dodecanesians Dodecatheon Dodge Dodgem Dodgems Dodgeville Dodgson Dodi Dodie Dodoma Dodona Dodonaea Dodonaeaceae Dodonaean Dodonean Dodonian Dodson Dodsworth Dodwell Dody Doe Doedicurus Doeg Doehne Doelling Doenitz Doerrer Doersten Doerun Dogberry Dogberrydom Dogberryism Dogberrys Doge Dogger Doggett Dogon Dogons Dogpatch Dogra Dogrib Dogribs Dogs Dogstar Dogue Doha Doherty Dohnanyi Dohncnyi Dohnnyi Dohnányi Doi Doig Doisy Doketic Doketism Dokmarok Doko Dol Dola Dolan Doland Dolbies Dolby Dole Doley Dolf Dolgellau Dolgeville Dolhenty Dolichoglossus Dolicholus Dolichopsyllidae Dolichos Dolichosauri Dolichosauria Dolichosaurus Dolichosoma Dolichotis Doliidae Dolin Doliolidae Doliolum Dolius Doll Dollar Dolley Dollfuss Dolli Dollie Dollinger Dolliver Dolloff Dollond Dolly Dolmetsch Dolomedes Dolomites Dolon Dolophine Dolora Dolores Dolorita Doloritas Dolph Dolphin Dolphus Dolton Dom Domagk Domash Dombey Dombeya Dombrowski Domdaniel Domel Domela Domella Domenech Domenic Domenick Domenico Domeniga Domenikos Domesday Domett Domicella Domina Domineca Dominga Domingo Dominguez Domini Dominic Dominica Dominican Dominicans Dominick Dominicker Dominickers Dominicks Dominik Dominikus Dominion Dominions Dominique Dominiques Domino Dominus Dominy Domitian Domnus Domonic Domph Domremy Doms Don Dona Donaana Donacidae Donadee Donaghue Donahoe Donahue Donal Donald Donalda Donalds Donaldson Donaldsonville Donall Donalsonville Donalt Donar Donas Donat Donata Donatelli Donatello Donati Donatiaceae Donatism Donatisms Donatist Donatistic Donatistical Donatists Donato Donatus Donau Donaugh Donavon Donbas Donbass Doncaster Dondi Dondia Doneck Donegal Donegan Donela Donell Donella Donelle Donelson Donelu Doner Donet Donets Donetsk Donetta Dong Dongola Dongolese Donia Donica Donie Donielle Doniphan Donitz Donizetti Donizettian Donmeh Donn Donna Donnamarie Donnas Donne Donnean Donnell Donnellson Donnelly Donnelsville Donnenfeld Donner Donnerwetter Donni Donnian Donnie Donny Donnybrook Donnybrooks Donoghue Donoho Donohue Donora Donough Donovan Dons Donus Doodia Doole Dooley Doolittle Doomsday Doon Doone Doonesbury Doorn Doornik Doostoevsky Dopp Doppelganger Doppelgenger Doppelger Doppelgnger Doppelmayer Dopper Doppler Dor Dora Doradidae Dorado Doralia Doralice Doralin Doralyn Doralynn Doralynne Doran Doras Dorask Doraskean Dorati Doraville Dorca Dorcas Dorcatherium Dorcea Dorchester Dorcia Dorcopsis Dorcus Dorcy Dordogne Dordrecht Dore Doreen Dorelia Dorella Dorelle Dorena Dorene Doretta Dorette Dorey Dorfman Dori Doria Dorian Dorians Doric Dorical Dorice Doricise Doricism Doricize Doriden Dorididae Dorie Dorin Dorina Dorinda Dorine Dorion Doris Dorisa Dorise Dorism Dorison Dorita Doritis Doritos Dorize Dorkas Dorking Dorkings Dorkus Dorlisa Dorloo Dorman Dormobile Dormobiles Dorn Dornbirn Dornier Dornsife Doro Dorobo Dorobos Dorolice Dorolisa Doronicum Dorosoma Dorotea Doroteya Dorothea Dorothee Dorothi Dorothy Dorpat Dorr Dorran Dorrance Dorree Dorren Dorri Dorrie Dorris Dorry Dorset Dorsets Dorsetshire Dorsey Dorsibranchiata Dorsman Dorsobranchiata Dorstenia Dorsy Dort Dorthea Dorthy Dorticos Dorticus Dortmund Dorton Dorus Dorweiler Dorwin Dory Doryanthes Dorylinae Doráti Doré Doscher Dosh Dosi Dosia Dosinia Dositheans Dospalos Doss Dostoevski Dostoevskian Dostoevsky Dostoievski Dostoyevski Dostoyevskian Dostoyevsky Doswell Dot Dothan Dothideacea Dothideales Dothidella Dothiorella Doti Doto Dotonidae Dotson Dott Dotti Dottie Dottore Dotty Doty Dou Douai Douala Douay Doubleday Doubler Doubs Doucette Douds Doug Dougal Dougald Dougall Dougherty Doughman Doughton Doughty Dougie Douglas Douglass Douglassville Douglasville Dougy Doukhobor Doukhobors Doukhobortsy Doukhobory Doulton Doumergue Dounreay Douro Douschka Dousman Douty Douville Douw Dov Dove Dover Dovev Dovray Dovyalis Dovzhenko Dow Dowagiac Dowd Dowdell Dowden Dowding Dowell Dowelltown Dowieism Dowieite Dowland Dowlen Dowling Dowmetal Down Downall Downe Downes Downey Downie Downies Downieville Downing Downingia Downingtown Downpatrick Downs Downsville Downton Downy Dows Dowski Dowson Dowzall Doxantha Doxia Doy Doykos Doyle Doylestown Doyline Doyon Dozier Dq Dr Draba Drabeck Dracaena Dracaenaceae Draco Dracocephalum Dracon Draconian Draconianism Draconianisms Draconic Draconically Draconid Draconis Draconism Dracontium Dracula Dracut Draffin Dragelin Drago Dragon Dragone Dragoon Draguignan Drain Drais Drake Drakensberg Drakesboro Drakesville Dralon Dramamine Dramamines Drambuie Drammen Drances Drancy Drandell Drano Draparnaldia Drape Draper Drasco Drassidae Drau Drava Drave Dravida Dravidian Dravidians Dravidic Dravosburg Drawcansir Drawcansirs Dray Drayden Drayton Dre Dream Dreams Dreamtime Dreamtimes Dreann Drebbel Dred Dreda Dreddy Dredi Dreeda Dreher Dreibund Dreisch Dreiser Dreiserian Dreissensia Dremann Dren Drenmatt Drennen Drente Drenthe Drepanaspis Drepanidae Drepanididae Drepanis Dreparnaudia Drer Drescher Dresden Dressel Dresser Dressler Drew Drewett Drewryville Drews Drewsey Drexel Drexler Dreyer Dreyfus Dreyfusard Dreyfusards Dreyfusism Dreyfusist Dreyfuss Dric Drice Drida Drifting Drifton Driftwood Driggs Drimys Drin Drina Drinkwater Dripps Driscoll Driskill Drisko Drislane Dristan Drobman Drogheda Drogin Droitwich Drokpa Drolet Dromaeognathae Dromaeus Drome Dromiacea Dromiceiidae Dromiceius Dromicia Dromornis Drona Dronski Drood Drooff Dropbox Droschken Drosera Droseraceae Drosophila Drosophilidae Drosophyllum Dru Druce Druci Drucie Drucill Drucilla Drucy Drud Drudge Drue Druella Drug Drugge Drugi Druid Druidess Druidesses Druidic Druidical Druidism Druidisms Druids Drukpa Drummond Drummonds Drumore Drumright Drums Drupa Drupaceae Drury Drus Druse Drusean Drusedom Druses Drusi Drusian Drusie Drusilla Drusus Drusy Druz Druze Druzean Druzes Druzian Dry Dryad Dryas Dryasdust Dryden Drydenian Drydenic Drydenism Drye Dryfoos Drygalski Drygas Drygases Drynaria Dryobalanops Dryope Dryopes Dryophyllum Dryopians Dryopithecinae Dryopithecus Dryops Dryopteris Dryprong Drysdale Ds Dschubba Dseldorf Du DuBois DuBose DuPont Duala Dualmutef Duane Duanesburg Duarte Duax Dubach Dubai Dubayy Dubberly Dubbo Dubcek Dubenko Dubhe Dubhgall Dubinsky Dublin Dubliner Dubliners Dubna Dubois Duboisia Dubonnet Dubre Dubrovnik Dubuffet Dubuque Duc Ducal Ducan Ducasse Duce Duchamp Duchampian Duchenne Duchesne Duchesnea Duchess Duck Ducktown Duckwater Duclos Duco Ducommun Ducor Ducula Duculinae Dud Dudden Dudelsack Dudevant Dudley Dudleya Duena Duenweg Duer Duero Duessa Duester Dueua Duewest Dufay Duff Duffau Duffie Duffield Duffy Dufur Dufy Dugaid Dugald Dugan Dugas Duggan Dugger Dugongidae Dugspur Dugway Duhamel Duhl Duhr Duisburg Duit Dukakis Dukas Duke Dukey Dukhobor Dukhobors Dukhobortsy Dukhobory Dukie Duky Dulac Dulaney Dulanganes Dulat Dulce Dulcea Dulci Dulcia Dulciana Dulcibelle Dulcie Dulcin Dulcine Dulcinea Dulcinist Dulcitone Dulcle Dulcy Duleba Dulla Dulles Dullsville Dullsvilles Dulsea Duluth Duluthian Duluthians Dulwich Dulzura Duma Dumaguete Dumah Dumanian Dumarao Dumas Dumbarton Dumbartonshire Dumbledore Dumbo Dumfries Dumfriesshire Dumm Dumond Dumont Dumontia Dumontiaceae Dumpster Dumpsters Dumpty Dumuzi Dumyat Dun Duna Dunaburg Dunaj Dunant Dunarea Dunaville Dunaway Dunbar Dunbarton Dunbartonshire Dunc Duncan Duncannon Duncansville Duncanville Dunciad Duncombe Dundalk Dundas Dundee Dundonian Dundonians Dundrearies Dundreary Dunedin Dunellen Dunfermline Dungan Dungannin Dungannon Dungeness Dunham Dunkard Dunkards Dunker Dunkerque Dunkers Dunkerton Dunkin Dunkirk Dunkirker Dunkirks Dunkirque Dunlap Dunlavy Dunleary Dunlevy Dunlo Dunlop Dunlops Dunlow Dunmor Dunmore Dunmow Dunn Dunne Dunnegan Dunnell Dunnellon Dunnigan Dunning Dunnsville Dunnville Dunois Dunoon Dunreith Duns Dunsany Dunseath Dunseith Dunsinane Dunsmuir Dunson Dunstable Dunstan Dunstaple Dunston Dunthorne Dunton Duntroon Duntson Dunwoody Duong Dupaix Duparc Duperrault Dupin Dupleix Duplessis Duplicidentata Dupo Dupont Dupr Dupra Dupre Dupree Dupuis Dupuy Dupuyer Dupuytren Duquesne Duquette Duquoin Dur Duracell Duralumin Duran Durance Durand Durandarte Durango Durani Durant Duranta Durante Duranty Durarte Durazzo Durban Durbin Durene Durer Dureresque Durex Durey Durga Durgy Durham Durhams Durhamville Duricef Duricefs Durindana Durio Duriron Durius Durkee Durkheim Durkheimian Durkin Durman Durnan Durning Durno Duroc Durocher Durocs Durovic Durr Durrace Durrell Durrett Durst Durstin Durston Durtschi Durufle Duruflé Durward Durware Durwin Durwood Durwyn Duryea Duryodhana Durzada Dusa Duse Dusehra Dusen Dusenberg Dusenbury Dushanbe Dushehra Dushore Duson Dussehra Dusseldorf Dussera Dusserah Dust Dustan Dustbuster Duster Dustie Dustin Dustman Duston Dusty Dusun Dusza Dutch Dutcher Dutchify Dutchly Dutchman Dutchmen Dutchtown Dutchwoman Dutchwomen Dutchy Duthie Dutton Dutzow Duval Duvalier Duvall Duveneck Duvida Duwalt Duwamish Duwamishes Duwe Duxbury Duyne Dvina Dvinsk Dvorak Dvorck Dvorák Dwain Dwaine Dwale Dwamish Dwamishes Dwan Dwane Dwayne Dweck Dwight Dwinnell Dworak Dworman Dworshak Dwyer Dwyka Dy Dyak Dyakish Dyaks Dyal Dyan Dyana Dyane Dyann Dyanna Dyanne Dyas Dyassic Dyaus Dyce Dyche Dycusburg Dyer Dyersburg Dyersville Dyess Dyfed Dygal Dygall Dygert Dyirbal Dyirbals Dyke Dyl Dylan Dylana Dylane Dymas Dymoke Dympha Dymphia Dyna Dynah Dynastes Dynastides Dynastinae Dynel Dynels Dyophysite Dyophysitic Dyophysitical Dyophysitism Dyothelete Dyotheletian Dyotheletic Dyotheletical Dyotheletism Dyothelism Dyothelite Dyothelitism Dysart Dyson Dyssodia Dytiscidae Dytiscus Dyula Dyun Dyushambe Dzaudzhikau Dzerzhinsk Dzerzhinsky Dzhambul Dzhugashvili Dzoba Dzongka Dzugashvili Dzungar Dzungaria Dzyubin Dáil Dönitz Dürer Düsseldorf E EA EAA EACSO EADAS EADASNM EADASS EAEO EAFB EAK EAM EARN EAROM EAS EASD EASI EAU EBCDIC EBI EBS EC ECA ECAD ECAFE ECAP ECASS ECC ECCM ECCS ECD ECDO ECE ECF ECG ECL ECLA ECLSS ECM ECMA ECMAScript ECN ECO ECOM ECOSOC ECOWAS ECPA ECPT ECR ECS ECSA ECSC ECT ECU ECUs ECV ED EDA EDAC EDB EDC EDD EDES EDF EDGAR EDI EDIF EDO EDP EDS EDSX EDT EDTA EDTCC EE EEC EECT EEDP EEE EEG EEHO EEI EEL EEM EEO EEOC EEPROM EF EFD EFI EFIS EFL EFRAP EFS EFT EFTA EG EGA EGO EGP EGREP EGRET EGmc EHF EHFA EHP EI EIA EIB EIN EINE EIS EISA EISB EISS EITS EJASA EKG EKTS EL ELAS ELC ELDO ELF ELISA ELLE ELM ELO ELP ELT ELV EM EMA EMACS EMAIL EMC EMF EMI EML EMP EMPRESS EMR EMS EMT EMU EMet END ENE ENEA ENET ENFIA ENG ENIAC ENS ENT EO EOD EOE EOF EOM EOS EOT EOTT EP EPA EPD EPL EPNS EPOS EPPS EPRI EPROM EPS EPSCS EPSF EPSI EPT EPTS EPUB EPW EQ EQUEL ER ERA ERAR ERD ERDA ERE EREP ERICA ERISA ERL ERP ERS ERT ERU ERV ES ESA ESAC ESB ESD ESDI ESE ESF ESH ESI ESIS ESL ESM ESMD ESN ESO ESOP ESP ESPEC ESPN ESPS ESR ESRO ESS ESSEX ESSX EST ESU ET ETA ETACC ETAS ETC ETD ETF ETFD ETH ETLA ETN ETO ETR ETS ETSACI ETSI ETSSP ETV EU EUC EULA EULAs EUNET EUUG EUV EUVE EV EVA EVX EW EWO EWOS EWS EXPO Ea Eachelle Eachern Eada Eade Eadie Eadith Eadmund Eads Eadwig Eadwina Eadwine Eaetion Eagan Eagar Eagarville Eagle Eagles Eaglesmere Eagletown Eagleville Eaineant Eakins Eakly Eal Ealasaid Ealing Eamon Eanes Eanore Eardley Earhart Earl Earla Earle Earleen Earlene Earleton Earleville Earley Earlham Earlie Earlimart Earline Earling Earlington Earlsboro Earlton Earlville Early Earlysville Earnest Earnestine Earnhardt Earp Earth Eartha Earthshaker Earvin Easley East Eastbourne Eastender Eastenders Easter Easterly Eastern Easterner Easterners Easternism Easternly Easters Eastertide Eastertides Eastlake Eastland Eastleigh Eastman Easton Eastre Easts Eastside Eastwood Eatanswill Eaton Eatonton Eatontown Eatonville Eatton Eauclaire Eaugalle Eaves Eb EbN EbS Eba Eban Ebarta Ebba Ebbarta Ebberta Ebbie Ebby Eben Ebenaceae Ebenales Ebeneezer Ebeneser Ebenezer Ebensburg Eberhard Eberhart Eberle Eberly Ebert Eberta Eberthella Eberto Ebervale Ebeye Ebionism Ebionite Ebionites Ebionitic Ebionitism Ebionitist Ebionize Eblana Eblis Ebn Ebner Ebneter Eboe Eboh Ebola Ebolas Eboli Ebonee Ebonics Ebony Eboracum Ebro Ebsen Eburna Ecardines Ecaudata Ecballium Ecbatana Ecca Eccl Eccles Ecclesiastes Ecclesiasticus Ecclus Ecevit Echecles Echegaray Echeloot Echemus Echeneidae Echeneididae Echeneis Echetus Echeveria Echeverraea Echeverria Echidna Echidnidae Echikson Echimys Echinacea Echinidea Echinocactus Echinocaris Echinocereus Echinochloa Echinoderes Echinoderidae Echinoderma Echinodermata Echinodorus Echinoidea Echinomys Echinopanax Echinops Echinorhinidae Echinorhinus Echinorhynchus Echinospermum Echinosphaerites Echinosphaeritidae Echinostoma Echinostomatidae Echinozoa Echion Echis Echites Echium Echiurida Echiuroidea Echiurus Echo Echola Echols Echuca Eciton Eck Eckardt Eckart Eckblad Eckehart Eckel Eckelson Eckerman Eckermann Eckert Eckerty Eckhardt Eckhart Eckley Eckman Eckmann Eclectic Eclectics Eclogues Eco Ecole Econah Econometrica Economite Economy Ecorse Ecru Ecstasies Ecstasy Ecthesis Ectocarpaceae Ectocarpales Ectocarpus Ectognatha Ectoparasitica Ectopistes Ectoprocta Ector Ectotrophi Ecua Ecuador Ecuadoran Ecuadorans Ecuadorean Ecuadoreans Ecuadorian Ecuadorians Ed EdB EdD EdM EdS Eda Edam Edams Edan Edana Edaphosauria Edaphosaurus Edberg Edbert Edcouch Edd Edda Eddaic Eddana Eddas Eddery Eddi Eddic Eddie Eddina Eddington Eddra Eddy Eddystone Eddyville Ede Edea Edee Edeline Edelman Edelson Edelstein Edelsten Eden Edenic Edenisation Edenise Edenization Edenize Edens Edentata Edenton Edenville Ederle Edessa Edessan Edessene Edestosaurus Edette Edgar Edgard Edgardo Edgars Edgarton Edgartown Edge Edgefield Edgehill Edgeley Edgell Edgemont Edgemoor Edgerton Edgewater Edgewood Edgeworth Edhessa Edholm Edi Edie Edik Edin Edina Edinboro Edinburg Edinburgh Edirne Edison Edita Edith Editha Edithe Ediva Ediya Edla Edley Edlin Edlun Edlyn Edman Edmanda Edme Edmea Edmead Edmee Edmeston Edmon Edmond Edmonda Edmonde Edmondo Edmonds Edmondson Edmonson Edmonton Edmontonian Edmontonians Edmore Edmund Edmunda Edna Ednas Edneyville Ednie Edny Edo Edom Edomite Edomites Edomitic Edomitish Edon Edoni Edora Edos Edouard Edra Edrea Edrei Edriasteroidea Edric Edrich Edrick Edrioasteroid Edrioasteroidea Edriophthalma Edris Edrock Edroi Edroy Edsel Edsels Edson Eduard Eduardo Educabilia Education Eduino Eduskunta Edva Edvard Edveh Edwall Edward Edwardean Edwardeanism Edwardian Edwardiana Edwardianism Edwardianisms Edwardians Edwardine Edwardo Edwards Edwardsburg Edwardsia Edwardsian Edwardsianism Edwardsiidae Edwardsport Edwardsville Edwin Edwina Edwine Edwy Edwyna Edy Edyie Edyth Edythe Eek Eerotema Eetion Eeyore Efahan Efaita Efatese Effexor Effexors Effie Effingham Effodientia Effy Effye Efik Efiks Efland Eforia Efrain Efram Efrem Efremov Efren Efron Efthim Eg Egadi Egan Egarton Egba Egbert Egbo Egeberg Egede Egegik Egeland Eger Egeria Egerias Egerton Egesta Eggett Eggleston Eggo Egham Egide Egidio Egidius Egin Egk Eglamore Eglanteen Eglantine Eglevsky Eglin Eglon Egmont Egnar Egocerus Egon Egor Egretta Egwan Egwin Egypt Egyptiac Egyptian Egyptianisation Egyptianise Egyptianised Egyptianising Egyptianism Egyptianization Egyptianize Egyptianized Egyptianizing Egyptians Egypticity Egyptise Egyptize Egyptologer Egyptologic Egyptological Egyptologies Egyptologist Egyptologists Egyptology Ehatisaht Ehden Ehling Ehlke Ehman Ehr Ehrenberg Ehrenbreitstein Ehrenburg Ehretia Ehretiaceae Ehrhardt Ehrlich Ehrman Ehrsam Ehud Ehudd Eibar Eichendorff Eichhornia Eichman Eichmann Eichstadt Eidson Eielson Eifel Eiffel Eiger Eigg Eighties Eijkman Eikonogen Eilat Eileen Eileithyia Eilis Eilshemius Eimak Eimeria Eimile Eimmart Einar Einberger Eindhoven Einhorn Einstein Einsteinian Einsteins Einthoven Eioneus Eipper Eire Eireannach Eirena Eirene Eirikson Eisele Eisen Eisenach Eisenberg Eisenhart Eisenhower Eisenstadt Eisenstark Eisenstein Eiser Eisinger Eisk Eisler Eisner Eiswein Eisweins Eiten Eitzen Ejam Ekalaka Ekaterina Ekaterinburg Ekaterinodar Ekaterinoslav Ekoi Ekron Ekronite Ekstrom Ektachrome Ekwok El Ela Elachista Elachistaceae Elaeagnaceae Elaeagnus Elaeis Elaeocarpaceae Elaeocarpus Elaeococca Elaeodendron Elagabalus Elah Elaina Elaine Elais Elam Elamite Elamites Elamitic Elamitish Elana Eland Elane Elanor Elanus Elaos Elaphe Elaphebolia Elaphebolion Elaphodus Elaphoglossum Elaphomyces Elaphomycetaceae Elaphrium Elaphurus Elapidae Elapinae Elaps Elapsoidea Elara Elasmobranchii Elasmosaurus Elasmotherium Elastoplast Elastoplasts Elat Elata Elateridae Elath Elatha Elatia Elatinaceae Elatine Elatus Elavil Elavils Elayne Elazaro Elazig Elba Elbart Elbas Elbassan Elbe Elberfeld Elberon Elbert Elberta Elbertina Elbertine Elberton Elbie Elbing Elbl Elblag Elboa Elbridge Elbring Elbrus Elbruz Elburn Elburr Elburt Elburtz Elburz Elche Elcho Elco Elconin Elda Elden Eldena Elder Elderon Eldersville Elderton Eldin Eldo Eldon Eldora Eldorado Eldorados Eldoree Eldoria Eldred Eldreda Eldredge Eldreeda Eldrid Eldrida Eldridge Eldwen Eldwin Eldwon Eldwun Ele Elea Elean Eleanor Eleanora Eleanore Eleatic Eleaticism Eleaticisms Eleatics Eleazar Electra Electrides Electrophoridae Electryon Eleele Eleen Eleia Elektra Elektron Elena Elene Eleni Elenor Elenore Eleocharis Eleonora Eleonore Eleph Elephantidae Elephantopus Elephas Elephus Eleroy Elery Elettaria Eleusine Eleusinia Eleusinian Eleusinianism Eleusinians Eleusinion Eleusis Eleut Eleuthera Eleutheri Eleutheria Eleutherian Eleutherios Eleutherius Eleutherococcus Eleutherodactyli Eleutherodactylus Eleutherozoa Eleva Elevs Elexa Elf Elfers Elfie Elfont Elfreda Elfrida Elfrieda Elfstan Elga Elgan Elgar Elgenia Elger Elgin Elgon Eli Elia Eliades Elian Elianic Elianora Elianore Elians Elias Eliason Eliasville Eliath Eliathan Eliathas Elicia Elicius Elida Elidad Elie Eliezer Eliga Elihu Elijah Elik Elinor Elinore Elinvar Eliot Eliotian Eliotic Eliott Eliphalet Eliphaz Elis Elisa Elisabet Elisabeth Elisabethville Elisabetta Elisavetgrad Elisavetpol Elise Elisee Eliseo Eliseus Elish Elisha Elishah Elisia Elison Elissa Elista Elita Eliz Eliza Elizabet Elizabeth Elizabethan Elizabethanise Elizabethanism Elizabethanize Elizabethans Elizabethton Elizabethtown Elizabethville Elizaville Elk Elka Elkader Elkanah Elkdom Elke Elkesaite Elkhart Elkhorn Elkin Elkins Elkland Elkmont Elkmound Elko Elkoshite Elkport Elks Elkton Elkuma Elkview Elkville Elkwood Ell Ella Ellabell Elladine Ellamae Ellamay Ellamore Ellan Ellard Ellary Ellas Ellasar Ellata Ellaville Elldridge Elle Ellen Ellenboro Ellenburg Ellendale Ellene Ellensburg Ellenton Ellenville Ellenwood Ellerbe Ellerd Ellerey Ellerian Ellersick Ellerslie Ellery Ellesmere Ellett Ellette Ellettsville Ellga Elli Ellice Ellick Ellicott Ellicottville Ellie Ellijay Ellin Ellinger Ellingston Ellington Ellinwood Elliot Elliott Elliottsburg Elliottville Ellis Ellisburg Ellison Ellissa Elliston Ellisville Ellita Ellmyer Ellon Ellora Ellord Elloree Ellsinore Ellston Ellswerth Ellsworth Ellwood Elly Ellyn Ellynn Elma Elmajian Elmaleh Elman Elmaton Elmdale Elmendorf Elmer Elmhall Elmhurst Elmina Elmira Elmmott Elmo Elmont Elmonte Elmora Elmore Elmsford Elmwood Elna Elnar Elnath Elnora Elnore Elo Eloah Elodea Elodeaceae Elodes Elodia Elodie Elohim Elohimic Elohism Elohist Elohistic Elohists Eloisa Eloise Elon Elonite Elonore Elopidae Elora Elotherium Eloy Eloyse Elpenor Elreath Elrica Elrod Elroy Els Elsa Elsah Elsan Elsass Elsberry Elsbeth Elsdon Else Elsene Elset Elsevier Elsey Elsholtzia Elsi Elsie Elsinore Elsmere Elsmore Elson Elspet Elspeth Elstan Elston Elsworth Elsy Eltanin Elton Eluard Elul Eluls Elum Elura Elurd Elva Elvah Elvaston Elvera Elverda Elverson Elverta Elvia Elvie Elvin Elvina Elvine Elvira Elvis Elvita Elvyn Elwaine Elway Elwee Elwell Elwin Elwina Elwira Elwood Elwyn Ely Elymi Elymus Elyn Elyot Elyria Elys Elysburg Elyse Elysee Elysha Elysia Elysian Elysiidae Elysium Elysiums Elyssa Elysée Elyutin Elzevier Elzevir Elzevirian Em Ema Emacs Emad Emalee Emalia Emanuel Emanuela Emanuele Emarginula Emarie Emathion Embadomonas Emballonuridae Embden Embdens Embelia Emberiza Emberizinae Embiidae Embiidina Embiodea Embioptera Embiotocidae Embla Embolomeri Embrica Embry Embryophyta Embudo Emden Emee Emeigh Emelda Emelen Emelia Emelin Emelina Emeline Emelita Emelle Emelun Emelyne Emera Emerado Emerald Emeric Emerick Emerita Emersen Emerson Emersonian Emersonianism Emery Emeryville Emesa Emesidae Emie Emigsville Emil Emile Emilee Emili Emilia Emiliano Emilie Emiline Emilio Emily Emim Emina Eminem Eminence Eminences Eminescu Emington Emir Emirs Emiscan Emison Emitron Emlen Emlenton Emlin Emlyn Emlynn Emlynne Emm Emma Emmalee Emmalena Emmaline Emmalyn Emmalynn Emmalynne Emmanuel Emmaus Emmeleen Emmelene Emmelina Emmeline Emmen Emmental Emmentaler Emmentalers Emmentals Emmenthal Emmenthaler Emmenthalers Emmenthals Emmer Emmeram Emmerich Emmerie Emmery Emmet Emmetsburg Emmett Emmey Emmi Emmie Emmies Emmit Emmitsburg Emmonak Emmons Emmott Emmuela Emmy Emmye Emmylou Emmys Emogene Emory Emp Empedoclean Empedocles Empeo Empetraceae Empetrum Empfindung Empididae Empidonax Empire Empires Empirin Emporia Emporium Empress Empson Empusa Empusae Emrich Ems Emsmus Emsworth Emydea Emydidae Emydinae Emydosauria Emyle Emylee Emys Ena Enajim Enalda Enaliornis Enaliosauria Enalus Enarete Encaenia Encampment Encarta Enceladus Encelia Encephalartos Enchelycephali Enchodontid Enchodontidae Enchodontoid Enchodus Enchytraeidae Enchytraeus Encina Encinal Encinitas Encino Encke Encrata Encratia Encratic Encratis Encratism Encratite Encrinidae Encrinoidea Encrinus Encyclopedist Encyclopedists Encyrtidae End Endamoeba Endamoebidae Endeavor Endecott Endeis Endeos Ender Enderlin Enders Endicott Endo Endoceras Endoceratidae Endogenae Endomyces Endomycetaceae Endoparasitica Endophyllaceae Endophyllum Endoprocta Endopterygota Endor Endora Endothia Endothrix Endotrophi Endres Endromididae Endromis Endymion Eneas Enenstein Eneolithic Enesco Enescu Enewetak Enfield Eng Engadine Engager Engdahl Engeddi Engedi Engedus Engel Engelbert Engelberta Engelhard Engelhart Engelmannia Engels Engen Engenia Enghalskrug Engiish England Englander Englanders Engle Englebert Engleman Engler Englerophoenix Englewood Englifier Englify Englis English Englishable Englished Englisher Englishes Englishhood Englishing Englishise Englishism Englishisms Englishize Englishly Englishman Englishmen Englishness Englishnesses Englishries Englishry Englishtown Englishwoman Englishwomen Engracia Engraulidae Engraulis Engud Engvall Engystomatidae Enhydra Enhydrinae Enhydris Enicuridae Enid Enif Eniopeus Eniwetok Enka Enki Enkidu Enkimdu Enlightenment Enlightenments Enlil Enloe Enneandria Ennice Enning Ennis Enniskillen Ennius Ennomus Ennosigaeus Eno Enoch Enochic Enochs Enola Enon Enone Enopla Enoree Enos Enosis Enosises Enovid Enovids Enrica Enrichetta Enrico Enrika Enrique Enriqueta Enron Ens Enschede Ensenada Enshih Ensiferi Ensign Ensoll Ensor Entada Entamoeba Entebbe Entellus Entelodon Ententophil Enterocoela Enterolobium Enteromorpha Enteropneusta Enterprise Entiat Entoloma Entomophaga Entomophila Entomophthora Entomophthoraceae Entomophthorales Entomosporium Entomostraca Entoprocta Entotrophi Entriken Entryphone Entryphones Entwistle Entyloma Enugu Enukki Enumclaw Enver Enville Enyalius Enyedy Enyeus Enyo Enzed Enzedder Enzedders Eo Eoanthropus Eocarboniferous Eocene Eodevonian Eogaea Eogaean Eogene Eoghanacht Eohippus Eoin Eola Eolanda Eolande Eolia Eolian Eolians Eolic Eolics Eoline Eolithic Eomecon Eopalaeozoic Eopaleozoic Eos Eosaurus Eozoic Eozoon Ep Epacridaceae Epacris Epaminondas Epanagoge Epanorthidae Epaphus Eparchean Epcot Epeans Epeira Epeiridae Epeirot Eperua Epes Epeus Eph Ephedra Ephedraceae Ephemera Ephemerida Ephemeridae Ephemeroptera Ephes Ephesian Ephesians Ephesine Ephesus Ephialtes Ephraim Ephraimite Ephraimites Ephraimitic Ephraimitish Ephraitic Ephram Ephrata Ephrathite Ephrayim Ephrem Ephthalite Ephthianura Ephydra Ephydridae Epibaterium Epibaterius Epicaridea Epicarides Epicaste Epicauta Epiceratodus Epichristian Epicoela Epicrates Epictetian Epictetus Epicurean Epicureanism Epicureanisms Epicureans Epicurise Epicurism Epicurisms Epicurize Epicurus Epidaurus Epidemiarum Epidendron Epidendrum Epidermophyton Epifano Epigaea Epigenes Epigoni Epigonichthyidae Epigonichthys Epigonus Epihippus Epikouros Epilachna Epilachnides Epilobiaceae Epilobium Epimachinae Epimedium Epimenidean Epimenides Epimetheus Epimethius Epinephelidae Epinephelus Epione Epipactis Epipaleolithic Epiph Epiphania Epiphanies Epiphany Epiphegus Epiphyllum Epipsychidion Epirote Epirotes Epirotic Epirus Epis Episc Episcopal Episcopalian Episcopalianise Episcopalianism Episcopalianisms Episcopalianize Episcopalians Episcopally Episcopals Epist Epistle Epistler Epistlers Epistles Epistylis Epitoniidae Epitonium Epizoa Epner Epoisses Epomophorus Epona Epp Epperson Eppes Eppie Epping Epps Eppy Eproboscidea Epsilon Epsom Epson Epstein Eptatretidae Eptatretus Epulafquen Epworth Equality Equanil Equidae Equinunk Equisetaceae Equisetales Equisetinae Equisetum Equity Equulei Equuleus Equus Er Eradis Eragrostis Eran Eranthemum Eranthis Eras Erasme Erasmian Erasmianism Erasmians Erasmo Erasmus Erastatus Eraste Erastes Erastian Erastianism Erastianisms Erastianize Erastians Erastus Erath Erato Eratosthenes Erava Erb Erbaa Erbacon Erbe Erbes Erbil Erce Erceldoune Ercilla Erda Erdah Erdda Erde Erdei Erdgeist Erdman Erdrich Erebus Erech Erechim Erechtheum Erechtheus Erechtites Erector Erectors Erek Erelia Eremian Eremochaeta Eremopteris Eremurus Erena Erenburg Ereshkigal Ereshkigel Erethizon Erethizontidae Eretrian Ereuthalion Erevan Erewhon Erewhonian Erfert Erfurt Ergane Ergener Erginus Ergotrate Erhard Erhardt Erhart Eri Erian Erianthus Eriboea Eric Erica Ericaceae Ericales Erich Ericha Erichthonius Erick Ericka Ericksen Erickson Ericson Ericsson Erida Eridani Eridanid Eridanus Eridu Erie Eries Erieville Erigena Erigenia Erigeron Eriglossa Erigone Eriha Erik Erika Erikson Eriksson Eriline Erimanthus Erin Erina Erinaceidae Erinaceus Erine Erinize Erinn Erinna Erinyes Erinys Eriobotrya Eriocaulaceae Eriocaulon Eriocomi Eriodendron Eriodictyon Eriogonum Eriophorous Eriophorum Eriophyes Eriophyidae Eriosoma Eriphyle Eris Erises Eristalis Erithacus Eritrea Eritrean Eritreans Erivan Erkan Erl Erland Erlander Erlandson Erlang Erlangen Erlanger Erle Erleena Erlene Erlenmeyer Erlewine Erlin Erlina Erline Erlinna Erlond Erma Ermalinda Ermanaric Ermani Ermanno Ermanrich Erme Ermeena Ermengarde Ermentrude Ermey Ermin Ermina Ermine Erminia Erminie Erminna Ern Erna Ernald Ernaldus Ernaline Ernani Erne Ernest Ernesta Ernestine Ernesto Ernestus Ernestyne Ernie Ernst Ernul Erny Erodium Eroica Eros Eroses Erotes Erotylidae Erpetoichthys Errantia Errecart Errhephoria Errick Errol Erroll Ersar Erse Erskine Ertebolle Ertha Eruca Erulus Erund Erv ErvIn Ervin Ervine Erving Ervipiame Ervum Ervy Erwin Erwinia Erwinna Erwinville Erycina Erymanthian Erymanthos Erymanthus Eryn Eryngium Eryon Eryops Erysibe Erysichthon Erysimum Erysipelothrix Erysiphaceae Erysiphe Erythea Erytheis Erytheos Erythraea Erythraean Erythraeidae Erythraeum Erythrina Erythrinidae Erythrinus Erythrochaete Erythronium Erythroxylaceae Erythroxylon Erythroxylum Eryx Erzerum Erzgebirge Erzurum Es Esau Esbensen Esbenshade Esbjerg Esbon Esc Escalante Escalator Escallonia Escalloniaceae Escalon Escanaba Escatawpa Escaut Esch Escher Escherichia Eschscholtzia Escoffier Escoheag Escondido Escorial Escudero Esculapian Escurial Esd Esdraelon Esdras Esdud Esebrias Esenin Esfahan Eshelman Esher Eshkol Eshman Esidrix Esk Eskdale Eskies Eskil Eskill Eskilstuna Eskimauan Eskimo Eskimoan Eskimoic Eskimoid Eskimoised Eskimoized Eskimologist Eskimology Eskimos Eskisehir Eskishehir Esko Eskualdun Eskuara Esky Eslie Esma Esmaria Esmark Esme Esmeralda Esmeraldan Esmeraldas Esmerelda Esmerolda Esmond Esmont Esocidae Esopus Esox Espana Espanola Espartero Esparto Espaua España Esperance Esperantic Esperantidist Esperantido Esperantism Esperantisms Esperantist Esperantists Esperanto Esperanza Espinoza Espoo Esposito Espriella Espronceda Espy Esq Esquiline Esquimau Esquimauan Esquimaux Esquipulas Esquire Esquires Esra Essa Essam Essaouira Essedones Esselen Esselenian Essen Essencia Essene Essenes Essenian Essenianism Essenic Essenical Essenis Essenise Essenism Essenisms Essenize Essequibo Essex Essexfells Essexville Essie Essig Essinger Essington Essonne Essy Esta Establishment Establishmentarian Establishmentarians Establishments Estacada Estaing Estancia Estas Este Esteban Estel Estela Estele Esteli Estell Estella Estelle Estelline Esten Ester Esterhazy Esterházy Estero Estes Estevan Estey Esth Esthacyte Esther Estheria Estheriidae Estherville Estherwood Esthonia Esthonian Esthonians Estienne Estill Estis Estonia Estonian Estonians Estoril Estotiland Estrada Estrella Estrellita Estremadura Estremaduran Estremadurans Estren Estrildidae Estrin Estron Estus Eszencia Esztergom Eszterhazy Et Eta Etam Etamin Etan Etana Etas Etchareottine Etchimin Etem Eteocles Eteoclus Eteocretan Eteocretes Eteocreton Etesian Etesians Eth Ethan Ethanim Ethban Ethben Ethbin Ethbinium Ethbun Ethe Ethel Ethelbert Ethelda Ethelee Ethelene Ethelette Ethelin Ethelind Ethelinda Etheline Ethelred Ethelstan Ethelsville Ethelyn Ethelynne Etheneldeli Etheostoma Etheostomidae Etheostominae Etherege Etheria Etheriidae Ethernet Ethernets Ethiop Ethiope Ethiopes Ethiopia Ethiopian Ethiopians Ethiopic Ethiops Ethlyn Ethyl Ethyle Etienne Etiwanda Etka Etlan Etna Etnean Etobicoke Etoile Etom Eton Etonian Etonians Etons Etowah Etr Etra Etrem Etruria Etrurian Etrurians Etruscan Etruscans Etruscologist Etruscology Etta Ettabeth Ettari Ettarre Etters Etterville Etti Ettie Ettinger Ettore Ettrick Etty Etz Etzel Eu Euaechme Euahlayi Euascomycetes Eubacteriales Eubank Eubasidii Euboea Euboean Euboeans Euboic Eubranchipus Eubuleus Eucalyptus Eucarida Eucha Eucharis Eucharist Eucharistic Eucharistical Eucharistically Eucharists Eucharitidae Euchenor Euchite Euchlaena Euchlorophyceae Euchorda Eucirripedia Eucken Euclea Eucleidae Euclid Euclidean Euclideanism Euclides Euclidian Eucnemidae Eucommia Eucommiaceae Euconjugatae Eucopepoda Eucosia Eucosmidae Eucryphia Eucryphiaceae Euctemon Eudemian Eudendrium Eudeve Eudist Eudo Eudoca Eudocia Eudora Eudorina Eudorus Eudosia Eudoxia Eudoxian Eudoxus Eudromias Eudyptes Euell Euemerus Euergetes Eufaula Eug Eugane Euganie Eugen Eugene Eugenia Eugenides Eugenie Eugenio Eugenius Eugeniusz Eugenle Eugine Euglandina Euglena Euglenaceae Euglenales Euglenida Euglenidae Euglenineae Euglenoidina Eugnie Eugregarinida Eugubine Eugubium Euh Euhemerism Euhemerisms Euhemerus Euippe Eula Eulalee Eulalia Eulaliah Eulalie Eulamellibranchia Eulamellibranchiata Eulau Eulee Eulenspiegel Euler Eulerian Euless Eulima Eulimidae Eulis Eumaeus Eumedes Eumelus Eumenes Eumenidae Eumenidean Eumenides Eumolpides Eumolpus Eumycetes Eunectes Euneus Eunice Eunicidae Eunomia Eunomian Eunomianism Eunomus Eunson Euomphalus Euonymus Euornithes Euorthoptera Eupanorthidae Eupanorthus Eupatorium Eupatrid Eupatridae Eupatrids Euphausia Euphausiacea Euphausiidae Eupheemia Euphemia Euphemiah Euphemie Euphemus Euphorbia Euphorbiaceae Euphorbus Euphorion Euphrasia Euphratean Euphrates Euphremia Euphrosyne Euphues Euphyllopoda Euplectella Euplexoptera Euplocomi Euploeinae Euplotes Eupolidean Eupolyzoa Eupomatia Eupomatiaceae Eupora Euprepia Euproctis Euptelea Eupterotidae Eur Eurafric Eurafrican Euramerican Euraquilo Eurasia Eurasian Eurasianism Eurasians Eurasiatic Euratom Eure Eureka Euridice Euridyce Eurindic Euripidean Euripides Eurippa Euro Euroaquilo Eurobabble Eurobond Eurobonds Eurocentric Eurocentrism Eurocentrisms Eurocentrist Eurocentrists Euroclydon Eurocommunism Eurocommunisms Eurocommunist Eurocommunists Eurocrat Eurocratic Eurocrats Eurocurrencies Eurocurrency Eurodollar Eurodollars Eurofighter Euromarket Euromarkets Euromart Europa Europan Europasian Europe European Europeanisation Europeanisations Europeanise Europeanised Europeanises Europeanising Europeanism Europeanisms Europeanist Europeanists Europeanization Europeanizations Europeanize Europeanized Europeanizes Europeanizing Europeanly Europeans Europeward Europhile Europhiles Europocentric Europocentrism Europocentrisms Europoort Euros Euroseat Euroseats Eurospeak Eurosterling Eurotas Euroterminal Eurotunnel Eurovision Eurus Euryalae Euryale Euryaleae Euryalida Euryalus Euryanthe Eurybates Eurybia Eurycerotidae Euryclea Euryclia Eurydamas Eurydice Eurygaea Eurygaean Euryganeia Eurylaimi Eurylaimidae Eurylaimus Eurylochus Eurymachus Eurymede Eurymedon Eurymus Eurynome Eurypelma Eurypharyngidae Eurypharynx Eurypterida Eurypteroidea Eurypterus Eurypyga Eurypygae Eurypygidae Eurypylus Eurysaces Eurysthenes Eurystheus Eurytion Eurytomidae Eurytus Euscaro Eusebian Eusebio Eusebius Euselachii Euskaldun Euskara Euskarian Euskaric Euskera Euspongia Eustace Eustache Eustachian Eustachio Eustachius Eustacia Eustashe Eustasius Eustathian Eustatius Eustazio Eusthenopteron Eustis Euston Eusuchia Eutaenia Eutaw Eutawville Euterpe Euterpean Euthamia Eutheria Euthycomi Euthyneura Euton Eutopia Eutopian Eutychian Eutychianism Eutychianus Euxine Ev Eva Evadale Evadne Evadnee Evaleen Evalyn Evan Evander Evang Evangelia Evangelic Evangelical Evangelicalism Evangelicalisms Evangelicals Evangelin Evangelina Evangeline Evangelist Evangelists Evangels Evania Evaniidae Evanne Evannia Evans Evansdale Evansport Evanston Evansville Evant Evante Evanthe Evanthia Evarglice Evaristus Evars Evart Evarts Evatt Eve Evea Evehood Eveleen Eveless Eveleth Evelin Evelina Eveline Evelinn Evelunn Evelyn Evelynne Evemerus Even Evendale Eveningshade Evenki Evenkis Evensong Evensongs Evensville Eventognathi Eventus Evenus EverReady Everara Everard Everdur Eveready Evered Everes Everest Everett Everette Everetts Everettville Everglades Evergood Evergreen Everhart Everick Everly Evernia Everrs Evers Eversole Everson Evert Evertebrata Everton Everyman Everymen Everywoman Everywomen Eves Evesham Evetta Evette Evey Evian Evie Evin Evington Evinston Evipal Evista Evistas Evita Evius Evnissyen Evodia Evonne Evonymus Evora Evoy Evreux Evros Evslin Evtushenko Evva Evvie Evvoia Evvy Evy Evyleen Evyn Ewa Ewald Ewall Ewan Eward Ewart Ewe Ewell Ewen Ewenki Ewenkis Ewens Ewer Ewes Ewigkeit Ewing Ewold Ex Exarchic Exarchist Exaudi Exc Excalibur Excedrin Excellence Excellences Excellencies Excellency Excello Excelsior Exchangite Exchangites Exchequer Exchequers Excipulaceae Excoecaria Exe Exeland Exercycle Exercycles Exeter Exile Exira Exline Exmoor Exmoors Exmore Exmouth Exoascaceae Exoascales Exoascus Exobasidiaceae Exobasidiales Exobasidium Exocet Exocets Exochorda Exocoetidae Exocoetus Exocyclica Exocycloida Exod Exodus Exogenae Exogonium Exogyra Exon Exonian Exopterygota Exostema Explorer Explorers Expressionism Expressionisms Expressionismus Expressionist Expressionistic Expressionistically Expressionists Extasie Extasiie Exton Extravagantes Extremadura Exultet Exuma Exxon Eyck Eyde Eydie Eyeish Eyeleen Eyeti Eyetie Eyeties Eyla Eyota Eyre Eysenck Eysk Eyskens Eytie Eyties Ez Ezana Ezar Ezara Ezaria Ezarra Ezarras Ezechias Ezechiel Ezek Ezekiel Ezel Ezequiel Eziama Eziechiele Ezmeralda Ezr Ezra Ezri Ezzard Ezzo F FA FAA FAAAS FAB FACD FACOM FACS FAD FAE FAG FAI FAM FAO FAQ FAQL FAQs FAR FARNET FAS FASST FAST FAT FAX FAdm FB FBA FBI FBO FBV FC FCA FCAP FCC FCCSET FCFS FCG FCIC FCO FCRC FCS FCT FD FDA FDDI FDDIII FDHD FDIC FDM FDP FDR FDX FE FEA FEAF FEB FEC FED FEDSIM FEHQ FEM FEMA FEMF FEP FEPC FEPS FERA FERS FET FEV FF FFA FFC FFI FFRDC FFS FFT FFV FFVs FGA FGB FGC FGD FGREP FGS FGSA FHA FHLBA FHLMC FHMA FHST FI FIB FICA FIDE FIDO FIFA FIFO FILO FIMS FIN FINE FIO FIOC FIP FIPS FIR FIRMR FIT FITS FL FLACC FLB FLIR FLN FLOP FLOPS FLRA FLS FLT FM FMAC FMB FMC FMCS FMEA FMN FMR FMS FMk FMs FNC FNMA FNPA FO FOAC FOB FOC FOE FOFL FOIA FOIMS FOIRL FON FOOBAR FOR FORCS FORD FORM FORTRAN FOS FOSE FOT FOV FP FPA FPC FPDU FPE FPHA FPLA FPM FPO FPP FPS FPU FQDN FR FRACTAL FRAM FRB FRC FRCM FRCO FRCP FRCS FRD FRED FREE FRG FRGS FRICC FROG FRPG FRR FRS FRSL FRSS FRU FS FSA FSCM FSDO FSE FSF FSH FSK FSLIC FSR FSS FSU FSW FT FTAM FTC FTE FTG FTL FTP FTPI FTPed FTPing FTPs FTS FTW FTZ FUBAR FUD FUDs FUS FUSE FV FW FWA FWD FWHM FWIW FX FY FYA FYI FYS FZS Faba Fabaceae Fabe Fabens Faber Faberg Faberga Faberge Faberges Fabergé Fabi Fabian Fabianism Fabianisms Fabianist Fabianists Fabiano Fabians Fabien Fabio Fabiola Fabiolas Fabius Fablan Fables Fablon Fabozzi Fabraea Fabre Fabri Fabria Fabriane Fabrianna Fabrianne Fabriano Fabrice Fabricius Fabrienne Fabrikoid Fabrin Fabritius Fabron Fabronia Fabroniaceae Fabyan Fabyola Facebook Fachan Fachanan Fachini Fackler Factice Factor Factoryville Fadden Fadeev Faden Fadeometer Fadeyev Fadil Fadiman Fae Faedor Faenza Faeroe Faeroes Faeroese Fafner Fafnir Fagaceae Fagales Fagaly Fagan Fagara Fagelia Fagen Fagerholm Faggi Fagin Fagins Fagopyrum Fagus Fah Fahd Fahey Fahland Fahr Fahrenheit Fahrenheits Fahy Fai Faial Faina Fair Fairbank Fairbanks Fairborn Fairburn Fairbury Fairchance Fairchild Fairdale Faires Fairfax Fairfield Fairhope Fairland Fairlawn Fairlee Fairleigh Fairley Fairlie Fairman Fairmont Fairmount Fairoaks Fairplay Fairport Fairton Fairview Fairwater Fairway Fairweather Faisal Faisalabad Faison Faith Faiths Faiyum Faizabad Fajardo Fakieh Fakofo Falange Falangism Falangist Falangists Falasha Falashas Falcata Falcidian Falcinellus Falco Falcon Falcone Falconer Falcones Falconidae Falconiformes Falconinae Falcunculus Falda Falderal Faldo Falerian Falerii Falernian Falerno Falernum Faletti Falfurrias Falieri Faliero Faline Faliscan Faliscans Falisci Falito Falk Falkenhayn Falkirk Falkland Falklands Falkner Falkville Fall Falla Fallbrook Fallon Fallopian Falls Fallsburg Fallston Falmouth Falstaff Falstaffian Falster Faltboat Faludi Falun Falunian Faluns Falwell Falzetta Fama Famagusta Famechon Fameuse Famgio Familist Family Fan Fanagalo Fanchan Fancher Fanchet Fanchette Fanchie Fanchon Fancia Fancie Fancy Fanechka Fanelon Fanestil Faneuil Fanfani Fanfare Fang Fangio Fangs Fania Fannettsburg Fanni Fannia Fannie Fannin Fanning Fanny Fano Fans Fanshawe Fantasia Fantasiestck Fantasy Fante Fantee Fantes Fanti Fantis Fanwe Fanwood Fany Fanya Fapesmo Far Fara Faraday Farah Farallon Farallones Farand Farant Farber Fareham Farewell Farfugium Fargo Farhi Fari Faria Faribault Farica Farida Faridabad Farika Farinelli Farish Farisita Fariss Farkas Farl Farland Farlay Farlee Farleigh Farler Farley Farlie Farlington Farly Farman Farmann Farmdale Farmelo Farmer Farmers Farmersburg Farmersville Farmerville Farmingdale Farmington Farmingville Farmville Farnam Farnborough Farner Farnese Farnham Farnhamville Farnovian Farnsworth Farny Faro Faroe Faroeish Faroes Faroese Farouk Farquhar Farr Farra Farragut Farrah Farrakhan Farrand Farrandsville Farrar Farrel Farrell Farrica Farrington Farris Farrish Farrison Farro Farron Farrow Fars Farsang Farsi Farsis Farson Faruq Farver Farwell Fasano Fasching Fascio Fasciolaria Fasciolariidae Fasciolidae Fascism Fascismo Fascisms Fascist Fascista Fascisti Fascistic Fascists Fashing Fashoda Faso Fassbinder Fassold Fast Fasta Fastext Fasto Fata Fatagaga Fatah Fates Father Fatherhood Fathers Fathometer Fathometers Fatiha Fatima Fatimah Fatimid Fatimids Fatimite Fatimites Fatma Fatshan Fattal Faubert Faubion Faubush Faucett Fauch Faucher Faucille Faulkland Faulkner Faulknerian Faulkton Fauman Faun Fauna Faunia Faunie Faunsdale Fauntleroy Faunus Faur Faura Faure Fauré Faus Faust Fausta Faustena Faustian Faustianism Faustina Faustine Faustino Fausto Faustulus Faustus Fauve Fauver Fauves Fauvism Fauvisms Fauvist Fauvists Faux Favata Faventine Faverolle Favian Favianus Favien Favilla Favin Favonia Favonian Favonius Favosites Favositidae Favrier Favrot Fawcett Fawcette Fawkes Fawley Fawn Fawna Fawne Fawnia Fawnskin Fawzia Fax Faxan Faxen Faxon Faxun Fay Fayal Fayanne Faydra Faye Fayetta Fayette Fayetteville Fayettism Fayina Fayme Fayola Fayre Fayth Faythe Fayum Fayumic Faywood Fazeli Fctima Fe Feala Fear Feast Featherstone Feb Febe Febronian Febronianism Februaries Februarius February Februarys Fechner Fechnerian Fechter Fecunditatis Fed FedEx FedExes Fedak Fedayeen Fedders Federal Federalism Federalisms Federalist Federalists Federals Federalsburg Federica Federico Fedia Fedin Fedirko Fedor Fedora Feds Fee Feeley Feeney Feer Feesburg Fegatella Fehm Fehme Fehmgericht Fehmgerichte Fehmic Feighan Feigin Feigl Feijoa Feil Fein Feinberg Feingold Feininger Feinleib Feinstein Feisal Felapton Felch Feld Felda Felder Feldman Feldstein Feldt Felecia Feledy Felibre Felibrige Felic Felicdad Felice Felichthys Felicia Feliciana Felicidad Felicie Felicio Felicita Felicity Felicle Felidae Felike Feliks Felinae Felipa Felipe Felippe Felis Felise Felisha Felita Felix Felixstowe Feliza Felizio Fellani Fellata Fellatah Feller Felling Fellini Felliniesque Fellner Fellow Fellows Fellsmere Felske Felt Felten Feltie Felton Felty Felup Fem Feme Femi Feminine Femmine Femstat Femstats Fen Fendig Fenelia Fenella Fenelon Fenelton Fenestellidae Fengkieh Fengtien Fenian Fenianism Fenianisms Fenians Fenn Fennell Fennelly Fenner Fennessy Fennie Fennimore Fennoman Fennville Fenny Fenrir Fenris Fenriswolf Fens Fensalir Fenton Fentress Fenwick Fenzelia Feodor Feodora Feodore Feola Feosol Ferae Ferahan Feramorz Ferber Ferd Ferde Ferdiad Ferdie Ferdinana Ferdinand Ferdinanda Ferdinande Ferdus Ferdy Ferenc Fergana Fergus Ferguson Feriga Feringhee Feringi Ferino Ferio Ferison Ferlinghetti Fermanagh Fermat Fermatian Fermi Fermin Fern Ferna Fernald Fernand Fernanda Fernande Fernandel Fernandes Fernandez Fernandina Fernando Fernas Fernata Ferncndez Ferndale Ferne Ferneau Fernelius Ferney Fernley Fernwood Fernyak Ferocactus Feronia Ferragus Ferrand Ferranti Ferrara Ferrarese Ferrari Ferraro Ferreby Ferree Ferreira Ferrel Ferrell Ferrellsburg Ferren Ferrer Ferrero Ferretti Ferri Ferrick Ferriday Ferrier Ferrigno Ferris Ferrisburg Ferriter Ferro Ferrol Ferron Ferrum Ferrysburg Ferryville Fertil Fertility Ferullo Fervidor Ferwerda Fesapo Fescennine Fessenden Festa Festatus Feste Festina Festino Festschrift Festschriften Festschrifts Festus Feta Fetas Fettes Feucht Feuchtwanger Feuerbach Feuillae Feuillant Feuillants Feuillee Feulgen Feune Feurabush Fevre Fevrier Fey Feydeau Feynman Fez Fezzan Fezziwig Ffestiniog Ffhrer Ffnfkirchen Ffrth Fi Fia Fiann Fianna Fiat Fiatt Fiber Fiberfrax Fiberglas Fiberglases Fibiger Fibonacci Fibrospongiae Ficaria Fichte Fichtean Fichteanism Fichteans Ficino Ficoidaceae Ficoideae Ficula Ficus Fidac Fiddletown Fidel Fidela Fidelas Fidele Fidelia Fidelio Fidelis Fidelism Fidelismo Fidelismos Fidelisms Fidelist Fidelista Fidelistas Fidelists Fidelity Fidellas Fidellia Fiden Fides Fidessa Fidia Fido Fidole Fiedler Fiedling Field Fieldale Fielding Fieldon Fields Fieldton Fiend Fierabras Fierasfer Fierasferidae Fierebras Fiertz Fiesole Fiester Fife Fifeshire Fifi Fifield Fifine Fifinella Fifish Fifties Figaro Figge Figitidae Figl Figone Figueres Figueroa Fiji Fijian Fijians Filago Filaria Filariidae Filbert Filberte Filberto Filemon Filer Files Filia Filiano Filibranchia Filicales Filices Filicineae Filicites Filicornia Filide Filigera Filion Filip Filipe Filipendula Filipina Filipinas Filipiniana Filipinization Filipinize Filipino Filipinos Filippa Filippino Filippo Filix Fillander Fillbert Fillender Filler Filley Fillian Fillmore Filmer Filmore Filofax Filofaxes Filomena Filosa Fima Fimbristylis Fin Fina Finance Finbar Finbur Finch Finchley Finchville Findlay Findley Fine Fineberg Fineen Finegan Finella Fineman Finer Fineview Fingal Fingall Fingallian Fingerville Fingo Fingu Fini Finiglacial Finist Finistare Finistere Finisterre Finistère Fink Finkelstein Finksburg Finland Finlander Finlanders Finlandia Finlandisation Finlandisations Finlandization Finlandizations Finlandize Finlandized Finlandizes Finlandizing Finlay Finlayson Finletter Finley Finleyville Finly Finmark Finn Finnbeara Finnbogadottir Finnegan Finney Finnic Finnicize Finnie Finnigan Finnish Finnmark Finns Finny Fino Finsen Finstad Finsteraarhorn Finzer Finzi Fiona Fionn Fionna Fionnuala Fionnula Fiora Fiore Fiorello Fiorenza Fiorenze Fioretti Fiot Firbank Firbauti Firbolg Firbolgs Fircrest Firdausi Firdousi Firdusi Firebaugh Firebee Firebrick Firefox Firenze Firesteel Firestone Firman Firmicus Firmin Firmisternia Firnismalerei Firoloida Firooc Firth Fisch Fischbein Fischer Fish Fishback Fishbein Fishbourne Fisher Fishers Fishersville Fishertown Fisherville Fishes Fishguard Fishkill Fishman Fishtail Fishtrap Fisk Fiskdale Fiske Fisken Fiskeville Fissidens Fissidentaceae Fissilinguia Fissipeda Fissipedia Fissipes Fissirostres Fissurella Fissurellidae Fistulana Fistularia Fistulariidae Fistulina Fisty Fitch Fitchburg Fithian Fitting Fittipaldi Fitton Fittonia Fitts Fittstown Fitz FitzGerald Fitzclarence Fitzger Fitzgerald Fitzherbert Fitzhugh Fitzpat Fitzpatrick Fitzrovia Fitzroy Fitzroya Fitzsimmons Fitzwilliam Fiuman Fiume Fiumicino Fixin Fizeau Fjare Fjelsted Fjorgyn Fl Fla Flacian Flacianism Flacianist Flacourtia Flacourtiaceae Flagellaria Flagellariaceae Flagellata Flagellatae Flagg Flagler Flagstad Flagstaff Flagtown Flaherty Flam Flamandization Flamandize Flamboyant Flamingant Flaminian Flamininus Flaminius Flammarion Flamsteed Flan Flanagan Flanders Flandreau Flanigan Flann Flanna Flannery Flasher Flashman Flathead Flatheads Flatlick Flatonia Flatt Flatto Flatwoods Flaubert Flaubertian Flaubertians Flaveria Flavia Flavian Flavio Flavius Flavobacterium Flaxman Flaxton Flaxville Fleck Flecker Fleda Fleece Fleeman Fleet Fleeta Fleetville Fleetwood Fleischer Fleischmanns Fleisher Fleisig Flem Fleming Flemings Flemingsburg Flemington Flemish Flemming Flensburg Flessel Fleta Fletch Fletcher Fletcherise Fletcherised Fletcherising Fletcherism Fletcherite Fletcherize Fletcherized Fletcherizing Fleur Fleurette Fleury Flewelling Flexner Flexography Flexowriter Flextime Flfgelhorn Flicksville Flieger Fliegerabwehrkanone Flight Flin Flindersia Flinn Flint Flinton Flintshire Flintstone Flintstones Flintville Flip Flippin Flita Flo Flobert Flodden Floerkea Floeter Flois Flokati Flokatis Flom Flomaton Flomot Flon Flood Floodwood Flor Flora Floraal Floral Florala Floralia Florance Flore Floreal Florella Florence Florencia Florencita Florenda Florentia Florentine Florentines Florentinism Florenz Florenza Flores Floresville Florette Florey Flori Floria Florian Floriano Florianolis Florianopolis Florianupolis Florida Floridan Floridans Florideae Floridia Floridian Floridians Florie Florien Florin Florina Florinda Florine Florio Floris Florissant Floriston Floro Florri Florrie Florry Florsheim Flory Floréal Floscularia Flosculariidae Flosi Floss Flosser Flossi Flossie Flossmoor Flossy Flotow Flourtown Flovilla Flower Flowers Floy Floyce Floyd Floydada Floyddale Flss Fluellen Flugelhorn Fluker Fluon Fluothane Flushing Flustra Flutidae Fluvanna Flyingh Flymo Flymos Flyn Flynn Flysch Fm Fnen Fo FoC Foah Foamite Foch Fodientia Foecunditatis Foeniculum Fogarty Fogel Fogelsville Fogertown Fogg Foggia Foism Foist Foix Fokine Fokker Fokos Fola Folberth Folcroft Foley Folger Folgers Folkestone Folkething Folketing Folkston Folkvang Folkvangr Follansbee Follett Folliculina Follmer Folly Folsom Folsomville Fomalhaut Fombell Fomor Fomorian Fon Fonda Fonddulac Fondea Fondouk Foneswood Fong Fons Fonseca Fonsie Fontaine Fontainea Fontainebleau Fontana Fontanelle Fontanet Fontanne Fontenelle Fontenoy Fontes Fonteyn Fontina Fontinalaceae Fontinalis Fontinas Fonville Fonz Fonzie Foochow Foochowese Foosball Foosland Foosm Foost Foot Foote Footville For Foraker Foraminifera Forbes Forbestown Force Forces Forcier Forcipulata Ford Fordcliff Fordham Fordicidia Fording Fordize Fordized Fordizing Fordland Fordoche Fords Fordsville Fordville Fordyce Foreland Forelli Foreman Forest Forestburg Forestburgh Forestdale Forester Foresters Forestian Forestiera Foreston Forestport Forestville Forfar Forficula Forficulidae Forgan Foristell Forkey Forkland Forks Forksville Forkunion Forkville Forl Forland Forli Forlini Forlo Form Formalin Forman Formby Formenti Formica Formicariae Formicariidae Formicas Formicidae Formicina Formicinae Formicivora Formicoidea Formol Formosa Formosan Formosans Formoso Formosus Fornacalia Fornacis Fornax Forney Forneys Fornof Forras Forrer Forrest Forrestal Forrester Forreston Forsan Forsete Forseti Forssman Forst Forsta Forster Forsterian Forsyte Forsyth Forsythe Forsythia Fort Forta Fortaleza Fortas Fortescue Forth Fortier Fortin Fortinbras Fortisan Fortna Fortran Fortuna Fortunato Fortunatus Fortune Fortunella Fortunia Fortunio Fortunna Forum Forward Fosamax Fosamaxes Foscalina Fosdick Foshan Fosite Foskett Fosque Foss Fosse Fossores Fossoria Fosston Foster Fosters Fosterville Fostoria Fothergilla Fotheringhay Fotina Fotinas Fotomat Fotomatic Fotosetter Fototronic Foucault Foucquet Fougere Fougerolles Foujita Fouke Foulbec Foulk Foulness Founder Founders Fount Fountaintown Fountainville Fouqu Fouqua Fouque Fouquet Fouquieria Fouquieriaceae Four Fourdrinier Fourdriniers Fourier Fourierian Fourierism Fourierisms Fourierist Fourieristic Fourierists Fourierite Fourierites Fourmile Fourneyron Fournier Fouroaks Fourth Fourths Foushee Fowey Fowkes Fowle Fowler Fowlerton Fowlerville Fowles Fowliang Fowlkes Fowlstown Fox Foxboro Foxborough Foxburg Foxcroft Foxe Foxes Foxhall Foxholm Foxton Foxtown Foxtrot Foxworth Foy Foyil Fr Fra Fraase Fracastorius Frachet Frachette Frackville Fracticipita Fraction Fractur Fracturs Fradin Fragaria Frager Fragilaria Fragilariaceae Fragonard Frakes Fraktur Frakturs Fram Frame Framer Framers Frametown Framingham Framont Fran Francaix France Francene Frances Francesca Francescatti Francesco Francestown Francesville Franchot Franci Francic Francie Francine Francis Francisca Franciscan Franciscanism Franciscans Franciscka Francisco Franciscus Francise Franciska Franciskus Francitas Francize Franck Francklin Francklyn Franckot Franco Francois Francoise Francoism Francoist Francoists Francomania Francome Franconia Franconian Franconians Francophil Francophile Francophiles Francophilia Francophilias Francophilism Francophils Francophobe Francophobes Francophobia Francophobias Francophobic Francophone Francophones Francophonic Francy Francyne Franek Frangi Franglais Frangos Frangulaceae Franiaix Frank Frankclay Franke Frankel Frankenia Frankeniaceae Frankenmuth Frankenstein Frankensteinian Frankensteins Frankewing Frankford Frankfort Frankfurt Frankfurter Frankhouse Frankie Frankify Frankish Frankist Franklin Franklinia Franklinian Frankliniana Franklinic Franklinisation Franklinism Franklinist Franklinization Franklinton Franklintown Franklinville Franklyn Franko Franks Frankston Franksville Frankton Franktown Frankville Franky Franni Frannie Franny Frans Fransen Fransis Fransisco Frants Frantz Franz Franza Franzen Franzoni Fras Frascati Frascatis Frasch Frasco Fraser Frasera Frasier Frasquito Fratercula Fraticelli Fraticellian Fratricelli Frau Frauen Frauendienst Frauenfeld Fraulein Frauleins Fraunhofer Fraus Fravashi Fraxinella Fraxinus Fraya Frayda Frayn Frayne Fraze Frazee Frazer Frazeysburg Frazier Frear Freberg Frecciarossa Frech Frechet Frechette Fred Freda Freddi Freddie Freddy Fredek Fredel Fredela Fredelia Fredella Fredenburg Frederic Frederica Frederich Fredericia Frederick Fredericka Fredericks Fredericksburg Fredericktown Frederico Fredericton Frederigo Frederik Frederika Frederiksberg Frederiksen Frederiksted Frederique Fredette Fredholm Fredi Fredia Fredie Fredkin Fredonia Fredra Fredric Fredrich Fredrick Fredrickson Fredrik Fredrika Fredrikstad Fredville Free Freeborn Freeburg Freeburn Freechurchism Freed Freedman Freedom Freedomites Freefone Freehold Freekirker Freeland Freelandville Freeman Freemanspur Freemason Freemasonries Freemasonry Freemasons Freemon Freeport Freepost Freer Freesia Freesoil Freetown Freeunion Freeville Freewater Fregata Fregatae Fregatidae Frege Fregger Frei Freia Freiburg Freida Freiman Freistatt Frejus Frelimo Frelinghuysen Fremantle Fremont Fremontia Fremontodendron Frenatae French Frenchboro Frenchburg Frenched Frenches Frenchier Frenchies Frenchiest Frenchification Frenchifications Frenchified Frenchifies Frenchify Frenchifying Frenchily Frenchiness Frenching Frenchise Frenchism Frenchize Frenchless Frenchlick Frenchly Frenchman Frenchmen Frenchness Frenchnesses Frenchtown Frenchville Frenchweed Frenchwise Frenchwoman Frenchwomen Frenchy Frendel Freneau Frenghi Frentz Freon Freons Frere Frerichs Frescobaldi Fresison Fresnel Fresno Fretwell Freud Freudberg Freudian Freudianism Freudianisms Freudians Freudism Freudist Freulein Frewsburg Frey Freya Freyah Freycinetia Freyja Freyr Freyre Freytag Fri Fria Friant Fribourg Frick Fricke Frida Friday Fridays Fridell Fridila Fridley Fridlund Fridtjof Fried Frieda Friedan Friedberg Friede Friedens Friedensburg Frieder Friederike Friedheim Friedland Friedlander Friedly Friedman Friedrich Friedrichshafen Friedrichstrasse Friedrick Friend Friendly Friends Friendship Friendsville Friendswood Frierson Fries Friesian Friesians Friesic Friesish Friesland Friesz Frigg Frigga Frigidaire Frigidaires Frigoris Frija Frimaire Friml Fringetail Fringilla Fringillidae Fringilliformes Frink Friona Fris Frisbee Frisbees Frisch Frisco Frisesomorum Frisian Frisians Frisii Frisse Frissell Fritch Fritillaria Frito Frits Fritts Fritz Fritze Fritzie Fritzsche Friuli Friulian Friulians Frl Frlein Frobisher Frodeen Frodi Frodin Frodina Frodine Froebel Froebelian Froebelism Froebelist Froehlich Froemming Frog Frogmore Frogs Froh Frohman Frohna Frohne Froid Froissart Frolick Froma Fromberg Frome Fromental Fromentin Fromm Fromma Frona Fronda Fronde Frondeur Frondizi Fronia Fronnia Fronniah Frontenac Frontignan Frontirostria Frontroyal Fronya Frost Frostbelt Frostbelts Frostburg Frostian Frostproof Frothi Froude Froward Frs Frst Fructidor Fruehauf Frugivora Fruin Fruita Fruitdale Fruithurst Fruitland Fruitport Fruitvale Frulein Frulla Frum Fruma Frumentius Frunze Fry Fryburg Fryd Frydman Frye Fryeburg Frymire Ft Fu Fuad Fucaceae Fucales Fuchou Fuchs Fuchsia Fuchsian Fucoideae Fuegian Fuegians Fuehrer Fuentes Fuertes Fuerteventura Fugate Fugazy Fugere Fuget Fugger Fuhrer Fuhrers Fuhrman Fuirena Fuji Fujio Fujisan Fujitsu Fujiwara Fujiyama Fukien Fukuda Fukuoka Fukushima Ful Fula Fulah Fulahs Fulani Fulanis Fulas Fulbert Fulbright Fulbrights Fulcher Fuld Fulda Fulfulde Fulgencio Fulgora Fulgoridae Fulgoroidea Fulgur Fulham Fulica Fulicinae Fuligula Fuligulinae Fulke Fulks Fuller Fullerton Fullonian Fulmarus Fulmer Fulmis Fuls Fulshear Fulton Fultondale Fultonham Fultonville Fults Fultz Fulup Fulvi Fulvia Fulviah Fumago Fumaria Fumariaceae Funabashi Funafuti Funaria Funariaceae Funch Funchal Funda Fundamentalism Fundamentalisms Fundulinae Fundulus Fundy Funfkirchen Fungales Fungia Fungurume Funje Funk Funkia Funkstown Funston Funtumia Fuquay Fur Furcellaria Furcraea Furey Furfooz Furgeson Furiae Furie Furies Furiya Furlan Furlani Furlong Furman Furmark Furnariidae Furnariides Furnarius Furnary Furnerius Furness Furnivall Furr Furtek Furth Furtwangler Furtwler Furtwängler Furud Fury Fusan Fusarium Fusco Fuseli Fushih Fushun Fusicladium Fusicoccum Fusiformis Fusion Fusions Fusulina Fusus Futabatei Futura Futurism Futurisms Futurist Futuristic Futurists Fuzhou Fuzzbuster Fuzzbusters Fydorova Fyffe Fylde Fyn Fyodor Fyzabad Félibre Félibrige Führer Führers G GA GAAP GAAS GAB GABA GADO GAIA GAN GAO GAR GARIOA GAS GATED GATT GATV GAW GB GBA GBE GBG GBH GBIP GBJ GBM GBS GBT GBZ GC GCA GCB GCC GCD GCE GCF GCI GCL GCM GCMG GCR GCS GCT GCVO GCVS GD GDB GDP GDR GDS GE GECOS GECR GED GEIS GEISCO GEM GEMS GEO GFCI GFI GFTU GG GGP GH GHA GHQ GHRS GHZ GHz GI GID GIF GIGO GIN GISS GIs GKS GKSM GLC GLOMR GM GMAT GMB GMBH GMC GMP GMRT GMT GMW GN GND GNMA GNP GNU GO GOC GOES GOK GOP GOS GOSIP GOX GP GPA GPC GPCI GPD GPI GPIB GPL GPM GPO GPS GPSI GPSS GPU GQ GR GRASS GRB GRD GREP GRI GRIPS GRO GROPE GRPMOD GRS GS GSA GSAT GSBCA GSC GSFC GSR GSTS GT GTC GTE GTO GTP GTS GTSI GTT GU GUI GUIDE GUIs GUS GW GWEN GWS Ga Gaal Gaastra Gab Gabaon Gabaonite Gabar Gabas Gabbai Gabbaim Gabbert Gabbey Gabbi Gabbie Gabbs Gabby Gabe Gabel Gaberones Gabes Gabey Gabi Gabie Gable Gabler Gabo Gabon Gabonese Gaboon Gabor Gaboriau Gaborone Gabriel Gabriela Gabriele Gabrieli Gabriell Gabriella Gabrielle Gabrielli Gabriellia Gabriello Gabrielrache Gabriels Gabrielson Gabrila Gabrilowitsch Gabumi Gabun Gabunese Gaby Gackle Gacrux Gad Gadaba Gadarene Gadarenes Gadaria Gaddafi Gaddang Gaddi Gader Gadhel Gadhelic Gadhels Gadidae Gaditan Gaditans Gadite Gadites Gadmann Gadmon Gadoidea Gadsbodikins Gadsbud Gadsden Gadshill Gadslid Gadswoons Gadus Gadzooks Gae Gaea Gaekwar Gael Gaelan Gaeldom Gaelic Gaelicisation Gaelicise Gaelicism Gaelicist Gaelicization Gaelicize Gaels Gaeltacht Gaeltachts Gaertnerian Gaeta Gaetano Gaetulan Gaetuli Gaetulian Gaffkya Gaffney Gafsa Gag Gagarin Gagauzi Gage Gagetown Gagliano Gagne Gagnon Gahan Gahanna Gahl Gahrwali Gaia Gaidano Gaidhealtachd Gaidropsaridae Gaige Gaikwar Gail Gaile Gaillard Gaillardia Gaiman Gainer Gaines Gainesboro Gainestown Gainesville Gainor Gainsborough Gaiser Gaiseric Gaither Gaithersburg Gaitskell Gaius Gaivn Gajcur Gajda Gakona Gal Gala Galacaceae Galactia Galaginae Galago Galahad Galahads Galan Galang Galanthus Galanti Galapagos Galashiels Galasyn Galata Galatae Galatea Galateah Galati Galatia Galatian Galatians Galatic Galatz Galax Galaxias Galaxiidae Galaxy Galba Galbraith Galbraithian Galbreath Galbula Galbulae Galbulidae Galbulinae Galcaio Galcha Galchas Galchic Gale Galeao Galega Galei Galeidae Galen Galena Galenian Galenic Galenical Galenism Galenisms Galenist Galenists Galenus Galeodes Galeodidae Galeopithecus Galeopsis Galeorchis Galeorhinidae Galeorhinus Galer Galesaurus Galesburg Galesville Galeton Galeus Galga Galgal Galgulidae Galibi Galibis Galicia Galician Galicians Galictis Galidia Galidictis Galien Galik Galilaean Galilaeans Galilean Galileans Galilee Galilei Galileo Galili Galina Galinsoga Galinthias Galion Galitea Galium Gall Galla Gallager Gallagher Gallard Gallas Gallatin Gallaudet Gallaway Galle Gallegan Gallegos Gallenz Galleria Galleriidae Galli Gallia Gallian Galliano Gallic Gallican Gallicanism Gallicanisms Gallicans Galliccally Gallice Gallicisation Gallicisations Gallicise Gallicised Galliciser Gallicises Gallicising Gallicism Gallicisms Gallicization Gallicizations Gallicize Gallicized Gallicizer Gallicizers Gallicizes Gallicizing Gallico Gallicolae Gallienus Galliett Gallification Galliformes Gallify Galligan Galligantus Gallina Gallinaceae Gallinacei Gallinae Gallinago Gallinas Gallinula Gallinulinae Gallio Gallion Gallios Gallipoli Gallipolis Gallirallus Gallitzin Gallman Gallo Galloman Gallomania Gallomaniac Gallomanias Galloperdix Gallophile Gallophiles Gallophilism Gallophobe Gallophobia Gallovidian Galloway Galloways Gallup Gallupville Gallus Gally Galofalo Galois Galoisian Galsworthy Galt Galton Galtonia Galtonian Galtonias Galuppi Galusha Galuth Galva Galvan Galvani Galven Galveston Galvestonian Galvestonians Galvin Galway Galways Galwegian Galwegians Gama Gamages Gamal Gamali Gamaliel Gamasidae Gamasoidea Gamay Gamays Gambart Gambell Gamber Gambetta Gambi Gambia Gambian Gambians Gambier Gamble Gambon Gambrell Gambrill Gambrills Gambrinus Gambusia Gambut Gamelion Gamin Gamma Gammaridae Gammarus Gammas Gammelost Gammexane Gamolepis Gamopetalae Gamow Gan Ganado Ganapati Ganatrix Gance Gand Ganda Gandas Gandeeville Gander Gandhara Gandharan Gandharva Gandhi Gandhian Gandhiism Gandhiisms Gandhiist Gandhism Gandhist Gandzha Ganesa Ganesha Ganga Gangamopteris Ganges Gangetic Gangtok Ganguela Ganiats Ganley Gannes Gannett Gannie Gannon Gannonga Ganny Ganocephala Ganodonta Ganodus Ganoidei Ganowanian Gans Gansevoort Gant Gantrisin Gantry Gantt Ganymeda Ganymede Ganymedes Gao Gaon Gaonate Gaonic Gaons Gap Gapa Gaperon Gapin Gapland Gapville Gar Garald Garamas Garamond Garamonds Garand Garard Garardsfort Garate Garaway Garbe Garber Garbers Garberville Garbo Garboesque Garceau Garcia Garciasville Garcinia Garcon Gard Garda Gardal Gardas Gardel Gardell Garden Gardena Gardendale Gardener Gardenia Gardenville Gardia Gardie Gardiner Gardner Gardners Gardnerville Gardol Gardy Gare Garek Gareri Gareth Garett Garey Garfield Garfinkel Garfunkel Gargalianoi Gargan Gargantua Gargantuan Gargantuism Gargantuist Gargantuists Gargaphia Garges Garhwali Gari Garibald Garibaldi Garibaldian Garibaldians Garibold Garibull Garicault Gariepy Garifalia Garifuna Garifunas Garik Garin Garita Garlaand Garlan Garland Garlanda Garlen Garlinda Garling Garm Garmaise Garmr Garnavillo Garneau Garner Garnerville Garnes Garnet Garnett Garnette Garo Garofalo Garold Garome Garonne Garoua Garrard Garratt Garrattsville Garrek Garret Garreth Garretson Garrett Garrettsville Garrick Garrigues Garrik Garris Garrison Garrisonian Garrisonism Garrisonville Garrity Garrot Garrott Garrulinae Garrulus Garry Garrya Garryaceae Garshuni Garson Gart Garter Garters Garth Garthrod Gartner Garuda Garv Garvey Garvin Garvy Garwin Garwood Gary Garysburg Garyville Garza Garzon Gasan Gasburg Gascogne Gascoigne Gascon Gasconade Gasconader Gasconism Gascons Gascony Gaskell Gaskill Gaskin Gaskins Gasmata Gaspar Gaspard Gasparo Gaspe Gaspee Gasper Gasperi Gasperoni Gaspesian Gaspinsula Gasport Gasquet Gass Gassaway Gassendi Gasser Gasserian Gassman Gassville Gastarbeiter Gastarbeiters Gasterbeiter Gasterbeiters Gasterocheires Gasterolichenes Gasteromycetes Gasterophilus Gasteropoda Gasterosteidae Gasterosteus Gasterotricha Gasthaus Gasthause Gasthof Gasthofe Gasthäuse Gasthöfe Gastineau Gaston Gastonia Gastonville Gastornis Gastornithidae Gastraeadae Gastrochaena Gastrochaenidae Gastrolobium Gastrophilus Gastropoda Gastrostomus Gastrotricha Gat Gates Gateshead Gatesville Gatewood Gath Gatha Gathard Gathers Gathic Gathings Gati Gatian Gatias Gatlinburg Gatling Gatorade Gatow Gatsby Gattamelata Gatting Gattman Gatun Gatwick Gatzke Gaucho Gaud Gaudet Gaudete Gaudette Gaudi Gaudibert Gaudí Gaugamela Gaughan Gauguin Gauguinesque Gauhati Gaul Gauldin Gauleiter Gaulic Gaulin Gaulish Gaulle Gaullism Gaullisms Gaullist Gaullists Gauls Gault Gaultheria Gaultier Gaultiero Gaumont Gaunt Gauntlett Gaura Gauri Gaurian Gauricus Gause Gausman Gauss Gaussian Gaut Gautama Gautea Gauthier Gautier Gautious Gav Gavan Gavaskar Gaven Gavette Gavia Gaviae Gavialis Gaviiformes Gavin Gavini Gavle Gavra Gavrah Gavriella Gavrielle Gavrila Gavrilla Gaw Gawain Gawd Gawen Gawlas Gawra Gay Gaya Gaye Gayel Gayelord Gayl Gayla Gayle Gayleen Gaylene Gayler Gaylesville Gaylor Gaylord Gaylordsville Gaylussacia Gayn Gayner Gaynor Gayomart Gaypoo Gays Gaysville Gayville Gaza Gazan Gazania Gazankulu Gazans Gazella Gaziantep Gazo Gazza Gazzo Gb Gbari Gbaris Gc Gcg Gd Gda Gdansk Gde Gdel Gdns Gdynia Ge GeV Geadephaga Geaghan Gean Geanine Gearalt Gearard Gearhart Geary Geaster Geat Geatas Geatish Geats Geb Gebaur Gebelein Geber Gebhardt Gebler Gebrauchsmusik Gecarcinidae Gecarcinus Geckotidae Ged Gedaliah Gedankenexperiment Gedda Geddes Gederathite Gederite Gee Geechee Geechees Geehan Geelong Geer Geerts Geesey Geez Gefell Gefen Geff Geffen Geffner Gegenschein Gegenscheins Geheimrat Gehenna Gehennas Gehlbach Gehman Gehrig Geibel Geier Geiger Geigertown Geigy Geikia Geikie Geilich Geis Geisel Geisenheimer Geismar Geiss Geissoloma Geissolomataceae Geissolomataceous Geissorhiza Geist Geistesgeschichte Geistown Geithner Gekko Gekkones Gekkonidae Gekkota Gel Gela Gelae Gelanor Gelasia Gelasian Gelasias Gelasimus Gelasius Gelastocoridae Gelb Gelbvieh Geldens Gelderland Geldof Gelechia Gelechiidae Gelee Gelene Gelett Gelfomino Gelhar Gelibolu Gelidiaceae Gelidium Geller Gellert Gelligaer Gellman Gelman Gelonus Gelsemium Gelsenkirchen Gelugpa Gelya Gemara Gemaras Gemaric Gemarist Gemarists Gemeinschaft Gemftlichkeit Gemina Gemini Geminian Geminiani Geminians Geminid Geminids Geminis Geminius Geminus Gemitores Gemma Gemmell Gemmingia Gemoets Gemperle Gemuetlichkeit Gemutlichkeit Gemütlichkeit Gen Gena Genaro Genave Gene Geneautry Geneen Geneina Generalidad Genesa Genesco Genesee Geneseo Genesia Genesiac Genesiacal Genesis Genesitic Genet Genetrix Genetta Genetyllis Geneura Geneva Genevan Genevans Geneve Genevese Genevi Genevieve Genevois Genevra Genf Genfersee Genghis Gengkow Genia Genie Genii Genipa Genisia Genista Genitrix Genius Genk Genl Genna Gennaro Gennevilliers Genni Gennie Gennifer Genny Geno Genoa Genoas Genoese Genolla Genova Genovera Genovese Genoveva Genro Gensan Genseric Gensler Gensmer Gent Gentes Gentiana Gentianaceae Gentianales Gentile Gentiles Gentilis Gentille Gentoo Gentoos Gentry Gentryville Gents Genucius Genvieve Genyophrynidae Genève Geo Geococcyx Geodimeter Geodimeters Geodimiter Geodimiters Geof Geoff Geoffrey Geoffry Geoglossaceae Geoglossum GeolE Geometric Geometrical Geometridae Geometrina Geometroidea Geomyidae Geomys Geon Geonic Geonim Geonoma Geophila Geophilidae Geophilus Geophone Geoplana Geoplanidae Geopolitik Geoprumnon Georas Geordie Geordies Georg Georgadjis Georgann George Georgeann Georgeanna Georgeanne Georged Georgemas Georgena Georgene Georges Georgesman Georgesmen Georgeta Georgetown Georgetta Georgette Georgettes Georgi Georgia Georgian Georgiana Georgianna Georgianne Georgians Georgics Georgie Georgina Georgine Georgius Georglana Georgy Geospiza Geoteuthis Geothlypis Gepeoo Gephyrea Gepidae Gepp Ger Gera Geraint Gerald Geralda Geraldina Geraldine Geraldton Geraniaceae Geraniales Geranium Geranomorphae Gerar Gerard Gerardo Gerasene Geraud Gerbatka Gerber Gerbera Gerberia Gerbillinae Gerbillus Gerbold Gerd Gerda Gerdeen Gerdi Gerdie Gerdy Gerdye Gere Gerek Gereld Gereron Gerfen Gerge Gerger Gerhan Gerhard Gerhardine Gerhardt Gerhardus Gerhart Geri Gerianna Gerianne Gericault Gerick Gerik Gering Gerita Geritol Gerius Gerkman Gerlac Gerlach Gerlachovka Gerladina Gerlaw Germain Germaine German Germana Germanesque Germanhood Germania Germanic Germanical Germanically Germanics Germanicus Germanification Germanify Germanisation Germanise Germanised Germaniser Germanises Germanish Germanising Germanism Germanisms Germanist Germanistic Germanists Germanity Germanization Germanizations Germanize Germanized Germanizer Germanizers Germanizes Germanizing Germanly Germann Germanness Germano Germanocentric Germanomania Germanomaniac Germanophil Germanophile Germanophiles Germanophilia Germanophilist Germanophils Germanophobe Germanophobes Germanophobia Germanophobias Germanophobic Germanophobist Germans Germansville Germanton Germantown Germany Germaun Germayne Germin Germinal Germiston Gernhard Gerome Gerona Geronimo Geronomite Gerousia Gerrald Gerrard Gerrardstown Gerres Gerrhosauridae Gerri Gerridae Gerrie Gerrilee Gerrit Gerry Gers Gersam Gersham Gershom Gershon Gershonite Gershwin Gerson Gerstein Gerstner Gert Gerta Gerti Gertie Gertner Gerton Gertrud Gertruda Gertrude Gertrudis Gerty Gerusia Gervais Gervas Gervase Gery Gerygone Geryon Geryoneo Geryones Geryonia Geryonidae Geryoniidae Gerzean Ges Gesan Gesell Gesellschaft Geshurites Gesner Gesnera Gesneraceae Gesneria Gesneriaceae Gesnerian Gessen Gessner Gestalt Gestalten Gestaltist Gestaltists Gestalts Gestapo Gestapos Gesualdo Gesundheit Getae Geth Gethsemane Gethsemanes Gethsemanic Getic Getraer Getsul Getter Gettings Getty Gettysburg Getz Getzville Geulincx Geullah Geum Gev Gevaert Gevle Gewirtz Gewrztraminer Gewurztraminer Gewurztraminers Gewürztraminer Gex Geyserville Gezer Gezira Geëz Gfiraldes Gfnz Gfnzian Ghan Ghana Ghanaian Ghanaians Ghanese Ghanian Ghanians Ghardaia Ghardaoa Ghassan Ghassanid Ghats Ghazali Ghaznevid Ghazvanid Ghazzah Ghazzali Gheber Ghebers Ghebre Ghebres Ghedda Gheen Gheens Gheg Ghegish Ghelderode Ghent Gheorghe Gherardi Gherardo Gherlein Ghibeline Ghibelines Ghibelline Ghibellines Ghibellinism Ghibellinisms Ghiberti Ghilzai Ghiordes Ghirlandaio Ghirlandajo Ghiselin Ghosts Ghuz Gi Giacamo Giacinta Giacobo Giacometti Giacomo Giacomuzzo Giacopo Giai Giaimo Giamo Gian Giana Gianina Gianna Gianni Giannini Giansar Giardia Giarla Giauque Giavani Gib Gibb Gibbeon Gibberella Gibbi Gibbie Gibbon Gibbonian Gibbons Gibbonsville Gibbs Gibbsboro Gibbstown Gibby Gibe Gibeon Gibeonite Gibeonites Gibert Gibil Giboulee Gibraltar Gibraltarian Gibraltarians Gibraltars Gibran Gibrian Gibsland Gibson Gibsonburg Gibsonia Gibsons Gibsonton Gibsonville Gibun Giddings Gide Gideon Gideonite Gideons Giefer Gielgud Giemsa Giemsas Gienah Gierek Gies Giesecke Gieseking Giess Giessen Giesser Giff Giffard Giffer Gifferd Giffie Gifford Giffy Gifola Gifu Gigante Gigantes Gigantopithecus Gigantosaurus Gigantostraca Gigartina Gigartinaceae Gigartinales Giggit Gigi Gigle Gigli Giglio Gignac Giguere Gij Gijon Gikuyu Gikuyus Gil Gila Gilaki Gilba Gilbart Gilbert Gilberta Gilberte Gilbertese Gilbertian Gilbertianism Gilbertina Gilbertine Gilberto Gilberton Gilbertown Gilberts Gilbertson Gilbertsville Gilbertville Gilboa Gilburt Gilby Gilbye Gilchrist Gilcrest Gilda Gildas Gildea Gilder Gildford Gildus Gile Gilead Gileadite Gileadites Gilels Gilemette Gileno Giles Gilford Gilgal Gilgamesh Gilges Gilia Giliak Giliana Giliane Gill Gillan Gillead Gillenia Gilleod Gilles Gillespie Gillett Gilletta Gillette Gilley Gillham Gilli Gilliam Gillian Gillie Gilliette Gilligan Gillingham Gillman Gillmore Gillray Gills Gillsville Gilly Gilman Gilmanton Gilmer Gilmore Gilmour Gilolo Gilpin Gilroy Gilson Gilsonite Gilsonites Gilsum Giltner Giltzow Gilud Gilus Gimbel Gimble Gimirrai Gimpel Gina Ginder Gine Ginelle Ginevra Ginger Ginglymodi Ginglymostoma Gingras Gingrich Ginkgo Ginkgoaceae Ginkgoales Ginn Ginni Ginnie Ginnifer Ginnungagap Ginny Gino Ginsberg Ginsburg Ginsu Gintz Ginza Ginzberg Ginzburg Gio Gioconda Giono Giordano Giorgi Giorgia Giorgio Giorgione Giottesque Giotto Giovanna Giovanni Giovannida Gipps Gippsland Gippy Gipsies Gipson Gipsy Girafano Giraffa Giraffidae Giralda Giraldo Girand Girard Girardi Girardo Giraud Giraudoux Girdler Girdletree Girdwood Girella Girellidae Girgashite Girgasite Girgenti Girhiny Girish Girolamo Gironde Girondes Girondin Girondins Girondism Girondisms Girondist Girondists Girovard Girru Girtin Girton Giruwa Girvin Girzfelden Gisborne Gisela Giselbert Gisele Gisella Giselle Gish Gishzida Gisser Gissing GitHub Gita Gitana Gitanemuck Gitas Gitel Githens Gitksan Gitlow Gitt Gittel Gittite Gittle Giuba Giuditta Giuki Giukung Giule Giulia Giuliana Giuliani Giuliano Giulietta Giulini Giulio Giuseppe Giustina Giustino Giusto Given Givenchy Giverin Giza Gizeh Gizela Gizo Gjellerup Gjuki Gjukung Gk Gl Glaab Glaber Glace Glacial Glackens Glad Gladbeck Gladbrook Gladdie Gladdy Gladeville Gladewater Gladi Gladine Gladis Gladsheim Gladstone Gladstones Gladstonian Gladstonianism Gladwin Gladwyne Glady Gladys Glagol Glagolic Glagolithic Glagolitic Glagolitsa Glaisher Glamis Glamorgan Glamorganshire Glandorf Glaniostomi Glanti Glantz Glanville Glareola Glareolidae Glarum Glarus Glasco Glaser Glaserian Glasford Glasgo Glasgow Glaspell Glass Glassboro Glassco Glasser Glassite Glassman Glassport Glasston Glastonbury Glaswegian Glaswegians Glathsheim Glathsheimr Glauce Glaucia Glaucidium Glaucionetta Glaucium Glaucomys Glauconia Glauconiidae Glaucopis Glaucus Glaudia Glauke Glaux Glavin Glaxo Glazunoff Glazunov Gld Gle Gleason Glecoma Gleda Gleditsia Glee Gleeson Gleich Gleichschaltung Gleipnir Gleiwitz Gleizes Glen Glenallan Glenallen Glenarbor Glenarm Glenaubrey Glenbeulah Glenbrook Glenburn Glenburnie Glencarbon Glencliff Glencoe Glencross Glenda Glendale Glendaniel Glendean Glenden Glendive Glendo Glendon Glendora Glendower Gleneaston Glenecho Glenelder Glenellen Glenellyn Glenferris Glenfield Glenflora Glenford Glengarries Glengarry Glengary Glenham Glenhayes Glenhead Glenice Glenine Glenis Glenjean Glenlivet Glenlyn Glenmont Glenmoore Glenmora Glenmorgan Glenn Glenna Glennallen Glenndale Glennie Glennis Glennon Glennville Glenolden Glenoma Glenpool Glenrio Glenrose Glenrothes Glenshaw Glenside Glenspey Glentana Glenullin Glenus Glenview Glenvil Glenville Glenwhite Glenwild Glenwillard Glenwilton Glenwood Glenyss Glessariae Glhwein Glialentn Gliare Glichingen Glick Glidden Gliere Glimp Glinka Glinys Glires Gliridae Gliriformia Glis Glitnir Glitz Glivare Gliwice Globe Globicephala Globigerina Globigerinidae Globiocephalus Globularia Globulariaceae Glock Gloeocapsa Gloeosporium Glogau Gloiopeltis Gloiosiphonia Gloiosiphoniaceae Glomerella Glomma Glooscap Glori Gloria Gloriana Gloriane Gloriann Glorianna Glorias Glorie Glorieta Gloriosa Glory Glos Glossa Glossata Glossic Glossina Glossiphonia Glossiphonidae Glossophaga Glossophora Glossopteris Glossotherium Gloster Gloucester Gloucestershire Glouster Glover Gloversville Gloverville Glovsky Gloxinia Gluck Glumaceae Glumales Glumdalclitch Glumiflorae Gluneamie Glux Glyceria Glycine Glyconian Glyconic Glycyrrhiza Glyn Glynas Glynda Glyndebourne Glyndon Glyndwr Glynias Glynis Glynn Glynne Glynnis Glyptal Glyptals Glyptodon Glyptodontidae Glyptotherium Gm Gmat Gmc Gmelina Gmur Gnaeus Gnaphalium Gnatho Gnathobdellae Gnathobdellida Gnathopoda Gnathostoma Gnathostomata Gnathostomi Gnesdilov Gnesen Gnetaceae Gnetales Gnetum Gniezno Gnni Gnomonia Gnomoniaceae Gnossian Gnossus Gnostic Gnostical Gnosticise Gnosticised Gnosticiser Gnosticises Gnosticising Gnosticism Gnosticisms Gnosticize Gnosticized Gnosticizer Gnosticizes Gnosticizing Gnostics GnuPG Go Goa Goajiro Goala Goalundo Goan Goanese Goans Goar Goasila Goat Goats Gobat Gobbi Gobelin Gobelins Gober Gobert Gobi Gobia Gobian Gobiesocidae Gobiesox Gobiidae Gobiiformes Gobinism Gobinist Gobio Gobioidea Gobioidei Gobler Gobles Goclenian Goclenius God Goda Godard Godart Godavari Godbeare Godber Goddam Goddammed Goddamming Goddamn Goddamned Goddamning Goddamns Goddams Goddard Goddart Godden Godderd Godding Goddord Godeffroy Godel Goderich Godesberg Godetia Godewyn Godey Godfather Godfathers Godforsaken Godfree Godfrey Godfry Godful Godhead Godin Godiva Godley Godlike Godliman Godolias Godolphin Godot Godowsky Godred Godric Godrich Gods Godsake Godspeed Godspeeds Godthaab Godthab Godunov Godward Godwards Godwin Godwine Godwinian Godzilla Goebbels Goebel Goeger Goehner Goemagot Goemot Goer Goering Goerke Goerlitz Goes Goeselt Goessel Goetae Goethals Goethe Goethean Goethian Goetz Goetzville Goff Goffstown Gog Goggin Gogh Goglidze Gogo Gogol Gogolian Gogra Gohila Goiania Goias Goibniu Goico Goics Goidel Goidelic Goienia Goines Going Gokey Gokuraku Gola Golan Golanka Golaseccan Golconda Golcondas Gold Golda Goldarina Goldbar Goldberg Goldbergian Goldbird Goldblum Goldbond Golden Goldenberg Goldendale Goldenmouth Goldfarb Goldfield Goldfinch Goldfinger Goldi Goldia Goldic Goldie Goldilocks Goldin Goldina Golding Goldman Goldmark Goldner Goldoni Goldonian Goldonna Goldovsky Goldrun Goldsboro Goldschmidt Goldshell Goldshlag Goldsmith Goldstein Goldstine Goldston Goldsworthy Goldthwaite Goldvein Goldwasser Goldwater Goldwin Goldwyn Goldwynism Goldy Goles Goleta Golgi Golgotha Golgothas Goliad Goliard Goliath Goliaths Golightly Goll Gollancz Gollin Golliner Golliwog Golliwogg Golliwoggs Golliwogs Golo Golschmann Golter Goltry Golts Goltz Golub Golva Goma Gomar Gomarian Gomarist Gomarite Gombach Gomberg Gombosi Gomeisa Gomel Gomer Gomez Gomontia Gomorrah Gomorrahs Gomorrean Gomorrha Gomorrhean Gompers Gomphocarpus Gompholobium Gomphrena Gomulka Gona Gonagle Gonaives Gonaoves Gonave Goncharov Goncourt Gond Gondar Gondi Gondomar Gonds Gondwana Gondwanaland Gone Goneril Gongola Gongoresque Gongorism Gongorisms Gongorist Gongoristic Gongorists Goniaster Goniatites Goniatitidae Gonick Goniodoridae Goniodorididae Goniodoris Goniopholidae Goniopholis Gonium Gonnella Gonolobus Gonroff Gonsalve Gonta Gonvick Gonyea Gonystylaceae Gonystylus Gonzales Gonzalez Gonzalo Gonzlez Goober Gooch Goochland Good Goodacre Goodall Goodard Goodden Goode Goodell Goodenia Goodeniaceae Goodenoviaceae Goodfield Goodhen Goodhope Goodhue Goodill Gooding Goodkin Goodland Goodlettsville Goodman Goodmen Goodrich Goodrow Goodson Goodspeed Goodview Goodville Goodwater Goodway Goodwell Goodwife Goodwill Goodwin Goodwine Goodwives Goodwood Goody Goodyear Goodyera Googins Google Goolagong Goole Goop Goossens Gopher Gophers Gor Gora Gorakhpur Goran Goraud Gorbachev Gorbachov Gorbals Gorboduc Gorbymania Gorchakov Gord Gordan Gorden Gordiacea Gordian Gordie Gordiidae Gordimer Gordioidea Gordius Gordo Gordon Gordonia Gordonsville Gordonville Gordy Gordyaean Gore Gorecki Goree Goren Goreville Gorey Gorga Gorgas Gorges Gorgias Gorgon Gorgonacea Gorgonia Gorgoniacea Gorgonian Gorgonzola Gorgonzolas Gorgophone Gorgosaurus Gorgythion Gorham Gorica Gorin Goring Gorizia Gorkhali Gorki Gorkiesque Gorky Gorlicki Gorlin Gorlitz Gorlovka Gorman Gormania Gormenghast Gorrian Gorrono Gorsedd Gorski Gorton Gortonian Gortonite Gortys Gorum Gorz Gos Gosala Goshen Gosiute Gosiutes Goslar Gosnell Gosney Gospel Gospels Gosplan Gosport Goss Gossaert Gossart Gosse Gosselin Gosser Gossypium Gotama Gotcher Gotebo Goteborg Goth Gotha Gotham Gothamist Gothamists Gothamite Gothamites Gothar Gothard Gothart Gothenburg Gothic Gothically Gothicise Gothicised Gothiciser Gothicisers Gothicises Gothicising Gothicism Gothicisms Gothicist Gothicists Gothicity Gothicize Gothicized Gothicizer Gothicizers Gothicizes Gothicizing Gothick Gothicks Gothicness Gothicnesses Gothics Gothish Gothism Gothlander Gothonic Goths Gothurd Gotiglacial Gotland Gotlander Gotlanders Goto Gott Gotterdammerung Gotterdammerungs Gottfried Gotthard Gotthelf Gottingen Gottland Gottlander Gottlieb Gottschalk Gottuard Gottwald Gotz Goucher Gouda Goudas Goudeau Goudy Gough Goujon Gould Gouldbusk Goulden Goulder Goulds Gouldsboro Goulet Goulette Gounod Goura Gourdine Gourinae Gourmont Gournay Gournia Gouverneur Gov Gove Government Governments Governor Govt Gow Gowanda Gowen Gower Gowers Gowon Gowrie Goya Goyaesque Goyana Goyen Goyesque Goyetian GpE Gr Graaf Graafian Grabill Grable Gracchus Grace Graceland Gracemont Graces Graceville Gracewood Gracey Gracia Gracie Graciela Gracilaria Gracilariidae Graculus Gracye Gradeigh Gradey Gradgrind Gradgrindery Gradgrindian Gradgrindish Gradgrindism Gradientia Grados Gradual Graduals Grady Gradyville Grae Graeae Graecise Graecised Graecises Graecising Graecism Graecisms Graecize Graecized Graecizes Graecizing Graeculus Graehl Graehme Graeme Graettinger Graf Grafen Graff Graffias Grafin Graford Grafton Gragano Graham Grahame Grahamsville Grahn Graiae Graian Graiba Graig Grail Grails Grainfield Grainger Grallae Grallatores Grallina Gram Grambling Gramercy Graminaceae Gramineae Gramling Grammatophyllum Grammies Grammontine Grammos Grammy Grammys Gramont Gramophone Grampian Grampians Gran Grana Granada Granadine Granados Granbury Granby Grand Grande Grandgent Grandisonian Grandisonianism Grandmontine Grandview Grandville Grane Graner Granese Grange Grangemouth Granger Grangerism Grangers Granges Grangeville Grangousier Grani Grania Graniah Granicus Graniela Graniteville Granjon Granlund Grannia Granniah Grannias Grannie Grannis Granny Granoff Granolith Granollers Grant Granta Granth Grantha Grantham Granthem Grantia Grantiidae Grantland Grantley Granton Grantorto Grants Grantsboro Grantsburg Grantsdale Grantsville Granttown Grantville Granville Grapeland Grapeview Grapeville Grapevine Graphalloy Graphidiaceae Graphiola Graphis Graphium Graphophone Graphotype Grappelli Grapsidae Grapsus Grapta Graptolitha Graptolithida Graptolithina Graptolitoidea Graptoloidea Grasmere Grasonville Grass Grasse Grassi Grassman Grasston Grata Grath Grati Gratia Gratiae Gratian Gratiana Gratianna Gratiano Gratiola Gratiot Graton Gratry Gratt Grattan Gratz Graubden Graubert Graubfnden Graubunden Graustark Graustarkian Graustarks Gravante Gravelly Gravenhage Gravenstein Gravensteins Graves Gravesend Gravette Gravettian Gravigrada Gravity Gravolet Grawn Gray Graybill Grayce Graycourt Graydon Grayland Grayling Graymont Grays Grayslake Grayson Graysville Graytown Grayville Graz Grazia Greabe Grearson Great Greater Greats Greb Grebenau Grebo Grecia Grecian Grecianise Grecianises Grecianize Grecianized Grecianizes Grecianizing Grecians Grecise Grecised Grecising Grecism Grecisms Grecize Grecized Grecizes Grecizing Greco Grecomania Grecomaniac Grecophil Gredel Greece Greek Greekdom Greekery Greekess Greeking Greekise Greekish Greekism Greekist Greekize Greekless Greekling Greeks Greeley Greeleyville Greely Green Greenaway Greenback Greenbacker Greenbackers Greenbackism Greenbackville Greenbank Greenbelt Greenberg Greenblatt Greenbriar Greenbrier Greenburg Greenbush Greencastle Greencloth Greendale Greendell Greene Greenebaum Greenes Greeneville Greenfield Greenford Greenhalgh Greenhall Greenhills Greenhurst Greenland Greenlander Greenlanders Greenlandic Greenlandish Greenlandman Greenlane Greenlawn Greenleaf Greenlee Greenman Greenock Greenough Greenpeace Greenport Greenquist Greens Greensboro Greensburg Greensea Greensleeves Greenspan Greenstein Greentown Greentree Greenup Greenvale Greenview Greenville Greenwald Greenway Greenwell Greenwich Greenwood Greer Greerson Greeson Grefe Grefer Greff Greg Grega Gregarina Gregarinae Gregarinaria Gregarinida Gregarinina Gregarinoidea Gregg Greggory Greggs Gregoire Gregoor Gregor Gregorian Gregorianist Gregorianize Gregorianizer Gregorio Gregorius Gregory Gregrory Gregson Greig Greimmerath Greiner Grekin Grenache Grenada Grenadan Grenadans Grenadian Grenadians Grenadines Grendel Grenelle Grenfell Grenier Grenloch Grenoble Grenola Grenora Grenville Gresham Gressoria Greta Gretal Gretchen Grete Gretel Grethel Gretna Gretry Gretta Gretzky Greuze Grevera Greville Grevillea Grew Grewia Grewitz Grey Greybull Greycliff Greyiaceae Greynville Greyso Greyson Greysun Grfnewald Gricault Gricean Grider Gridley Grieg Grier Grierson Grieve Griff Griffes Griffie Griffin Griffis Griffith Griffiths Griffithsville Griffithville Griffon Griffy Grifton Griggs Griggsville Grigioni Grignard Grignolino Grigson Grikwa Grilikhes Grillparzer Grim Grimaldi Grimaldian Grimaud Grimbal Grimbald Grimbly Grimes Grimeses Grimesland Grimhild Grimke Grimm Grimmia Grimmiaceae Grimona Grimonia Grimsby Grimshaw Grimsley Grimstead Grimwig Grinch Grindelia Grindelwald Grindlay Grindle Gring Grinling Grinnell Grinnellia Grinzig Griphosaurus Griqua Griqualander Gris Griselda Griseldas Griseldis Grishilda Grishilde Grishun Grison Grisons Grissel Grissom Gristede Gristhorbia Griswold Grit Grits Griz Grizel Grizelda Grizzel Grnewald Groark Grobe Grobian Grobianism Grochow Grock Grodin Grodno Groenendael Groesbeck Groesz Groete Grof Grofa Grofe Grogan Groh Groland Grolier Grolieresque Gromia Gromme Gromyko Gronchi Grondin Groningen Gronseth Groome Groos Groot Groote Grootfontein Gropius Gropper Grory Gros Grosberg Groscr Grose Grosmark Gross Grosse Grosseile Grosset Grosseteste Grossetete Grossman Grossmith Grossularia Grossulariaceae Grosswardein Grosvenor Grosvenordale Grosz Grote Grotesk Grotewohl Grotian Grotianism Grotius Groton Grottoes Groucho Grouchy Grounds Grous Grove Groveland Groveman Grover Grovertown Groves Groveton Grovetown Grow Grozny Grubb Grubbs Grube Gruber Grubman Grubrus Grubstreet Grubville Gruchot Gruemberger Gruenberg Grues Gruetli Gruhenwald Gruidae Gruiformes Gruis Gruithuisen Grulla Grumbletonian Grumello Grumium Grumman Grunberg Grundies Grundified Grundlov Grundy Grundyism Grundyisms Grundyist Grundyite Grunenwald Grunewald Grunitsky Grunth Grus Grusian Grusinian Grussing Gruver Gruyare Gruyere Gruyeres Gruyre Gruyère Grygla Gryllidae Gryllotalpa Gryllus Grynaeus Gryphaea Gryphosaurus Grypotherium Gräfin Grünewald Gs Gschu Gta Gteborg Gterdmerung Gtersloh Gtingen Guachanama Guacho Guacico Guadagnini Guadalajara Guadalcanal Guadalquivir Guadalupe Guadalupita Guadeloup Guadeloupe Guadeloupean Guadeloupeans Guadiana Guafo Guage Guaharibo Guahiban Guahibo Guahivo Guaira Gualaca Gualala Guallatiri Gualterio Gualtiero Guam Guamanian Guamanians Guana Guanabara Guanajuato Guanche Guangzhou Guanica Guantanamo Guantcnamo Guantnamo Guapor Guapora Guapore Guaque Guaranae Guaranaees Guaranaes Guarani Guaranian Guaranies Guaranis Guaraunan Guarauno Guardafui Guardi Guardia Guards Guarea Guarini Guarino Guarneri Guarneris Guarnerius Guarneriuses Guarnieri Guarnieris Guarrau Guaruan Guastalline Guasti Guat Guatemala Guatemalan Guatemalans Guatemaltecan Guato Guatoan Guatusan Guatuso Guauaenok Guayama Guayaniil Guayanilla Guayaqui Guayaquil Guaycuru Guaycuruan Guaymas Guaymie Guaynabo Guayule Guazuma Gubbin Gubbrud Gucci Gude Gudea Gudel Gudermannian Gudmundsson Gudren Gudrin Gudrun Gueber Guebers Guebre Guebres Guedalla Guelders Guelf Guelfic Guelfism Guelfs Guelph Guelphic Guelphish Guelphism Guelphs Guendolen Guenevere Guenna Guenther Guenzi Guerche Gueret Guericke Guerickian Guerin Guerinet Guerneville Guernica Guernsey Guernseys Guerra Guerrant Guerrero Guesde Guesdism Guesdist Guest Guestling Guetar Guetare Gueux Guevara Guevarist Gueydan Guffey Guggenheim Guglielma Guglielmo Guha Guhayna Gui Guiana Guianan Guianans Guianese Guibert Guide Guiderock Guido Guidonia Guidonian Guidotti Guienne Guignardia Guignol Guilandina Guilbert Guild Guildenstern Guilderland Guildford Guildroy Guilford Guillan Guillaume Guillema Guillemette Guillen Guillermo Guillotin Guimar Guimond Guin Guinda Guinea Guineaman Guinean Guineans Guinevere Guinn Guinna Guinness Guion Guipuzcoa Guiraldes Guisard Guiscard Guise Guisian Guitry Guittonian Guiyang Guizot Gujar Gujarat Gujarati Gujaratis Gujerat Gujerati Gujral Gujranwala Gujrati Gujratis Gula Gulag Gulags Gulanganes Gulbenkian Gulf Gulfhammock Gulfport Gulgee Gulick Gullah Gullahs Gullit Gulliver Gullstrand Gulo Gulston Gum Gumbel Gumberry Gumbo Gumez Gummo Gumpoldskirchner Gun Gunar Gunas Gunderson Gundry Gunilla Gunite Gunites Gunlock Gunn Gunnar Gunner Gunnera Gunneraceae Gunning Gunnison Guntar Gunter Guntersville Gunthar Gunther Guntown Guntur Gunz Gunzburg Gunzian Guofeng Gupta Gur Gurabo Gurage Guran Gurango Gurdon Gurevich Guria Gurian Gurias Guric Guring Gurish Gurjara Gurkha Gurkhali Gurkhas Gurl Gurley Gurlitz Gurmukhi Gurnee Gurney Gurneyite Gurolinick Gursel Gurtner Gurz Gus Gusba Gusella Gusher Guss Gussi Gussie Gussman Gussy Gusta Gustaf Gustafson Gustafsson Gustav Gustave Gustavo Gustavus Gusti Gustie Gustin Gustine Guston Gustus Gusty Gut Guteborg Gutenberg Guthrey Guthrie Guthrun Guthry Guti Gutierrez Gutium Gutnic Gutnish Gutow Guttenberg Guttera Gutterdemmerung Guttery Guttiferae Guttiferales Guttingen Gutz Guy Guyana Guyandot Guyanese Guyenne Guyer Guymon Guyon Guys Guysville Guyton Guzel Guzman Guzmania Guzmcn Guzmco Guzul Gw Gwalior Gwari Gwaris Gwawl Gwelo Gwen Gwenda Gwendolen Gwendolin Gwendoline Gwendolyn Gwendolynne Gweneth Gwenette Gwenn Gwenneth Gwenni Gwennie Gwenny Gwenora Gwenore Gwent Gweyn Gwin Gwinn Gwinner Gwinnett Gwydion Gwyn Gwynedd Gwyneth Gwynfa Gwynn Gwynne Gwynneville Gy Gyaing Gyandzha Gyani Gyarung Gyas Gyasi Gyatt Gyes Gygaea Gyge Gyges Gygis Gyimah Gyldan Gylden Gylys Gymnadenia Gymnadeniopsis Gymnanthes Gymnarchidae Gymnarchus Gymnasia Gymnasium Gymnasiums Gymnoblastea Gymnocalycium Gymnocerata Gymnocladus Gymnoconia Gymnoderinae Gymnodiniaceae Gymnodiniidae Gymnodinium Gymnodontes Gymnoglossa Gymnogyps Gymnolaema Gymnolaemata Gymnonoti Gymnopaedes Gymnorhina Gymnorhininae Gymnospermae Gymnospermous Gymnosporangium Gymnostomata Gymnostomina Gymnothorax Gymnotidae Gymnotoka Gymnotus Gymnura Gymnurinae Gynaecothoenas Gynandria Gynergen Gynerium Gynura Gyor Gypaetus Gyppaz Gyppo Gyps Gypsie Gypsies Gypsophila Gypsy Gypsyish Gyracanthus Gyrencephala Gyrinidae Gyrinus Gyro Gyroceras Gyrodactylidae Gyrodactylus Gyromitra Gyrophora Gyrophoraceae Gyrophoraceous Gyropilot Gyros Gyrostachys Gyrotheca Gytheion Gytle Gza Gzhatsk Górecki Gödel Göteborg Götterdämmerung Göttingen Günz Günzian H HA HAA HAC HACD HAL HAM HAO HAP HARM HASP HAT HAZMAT HB HBA HBM HBO HC HCF HCFA HCG HCL HCM HCR HCSDS HCTDS HD HDA HDBV HDD HDL HDLC HDMI HDTV HDX HE HEAO HEAP HEDM HEHO HEM HEMP HEMS HEMT HEO HEP HERA HERO HETP HEW HF HFDF HFE HFS HG HGA HGV HH HHD HHFA HHS HI HIC HIFO HIH HIIPS HIM HIPPI HIRES HIS HIV HJ HJS HK HKJ HL HLA HLBB HLC HLHSR HLL HLV HM HMAS HMC HMI HMO HMOS HMP HMS HMSO HMT HNC HND HNPA HNS HO HOBIC HOBIS HOL HOLC HOTOL HOV HOW HOs HP HPD HPIB HPLT HPN HPO HPPA HQ HR HRE HRH HRI HRIP HS HSB HSBC HSC HSFS HSH HSI HSLN HSM HSP HSSDS HST HT HTK HTLV HTML HTTP HU HUAC HUD HUGE HUT HUTG HV HVAC HW HWD HWM HZ Ha Haag Haakon Haapsalu Haaretz Haarlem Haas Haase Hab Haba Habab Habacuc Habakkuk Habana Habanero Habbe Habdalah Habdalahs Habe Habenaria Haber Haberman Habib Habiri Habiru Habronema Habsburg Habsburgs Hach Hachiman Hachita Hachman Hachmann Hachmin Hackathorn Hackensack Hacker Hackett Hackettstown Hackleburg Hackman Hackney Hackneys Had Hadamard Hadar Hadas Hadassah Hadasseh Haddad Haddam Hadden Haddington Haddix Haddon Haddonfield Hadean Haden Hadendoa Hadendowa Hadensville Hadentomoidea Hades Hadfield Hadhramaut Hadhramautian Hadik Hadith Hadiths Hadjemi Hadjipanos Hadlee Hadleigh Hadley Hadlock Hadlyme Hadramaut Hadramautian Hadria Hadrian Hadromerina Hadrosaurus Hadsall Hadwin Hadwyn Haeckel Haeckelian Haeckelism Haeju Haemamoeba Haemanthus Haemaphysalis Haematobranchia Haematocrya Haematophilina Haematopus Haematotherma Haematoxylon Haemodoraceae Haemogregarina Haemogregarinidae Haemon Haemonchus Haemoproteus Haemosporidia Haemosporidium Haemulidae Haemus Haerle Haerr Haff Hafgan Hafiz Hafler Haftarah Haftarahs Haftaroth Hag Hagai Hagaman Hagan Haganah Hagar Hagarite Hagarstown Hagarville Hagecius Hagen Hagenia Hager Hagerman Hagerstown Haggada Haggadah Haggadahs Haggadic Haggadist Haggadistic Haggadists Haggadot Haggadoth Haggai Haggar Haggard Haggerty Haggi Hagi Hagiographa Hagno Hagood Hagstrom Hague Hahira Hahn Hahnemann Hahnemannian Hahnemannism Hahnert Hahnke Hahnville Haiathalah Haida Haidan Haidarabad Haidas Haidee Haidinger Haiduck Haiducks Haiduk Haifa Haig Haigler Haikh Haikou Haile Hailee Hailesboro Hailey Haileyville Hailsham Hailwood Haily Haim Haimavati Haimes Hainai Hainan Hainanese Hainaut Haines Hainesport Haiphong Haise Haisla Haithal Haiti Haitian Haitians Haitink Hak Hakai Hakalau Hakan Hake Hakea Hakeem Hakenkreuz Hakenkreuze Hakenkreuzes Hakenkreuzler Hakim Hakka Hakluyt Hako Hakodate Hakon Hakone Hal Halacha Halachah Halachas Halachic Halachot Halaf Halafian Halakah Halakahs Halakha Halakhah Halakhahs Halakhot Halakic Halakoth Haland Halavy Halawi Halbe Halbeib Halbert Halbur Halcion Halcions Halcottsville Halcyon Halcyone Halcyonidae Halcyoninae Halda Haldan Haldane Haldanite Haldas Haldeman Halden Haldes Haldi Haldis Haldol Haldols Hale Haleakala Halecomorphi Haledon Haleigh Haleiwa Halemaumau Halenia Halesia Halesowen Haletky Haletta Halette Halevi Halevy Haley Haleyville Halfdan Halfon Halford Halfway Hali Haliaeetus Halicarnassean Halicarnassian Halicarnassus Halichondriae Halicore Halicoridae Halie Halifax Haligonian Haligonians Halima Halimeda Haliotidae Haliotis Haliplidae Halirrhothius Haliserites Halitheriidae Halitherium Halitherses Haliver Hall Halla Hallagan Hallam Halland Hallandale Halle Halleck Hallee Hallel Hallels Haller Hallerson Hallett Hallette Hallettsville Halley Halleyan Halli Halliburton Halliday Hallie Hallieford Halliwell Hallmark Hallock Hallopididae Hallopus Hallouf Hallowday Halloween Halloweens Hallowell Hallowmas Hallowmases Hallowmass Hallowmasses Hallowtide Halls Hallsboro Hallstadt Hallstadtan Hallstatt Hallstattan Hallstattian Hallstead Hallsville Hallsy Halltown Hallvard Hallwood Hally Hallé Halma Halmaheira Halmahera Halmstad Haloa Halobates Halocynthiidae Halogeton Halon Halona Halonna Haloose Halopsyche Halopsychidae Haloragidaceae Haloragis Halosauridae Halosaurus Halosphaera Halpern Hals Halsey Halsingborg Halstad Halstead Halsted Halsy Haltemprice Halteridium Haltica Halvaard Halverson Halvy Halysites Ham Hama Hamachi Hamadan Hamadryad Hamadryads Hamah Hamal Hamamatsu Hamamelidaceae Hamamelidanthemum Hamamelidoxylon Hamamelis Hamamelites Haman Hamann Hamas Hamath Hamathite Hamberg Hambleton Hambletonian Hambletonians Hambley Hamborn Hamburg Hamburger Hamburgers Hamburgh Hamburghs Hamburgs Hamden Hamed Hamel Hamelia Hamelin Hameln Hamer Hamersville Hamford Hamforrd Hamfurd Hamhung Hamid Hamidian Hamidieh Hamil Hamilcar Hamill Hamilton Hamiltonian Hamiltonianism Hamiltonianisms Hamiltonians Hamiltonism Hamish Hamital Hamite Hamites Hamitic Hamiticized Hamitism Hamitoid Hamlani Hamlen Hamler Hamlet Hamletsburg Hamlin Hamm Hammad Hammarskj Hammarskjold Hammarskjuld Hammel Hammer Hammerfest Hammerklavier Hammerskjold Hammersmith Hammerstein Hammett Hammock Hammon Hammond Hammondsport Hammondsville Hammonton Hammurabi Hammurapi Hamner Hamnet Hamo Hamon Hampden Hampshire Hampshires Hampstead Hampton Hamptonville Hamrah Hamrnand Hamshire Hamsun Hamtramck Hamulites Han Hana Hanae Hanafee Hanafi Hanafite Hanako Hanalei Hanan Hanapepe Hanasi Hanau Hanbalite Hance Hanceville Hancock Hand Handal Handbook Handel Handelian Handler Handley Hands Handsom Handy Haney Hanford Hanforrd Hanfurd Hangchou Hangchow Hangul Hangzhou Haniwa Hank Hankamer Hankel Hankins Hankinson Hankow Hanksville Hanleigh Hanley Hanlon Hanlontown Hanna Hannacroix Hannaford Hannah Hannan Hannastown Hannay Hanni Hannibal Hannibalian Hannibalic Hannie Hannis Hanno Hannon Hannover Hannus Hanny Hano Hanoi Hanotaux Hanover Hanoverian Hanoverianise Hanoverianize Hanoverians Hanoverise Hanoverize Hanovers Hanoverton Hanratty Hans Hansa Hansard Hansardization Hansardize Hansards Hansas Hansberry Hansboro Hanschen Hanse Hanseatic Hansel Hanselka Hansell Hansen Hanser Hanses Hansetown Hansford Hanshaw Hansiain Hanska Hanson Hansteen Hanston Hansville Hanswurst Hants Hanuka Hanukah Hanukahs Hanukas Hanukka Hanukkah Hanukkahs Hanukkas Hanuman Hanus Hanway Hanya Hanyang Hanzelin Hapale Hapalidae Hapalotis Haphsiba Haphtarah Haphtarahs Haphtaroth Hapi Haplodoci Haplodon Haplomi Happ Happy Hapsburg Hapsburgs Hapte Hara Harahan Harald Haralson Harappa Harappan Harar Harare Hararese Harari Haratin Harault Haraya Harb Harbard Harberd Harbert Harbeson Harbin Harbird Harbison Harbona Harborside Harborton Harbot Harbour Harco Harcourt Hardan Hardaway Harday Hardburly Hardden Hardecanute Hardeeville Hardej Harden Hardenberg Hardenbergia Hardenville Harderian Hardesty Hardi Hardicanute Hardie Hardigg Hardin Harding Hardinggrass Hardinggrasses Hardinsburg Hardman Hardner Hardtner Hardunn Hardwick Hardwicke Hardwickia Hardy Hardyesque Hardyville Hare Harelda Harewood Harfleur Harford Hargeisa Hargesia Hargill Hargreaves Harhay Harijan Harijans Harilda Harim Haringey Harkins Harkness Harl Harlamert Harlan Harland Harle Harlech Harleian Harleigh Harlem Harlemese Harlemite Harlemites Harlen Harlene Harlequin Harlequins Harleton Harley Harleysville Harleyville Harli Harlie Harlin Harlingen Harlow Harlowton Harmachis Harman Harmaning Harmans Harmat Harmattan Harmattans Harmon Harmonia Harmonides Harmonie Harmonist Harmonite Harmonsburg Harmony Harmothoae Harmothoe Harms Harmsworth Harnack Harned Harneen Harness Harnett Harod Harold Harolda Haroldson Haroun Harp Harpa Harpagornis Harpalides Harpalinae Harpalus Harpalyce Harper Harpersfield Harpersville Harperville Harpidae Harpies Harpina Harpo Harpocrates Harpole Harporhynchus Harpp Harpster Harpullia Harpursville Harpy Harpyia Harragan Harrah Harrar Harrell Harrells Harrellsville Harri Harrie Harriet Harriett Harrietta Harriette Harriman Harrington Harriot Harriott Harris Harrisburg Harrisia Harrison Harrisonburg Harrisonville Harriston Harristown Harrisville Harrod Harrods Harrodsburg Harrogate Harrold Harrovian Harrovians Harrow Harrus Harry Harshaw Harshman Harsho Harstad Hart Harte Hartfield Hartford Hartfordite Hartfordites Harthacanute Harthacnut Hartill Hartington Hartke Hartland Hartleian Hartlepool Hartleton Hartley Hartleyan Hartline Hartly Hartman Hartmann Hartmannia Hartmunn Hartnell Hartnett Hartogia Harts Hartsburg Hartsdale Hartsel Hartselle Hartsfield Hartshorn Hartshorne Hartstown Hartsville Hartungen Hartville Hartwell Hartwick Hartwood Harty Hartzel Hartzell Hartzke Harunobu Harv Harvard Harvardian Harvardise Harvardize Harve Harveian Harvel Harvest Harvey Harveyise Harveyize Harveyized Harveyizing Harveysburg Harveyville Harvie Harviell Harvison Harwell Harwich Harwichport Harwick Harwill Harwilll Harwin Harwood Haryana Harz Harze Hasa Hasan Hasanlu Hasbro Hasdai Hasdrubal Hase Hasek Hasen Hasheem Hashemite Hashemites Hashim Hashimite Hashimites Hashimoto Hashiya Hashum Hasid Hasidaean Hasidean Hasidic Hasidim Hasidism Hasidisms Hasin Hasinai Haskalah Haskalahs Haskel Haskell Haskins Haslam Haslet Haslett Hasmonaean Hasmonaeans Hasmonean Hasmoneans Hassam Hassan Hassani Hasse Hassell Hasselt Hasseman Hassett Hassi Hassid Hassidic Hassidim Hassidism Hassin Hastie Hastings Hasty Haswell Hatasu Hatboro Hatch Hatchechubbee Hatcher Hatfield Hathaway Hathcock Hathor Hathoric Hathorne Hati Hatia Hatikva Hatikvah Hatillo Hatley Hatshepset Hatshepsut Hatsheput Hatta Hattemist Hattenheimer Hatteras Hatteria Hattersley Hatti Hattian Hattic Hattie Hattiesburg Hattieville Hattise Hattism Hattize Hatton Hattusas Hatty Hatvan Hau Haubstadt Hauck Hauge Haugen Hauger Haughay Haughey Haughton Haukom Haunce Hauppauge Hauptmann Hauranitic Hausa Hausas Hausdorff Hauser Haushofer Hausmann Hausner Haussa Haussas Haussmann Haussmannization Haussmannize Haustecan Hauula Havaco Havaiki Havaikian Havana Havanan Havanans Havanas Havanese Havant Havard Havarti Havartis Havasu Havasupai Havasupais Havdala Havdalah Havel Havelock Haveman Haven Havener Havenner Havens Havensville Haverford Haverhill Havering Haversian Haverstraw Havilah Haviland Havilland Havoline Havre Havstad Haw Hawaii Hawaiian Hawaiians Hawarden Hawesville Hawger Hawhaw Hawi Hawick Hawiya Hawk Hawke Hawken Hawker Hawkeye Hawkeyes Hawkie Hawking Hawkins Hawkinsville Hawks Hawksmoor Hawkyns Hawley Hawleyville Haworth Haworthia Hawthorn Hawthorne Hawthornesque Hax Haxtun Hay Haya Hayakawa Hayari Hayashi Hayatake Hayato Hayden Haydenville Haydn Haydon Haye Hayes Hayesville Hayley Haym Hayman Haymarket Haymes Haymo Hayne Haynes Haynesville Hayneville Haynor Hayott Hays Hayse Haysi Haysville Hayti Hayton Hayward Haywood Hayworth Hayyim Hazaki Hazara Hazard Haze Hazeghi Hazel Hazelbelle Hazelcrest Hazelhurst Hazeltine Hazelton Hazelwood Hazem Hazen Hazlehurst Hazlet Hazleton Hazlett Hazlip Hazlitt Hazor Hb Hbert Hcba Hder Hderlin Hdr He Head Headland Headrick Heady Healdsburg Healdton Healey Healion Heall Healy Heaney Heaps Hearn Hearne Hearsh Hearst Heartwell Heater Heaters Heath Heathcote Heather Heathkit Heathrow Heathsville Heaton Heautontimorumenos Heaven Heavener Heavenese Heavens Heaviside Heb Hebbe Hebbel Hebbronville Hebe Hebel Heber Hebert Hebes Hebner Hebo Hebr Hebraean Hebraic Hebraica Hebraical Hebraically Hebraicise Hebraicism Hebraicize Hebraisation Hebraise Hebraised Hebraiser Hebraises Hebraising Hebraism Hebraisms Hebraist Hebraistic Hebraistical Hebraistically Hebraists Hebraization Hebraizations Hebraize Hebraized Hebraizer Hebraizers Hebraizes Hebraizing Hebrew Hebrewdom Hebrewess Hebrewism Hebrews Hebrician Hebridean Hebrideans Hebrides Hebridian Hebron Hebronite Hecabe Hecaleius Hecamede Hecataean Hecate Hecatean Hecatic Hecatine Hecatombaeon Hecatoncheires Hecatonchires Hecht Hechtia Heck Hecker Heckerism Hecklau Heckman Hecla Hector Hectorean Hectorian Hecuba Heda Hedberg Hedda Heddi Heddie Heddy Hedelman Hedeoma Hedera Hedgcock Hedges Hedgesville Hedi Hedie Hedin Hedjaz Hedley Hedone Hedrick Hedva Hedvah Hedve Hedveh Hedvig Hedvige Hedwig Hedwiga Hedy Hedychium Hedysarum Heeley Heenan Heep Heer Heerlen Heffron Heflin Hefner Hefter Hegarty Hege Hegel Hegeleos Hegelian Hegelianise Hegelianism Hegelianisms Hegelianize Hegelians Hegelizer Hegemone Hegemony Heger Hegins Hegira Hegiras Hegyera Hegyeshalom Hehe Hehre Heian Heid Heida Heide Heidegger Heideggerian Heideggerianism Heidelberg Heidenheimer Heidenstam Heidi Heidie Heidrick Heidrun Heidt Heiduc Heiducs Heiduk Heidy Heifetz Heigho Heigl Heijo Heike Heikum Heilbronn Heiligenschein Heiligenscheine Heilman Heilner Heilongjiang Heiltsuk Heilungkiang Heilwood Heim Heimdal Heimdall Heimdallr Heimer Heimlich Heimweh Hein Heindrick Heine Heineken Heiner Heinesque Heiney Heinie Heinkel Heinlein Heinrich Heinrick Heinrik Heinrike Heins Heintz Heinz Heis Heise Heisel Heisenberg Heiskell Heislerville Heisman Heisser Heisson Heitler Hejaz Hejazi Hejazian Hejira Hekataean Hekate Hekatean Hekker Hekking Hekla Hel Hela Helain Helaina Helaine Helali Helban Helbon Helbona Helbonia Helbonna Helbonnah Helbonnas Held Helda Heldentenor Heldentenore Heldentenors Heldentenöre Helderbergian Helechawa Helen Helena Helendale Helene Helenium Helenka Helenor Helenus Helenville Helenwood Helfand Helfant Helfenstein Helga Helge Helgeson Helgoland Heli Heliadae Heliades Heliaea Heliamphora Heliand Helianthemum Helianthium Helianthoidea Helianthoidean Helianthus Helicaon Helice Helicidae Helicina Helicinidae Helicon Heliconia Heliconian Heliconiidae Heliconiinae Heliconius Helicteres Heligmus Heligoland Heliochrome Heliogabalize Heliogabalus Heliolites Heliolitidae Helion Heliopolis Heliopora Helioporidae Heliopsis Heliornis Heliornithes Heliornithidae Helios Heliothis Heliotropiaceae Heliotropium Heliozoa Helipterum Helius Hell Helladian Helladic Helladotherium Hellas Helle Helleborine Helleborus Hellelt Hellen Hellene Hellenes Hellenian Hellenians Hellenic Hellenically Hellenicism Hellenisation Hellenisations Hellenise Hellenised Helleniser Hellenises Hellenising Hellenism Hellenisms Hellenist Hellenistic Hellenistical Hellenistically Hellenisticism Hellenists Hellenization Hellenizations Hellenize Hellenized Hellenizer Hellenizers Hellenizes Hellenizing Hellenocentric Hellenophile Heller Hellertown Helles Hellespont Hellespontine Hellespontus Helli Hellier Hellman Hells Helm Helman Helmand Helmer Helmetta Helmholtz Helmholtzian Helminthes Helminthocladiaceae Helminthosporium Helmont Helms Helmsburg Helmut Helmuth Helmville Heloderma Helodermatidae Heloise Helonia Helonias Helot Helotes Helots Help Helper Helpmann Helprin Helsa Helse Helsell Helsie Helsingborg Helsingfors Helsingo Helsingor Helsingur Helsinki Heltonville Helvatius Helve Helvella Helvellaceae Helvellales Helvellyn Helvetia Helvetian Helvetians Helvetic Helvetica Helvetics Helvetii Helvetius Helvidian Helvtius Helyn Helyne Heman Hemans Hembree Hemera Hemerasia Hemerobaptism Hemerobaptist Hemerobian Hemerobiid Hemerobiidae Hemerobius Hemerocallis Hemet Hemiascales Hemiasci Hemiascomycetes Hemibasidiales Hemibasidii Hemibasidiomycetes Hemibranchii Hemichorda Hemichordata Hemidactylus Hemigale Hemigalus Hemiganus Hemileia Hemimeridae Hemimerus Hemimetabola Hemimyaria Hemingford Hemings Hemingway Hemingwayesque Hemipodii Hemipodius Hemiptera Hemiramphidae Hemiramphinae Hemiramphus Hemithea Hemminger Hemon Hemophileae Hemophilus Hemphill Hempstead Hen Henagar Hench Hendaye Hendel Henden Henderson Hendersonville Hendley Hendon Hendren Hendrick Hendricks Hendrickson Hendrik Hendrika Hendrix Hendrum Hendry Henebry Henefer Heng Hengel Hengelo Hengest Hengfeng Henghold Hengist Hengyang Henie Henig Henigman Henioche Henka Henke Henlawson Henleigh Henley Henleys Henman Henmania Henn Hennahane Hennebery Hennebique Hennepin Hennessey Hennessy Henni Hennie Hennig Henniker Henning Henoch Henri Henrician Henricks Henrico Henrie Henrieta Henrietta Henriette Henrieville Henriha Henrik Henrika Henrion Henrique Henriques Henry Henryetta Henryk Henryson Henryton Henryville Hensel Hensler Hensley Henslowe Henson Hensonville Hentenian Hentrich Henty Henzada Henze Hepatica Hepaticae Hepburn Hephaesteum Hephaestian Hephaestic Hephaestus Hephaistos Hephzibah Hephzipa Hephzipah Hepialidae Hepialus Hepler Hepplewhite Heppman Heppner Hepsiba Hepsibah Heptagynia Heptameron Heptanchus Heptandria Heptanesian Heptateuch Heptatrema Heptranchias Hepworth Hepza Hepzi Hepzibah Hera Heraclea Heraclean Heracleidae Heracleidan Heracleitean Heracleonite Heracleopolitan Heracleopolite Heracles Heracleum Heraclid Heraclidae Heraclidan Heraclitean Heracliteanism Heraclitic Heraclitical Heraclitism Heraclitus Heraclius Heraea Heraklean Herakleion Herakles Heraklid Heraklidan Heraklion Herald Herat Herault Heraye Herb Herbar Herbart Herbartian Herbartianism Herbert Herbie Herbivora Herblock Herborn Herbst Herbster Herby Herc Hercegovina Herceius Herculanean Herculanensian Herculaneum Herculanian Hercule Herculean Hercules Herculid Herculie Herculis Hercyna Hercynian Herder Herdwick Here Hereafter Hereafters Heredia Hereford Herefords Herefordshire Hereld Herero Hereroes Hereros Hereward Herez Herezes Herge Hergesheimer Hergé Heriberto Herigonius Hering Heringer Herington Herisau Heritiera Heriz Herizes Herkimer Herlong Herm Herma Herman Hermann Hermannstadt Hermansville Hermanville Hermaphroditus Hermas Hermes Hermesian Hermesianism Hermetic Hermetical Hermeticism Hermeticisms Hermetics Hermetism Hermetisms Hermetist Hermia Hermie Hermina Hermine Herminia Herminie Herminone Hermione Hermiston Hermit Hermitage Hermitages Hermite Hermleigh Hermo Hermod Hermogenian Hermon Hermosa Hermosillo Hermoupolis Hermy Hernandez Hernandia Hernandiaceae Hernando Hernardo Herncndez Herndon Herne Herniaria Hernshaw Hero Herod Herodian Herodianic Herodias Herodii Herodiones Herodotean Herodotus Heroides Heroin Herold Heron Herophile Herophilist Herophilus Heros Herpestes Herpestinae Herpetomonas Herpotrichia Herr Herra Herrah Herreid Herren Herrenvolk Herrenvolker Herrenvolks Herrenvulker Herrera Herrerista Herrick Herries Herrin Herring Herrings Herrington Herriot Herriott Herrle Herrmann Herrnhuter Herrod Herron Hersch Herschel Herschelian Herscher Herse Hersey Hersh Hershel Hershell Hershey Hersilia Herskowitz Herson Herstein Herstmonceux Herta Hertberg Hertel Herter Hertford Hertfordshire Hertha Hertogenbosch Herts Hertz Hertzfeld Hertzian Hertzog Hertzsprung Heruli Herulian Herut Herv Hervati Herve Hervey Herwick Herwig Herwin Herzberg Herzegovina Herzegovinian Herzegovinians Herzel Herzen Herzig Herzl Herzog Hescock Heseltine Heshum Heshvan Heshvans Heshwan Heshwans Hesiod Hesiodic Hesiodus Hesione Hesionidae Hesketh Hesky Hesler Hesper Hespera Hespere Hesperia Hesperian Hesperic Hesperid Hesperidean Hesperides Hesperidian Hesperiidae Hesperis Hesperornis Hesperornithes Hesperornithiformes Hesperus Hess Hesse Hessel Hessen Hessian Hessians Hessler Hessmer Hessney Hesston Hesta Hestand Hester Hesther Hestia Heston Hesychasm Hesychast Hesychastic Hetaerist Heterakis Heteralocha Heterocarpus Heterocera Heterochloridales Heterocoela Heterocontae Heterocotylea Heterodactylae Heterodera Heterodon Heterodonta Heterodontidae Heterodontus Heterognathi Heterogyna Heterokontae Heteromeles Heteromera Heteromeran Heteromeri Heterometabola Heteromi Heteromita Heteromorpha Heteromorphae Heteromya Heteromyaria Heteromyidae Heteromys Heteroneura Heteroousian Heteroousians Heteroousiast Heterophaga Heterophagi Heteropia Heteropidae Heteropoda Heteroptera Heterorhachis Heterosiphonales Heterosomata Heterosomati Heterosomi Heterosporeae Heterosporium Heterostraca Heterostraci Heterotricha Heterotrichales Heterotrichida Heterousian Heterousians Heth Heti Hetland Hetman Hett Hetti Hettick Hettie Hettinger Hetty Heublein Heuchera Heuneburg Heunis Heurlin Heusen Heuser Heuvelton Hevea Hevelius Hever Hevesy Hew Hewart Hewe Hewes Hewet Hewett Hewette Hewie Hewitt Hewlett Hexabiblos Hexacoralla Hexacorallia Hexactinellida Hexagrammidae Hexagrammos Hexagynia Hexamita Hexanchidae Hexanchus Hexandria Hexapoda Hexateuch Hexateuchal Hext Hey Heyburn Heyde Heydon Heydrich Heyduck Heyducks Heyduke Heyer Heyerdahl Heyes Heymaey Heyman Heymann Heymans Heyrovsky Heyse Heysham Heyward Heywood Heyworth Hezbollah Hezekiah Hezron Hezronites Hf Hfgel Hfther Hg Hi Hialeah Hianakoto Hiatt Hiawassee Hiawatha Hib Hibbard Hibben Hibbert Hibbertia Hibbing Hibbitts Hibbs Hibernia Hibernian Hibernianism Hibernians Hibernic Hibernical Hibernically Hibernicise Hibernicised Hibernicising Hibernicism Hibernicisms Hibernicize Hibernicized Hibernicizing Hibernization Hibernize Hibernologist Hibernology Hibiscus Hibito Hibitos Hibs Hibunci Hicetaon Hichens Hickey Hickie Hickman Hickok Hickory Hickorywithe Hicks Hicksite Hicksville Hico Hicoria Hidalgo Hidalgos Hidatsa Hidatsas Hiddenite Hideki Hideyo Hideyoshi Hidie Hieland Hiemis Hiera Hieracian Hieracium Hierochloe Hierofalco Hieronymian Hieronymic Hieronymite Hieronymus Hierosolymitan Hierosolymite Hierro Hiestand Hiett Higashiosaka Higbee Higden Higdon Higganum Higginbotham Higgins Higginson Higginsport Higginsville Higgs High Highams Highet Highgate Highland Highlander Highlanders Highlandman Highlandmen Highlandry Highlands Highlandville Highmore Highness Highnesses Highshoals Highsmith Highspire Hightower Hightown Hightstown Highveld Highview Highwood Higinbotham Higley Hihat Hiiumaa Hijaz Hijoung Hijra Hijrah Hijrahs Hijras Hike Hiko Hilaira Hilaire Hiland Hilar Hilara Hilaria Hilario Hilarius Hilarus Hilary Hilarymas Hilarytide Hilbert Hild Hilda Hildagard Hildagarde Hilde Hildebran Hildebrand Hildebrandian Hildebrandic Hildebrandine Hildebrandism Hildebrandist Hildebrandslied Hildebrandt Hildegaard Hildegard Hildegarde Hildesheim Hildick Hildie Hildreth Hildy Hilel Hilfiger Hilger Hilham Hiligaynon Hiligaynons Hill Hilla Hillard Hillari Hillary Hillburn Hillcrest Hilleary Hillegass Hillel Hillell Hiller Hillery Hillhouse Hillhousia Hilliard Hilliards Hilliary Hillie Hillier Hillinck Hillingdon Hillis Hillisburg Hillister Hillman Hillrose Hills Hillsboro Hillsborough Hillsdale Hillside Hillsville Hilltown Hillview Hilly Hillyer Hilmar Hilo Hiltan Hilten Hiltner Hilton Hiltons Hilversum Hilwan Him Hima Himalaya Himalayan Himalayans Himalayas Himantopus Himavat Hime Himeji Himelman Himeros Himerus Himinbjorg Himmler Himrod Hims Himyaric Himyarite Himyarites Himyaritic Hinayana Hinayanas Hinayanist Hinayanistic Hinayanists Hinch Hinckley Hind Hinda Hindarfjall Hindemith Hindenburg Hindfell Hindi Hindman Hindoo Hindooism Hindooisms Hindoos Hindoostani Hindorff Hindostani Hindsboro Hindsville Hindu Hinduise Hinduised Hinduises Hinduising Hinduism Hinduisms Hinduize Hinduized Hinduizes Hinduizing Hindus Hindustan Hindustani Hindustanis Hines Hinesburg Hineston Hinesville Hingham Hingis Hinkel Hinkle Hinkley Hinman Hinnites Hinsdale Hinshelwood Hinson Hinton Hintze Hinze Hiodon Hiodontidae Hiordis Hippa Hippalus Hipparchus Hipparion Hippeastrum Hippel Hippelates Hippia Hippias Hippidae Hippidion Hippidium Hippo Hippobosca Hippoboscidae Hippocastanaceae Hippocratea Hippocrateaceae Hippocrates Hippocratian Hippocratic Hippocratical Hippocratism Hippocrene Hippocrenian Hippocurius Hippodamas Hippodamia Hippoglosinae Hippoglossidae Hippoglossus Hippolochus Hippolyta Hippolytan Hippolyte Hippolytidae Hippolytus Hippomedon Hippomenes Hipponactean Hipponous Hippopotamidae Hipposelinum Hippothous Hippotigris Hippotragus Hippuridaceae Hippuris Hippurites Hippuritidae Hirai Hiram Hiramite Hiranuma Hirasuna Hiren Hirneola Hiro Hirobumi Hirohito Hiroko Hiroshi Hiroshige Hiroshima Hirsch Hirschfeld Hirsh Hirst Hirtella Hirudin Hirudinea Hirudinidae Hirudo Hiruko Hirundinidae Hirundo Hirz Hirza Hisbe Hiseville Hispa Hispania Hispanic Hispanically Hispanicisation Hispanicisations Hispanicise Hispanicised Hispanicises Hispanicising Hispanicism Hispanicisms Hispanicist Hispanicists Hispanicization Hispanicizations Hispanicize Hispanicized Hispanicizes Hispanicizing Hispanics Hispaniola Hispaniolate Hispaniolise Hispaniolised Hispaniolises Hispaniolising Hispaniolize Hispaniolized Hispaniolizes Hispaniolizing Hispanism Hispanisms Hispanist Hispanists Hispanize Hispano Hispanophile Hispanophiles Hispanophilia Hispanophilias Hispanophobe Hispanophobes Hispanophobia Hispanophobias Hispanos Hispinae Hiss Hissarlik Hissop Histadrut Histiophoridae Histiophorus Histoplasma Histriobdella Histriomastix Hitachi Hitchcock Hitchcockian Hitchins Hitchita Hitchiti Hite Hitler Hitlerian Hitlerism Hitlerisms Hitlerite Hitlerites Hitlers Hitoshi Hitt Hittel Hitterdal Hittite Hittites Hittitics Hittitology Hittology Hivite Hiwasse Hiwassee Hixson Hixton Hizar Hizbollah Hizbullah Hizen Hizzoner Hizzoners Hjerpe Hjordis Hler Hlidhskjalf Hliod Hlithskjalf Hloise Hlorrithi Hluchy Hmong Hmongs Ho Hoad Hoag Hoagland Hoang Hoangho Hoare Hoashis Hob Hoban Hobard Hobart Hobbema Hobbes Hobbesian Hobbesians Hobbian Hobbie Hobbinoll Hobbism Hobbisms Hobbist Hobbistical Hobbists Hobbs Hobbsville Hobey Hobgoblin Hobgood Hobie Hoboken Hobomoco Hobrecht Hobson Hobucken Hoccleve Hochelaga Hochheim Hochheimer Hochman Hochpetsch Hock Hockday Hockenheim Hocker Hockessin Hocking Hockingport Hockley Hockney Hocks Hocktide Hodding Hode Hodeida Hoder Hodess Hodge Hodgen Hodgenville Hodges Hodgkin Hodgkinson Hodgson Hodler Hodmezovasarhely Hodosh Hodur Hoe Hoebart Hoeg Hoehne Hoem Hoenack Hoenir Hoes Hoeve Hofei Hofer Hoff Hoffa Hoffarth Hoffer Hoffert Hoffman Hoffmann Hoffmannist Hoffmannite Hoffmeister Hoffnung Hofmann Hofmannsthal Hofstadter Hofstetter Hofuf Hogan Hogansburg Hogansville Hogarth Hogarthian Hogeland Hogen Hogg Hogle Hogmanay Hogmanays Hogni Hogue Hogwarts Hohe Hohenlinden Hohenlohe Hohenstaufen Hohenstaufens Hohenwald Hohenzollern Hohenzollernism Hohenzollerns Hohhot Hohokam Hohokams Hohokus Hoi Hoisch Hoisington Hojo Hokah Hokaltecan Hokan Hokanson Hokiang Hokinson Hokkaido Hokoto Hokusai Hola Holabird Holarctic Holbein Holberg Holblitzell Holborn Holbrook Holbrooke Holcman Holcomb Holcombe Holconoti Holcus Holden Holdenville Holder Holderlin Holderness Holdingford Holdredge Holdrege Holds Hole Holectypina Holey Holgu Holguaen Holguin Holi Holicong Holiday Holiness Holinesses Holinshed Holladay Hollah Holland Hollandaise Hollandale Hollander Hollanders Hollandia Hollandish Hollands Hollansburg Hollantide Holle Hollenbeck Hollenberg Holleran Hollerith Hollerman Holley Holli Holliday Hollidaysburg Hollie Holliger Hollinger Hollingshead Hollingsworth Hollington Hollins Hollis Hollister Holliston Holloman Holloway Hollowville Hollsopple Holly Hollyanne Hollybush Hollytree Hollywood Hollywooder Hollywoodian Hollywoodise Hollywoodised Hollywoodises Hollywoodish Hollywoodising Hollywoodite Hollywoodize Hollywoodized Hollywoodizes Hollywoodizing Holm Holman Holmann Holmdel Holmen Holmes Holmesian Holmesians Holmesville Holms Holmsville Holmun Holna Holocaine Holocaust Holocene Holocentridae Holocentrus Holocephala Holocephali Holochoanites Holochoanoida Holodiscus Holofernes Holognatha Holometabola Holomyaria Holomyarii Holophane Holoptychiidae Holoptychius Holosiphona Holosomata Holostei Holosteum Holostomata Holothuria Holothuridea Holothurioidea Holothuroidea Holotricha Holotrichida Holst Holstein Holsteins Holsworth Holt Holton Holtorf Holtsville Holtville Holtwood Holtz Holub Holy Holyhead Holyoake Holyoke Holyrood Holyroodhouse Holzman Hom Homadus Homagyrius Homalin Homalocenchrus Homalonotus Homalopsinae Homaloptera Homalopterous Homalosternii Homam Homans Homaridae Homarus Homburg Homburgs Home Homedale Homer Homere Homerian Homeric Homerical Homerically Homerid Homeridae Homeridian Homerist Homerologist Homerology Homeromastix Homerus Homerville Homestead Hometown Homewood Homeworth Homicide Hominian Hominidae Hominy Hommel Homo Homocoela Homoean Homoeanism Homoeomeri Homoiousian Homoiousianism Homoiousianisms Homoiousians Homomorpha Homoneura Homoousian Homoousianism Homoousianisms Homoousianist Homoousians Homoousiast Homoousion Homoptera Homorelaps Homos Homosassa Homosteus Homovec Homs Hon Honaker Honan Honans Honaunau Hond Honda Hondo Honduran Honduranean Honduraneans Honduranian Honduranians Hondurans Honduras Hondurean Hondurian Honeapath Honebein Honecker Honegger Honeoye Honesdale Honey Honeybrook Honeyman Honeyville Honeywell Honeywood Honfleur Hong Hongkongite Hongkongites Hongleur Honiara Honig Honiton Honna Honniball Honobia Honokaa Honolulan Honolulans Honolulu Honomu Honor Honora Honorable Honoraville Honoria Honorine Honorius Honors Honour Honourable Hons Honshu Honus Hoo Hooch Hood Hoodsport Hooge Hoogh Hooghly Hook Hooke Hooker Hookera Hookerton Hooks Hookstown Hoolehua Hoon Hoopa Hoopas Hoopen Hooper Hooperating Hoopes Hoopeston Hoople Hooppole Hoosick Hoosier Hoosierdom Hoosierese Hoosierise Hoosierize Hoosiers Hooters Hootman Hooton Hooven Hoover Hooverise Hooverism Hooverize Hoovers Hooversville Hooverville Hoovervilles Hopatcong Hopbottom Hopcalite Hope Hopedale Hopeh Hopehull Hopei Hopeland Hopestill Hopeton Hopewell Hopfinger Hopi Hopin Hopis Hopkins Hopkinsian Hopkinsianism Hopkinson Hopkinsonian Hopkinsville Hopkinton Hopland Hoples Hoplocephalus Hoplonemertea Hoplonemertini Hoppe Hopper Hopwood Hoquiam Horace Horacio Horae Horan Horatia Horatian Horatii Horatio Horatius Horbal Horcus Hordern Hordeum Hordville Horeb Horgan Horick Horicon Horim Horite Horlacher Horlivka Hormel Hormigueros Hormisdas Hormogonales Hormogoneae Hormogoneales Hormuz Horn Hornbeak Hornbeck Hornblower Hornbrook Hornby Horne Hornell Horner Hornersville Horney Hornick Hornie Hornitos Hornsby Hornstein Horntown Horodko Horologium Horonite Horouta Horowitz Horrebow Horrocks Horsa Horseheads Horsens Horsepen Horsetown Horsey Horsham Horst Hort Horta Horten Hortensa Hortense Hortensia Hortensian Hortensio Hortensius Horter Horthy Horton Hortonville Horus Horvatian Horvitz Horwath Horwitz Hos Hosackia Hosbein Hoschton Hose Hosea Hoseia Hosein Hosfmann Hosford Hoshi Hoskins Hoskinson Hoskinston Hosmer Hospers Hospitaler Hospitalers Hospitalet Hospitaller Hospitallers Hosston Host Hosta Hostetter Hosts Hotatian Hotchkiss Hotei Hotevilla Hotien Hotpoint Hotspur Hottentot Hottentotese Hottentotic Hottentotish Hottentotism Hottentots Hottonia Hotze Houck Houdaille Houdan Houdans Houdini Houdon Hough Houghton Houlberg Houlka Houlton Houma Hound Hounslow Hourigan Hourihan Hours Housatonic House Houselander Housen Houser Housman Houssay Houston Houstonia Houstonian Houstonians Houstonite Houstonites Housum Houtzdale Houyhnhnm Houyhnhnms Hova Hovas Hove Hoven Hovenia Hovercraft Hovey Hovhaness Hovland How Howard Howardstown Howarth Howe Howea Howel Howell Howells Howenstein Howertons Howes Howey Howie Howison Howlan Howland Howlend Howlond Howlyn Howrah Howund Howzell Hoxeyville Hoxha Hoxie Hoxsie Hoy Hoya Hoye Hoylake Hoyle Hoyles Hoyleton Hoyt Hoytville Hr Hradcany Hrault Hrdlicka Hreidmar Hrimfaxi Hrolf Hrothgar Hrozny Hruska Hrutkay Hrvatska Hs Hsi Hsia Hsiamen Hsian Hsiang Hsingan Hsingborg Hsining Hsinking Hsu Htindaw Htizwe Hts Hu Hua Huachuca Huai Hualapai Hualapais Huambo Huan Huang Huanuco Huaras Huari Huascar Huascaran Huastec Huastecan Huastecs Huave Huavean Huba Hubbard Hubbards Hubbardston Hubbardsville Hubbell Hubbite Hubble Hube Huber Huberman Hubert Huberto Hubertus Hubertusburg Huberty Hubey Hubie Hubing Hubli Hubsher Hucar Huchnom Huck Huckaby Hucnuco Hucscar Hud Huda Huddersfield Huddie Huddleston Huddy Hudgens Hudgins Hudibras Hudibrastic Hudibrastically Hudibrastics Hudis Hudmezovcscrhely Hudnut Hudson Hudsonia Hudsonian Hudsonville Hue Huebner Huei Huelva Huerta Huesca Huesman Hueston Huey Hueysville Hueytown Huff Huffman Hufnagel Hufuf Hugel Hugelia Huger Huggin Huggins Hugh Hughes Hugheston Hughesville Hughett Hughie Hughmanick Hughoc Hughson Hughsonville Hugi Hugibert Hugin Hugli Hugo Hugoesque Hugon Hugoton Huguenot Huguenotic Huguenotism Huguenotisms Huguenots Hugues Huhehot Hui Huichol Huicholes Huichols Huichou Huidobro Huig Huila Huis Huitzilopochtli Huitzilopotchli Hujsak Huk Hukawng Hukbalahap Hukill Hulbard Hulbert Hulbig Hulburt Hulda Huldah Hulderlin Huldreich Hulen Hulett Hull Hullda Hulme Hulsean Hultgren Hultin Hulton Hulutao Hum Huma Humacao Humanism Humanisms Humanist Humanists Humansville Humarock Humash Humashim Humayun Humber Humberside Humbert Humberto Humbird Humble Humboldt Humboldtianum Hume Humean Humeston Humfrey Humfrid Humfried Humian Humiria Humiriaceae Humiriaceous Humism Humist Hummel Hummelstown Hummer Humnoke Humo Humorum Hump Humpage Humperdinck Humph Humphrey Humphreys Humphries Humphry Humptulips Hums Humulus Humvee Humvees Hun Hunan Hunanese Hunchakist Huneker Hunfredo Hung Hungaria Hungarian Hungarians Hungary Hunger Hungerford Hungnam Hunk Hunker Hunkerism Hunkerous Hunkerousness Hunkey Hunkeys Hunkie Hunkies Hunkpapa Hunkpapas Hunky Hunley Hunlike Hunnewell Hunnian Hunnic Hunnican Hunniford Hunnish Hunnishness Hunnishnesses Huns Hunsinger Hunspell Hunt Hunter Hunterian Hunters Huntersville Huntertown Huntingburg Huntingdon Huntingdonshire Huntington Huntingtown Huntland Huntlee Huntley Huntly Hunts Huntsburg Huntsville Hunyadi Hunyady Hunyak Huoh Hupa Hupas Hupeh Huppert Hura Hurd Hurdland Hurdsfield Hurff Hurlbut Hurlee Hurleigh Hurless Hurley Hurleyville Hurlock Hurlow Hurok Huron Huronian Hurons Hurri Hurrian Hurrians Hurris Hurst Hurstmonceux Hurston Hurtsboro Hurty Hurwit Hurwitz Hus Husain Husch Husein Husha Husk Huskamp Huskey Huskie Huskies Huskisson Husky Huss Hussar Hussein Husser Husserl Husserlian Hussey Hussism Hussite Hussites Hussitism Hussitisms Hustisford Huston Hustontown Hustonville Husum Hut Hutcheson Hutchings Hutchins Hutchinson Hutchinsonian Hutchinsonianism Hutchison Huterian Huther Hutner Hutson Hutsonville Hutsulian Hutt Huttan Hutterian Hutterians Hutterite Hutterites Huttig Hutto Hutton Huttonian Huttonianism Huttonsville Hutu Hutus Hux Huxford Huxham Huxleian Huxley Huxleyan Huxtable Huygenian Huygens Huyghens Huysmans Huzvaresh Hvar Hvasta Hwaiyang Hwajung Hwang Hwanghwatsun Hwangmei Hwei Hweis Hwelon Hwu Hy Hyacinth Hyacintha Hyacinthe Hyacinthia Hyacinthides Hyacinthie Hyacinthus Hyades Hyads Hyaenanche Hyaenarctos Hyaenidae Hyaenodon Hyakume Hyalonema Hyalospongia Hyampom Hyams Hyannis Hyannisport Hyatt Hyattsville Hyattville Hybanthus Hybla Hyblaea Hyblaean Hyblan Hybodus Hydatina Hyde Hyden Hyderabad Hydes Hydesville Hydetown Hydeville Hydnaceae Hydnocarpus Hydnora Hydnoraceae Hydnum Hydra Hydrachna Hydrachnidae Hydractinia Hydradephaga Hydrae Hydrangea Hydrangeaceae Hydras Hydrastis Hydri Hydrid Hydriot Hydriote Hydriotes Hydriots HydroDiuril Hydrobates Hydrobatidae Hydrocaryaceae Hydrocharidaceae Hydrocharis Hydrocharitaceae Hydrochelidon Hydrochoerus Hydrocleis Hydrocorallia Hydrocorallinae Hydrocores Hydrocorisae Hydrocortone Hydrocotyle Hydrocyon Hydrodamalidae Hydrodamalis Hydrodictyaceae Hydrodictyon Hydrodromica Hydrogenomonas Hydroida Hydroidea Hydrolea Hydroleaceae Hydromatic Hydromedusae Hydrometridae Hydromys Hydroparastatae Hydrophidae Hydrophilidae Hydrophinae Hydrophis Hydrophora Hydrophyllaceae Hydrophyllum Hydropotes Hydropterideae Hydrozoa Hydruntine Hydrurus Hydrus Hye Hyeres Hygeia Hygeian Hyginus Hyksos Hyla Hylaeus Hylan Hyland Hylas Hylidae Hyllus Hylobates Hylocereus Hylocichla Hylocomium Hylodes Hylomys Hylton Hyman Hymen Hymenaea Hymenaeus Hymenaic Hymenocallis Hymenochaete Hymenogaster Hymenogastraceae Hymenolepis Hymenomycetes Hymenophyllaceae Hymenophyllites Hymenophyllum Hymenoptera Hymera Hymettian Hymettic Hymettius Hymettus Hymie Hymies Hymir Hynda Hyndman Hynek Hynes Hyo Hyolithes Hyolithidae Hyoscyamus Hyotherium Hyozo Hypanis Hypapante Hypatia Hypatie Hypenantron Hyperborean Hyperboreans Hypercheiria Hyperenor Hypergon Hypericaceae Hypericales Hypericum Hyperion Hypermnestra Hyperoartia Hyperoodon Hyperotreta Hyperotreti Hypertherm Hyphaene Hyphomycetales Hyphomycetes Hypnaceae Hypnos Hypnum Hypnus Hypochaeris Hypochnaceae Hypochnus Hypocreaceae Hypocreales Hypodermella Hypodorian Hypohippus Hypolite Hypolydian Hypoparia Hypopitys Hypostomata Hypostomides Hypotheria Hypotremata Hypotricha Hypotrichida Hypoxis Hypoxylon Hypozoa Hyps Hypseus Hypsilophodon Hypsilophodontidae Hypsiprymninae Hypsiprymnodontinae Hypsiprymnus Hypsipyle Hypsistarian Hypsistus Hyrachyus Hyracidae Hyracina Hyracodon Hyracodontidae Hyracoidea Hyracotheriinae Hyracotherium Hyrcan Hyrcania Hyrcanian Hyrcanians Hyrie Hyrmina Hyrnetho Hyrtius Hyrum Hyrup Hysham Hyssopus Hysteriales Hysterocarpus Hysterophyta Hystricidae Hystricinae Hystricomorpha Hystrix Hyundai Hz Héloise Hérault Hölderlin I IA IAA IAB IAD IADB IAEA IAF IAH IAM IANA IAPPP IAS IATA IATSE IAU IAUC IB IBA IBEW IBM IBN IBRD IBTCWH IC ICA ICAAAA ICAN ICAO ICB ICBM ICBMs ICBW ICC ICCC ICCCM ICD ICE ICFTU ICI ICJ ICL ICLID ICM ICMP ICON ICP ICRC ICS ICSC ICSH ICST ICT ICU IChemE ICs ID IDA IDB IDC IDDD IDE IDEA IDF IDI IDL IDM IDN IDP IDS IDV IDVC IDed IDing IDs IE IEC IEE IEEE IEN IESG IETF IF IFB IFC IFF IFIP IFLA IFLWU IFO IFR IFRPS IFS IG IGES IGFET IGM IGMP IGP IGY IHD IHP IHS IIA IIE IIHF IIL IIN IISPB IJssel IJsselmeer IL ILA ILEA ILGWU ILO ILP ILS ILV ILWU IM IMAP IMAS IMAX IMC IMCO IMD IMF IMHO IMM IMNSHO IMO IMP IMPACT IMS IMSA IMSL IMSO IMSVS IMT IMTS IMarE IMunE IN INADS INC IND ING INGRES INH INL INMS INN INOC INRI INRIA INS INTAP INTELSAT INTUC INWATS IO IOC IOCC IOD IOF IOM IONL IOOF IOP IOT IOTA IOU IOUs IOW IP IPA IPBM IPC IPCC IPCE IPCS IPDU IPE IPI IPL IPLAN IPM IPMS IPO IPS IPSE IPT IPX IPY IQ IQR IQSY IR IRA IRAF IRAS IRAs IRBM IRC IRD IRDS IRE IRG IRL IRM IRMS IRN IRO IROR IRQ IRS IRSG IRTF IS ISA ISAM ISAS ISBD ISBN ISC ISCH ISDN ISDT ISEE ISF ISFUG ISH ISI ISIS ISLM ISLU ISM ISN ISO ISODE ISOO ISOP ISPM ISR ISRG ISS ISSI ISSN IST ISUP ISV ISY IT ITA ITC ITCZ ITM ITO ITS ITSEC ITSO ITT ITU ITUSA ITV IU IUD IUE IUS IUV IV IVB IVDT IVP IVTS IVs IW IWBNI IWC IWS IWW IX IXC IXM Ia Iacchic Iacchos Iacchus Iaccoca Iache Iachimo Iacocca Iaeger Iago Iain Ialmenus Ialysos Ialysus Iambe Iams Iamus Ian Iand Ianteen Ianthe Ianthina Ianus Iapetus Iapigia Iapyges Iapygian Iapygii Iapyx Iarbas Iardanus Iaria Iasi Iasion Iaso Iastic Iasus Iaverne Ib Iba Ibad Ibada Ibadan Ibadhi Ibadite Ibagu Ibague Iban Ibanag Ibanez Ibapah Ibaraki Ibarruri Ibbetson Ibbie Ibbison Ibby Ibcuez Iberes Iberi Iberia Iberian Iberians Iberic Iberis Iberism Ibert Ibibio Ibibios Ibididae Ibidinae Ibidium Ibilao Ibiza Ibizan Ibizans Iblis Ibn Ibo Ibos Ibrahim Ibsen Ibsenesque Ibsenian Ibsenic Ibsenish Ibsenism Ibsenisms Ibsenite Ibsenites Ibson Ibycter Ibycus Ic Ica Icacinaceae Icacorea Icahn Icard Icaria Icarian Icarianism Icarians Icarius Icarus Ice Icel Iceland Icelander Icelanders Icelandian Icelandic Icelidae Icelus Iceni Icenian Icenic Icerya Ichabod Ichang Ichinomiya Ichneumia Ichneumones Ichneumonidae Ichneumonides Ichneumonoidea Ichthyocentaur Ichthyocephali Ichthyodea Ichthyodectidae Ichthyoidea Ichthyol Ichthyomorpha Ichthyopsida Ichthyopterygia Ichthyornis Ichthyornithes Ichthyornithidae Ichthyornithiformes Ichthyosauria Ichthyosauridae Ichthyosaurus Ichthyotomi Icken Ickes Ickesburg Iconian Iconium Iconoscope Icosandria Icosteidae Icosteus Icteridae Ictinus Ictonyx Id Ida Idabel Idaea Idaean Idaho Idahoan Idahoans Idahoes Idahos Idaic Idalia Idalian Idalina Idaline Idalla Idalou Idamay Idanha Idas Idaville Idden Iddio Iddo Ide Idea Idean Ideas Idel Ideler Idelia Idell Idelle Idelson Iden Identikit Ider Ides Idette Idewild Idhi Idiogastra Idiosepiidae Idiosepion Idism Idist Idistic Iditarod Idledale Idleman Idlewild Idmon Ido Idoism Idoist Idoistic Idola Idolah Idolla Idolum Idomeneo Idomeneus Idona Idonah Idonea Idonna Idotea Idoteidae Idothea Idotheidae Idou Idoux Idria Idris Idrisid Idrisite Idumaea Idumaean Idumaeans Idumea Idumean Idumeans Idun Iduna Idyllwild Idzik Ieda Ielene Iene Ieper Ier Ierna Ierne Ieso Ietta Iey Ieyasu If Ife Ifill Ifni Ifugao Ifugaos IgA IgE IgG IgM Igal Igara Igbira Igbo Igbos Igdrasil Igdyr Igenia Igerne Iggdrasil Iggie Iggy Igigi Iglau Iglesias Iglulirmiut Ignace Ignacia Ignacio Ignacius Ignatia Ignatian Ignatianist Ignatius Ignatz Ignatzia Ignaz Ignazio Ignorantine Igo Igor Igorot Igorots Igraine Iguac Iguacu Iguania Iguanidae Iguanodon Iguanodontia Iguanodontidae Iguanodontoidea Iguassu Iguazu Iguvine Ihab Ihlat Ihlen Iia Iiette Iila Iinde Iinden Iives Ij Ijamsville Ijo Ijore Ijssel Ijsselmeer Ikara Ikaria Ike Ikea Ikeda Ikeja Ikey Ikhnaton Ikhwan Ikkela Il Ila Ilaire Ilam Ilan Ilana Ilario Ilarrold Ilbert Ileana Ileane Ileitis Ilene Ilesha Iletin Ilford Ilha Ilhaus Ilheus Ilia Iliac Iliad Iliadic Iliadise Iliadist Iliadize Iliads Iliamna Ilian Ilians Ilicaceae Iliff Iligan Iline Ilion Ilione Ilioneus Ilisa Ilise Ilissus Ilithyia Ilium Ilka Ilke Ilkeston Ilkley Ill Illa Illaea Illaenus Illampu Illano Illanun Illawarra Illecebraceae Illecebrum Illene Illertissen Illia Illich Illicium Illimani Illingworth Illinoian Illinois Illinoisan Illinoisans Illinoisian Illiopolis Illipe Illona Illoricata Illuminati Illuminise Illuminism Illuminisms Illuministic Illuminize Illyes Illyria Illyrian Illyrians Illyric Illyricum Illyrius Ilmarinen Ilmen Ilocano Ilocanos Iloilo Ilokano Ilokanos Iloko Ilona Ilone Ilongo Ilongos Ilongot Ilonka Ilorin Ilotycin Ilowell Ilpirra Ilsa Ilse Ilsedore Ilwaco Ilwain Ilya Ilysa Ilysanthes Ilyse Ilysia Ilysiidae Ilyssa Ilyushin Im Ima Imagism Imagisms Imagist Imagists Imalda Imam Imamate Imamates Imamite Imams Iman Imantophyllum Imari Imaris Imbler Imboden Imbrium Imbrius Imbros Imelda Imelida Imena Imer Imerina Imeritian Imhotep Imipramine Imitrex Imitrexes Imitt Imlay Imlaystown Imler Immaculata Immanes Immanuel Immanuels Immelmann Immelmanns Immingham Immokalee Immortal Immortals Imnaha Imo Imodium Imogen Imogene Imojean Imola Imolinda Imp Impatiens Impatientaceae Impennes Imperata Imperforata Imperia Imperial Imperials Impeyan Imphal Implacentalia Impressionism Impressionisms Impressionist Impressionistic Impressionists Improperia Imray Imre Imroz Imtiaz Imus In Ina Inachidae Inachus Inanna Inari Inarticulata Inavale Inc Inca Incabloc Incaic Incan Incans Incaparina Incaparinas Incarial Incarnation Incarvillea Incas Inchelium Inchon Incognito Incorporated Incorruptible Increase Incrocci Incrustata Ind IndE Indanthrene Indecidua Independence Independencies Independency Independent Independents Independista Inderal Index Indexes Indi India Indiahoma Indiaman Indiamen Indian Indiana Indianan Indianans Indianapolis Indianeer Indianesque Indianhead Indianhood Indianian Indianians Indianisation Indianise Indianised Indianises Indianising Indianism Indianisms Indianist Indianists Indianization Indianizations Indianize Indianized Indianizes Indianizing Indianness Indiannesses Indianola Indians Indiantown Indic Indicatoridae Indicatorinae Indices Indics Indienne Indies Indigenismo Indigofera Indihar Indio Indira Indochina Indochinese Indocin Indocins Indoeuropean Indogaea Indogaean Indologian Indologies Indologist Indologists Indologue Indology Indone Indonesia Indonesian Indonesians Indophile Indophilism Indophilist Indore Indra Indrani Indre Indris Indulgence Indulgences Indurain Indus Indy Ineducabilia Ineri Inermes Inermi Inermia Inerney Ines Inesita Ineslta Inessa Inez Inf Infantries Infantry Infeld Inferi Inferno Infield Informatica Infralapsarianism Infundibulata Infusoria Ing Inga Ingaberg Ingaborg Ingaevones Ingaevonic Ingalls Ingamar Ingar Inge Ingeberg Ingeborg Ingelbert Ingelow Ingemar Inger Ingersoll Ingham Inghamite Inghilois Inghirami Ingle Inglebert Ingleborough Inglefield Ingles Ingleside Inglewood Inglis Ingmar Ingold Ingoldsby Ingolstadt Ingomar Ingra Ingraham Ingram Ingres Ingrid Ingrim Inguklimiut Ingunna Ingush Ingushes Ingvaeonic Ingvar Ingveonic Ingwaeonic Ingweonic Inhambane Inhiston Inia Inigo Inin Inina Inine Iniomi Injun Inka Inkan Inkans Inkas Inkatha Inkerman Inkom Inkra Inkster Inland Inman Inn Inna Inner Innes Inness Innis Innisfail Inniskilling Innocent Innsbruck Innu Innuit Innuits Innus Ino Inocarpus Inoceramus Inodes Inola Inonu Inoperculata Inoue Inquilinae Inquisition Inquisitions Insecta Insectivora Insessores Insko Inst Instagram Instamatic Institutes Insull Int Intal Integropallialia Integropalliata Intel Intelligence Intelligences Intelpost Intelsat Intercidona Intercourse Interim Interior Interlachen Interlaken Interlingua Interlochen International Internationale Internationales Internationalism Internationalisms Internationalist Internationalists Internationals Internet Internets Interphone Interpol Interstate Interstates Intertype Intervale Intimism Intisar Intosh Intoximeter Intoximeters Introit Introits Intyre Inuit Inuits Inuktitut Inunf Inupiak Inupiaq Inupiaqs Inupiat Inupiats Invar Invars Inveraray Invercargill Inverness Invernesses Invernessshire Inverson Invertebrata Invocation Invocations Inwood Iny Inyanga Inyokern Io Ioab Ioannides Ioannina Iobates Iodama Iodamoeba Iodol Iola Iolande Iolanthe Iolaus Iole Iolenta Ion Iona Ionamin Ionamins Ione Ionesco Iong Ioni Ionia Ionian Ionians Ionic Ionicisation Ionicise Ionicised Ionicises Ionicising Ionicism Ionicization Ionicize Ionicized Ionicizes Ionicizing Ionics Ionidium Ionism Ionist Ionists Ionization Ionize Ionornis Ionoxalis Iorgo Iorgos Iorio Iormina Iormungandr Ios Iosep Ioskeha Ioved Iover Ioves Iow Iowa Iowan Iowans Iowas Ioxus Ioyal Ipalnemohuani Ipava Iphagenia Iphianassa Iphicles Iphidamas Iphigenia Iphigeniah Iphimedia Iphinoae Iphinoe Iphis Iphition Iphitus Iphlgenia Iphthime Ipiales Ipidae Ipiutak Ipoctonus Ipoh Ipomoea Ipsambul Ipsus Ipswich Iqaluit Iqbal Iquique Iquitos Ir IrGael Ira Iraan Irak Iraki Irakis Iraklion Iran Irangate Irani Iranian Iranians Iranic Iranis Iranise Iranism Iranist Iranize Iraq Iraqi Iraqian Iraqis Irasburg Irazu Irbid Irbil Irby Ire Iredale Iredell Ireland Irelander Irelanders Irena Irenaeus Irene Iresine Ireton Irfan Irgun Irgunist Iri Iriartea Iriarteaceae Iricise Iricised Iricising Iricism Iricize Iricized Iricizing Iridaceae Iridis Iridissa Iridomyrmex Iridum Irina Iris Irisa Irish Irisher Irishers Irishian Irishise Irishised Irishising Irishism Irishisms Irishize Irishized Irishizing Irishly Irishman Irishmen Irishness Irishnesses Irishries Irishry Irishwoman Irishwomen Irishy Irita Irja Irklion Irkutsk Irl Irma Irme Irmgard Irmina Irmine Irmo Iroha Ironbelt Ironbridge Irondale Irondequoit Ironia Ironman Ironmen Irons Ironside Ironsides Ironton Iroquoian Iroquoians Iroquois Irpex Irra Irrawaddy Irredentism Irredentist Irredentists Irridentist Irridentists Irrigon Irrisoridae Irritila Irtish Irtysh Irus Irv Irvin Irvine Irving Irvingesque Irvingiana Irvingism Irvingite Irvingites Irvington Irvona Irwin Irwinn Irwinville Iráklion Is Isa Isaac Isaacs Isaacson Isaak Isaban Isabea Isabeau Isabel Isabela Isabelita Isabella Isabelle Isabelline Isac Isacco Isador Isadora Isadore Isahella Isai Isaiah Isaian Isaianic Isaias Isak Isamu Isander Isanti Isar Isare Isaria Isatis Isauria Isaurian Isaurians Isawa Isbel Isbella Isborne Iscariot Iscariotic Iscariotical Iscariotism Ischepolis Ischia Ischyodus Ischys Iseabal Isegrim Iselin Isenland Isenstein Isere Iseult Iseum Isfahan Ishan Isherwood Ishii Ishim Ishmael Ishmaelite Ishmaelites Ishmaelitic Ishmaelitish Ishmaelitism Ishmaelitisms Ishmaels Ishmul Ishpeming Ishtar Ishum Ishvara Isia Isiac Isiacal Isiah Isiahi Isidae Isidor Isidora Isidore Isidorean Isidorian Isidoric Isidoro Isidorus Isidro Isimud Isin Isinai Ising Isis Iskenderun Isl Isla Islaen Islam Islamabad Islamic Islamicise Islamicised Islamicises Islamicising Islamicist Islamicists Islamicize Islamicized Islamicizes Islamicizing Islamics Islamisation Islamisations Islamise Islamised Islamises Islamising Islamism Islamisms Islamist Islamistic Islamists Islamite Islamites Islamitic Islamitish Islamization Islamizations Islamize Islamized Islamizer Islamizers Islamizes Islamizing Islamorada Islams Island Islandton Islay Isle Islean Isleana Isleen Islek Islesboro Islesford Isleta Isleton Islington Islip Isma Ismael Ismaelian Ismaelians Ismaelism Ismaelite Ismaelitic Ismaelitical Ismaelitish Ismail Ismaili Ismailia Ismailian Ismailians Ismailis Ismailite Ismailiya Isman Ismarus Ismay Ismene Ismenus Ismet Isnardia Isobel Isocardia Isocardiidae Isocrates Isoetaceae Isoetales Isoetes Isokontae Isola Isolda Isolde Isolette Isolettes Isoloma Isolt Isom Isomera Isomyaria Isonville Isonzo Isopleura Isopoda Isoprinosine Isoptera Isospondyli Isotria Ispahan Ispell Israel Israeli Israelis Israelite Israelites Israeliteship Israelitic Israelitise Israelitish Israelitism Israelitize Israels Israfil Issac Issachar Issacharite Issaquah Issayeff Issedoi Issedones Issei Isseis Issi Issiah Issie Issigonis Issus Issy Istachatta Istanbul Isth Isthmia Isthmian Isthmians Istiophoridae Istiophorus Istria Istrian Istrians Istvaeones Istvan Isuridae Isurus Isus Isuzu Iswara Isère It Ita Itabuna Itagaki Itaipu Itajaae Itajai Ital Itala Itali Italia Italian Italianate Italianated Italianately Italianates Italianating Italianation Italianesque Italianisation Italianisations Italianise Italianised Italianiser Italianises Italianish Italianising Italianism Italianisms Italianist Italianity Italianization Italianizations Italianize Italianized Italianizer Italianizes Italianizing Italianly Italians Italic Italical Italically Italican Italicanist Italici Italicism Italicisms Italics Italiot Italiote Italo Italomania Italon Italophil Italophile Italophiles Italophilia Italophilias Italy Itapetininga Itasca Itaves Itch Itea Iteaceae Itelmes Iten Itenean Ithaca Ithacan Ithacans Ithacensian Ithaginis Ithaki Ithaman Ithiel Ithnan Ithomatas Ithome Ithomiidae Ithomiinae Ithun Ithunn Ithyphallus Itin Itinerarium Itmann Itnez Ito Itoism Itoist Itoland Itonama Itonaman Itonia Itonididae Itonius Ittabena Ituraean Ituraeans Iturbi Iturbide Iturean Itureans Itylus Itys Itza Itzhak Iuka Iulus Iva Ivah Ivan Ivana Ivanah Ivanhoe Ivanna Ivanov Ivanovce Ivanovo Ivar Ivatan Ivatts Ive Ivekovic Ivel Ivens Iver Ivers Iverson Ives Ivesdale Ivesian Iveson Ivett Ivette Ivetts Ivey Ivie Ivies Ivins Ivis Iviza Ivo Ivoirian Ivoirians Ivon Ivonne Ivor Ivorian Ivorians Ivory Ivoryton Ivy Ivydale Ivyton Iwao Iwo Iwu Ixelles Ixia Ixiaceae Ixiama Ixil Ixion Ixionian Ixodes Ixodidae Ixonia Ixora Ixtaccihuatl Ixtacihuatl Ixtapalapa Iy Iyang Iyar Iyars Iyeyasu Iynx Iyre Iyyar Iyyars Iz Izaak Izabel Izak Izanagi Izanami Izar Izard Izawa Izcateco Izdubar Izhevsk Izmir Izmit Iznik Izod Iztaccihuatl Izvestia Izvestiya Izy Izyum Izzak Izzy J JA JAC JACM JAG JAL JANET JAP JATO JATOs JBS JC JCA JCAC JCAE JCB JCD JCEE JCET JCL JCR JCS JD JDS JECC JEIDA JEM JES JESUS JET JFET JFIF JFK JFMIP JFS JGR JHS JHVH JHWH JI JIC JILA JIM JIS JISC JIT JJ JLE JMP JMS JMX JO JOAT JOVE JOVIAL JP JPEG JPL JRC JSC JSD JSN JSRC JST JSW JTIDS JTM JUD JUGFET JUNET JV JVNC JWV Ja Jaal Jaala Jaalin Jaan Jabal Jabalpur Jaban Jabarite Jabberwock Jabberwockies Jabberwocky Jabe Jabez Jabin Jabir Jablon Jablonsky Jabon Jabrud Jac Jacalin Jacalinne Jacaltec Jacalteca Jacalyn Jacamaralcyon Jacamerops Jacana Jacanidae Jacaranda Jacarta Jacenta Jacey Jachin Jacie Jacinda Jacinta Jacinth Jacintha Jacinthe Jacinto Jack Jackelyn Jackhorn Jacki Jackie Jackies Jacklin Jacklyn Jackman Jackquelin Jackqueline Jacks Jacksboro Jackson Jacksonboro Jacksonburg Jacksonia Jacksonian Jacksonianism Jacksonianisms Jacksonians Jacksonism Jacksonite Jacksonport Jacksontown Jacksonville Jacky Jaclin Jaclyn Jacmel Jaco Jacob Jacoba Jacobah Jacobba Jacobean Jacobeans Jacobethan Jacobi Jacobian Jacobians Jacobic Jacobin Jacobina Jacobine Jacobinia Jacobinic Jacobinical Jacobinically Jacobinisation Jacobinise Jacobinised Jacobinises Jacobinising Jacobinism Jacobinisms Jacobinization Jacobinize Jacobinized Jacobinizes Jacobinizing Jacobins Jacobite Jacobitely Jacobites Jacobitiana Jacobitic Jacobitical Jacobitically Jacobitish Jacobitishly Jacobitism Jacobitisms Jacobo Jacobs Jacobsburg Jacobsen Jacobsohn Jacobson Jacobus Jacobuses Jacoby Jacopo Jacquard Jacquards Jacque Jacquel Jacquelin Jacqueline Jacquely Jacquelyn Jacquelynn Jacqueminot Jacquenetta Jacquenette Jacquerie Jacqueries Jacques Jacquet Jacquetta Jacquette Jacqui Jacquie Jacumba Jacunda Jacuzzi Jacuzzis Jacy Jacynth Jada Jadd Jadda Jaddan Jaddo Jade Jadotville Jadwiga Jadwin Jae Jaeger Jaehne Jael Jaela Jaella Jaen Jaenicke Jaf Jaffa Jaffas Jaffe Jaffna Jaffrey Jaga Jaganmati Jagannath Jagannatha Jagannathas Jagannaths Jagatai Jagataic Jagello Jagellon Jagellonian Jagellos Jagganath Jagger Jaghatai Jagiello Jagiellon Jagiellonian Jagiellos Jagielon Jagir Jago Jaguar Jah Jahangir Jahdai Jahdal Jahdiel Jahdol Jahel Jahn Jahncke Jahrum Jahrzeit Jahve Jahveh Jahvism Jahvist Jahvistic Jahvists Jahwe Jahweh Jahwism Jahwist Jahwistic Jailsco Jaime Jaimie Jain Jaina Jainas Jaine Jainism Jainisms Jainist Jainists Jains Jaipur Jaipuri Jair Jairia Jajapura Jajawijaja Jakarta Jake Jakie Jakin Jakob Jakoba Jakobson Jakop Jakun Jal Jala Jalalabad Jalalaean Jalapa Jalbert Jalgaon Jalisco Jallier Jam Jamaal Jamaica Jamaican Jamaicans Jamal Jamalpur Jamar Jambi Jambos Jame Jamel James Jamesburg Jamesean Jamesian Jamesina Jameson Jamesonite Jamesport Jamesstore Jamestown Jamesville Jamesy Jamey Jami Jamie Jamieson Jamil Jamila Jamill Jamilla Jamille Jamima Jamin Jamison Jammal Jammie Jammin Jammu Jamnagar Jamnes Jamnia Jamnis Jams Jamshedpur Jamshid Jamshyd Jamul Jan Jana Janacek Janata Janaya Janaye Janccek Jandal Jandals Jandel Jandy Jane Janean Janeczka Janeen Janeiro Janeite Janeites Janek Janel Janela Janelew Janell Janella Janelle Janene Janenna Janerich Janessa Janesville Janet Janeta Janetta Janette Janeva Janey Janghey Jangro Jania Janice Janicki Janiculan Janiculum Janie Janifer Janiform Janik Janina Janine Janis Janissarian Janissaries Janissary Janith Janiuszck Janizarian Janizaries Janizary Janjaweed Janka Jankell Jankey Jann Janna Jannel Jannelle Jannery Jannie Janok Janos Janot Jansen Jansenism Jansenisms Jansenist Jansenistic Jansenistical Jansenists Jansenize Janson Janssen Jansson Janthina Janthinidae Januaries Januarius January Januarys Januisz Janus Januslike Jany Janye Janys Janyte Jap Japan Japanee Japanese Japanesery Japaneses Japanesque Japanesquely Japanesquery Japanesy Japanicize Japanisation Japanisations Japanise Japanised Japanises Japanising Japanism Japanization Japanizations Japanize Japanized Japanizes Japanizing Japanner Japannish Japanolatry Japanologist Japanology Japanophile Japanophiles Japanophobe Japanophobia Japans Japeth Japetus Japha Japheth Japhetic Japhetide Japhetite Japn Japonaiserie Japonaiseries Japonic Japonically Japonicize Japonism Japonisms Japonize Japonizer Japs Japur Japura Japurc Japygidae Japyx Jaqitsch Jaquelee Jaquelin Jaqueline Jaquelyn Jaquenetta Jaquenette Jaques Jaquesian Jaquiss Jaquith Jara Jarabub Jarad Jarales Jaramie Jarash Jarbidge Jard Jardena Jareb Jared Jarek Jaret Jari Jariah Jarib Jarid Jarietta Jarita Jarl Jarlath Jarlathus Jarlen Jarlsberg Jarlsbergs Jarman Jarnagin Jarndyce Jaromir Jaroslav Jaroso Jarrad Jarratt Jarreau Jarred Jarrell Jarret Jarrett Jarrettsville Jarrid Jarrod Jarrow Jarry Jaruzelski Jarv Jarvey Jarvin Jarvis Jarvisburg Jary Jas Jascha Jase Jasen Jasik Jasione Jasisa Jasmin Jasmina Jasminaceae Jasmine Jasminum Jason Jasonville Jasper Jaspers Jassidae Jassy Jastrzebie Jasun Jat Jataka Jatakas Jateorhiza Jatki Jatni Jatropha Jats Jatulian Jauch Jaunita Jaur Jauras Jaures Jav Java JavaScript Javahai Javakishvili Javan Javanee Javanese Javari Javary Javas Javed Javier Javitero Javler Jawaharlal Jawan Jawara Jawi Jawlensky Jaworski Jaxartes Jay Jayapura Jayawardena Jayawardene Jaycee Jaycees Jaye Jayem Jayess Jayhawk Jayhawker Jayhawkers Jayhawks Jaylene Jayme Jaymee Jaymie Jayn Jayne Jaynell Jaynes Jaynne Jayson Jayton Jayuya Jazmin Jazyges Jbeil Jcanette Jdavie Je Jea Jeames Jean Jeana Jeane Jeanelle Jeanerette Jeanette Jeanie Jeanine Jeanna Jeanne Jeannetta Jeannette Jeannie Jeannine Jeannye Jeanpaulia Jeans Jeavons Jeaz Jeb Jebb Jebus Jebusi Jebusite Jebusitic Jebusitical Jebusitish Jecho Jecoa Jecon Jeconiah Jed Jedburgh Jedd Jedda Jeddo Jeddy Jedediah Jedi Jedidiah Jedlicka Jedthus Jeep Jeepers Jeeps Jeeves Jeez Jeeze Jeff Jeffcott Jefferey Jeffers Jefferson Jeffersonia Jeffersonian Jeffersonianism Jeffersonianisms Jeffersonians Jeffersonton Jeffersontown Jeffersonville Jeffery Jeffie Jeffrey Jeffreys Jeffries Jeffry Jeffy Jegar Jeggar Jegger Jeh Jehan Jehangir Jehanna Jehiah Jehial Jehias Jehiel Jehius Jehoash Jehoiada Jehol Jehosaphat Jehoshaphat Jehovah Jehovic Jehovism Jehovisms Jehovist Jehovistic Jehovists Jehu Jehudah Jekyll Jelena Jelene Jelks Jelle Jellico Jellicoe Jello Jellos Jellyby Jelm Jelsma Jem Jemappes Jemena Jemez Jemie Jemima Jemimah Jemina Jeminah Jemine Jemison Jemma Jemmie Jemmy Jempty Jemy Jen Jena Jenda Jenei Jenelle Jenesia Jenette Jeni Jenica Jenice Jeniece Jenifer Jeniffer Jenilee Jenin Jenine Jenison Jenkel Jenkins Jenkinsburg Jenkinson Jenkinsville Jenkintown Jenks Jenn Jenna Jenne Jennee Jenner Jennerian Jennerstown Jenness Jennette Jenni Jennica Jennie Jennifer Jennilee Jennine Jennings Jenny Jeno Jens Jensen Jenson Jentoft Jenufa Jephte Jephthah Jephum Jepson Jepum Jequia Jequie Jer Jerad Jerahmeel Jerahmeelites Jerald Jeraldine Jeralee Jeramey Jeramie Jerash Jerba Jere Jereld Jereme Jeremiah Jeremiahs Jeremian Jeremianic Jeremias Jeremie Jeremy Jeres Jerez Jeri Jericho Jerilyn Jeris Jeritah Jeritza Jermain Jermaine Jerman Jermayne Jermyn Jeroboam Jeroboams Jerol Jerold Jeroma Jerome Jeromesville Jeromian Jeromy Jeronima Jeronymite Jerre Jerri Jerrie Jerries Jerrilee Jerrilyn Jerrine Jerrod Jerrol Jerrold Jerroll Jerrome Jerry Jerrylee Jersey Jerseyan Jerseyans Jerseyite Jerseyites Jerseyman Jerseys Jerseyville Jerubbaal Jerubbal Jerusalem Jerusalemite Jerusalemites Jervis Jerz Jes Jesh Jesher Jesmine Jespersen Jess Jessa Jessabell Jessalin Jessalyn Jessamine Jessamyn Jesse Jessean Jessee Jesselton Jesselyn Jessen Jessey Jessi Jessica Jessie Jessieville Jessika Jessore Jessup Jessy Jestude Jesu Jesuate Jesuit Jesuited Jesuitess Jesuitic Jesuitical Jesuitically Jesuitisation Jesuitise Jesuitised Jesuitises Jesuitish Jesuitising Jesuitism Jesuitisms Jesuitist Jesuitization Jesuitize Jesuitized Jesuitizes Jesuitizing Jesuitocracy Jesuitries Jesuitry Jesuits Jesup Jesus Jetersville Jeth Jethra Jethro Jethronian Jetmore Jetson Jettie Jetway Jetways Jeu Jeunesse Jeuz Jevon Jevons Jew Jewdom Jewel Jewell Jewelle Jewess Jewesses Jewett Jewhood Jewish Jewishly Jewishness Jewishnesses Jewism Jewless Jewlike Jewling Jewries Jewry Jews Jewship Jewstone Jewy Jez Jezabel Jezabella Jezabelle Jezebel Jezebelian Jezebelish Jezebels Jezreel Jezreelite Jezreelites Jfnger Jger Jhabvala Jhansi Jhelum Jhuria Ji Jibouti Jibuti Jicaque Jicaquean Jicarilla Jicarillas Jidda Jigger Jihlava Jijiga Jilin Jill Jillana Jillane Jillayne Jilleen Jillene Jilli Jillian Jillie Jills Jilly Jilolo Jim Jimanez Jimenez Jimmie Jimmy Jimnez Jimsonweed Jimsonweeds Jinan Jincan Jinja Jinnah Jinny Jinsen Jinx Jinzhou Jit Jivaran Jivaro Jivaroan Jivaros Jkping Jl Jno Jo JoAnn JoAnne Joab Joachim Joachima Joachimite Joacima Joacimah Joan Joana Joane Joanie Joann Joanna Joanne Joannes Joannite Joao Joappa Joaquin Joas Joash Joashus Job Jobcentre Jobcentres Jobe Jobey Jobi Jobie Jobina Jobs Jobstown Joby Jobye Jobyna Jocasta Jocaste Jocelin Joceline Jocelyn Jocelyne Jocelynne Jochabed Jochbed Jochebed Jochum Jock Jockey Jockeys Jocko Jodean Jodee Jodeen Jodene Jodhpur Jodhpurs Jodi Jodie Jodine Jodl Jodo Jodoin Jodrell Jody Jodyn Jodynne Joe Joeann Joed Joel Joela Joelie Joell Joella Joelle Joellen Joelly Joellyn Joelton Joelynn Joensuu Joerg Joes Joesph Joete Joette Joey Joeys Joffre Jogjakarta Joh Johan Johanan Johann Johanna Johannah Johannean Johannes Johannesburg Johannessen Johannine Johannisberger Johannist Johannite Johansen Johanson Johathan Johen Johiah Johm John Johna Johnadreams Johnath Johnathan Johnathon Johnday Johnette Johnian Johnie Johnna Johnnie Johnnies Johnny Johns Johnsburg Johnsen Johnsmas Johnson Johnsonburg Johnsonese Johnsoneses Johnsongrass Johnsongrasses Johnsonian Johnsoniana Johnsonianism Johnsonianly Johnsonians Johnsonism Johnsonville Johnsson Johnsten Johnston Johnstone Johnstown Johny Johor Johore Johppa Johppah Johst Joiada Joice Joiner Joinerville Joinvile Joinville Jojo Jokai Jokjakarta Joktan Jola Jolanta Jolda Jolee Joleen Jolene Jolenta Joletta Joli Jolie Joliet Joliette Joline Jolivet Jolla Jollanta Jollenta Jolley Jolliet Jolo Joloano Jolon Jolson Joly Jolyn Jolynn Jomada Jomadas Jomo Jon Jona Jonah Jonahesque Jonahism Jonahs Jonancy Jonas Jonathan Jonathanisation Jonathanization Jonathans Jonathon Jonati Jonben Jone Jonel Jonell Jones Jonesboro Jonesborough Jonesburg Joneses Jonesian Jonesport Jonestown Jonesville Jonette Jongkind Joni Jonie Jonina Jonis Jonkoping Jonme Jonna Jonny Jonquil Jonson Jonsonian Jonval Joo Joon Jooss Joost Jooste Jopa Jophiel Joplin Joppa Jordaens Jordain Jordan Jordana Jordanian Jordanians Jordanna Jordans Jordanson Jordanville Jordison Jordon Jorey Jorgan Jorge Jorgensen Jorgenson Jori Jorie Jorin Joris Jorist Jormungandr Jorrie Jorry Jory Jos Joscelin Jose Josee Josef Josefa Josefina Joseito Joselow Joselyn Josep Joseph Josepha Josephina Josephine Josephinism Josephism Josephite Josephites Josephs Josephson Josephus Joser Joses Josey Josh Joshi Joshia Joshua Joshuah Josi Josiah Josias Josie Josip Josler Joslyn Josquin Josselyn Josue Josy Jotham Jotnian Jotun Jotunheim Jotunn Jotunnheim Jotunns Jotuns Joub Joubert Jouhaux Joukahainen Joule Joung Jounieh Jourdain Jourdan Jourdanton Jouve Jova Jovanovich Jove Jovi Jovia Jovial Jovian Jovianly Jovicentric Jovicentrical Jovicentrically Joviniamish Jovinian Jovinianism Jovinianist Jovinianistic Jovita Jovitah Jovite Jovitta Jowett Joxe Joy Joya Joyan Joyance Joyann Joyce Joycean Joyceans Joycelin Joye Joyner Joyous Jozef Jozy Jpn Jr Jsandye Jtunn Ju Juan Juana Juanadiaz Juang Juanita Juanne Juantorena Juarez Juba Juback Jubal Jubbulpore Jubilate Jubilates Jubile Jubilee Jubilees Jucrez Jucuna Jud Juda Judaea Judaean Judaeans Judaeomancy Judaeophile Judaeophilism Judaeophobe Judaeophobia Judah Judahite Judaic Judaica Judaical Judaically Judaisation Judaise Judaised Judaiser Judaising Judaism Judaisms Judaist Judaistic Judaistically Judaists Judaization Judaizations Judaize Judaized Judaizer Judaizers Judaizes Judaizing Judas Judases Judaslike Judd Jude Judea Judean Judeans Judenberg Judeophobia Judette Judezmo Judg Judge Judges Judgment Judgments Judi Judica Judiciary Judie Judith Juditha Judon Judophobism Judsen Judson Judsonia Judus Judy Judye Jueta Juetta Juga Jugatae Jugendstil Jugendstils Juggernaut Juggernautish Juggernauts Juglandaceae Juglandales Juglans Jugoslav Jugoslavia Jugoslavian Jugoslavians Jugoslavic Jugoslavs Jugulares Jugurtha Jugurthine Juieta Juin Jujuy Jukes Jul Jule Julee Jules Julesburg Juletta Juley Juli Julia Juliaetta Julian Juliana Juliane Julianist Juliann Julianna Julianne Juliano Julidae Julide Julie Julien Julienne Julies Juliet Julieta Julietta Juliette Julina Juline Julio Julis Julissa Julita Julius Juliustown Julliard Jullundur Juloidea Julundur Julus July Julyflower Julys Jumada Jumadas Jumana Jumbala Jumbo Jumna Jump Jun Juna Junc Juncaceae Juncaginaceae Juncal Junco Juncoides Juncos Junction Juncus Jundiai June Juneau Juneberries Juneberry Junebud Junebug Junebugs Junedale Juneflower Junes Juneteenth Juneteenths Junette Jung Junger Jungermannia Jungermanniaceae Jungermanniales Jungfrau Junggrammatiker Jungian Jungians Juni Junia Juniata Junie Junieta Junina Juninho Junior Juniors Juniperaceae Juniperus Junius Junji Junker Junkerdom Junkerdoms Junkerism Junkerisms Junkers Junko Junkuping Junna Junno Juno Junoesque Junonia Junonian Junot Junr Junta Juntura Jupiter Jupyter Jur Jura Jurane Juranon Jurassic Jurdi Jurez Jurgen Jurkoic Juru Jurua Juruc Jusserand Jussi Jussiaea Jussiaean Jussieuan Just Justa Justen Juster Justice Justiceburg Justicia Justicz Justin Justina Justine Justinian Justinianean Justinianian Justinianist Justinn Justino Justis Justitia Justus Juta Jute Jutes Jutic Jutish Jutland Jutlander Jutlanders Jutlandish Jutta Juturna Juvara Juvarra Juvavian Juvenal Juvenalian Juventas Juverna Juxon Juyas Juza Juznik Jwanai Jy Jylland Jymmye Jynginae Jynx Jyoti K KANU KAO KAOS KB KBE KBP KBPS KBS KC KCB KCL KCMG KCSI KCVO KD KDCI KDD KDT KE KERMIT KFC KFT KG KGB KHz KI KIA KIAS KIF KIP KIPS KISS KKK KKt KKtP KLIPS KLOC KN KNP KO KOWC KOs KP KPNO KPO KPs KQC KR KREEP KRP KS KSC KSF KSH KSR KSU KT KTB KTS KTU KV KW KWIC KWOC KWT KY Ka KaNgwane Kaaawa Kaaba Kaapstad Kaaren Kababish Kabaka Kabalevsky Kabard Kabardian Kabardinian Kabardinians Kabbala Kabbalah Kabbalahs Kabbalism Kabbalist Kabbalistic Kabbeljaws Kabeiri Kabinettwein Kabir Kabirpanthi Kabistan Kablesh Kabonga Kabuki Kabukis Kabul Kabuli Kabulis Kabyle Kabyles Kabylia Kacerek Kacey Kachari Kachin Kachine Kacie Kackavalj Kacy Kaczer Kaczmarczyk Kadaga Kadai Kadar Kadarite Kadayan Kaddish Kaddishes Kaddishim Kaden Kadiyevka Kadmi Kadner Kado Kadoka Kadu Kaduna Kaela Kaenel Kaesong Kaete Kaf Kafa Kaffeeklatsch Kaffeeklatsches Kaffia Kaffir Kaffirs Kaffraria Kaffrarian Kaffrarians Kafir Kafiri Kafiristan Kafirs Kafka Kafkaesque Kafre Kagawa Kagera Kagi Kagoshima Kahaleel Kahl Kahle Kahler Kahlil Kahlotus Kahlua Kahn Kahoka Kahoolawe Kahuku Kahului Kai Kaia Kaibab Kaibartha Kaieteur Kaifeng Kaila Kailasa Kaile Kailey Kailua Kailuakona Kaimo Kain Kainah Kaine Kaingang Kaingangs Kainozoic Kairouan Kairwan Kaiser Kaiserin Kaiserins Kaisers Kaiserslautern Kaithi Kaitlin Kaitlyn Kaitlynn Kaiulani Kaja Kajaani Kajar Kajdan Kakalina Kakan Kakatoe Kakatoidae Kakiemon Kakiemons Kal Kala Kalagher Kalahari Kalaheo Kalakh Kalama Kalamazoo Kalamian Kalamist Kalanchoe Kalandariyah Kalang Kalapooian Kalashnikov Kalashnikovs Kalasky Kalat Kalaupapa Kalavala Kalavalas Kalb Kalbli Kaldani Kale Kaleb Kaleena Kalekah Kalemie Kalendae Kalends Kaleva Kalevala Kalfas Kalgan Kalgoorlie Kali Kaliana Kalida Kalidasa Kalie Kalikow Kalil Kalila Kalimantan Kalin Kalina Kalinda Kalindi Kalinga Kalinin Kaliningrad Kaliope Kalisch Kaliski Kalispel Kalispell Kalispels Kalisz Kaliyuga Kalk Kalkaska Kalki Kall Kalle Kalli Kallick Kallikak Kallima Kallinge Kallista Kallman Kally Kalman Kalmar Kalmarian Kalmia Kalmick Kalmuck Kalmucks Kalmuk Kalmuks Kalmyk Kalmyks Kalona Kalskag Kaltman Kaluga Kalvesta Kalvin Kalvn Kalwar Kalyan Kam Kama Kamadhenu Kamakura Kamal Kamaloka Kamares Kamaria Kamas Kamasin Kamass Kamasutra Kamasutras Kamat Kamay Kamba Kamchadal Kamchatka Kamchatkan Kamehameha Kameko Kamenic Kamerad Kamerman Kamerun Kamet Kamiah Kamikaze Kamila Kamilah Kamillah Kamin Kamina Kamloops Kammerchor Kammerer Kamp Kampala Kampliles Kampmann Kampmeier Kampong Kampsville Kampuchea Kampuchean Kampucheans Kamrar Kamsa Kamuela Kan Kanab Kanak Kanaka Kanakas Kanaks Kanal Kananga Kananur Kanara Kanarak Kanaranzi Kanarese Kanarraville Kanauji Kanawari Kanawha Kanazawa Kanchenjunga Kanchipuram Kancler Kandace Kandahar Kandelia Kandinski Kandinsky Kandiyohi Kandy Kandyan Kane Kaneoche Kaneohe Kaneshite Kanesian Kaneville Kangchenjunga Kangli Kania Kanji Kankakee Kankan Kankanai Kannada Kannan Kannapolis Kannry Kano Kanona Kanopolis Kanorado Kanosh Kanpur Kanred Kans Kansa Kansan Kansans Kansas Kansasville Kansu Kant Kanter Kantian Kantianism Kantianisms Kantians Kantism Kantist Kantner Kantor Kantos Kanuri Kanuris Kanwar Kanya Kaohsiung Kaolack Kaolak Kaolikung Kapaa Kapaau Kape Kapell Kapellmeister Kapellmeisters Kapfenberg Kapila Kaplan Kapoor Kapor Kaposi Kapowsin Kappel Kappenne Kapton Kaptons Kapwepwe Kara Karabagh Karachi Karafuto Karaganda Karaism Karaisms Karaite Karaites Karaitic Karaitism Karaj Karajan Karakatchan Karakoram Karakorum Karakul Karakuls Karalee Karalynn Karamanlis Karamazov Karame Karameh Karami Karamojo Karamojong Karankawa Karas Karatas Karaya Karb Karbala Kardelj Kare Karee Kareem Karel Karelia Karelian Karelians Karen Karena Karenina Karenni Karennis Karens Karharbari Kari Karia Kariba Karie Karil Karilla Karilynn Karim Karin Karina Karine Kariotta Karisa Karissa Karita Karl Karla Karlan Karlee Karleen Karlen Karlene Karlens Karlfeldt Karli Karlie Karlik Karlin Karling Karlis Karlise Karloff Karlotta Karlotte Karlow Karlsbad Karlsruhe Karlsruher Karlsruhers Karlstad Karluk Karly Karlyn Karma Karmas Karmathian Karmen Karna Karnack Karnak Karnataka Karney Karo Karol Karola Karole Karolina Karoline Karoly Karolyn Karon Karoo Karoos Karp Karpov Karr Karrah Karrer Karrie Karroo Karroos Karry Kars Karshuni Karst Karsten Karthaus Karthli Kartis Karttikeya Kartvel Kartvelian Karval Karwan Karwinskia Kary Karyl Karylin Karyn Karynne Karyolysidae Karyolysus Kas Kasai Kasaji Kasavubu Kasbah Kasbahs Kasbeer Kasbek Kase Kasevich Kasey Kasha Kashan Kashans Kashden Kashgar Kashmir Kashmiri Kashmirian Kashmirians Kashmiris Kashmirs Kashoubish Kashruth Kashube Kashubian Kashyapa Kasigluk Kasikumuk Kasilof Kask Kaska Kaskaskia Kaslik Kasota Kaspar Kasparov Kasper Kasperak Kass Kassa Kassab Kassak Kassala Kassandra Kassapa Kassaraba Kassel Kassem Kasseri Kassey Kassi Kassia Kassie Kassite Kassity Kasson Kast Kastner Kastro Kasubian Kasyapa Kat Kata Katabanian Katahdin Katalin Katanga Katangese Katar Kataway Katayev Kate Katee Katelyn Katemcy Kateri Katerina Katerine Katey Kath Katha Kathak Kathakali Kathakalis Katharevousa Katharevusa Katharina Katharine Katharyn Kathe Katherin Katherina Katherine Katheryn Kathi Kathiawar Kathie Kathlee Kathleen Kathlene Kathlin Kathlyn Kathlynne Kathmandu Katholikos Kathopanishad Kathrine Kathryn Kathryne Kathrynn Kathy Kathye Kati Katie Katik Katina Katine Katinka Katipunan Katipuneros Katlaps Katleen Katlin Katmai Katmandu Kato Katonah Katowice Katrina Katrine Katrinka Katryna Katsina Katsushika Katsuwonidae Katsuyama Katt Kattegat Katti Kattie Kattowitz Katuf Katukina Katuscha Katusha Katushka Katy Katya Katyusha Katz Katzen Katzir Katzman Kauai Kauffman Kauffmann Kaufman Kaufmann Kaukauna Kaule Kaumakani Kaunakakai Kaunas Kaunda Kauppi Kauravas Kauslick Kautsky Kavaic Kavalla Kavanagh Kavanaugh Kavaphis Kavclla Kaveri Kavi Kavita Kavla Kaw Kawabata Kawaguchi Kawai Kawasaki Kawchodinne Kaweah Kawkawlin Kaws Kay Kaya Kayan Kayasth Kayastha Kaybecker Kaybeckers Kaycee Kaye Kayenta Kayes Kayibanda Kayla Kayle Kaylee Kayley Kaylil Kaylor Kaylyn Kayne Kayseri Kaysville Kaz Kazak Kazakh Kazakhs Kazakhstan Kazaks Kazakstan Kazan Kazanlik Kazantzakis Kazbek Kazdag Kazim Kazimir Kazincbarcika Kazmirci Kazue Kb Kdar Kea Keaau Kealakekua Kealey Kealia Kean Keane Keansburg Keare Kearney Kearneysville Kearns Kearny Kearsarge Keary Keasbey Keatchie Keating Keaton Keats Keatsian Keavy Keb Keble Kechi Kechua Kechuan Kechuans Kechuas Kechumaran Keck Kecskem Kecskemat Kecskemet Kedah Kedar Kedarite Keddie Kediri Kedron Kedushah Kedushoth Kedushshah Kee Keedysville Keefe Keefer Keegan Keel Keelby Keele Keeler Keeley Keelia Keelie Keelin Keeline Keelung Keely Keen Keenan Keene Keener Keenes Keenesburg Keensburg Keese Keeseville Keeton Keever Keewatin Keezletown Kefalotir Kefauver Keffer Keflavik Kefti Keftian Keftiu Keg Kegan Kegley Keheley Kehoe Kehr Kei Keid Keifer Keighley Keijo Keiko Keil Keillor Keily Keir Keiser Keisha Keisling Keisterville Keita Keitel Keith Keithley Keithsburg Keithville Keizer Kekaha Kekchi Kekkonen Kekulmula Kel Kela Kelantan Kelayres Kelbee Kelby Kelcey Kelci Kelcie Kelcy Kelda Keldah Keldon Keldron Kele Kelford Keli Keligot Kelila Kelima Kell Kella Kellby Kellda Kelleher Kellen Kellene Keller Kellerman Kellerton Kelley Kelli Kellia Kellie Kelliher Kellina Kellnersville Kellogg Kellsie Kelly Kellyann Kellyn Kellysville Kellyton Kellyville Kelmscott Kelper Kelpers Kelsey Kelseyville Kelsi Kelso Kelson Kelsy Kelt Kelthane Kelthanes Keltic Keltically Keltoi Kelton Kelts Kelula Kelvin Kelwen Kelwin Kelwunn Kemah Kemalism Kemalist Kemble Kemblesville Kemeny Kemerovo Kemi Kemme Kemmerer Kemp Kempe Kempis Kempner Kemppe Kempster Kempton Ken Kenai Kenansville Kenay Kenaz Kendal Kendalia Kendall Kendallville Kendell Kendleton Kendra Kendrah Kendre Kendrew Kendrick Kendricks Kendry Kenduskeag Kendy Kendyl Keneally Kenedy Kenefic Kenelm Kenesaw Kenhorst Kenilworth Kenipsim Kenison Kenitra Kenji Kenlay Kenlee Kenleigh Kenley Kenly Kenmare Kenmore Kenn Kenna Kennan Kennard Kennebec Kennebunk Kennebunkport Kennecott Kennedale Kennedy Kennedya Kennedyesque Kennedyville Kennelly Kenner Kennerdell Kennesaw Kennet Kenneth Kennett Kennewick Kenney Kennie Kennith Kenny Kenon Kenosha Kenova Kenric Kenrick Kensal Kenseikai Kensell Kensett Kensington Kensitite Kent Kenta Kenti Kentia Kenticism Kentiga Kentigera Kentigerma Kentiggerma Kentish Kentishman Kentishmen Kentland Kenton Kentuck Kentuckian Kentuckians Kentucky Kentwood Kenvil Kenvir Kenward Kenway Kenwee Kenweigh Kenwood Kenwrick Kenya Kenyan Kenyans Kenyatta Kenyon Kenzi Kenzie Keo Keogh Keokee Keokuk Keon Keos Keosauqua Keota Kephallenia Kephallina Kepler Keplerian Kepner Kepone Kepones Keppel Ker Kerak Kerala Keraterpeton Keratoidea Keratol Keraunia Kerbela Kerby Kerch Kerek Kerekes Keremeos Kerens Kerenski Kerensky Keres Keresan Kerewa Kerge Kerguelen Kerhonkson Keri Keriann Kerianne Kerin Kerite Kerk Kerkhoven Kerki Kerkrade Kerkyra Kermadec Kerman Kermanji Kermans Kermanshah Kermie Kermit Kermy Kern Kernan Kernersville Kernighan Kerns Kernville Kerouac Kerr Kerri Kerria Kerrick Kerrie Kerries Kerril Kerrill Kerrin Kerrison Kerrville Kerry Kersey Kershaw Kerst Kersten Kerstin Kerwin Kerwinn Kerwon Kery Keryx Kes Kese Keshena Keshenaa Kesia Kesley Keslie Kessel Kesselring Kessia Kessiah Kessler Kester Kesteven Kestner Keswick Ket Ketchan Ketchikan Ketchum Ketoi Kettering Ketti Kettie Kettlersville Ketty Ketu Ketubah Ketubahs Ketubim Keturah Ketuvim Keung Keuper Kev Kevan Keven Keverian Keverne Kevil Kevin Kevina Kevlar Kevlars Kevon Kevorkian Kevyn Kew Kewadin Kewanee Kewanna Kewaskum Kewaunee Keweenawan Kewpie Kewpies Key Keyapaha Keyek Keyes Keyesport Keylargo Keymar Keynes Keynesian Keynesianism Keynesianisms Keynesians Keyport Keyser Keyserling Keystone Keystoner Keysville Keyte Keytesville Kezer Kha Khabarovo Khabarovsk Khabur Khachaturian Khafaje Khafre Khai Khajeh Khakass Khalde Khaldian Khaled Khalid Khalifat Khalil Khalin Khalk Khalka Khalkha Khalkhas Khalkidike Khalkidiki Khalkis Khalq Khalsa Khama Khami Khammurabi Khamti Khan Khania Khanna Khano Kharia Kharijite Kharkiv Kharkov Kharoshthi Khartoum Khartoumer Khartum Kharwar Khasa Khasi Khaskovo Khatti Khattish Khattusas Khaya Khayy Khayyam Khayycm Khazar Khazarian Khelat Khem Khenifra Kherson Kherwari Kherwarian Khevzur Khiam Khichabia Khieu Khila Khios Khitan Khiva Khivan Khlustino Khlyst Khlysti Khlysts Khlysty Khmer Khmerian Khmers Khnum Kho Khoi Khoikhoi Khoikhoin Khoikhoins Khoikhois Khoin Khoiniki Khoisan Khoja Khojent Khokani Khomeini Khond Khondi Khorana Khorassan Khorma Khorramshahr Khos Khosa Khosrow Khotan Khotana Khotanese Khoumaini Khoury Khowar Khrushchev Khrushchevian Khrushchevite Khuai Khudari Khufu Khulna Khussak Khutbah Khuzi Khuzistan Khwarazmian Khwarizmi Khyber Ki Kiah Kiahsville Kial Kiangan Kiangling Kiangpu Kiangsi Kiangsu Kiangwan Kiangyin Kiaochow Kibei Kibeis Kibo Kickapoo Kickapoos Kicva Kid Kidd Kidde Kidder Kidderminster Kidderminsters Kiddush Kiddushes Kidnapped Kidron Kids Kidsgrove Kief Kiefer Kieffer Kieger Kiehl Kiehn Kiel Kielce Kiele Kieler Kielstra Kielty Kienan Kiepura Kier Kieran Kierkegaard Kierkegaardian Kierkegaardianism Kiernan Kiersten Kies Kiester Kieta Kieth Kiev Kievan Kievans Kiewit Kigali Kigensetsu Kihei Kiho Kiirun Kikai Kikatsik Kikelia Kiker Kiki Kikldhes Kikongo Kikuyu Kikuyus Kikwit Kila Kilah Kilan Kilar Kilauea Kilaya Kilbourne Kilbride Kilby Kildare Kile Kiley Kilgore Kilhamite Kilian Kilim Kilimanjaro Kilims Kilk Kilkenny Kill Killam Killanin Killarney Killawog Killbuck Killduff Killeen Killen Killian Killie Killiecrankie Killigrew Killington Killion Killona Killoran Kills Killy Kilmarnock Kilmarx Kilmer Kilmichael Kiln Kilpatrick Kilroy Kilsyth Kiluba Kilung Kilvert Kilwich Kim Kimball Kimballton Kimbe Kimbell Kimber Kimberlee Kimberley Kimberli Kimberly Kimberlyn Kimberton Kimble Kimbolton Kimbra Kimbundu Kimbundus Kimeridgian Kimitri Kimmel Kimmell Kimmi Kimmie Kimmochi Kimmswick Kimmy Kimon Kimper Kimpo Kimura Kin Kinabalu Kinards Kinata Kinau Kincaid Kincardine Kincardineshire Kinch Kincheloe Kinchen Kinchinjunga Kind Kinde Kinder Kinderhook Kindertotenlieder Kindig Kindu Kinelski King Kingchow Kingdon Kingfield Kingfisher Kinghorn Kinglake Kingman Kingmont Kings Kingsburg Kingsbury Kingsdown Kingsford Kingship Kingships Kingsland Kingsley Kingsly Kingsport Kingston Kingstown Kingstree Kingsville Kingtehchen Kingu Kingwana Kingwood Kinhwa Kinipetu Kinkaid Kinkaider Kinloch Kinmundy Kinna Kinnard Kinnear Kinnelon Kinney Kinnie Kinnock Kinnon Kinny Kinorhyncha Kinosternidae Kinosternon Kinross Kinrossshire Kinsale Kinsey Kinshasa Kinshasha Kinsler Kinsley Kinsman Kinson Kinston Kinta Kintnersville Kintyre Kinu Kinzer Kinzers Kioga Kioko Kiona Kioto Kiowa Kiowan Kiowas Kioway Kip Kipchak Kipling Kiplingese Kiplingesque Kiplingism Kipnis Kipnuk Kipp Kippar Kipper Kippie Kippy Kipton Kir Kira Kiran Kiranti Kirbee Kirbie Kirby Kirbyville Kirch Kircher Kirchhoff Kirchner Kirchoff Kirghistan Kirghiz Kirghizean Kirghizes Kirghizia Kirghizian Kirghizians Kirgiz Kirgizes Kiri Kiribati Kirichenko Kirilenko Kirillitsa Kirima Kirimia Kirin Kirinyaga Kirit Kiriwina Kirk Kirkby Kirkcaldy Kirkcudbright Kirkcudbrightshire Kirkenes Kirkersville Kirkland Kirklin Kirkman Kirkpatrick Kirksey Kirksville Kirkuk Kirkville Kirkwall Kirkwood Kirman Kirmans Kirmanshah Kiron Kironde Kirov Kirovabad Kirovograd Kirs Kirsch Kirschner Kirshbaum Kirst Kirsten Kirsteni Kirsti Kirstin Kirsty Kirstyn Kirt Kirtland Kirtley Kiruna Kirundi Kirven Kirvin Kirwin Kisangani Kiselevsk Kish Kishambala Kishar Kishi Kishinev Kishinyov Kislev Kislevs Kismayu Kismet Kismets Kisor Kissee Kissel Kissiah Kissie Kissimmee Kissinger Kissner Kistiakowsky Kistler Kistna Kistner Kisumu Kisung Kiswahili Kit Kitakyushu Kitalpha Kitamat Kitan Kitasato Kitchen Kitchener Kitkahaxki Kitkehahki Kitlope Kittanning Kittatinny Kittery Kitti Kittie Kittikachorn Kittitas Kittitian Kittitians Kittredge Kittrell Kitty Kittyhawk Kitunahan Kitwe Kitzbuhel Kitzbühel Kitzmiller Kiungchow Kiungshan Kiushu Kivu Kiwai Kiwanian Kiwanians Kiwanis Kiwi Kiwis Kiyohara Kiyoshi Kizil Kizilbash Kizzee Kizzie Kjeldahl Kjersti Kjolen Kjulen Kkyra Klaber Klabund Klagenfurt Klagshamn Klaipeda Klamath Klamaths Klan Klangfarbe Klanism Klanisms Klans Klansman Klansmen Klanswoman Klapp Klappvisier Klaproth Klara Klarika Klarrisa Klaskino Klatt Klaus Klausenburg Klavern Klaverns Klavier Klaxon Klaxons Klayman Klber Kleber Klebs Klebsiella Klecka Klee Kleeman Kleenex Kleenexes Kleffens Klehm Kleiber Kleiman Klein Kleinian Kleinstein Kleist Kleistian Klemens Klement Klemm Klemme Klemperer Klenk Kleon Klepac Kleper Klepht Klephtic Klephts Kler Kletter Kletterschuh Kletterschuhe Kleve Kliber Klickitat Klikitat Kliman Kliment Klimesh Klimt Klina Kline Kling Klingel Klinger Klingerstown Klinges Klingon Klingsor Klinsmann Kljuc Klngsley Klockau Kloman Klondike Klondiked Klondiker Klondikes Klondiking Klondyke Klondyked Klondykes Klondyking Klopstock Klos Klossner Kloster Klosters Klotz Kluang Kluck Kluckhohn Kluczynski Klug Kluge Klump Klusek Klute Klux Kluxer Klydonograph Klystron Kmart Kmmel Knaben Knackwurst Knapp Knaresborough Knauer Knautia Knebworth Kneeland Kneiffia Kneipe Kneipes Kneippism Kneller Knepper Knesset Knesseth Knessets Kngwarreye Knick Knickerbocker Knickerbockers Knierim Knies Knievel Knifley Kniggr Knight Knightdale Knightia Knighton Knights Knightsbridge Knightsen Knightstown Knightsville Knigsberg Knigshte Knik Knin Knipe Kniphofia Knippa Knisteneaux Knitra Knitter Knobel Knoblick Knobloch Knobnoster Knoke Knoll Knopf Knorria Knorring Knossian Knossos Knossus Knott Knowland Knowle Knowles Knowlesville Knowling Knowlton Knox Knoxboro Knoxdale Knoxian Knoxville Knt Knudsen Knudson Knussen Knut Knute Knuth Knuths Knutsen Knutsford Knutson Ko Koa Koah Koal Koasati Koball Kobarid Kobayashi Kobe Kobenhavn Kobi Koblas Koblenz Koblick Kobus Koby Kobylak Koch Kochab Kochel Kocher Kochetovka Kochi Kochia Kochkin Kodachrome Kodagu Kodak Kodaked Kodaking Kodaks Kodaly Kodashim Kodcly Kodiak Kodiaks Kodok Kodyma Koeberlinia Koeberliniaceae Koehler Koeksotenok Koellia Koelreuteria Koeltztown Koenig Koenigsberg Koeninger Koenraad Koepang Koeppel Koeri Koerlin Koerner Koestler Koetke Koffka Koffler Koffman Kofu Kogia Koh Kohanim Kohathite Koheleth Kohen Kohens Kohima Kohinoor Kohistan Kohistani Kohl Kohlan Kohler Kohn Kohoutek Koiari Koibal Koine Koipato Koirala Koitapu Koizumi Kojak Kojiki Kokand Kokaras Kokas Kokengolo Kokka Kokkola Koko Kokoda Kokomo Kokoona Kokoruda Kokoschka Kokura Kol Kola Kolacin Kolami Kolar Kolarian Kolasin Kolb Kolbe Kolchak Koldaji Koldewey Kolding Koleen Kolhapur Koli Kolima Kolis Kolivas Kolk Koller Kollwitz Kolmar Koln Kolnick Kolnos Koloa Kolodgie Kolomak Kolombangara Kolomea Kolomna Kolosick Koloski Kolozsv Kolozsvar Kolozsvcr Koluschan Kolush Kolva Kolwesi Kolwezi Kolyma Komara Komarek Komati Kome Komi Kominform Komintern Kommers Kommersbuch Kommunarsk Kommunizma Komondor Komondorok Komondors Komsa Komsomol Komsomolsk Komura Kona Konakri Konakry Konarak Konariot Konawa Konde Kondon Kone Koner Konev Kong Kongo Kongoese Kongolese Kongos Konia Koniaga Konig Koniga Koniggratz Konigsberg Konigshutte Konikow Konkani Kono Konomihu Konopka Konoye Konrad Konstance Konstantin Konstantine Konstanz Konstanze Konya Konyak Konyn Konzentrationslager Konzertmeister Koo Kooima Koolooly Kooning Koontz Koord Koorg Koosharem Koosis Kooskia Kootenai Kootenay Kootenays Kopagmiut Kopans Kopaz Kopeisk Kopeysk Kopp Koppel Kopperl Koppers Kopperston Kopple Koprino Kora Korah Korahite Korahitic Koral Koralie Koralle Koran Korana Koranic Koranist Korans Korat Korats Korbel Korbut Korc Korchnoi Korda Kordofan Kordofanian Kordula Kore Korea Korean Koreans Koreish Koreishite Korella Koren Korenblat Koreshan Koreshanity Koressa Korey Korff Korfonta Kori Koridethianus Korie Korman Kornberg Kornephorus Korney Korngold Kornher Korns Koroa Koror Koroseal Korrie Korry Kort Korten Kortrijk Korwa Korwin Korwun Kory Koryak Korzybski Kos Kosak Kosaka Kosalan Koschei Kosciusko Kosciuszko Kosel Koser Kosey Koshkonong Koshu Kosice Kosimo Kosiur Koslo Koso Kosovar Kosovars Kosovo Kosrae Koss Kossaean Kosse Kossean Kossel Kossuth Kostelanetz Kosteletzkya Kosti Kostival Kostman Kostroma Kosygin Kota Kotabaru Kotah Kotar Kotchian Kotick Kotlik Kotoko Kotta Kotto Kotys Kotytto Kotz Kotzebue Koufax Koungmiut Kountze Kourou Koussevitzky Kouts Kovacev Kovacs Koval Kovalevsky Kovar Kovars Kovno Kovrov Kowagmiut Kowal Kowalewski Kowalski Kowatch Koweit Kowloon Kowtko Koy Kozani Kozhikode Koziara Koziarz Koziel Kozloski Kozlov Kpuesi Kr Kra Kraemer Kraepelin Krafft Kraft Krag Kragh Kragujevac Krahling Krahmer Krak Krakatao Krakatau Krakatoa Krakau Kraken Krakens Krakow Krakuw Krall Krama Kramatorsk Kramer Krameria Krameriaceae Kramlich Kranach Kranj Krantz Kranzburg Krapina Kraska Krasner Krasnodar Krasnoff Krasnoyarsk Krasny Kraul Kraunhia Kraus Krause Krauss Kraut Krauthead Krauts Kravits Krawczyk Kreager Kreamer Krebs Kreda Kreegar Krefeld Krefetz Kreg Kreigs Kreiker Krein Kreindler Kreiner Kreis Kreisky Kreisler Kreistag Kreit Kreitman Krell Kremenchug Kremer Kremlin Kremlinologies Kremlinologist Kremlinologists Kremlinology Kremmling Krems Kremser Krenek Krenn Krepi Kresge Kresgeville Kresic Kress Kreutzer Krever Kreymborg Krieg Kriege Krieger Kriegspiel Kriegspiels Kriemhild Kries Krigia Krigsman Krilium Krilov Kringle Krinthos Krio Kriophoros Krips Kris Krischer Krisha Krishna Krishnah Krishnaism Krishnaisms Krishnaist Krishnaite Krishnaitic Krishnamurti Krispin Kriss Krissie Krissy Krista Kristal Kristan Kriste Kristel Kristen Kristi Kristian Kristiansand Kristianson Kristianstad Kristie Kristien Kristin Kristina Kristinaux Kristine Kristmann Kristo Kristof Kristofer Kristoffer Kristofor Kristoforo Kristopher Kristos Kristy Kristyn Krithia Kroc Krock Kroeber Kroger Krogh Kroll Kronach Kronecker Kronfeld Krongold Kronick Kronion Kronos Kronstadt Kroo Kropotkin Krti Kru Krucik Krueger Krug Kruger Krugerism Krugerite Krugerrand Krugerrands Krugersdorp Krum Kruman Krummholz Krupp Krupskaya Krusche Kruse Krusenstern Krutch Krute Kruter Krutz Krylon Krym Krys Kryska Krysta Krystal Krystalle Krystin Krystle Krystyna Ks Kshatriya Kshatriyahood Kshatriyas Kt Kten Kthira Ku Kua Kualapuu Kuan Kuangchou Kuantan Kuar Kuba Kubachi Kuban Kubango Kubanka Kubelaek Kubelik Kubenhavn Kubera Kubetz Kubiak Kubis Kublai Kubrick Kuchean Kuchen Kuching Kucik Kudrun Kudva Kuebbing Kuehn Kuehnel Kuehneola Kueiyang Kuenlun Kufa Kufic Kuhler Kuhlman Kuhn Kuhnau Kuhnia Kuhnian Kui Kuibyshev Kuki Kuksu Kukulcan Kukuruku Kula Kulah Kulanapan Kulda Kuli Kulla Kullani Kullervo Kulm Kuln Kulpmont Kulpsville Kulseth Kulsrud Kulthumm Kultur Kulturkampf Kulturkampfs Kulturkreis Kulturkreise Kulturs Kulun Kum Kumagai Kumamoto Kuman Kumar Kumasi Kumler Kummel Kummer Kumni Kumyk Kun Kuna Kunama Kunas Kunbi Kundalini Kundalinis Kundera Kundry Kuneste Kung Kungs Kungur Kunia Kuniggretz Kunigsberg Kunigshftte Kunin Kuniyoshi Kunkle Kunkletown Kunlun Kunming Kunmiut Kunowsky Kunstlied Kunstlieder Kuntsevo Kunz Kuo Kuomintang Kuomintangs Kuopio Kupferschiefer Kuprin Kur Kura Kuranko Kurd Kurdish Kurdistan Kurdistans Kurds Kure Kurg Kurgan Kurgans Kurhaus Kuri Kuril Kurile Kurilian Kurilians Kurku Kurland Kurma Kurman Kurmi Kuroki Kuropatkin Kurosawa Kuroshio Kurr Kursaal Kursh Kursk Kurt Kurten Kurth Kurthwood Kurtis Kurtistown Kurtz Kurtzig Kurtzman Kuruba Kurukh Kurumba Kurus Kurusu Kurys Kurzawa Kurzeme Kus Kusan Kusch Kush Kushitic Kushner Kushshu Kusin Kuska Kuskokwim Kuskwogmiut Kussell Kustanai Kustenau Kuster Kutais Kutaisi Kutch Kutchin Kutchins Kutenai Kutenais Kutenay Kutenays Kuth Kuttawa Kutuzov Kutzenco Kutzer Kutztown Kuvera Kuwait Kuwaiti Kuwaitis Kuybyshev Kuyp Kuzbas Kuzbass Kuznets Kuznetsk Kval Kwa Kwabena Kwajalein Kwakiutl Kwakiutls Kwame Kwan Kwang Kwangchow Kwangchowan Kwangju Kwangtung Kwannon Kwantung Kwanza Kwanzaa Kwanzaas Kwanzas Kwapa Kwapong Kwara Kwarteng Kwasi Kwazulu Kwei Kweichow Kweihwating Kweilin Kweisui Kweiyang Kwethluk Kwigillingok Kwok Kwon Ky Kyack Kybele Kyburz Kyd Kyklopes Kyklops Kyl Kyla Kylah Kylander Kyle Kylen Kylertown Kylie Kylila Kylstra Kylynn Kym Kymri Kymric Kymry Kynan Kynar Kynars Kyne Kynewulf Kynthia Kyoga Kyongsong Kyoto Kyphosidae Kyprianou Kyra Kyrgyz Kyrgyzes Kyrgyzstan Kyrgyzstani Kyrgyzstanis Kyriako Kyriale Kyrie Kyries Kyrstin Kyte Kythera Kythira Kyurin Kyurinish Kyushu Kyzyl Köchel Köln Königsberg L LA LAB LAC LACW LADAR LADT LAFTA LAIS LAL LAM LAMA LAMDA LAN LANCE LANL LAO LAP LAPB LAPD LAPM LAR LARC LASER LASS LAT LATA LATIS LAV LAVC LAX LB LBHS LBJ LBL LBO LBOs LBP LBS LC LCA LCAMOS LCC LCCIS LCCL LCCLN LCD LCDN LCDR LCDs LCF LCI LCIE LCJ LCL LCLOC LCM LCN LCP LCR LCS LCSE LCSEN LCT LCVP LD LDC LDEF LDF LDL LDMTS LDP LDS LDX LE LEA LEAP LEAS LEC LED LEDs LEGO LEM LEMs LENCL LEO LERC LEST LF LFACS LFS LFSA LG LGA LGB LGBO LGM LGk LH LHD LHS LI LIDAR LIFIA LIFO LIM LIMM LINC LIPS LISA LISP LIST LIU LJ LJBF LL LLAMA LLB LLC LLD LLM LLN LLNL LLO LLOX LLP LLoyd LM LMC LME LMF LMMS LMOS LMT LNG LO LOA LOB LOC LOCAP LOE LOF LOFT LOGO LOI LON LOOM LOOPS LOP LORAN LOS LOSF LOTS LOX LP LPC LPCDF LPDA LPF LPG LPL LPN LPNs LPP LPR LPS LPT LPV LPs LR LRAP LRB LRBM LRC LRS LRSP LRSS LRU LS LSAP LSAT LSB LSC LSD LSE LSI LSM LSP LSR LSRP LSS LSSD LST LSV LT LTA LTAB LTC LTD LTF LTG LTJG LTL LTP LTPD LTS LTV LTVR LTh LU LUG LUN LUT LV LVN LW LWL LWM LWP LWSP LWT LXE LXX LZ La LaBarre LaBaw LaBelle LaF LaFollette LaMee LaMonica LaMori LaRue LaSorella Laager Laaland Laaspere Lab Labadie Labadieville Laban Labana Laband Labanna Labannah Labanotation Labanotations Labarge Labdacus Labe Labiatae Labiche Labidura Labiduridae Labolt Labor Laborism Laborite Laborites Labors Laboulbenia Laboulbeniaceae Laboulbeniales Labourism Labourite Labourites Labrador Labradorean Labradoreans Labradorian Labradorians Labradors Labridae Labroidea Labrosaurus Labrus Labs Labuan Laburnum Labyrinth Labyrinthibranchii Labyrinthici Labyrinthodon Labyrinthodonta Labyrinthula Labyrinthulidae Lacagnia Lacaille Lacamp Lacarne Lacassine Laccadive Lacedaemon Lacedaemonian Lacedaemonians Lacee Lacefield Lacerta Lacertae Lacertid Lacertidae Lacertilia Lacertilian Lacey Laceyville Lach Lachaise Lachance Lachenalia Lachesis Lachine Lachish Lachlan Lachman Lachnanthes Lachnosterna Lachus Lacie Lacinaria Lackawanna Lackawaxen Laclede Laclos Lacombe Lacon Lacona Laconia Laconian Laconians Laconic Lacoochee Lacosomatidae Lacoste Lacota Lacrescent Lacretelle Lacroix Lacrosse Lactarius Lactobacillus Lactuca Lacy Lacygne Lad Ladakhi Ladakhis Ladd Laddie Laddonia Laddy Laden Ladew Ladies Ladiesburg Ladik Ladin Ladino Ladinos Ladins Ladislas Ladislaus Ladoga Ladon Ladonia Ladonna Ladora Ladrones Ladson Ladue Lady Ladyship Ladyships Ladysmith Ladytide Lae Lael Laelaps Laelia Laelius Laemmle Laemodipoda Laennec Laertes Laertiades Laestrygon Laestrygones Laestrygonians Laetitia Laetrile Laetriles Laevigrada Lafarge Lafargeville Lafayette Lafcadio Laferia Lafferty Laffite Lafite Lafitte Laflam Lafleur Lafollette Lafontaine Laforge Laforgue Lafox Lafrance Lagas Lagash Lagasse Lagenaria Lager Lagerkvist Lagerl Lagerlof Lagerluf Lagerstroemia Lagetta Laghouat Lagomorpha Lagomyidae Lagopus Lagorchestes Lagos Lagostomus Lagothrix Lagrange Lagrangeville Lagrangian Lagrangians Lagro Lagthing Lagting Laguerre Laguiole Laguna Laguncularia Lagunero Lagunitas Lagurus Lahabra Lahaina Lahamu Laharpe Lahaska Lahey Lahmansville Lahmu Lahnda Lahoma Lahontan Lahore Lahti Lahuli Lai Laibach Laidlaw Laie Lail Laina Laine Lainey Laing Laingian Laings Laingsburg Laird Lairdsville Lais Laise Lait Laith Laius Lajas Lajoie Lajos Lajose Lak Lake Lakehurst Lakeisha Lakeland Lakemore Lakeview Lakewood Lakhota Lakhotas Lakin Lakisha Lakma Lakme Lakota Lakotas Laks Lakshadweep Lakshmi Laktasic Lal Lala Lalage Lalande Lali Lalique Laliques Lalise Lalita Lalitta Lalittah Lalla Lallage Lallan Lalland Lallans Lallies Lally Lalo Laloma Lalu Laluz Lam Lamadera Lamaism Lamaisms Lamaist Lamaistic Lamaists Lamaite Lamanism Lamanite Lamano Lamar Lamarck Lamarckia Lamarckian Lamarckianism Lamarckianisms Lamarckians Lamarckism Lamarckisms Lamarque Lamarre Lamartine Lamas Lamaze Lamazes Lamb Lamba Lambadi Lambard Lambarn Lambart Lambegger Lambeggers Lambert Lamberto Lamberton Lambertson Lambertville Lambeth Lamblia Lamborghini Lambrecht Lambric Lambrook Lambrusco Lambruscos Lambsburg Lamdin Lamech Lamellaria Lamellariidae Lamellibranchia Lamellibranchiata Lamellicornes Lamellicornia Lamellirostres Lamentations Lamero Lamesa Lamia Lamiaceae Lamiae Lamian Lamians Lamias Lamicoid Lamiidae Lamiides Lamiinae Laminaria Laminariaceae Laminariales Lamison Lamista Lamium Lammas Lammases Lammastide Lammastides Lammond Lamna Lamnidae Lamoille Lamond Lamoni Lamont Lamonte Lamoree Lamotte Lamoure Lamoureux Lamp Lampang Lampasas Lampe Lampedusa Lampert Lampeter Lampetia Lamphere Lampong Lamprey Lampridae Lampsilis Lampsilus Lampyridae Lampyris Lamrert Lamrouex Lamson Lamus Lamut Lan Lana Lanae Lanagan Lanai Lanam Lananna Lanao Lanark Lanarkia Lanarkshire Lancashire Lancashires Lancaster Lancasterian Lancasters Lancastrian Lancastrians Lance Lancelle Lancelot Lancey Lanchou Lanchow Lancing Lancs Lanctot Land Landa Landahl Landan Landau Landbert Landel Landenberg Lander Landers Landes Landeshauptmann Landess Landing Landingville Landini Landino Landis Landisburg Landisville Landmarker Landmeier Lando Landolphia Landon Landor Landowska Landrace Landraces Landre Landri Landrum Landry Landsat Landsats Landseer Landseers Landshut Landsmaal Landsmal Landsman Landsmål Landsteiner Landsthing Landsting Landsturm Landtag Landtags Landuman Landus Landville Landwehr Landy Lane Laneburg Lanesboro Lanesville Lanett Lanette Laneview Laneville Lanexa Laney Lanford Lanfranc Lanfri Lang Langan Langbehn Langdon Lange Langelo Langeloth Langer Langerhans Langford Langham Langhian Langhorne Langill Langille Langland Langley Langlois Langmuir Lango Langobard Langobardic Langobards Langrenus Langreo Langres Langsdon Langsdorffia Langshan Langside Langston Langsville Langton Langtry Languedoc Languedocian Languedocians Langworthy Lanham Lani Lanie Lanier Laniidae Laniinae Lanikai Lanita Lanital Lanius Lanka Lankester Lankin Lankton Lanna Lanni Lannie Lannon Lanny Lansberg Lansdale Lansdowne Lanse Lansford Lansing Lanta Lantana Lantha Lanthanotidae Lanthanotus Lanti Lantry Lantsang Lantz Lanuvian Lanza Lanzhou Lao Laoag Laocadia Laocoon Laodamas Laodamia Laodice Laodicea Laodicean Laodiceanism Laodiceans Laodocus Laoighis Laomedon Laon Laona Laopoldville Laos Laothoae Laothoe Laotian Laotians Laotto Laotze Laozi Lapageria Laparosticti Lapaz Lapeer Lapeirousia Lapeyrouse Lapham Laphria Laphystius Lapides Lapine Lapith Lapithae Lapithaean Lapiths Laplace Laplacian Lapland Laplander Laplanders Laplandian Laplandic Laplandish Lapointe Laportea Lapotin Lapp Lappa Lappeenranta Lappic Lappish Lapponese Lapponian Lapps Lappula Lapryor Lapsana Lapsang Lapsey Laputa Laputan Laputans Lapwai Laquey Lar Lara Laraine Laralia Laramide Laramie Larbaud Larcher Larchmont Larchwood Lardizabalaceae Lardner Laredo Lareena Lareine Larena Larentalia Larentia Larentiidae Lares Laresa Largactil Largent Largo Lari Laria Larianna Larida Laridae Lariidae Larimer Larimor Larimore Larina Larinae Larine Laris Larisa Larissa Larix Lark Larkin Larkins Larkspur Larksville Larnaudian Larne Larned Larner Larochelle Larose Larousse Laroy Larrabee Larrie Larrigan Larrigans Larrisa Larry Lars Larsa Larsen Larslan Larson Larto Larue Larunda Larus Larussell Larvacea Larvalia Larwill Larwood Laryssa Las Lasal Lasala Lasalle Lascassas Lascaux Laserpitium Lash Lashar Lashio Lashkar Lashmeet Lashoh Lashond Lashonda Lashonde Lashondra Lasi Lasiocampa Lasiocampidae Lasiocampoidea Lasius Lasker Laski Lasko Lasky Lasley Lasmarias Lasonde Laspeyresia Laspisa Lassa Lassalle Lasse Lassell Lassen Lasser Lassie Lassiter Lassus Lastex Lastexes Lastrup Laszlo Lat Latah Latakia Latakias Latania Latasha Latashia Latax Latea Lateran Laterigradae Latexo Latham Lathan Lathe Lathraea Lathrop Lathrope Lathyrus Lati Latia Latian Latif Latimer Latimeria Latimore Latin Latina Latinas Latinate Latiner Latinesce Latinesque Latini Latinian Latinic Latiniform Latinisation Latinisations Latinise Latinised Latiniser Latinisers Latinises Latinising Latinism Latinisms Latinist Latinistic Latinistical Latinists Latinitaster Latinities Latinity Latinization Latinizations Latinize Latinized Latinizer Latinizers Latinizes Latinizing Latinless Latino Latinos Latins Latinus Latirostres Latirus Latisha Latitia Latitudinarian Latitudinarians Latium Laton Latona Latonia Latoniah Latonian Latonya Latooka Latouche Latour Latoya Latoye Latoyia Latreece Latreese Latrell Latrena Latreshia Latrice Latricia Latrididae Latrina Latris Latrobe Latrodectus Latt Latta Latterll Lattie Lattimer Lattimore Latton Lattonia Latty Latuka Latvia Latvian Latvians Latviia Latvina Lau Lauber Laubin Laud Lauda Lauder Lauderdale Laudian Laudianism Laudianus Laudism Laudist Lauds Laue Lauenburg Lauer Laufer Laughlin Laughlintown Laughry Laughton Launce Launceiot Launcelot Launceston Launderette Laundes Laundromat Laundromats Laupahoehoe Laura Lauraceae Lauraine Laural Lauralee Laurance Laurasia Laurasian Laure Lauree Laureen Laurel Laurella Laurelton Laurelville Lauren Laurena Laurence Laurencia Laurencin Laurene Laurens Laurent Laurentia Laurentian Laurentians Laurentide Laurentides Laurentium Laurentius Lauretta Laurette Lauri Laurianne Laurice Laurie Laurier Laurin Laurinburg Laurinda Laurissa Laurita Lauritz Laurium Lauro Laurocerasus Laurus Lauryn Lausanne Lauter Lautraamont Lautreamont Lautrec Lautverschiebung Laux Lauzon Lavabo Lavaboes Lavabos Lavada Laval Lavalette Lavalle Lavallette Lavandula Lavater Lavatera Laveen Lavehr Lavella Lavelle Laven Lavena Laver Laveran Laverania Lavergne Laverkin Lavern Laverna Laverne Lavernia Lavery Laveta Lavi Lavilla Lavina Lavine Lavinia Lavinie Lavoie Lavoisier Lavon Lavona Lavonia Lavonne Law Lawai Lawanda Laward Lawen Lawes Lawford Lawler Lawley Lawlor Lawman Lawndale Lawnside Lawrence Lawrenceburg Lawrenceville Lawrencian Lawrenson Lawrentian Lawrie Lawry Laws Lawson Lawsoneve Lawsonia Lawsons Lawsonville Lawtell Lawtey Lawton Lawtons Lawtun Lawyersville Laxness Lay Layamon Layard Layia Layla Layland Layman Layne Layney Layton Laytonville Laz Lazar Lazare Lazarist Lazarists Lazaro Lazaruk Lazarus Lazbuddie Lazear Lazes Lazio Lazor Lazos Lazzaro Lbeck Ld Ldenscheid Lderitz Ldg Ldp Le LeBrun LeCroy LeDoux LeMay LeRoy LeVitus Lea Leach Leachville Leacock Lead Leaday Leadbelly Leadore Leadville Leadwood Leaf Leah Leahey Leahy Leake Leakesville Leakey Leal Leamington Lean Leanard Leander Leandra Leandre Leandro Leann Leanna Leanne Leanor Leanora Leao Leaper Lear Learchus Learjet Learned Learoy Learoyd Leary Leasburg Leasia Leatherette Leatherettes Leatherhead Leatheroid Leatherstocking Leatherwood Leatri Leatrice Leavelle Leavenworth Leavis Leavisian Leavisite Leavisites Leavitt Leavittsburg Leavy Leawood Lebam Leban Lebanese Lebanon Lebar Lebaron Lebbie Lebeau Lebec Lebensraum Lebensraums Lebesgue Lebistes Leblanc Lebna Lebo Leboff Lebowa Lebrun Leburn Lecaniinae Lecanium Lecanora Lecanoraceae Lecanto Lecce Lech Lechea Lecheates Lechner Lechriodonta Lecia Lecidea Lecideaceae Leckie Leckkill Leckrone Lecky Leclair Leclaire Lecoma Lecompton Lectra Lecuona Lecythidaceae Lecythis Lecythus Leda Ledah Ledbetter Ledda Leddy Ledeen Lederach Lederberg Lederer Ledger Ledgewood Ledidae Ledoux Ledum Ledyard Lee LeeAnn Leeann Leeanne Leechburg Leeco Leede Leedey Leeds Leegrant Leeke Leela Leelah Leeland Leemont Leena Leeper Leeroy Leersia Leesa Leesburg Leese Leesen Leesport Leesville Leet Leeth Leeton Leetonia Leetsdale Leeuwarden Leeuwenhoek Leeuwfontein Leevining Leeward Leewood Leff Leffen Leffert Lefkowitz Lefor Lefors Left Leftism Leftisms Leftist Leftists Lefton Lefts Leftwich Lefty Legaspi Legazpi Legendre Legendrian Leger Leggat Legge Leggett Leghorn Leghorns Legion Legionnaire Legionnaires Legions Legis Legitimism Legitimisms Legitimist Legitimists Legnica Lego Legoland Legra Legrand Legree Leguaea Leguatia Leguia Leguminosae Lehar Lehcr Lehet Lehi Lehigh Lehighton Lehman Lehmann Lehmbruck Lehr Lehrer Lehrfreiheit Leia Leibman Leibnitz Leibnitzian Leibnitzianism Leibnitzians Leibniz Leibnizian Leibnizianism Leibnizians Leicester Leicesters Leicestershire Leichhardt Leics Leid Leiden Leif Leifer Leifeste Leigh Leigha Leighland Leighton Leila Leilah Leilani Leinsdorf Leinster Leiophyllum Leiothrix Leiotrichan Leiotriches Leiotrichi Leiotrichidae Leiotrichinae Leipoa Leipsic Leipzig Leiria Leis Leisenring Leiser Leisha Leishmania Leisten Leitao Leitchfield Leiter Leitersford Leith Leitman Leitneria Leitneriaceae Leitneriales Leitrim Leitus Leivasy Leix Lejeune Lek Lela Lelah Leland Leler Lelia Lelith Lello Lely Lem Lema Lemaceon Lemaireocereus Lemaitre Lemal Leman Lemanea Lemaneaceae Lemaotre Lemar Lemars Lemass Lemasters Lemberg Lemcke Lemessus Lemhi Lemieux Leming Lemire Lemitar Lemkul Lemmie Lemminkainen Lemminkeinen Lemmon Lemmuela Lemmueu Lemmus Lemmy Lemna Lemnaceae Lemnian Lemnians Lemnitzer Lemnos Lemon Lemonias Lemoniidae Lemoniinae Lemonnier Lemont Lemoore Lemosi Lemovices Lemoyen Lemoyne Lemper Lempres Lempster Lemuel Lemuela Lemuelah Lemuralia Lemuria Lemurian Lemuridae Lemurinae Lemuroidea Len Lena Lenaea Lenaean Lenaeum Lenaeus Lenapah Lenape Lenapes Lenard Lenca Lencan Lencas Lenci Lenclos Lendl Lendu Lenee Lenes Lenette Lengby Lengel Lenglen Lenhard Lenhart Lenhartsville Lenin Leninabad Leninakan Leningrad Leningrader Leningraders Leninism Leninisms Leninist Leninists Leninite Leninites Lenka Lenna Lennard Lenni Lennie Lenno Lennoaceae Lennon Lennox Lenny Leno Lenoir Lenora Lenorah Lenore Lenotre Lenox Lenoxdale Lenoxville Lenrow Lenssen Lent Lenten Lententide Lentha Lenthiel Lentibulariaceae Lentilla Lentner Lents Lenwood Lenz Lenzburg Lenzi Lenzites Leo Leoben Leocadia Leod Leodis Leodora Leofric Leoine Leola Leoline Leoma Leominster Leon Leona Leonanie Leonard Leonardesque Leonardi Leonardo Leonardsville Leonardtown Leonardville Leonato Leoncavallo Leone Leonel Leonelle Leonerd Leonese Leong Leonhard Leoni Leonia Leonid Leonidas Leonides Leonids Leonie Leonine Leonis Leonist Leonnoys Leonor Leonora Leonore Leonotis Leonov Leonsis Leonteen Leonteus Leontina Leontine Leontocebus Leontodon Leontopodium Leontyne Leonurus Leonville Leopardi Leopold Leopoldeen Leopoldine Leopoldinia Leopoldo Leopoldville Leopolis Leor Leora Leos Leota Leoti Leotie Leotine Leotus Leotyne Lepadidae Lepanto Lepargyraea Lepas Lepaute Lepaya Lepcha Lepchas Lepidium Lepidodendraceae Lepidodendron Lepidoidei Lepidophloios Lepidophyllum Lepidoptera Lepidosauria Lepidosiren Lepidosirenidae Lepidosperma Lepidospermae Lepidosphes Lepidostei Lepidosteus Lepidostrobus Lepidotes Lepidotus Lepidurus Lepidus Lepilemur Lepine Lepiota Lepisma Lepismatidae Lepismidae Lepisosteidae Lepisosteus Lepke Lepley Lepomis Lepontic Leporidae Leporis Lepospondyli Leposternidae Leposternon Lepp Leppard Lepper Lepralia Lepsius Leptamnium Leptandra Leptidae Leptilon Leptinotarsa Leptocardia Leptocardii Leptocephalidae Leptocephalus Leptodactylidae Leptodactylus Leptodora Leptodoridae Leptogenesis Leptolepidae Leptolepis Leptolinae Leptomedusae Leptomonas Lepton Leptophis Leptoptilus Leptorchis Leptospermum Leptosphaeria Leptospira Leptostraca Leptostromataceae Leptosyne Leptothrix Leptotrichia Leptotyphlopidae Leptotyphlops Lepus Lequire Ler Leraysville Lerida Lermontov Lerna Lernaea Lernaeacea Lernaean Lernaeidae Lernaeoides Lerne Lernean Lerner Lernfreiheit Leroi Lerona Leros Lerose Leroy Lerwa Lerwick Les Lesa Lesage Lesak Lesath Lesbia Lesbian Lesbianism Lesbians Lesbos Leschen Leschetizky Lescol Lescols Lesgh Lesh Leshia Leskea Leskeaceae Lesko Leslee Lesley Lesleya Lesli Leslie Lesly Lesotho Lespedeza Lesquerella Lessard Lesseps Lesser Lessie Lessing Lesslie Lesson Lessons Lester Lesterville Lestodon Lestosaurus Lestrade Lestrigon Lestrigonian Lesueur Lesvo Lesya Let Leta Letart Letch Letcher Letchworth Letha Lethbridge Lethe Lethean Lethes Lethia Lethied Lethocerus Leticia Letisha Letitia Letizia Leto Letohatchee Letona Letraset Letreece Letrice Letsou Lett Letta Lette Letterman Letti Lettic Lettice Lettie Lettish Letts Lettsworth Letty Leucadendron Leucadian Leucaena Leucaeus Leucas Leuce Leucetta Leucichthys Leucifer Leuciferidae Leucippe Leucippides Leucippus Leuciscus Leuckartia Leuckartiidae Leucobryaceae Leucobryum Leucocrinum Leucocytozoon Leucojaceae Leucojum Leucon Leuconostoc Leucophryne Leucosolenia Leucosoleniidae Leucosticte Leucothea Leucothoae Leucothoe Leuctra Leucus Leukas Leukothea Leun Leund Leupold Leupp Leuricus Leutze Leuven Lev Levallois Levalloisian Levan Levana Levania Levant Levanter Levanters Levantine Levantines Levantinism Levantinisms Levants Levasy Leveler Levelers Levelland Leveller Levellers Levelock Leven Levenson Leventhal Leventis Lever Leverett Leverhulme Leverick Leveridge Levering Leverkusen Leveroni Leverrier Levesque Levey Levi Leviathan Leviathans Levin Levina Levine Levins Levinson Levis Levison Levisticum Levit Levitan Levite Levites Levitic Levitical Leviticalism Leviticality Levitically Leviticalness Leviticism Leviticus Levitism Levitt Levittown Levkas Levon Levona Levophed Levroux Levy Lew Lewak Lewan Lewanna Lewellen Lewendal Lewert Lewes Lewie Lewin Lewinsky Lewis Lewisberry Lewisburg Lewisetta Lewisham Lewisia Lewisian Lewisohn Lewison Lewisport Lewiss Lewiston Lewistown Lewisville Lewls Lewse Lexa Lexan Lexans Lexell Lexi Lexie Lexine Lexington Lexis Lexus Lexy Ley Leyden Leyes Leyla Leyland Leyte Leyton Lezghian Lezley Lezlie Lfbeck Lfbke Lfderitz Lger Lhary Lhasa Lhasas Lhevinne Lhota Lhotse Li Lia Liage Liakoura Liam Lian Liana Liane Lianna Lianne Liao Liaoning Liaopeh Liaotung Liaoyang Liard Lias Liassic Liatrice Liatris Lib Liba Libau Libava Libb Libbey Libbi Libbie Libbna Libby Libellula Libellulidae Libenson Liber Libera Liberace Liberal Liberalia Liberalism Liberalisms Liberals Liberas Liberati Liberator Liberec Liberia Liberian Liberians Liberius Libertarian Libertarians Libertas Liberty Libertytown Libertyville Libia Libitina Libna Libnah Libocedrus Liborio Libove Libra Librae Libran Librans Libras Libre LibreOffice Libreville Librid Librium Libriums Libuse Libya Libyan Libyans Libytheidae Libytheinae Licania Licastro Licetus Licha Lichas Lichenes Lichenopora Lichenoporidae Lichfield Lichnophora Lichnophoridae Licht Lichtenberg Lichtenfeld Lichtenstein Lichter Licia Licinian Lick Licking Lickingville Licko Licuala Licymnius Lida Lidah Lidda Lidderdale Liddiard Liddie Liddle Liddy Lide Lidgerwood Lidia Lidice Lidie Lido Lidstone Lie Liebenthal Lieberman Liebermann Liebeslied Liebfraumilch Liebfraumilchs Liebig Liebknecht Liebman Liebowitz Liechtenstein Liechtensteiner Liechtensteiners Liederkranz Liederkranzes Liederman Liedertafel Lief Liege Liegnitz Lienhard Liepaja Liesa Liestal Lietman Lietuva Lieut Lieutenant Liew Lif Lifar Life Lifesaver Liffey Lifschitz Lifton Ligeia Ligeti Ligetti Ligget Liggett Liggitt Light Lightfoot Lightman Ligon Ligonier Ligularia Liguliflorae Liguori Liguorian Liguria Ligurian Ligurians Ligusticum Ligustrum Ligyda Ligydidae Lihue Lihyanite Likasi Likely Likoura Likud Lil Lila Lilac Lilaeopsis Lilah Lilas Lilbourn Lilburn Lilburne Lilesville Lili Lilia Liliaceae Liliales Lilian Liliana Liliane Lilias Lilibel Lilibell Lilibelle Lilienthal Liliiflorae Lilith Lilithe Lilium Liliuokalani Lilius Lilla Lille Lillee Lilli Lillian Lillibullero Lilliburlero Lillie Lillington Lilliput Lilliputian Lilliputianise Lilliputianize Lilliputians Lillis Lillith Lilliwaup Lilllie Lillo Lilly Lillywhite Lilo Lilongwe Lilos Lily Lilyan Lilybel Lilybelle Lilydale Lim Lima Limacea Limaceae Limacidae Limacina Limacinidae Liman Limann Limassol Limavady Limaville Limawood Limax Limbaugh Limber Limbert Limbi Limbo Limbourg Limbu Limburg Limburger Limburgers Limburgs Limbus Limean Limehouse Limemann Limenia Limeport Limerick Limey Limeys Limicolae Limidae Limington Limmasol Limnaea Limnaeidae Limnanthaceae Limnanthemum Limnanthes Limnetis Limnobium Limnocnida Limnophilidae Limnorchis Limnoria Limnoriidae Limodorum Limoges Limoli Limon Limosa Limosella Limosi Limousin Limousins Limpopo Limulidae Limuloidea Limulus Limun Lin Lina Linaceae Linacre Linanthus Linares Linaria Linasec Linc Linch Lincoln Lincolndale Lincolnesque Lincolnian Lincolniana Lincolnlike Lincolns Lincolnshire Lincolnton Lincolnville Lincroft Lincs Lind Linda Lindahl Lindale Lindberg Lindbergh Lindblad Lindbom Lindeberg Lindell Lindemann Linden Lindenau Lindenhurst Lindenwold Lindenwood Linder Lindera Linders Lindesnes Lindgren Lindholm Lindi Lindie Lindies Lindisfarne Lindley Lindleyan Lindly Lindner Lindo Lindon Lindquist Lindrith Lindsay Lindsborg Lindsey Lindseyville Lindside Lindsley Lindstrom Lindsy Lindwall Lindy Lindybeth Lindylou Line Linea Linehan Lineker Linell Linene Linesville Linet Linetta Linette Lineville Ling Lingayat Lingayata Lingayats Lingle Lingleville Lingoum Lingualumina Linguata Linguatula Linguatulida Linguatulina Lingulella Lingulidae Lingwood Linis Link Linker Linkoping Linkoski Linkping Linkuping Linkwood Linköping Linlithgow Linn Linna Linnaea Linnaean Linnaeanism Linnaeus Linne Linnea Linnean Linnell Linneman Linnet Linnete Linnette Linneus Linnhe Linnie Linoel Linofilm Linopteris Linos Linotype Linotyped Linotyper Linotypes Linotyping Lins Linsang Linsk Linskey Linson Linton Linum Linus Linux Linuxes Linville Linwood Linyphia Linyphiidae Linyu Linz Linzer Linzy Liod Lion Lionel Lionello Lions Liothrix Liotrichi Liotrichidae Liou Liouville Lipan Lipans Liparian Liparidae Liparididae Liparis Lipchitz Lipcombe Lipetsk Lipeurus Lipfert Lipinski Lipitor Lipitors Lipizzan Lipizzaner Lipizzaners Lipizzans Lipkin Lipman Lipmann Lipobranchia Liponis Lipopoda Lipotyphla Lipp Lippe Lippershey Lippi Lippia Lippincott Lippizan Lippizaner Lippizaners Lippizans Lippizzana Lippizzaner Lippizzaners Lippmann Lippold Lipps Lipschitz Lipscomb Lipsey Lipski Lipson Liptauer Liptauers Lipton Liquidambar Lir Lira Liriodendron Liris Lis Lisa Lisabet Lisabeth Lisan Lisandra Lisbeth Lisboa Lisboan Lisboans Lisbon Lisburn Lisco Liscomb Lise Liselotte Lisetta Lisette Lisha Lishe Lisieux Lisk Lisle Lisman Lismore Liss Lissa Lissajous Lissak Lissamphibia Lissencephala Lissi Lissie Lissner Lissoflagellata Lissotriches Lissy List Lister Listera Listeria Listerian Listerine Listerise Listerised Listerises Listerising Listerism Listerize Listerized Listerizes Listerizing Listie Liston Listserv Listservs Lisuarte Liszt Lisztian Lit LitB LitD Lita Litae Litch Litchfield Litchville Literberry Lith Litha Lithea Lithia Lithistida Lithobiidae Lithobius Lithocarpus Lithodes Lithodidae Lithodomus Lithonia Lithopolis Lithosiidae Lithosiinae Lithospermum Lithuania Lithuanian Lithuanians Lithuanic Litiopa Lititz Litman Litopterna Litorina Litorinidae Lits Litsea Litt LittB LittD LittM Litta Littcarr Littell Little Littlefield Littlejohn Littleport Littlestown Littleton Littman Litton Littorella Littoria Littra Littre Littrow Lituites Lituitidae Lituola Liturgies Liturgy Litvak Litvaks Litvinov Lityerses Liu Liuka Liukiu Liv Liva Livarot Lively Livenza Livermore Liverpool Liverpudlian Liverpudlians Livesay Livi Livia Livian Livingston Livingstone Livish Livistona Livonia Livonian Livonians Livorno Livvi Livvie Livvy Livvyy Livy Liz Liza Lizabeth Lizard Lizbeth Lizella Lizemores Lizette Lizton Lizzie Lizzy Ljod Ljoka Ljubljana Ljutomer Llanberisslate Llandaff Llandeilo Llandovery Llandudno Llanelli Llanelly Llanfairpwllgwyngyll Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch Llangollen Llano Lleburgaz Lleu Llew Llewellyn Llewelyn Llovera Lloyd Llud Lludd Llyr Llywellyn Lman Ln Lneburg Lnos Lo Loa Loachapoka Loafer Loafers Loafishness Loaghtan Loaghtans Loami Loammi Loanda Loar Loasa Loasaceae Loats Loatuko Lobachevskian Lobachevsky Lobale Lobaria Lobata Lobatae Lobber Lobeco Lobel Lobelia Lobeliaceae Lobell Lobelville Lobengula Lobito Lobosa Lobularia Locarnist Locarnite Locarnize Locarno Loch Lochgelly Lochia Lochinvar Lochinvars Lochlin Lochloosa Lochmere Lochner Lock Lockatong Lockbourne Locke Lockean Lockeanism Lockeford Lockeian Lockerbie Lockesburg Lockett Lockhart Lockheed Lockian Lockianism Lockie Lockist Lockists Lockland Locklin Lockney Lockport Lockwood Locky Lockyer Loco Locofoco Locofocoism Locofocos Locrian Locrians Locrine Locris Locrus Locustdale Locustidae Locustville Lod Loda Loddigesia Lodge Lodgegrass Lodha Lodhia Lodi Lodie Lodine Lodines Lodmilla Lodoicea Lodovico Lodowic Lodowick Lodur Lody Lodz Loeb Loeffler Loegria Loella Loesceke Loewe Loewi Loews Loewy Loferski Loffler Lofn Lofoten Lofti Lofting Loftis Loftus Logan Logandale Logania Loganiaceae Logansport Loganton Loganville Loggia Loggins Loghtan Loghtans Loghtyn Loghtyns Logi Loginov Logoi Logos Logres Logria Logris Logrono Logrouo Logting Lohana Lohar Lohengrin Lohman Lohn Lohner Lohrman Lohrmann Lohrville Lohse Loire Loiret Lois Loise Loiseleuria Loiza Loja Lokayata Lokayatika Loki Lokindra Lokman Lola Lolande Lolanthe Lole Loleta Loliginidae Loligo Lolita Lolitas Lolium Lolland Lollard Lollardian Lollardies Lollardism Lollardisms Lollardist Lollardize Lollardlike Lollardries Lollardry Lollards Lollardy Lollobrigida Lolly Lolo Lom Loma Lomalinda Lomamar Loman Lomasi Lomatium Lomax Lomb Lombard Lombardeer Lombardesque Lombardi Lombardian Lombardic Lombardo Lombards Lombardy Lombok Lombrosian Lombroso Lome Lomentaria Lometa Lomira Lomita Lomond Lomotil Lomotils Lompoc Lomu Lon Lona Lonaconing Lonchocarpus Lonchopteridae Lond Londinensian Londinium London Londonderry Londoner Londoners Londonese Londonesque Londonian Londonisation Londonise Londonised Londonises Londonish Londonising Londonism Londonization Londonize Londonized Londonizes Londonizing Londony Londres Londrina Lonedell Lonee Lonejack Lonergan Lonestar Lonetree Loney Long Longan Longaville Longawa Longbenton Longbottom Longchamps Longdale Longerich Longfellow Longford Longhi Longhorn Longhorns Longicornia Longinean Longinian Longinus Longirostrines Longkey Longlane Longleaf Longleat Longley Longmeadow Longmire Longmont Longo Longobard Longobardi Longobardian Longobardic Longobards Longomontanus Longport Longs Longstreet Longtin Longton Longueuil Longus Longview Longville Longwood Longworth Longyearbyen Loni Lonicera Lonie Lonier Lonk Lonna Lonnard Lonne Lonni Lonnie Lonnrot Lonny Lonoke Lonsdale Lontson Lonzie Lonzo Loogootee Lookeba Loomis Loon Looneyville Loos Lopatnikoff Lopatnikov Lope Lopeno Lopes Lopez Lopezia Lophiidae Lophiodon Lophiodontidae Lophiola Lophiomyidae Lophiomyinae Lophiomys Lophobranchii Lophocome Lophocomi Lophodermium Lophophora Lophophorinae Lophophorus Lophopoda Lophornis Lophortyx Lophura Lopoldville Lora Lorado Lorain Loraine Loral Loralee Loralie Loralyn Loram Loran Lorane Loranger Lorans Lorant Loranthaceae Loranthus Lorca Lord Lordan Lords Lordsburg Lordship Lordships Lordy Lore Loreauville Loredana Loredo Loree Loreen Lorelei Loreleis Lorelie Lorella Lorelle Loren Lorena Lorence Lorene Lorens Lorentz Lorenz Lorenza Lorenzan Lorenzana Lorenzetti Lorenzo Lorestan Loresz Loretta Lorette Lorettine Loretto Lori Loria Lorianna Lorianne Loricariidae Loricata Loricati Lorida Lorie Lorien Lorient Lorilee Lorilyn Lorimer Lorimor Lorin Lorinda Lorine Loriner Loring Loris Lorita Lorius Lorman Lorn Lorna Lorne Lorola Lorolla Lorollas Lorou Lorrain Lorraine Lorrainer Lorrainese Lorrayne Lorre Lorri Lorrie Lorrimer Lorrimor Lorrin Lorris Lorry Lorsung Lorton Lorus Lorusso Lory Los Lose Loseff Losey Loss Lossa Losse Lossiemouth Lostant Lostine Lot Lota Lotha Lothair Lothaire Lothar Lotharingian Lothario Lotharios Lothian Lothians Lothringen Loti Lotis Lotophagi Lotson Lott Lotta Lotte Lotti Lottie Lottsburg Lotty Lotuko Lotus Lotusland Lotuslands Lotz Lotze Lou Louann Louanna Louanne Loucheux Loudon Loudonville Louella Louellen Lough Loughborough Lougheed Loughlin Loughman Louhi Louie Louin Louis Louisa Louisburg Louise Louisette Louisiana Louisianan Louisianans Louisianian Louisianians Louisville Louisvillian Louisvillians Louls Lounge Lounsbury Loup Lourdes Lourie Louth Loutitia Louvain Louvale Louvertie Louviers Louvre Loux Louys Lovash Lovato Love Lovecraft Lovejoy Lovel Lovelace Lovelaceville Lovelady Loveland Lovell Lovelock Lovely Lover Loveridge Lovering Lovett Lovettsville Loveville Lovich Lovie Lovilia Loving Lovingston Lovington Lovmilla Low Lowake Lowber Lowden Lowder Lowe Lowell Lowellville Lowenbrau Lowenstein Lowenstern Lower Lowery Lowes Lowestoft Lowestofts Lowesville Lowis Lowl Lowland Lowlander Lowlanders Lowlands Lowman Lowmansville Lowmoor Lowndes Lowndesboro Lowndesville Lowney Lowrance Lowrie Lowry Lowson Lowveld Lowville Loxahatchee Loxias Loxiinae Loxley Loxodon Loxodonta Loxolophodon Loxomma Loxosoma Loxosomidae Loy Loyalist Loyalists Loyall Loyalton Loyang Loyce Loyd Loyde Loydie Loyola Loyolism Loyolite Loysburg Loysville Loz Lozano Lozar Lozare Lozere Lozi Lozère Lr Lrida Ls Lt Ltd Ltzen Lu Lualaba Luana Luanda Luane Luann Luanne Luanni Luba Lubas Lubavitch Lubavitcher Lubavitchers Lubba Lubberland Lubbi Lubbock Lubec Lubeck Lubell Luben Lubet Lubin Lubiniezky Lubitsch Lubke Lublin Lubow Lubumbashi Luby Luca Lucais Lucama Lucan Lucania Lucanidae Lucanus Lucas Lucasville Lucayan Lucayans Lucayo Lucayos Lucca Lucchese Lucchesi Luce Lucedale Lucelle Lucentio Luceres Lucernaria Lucernariidae Lucerne Lucey Luchesse Lucho Luchuan Luci Lucia Lucian Luciana Lucianne Luciano Lucias Lucic Lucie Lucien Lucienne Lucier Lucifer Luciferian Luciferidae Lucila Lucile Lucilia Lucilius Lucilla Lucille Lucina Lucinacea Lucinas Lucinda Lucine Lucinidae Lucio Lucita Lucite Lucites Lucius Luck Luckett Luckey Luckin Lucknow Lucky Lucrece Lucretia Lucretian Lucretius Lucrezia Lucrine Lucullan Lucullean Lucullian Lucullus Lucuma Lucumo Lucy Lud Luda Ludd Luddism Luddisms Luddite Luddites Ludditism Ludell Ludeman Ludendorff Luderitz Ludewig Ludgate Ludgathian Ludgatian Ludhiana Ludian Ludie Ludington Ludlew Ludlovian Ludlow Ludly Ludmilla Ludolphian Ludovick Ludovico Ludovika Ludowici Ludvig Ludwig Ludwigg Ludwigsburg Ludwigshafen Ludwog Luebbering Luebke Lueders Luedtke Luehrmann Luella Luelle Luening Luffa Luffler Lufkin Lufthansa Luftwaffe Lug Lugana Luganda Lugano Lugansk Lugar Luger Lugers Luggnagg Lugnas Lugnasad Lugo Lugoff Lugones Lugosi Luhe Luhey Luht Luian Luigi Luigino Luik Luing Luis Luisa Luise Luiseno Luite Luiza Luk Lukacs Lukan Lukas Lukash Lukasz Lukaszewicz Luke Lukeville Lukey Lukin Luks Lula Lulea Luli Lulie Luling Lulita Lull Lullaby Lulli Lullian Lully Lulu Luluabourg Lumbard Lumbee Lumbees Lumberport Lumberton Lumbricidae Lumbricus Lumbye Lumen Lumiare Lumiere Luminal Luminism Luminisms Luminist Luminists Lumière Lumpkin Lumpur Lumumba Luna Lunaria Lunas Lunaville Lund Lunda Lundale Lundas Lundberg Lundeen Lundell Lundgren Lundin Lundinarium Lundquist Lundt Lundy Lune Luneburg Lunel Lunenburg Lunetta Lunette Luneville Lungki Lunik Luning Lunka Lunn Lunna Lunneta Lunnete Lunnrot Luns Lunseth Lunsford Lunt Lunularia Lunulites Lunville Luo Luorawetlan Luoyang Lupe Lupee Lupercal Lupercalia Lupercalian Lupercalias Lupercals Luperci Lupercus Lupez Lupi Lupid Lupien Lupinus Lupita Lupton Lupus Luquillo Lur Lura Luray Lurcat Lurette Lurex Lurexes Lurgan Lurgi Luri Luria Luriat Lurie Luristan Lurleen Lurlei Lurlene Lurline Lurton Lusa Lusaka Lusatia Lusatian Lusatians Lusby Luscinia Lushai Lushei Lushun Lusia Lusiad Lusiads Lusian Lusitania Lusitanian Lusitanians Lusk Lusophile Lusophiles Lussi Lussier Lust Lustick Lustig Lustprinzip Lusty Lutao Lutayo Lutcher Lutenist Lutero Lutesville Lutetia Lutetian Luth Luthanen Luther Lutheran Lutheranic Lutheranise Lutheraniser Lutheranism Lutheranisms Lutheranize Lutheranizer Lutherans Lutherism Lutherisms Lutherist Luthersburg Luthersville Lutherville Luthuli Lutianidae Lutianus Lutjanidae Lutjanus Luton Lutoslawski Lutra Lutraria Lutreola Lutrinae Lutsen Luttrell Lutts Lutuamian Lutuamians Lutyens Lutz Lutzes Luvaridae Luverne Luvian Luvians Luvish Luvs Luwana Luwian Luwians Lux Luxembourg Luxembourger Luxembourgers Luxembourgian Luxemburg Luxemburger Luxemburgers Luxemburgian Luxor Luxora Luz Luzader Luzern Luzerne Luzon Luzula Lviv Lvos Lvov Lw Lwe Lwo Lwoff Ly LyX Lyaeus Lyall Lyallpur Lyas Lyautey Lyburn Lycaena Lycaenidae Lycaeus Lycaon Lycaonia Lyceum Lychnic Lychnis Lycia Lycian Lycians Lycidae Lycidas Lycium Lyckman Lycodes Lycodidae Lycomedes Lycoming Lycon Lycoperdaceae Lycoperdales Lycoperdon Lycopersicon Lycophron Lycopodiaceae Lycopodiales Lycopodinae Lycopodineae Lycopodium Lycopsida Lycopsis Lycopus Lycosa Lycosidae Lycotherses Lycra Lycras Lyctidae Lyctus Lycurgus Lycus Lyda Lydda Lydell Lydgate Lydia Lydian Lydians Lydie Lydon Lyell Lyencephala Lyerly Lyford Lygaeidae Lygeum Lygodesma Lygodium Lygosoma Lykens Lykes Lyle Lyles Lyly Lyman Lymann Lymantria Lymantriidae Lyme Lymeswold Lymington Lymn Lymnaea Lymnaeidae Lyn Lynam Lynbrook Lynceus Lynch Lynchburg Lyncid Lyncis Lynco Lynd Lynda Lynde Lyndeborough Lyndel Lyndell Lynden Lyndes Lyndhurst Lyndon Lyndonville Lyndora Lyndsay Lyndsey Lyndsie Lyndy Lynea Lynelle Lynen Lynett Lynette Lyngbyaceae Lyngbyeae Lyngi Lynn Lynna Lynndyl Lynne Lynnea Lynnell Lynnelle Lynnet Lynnett Lynnette Lynnfield Lynnville Lynnwood Lynnworth Lyns Lynsey Lynus Lynwood Lynx Lyomeri Lyon Lyonais Lyonese Lyonetia Lyonetiidae Lyonnais Lyonnaise Lyonnesse Lyons Lyontine Lyopoma Lyopomata Lyperosia Lyra Lyrae Lyraid Lyricon Lyricons Lyrid Lyris Lyrurus Lyrus Lys Lysander Lysandra Lysenko Lysenkoism Lysenkoisms Lysias Lysiloma Lysimachia Lysimachus Lysippe Lysippus Lysistrata Lysite Lysol Lysols Lyssa Lythraceae Lythrum Lytle Lytten Lyttleton Lytton Lyubertsy Lyublin Lyudmila Lzen Lésvo Lübeck Lüneburg M MA MAA MAAG MAAP MAArch MAC MACBS MACSYMA MAD MADD MADN MAE MAEd MAF MAG MAL MALD MALS MAN MAO MAP MAPSS MAPTOP MAR MARBI MARC MARS MARV MAS MASB MASC MASER MASH MASM MAST MATCALS MATFAP MATS MAU MAXI MAeroE MAgEc MAgEd MAgr MArch MArchE MB MBA MBE MBO MBPS MBWA MC MCA MCAD MCAE MCC MCCS MCH MCHB MCI MCIAS MCJ MCN MCNC MCP MCPAS MCPO MCR MCS MCSV MCTRAP MCU MCh MCi MD MDACS MDAP MDAS MDC MDDS MDE MDEC MDES MDF MDI MDMA MDQS MDRE MDS MDT MDU MDX MDiv ME MEA MEANS MEC MECO MED MEGO MEGOs MELD MEP MEPA MERP MERS MET MEX MEZ MEd MElEng MF MFA MFB MFENET MFG MFH MFJ MFLOPS MFM MFR MFS MFT MG MGB MGH MGM MGT MGeolE MGk MGr MH MHA MHD MHE MHF MHG MHL MHR MHS MHW MHz MI MIA MIB MICE MICR MID MIDAS MIDI MIDIs MIE MIF MIFASS MIG MIL MILNET MILR MILSTD MIM MIMD MIME MIMinE MIMunE MIN MINCE MINX MIP MIPS MIPSes MIR MIRS MIRV MIRVed MIRVing MIRVs MIS MISCF MIT MITI MITS MIr MJ MKS MKTG ML MLA MLC MLCD MLD MLEM MLF MLG MLL MLO MLR MLS MLT MLV MLW MLitt MM MMC MMDF MME MMES MMFS MMGT MMH MMJ MMM MMOC MMP MMS MMT MMU MMW MMX MMetE MMus MN MNA MNAS MNE MNOS MNP MNRAS MNS MNurs MO MOA MOC MOCA MOD MODEM MOFW MOG MOH MOI MOIG MOL MOLA MOMV MOP MOR MOS MOSFET MOT MOTAS MOTIS MOTOS MOTSS MOTV MOU MOUSE MOV MOpt MP MPA MPC MPCC MPCH MPDU MPE MPEG MPG MPH MPIF MPL MPO MPOW MPP MPPD MPR MPS MPT MPU MPV MPW MPers MPh MPharm MPhil MR MRA MRC MRD MRE MRF MRFL MRI MRP MRS MRSR MRSRM MRTS MRU MS MSA MSAE MSAM MSArch MSB MSBA MSBC MSBus MSC MSCDEX MSCE MSCP MSChE MSCons MSD MSDOS MSE MSEE MSEM MSEnt MSF MSFC MSFM MSFR MSFor MSG MSGM MSGMgt MSGeolE MSH MSHA MSHE MSI MSIE MSJ MSL MSM MSME MSMetE MSMgtE MSN MSO MSOrNHort MSP MSPE MSPH MSPHE MSPHEd MSPhar MSR MSS MSSc MST MSTS MSW MSc MScD MScMed MSgt MT MTA MTB MTBF MTBRP MTC MTD MTF MTI MTM MTO MTP MTR MTS MTSO MTTF MTTFF MTTR MTU MTV MTX MTech MTh MU MUA MUD MUDder MUDders MUDding MUDdings MUF MULDEM MULTICS MUMPS MUNG MUP MUX MV MVA MVD MVEd MVO MVP MVS MVSSP MVSXA MVSc MVY MW MWA MWM MWT MX MXU MY MYOB Ma Maag Maalox Maarianhamina Maarib Maas Maasai Maasais Maastricht Maat Maazel Mab Maba Mabank Mabel Mabelle Mabellona Mabelvale Maben Mabie Mabinogion Mable Mableton Mabscott Mabton Mabuse Mac MacArthur MacBride MacCarthy MacClenny MacClesfield MacDermot MacDoel MacDona MacDonald MacDonell MacDougall MacDowell MacEgan MacFadyn MacFarlan MacFarlane MacGregor MacGuffin MacGuiness MacIlroy MacIntosh MacIntyre MacKay MacKenzie MacKeyville MacLaine MacLay MacLean MacLeish MacLeod MacMahon MacMillan MacMullin MacNair MacNamara MacNeice MacPherson MacRae MacSwan Macaca Macacus Macadamia Macaglia Macanese Macao Macap Macapa Macapagal Macaranga Macarani Macareus Macario Macartney Macassar Macassarese Macatawa Macau Macaulay Macbeth Macc Maccabaean Maccabaeus Maccabean Maccabees Maccabeus Maccarone Macclesfield Macdonald Macduff Mace Maced Macedon Macedonia Macedonian Macedonians Macedonic Macegan Maceio Maceo Maces Macey Macflecknoe Mach Macha Machabees Machado Machaerus Machairodontidae Machairodontinae Machairodus Machaon Machault Machaut Machel Machen Machetes Machias Machiasport Machiavel Machiavelian Machiavelians Machiavelli Machiavellian Machiavellianism Machiavellianisms Machiavellianist Machiavellianly Machiavellians Machiavellic Machiavellism Machiavellisms Machiavellist Machiavellistic Machiavellists Machicui Machilidae Machilis Machipongo Machmeter Machmeters Machogo Machos Machs Machtpolitik Machute Machutte Macias Macigno Macing Macintosh Mack Mackay Mackenie Mackensen Mackenzie Mackerras Mackey Mackie Mackinac Mackinaw Mackinaws Mackintosh Mackler Macknair Mackoff Macksburg Macksinn Macksville Mackville Maclean Maclear Macleaya Macleod Maclura Maclurea Macmahon Macmillan Macmillanite Macnair Macomb Macomber Macon Macons Macoun Macouns Macpherson Macquarie Macracanthorhynchus Macrauchenia Macraucheniidae Macready Macri Macrobiotus Macrobius Macrocentrinae Macrocentrus Macrochelys Macrochira Macrochires Macrochiroptera Macrocystis Macrophoma Macropodidae Macropodinae Macropus Macropygia Macrorhamphosidae Macrorhamphosus Macrorhinus Macroscelides Macrosporium Macrostachya Macrotheriidae Macrotherium Macrotolagus Macrouridae Macrourus Macrozamia Macrura Macs Mactra Mactridae Macumba Macungie Macur Macusi Macy Mad Mada Madag Madagascan Madagascans Madagascar Madagascarian Madagass Madai Madaih Madalena Madalyn Madalynne Madam Madame Madancy Madang Madaras Madariaga Madawaska Maddalena Madden Maddeu Maddi Maddie Maddis Maddock Maddocks Maddox Maddy Madea Madecase Madegassy Madeira Madeiran Madeirans Madeiras Madeiravine Madel Madelaine Madeleine Madelen Madelena Madelene Madeli Madelia Madelin Madelina Madeline Madella Madelle Madelon Madelyn Mademoiselle Mademoiselles Madera Maderno Madero Madge Madhva Madhyamika Madi Madia Madian Madid Madiga Madigan Madill Madinensor Madison Madisonburg Madisonian Madisonville Madlen Madlin Madlyn Madm Madoc Madoera Madonia Madonna Madonnahood Madonnaish Madonnalike Madonnas Madora Madotheca Madox Madra Madras Madrasi Madrasis Madrepora Madreporacea Madreporaria Madrid Madriene Madrilene Madrilenian Madrilenians Madrileno Madrilenos Madsen Madson Madura Madurai Madurese Mady Mae Maeander Maeandra Maeandrina Maebashi Maebelle Maecenas Maecenases Maecenasship Maegan Mael Maelstrom Maely Maemacterion Maenalus Maenidae Maeon Maeonian Maeonides Maera Maestricht Maeterlinck Maeterlinckian Maeve Maewo Maeystown Mafala Mafalda Mafeking Maffa Maffei Maffia Maffias Mafia Mafias Mafikeng Mafiosi Mafioso Mafiosos Mag Maga Magadhi Magahi Magalensia Magalia Magallanes Magan Magangue Magas Magavern Magbie Magda Magdaia Magdala Magdalen Magdalena Magdalene Magdalenian Magdalenne Magdalens Magdau Magdeburg Magee Magel Magelhanz Magellan Magellanian Magellanic Magen Magena Magenta Mages Maggee Maggi Maggie Maggio Maggiore Maggs Maggy Magh Magherafelt Maghi Maghreb Maghrebi Maghrebian Maghrebians Maghrebis Maghrib Maghribi Maghribian Maghribians Maghribis Maghutte Magi Magian Magianism Magianisms Magians Magill Magindanao Magindanaos Maginot Maginus Magism Maglemose Maglemosean Maglemosian Maglev Maglevs Magna Magner Magnesia Magness Magnien Magnificat Magnificats Magnitogorsk Magnolia Magnoliaceae Magnum Magnums Magnus Magnuson Magnusson Magocsi Magog Magoo Magree Magritte Magruder Magsaysay Maguire Magulac Magus Magyar Magyaran Magyarism Magyarization Magyarize Magyarized Magyarizing Magyarorsz Magyarorszag Magyars Mah Mahabalipuram Mahabharata Mahabharatas Mahadeva Mahaffey Mahala Mahalia Mahalie Mahamaya Mahan Mahanadi Maharashtra Maharashtri Mahasamadhi Mahaska Mahatma Mahatmas Mahau Mahavira Mahayana Mahayanas Mahayanism Mahayanist Mahayanistic Mahayanists Mahdi Mahdian Mahdis Mahdiship Mahdism Mahdisms Mahdist Mahdists Mahendra Maher Mahfouz Mahi Mahican Mahicans Mahla Mahler Mahlerian Mahlon Mahmoud Mahmud Mahnomen Mahomet Mahometan Mahometans Mahometry Mahommedan Mahon Mahoney Mahonia Mahopac Mahori Mahound Mahra Mahran Mahratta Mahrattas Mahratti Mahren Mahri Mahto Mahtowa Mahul Mahwah Mai Maia Maiacca Maiah Maianthemum Maibach Maible Maice Maida Maidanek Maidel Maiden Maidenform Maidenhead Maidens Maidie Maidstone Maidsville Maidu Maiduguri Maidus Maidy Maier Maiga Maighdiln Maighdlin Maigret Maiidae Maikop Mailand Mailer Mailgram Mailgrams Maillart Maillol Maiman Maimonidean Maimonides Maimonist Main Mainan Mainauer Maine Mainer Mainers Mainesburg Maineville Mainis Mainland Mainstreeter Mainstreetism Maintenon Mainz Maiocco Maioidea Maioli Maiongkong Maipure Mair Maire Maise Maisel Maisey Maisie Maison Maite Maithili Maitilde Maitland Maitreya Maitund Maius Maize Maj Maja Majagga Maje Majesta Majesties Majesty Majka Majlis Major Majorca Majorcan Majorcans Majorism Majorist Majoristic Majunga Majuro Mak Makah Makahs Makalu Makanda Makaraka Makari Makarios Makasar Makasarese Makassar Makassarese Makawao Makaweli Makedhonia Makeevka Makell Maker Makeyevka Makhachkala Makinen Makiyivka Makkah Makonde Makoti Maku Makua Makuas Makurdi Mal Mala Malabar Malabarese Malabo Malacanthidae Malacanthus Malacca Malaccan Malaccans Malaceae Malachi Malachias Malachy Malaclemys Malacobdella Malacocotylea Malacodermatidae Malacodermidae Malacopoda Malacopterygii Malacoscolices Malacoscolicine Malacosoma Malacostraca Malaga Malagas Malagash Malagasies Malagasy Malagigi Malakal Malakoff Malamud Malamut Malan Malang Malange Malanie Malanje Malaprop Malapterurus Malar Malarkey Malaspina Malatesta Malathion Malathions Malatya Malawi Malawian Malawians Malawis Malaxis Malay Malaya Malayalaam Malayalam Malayalim Malayan Malayans Malayic Malayise Malayize Malayoid Malays Malaysia Malaysian Malaysians Malca Malcah Malchus Malchy Malcolm Malcom Malda Malden Maldivan Maldivans Maldive Maldives Maldivian Maldivians Maldon Maldonado Male Malebolge Malebolgian Malebolgic Malebranche Malebranchism Malecite Malecites Maleeny Malek Maleki Malemute Malena Malenkov Malesherbia Malesherbiaceae Malet Maletta Malevich Malherbe Mali Malia Malian Malians Malibran Malibu Malik Maliki Malikite Malin Malina Malinda Malinde Malines Malinin Malinke Malinkes Malinois Malinovsky Malinowski Malinta Malipiero Maliseet Maliseets Malissa Malissia Malita Maljamar Malka Malkah Malkin Malkite Mall Mallarme Mallarmé Malleifera Mallen Maller Mallet Malley Mallia Mallie Mallin Mallina Malling Mallis Mallissa Malloch Mallomars Mallon Mallophaga Mallorca Mallorcan Mallorcans Mallorie Mallory Mallotus Malloy Malmaison Malmdy Malmedy Malmesbury Malmo Malmsey Malmseys Malmö Malo Malone Maloneton Maloney Malonis Malony Malope Malorie Malory Malott Maloy Malpighi Malpighia Malpighiaceae Malpighian Malplaquet Malraux Malta Maltese Malthe Malthus Malthusian Malthusianism Malthusianisms Malthusians Malthusiast Malti Malto Malton Maltz Maltzman Maluku Malurinae Malurus Malus Malva Malvaceae Malvales Malvasia Malvastrum Malvern Malverne Malvia Malvie Malvin Malvina Malvinas Malvine Malvino Malvolio Malynda Mam Mama Mamallapuram Mamaroneck Mame Mameluke Mamelukes Mamercus Mamers Mamertine Mamertino Mamet Mamie Mamilius Mamisburg Mamluk Mamluks Mammalia Mammea Mammifera Mammillaria Mammon Mammons Mammonteus Mammut Mammutidae Mamor Mamore Mamou Mamoun Mams Mamurius Man Mana Manabozho Manacus Manado Managua Managuan Managuans Manahawkin Manaker Manakinsabot Manala Manama Manannn Manaos Manara Manard Manasquan Manassa Manassas Manasseh Manasses Manassite Manat Manati Manatidae Manatus Manaus Manawa Manawyddan Mancelona Manchaca Manchaug Manche Manchegan Manchegans Manchester Manchesterdom Manchesterism Manchesterist Manchestrian Manchu Manchukuo Manchuria Manchurian Manchurians Manchus Mancini Mancino Mancos Mancunean Mancuneans Mancunian Mancunians Manda Mandaean Mandaeans Mandaeism Mandaic Mandaite Mandal Mandalay Mandan Mandans Mandaree Mandarin Mande Mandean Mandeans Mandel Mandela Mandelbaum Mandelbrot Mandell Mandelson Mandelstam Manderson Mandes Mandeville Mandi Mandibulata Mandie Mandingan Mandingo Mandingoes Mandingos Mandinka Mandinkas Mandle Mandler Mandrell Mandy Mandych Manella Manes Manet Manetho Manetti Manettia Manfred Manfreda Mangalitza Mangalore Manganin Manganja Mangar Mangarevan Mangbattu Mangham Mangifera Mango Mangohick Mangrum Mangue Mangum Mangyan Manhasset Manhattan Manhattanise Manhattanises Manhattanite Manhattanites Manhattanization Manhattanizations Manhattanize Manhattanized Manhattanizes Manhattanizing Manhattans Manheim Mani Mania Manicamp Manicaria Manichae Manichaean Manichaeanism Manichaeanisms Manichaeanize Manichaeans Manichaeism Manichaeisms Manichaeist Manichaeus Manichean Manicheanism Manicheanisms Manicheans Manichee Manichees Manicheism Manicheisms Manicheus Manidae Manihot Manila Manilas Manilius Manilla Manillas Maninka Maninkas Maninke Manipur Manipuri Manis Manisa Manistee Manistique Manito Manitoba Manitoban Manitobans Manitou Manitoulin Manitowoc Manity Manius Maniva Manizales Manjusri Mankato Mankiewicz Manley Manlius Manlove Manly Mann Mannaean Mannar Mannboro Mannerheim Mannerism Mannerisms Mannerist Manners Mannes Mannford Mannheim Mannheimar Mannie Manning Mannington Mannlicher Manno Mannos Mannschoice Mannsville Mannuela Manny Mano Manoah Manobo Manoff Manokin Manokotak Manolete Manolo Manomet Manon Manorhaven Manorville Manouch Manquin Manresa Mans Mansard Mansart Mansell Mansfield Mansholt Manson Mansoor Mansra Mansur Mansura Manta Mantachie Mantador Mantalini Manteca Mantee Mantegna Mantell Manteno Manteo Manter Manthei Manti Mantidae Mantinea Mantinean Mantisia Mantispa Mantispidae Mantius Mantle Manto Mantodea Mantoidea Mantoloking Manton Mantorville Mantova Mantua Mantuan Mantuans Mantzu Manu Manucodia Manue Manuel Manuela Manukau Manuri Manus Manutius Manvantara Manvel Manvell Manvil Manville Manwell Manx Manxman Manxmen Manxwoman Manxwomen Manya Manyema Manyoshu Manzanilla Manzanillas Manzanola Manzas Manzoni Manzu Manáos Mao Maoism Maoisms Maoist Maoists Maori Maoridom Maoriland Maorilander Maoris Maoritanga Map Mapaville Mapel Mapes Maplaquet Maplecrest Maples Mapleshade Maplesville Mapleton Mapleview Mapleville Maplewood Mappah Mappila Mapplethorpe Mappsville Mapuche Mapuches Mapudungun Mapudunguns Maputo Maquiritare Maquis Maquisard Maquisards Maquoketa Maquon Mar MarMechE Mara Marabel Marabelle Marabout Marabouts Maracaibo Maracanda Maracay Maradona Maragato Maraj Marala Maralina Maraline Maramec Marana Maranh Maranha Maranham Maranhao Maranhio Maranon Maranta Marantaceae Marasar Maraschino Maraschinos Marasco Marashio Marasmius Marat Maratha Marathas Marathi Marathon Marathonian Maratism Maratist Maratta Marattas Marattia Marattiaceae Marattiales Marauun Maravi Maravis Marble Marblehead Marburg Marbury Marbut Marc Marcan Marcantonio Marceau Marcel Marcela Marcelia Marceline Marcelino Marcell Marcella Marcelle Marcellette Marcellian Marcellianism Marcellina Marcelline Marcello Marcellus Marcelo Marcgravia Marcgraviaceae March Marchak Marchal Marchall Marchand Marchantia Marchantiaceae Marchantiales Marche Marchelle Marchen Marches Marchese Marcheshvan Marchette Marchmont Marci Marcia Marcian Marciano Marcianus Marcie Marcile Marcille Marcin Marcion Marcionism Marcionisms Marcionist Marcionists Marcionite Marcionites Marcionitic Marcionitish Marcionitism Marcite Marcius Marco Marcobrunner Marcola Marcomanni Marcomannic Marconi Marcos Marcosian Marcoux Marcus Marcuse Marcushook Marcy Marden Marder Mardi Mardochai Marduk Mare Mareah Mareca Maregos Marehan Marek Marela Mareld Marelda Marella Marelya Maren Marena Marengo Marenisco Marentic Marenzio Mareotic Mareotid Maressa Maretta Marette Maretz Marfa Marfik Marfrance Marga Margalit Margalo Margarelon Margaret Margareta Margarete Margaretha Margarethe Margaretta Margarette Margarettsville Margaretville Margarida Margarita Margarito Margarodes Margarodinae Margaropus Margate Margaux Marge Margeaux Margery Marget Margette Margetts Margherita Margi Margie Marginella Marginellidae Marginis Margit Margo Margot Margret Margreta Margrethe Marguerie Marguerita Marguerite Margy Marheshvan Mari Maria Mariam Mariamman Marian Mariana Marianao Marianas Mariand Mariande Mariandi Marianic Marianist Marianists Mariann Marianna Marianne Mariano Marianolatrist Marianolatry Marians Marianskn Mariastein Mariba Maribel Maribelle Maribeth Maribor Maricao Marice Maricela Maricopa Maricopas Marida Maridel Marie Marieann Mariehamn Mariejeanne Mariel Mariele Marielle Mariellen Marienbad Marienthal Marienville Mariett Marietta Mariette Marifrances Marigene Marigold Marigolda Marigolde Marijane Marijn Marijo Marika Mariken Mariko Maril Marilee Marilin Marilla Marillin Marilou Marilyn Marilynn Marilynne Marin Marina Marinduque Marine Marinelli Mariner Marines Marinette Marinetti Maringouin Marini Marinism Marinist Marinistic Marinna Marino Marinus Mario Mariolater Mariolaters Mariolatries Mariolatrist Mariolatrists Mariolatrous Mariolatry Mariological Mariologies Mariologist Mariologists Mariology Marion Marionville Mariposa Mariposan Mariquilla Maris Marisa Marisat Marisats Mariska Marisol Marissa Marist Marists Marita Maritain Maritime Maritimer Maritimers Maritsa Maritza Mariupol Marius Marivaudage Marivaux Mariya Marj Marja Marjana Marje Marji Marjie Marjorie Marjory Marjy Mark Markab Markan Markeb Markesan Market Marketa Markevich Markgenossenschaft Markham Markland Markle Markleeville Markleton Markleville Markleysburg Markman Marko Markoff Markos Markov Markova Markovian Markowitz Marks Markson Marksville Markus Markville Marl Marla Marland Marlane Marlboro Marlborough Marlea Marleah Marlee Marleen Marleene Marleigh Marlen Marlena Marlene Marler Marlette Marley Marlie Marlin Marline Marlinton Marlo Marlon Marlovian Marlow Marlowe Marlowesque Marlowish Marlowism Marlton Marlyn Marmaduke Marmar Marmara Marmarth Marmawke Marmax Marmet Marmion Marmite Marmolada Marmora Marmosa Marmota Marna Marne Marney Marni Marnia Marnie Maro Maroa Maroc Maroilles Marola Marolda Marolles Maron Maroney Maronian Maronist Maronite Maronites Maroon Maroons Maros Marou Marozas Marozik Marpessa Marpet Marple Marprelate Marq Marquand Marquardt Marquesan Marquesans Marquesas Marquet Marquette Marquez Marquis Marquita Marr Marra Marrakech Marrakesh Marranism Marrano Marranoism Marranos Marras Marrella Marrero Marrietta Marrilee Marrin Marriner Marriott Marris Marrissa Marron Marrubium Marrucinian Marruecos Marryat Mars Marsala Marsalas Marsalis Marsden Marsdenia Marseillais Marseillaise Marseillaises Marseille Marseilles Marses Marsh Marsha Marshal Marshalese Marshall Marshallberg Marshallese Marshalltown Marshallville Marshalsea Marshessiding Marshfield Marshville Marsi Marsian Marsiella Marsilea Marsileaceae Marsilia Marsiliaceae Marsilid Marsing Marsipobranchia Marsipobranchiata Marsipobranchii Marsland Marspiter Marssonia Marssonina Marsteller Marston Marsupialia Marsupiata Marsyas Mart Marta Martaban Martae Martainn Marte Marteena Martel Martell Martella Martelle Martelli Martello Marten Martens Martensdale Martes Martguerita Marth Martha Marthasville Marthaville Marthe Marthena Marti Martial Martialist Martian Martians Martica Martie Martijn Martin Martina Martindale Martine Martineau Martinelli Martinez Martini Martinic Martinican Martinicans Martiniquais Martinique Martinism Martinist Martinmas Martinmases Martino Martinon Martinsburg Martinsdale Martinsen Martinson Martinsville Martinton Martinu Martita Martius Martres Martsen Martu Martville Marty Martyn Martynia Martyniaceae Martynne Martyr Martz Marucci Marut Marutani Marv Marva Marve Marvel Marvell Marvella Marven Marvin Marwar Marwari Marwin Marx Marxian Marxianism Marxianisms Marxians Marxism Marxisms Marxist Marxists Mary Marya Maryalice Maryann Maryanna Maryanne Marybella Marybelle Marybeth Marybob Maryborough Maryd Marydel Marydell Maryellen Maryfrances Maryjane Maryjo Marykay Maryknoll Maryknoller Maryknollers Maryl Maryland Marylander Marylanders Marylandian Marylebone Marylee Marylhurst Marylin Marylinda Marylon Marylou Maryly Marylyn Marylynne Marymass Maryn Maryneal Maryolater Maryolaters Maryolatrous Maryolatry Maryologies Maryologist Maryology Maryrose Maryruth Marys Marysa Marysvale Marysville Maryus Maryville Marzi Mas Masaccio Masada Masai Masais Masan Masao Masarididae Masaridinae Masaris Masaryk Masbate Mascagni Mascherone Mascia Mascot Mascotte Mascoutah Mascouten Masculine Masdevallia Masefield Masera Maserati Maseru Masgat Masha Masharbrum Mashe Mashhad Mashona Mashonas Mashpee Masinissa Maskegon Maskell Maskelyne Maskins Maskoi Masolino Mason Masonic Masonically Masonite Masonites Masonries Masonry Masons Masontown Masonville Masora Masorah Masorahs Masoras Masorete Masoretes Masoreth Masoretic Masoretical Masorite Masorites Maspero Maspiter Masqat Masry Mass Massa Massachuset Massachusets Massachusett Massachusetts Massai Massais Massalia Massalian Massana Massapequa Massarelli Massasoit Massaua Massawa Massekhoth Massena Massenet Masses Massey Massie Massilia Massilian Massillon Massimiliano Massimo Massine Massinger Massingill Massinisa Massinissa Massmonger Massna Masson Massora Massorah Massorete Massoretes Massoretic Massoretical Massys Mast Mastat Master MasterCard Masters Masterson Mastic Masticura Mastigamoeba Mastigophora Mastigopoda Mastodonsaurus Mastodontidae Mastrianni Masts Masulipatam Masuren Masuria Masurian Masurians Masury Mat MatE Mata Matabele Matabeleland Matabeles Matacan Matadi Matador Matagalpa Matagalpan Matagorda Matamoras Matamoros Matane Matanuska Matanzas Matapan Matar Matatua Matawan Matazzoni Matchotic Matejka Matelda Mateo Materi Materse Mateusz Matewan Mateya Mathe Mathematik Matheny Mather Matherville Matheson Mathew Mathews Mathewson Mathi Mathia Mathian Mathias Mathieu Mathilda Mathilde Mathis Mathiston Matholwych Mathre Mathur Mathura Mathurin Mathusala Matias Matilda Matildas Matilde Matina Matinicus Matins Matisse Matland Matless Matlick Matlock Matoaka Matozinhos Matralia Matricaria Matrigan Matrona Matronalia Matronna Matson Matsu Matsumoto Matsuyama Matsya Matsys Matt Matta Mattah Mattapoisett Mattaponi Mattapony Mattathias Mattawamkeag Mattawan Mattawana Mattel Matteo Matteotti Matterhorn Matteson Matteuccia Matthaean Matthaeus Matthau Matthaus Matthean Matthei Mattheus Matthew Matthews Matthia Matthias Matthieu Matthiew Matthiola Matthus Matthyas Matti Mattias Mattie Mattins Mattituck Mattland Mattoon Mattox Mattson Matty Maturine Matusow Matuta Maubeuge Mauceri Mauchi Mauckport Maud Maude Maudie Maudslay Maudy Maudye Mauer Maugansville Maugham Maugis Maui Mauk Maulana Maulawiyah Mauldin Mauldon Mauler Maulmain Mauman Maumee Maun Maunabo Maunie Maunsell Maupassant Maupertuis Maupin Maura Mauralia Maurandia Maure Maureen Maureene Maurene Maurepas Maurer Maurertown Mauretania Mauretanian Mauretanians Mauretta Maurey Mauri Mauriac Maurice Mauricetown Mauriceville Mauricio Maurie Maurili Maurilia Maurilla Maurine Maurise Maurist Maurita Mauritania Mauritanian Mauritanians Mauritia Mauritian Mauritians Mauritius Maurits Maurizia Maurizio Mauro Maurois Maurreen Maurus Maury Maurya Mauryan Mauser Mausers Mauston Mauve Mavilia Mavis Mavisdale Mavortian Mavra Mavrodaphne Mawr Mawson Mawworm Max Maxa Maxama Maxantia Maxatawny Maxbass Maxentia Maxey Maxfield Maxi Maxia Maxie Maxim Maxima Maximalism Maximalist Maxime Maximes Maximilian Maximilianus Maximilien Maximo Maximon Maximus Maxine Maxma Maxton Maxwell Maxwellian Maxwelton Maxy May Maya Mayaca Mayacaceae Mayag Mayagfez Mayaguez Mayakovski Mayakovsky Mayan Mayance Mayanist Mayanists Mayans Mayas Mayathan Maybee Maybell Maybelle Mayberry Maybeury Maybird Maybloom Maybrook Mayce Maycock Mayda Mayday Maydays Maydelle Maye Mayeda Mayence Mayenne Mayer Mayersville Mayes Mayesville Mayetta Mayey Mayeye Mayfair Mayfield Mayflower Mayfly Mayfowl Mayhew Maying Mayings Mayking Maylene Maylike Mayman Mayme Maynard Maynardville Mayne Maynet Maynord Mayo Mayodan Mayologist Mayologists Mayon Mayor Mayoruna Mayotte Maypearl Maypole Maypoles Maypoling Mayport Mayra Mays Maysel Maysfield Mayslick Maysville Maytag Maytenus Maythorn Maytide Maytides Maytime Maytimes Maytown Mayview Mayville Maywings Maywood Mayworm Maywort Mazama Mazanderani Mazarin Mazatec Mazateco Mazatl Mazatlan Mazatlcn Mazda Mazdaism Mazdaisms Mazdaist Mazdaists Mazdakean Mazdakite Mazdean Mazdeism Mazdeisms Maze Mazel Mazeppa Mazhabi Maziar Mazie Mazlack Mazman Mazola Mazomanie Mazon Mazonson Mazovian Mazur Mazurek Mazurian Mazzini Mazzinian Mazzinianism Mazzinist Mb Mbabane Mbandaka Mbaya Mbini Mbm Mboya Mbuba Mbujimayi Mbunda Mbundu Mbundus Mc McAdam McAdams McAdenville McAdoo McAfee McAlester McAlister McAlisterville McAllen McAllister McAlpin McAndrews McArthur McBain McBee McBride McBrides McCabe McCafferty McCahill McCain McCall McCalla McCallion McCallsburg McCallum McCamey McCammon McCandless McCann McCanna McCarley McCarr McCartan McCarthy McCarthyism McCarthyisms McCarthyist McCarthyists McCarthyite McCarthyites McCartney McCarty McCaskill McCauley McCaulley McCausland McCaysville McClain McClary McClave McCleary McClees McClellan McClelland McClellandtown McClellanville McClenaghan McClenon McClimans McClish McCloud McCloy McClure McClurg McCluskey McClusky McColl McCollum McComas McComb McCombs McConaghy McCondy McConnel McConnell McConnells McConnellsburg McConnellstown McConnellsville McConnelsville McCook McCool McCord McCordsville McCormac McCormack McCormick McCourt McCowyn McCoy McCoys McCracken McCrae McCray McCready McCreary McCreery McCrory McCullers McCulloch McCullough McCully McCune McCurdy McCurtain McCutchenville McCutcheon McDade McDaniel McDaniels McDavid McDermitt McDermott McDiarmid McDonald McDonnell McDonough McDougal McDougall McDowell McElhattan McElroy McEnroe McEvoy McEwan McEwen McEwensville McFadden McFaddin McFall McFarlan McFarland McFee McFerren McGaheysville McGannon McGaw McGean McGee McGehee McGill McGilvary McGinnis McGirk McGonagall McGovern McGowan McGrady McGrann McGrath McGraw McGraws McGray McGregor McGrew McGrody McGruter McGuffey McGuffin McGuigan McGuire McGurn McHail McHale McHenry McHugh McIlroy McIntire McIntosh McIntoshes McIntyre McJob McJobs McKale McKay McKean McKee McKeesport McKellen McKenna McKenney McKenzie McKeon McKesson McKim McKinley McKinney McKinnon McKissick McKittrick McKnight McKnightstown McKuen McLain McLaughlin McLaurin McLean McLeansboro McLeansville McLemoresville McLeod McLeroy McLoughlin McLouth McLuhan McLyman McMahon McMaster McMath McMechen McMillan McMillin McMinnville McMullan McMullen McMurry McNabb McNair McNalley McNally McNamara McNamee McNary McNaughton McNeal McNeely McNeil McNeill McNelly McNully McNulty McNutt McPherson McQuade McQuady McQueen McQueeney McQuillin McQuoid McRae McReynolds McRipley McRoberts McShan McSherrystown McSpadden McTeague McTyre McVeigh McVeytown McVille McWherter McWhorter McWilliams Mcf Mcfd Mchen Mcintosh Mckay Mcon Mconnais Md Mdewakanton Mdewakantons Mdlle Mdlles Mdm Mdme Mdms Mdoc Me MeV Mead Meade Meador Meadow Meadowbrook Meadows Meads Meadville Meagan Meaghan Meagher Meakem Meally Means Meansville Meantes Meany Meara Meares Mears Meath Meave Mebane Mebsuta Mecaptera Mecca Meccan Meccano Meccans Meccas Meccawee Mechaneus Mechanicsburg Mechanicstown Mechanicsville Mechanicville Mechelen Mechelle Mechir Mechitarist Mechitaristican Mechlin Mechling Mechlins Mechnikov Mecisteus Mecke Meckelian Mecklenburg Mecklenburgian Meckling Mecodonta Mecoptera Mecosta Med MedScD Meda Medan Medanales Medarda Medardas Medaryville Medawar Mede Medea Medeah Medell Medellaen Medellin Medeola Medes Medeus Medfield Medflies Medfly Medford Media Median Medians Mediapolis Medic Medicago Medicaid Medicaids Medicare Medicares Medicean Medici Medieval Medigap Medigaps Medii Medill Medin Medina Medinah Medinilla Medish Medism Medit Mediterranean Mediterraneanisation Mediterraneanise Mediterraneanism Mediterraneanization Mediterraneanize Mediterraneans Meditrinalia Medize Medizer Medjidie Medlin Medoc Medocs Medomak Medon Medor Medora Medorra Medovich Medrek Medusa Medusaean Medusas Medway Medwin Mee Meece Meehan Meek Meeker Meekoceras Meeks Meenen Meer Meers Meerut Meeteetse Mefitis Meg Megaceros Megachile Megachilidae Megachiroptera Megadrili Megaera Megalactractus Megaladapis Megalaema Megalaemidae Megalania Megalensian Megalesia Megalesian Megalichthyidae Megalichthys Megalithic Megalobatrachus Megaloceros Megalodon Megalodontidae Megalonychidae Megalonyx Megalopidae Megalopinae Megaloptera Megalopyge Megalopygidae Megalornis Megalornithidae Megalosauridae Megalosaurus Megaluridae Megamastictora Megamede Megan Meganeura Meganthropus Megapenthes Megaphyton Megapodidae Megapodiidae Megapodius Megaptera Megapterinae Megara Megarean Megarensian Megargee Megargel Megarhinus Megarhyssa Megarian Megarianism Megarians Megaric Megarics Megaris Megarus Megasoma Megatheriidae Megatherium Megdal Megen Meges Megger Meggers Meggi Meggie Meggs Meggy Meghalaya Meghan Meghann Megiddo Megillah Megillahs Megrel Megrez Mehala Mehalek Mehalick Mehelya Meherrin Mehetabel Mehitabel Mehitable Mehoopany Mehta Mehul Mehuman Mei Meibers Meibomia Meibomian Meier Meighen Meigs Meijer Meiji Meilen Meilewagon Meilhac Meilichius Meill Meindert Meingolda Meingoldas Meinong Meir Meisel Meissa Meissen Meissens Meissonier Meistersinger Meistersingers Meisterstck Meit Meithei Meitner Mejia Mejlis Mekbuda Mekhitarist Mekhitarists Mekinock Mekka Mekn Meknas Meknes Mekong Mekoryuk Mel Mela Melaka Melaleuca Melamed Melamie Melampsora Melampsoraceae Melampus Melampyrum Melan Melanchthon Melanchthonian Melanconiaceae Melanconiales Melanconium Melanesia Melanesian Melanesians Melania Melanie Melaniidae Melanion Melanippe Melanippus Melanochroi Melanochroid Melanodendron Melanogaster Melanoi Melanoplus Melanorrhoea Melantha Melanthaceae Melanthium Melanthius Melantho Melanthus Melany Melar Melas Melastoma Melastomaceae Melba Melber Melbeta Melborn Melbourne Melbournian Melbournians Melburn Melburnian Melburnians Melcarth Melcher Melchers Melchiades Melchior Melchisedech Melchite Melchites Melchizedek Melchora Melcroft Melda Melder Meldoh Meldon Meldrim Meleager Meleagridae Meleagrina Meleagrinae Meleagris Melecent Melena Melendez Melentha Meles Melesa Melessa Melete Meletian Meletius Meletski Melfa Melgar Meli Melia Meliaceae Meliad Meliadus Meliae Melian Melians Melianthaceae Melianthus Meliboea Melica Melicent Melicerta Melicertes Melicertidae Melicocca Melie Melilla Melilotus Melina Melinae Melinda Melinde Melinis Meliola Meliphagidae Melipona Meliponinae Melisa Melisande Melisandra Melise Melisenda Melisent Melissa Melisse Melisseus Melissie Melissy Melita Melitaea Melitene Melitopol Melitta Melkite Melkites Mell Mella Mellar Mellen Mellenville Mellers Melleta Mellette Melli Mellicent Mellie Mellifera Mellins Mellisa Mellisent Mellitz Mellivora Mellivorinae Mellman Mello Mellon Melloney Mellotron Mellotrons Mellott Mellwood Melly Melmon Melmore Melnick Melocactus Melodee Melodie Melody Melodye Melogrammataceae Meloidae Melolontha Melolonthidae Melolonthides Melolonthinae Melone Melonechinus Melonie Melonites Melony Melos Melosa Melospiza Melothria Melpomene Melquist Melrose Melstone Melton Meltonian Melun Melungeon Melursus Melva Melvena Melvern Melvil Melville Melvillean Melvilleans Melvin Melvina Melvindale Melvyn Member Memberg Members Membracidae Membranipora Membraniporidae Memel Memento Mementoes Mementos Memlinc Memling Memnon Memnonia Memnonian Memnonium Memory Memphian Memphians Memphis Memphite Memphites Memphitic Memphremagog Men Mena Menado Menaechmi Menahga Menam Menan Menander Menangkabau Menard Menasha Menashem Menaspis Mencher Mencius Mencken Menckenian Mend Mendaite Mende Mendel Mendeleev Mendelejeff Mendeleyev Mendelian Mendelianism Mendelianisms Mendelianist Mendelians Mendelise Mendelism Mendelisms Mendelist Mendelists Mendelize Mendelsohn Mendelson Mendelssohn Mendelssohnian Mendelssohnians Mendelssohnic Mendenhall Menderes Mendes Mendez Mendham Mendi Mendicant Mendie Mendips Mendive Mendocino Mendon Mendota Mendoza Mendy Meneau Menedez Meneer Meneers Menelaus Menelik Menell Menemsha Menendez Meneptah Menes Menestheus Menesthius Menevian Menfra Menfro Meng Mengelberg Mengtze Mengwe Mengzi Menic Menides Menifee Menippe Menis Meniscotheriidae Meniscotherium Menispermaceae Menispermum Menkalinan Menkar Menken Menkent Menkib Menkure Menlo Mennen Menninger Menno Mennonist Mennonite Mennonites Mennonitism Mennonitisms Meno Menobranchidae Menobranchus Menodice Menoeceus Menoetes Menoetius Menoken Menominee Menominees Menomini Menominis Menomonie Menon Menopoma Menorah Menorahs Menorca Menorhyncha Menotti Menotyphla Mensa Mensch Menshevik Mensheviki Mensheviks Menshevism Menshevisms Menshevist Menshevists Mensur Mensuren Ment Mentcle Mentes Mentha Menthaceae Menthe Mentholatum Mentmore Menton Mentone Mentor Mentzelia Menuhin Menura Menurae Menuridae Menyanthaceae Menyanthaceous Menyanthes Menzies Menziesia Meo Meos Mephisto Mephistophelean Mephistopheleanly Mephistopheles Mephistophelian Mephistophelic Mephistophelistic Mephistos Mephitinae Mephitis Meppen Mequon Mer Mera Merak Merano Meraree Merari Meras Merat Meratia Meraux Merc Merca Mercado Mercast Mercator Mercatorial Merce Merced Mercedarian Mercedes Mercedinus Mercedita Mercedonius Merceer Mercer Mercersburg Merchant Merchantville Merchen Merci Mercia Mercian Mercians Mercie Mercier Merck Merckx Mercola Mercorr Mercouri Mercurean Mercuri Mercurial Mercurialis Mercurian Mercuries Mercurius Mercurochrome Mercurochromes Mercury Mercutio Mercy Merdith Meredeth Meredi Meredith Meredithe Meredithian Meredithville Meredosia Meredyth Merell Mereta Merete Merginae Mergui Mergulus Mergus Meri Merida Meridale Meridel Meriden Merideth Meridia Meridian Meridianii Meridianville Meridias Meridion Meridionaceae Meridional Meridionals Meridith Meriel Merigold Merilee Merill Merilyn Merima Merino Merinos Meriones Merioneth Merionethshire Meris Merise Merissa Meriwether Merkel Merkle Merkley Merl Merla Merle Merlin Merlina Merline Merlot Merlots Merlucciidae Merluccius Merlyn Mermentau Mermerus Mermis Mermithidae Mermnad Mermnadae Merna Merneptah Meroae Merodach Meroe Meroite Meroites Meroitic Merola Merom Meromyaria Merope Meropes Meropidae Merops Merosomata Merostomata Merovingian Merovingians Merow Merozoa Merralee Merras Merrel Merrell Merri Merriam Merrick Merricourt Merridie Merrie Merrielle Merrifield Merril Merrile Merrilee Merrili Merrill Merrillan Merrily Merrilyn Merrimac Merrimack Merriman Merriott Merritt Merrittstown Merrouge Merrow Merry Merryville Merse Merseburg Mersey Merseyside Mershon Mersin Mert Merta Mertens Mertensia Merth Merthiolate Merthiolates Merton Mertzon Mertztown Merula Merulius Merv Mervin Mervyn Merwin Merwyn Merychippus Merycoidodon Merycoidodontidae Merycopotamidae Merycopotamus Meryl Mes Mesa Mesabi Mesadenia Mesartim Mesaverde Mescalero Mescaleros Mesdames Mesdemoiselles Mesembryanthemaceae Mesembryanthemum Mesena Meservey Meshach Meshech Meshed Meshoppen Mesick Mesics Mesilla Mesita Mesitae Mesites Mesitidae Mesmer Mesoamerica Mesoamerican Mesoamericanist Mesoamericanists Mesoamericans Mesodesma Mesodesmatidae Mesodesmidae Mesodevonian Mesodevonic Mesoenatides Mesohippus Mesolgion Mesolithic Mesolonghi Mesomyodi Mesonemertini Mesonychidae Mesonyx Mesoplodon Mesopotamia Mesopotamian Mesopotamians Mesore Mesoreodon Mesosauria Mesosaurus Mesostoma Mesostomatidae Mesosuchia Mesotaeniaceae Mesotaeniales Mesothelae Mesozoa Mesozoic Mespilus Mespot Mesquite Mesropian Messager Messalian Messalina Messapian Messapians Messapic Messeigneurs Messene Messenia Messenian Messenians Messere Messerschmidt Messerschmitt Messiaen Messiah Messiahs Messiahship Messiahships Messianic Messianically Messianism Messianisms Messianist Messianize Messias Messiases Messidor Messier Messieurs Messina MessinaMessines Messines Messinese Messing Mesthles Mestor Mesua Mesvinian Meta Metabel Metabola Metabolia Metabus Metachlamydeae Metacom Metacomet Metageitnion Metairie Metaline Metallica Metamora Metamorphoses Metamucil Metamynodon Metanemertini Metaphen Metaphysical Metaphysicals Metaspermae Metastasio Metatheria Metaurus Metaxa Metaxas Metazoa Metcalf Metcalfe Metchnikoff Meter Meth Methedrine Methedrines Method Methodism Methodisms Methodist Methodistic Methodistical Methodistically Methodists Methodisty Methodius Methodize Methods Methody Methow Methuen Methuselah Methuselahs Metioche Metion Metis Metiscus Metius Metoac Metol Metope Metopias Metopoceros Metrazol Metrazols Metridium Metro Metroland Metroplex Metroplexes Metropolis Metros Metrosideros Metroxylon Metsky Metsys Mettah Metter Metternich Metternichian Mettie Metton Metts Metty Metuchen Metycaine Metz Metzgar Metzger Metzler Meum Meung Meunier Meurer Meursault Meursaults Meuse Meuser Mev Mevacor Mevacors Mewar Mex MexSp Mexia Mexica Mexicali Mexican Mexicanise Mexicanize Mexicano Mexicans Mexico Mexitl Mexitli Meyer Meyerbeer Meyerhof Meyeroff Meyers Meyersdale Meyersville Mezentian Mezentism Mezentius Mezoff Mezzogiorno Mflhausen Mfnch Mfnchhausen Mfume Mg Mgr Mhausen MiG MiNE Mia Mial Miami Miamian Miamians Miamis Miamisburg Miamitown Miamiville Miao Miaos Miaotse Miaotze Miaplacidus Miass Miastor Mic Micaela Micah Micajah Micanopy Micaville Micawber Micawberish Micawberism Micawbers Micco Miccosukee Miccosukees Mich Michabo Michabou Michael Michaela Michaelangelo Michaele Michaelina Michaeline Michaelites Michaella Michaelmas Michaelmases Michaelmastide Michaeu Michail Michal Michale Michaud Michaux Miche Micheal Micheas Micheil Michel Michelangelesque Michelangelism Michelangelo Michele Michelia Michelin Michelina Micheline Michell Michella Michelle Michelob Michelozzo Michelsen Michelson Michener Michey Michi Michie Michigamea Michigamme Michigan Michigander Michiganders Michiganian Michiganians Michiganite Michiganites Michiko Michoac Michoacan Michoacano Michoaccn Michol Michon Mick Mickelson Mickey Mickeys Micki Mickie Mickiewicz Mickleton Micks Micky Micmac Micmacs Miconia Micrampelis Micraster Micro Microcebus Microchiroptera Microciona Microcitrus Micrococceae Micrococcus Microconodon Microcyprini Microdrili Microgadus Microgaster Microgastrinae Microhymenoptera Microlepidoptera Micromastictora Micromeria Micronesia Micronesian Micronesians Micropodi Micropodidae Micropodiformes Micropterus Micropterygidae Micropterygoidea Micropteryx Micropus Microrhopias Microsauria Microscopid Microscopium Microsoft Microsorex Microspermae Microsphaera Microsporidia Microsporon Microsporum Microsthenes Microstylis Microthelyphonida Microthyriaceae Microtinae Microtus Micrurus Miculek Mid Midas Middelburg Middendorf Middle Middlebass Middleboro Middleborough Middlebourne Middlebrook Middleburg Middleburgh Middlebury Middlefield Middlemarch Middleport Middlesboro Middlesbrough Middlesex Middlesworth Middleton Middletown Middleville Mide Mideast Mideastern Mideasterner Mideasterners Mider Midfield Midgard Midgardhr Midgarth Midge Midheaven Midi Midian Midianite Midianites Midianitish Mididae Midis Midkiff Midland Midlander Midlanders Midlandise Midlandize Midlands Midlothian Midpines Midrash Midrashic Midrashim Midvale Midville Midway Midways Midweek Midweeks Midwest Midwestern Midwesterner Midwesterners Mielziner Mientao Mieres Miescherian Miesian Miesians Miett Mifflin Mifflinburg Mifflintown Mifflinville Mig Migeon Mighell Mignon Mignonette Mignonne Migonitis Migs Miguel Miguela Miguelita Mihail Mihalco Mihe Mika Mikado Mikados Mikael Mikaela Mikal Mikan Mikana Mikania Mikasuki Mikasukis Mike Mikel Mikes Mikey Mikhail Miki Mikihisa Mikir Mikiso Mikkanen Mikkel Miko Mikol Mikoyan Miksen Mil Mila Milaca Milagros Milam Milan Milanese Milanion Milano Milanov Milanville Milazzo Milbank Milburn Milburr Milburt Milda Milde Mildred Mildrid Mile Miledh Milena Miles Milesburg Milesian Milesians Milesius Milesville Miletus Milewski Miley Milfay Milford Milhaud Milicent Milinda Miliola Milissa Milissent Milka Milken Milks Mill Milla Milladore Millais Millan Millar Millard Millay Millboro Millbrae Millbrook Millburn Millbury Millda Milldale Millecent Milledgeville Millen Millepora Miller Millerand Millerism Millerite Millerites Millers Millersburg Millersport Millerstown Millersville Millerton Millerville Milles Millet Millettia Millfield Millford Millhall Millham Millheim Millhon Millhousen Milli Millian Millican Millicent Millie Milligan Millikan Milliken Millington Millingtonia Millinocket Millis Millisent Millite Millman Millmont Millport Millrift Millry Mills Millsap Millsboro Millshoals Millstadt Millston Milltown Millur Millvale Millville Millwater Millwood Milly Milman Milmay Milmine Milne Milner Milnesand Milnesville Milnor Milo Milon Milone Milore Milos Milosevic Milosz Milovan Milpitas Milquetoast Milquetoasts Milroy Milson Milstein Milstone Milt Miltiades Miltie Milton Miltona Miltonia Miltonian Miltonic Miltonically Miltonise Miltonism Miltonist Miltonize Miltonvale Miltown Milty Milurd Milvago Milvinae Milvus Milwaukee Milwaukeean Milwaukeeans Milwaukie Milyukov Milzie Mima Mimamsa Mimas Mimbreno Mimbres Mime Mimeograph Mimi Mimidae Miminae Mimir Mimosa Mimosaceae Mimpei Mims Mimulus Mimus Mimusops Min Mina Minabe Minaean Minahassa Minahassan Minahassian Minamoto Minangkabau Minangkabaus Minardi Minatare Minburn Minch Minchah Minco Mincopi Mincopie Mind Minda Mindanao Mindel Mindelian Minden Mindererus Mindi Mindoro Mindszenty Mindy Minelamotte Minenwerfer Mineola Miner Minersville Minerva Minervan Minervic Mines Minetta Minette Minetto Mineville Minford Ming Mingche Mingo Mingoville Mingrelian Mingus Minhah Minho Minhow Mini Minica Minicam Minicams Miniconjou Miniconjous Minie Minier Minimal Minimalist Minimite Ministries Ministry Minitari Minitel Minitrack Minkopi Minn Minna Minnaminnie Minne Minneapolis Minneapolitan Minneapolitans Minneconjou Minneconjous Minnehaha Minnelli Minneola Minneota Minnesota Minnesotan Minnesotans Minnetaree Minnetonka Minnewaukan Minnewit Minni Minnie Minnis Minnnie Minny Mino Minoa Minoan Minoans Minocqua Minolta Minong Minonk Minooka Minor Minorca Minorcan Minorcans Minorcas Minoress Minorist Minorite Minorites Minoru Minos Minot Minotaur Minotola Minseito Minsk Minsky Minster Mint Minta Mintaka Minter Minthe Minto Mintoff Minton Mints Mintun Minturn Mintz Minuit Minuteman Minutemen Minya Minyades Minyadidae Minyae Minyan Minyas Mio Miocene Miocenic Miohippus Miollnir Miolnir Miphiboseth Miquela Miquelon Miquon Mir Mira Mirabeau Mirabel Mirabell Mirabella Mirabelle Mirabilis Mirac Mirach Miraflores Mirak Miraloma Miramar Miramolin Miramonte Miran Mirana Miranda Mirandize Mirandized Mirandizes Mirandizing Miranha Miranhan Mirapex Mirapexes Mireielle Mireille Mirella Mirelle Mirfak Miriam Miridae Mirielle Mirilla Mirisola Mirna Miro Mirounga Mirth Miru Miryam Mirza Mirzam Mirzas Mischa Misenheimer Miseno Misenus Miserere Misereres Misericordia Misha Mishaan Mishawaka Mishicot Mishikhwutmetunne Mishima Mishmi Mishna Mishnah Mishnahs Mishnaic Mishnas Mishnayot Mishnayoth Mishnic Mishnical Mishongnovi Misima Miskito Miskitos Miskolc Misniac Miss Missa Missal Missals Misses Missi Missie Mission Missisauga Mississauga Mississippi Mississippian Mississippians Missolonghi Missoula Missouri Missourian Missourianism Missourians Missouris Missy Mistassini Mister Misters Misti Miston Mistral Mistress Mistresses Mistrot Mists Misty Mita Mitakshara Mitanni Mitannian Mitannians Mitannic Mitannish Mitch Mitchael Mitchel Mitchell Mitchella Mitchells Mitchellsburg Mitchellville Mitchiner Mitchum Mitella Mitford Mithgarth Mithgarthr Mithra Mithradatic Mithraea Mithraeum Mithraeums Mithraic Mithraicism Mithraicist Mithraicize Mithraism Mithraisms Mithraist Mithraistic Mithraists Mithraitic Mithraize Mithras Mithratic Mithriac Mithridates Mithridatic Mitilni Mitinger Mitman Mitnagdim Mitnagged Mitra Mitran Mitre Mitrephorus Mitridae Mitscher Mitsubishi Mitsukurina Mitsukurinidae Mittel Mitteleuropa Mittelmeer Mitterrand Mittie Mitty Mitu Mitua Mitzi Mitzie Mitzl Miulnir Miun Miuo Miwok Miwoks Mixe Mixie Mixodectes Mixodectidae Mixosaurus Mixtec Mixtecan Mixtecans Mixteco Mixtecos Mixtecs Miyasawa Mizar Mize Mizitra Mizoguchi Mizoram Mizpah Mizrachi Mizrahi Mizraim Mizuki Mjico Mjollnir Mjolnir Mjulnir Mjöllnir Mjölnir Mk Mlaga Mlar Mlawsky Mler Mli Mlle Mlles Mllly Mlos Mme Mmes Mn Mnemiopsis Mnemon Mnemosyne Mnesicles Mnevis Mngr Mniaceae Mnidrome Mniotiltidae Mnium Mo Moab Moabite Moabites Moabitess Moabitic Moabitish Moapa Moaria Moarian Moatsville Moattalite Moazami Mob Mobeetie Moberg Moberly Mobil Mobile Mobilian Mobius Mobjack Mobley Mobridge Mobs Mobula Mobulidae Mobutu Moca Mocambique Mocha Moche Moches Mochica Mochicas Mochun Mocksville Moclips Mocoa Mocoan Moctezuma Mod Modale Mode Modena Modenese Moderations Moderatus Modern Moderne Modernes Modernism Modernisms Modesta Modeste Modestia Modestine Modesto Modesttown Modesty Modibo Modie Modigliani Modiola Modiolus Modjeska Modla Modoc Modocs Modred Mods Modulidae Moe Moebius Moed Moehringia Moen Moerae Moeragetes Moeritheriidae Moeritherium Moersch Moesia Moesogoth Moesogothic Moet Moffat Moffett Moffit Moffitt Mogadiscio Mogadishu Mogadon Mogador Mogadore Mogan Mogans Mogerly Moghan Moghul Moghuls Mogilev Mogilyov Mogollon Mograbi Mogrebbin Moguel Mogul Moguls Moguntine Mohacan Mohacs Mohall Moham Mohamed Mohammad Mohammed Mohammedan Mohammedanisation Mohammedanise Mohammedanised Mohammedanises Mohammedanising Mohammedanism Mohammedanisms Mohammedanization Mohammedanize Mohammedanized Mohammedanizes Mohammedanizing Mohammedans Mohammedism Mohammedist Mohammedization Mohammedize Mohandas Mohandis Moharai Moharram Moharrams Mohave Mohaves Mohawk Mohawkian Mohawks Mohegan Mohegans Mohican Mohicans Mohineyam Mohism Mohist Mohl Mohn Mohnton Moho Mohock Mohockism Mohockisms Mohocks Mohole Mohorovicic Mohr Mohrodendron Mohrsville Mohsen Mohun Moi Moia Moigno Moina Moines Moingwena Moir Moira Moirai Moise Moiseiwitsch Moises Moiseyev Moishe Moism Moissan Moitoso Mojave Mojaves Mojgan Moji Mojo Mok Mokane Mokas Mokena Mokha Moko Mokpo Mola Molala Molalla Molasse Mold Moldau Moldavia Moldavian Moldavians Moldova Moldovan Moldovans Mole Molech Molechs Molena Molge Molgula Moli Molidae Moliere Molina Moline Molini Molinia Molinism Molinist Molinistic Molino Molinos Moliones Molise Moll Mollah Mollberg Mollee Mollendo Mollet Molli Mollie Mollies Mollisiaceae Molloy Molluginaceae Mollugo Mollusca Molluscoida Molluscoidea Molly Moln Molnar Molniya Moloch Molochise Molochize Molochs Molochship Molokai Molokan Molopo Molorchus Molossian Molossidae Molossus Molothrus Molotov Moltke Molton Molucca Moluccan Moluccans Moluccas Moluccella Moluche Molus Mombasa Mombottu Momence Momentum Momi Mommi Mommsen Mommy Momordica Momos Momotidae Momotinae Momotus Mompos Mompus Momus Momuses Mon Mona Monaca Monacan Monacans Monacanthidae Monacha Monachi Monaco Monadelphia Monadina Monafo Monagan Monaghan Monah Monahan Monahans Monahon Monanday Monandria Monango Monarchian Monarchianism Monarchianisms Monarchianist Monarchianists Monarchians Monarcho Monarda Monardella Monario Monarski Monasa Monascidiae Monash Monastir Monaville Monaxonida Monbazillac Monbuttu Moncear Monceau Monchengladbach Monchhof Monck Monclova Moncton Moncure Mond Monda Mondale Mondamin Monday Mondayish Mondayishness Mondayland Mondays Mondovi Mondrian Monee Monegasque Monegasques Monel Monels Monera Monerozoa Moneses Monessen Monet Moneta Monett Monetta Monette Monge Mongeau Monghol Mongholian Mongibel Mongo Mongol Mongolia Mongolian Mongolianism Mongolians Mongolic Mongolioid Mongolise Mongolised Mongolises Mongolish Mongolising Mongolism Mongolisms Mongolization Mongolize Mongolized Mongolizes Mongolizing Mongoloid Mongoloids Mongols Mongooses Mongoyo Monhegan Monia Monias Monica Monico Monie Monika Monilia Moniliaceae Moniliales Monimia Monimiaceae Monique Moniz Monjan Monjo Monk Monkton Monmouth Monmouthshire Monnet Monney Mono Monocentridae Monocentris Monoceros Monocerotis Monochlamydeae Monoclonius Monocoelia Monocondyla Monocotyledones Monocyclica Monocystidae Monocystidea Monocystis Monodelphia Monodon Monodonta Monoecia Monogenea Monogenetica Monograptidae Monograptus Monogynia Monomorium Monomya Monomyaria Monon Monona Mononchus Monongah Monongahela Monopetalae Monophoto Monophysism Monophysite Monophysites Monophysitic Monophysitical Monophysitism Monophysitisms Monoplacophora Monopneumoa Monopolies Monopoly Monopteridae Monopylaea Monopylaria Monorhina Monostomata Monostomatidae Monostomidae Monostomum Monothalama Monothelete Monotheletian Monotheletic Monotheletism Monothelism Monothelite Monothelitic Monothelitism Monotocardia Monotremata Monotrocha Monotropa Monotropaceae Monotropsis Monotype Monotypes Monoville Monozoa Monponsett Monreal Monro Monroe Monroeism Monroeist Monroeists Monroeton Monroeville Monrovia Monroy Mons Monsanto Monsarrat Monseigneur Monsey Monsieur Monsignor Monsignori Monsignorial Monsignors Monson Monsoni Monsour Monstera Mont Montagna Montagnac Montagnais Montagnaises Montagnard Montagnards Montagu Montague Montaigne Montale Montalvo Montana Montanan Montanans Montanari Montanez Montanism Montanisms Montanist Montanistic Montanistical Montanists Montanize Montano Montargis Montasio Montauban Montauk Montauks Montbliard Montcalm Montclair Monte Montefiascone Montefiore Monteith Montenegran Montenegrin Montenegrins Montenegro Montepulciano Monteraea Monterey Monteria Monterrey Montes Montesco Montesinos Montespan Montesquieu Montessori Montessorian Montessorianism Monteux Montevallo Monteverdi Montevideo Montezuma Montford Montfort Montgolfier Montgomery Montgomeryshire Montgomeryville Montherlant Monti Montia Monticello Monticulipora Monticuliporidae Montilla Montjoie Montlucon Montluion Montmartre Montmelian Montmorencies Montmorency Monto Montoursville Montoya Montparnasse Montparnassian Montpelier Montpellier Montrachet Montrachets Montreal Montrealer Montrealers Montreuil Montreux Montrose Monts Montserrat Montu Monty Monumbo Monza Monzaemon Mooachaht Moodus Moody Moodys Mooers Moog Moogs Mook Moon Moonachie Mooney Moonie Moonier Moonies Moor Moorcroft Moore Moorefield Mooreland Mooresboro Mooresburg Mooress Moorestown Mooresville Mooreton Mooreville Moorgate Moorhead Moorish Moorland Moorman Moors Moorship Moose Mooseheart Moosic Moosup Mopan Moppo Mopsus Moquelumnan Moqui Mor Mora Moraceae Moradabad Moraea Moraga Morales Moran Morandi Morann Morar Morattico Moratuwa Morava Moravia Moravian Moravianised Moravianism Moravianisms Moravianized Moravians Moravid Moraxella Moray Morayshire Morazan Morazcn Morbier Morbihan Morchella Morcote Mord Mordecai Mordella Mordellidae Mordred Mordv Mordva Mordvin Mordvinian Mordvinians Mordy More Morea Morean Moreau Moreauville Morecambe Moreen Morehead Morehouse Morel Moreland Morelia Morell Morelos Morena Morenci Moreno Morentz Moreote Moresby Moresco Morescoes Moresque Moresques Moreta Moretown Moretta Morette Moretus Moreville Morey Morez Morgagni Morgan Morgana Morganfield Morganica Morganne Morgans Morganstein Morganton Morgantown Morganville Morganza Morgen Morgenthaler Morgenthau Morglay Morgun Mori Moria Moriah Moriarty Morice Moriches Morie Morike Morin Morinaceae Morinda Moringa Moringaceae Moringua Moringuidae Morini Moriori Moriscan Morisco Moriscoes Moriscos Morison Morisonian Morisonianism Morisot Morissa Morita Moritz Moriyama Morland Morlee Morley Morly Mormon Mormondom Mormoness Mormonism Mormonisms Mormonist Mormonite Mormons Mormonweed Mormoops Mormyridae Mormyrus Morna Mornay Mornays Morning Moro Moroccan Moroccans Morocco Morogoro Moron Moroni Moronidae Moropus Moros Morosaurus Morovis Morpeth Morphean Morpheus Morpho Morphy Morra Morral Morrell Morrenian Morrhua Morrice Morrie Morrigan Morril Morrill Morrilton Morris Morrisdale Morrisean Morrison Morrisonville Morrissey Morriston Morristown Morrisville Morrow Morrowville Morry Mors Morse Mort Morta Morten Mortensen Mortie Mortimer Mortlake Morton Morty Morus Morven Morville Morvin Mosa Mosaic Mosaical Mosaicity Mosaism Mosaist Mosasauri Mosasauria Mosasauridae Mosasaurus Mosatenan Mosby Mosca Moschi Moschidae Moschinae Moschus Moscow Mose Mosel Moselblmchen Moseley Moselle Moselles Mosenthal Moser Mosera Moses Mosetena Mosgu Moshannon Moshe Mosheim Moshell Mosherville Moshesh Moshi Mosier Mosinee Mosira Moskow Moskva Moslem Moslemah Moslemic Moslemin Moslemise Moslemism Moslemite Moslemize Moslems Mosley Mosora Mosotho Mosquero Mosquito Mosquitos Mosra Moss Mossad Mossbauer Mossberg Mossi Mossman Mossville Mossyrock Most Mosting Mosul Moszkowski Motacilla Motacillidae Motacillinae Motazilite Motch Moth Mother Motherland Mothers Motherwell Motilal Motley Motorola Motown Motowns Motozintlec Motozintleca Motrin Motrins Mott Motteo Mottville Motu Motus Mou Mougeotia Mougeotiaceae Moukden Moulden Mouldon Moule Moulins Moulmein Moulton Moultonboro Moultrie Mound Mounds Moundsville Moundville Mount Mountain Mountainside Mountbatten Mountford Mountfort Mountie Mounties Mountjoy Mounty Mourant Moureaux Mourne Mouseion Mousie Mousoni Mousquetaire Mousquetaires Moussorgsky Mousterian Moustierian Mouthcard Mouthe Mouton Movieola Movietone Moville Moviola Moviolas Mowbray Moweaqua Mowgli Mowrystown Moxahala Moxee Moxo Moya Moyer Moyers Moygashel Moyle Moyna Moynahan Moyobamba Moyock Moyra Mozamb Mozambican Mozambicans Mozambique Mozarab Mozarabian Mozarabic Mozarabs Mozart Mozartean Mozartian Mozelle Mozes Mozier Mozilla Mozza Mpangwe Mpondo Mr MrBrown MrSmith Mraz Mrchen Mren Mrida Mrike Mroz Mrs MrsBrown MrsSmith Mru Ms Mses Msgr Mss Mster Msterberg Mt Mtbaldy Mtis Mts Mtwara Muawiya Mubarak Mucker Mucoraceae Mucorales Mucuna Mudajar Mudd Mudejar Mudejares Mudjar Mudéjar Mudéjares Muehlenbeckia Mueller Muenster Muensters Muffin Mufi Mufinella Muftat Mufti Muftiat Mufulira Mugabe Muganda Mugandas Muggletonian Muggletonianism Mughal Mughals Mugil Mugilidae Mugwump Mugwumps Muhajir Muhajirun Muhammad Muhammadan Muhammadanism Muhammadanisms Muhammadans Muhammedan Muhammedans Muharram Muharrams Muharrum Muharrums Muhlenberg Muhlenbergia Muilla Muir Muire Muirhead Mujahedeen Mujib Mukden Mukerji Mukilteo Mukri Mukul Mukund Mukwonago Mulberry Mulcahy Mulciber Mulcibirian Mulder Mulderig Muldon Muldoon Muldraugh Muldrow Muleshoe Mulford Mulga Mulhac Mulhacan Mulhacen Mulhall Mulhausen Mulheim Mulhouse Mulino Mulius Mulkeytown Mulki Mull Mullan Mullane Mullen MullenMullens Mullens Muller Mullerian Mullidae Mulligan Mullikan Mulliken Mullin Mullins Mullinville Mulloy Mullusca Mulock Mulroney Mulry Multan Multani Multics Multicses Multigraph Multilith Multituberculata Mulvane Mulvihill Mumbai Mumetal Mumford Mummerset Mun Muna Munafo Munandi Muncerian Muncey Munch Munchausen Munchausenism Munchausenize Munchausens Munchen Munchengladbach Munchhausen Munchhausens Munchkin Munchkins Muncie Muncy Munda Mundari Munday Mundelein Munden Mundford Mundt Mundugumor Mundugumors Mundy Munford Munfordville Munger Mungo Mungovan Munhall Muni Munia Munich Munichism Munin Munippus Munising Munith Munitus Munmro Munn Munniks Munnopsidae Munnopsis Munnsville Munoz Munro Munroe Munros Muns Munsee Munsees Munsey Munshi Munson Munsonville Munster Munsters Munt Muntiacus Muntingia Munychia Munychian Munychion Muong Muphrid Muppet Mur Mura Muradiyah Muraena Muraenidae Murage Muraida Muran Muranese Murasaki Murat Muratorian Murchison Murcia Murcian Murcott Murcotts Murdo Murdocca Murdoch Murdock Mure Mureil Mures Murfreesboro Muriah Murial Muricidae Muridae Muriel Murielle Murike Murillo Murinae Murine Murjite Murmansk Murmi Murols Murphies Murphy Murphys Murphysboro Murrah Murray Murraya Murraysville Murrayville Murrell Murrieta Murrow Murrumbidgee Murry Murrysville Murtagh Murtaugh Murtha Murton Murut Murvyn Murzim Mus MusB MusD MusM Musa Musaceae Musaeus Musagetes Musales Musalmani Musca Muscadet Muscadets Muscadine Muscadinia Muscae Muscardinidae Muscardinus Muscari Muscat Muscatine Muschelkalk Musci Muscicapa Muscicapidae Muscidae Muscinae Muscoda Muscogee Muscoidea Muscolo Muscotah Muscovi Muscovite Muscovites Muscovitic Muscovy Muse Musella Muses Musetta Musette Musgrave Musgu Mushabbihite Musharraf Mushro Musial Musigny Musil Muskego Muskegon Muskhogean Muskogean Muskogee Muskogees Muskwaki Muslem Muslems Muslim Muslimism Muslims Musophaga Musophagi Musophagidae Muspelheim Muspell Muspellsheim Muspelsheim Mussaenda Mussalman Mussalmans Mussalmen Mussbauer Musser Musset Mussman Mussolini Mussorgski Mussorgsky Mussulman Mussulmanic Mussulmanish Mussulmanism Mussulmans Mussulmen Mussulwoman Mustagh Mustahfiz Mustardseed Mustela Mustelidae Mustelus Musting Mustoe Mutabilia Mutazala Mutazila Mutazilite Muter Mutilla Mutillidae Mutinus Mutisia Mutisiaceae Mutsuhito Muttra Mutunus Mutus Mutz Muysca Muzak Muzaks Muzio Muzo Muzorewa Mv Mw Mwanza Mweru Mx My MySpace Mya Myacea Myanma Myanman Myanmans Myanmar Myaria Myca Mycah Mycenae Mycenaean Mycenaeans Mycenean Myceneans Mycenian Mycenians Mycerinus Mycetes Mycetophagidae Mycetophilidae Mycetozoa Mychael Mychal Mycobacteria Mycobacteriaceae Mycobacterium Mycogone Mycomycetes Mycoplana Mycosphaerella Mycosphaerellaceae Mycostatin Mycteria Myctodera Myctophidae Myctophum Mydaidae Mydaus Myelozoa Myer Myers Myerstown Myersville Mygdon Myiarchus Myingyan Myke Mykerinos Mykolayiv Mykonos Mylan Mylander Mylar Mylars Myles Myliobatidae Mylitta Mylo Mylodon Mylodontidae Mylor Mymar Mymaridae Myna Mynheer Mynheers Myo Myodes Myomorpha Myoporaceae Myoporum Myosotis Myosurus Myotalpa Myotalpinae Myoxidae Myoxus Myra Myrah Myranda Myrcia Myrdal Myriam Myrianida Myriapoda Myrica Myricaceae Myricales Myrientomata Myrilla Myrina Myriophyllum Myriopoda Myriotrichia Myriotrichiaceae Myristica Myristicaceae Myristicivora Myrle Myrlene Myrmecia Myrmecobiinae Myrmecobius Myrmecophaga Myrmecophagidae Myrmeleon Myrmeleonidae Myrmeleontidae Myrmica Myrmicidae Myrmidon Myrmidones Myrmidonian Myrmidons Myrna Myron Myrothamnaceae Myrothamnus Myroxylon Myrrha Myrrhis Myrsinaceae Myrsiphyllum Myrt Myrta Myrtaceae Myrtales Myrtia Myrtice Myrtie Myrtilus Myrtle Myrtlewood Myrtus Myrvyn Myrwyn Mysia Mysian Mysians Mysidacea Mysidae Mysis Mysore Myst Mystacocete Mystacoceti Mysteries Mystery Mystic Mysticete Mysticeti Mytilacea Mytilene Mytiliaspis Mytilidae Mytilus Mytishchi Myton Myukolayiv Myxine Myxinidae Myxinoidei Myxobacteria Myxobacteriaceae Myxobacteriales Myxococcus Myxogasteres Myxogastrales Myxogastres Myxomycetales Myxomycetes Myxophyceae Myxophyta Myxopoda Myxospongiae Myxospongida Myxosporidia Myxosporidiida Myxosporium Myxothallophyta Myzodendraceae Myzodendron Myzomyia Myzontes Myzostoma Myzostomata Myzostomida Myzostomidae Mzi Märchen Médoc Möbius München Münchhausen Münchhausens N NA NAA NAACP NAAFI NAAS NAB NABAC NAC NACA NACS NAD NADGE NADH NADP NADPH NAFTA NAG NAGE NAK NALGO NAM NAMM NAND NANP NAPAP NAPLPS NAR NARDAC NAS NASA NASAGSFC NASCAR NASD NASDA NASDAQ NASM NASP NATO NATS NATSOPA NAU NAVDAC NAVSWC NB NBA NBC NBFM NBG NBO NBP NBS NBVM NC NCA NCAA NCAR NCB NCC NCCF NCCL NCD NCDC NCE NCGA NCIC NCMOS NCO NCP NCR NCS NCSA NCSC NCSL NCTE NCTL NCV ND NDA NDAC NDB NDCC NDDL NDE NDEA NDI NDIS NDL NDP NDSL NDT NDV NDak NE NEA NEAR NEARNET NEB NEBS NEC NED NEDC NEFS NEG NEH NEI NEMA NEMP NEP NERC NES NESAC NESC NET NETBIOS NETBLT NETCDF NEWS NEWT NEXRAD NEXT NEbE NEbn NF NFC NFD NFFE NFL NFPA NFR NFS NFT NFU NFWI NG NGA NGC NGO NGk NH NHA NHG NHI NHL NHLBI NHR NHS NI NIA NIC NICAM NICE NICMOS NIFTP NIG NIH NIM NIMBY NIMBYs NIMH NIMS NIR NIRA NIRC NIS NISC NISDN NISO NIST NIU NJ NKGB NKS NKVD NL NLC NLDP NLF NLLST NLM NLP NLRB NLS NM NMC NMI NMOS NMR NMS NMU NNE NNP NNTP NNW NNX NOAA NOAO NOC NOCS NOP NOR NORAD NORDO NORGEN NORML NOS NOSC NOT NOTIS NOW NP NPA NPC NPG NPI NPL NPN NPP NPR NPRM NPSI NPV NQ NQS NR NRA NRAB NRAO NRC NRDC NRE NREN NRL NRM NRO NROFF NRPB NRZ NRZI NS NSA NSAID NSAIDs NSAP NSB NSC NSCS NSDSSO NSE NSEC NSEL NSEM NSF NSFNET NSO NSP NSPCC NSPMP NSRB NSSDC NST NSTS NSU NSUG NSW NSWC NT NTEC NTEU NTF NTIA NTIS NTN NTO NTP NTR NTS NTSB NTSC NTT NU NUA NUAAW NUGMW NUI NUJ NUL NUM NUPE NUR NURBS NUS NUSC NUT NUWW NV NVH NVLAP NVRAM NW NWA NWC NWLB NWS NWT NWbW NWbn NXX NY NYA NYC NYNEX NYP NYSE NYSERNET NYU NZ NZBC Na NaDene Naafi Naalehu Naam Naaman Naamana Naamann Naameh Naara Naarah Naashom Naassenes Nabal Nabala Nabalas Nabalism Nabalite Nabalitic Nabaloi Nabalus Nabataea Nabataean Nabataeans Nabatea Nabatean Nabateans Nabathaean Nabathean Nabathite Nabb Nabby Nabila Nabis Nabisco Nablus Nabokov Nabokovian Nabonassar Nabonidus Naboth Nabothian Nabu Nabucco Nabuchodonosor Nace Naches Nachison Nachitoch Nachitoches Nachschlag Nachtmusik Nachusa Nacionalista Nackenheimer Naco Nacoochee Nada Nadab Nadaba Nadabas Nadabb Nadabus Nadaha Nadbus Nadda Nadean Nadeau Nadeen Nader Nadia Nadine Nadiya Nadja Nadler Nador Nady Nadya Naemorhedinae Naemorhedus Nafis Nafl Nafud Naga Nagaland Nagano Nagari Nagasaki Nageezi Nagel Nagey Nagle Nagoya Nagpur Nagshead Naguabo Nagy Nagyszeben Nagyvarad Nagyvrad Nah Naha Nahama Nahamas Nahanarvali Nahane Nahani Nahant Naharvali Nahma Nahor Nahshon Nahshu Nahshun Nahshunn Nahtanha Nahua Nahuan Nahuatl Nahuatlac Nahuatlan Nahuatlans Nahuatleca Nahuatlecan Nahuatls Nahum Nahunta Naia Naiad Naiadaceae Naiadales Naiades Naiads Naias Naida Naiditch Naima Naipaul Nair Nairn Nairnshire Nairobi Naismith Naja Najdi Najdis Naji Nakada Nakashima Nakasuji Nakayama Nakhichevan Nakina Nakir Naknek Nakomgilisala Nakota Nakotas Nakula Nakuru Nalani Nalchik Nalda Naldo Nalepka Nalita Nallen Nalline Nally Nalor Nam Nama Namaland Naman Namangan Namaqua Namaqualand Namaquan Namara Namas Namath Nambe Namen Names Namhoi Namibia Namibian Namibians Nammu Nampa Nampula Namtar Namur Nan Nana Nanafalia Nanaimo Nanak Nanakuli Nananne Nance Nancee Nancey Nanchang Nanci Nancie Nancy Nandi Nandina Nandor Nanete Nanette Nanhai Nani Nanice Nanine Nanjemoy Nanji Nanjing Nankin Nanking Nankingese Nankings Nankins Nanna Nannette Nanni Nannie Nanning Nanny Nanon Nanook Nansen Nantais Nanterre Nantes Nanticoke Nanticokes Nantua Nantucket Nantucketer Nantucketers Nantung Nantyglo Nantz Nanuet Naoise Naoma Naomi Naor Naos Naosaurus Nap Napa Napaea Napaeae Napaean Napakiak Napanoch Napas Napavine Naper Naperian Naperville Naphtali Napier Napierian Naples Napoleon Napoleonana Napoleonic Napoleonically Napoleonise Napoleonism Napoleonist Napoleonistic Napoleonize Napoleons Napoleonville Napoli Naponee Nappa Nappanee Nappas Nappie Nappy Naprosyn Naprosyns Napster Naquin Nara Narah Naraka Naranjito Naravisa Narayan Narayanganj Narbada Narberth Narbonne Narcaciontes Narcaciontidae Narcaeus Narcho Narcis Narciss Narcissan Narcissine Narcissus Narcobatidae Narcobatoidea Narcobatus Narcomedusae Narda Nardin Nardus Naresh Narev Narew Nari Nariko Narine Narka Narmada Narnia Narra Narraganset Narragansets Narragansett Narragansetts Narrows Narrowsburg Narsinh Narthecium Narton Naruna Narva Narvaez Narvik Narvon Nary Nasalis Nasby Nasca Nascan Nascapi Naseby Naselle Nash Nashbar Nashe Nashik Nashim Nashira Nashner Nasho Nashoba Nashom Nashoma Nashotah Nashport Nashua Nashville Nashvilles Nashwauk Nasi Nasia Nasicornia Nasiei Nasik Nasireddin Naskapi Naskapis Naskhi Nasmyth Nason Nassa Nassau Nassawadox Nassellaria Nasser Nassi Nassidae Nassir Nast Nastase Nastassia Nastrnd Nasua Nasya Nat Nata Natal Natala Natalbany Natale Natalee Natalia Natalian Natalians Natalie Natalina Nataline Natalya Nataniel Nataraja Natascha Natasha Natassia Natchez Natchezan Natchitoches Nate Natelson Nath Nathalia Nathalie Nathan Nathanael Nathanial Nathaniel Nathanil Nathans Nathanson Nathou Nathrop Natica Naticidae Natick Natie Natiha Natika Nation National Nationalist Nationalists Nations Nationwide Native Natividad Nativities Nativity Natka Nato Natoma Natorp Natricinae Natrix Natt Natta Nattie Natty Nature Naturita Naubinway Naucratis Naugahyde Naugahydes Naugatuck Naum Naumann Naumburgia Nauplius Nauru Nauruan Nauruans Nauset Nausicaa Nausicaä Nausithous Nautes Nautilacea Nautiloidea Nautilus Nautiluses Nauvoo Nava Navada Navaglobe Navaho Navahoes Navahos Navajo Navajoes Navajos Naval Navaratra Navaratri Navarino Navarra Navarre Navarrese Navarrian Navarro Navasota Navesink Naviculaceae Navies Navpaktos Navratilova Navy Nawrocki Naxalite Naxera Naxos Nay Nayar Nayarit Nayarita Naylor Naytahwaush Nazar Nazarate Nazarean Nazarene Nazarenes Nazarenism Nazareth Nazario Nazarite Nazarites Nazariteship Nazaritic Nazaritish Nazaritism Nazarius Nazca Naze Nazerini Nazi Nazification Nazifications Nazified Nazifies Nazify Nazifying Naziism Naziisms Nazimova Nazirate Nazirite Nazirites Naziritic Naziritism Naziritisms Nazis Nazism Nazisms Nazler Nazlini Nb NbE NbW Nberg Nd Ndebele Ndebeles Ndjamena Ndola Ndongo Ndongos Ndrangheta Ne NeWS NeWSes Nea Neaera Neafus Neagh Neagle Neal Neala Nealah Neale Nealey Neall Nealon Nealson Nealy Neander Neandertal Neandertaler Neandertalers Neandertals Neanderthal Neanderthaler Neanderthalers Neanderthalism Neanderthaloid Neanderthaloids Neanderthals Neapolis Neapolitan Neapolitans Nearch Nearctic Nearctica Neau Neavitt Neb Nebaioth Nebalia Nebaliacea Nebaliidae Nebiim Nebo Nebr Nebraska Nebraskan Nebraskans Nebrophonus Nebuchadnezzar Nebuchadnezzars Nebuchadrezzar Nec Necator Necedah Neche Neches Necho Neckar Necker Necrophaga Necrophorus Nectandra Nectarinia Nectariniidae Nectaris Nectonema Nectria Nectrioidaceae Necturidae Necturus Ned Neda Nedda Neddie Neddra Neddy Nederland Nederlands Nedi Nedra Nedrah Nedrow Nedrud Nedry Nee Needham Needles Needmore Needville Neel Neela Neelon Neely Neelyton Neelyville Neenah Neengatu Neeoma Neeses Nefen Nefertem Nefertiti Neff Neffs Nefretete Nefreteted Nefreteting Negaunee Negev Negley Negreet Negress Negresses Negrillo Negrilloes Negrillos Negris Negritian Negritic Negritise Negritised Negritising Negritize Negritized Negritizing Negrito Negritoes Negritoid Negritos Negritude Negritudes Negro Negroes Negrofy Negroid Negroidal Negroids Negroisation Negroise Negroised Negroising Negroism Negroization Negroize Negroized Negroizing Negroloid Negroness Negronesses Negroni Negronis Negrophil Negrophile Negrophiles Negrophilism Negrophilisms Negrophilist Negrophils Negrophobe Negrophobes Negrophobia Negrophobiac Negrophobias Negrophobic Negrophobist Negropont Negros Negrotic Negundo Negus Neguses Neh Nehalem Nehantic Nehawka Nehemiah Nehemias Nehru Neibart Neidhardt Neihart Neil Neila Neilah Neile Neill Neilla Neille Neillia Neillsville Neils Neilson Neilton Neiman Neisa Neison Neisse Neisseria Neisserieae Neith Neiva Nejd Nejdi Nejdis Nekhbet Nekhebet Nekhebit Nekhebt Nekkar Nekoma Nekoosa Nekrasov Nel Nela Nelan Nelda Neleus Nelia Nelides Nelie Neligh Nell Nella Nellda Nelle Nelli Nellie Nellir Nellis Nelliston Nelly Nellysford Nelrsa Nels Nelse Nelsen Nelson Nelsonia Nelsonville Nelumbium Nelumbo Nelumbonaceae Nema Nemacolin Nemaha Nemalion Nemalionaceae Nemalionales Neman Nemastomaceae Nematelmia Nematelminthes Nemathelmia Nemathelminthes Nematocera Nematoda Nematognathi Nematoidea Nematomorpha Nematospora Nembutal Nembutals Nembutsu Nemea Nemean Nemeans Nemertea Nemertina Nemertinea Nemertini Nemery Nemeses Nemesia Nemesis Nemhauser Nemichthyidae Nemichthys Nemo Nemocera Nemopanthus Nemophila Nemorensian Nemours Nemrod Nemunas Nena Nenets Nengahiba Nenney Nenni Nenzel Neo NeoCatholicism Neoarctic Neobalaena Neobeckia Neocene Neoceratodus Neoclassicism Neoclassicisms Neocomian Neodesha Neofabraea Neofascism Neofascist Neofascists Neofiber Neoga Neogaea Neogaeal Neogaean Neogaeic Neogea Neogeal Neogean Neogeic Neogene Neognathae Neohellenism Neohipparion Neola Neolithic Neom Neoma Neomah Neomeniidae Neomorpha Neomylodon Neona Neopaleozoic Neophron Neopieris Neopilina Neopit Neoplastic Neoplasticism Neoplasticisms Neoplasticist Neoplatonic Neoplatonician Neoplatonism Neoplatonisms Neoplatonist Neoplatonistic Neoplatonists Neoprontosil Neoptolemus Neopythagorean Neopythagoreanism Neorican Neoricans Neornithes Neosalvarsan Neoscholasticism Neosho Neosorex Neosporidia Neotoma Neotragus Neotremata Neotropic Neotropical Neotsu Neowashingtonia Neozoic Nep Nepa Nepal Nepalese Nepali Nepalis Nepean Nepenthaceae Nepenthes Neper Neperian Nepeta Neph Nephele Nephelium Nephi Nephila Nephilinae Nephite Nephrodium Nephrolepis Nephrops Nephropsidae Nephtali Nephthys Nepidae Nepil Neponset Nepos Neptune Neptunean Neptunian Neptunist Nerbudda Nereen Nereid Nereidae Nereidiformia Nereids Nereis Nereocystis Nereus Nerf Nerfs Nergal Neri Nerin Nerine Nerinx Nerissa Nerita Nerites Neritidae Neritina Nerium Nerland Nernst Nero Neroic Neron Neronian Neronic Neronize Nerstrand Nert Nerta Nerte Nerthridae Nerthrus Nerthus Nerti Nertie Nerty Neruda Nerva Nerval Nervii Nes Nesbit Nesbitt Nescafe Nesconset Nescopeck Neses Neshkoro Nesiot Neskhi Neski Neslia Nesline Neslund Nesmith Nesogaea Nesogaean Nesokia Nesonetta Nesotragus Nespelem Nespelim Nesquehoning Ness Nessa Nesselrode Nesselrodes Nessi Nessie Nessim Nesslerize Nessus Nessy Nesta Nester Nestle Nesto Nestor Nestorian Nestorianism Nestorianisms Nestorianize Nestorianizer Nestorians Nestorius Nestors Net Netaji Netawaka Netcafe Netcafes Netcafé Netcafés Netchilik Netcong Netflix Neth Netherland Netherlander Netherlanders Netherlandian Netherlandic Netherlandish Netherlands Nethinim Nethou Neti Neto Netscape Nett Netta Nettapus Nette Netti Nettie Nettion Nettle Nettleton Netty Netzahualcoyotl Neu Neuberger Neubrandenburg Neuburger Neuchatel Neuchetel Neuchtel Neuchâtel Neudeckian Neufchatel Neufchatels Neufchetel Neufchtel Neufchâtel Neufer Neuilly Neukam Neumann Neumark Neumayer Neumeyer Neumster Neupest Neurath Neurope Neuroptera Neuropteris Neuropteroidea Neurorthoptera Neusatz Neuss Neustria Neustrian Neustrians Neutral Neutrals Neutrodyne Nev Neva Nevada Nevadan Nevadans Nevadian Nevadians Nevai Neve Neveda Nevelson Neverland Nevers Neversink Neviim Nevil Nevile Neville Nevin Nevins Nevis Nevisdale Nevisian Nevlin Nevome Nevsa Nevski Nevsky New Newar Newari Newark Newberg Newberry Newbery Newbill Newbold Newbolt Newburg Newburgh Newbury Newburyport Newby Newcastle Newchwang Newcomb Newcombe Newcomen Newcomer Newcomerstown Newdigate Newel Newell Newfeld Newfie Newfies Newfoundland Newfoundlander Newfoundlanders Newfoundlands Newgate Newhall Newham Newhaven Newhouse Newichawanoc Newkirk Newland Newlin Newlon Newman Newmanise Newmanised Newmanising Newmanism Newmanite Newmanize Newmanized Newmanizing Newmann Newmark Newmarket Newport Newporter Newporters Newry Newsom Newspeak Newspeaks Newsweek Newton Newtonabbey Newtonian Newtonianism Newtonians Newtonic Newtonist Newtownabbey Newtownards Nexis Nexises Nexo Nexu Ney Neysa Ng Ngala Ngaliema Nganhwei Ngbaka Ngo Ngoko Ngoni Ngonis Nguni Ngunis Nguyen Nheengatu Ni NiCad NiCads Niabi Niagara Niagaran Niagaras Nial Niall Niamey Niangua Niantic Niarada Niarchos Nias Niasese Niassan Niassans Nibbs Nibelung Nibelungen Nibelungenlied Nibelungs Niblungs Nic Nica Nicaea Nicaean Nicaeans Nicaragua Nicaraguan Nicaraguans Nicarao Nicasio Niccolo Nice Nicene Nicenian Nicenist Nicetas Niceville Nich Nichani Nichiren Nichol Nichola Nicholas Nicholasville Nichole Nicholl Nicholle Nicholls Nichols Nicholson Nicholville Nichrome Nichromes Nichy Nicias Nicippe Nick Nickelodeon Nickelsen Nickelsville Nickerson Nickey Nicki Nickie Nickieben Nicklaus Nickleby Nickles Nickneven Nicko Nickola Nickolai Nickolas Nickolaus Nicks Nicktown Nicky Nico Nicobar Nicobarese Nicodemite Nicodemus Nicol Nicola Nicolai Nicolais Nicolaitan Nicolaitanism Nicolas Nicolau Nicolaus Nicolay Nicole Nicolea Nicolella Nicolet Nicolette Nicoli Nicolina Nicoline Nicolis Nicolle Nicollet Nicolson Nicomachean Nicosia Nicostratus Nicotiana Nictheroy Nicut Nida Nidaros Nidhug Nidia Nidorf Nidularia Nidulariaceae Nidulariales Nieberg Niebuhr Niebuhrian Niederosterreich Niedersachsen Niehaus Niel Niela Niels Nielsen Nielson Nielsville Niemen Niemler Niemoeller Niepce Nier Nierembergia Nierman Nierstein Niersteiner Niersteiners Nies Nietzsche Nietzschean Nietzscheanism Nietzscheanisms Nietzscheans Nietzscheism Nievelt Nieves Nievre Niflheim Niflhel Nigel Nigella Niger Nigeria Nigerian Nigerians Nigerien Nigeriens Nigerois Night Nightingale Nights Nigritian Nihal Nihhi Nihi Nihilism Nihilisms Nihon Niigata Niihau Nijinsky Nijmegen Nika Nikaniki Nikaria Nike Nikeno Nikep Niki Nikisch Nikiski Nikita Nikkei Nikkeis Nikki Nikkie Nikko Nikky Niklaus Niko Nikola Nikolaev Nikolai Nikolainkaupunki Nikolaos Nikolas Nikolaus Nikolayer Nikolayev Nikoletta Nikolia Nikolos Nikolski Nikon Nikos Nil Nila Niland Nile Niles Nilgiri Nilla Nilometer Nilometric Niloscope Nilot Nilote Nilotes Nilotic Nilots Nilous Nils Nilson Nilsson Nilus Nilwood Nimbies Nimbus Nimby Nimbyism Nimbyisms Nimbys Nimes Nimesh Nimitz Nimkish Nimocks Nimoy Nimrod Nimrodian Nimrodic Nimrodical Nimrodize Nimrods Nimrud Nims Nimwegen Nina Ninde Nine Nineties Ninetta Ninette Nineveh Ninevite Ninevites Ninevitical Ninevitish Ningal Ningirsu Ningpo Ningsia Ninhursag Ninib Ninilchik Ninja Ninjas Ninkur Ninlil Ninmah Ninnekah Ninnetta Ninnette Nino Ninon Ninos Ninox Ninsar Ninshubur Nintendinitus Nintendo Nintendoitis Nintendos Nintoo Ninurta Ninus Niobe Niobean Niobid Niobite Niobrara Niolo Niort Niota Niotaze Nip Nipa Nipha Nipigon Nipissing Niple Nipmuc Nipmuck Nipmucks Nipomo Nippon Nipponese Nipponise Nipponism Nipponize Nippur Nips Niquiran Nirenberg Nireus Nirmalin Nirvana Nirvanas Nis Nisa Nisaean Nisan Nisans Nisbet Nisei Niseis Nisen Nish Nishada Nishapur Nishi Nishinomiya Nisqualli Nissa Nissan Nissans Nisse Nissen Nissensohn Nissie Nisswa Nissy Nistru Nisula Nita Nitella Niter Niteroi Niterui Nitidulidae Nitin Nitralloy Nitrian Nitriot Nitro Nitrobacter Nitrobacteriaceae Nitrobacterieae Nitrosococcus Nitrosomonas Nittayuma Nitti Nitz Nitza Nitzschia Nitzschiaceae Niu Niua Niuan Niue Niuean Niueans Niv Nivea Niven Nivernais Niverville Nivose Nivre Nivôse Niwot Nixa Nixie Nixies Nixon Nixonesque Nixonian Nizam Nizams Nizoral Nizorals Nièvre Njord Njorth Nkkelost Nkomo Nkrumah Nnamdi No NoDoz Noach Noachian Noachic Noachical Noachite Noachiun Noaemon Noah Noahic Noak Noakes Noam Noami Noatun Nobe Nobel Nobelist Nobelists Nobell Nobie Nobile Noble Nobleboro Noblesville Nobleton Nobusuke Noby Nocardia Nocatee Nochur Nocona Nocten Noctilio Noctilionidae Noctiluca Noctilucidae Noctor Noctuae Noctuidae Nod Nodab Nodababus Nodarse Nodaway Nodosaria Noe Noel Noelani Noell Noella Noelle Noellyn Noels Noelyn Noemi Noemon Noetherian Noetian Noetic Nofretete Nogai Nogal Nogales Nogas Noggerath Noguchi Noh Nohs Nohuntsik NoibN Nokesville Nokia Nokomis Nola Nolan Nolana Noland Nolanville Nolascan Nolde Nole Nolensville Noleta Noletta Noli Nolie Nolita Nolitta Noll Nollekens Nollie Nolly Nolte Noludar Nolvadex Nolvadexes Noma Nomadidae Noman Nomarthra Nome Nomeidae Nomes Nomeus Nomex Nomexes Nomi Nomura Nona Nonadorantes Nonah Nonantum Noncalcarea Nonconformist Nonconformists Nonconformities Nonconformity Nondalton Nondeciduata None Nones Noni Nonie Nonius Nonjuror Nonjurors Nonna Nonnah Nono Nonruminantia Nooksack Noonan Noonberg Noordbrabant Noordholland Nootka Nootkas Nopalea Nor Nora Norah Norbert Norbertine Norberto Norbie Norborne Norby Norcatur Norco Norcross Nord Nordau Norden Nordenskj Nordenskjold Nordenskjuld Nordgren Nordhausen Nordheim Nordhoff Nordic Nordica Nordicism Nordicist Nordicity Nordicization Nordicize Nordics Nordin Nordine Nordland Nordman Nordstrom Nore Norean Noreen Norene Norfolk Norfolkian Norford Norgay Norge Noric Noricum Noriega Norina Norine Norita Nork Norlene Norlina Norling Norm Norma Normalie Normalville Norman Normand Normandy Normanesque Normangee Normanisation Normanisations Normanise Normanised Normaniser Normanises Normanish Normanising Normanism Normanist Normanization Normanizations Normanize Normanized Normanizer Normanizes Normanizing Normanly Normanna Normannic Normans Normantown Normi Normie Normy Norn Norna Nornis Norns Norphlet Norplant Norplants Norri Norridgewock Norrie Norris Norristown Norrkoping Norrkping Norrkuping Norrköping Norroway Norroy Norrv Norry Norse Norseland Norseman Norsemen Norsk North Northallerton Northam Northampton Northamptonshire Northants Northborough Northcliffe Northeast Northeastern Northeasterner Northeasterners Northeasts Northener Northeners Northern Northerner Northerners Northernise Northernised Northernising Northernize Northey Northington Northland Northlands Northman Northmen Northport Northrop Northrup Norths Northumb Northumber Northumberland Northumbria Northumbrian Northumbrians Northvale Northville Northway Northwest Northwestern Northwesterner Northwesterners Northwests Northwich Northwoods Norton Nortonville Norty Norumbega Norval Norvall Norvan Norvell Norvelt Norven Norvil Norvin Norvol Norvun Norw Norwalk Norward Norway Norwegian Norwegians Norwell Norweyan Norwich Norwood Norword Nos Nosairi Nosairian Nosema Nosematidae Nosferatu Nostoc Nostocaceae Nostradamic Nostradamus Nostrand Nostratic Nostromo Nosu Notable Notables Notacanthidae Notacanthus Notalia Notasulga Notelaea Notharctidae Notharctus Nothofagus Notholaena Nothosauri Nothosauridae Nothosaurus Noti Notidani Notidanidae Notidanus Notiosorex Notkerian Notodontidae Notogaea Notogaeal Notogaean Notogaeic Notogea Notommatidae Notonecta Notonectidae Notopteridae Notopterus Notorhynchus Notornis Notoryctes Notostraca Nototherium Nototrema Notre Notrees Notropis Nottage Nottawa Nottingham Nottinghamshire Nottoway Notts Notungulata Notus Nouakchott Nouma Noumaa Noumea Nov Nova Novachord Novah Novak Novalis Novanglian Novanglican Novara Novartis Novas Novatian Novatianism Novatianist Novato Novelia Novello Novels November Novemberish Novembers Novgorod Novi Novia Novial Novick Novikoff Novinger Novocain Novocaine Novocaines Novocains Novocherkassk Novokuznetsk Novonikolaevsk Novorossiisk Novoshakhtinsk Novosibirsk Novotny Novum Nowata Nowel Nowell Nowroze Nox Noxapater Noxen Noxon Noxzema Noyce Noyes Noyon Nozi Nozicka Np Npaktos Npt Ns Nsaid Nsaids Nt Nth Nuangola Nuba Nubia Nubian Nubians Nubieber Nubilum Nubium Nucla Nucula Nuculacea Nuculidae Nuda Nudd Nudens Nudibranchia Nueces Nuer Nuers Nuevo Nuffield Nufud Nugent Nuggerath Nugumiut Nukualofa Nukuhivan Nukus Nuli Nullipennes Nullstellensatz Num Numa Numantia Numantine Numanus Numbers Numenius Numerische Numida Numidae Numidia Numidian Numidians Numididae Numidinae Numine Numitor Nummularia Nummulinidae Nummulites Nummulitidae Nun Nunapitchuk Nunavut Nunci Nuncia Nunciata Nunda Nuneaton Nunes Nunez Nunica Nunki Nunn Nunnelly Nunnery Nunu Nupe Nupercaine Nupes Nuphar Nur Nuremberg Nureyev Nuri Nuriel Nuris Nuristan Nuristani Nuristanis Nurmi Nurnberg Nurofen Nurse Nusairis Nusakan Nusku Nussbaum Nut Nutley NutraSweet Nutrioso Nuttallia Nutter Nutting Nuttsville Nuyorican Nuyoricans Nuzzi NyQuil Nyac Nyack Nyamwezi Nyanja Nyanjas Nyasa Nyasaland Nyassa Nyaya Nyberg Nyctaginaceae Nyctaginia Nyctanthes Nyctea Nyctereutes Nycteribiidae Nycteridae Nycteris Nycteus Nycticorax Nyctimene Nyctimus Nyctipithecinae Nyctipithecus Nydia Nye Nyeman Nyerere Nyhagen Nykobing Nym Nyman Nymphaea Nymphaeaceae Nymphalidae Nymphalinae Nymphipara Nymphoides Nymphonacea Nymwegen Nynorsk Nyoro Nyquist Nyregyhza Nyroca Nysa Nyseides Nyssa Nyssaceae Nyx Nürnberg O OA OACIS OAK OAO OAP OAPC OAS OASYS OAT OATS OAU OB OBD OBE OBO OBS OBrit OBulg OC OCAM OCATE OCC OCD OCDM OCE OCI OCIAA OCLC OCLI OCO OCR OCS OCST OCTU OCU OD ODA ODAC ODD ODDD ODI ODIF ODISS ODM ODS ODT ODed ODing ODs OE OECD OED OEEC OEM OEO OEP OES OEXP OF OFM OFNPS OFS OFlem OFr OFris OG OGI OGICSE OGO OGPU OGT OH OHG OHMS OHP OHSA OIRA OIU OIW OIcel OIr OIt OJ OJT OK OKed OKing OKs OL OLG OLIT OLLA OLTM OLTP OLWM OM OMB OMD OME OMM OMPF OMS OMV ON ONA ONAC ONAL ONC OND ONF ONI ONR OO OOB OODB OOP OOPART OOPL OOPS OOPSTAD OOSH OOT OP OPA OPC OPCW OPDU OPEC OPEOS OPF OPM OPS OPSM OPX OPer OPers OR ORB ORDLIX ORFEUS ORM ORNAME ORNL OROM ORT ORuss OS OSA OSAC OSB OSC OSCAR OSCRL OSD OSDIT OSDS OSF OSFCW OSHA OSI OSINET OSIRM OSME OSN OSO OSP OSPF OSPS OSRD OSS OSSA OSSE OST OSTP OSes OSlav OT OTA OTB OTBS OTC OTDR OTEC OTF OTHB OTL OTLF OTM OTOH OTR OTS OTV OU OUTWATS OV OW OWHN OWI Oacoma Oahu Oak Oakbluffs Oakboro Oakboy Oakdale Oakes Oakesdale Oakesia Oakfield Oakford Oakhall Oakham Oakhurst Oakie Oakland Oaklawn Oakleil Oakley Oaklyn Oakman Oakmont Oaks Oakton Oaktown Oakvale Oakview Oakville Oannes Oark Oates Oatis Oatman Oaxaca Oaxacan Ob Oba Obad Obadiah Obadias Obafemi Obala Oballa Obama Oban Obara Obasanjo Obau Obaza Obbard Obbenite Obe Obeah Obeahs Obed Obeded Obediah Obeid Obel Obelia Obellia Obeng Ober Oberammergau Oberg Oberhausen Oberheim Oberland Oberlin Obernburg Oberon Oberosterreich Oberstone Obert Obi Obidiah Obidicut Obie Obies Obion Obis Obla Oblation Oblations Oboe Obola Obolaria Obongo Obote Obrazil Obrecht Obrenovich Obrien Obs Observant Observantine Observantist Obuda Obwalden Oby Oc Oca Ocala Ocana Ocate Occam Occamism Occamist Occamistic Occamite Occident Occidental Occidentalisation Occidentalisations Occidentalise Occidentalised Occidentalises Occidentalising Occidentalism Occidentalisms Occidentalist Occidentalists Occidentalization Occidentalizations Occidentalize Occidentalized Occidentalizes Occidentalizing Occidentals Occidents Occitan Occleve Occoquan Ocean Oceana Oceania Oceanian Oceanians Oceanic Oceanica Oceanican Oceanid Oceanides Oceanids Oceano Oceanport Oceanside Oceanus Oceanview Oceanville Oceola Ochelata Ocheyedan Ochimus Ochna Ochnaceae Ochoa Ochopee Ochotona Ochotonidae Ochozath Ochozias Ochozoma Ochrana Ochroma Ochs Ocie Ocilla Ocimum Ockeghem Ockenheim Ocker Ockers Ockham Ockhamism Ockhamist Ockhamistic Ocko Ocneria Ocnus Ocoee Oconee Oconnor Oconomowoc Oconto Ocotea Ocotillo Ocracoke Ocreatae Oct Octacnemus Octactiniae Octandria Octans Octateuch Octave Octavia Octavian Octavie Octavio Octavius Octavla Octavus October Octobers Octobrist Octocoralla Octocorallia Octodon Octodontidae Octodontinae Octogynia Octopoda Octopussy Oculina Oculinidae Ocydromus Ocypete Ocypoda Ocypode Ocypodidae Ocyroe Ocyroidae Ocyrrhoae Ocyrrhoe Od Odab Odacidae Odanah Odawa Odax Odd Oddfellow Oddfellows Oddfellowship Oddfellowships Odds Oddsbud Ode Odebolt Odeen Odel Odele Odelet Odelia Odelinda Odell Odella Odelle Odelsthing Odelsting Odem Oden Odense Odenton Odenville Oder Odericus Odessa Odets Odetta Odette Odey Odie Odilia Odille Odilo Odilon Odin Odine Odinian Odinic Odinism Odinist Odinists Odinitic Odis Odlo Odo Odoacer Odobenidae Odobenus Odocoileus Odom Odon Odonata Odonnell Odontaspidae Odontaspididae Odontaspis Odontocete Odontoceti Odontoglossae Odontoglossum Odontognathae Odontolcae Odontophoridae Odontophorinae Odontophorus Odontopteris Odontopteryx Odontormae Odontornithes Odontosyllis Odontotormae Odoric Odostemon Odovacar Odra Odrick Ods Odsbodkins Odum Odus Ody Odynerus Odyssean Odysseus Odyssey Odysseys Odz Odzookers Odzooks Oe Oeagrus Oeax Oebalus Oecanthus Oech Oedemeridae Oedicnemus Oedipal Oedipally Oedipean Oedipus Oedogoniaceae Oedogoniales Oedogonium Oeflein Oehlenschlger Oehsen Oelrichs Oelwein Oenanthe Oeneus Oeno Oenocarpus Oenomaus Oenone Oenopides Oenopion Oenothera Oenotheraceae Oenotrian Oeonus Oerlikon Oersted Oesel Oesophagostomum Oestrelata Oestridae Ofallon Ofelia Ofella Offa Offaly Offen Offenbach Offerle Offerman Offertories Offertory Office OfficeMax Offices Official Offutt Ofilia Ofo Ofori Og Ogaden Ogallah Ogallala Ogata Ogawa Ogbomosho Ogboni Ogburn Ogcocephalidae Ogcocephalus Ogdan Ogden Ogdensburg Ogdon Ogema Ogg Oghuz Ogilvie Ogilvy Oglala Oglalas Oglesby Oglethorpe Ogma Ogmios Ogor Ogpu Ogren Ogun Ogunquit Ogygia Ogygian Ogygus Ohara Ohare Ohatchee Ohaus Ohio Ohioan Ohioans Ohiopyle Ohiowa Ohl Ohley Ohlman Ohm Oidium Oileus Oilla Oilmont Oilton Oiltrough Oilville Oina Oira Oireachtas Oise Oisin Oistrakh Oita Oizys Ojai Ojibwa Ojibwas Ojibway Ojibways Ojibwe Ojibwes Ok Oka Okabena Okahumpka Okajima Okanogan Okapia Okarche Okaton Okauchee Okavango Okawville Okay Okayama Okazaki Okean Okeana Okechuku Okeechobee Okeene Okefenokee Okeghem Okemah Okemos Oken Oketo Okhotsk Okie Okies Okinagan Okinawa Okinawan Okinawans Okla Oklafalaya Oklahannali Oklahoma Oklahoman Oklahomans Oklaunion Oklawaha Oklee Okmulgee Okoboji Okolona Okovanggo Okovango Okreek Okta Oktaha Oktas Oktoberfest Oktoberfests Okuari Okubo Okun Okuninushi Okwu Ola Olacaceae Olaf Olag Olajuwon Olalla Olamon Olancha Oland Olanta Olar Olatha Olathe Olaton Olav Olavo Olax Olbers Olcha Olchi Olcott Old Oldcastle Oldenburg Older Oldfield Oldfieldia Oldham Oldhamia Oldowan Olds Oldsmobile Olduvai Ole Olea Oleaceae Oleacina Oleacinidae Olean Olearia Oleg Olema Olen Olenek Olenellus Olenidae Olenka Olenolin Olenta Olenus Oler Oleraceae Oleron Oleta Oletha Olethea Olethreutes Olethreutidae Oletta Olette Oley Olfe Olga Olia Oliana Oligocene Oligochaeta Oligomyodae Oligonephria Olimbos Olimpia Olin Olinde Olinia Oliniaceae Oliphant Oliva Olivann Olive Olivean Oliveburg Olivehurst Olivella Oliver Oliverea Oliverian Olivero Olives Olivet Olivetan Olivette Olivetti Olivia Olividae Olivie Olivier Oliviero Oliy Olla Ollayos Ollen Olli Ollie Olly Olm Olmec Olmecs Olmito Olmitz Olmstead Olmsted Olmstedville Olnay Olnee Olnek Olney Olneya Olnton Olodort Olomouc Olonets Olonetsian Olonetsish Olonos Olor Oloron Olpe Olpidiaster Olpidium Olsburg Olsen Olsewski Olshausen Olson Olsson Olszyn Olton Olustee Olva Olvan Olwen Olwena Oly Olympe Olympia Olympiad Olympiadic Olympiads Olympian Olympianise Olympianism Olympianize Olympianly Olympians Olympianwise Olympias Olympic Olympicly Olympicness Olympics Olympie Olympieion Olympio Olympionic Olympium Olympus Olynthiac Olynthian Olynthians Olynthus Olyphant Om Omagh Omagua Omaha Omahas Omak Oman Omani Omanis Omar Omari Omarr Omayyad Omayyades Omayyads Omdurman Omena Omer Omero Omers Omidyar Omland Ommastrephes Ommastrephidae Ommiad Ommiades Ommiads Omnipotence Omnipotent Omniscience Omniscient Omnivora Omoo Omor Omora Omphale Omri Omro Oms Omsk Omura Omuta On Ona Onaga Onagra Onagraceae Onaka Onalaska Onamia Onan Onancock Onarga Onas Onassis Onawa Onaway Onchidiidae Onchidium Onchiota Onchocerca Oncidium Oncorhynchus Ondaatje Onder Ondine Ondo Ondrea Ondrej Oneal Oneals Oneco Onega Onegin Onego Oneida Oneidas Oneil Oneill Onekama Onemo Oneonta Onfre Onfroi Ong Ongun Oni Onia Onida Onion Onions Oniscidae Oniscoidea Oniscus Oniskey Onitsha Onley Onmun Ono Onobrychis Onoclea Onofredo Onohippidium Onondaga Onondagan Onondagas Ononis Onopordon Onosmodium Onsager Onslow Onstad Onsted Ont Ontarian Ontarians Ontaric Ontario Ontina Ontine Ontonagon Onychophora Onyx Oocystaceae Oocystis Ookala Oolitic Oologah Ooltewah Oomycetes Oona Oonagh Oort Oosporeae Oost Oostburg Oostende Ootocoidea Oozy Oozys Op Opal Opalina Opaline Opalinidae Opalocka Opata Opdyke Opegrapha Opel Opelika Opelousas Opelt Open OpenOffice Openglopish Opens Operculata Oph Opheim Ophelia Ophelie Opheltes Ophia Ophian Ophicephalidae Ophicephalus Ophichthyidae Ophidia Ophidiidae Ophidiobatrachia Ophidion Ophiobatrachia Ophiobolus Ophioglossaceae Ophioglossales Ophioglossum Ophiomorpha Ophion Ophioninae Ophiosaurus Ophir Ophis Ophisaurus Ophism Ophite Ophitic Ophitism Ophiuchid Ophiuchus Ophiucus Ophiura Ophiurida Ophiuridae Ophiuroidea Ophrys Ophthalmosaurus Opiconsivia Opie Opilia Opiliaceae Opiliones Opilionina Opilonea Opimian Opis Opisthobranchia Opisthocoelia Opisthocomi Opisthocomidae Opisthoglossa Opisthoglypha Opisthognathidae Opisthoparia Opisthorchis Opisthothelae Opolis Oporto Opp Oppen Oppenheim Oppenheimer Oppian Opportina Opportuna Opposition Oppositions Oprah Ops Optacon Optez Optimist Optimists Opulaster Opuntia Opuntiaceae Opuntiales Oquawka Oquossoc Ora Orabel Orabelle Oracle Oracon Oradea Oradell Orakzai Oralee Oralia Oralie Oralla Oralle Oram Oran Orang Orange Orangeburg Orangefield Orangeism Orangeisms Orangeist Orangeman Orangemen Oranges Orangevale Orangeville Orangism Oranjestad Oraon Oratorian Oratorianism Oratorianize Oratorians Oratories Oratory Oraville Orazio Orbadiah Orban Orbicella Orbiculoidea Orbilian Orbilius Orbison Orbisonia Orbitelariae Orbitoides Orbitolina Orbitolites Orbulina Orca Orcadian Orcadians Orcas Orchestia Orchestiidae Orchidaceae Orchidales Orchis Orcinus Orcus Orczy Ord Orderville Ordinal Ordinals Ordinaries Ordinary Ordovian Ordovices Ordovician Ordway Ordzhonikidze Ore Oreamnos Oreana Oreas Orebro Orefield Oreg Oregon Oregonia Oregonian Oregonians Orel Oreland Orelee Orelia Orelie Orella Orelle Orelu Orem Oren Orenburg Orense Oreo Oreocarya Oreodon Oreodontidae Oreodoxa Oreophasinae Oreophasis Oreopithecus Oreortyx Oreos Oreotragus Oreotrochilus Orest Oreste Orestean Oresteia Orestes Oresund Orfeo Orferd Orff Orfield Orfinger Orford Orfordville Orfurd Orgas Orgel Orgell Orgoglio Ori Oria Orian Oriana Oriane Orianna Orias Oribatidae Oribel Oribella Oribelle Orick Oriel Orient Oriental Orientalia Orientalis Orientalisation Orientalise Orientalised Orientalising Orientalism Orientalisms Orientalist Orientalists Orientalization Orientalizations Orientalize Orientalized Orientalizes Orientalizing Orientalogy Orientals Oriente Orients Origanum Origen Origenian Origenic Origenical Origenism Origenist Origenistic Origenists Origenize Origine Orimulsion Orin Orinda Oringa Oringas Orinoco Oriole Oriolidae Oriolus Orion Orionis Oriska Oriskanian Oriskany Orissa Orit Orithyia Oriya Orizaba Orji Orjonikidze Orkhon Orkney Orkneyan Orkneyans Orkneys Orla Orlan Orlanais Orland Orlando Orlans Orlanta Orlantha Orlean Orleanais Orleanism Orleanisms Orleanist Orleanistic Orleanists Orleans Orlena Orlene Orlich Orlin Orlina Orlinda Orling Orlon Orlons Orlosky Orlov Orly Orma Orman Ormand Ormandy Ormazd Orme Ormiston Ormond Orms Ormsby Ormuz Ormuzd Orna Ornas Orne Orneus Ornie Ornithischia Ornithocephalidae Ornithocephalus Ornithodelphia Ornithodoros Ornithogaea Ornithogaean Ornithogalum Ornitholestes Ornithomimidae Ornithomimus Ornithopappi Ornithopoda Ornithoptera Ornithopteris Ornithorhynchidae Ornithorhynchus Ornithosauria Ornithoscelida Ornithurae Ornstead Ornytus Orobanchaceae Orobanche Orobatoidea Orochon Orocovis Orohippus Orola Oromo Oromos Orondo Orono Oronoco Oronogo Orontes Orontium Orontius Orose Orosi Orosius Orotinan Orovada Oroville Orozco Orpah Orpha Orphean Orpheist Orpheus Orphic Orphical Orphically Orphicism Orphism Orphisms Orphist Orphists Orphize Orpington Orpingtons Orr Orran Orren Orrick Orrin Orrington Orrstown Orrtanna Orrum Orrville Orsa Orsay Orsini Orsino Orsk Orsola Orson Ortalidae Ortalis Ortega Ortegal Orten Ortensia Orth Orthaea Orthagoriscus Ortheris Orthia Orthidae Orthis Orthman Orthocarpus Orthoceran Orthoceras Orthoceratidae Orthodox Orthodoxes Orthodoxies Orthodoxy Orthonectida Orthopoda Orthoptera Orthopteroidea Orthorrhapha Orthos Orthros Orthrus Orting Ortiz Ortler Ortles Ortley Ortol Orton Ortonville Ortrud Ortrude Ortygian Ortyginae Ortyx Orunchun Oruntha Oruro Orv Orva Orvah Orval Orvan Orvas Orvie Orvietan Orvieto Orvietos Orvil Orville Orwell Orwellian Orwigsburg Orwin Orycteropodidae Orycteropus Oryctolagus Oryol Oryssidae Oryssus Oryx Oryza Oryzomys Oryzopsis Oryzorictes Oryzorictinae Os Osage Osages Osaka Osakis Osana Osanna Osawatomie Osber Osbert Osborn Osborne Osbourn Osbourne Osburn Osc Oscan Oscans Oscar Oscarella Oscarellidae Oscars Osceola Oschophoria Oscilight Oscillaria Oscillariaceae Oscillatoria Oscillatoriaceae Oscines Oscinidae Oscinis Osco Oscoda Osee Osei Osetian Osetic Osgood Oshawa Osher Oshinski Oshkosh Oshogbo Oshoto Oshtemo Osi Osiandrian Osijek Osirian Osiride Osiridean Osirification Osirify Osiris Osirism Osithe Oskaloosa Oskar Osler Oslo Osman Osmanie Osmanli Osmanlis Osmanthus Osmen Osmeridae Osmerus Osmo Osmond Osmorhiza Osmund Osmunda Osmundaceae Osnabr Osnabrfck Osnabrock Osnabruck Osnabrück Osnaburg Osnappar Osorno Osphromenidae Osprey Osric Osrick Osrock Ossa Osseo Osset Ossete Ossetes Ossetia Ossetian Ossetians Ossetic Ossetine Ossetish Ossets Ossi Ossian Ossianesque Ossianic Ossianism Ossianize Ossie Ossies Ossietzky Ossineke Ossining Ossip Ossipee Ossis Osswald Ossy Ostap Ostara Ostariophyseae Ostariophysi Osteen Osteichthyes Ostend Ostende Osteoglossidae Osteoglossum Osteolepidae Osteolepis Osteostraci Oster Osterburg Osterhus Osterreich Ostertagia Osterville Ostia Ostiak Ostiaks Ostic Ostler Ostmannic Ostmark Ostmarks Ostmen Ostpolitik Ostpreussen Ostracea Ostraciidae Ostracion Ostracoda Ostracodermi Ostracoidea Ostracophori Ostraeacea Ostrander Ostrava Ostraw Ostrea Ostreidae Ostrogoth Ostrogothian Ostrogothic Ostrogoths Ostrya Ostwald Ostyak Ostyaks Osugi Osvaldo Oswal Oswald Oswaldo Oswegan Oswegatchie Oswego Oswell Oswiecim Oswin Osy Osyka Osyth Ot Otago Otaheitan Otaheite Otaria Otariidae Otariinae Otaru Otego Otelia Otello Otero Otes Otha Othake Othe Othelia Othella Othello Other Othilia Othilie Othin Othinism Othman Othmans Othniel Otho Othoniel Othonna Otidae Otides Otididae Otidiphaps Otila Otilia Otina Otionia Otiorhynchidae Otiorhynchinae Otis Otisco Otisville Otley Oto Otocyon Otoe Otogyps Otolithidae Otolithus Otomaco Otomanguean Otomi Otomian Otomitlan Otos Otozoum Otranto Otsego Ott Ottavia Ottawa Ottawas Otte Otter Otterbein Otterburn Ottertail Otterville Otti Ottie Ottilie Ottillia Ottine Ottinger Otto Ottoman Ottomanean Ottomanic Ottomanisation Ottomanise Ottomanism Ottomanization Ottomanize Ottomanlike Ottomans Ottomite Ottonian Ottosen Ottoville Ottsville Ottumwa Ottweilian Otuquian Otus Otway Otwell Otyak Ouachita Ouachitas Ouagadougou Ouaquaga Oubangi Oubangui Oudemian Oudenaarde Oudenarde Oudenardes Oudenodon Oudh Ouessant Oueta Ouida Ouija Ouijas Oujda Oulman Oulu Ouranos Ouray Ourouparia Ouse Oushak Oushaks Ouspensky Outagami Outback Outbacks Outer Outhe Outing Outlaw Outlook Ouzinkie Ova Ovaherero Oval Ovalle Ovalo Ovambo Ovambos Ovampo Ovando Ovangangela Ovapa Overbrook Overgaard Overijssel Overland Overlander Overly Overpeck Overton Oveta Ovett Ovibos Ovibovinae Ovid Ovida Ovidae Ovidian Oviedo Ovillus Ovimbundu Ovimbundus Ovinae Ovis Ovonics Ovovivipara Ovula Owades Owain Owaneco Owanka Owasco Owasso Owatonna Owego Owen Owena Owendale Owenia Owenian Owenism Owenist Owenite Owenize Owens Owensboro Owensburg Owensville Owenton Owerri Owicim Owings Owingsville Owlglass Owlshead Owlspiegle Owosso Owyhee Ox Oxalidaceae Oxalis Oxbow Oxbridge Oxenstierna Oxfam Oxford Oxfordian Oxfordians Oxfordism Oxfordist Oxfords Oxfordshire Oxley Oxly Oxnard Oxon Oxonian Oxonians Oxonolatry Oxus Oxyaena Oxyaenidae Oxybaphus Oxycoccus Oxycontin Oxydendrum Oxyderces Oxylabracidae Oxylabrax Oxylus Oxyopidae Oxypolis Oxyrrhyncha Oxystomata Oxytricha Oxytropis Oxyuridae Oyama Oyana Oyens Oyo Oys Oysterville Oz Oza Ozalid Ozalids Ozan Ozark Ozarker Ozarkers Ozarkian Ozarkians Ozarks Ozawa Ozawkie Ozen Ozenfant Ozes Ozias Ozkum Ozmo Ozona Ozonium Ozymandias Ozzie Ozzies Ozzy P PA PABA PABX PAC PACE PACT PACX PACs PAD PAK PAL PAM PAMD PAN PANS PAO PAP PAR PARC PARCs PAS PASCAL PAT PAU PAX PAYE PB PBB PBC PBD PBJ PBM PBS PBT PBX PC PCA PCAT PCB PCC PCDA PCDOS PCF PCH PCI PCIE PCL PCM PCMCIA PCN PCNFS PCO PCP PCPC PCS PCSA PCTE PCTS PCTV PCs PD PDAD PDE PDES PDF PDI PDL PDN PDP PDQ PDS PDSA PDSP PDT PDU PE PECC PEDir PEI PEM PEN PEP PEPE PERFECT PERL PERT PET PETA PETN PEX PEXSI PF PFB PFC PFPU PG PGA PGP PH PHA PHC PHIGS PHOTOCD PHS PHYSREV PI PIA PIC PICAO PICS PID PIF PIMS PIN PINE PING PIO PIP PIT PITI PIXEL PJs PK PKU PL PLA PLAN PLC PLCC PLD PLL PLM PLO PLP PLR PLS PLSS PLT PM PMA PMAC PMC PMDF PMEG PMG PMIRR PMO PMOS PMRC PMS PMT PMU PMX PMed PMing PMs PN PNA PNB PNP PNPN PNdB PO POA POB POBox POC POD POE POF POGO POH POK POL POM POP POPS POR POS POSI POSIX POSSLQ POSSLQs POSYBL POTS POTV POV POW POWER PP PPA PPB PPBS PPC PPCS PPD PPE PPI PPLO PPM PPN PPO PPOs PPP PPS PPT PQ PR PRA PRB PRC PRCA PRE PREMIS PREPNET PRG PRI PRISM PRMD PRO PROFS PROLOG PROM PROMATS PROPAL PROTEL PRS PRTC PS PSA PSAP PSAT PSC PSDC PSDN PSDS PSE PSF PSG PSI PSIU PSK PSL PSM PSN PSO PSP PSR PSS PST PSTN PSU PSV PSW PSWM PT PTA PTAT PTC PTCA PTD PTE PTFE PTI PTN PTO PTP PTSD PTT PTV PTW PU PUC PUD PUP PV PVA PVC PVN PVO PVP PVT PW PWA PWB PWD PWG PX PY Pa PaD PaG Paapanen Paar Paasikivi Paauhau Paauilo Paba Pablo Pablum Pablums Pabst Pac Pacaguara Paccanarist Pacceka Pacchionian Pace Pacheco Pachelbel Pachmann Pachomian Pachomius Pachons Pachston Pacht Pachton Pachuca Pachuco Pachuta Pachydermata Pachylophus Pachyma Pachyrhizus Pachysandra Pachystima Pachytylus Pacian Pacien Pacifa Pacific Pacifica Pacificas Pacification Pacifications Pacificia Pacinian Pacino Pack Packard Packer Packston Packton Packwaukee Packwood Paco Pacoima Pacolet Pacorro Pacs Pactolian Pactolus Padang Padda Paddie Paddies Paddington Paddy Paddyism Paddywack Paddywhack Padegs Paden Paderborn Paderewski Paderna Padget Padgett Padilla Padina Padishah Padishahs Padova Padraic Padraig Padre Padriac Padroni Padua Paduan Paduanism Paduans Paducah Padus Paelignian Paeon Paeonia Paeoniaceae Paeonian Paesiello Paestum Paff Paganalia Paganalian Paganini Pagas Page Pagedale Pageland Pageos Pages Paget Pageton Pagiopoda Paglia Pagnol Paguate Paguma Paguridae Paguridea Pagurinea Paguroidea Pagurus Pahala Pahang Pahareen Pahari Paharia Paharis Pahl Pahlavi Pahlevi Pahoa Pahokee Pahouin Pahrump Pahsien Paia Paicines Paiconeca Paige Paignton Paik Pail Pain Paincourtville Paine Painesdale Painesville Paintbank Painter Paintlick Painton Paintsville Paisiello Paisley Paisleys Paiute Paiutes Paixhans Pajonism Pakanbaru Pakawa Pakawan Pakeha Pakehas Pakhpuluk Pakhto Pakhtu Pakhtun Paki Pakis Pakistan Pakistani Pakistanis Pakokku Pakse Pal Pala Palacios Paladru Palaearctic Palaeechini Palaeechinoidea Palaeeudyptes Palaeic Palaeichthyes Palaemon Palaemonidae Palaeoanthropus Palaeocarida Palaeocene Palaeoconcha Palaeocrinoidea Palaeodictyoptera Palaeogaea Palaeogaean Palaeogene Palaeognathae Palaeolithic Palaeologus Palaeomastodon Palaeonemertea Palaeonemertinea Palaeonemertini Palaeoniscidae Palaeoniscum Palaeoniscus Palaeophis Palaeornis Palaeornithinae Palaeosaurus Palaeospondylus Palaeostraca Palaeothentes Palaeothentidae Palaeotheriidae Palaeotherium Palaeotropical Palaeozoic Palaic Palaihnihan Palamedea Palamedeidae Palamedes Palamite Palamitism Palapteryx Palaquium Palatinate Palatinates Palatine Palatines Palatinian Palatka Palatua Palau Palauan Palauans Palaung Palawan Palco Palearctic Palecek Paleman Palembang Palencia Palenque Palenville Paleoanthropus Paleocene Paleoconcha Paleogene Paleolithic Paleosiberian Paleosiberians Paleotropical Paleozoic Palermitan Palermitans Palermo Pales Palesman Palestine Palestinian Palestinians Palestrina Paley Palgrave Pali Palici Palicourea Palikir Palila Palilia Palilicium Palin Palinuridae Palinurus Palisa Palisades Palissy Palitzsch Paliurus Pall Palla Palladia Palladian Palladianism Palladianisms Palladin Palladio Palladium Palladiums Pallas Pallaten Pallaton Palliata Pallini Palliobranchiata Palliyan Pallmall Pallu Pallua Palluites Palm Palma Palmaceae Palmae Palmas Palmcoast Palmdale Palmdesert Palmella Palmellaceae Palmer Palmerdale Palmerin Palmerston Palmerstonian Palmersville Palmerton Palmgren Palmipedes Palmira Palmiro Palmolive Palmore Palmyra Palmyrene Palmyrenes Palmyrenian Palo Paloalto Palocedro Palocz Paloma Palomar Palomino Palopinto Palos Palouse Palouses Paloverde Palpicornia Pals Palta Palua Paluas Paludicella Paludicolae Paludina Paludrine Palumbo Palus Paluxy Pam Pamela Pamelina Pamella Pamir Pamiri Pamirian Pamirs Pamlico Pammi Pammie Pammy Pampa Pampanga Pampangan Pampango Pampean Pampeluna Pampers Pamphiliidae Pamphilius Pamphylia Pamphyllian Pamphyllians Pamplico Pamplin Pamplona Pampuch Pamunkey Pan Pana Panaca Panacea Panadol Panaggio Panagia Panagias Panak Panaka Panama Panamaian Panaman Panamanian Panamanians Panamano Panamas Panamic Panamint Panamist Panasonic Panathenaea Panathenaean Panathenaic Panay Panayan Panayano Panayiotis Panboeotian Panchaia Panchatantra Panchayat Panchiao Panchito Pancho Pancratis Pandanaceae Pandanales Pandanus Pandarctos Pandareus Pandarus Pandavas Pandean Pandectist Pandemic Pandemoniac Pandemoniacal Pandemonian Pandemonic Pandemonium Pandemos Panderma Pandich Pandion Pandionidae Pandit Pandits Pandolfi Pandora Pandorea Pandoridae Pandorina Pandosto Pandrosos Panelyte Pang Pangaea Pangaro Pangasinan Pangburn Pangea Pangium Pangloss Panglossian Panglossic Panguitch Pangwe Panhandle Panhandles Panhellenic Panhellenios Panhellenism Panhellenisms Panhellenist Panhellenists Panhellenium Pani Panic Panicularia Panicum Paninean Panini Panionia Panionian Panionic Panipat Paniquita Paniquitan Panjabi Panjabis Panjim Pankhurst Panmunjom Panmunjon Panna Pannamaria Pannini Pannon Pannonia Pannonian Pannonians Pannonic Panoan Panofsky Panola Panomphaeus Panopeus Panoptes Panora Panorpa Panorpatae Panorpidae Panpipe Panpipes Pansey Pansie Pansil Pansir Pansy Panta Pantagruel Pantagruelian Pantagruelic Pantagruelically Pantagrueline Pantagruelion Pantagruelism Pantagruelisms Pantagruelist Pantagruelistic Pantagruelistical Pantagruelists Pantagruelize Pantalone Pantaloon Pantastomatida Pantastomina Pantego Pantelleria Panter Panthaon Panthea Pantheas Pantheian Pantheon Pantheons Panther Panthia Panthous Pantia Pantin Pantocain Pantocrator Pantodon Pantodontidae Pantopoda Pantostomata Pantotheria Panufnik Panurge Panza Panzerfaust Paola Paoli Paolina Paolo Paolozzi Paonia Paoshan Paoting Paotow Papacies Papacy Papadopoulos Papagayo Papagena Papageno Papago Papagos Papaikou Papandreou Papaver Papaveraceae Papaverales Papayaceae Pape Papeete Papen Papert Paphian Paphians Paphiopedilum Paphlagonia Paphlagonian Paphlagonians Paphos Paphus Papiamento Papias Papilio Papilionaceae Papiliones Papilionidae Papilionides Papilioninae Papilionoidea Papinachois Papineau Papinian Papio Papist Papists Papke Papotto Papp Pappano Pappas Pappea Papst Papsukai Papua Papuan Papuans Paque Paquito Par Para Paraaeba Paracelsian Paracelsianism Paracelsians Paracelsic Paracelsist Paracelsistic Paracelsus Paraclete Paracress Paradies Paradis Paradise Paradisea Paradiseidae Paradiseinae Paradisia Paradiso Paradoxides Paradoxurinae Paradoxurus Paraebius Paragonah Paragonimus Paragould Paraguay Paraguayan Paraguayans Parahippus Paraiba Paraiyan Paralipomenon Paralipomenona Paralympian Paralympians Paralympic Paralympics Paramaribo Paramatman Paramecidae Paramecium Paramoecium Paramount Paramus Paran Parana Paranagua Paranaguc Paranc Paranthropus Paraná Parapaguridae Parapsida Paraquat Pararctalia Pararctalian Paras Parashah Parashioth Parashoth Parasita Parasitica Parasitidae Parasuchia Paratheria Parazoa Parbate Parber Parca Parcae Parcel Parcheesi Parcheesis Parcoal Pardanthus Pardeesville Pardeeville Pardew Pardner Pardo Pardoes Pardubice Pare Pareiasauri Pareiasauria Pareiasaurus Pareioplitae Parent Parentalia Pareoean Paresh Pareto Parette Parfitt Parhe Parian Parians Pariasauria Pariasaurus Paricut Paricutaen Paricutin Paridae Parietales Parietaria Parigord Parik Parilia Parilicium Parinarium Paris Parish Parishad Parishville Parisian Parisianisation Parisianise Parisianism Parisianization Parisianize Parisianly Parisians Parisienne Parisii Pariti Paritium Parjanya Park Parkdale Parke Parker Parkerford Parkersburg Parkesburg Parkhall Parkin Parkinson Parkinsonia Parkinsonian Parkinsonism Parkinsonisms Parkman Parks Parksley Parkston Parksville Parkton Parkville Parl Parlatoria Parley Parliament Parliamentarian Parliamentarians Parliaments Parlier Parlin Parma Parmele Parmelee Parmelia Parmeliaceae Parmenidean Parmenides Parmentier Parmentiera Parmesan Parmesans Parmese Parmigianino Parmigiano Parnaaeba Parnahiba Parnahyba Parnaiba Parnas Parnassia Parnassiaceae Parnassian Parnassianism Parnassianisms Parnassians Parnassiinae Parnassism Parnassisms Parnassos Parnassus Parnassuses Parnassós Parnell Parnellism Parnellite Parnellites Parnopius Paron Paros Parosela Parotia Parousia Parousias Parowan Parr Parra Parramatta Parridae Parrie Parrington Parris Parrisch Parrish Parrnell Parrott Parrottsville Parry Parryville Parsaye Parsee Parseeism Parseeisms Parsees Parshall Parshuram Parsi Parsic Parsifal Parsiism Parsiisms Parsippany Parsis Parsism Parsisms Parsonian Parsons Parsonsburg Parsonsia Parsva Partan Parthen Parthena Parthenia Partheniae Parthenium Parthenius Parthenocissus Parthenoi Parthenolatry Parthenon Parthenopaeus Parthenope Parthenopean Parthenos Parthia Parthian Parthians Parthinia Particia Partitur Partlet Partlow Partridge Parukutu Parus Parvati Paryavi Parzival Pas Pasadena Pasadenan Pasadenans Pasadis Pasahow Pasargadae Pasay Pascagoula Pascal Pascale Pascalian Pascals Pascasia Pasch Pascha Paschal Paschaltide Paschas Paschasia Paschs Pascia Pascin Pasco Pascoag Pascoe Pascola Pascual Pasho Pashto Pashtun Pashtuns Pasia Pasigraphy Pasionaria Pasiphaae Pasiphae Pasitelean Pasithea Paske Paskenta Paski Paso Pasol Pasolini Paspalum Pasquale Pasqualina Pasquil Pasquils Pasquin Pasquinian Pasquino Pasquins Pass Passadumkeag Passagian Passaic Passalidae Passalus Passamaquoddies Passamaquoddy Passe Passer Passeres Passeriformes Passerina Passiflora Passifloraceae Passiflorales Passion Passionist Passionists Passions Passiontide Passiontides Passover Passovers Passumpsic Passy Past Pastelki Pasternak Pasteur Pasteurella Pasteurellae Pasteurellas Pasteurelleae Pasteurelloses Pasteurian Pastinaca Pasto Pasture Pat Patagon Patagones Patagonia Patagonian Patagonians Patain Pataria Patarin Patarine Patarinism Pataskala Patavian Patavinity Patchogue Pate Patel Patellidae Paten Pater Paternoster Paternosters Pateros Paters Paterson Pathan Pathans Pathe Pathetique Pathrusim Pathsounder Pathé Pathétique Patiala Patience Patillas Patin Patman Patmian Patmo Patmore Patmos Patna Patnode Patoka Paton Patrai Patras Patrecia Patriarch Patriarchs Patric Patrica Patrice Patrich Patricia Patrician Patricio Patrick Patricksburg Patriofelis Patripassian Patripassianism Patripassianist Patripassianly Patrizia Patrizio Patrizius Patroclus Patsis Patsy Patt Pattani Patten Patterman Patterson Pattersonville Patti Pattie Pattin Pattison Patton Pattonsburg Pattonville Patty Patuxent Patwin Pau Paucker Paugh Pauiie Paul Paula Paulden Paulding Paule Pauletta Paulette Pauli Pauliad Paulian Paulianist Pauliccian Paulician Paulicianism Paulie Paulina Pauline Pauling Paulinia Paulinian Paulinise Paulinism Paulinist Paulinistic Paulinistically Paulinity Paulinize Paulinus Paulism Paulist Paulista Paulists Paulita Paulite Paull Paullina Paulo Paulownia Paulsboro Paulsen Paulson Paulus Pauly Paumari Paumgartner Paupack Paur Paurometabola Pauropoda Pausanias Paussidae Pauwles Pavarotti Pavel Paver Pavese Pavetta Pavia Pavier Pavillion Pavior Paviotso Paviotsos Paviour Pavkovic Pavla Pavlish Pavlodar Pavlov Pavlova Pavlovas Pavlovian Pavo Pavoncella Pavonia Pavonis Pavyer Pawcatuck Pawhuska Pawlet Pawling Pawnee Pawneerock Pawnees Pawpaw Pawsner Pawtucket Pax Paxes Paxico Paxil Paxillosa Paxils Paxinos Paxon Paxton Paxtonville PayPal Paya Payagua Payaguan Payette Payloader Payloaders Paymar Payne Paynesville Payneville Payni Paynise Paynize Paynter Paypal Paysand Paysandu Payson Payton Paz Paza Pazend Pazia Pazice Pazit Pb Pd Peabody Peace Peacham Peachbottom Peachland Peachtree Peacock Peadar Peake Peale Peano Peapack Pearblossom Pearce Pearcy Pearisburg Pearl Pearla Pearland Pearle Pearlie Pearline Pearlington Pearlman Pearlstein Pearman Pears Pearsall Pearse Pearson Peary Pease Peaster Peatroy Peba Peban Pebrook Pebworth Pecatonica Pechenga Pechora Pecht Peck Peckham Peckinpah Pecksniff Pecksniffery Pecksniffian Pecksniffianism Pecksniffism Peckville Peconic Pecopteris Pecora Pecorino Pecorinos Pecos Pecs Pectinacea Pectinibranchia Pectinibranchiata Pectinidae Pectunculus PedD Pedaiah Pedaias Pedaliaceae Pedalion Pedalium Pedasus Pedata Peddada Peder Pedersen Pederson Pedetes Pedetidae Pedetinae Pedi Pediastrum Pedicellina Pedicularia Pedicularis Pediculati Pediculi Pediculidae Pediculina Pediculus Pedimana Pedioecetes Pedionomus Pedipalpi Pedipalpida Pedrell Pedrick Pedricktown Pedro Pedrotti Pedroza Pedunculata Peebles Peeblesshire Peedee Peekskill Peel Peele Peelism Peelite Peell Peene Peenemunde Peenemünde Peer Peerce Peerless Peers Peery Peetz Peever Peg Pega Peganum Pegasean Pegasian Pegasid Pegasidae Pegasus Pegasuses Pegboard Pegboards Pegeen Pegg Peggi Peggie Peggir Peggotty Peggs Peggy Pegma Pegram Pegu Peguan Peh Pehlevi Pehuenche Pei Peiching Peiping Peipus Peiraeus Peiraievs Peirce Peircean Peirsen Peisch Peisenor Peisistratus Peitho Pejepscot Pejsach Peke Pekes Pekin Pekinese Pekineses Peking Pekingese Pekingeses Pekings Pekins Pel Pelae Pelag Pelaga Pelage Pelagi Pelagia Pelagian Pelagianism Pelagianisms Pelagianize Pelagianized Pelagianizer Pelagianizing Pelagians Pelagias Pelagius Pelagon Pelagothuria Pelahatchie Pelargi Pelargikon Pelargomorphae Pelasgi Pelasgian Pelasgians Pelasgic Pelasgikon Pelasgoi Pelasgus Pele Pelecani Pelecanidae Pelecaniformes Pelecanoides Pelecanoidinae Pelecanus Pelecyopoda Pelecypoda Pelee Pelegon Peleus Pelew Pelham Pelias Pelides Pelidnota Pelion Pelkie Pell Pella Pellaea Pellagrin Pellan Pelleas Pellegrini Pelles Pellet Pelletier Pellian Pelligrini Pellikka Pellston Pellville Pelmanism Pelmanist Pelmanize Pelmas Pelmatozoa Pelobates Pelobatidae Pelodytes Pelodytidae Pelomedusa Pelomedusidae Pelomyxa Pelopaeus Pelopea Pelopi Pelopia Pelopid Pelopidae Peloponnese Peloponnesian Peloponnesians Peloponnesos Peloponnesus Peloponnisos Pelops Pelotas Pelpel Pelson Pelsor Peltandra Peltier Peltigera Peltigeraceae Peltogaster Pelton Peltz Pelusios Pelvetia Pelycosauria Pelzer Pemaquid Pemba Pember Pemberton Pemberville Pembina Pembine Pembroke Pembrokes Pembrokeshire Pembrook Pen Pena Penaea Penaeaceae Penalosa Penang Penargyl Penasco Penates Pence Penchi Pendennis Pender Penderecki Pendergast Pendergrass Pendleton Pendragon Pendroy Peneios Penelopa Penelope Penelopean Penelophon Penelopinae Peneus Penfield Pengelly Penghu Penghutao Pengilly Pengpu Penh Penhall Penhook Penicillium Peninsula Penitas Penitente Penitentes Penitentiaries Penitentiary Penki Penland Penman Penn Penna Pennacook Pennales Pennaria Pennariidae Pennatae Pennatula Pennatulacea Pennatulidae Pennebaker Pennell Pennellville Penney Penni Pennie Pennines Pennington Pennisetum Pennlaird Pennock Pennsauken Pennsboro Pennsburg Pennsville Pennsylvania Pennsylvanian Pennsylvanians Pennville Penny Pennyan Pennzoil Penobscot Penobscots Penokee Penoyer Penrith Penrod Penrose Penryn Pensacola Pensaes Pensees Penshurst Pent Pentacrinidae Pentacrinus Pentadactyla Pentagon Pentagonese Pentagoneses Pentagynia Pentamera Pentameridae Pentameron Pentamerus Pentandria Pentaphylacaceae Pentaphylax Pentastomida Pentastomum Pentateuch Pentateuchal Pentatomidae Pentatomoidea Pentax Pentecost Pentecostal Pentecostalism Pentecostalisms Pentecostalist Pentecostalists Pentecostals Pentecostaria Pentecosts Pentel Pentelic Pentelican Pentelicus Pentelikon Pentels Pentha Penthea Pentheam Pentheas Penthesilea Penthesileia Penthestes Pentheus Penthoraceae Penthorum Pentium Pentiums Pentland Pentothal Pentothals Pentremites Pentremitidae Pentress Pentstemon Pentwater Pentzia Penuelas Penutian Penwell Penza Penzance Peonir Peony Peoples Peoria Peorian Peosta Peotone Pepe Pepeekeo Peper Peperomia Pephredo Pepi Pepillo Pepin Pepita Pepito Peppard Peppel Pepper Pepperell Peppi Peppie Peppy Pepsi PepsiCo Pepusch Pepys Pepysian Pequabuck Pequannock Pequea Pequot Pequots Per Pera Peracarida Peraea Perahia Perak Perakim Peralta Perameles Peramelidae Peramium Peratae Perates Perbunan Perca Perce Percesoces Perceval Perche Percheron Percherons Perchta Percidae Perciformes Percival Percivale Percoidea Percomorphi Percy Perdicinae Perdido Perdita Perdix Perdu Pere Perean Peregrine Pereira Perelman Perennibranchiata Peres Pereskia Peretz Perez Perfectus Perfeti Perforata Pergamene Pergamenian Pergamic Pergamon Pergamos Pergamum Pergamus Pergolesi Pergrim Perham Peri Peria Perialla Periander Periapis Periarctic Periboea Perice Periclean Pericles Periclymenus Pericu Peridermium Peridineae Peridiniaceae Peridiniales Peridinidae Peridinieae Peridiniidae Peridinium Peridot Perieres Perigord Perigordian Perigueux Perigune Perikeiromene Perikiromene Perilaus Perilla Perimedes Perimele Perioeci Periopis Peripatetic Peripateticism Peripateticisms Peripatetics Peripatidae Peripatidea Peripatopsidae Peripatopsis Peripatus Periphas Periphetes Periplaneta Periploca Perisphinctes Perisphinctidae Perisporiaceae Perisporiales Perissodactyla Peristeromorphae Peristeropodes Peritrate Peritricha Perkasie Perkin Perkins Perkinston Perkinsville Perkiomenville Perkoff Perks Perl Perla Perlaria Perle Perley Perlidae Perlie Perlis Perlman Perloff Perls Perm Permalloy Permalloys Permiak Permian Permocarboniferous Pernambuco Pernas Pernell Pernettia Perni Pernick Pernik Pernis Pernod Pernods Pero Perodipus Perognathinae Perognathus Peromedusae Peromela Peromyscus Peron Peronism Peronismo Peronist Peronista Peronistas Peronists Peronospora Peronosporaceae Peronosporales Peropoda Perot Perotin Perotinus Perovo Perpendicular Perpetua Perpignan Perr Perrault Perreault Perren Perret Perretta Perri Perrie Perrier Perriers Perrin Perrine Perrineville Perrinist Perrins Perrinton Perris Perron Perronville Perry Perryhall Perryman Perryopolis Perrysburg Perrysville Perryton Perryville Pers Persae Persas Perse Persea Perseid Perseides Perseids Persephassa Persephone Persepolis Persepolitan Perseus Pershing Persia Persian Persianisation Persianise Persianised Persianises Persianising Persianist Persianization Persianize Persianized Persianizes Persianizing Persians Persic Persicaria Persichetti Persicise Persicised Persicises Persicising Persicize Persicized Persicizes Persicizing Persis Persism Persius Person Personae Persons Perspectivism Perspex Perspexes Persse Persson Perth Perthshire Pertusaria Pertusariaceae Peru Perugia Perugian Perugians Peruginesque Perugino Perularia Perun Perusse Perutz Peruvian Peruvianise Peruvianize Peruvians Peruzzi Pervouralsk Perzan Pesach Pesachs Pesah Pesaro Pescadero Pescadores Pescara Pesek Peshastin Peshawar Peshito Peshitos Peshitta Peshittas Peshtigo Peskoff Pesotum Pessa Pest Pestalozzi Pestalozzian Pestalozzianism Pestana Peste Pet PetE Peta Petaca Petain Petal Petalia Petaliidae Petalodontidae Petalodus Petalostemon Petaluma Petar Petasites Petaurista Petauristidae Petauroides Petaurus Pete Peter Peterboro Peterborough Peterec Peterhouse Peterkin Peterlee Peterloo Peterman Peters Petersburg Petersen Petersham Petershams Peterson Peterstown Peterus Petes Petey Petfi Peti Petie Petigny Petiolata Petioliventres Petipa Petit Petite Petiveria Petiveriaceae Petofi Petoskey Petr Petra Petracca Petrarch Petrarchal Petrarchan Petrarchesque Petrarchian Petrarchianism Petrarchise Petrarchised Petrarchises Petrarchising Petrarchism Petrarchist Petrarchistic Petrarchistical Petrarchize Petrarchized Petrarchizes Petrarchizing Petras Petrea Petrel Petrey Petri Petrick Petricola Petricolidae Petrie Petrillo Petrina Petrine Petrinism Petrinist Petrinize Petrobium Petrobrusian Petrodromus Petrogale Petrograd Petrolia Petrolina Petromilli Petromyzon Petromyzonidae Petromyzontes Petromyzontidae Petronella Petronia Petronian Petronilla Petronille Petronius Petropavlovsk Petros Petroselinum Petrosian Petrouchka Petrovsk Petrozavodsk Petrpolis Petruchio Petrushka Petsamo Petta Pettibone Pettifer Pettiford Pettigrew Pettisville Pettit Pettus Petty Petua Petufi Petula Petulah Petulia Petunia Petuu Peucedanum Peucetii Peugeot Peugia Peul Peuls Peumus Peursem Peutingerian Pevely Pevsner Pevzner Pewamo Pewaukee Peyerian Peyter Peyton Peytona Peytonsburg Peziza Pezizaceae Pezizales Pezophaps Pfaff Pfaffian Pfafftown Pfalz Pfannkuchen Pfc Pfeffer Pfeffernsse Pfeifer Pfeifferella Pfister Pfitzner Pfizer Pflugerville Pforzheim Pfosi Pg Ph PhD PhL PhM Phaaenna Phaca Phacelia Phacidiaceae Phacidiales Phacochoerus Phacopidae Phacops Phadre Phaea Phaeacia Phaeacian Phaeax Phaedo Phaedra Phaedrus Phaenna Phaenogamia Phaeodaria Phaeophyceae Phaeophyta Phaeosporales Phaeosporeae Phaestus Phaet Phaethon Phaethonic Phaethontes Phaethontic Phaethontidae Phaethusa Phagedaena Phagineae Phaidra Phaih Phail Phainopepla Phaistos Phajus Phalacrocoracidae Phalacrocorax Phalaecean Phalaecian Phalaenae Phalaenidae Phalaenopsis Phalan Phalange Phalangeridae Phalangerinae Phalangida Phalangidea Phalangides Phalangigrada Phalangiidae Phalangista Phalangistidae Phalangium Phalaris Phalarism Phalaropodidae Phaleucian Phallaceae Phallales Phanar Phanariot Phanariote Phanerocarpae Phanerocarpous Phanerocephala Phanerogamae Phanerogamia Phaneroglossa Phanerozoic Phanerozonia Phantasiast Phantasiastic Phantasmatic Phantasmist Phantasus Phantomist Phar PharB PharD Pharaoh Pharaohs Pharaonic Pharaonical Pharbitis Phare Phareodus Phares Pharian Pharisaean Pharisaic Pharisaical Pharisaically Pharisaicalness Pharisaism Pharisaisms Pharisaist Pharisean Pharisee Phariseeism Phariseeisms Pharisees Pharm PharmD PharmM Pharoah Pharomacrus Pharos Pharr Pharsalia Pharsalian Pharsalus Pharyngobranchii Pharyngognathi Pharyngopneusta Phascaceae Phascogale Phascolarctinae Phascolarctos Phascolomyidae Phascolomys Phascolonus Phascum Phaseolaceae Phaseolus Phases Phasianella Phasianellidae Phasianidae Phasianinae Phasianus Phasiron Phasma Phasmatida Phasmatidae Phasmatodea Phasmatoidea Phasmida Phasmidae Phathon Phaye Pheb Pheba Phebe Phecda Phedra Phedre Phegeus Phegopteris Pheidippides Pheidole Phekda Phelan Phelgen Phelgon Phelia Phelips Phellodendron Phelps Phemerol Phemia Phemie Phemius Phenacodontidae Phenacodus Phenalgin Phene Pheni Phenica Phenice Phenicia Phenician Phenix Pheny Pherae Phereclus Pherecratean Pherecratian Pherecratic Pherephatta Pherkad Pherophatta Phersephatta Phersephoneia Phi Phia Phidiac Phidian Phidias Phidippides Phigalian Phil Phila Philadelphia Philadelphian Philadelphianism Philadelphians Philadelphus Philae Philan Philana Philander Philanthidae Philanthropinum Philanthus Philathea Philbert Philbin Philbo Philbrook Philby Philcox Philem Philemol Philemon Philender Philepitta Philepittidae Philesia Philetaerus Philharmonic Philharmonics Philia Philibert Philina Philine Philip Philipa Philipines Philipp Philippa Philippan Philippe Philippeville Philippi Philippian Philippians Philippic Philippics Philippine Philippines Philippise Philippised Philippises Philippising Philippism Philippist Philippistic Philippizate Philippize Philippized Philippizes Philippizing Philippopolis Philipps Philips Philipsburg Philipson Philis Philister Philistia Philistian Philistine Philistinely Philistines Philistinian Philistinic Philistinise Philistinised Philistinises Philistinish Philistinising Philistinism Philistinisms Philistinize Philistinized Philistinizes Philistinizing Philius Phillada Phillane Phillida Phillie Phillip Phillipa Phillipe Phillipp Phillippe Phillips Phillipsburg Phillipses Phillipsville Phillis Philly Phillyrea Philmont Philo Philoctetes Philodendron Philodina Philodinidae Philoetius Philohela Philolaus Philomachus Philomath Philomel Philomela Philomels Philomena Philomont Philonian Philonic Philonis Philonism Philonist Philonome Philoo Philopteridae Philotria Philoxenian Philpot Philps Philydraceae Philyra Phina Phineas Phineus Phio Phiomia Phiona Phionna Phip Phippen Phipps Phippsburg Phira Phithom Phitsanulok Phiz Phlebodium Phlebotomus Phlegethon Phlegethontal Phlegethontic Phlegyas Phleum Phlias Phlomis Phobetor Phobos Phobus Phocaea Phocaean Phocaeans Phocaena Phocaenina Phocean Phocian Phocians Phocidae Phocinae Phocion Phocis Phocodontia Phocoena Phocylides Phoebe Phoebean Phoebus Phoenicaceae Phoenicales Phoenicia Phoenician Phoenicianism Phoenicians Phoenicid Phoenicis Phoenicize Phoenicopteridae Phoenicopteriformes Phoenicopteroideae Phoenicopterus Phoeniculidae Phoeniculus Phoenix Phoenixes Phoenixlike Phoenixville Pholadacea Pholadidae Pholadinea Pholas Pholcidae Pholcus Pholidota Pholiota Phoma Phomopsis Phomvihane Phonelescope Phonevision Phonsa Phora Phoradendron Phorcys Phoridae Phormium Phoroneus Phoronida Phoronidea Phoronis Phororhacidae Phororhacos Phosphor Phosphorus Photima Photina Photinia Photinian Photinianism Photius Photobacterium Photofit Photon Photoradiogram Photorealism Photorealisms Photostat Photostated Photostating Photostats Photostatted Photostatting Photronic Phox Phractamphibia Phragmidium Phragmites Phragmocyttares Phrixus Phronima Phronimidae Phryganea Phryganeidae Phrygia Phrygian Phrygianize Phrygians Phryma Phrymaceae Phryne Phrynidae Phrynosoma Phthartolatrae Phthia Phthirius Phuket Phyciodes Phycitidae Phycochromophyceae Phycodromidae Phycomyces Phycomycetes Phyfe Phyl Phylactolaema Phylactolaemata Phylactolema Phylactolemata Phyleus Phylis Phyliss Phyllachora Phyllactinia Phyllanthus Phyllaurea Phyllida Phyllis Phyllitis Phyllium Phyllocactus Phyllocarida Phylloceras Phylloceratidae Phyllodoce Phyllophaga Phyllopoda Phyllopteryx Phylloscopus Phyllosomata Phyllospondyli Phyllostachys Phyllosticta Phyllostoma Phyllostomatidae Phyllostomatinae Phyllostomidae Phyllostominae Phyllostomus Phylloxera Phylloxeridae Phyllys Phylo Phylonome Phylys Phymatidae Phymatodes Phymosia Physa Physalia Physaliidae Physalis Physalospora Physapoda Physaria Physcia Physciaceae Physcomitrium Physeter Physeteridae Physeterinae Physeteroidea Physidae Physik Physiocrat Physiocratic Physiocrats Physocarpus Physoclisti Physoderma Physonectae Physophorae Physopoda Physostegia Physostigma Physostomi Phytalus Phytelephas Phyteus Phytoflagellata Phytolacca Phytolaccaceae Phytomastigina Phytomastigoda Phytomonadida Phytomonadina Phytomonas Phytophaga Phytophagineae Phytophthora Phytoptidae Phytoptus Phytosauria Phytotoma Phytotomidae Phytozoa Phytozoaria Phyxius Pi Pia Piacenza Piaf Piaget Piagetian Piane Piankashaw Pianokoto Pianola Pianolas Piarist Piaroa Piaroan Piaropus Piarroan Piasa Piast Piatigorsk Piatigorsky Piauae Piaui Piave Piazzi Pica Picabia Picacho Picae Picard Picardi Picards Picardy Picariae Picarii Picasso Picayune Piccadilly Piccard Piccini Picco Piccolomini Picea Picene Picenian Pich Picher Pici Picidae Piciformes Picinae Picinni Pickar Pickard Pickelhaube Pickens Picker Pickering Pickerington Pickett Pickford Pickman Pickney Pickrell Pickstown Pickton Pickwick Pickwickian Pickwickianism Pickwickianly Pickwickians Picnickian Picorivera Picramnia Picris Picrodendraceae Picrodendron Pict Pictavi Pictet Pictish Pictland Pictones Pictor Pictores Picts Picturephone Picumninae Picumnus Picunche Picuris Picus Piderit Pidgeon Piedmont Piedmontese Piedra Piefer Piegan Piegans Piegari Pielus Piemonte Pier Pierce Piercefield Pierceton Pierceville Piercy Pierette Pieria Pierian Pierians Pieridae Pierides Pieridinae Pierinae Pieris Piermont Piero Pierpont Pierre Pierrepont Pierrette Pierro Pierron Pierrot Pierrots Piers Pierson Pierz Piesporter Piesporters Piet Pieta Pietas Piete Pieter Pietermaritzburg Pietism Pietisms Pietist Pietists Pietje Pietown Pietra Pietrek Pietro Piffard Pigalle Pigeon Piggott Piggy Pigmies Pigmy Pigs Pigwiggen Pike Pikesville Piketon Pikeville Pilar Pilate Pilates Pilatian Pilatus Pilcomayo Pilea Pilger Pilgrim Pilgrims Pilipino Pilkington Pill Pillager Pilloff Pillow Pills Pillsbury Pilobolus Pilocarpus Pilocereus Pilos Pilottown Pilpai Pilpay Pils Pilsen Pilsener Pilseners Pilsner Pilsners Pilsudski Pilularia Pilumnus Pima Piman Pimas Pimbley Pimelea Pimenta Pimento Pimlico Pimpinella Pimpla Pimplinae Pinaceae Pinacoceras Pinacoceratidae Pinacyanol Pinafore Pinal Pinaleno Pinales Pinatubo Pincas Pinchas Pinchot Pincian Pincince Pinckard Pinckney Pinckneya Pinckneyville Pinconning Pinctada Pincus Pindall Pindar Pindari Pindaric Pindarically Pindarics Pindarise Pindarised Pindarises Pindarising Pindarism Pindarist Pindarize Pindarized Pindarizes Pindarizing Pindarus Pindus Pine Pinebank Pinebluffs Pinebrook Pinebush Pinecliffe Pinecrest Pineda Pinedale Pinehall Pinehurst Pineknot Pinel Pineland Pinelli Pineola Pinero Pines Pinetops Pinetown Pinetta Pinette Pineview Pineville Pinewood Pineywoods Ping Pingra Pingre Pingree Pinguicula Pinguiculaceae Pini Pinkerton Pinkertonism Pinkham Pinkiang Pinkster Pinksters Pinna Pinnidae Pinnigrada Pinnipedia Pinnotheres Pinnotheridae Pinocchio Pinochet Pinola Pinole Pinon Pinopolis Pinot Pinots Pinsk Pinsky Pinson Pinta Pinter Pinteresque Pinto Pinturicchio Pinus Pinxter Pinyin Pinz Pinzler Pinzon Pinzun Pioche Pioneer Pioneertown Piotr Pioxe Piozzi Pip Piper Piperaceae Piperales Pipersville Pipestem Pipestone Pipidae Pipil Pipile Pipilo Pipistrellus Pippa Pippapasses Pippas Pippin Pippo Pippy Pipra Pipridae Piprinae Piptadenia Piptomeris Pipunculidae Piqua Piraeus Pirali Pirandellian Pirandello Piranesi Piranesian Piranga Pirbhai Pire Pirene Piricularia Pirithofs Pirithous Pirnot Piro Pironi Piroplasma Pirous Pirozzo Pirri Pirtleville Piru Pirzada Pisa Pisaca Pisacha Pisan Pisander Pisanello Pisano Pisans Pisarik Pisauridae Piscataqua Piscataway Piscatelli Piscean Pisceans Pisces Piscid Piscidia Piscis Piseco Pisek Piselli Pisgah Pish Pishpek Pishquow Pisidia Pisidian Pisidium Pisistratean Pisistratidae Pisistratus Pisonia Pissaro Pissarro Pistacia Pistia Pistoia Pistoiese Piston Pisum Pit Pitahauerat Pitahauirata Pitaka Pitana Pitarys Pitatus Pitcairn Pitcairnia Pitcher Pitchford Pitchometer Pithecanthropidae Pithecanthropus Pithecia Pitheciinae Pithecolobium Pithoegia Pithoigia Pithom Pitiscus Pitjantjara Pitjantjaras Pitjantjatjara Pitjantjatjaras Pitkin Pitman Pitney Pitocin Pitocins Pitri Pitris Pitsburg Pitt Pitta Pittacus Pittel Pittheus Pittidae Pittism Pittite Pittman Pittosporaceae Pittosporum Pitts Pittsboro Pittsburg Pittsburgh Pittsburgher Pittsburghers Pittsfield Pittsford Pittston Pittstown Pittsview Pittsville Pituitrin Pitylus Pityocamptes Pityrogramma Pitys Pitzer Piura Pius Piute Piutes Pivski Piwowar Pixley Pizarro Pizor Pkwy Pl Placaean Place Placean Placedo Placeeda Placentalia Placentia Placerville Placia Placida Placidia Placido Placidyl Placitas Placodermi Placodontia Placodus Placoganoidei Placoidei Placoides Placophora Placus Plafker Plagianthus Plagiochila Plagiostomata Plagiostomi Plainfield Plains Plainsboro Plainview Plainville Plainwell Plaisted Plaistow Plana Planada Planaria Planarida Planck Planckian Planctae Planera Planipennia Plank Plankinton Plano Planococcus Planorbidae Planorbis Planosarcina Planosol Planosols Plantae Plantagenet Plantagenets Plantaginaceae Plantaginales Plantago Plantation Plante Plantersville Plantigrada Plantin Plantsville Planuloidea Plasmochin Plasmodiophora Plasmodiophoraceae Plasmodiophorales Plasmon Plasmopara Plassey Plasticene Plasticine Plasticines Plastidozoa Plata Plataea Plataean Plataeans Platalea Plataleidae Plataleinae Platanaceae Platanista Platanistidae Platanus Platas Plate Plateau Plateglass Plateresque Plath Platina Platine Platinite Plato Platoda Platodes Platon Platonesque Platonian Platonic Platonical Platonically Platonicalness Platonician Platonicism Platonisation Platonise Platonised Platoniser Platonises Platonising Platonism Platonisms Platonist Platonistic Platonists Platonization Platonize Platonized Platonizer Platonizes Platonizing Platt Plattdeutsch Platte Plattekill Plattensee Plattenville Platter Platteville Platto Plattsburg Plattsburgh Plattsmouth Platus Platycarpus Platycarya Platycephalidae Platycephalus Platycercinae Platycercus Platycerium Platycodon Platyctenea Platyhelmia Platyhelminthes Platypoda Platyptera Platyrhina Platyrhini Platyrrhina Platyrrhini Platysomidae Platysomus Platystemon Platysternidae Platystomidae Plaucheville Plauen Plautine Plautus PlayStation Playbill Playbills Playboy Player Playfair Playtex Pleas Pleasant Pleasantdale Pleasanton Pleasants Pleasantville Pleasence Pleasureville Plecoptera Plecotinae Plecotus Plectognathi Plectospondyli Pledger Plegadis Pleiad Pleiades Pleiads Pleiocene Pleione Pleistocene Pleistocenic Plenipotentiary Plenty Plentywood Pleospora Pleosporaceae Plerre Plesianthropus Plesiosauri Plesiosauria Plesiosaurus Plessis Plethodon Plethodontidae Pleuracanthea Pleuracanthidae Pleuracanthini Pleuracanthus Pleurobrachia Pleurobrachiidae Pleurocapsa Pleurocapsaceae Pleurocarpi Pleurocera Pleuroceridae Pleurococcaceae Pleurococcus Pleurodelidae Pleurodira Pleuronectes Pleuronectidae Pleuronema Pleuropterygii Pleurosaurus Pleurosigma Pleurosteon Pleurosticti Pleurostigma Pleurotoma Pleurotomaria Pleurotomariidae Pleurotomidae Pleurotremata Pleurotus Pleven Plevna Plexiglas Plexiglases Plexiglass Plexippus Pliam Plimsoll Pliner Plinian Plinius Pliny Plinyism Pliocene Pliocenes Pliofilm Pliofilms Pliohippus Plion Pliopithecus Pliosauridae Pliosaurus Pliotron Pliske Plisthenes Ploceidae Ploceinae Ploceus Ploch Ploesti Ploeti Ploima Plos Ploss Plossl Plotinian Plotinic Plotinical Plotinism Plotinisms Plotinist Plotinists Plotinize Plotinus Plotkin Plough Plouteneion Plovdiv Plowright Plowrightia Plpuszta Pluchea Pluckemin Pluckerian Plumatella Plumatellidae Plumbaginaceae Plumbo Plume Plumerville Plumiera Plummer Plumsteadville Plumtree Plumularia Plumulariidae Plumville Plunkett Plusch Plusia Plusiinae Plutarch Plutarchan Plutarchian Plutarchic Plutarchical Plutarchically Plutella Pluto Plutonian Plutonic Plutonion Plutonism Plutonist Plutonium Plutus Pluvi Pluvialis Pluviose Pluvius Plymouth Plymouthism Plymouthist Plymouthite Plympton Plynlymmon Plze Plzen Pm Pneumatomachian Pneumatomachist Pneumatomachy Pneumatria Pneumobranchia Pneumobranchiata Pneumometer Pnompenh Pnyx Po Poa Poaceae Poales Poblacht Poca Pocahontas Pocasset Pocatello Pocola Pocono Poconos Pocopson Podaliriidae Podalirius Podarces Podarge Podargidae Podarginae Podargus Podaxonia Podes Podgorica Podgoritsa Podgorny Podhoretz Podiceps Podicipedidae Podocarpaceae Podocarpineae Podocarpus Podolian Podolsk Podophrya Podophryidae Podophthalma Podophthalmata Podophthalmia Podophyllaceae Podophyllum Podosomata Podosphaera Podostemaceae Podostemon Podostemonaceae Podostomata Podozamites Podsnap Podsnappery Podunk Podunks Podura Poduridae Podvin Poe Poeas Poecile Poeciliidae Poecilocyttares Poecilopoda Poephaga Poephagus Poestenkill Pofo Pogany Pogo Pogonatum Pogonia Pogue Pohai Pohang Pohjola Poiana Poictesme Poincar Poincara Poincare Poincaré Poinciana Poine Poinsettia Point Pointers Pointillism Pointillisms Poirer Poiret Poirot Poisson Poitier Poitiers Poitou Pokan Pokanoket Pokemon Pokom Pokomam Pokomo Pokonchi Pokorny Pokémon Pol Pola Polab Polabian Polabians Polabish Polabs Polacca Polack Polacks Polad Polak Poland Polander Polanisia Polanski Polard Polarid Polaris Polarograph Polaroid Polaroids Polartec Polartecs Polash Pole Polemoniaceae Polemoniales Polemonium Poler Poles Polesian Polian Polianthes Poliard Polias Poliatas Polichinelle Polieus Polik Polinices Polinski Polish Polistes Politbureau Politburo Politburos Politi Politian Politique Polito Poliuchus Polivy Polk Polkton Polkville Polky Poll Pollack Pollacks Pollaiolo Pollaiuolo Pollajuolo Pollak Pollard Pollen Pollerd Pollie Pollitt Polloch Pollock Pollocks Pollocksville Pollok Pollux Polly Pollyanna Pollyannaish Pollyannaism Pollyannas Pollyannish Polo Polonese Polonia Polonial Polonian Polonians Polonisation Polonism Polonius Polonization Polonize Polonized Polonizing Polonnaruwa Polska Polson Poltava Poltoratsk Polvadera Polyactinia Polyadelphia Polyandria Polyangium Polybius Polyborinae Polyborus Polybotes Polybranchia Polybranchiata Polybus Polycarp Polycarpon Polycaste Polychaeta Polycladida Polycleitus Polycletan Polycletus Polyclitus Polycodium Polycrates Polyctenidae Polycyttaria Polydactylus Polydeuces Polydora Polydorus Polyergus Polyfibre Polygala Polygalaceae Polygamia Polyglot Polyglots Polygnotus Polygonaceae Polygonales Polygonatum Polygonella Polygonia Polygonum Polygordius Polygynia Polyhymnia Polyidus Polykarp Polymastiga Polymastigida Polymastigina Polymastodon Polymastus Polymela Polymele Polymelus Polymixia Polymixiidae Polymnestor Polymnia Polymorpha Polymyaria Polymyarii Polymyodi Polyneices Polynemidae Polynemus Polynesia Polynesian Polynesians Polynices Polynoe Polynoidae Polyodon Polyodontidae Polyot Polypay Polypays Polypedates Polypemon Polypetalae Polyphaga Polypheme Polyphemian Polyphemic Polyphemus Polyphides Polypi Polypifera Polyplacophora Polyplectron Polypoda Polypodiaceae Polypodium Polypomorpha Polyporaceae Polyporthis Polyporus Polyprotodontia Polypteridae Polypterus Polysaccum Polysiphonia Polyspora Polystichum Polystictus Polystomata Polystomatidae Polystomea Polystomella Polystomidae Polythalamia Polytrichaceae Polytrichum Polyxena Polyxenus Polyxo Polyzoa Pom Pomaceae Pomacentridae Pomacentrus Pomaderris Pomak Pomaria Pomatomidae Pomatomus Pombal Pomcroy Pomerania Pomeranian Pomeranians Pomerene Pomerol Pomeroy Pomeroyton Pomfret Pomfrey Pommard Pommel Pommern Pommie Pommies Pommy Pomo Pomona Pomorze Pomos Pompadour Pompea Pompei Pompeia Pompeian Pompeians Pompeii Pompeiian Pompeiians Pompey Pompidou Pompilidae Pompilus Pomptine Poms Ponape Ponca Poncas Ponce Ponchartrain Ponchatoula Poncirus Pond Ponderay Ponderosa Pondicherry Pondo Pondoland Pondomisi Ponemah Ponera Poneramoeba Poneridae Ponerinae Poneto Pongidae Pongo Ponselle Ponsford Pontac Pontacq Pontanus Pontchartrain Pontederia Pontederiaceae Pontefract Pontevedra Pontiac Pontian Pontianak Pontianus Pontias Pontic Pontiff Pontiffs Pontificate Pontine Pontius Pontocaine Pontocaspian Ponton Pontone Pontoppidan Pontormo Pontos Pontotoc Pontus Pontypool Pontypridd Ponzi Ponzis Ponzo Poock Pooh Poohsticks Pooi Pool Poole Pooler Poolesville Pooley Poolville Poona Poop Poopo Poopu Poore Pooter Pooterish Pooterism Pop Popayan Popaycn Pope Popean Popejoy Popele Popelka Popemobile Popemobiles Popes Popeye Popian Popish Poplarism Poplarville Poplilia Popocatepetl Popocatpetl Popocracy Popocrat Popolari Popoloco Popov Popovets Popp Poppas Popper Popperian Poppins Poppo Poppy Popsicle Popsicles Popularist Populism Populisms Populist Populistic Populists Populus Populuxe Poquonock Poquoson Porbandar Porcellana Porcellanidae Porche Porcia Porcula Poree Porella Porett Porfirio Pori Poria Porifera Poriferan Porirua Porites Poritidae Porkopolis Porlock Porocephalus Porokoto Porphyra Porphyraceae Porphyrean Porphyrian Porphyrianist Porphyrio Porphyrion Porphyrogenite Porphyrogenitism Porphyrogeniture Porphyry Porpita Porrima Porsche Porsches Porsena Porsenna Porson Port Porta Portadown Portage Portageville Portakabin Portakabins Portaloo Portaloos Porte Porteno Porter Porteranthus Porterville Portervillios Portes Porthetria Portheus Porthos Portia Portie Portinari Portingale Portland Portlander Portlanders Portlandian Portlaoise Porto Portobello Portor Ports Portsmouth Portugal Portugalism Portugee Portuguese Portulaca Portulacaceae Portulacaria Portumnus Portuna Portunalia Portunidae Portunus Portwin Portwine Porty Porum Porush Porzana Pos Posadas Posehn Poseidon Poseidonian Posen Poseyville Posidonius Poskin Posnanian Posner Possing Post Postcode Postcodes Postcommunion Postelle Postimpressionism Postimpressionisms Postimpressionist Postimpressionistic Postimpressionists Postman Postmodern Poston Postverta Postville Postvorta Potamobiidae Potamochoerus Potamogale Potamogalidae Potamogeton Potamogetonaceae Potamonidae Potash Potawatami Potawatomi Potawatomis Poteau Potecasi Poteet Potemkin Potentilla Poterium Poth Pothos Potidaea Potiguara Potiphar Potlatch Potlatches Potomac Potoroinae Potorous Potos Potosae Potosi Potrero Potsdam Pottawatomie Potter Potteries Pottersville Potterville Pottiaceae Potts Pottsboro Pottstown Pottsville Potwin Potyomkin Poucher Poughkeepsie Poughquag Pouilly Poujadism Poujadist Poul Poulan Poulenc Poulsbo Poulter Poultney Pouncey Pound Poundian Pournaras Poussin Poussinisme Povindah Poway Powder Powderhorn Powderly Powe Powel Powell Powellsville Powellton Powellville Power PowerPC PowerPoint Powers Powersite Powersville Powhatan Powhatans Powhattan Pownal Pownall Powys Poyang Poyen Poynette Poynor Poyntelle Poynting Poysippi Poyssick Pozna Poznan Pozsony Pozzuoli Pozzy Pr Prada Pradeep Prader Pradesh Prado Prady Praeneste Praenestine Praenestinian Praesepe Praesian Praetorian Praetorians Praetorius Prag Prager Prague Praha Praia Prairial Prajadhipok Prajapati Prakash Prakrit Prakritic Prakritize Pralltriller Pramnian Prasad Pratchett Pratdesaba Pratdesabc Prater Prather Pratincola Prato Pratt Pratte Pratts Prattsburg Prattshollow Prattsville Prattville Pratyeka Pravachol Pravachols Pravda Pravit Pravost Praxean Praxeanist Praxitelean Praxiteles Praxithea Preacher Preakness Preaknesses Preble Prebo Precambrian Preciosa Precipitron Precisionism Precisionisms Precisionist Precisionists Predentata Preface Prefaces Pregl Pregwood Preiser Prekantian Preludin Prem Premarin Premarins Premer Premier Preminger Premongolian Premonstrant Premonstratensian Premonstratensians Premont Premyslid Pren Prenanthes Prendergast Prensa Prent Prenter Prentice Prentiss Pres Presb Presber Presbyt Presbyterial Presbyterials Presbyterian Presbyterianise Presbyterianised Presbyterianises Presbyterianising Presbyterianism Presbyterianisms Presbyterianize Presbyterianized Presbyterianizes Presbyterianizing Presbyterianly Presbyterians Presbytinae Presbytis Prescott Presentation Presentations Presho Presidencies Presidency President Presidents Presidia Presidio Presidium Presidiums Presley Press Pressburg Pressburger Pressey Pressman Prestel Prestige Preston Prestonpans Prestonsburg Prestwich Prestwick Pretenderism Pretoria Pretorian Pretorians Pretorius Pretrice Preuss Preussen Previdi Previn Prevost Prevot Prew Prewett Prewitt Prez Prezes Prezzes Pri Priacanthidae Priacanthus Priam Priapean Priapic Priapulacea Priapulida Priapulidae Priapuloidea Priapulus Priapus Priapusian Pribilof Price Pricedale Prichard Pricilla Priddy Pride Priebe Priest Priestley Prilosec Prilosecs Prima Primalia Primate Primates Primavera Primaveras Primaveria Prime Primes Primghar Primianist Primo Primrosa Primrose Primula Primulaceae Primulales Primulinus Primus Primuses Prince Princeite Princess Princeton Princeville Princewick Princip Principal Principe Principes Principia Principle Prineville Pringle Prinsburg Printer Prinz Priodon Priodontes Prionidae Prioninae Prionodesmacea Prionodon Prionopinae Prionops Prionus Prior Priorato Pripet Pripyat Pris Prisca Priscella Priscian Priscianist Priscilla Priscillian Priscillianism Priscillianist Prisilla Prissie Prissy Pristina Pristipomatidae Pristipomidae Pristis Pristodus Pritchard Pritchardia Pritchett Prithivi Prius Privatdocent Privatdozent Private Prix Prizren Proarthri Proavis Prober Proberta Proboscidea Probosciger Procavia Procaviidae Procellaria Procellariidae Procellariiformes Procellarum Prochora Prochoras Procious Proclus Procne Procoelia Proconnesian Procopius Procora Procris Procrustean Procrusteanise Procrusteanism Procrusteanize Procrustes Procter Procto Proctor Proctorsville Proctorville Proctotrypidae Proctotrypoidea Proculian Procyon Procyonidae Procyoniformia Procyoninae Prod Prodenia Prodromia Prods Productidae Productus Proetidae Proetus Prof Profant Proffitt Profilometer Profumo Prog Proganosauria Progne Progreso Progressive Progressives Progressivism Progressivisms Progymnasium Prohibition Prohibitionist Prohibitionists Prohibitions Prokofieff Prokofiev Prokofievian Prokopyevsk Prole Promachorma Promachus Promammalia Prome Promessi Promethea Promethean Prometheans Prometheus Promin Promontory Prompton Pronaus Pronoea Prontosil Pronty Pronuba Propaganda Propagandas Proparia Propecia Propecias Proper Propers Propertius Prophet Prophets Prophetstown Propionibacterieae Propionibacterium Propithecus Propliopithecus Propontic Propontis Propus Proreptilia Prorhipidoglossomorpha Prorsa Pros Prosarthri Prosclystius Prosek Proserpina Proserpinaca Proserpine Prosimiae Prosobranchia Prosobranchiata Prosopis Prosopium Prospekt Prosper Prosperity Prospero Prosperus Prosser Prost Prostigmin Prot Protagoras Protagorean Protagoreanism Protargol Protea Proteaceae Protean Protection Protectograph Protector Protectorate Protectorates Protectors Proteida Proteidae Proteles Protelidae Protelytroptera Protem Proteosauridae Proteosaurus Proteosoma Protephemeroidea Proteroglypha Proterozoic Protesilaus Protestant Protestantise Protestantised Protestantises Protestantish Protestantishly Protestantising Protestantism Protestantisms Protestantize Protestantized Protestantizes Protestantizing Protestantlike Protestantly Protestants Proteus Proteuses Protevangelium Prothoaenor Prothoenor Protista Protium Protivin Protoascales Protoascomycetes Protobasidii Protobasidiomycetes Protoblattoidea Protobranchia Protobranchiata Protocaris Protoceras Protoceratidae Protoceratops Protochorda Protochordata Protococcaceae Protococcales Protococcus Protocoleoptera Protodonata Protodonta Protogenea Protogenia Protogeometric Protohemiptera Protohippus Protohydra Protohymenoptera Protomastigida Protominobacter Protomonadina Protomycetales Proton Protonemertini Protoperlaria Protophyta Protopteridae Protopterus Protorohippus Protorosauria Protorosauridae Protorosaurus Protorthoptera Protoselachii Protosemitic Protosiphon Protosiphonaceae Protosphargis Protospondyli Protostega Protostegidae Prototheria Prototracheata Protozoa Protracheata Protremata Protura Protylopus Proud Proudfoot Proudhon Proudlove Proudman Proulx Proust Proustian Prout Prouty Prov Provature Provenal Provencal Provencale Provencalize Provencals Provencaux Provence Provencial Provenial Proveniale Provençal Provençale Proverbs Providence Providences Provincetown Provincial Provisional Provisionals Provo Provolone Provos Prowel Proxima Prozac Prozacs Pru Pruchno Prud Pruden Prudence Prudential Prudentius Prudenville Prudhoe Prudi Prudie Prudy Prue Pruett Pruitt Prunaceae Prunella Prunellidae Prunus Prus Pruss Prussia Prussian Prussianisation Prussianise Prussianised Prussianiser Prussianisers Prussianises Prussianising Prussianism Prussianisms Prussianization Prussianize Prussianized Prussianizer Prussianizers Prussianizes Prussianizing Prussians Prussification Prussify Prut Pruter Pruth Prvert Pry Pryce Prylis Prynne Pryor Pryse Prytanis Przemy Przywara Ps Psa Psalm Psalms Psalter Psalters Psamathe Psammocharidae Psammophis Psaronius Psedera Pselaphidae Pselaphus Psephurus Psetta Pseudechis Pseudepigrapha Pseudobranchus Pseudoceratites Pseudococcinae Pseudococcus Pseudogryphus Pseudolamellibranchia Pseudolamellibranchiata Pseudolarix Pseudomonas Pseudoneuroptera Pseudopeziza Pseudophoenix Pseudoscarus Pseudoscines Pseudoscorpiones Pseudoscorpionida Pseudosuchia Pseudotetramera Pseudotrimera Pseudotsuga Pshav Psidium Psiloceras Psiloceratidae Psilophytales Psilophyton Psiloriti Psilotaceae Psilotum Psithyrus Psittaci Psittacidae Psittaciformes Psittacinae Psittacomorphae Psittacus Pskov Psocidae Psoralea Psorophora Psoroptes Psyche Psychean Psychiatry Psychichthys Psychidae Psychoda Psychodidae Psychol Psychopompus Psychotria Psychozoic Psylla Psyllidae Pt Pta Ptah Ptain Ptarmica Ptas Pte Ptelea Ptenoglossa Pteranodon Pteranodontidae Pteraspidae Pteraspis Pterelaus Pterian Pterichthyodes Pterichthys Pteridium Pteridophyta Pteridospermae Pteridospermaphyta Pteris Pterobranchia Pterocarpus Pterocarya Pterocaulon Pterocera Pteroceras Pterocles Pterocletes Pteroclidae Pteroclomorphae Pterodactyli Pterodactylidae Pterodactylus Pteromalidae Pteromys Pterophoridae Pterophorus Pterophryne Pteropidae Pteropoda Pteropodidae Pteropsida Pteropus Pterosauri Pterosauria Pterospora Pterostemon Pterostemonaceae Pterygogenea Pterygota Pterygotus Ptilichthyidae Ptiliidae Ptilimnium Ptilocercus Ptilonorhynchidae Ptilonorhynchinae Ptilota Ptinidae Ptinus Pto Ptofs Ptolemaean Ptolemaeus Ptolemaian Ptolemaic Ptolemaical Ptolemaism Ptolemaist Ptolemaists Ptolemean Ptolemies Ptolemy Ptous Ptychoparia Ptychosperma Pu Pubilis Publea Publia Publias Public Publican Publilian Publius Publus Puccini Puccinia Pucciniaceae Puccinian Puchanahua Pucida Puck Puckett Puckish Pudendas Pudens Pudovkin Pudsey Pudu Puduns Puebla Pueblo Puebloan Pueblos Puelche Puelchean Pueraria Puerto Puertoreal Puett Pufahl Pufendorf Puff Puffinus Puget Pugh Pugin Puglia Pugwash Puiia Puinavi Puinavian Puinavis Puiseux Pujunan Pukhtun Pukhtuns Puklich Pukwana Pul Pula Pulaski Pulaskis Pulaya Pulayan Pulcheria Pulchi Pulchia Pulcifer Pulcinella Pulesati Pulex Pulian Pulicidae Pulitzer Pulitzers Pulj Pulling Pullman Pullmanise Pullmanize Pullmans Pulmonaria Pulmonata Pulmonifera Pulmotor Pulmotors Pulmotrachearia Pulmozyme Pulmozymes Pulsatilla Pulsifer Pulteney Pultneyville Pulvinaria Pumblechook Pume Pump Pumpsie Punak Punakha Punan Punans Punch Puncheon Punchinello Punchinelloes Punchinellos Pune Pungoteague Punic Punica Punicaceae Punjab Punjabi Punjabis Punke Puno Punt Punta Puntan Puntarenas Puntlatsh Punxsutawney Pupidae Pupillidae Pupin Pupipara Pupivora Puposky Puppis Pupuluca Puquina Puquinan Pur Purana Puranas Puranic Purasati Purbach Purbeck Purbeckian Purcell Purcellville Purchas Purdin Purdon Purdue Purdum Purdy Purdys Purex Purgatorio Purgatory Purgitsville Puri Purim Purims Purina Purington Puritan Puritaness Puritanic Puritanical Puritanise Puritaniser Puritanism Puritanisms Puritanize Puritanizer Puritanly Puritans Purity Purkinje Purkinjean Purlear Purling Purmela Purpura Purse Pursglove Purshia Puru Puruha Purupuru Purus Purvis Puryear Pusan Puschkinia Pusey Puseyism Puseyisms Puseyistic Puseyistical Puseyite Puseyites Pushan Pushkin Pushkinian Pushto Pushtu Pushtun Pushtuns Puss Pussy Pusztadr Putana Putin Putnam Putnamville Putnem Putney Puto Putorius Putredinis Putsch Putscher Putsches Puttergill Puttnam Putumayo Puunene Puxico Puya Puyallup Puzo Pvt Py Pyanepsia Pyatigorsk Pyatt Pycnanthemum Pycnocoma Pycnodonti Pycnodontidae Pycnodus Pycnogonida Pycnonotidae Pycnonotinae Pycnonotus Pydna Pygididae Pygidium Pygmalion Pygmies Pygmy Pygobranchia Pygobranchiata Pygopodes Pygopodidae Pygopus Pyhrric Pylades Pylaemenes Pylaeus Pylas Pyle Pylesville Pylle Pylos Pym Pynchon Pynchonesque Pyne Pyongyang Pyote Pyotr Pyracantha Pyraceae Pyraechmes Pyrales Pyralidae Pyralididae Pyralidoidea Pyrameis Pyramidalism Pyramidalist Pyramidella Pyramidellidae Pyramidist Pyramidon Pyramus Pyrausta Pyraustinae Pyrenaean Pyrenaeus Pyrene Pyrenean Pyreneans Pyrenees Pyreneus Pyrenochaeta Pyrenomycetales Pyrenomycetes Pyrenomycetineae Pyrenopeziza Pyrethrum Pyrex Pyrexes Pyribenzamine Pyridium Pyriphlegethon Pyrites Pyrnrientales Pyroceram Pyrocerams Pyrocystis Pyrodine Pyrola Pyrolaceae Pyromorphidae Pyronema Pyronia Pyrosoma Pyrosomatidae Pyrosomidae Pyrotheria Pyrotherium Pyrrha Pyrrhic Pyrrho Pyrrhocoridae Pyrrhonean Pyrrhonian Pyrrhonic Pyrrhonism Pyrrhonisms Pyrrhonist Pyrrhonistic Pyrrhonists Pyrrhonize Pyrrhuloxia Pyrrhus Pyrula Pyrularia Pyrus Pyszka Pythagoras Pythagorean Pythagoreanise Pythagoreanism Pythagoreanisms Pythagoreanize Pythagoreanly Pythagoreans Pythagoric Pythagorical Pythagorically Pythagorism Pythagorist Pythagorize Pythagorizer Pytheas Pythia Pythiaceae Pythiacystis Pythiad Pythiads Pythiambic Pythian Pythians Pythias Pythic Pythios Pythium Pythius Pytho Python Pythonesque Pythonidae Pythoninae Pythonissa Pythonomorpha Pytlik Pyxidanthera Pyxidis Pyxis Périgord Périgueux Pétain Pôrto Q QA QAM QARANC QAS QB QBP QC QD QDA QDCS QE QED QEF QEI QET QF QIC QID QIS QKt QKtP QLI QM QMC QMF QMG QMP QMS QN QNP QNS QP QQV QR QRA QRP QRSS QS QSL QSO QSS QST QSY QTC QTY QUANGO QUANTAS QUEL QV QWERTY QWL Qabalah Qadarite Qaddafi Qaddish Qaddishim Qadhafi Qadianis Qadiriya Qairwan Qajar Qantas Qatar Qatari Qataris Qeshm Qiana Qianas Qingdao Qiqihar Qishm Qkt Qld Qoheleth Qom Qoran Qq Quaalude Quaaludes Quackenbush Quader Quadi Quadragesima Quadragesimal Quadrantid Quadrantids Quadratifera Quadrigesima Quadrigesimal Quadrigesimas Quadrula Quadrumana Quaequae Quail Quaitso Quakake Quaker Quakerdom Quakeress Quakeric Quakerisation Quakerise Quakerish Quakerishly Quakerishness Quakerism Quakerisms Quakerization Quakerize Quakerlet Quakerlike Quakerly Quakers Quakership Quakerstreet Quakertown Quakery Quamasia Quamoclit Quanah Quant Quantico Quantrill Quantz Quaoar Quapaw Quapaws Quar Quarryville Quarta Quartana Quartas Quarter Quarters Quartet Quartis Quartodeciman Quartus Quartzsite Quashee Quashees Quashi Quashie Quashies Quasimodo Quasimodos Quasqueton Quassia Quaternary Quathlamba Quatsino Quattrocentro Quattrocentros Quayle Qubecois Que Quebec Quebecer Quebecers Quebeck Quebecker Quebeckers Quebecois Quebradillas Quechan Quechans Quechee Quechua Quechuan Quechuans Quechuas Queen Queena Queenanne Queenie Queens Queensberry Queensland Queenslander Queenslanders Queenstown Quelea Quelimane Quelpart Quemado Quemoy Quenby Queneau Quenemo Quenna Quennie Quent Quentin Quenton Querataro Quercia Querciflorae Quercus Querecho Querendi Querendy Queres Queretaro Queri Querida Queridas Quernales Quertaro Quesnay Quesnel Questa Queston Quetta Quetzalcoatl Quezaltenango Quezon Quiangan Quibdo Quibdu Quiberon Quiche Quiches Quichua Quichuan Quichuas Quick Quickel Quickman Quicksburg Quidae Quidde Quiddist Quigley Quiina Quiinaceae Quilcene Quileute Quill Quillagua Quillaja Quillan Quillon Quilmes Quimbaya Quimby Quimper Quin Quinaielt Quinapalus Quinault Quinby Quince Quincey Quincy Quinebaug Quinlan Quinn Quinnesec Quinnimont Quinnipiac Quinquagesima Quinquagesimal Quinquagesimas Quinquatria Quinquatrus Quinque Quint Quinta Quintana Quinter Quintero Quintessa Quintie Quintilian Quintilis Quintilla Quintillian Quintin Quintina Quintius Quinton Quintus Quinwood Quirinal Quirinalia Quirinals Quirinus Quirita Quirite Quirites Quirk Quisling Quisqualis Quita Quitaque Quitemoca Quiteno Quiteri Quiteria Quiteris Quitman Quito Quitt Quitu Quivira Quixote Quixotes Quixotic Quixotical Quixotism Qulin Qulllon Qum Qumran Qung Quogue Quonset Quonsets Quoratean Quorn Quran Qurans Qurti Qutb Québecois Qy R RA RAAF RAC RACE RACEP RAD RADA RADAR RADIO RADM RAEC RAF RAFVR RAID RAM RAMC RAMP RAMs RAN RAND RAO RAOC RAR RARDE RARE RARP RAS RASC RATFOR RATO RAVC RAdm RB RBC RBE RBHC RBI RBIs RBOC RBOR RBT RBTL RC RCA RCAF RCAS RCB RCC RCCh RCF RCH RCI RCL RCLDN RCM RCMAC RCMP RCN RCO RCP RCS RCSC RCT RCU RCVR RCVS RD RDA RDBMS RDC RDES RDF RDL RDM RDP RDS RDT RDTE RDX RE REA REC RECON REGIS REIT REM REME REMOBS REMs REN REO REQSPEC RETMA REX REXX RF RFA RFC RFCs RFD RFE RFI RFLP RFP RFQ RFS RFT RGB RGBI RGP RGS RGU RH RHA RHC RHG RHS RHV RI RIACS RIAS RIBA RIC RICS RID RIF RIFF RIIA RILM RIM RIP RIPE RIPS RISC RISLU RIT RITA RJ RJE RL RLC RLCM RLD RLDS RLG RLIN RLL RLOGIN RLT RM RMA RMAS RMATS RMC RMF RMI RMM RMR RMS RN RNA RNAS RNAase RNAases RNAse RNAses RNGC RNLI RNOC RNR RNVR RNWMP RNZAF RNZN RO ROA ROB ROC ROE ROFF ROFL ROG ROH ROI ROK ROM RONA RONABIT ROP ROSAT ROSE ROSPA ROT ROTC ROTL ROTS ROUS ROW ROYGBIV RP RPC RPG RPI RPM RPN RPO RPQ RPS RPV RQ RQS RQSM RR RRB RRC RRIP RRO RS RSA RSB RSC RSCS RSE RSFSR RSGB RSH RSI RSJ RSL RSLE RSLM RSM RSN RSPB RSPCA RSR RSS RSTS RSTSE RSU RSV RSVP RSWC RT RTA RTAC RTC RTF RTFM RTFMed RTFMing RTFMs RTG RTL RTLS RTM RTMP RTR RTS RTSE RTSL RTT RTTY RTU RU RUC RUM RV RVSVP RVs RW RWA RWC RWE RWM RX Ra Raab Raama Raamses Raasch Raaum Raaumur Rab Rabaal Rabah Rabassa Rabat Rabaul Rabbi Rabbinic Rabbinica Rabbinist Rabbinite Rabelais Rabelaisian Rabelaisianism Rabelaism Rabi Rabia Rabiah Rabias Rabin Rabinowitz Rabis Rabjohn Rabkin Rabush Racamier Race Raceland Rachaba Rachael Rachel Rachele Rachelle Rachianectes Rachiglossa Rachman Rachmaninoff Rachmaninov Rachmanism Rachycentridae Rachycentron Racine Racinian Rackerby Rackham Racklin Racovian Rad Radack Radborne Radbourne Radbun Radburn Radcliff Radcliffe Raddatz Raddi Raddie Raddy Radetzky Radferd Radford Radha Radhakrishnan Radiata Radical Radicals Radicula Radie Radiguet Radiolaria Radiolites Radiolitidae Radiotron Radisson Radke Radley Radloff Radman Radmen Radmilla Radnor Radnorshire Radom Radu Rae Raeann Raeburn Raeford Raenell Raetia Raetian Raetians Raetic Raf Rafa Rafael Rafaela Rafaelia Rafaelita Rafaelle Rafaellle Rafaello Rafaelof Rafat Rafe Rafer Raff Raffaelesque Raffaello Raffarty Rafferty Raffin Raffles Rafflesia Rafflesiaceae Raffo Rafi Rafiq Rafsanjani Rafter Ragan Ragen Ragence Ragg Raglan Ragland Ragley Ragnar Ragnarok Ragnaroks Ragnarök Rago Ragouzis Ragsdale Ragucci Ragusa Rahab Rahal Rahanwin Rahel Rahm Rahman Rahmann Rahmatour Rahr Rahu Rahway Rai Raia Raiae Raiford Raiidae Raila Raimannia Raimes Raimondi Raimondo Raimund Raimundo Raina Rainah Rainbows Raine Rainelle Rainer Raines Rainger Rainie Rainier Rains Rainsville Rainwater Rais Raj Raja Rajab Rajabs Rajah Rajasthan Rajasthani Rajendra Rajes Rajewski Raji Rajidae Rajiv Rajkot Rajpoot Rajpoots Rajput Rajputana Rajputs Rajshahi Rakata Rakel Rakia Ralaigh Ralegh Raleigh Ralf Ralfston Ralina Ralleigh Ralli Rallidae Rallinae Ralls Rallus Ralph Ralston Ram Rama Ramachandra Ramada Ramadan Ramadans Ramadhan Ramadoux Ramae Ramage Ramah Ramaism Ramaite Ramakrishna Raman Ramanandi Ramanujan Ramapithecus Ramayana Ramayanas Ramazan Ramazans Rambam Ramberg Rambert Rambo Ramboesque Ramboism Rambort Rambouillet Rambouillets Rambow Ramburt Rame Ramean Rameau Ramee Ramer Rameses Rameseum Ramesse Ramesses Ramessid Ramesside Ramey Ramiah Ramilie Ramilies Ramillie Ramillied Ramillies Ramin Ramirez Ramiro Ramism Ramisms Ramist Ramistical Ramists Ramman Rammohun Ramnenses Ramnes Ramo Ramon Ramona Ramonda Ramoosii Ramos Ramphastidae Ramphastides Ramphastos Rampling Rampur Ramsay Ramsdell Ramsden Ramses Ramseur Ramsey Ramsgate Ramstein Ramunni Ramusi Ramwat Ran Rana Ranales Ranatra Ranburne Rancagua Rance Rancell Ranchester Ranchi Ranchod Rancocas Rand Randa Randal Randalia Randall Randallite Randallstown Randee Randel Randell Randene Randers Randi Randia Randie Randite Randle Randleman Randlett Randolf Randolph Randsburg Randwick Randy Ranee Ranella Ranere Raney Range Rangel Rangeley Rangely Ranger Rangers Rangifer Rangoon Rani Rania Ranice Ranidae Ranie Ranier Ranina Raninae Ranique Ranit Ranita Ranite Ranitta Ranjiv Rank Rankin Rankine Rann Ranna Ranquel Ransell Ransom Ransome Ransomville Ranson Ranterism Rantoul Ranunculaceae Ranunculales Ranunculus Ranzania Ranzini Rao Raouf Raoul Raoulia Rap Rapaces Rapacki Rapallo Rapanea Rapateaceae Rape Rapelje Raphael Raphaela Raphaelesque Raphaelic Raphaelism Raphaelite Raphaelitism Raphaelle Raphanus Raphia Raphidiidae Raphidodea Raphidoidea Raphine Raphiolepis Rapidan Rapp Rappist Rappite Raptores Rapture Rapunzel Raquel Raquela Rarden Rareyfy Raritan Rarotonga Rarotongan Rarotongans Ras Rasalas Rasalgethi Rasalhague Rascal Raseda Rasenna Raseta Rashi Rashid Rashida Rashidi Rashidov Rashomon Rasht Rashti Rasia Rask Raskin Raskind Raskolnik Raskolniki Raskolniks Rasla Rasmussen Rasores Rasputin Rasselas Rasta Rastaban Rastafari Rastafarian Rastafarianism Rastafarianisms Rastafarians Rastafaris Rastaman Rastamen Rastas Rastus Rasure Ratcliff Ratcliffe Ratha Rathaus Rathauser Rathbone Rathdrum Rathenau Rather Ratheuser Ratib Ratisbon Ratitae Ratlam Ratliff Raton Ratskeller Rattan Rattigan Rattray Rattus Rauch Raul Raumur Raunion Rauraci Raurich Raurici Rausch Rauschenburg Rauschenbusch Rauscher Rauwolfia Ravana Raveaux Ravel Ravelian Raven Ravena Ravenala Ravencliff Ravendale Ravenden Ravenel Ravenelia Ravenna Ravens Ravensara Ravensdale Ravenswood Ravenwood Ravi Ravia Ravid Ravinia Raviv Ravo Ravonelle Rawalpindi Rawdan Rawden Rawdin Rawdon Rawl Rawley Rawlings Rawlins Rawlinson Rawlplug Rawlplugs Rawson Rawsthorne Ray RayBan Raybans Raybin Raybourne Raybrook Rayburn Raychel Raycher Raye Rayford Rayland Rayle Rayleigh Raymond Raymonds Raymondville Raymore Raymund Raymundo Rayna Raynah Raynard Raynata Rayne Raynell Raynelle Rayner Raynesford Raynham Raynold Raynor Rayonism Rayonisms Rayonist Rayonistic Rayonists Raysal Rayshell Raytheon Rayville Raywick Raywood Razid Razoumofskya Rb Rct Rd RdAc Rdesheimer Rdhos Re Rea Reace Read Reade Reader Readfield Reading Readington Readlyn Readsboro Readstown Readus Ready Readyville Reagan Reaganism Reaganite Reaganites Reaganomics Reagen Reagenesque Reahard Realgymnasium Realitos Realpolitik Realpolitiks Realschule Realtor Realtors Reames Reamonn Reamstown Reamy Reaper Reardan Reardon Reasnor Reasoner Reaum Reaumur Reave Reb Reba Rebah Rebak Rebane Rebba Rebbecca Rebe Rebeca Rebecca Rebeccaism Rebeccaites Rebecka Rebeka Rebekah Rebekkah Rebel Rebels Rebersburg Rebhun Reblochon Reblochons Reboulia Rebs Rebuck Recamier Recent Receptaculites Receptaculitidae Rech Recha Rechaba Rechabite Rechabitism Recife Recit Reckford Recklinghausen Recollect Recollet Reconstruction Reconstructionism Reconstructionisms Reconstructionist Reconstructionists Recor Recorde Records Rect Rectigraph Rector Rectortown Recurvirostra Recurvirostridae Red Redan Redart Redash Redbank Redbanks Redbrick Redbridge Redby Redcliff Redcrest Redd Reddell Redder Reddest Reddick Reddin Redding Redditch Reddy Redeemer Redemptine Redemptionist Redemptorist Redemptorists Redeye Redfield Redford Redfox Redgrave Redhook Rediffusion Redig Redkey Redlands Redleg Redlion Redman Redmer Redmon Redmond Redmund Redon Redondo Redowl Redrock Redroe Redruth Reds Redstar Redstone Redunca Reduviidae Reduvius Redux Reduxes Redvale Redvers Redwater Redway Redwine Redwing Ree Reeba Reebok Reece Reed Reeda Reede Reeder Reeders Reedley Reeds Reedsburg Reedsport Reedsville Reedville Reedy Reef Reeher Reel Reelsville Reena Rees Reese Reeseville Reesville Reeta Reeva Reeve Reeves Reevesville Reflex Reform Reformati Reformation Reformationism Reformationist Reformations Reformed Reformer Reformers Reforms Refton Refugio Reg Regain Regalecidae Regalecus Regan Regazzi Regen Regence Regency Regensburg Reger Reges Regga Reggi Reggiano Reggie Reggis Reggy Regin Regina Reginae Reginald Reginauld Regine Regiomontanus Regis Register Rego Regor Regt Regulares Regularia Regulus Reheboth Rehm Rehnberg Rehnquist Rehobeth Rehoboam Rehoboams Rehoboth Rehobothan Rehrersburg Reich Reiche Reichel Reichenbach Reichenberg Reichert Reichian Reichs Reichsbank Reichsffhrer Reichsfuhrer Reichsland Reichslander Reichsmark Reichsrat Reichsrath Reichstag Reichstags Reichstein Reid Reidar Reider Reidsville Reidville Reifel Reigate Reik Reiko Reilly Reimarus Reimer Reims Reimthursen Rein Reina Reinald Reinaldo Reinaldos Reinbeck Reine Reinecke Reiner Reiners Reinert Reinertson Reinhard Reinhardt Reinhart Reinhold Reinholds Reinke Reinold Reinwald Reinwardtia Reis Reisch Reiser Reisfield Reisinger Reisman Reiss Reisterstown Reiter Reith Reitman Rejang Reki Reklaw Relay Reld Reliance Rella Rellia Relly Rellyan Rellyanism Rellyanite Rem Rema Remagen Remarque Rembert Rembrandt Rembrandtesque Rembrandtish Rembrandtism Remde Remembrancer Remembrancers Remer Remi Remijia Remington Remlap Remmer Remoboth Remonstrance Remonstrant Remonstrants Remoudou Rempe Remscheid Remsen Remsenburg Remus Remy Rena Renado Renae Renaissance Renaissances Renaissancist Renaissant Renalara Renaldo Renan Renard Renardine Renascence Renascences Renata Renate Renato Renaud Renault Renckens Rene Renealmia Renee Renell Renelle Reneta Renferd Renfred Renfrew Renfrewshire Reni Renick Renie Renilla Renillidae Renita Reniti Rennane Renner Rennes Rennie Rennold Renny Reno Renoir Renovo Rensselaer Rensselaerville Rentiesville Rento Renton Rentsch Rentschler Rentz Renville Renwick Renzo Reo Rep Repeal Rephael Repplier Representative Representatives Reptilia Repton Repub Republic Republican Republicanism Republicanisms Republicans Republics Requiem Requiems Requienia Requip Requips Resa Resaca Rescriptor Rescriptors Rese Reseda Resedaceae Resee Reseta Resht Resistance Resistances Resistencia Resnais Resor Respighi Responsa Ress Ressler Restany Reste Restiaceae Restio Restionaceae Restitutionist Restivo Reston Restoration Restoril Restorils Resurrection Resurrections Reszke Reta Retepora Reteporidae Retha Retiariae Reticularia Reticulosa Reticulum Retinospora Retrovir Retrovirs Retsof Rett Rettig Rettke Reub Reube Reuben Reubenites Reubens Reuchlin Reuchlinian Reuchlinism Reuel Reuilly Reunion Reus Reuter Reuters Reuther Reutlingen Reuven Rev Reva Reval Revelation Revelations Revell Revelo Revere Reverence Reverences Reverend Reviel Reviere Revillo Revisable Revkah Revloc Revlon Revolite Revolution Revolutionary Rew Rewey Rex Rexana Rexane Rexanna Rexanne Rexburg Rexenite Rexer Rexes Rexferd Rexford Rexfourd Rexine Rexist Rexmond Rexmont Rexroth Rexville Rey Reydell Reydon Reyes Reykjavik Reymont Reyna Reynaldo Reynard Reynards Reynaud Reyno Reynold Reynolds Reynoldsburg Reynoldsville Reynosa Reziwood Rezulin Rezulins Rezzani Rf Rgen Rgt Rh Rhabditis Rhabdocarpum Rhabdocoela Rhabdocoelida Rhabdomonas Rhabdophora Rhabdopleura Rhacianectes Rhacomitrium Rhacophorus Rhadamanthine Rhadamanthus Rhadamanthys Rhaetia Rhaetian Rhaetians Rhaetic Rhagionidae Rhagodia Rhame Rhamnaceae Rhamnales Rhamnes Rhamnus Rhamphorhynchus Rhamphosuchus Rhapidophyllum Rhapis Rhaptopetalaceae Rhea Rheae Rheba Rhee Rheems Rhegnopteri Rheidae Rheiformes Rheims Rhein Rheinberry Rheingau Rheingold Rheinhessen Rheinland Rheinlander Rheita Rhemish Rhemist Rhene Rhenish Rhenishes Rhesus Rheta Rhetian Rhetic Rhett Rhetta Rheum Rhexia Rheydt Rhiamon Rhiana Rhianna Rhiannon Rhianon Rhibhus Rhigmus Rhina Rhinanthaceae Rhinanthus Rhine Rhinebeck Rhinecliff Rhinegold Rhinegrave Rhinehart Rhineland Rhinelander Rhinelanders Rhineodon Rhineodontidae Rhines Rhineura Rhinidae Rhinobatidae Rhinobatus Rhinocerotidae Rhinoderma Rhinolophidae Rhinophidae Rhinophis Rhinoptera Rhinopteridae Rhinosporidium Rhinthonic Rhinthonica Rhipidistia Rhipidoglossa Rhipidoptera Rhipiphoridae Rhipiptera Rhipsalis Rhiptoglossa Rhizina Rhizinaceae Rhizobium Rhizocarpeae Rhizocephala Rhizoctonia Rhizodus Rhizoflagellata Rhizophora Rhizophoraceae Rhizopoda Rhizopogon Rhizopus Rhizostomae Rhizostomata Rhizota Rhne Rhoades Rhoadesville Rhoads Rhoda Rhodamine Rhodamines Rhodanian Rhodanus Rhode Rhodelia Rhodell Rhodes Rhodesdale Rhodesia Rhodesian Rhodesians Rhodesoid Rhodhiss Rhodia Rhodian Rhodians Rhodie Rhodobacteriaceae Rhodobacterioideae Rhodococcus Rhodocystis Rhodomelaceae Rhodope Rhodophyceae Rhodophyllidaceae Rhodophyta Rhodopis Rhodora Rhodoraceae Rhodos Rhodospermeae Rhodospirillum Rhodothece Rhodotypos Rhodus Rhody Rhodymenia Rhodymeniaceae Rhodymeniales Rhoeadales Rhoecus Rhoeo Rhoetus Rhomboganoidei Rhombozoa Rhona Rhonda Rhondda Rhone Rhones Rhopalocera Rhopalura Rhu Rhus Rhynchobdellae Rhynchobdellida Rhynchocephala Rhynchocephali Rhynchocephalia Rhynchocoela Rhynchonella Rhynchonellacea Rhynchonellidae Rhynchophora Rhynchopinae Rhynchops Rhynchosia Rhynchospora Rhynchota Rhyncostomi Rhynd Rhyne Rhyner Rhynia Rhyniaceae Rhynocheti Rhynsburger Rhys Rhyssa Rhytidodon Rhytina Rhytisma Ri Ria Rialto Riana Riancho Riane Rianna Riannon Rianon Riba Ribal Ribandism Ribandist Ribaudo Ribbentrop Ribble Ribbonism Ribbonman Ribeirto Ribera Ribero Ribes Ribhus Ribicoff Ribston Ric Rica Ricard Ricarda Ricardama Ricardian Ricardianism Ricardo Ricca Riccardo Ricci Riccia Ricciaceae Ricciales Riccio Riccioli Riccius Rice Riceboro Ricetown Riceville Rich Richara Richard Richarda Richardia Richardo Richards Richardson Richardsonia Richardsville Richardton Richart Richburg Richebourg Richel Richela Richelieu Richella Richelle Richer Richers Richet Richey Richeyville Richfield Richford Richia Richie Richier Richlad Richland Richlands Richma Richmal Richman Richmond Richmonddale Richmondena Richmonder Richmonders Richmondville Richmound Richter Richthofen Richton Richvale Richview Richville Richwood Richwoods Richy Rici Ricinulei Ricinus Rick Rickard Rickart Rickenbacker Ricker Rickert Ricketts Rickettsia Rickettsiales Rickey Ricki Rickie Rickman Rickover Rickreall Rickwood Ricky Rico Ricoriki Rida Riddle Riddlesburg Riddleton Ride Rider Riderhood Riderwood Ridgecrest Ridgedale Ridgefield Ridgeland Ridgeley Ridgely Ridgeview Ridgeville Ridgeway Ridgewood Ridglea Ridglee Ridgley Ridgway Ridinger Ridley Ridott Rie Riebling Riedel Riefenstahl Riegel Riegelsville Riegelwood Rieger Riehl Rieka Riel Riella Riemann Riemannean Riemannian Rienzi Rienzo Ries Riesel Riesling Rieslings Riesman Riess Riessersee Rieth Rieti Rietveld Rievaulx Rif Riff Riffi Riffian Riffians Riffle Riffs Rifi Rifian Rifkin Rifs Rifton Riga Rigby Rigdon Rigel Rigelian Riggall Riggins Riggs Right Rightism Rightisms Rightist Rightists Rights Rigi Rigil Rigoberto Rigoletto Rigsdag Rigsmaal Rigsmal Rigveda Rigvedas Rigvedic Riha Rihana Riis Rijeka Rijksmuseum Rijn Rijswijk Rik Rika Rikari Riker Riki Rikki Riksdag Riksmaal Riksmal Riksmål Rilda Riley Rileyville Rilke Rillings Rillis Rillito Rillton Rima Rimas Rimbaud Rimersburg Rimini Rimma Rimola Rimouski Rina Rinaldo Rinard Rincon Rind Rinde Rindge Rinee Rinehart Riner Rineyville Ring Ringatu Ringe Ringgold Ringle Ringler Ringling Ringo Ringoes Ringold Ringsmuth Ringsted Ringtown Ringwood Rinna Rintoul Rio Riobard Riocard Rioja Riojas Rion Rior Riordan Riorsson Rios Rip Riparii Riparius Ripleigh Riplex Ripley Ripon Ripp Rippey Ripple Ripplemead Ripples Rippon Ripuarian Ripuarians Riquewihr Ririe Risa Risco Rise Risley Rison Risorgimenti Risorgimento Risorgimentos Riss Rissa Risser Rissian Rissoa Rissoidae Rist Risteau Rita Ritalin Ritalins Ritch Ritchie Rite Rites Riti Ritner Ritschlian Ritschlianism Ritter Rittman Ritwan Ritz Ritzes Ritzville Riva Rivalee Rivard Rivas River Rivera Riverbank Riverdale Riveredge Riverhead Rivers Riverside Riverton Rivervale Riverview Rives Rivesville Rivi Riviera Rivieras Rivina Rivinian Rivkah Rivularia Rivulariaceae Rivy Rix Rixeyville Rixford Riyadh Riza Rizal Rizas Rizika Rizzi Rizzio Rizzo Rjchard Rn Ro Roach Roachdale Roald Roana Roane Roann Roanna Roanne Roanoke Roark Roarke Roath Rob Robaina Robards Robb Robbert Robbi Robbia Robbie Robbin Robbins Robbinsdale Robbinston Robbinsville Robbiole Robby Robbyn Robeline Robena Robenhausian Robenia Roberdsman Robers Roberson Robersonville Robert Roberta Robertlee Roberto Roberts Robertsburg Robertsdale Robertson Robertsville Roberval Robeson Robesonia Robespierre Robet Robi Robigalia Robigo Robigus Robillard Robin Robina Robinet Robinett Robinetta Robinette Robinia Robins Robinson Robinsonville Robison Robitussin Robles Roboam Robson Robstown Robt Robus Roby Robyn Roca Rocamadur Rocca Roccella Roccellaceae Rocco Roch Rocha Rochambeau Rochdale Roche Rochea Rochell Rochella Rochelle Rochemont Rocheport Rocher Rochert Rochester Rochette Rochford Rochkind Rochus Rociada Rocinante Rock Rockafellow Rockall Rockaway Rockdale Rockefeller Rockel Rocker Rockey Rockfall Rockfield Rockford Rockhall Rockham Rockhampton Rockholds Rockhouse Rockie Rockies Rockingham Rockland Rockledge Rocklin Rockmart Rockne Rockport Rockton Rockvale Rockview Rockville Rockwall Rockwell Rockwood Rocky Rococo Rococos Rocouyenne Rocray Rocroi Rod Roda Rodanthe Rodd Roddenberry Roddick Roddie Roddy Rodenhouse Rodentia Roderfield Roderic Roderica Roderich Roderick Roderigo Rodessa Rodez Rodge Rodger Rodgers Rodi Rodie Rodin Rodina Rodinal Rodinesque Rodl Rodman Rodmann Rodmun Rodmur Rodney Rodolfo Rodolph Rodolphe Rodolphus Rodrich Rodrick Rodrigo Rodriguez Rodrique Rodriquez Roduco Rodzinski Roe Roebling Roede Roee Roeg Roehm Roentgen Roer Roerich Roeselare Roeser Roethke Roff Rog Rogaine Rogaines Rogationtide Rogelio Roger Rogerio Rogero Rogers Rogerson Rogersville Roget Roggen Rogier Rogovy Rogozen Rohilla Rohn Rohrersville Rohypnol Rohypnols Roi Roice Roid Rois Roist Rojas Rok Rokach Rokadur Roku Rola Rolaids Rolan Roland Rolanda Rolandic Rolando Rolandson Roldan Rolesville Rolette Rolex Roley Rolf Rolfe Rolfed Rolfer Rolfers Rolfing Rolfings Rolfs Rolfston Rolla Rolland Rollerblade Rollerbladed Rollerblades Rollerblading Rollet Rollie Rollin Rollingstone Rollinia Rollins Rollinsford Rollinsville Rollo Rollot Rolo Rolodex Rolodexes Rolph Rolvaag Rom Roma Romadur Romaean Romagna Romagnese Romagnol Romagnole Romaic Romain Romaine Romains Romaji Romalda Roman Romanal Romanas Romance Romandom Romane Romanes Romanese Romanesque Romanesques Romanhood Romani Romania Romanian Romanians Romanic Romanics Romanie Romanies Romaniform Romanis Romanisation Romanisations Romanise Romanised Romaniser Romanisers Romanises Romanish Romanising Romanism Romanisms Romanist Romanistic Romanists Romanite Romanity Romanization Romanizations Romanize Romanized Romanizer Romanizers Romanizes Romanizing Romanly Romano Romanoff Romanoffs Romanos Romanov Romanovs Romans Romansch Romansh Romantic Romanticism Romanticisms Romanticist Romanticists Romantics Romanus Romany Romayor Rombauer Romberg Rombert Romblon Rome Romelda Romeldale Romeldales Romelle Romenia Romeo Romeon Romeos Romero Romes Romescot Romeshot Romeu Romeward Romewards Romeyn Romic Romie Romilda Romilly Romina Romine Romipetal Romish Romishly Romishness Romishnesses Romito Rommanies Rommany Rommel Romney Romneya Romneys Romo Romola Romona Romonda Roms Romulian Romulo Romulus Romy Ron Rona Ronal Ronald Ronalda Ronan Ronay Roncaglian Roncesvalles Roncevaux Ronceverte Ronco Ronda Rondeletia Rondi Rondnia Rondon Rondonia Rone Ronel Ronen Roneo Rong Ronga Ronica Ronkonkoma Ronks Ronn Ronna Ronne Ronnholm Ronni Ronnica Ronnie Ronny Ronsard Ronsardian Ronsardism Ronsardist Ronsardize Ronsdorfer Ronsdorfian Ronstadt Rontgen Roobbie Rooke Rooker Rooney Roopville Roos Roose Roosevelt Rooseveltian Roost Root Roots Rootstown Roper Ropesville Roque Roquefort Roqueforts Rora Roraima Rori Roridula Roridulaceae Rorie Roripa Rorippa Roris Rorke Rorry Rorrys Rorschach Rorschachs Rory Ros Rosa Rosabel Rosabella Rosabelle Rosaceae Rosalba Rosalee Rosaleen Rosales Rosalia Rosalie Rosalind Rosalinda Rosalinde Rosaline Rosalyn Rosalynd Rosamond Rosamund Rosan Rosana Rosane Rosanky Rosanna Rosanne Rosaries Rosario Rosary Rosati Rosburg Roschach Roscian Roscius Rosco Roscoe Roscommon Rose Roseann Roseanna Roseanne Roseau Roseberry Rosebery Roseboom Roseboro Rosebud Roseburg Rosecan Rosecrans Rosedale Rosel Roseland Roselane Roselani Roselawn Roselba Roselia Roselin Roseline Rosella Roselle Rosellen Rosellinia Roselyn Rosemare Rosemari Rosemaria Rosemarie Rosemary Rosemead Rosemonde Rosemont Rosen Rosena Rosenbaum Rosenberg Rosenberger Rosenbergia Rosenblast Rosenblatt Rosenblum Rosencrantz Rosendale Rosendo Rosene Rosenfeld Rosenhayn Rosenkrantz Rosenkranz Rosenquist Rosenstein Rosenthal Rosenwald Rosenzweig Rosetta Rosette Roseville Rosewall Rosewood Roshan Rosharon Roshelle Rosholt Rosiclare Rosicrucian Rosicrucianism Rosicrucianisms Rosicrucians Rosie Rosina Rosinante Rosine Rosinski Rosio Rosita Roskes Roskilde Roslyn Rosman Rosmarin Rosmarinus Rosminian Rosminianism Rosmunda Rosner Rosol Ross Rossbach Rossburg Rosse Rossellini Rossen Rosser Rossetti Rossford Rossi Rossie Rossing Rossini Rossinian Rossiter Rossiya Rosslare Rosslyn Rossmore Rossner Rosston Rossuck Rossville Rossy Rost Rostand Rostellaria Rosten Rostock Rostov Rostovtzeff Rostra Rostropovich Rostrum Roswald Roswell Rosy Roszak Rota Rotal Rotala Rotalia Rotameter Rotameters Rotan Rotanese Rotanev Rotarian Rotarianism Rotarianisms Rotarians Rotaries Rotary Rotas Rotatoria Rotavator Rotavators Rotberg Rotenburg Roter Roth Rothberg Rothbury Rothenberg Rother Rotherham Rothermere Rothesay Rothko Rothmuller Rothsay Rothschild Rothstein Rothville Rothwell Roti Rotifera Rotman Rotorua Rototiller Rotovator Rotovators Rotow Rotse Rotterdam Rotterdammer Rotterdammers Rottweiler Rottweilers Rouault Roubaix Roubillac Rouen Rouennais Rougemont Roughrider Roughriders Rougon Roulers Rouman Roumania Roumanian Roumanians Roumelia Roumeliote Roumell Roundhead Roundheads Roundo Roundrock Rourke Rouseville Rousseau Rousseauan Rousseauesque Rousseauian Rousseauism Rousseauisms Rousseauist Rousseauistic Rousseauists Rousseauite Roussel Roussellian Roussillon Routh Rouvin Roux Rouzerville Rovaniemi Rove Rovelli Rover Rovit Rovner Row Rowan Rowe Rowell Rowen Rowena Rowesville Rowland Rowlandson Rowleian Rowlesburg Rowlett Rowletts Rowley Rowleyan Rowling Rowney Rox Roxana Roxane Roxanna Roxanne Roxboro Roxburgh Roxburghe Roxburghiaceae Roxburghshire Roxbury Roxi Roxie Roxine Roxobel Roxolani Roxton Roxy Roy Royal Royalist Royalists Royall Royals Royalton Roybn Royce Royd Roydd Royden Roye Royena Royersford Royette Royo Royston Roystonea Roz Rozalie Rozalin Rozamond Rozanna Rozanne Roze Rozek Rozel Rozele Rozella Rozelle Rozet Rozi Rozina Rp Rriocard Rs Rte Ru Rua Ruanda Ruandas Rubaiyat Rubbermaid Rubbico Rubbra Rube Rubel Ruben Rubenesian Rubenesque Rubenism Rubenisme Rubenist Rubeniste Rubens Rubensian Rubenstein Ruberta Rubetta Rubi Rubia Rubiaceae Rubiales Rubicola Rubicon Rubicons Rubie Rubik Rubin Rubina Rubinstein Rubio Rubtsovsk Rubus Ruby Rubye Rucervus Ruchbah Rucker Ruckersville Ruckman Rudbeckia Rudd Ruddie Ruddigore Ruddy Rude Rudelson Ruder Rudesheimer Rudge Rudich Rudie Rudiger Rudin Rudista Rudistae Rudman Rudmasday Rudolf Rudolfo Rudolph Rudolphe Rudolphus Rudra Rudulph Rudwik Rudy Rudyard Rue Ruel Ruella Ruelle Ruellia Ruelu Rueter Rufe Rufena Ruff Ruffi Ruffin Ruffina Ruffo Rufford Ruffsdale Rufina Rufino Rufisque Ruford Rufus Rugbeian Rugbies Rugby Rugen Rugg Rugger Ruggiero Rugosa Ruhl Ruhnke Ruhr Ruidoso Ruisdael Ruiz Rukbat Rukeyser Rulander Rules Ruleville Rulo Rum Ruman Rumania Rumanian Rumanians Rumanias Rumelia Rumelian Rumely Rumery Rumex Rumford Rumi Rumilly Rumina Ruminantia Rumney Rumor Rumpelstiltskin Rumper Rumpf Rumsey Rumsfeld Rumson Runa Runcie Runck Runcorn Rundbogenstil Rundgren Rundi Rundis Rundstedt Runge Runion Runkel Runkle Runne Runnells Runnemede Runnymede Runstadler Runtgen Runyon Runyonesque Rupert Ruperta Ruperto Ruphina Rupicapra Rupicaprinae Rupicola Rupicolinae Ruppertsberger Ruppia Ruprecht Ruralhall Rurik Ruritan Ruritania Ruritanian Ruritans Rus Rusa Ruscher Ruscio Ruscus Ruse Rusedski Rusel Rusell Rusert Rush Rushdie Rushford Rushing Rushland Rushmore Rushsylvania Rushville Rusin Rusins Rusk Ruskin Ruskinian Ruso Russ Russel Russelia Russell Russellite Russellton Russellville Russelyn Russene Russes Russi Russia Russian Russianisation Russianisations Russianise Russianised Russianises Russianising Russianism Russianist Russianization Russianizations Russianize Russianized Russianizes Russianizing Russianness Russiannesses Russians Russiaville Russification Russifications Russificator Russified Russifier Russifies Russify Russifying Russine Russism Russki Russkie Russkies Russkis Russky Russniak Russo Russolatrous Russolatry Russom Russomania Russomaniac Russomaniacal Russon Russophil Russophile Russophiles Russophilia Russophilias Russophilism Russophilist Russophils Russophobe Russophobes Russophobia Russophobiac Russophobias Russophobism Russophobist Russula Rust Rustbelt Rustburg Rustice Rusticus Rustie Rustin Ruston Rusty Rusyn Rusyns Ruta Rutaceae Rutan Rutelinae Rutger Rutgers Ruth Ruthann Ruthanne Ruthe Ruthene Ruthenes Ruthenia Ruthenian Ruthenians Rutherford Rutherfordton Rutherfurd Rutheron Ruthi Ruthian Ruthie Ruthlee Ruthton Ruthven Ruthville Ruthy Rutiodon Rutland Rutlandshire Rutledge Rutter Ruttger Rutuli Ruvolo Ruwenzori Ruy Ruyle Ruysdael Ruyter Ruzich Rwanda Rwandan Rwandans Rwandas Rwandese Rwy Rx Rxs Ry Ryan Ryann Ryazan Rybinsk Rycca Rychard Rydal Rydberg Rydder Ryde Ryder Ryderwood Rye Ryeland Ryland Ryle Ryley Rymandra Rynchospora Ryon Rysler Ryswick Ryter Rytina Ryukyu Ryukyuan Ryukyuans Ryun Ryunosuke Ryurik Réaumur S SA SAA SAAB SABC SABME SABRE SABRmetrics SAC SACEUR SACEur SACK SADD SAE SAG SAGA SAI SAIC SAKDC SALI SALT SAM SAMA SAMOS SAMPEX SAMTO SAO SAP SAR SARA SAREX SARS SARTS SAS SASE SASI SAT SATB SAW SAYE SAfr SAm SAmer SB SBA SBC SBE SBIC SBLI SBMS SBS SBU SBUS SBWR SC SCA SCAD SCADA SCADC SCAME SCAMP SCAN SCAT SCB SCC SCCA SCCS SCE SCED SCF SCI SCIFI SCM SCMS SCO SCOOPS SCOT SCOTS SCP SCPC SCPD SCR SCRAM SCS SCSA SCSI SCT SCTS SCU SCUBA SCUD SCX SD SDA SDB SDCD SDD SDF SDH SDI SDIO SDIS SDL SDLC SDM SDN SDO SDOC SDP SDR SDRC SDRs SDS SDSC SDU SDV SE SEAL SEAP SEAS SEATO SEC SECAM SECNAV SED SEI SEL SELV SEM SEN SER SERC SERM SERMs SES SESRA SEST SET SETI SEX SEbS SF SFD SFDM SFMC SFO SFRPG SG SGI SGML SGMP SGP SHA SHAEF SHAPE SHAR SHCD SHEN SHF SHM SHRPG SI SIAM SIC SID SIDS SIG SIGCAT SIMD SIMM SIN SINE SINS SIP SIPC SIPP SIPS SIR SIRTF SIS SISAL SISCOM SIT SITA SJ SJC SJD SK SKU SL SLA SLADE SLALOM SLAM SLAN SLAPP SLAPPed SLAPPing SLAPPs SLAR SLBM SLC SLDC SLE SLED SLIC SLIM SLIP SLP SLR SLS SLUFAE SM SMA SMAS SMASF SMASPU SMB SMC SMD SMDF SMDI SMDR SMDS SME SMEX SMG SMI SMILS SMIT SMM SMO SMOC SMOH SMOP SMP SMPTE SMR SMS SMSA SMT SMTP SN SNA SNADS SNAFU SNAP SNCC SNCF SNET SNF SNG SNM SNMP SNOBOL SNP SNPA SNR SNTSC SNU SO SOAC SOAP SOAR SOB SOC SOF SOFIA SOGAT SOH SOHIO SOHO SOL SOMM SONAR SONDS SONET SOP SOR SOS SOSes SOSs SOUND SOW SOs SP SPA SPAG SPAN SPAR SPARC SPARS SPC SPCA SPCC SPCK SPCS SPD SPDL SPDM SPE SPEC SPECT SPF SPI SPIM SPITBOL SPL SPNI SPOT SPQR SPR SPS SPU SPUCDL SPUD SPUR SQA SQC SQE SQL SQLDS SQUID SR SRA SRAM SRB SRBM SRC SRCN SRD SRI SRM SRN SRO SRP SRS SRTS SS SSA SSAP SSAS SSB SSBAM SSC SSCP SSD SSDU SSE SSEL SSF SSFF SSG SSI SSM SSME SSN SSO SSP SSPC SSPF SSPRU SSPS SSR SSRI SSRMS SSS SST SSTO SSTTSS SSTV SSW SScD ST STAGE STARS STB STC STD STDM STI STILO STIS STL STM STN STOH STOL STOLport STP STRPG STS STSCI STSI STTNG STTOS STV SU SUG SUID SUM SUN SUNDIAG SUNET SUNVIEW SUNY SURANET SURF SUSE SUSP SUV SV SVC SVID SVP SVR SVS SVVS SW SWA SWAK SWAN SWAS SWAT SWB SWF SWG SWIFT SWM SWO SWS SWbS SWbW SX SXS SY SYC SYMPL SYN SYR SYSGEN Sa Saab Saad Saadi Saam Saame Saami Saamis Saan Saanen Saanens Saar Saarbren Saarbrfcken Saarbrucken Saarbrücken Saare Saaremaa Saarinen Saarland Saarlander Saarlanders Saatchi Sab Saba Sabadell Sabaean Sabaeanism Sabaeans Sabaeism Sabael Sabah Sabahan Sabahans Sabaism Sabaist Sabal Sabalaceae Saban Sabanahoyos Sabanaseca Sabaoth Sabathikos Sabatier Sabatini Sabattus Sabazian Sabazianism Sabazios Sabba Sabbat Sabbatarian Sabbatarianism Sabbatarianisms Sabbatarians Sabbatary Sabbatean Sabbath Sabbathaian Sabbathaic Sabbathaist Sabbathbreaker Sabbathbreaking Sabbathise Sabbathism Sabbathize Sabbathkeeper Sabbathkeeping Sabbathless Sabbathlike Sabbathly Sabbaths Sabbatia Sabbatian Sabbatic Sabbatical Sabbatically Sabbaticalness Sabbatist Sabbatization Sabbatize Sabbats Sabean Sabeans Sabec Sabella Sabellaria Sabelle Sabelli Sabellian Sabellianism Sabellianisms Sabellianize Sabellians Sabellidae Saber Saberhagen Saberio Sabetha Sabia Sabiaceae Sabian Sabianism Sabik Sabillasville Sabin Sabina Sabinal Sabine Sabines Sabinian Sabino Sabinsville Sabir Sable Sabme Sabmi Sabra Sabras Sabre Sabrina Sabromin Sabsay Sabu Sabuja Sabula Saburo Sac Sacae Sacagawea Sacajawea Sacaton Saccammina Saccha Saccharomyces Saccharomycetaceae Saccharomycetales Saccharomycetes Saccharum Sacci Saccidananda Sacco Saccobranchiata Saccobranchus Saccolabium Saccomyidae Saccomyina Saccomyoidea Saccomys Saccopharyngidae Saccopharynx Saccorhiza Sacculina Sacha Sachertorte Sachertortes Sacheverell Sachi Sachiko Sachs Sachsen Sachsse Sacian Sacken Sackey Sackman Sacks Sacksen Sackville Saco Sacrament Sacramentarian Sacramentarianism Sacramentarianisms Sacramentarians Sacramentary Sacramento Sacraments Sacrificati Sacripant Sacrobosco Sacs Sacttler Sacul Sad Sada Sadachbia Sadalmelik Sadalsuud Sadat Saddam Saddler Sadducaic Sadducean Sadducee Sadduceeism Sadduceeisms Sadduceeist Sadducees Sadducism Sadducize Sade Sadella Sadi Sadick Sadie Sadieville Sadira Sadirah Sadiras Sadite Sadler Sadoc Sadoff Sadonia Sadorus Sadowa Sadowski Sadr Sadsburyville Sadye Saeed Saeger Saegertown Saehrimnir Saeima Safar Safars Safavi Safavid Safavids Safavis Safawid Safeway Saffarian Saffarid Saffell Saffian Saffier Safford Saffren Safi Safier Safine Safini Safir Safire Safko Sagai Sagamihara Sagamore Sagan Sagaponack Sage Sager Sageretia Sagerman Saghalien Sagina Saginaw Sagitarii Sagitta Sagittae Sagittaria Sagittarian Sagittarians Sagittarii Sagittariid Sagittarius Sagittariuses Sagittary Sagittid Sagle Sagola Sagra Saguache Saguenay Saguerus Sagunto Saguntum Sahadeva Sahaptian Sahaptians Sahaptin Sahaptins Sahara Saharan Saharanpur Saharans Saharian Saharic Sahel Sahelian Sahelians Sahib Sahibah Sahidic Saho Sahuarita Saida Saidee Saidel Saideman Saidi Saied Saiff Saigon Saigonese Sailesh Saimon Sainfoin Saint Saintpaulia Saints Saintsbury Saionji Saipan Saipanese Saiph Sair Saire Sais Saishu Saishuto Saite Saites Saitic Saitis Saito Saiva Saivaism Saivaisms Saivas Saivism Saivisms Saivite Sajovich Sak Saka Sakai Sakais Sakalava Sakel Sakelarides Sakell Sakellaridis Sakha Sakhalin Sakharov Sakhuja Saki Sakkara Sakmar Sakovich Saks Sakta Saktas Sakti Saktism Saktisms Sakuntala Sakyamuni Sal Salaam Salacia Saladin Salado Salahi Salaidh Salamanca Salamandra Salamandridae Salamandrina Salambria Salame Salaminian Salamis Salammbo Salammbô Salamone Salangi Salangia Salangidae Salar Salas Salazar Salba Salbu Salchow Salchows Salchunas Saldee Salduba Sale Saleem Salem Salema Salemburg Saleme Salena Salene Salernitan Salernitans Salerno Salesian Salesians Salesin Salesville Salford Salfordville Salian Salians Saliaric Salic Salicaceae Salicales Salicariaceae Salicornia Salida Salientia Salieri Salim Salina Salinan Salinas Salinella Salineno Salineville Salinger Salique Salisbarry Salisburia Salisbury Salish Salishan Salishans Salishes Salita Salitpa Saliva Salivan Salix Salk Salkum Sall Salle Sallee Salley Salli Sallie Sallis Sallisaw Sallust Sallustian Sally Sallyann Sallyanne Sallybloom Sallye Salm Salmacis Salmagundi Salman Salmanaser Salmanasers Salmanazar Salmanazars Salmo Salmon Salmonella Salmonidae Salmonoidea Salmonoidei Salol Saloma Salome Salomi Salomie Salomo Salomon Salomone Salomonia Salomonian Salomonic Salon Salonica Salonika Saloniki Salons Salop Salopian Salopians Salot Salpa Salpidae Salpiglossis Salpinx Salsbury Salsola Salsolaceae Salta Saltator Saltatoria Salten Salter Salterpath Salters Saltgum Saltigradae Saltillo Saltlick Salto Salton Saltsburg Saltsman Saltville Saltzman Saluda Saluki Salukis Salus Salva Salvador Salvadora Salvadoraceae Salvadoran Salvadorans Salvadore Salvadorean Salvadoreans Salvadorian Salvadorians Salvarsan Salvarsans Salvationist Salvationists Salvator Salvatore Salvay Salvelinus Salvia Salvidor Salvini Salvinia Salviniaceae Salviniales Salvisa Salvo Salvucci Salween Salwey Salyer Salyersville Salyut Salzburg Salzgitter Salzhauer Sam Sama Samadera Samain Samal Samala Samale Samalla Saman Samandura Samani Samanid Samantha Samanthia Samar Samara Samarang Samaria Samarinda Samaritan Samaritaness Samaritanism Samaritans Samarkand Samarqand Samarra Samas Samau Samaveda Sambal Sambara Sambathe Sambo Sambre Sambucaceae Sambucus Samburg Samburu Samella Samford Samgarnebo Samhain Samhita Samhitas Sami Samia Samian Samians Samira Samis Samish Samit Samkhya Saml Sammael Sammarinese Sammarinesi Sammartini Sammer Sammie Sammies Sammons Sammy Samnani Samnite Samnites Samnium Samnorwood Samoa Samoan Samoans Samogitian Samolus Samos Samosatenian Samoset Samotherium Samothrace Samothracian Samothracians Samothrake Samoyed Samoyede Samoyedes Samoyedic Samoyeds Samp Sampo Sampras Sampsaean Sampson Sams Samsam Samsien Samson Samsoness Samsonian Samsonic Samsonistic Samsonite Samsons Samsun Samsung Samucan Samucu Samuel Samuela Samuele Samuella Samuelson Samul Samy Samydaceae San Sana Sanaa Sanalda Sanballat Sanbo Sanborn Sanborne Sanburn Sancerre Sancerres Sancha Sanchez Sancho Sanchung Sanctology Sanctus Sanctuses Sancus Sancy Sand Sandakan Sandawe Sandberg Sandburg Sande Sandeep Sandell Sandemanian Sandemanianism Sandemanism Sander Sanders Sanderson Sandersville Sandhurst Sandi Sandia Sandie Sandinismo Sandinista Sandinistas Sandler Sandon Sandor Sandoval Sandown Sandpoint Sandra Sandrakottos Sandringham Sandro Sandrocottus Sandron Sandry Sands Sandstrom Sandusky Sandwich Sandy Sandye Sanetch Sanferd Sanfo Sanford Sanforise Sanforised Sanforises Sanforising Sanforize Sanforized Sanforizes Sanforizing Sanfourd Sanfred Sang Sangallensis Sangallo Sangamon Sanger Sanggil Sangh Sangha Sangiovese Sangir Sangirese Sango Sangraal Sangrail Sangreal Sanguinaria Sanguisorba Sanguisorbaceae Sanhedrim Sanhedrims Sanhedrin Sanhedrins Sanhedrist Sanhita Sanicula Sanjay Sanjiv Sanka Sankara Sankaran Sankey Sankhya Sankhyas Sanmicheli Sannoisian Sanpoil Sans Sansar Sansbury Sanscrit Sanscritic Sansei Sanseis Sansen Sansevieria Sansk Sanskrit Sanskritic Sanskritise Sanskritist Sanskritists Sanskritization Sanskritize Sansom Sanson Sansone Sansovino Santa Santal Santalaceae Santalales Santali Santalis Santals Santalum Santana Santander Santar Santaram Santarem Santaria Santayana Santbech Santee Santees Santer Santeria Santerias Santiagan Santiagans Santiago Santini Santo Santolina Santoro Santos Sanusi Sanusis Sanvitalia Sanyakoan Sanyu Sao Saon Saone Saorstat Saos Saoshyant Saotic Saperda Sapers Saphar Sapharensian Saphars Saphra Sapienza Sapindaceae Sapindales Sapindus Sapir Sapium Saponaria Saponi Sapota Sapotaceae Sapowith Sapphera Sapphic Sapphics Sapphira Sapphire Sapphism Sapphisms Sapphist Sapphists Sappho Sapporo Saprolegnia Saprolegniaceae Saprolegniales Sapulpa Saqqara Sar Sara Saraann Sarabaite Saracen Saracenian Saracenic Saracenical Saracenism Saracenlike Saracens Sarad Sarada Saragat Saragosa Saragossa Sarah Sarahann Sarahsville Saraiya Sarajane Sarajevo Sarakolet Sarakolle Saraland Saralee Saramaccaner Saran Saranac Saransk Sarasota Sarasvati Saratoga Saratogan Saratogas Saratov Saravan Sarawak Sarawakese Sarawan Sarazen Sarchet Sarcina Sarcobatus Sarcococca Sarcocolla Sarcocystidea Sarcocystis Sarcodes Sarcodina Sarcogyps Sarcophaga Sarcophagidae Sarcophilus Sarcopsylla Sarcopsyllidae Sarcoptes Sarcoptidae Sarcorhamphus Sarcosporida Sarcosporidia Sarcoxie Sarcura Sard Sardanapalian Sardanapallos Sardanapalos Sardanapalus Sardegna Sardella Sardes Sardian Sardians Sardinia Sardinian Sardinians Sardis Sardo Sardoin Sardou Saree Sarelon Sarena Sarene Sarepta Saretta Sarette Sargasso Sargassum Sarge Sargeant Sargent Sargents Sargentville Sargodha Sargon Sargonic Sargonid Sargonide Sari Sarid Sarigue Sarilda Sarina Sarine Sarita Sark Sarkaria Sarkese Sarkis Sarles Sarmatia Sarmatian Sarmatians Sarmatic Sarnath Sarnen Sarnia Sarnoff Sarona Saronville Saros Sarothamnus Sarothra Sarouk Saroyan Sarpedon Sarracenia Sarraceniaceae Sarraceniales Sarraute Sarre Sarsar Sarsechim Sarsi Sarson Sart Sartell Sarthe Sartin Sartish Sarto Sarton Sartre Sartrean Sartrian Sartrianism Saruk Sarum Sarvarthasiddha Sarver Sarvodaya Sarzan Sasabe Sasak Sasakwa Sasanian Sasanians Sasanid Sasanids Sascha Sasebo Saseno Sasha Sashenka Sask Saskatchewan Saskatchewanian Saskatchewanians Saskatoon Sasnett Saspamco Sasquatch Sasquatches Sass Sassak Sassamansville Sassan Sassanian Sassanians Sassanid Sassanidae Sassanide Sassanids Sassari Sassella Sassenach Sassenachs Sassenage Sasser Sasserides Sassetta Sassoon Sassurean Sassurian Sastean Sat Satan Satanael Satanas Satanism Satanisms Satanist Satanistic Satanists Satanity Satanology Satanophanic Satanophany Satanophil Satanophobia Satanship Satanta Satartia Satchmo Satcitananda Sateia Sathrum Satie Satieno Sato Satrae Satsop Satsuma Satsumas Satterfield Satterlee Sattley Saturday Saturdays Satureia Saturn Saturnal Saturnale Saturnalia Saturnalian Saturnalias Saturnia Saturnian Saturnians Saturnicentric Saturniidae Saturnine Saturnus Satyagraha Satyagrahas Satyr Satyricon Satyridae Satyrinae Satyrs Sau Saucier Saucy Saud Sauder Saudi Saudis Saudra Sauer Sauerbraten Sauers Saugatuck Saugerties Saugus Sauk Sauks Saukville Saul Sauls Saulsbury Sault Saulteur Saum Saumur Sauncho Saunder Saunders Saunderson Saunderstown Saundra Saunemin Sauquoit Saura Sauraseni Saurashtra Saurauia Saurauiaceae Sauria Saurischia Sauroctonos Saurodontidae Saurognathae Sauromatian Sauropoda Sauropsida Sauropterygia Saurornithes Saururaceae Saururae Saururus Sausa Sausalito Saussure Saussurea Saussurean Sautee Sauterne Sauternes Sauttoirs Sauvagesia Sauveur Sauvignon Sauvignons Sava Savadove Savage Savaii Saval Savanna Savannah Savara Savdeep Save Savell Saverton Savery Savick Savigna Savil Savill Saville Savina Savior Saviour Savitar Savitri Savitt Savoie Savona Savonarola Savonarolist Savonburg Savonnerie Savory Savoy Savoyard Savoyards Saw Sawaiori Sawan Sawney Sawneys Sawtelle Sawyer Sawyere Sawyerville Sawyor Sax Saxapahaw Saxe Saxen Saxena Saxeville Saxicava Saxicola Saxicolidae Saxicolinae Saxifraga Saxifragaceae Saxis Saxish Saxon Saxonburg Saxondom Saxonian Saxonians Saxonic Saxonical Saxonically Saxonies Saxonisation Saxonise Saxonised Saxonises Saxonish Saxonising Saxonism Saxonisms Saxonist Saxonite Saxonization Saxonize Saxonized Saxonizes Saxonizing Saxonly Saxons Saxony Saxton Say Sayal Sayao Saybrook Sayce Sayed Sayer Sayers Sayette Sayio Sayles Saylor Saylorsburg Sayner Sayre Sayres Sayreville Sayville Sazerac Sazeracs Saône Sb SbE SbW Sbaikian Sbrinz Sc ScB ScBC ScBE ScD ScM Scabiosa Scaean Scala Scalaria Scalariidae Scaldis Scales Scalf Scalia Scaliger Scalops Scalopus Scamander Scamandrius Scammon Scan Scand Scandaroon Scanderbeg Scandia Scandian Scandians Scandic Scandinavia Scandinavian Scandinavianism Scandinavians Scandix Scandura Scania Scanian Scanic Scansores Scaphander Scaphandridae Scaphiopodidae Scaphiopus Scaphites Scaphitidae Scaphopoda Scappoose Scarabaeidae Scarabaeinae Scaramouch Scaramouche Scarborough Scarbro Scarface Scarfe Scargill Scaridae Scarito Scarlatti Scarlet Scarlett Scarron Scarrow Scarsdale Scarus Scarville Scaticook Scatophagidae Scelidosaurus Scelidotherium Sceliphron Sceloporus Scenedesmus Scenopinidae Sceptic Sceptical Scepticism Scepticisms Sceptics Scever Scevo Scevor Scevour Sch SchMusB Schaab Schaaff Schabzieger Schach Schacht Schacker Schadenfreude Schadenfreudes Schaefer Schaeffer Schaefferia Schaefferstown Schaerbeek Schafer Schaffel Schaffer Schaffhausen Schaghticoke Schaller Schalles Schantz Schaper Schapira Scharaga Scharf Scharff Schargel Scharlachberger Scharnhorst Scharwenka Schary Schatz Schaumberger Schaumburg Schberg Schear Scheat Schechinger Schechter Scheck Schecter Schedar Schedius Scheel Scheele Scheer Scheers Scheherazade Scheherezade Scheherezades Scheider Scheidt Schein Scheiner Scheld Schelde Scheldt Scheler Schell Schellens Scheller Schelling Schellingian Schellingianism Schellingism Schellsburg Schenck Schenectady Schenevus Schenley Schererville Scherle Scherman Schertz Scheuchzeria Scheuchzeriaceae Scheveningen Schftz Schiaparelli Schick Schickard Schiedam Schiele Schiff Schiffman Schifra Schild Schilit Schiller Schilling Schilt Schindler Schinica Schinus Schipa Schippers Schiro Schisandra Schisandraceae Schistocerca Schistosoma Schizaea Schizaeaceae Schizanthus Schizognathae Schizogregarinae Schizogregarinida Schizolaenaceae Schizomeria Schizomycetes Schizonemertea Schizoneura Schizonotus Schizopetalon Schizophragma Schizophyceae Schizophyllum Schizophyta Schizopoda Schizotrypanum Schlater Schlauraffenland Schlegel Schleichera Schleiden Schleiermacher Schlenger Schlesien Schlesinger Schlessel Schlessinger Schleswig Schley Schlicher Schlick Schlieffen Schliemann Schlitz Schloss Schlosser Schlummerlied Schluter Schmalkaldic Schmeisser Schmeissers Schmeling Schmeltzer Schmerz Schmidt Schmierkse Schmitt Schmitz Schnabel Schnabelkanne Schnapp Schnauzer Schnecksville Schneider Schneiderian Schneiderman Schnell Schnittke Schnitzler Schnorr Schnur Schnurr Schober Schoenberg Schoenbergian Schoenburg Schoenfelder Schoening Schoenius Schoenocaulon Schoenus Schofield Schoharie Scholastic Scholasticism Scholasticisms Scholastics Scholem Scholz Schomberger Schomburgkia Schonbein Schonberg Schonfeld Schonfield Schongauer Schonthal Schoodic Schoof School Schoolcraft Schoolman Schoolmen Schools Schopenhauer Schopenhauereanism Schopenhauerian Schopenhauerism Schopenhauerisms Schott Schottky Schou Schouten Schow Schrader Schram Schramke Schrdinger Schrebera Schreck Schrecklichkeit Schreib Schreibe Schreiber Schreibman Schrick Schrieffer Schriever Schroder Schrodinger Schroeder Schroedinger Schroer Schroth Schrudinger Schrund Schrödinger Schubert Schubertian Schug Schuh Schul Schulberg Schule Schulein Schulenburg Schuler Schulman Schulter Schultz Schulz Schulze Schumacher Schuman Schumann Schumer Schumpeter Schunbein Schunberg Schurman Schurz Schuschnigg Schuster Schutz Schutzstaffel Schuyler Schuylerville Schuylkill Schwab Schwaben Schwalbea Schwann Schwartz Schwartzkopf Schwarz Schwarzenegger Schwarzian Schwarzkopf Schwarzwald Schweiker Schweinfurt Schweitzer Schweiz Schwejda Schwendenerian Schwenk Schwenkfelder Schwenkfeldian Schweppes Schwerin Schwertner Schwing Schwinger Schwinn Schwitters Schwitzer Schwyz Schönberg Schütz Sci Sciadopitys Sciaena Sciaenidae Sciaeniformes Scian Sciara Sciaridae Sciarinae Scibert Science Sciences Scientific Scientist Scientists Scientology Scilla Scillies Scillitan Scillonian Scillonians Scilly Scincidae Scincomorpha Scincus Scio Sciot Sciota Scioto Scipio Scirophoria Scirophorion Scirpus Scirtopoda Scissurella Scissurellidae Scitaminales Scitamineae Scituate Sciuridae Sciuromorpha Sciuropterus Sciurus Sclar Sclater Sclav Sclavonian Scleranthaceae Scleranthus Scleria Scleroderma Sclerodermaceae Sclerodermata Sclerodermatales Sclerodermi Sclerogeni Scleropages Scleroparei Scleroscope Sclerospora Sclerostoma Sclerotinia Scndor Scobey Scofield Scoggin Scolecida Scoles Scolia Scoliidae Scolopacidae Scolopax Scolopendra Scolopendrella Scolopendrellidae Scolopendridae Scolopendrium Scolymus Scolytidae Scolytus Scomber Scombresocidae Scombresox Scombridae Scombriformes Scombroidea Scone Scooba Scopas Scopelidae Scopelus Scopes Scopidae Scopp Scops Scopularia Scopulipedes Scopus Scoresby Scornik Scorpaena Scorpaenidae Scorpidae Scorpididae Scorpii Scorpiid Scorpio Scorpioidea Scorpion Scorpiones Scorpionida Scorpionidea Scorpionis Scorpios Scorpiurus Scorpius Scorsese Scorzonera Scot Scotch Scotchery Scotches Scotchification Scotchify Scotchiness Scotchman Scotchmen Scotchness Scotchwoman Scotchwomen Scotchy Scoter Scotia Scotic Scoticism Scotism Scotisms Scotist Scotistic Scotistical Scotists Scotize Scotland Scotlandwards Scotney Scotophile Scotophiles Scotophilia Scotophobe Scotophobes Scotophobia Scotophobic Scots Scotsman Scotsmen Scotswoman Scotswomen Scott Scottdale Scotti Scottice Scotticise Scotticised Scotticises Scotticising Scotticism Scotticisms Scotticize Scotticized Scotticizes Scotticizing Scottie Scotties Scottification Scottified Scottify Scottifying Scottish Scottisher Scottishly Scottishman Scottishness Scottishnesses Scottown Scotts Scottsbluff Scottsboro Scottsburg Scottsdale Scottsmoor Scottsville Scottville Scotty Scotus Scouse Scouser Scousers Scouses Scout Scouter Scouters Scouting Scoutings Scouts Scoville Scrabble Scrabbles Scranton Scratch Screens Screven Scriabin Scribe Scribner Scribners Scripps Script Scriptural Scripturalism Scripturalist Scripturality Scripturarian Scripture Scriptured Scriptureless Scriptures Scripturism Scripturist Scriven Scrivenor Scrivens Scrivings Scrogan Scroggins Scrooge Scrooges Scrope Scrophularia Scrophulariaceae Scruggs Scud Scudamore Scudary Scuddy Scudery Scuds Sculley Scullin Scully Sculptor Sculptorid Sculptoris Scunthorpe Scurlock Scutari Scutellaria Scutelleridae Scuti Scutibranchia Scutigera Scutigeridae Scutt Scutum Scylaceus Scyld Scylla Scyllaea Scyllaeidae Scyllaridae Scyllarus Scyllidae Scylliidae Scylliorhinidae Scylliorhinus Scyllium Scyphomedusae Scyphophori Scyphozoa Scyros Scyth Scythia Scythian Scythians Scythic Scythize Scytonema Scytonemataceae Scytopetalaceae Scytopetalum Se Seabeck Seabee Seabees Seabiscuit Seaborg Seabrook Seabrooke Seabury Seacliff Seaddon Seaden Seadon Seadrift Seaford Seaforth Seaforthia Seafowl Seaghan Seagirt Seagoville Seagram Seagrave Seagraves Seahurst Sealab Sealabs Seale Sealeyham Sealeyhams Sealston Sealy Sealyham Seaman Seamas Seami Seamus Sean Seana Seanad Seanor Searby Searcy Searle Searles Sears Searsboro Searsmont Searsport Seasan Seaside Season Seaspeak Seaton Seatonville Seattle Seattleite Seattleites Seaver Seavey Seaview Seavir Seba Sebastian Sebastiano Sebastichthys Sebastien Sebastodes Sebastopol Sebat Sebbie Sebec Sebeka Sebewaing Seboeis Seboim Seboyeta Sebree Sebright Sebring Sec Secale Secamone Secaucus Secchi Seceder Secessia Secession Secessional Secessiondom Secessionist Secessionists Sechium Sechuana Seckel Seckels Seco Secombe Seconal Seconals Secor Secrest Secret Secreta Secretariat Secretaries Secretary Secrets Secs Sectary Secunda Secundas Secunderabad Securifera Securigera Seda Sedaceae Sedalia Sedan Sedang Sedarim Sedberry Sedda Seddon Sedecias Sedentaria Seder Seders Sedgemoor Sedgewake Sedgewick Sedgewickville Sedgewinn Sedgwick Sedley Sedlik Sedna Sedona Sedrah Sedrahs Sedroth Sedum See Seebeck Seed Seeder Seedman Seeger Seekerism Seekonk Seel Seeland Seeley Seely Seelyville Seem Seema Seen Seena Seessel Seeto Sefekhet Seferiades Seferis Seffner Seften Sefton Seftton Sega Segal Segalman Seginus Segner Segni Segovia Segra Segre Seguin Segundo Segura Sehnsucht Seiber Seibert Seibold Seid Seidel Seiden Seidler Seidlitz Seidule Seif Seigel Seigler Seigneur Seigneurs Seignior Seigniors Seiko Seiling Seine Seinfeld Seishin Seistan Seiter Seitz Seiurus Seiyuhonto Seiyukai Sejanus Sejm Sejms Sejong Seka Sekane Sekani Seker Sekhmet Sekhwan Sekiu Seko Sekofski Sekondi Sekt Sekyere Sela Selachii Selachoidei Selachostome Selachostomi Selaginaceae Selaginella Selaginellaceae Selago Selah Selangor Selassie Selbornian Selby Selbyville Selda Seldan Selden Seldon Seldun Selectric Selemas Selemnus Selena Selene Selenga Selenicereus Selenidera Selenipedium Selenodonta Seler Selestina Seleta Seleucia Seleucian Seleucid Seleucidae Seleucidan Seleucidean Seleucidian Seleucidic Seleucids Seleucus Selfridge Selhorst Selia Selichoth Selie Selig Seligman Seligmann Selihoth Selim Selima Selimah Selina Selinda Seline Selinsgrove Selinski Selinuntine Seljuk Seljukian Seljukians Seljuks Selkirk Selkirkshire Sell Sella Sellafield Sellars Selle Sellers Sellersburg Sellersville Selli Sellma Sello Sellotape Sellotaped Sellotapes Sellotaping Sells Selma Selmer Selmner Selmore Selry Selter Seltzer Selung Selway Selwin Selwyn Selz Selznick Sem Semaenov Semaeostomae Semaeostomata Semaleus Semang Semangs Semarang Sembrich Semecarpus Semela Semele Semenov Semeostoma Semeru Semiahmoo Semillon Semillons Seminole Seminoles Semionotidae Semionotus Semipalatinsk Semiramis Semiramize Semitaur Semite Semites Semitic Semiticise Semiticism Semiticist Semiticists Semiticize Semitics Semitisation Semitise Semitised Semitises Semitising Semitism Semitisms Semitist Semitists Semitization Semitize Semitized Semitizes Semitizing Semmes Semnae Semnones Semnopithecinae Semnopithecus Semora Semostomae Sempach Sempervivum Semtex Semtexes Sen Sena Senaah Senalda Senate Senates Senath Senatobia Senator Senci Sendai Sendak Sender Seneca Senecal Senecan Senecas Senecaville Senecio Senefelder Senegal Senegalese Senegambia Senegambian Senegambians Seney Senghor Senhauser Senhor Senhora Senhoras Senhores Senhorita Senhoritas Senhors Senijextee Senior Seniors Senlac Senn Senna Sennacherib Sennar Sennett Senoia Senones Senonian Senor Senora Senoras Senores Senorita Senoritas Senors Sension Senskell Sensurround Sentinel Senusi Senusian Senusis Senusism Senussi Senussian Senussis Senussism Senzer Seoul Seow Sep Separate Separatist Separatists Sepharad Sephardi Sephardic Sephardim Sepharvites Sephira Sephora Sepiidae Sepioidea Sepiola Sepiolidae Sepoy Seppala Sepsidae Sept September Septemberer Septemberism Septemberist Septembers Septembral Septembrian Septembriser Septembrisers Septembrist Septembrists Septembrize Septembrizer Septembrizers Septentrio Septentrion Septi Septibranchia Septibranchiata Septima Septmoncel Septobasidium Septocylindrium Septogloeum Septoria Septuagesima Septuagesimas Septuagint Septuagintal Septuagints Sepulveda Sequan Sequani Sequanian Sequatchie Sequim Sequoia Sequoya Sequoyah Sera Serabend Serafin Serafina Serafine Seraglio Serajevo Seram Serang Serapea Serapeum Serapeums Seraphim Seraphina Seraphine Serapias Serapic Serapis Serapist Serb Serbdom Serbia Serbian Serbians Serbize Serbonian Serbophile Serbophobe Serbs Sercial Sercq Sere Serean Seree Seremban Serena Serendib Serendip Serene Serengeti Serenitatis Serenity Serenoa Serer Seres Sereth Serevent Serg Serge Sergeant Sergeantsville Sergei Sergent Sergestus Sergias Sergio Sergipe Sergius Sergo Sergt Sergu Seri Serian Seric Serica Sericana Sericocarpus Seriform Serilda Seringapatam Serinus Seriola Seriolidae Serjania Serkin Serle Serles Serlio Seroka Serov Serpari Serpasil Serpens Serpent Serpentarian Serpentarii Serpentarius Serpentes Serpentian Serpentid Serpentinian Serpentis Serphidae Serphoidea Serpukhov Serpula Serpulae Serpulidae Serra Serranidae Serrano Serranus Serrasalmo Serratia Serrell Serricornia Serridentines Serridentinus Serrifera Sert Sertoman Sertomans Sertorius Sertularia Sertulariidae Servais Server Servetian Servetianism Servetnick Servetus Servia Servian Service Servidor Servite Servites Servius Serzone Serzones Sesamum Sesban Sesbania Seseli Seshat Sesia Sesiidae Sesostris Sesotho Sesser Sesshu Sessiliventres Sessions Sessler Sessrymnir Sestian Sestos Sesuto Sesuvium Set Seta Setaria Setbal Seth Sethi Sethian Sethic Sethite Sethrida Setibo Setifera Seto Seton Setophaga Setophaginae Setswana Settera Settle Setubal Seumas Seurat Seuss Sev Sevan Sevastopol Seve Sevener Sevenmile Seventies Seventy Severance Severen Severian Severin Severini Severinus Severn Severo Seversky Severson Severus Severy Sevierville Sevigne Sevik Sevilla Seville Sevillian Sevillians Sevin Sevins Sevres Sewanee Seward Sewaren Sewel Sewell Sewellyn Sewickley Sewole Sewoll Sexagesima Sexagesimas Sext Sextans Sextant Sextantis Sextilis Sexton Sextonville Sexts Sextus Seychelles Seychellois Seyfert Seyferts Seyhan Seyler Seymeria Seymour Seys Seyssel Sezen Sezession Señor Señora Señoras Señores Señorita Señoritas Señors Sfax Sfc Sforza Sgad Sgt Shaaban Shaabans Shaba Shaban Shabans Shabbas Shabbat Shabbath Shabbatot Shabbats Shabbir Shabbona Shabbos Shabboses Shabuoth Shabuoths Shacharith Shacklefords Shackleton Shadai Shaddock Shadow Shadowlands Shadrach Shadwell Shadydale Shadyside Shae Shaefer Shaeffer Shaer Shafer Shaff Shaffer Shaffert Shafiite Shafter Shaftesbury Shaftsburg Shaftsbury Shagia Shah Shahada Shahansha Shahaptian Shahaptians Shahaptin Shahaptins Shaharith Shahjahanpur Shahs Shaia Shaigia Shaikh Shaikiyeh Shaina Shaine Shaitan Shaiva Shaivism Shak Shaka Shaker Shakerdom Shakeress Shakerism Shakerisms Shakerlike Shakers Shakespeare Shakespearean Shakespeareana Shakespeareanism Shakespeareanisms Shakespeareanly Shakespeareans Shakespearian Shakespeariana Shakespearianism Shakespearians Shakespearise Shakespearize Shakespearolater Shakespearolatry Shakhty Shakopee Shaks Shakspere Shaksperean Shakspereans Shaksperian Shaksperianism Shaksperians Shakta Shaktas Shakti Shaktis Shaktism Shaktisms Shaktist Shaktists Shakuntala Shakyamuni Shala Shalako Shalimar Shallotte Shallowater Shalna Shalne Shalom Sham Shama Shamash Shambala Shambaugh Shambu Shamma Shammai Shammar Shamo Shamokin Shamrao Shamrock Shamus Shan Shana Shanahan Shanan Shanda Shandaken Shandean Shandee Shandeigh Shandie Shandon Shandong Shandra Shandy Shandyism Shane Shaner Shang Shangaan Shangalla Shanghai Shanghainese Shanghais Shango Shani Shanie Shaniko Shank Shankar Shankara Shankaracharya Shanks Shanksville Shanleigh Shanley Shanly Shanna Shannah Shannan Shannen Shanney Shannock Shannon Shannontown Shanon Shans Shansi Shanta Shantee Shantha Shantow Shantung Shantungs Shape Shaper Shapiro Shapleigh Shapley Shaptan Shara Sharaf Sharai Sharaku Sharas Shardana Sharet Sharezer Shargel Shari Sharia Shariat Sharif Sharira Sharity Sharl Sharla Sharleen Sharlene Sharline Sharma Sharman Sharon Sharona Sharonville Sharos Sharp Sharpe Sharpes Sharples Sharps Sharpsburg Sharpsville Sharptown Sharra Sharras Sharrie Sharron Shartlesville Sharyl Sharyn Shasta Shastan Shatner Shattuc Shattuck Shattuckville Shatzer Shauck Shaughn Shaughnessy Shaula Shaum Shaun Shauna Shaver Shavese Shavian Shaviana Shavianism Shavianisms Shavians Shavuot Shavuoth Shavuoths Shavuots Shaw Shawanee Shawanese Shawano Shawboro Shawmut Shawn Shawna Shawnee Shawnees Shawneetown Shawsville Shawville Shawwal Shawwals Shay Shaya Shayla Shaylah Shaylyn Shaylynn Shayn Shayna Shayne Shays Shaysite Shazar Shcharansky Shcheglovsk Shcherbakov Shea Sheaff Sheakleyville Shear Shearer Sheba Shebat Shebats Shebeli Sheboygan Shechem Shechemites Shechina Shechinah Shedd Shedir Sheds Sheeb Sheedy Sheehan Sheela Sheelagh Sheelah Sheeler Sheen Sheena Sheene Sheenie Sheenies Sheeny Sheepshanks Sheeran Sheeree Sheerness Sheetrock Sheetrocked Sheetrocking Sheetrocks Sheets Sheff Sheffie Sheffield Sheffy Shehab Sheila Sheilah Sheitan Shekinah Shekinahs Shel Shela Shelagh Shelah Shelba Shelbi Shelbiana Shelbina Shelburn Shelburne Shelby Shelbyville Sheldahl Shelden Sheldon Sheldonville Shelepin Sheley Shelia Sheline Shell Shellans Shelley Shelleyan Shelleyana Shelleyans Shelleyesque Shelli Shellian Shellie Shellman Shellsburg Shelly Shelman Shelocta Shelta Shelton Shelyak Shem Shema Shemaka Shemas Shembe Shemite Shemites Shemitic Shemitish Shemu Shen Shena Shenan Shenandoah Sheng Shenshai Shensi Shenstone Shenyang Sheol Shep Shepard Shepardsville Shepherd Shepherdia Shepherdstown Shepherdsville Shepley Sheply Shepp Sheppard Shepperd Sheppey Sheppton Sher Sherani Sherar Sherard Sherardia Sheratan Sheraton Sherborn Sherborne Sherbrooke Sherburn Sherburne Shere Sheree Sherer Shererd Sherfield Shergar Sheri Sheria Sheriat Sheridan Sherie Sherill Sherilyn Sheringham Sheriyat Sherj Sherl Sherley Sherline Sherlock Sherlocke Sherlockian Sherlocks Sherm Sherman Shermanesque Shermie Shermy Sherod Sherourd Sherpa Sherpas Sherr Sherramoor Sherrard Sherrer Sherri Sherrie Sherrill Sherrington Sherris Sherrod Sherrodsville Sherry Sherrymoor Shertok Sherurd Sherwin Sherwood Sherwynd Sherye Sheryl Sheryle Shesha Shetland Shetlander Shetlanders Shetlandic Shetlands Shetrit Shevardnadze Shevat Shevats Shevlin Shevlo Shewchuk Shewmaker Sheya Sheyenne Shia Shiah Shiahs Shias Shiatsu Shiatsus Shiatzu Shiatzus Shiau Shickley Shickshinny Shidler Shieh Shiekh Shields Shien Shiff Shifra Shifrah Shig Shigella Shih Shihchiachuang Shihkiachwang Shii Shiism Shiisms Shiite Shiites Shiitic Shijiazhuang Shik Shikibu Shikoku Shilh Shilha Shillelagh Shiller Shillington Shillong Shilluh Shilluk Shilluks Shiloh Shilton Shimazaki Shimberg Shimei Shimkus Shimonoseki Shin Shina Shinar Shinberg Shiner Shing Shingishu Shingleton Shingletown Shingon Shingons Shinhopple Shinichiro Shinnecock Shinnston Shins Shinto Shintoise Shintoism Shintoisms Shintoist Shintoistic Shintoists Shintoize Shintos Shinwari Shiocton Shipley Shipman Shipp Shippee Shippensburg Shippenville Shipshewana Shir Shira Shirah Shiraz Shirazes Shirberg Shire Shires Shiri Shirk Shirl Shirland Shirlands Shirlee Shirleen Shirlene Shirley Shirleysburg Shirlie Shirline Shiro Shiroma Shirvan Shishko Shittim Shiva Shivaism Shivaisms Shivaist Shivaistic Shivaists Shivaite Shively Shiverick Shivers Shiviti Shivitis Shizuoka Shkod Shkodaer Shkoder Shkodra Shkupetar Shlomo Shlu Shluh Shmuel Shoa Shoah Shoals Shobonier Shockley Shoemaker Shoemakersville Shohola Shoifet Shojo Shokan Sholapur Sholeen Sholem Sholes Sholley Sholokhov Sholom Shona Shonas Shongaloo Shopville Shor Shoran Shorans Shore Shorea Shoreditch Shoreham Shoreview Shorewood Shornick Short Shorter Shorterville Shorthorn Shorthorns Shortia Shortsville Shortzy Shoshana Shoshanna Shoshone Shoshonean Shoshones Shoshoni Shoshonis Shostakovich Shostakovitch Shotton Shotweld Shotwell Showa Showell Showers Showker Showlow Shree Shreeves Shrek Shreve Shreveport Shrewsbury Shri Shrier Shrine Shriner Shriners Shriver Shropshire Shropshires Shrove Shrovetide Shrovetides Shtokavski Shu Shubert Shubuta Shudra Shudras Shue Shufu Shugart Shuha Shuhali Shukria Shukulumbwe Shula Shulamite Shulamith Shulem Shuler Shulerville Shulins Shull Shullsburg Shulman Shulock Shult Shultz Shum Shuma Shuman Shumway Shunammite Shunk Shuping Shuqualak Shurlock Shurlocke Shurwood Shushan Shuswap Shute Shutesbury Shutz Shuzo Shwalb Shyamal Shylock Shylockian Shylockism Shylocks Si Sia Sialia Sialidae Sialis Sialkot Siam Siamese Sian Siana Siang Siangtan Sianna Sias Sib Sibbaldus Sibbie Sibby Sibeal Sibel Sibelius Sibell Sibella Sibelle Siber Siberia Siberian Siberians Siberic Siberson Sibie Sibilla Sibiric Sibiu Sible Siblee Sibley Sibyl Sibylla Sibylle Sibylline Sibyllist Sibyls Sic Sicambri Sicambrian Sicana Sicani Sicanian Sicard Sicel Siceliot Sices Sichuan Sicilia Sicilian Sicilianism Sicilians Sicily Sickert Sicklerville Siclari Sicular Siculi Siculian Sicyon Sicyonian Sicyonic Sicyos Sid Sida Sidalcea Siddha Siddhanta Siddhartha Siddhi Siddhis Siddon Siddons Siddra Sidell Sideritis Sideroxylon Sidewinder Sidgwick Sidhe Sidhu Sidky Sidman Sidmouth Sidnaw Sidnee Sidney Sidoma Sidon Sidoney Sidonia Sidonian Sidonians Sidonie Sidonius Sidonnie Sidoon Sidra Sidrach Sidrah Sidrahs Sidran Sidras Sidroth Sidur Sidwel Sidwell Sidwohl Sieber Sieg Siegbahn Siegel Siegfried Siegler Sieglinda Sieglingia Siegmund Sielen Siemens Siemreap Siena Sienese Sienkiewicz Siennese Sieper Siepi Sieracki Sierpinski Sierra Sierran Sierrans Sierras Sierraville Siesser Sieur Sieva Sievers Sieversia Sievert Siey Sif Sifatite Siffre Sifnos Sig Siganidae Siganus Sigaultian Sigel Sigfrid Sigfried Siggeir Sigillaria Sigillariaceae Sigismond Sigismondo Sigismund Sigismundo Sigler Sigma Sigmodontes Sigmund Signac Signe Signior Signor Signora Signorelli Signy Sigourney Sigrid Sigsbee Sigsmond Sigurd Sigvard Sigyn Sihanouk Sihasapa Sihasapas Sihon Sihonn Sihun Sihunn Sik Sika Sikandarabad Sikang Sikata Sikes Sikeston Sikh Sikhism Sikhisms Sikhs Siking Sikinnis Sikkim Sikkimese Sikko Sikorski Sikorsky Siksika Sil Silas Silastic Silastics Silber Silberman Silchester Silda Silden Sile Sileas Silenaceae Silenales Silene Sileni Silenus Siler Silerton Silesia Silesian Silesians Siletz Silex Silicea Silicispongiae Silicoflagellata Silicoflagellatae Silicoflagellidae Silicoidea Silicospongiae Silin Silipan Siliquaria Siliquariidae Sill Sillaginidae Sillago Sillanpaa Sillery Sillitoe Sillsby Silma Siloa Siloam Silone Siloum Silpha Silphidae Silsbee Silsby Silsbye Silures Siluria Silurian Silurians Siluric Siluridae Siluridan Siluroidei Silurus Silva Silvain Silvan Silvana Silvani Silvano Silvanus Silver Silverado Silvercliff Silverdale Silverius Silverman Silverpeak Silverplume Silvers Silverstar Silverstein Silverstreet Silverton Silverts Silverwood Silvester Silvestro Silvia Silvie Silvio Silvis Silvius Silvni Silybum Sim Sima Simaba Simah Simarouba Simaroubaceae Simbirsk Simblum Simdars Simenon Simeon Simeonism Simeonite Simferopol Simia Simiidae Simiinae Simionato Simla Simmel Simmental Simmentals Simmenthal Simmenthaler Simmenthalers Simmenthals Simmesport Simmie Simmonds Simmons Simms Simois Simoisius Simon Simona Simone Simonetta Simonette Simonian Simonianism Simonides Simonist Simonne Simonov Simons Simonsen Simonson Simonton Simosaurus Simpelius Simpkins Simplicidentata Simplicius Simplon Simpson Simpsons Simpsonville Sims Simsar Simsboro Simsbury Simson Simuliidae Simulium Sin Sina Sinae Sinaean Sinai Sinaic Sinaitic Sinaloa Sinan Sinanthropus Sinanthropuses Sinapis Sinarquist Sinarquista Sinarquistas Sinas Sinatra Sinbad Sinclair Sinclairville Sinclare Sind Sindbad Sindee Sindhi Sindhis Sindi Sindis Sine Sinead Sinegold Sinesian Sinfiotli Sinfjotli Singan Singapore Singaporean Singaporeans Singband Singer Singfo Singh Singhal Singhalese Singleton Singpho Singsing Singspiel Sinhailien Sinhala Sinhalas Sinhalese Sinian Sinic Sinicism Sinicisms Sinicization Sinicizations Sinicize Sinicized Sinicizes Sinicizing Sinico Sinification Sinifications Sinified Sinifies Sinify Sinifying Siniju Sining Sinis Sinisian Sinism Sinite Sinitic Sink Sinkiang Sinkiuse Sinnamahoning Sinnard Sinningia Sinogram Sinolog Sinologer Sinological Sinologies Sinologist Sinologists Sinologs Sinologue Sinologues Sinology Sinon Sinonism Sinope Sinophile Sinophiles Sinophilia Sinophilias Sinophilism Sinophobe Sinophobes Sinophobia Sinophobias Sinophobic Sinopic Sinsiga Sinsinawa Sinto Sintoism Sintoist Sinton Sintsink Sintu Sinuiju Sinupallia Sinupallialia Sinupalliata Sinus Siobhan Sion Sionite Sions Siouan Siouans Sioux Siouxie Sipesville Siphnos Siphonales Siphonaptera Siphonaria Siphonariidae Siphonata Siphoneae Siphoniata Siphonifera Siphonobranchiata Siphonocladales Siphonocladiales Siphonogama Siphonognathidae Siphonognathus Siphonophora Siphonostoma Siphonostomata Siphunculata Sipibo Siple Sippar Sipple Sipsey Sipunculacea Sipunculida Sipunculoidea Sipunculus Siqueiros Sir Sirach Siracusa Siredon Siree Sirees Siren Sirena Sirenia Sirenidae Sirenoidea Sirenoidei Sirens Sirenum Siret Sirian Sirianian Siricidae Siricius Siricoidea Sirimavo Sirione Sirius Sirkin Sirmian Sirmons Sirmuellera Sirois Sirotek Sirree Sirrees Sirs Sirsalis Sirte Siryan Sis Sisak Sisco Sisely Sisera Sisile Sisinnius Siskind Sisley Sismondi Sissel Sisseton Sissetons Sissie Sissinghurst Sisson Sissu Sissy Sistani Sister Sisters Sistersville Sistine Sisto Sistrurus Sisymbrium Sisyphean Sisyphian Sisyphides Sisyphism Sisyphist Sisyphus Sisyrinchium Sita Sitarski Sithole Sitka Sitkan Sitkans Sitnik Sitophilus Sitra Sitsang Sitta Sitter Sittidae Sittinae Sitwell Siubhan Sium Siusan Siusi Siuslaw Siva Sivaism Sivaisms Sivaist Sivaistic Sivaists Sivaite Sivan Sivans Sivapithecus Sivas Sivatheriidae Sivatheriinae Sivatherium Sivia Sivie Siwan Siward Siwash Siwashes Six Sixes Sixmile Sixtine Sixtowns Sixtus Sizewell Sjaelland Sjenicki Sjland Sjoberg Skagen Skagerak Skagerrak Skagway Skamokawa Skanda Skandia Skaneateles Skanee Skantze Skardol Skat Skaw Skeat Skees Skegness Skeie Skell Skelly Skellytown Skelmersdale Skelton Skeltonian Skeltonic Skeltonical Skeltonics Skene Skeptic Skeptical Skepticism Skepticisms Skeptics Skerl Skiatook Skiba Skiddaw Skidi Skidmore Skien Skier Skiest Skikda Skilken Skill Skillcentre Skillcentres Skillern Skillman Skimmia Skimo Skimobile Skimos Skinner Skinnerian Skinnerians Skinnerism Skinnerisms Skip Skipetar Skipp Skippack Skipper Skippers Skipperville Skippie Skippy Skipton Skipwith Skirnir Skirophoria Skitswish Skittaget Skittagetan Skivvies Skkvabekk Sklar Skoda Skodaic Skoinolon Skokie Skokomish Skolnik Skopets Skopje Skoplje Skowhegan Skricki Skros Skryabin Skrymir Skt Skuld Skupshtina Skurnik Skutari Skutchan Skvorak Sky Skybolt Skye Skykomish Skyla Skylab Skyland Skylar Skyler Skype Skyros Sl Slaby Slack Slackware Slade Sladen Slagle Slanesville Slashdot Slask Slatedale Slater Slatersville Slatington Slatkin Slaton Slaughter Slaughters Slav Slavdom Slave Slavenska Slavey Slavi Slavian Slavic Slavicise Slavicism Slavicisms Slavicist Slavicists Slavicize Slavification Slavify Slavin Slavisation Slavise Slavish Slavism Slavisms Slavist Slavistic Slavists Slavization Slavize Slavkov Slavonia Slavonian Slavonianize Slavonians Slavonic Slavonically Slavonicise Slavonicised Slavonicises Slavonicising Slavonicize Slavonicized Slavonicizes Slavonicizing Slavonise Slavonised Slavonises Slavonish Slavonising Slavonism Slavonization Slavonize Slavonized Slavonizes Slavonizing Slavophil Slavophile Slavophiles Slavophilism Slavophilisms Slavophils Slavophobe Slavophobes Slavophobia Slavophobias Slavophobist Slavs Slayden Slayton Sldney Sleb Sleep Sleepers Sleepyeye Sleipnir Slemmer Slemp Slesvig Sleswick Sletten Slezsko Slickville Slidell Slifka Sligo Slim Slimbridge Slinger Slinkman Slinky Slipcote Sliwa Sloan Sloane Sloanea Sloanes Sloansville Sloatman Sloatsburg Slocomb Slocum Slosberg Slotnick Slough Sloughhouse Slovak Slovakia Slovakian Slovakians Slovakish Slovaks Slovan Slovene Slovenes Slovenia Slovenian Slovenians Slovenish Slovensko Slovintzi Sluiter Slump Slurpee Sly Slyke Sm Smackover Smail Smalcaldian Smalcaldic Small Smallens Smalley Smallman Smallwood Smarr Smart Smartt Smartville Smeaton Smectymnuan Smectymnuus Smedley Smelterville Smetana Smethport Smethwick Smicksburg Smiga Smilacaceae Smilaceae Smilacina Smilax Smiley Smilodon Smintheus Sminthian Sminthuridae Sminthurus Smirnoff Smitane Smith Smithboro Smithburg Smithdale Smithers Smithfield Smithian Smithianism Smithland Smiths Smithsburg Smithshire Smithson Smithsonian Smithton Smithtown Smithville Smithwick Smitt Smitty Smoaks Smock Smoke Smoketown Smokey Smolan Smolensk Smollett Smoos Smoot Smriti Smucker Smukler Smuts Smyer Smyrna Smyrnaite Smyrnean Smyrniot Smyrniote Smyth Smythe Sn Snake Snakes Snapp Snapple Snark Snashall Snead Sneads Sneed Sneedville Snefru Snell Snelling Snellius Snellville Snemovna Sngerfest Snickers Snider Snoddy Snodgrass Snohomish Snonowas Snook Snoopy Snoqualmie Snoquamish Snover Snow Snowball Snowbelt Snowbelts Snowber Snowdon Snowdonia Snowdonian Snowman Snowmass Snowville Snr Snyder Snydersburg So Soane Soares Soave Soaves Soay Soays Sobel Sobers Soble Sobor Sobralia Sobranje Soc Socceroos Socha Soche Socher Sochi Sochor Sociales Socialism Socialisms Socialist Socialists Societe Society Socinian Socinianism Socinianisms Socinianistic Socinianize Socinians Socinus Socorro Socotra Socotran Socotrans Socotri Socotrine Socratean Socrates Socratic Socratical Socratically Socraticism Socratics Socratise Socratised Socratises Socratising Socratism Socratist Socratize Socratized Socratizes Socratizing Socred Soddy Soderstrom Sodom Sodomist Sodomite Sodomites Sodomitish Sodoms Sodus Soekarno Soelch Soemba Soembawa Soerabaja Sofer Sofia Sofie Sofiya Sofko Sofronia Soga Sogdian Sogdiana Sogdianese Sogdianian Sogdians Sogdoite Soho Soiesette Soinski Soissons Soja Sokil Sokoki Sokoto Sokotra Sokotri Sokul Sokulk Sol Sola Solana Solanaceae Solanales Solange Solano Solanum Solarium Solberg Soldan Soldanella Solea Solebury Soledad Soleidae Solen Solenidae Solenne Solenoconcha Solenodon Solenodontidae Solenogastres Solenoglypha Solenopsis Solenostomidae Solenostomus Solent Solera Soleure Solferino Solgohachia Solidago Solidarity Solidungula Solifugae Solihull Solim Soliman Solimena Solimoes Solingen Solio Solis Solita Solitta Soll Sollars Solley Sollie Sollows Solly Sollya Solnit Solo Soloma Soloman Solomon Solomonian Solomonic Solomonical Solomonitic Solomons Solomonseal Solomonseals Solon Solonian Solonic Solons Solothurn Solpuga Solpugida Solpugidea Solpugides Solr Solresol Solsberry Solsville Solti Soluk Solutrean Solutrian Solvang Solvay Solway Solyma Solymaean Solyman Solymi Solzhenitsyn Som Soma Somal Somali Somalia Somalian Somalians Somaliland Somalis Somaschian Somateria Somborski Somerdale Somers Somerset Somersetian Somersetshire Somersville Somersworth Somerton Somerville Somis Somlo Somme Sommer Sommerfeld Sommering Sommers Somni Somniorum Somniosus Somnus Somonauk Somoza Son Sonchus Sonderbund Sondergotter Sondheim Sondheimer Sondra Sondylomorum Soneson Song Songhai Songhua Songish Songka Songo Songoi Soni Sonia Sonja Sonneratia Sonneratiaceae Sonni Sonnie Sonnnie Sonny Sonoita Sonoma Sonora Sonoran Sonorans Sonrai Sonstrom Sontag Sontich Sony Sonya Sonyea Soo Soochow Sooke Sooner Sooners Soong Soorah Soot Sopchoppy Soper Soperton Soph Sophar Sopher Sopheric Sopherim Sophey Sophi Sophia Sophian Sophie Sophies Sophism Sophist Sophistress Sophistry Sophists Sophoclean Sophocles Sophonias Sophora Sophronia Sophy Sopwith Soquel Sorabian Soracco Sorata Soraya Sorb Sorbais Sorbaria Sorbian Sorbians Sorbish Sorbonic Sorbonical Sorbonist Sorbonne Sorbs Sorbus Sorce Sorcha Sorci Sorcim Sordaria Sordariaceae Sordello Sorel Soren Sorensen Sorenson Sorento Sorex Sorghum Soricidae Soricinae Soricoidea Sorilda Sorkin Sorocaba Sorokin Soroptimist Soroptimists Sorosporella Sorosporium Sorrentine Sorrento Sorrows Sosa Sosanna Sosia Sosigenes Sosna Sosnowiec Soso Sospita Sosthena Sosthenna Sosthina Sotadean Sotadic Soter Soteres Sotheby Sothena Sothiac Sothiacal Sothic Sothis Sotho Sothos Sotik Sotiris Soto Sotos Sou Soubise Souchong Soudan Soudanese Souder Soudersburg Souderton Soufflot Soufri Soufriare Soufriere Souhegan Soul Soule Souletin Soulier Soulmass Soulsbyville Soult Soumaintrin Sound Souness Souphanourong Souphanouvong Sour Sourceforge Souris Sousa Soustelle Souter South Southampton Southard Southbridge Southcottian Southdown Southdowns Southeast Southeastern Southeasterner Southeasterners Southeasts Southern Southerner Southerners Southernism Southernisms Southernness Southernnesses Southerns Southey Southfield Southgate Southington Southland Southlands Southmont Southport Southron Southronie Southrons Souths Southumbrian Southwark Southwest Southwestern Southwesterner Southwesterners Southwests Southworth Soutine Soutor Souvaine Souza Sovetsk Soviet Sovietdom Sovietdoms Sovietisation Sovietise Sovietised Sovietising Sovietism Sovietisms Sovietization Sovietizations Sovietize Sovietized Sovietizes Sovietizing Sovietological Sovietologies Sovietologist Sovietologists Sovietology Soviets Sowell Sower Soweto Soxhlet Soyinka Soyot Soyuz Sp SpEd Spa Spaak Spaatz Spackle Spackled Spackles Spackling Spada Spaerobee Spagnuoli Spahn Spain Spalacidae Spalato Spalax Spalding Spalla Spallanzani Spam Spams Span Spanaway Spancake Spandau Spangler Spanglish Spanglishes Spaniard Spaniardisation Spaniardise Spaniardization Spaniardize Spaniardo Spaniards Spaniol Spaniolate Spanioli Spaniolize Spanish Spanishburg Spanishflies Spanishfly Spanishise Spanishize Spanishly Spanishness Spanishnesses Spanjian Spanos Spansule Spansules Spar Sparagmite Sparassis Sparassodonta Sparaxis Sparganiaceae Sparganium Sparhawk Sparidae Spark Sparke Sparkie Sparkill Sparkman Sparks Sparky Sparland Sparmannia Sparnacian Sparr Sparrow Sparrowbush Spars Sparta Spartacan Spartacide Spartacism Spartacist Spartacists Spartacus Spartan Spartanburg Spartanhood Spartanic Spartanically Spartanise Spartanism Spartanisms Spartanize Spartanlike Spartanly Spartans Spartansburg Sparti Spartiate Spartina Spartium Sparus Spassky Spatangida Spatangina Spatangoida Spatangoidea Spatangus Spathiflorae Spathyema Spatlese Spatola Spatula Spatz Spaulding Spavinaw Speaker Speakers Speaks Spear Spearfish Spearing Spearman Spears Spearsville Spearville Specht Spectator Spector Specularia Speculator Spee Speedway Speedwriting Speer Speicher Speight Speke Spelaites Spellman Spelter Spenard Spenborough Spence Spencean Spencer Spencerian Spencerianism Spencerianisms Spencerians Spencerism Spencerisms Spencerport Spencertown Spencerville Spender Spener Spenerism Spengler Spenglerian Spenglerians Spense Spenser Spenserian Spenserians Speonk Speotyto Speranza Spergula Spergularia Sperling Spermaphyta Spermatophyta Spermophilus Spermophyta Speroni Sperry Sperryville Spetsnaz Spetznaz Spevek Spey Speyer Sphacelaria Sphacelariaceae Sphacelariales Sphaceloma Sphaeralcea Sphaerella Sphaeriaceae Sphaeriales Sphaeriidae Sphaerioidaceae Sphaerium Sphaerobolaceae Sphaerobolus Sphaerocarpaceae Sphaerocarpales Sphaerocarpus Sphaerococcaceae Sphaerococcus Sphaeroma Sphaeromidae Sphaerophoraceae Sphaerophorus Sphaeropsidaceae Sphaeropsidales Sphaeropsis Sphaerostilbe Sphaerotheca Sphaerotilus Sphagnaceae Sphagnales Sphagnum Sphakiot Sphargis Sphecidae Sphecina Sphecoidea Sphegidae Sphegoidea Sphenisci Spheniscidae Sphenisciformes Spheniscomorphae Spheniscus Sphenodon Sphenodontia Sphenodontidae Sphenophorus Sphenophyllaceae Sphenophyllales Sphenophyllum Sphenopteris Sphex Sphindidae Sphindus Sphinges Sphingidae Sphingurinae Sphingurus Sphinx Sphinxes Sphoeroides Sphyraena Sphyraenidae Sphyrapicus Sphyrna Sphyrnidae Spica Spicaria Spiceland Spicer Spicewood Spickard Spiegel Spiegelman Spiegleman Spielberg Spielbergian Spieler Spielman Spiers Spigelia Spigeliaceae Spigelian Spike Spilanthes Spillane Spillar Spillville Spilogale Spinacia Spindale Spindell Spingarn Spinifex Spinnerstown Spinoza Spinozism Spinozisms Spinozist Spinozistic Spinozists Spinulosa Spinx Spionidae Spioniformia Spiraea Spiraeaceae Spiranthes Spires Spirifer Spirifera Spiriferacea Spiriferidae Spirillaceae Spirit Spirits Spiritual Spiritualism Spiritualisms Spiritualist Spiritualists Spirituals Spiritwood Spiro Spirobranchia Spirobranchiata Spirochaeta Spirochaetaceae Spirochaetales Spirochaete Spirodela Spirograph Spirographis Spirogyra Spironema Spirophyton Spirorbis Spiros Spirosoma Spirula Spirulina Spirulinas Spisula Spitak Spitalfields Spithead Spitsbergen Spitteler Spitz Spitzbergen Spitzenburg Spitzer Spivey Spizella Splachnaceae Splachnum Splendora Split Spock Spode Spodes Spofford Spohr Spokan Spokane Spondiaceae Spondias Spondylidae Spondylocladium Spondylus Spongiae Spongida Spongiidae Spongilla Spongillidae Spongiozoa Spongospora Spontini Spooner Spoor Sporades Sporangites Sporer Spork Sporks Sporobolus Sporochnaceae Sporochnus Sporotrichum Sporozoa Sposi Spotswood Spotsylvania Spottsville Spottswood Spracklen Sprage Spragens Spraggs Sprague Spragueville Sprakers Spratt Sprechgesang Sprechstimme Spree Sprekelia Sprigg Spring Springbok Springboro Springbrook Springdale Springer Springerton Springerville Springfield Springhill Springhope Springhouse Springlick Springport Springs Springsteen Springtown Springvale Springville Springwater Springy Sprint Sprite Sprott Sproul Spruance Sprung Spumans Spur Spurer Spurgeon Spurger Spurius Spurlock Spurlockville Sputnik Sputniks Spätlese Sq Squali Squalida Squalidae Squalodon Squalodontidae Squaloidei Squalus Squamariaceae Squamata Squamipennes Squamipinnes Squamscot Squanto Squatarola Squatina Squatinidae Squatinoidei Squawmish Squawtits Squaxon Squedunk Squeers Squibb Squier Squill Squilla Squillidae Squilloidea Squire Squires Sr Sra Srbija Sri Srinagar Srini Srinivasa Srivijaya Srta St StRaphael Sta Staal Staatsburg Staatsozialismus Staatsrat Stabreim Stabroek Stace Stacee Stacey Stachys Stachytarpheta Stachyuraceae Stachyurus Staci Stacia Stacie Stackhousia Stackhousiaceae Stacy Stacyville Stadt Stael Stafani Staffa Staffan Staffard Stafford Staffordshire Staffordshires Staffordsville Staffordville Staffs Staford Stag Stagg Stagira Stagirite Stagirites Stagiritic Stagonospora Stagyrite Stahl Stahlhelm Stahlhelmer Stahlhelmist Stahlian Stahlianism Stahlism Stahlstown Staines StairMaster StairMasters Stakhanov Stakhanovism Stakhanovisms Stakhanovite Stakhanovites Stalag Stalder Staley Stalin Stalinabad Stalingrad Stalinism Stalinisms Stalinist Stalinists Stalinite Stalinize Stalinized Stalinizes Stalinizing Stalino Stalinogrod Stalinoid Stalinoids Stalinsk Stalk Stalker Stallone Stallworth Stamata Stambaugh Stamboul Stambul Stamford Stammbaum Stampian Stamps Stan Stanaford Stanardsville Stanberry Stanchfield Standard Standardbred Standardbreds Stander Standford Standice Standing Standish Standley Standush Stanfield Stanfill Stanford Stanfordville Stangeria Stanhope Stanhopea Stanislao Stanislas Stanislaus Stanislavski Stanislavsky Stanislaw Stanislawow Stanislawuw Stanlee Stanleigh Stanley Stanleytown Stanleyville Stanly Stannaries Stannfield Stannwood Stanovoi Stans Stanton Stantonsburg Stantonville Stanville Stanway Stanwin Stanwinn Stanwood Stanzel Stapelia Staphylea Staphyleaceae Staphylinidae Staphylinoidea Staphylinus Staphylococcus Staplehurst Staples Stapleton Star Starbuck Starbucks Starford Stargell Starinsky Stark Starke Starkey Starks Starksboro Starkville Starkweather Starla Starlene Starlin Starling Starobin Staroobriadtsi Starr Starrucca Startex Stasny Stassen State Statehood Statehoods Statehouse Statehouses Staten Statenville States Statesboro Stateside Statesville Statham Statice Statis Statius Statler Staubach Stauder Staudinger Stauffer Staunton Stauromedusae Stav Stavanger Stavro Stavropol Stavros Staw Stayton Stbark Stclair Ste Stead Steadicam Steadicams Steady Stealth Steamburg Stearn Stearne Stearns Steatornis Steatornithes Steatornithidae Stecher Stechhelm Steck Steddman Stedman Stedmann Stedt Steedman Steel Steelboy Steele Steeleville Steelville Steen Steenie Steens Steep Steere Stefa Stefan Stefana Stefanac Stefania Stefanie Stefano Stefansson Steff Steffan Steffane Steffen Steffens Steffenville Steffi Steffie Steffin Steffy Steganophthalmata Steganophthalmia Steganopodes Steger Stegman Stegocephalia Stegodon Stegomus Stegomyia Stegosauria Stegosaurus Stehekin Steichen Steier Steiermark Steiger Stein Steinamanger Steinauer Steinbeck Steinberg Steinberger Steinem Steiner Steinerian Steinhatchee Steinheil Steinitz Steinke Steinman Steinmetz Steinway Steinwein Steironema Stelazine Stelazines Stella Stellaria Stelle Stellenbosch Stellenbosched Stellenbosches Stellenbosching Stellite Stellites Stelmach Stelu Stemona Stemonaceae Stempien Stempson Sten Stendal Stendhal Stendhalian Stengel Stenger Stenmark Stenocarpus Stenofiber Stenoglossa Stenograph Stenographs Stenopelmatidae Stenophragma Stenotaphrum Stenotype Stens Stent Stentor Stentors Stepha Stephan Stephana Stephani Stephania Stephanian Stephanie Stephannie Stephano Stephanoceros Stephanokontae Stephanotis Stephanurus Stephanus Stephany Stephen Stephenie Stephens Stephensburg Stephenson Stephentown Stephenville Stephi Stephie Stephine Steppe Steppenwolf Steppes Stepteria Steptoe Stercoranism Stercoranist Stercorariidae Stercorariinae Stercorarius Stercorianism Stercorist Sterculia Sterculiaceae Sterelmintha Stereornithes Stereospondyli Stereum Sterling Sterlington Sterlitamak Stern Sterna Sternberg Sterne Sterner Sternick Sterninae Sternlight Sterno Sternos Sternotherus Sterope Steropes Sterrett Stesha Stesichorean Stets Stetson Stetsons Stetsonville Stettin Stettinius Steuben Steubenville Stevana Steve Steven Stevena Stevenage Stevengraph Stevengraphs Stevens Stevensburg Stevensgraph Stevensgraphs Stevenson Stevensonian Stevensoniana Stevensville Stevia Stevie Stevin Stevinson Stevinus Stevy Stew Steward Stewardson Stewart Stewartia Stewartstown Stewartsville Stewartville Steyr Sth Sthelena Stheneboea Sthenelus Sthenias Sthenius Stheno Stiborius Stich Stichter Stickney Sticta Stictaceae Stictidaceae Stictis Stidham Stiegel Stiegler Stieglitz Stier Stig Stigler Stigmaria Stijl Stikine Stila Stilbaceae Stilbella Stilbum Stiles Stilesville Stilicho Still Stilla Stillas Stillingia Stillman Stillmann Stillmore Stillson Stillsons Stillwater Stillwell Stilophora Stilophoraceae Stilton Stiltons Stilu Stilwell Stimson Stine Stinesville Stinky Stinnes Stinnett Stinson Stipa Stipiturus Stir Stiria Stiritis Stirling Stirlingshire Stirrat Stites Stittville Stitzer Stizolobium Stoa Stoat Stochmal Stock Stockbridge Stockdale Stockertown Stockett Stockhausen Stockholm Stockholmer Stockholmers Stockland Stockmon Stockport Stockton Stockville Stockwell Stockwood Stoddard Stoddart Stodder Stoeber Stoecker Stoffel Stofler Stoic Stoical Stoicism Stoicisms Stoics Stokavci Stokavian Stokavski Stokely Stokes Stokesdale Stokesia Stokowski Stolichnaya Stoll Stoller Stollings Stolypin Stolzer Stomapoda Stomatoda Stomatophora Stomatopoda Stomoisia Stone Stoneboro Stonefort Stonega Stoneham Stonehenge Stoneman Stones Stoneville Stonington Stonwin Stonybottom Stonybrook Stonyford Stoops Stopes Stoppard Storden Storer Storey Storfer Storm Stormberg Stormi Stormie Stormont Stormville Stormy Stornoway Storrie Storrs Storthing Storting Stortz Story Storyville Storz Stoss Stottville Stouffer Stoughton Stourbridge Stourhead Stout Stoutland Stoutsville Stovall Stover Stow Stowe Stowell Stoy Stoystown Strabane Strabo Stracchino Strachey Strad Strade Stradella Strader Stradivari Stradivarii Stradivaris Stradivarius Stradivariuses Strads Strafford Straffordian Strage Strain Strait Stralka Stralsund Strand Strandburg Strander Strandloper Strandquist Strang Stranger Strangeways Stranraer Strasberg Strasbourg Strasburg Strassburg Stratford Stratfordian Stratham Strathclyde Strathcona Strathmere Strathmore Stratiomyiidae Stratiotes Stratonical Strattanville Stratton Straub Straughn Straus Strauss Strausstown Stravinskian Stravinsky Stravinskyan Strawn Streamwood Streator Streep Street Streeter Streetman Streeto Streets Streetsboro Strega Streisand Strelitz Strelitzi Strelitzia Streltzi Strenta Strep Strephon Strephonn Strepphon Strepsiceros Strepsiptera Streptocarpus Streptococcus Streptomyces Streptoneura Streptothrix Stresemann Stretch Stretford Striaria Striariaceae Stricklan Strickland Strickler Strickman Striga Striges Strigidae Strigiformes Striginae Strigula Strigulaceae Strimmer Strimmers Strimon Strindberg Strindbergian Strine Stringer Stringtown Strix Strobilomyces Strobilophyta Stroessner Stroganoff Stroh Strohbehn Strohben Stroheim Strohl Strom Stromateidae Stromatopora Stromatoporidae Stromatoporoidea Stromberg Strombidae Stromboli Strombus Stromsburg Strong Stronghurst Strongsville Strongylidae Strongyloides Strongyloplasmata Strongylosis Strongylus Stronski Strophanthus Stropharia Strophius Strophomena Strophomenacea Strophomenidae Strother Stroud Stroudsburg Stroup Strozza Strozzi Struldbrug Struldbruggian Struldbruggism Struldbrugs Struma Strumella Strunk Struthers Struthio Struthiomimus Struthiones Struthionidae Struthioniformes Struthiopteris Struve Struwwelpeter Strychnos Stryker Strykersville Strymon Stu Stuart Stuartia Stuarts Stubbs Stubstad Stucker Stuckey Studdard Studebaker Studite Studium Studley Studner Studnia Stufler Stuka Stukas Stulin Stultz Stumptown Stundism Stundist Stuppy Sturbridge Sturdivant Sturges Sturgis Sturiones Sturkie Sturm Sturmabteilung Sturmer Sturmers Sturmian Sturnella Sturnidae Sturninae Sturnus Sturrock Sturt Sturtevant Stutman Stutsman Stuttgart Stutzman Stuyvesant Stygial Stygian Stylaster Stylasteridae Styles Stylidiaceae Stylidium Stylochus Stylommatophora Stylonichia Stylonurus Stylonychia Stylopidae Stylops Stylosanthes Stymphalian Stymphalid Stymphalides Stymphalus Styphelia Styr Styracaceae Styrax Styria Styrian Styrians Styrofoam Styrofoams Styron Styx Styxian Su Suaeda Suakin Sualocin Suamico Suanitian Suanne Suarez Subak Subakhmimic Subanun Subarian Subaru Subbuteo Subcarboniferous Subclamatores Suberites Suberitidae Subiaco Subic Subir Subiya Sublapsarian Sublett Sublette Sublime Sublimity Submytilacea Suboscines Subotica Subroc Subulicornia Subungulata Sucaryl Succasunna Succisa Succoth Succoths Succubus Suches Suchos Suchow Suchta Suckling Suckow Sucre Sucrets Sucrez Suctoria Sucy Sudafed Sudan Sudanese Sudani Sudanian Sudanic Sudburian Sudbury Sudder Sudderth Sudermann Sudeten Sudetenland Sudetens Sudetes Sudhir Sudic Sudith Sudlersville Sudnor Sudoku Sudra Sudras Sue Suecism Suellen Suelo Suerre Suessiones Suetonius Sueve Suevi Suevian Suevic Suez Sufeism Suff Suffern Suffield Suffolk Suffolks Suffr Sufi Sufic Sufiism Sufiisms Sufiistic Sufis Sufism Sufisms Sufistic Sufu Sug Sugar Sugarland Sugarloaf Sugartown Sugartree Sugden Sugihara Suh Suhail Suharto Sui Suidae Suilmann Suina Suiogoth Suiogothic Suiones Suisei Suisse Suiy Suk Sukarnapura Sukarno Sukey Sukhum Sukhumi Suki Sukin Sukkos Sukkoses Sukkot Sukkoth Sukkoths Sukkots Suku Sula Sulaba Sulafat Sulaib Sulamith Sulawesi Suleiman Sulfasuxidine Sulfathalidine Sulfonal Sulidae Sulides Suliote Sulla Sullan Sulligent Sullivan Sully Sulphur Sulpician Sulpicians Sulpicius Sultan Sultana Sultanabad Sultans Sulu Suluan Sulus Sum Sumac Sumak Sumas Sumass Sumatra Sumatran Sumatrans Sumba Sumbawa Sumdum Sumer Sumerco Sumerduck Sumeria Sumerian Sumerians Sumerlin Sumerologies Sumerologist Sumerologists Sumerology Sumgait Sumiton Summanus Summer Summerdale Summerfield Summerland Summerlee Summers Summershade Summerside Summersville Summerton Summertown Summerville Summit Summitville Summons Sumner Sumneytown Sumo Sumpter Sumrall Sumter Sumterville Sumy Sun Sunapee Sunay Sunbeam Sunbelt Sunbright Sunburg Sunburst Sunbury Sunchon Suncook Sunda Sundance Sundanese Sundanesian Sundas Sunday Sundayfied Sundayish Sundayism Sundaylike Sundayness Sundayproof Sundays Sundberg Sunderland Sundin Sundstrom Sundsvall Suneya Sunfield Sunfish Sunfishes Sung Sungari Sungkiang Sunil Sunkist Sunland Sunman Sunna Sunnah Sunnahs Sunnas Sunni Sunniah Sunnis Sunnism Sunnisms Sunnite Sunnites Sunny Sunnyside Sunnysouth Sunnyvale Sunol Sunray Suns Sunshine Sunyata Suomi Suomic Suomish Sup Supai Supat Supen Superball Superballs Superbowl Superfort Superfortress Superfund Superglue Superi Superior Superman Suplee Suppa Suppe Supple Suppé Supralapsarian Supralapsarianism Suprematism Suprematisms Suprematist Suprematists Supt Suquamish Suquamishes Suqutra Sur Sura Surabaja Surabaya Surakarta Surat Surbeck Surete Surgoinsville Suriana Surianaceae Suribachi Suricata Surinam Suriname Surinamer Surinamers Surinamese Suring Surovy Surrealism Surrealisms Surrealist Surrealistic Surrealistically Surrency Surrey Surry Surt Surtr Surtsey Survance Surveyor Surya Sus Susa Susah Susan Susana Susanchite Susanetta Susank Susann Susanna Susannah Susanne Susanoo Susanowo Susanville Susette Susi Susian Susiana Susianian Susians Susie Suslov Susquehanna Susquehannas Susquehannock Susquehannocks Sussex Sussexes Sussexman Sussi Sussman Sussna Sustiva Sustivas Susu Susuhunan Susuidae Susumu Susus Susy Sutaio Sutcliffe Suter Sutersville Suth Sutherlan Sutherland Sutherlandia Sutherlin Sutlej Suto Sutphin Suttapitaka Sutter Suttner Sutton Sutu Suu Suva Suvorov Suwanee Suwannee Suwon Suzan Suzann Suzanna Suzanne Suzetta Suzette Suzhou Suzi Suzie Suzuki Suzy Suzzy Svalbard Svan Svanetian Svanish Svantovit Svarloka Svea Sveciaost Svedberg Svedbergs Sven Svend Svengali Svengalis Svensen Sverdlovsk Sverige Sverre Svetambara Svetlana Svign Svizzera Svoboda Svres Sw Swab Swabia Swabian Swabians Swadeshi Swadeshism Swagerty Swahilese Swahili Swahilian Swahilis Swahilize Swain Swaine Swainsboro Swainson Swainsona Swaledale Swaledales Swammerdam Swampscott Swamy Swan Swane Swanee Swanhilda Swanhildas Swann Swannanoa Swansboro Swansea Swanson Swantevit Swanton Swanville Swanwick Swaps Swart Swarthmore Swarthout Swarts Swartswood Swartz Swartzbois Swartzia Swat Swatchel Swati Swatis Swatow Swayder Swayne Swayzee Swazi Swaziland Swazis Sweatt Swec Swed Swede Swedeborg Sweden Swedenborg Swedenborgian Swedenborgianism Swedenborgianisms Swedenborgians Swedenborgism Swedenborgisms Swedes Swedesboro Swedesburg Swedish Swee Sweeden Sweelinck Sweeney Sweeny Sweet Sweetbriar Sweetgrass Sweetheart Sweethearts Sweetland Sweetser Sweetwater Swelinck Swen Swengel Swenson Swepsonville Swertia Swetiana Swetlana Sweyn Swiercz Swietenia Swift Swiftian Swifton Swiftown Swiftwater Swigart Swihart Swinburgian Swinburne Swinburnesque Swinburnian Swindon Swingism Swink Swinnerton Swinton Swirsky Swisher Swiss Swissair Swisser Swisses Swissess Switchback Swithbart Swithbert Swithin Swithun Switz Switzer Switzeress Switzerland Switzers Swoon Swoope Swope Swor Swords Swoyersville Swtz Sy Sybaris Sybarital Sybaritan Sybarite Sybarites Sybaritic Sybaritical Sybaritically Sybaritish Sybertsville Sybil Sybila Sybilla Sybille Syble Sybley Sybyl Sycamore Sychaeus Syck Sycon Syconaria Sycones Syconidae Sycorax Syd Sydel Sydelle Sydneian Sydney Sydneyer Sydneyers Sydneyite Sydneyites Sydneysider Sydneysiders Syene Sykes Sykeston Sykesville Syktyvkar Syl Sylacauga Sylas Syleus Syllabus Syllidae Syllis Sylmar Sylni Sylow Sylphon Sylva Sylvan Sylvana Sylvaner Sylvani Sylvania Sylvanus Sylvester Sylvestrian Sylvestrine Sylvia Sylvian Sylvicolidae Sylvie Sylviidae Sylviinae Symaethis Syman Symbolism Symbolisms Symbolist Symbolists Symbranchia Symer Symington Symmachus Symon Symonds Symons Sympathy Sympetalae Symphalangus Symphoricarpos Symphyla Symphyta Symphytum Symplegades Symplocaceae Symplocarpus Symplocos Symsonia Synanon Synanons Synapsida Synaptera Synaptosauria Synarmogoidea Synascidiae Syncarida Synchytriaceae Synchytrium Syncom Syncrypta Syndesmon Syndyoceras Synedra Synedria Synedrion Synedrium Synentognathi Synge Syngenesia Syngman Syngnatha Syngnathi Syngnathidae Syngnathus Synn Synodontidae Synodus Synoptic Synoptics Synoptist Synoptistic Synthetism Synura Syosset Syr Syracusan Syracusans Syracuse Syrah Syrahs Syrette Syrettes Syria Syriac Syriacism Syriacist Syrian Syrianic Syrianise Syrianism Syrianize Syrians Syriarch Syriasm Syrinx Syriologist Syrma Syrmian Syrnium Syrophoenician Syrphidae Syrphus Syrtis Syryenian Syst Systems Syverson Syzran Szabadka Szczecin Szechuan Szechwan Szeged Szekely Szekler Szeklian Szekszrd Szell Szewinska Szigeti Szilard Szold Szombathely Szomorodni Szymanowski Szymborska Sèvres Sémillon Söderström Sûreté T TA TAB TAC TACAN TACCS TAE TAF TAG TAL TAM TANSTAAFL TAO TAP TAR TAS TASC TASI TASS TAT TAU TAVR TB TBA TBD TBO TBS TC TCA TCAP TCAS TCB TCBM TCC TCCC TCDD TCG TCM TCP TCPIP TCR TCS TCSEC TCT TD TDAS TDC TDCC TDD TDE TDI TDL TDM TDMA TDO TDR TDRS TDRSS TDY TE TEB TEC TECO TEFL TEFLON TEHO TEL TELEX TELNET TELNETTed TELNETTing TELNETs TELSAM TEMA TEMPEST TEMPO TENS TEPP TER TERM TES TESL TESOL TEirtza TFC TFLAP TFP TFS TFT TFTP TFX TG TGC TGIF TGN TGV TGWU TH THC THI THIEF THOR THREE THX TI TIA TIC TID TIFF TINA TIP TIRKS TIROS TKO TL TLA TLB TLC TLI TLM TLN TLP TLTP TLV TM TMA TMAC TMDF TMIS TMMS TMO TMP TMR TMRC TMRS TMS TMSC TMV TN TNB TNC TNDS TNN TNOP TNPC TNT TO TOC TOD TODS TOEFL TOMS TOOIS TOP TOPICS TOPLAS TOPS TORES TOS TOW TOY TP TPC TPE TPI TPM TPMP TPN TPO TPS TPT TQC TQM TR TRAC TREAT TRH TRIB TRIP TRMTR TRODI TROFF TRON TRR TRSA TRUSIX TRW TS TSAP TSCPF TSD TSDU TSE TSEL TSF TSH TSI TSM TSO TSORT TSP TSPS TSR TSRs TSS TSST TST TSTO TSTS TSgt TT TTC TTD TTFN TTL TTMA TTP TTS TTTN TTU TTY TTYC TU TUC TUNIS TUR TV TVA TVTWM TVs TW TWA TWG TWIMC TWM TWS TWT TWX TX TXID Ta Taal Taalbond Taam Tab Tabanidae Tabanus Tabasco Tabascos Tabatha Tabb Tabbatha Tabber Tabbi Tabbie Tabbitha Tabby Tabebuia Tabellaria Tabellariaceae Taber Taberg Tabernacle Tabernacles Tabernaemontana Tabernash Tabib Tabina Tabiona Tabira Tabitha Tabloid Tabor Taborite Tabriz Tabrizes Tabshey Tabulata Tacan Tacana Tacanan Tacca Taccaceae Tace Tachardia Tachardiinae Tachina Tachinaria Tachinidae Tachism Tachisme Tachismes Tachisms Tachist Tachiste Tachistes Tachists Tachyglossidae Tachyglossus Tacita Tacitean Tacitus Tacklind Tacloban Tacna Tacoma Tacoman Tacomans Taconian Taconic Taconite Tacquet Tacsonia Tacubaya Taculli Tacy Tacye Tad Tada Tadashi Tadd Taddeo Taddeusz Tade Tadeas Tadema Tadeo Tades Tadeus Tadich Tadio Tadjik Tadjiks Tadmor Tadousac Tadzhik Tadzhiki Tadzhikistan Tadzhiks Taegu Taejon Taeniada Taeniata Taenidia Taeniobranchia Taeniodonta Taeniodontia Taeniodontidae Taenioglossa Taeniosomi Taetsia Taffel Taffy Tafilalet Tafilelt Taft Tafton Taftsville Taftville Tagabilis Tagakaolo Tagal Tagala Tagalize Tagalo Tagalog Tagalogs Tagamet Tagamets Taganrog Tagassu Tagassuidae Tagaur Tagbanua Tagday Tager Tagetes Taggard Taggart Taghlik Tagish Tagliacotian Tagliacozzian Tagore Tagula Tagus Tahami Tahiti Tahitian Tahitians Tahlequah Tahltan Tahmosh Tahoe Tahoka Taholah Tahuya Tai Taiban Taichu Taichung Taiden Taif Taihoku Taikyu Tailor Tailte Taima Taimi Tainan Taine Taino Tainos Taintor Tainui Taipei Taipi Taiping Taipings Taira Tais Taisho Tait Taite Taiwan Taiwanese Taiwanhemp Taiwanian Taiwanians Taiyal Taiyfan Taiyuan Tajik Tajiki Tajikistan Tajiks Tajo Tak Taka Takakkaw Takakura Takamatsu Takao Takara Takashi Takelma Takeo Takeshi Takhaar Takhtadjy Takilman Takitumu Takken Taklamakan Taklimakan Takoradi Taku Tal Tala Talaemenes Talaing Talala Talamanca Talamancan Talanian Talanta Talara Talassio Talbert Talbot Talbots Talbott Talbotton Talca Talcahuano Talcher Talco Talcott Taleban Talegallinae Talegallus Tali Talia Taliacotian Taliban Talich Talie Talien Taliesin Talihina Talinum Talisheek Talishi Talitha Talladega Tallahassee Tallapoosa Tallassee Tallbot Tallbott Tallchief Tallega Tallevast Talley Talleyrand Tallia Tallie Tallin Tallinn Tallis Tallmadge Tallman Tallmansville Tallou Tallu Tallula Tallulah Tally Tallys Talmage Talmo Talmud Talmudic Talmudical Talmudisation Talmudise Talmudism Talmudisms Talmudist Talmudistic Talmudistical Talmudists Talmudization Talmudize Talmuds Taloga Talos Talpa Talpidae Talthybius Taltushtuntude Taluche Taluhet Talwin Talwins Talya Talyah Talys Talyshin Tam Tama Tamaceae Tamachek Tamah Tamale Tamanac Tamanaca Tamanaco Tamanaha Tamaqua Tamar Tamara Tamarah Tamaricaceae Tamarindus Tamarix Tamaroa Tamarra Tamaru Tamas Tamashek Tamasine Tamassee Tamatave Tamaulipas Tamaulipec Tamaulipecan Tamayo Tamberg Tambookie Tambora Tambouki Tambov Tambuki Tamburlaine Tame Tameka Tamer Tamera Tamerlane Tamerlanism Tamesada Tami Tamias Tamika Tamiko Tamil Tamilian Tamilic Tamils Tamiment Tamis Tamma Tammanial Tammanize Tammany Tammanyise Tammanyism Tammanyisms Tammanyite Tammanyites Tammanyize Tammara Tammerfors Tammi Tammie Tammlie Tamms Tammuz Tammuzes Tammy Tamonea Tamoyo Tampa Tampan Tampans Tampax Tampere Tampico Tamqrah Tamra Tams Tamsky Tamul Tamulian Tamulic Tamus Tamworth Tamworths Tamzine Tan Tana Tanacetum Tanach Tanachs Tanagra Tanagraean Tanagridae Tanah Tanaidacea Tanaka Tanakh Tanakhs Tanala Tanalised Tanalith Tanalized Tanana Tananarive Tanaquil Tanaron Tanberg Tanchelmian Tancred Tandi Tandie Tandjungpriok Tandoori Tandy Tane Taney Taneytown Taneyville Tang Tanga Tangaloa Tanganyika Tanganyikan Tanganyikans Tangaridae Tangaroa Tangaroan Tangerine Tanghinia Tangier Tangiers Tangipahoa Tangled Tanglewood Tangshan Tangut Tanguy Tanhya Tani Tania Tanis Tanisha Tanitansy Tanite Tanitic Tanjore Tanjungpandan Tanjungpriok Tanka Tankas Tankoos Tann Tannen Tannenbaum Tannenberg Tannenwald Tanner Tannersville Tanney Tannhauser Tannhser Tannhäuser Tannie Tannoy Tannoys Tanny Tano Tanoan Tanquelinian Tans Tansey Tansy Tanta Tantalean Tantalian Tantalic Tantalus Tantaluses Tantony Tantra Tantras Tantric Tantrika Tantrism Tantrisms Tantrist Tantrists Tanya Tanyoan Tanystomata Tanzania Tanzanian Tanzanians Tanzine Tao Taoiseach Taoiseachs Taoism Taoisms Taoist Taoistic Taoists Taonurus Taopi Taos Tapa Tapachula Tapachulteca Tapacura Tapaj Tapajo Tapajos Tapajus Tape Tapeats Tapes Tapetron Taphiae Taphria Taphrina Taphrinaceae Tapijulapane Tapinoma Tapiridae Tapiro Tapirus Tapley Tapleyism Taplin Tapoco Taposa Tappahannock Tappan Tappen Tappertitian Taprobane Tapuya Tapuyan Tapuyo Tara Tarabar Taracahitian Tarah Tarahumar Tarahumara Tarahumaras Tarahumare Tarahumari Tarai Taraktogenos Taramembe Taran Taranchi Tarandean Tarandian Taranis Tarantino Taranto Tarantulidae Tarapon Tarapoto Tarasc Tarascan Tarascans Tarasco Tarascos Tarawa Taraxacum Tarazed Tarazi Tarbell Tarbes Tarboro Tarde Tardenoisian Tardieu Tardigrada Tardis Tare Tarentine Tarentum Tareyn Target Targett Targhee Targitaus Targum Targumic Targumical Targumim Targumist Targumistic Targumists Targumize Targums Tarheel Tarheeler Tarheels Tariana Tariffville Tarija Tarim Tariri Tarka Tarkalani Tarkani Tarkany Tarkenton Tarkington Tarkio Tarlac Tarlton Tarmac Tarmacs Tarn Tarne Tarnhelm Tarnkappe Tarnopol Tarnow Tarnuw Taro Tarot Tarots Tarpeia Tarpeian Tarpley Tarquin Tarquinish Tarr Tarra Tarragona Tarrah Tarrance Tarrant Tarrasa Tarrateen Tarratine Tarrel Tarrs Tarrsus Tarryn Tarrytown Tarshish Tarsiidae Tarsipedidae Tarsipedinae Tarsipes Tarsius Tarski Tarsonemidae Tarsonemus Tarsus Tarsuss Tartaglia Tartan Tartar Tartarean Tartareous Tartarian Tartaric Tartarin Tartarism Tartarization Tartarize Tartarized Tartarlike Tartarology Tartars Tartarus Tartary Tartini Tarton Tarttan Tartu Tartufe Tartufes Tartuffe Tartuffery Tartuffes Tartuffian Tartuffish Tartuffism Tartufian Tartufish Tartufism Taruma Tarumari Taruntius Tarvia Taryba Taryn Taryne Tarzan Tarzana Tarzanish Tarzans Tas Taser Tasered Tasering Tasers Tasha Tashkend Tashkent Tashlich Tashlik Tashmit Tashnagist Tashnakist Tashusai Tasia Tasian Tasiana Tasker Tasley Tasm Tasman Tasmania Tasmanian Tasmanians Tass Tassie Tasso Taswell Tat Tatamy Tatar Tatarian Tataric Tatarization Tatarize Tatars Tatary Tate Tates Tateville Tathagata Tathata Tati Tatia Tatian Tatiana Tatianas Tatiania Tatianist Tatianna Tatius Tatman Tatra Tatry Tatsanottine Tattan Tattersail Tattersails Tattersall Tatu Tatum Tatums Tatusia Tatusiidae Taub Taube Tauchnitz Tauli Taungthu Taunton Taupo Tauranga Taurean Taureans Tauri Taurian Tauric Taurid Tauridian Taurini Tauroctonus Tauropolos Taurotragus Taurus Tauruses Taussig Tautology Tav Tavares Tavast Tavastian Tave Taveda Tavel Tavener Taverner Tavernier Tavey Tavghi Tavgi Tavi Tavia Tavie Tavis Tavish Tavy Tawgi Tawney Tawnya Tawsha Taxaceae Taxeopoda Taxidea Taxila Taxodiaceae Taxodium Taxol Taxols Taxus Tay Tayassu Tayassuidae Taygeta Taygete Tayib Tayler Taylor Taylorise Taylorism Taylorite Taylorize Taylors Taylorstown Taylorsville Taylorville Tayrona Tayside Tayyebeb Tazewell Tb Tbi Tbilisi Tbisisi Tc Tcawi Tchad Tchaikovskian Tchaikovsky Tchaikovskyan Tchao Tcheka Tchekhov Tcherepnin Tcherkess Tchetchentsish Tchetnitsi Tchi Tchula Tchwi Td Te TeX TeXes Teaberry Teach Teachey Teador Teagan Teagarden Teage Teague Teagueland Teaguelander Teahan Teak Tean Teaneck Tearle Teasdale Teasmade Teays Tebaldi Tebbetts Tebet Tebeth Tebeths Tebets Tebilise Tebilised Tebilises Tebilising Tebilize Tebilized Tebilizes Tebilizing Tebu Teca Tecate Tech Technicolor Technicolors Technion Techny Tecla Tecmessa Teco Tecoma Tecopa Tecpanec Tectibranchia Tectibranchiata Tecton Tectona Tectosages Tectospondyli Tecu Tecumseh Tecumtha Tecuna Ted Teda Tedd Tedda Tedder Teddi Teddie Teddman Teddy Tedi Tedie Tedman Tedmann Tedmund Tedra Tedric Teece Teena Teerell Tees Teesside Teeswater Teeter Teevens Teferi Tefft Teflon Teflons Tega Tegan Tegea Tegean Tegeates Tegeticula Tegmine Tegucigalpa Teguima Tegyrius Teh Tehachapi Tehama Teheran Tehillim Tehran Tehuacana Tehuantepec Tehuantepecan Tehuantepecer Tehueco Tehuelche Tehuelchean Tehuelches Tehuelet Teian Teide Teiidae Teillo Teilo Teiresias Tejano Tejanos Tejo Tejon Tekakwitha Tekamah Tekintsi Tekke Tekkintzi Tekla Tekoa Tekonsha Tektronix Tel TelAutograph TelAutography Telamon Telanaipura Telanthera Telanthropus Telautograph Telchines Telchinic Teldyne TelePrompTer TelePrompTers TelePrompter TelePrompters Teleboides Telecopier Telecopiers Teledyne Telefunken Telegn Telegonus Telegu Telegus Telei Teleia Telemachus Telemann Telemark Telemarks Telembi Telemessage Telemessages Telemus Telenget Telenomus Teleocephali Teleoceras Teleodesmacea Teleosauridae Teleosaurus Teleostei Teleostomi Telephassa Telephoto Telephotos Telephus Teleplotter Teleran Telerans Telereader Telescopii Telescopium Telesphorus Teletype Teletypes Teletypesetter Teletypesetters Teletyping Teleut Telex Telexes Telfairia Telfer Telferner Telford Telfore Telinga Tell Tella Teller Tellez Tellford Tellima Tellina Tellinacea Tellinidae Tello Telloh Telluride Tellus Telnet Telnets Telogia Teloogoo Telopea Telotremata Telphusa Telstar Telstars Telugu Telugus Telukbetung Tem Tema Teman Temanite Temazepam Tembu Temecula Temenus Temesv Temesvar Temiskaming Temne Temnes Temnospondyli Temp Tempa Tempe Tempean Tempel Temperanceville Tempest Tempestates Templa Templar Templars Templas Temple Templer Templeton Templetonia Templeville Templia Tempter Tempyo Temuco Ten Tena Tenach Tenafly Tenaha Tenaktak Tench Tencteri Tenderfeet Tenderfoot Tenderfoots Tenderloin Tenderloins Tendoy Tenebrae Tenebrio Tenebrionidae Tenebrism Tenebrisms Tenebrist Tenebrists Tenedos Tenenbaum Tenerife Teneriffe Tenes Tengdin Tenggerese Tengku Tengler Teniers Tenino Tenmile Tenn Tennant Tenneco Tennent Tenner Tennes Tennessean Tennesseans Tennessee Tennesseean Tennesseeans Tenney Tennga Tenniel Tennies Tennille Tennyson Tennysonian Tennysonianism Teno Tenochtitl Tenochtitlan Tenonian Tenrecidae Tensed Tenstrike Tentaculata Tentaculifera Tentaculites Tentaculitidae Tenthredinidae Tenthredinoidea Tenthredo Tenuirostres Tenzing Teodoor Teodor Teodora Teodorico Teodoro Teotihuacan Tepanec Tepecano Tepehua Tepehuane Tephillah Tephrosia Tepic Teplica Teplitz Tepper Tequistlateca Tequistlatecan Tera Terah Terai Terbecki Terborch Terburg Terce Terceira Terces Terchie Terebellidae Terebinthaceae Terebinthus Terebrantia Terebratula Terebratulidae Terebridae Teredinidae Terena Terence Terencio Terentia Terentian Tererro Teresa Terese Tereshkova Teresian Teresina Teresita Teressa Tereus Terfel Terfezia Terfeziaceae Terhune Teri Teria Teriann Terina Terkel Terle Terlingua Terlton Termagant Termes Terminalia Terminaliaceae Terminus Termitidae Termo Ternan Ternate Terni Ternopol Ternstroemia Ternstroemiaceae Terpsichore Terpsichorean Terpstra Terr Terra Terraalta Terraba Terraceia Terral Terramycin Terramycins Terran Terrance Terrans Terrapene Terre Terrebonne Terrel Terrell Terrena Terrence Terrene Terreton Terri Terrie Terrier Terrijo Terril Terrill Terrilyn Terris Terriss Territelae Territorial Territorials Territorian Territories Territory Territus Terry Terrye Terryl Terryn Terryville Tersanctus Tersina Terti Tertia Tertiaries Tertiary Tertias Tertius Tertry Tertullian Tertullianism Tertullianist Teruel Teryl Terylene Terylenes Teryn Terza Terzas Tes Tescott Tesla Tesler Tess Tessa Tesserants Tessi Tessie Tessin Tessler Tessy Test Testacea Testament Testaments Testicardines Testudinaria Testudinata Testudinidae Tesuque Tet Teteak Tethyan Tethys Teton Tetonia Tetons Tetrabelodon Tetrabranchia Tetrabranchiata Tetracerus Tetracoralla Tetractinellida Tetracyn Tetradecapoda Tetradesmus Tetradite Tetradynamia Tetragonia Tetragoniaceae Tetragrammaton Tetragynia Tetralin Tetramera Tetramorph Tetrandria Tetranychus Tetrao Tetraodon Tetraodontidae Tetraonidae Tetraoninae Tetrapanax Tetrapneumona Tetrapneumones Tetrapoda Tetrapturus Tetrastichidae Tetrastichus Tetraxonia Tetraxonida Tetrazzini Tetrigidae Tetrix Tetrodon Tetrodontidae Tets Tettigidae Tettigoniidae Tetu Tetuan Tetum Tetzel Teucer Teucri Teucrian Teucrium Teufel Teufert Teut Teuthis Teuthras Teutolatry Teutomania Teutomaniac Teuton Teutondom Teutones Teutonesque Teutonia Teutonic Teutonically Teutonicism Teutonicisms Teutonics Teutonisation Teutonise Teutonised Teutonises Teutonising Teutonism Teutonisms Teutonist Teutonists Teutonity Teutonization Teutonizations Teutonize Teutonized Teutonizes Teutonizing Teutonomania Teutonophobe Teutonophobia Teutons Teutophil Teutophile Teutophilism Teutophobe Teutophobia Teutophobism Teutopolis Tevere Tevet Tevets Tevis Tewa Tewas Tewell Tewfik Tewkesbury Tewksbury Tews Tex Texaco Texan Texans Texarkana Texas Texcocan Texel Texhoma Texico Texline Texola Texon Textron Teyde Tezcatlipoca Tezcatzoncatl Tezcucan Tezel Th ThB ThD ThM Thabantshonyana Thach Thacher Thacker Thackeray Thackerayan Thackerayana Thackerayesque Thackerville Thad Thaddaus Thaddeus Thaddus Thadentsonyane Thadeus Thagard Thai Thailand Thailander Thailanders Thain Thaine Thais Thakur Thalamiflorae Thalamophora Thalarctos Thalassa Thalassarctos Thalassinidea Thalassochelys Thales Thalesia Thalesian Thalessa Thalia Thaliacea Thalian Thaliard Thalictrum Thallo Thallophyta Tham Thamar Thames Thamesis Thammuz Thammuzes Thamnidium Thamnophilinae Thamnophilus Thamnophis Thamora Thamos Thamudean Thamudene Thamudic Thamus Thamyras Thamyris Thana Thanasi Thanatos Thanatoses Thanatotic Thane Thanet Thanh Thanjavur Thanksgiving Thanksgivings Thanom Thanos Thant Thapa Thapsia Thapsus Thar Thare Thargelia Thargelion Tharp Tharsis Thasian Thaspium Thatch Thatcher Thatcherism Thatcherite Thatcherites Thaumantian Thaumantias Thaumas Thawville Thaxter Thaxton Thay Thayer Thayne The Thea Theaceae Theadora Theaetetus Theall Thearica Theatine Theatines Thebae Thebaic Thebaid Thebais Theban Thebans Thebault Thebe Thebes Thebesian Thebit Thecamoebae Thecata Thecla Thecoidea Thecophora Thecosomata Theda Thedford Thedric Thedrick Theemim Theia Theiler Theileria Theilman Theis Theiss Thekla Thelemite Thelephora Thelephoraceae Theligonaceae Theligonum Thelma Thelodontidae Thelodus Thelonious Thelphusa Thelphusidae Thelyphonidae Thelyphonus Thema Themis Themiste Themistian Themisto Themistocles Thendara Thenna Theo Theobald Theobold Theobroma Theoclymenus Theocracy Theocritan Theocritean Theocritus Theodor Theodora Theodorakis Theodore Theodoric Theodosia Theodosian Theodosius Theodotian Theola Theona Theone Theonoe Theopaschist Theopaschitally Theopaschite Theopaschitic Theopaschitism Theophane Theophania Theophila Theophilus Theophrastaceae Theophrastan Theophrastean Theophrastian Theophrastus Theorell Theos Theosophies Theosophist Theosophists Theosophy Theotocopoulos Theotocos Theotokos Theoxenius Thera Theraean Theran Therapeutae Therapeutic Theraphosa Theraphosidae Therapne Therapsida Theravada Theravadas Theravadin Theresa Therese Theresina Theresita Theressa Thereva Therevidae Therezina Theria Theridiidae Theridion Therimachus Therine Theriodonta Theriodontia Theriot Theritas Therma Thermidor Thermidorean Thermidorian Thermidorians Thermidors Thermit Thermits Thermofax Thermopane Thermopanes Thermopolis Thermopsis Thermopylae Thermos Thermoses Thero Therock Theromora Theromores Theromorpha Theron Theropoda Theroux Therron Thersander Thersilochus Thersites Thesda Thesean Theseum Theseus Thesium Thesmia Thesmophoria Thesmophorian Thesmophoric Thesmophorus Thespesia Thespesius Thespiae Thespian Thespians Thespis Thespius Thesproti Thesprotia Thesprotians Thesprotis Thess Thessa Thessalian Thessalians Thessalonian Thessalonians Thessalonica Thessalonike Thessaloniki Thessalonki Thessaloníki Thessalus Thessaly Thestius Thestor Theta Thetes Thetford Thetis Thetisa Thetos Theurer Theurich Thevenot Thevetia Thia Thiatsi Thiazi Thibaud Thibault Thibaut Thibet Thibetan Thibetans Thibets Thibodaux Thida Thielavia Thielaviopsis Thielen Thiells Thiensville Thier Thierry Thiers Thieu Thilanottine Thilda Thilde Thill Thimbu Thimphu Thin Thinia Thinocoridae Thinocorus Thinsulate Thinsulates Thiobacillus Thiobacteria Thiobacteriales Thiodamas Thiokol Thiokols Thiospira Thiothrix Thira Thirion Thirlmere Thirza Thirzi Thirzia Thisbe Thisbee Thissa Thistle Thjatsi Thjazi Thlaspi Thlingchadinne Thlinget Tho Thoas Thock Thoer Thok Thokk Thom Thoma Thomaean Thomajan Thomas Thomasa Thomasboro Thomasin Thomasina Thomasine Thomasite Thomaston Thomastown Thomasville Thomey Thomisidae Thomism Thomisms Thomist Thomistic Thomistical Thomists Thomite Thomomys Thompson Thompsons Thompsontown Thompsonville Thomsen Thomson Thomsonian Thomsonianism Thonburi Thondracians Thondraki Thondrakians Thonga Thongas Thonotosassa Thoon Thor Thora Thoracica Thoracostei Thoracostraca Thorazine Thorazines Thorbert Thorburn Thordia Thordis Thoreau Thoreauvian Thoreauvians Thorez Thorfinn Thorin Thorlay Thorley Thorlie Thorma Thorman Thormora Thorn Thornburg Thorncombe Thorndale Thorndike Thorndyke Thorne Thorner Thornfield Thornie Thornton Thorntown Thornville Thornwood Thorny Thorough Thoroughbred Thoroughbreds Thorp Thorpe Thorr Thorrlow Thorsby Thorshavn Thorstein Thorsten Thorvald Thorvaldsen Thorwald Thorwaldsen Thos Thoth Thousand Thrace Thraces Thracia Thracian Thracians Thrale Thrasher Thrasybulus Thraupidae Thrax Three Threlkeld Threskiornithidae Threskiornithinae Thrift Thrinax Thripidae Throckmorton Thrombolysin Throop Throttlebottom Thrsieux Thruthheim Thruthvang Thruway Thrymheim Thryonomys Thsos Thu Thuban Thucydidean Thucydides Thug Thuggee Thuggees Thugs Thuidium Thuja Thujopsis Thule Thumbelina Thummim Thun Thunar Thunbergia Thunderbird Thunell Thunnidae Thunnus Thunor Thur Thurber Thurberesque Thurberia Thurgau Thurgood Thuringer Thuringers Thuringia Thuringian Thuringians Thurio Thurlough Thurlow Thurman Thurmann Thurmond Thurmont Thurnau Thurnia Thurniaceae Thurrock Thurs Thursby Thursday Thursdays Thurso Thurstan Thurston Thury Thushi Thutmose Thuya Thuyopsis Thwing Thyatira Thyeiads Thyestean Thyestes Thyiad Thyiades Thylacoleo Thylacynus Thymallidae Thymallus Thymbraeus Thymelaea Thymelaeaceae Thymelaeales Thymoetes Thymus Thynne Thynnidae Thyone Thyraden Thyratron Thyreocoridae Thyrididae Thyris Thyrostraca Thysanocarpus Thysanoptera Thysanoura Thysanura Thyssen Ti Tia Tiahuanacan Tiahuanaco Tiam Tiamat Tiana Tiananmen Tianjin Tiatinagua Tib Tibbett Tibbetts Tibbie Tibbitts Tibbs Tibbu Tiber Tiberian Tiberias Tiberine Tiberinus Tiberis Tiberius Tibesti Tibet Tibetan Tibetans Tibold Tibouchina Tibullus Tibur Tiburcio Tiburon Tiburtine Tica Tice Tichnor Tichodroma Tichon Tichonn Ticinese Ticino Ticketmaster Tickfaw Ticknor Ticon Ticonderoga Ticuna Ticunan Tide Tideswell Tidioute Tidwell Tiebold Tiebout Tieck Tiedeman Tiemroth Tien Tiena Tienanmen Tientsin Tiepolo Tierce Tierces Tierell Tiergarten Tiernan Tierney Tiersten Tiertza Tierza Tiesiding Tieton Tifanie Tiff Tiffa Tiffani Tiffanie Tiffanle Tiffany Tiffi Tiffie Tiffin Tiffy Tiflis Tifton Tiga Tigerton Tigerville Tigges Tignall Tigr Tigrai Tigre Tigrean Tigreans Tigres Tigrett Tigridia Tigrina Tigrinya Tigris Tigua Tigurine Tihwa Tijeras Tijuana Tiki Tikis Tila Tilburg Tilbury Tilda Tilden Tildi Tildie Tildy Tiler Tilford Tilghman Tilia Tiliaceae Tiline Till Tilla Tillaea Tillaeastrum Tillamook Tillandsia Tillar Tillatoba Tilleda Tiller Tillery Tilletia Tilletiaceae Tillford Tillfourd Tilli Tillich Tillie Tillinger Tillio Tillion Tillman Tillo Tillodontia Tillodontidae Tillotson Tillson Tilly Tilney Tiloine Tilsit Tilsiter Tilsiters Tilsits Tilton Tiltonsville Tim Tima Timaeus Timalia Timaliidae Timaliinae Timandra Timani Timaru Timberville Timbira Timblin Timbo Timbuctoo Timbuktu Time Timelia Timeliidae Timewell Timex Timi Timias Timisoara Timken Timmi Timmie Timmons Timmonsville Timms Timmy Timnath Timne Timocharis Timofei Timoleon Timon Timonian Timonise Timonised Timonises Timonising Timonism Timonist Timonistic Timonists Timonium Timonize Timonized Timonizes Timonizing Timor Timorese Timoshenko Timote Timotean Timoteo Timothea Timothean Timothee Timotheus Timothy Timour Timpson Timucua Timucuan Timucuas Timuquan Timuquanan Timur Timurid Tina Tinamidae Tinaret Tindal Tindale Tindall Tine Tineidae Tineina Tineoidea Ting Tingey Tinggian Tingidae Tingis Tingitidae Tingley Tinguian Tini Tinia Tinkerbell Tinkertoy Tinkertoys Tinne Tinni Tinnie Tino Tinoceras Tinseltown Tinsley Tintagel Tintah Tintern Tintometer Tintoretto Tiny Tinya Tioga Tiona Tionesta Tionontates Tionontati Tiossem Tiou Tiphane Tiphani Tiphanie Tiphany Tiphia Tiphiidae Tiplersville Tippecanoe Tipperary Tippets Tippett Tippo Tips Tipton Tiptonville Tipula Tipularia Tipulidae Tipuloidea Tipura Tiran Tirana Tirane Tiree Tiresias Tirhutia Tiro Tirol Tirolean Tiroleans Tirolese Tironian Tiros Tirpitz Tirrell Tirribi Tirthankara Tiruchirapalli Tirunelveli Tirurai Tirza Tirzah Tisa Tisbe Tisbee Tischendorf Tisdale Tiselius Tish Tisha Tishiya Tishomingo Tishri Tishris Tisiphone Tiskilwa Tisman Tisserand Tissot Tisza Tit Tita Titan Titanesque Titaness Titanesses Titania Titanian Titanic Titanical Titanically Titanichthyidae Titanichthys Titanism Titanisms Titanlike Titanolater Titanolatry Titanomachia Titanomachy Titanosaurus Titanotheridae Titanotherium Titans Tithonus Tithymalopsis Tithymalus Titian Titianesque Titianic Titicaca Tities Titmarsh Titmarshian Tito Titograd Titoism Titoisms Titoist Titoists Titonka Titos Titurel Titus Titusville Tityus Tiu Tiv Tiverton Tivoli Tiw Tiwa Tiwas Tiwaz Tizes Tjaden Tjader Tjirebon Tjon Tl Tlakluit Tlaloc Tlapallan Tlascalan Tlaxcala Tlemcen Tlemsen Tlepolemus Tletski Tlingit Tlingits Tlinkit Tlinkits Tm Tmesipteris Tng Toaalta Toabaja Toag Toano Tob Toba Tobaccoville Toback Tobago Tobagonian Tobagonians Tobe Tobey Tobi Tobiah Tobias Tobie Tobies Tobikhar Tobin Tobinsport Tobit Tobol Tobolsk Tobruk Toby Tobye Tobyhanna Tocantins Tocci Toccoa Toccopola Tocharese Tocharian Tocharians Tocharic Tocharish Tocobaga Tocqueville Tocsin Tod Toda Todd Toddie Toddville Toddy Todea Todhunter Todidae Todt Todus Toffey Toffic Tofieldia Toft Tofte Tofutti Tofuttis Toggenburg Toggenburgs Togliatti Togo Togoland Togolander Togolanders Togolese Toh Tohatchi Tohome Toiboid Toinette Toivola Tojo Tokaj Tokay Tokays Tokeland Tokelau Tokelauan Tokelauans Tokharian Tokharians Tokio Toklas Tokugawa Tokyo Tokyoite Tokyoites Tol Toland Tolar Tolbert Toledan Toledans Toledo Toledoan Toledoans Toledos Toler Toletan Tolima Tolkan Tolkien Tolkienesque Toll Tolland Toller Tollesboro Tolleson Tolley Tolliver Tollman Tollmann Tolmach Tolman Tolmann Tolna Tolono Tolowa Tolpuddle Tolstoi Tolstoian Tolstoians Tolstoy Tolstoyan Tolstoyans Tolstoyism Tolstoyist Toltec Toltecan Toltecs Tolu Toluca Toluifera Tolumnius Tolyatti Tolypeutes Tom Toma Tomah Tomahawk Tomales Tomas Tomasina Tomasine Tomaso Tomasz Tombalbaye Tomball Tombaugh Tombean Tombigbee Tombouctou Tomchay Tome Tomi Tomistoma Tomkiel Tomkin Tomkins Tomlin Tomlinson Tommaso Tomme Tommed Tommer Tommi Tommie Tommies Tomming Tommy Tommye Tomonaga Tomopteridae Tomopteris Tomoyuki Tompion Tompkins Tompkinsville Toms Tomsbrook Tomsk Tomtitmouse Tonalea Tonasket Tonawanda Tonbridge Toney Tonga Tongan Tonganoxie Tongans Tongas Tongking Tongrian Tongue Toni Tonia Tonica Tonie Tonies Tonikan Tonina Tonjes Tonkawa Tonkawan Tonkin Tonkinese Tonking Tonkingese Tonl Tonna Tonneson Tonnie Tonnies Tonopah Tonry Tontitown Tonto Tontobasin Tontogany Tony Tonya Tonye Tonys Tooele Toogood Tooke Toole Tooley Toolis Toomay Toombs Toomin Toomsboro Toomsuba Toon Toona Toone Toons Toor Tootsie Toowoomba Topanga Topatopa Topawa Topaze Topeka Topelius Tophet Topheth Tophets Topinabee Topinish Topliffe Topock Topolski Toponas Toppenish Topper Topping Topsfield Topsham Topsider Topsiders Topsy Topton Toquerville Tor Tora Torah Torahs Toraja Toras Torbart Torbay Torbert Tordesillas Tore Torelli Torenia Torey Torgot Torhert Tori Torie Tories Toriest Torified Torifies Torify Torifying Torilis Torin Torinese Toriness Torino Tormoria Tornillo Tornit Toromona Toronto Torontonian Torontonians Torosaurus Torosian Torot Toroth Torp Torpedinidae Torquato Torquay Torquemada Torr Torrance Torras Torray Torre Torrell Torrence Torrenize Torrenized Torrenizes Torrenizing Torrens Torreon Torres Torrey Torreya Torricelli Torricellian Torridonian Torrie Torrin Torrington Torrlow Torrubia Torruella Torry Torte Tortelier Torto Tortola Tortonian Tortosa Tortricidae Tortricina Tortricoidea Tortrix Tortuga Tortulaceae Toru Torun Torvalds Tory Torydom Toryess Toryfication Toryfied Toryfies Toryfy Toryfying Toryise Toryish Toryism Toryisms Toryistic Toryize Toryship Tosca Toscana Toscanini Toscano Tosch Tosephta Tosephtas Toshiba Toshiko Tosk Toskish Toston Totanus Toth Totipalmatae Totleben Toto Totonac Totonacan Totonaco Totoro Totowa Tottenham Tottie Totz Touareg Touaregs Touber Toucanid Touchet Tougaloo Touggourt Toughkenamon Toul Toulon Toulouse Tounatea Tound Tour Toura Touraine Tourane Tourcoing Toure Tourette Touretter Touretters Tournai Tournay Tournefortia Tournefortian Tourneur Tours Toutle Tova Tovaria Tovariaceae Tove Tovey Towaco Towanda Towaoc Towbin Tower Towers Towill Towland Town Towne Towner Townes Towney Townie Townley Townsend Townsendia Townsendite Townshend Townsville Townville Towny Towrey Towroy Towson Toxeus Toxey Toxicodendron Toxifera Toxodon Toxodontia Toxoglossa Toxostoma Toxotes Toxotidae Toxylon Toy Toyah Toyahvale Toyama Toye Toynbee Toyoda Toyohiko Toyonaka Toyota Toyotomi Tpr Tr Trabue Trabzon Tracaulon Tracay Trace Tracee Tracey Trachearia Tracheata Trachelospermum Tracheophonae Trachiniae Trachinidae Trachinus Trachodon Trachodontidae Trachoma Trachomedusae Trachycarpus Trachylinae Trachymedusae Trachypteridae Trachypterus Traci Tracie Tract Tractarian Tractarianism Tractarianisms Tractarians Tractite Tracts Tracy Tracyton Tradescant Tradescantia Traducian Traducianism Traducianist Traer Trafalgar Trafford Tragasol Tragelaphus Trager Tragopogon Tragulidae Tragulina Traguloidea Tragulus Trahern Traherne Trahurn Trailways Trainer Trainor Trajan Trakas Trakehner Trakehners Tralee Tralles Trallian Trametes Traminer Trammel Trampas Tran Tranquada Tranquility Tranquillity TransJordan Transcaucasia Transcaucasian Transcaucasians Transcendentalism Transcendentalisms Transcendentalist Transfiguration Transfigurations Transit Transite Transitional Transjordanian Transjordanians Transkei Transkeian Transkeians Transteverine Transvaal Transvaaler Transvaalers Transvaalian Transylvania Transylvanian Transylvanians Trant Tranzschelia Trapa Trapaceae Trapani Trappe Trappism Trappist Trappistes Trappistine Trappists Trasentine Trasimene Trasimeno Trasimenus Trask Traskwood Trastevere Trasteverine Tratner Trauner Traunik Trautman Trautvetteria Travancore Travax Traver Travers Travis Travnicki Travolta Travus Traweek Tray Treacy Treadway Treadwell Treasurer Treasuries Treasury Treat Trebbia Trebbiano Trebbianos Trebellian Trebizond Treblinka Trebloc Treculia Tree Treece Trefler Trefor Trego Treharne Treiber Treichlers Treitschke Trekkie Trela Trelew Trella Trellas Treloar Trelu Trema Tremain Tremaine Tremandra Tremandraceae Tremann Trematoda Trematodea Trematodes Trematosaurus Tremayne Trembly Tremella Tremellaceae Tremellales Trementina Tremml Tremont Tremonton Trempealeau Trenary Trenchard Trengganu Trenna Trent Trentepohlia Trentepohliaceae Trentine Trento Trenton Trentonian Trentonians Treponema Trepostomata Treron Treronidae Treroninae Tresa Trescha Tresckow Trescott Trespiedras Trespinos Tressa Tressia Treulich Trev Treva Trevah Trevar Trevelyan Trever Treves Trevethick Trevett Trevino Treviso Trevithick Trevor Trevorr Trevorton Trew Trexlertown Trey Treynor Trezevant Tri Triad Triadelphia Triadenum Trianda Triandria Triangle Triangula Triangulid Triangulum Trianon Trianta Triarthrus Trias Triassic Triatoma Tribbett Tribolium Tribonema Tribonemaceae Tribulus Tribunite Triceratops Trichechidae Trichechus Trichilia Trichina Trichinella Trichinopoly Trichiuridae Trichiurus Trichocephalus Trichoderma Trichodesmium Trichodontidae Trichoglossidae Trichoglossinae Trichogramma Trichogrammatidae Tricholaena Tricholoma Trichomanes Trichomonadidae Trichomonas Trichonympha Trichophyton Trichoplax Trichoptera Trichopterygidae Trichosanthes Trichosporum Trichostema Trichostrongylus Trichuris Trici Tricia Tricladida Tricolor Tricolors Triconodon Triconodonta Tricyrtis Tridacna Tridacnidae Tridell Trident Tridentine Tridentines Tridentinian Tridentum Trient Trientalis Trier Trieste Triestine Trifolium Trigere Trigla Triglidae Triglochin Trigona Trigonella Trigonia Trigoniaceae Trigoniidae Trigonocephalus Trigynia Trikora Trilafon Trilbee Trilbi Trilbie Trilby Triley Trilisa Trill Trilla Trillbee Trillby Trilley Trilliaceae Trillium Trilly Trilobita Trilophodon Trimble Trimera Trimeresurus Trimmer Trimont Trimurti Trin Trina Trinacria Trinacrian Trinacrians Trinatte Trinchera Trincomalee Trincomali Trinculo Trinee Trinetta Trinette Tringa Trini Trinia Trinidad Trinidadian Trinidadians Trinil Trinitarian Trinitarianism Trinitarianisms Trinitarians Trinities Trinity Trinitytide Trinitytides Trinkgeld Trinl Trinobantes Trinorantum Trinovant Trinovantes Trinucleus Trinway Triny Trio Triodion Triodon Triodontes Triodontidae Triodontoidea Triodontoidei Triodontophorus Trioecia Trion Trional Trionychidae Trionychoideachid Trionyx Triopidae Triops Triosteum Trip Triphasia Triphora Triphysite Tripitaka Triplaris Triplett Triplex Triplice Triplicist Triplochitonaceae Tripoli Tripoline Tripolitan Tripolitania Tripolitanian Tripolitanians Tripolitans Tripp Trippe Tripsacum Triptolemos Triptolemus Tripura Tripylaea Tripylarian Triratna Tris Trisa Trisagion Trisetum Trish Trisha Trismegistus Trisotropis Trista Tristam Tristan Tristania Tristas Tristichaceae Tristis Tristram Tristrem Triteleia Trithrinax Triticum Tritogeneia Tritoma Triton Tritoness Tritonia Tritonic Tritonidae Tritonis Tritons Trituberculata Triturus Tritylodon Triumfetta Triumph Triune Triunitarian Triunity Triuridaceae Triuridales Triuris Trivandrum Trivoli Trix Trixi Trixie Trixy Trizonia Tro Troad Troadic Troas Trobriand Trobriander Trobrianders Trochaic Trochalopoda Trochelminthes Trochidae Trochila Trochili Trochilidae Trochilus Trochius Trochodendraceae Trochodendron Trochosphaera Trochosphaerida Trochozoa Trochus Trocki Troezenian Troglodytes Troglodytidae Troglodytinae Trogones Trogonidae Trogoniformes Troia Troiades Troic Troilus Troja Trojan Trojans Trollius Trollope Trollopean Trollopeanism Trollopian Trombidiidae Trombidium Trometer Tromp Tromso Tromsø Trona Trondheim Trondhjem Tronna Troon Tropaean Tropaeolaceae Tropaeolum Tropeolin Trophis Trophonian Tropicalia Tropicalian Tropicana Tropidoleptus Tros Trosky Trosper Trossachs Trot Troth Trotski Trotsky Trotskyism Trotskyisms Trotskyist Trotskyists Trotskyite Trotskyites Trotta Trotter Trotters Trotwood Troubetzkoy Troup Troupsburg Trout Troutdale Troutman Troutville Trouvelot Trouville Trovillion Trow Trowbridge Troxell Troxelville Troy Troyes Troynovant Troyon Troytown Trst Trstram Trubenise Trubenised Trubenises Trubenising Trubenize Trubenized Trubenizes Trubenizing Trubetskoi Trubetzkoy Trubow Truc Truckee Truckles Truda Trude Trudeau Trudey Trudi Trudie Trudnak Trudy True Trueblood Truelove Trueman Truesdale Trufant Truffaut Truitt Trujillo Truk Trula Trullan Trumaine Truman Trumann Trumansburg Trumbauersville Trumbull Trump Truncatella Truncatellidae Truro Truscott Trussville Trust Truth Truths Trutko Trutta Truxton Tryck Trygon Trygonidae Trygve Tryon Trypaneidae Trypanosoma Trypanosomatidae Tryparsamide Trypeta Trypetidae Tryphena Tryphosa Tsai Tsan Tsana Tsaritsyn Tsattine Tschaikovsky Tscherkess Tse Tselinograd Tseng Tshi Tshiluba Tshombe Tsiltaden Tsimshian Tsimshians Tsinan Tsinghai Tsingtao Tsingyuan Tsinkiang Tsiolkovsky Tsiranana Tsitsihar Tsoneca Tsonecan Tsonga Tsongkhapa Tsuda Tsuga Tsugouharu Tsui Tsukahara Tsuma Tsushima Tsutsutsi Tsvetaeva Tswana Tswanas Tu Tualati Tualatin Tuamotu Tuamotuan Tuan Tuans Tuareg Tuaregs Tuba Tubac Tubalcain Tubatulabal Tubb Tuberaceae Tuberales Tubercularia Tuberculariaceae Tubicola Tubicolae Tubifex Tubificidae Tubiflorales Tubigrip Tubinares Tubingen Tubipora Tubiporidae Tubman Tubularia Tubulariae Tubularida Tubulariidae Tubulibranchiata Tubulidentata Tubulifera Tubulipora Tubuliporidae Tucana Tucanae Tucano Tuchman Tuck Tuckahoe Tuckasegee Tucker Tuckerman Tuckerton Tuckie Tucky Tucson Tucsonan Tucsonans Tucum Tucuman Tucumcari Tucuna Tuddor Tudela Tudesque Tudor Tudorbethan Tudoresque Tudors Tue Tues Tuesday Tuesdays Tufts Tugela Tugman Tuileries Tuinal Tuinals Tuinenga Tujunga Tukuler Tukulor Tula Tulalip Tulane Tulare Tularosa Tulbaghia Tulear Tuleta Tulia Tulipa Tulkepaia Tull Tullahassee Tullahoma Tulle Tulley Tullia Tullian Tullio Tullius Tullos Tullus Tullusus Tully Tulostoma Tulsa Tulsan Tulsans Tulsidas Tulu Tulua Tumacacori Tumaco Tumbes Tumboa Tumer Tumion Tums Tumupasa Tumwater Tunas Tuneberg Tunebo Tung Tunga Tungan Tungting Tungus Tunguses Tungusian Tungusic Tunguska Tunica Tunican Tunicata Tunis Tunisia Tunisian Tunisians Tunker Tunkhannock Tunku Tunnell Tunnelton Tunney Tunnit Tuolumne Tuonela Tupaia Tupaiidae Tupamaro Tupamaros Tupelo Tupi Tupian Tupians Tupinamba Tupinaqui Tupis Tupler Tupman Tupolev Tuppeny Tupperian Tupperish Tupperism Tupperize Tupperware Tupungato Tura Turacus Turandot Turanian Turanianism Turanians Turanism Turbellaria Turbeville Turbinella Turbinellidae Turbinidae Turbo Turbotville Turcian Turcic Turcification Turcism Turcize Turco Turcoman Turcomans Turcophile Turcophilism Turcos Turdetan Turdidae Turdinae Turdus Turenne Turgenev Turgeniev Turgot Turi Turin Turina Turinese Turing Turino Turishcheva Turk Turkana Turkdom Turkery Turkess Turkestan Turkey Turkeydom Turkeyism Turki Turkic Turkicise Turkicised Turkicises Turkicising Turkicize Turkicized Turkicizes Turkicizing Turkics Turkification Turkified Turkifies Turkify Turkifying Turkis Turkise Turkish Turkishly Turkishness Turkism Turkisms Turkistan Turkize Turklike Turkman Turkmen Turkmenian Turkmenistan Turkmens Turkologist Turkology Turkoman Turkomania Turkomanic Turkomanize Turkomans Turkomen Turkophil Turkophile Turkophilia Turkophilism Turkophobe Turkophobia Turkophobist Turks Turku Turley Turlock Turlupin Turmel Turnbull Turne Turner Turnera Turneraceae Turneresque Turnerian Turnerism Turners Turnersburg Turnersville Turnerville Turney Turnhalle Turnheim Turnices Turnicidae Turnicomorphae Turnix Turnus Turoff Turon Turonian Turpin Turrell Turrilepas Turrilites Turrilitidae Turritella Turritellidae Turro Tursenoi Tursha Tursiops Turtan Turtle Turtletown Turton Turveydrop Turveydropdom Turveydropian Tusayan Tuscaloosa Tuscan Tuscanise Tuscanism Tuscanize Tuscanlike Tuscans Tuscany Tuscarawas Tuscarora Tuscaroras Tuscola Tuscon Tusculan Tusculum Tuscumbia Tush Tushepaw Tuskahoma Tuskegee Tussaud Tussilago Tussy Tustin Tut Tutankhamen Tutankhamon Tutankhamun Tutankhaten Tutelo Tutenkhamon Tutorkey Tutsi Tutsis Tutt Tuttle Tutto Tutu Tutuila Tutuilan Tutuilans Tututni Tutwiler Tuvalu Tuvaluan Tuvaluans Tuxedo Tuxtla Tuyuneiri Tuzla Tver Twaddell Twain Twana Twedy Tweed Tweeddale Tweedledee Tweedledum Tweedsmuir Twelfthtide Twelve Twelver Twenties Twi Twickenham Twila Twinbrooks Twining Twinkie Twinkies Twinoaks Twins Twinsburg Twisp Twitt Twitter Twizzlers Twombly Twp Twum Twyford Twyla Ty Tyaskin Tybald Tybalt Tybi Tybie Tyburn Tyburnian Tyche Tychius Tycho Tychon Tychonian Tychonic Tychonn Tydeus Tydides Tye Tygon Tygons Tyigh Tyika Tylenchus Tylenol Tylenols Tyler Tylerise Tylerism Tylerite Tylerize Tylersburg Tylersport Tylersville Tylerton Tylertown Tylopoda Tylosaurus Tylostoma Tylostomaceae Tylosurus Tymes Tymon Tymothy Tympanuchus Tynan Tyndale Tyndall Tyndallization Tyndallize Tyndareos Tyndareus Tyndaridae Tyne Tynemouth Tyner Tyneside Tyngsboro Tynwald Typees Typewriter Typha Typhaceae Typhlomolge Typhlopidae Typhlops Typhoean Typhoeus Typhon Typhonian Typhonic Typhula Typotheria Typotheriidae Tyr Tyra Tyranni Tyrannidae Tyrannides Tyranninae Tyrannosaurus Tyrannus Tyre Tyree Tyrian Tyrians Tyro Tyroglyphidae Tyroglyphus Tyrol Tyrolean Tyroleans Tyrolese Tyrolian Tyrolienne Tyroliennes Tyrone Tyronza Tyrr Tyrrell Tyrrhene Tyrrheni Tyrrhenian Tyrrhenum Tyrrheus Tyrrhus Tyrsenoi Tyrtaean Tyrtaeus Tyrus Tyson Tyto Tytonidae Tyty Tyumen Tyzine Tzaam Tzapotec Tzekung Tzendal Tzental Tzigane Tziganies Tzigany Tzong Tzotzil Tzupo Tzutuhil Tübingen U UA UAB UAE UAM UAPDU UAR UARS UART UAW UB UBA UBC UBM UBS UC UCAR UCB UCC UCCA UCD UCI UCL UCLA UCR UCSB UCSC UCSD UCSF UDA UDB UDC UDI UDMH UDP UDR UDT UEC UEL UFC UFO UFOlogical UFOlogist UFOlogists UFOs UFS UG UGC UH UHF UI UIC UID UIL UIMS UIP UIT UITP UIUC UK UKST UL ULANA UMT UMW UN UNCIO UNCLE UNCTAD UNDRO UNEF UNESCO UNHCR UNICEF UNICS UNIDO UNISTAR UNIVAC UNIX UNMA UNO UNRRA UNRWA UP UPC UPDS UPI UPS UPU UPWA UR URC UREP URL URLs US USA USAAF USAC USAF USAFA USAN USAR USB USC USCA USCG USD USDA USE USECC USENET USES USFL USG USGA USGS USHA USHGA USIA USIS USITA USL USLTA USM USMA USMC USMP USN USNA USNAS USO USOC USP USPHS USPO USPS USPTO USR USRC USS USSB USSCt USSR USSS USTC USV USW UT UTC UTE UTP UTQGS UTR UTWA UU UUCICO UUCP UUG UUM UUT UV UVA UVB UVS UW UWCSA UWS UZI UZIs Uaraycu Uarekena Uaupe Ubald Uball Ubana Ubangi Ubangis Ubbenite Ubbonite Ube Ubermensch Ubermenschen Ubii Ubiquarian Ubiquist Ubiquitarian Ubiquitarianism Ubiquitism Ubiquitist Ubly Ubuntu Uca Ucal Ucalegon Ucayale Ucayali Uccello Uchean Uchee Uchida Uchish Ucon Ud Uda Udaipur Udale Udall Udela Udele Udell Udella Udelle Udi Udic Udine Udish Udolphoish Uds Uehling Uel Uela Uele Uella Ueueteotl Ufa Uffizi Uganda Ugandan Ugandans Ugarit Ugaritian Ugaritic Ugarono Ugli Uglis Ugo Ugrian Ugrians Ugric Ugrics Ugroid Uhde Uhland Uhrichsville Uighur Uighurs Uigur Uigurian Uiguric Uigurs Uinta Uintatheriidae Uintatherium Uird Uirina Uis Uitlander Uitlanders Uitotan Uitzilopochtli Ujiji Ujjain Ujpest Ujungpandang Uke Ukiah Ukr Ukraina Ukraine Ukrainer Ukrainian Ukrainians Ul Ula Ulaanbaatar Ulah Ulan Ulane Ulani Ulberto Ulbricht Ulda Ule Uledi Uleki Ulen Ulex Ulfila Ulfilas Ulick Ulidia Ulidian Ulises Ulita Ull Ulla Ulland Ullapool Uller Ullin Ullman Ullr Ullswater Ullund Ullur Ullyot Ulm Ulmaceae Ulman Ulmaria Ulmer Ulmus Uloboridae Uloborus Ulonata Ulophocinae Ulothrix Ulotrichaceae Ulotrichales Ulotriches Ulotrichi Ulphi Ulphia Ulphiah Ulpian Ulric Ulrica Ulrich Ulrick Ulrika Ulrikaumeko Ulrike Ulsan Ulster Ulsterian Ulsterite Ulsterites Ulsterman Ulstermen Ulsterwoman Ulsterwomen Ultan Ultann Ultima Ultonian Ultonians Ultor Ultramontane Ultramontanes Ultramontanism Ultramontanisms Ultrasuede Ultrasuedes Ultun Ulu Ulua Ulund Uluru Ulva Ulvaceae Ulvales Ulvan Ulyanovsk Ulyssean Ulysses Uma Umatilla Umatillas Umaua Umayyad Umbarger Umbellales Umbelliferae Umbellula Umbellularia Umbellulidae Umberto Umbilicaria Umbra Umbria Umbrian Umbrians Umbriel Umbundu Umbundus Ume Umea Umeh Umeko Ummersen Umont Umpqua Umtali Un Una Unadilla Unakhotana Unalachtigo Unalaska Unami Unamis Unamuno Uncaria Uncasville Uncial Uncials Uncinaria Uncinata Uncinula Uncle Uncompahgre Underground Undergrounds Unders Undersecretaries Undersecretary Underwood Undine Undis Undry Undset Une Uneeda Unesco Ungava Unger Ungley Unguiculata Ungulata Uni Uniat Uniate Uniates Uniatism Uniatisms Uniats Unicode Unicoi Unifolium Unilever Unio Uniola Union Uniondale Unionhall Unionidae Unionism Unionisms Unionist Unionists Unionport Unions Uniontown Unionville Uniopolis Uniroyal Unit Unitarian Unitarianise Unitarianism Unitarianisms Unitarianize Unitarians Unitas United Unities Unity Unityhouse Unityville Univ Univac Universalian Universalism Universalisms Universalist Universalistic Universalists University Unix Unixes Unjewish Unkelos Unknowable Unni Uno Unona Unrra Unrussian Untermeyer Unterseeboot Unterwalden Untouchable Untouchables Unukalhai Unungun Upali Upanisad Upanisads Upanishad Upanishadic Upanishads Updike Upham Uphemia Upington Upis Upjohn Upland Upolu Upper Upperco Upperville Uppsala Upsala Upshaw Upson Upton Upupa Upupidae Ur Uragoga Ural Uralian Uralic Urals Uran Urana Urania Uranian Uranicentric Uranie Uraniidae Uranoscopidae Uranoscopus Uranus Urartaean Urartian Urartians Urartic Urata Uravan Urba Urbai Urbain Urban Urbana Urbani Urbanist Urbanna Urbannai Urbannal Urbano Urbanus Urbas Urbicolae Urceolina Urd Urdar Urdu Urdummheit Urdur Uredinales Uredineae Urediniopsis Uredo Urena Urey Urfa Urga Urgel Urginea Urgonian Uri Uria Uriah Urial Urian Urias Urich Uriconian Uriel Urien Uriia Uriiah Uriisa Urim Urina Urion Uris Urissa Urita Urmia Urmston Uro Urocerata Uroceridae Urochorda Urocoptidae Urocoptis Urocyon Urocystis Urodela Uroglena Uromastix Uromyces Uromycladium Uropeltidae Urophlyctis Uropsilus Uropygi Urquhart Ursa Ursal Ursala Ursas Ursel Ursi Ursid Ursidae Ursina Ursola Urson Ursprache Urspraches Ursula Ursulette Ursulina Ursuline Ursulines Ursus Urtext Urtexts Urtica Urticaceae Urticales Urticastrum Uru Uruapan Uruguaiana Uruguay Uruguayan Uruguayans Uruk Urukuena Urumchi Urumqi Urumtsi Urundi Ury Usanis Usbeg Usbegs Usbek Usbeks Usenet Usenets Ushak Ushaks Ushant Ushas Usheen Usher Usherian Ushijima Usipetes Usk Uskara Uskdar Uskfdar Uskok Uskub Uskudar Usnach Usnea Usneaceae Uspallata Uspanteca Ussher Ussuri Ustarana Ustashi Ustbem Ustilaginaceae Ustilaginales Ustilagineae Ustilaginoidea Ustilago Ustinov Ustulina Ustyurt Usumbura Usun Ut Uta Utah Utahan Utahans Utahn Utahns Utamaro Utas Ute Utes Utgard Utham Uther Uthrop Utica Uticas Utimer Utley Utnapishtim Utopia Utopian Utopianise Utopianism Utopianisms Utopianize Utopianizer Utopians Utopias Utraquism Utraquist Utraquists Utrecht Utricularia Utriculariaceae Utrillo Utsunomiya Utta Uttasta Utter Uttica Uttu Utu Utuado Uuge Uund Uvalda Uvalde Uvedale Uvella Uvularia Uwchland Uwton Uxbridge Uxmal Uyekawa Uyghur Uyghurs Uygur Uygurs Uzbak Uzbeg Uzbegs Uzbek Uzbekistan Uzbeks Uzi Uzia Uzial Uziel Uzis Uzzi Uzzia Uzziah Uzzial Uzziel V VA VAB VABIS VAC VAD VADS VAFB VAN VANS VAP VAR VASCAR VASI VAST VAT VAV VAX VAXBI VAXes VAr VArs VB VC VCCI VCM VCO VCR VCS VCU VD VDC VDE VDFM VDI VDM VDT VDU VE VEEGA VEU VEX VF VFEA VFO VFR VFS VFW VFY VG VGA VGF VGI VHD VHDL VHF VHS VHSIC VI VIC VIFRED VILE VINE VINES VIP VIPs VIR VISTA VITA VIU VJ VL VLA VLBA VLBI VLDL VLF VLIW VLSI VLT VM VMC VMCF VMCMS VMD VME VMM VMOS VMR VMRS VMS VMSP VMTP VN VNF VNL VNLF VNY VO VOA VODAS VOIR VOIS VOM VOQ VOR VORT VP VPF VPISU VPN VR VRC VRI VRM VRS VS VSAM VSAT VSB VSE VSO VSOP VSP VSR VSS VSSP VSX VT VTAM VTC VTI VTO VTOC VTOL VTP VTR VTS VTVM VU VUIT VUP VV VVSS VW VWS VX VXI Va Vaal Vaalpens Vaas Vaasa Vaasta Vacaville Vaccaria Vacciniaceae Vaccinium Vachel Vachell Vachellia Vacherie Vacherin Vachil Vachill Vacla Vaclav Vaclava Vacuna Vacuva Vada Vaden Vader Vadim Vadis Vadito Vadnee Vadodara Vadso Vadsu Vaduz Vaenfila Vafio Vaginicola Vagnera Vahe Vai Vaiden Vaidic Vaientina Vail Vaios Vaish Vaisheshika Vaishnava Vaishnavas Vaishnavism Vaishnavisms Vaisya Vaisyas Vaja Val Vala Valadon Valais Valaree Valaria Valarie Valaskjalf Valatie Valborg Valda Valdas Valdemar Valdepeas Valders Valdes Valdese Valdez Valdis Valdivia Valdosta Vale Valeda Valenay Valenba Valence Valencia Valencian Valencias Valenciennes Valene Valenka Valens Valenta Valente Valenti Valentia Valentide Valentijn Valentin Valentina Valentine Valentines Valentinian Valentinianism Valentino Valentinus Valenza Valenzuela Valer Valera Valeria Valerian Valeriana Valerianaceae Valerianales Valerianella Valerianoides Valerie Valerio Valerlan Valerle Valery Valerye Valeta Valetta Valhalla Vali Valiant Valida Valier Valina Valium Valiums Valkyr Valkyria Valkyrian Valkyrie Valkyries Valladolid Valle Valleau Vallecito Vallecitos Vallejo Vallenar Vallery Valletta Valley Valli Valliant Vallie Valliscaulian Vallisneria Vallisneriaceae Vallo Vallombrosa Vallombrosan Vallonia Vallota Vally Valma Valmeyer Valmid Valmiki Valmy Valois Valona Valonia Valoniaceae Valoniah Valora Valorie Valparaiso Valpolicella Valpolicellas Valrico Valry Valsa Valsaceae Valsalva Valsalvan Valsalvas Valtellina Valtin Valvata Valvatidae Valvoline Valyermo Valéry Vaman Vampyrella Vampyrellidae Vampyrum Van VanAtta VanHook Vanaheim Vanalstyne Vanbrugh Vance Vanceboro Vanceburg Vancourt Vancouver Vancouveria Vancouverite Vancouverites Vanda Vandal Vandalia Vandalic Vandals Vandemere Vandemonian Vandemonianism Vanden Vandenberg Vander Vanderbilt Vandergrift Vanderhoek Vanderpoel Vanderpool Vandervelde Vandervoort Vandiemenian Vandiver Vanduser Vandyke Vandykes Vandyne Vane Vanellus Vanessa Vanetha Vanetten Vang Vange Vanguard Vanguardist Vangueria Vanhomrigh Vanhorn Vanhornesville Vani Vania Vanier Vanir Vanist Vanna Vannai Vanndale Vannes Vannevar Vanni Vannic Vannie Vannuys Vanny Vano Vanorin Vansant Vansittart Vantassell Vanthe Vanuatu Vanuatuan Vanuatuans Vanvleck Vanwert Vanwyck Vanya Vanzant Vanzetti Vapors Vaporum Var Varah Varanasi Varanger Varangi Varangian Varanidae Varanoid Varanus Varase Vardaman Vardar Varden Vardhamana Vardon Vareck Varese Vargas Varginha Varhol VariTyper Variag Varian Varick Varidase Varien Varietyese Varina Varini Variolaria Varion Varipapa Varitype Varityper Varl Varna Varnell Varney Varnville Varolian Varrian Varro Varronia Varronian Varsovian Varsovians Varuna Varuni Vary Varysburg Vas Vasa Vasari Vascons Vaseline Vaselined Vaselines Vaselining Vashon Vashtee Vashti Vashtia Vasileior Vasilek Vasili Vasiliki Vasilis Vasiliu Vasily Vasos Vasquez Vass Vassalboro Vassar Vassaux Vassell Vassili Vassily Vasta Vastah Vasteras Vastha Vasthi Vasti Vasudeva Vasundhara Vasya Vasyuta Vat Vateria Vaterland Vatican Vaticanisation Vaticanise Vaticanism Vaticanist Vaticanization Vaticanize Vaticanus Vatman Vatmen Vatteluttu Vatter Vauban Vaucheria Vaucheriaceae Vaucluse Vaud Vaudism Vaudois Vaudoix Vaughan Vaughn Vaughnsville Vaules Vauxhall Vauxhallian Vayu Vazimba Vazquez Ve Veadar Veadars Veal Veator Veats Veblen Veblenian Veblenism Veblenite Vectian Vectis Veda Vedaic Vedaism Vedaisms Vedalia Vedanga Vedanta Vedantas Vedantic Vedantism Vedantisms Vedantist Vedantists Vedas Vedda Veddah Veddahs Veddas Vedder Veddoid Veddoids Vedetta Vedette Vedi Vedic Vediovis Vedis Vedism Vedist Veduis Vee Veedersburg Veedis Veep Veeps Vega Vegabaja Vegas Vegemite Veguita Vehm Vehme Vehmgericht Vehmgerichte Vehmic Vehmique Veii Veillonella Veiltail Veiovis Veit Vejoces Vejovis Vejoz Vela Velarde Velasco Velasquez Velazquez Velchanos Velcro Velcros Velcsquez Velda Veleda Velella Velez Velick Velika Veljkov Vella Velleman Vellore Vellozia Velloziaceae Velma Velon Velorum Velpen Velquez Velsen Velutina Velva Velveeta Velvet Velzquez Velásquez Velázquez Ven Vena Venable Venables Venango Venantes Venator Vend Venda Vendae Vendas Vendean Vendeans Vendee Vendelinus Vendemiaire Vendidad Venditti Vendmiaire Vendome Vendémiaire Vendôme Veneaux Vened Venedocia Venedotian Venedy Vener Venerable Veneracea Veneralia Veneres Veneridae Veneta Venetes Veneti Venetia Venetian Venetianed Venetians Venetic Venetis Veneto Venez Venezia Venezuela Venezuelan Venezuelans Venice Venita Venite Venites Venizelist Venizelos Venlo Venloo Venn Veno Venola Venolia Vent Venterea Ventersdorp Vento Ventolin Ventose Ventre Ventress Ventriculites Ventriculitidae Ventris Ventura Venturia Venu Venus Venusberg Venuses Venushair Venushairs Venusian Venusians Venustiano Venuti Venutian Veps Vepse Vepsish Ver Vera Veracruz Verada Veradale Veradi Veradia Veradis Veralyn Veratrum Verbank Verbascum Verbena Verbenaceae Verbenarius Verbenia Verbesina Vercelli Vercingetorix Verda Verde Verdel Verden Verdha Verdi Verdian Verdicchio Verdie Verdigre Verdon Verdun Verdunville Vere Vereeniging Verein Vereine Vereins Verel Verena Verene Vereshchagin Veretillum Vergas Verge Vergeltungswaffe Vergennes Verger Vergil Vergilian Vergilianism Vergne Vergos Veribest Veriee Verile Verina Verine Verity Verizon Verla Verlag Verlaine Verlee Verlia Verlie Vermeer Vermes Vermetidae Vermetus Vermicularia Vermiformia Vermilingues Vermilinguia Vermillion Vermont Vermonter Vermonters Vermontese Vermontville Vern Verna Vernaccia Vernal Verndale Verne Vernell Vernen Verner Vernet Verneuil Verney Vernice Vernier Vernita Vernoleninsk Vernon Vernonia Vernonieae Vernor Vernunft Verny Veron Verona Veronal Veronese Veronica Veronicas Veronicella Veronicellidae Veronika Veronike Veronique Verpa Verplanck Verras Verrazano Verrazzano Verrocchio Verrucaria Verrucariaceae Versace Versailles Vershen Vershire Versie Version Versions Verstand Vertebraria Vertebrata Verthandi Verticillium Vertoscope Vertoscopes Vertrees Vertumnus Verulamian Verulamium Verwanderung Verwoerd Very Vesalian Vesalius Vescuso Vesicularia Vesiculata Vesiculatae Vespa Vespasian Vesper Vespers Vespertilio Vespertiliones Vespertilionidae Vespertilioninae Vespidae Vespina Vespoidea Vespucci Vesta Vestaburg Vestalia Vestas Vesteras Vestie Vestigian Vestini Vestinian Vesty Vesuvian Vesuvio Vesuvius Veta Vetiveria Vetter Vevay Vevina Vevine Vey Vezza Vharat Vi Via Viacom Viafore Viagra Viagras Vial Vian Viareggio Vibhu Viborg Vibram Vibrio Viburnum Vic Vicara Vicco Viccora Vice Vicente Vicenza Vichies Vichy Vichyite Vici Vicia Vick Vickers Vickery Vickey Vicki Vickie Vicksburg Vicky Vico Viconian Vict Victoir Victoire Victor Victoria Victorian Victoriana Victorianas Victorianise Victorianises Victorianism Victorianisms Victorianization Victorianizations Victorianize Victorianized Victorianizes Victorianizing Victorianly Victoriano Victorians Victorie Victorien Victorine Victormanuel Victorville Victory Victrola Victrolas Victrolla Victrollas Vida Vidal Vidalia Vidar Vidda Viddah Viddhal VideoComp Videvdat Vidian Vidicon Vidicons Vidor Vidovic Vidovik Vidua Viduinae Viehmann Vienna Vienne Viennese Viens Vientiane Vieques Viereck Vierno Vierwaldsttersee Viet Vieta Vietcong Vietminh Vietnam Vietnamese Vietnamisation Vietnamise Vietnamised Vietnamises Vietnamising Vietnamization Vietnamize Vietnamized Vietnamizes Vietnamizing Vieva Viewdata Viewtown Vig Vigen Vigilius Viglione Vignola Vigny Vigo Vigor Vigrid Viguerie Viipuri Vijayanagar Vijayawada Viki Viking Vikings Vikki Vikky Vila Vilas Vilberg Vilela Vilfredo Vilhelmina Vilhjalmur Vili Villa Villach Villada Villafranchian Villahermosa Villalba Villamaria Villamont Villanova Villanovan Villanueva Villard Villarica Villarreal Villars Villas Villavicencio Villeneuve Villette Villeurbanne Villiers Villiplacentalia Villisca Villon Vilma Vilna Vilnius Vilonia Vilyui Viminal Vimy Vin Vina Vinalia Vinaya Vinca Vince Vincelette Vincennes Vincent Vincenta Vincentia Vincentian Vincentians Vincentown Vincents Vincenty Vincenz Vincenzo Vincetoxicum Vinci Vindelici Vindemiatrix Vindobna Vindobona Vine Vineburg Vineland Vinemont Vinethene Vineyarder Vineyarders Vingolf Vinia Vinie Vining Vinita Vinland Vinn Vinna Vinni Vinnie Vinnitsa Vinny Vinoba Vins Vinson Vinton Vintondale Viny Vinylite Vinyon Viola Violaceae Violales Violante Viole Violet Violeta Violetta Violette Violle Vip Viper Vipera Viperidae Viperina Viperinae Viperoidea Vipul Viquelia Vira Viradis Virales Viramune Viramunes Virbius Virchow Virden Viren Virendra Vireonidae Virg Virge Virgel Virgie Virgil Virgilia Virgilian Virgilina Virgilio Virgilism Virgin Virgina Virginal Virginale Virginia Virginian Virginians Virginid Virginie Virginis Virgins Virginville Virgo Virgoan Virgoans Virgos Virgularia Virgulariidae Virgy Viridi Viridis Viridissa Virnelli Viroqua Virtanen Virtus Visa Visakhapatnam Visalia Visaya Visayan Visayans Visby Visc Viscardi Visconti Viscount Visct Viseu Vish Vishakhapatnam Vishinsky Vishnavite Vishniac Vishnu Vishnuism Vishnuisms Vishnuite Vishnuites Vishnuvite Visigoth Visigothic Visigoths Visine Visitandine Visitation Visitations Visotoner Vistula Vistulian Vita Vitaceae Vitaglass Vitale Vitalian Vitalis Vitalium Vitaliums Vitallium Vitaphone Vite Vitebsk Vitek Vitharr Vithi Viti Vitia Vitim Vitis Vitkun Vito Vitoria Vitria Vitrina Vitruvian Vitruvianism Vitruvius Vitry Vitsyebsk Vittore Vittoria Vittorio Vituria Vitus Viv Viva Vivaldi Viveca Vivekananda Viverra Viverridae Viverrinae Vivi Vivia Vivian Viviana Viviane Vivianna Vivianne Vivica Vivie Vivien Viviene Vivienne Viviyan Vivl Vivle Vivyan Vivyanne Viyella Viyellas Vizagapatam Vizcaya Vize Vizsla Vizza Vizzone Vlaardingen Vlach Vlachs Vlad Vlada Vladamar Vladamir Vladi Vladikavkaz Vladimar Vladimir Vladivostok Vlaminck Vlasic Vliets Vlissingen Vlor Vlos Vltava Vlund Vnern Voca Voccola Vochysiaceae Vod Vodafone Vodafones Vodaphone Vodaphones Voe Voetian Vogel Vogele Vogeley Vogelweide Vogue Vogul Voguls Voiotia Vojvodina Vola Volans Volant Volantis Volapfk Volapk Volapuk Volapuker Volapukism Volapukist Volapukists Volapük Volapükist Volapükists Volborg Volcae Volcanalia Volcanus Volcker Voldemort Volding Voleta Voletta Volga Volgograd Volin Volk Volkan Volkerwanderung Volksdeutsche Volksdeutscher Volkslied Volkslieder Volksschule Volkswagen Volkswagens Volnak Volnay Volney Volny Vologda Volos Volotta Volpe Volpone Volscan Volsci Volscian Volscians Volstead Volsteadism Volsung Volsungasaga Volsungs Volta Voltaic Voltaire Voltairean Voltairian Voltairianize Voltairish Voltairism Volterra Voltmer Volturno Volturnus Voltz Volumnia Volund Volunteer Volunteers Voluntown Voluptas Voluspa Volutidae Volvet Volvo Volvocaceae Volvox Von Vona Vonda Vonnegut Vonni Vonnie Vonny Vonore Vonormy Vookles Voorheesville Voorhis Voortrekker Voortrekkers Vor Vorarlberg Vorfeld Vories Vorlage Voronezh Voronoff Voroshilov Voroshilovgrad Voroshilovsk Vors Vorspeise Vorspiel Vorstellung Vorster Vorticella Vorticellidae Vortumnus Vosges Vosgian Voskhod Voss Vossburg Vostok Votaw Vote Votish Votyak Vougeot Vought Vouli Vouvray Vouvrays Vowel Vowinckel Voyager Voyt Vrablik Vredenburgh Vreeland Vries Vrita Vsterbottensost Vstgtaost Vt Vtarj Vte Vtehsta Vtern Vtesse Vu Vudimir Vuillard Vuitton Vul Vulcan Vulcanalia Vulcanalial Vulcanalian Vulcanian Vulcanic Vulg Vulgate Vulgates Vullo Vulpecula Vulpeculae Vulpeculid Vulpes Vulpinae Vultur Vulturidae Vulturinae Vulund Vyatka Vyborg Vycor Vycors Vyernyi Vyky Vyner Vyrene Vyse Vyshinsky Vyvyan Völkerwanderung W WA WAAAF WAAC WAAF WAC WADS WAF WAFS WAG WAIS WAL WAM WAN WAP WARC WASP WASPier WASPiest WASPiness WASPinesses WASPish WASPishness WASPishnesses WASPy WATFOR WATS WATSUP WAVE WAVES WAY WB WBC WBS WC WCC WCL WCPC WCS WCTU WD WDC WDM WDT WECo WELL WEU WF WFPC WFPCII WFTU WG WGS WH WHBL WHO WHOI WHSE WI WIMP WINS WIP WIPO WIS WIT WITS WIYN WKS WL WLM WM WMC WMO WMSCR WNN WNP WNW WO WOPR WORM WOW WP WPA WPB WPC WPS WR WRA WRAAC WRAAF WRAC WRAF WRANS WRESAT WRNS WRT WRVS WS WSD WSI WSJ WSMR WSN WSP WSW WTF WTR WU WUPPE WV WVS WVa WW WWFO WWI WWII WWMCCS WWOPS WWW WY WYSIWIS WYSIWYG Wa Waac Waacs Waadt Waaf Waafs Waal Waals Waasi Waban Wabanaki Wabanakis Wabash Wabasha Wabasso Wabbaseka Wabena Wabeno Wabi Wabuma Wabunga Wac Waccabuc Wace Wachaga Wachapreague Wachenheimer Wachtel Wachter Wachuset Wacissa Wack Waco Waconia Wacs Wadai Waddell Waddenzee Waddington Waddle Waddy Wade Wadell Wadena Wadesboro Wadestown Wadesville Wadesworth Wadham Wadhams Wadleigh Wadley Wadlinger Wadsworth Waechter Waelder Waers Waf Wafd Wafdist Wafs Waganda Wagarville Wagener Wager Waggoner Waggumbura Wagner Wagneresque Wagnerian Wagneriana Wagnerianism Wagnerians Wagnerise Wagnerism Wagnerist Wagnerite Wagnerites Wagnerize Wagogo Wagoma Wagon Wagoner Wagontown Wagram Wagshul Wagstaff Wagtail Waguha Wagweno Wahabi Wahabiism Wahabis Wahabism Wahabisms Wahabit Wahabite Wahabites Wahabitism Wahehe Wahhabi Wahhabiism Wahhabis Wahhabism Wahhabisms Wahhabite Wahhabites Wahiawa Wahima Wahkiacus Wahkon Wahkuna Wahl Wahlenbergia Wahlstrom Wahoo Wahpekute Wahpekutes Wahpeton Wahpetons Waialua Waianae Waibling Waicuri Waicurian Waiguli Waiilatpuan Waikato Waikiki Wailaki Wailoo Wailuku Waimanalo Waimea Wain Waine Wainscott Wainwright Waipahu Waismann Wait Waite Waiter Waiteville Waitsburg Waitsfield Waiwai Waiyeung Wajda Waka Wakamba Wakarusa Wakashan Wakayama Wake Wakeen Wakeeney Wakefield Wakeman Wakenda Wakerly Wakhi Waki Wakita Wakonda Wakore Wakpala Waksman Wakulla Wakwafi Wal Walach Walachia Walachian Walachians Walapai Walapais Walbrzych Walburg Walburga Walcheren Walchia Walcoff Walcott Walczak Wald Waldack Waldemar Walden Waldenburg Waldensean Waldenseans Waldenses Waldensian Waldensianism Waldensians Waldheim Waldheimia Waldman Waldner Waldo Waldoboro Waldon Waldorf Waldos Waldport Waldron Waldstein Waldsteinia Waldsterben Waldteufel Waldwick Waler Walers Wales Walesa Waleska Waley Walford Walgreen Walhall Walhalla Walhonding Waligore Walke Walker Walkersville Walkerton Walkertown Walkerville Walkling Walkman Walkmans Walkyrie Walkyries Wall Wallaby Wallace Wallaceton Wallach Wallache Wallachia Wallachian Wallachians Wallack Walland Wallas Wallasey Wallawalla Wallback Wallburg Wallensis Wallenstein Waller Wallerian Walley Wallford Walli Wallie Walling Wallinga Wallingford Wallington Wallis Wallisville Walliw Wallkill Wallon Wallonian Walloon Walloons Wallowa Wallraff Walls Wallsburg Wallsend Wallula Wally Walmart Walnutshade Walpapi Walpole Walpolean Walpolian Walpurga Walpurgis Walpurgisnacht Walpurgisnachts Walras Walrath Walsall Walsenburg Walsh Walshville Walsingham Walston Walstonburg Walt Walter Walterboro Walterene Walters Waltersburg Walterville Walthall Waltham Walthamstow Walther Walthourville Waltner Walton Waltonian Waltonville Walworth Waly Wambuba Wambugu Wambutti Wamego Wampanoag Wampanoags Wampler Wampsville Wampum Wams Wamsley Wamsutter Wan Wana Wanakena Wanamaker Wanamingo Wanapum Wanaque Wanatah Wanblee Wanchan Wanchese Wanchuan Wanda Wanderer Wanderjahr Wanderjahre Wandie Wandis Wando Wandorobo Wandsworth Wandy Wane Waneatta Waneta Wanette Wanfried Wang Wanganui Wangara Wangchuk Wangoni Wanhsien Wanids Wankel Wankie Wann Wannaska Wanonah Wantagh Wanyakyusa Wanyamwezi Wanyasa Wanyen Wanyoro Wapakoneta Wapanucka Wapato Wapella Wapello Wapisiana Wapogoro Wapokomo Wappapello Wappato Wappes Wappinger Wappingers Wappo Wapwallopen War Warangal Warba Warbeck Warchaw Ward Warda Warde Wardell Warden Wardens Wardensville Warder Wardian Wardieu Wardlaw Wardle Wardsboro Wardtown Wardville Ware Waregga Wareham Wareing Warenne Waresboro Wareshoals Waretown Warfeld Warfield Warfold Warford Warfordsburg Warfore Warfourd Warga Wargentin Warhol Warholian Warila Waring Warley Warminster Warms Warne Warner Warners Warnerville Warnock Warori Warp Warram Warrau Warren Warrendale Warrenne Warrens Warrensburg Warrensville Warrenton Warrenville Warri Warrick Warrin Warring Warrington Warsaw Warta Wartburg Warthe Warthen Warthman Warton Wartow Wartrace Warua Warundi Warwick Warwickshire Wasagara Wasandawi Wasango Wasat Wasatch Wasco Wascott Waseca Wasegua Wash Washaki Washburn Washington Washingtonboro Washingtonese Washingtonia Washingtonian Washingtoniana Washingtonians Washingtonville Washita Washitas Washko Washo Washoan Washoe Washoes Washos Washougal Washta Washtucna Wasir Waskish Waskom Wasoga Wasola Wasp Waspdom Waspdoms Waspier Waspiest Waspish Waspishness Waspishnesses Wasps Waspy Wassaic Wasserman Wassermann Wassermanns Wassily Wasson Wassyngton Wast Wasta Wasukuma Waswahili Wat Wataga Watala Watanabe Watauga Watchung Waterberg Waterboro Waterbury Wateree Waterer Waterflow Waterford Watergate Watergates Waterhouse Waterlander Waterlandian Waterloo Waterloos Waterman Waterport Waters Watersmeet Watertown Waterview Waterville Watervliet Watford Watha Wathen Wathena Watkin Watkins Watkinsville Watonga Watrous Watseka Watson Watsonia Watsontown Watsonville Watt Watteau Wattenberg Wattenscheid Watters Watterson Watton Watts Wattsburg Wattsville Watusi Watusis Watutsi Watutsis Waubun Wauchula Waucoma Wauconda Waugh Waukau Waukee Waukegan Waukesha Waukomis Waukon Wauna Waunakee Wauneta Waupaca Waupun Waura Wauregan Waurika Wausa Wausau Wausaukee Wauseon Wauters Wautoma Wauwatosa Wauzeka Wave Waveland Wavell Waverley Waverly Waves Wavira Wawaka Wawarsing Wawina Wawro Waxahachie Waxhaw Waxler Waxman Way Wayan Wayao Waycross Waylan Wayland Waylen Waylin Waylon Waymart Waynant Wayne Waynesboro Waynesburg Waynesfield Waynesville Waynetown Waynoka Wayolle Wayzata Wazir Wazirabad Waziristan Wb WbN WbS Wbn Wburg Wea Weaks Weald Wealden Wealthies Wealthy Weanoc Weapemeoc Wear Weare Wearing Weasner Weatherby Weatherford Weatherley Weatherly Weathers Weatogue Weaubleau Weaver Weaverville Web Webb Webber Webberville Webbville Webcast Webcasting Webcastings Webcasts Weber Weberian Webern Webmaster Webmasters Website Websites Webster Websterian Websters Websterville Wed Weddell Wedderburn Wedekind Wedgefield Wedgie Wedgies Wedgwood Wedgwoods Wednesday Wednesdays Wedowee Wedron Wedurn Weed Weeda Weedsport Weedville Weekley Weeks Weeksbury Weelkes Weems Weepingwater Weesatche Wega Wehner Wehr Wehrle Wehrmacht Wei Weibel Weichsel Weidar Weide Weider Weidman Weidner Weierstrass Weierstrassian Weig Weigel Weigela Weight Weightometer Weigle Weihai Weihaiwei Weihs Weikert Weil Weiler Weill Weiman Weimar Weimaraner Weimaraners Weimarian Weimarians Wein Weinberg Weinberger Weinek Weiner Weinert Weingarten Weingartner Weinhardt Weinman Weinmannia Weinreb Weinrich Weinshienk Weinstein Weinstock Weintrob Weippe Weir Weirds Weirick Weirsdale Weirton Weirwood Weisbart Weisberg Weisbrodt Weisburgh Weiser Weisler Weisman Weismann Weismannian Weismannism Weismannisms Weiss Weissberg Weissert Weisshorn Weissman Weissmanism Weissmanisms Weissmann Weissmuller Weissnichtwo Weitman Weitspekan Weitzman Weixel Weizmann Weksler Welaka Weland Welbie Welby Welch Welcher Welches Welchman Welchsel Welcome Welcomed Welcoming Welcy Weld Welda Weldmesh Weldon Weldona Weldwood Weleetka Welf Welfare Welfic Welford Welker Welkom Welland Wellborn Wellbutrin Wellbutrins Weller Wellerism Wellerisms Welles Wellesley Wellesz Wellford Welling Wellingborough Wellington Wellingtonia Wellingtons Wellman Wellpinit Wells Wellsboro Wellsburg Wellsian Wellston Wellsville Wellton Wels Welsh Welshery Welshism Welshland Welshlike Welshman Welshmen Welshness Welshry Welshwoman Welshwomen Welshy Weltanschauung Weltanschauungen Weltanschauungs Weltansicht Welton Weltpolitik Weltschmerz Weltschmerzes Welty Welwitschia Wembley Wemyss Wenatchee Wenceslas Wenceslaus Wenchow Wenchowese Wend Wenda Wendall Wendalyn Wende Wendel Wendelin Wendelina Wendeline Wendell Wenden Wendi Wendic Wendie Wendin Wendish Wendolyn Wendover Wends Wendt Wendy Wendye Wenger Wengert Wenham Wenlock Wenlockian Wenn Wennerholn Wenoa Wenona Wenonah Wenrohronon Wensleydale Wentworth Wentzville Wenz Wenzel Weogufka Weott Wera Werbel Werby Werchowinci Werfel Werner Wernerian Wernerism Wernersville Wernher Wernick Wernsman Werra Wershba Wertheimer Werther Wertherian Wertherism Wertz Wes Wesa Wesak Wesco Wescott Weser Wesermde Weskan Wesker Wesla Weslaco Wesle Weslee Wesley Wesleyan Wesleyanism Wesleyanisms Wesleyans Wesleyism Wesleyisms Wesleyville Wessex Wessexman Wessi Wessington Wessis Wessling Wesson West Westberg Westborough Westbrook Westbrooke Westby Westchester Wester Westerfield Westerlies Westerly Westermarck Western Westerner Westerners Westernism Westernisms Westernization Westernizations Westernport Westerns Westerville Westfahl Westfalen Westfall Westfield Westhead Westie Westies Westinghouse Westland Westlander Westleigh Westley Westlund Westm Westmeath Westminster Westmont Westmoreland Westmorland Westney Weston Westphal Westphalia Westphalian Westphalians Westport Westpreussen Westralian Westralianism Wests Westville Westwall Westwego Westwood Westworth Wetherby Wethersfield Wetmore Wetterhorn Wetumka Wetumpka Wetzel Wetzell Wever Wevertown Wewahitchka Wewela Wewenoc Wewoka Wexford Wexler Wey Weyanoke Weyauwega Weyden Weyerhaeuser Weyerhauser Weyermann Weygand Weyl Weylin Weymouth Weywadt Wezen Wezn Wfrm Wfrttemberg Wfrzburg Wh Whalan Whale Whalen Whales Whaleysville Whall Whallon Whallonsburg Whang Whangarei Wharncliffe Wharton Whately Whatley Wheatcroft Wheatfield Wheaties Wheatland Wheatley Wheaton Wheatstone Wheelabrator Wheeler Wheelersburg Wheeling Wheelock Wheelwright Whelan Wheller Whetstone Whewell Whick Whiffen Whig Whiggamore Whiggarchy Whiggeries Whiggery Whiggess Whiggification Whiggify Whiggish Whiggishly Whiggishness Whiggism Whiggisms Whigham Whiglet Whigling Whigs Whigship Whilkut Whiney Whip Whipholt Whippany Whipple Whippleville Whips Whirlaway Whirlpool Whiskeytown Whisson Whistler Whistlerian Whistonian Whit Whitaker Whitakers Whitaturalist Whitbread Whitby Whitcher Whitcomb White Whitebird Whitebook Whiteboy Whiteboyism Whiteboys Whitechapel Whiteclay Whitefield Whitefieldian Whitefieldians Whitefieldism Whitefieldite Whitefieldites Whitefish Whitefoot Whiteford Whitehall Whitehead Whiteheath Whitehorse Whitehouse Whitehurst Whiteland Whitelaw Whiteley Whiteowl Whitepost Whites Whitesboro Whitesburg Whiteside Whitestone Whitestown Whitesville Whitethorn Whiteville Whitewater Whitewood Whitewright Whitey Whiteys Whitfield Whitford Whitharral Whiting Whitingham Whitinsville Whitlam Whitlash Whitley Whitleyism Whitleyville Whitlock Whitman Whitmanese Whitmanesque Whitmanian Whitmanise Whitmanism Whitmanize Whitmer Whitmire Whitmonday Whitmondays Whitmore Whitnell Whitney Whitneyville Whitsett Whitson Whitstable Whitsun Whitsunday Whitsundays Whitsuntide Whitsuntides Whitt Whittaker Whittemore Whitten Whittier Whittington Whittle Whitver Whitweek Whitwell Whitworth Whon Whorton Whyalla Whymper Whyte WiFi Wiak Wiatt Wibaux Wiborg Wiburg Wicca Wiccan Wiccans Wiccas Wichern Wichita Wichitas Wichman Wick Wickatunk Wickenburg Wickes Wickett Wickham Wickliffe Wicklow Wickman Wickner Wicks Wiclif Wicomico Wiconisco Wideman Widener Widera Widgery Widnes Widnoon Widor Widukind Wie Wiebmer Wieche Wiedmann Wiegenlied Wieland Wiemar Wien Wiencke Wiener Wieners Wienerwurst Wier Wieren Wiersma Wiesbaden Wiese Wiesel Wiesenthal Wiffle Wiffles Wig Wigan Wiggin Wiggins Wigglesworth Wight Wightman Wigner Wigtown Wigtownshire Wihnyk Wii Wikeno Wikieup Wikipedia Wikstroemia Wil Wilbar Wilber Wilberforce Wilbert Wilbraham Wilbur Wilburite Wilburn Wilburt Wilburton Wilcoe Wilcox Wilda Wilde Wildean Wildee Wilden Wilder Wildermuth Wilderness Wildersville Wildhorse Wildie Wildomar Wildon Wildorado Wildrose Wildsville Wildwood Wileen Wilek Wilen Wiles Wiley Wileyville Wilford Wilfred Wilfreda Wilfredo Wilfrid Wilhelm Wilhelmina Wilhelmine Wilhelmshaven Wilhelmstrasse Wilhide Wilhlem Wilie Wilinski Wilkens Wilkerson Wilkes Wilkesbarre Wilkesboro Wilkeson Wilkesville Wilkey Wilkie Wilkins Wilkinson Wilkinsonville Wilkison Wilkommenn Will Willa Willabel Willabella Willabelle Willacoochee Willaert Willamette Willamina Willard Willards Willcox Willdon Willem Willemstad Willendorf Willene Willernie Willesden Willet Willett Willetta Willette Willey Willi William Williams Williamsburg Williamsen Williamsfield Williamson Williamsonia Williamsoniaceae Williamsport Williamston Williamstown Williamsville Willie Williford Willimantic Willin Willing Willingboro Willis Willisburg Williston Willisville Willits Willkie Willman Willmar Willmert Willms Willner Willock Willoughby Willow Willowick Willows Willowshade Willowstreet Willowwood Wills Willsboro Willseyville Willshire Willtrude Willugbaeya Willumsen Willy Willyt Wilma Wilmar Wilmer Wilmerding Wilmette Wilmington Wilmingtonian Wilmont Wilmore Wilmot Wilmott Wilno Wilona Wilonah Wilone Wilow Wilsall Wilscam Wilser Wilsey Wilseyville Wilshire Wilsie Wilson Wilsonburg Wilsondale Wilsonian Wilsonianism Wilsonism Wilsons Wilsonville Wilt Wilterdink Wilton Wiltons Wilts Wiltsey Wiltshire Wiltshires Wiltz Wimauma Wimberley Wimbledon Wimpy Wimsatt Wimsey Win Wina Winamac Winburne Wincer Winchell Winchendon Winchester Winchesters Winckelmann Wind Windaus Windber Windbreaker Windbreakers Windcheater Windcheaters Windelband Winder Windermere Windesheimer Windex Windham Windhoek Windies Windom Windows Windscale Windsor Windsors Windsurfer Windsurfers Windthorst Windward Windy Windyville Windzer Winebaum Winebrennerian Winer Winesap Winesaps Winesburg Winfall Winfield Winfred Winfrey Winfrid Wing Wingdale Winger Wingina Wingo Wini Winifield Winifred Winifrede Winigan Winikka Winkelman Winkelried Winkle Winlock Winn Winna Winnabow Winnah Winne Winnebago Winnebagoes Winnebagos Winneconne Winnecowet Winnemucca Winnepesaukee Winner Winnetka Winnetoon Winnett Winnfield Winni Winnick Winnie Winnies Winnifred Winnipeg Winnipegger Winnipeggers Winnipegosis Winnipesaukee Winnisquam Winnsboro Winny Winograd Winola Winona Winonah Winooski Winou Winser Winshell Winside Winslow Winsome Winson Winsor Winsted Winston Winstonn Winstonville Wintel Winter Winteraceae Winteranaceae Winterbottom Winterport Winterreise Winters Winterset Winterson Wintersville Winterthur Winterville Winther Winthorpe Winthrop Winton Wintu Wintun Wintuns Wintus Winwaloe Winzler Wiota Wira Wirephoto Wirephotoed Wirephotoing Wirephotos Wiros Wirral Wirth Wirtschaftswunder Wirtz Wis Wisacky Wisbech Wisby Wisc Wiscasset Wisconsin Wisconsinite Wisconsinites Wisd Wisden Wisdom Wise Wiseman Wishek Wishoskan Wishram Wisigothic Wiskind Wisla Wismar Wisner Wisnicki Wissler Wistaria Wister Wisteria Wistrup Wit Witbooi Witcher Witha Withams Withania Withee Wither Witherbee Withers Witherspoon Witkin Witmer Witness Witnesses Witoto Witt Witte Wittekind Witten Wittenberg Wittenburg Wittensville Witter Wittgenstein Wittgensteinian Wittie Wittman Wittmann Witty Witumki Witwatersrand Wivestad Wivina Wivinah Wivinia Wixom Wixted Wiyat Wiyot Wladyslaw Wm Wobblies Wobbly Wobegon Woburn Wochua Wodan Wodehouse Woden Wodenism Woehick Woermer Woffington Wogan Wogulian Wohlen Wohlert Wojak Wojcik Wojtyla Woking Wolbach Wolbrom Wolcott Wolcottville Wold Wolds Wolenik Wolf Wolfcoal Wolfe Wolfeboro Wolff Wolffia Wolffian Wolffianism Wolfforth Wolfgang Wolfgram Wolfian Wolfie Wolfit Wolford Wolfort Wolfpen Wolfram Wolfsburg Wolfson Wolftown Wolfy Wolgast Wolk Woll Wollaston Wollis Wollongong Wollstonecraft Wolof Wolofs Wolpert Wolseley Wolsey Wolsky Wolverhampton Wolverine Wolverines Wolverton Womack Womelsdorf Won Wonacott Wonalancet Wonder Wonderbra Wonderbras Wonders Wonewoc Wong Wongara Wonnie Wonsan Woo Wood Woodacre Woodall Woodard Woodberry Woodbine Woodbourne Woodbridge Woodburn Woodbury Woodcock Wooddale Wooden Woodfield Woodford Woodhead Woodhenge Woodhouse Woodhull Woodie Woodinville Woodlake Woodlawn Woodleaf Woodley Woodlyn Woodman Woodmen Woodmere Woodring Woodrow Woodruff Woods Woodsboro Woodscross Woodser Woodsfield Woodshole Woodsia Woodson Woodstock Woodston Woodstown Woodsum Woodsville Woodville Woodward Woodwardia Woodworth Woody Woolcott Wooldridge Woolf Woolford Woolite Woolley Woollum Woolongong Woolrich Woolson Woolstock Woolwa Woolwich Woolwine Woolworth Woomera Woonsocket Wooster Woosung Wootan Wooten Woothen Wooton Wootten Wop Wops Worcester Worcesters Worcestershire Worcestershires Word Worden Words Wordsworth Wordsworthian Wordsworthianism Work Workman Worksop Worl Worland World Worlds Worley Worlock Wormian Worms Woronoco Worrell Worsham Worship Worshipful Worships Worsley Worth Wortham Worthing Worthington Worthville Worthy Worton Wotan Wotton Wouk Wovoka Woxall Woyaway Wozniak Wozzeck Wraac Wracs Wraf Wrafs Wran Wrand Wrangel Wrangell Wrath Wray Wrekin Wren Wrench Wrennie Wrens Wrenshall Wrentham Wrexham Wright Wrights Wrightsboro Wrightson Wrightstown Wrightsville Wrightwood Wrigley Writings Wroclaw Wronskian Wrottesley Wrycht Wsan Wtemberg Wu Wuchang Wuchereria Wuhan Wuhsien Wuhu Wulf Wulfe Wulfila Wullie Wun Wunder Wunderkind Wunderkinder Wunderkinds Wundt Wundtian Wunsan Wuppertal Wurlitzer Wurm Wurmian Wurst Wurster Wurtsboro Wurttemberg Wurtz Wurzburg Wurzburger Wusih Wutsin Wy Wyaconda Wyalusing Wyandot Wyandots Wyandotte Wyandottes Wyanet Wyano Wyarno Wyat Wyatan Wyatt Wycherley Wyck Wyckoff Wyclif Wycliffe Wycliffian Wycliffism Wycliffisms Wycliffist Wycliffite Wycliffites Wyclifism Wyclifite Wyco Wycoff Wycombe Wye Wyeth Wyethia Wyeville Wykeham Wykehamical Wykehamist Wykehamists Wykoff Wyld Wylde Wylen Wyler Wylie Wylliesburg Wylma Wyly Wyman Wymer Wymore Wyn Wynantskill Wyncote Wyndham Wyndmere Wyne Wyner Wynn Wynnburg Wynne Wynnewood Wynnie Wynny Wynona Wynot Wyo Wyocena Wyola Wyoming Wyomingite Wyomingites Wyomissing Wyon Wyrd Wysox Wystand Wytheville Wytopitlock Würm Würmian Würzburg X XA XB XBT XCF XD XDMCP XDR XEmacs XFE XFER XID XIE XIM XINU XL XMI XML XMM XMS XMTR XN XNS XO XOR XP XPG XPORT XQ XRM XS XSECT XT XTAL XTC XUI XUV XVIEW XWSDS XXL XYZ Xanadu Xanadus Xantha Xanthe Xanthian Xanthidium Xanthinthique Xanthippe Xanthippes Xanthisma Xanthium Xanthocephalus Xanthoceras Xanthochroi Xanthochroic Xanthomelanoi Xanthomonas Xanthophyceae Xanthopia Xanthorrhiza Xanthorrhoea Xanthosoma Xanthoura Xanthoxalis Xanthoxylum Xanthus Xantippe Xantippes Xaverian Xavier Xaviera Xavler Xe Xema Xena Xenacanthini Xenakis Xenarchi Xenarthra Xenia Xenicidae Xenicus Xeno Xenoclea Xenocratean Xenocrates Xenocratic Xenomi Xenomorpha Xenopeltidae Xenophanean Xenophanes Xenophon Xenophonic Xenophontean Xenophontian Xenophontic Xenophontine Xenophora Xenophoridae Xenopodidae Xenopsylla Xenopteri Xenopterygii Xenopus Xenorhynchus Xenos Xenosauridae Xenosaurus Xenurus Xer Xeranthemum Xeres Xeriscape Xeriscapes Xerophyllum Xerox Xeroxed Xeroxes Xeroxing Xers Xerus Xerxes Xes Xever Xhosa Xhosan Xhosas Xiamen Xian Xians Xiaoping Xicak Xicaque Ximena Ximenean Ximenes Ximenez Ximenia Xina Xinca Xincan Xing Xingu Xinhua Xiongnu Xipe Xiphias Xiphiidae Xiphisura Xiphiura Xiphius Xiphodon Xiphodontidae Xiphosura Xiphosuridae Xiphosurus Xiphura Xiphydria Xiphydriidae Xiraxara Xizang Xmas Xmases Xn Xnty Xochipilli Xograph Xopher Xosa Xosas Xt Xtian Xty Xuthus Xuzhou Xylaria Xylariaceae Xyleborus Xylia Xylina Xylocaine Xylocaines Xylocopa Xylocopidae Xylon Xylonite Xylophaga Xylophagidae Xylophagus Xylopia Xylosma Xylotrya Xymenes Xyrichthys Xyridaceae Xyridales Xyris Y YA YACC YAG YB YCL YHA YHVH YHWH YMCA YMCathA YMHA YMMV YOB YP YPSCE YPVS YRS YSO YST YT YTD YU YV YWCA YWHA YY Yaakov Yablon Yablonovoi Yabucoa Yacano Yacc Yachats Yacolt Yacov Yadava Yadkin Yadkinville Yaeger Yael Yafa Yafo Yager Yagi Yagnob Yagua Yahata Yahgan Yahganan Yahgans Yahiya Yahoo Yahoodom Yahooish Yahooism Yahoos Yahrzeit Yahrzeits Yahtzee Yahuna Yahuskin Yahve Yahveh Yahvism Yahvisms Yahvist Yahvistic Yahvists Yahwe Yahweh Yahwism Yahwisms Yahwist Yahwistic Yahwists Yajna Yajnavalkya Yajurveda Yaka Yakala Yakama Yakamas Yakan Yaker Yakima Yakimas Yakona Yakonan Yakut Yakutat Yakuts Yakutsk Yalaha Yale Yalensian Yales Yalonda Yalow Yalta Yalu Yam Yama Yamacraw Yamagata Yamaha Yamamadi Yamani Yamasee Yamasees Yamashita Yamassee Yamato Yamauchi Yamel Yameo Yami Yamis Yamoussoukro Yampa Yamuna Yan Yana Yanan Yanaton Yance Yancey Yanceyville Yancy Yand Yang Yangkf Yangku Yangon Yangshao Yangtze Yanina Yank Yankee Yankeedom Yankeedoms Yankeefied Yankeefy Yankeefying Yankeeism Yankeeisms Yankeeist Yankeeize Yankeeland Yankeeness Yankees Yankeetown Yanks Yankton Yanktonai Yanktonais Yanktons Yann Yannigan Yannina Yanomami Yanomamis Yanomamo Yanomamos Yanqui Yanquis Yantic Yantis Yao Yaobang Yaos Yaounde Yap Yapese Yaphank Yapman Yapur Yaqui Yaquina Yaquis Yarak Yarborough Yarboroughs Yard Yardie Yardies Yardley Yards Yaren Yarkand Yarmouth Yarmuk Yarnell Yaron Yaroslavl Yaru Yarura Yaruran Yaruro Yarvis Yasht Yashts Yasmeen Yasmin Yasmine Yasna Yasnian Yassy Yasu Yasui Yasuo Yat Yataro Yate Yates Yatesboro Yatesville Yatigan Yats Yatvyag Yatzeck Yauapery Yauco Yaunde Yavapai Yavapais Yavar Yawata Yawkey Yaya Yazbak Yazd Yazdegerdian Yazoo Yb Ydalir Yeaddiss Yeager Yeagertown Yeargain Yearwood Yeaton Yeats Yeatsian Yecies Yedo Yee Yefremov Yeh Yehudi Yehudit Yeisk Yekaterinburg Yekaterinodar Yekaterinoslav Yelena Yelich Yelisavetgrad Yelisavetpol Yellow Yellowknife Yellowstone Yellville Yelm Yelmene Yeltsin Yemane Yemassee Yemen Yemeni Yemenic Yemenis Yemenite Yemenites Yen Yenakiyero Yenan Yengee Yengeese Yenisei Yeniseian Yenisey Yentai Yeo Yeorgi Yerava Yeraver Yerevan Yerga Yerington Yerkes Yerkovich Yermo Yerxa Yesenia Yesenin Yeshibah Yeshiva Yesilk Yesilkoy Yesima Yeso Yeta Yetac Yetah Yeti Yetis Yetta Yettem Yetti Yettie Yetty Yeung Yevette Yevtushenko Yezd Yezdi Yezidi Yezidis Yezo Yf Yfan Yfnnan Ygdrasil Ygerne Yggdrasil Yi Yid Yiddish Yiddisher Yiddishism Yiddishisms Yiddishist Yiddishists Yiddishkeit Yiddishkeits Yids Yigdal Yikirgaulit Yila Yildun Yim Yin Yinchuan Yingkow Yinglish Yinglishes Yirinec Yizkor Yizkors Ylla Yma Ymir Ynan Ynes Ynez Yoakum Yoda Yoder Yoga Yogas Yogi Yogic Yogin Yogis Yogism Yogist Yoho Yojuane Yokkaichi Yoknapatawpha Yoko Yokohama Yokosuka Yokoyama Yokum Yokuts Yola Yolanda Yolande Yolane Yolanthe Yoldia Yolo Yolyn Yompur Yomud Yona Yonah Yonatan Yoncalla Yong Yonina Yonit Yonita Yonkalla Yonkers Yonkersite Yonne Yoo Yoong Yooper Yoopers Yordan Yorgen Yorgo Yorgos Yorick York Yorke Yorker Yorkie Yorkies Yorkish Yorkist Yorkists Yorklyn Yorks Yorkshire Yorkshireism Yorkshireman Yorkshiremen Yorkshires Yorksppings Yorkton Yorktown Yorkville Yoruba Yorubaland Yoruban Yorubans Yorubas Yosemite Yoshi Yoshihito Yoshiko Yoshio Yossarian Yost YouTube Youlou Youlton Young Younger Younglove Youngman Youngran Youngstown Youngsville Youngtown Youngwood Yountville Youskevitch Yousuf Yovonnda Yponomeuta Yponomeutid Yponomeutidae Ypres Ypsilanti Ypurinan Yquem Yquems Yreka Ysabel Ysaye Yser Yseult Yseulta Yseulte Ysolde Yssel Yt Yu Yuan Yuapin Yucaipa Yucat Yucatan Yucatcn Yucatec Yucatecan Yucatecans Yucateco Yucatecs Yucatnel Yucca Yuchi Yuchis Yuechi Yuga Yugas Yugo Yugoslav Yugoslavia Yugoslavian Yugoslavians Yugoslavic Yugoslavs Yuhas Yuille Yuit Yuji Yuk Yukaghir Yukaghirs Yukagir Yukagirs Yukawa Yuki Yukian Yukio Yukon Yukoner Yul Yulan Yule Yulee Yules Yuletide Yuletides Yulma Yuma Yuman Yumans Yumas Yumuk Yun Yunca Yuncan Yunfei Yung Yungkia Yungning Yunick Yunnan Yunnanese Yup Yupik Yupiks Yuppie Yuppies Yurak Yurev Yuri Yuria Yurik Yurimaguas Yurok Yuroks Yursa Yurt Yurucare Yurucarean Yurucari Yurujure Yuruk Yuruna Yurupary Yusem Yustaga Yusuk Yutan Yuu Yuzik Yuzovka Yvelines Yves Yvette Yvon Yvonne Yvonner Yvor Z ZA ZANU ZAPU ZB ZBB ZBR ZD ZETA ZG ZGS ZI ZIF ZIP ZK ZMRI ZPG ZPRSN ZST ZT ZWEI ZZ ZZZ Zaandam Zabaean Zabaism Zaberma Zabian Zabism Zabrina Zabrine Zabrze Zabulon Zacarias Zacata Zacatec Zacatecas Zacateco Zaccaria Zacek Zach Zachar Zacharia Zachariah Zacharias Zacharie Zachary Zacherie Zachery Zachow Zack Zackariah Zackary Zacks Zacynthus Zadack Zadar Zadkiel Zadkine Zadoc Zadok Zadokite Zagazig Zaglossus Zagreb Zagreus Zagut Zahara Zaharias Zahavi Zahedan Zahidan Zahl Zaid Zailer Zaire Zairean Zaireans Zairian Zairians Zaitha Zak Zakaria Zakarias Zaklohpakap Zakynthos Zalambdodonta Zalea Zales Zaleski Zaller Zalma Zalman Zalophus Zalucki Zama Zambac Zambal Zambesi Zambezi Zambezian Zambia Zambian Zambians Zamboanga Zamboni Zambonis Zamenhof Zamenis Zamia Zamiaceae Zamicrus Zamir Zamora Zampardi Zampino Zan Zanclidae Zanclodon Zanclodontidae Zande Zandra Zandt Zane Zanesfield Zaneski Zanesville Zaneta Zaniah Zannichellia Zannichelliaceae Zannini Zanoni Zanonia Zantac Zantacs Zante Zantedeschia Zanthorrhiza Zanthoxylaceae Zanthoxylum Zantiot Zantiote Zantos Zanuck Zanzalian Zanze Zanzibar Zanzibari Zanzibaris Zapara Zaparan Zaparo Zaparoan Zapata Zaphetic Zaphrentidae Zaphrentis Zapodidae Zapodinae Zapopan Zaporogian Zaporogue Zaporozhe Zaporozhye Zapotec Zapotecan Zapoteco Zapotecs Zappa Zaptoeca Zapus Zaqaziq Zaque Zara Zaragoza Zarah Zaramo Zarathustra Zarathustrian Zarathustrianism Zarathustrians Zarathustric Zarathustrism Zardushti Zare Zared Zarema Zaremski Zarga Zarger Zaria Zarla Zarpanit Zarqa Zashin Zaslow Zasuwa Zaurak Zauschneria Zavala Zavalla Zavijava Zavras Zawde Zea Zealand Zealander Zealanders Zealot Zealots Zearing Zeb Zeba Zebada Zebadiah Zebapda Zebe Zebedee Zeboim Zebrina Zebulen Zebulon Zebulun Zebulunite Zech Zechariah Zechstein Zeculon Zed Zedekiah Zedong Zeeba Zeebrugge Zeeland Zeelander Zeelanders Zeeman Zeena Zeffirelli Zeguha Zehe Zeidae Zeidman Zeiger Zeigler Zeiler Zeiss Zeist Zeitgeist Zeitgeists Zeitler Zeitvertreib Zeke Zel Zela Zelanian Zelazny Zelda Zelde Zelienople Zelig Zeligs Zelikow Zelkova Zell Zella Zellamae Zelle Zellerbach Zellner Zellwood Zelma Zelmira Zelos Zelten Zeltinger Zemlinsky Zemstrom Zen Zena Zenaga Zenaida Zenaidinae Zenaidura Zenas Zend Zenda Zendah Zendic Zends Zenelophon Zenger Zenia Zenic Zenist Zennas Zennie Zennist Zeno Zenobia Zenonian Zenonic Zens Zeoidei Zeona Zep Zeph Zephan Zephaniah Zephyr Zephyranthes Zephyrhills Zephyrinus Zephyrs Zephyrus Zeppelin Zeppelins Zeppo Zeralda Zerelda Zerk Zerla ZerlaZerlina Zerlina Zerline Zerma Zermatt Zernike Zerubbabel Zervan Zervanism Zervanite Zest Zeta Zetana Zetes Zethar Zethus Zetland Zetta Zeuctocoelomata Zeuglodon Zeuglodonta Zeuglodontia Zeuglodontidae Zeugobranchia Zeugobranchiata Zeus Zeuxian Zeuxis Zeuzera Zeuzeridae Zezidee Zezidees Zhang Zhangjiakou Zhdanov Zhengzhou Zhitomir Zhivago Zhivkov Zhmud Zhukov Zia Ziagos Zibo Zicarelli Zidkijah Ziegfeld Ziegler Zieglerville Zielsdorf Zif Zigeuner Ziggy Zigmund Zigrang Ziguard Ziguinchor Zilber Zildjian Zilla Zillah Zilpah Zilvia Zim Zima Zimbabwe Zimbabwean Zimbabweans Zimbalist Zimmer Zimmerman Zimmermann Zimmerwaldian Zimmerwaldist Zin Zina Zinah Zincala Zincali Zincalo Zinck Zinder Zindman Zinfandel Zinfandels Zingale Zingani Zingano Zingara Zingare Zingari Zingaro Zingg Zingiber Zingiberaceae Zinjanthropus Zinjanthropuses Zink Zinn Zinnes Zinnia Zino Zinoviev Zinovievsk Zins Zinsser Zinzar Zinzendorf Zinziberaceae Zion Zionism Zionisms Zionist Zionistic Zionists Zionite Zionless Zions Zionsville Zionville Zionward Zip Zipa Zipah Zipangu Ziphiidae Ziphiinae Ziphius Ziploc Ziplocs Zipnick Zippel Zipper Zippo Zippora Zipporah Zippos Zips Zirak Zirbanit Zircaloy Zircaloys Zirconia Zirian Zirianian Zirkle Zischke Ziska Zita Zitah Zitella Zitvaa Ziusudra Ziv Ziwiye Ziwot Zizania Zizia Zizyphus Zkinthos Zl Zlatoust Zmudz Zn Znaniecki Zoa Zoan Zoanthacea Zoantharia Zoanthidae Zoanthidea Zoanthus Zoar Zoara Zoarah Zoarces Zoarite Zoba Zobe Zobias Zobkiw Zocor Zocors Zoe Zoeller Zoellick Zoes Zoffany Zoha Zohak Zohar Zohara Zoharist Zoharite Zohars Zoi Zoie Zoila Zoilean Zoilism Zoilist Zoilla Zoilus Zola Zolaesque Zolaism Zolaist Zolaistic Zolaize Zoldi Zoller Zollernia Zollie Zollner Zollverein Zolly Zolnay Zolner Zoloft Zolofts Zoltai Zomba Zomig Zomigs Zona Zonaria Zond Zonda Zondra Zongora Zonian Zonians Zonites Zonitidae Zonitoides Zonnya Zonoplacentalia Zonotrichia Zonta Zontian Zontians Zonuridae Zonurus Zoochlorella Zoomastigina Zoomastigoda Zoophaga Zoophagineae Zoophyta Zootoca Zophar Zoque Zoquean Zora Zorah Zorana Zoraptera Zorillinae Zorina Zorine Zorn Zoroaster Zoroastrian Zoroastrianism Zoroastrianisms Zoroastrians Zoroastrism Zorobabel Zorotypus Zorro Zortman Zosema Zoser Zosi Zosima Zosimus Zosma Zostera Zosteraceae Zosteria Zosteropinae Zosterops Zouave Zouaves Zoubek Zoug Zoysia Zr Zrich Zrike Zs Zsa Zsazsa Zsigmondy Zsolway Ztopek Zubenelgenubi Zubeneschamali Zubird Zubkoff Zuccari Zuccaro Zucchero Zucker Zuckerman Zug Zugunruhe Zugunruhes Zui Zuian Zuidholland Zukerman Zukor Zulch Zuleika Zulema Zulhijjah Zulinde Zulkadah Zullinger Zullner Zullo Zuloaga Zulu Zuludom Zuluize Zululand Zulus Zumbrota Zumstein Zumwalt Zungaria Zuni Zunian Zunians Zunis Zupus Zurbar Zurbaran Zurbarcn Zurek Zurheide Zurich Zuricher Zurichers Zurkow Zurn Zurvan Zurvanism Zurvanisms Zusman Zutugil Zuui Zuuian Zuzana Zwanziger Zwart Zweig Zwick Zwickau Zwicky Zwieback Zwiebel Zwingle Zwingli Zwinglian Zwinglianism Zwinglianisms Zwinglianist Zwinglians Zwolle Zworykin Zyban Zybans Zyflo Zyflos Zygadenus Zygaena Zygaenidae Zygnema Zygnemaceae Zygnemales Zygnemataceae Zygnematales Zygobranchia Zygobranchiata Zygocactus Zygodactylae Zygodactyli Zygomycetes Zygophyceae Zygophyllaceae Zygophyllum Zygoptera Zygopteraceae Zygopterides Zygopteris Zygosaccharomyces Zyrenian Zyrian Zyrians Zyrtec Zyryan Zysk Zythia Zyuganov Zyzomys Zyzzogeton Zz Zzz Zöllner Zürich argumentMaths cDNA cS crystalDector dATP dB dBV dBW dBa dBm dBrn dCTP dGTP dTTP eBay eBook eBooks eMusic eV economicDerminism egressAstronomy geographicalDerminism iPad iPhone iPod iTunes kA kCi kG kHz kJ kMc kOe kV kVA kVAH kVAr kW kWh keV lieDector lpW mA mAN mC mCi mF mGal mH mL mM mR mRNA mV mW mineDector mmHg nCi nF nW pF pH pW proAfrican psychicDerminism rKET rRNA sRNA semiRussian tRNA tacnodeRare vCechy vCeskd vCeskoslovensko zB zZt \ No newline at end of file diff --git a/examples/Example.py b/examples/Example.py new file mode 100755 index 0000000..d22a3c2 --- /dev/null +++ b/examples/Example.py @@ -0,0 +1,24 @@ +from chatbot import Chat,reflections,multiFunctionCall +import wikipedia,os + +import warnings +warnings.filterwarnings("ignore") + +def whoIs(query,sessionID="general"): + try: + return wikipedia.summary(query) + except: + for newquery in wikipedia.search(query): + try: + return wikipedia.summary(newquery) + except: + pass + return "I don't know about "+query + + + +call = multiFunctionCall({"whoIs":whoIs}) +firstQuestion="Hi, how are you?" +chat = Chat(os.path.join(os.path.dirname(os.path.abspath(__file__)),"Example.template"), reflections,call=call) +chat.converse(firstQuestion) +#chat.save_template("test.template") diff --git a/examples/Example.template b/examples/Example.template new file mode 100755 index 0000000..4a40639 --- /dev/null +++ b/examples/Example.template @@ -0,0 +1,5 @@ +{% block %} + {% client %}(Do you know about|what is|who is|tell me about)(.*){% endclient %} + {% response %}{% call whoIs:%2 %}{% endresponse %} +{% endblock %} + diff --git a/examples/Example1.py b/examples/Example1.py new file mode 100755 index 0000000..03a1cee --- /dev/null +++ b/examples/Example1.py @@ -0,0 +1,26 @@ +from chatbot import Chat,reflections,multiFunctionCall +import wikipedia + +pairs = ( + ("(Do you know about|what is|who is|tell me about)(.*)", + ("{% call whoIs:%2 %}",)) +) + + +def whoIs(query,sessionID="general"): + try: + return wikipedia.summary(query) + except: + for newquery in wikipedia.search(query): + try: + return wikipedia.summary(newquery) + except: + pass + return "I don't know about "+query + + + +call = multiFunctionCall({"whoIs":whoIs}) +firstQuestion="Hi, how are you?" +Chat(pairs, reflections,call=call).converse(firstQuestion) + diff --git a/images/ChatBot AI.png b/images/ChatBot AI.png new file mode 100755 index 0000000000000000000000000000000000000000..a5e87c95d87896ae238eb4a0def61dbe66188f5d GIT binary patch literal 72431 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

5hY&G2_Nm;QeOr!$IdWy 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 +
NLP
NLP
NLU
NLU
NLG
NLG

Local
Knowledge base
(KB)
[Not supported by viewer]


User Memory
& Discussion topic
[Not supported by viewer]
ChatBot AI Engine
ChatBot AI Engine
Normalization,
Statement decoupling
and
Entity Extraction
[Not supported by viewer]
User current topic,
    context selection
from session
memory
[Not supported by viewer]
Intend Detection by Using
KB
[Not supported by viewer]
Semantic
Tree
Semantic <br>Tree
Convert intend to action
Convert intend to action
Event, Action process, External API call
Knowledge gathering, etc.
[Not supported by viewer]
Response
Data
in
structured
form
[Not supported by viewer]
Detects
Misclassification
[Not supported by viewer]

Dictionary

&
  Normalizer
Data
[Not supported by viewer]

 Generalizer

Data
[Not supported by viewer]
Internet
Knowledge
Internet<br>Knowledge
Client
Client
\ No newline at end of file diff --git a/images/ChatBot AI.xml b/images/ChatBot AI.xml new file mode 100755 index 0000000..1f93f5e --- /dev/null +++ b/images/ChatBot AI.xml @@ -0,0 +1 @@ +5VzbbuM4Ev2aALMPNkRR18fEiXsa3b0IJtPYnaeAlmhZaEn0SnQu8/VLSqQtkXQsJ7TT6UkAw6JuVNXhqVNFyhdwVj59qtF69Y2kuLhwnfTpAl5fuG4QxeyTNzx3DV4Eu4asztOuCewa7vK/sWh0ROsmT3EzOJASUtB8PWxMSFXhhA7aUF2Tx+FhS1IM77pGGdYa7hJU6K3/yVO66loj39m1/47zbCXvDByxZ4GSH1lNNpW434ULl+1ft7tE8lri+GaFUvLYa4I3F3BWE0K7b+XTDBfctNJs3XnzPXu3/a5xRcecINzygIoNlj1u+0WfpS0eVznFd2uU8O1H5u4LeLWiZcG2APsqLoBrip/2dgJsH40hBpMS0/qZHSJO8MQZAixQ2OZxZ/lA2mvVs3oUikYkvJ1tr7x7YvZFPLTZAJ5mgH9/vT3WBlsvOmwjq1GasyefkYLU7ekSAvBqmRdFr/3a4/+9c67zmsE5JxXbX5GaP74NAwMJXGFhEELNxJ5jMDHwLJjYN5j4u2ZiZsM1/4qf2L2vUrJZtHu4edvxhFOxdcAXiolThKNlwn1Ea/ID9/YESYQXy773LMEZhENru0C3NjABOrBg7MBg7E9nM7aPo9QzGTtyFzAITmBsD7yjscPD7Imr9JIHJLaVFKhp8mRoQfyU0/9y5piCwBPbf7XboQf5dsX61B3gy82/BNPwY29xnbN+41q0dR3AqRLfGrKpE9EEBedRVGeYDsboeLtvWVpSCnA1u/sGs/svmF3c7JbkrA/bO0EnGt4JguElumcTZ/VjnXIh1xl2GUI4vFBnEO1CLQq2FhgFjMgCMHaOjwK373owdTpobKHj94EjD30FMgIdGBIsR4xI+bBbf+kj0g4yvEAZ+77i0LHIgLHaZQVi9pARG5ARFJyFFzX7lvFvXwlTonrzl4o8Fq3/uM5ssH7Eb1+u/rWX65PnImfMXh9m9QFHH5IsJpljg9cV30Iv0lAUmhTLSzAay+syprzoJb3le8Os6zrfcEn4/QwnoJKbuvtkR17nTbJhQ5/pPZ7grBkHbBODj+5AVQWd14FAc+BshegV4YP+8jP7uKmyvMJ7bf1WYfQzeMCNhx7w3DNKIykH7GijfoBTgqOryaIRgc7XAx043r6KBHINWZWdQOcqItcDrwx0rsqqwckkEBhRWhgPgNAocQQ4/Gggj94ggCQI+sAIjsUFjM6FC6DcaVtmOxYXnkIVMD4dLvSKi87CbfooK2/uKLptabt8yng9csrkUZ5MW8b+Ayd0hoqCbFpG5w8MAZi2CrotTwLIBDa/RleFhNOwY3uKRCFmws1sJybKctOz9Lhe6vJ8T4cGtELJhkIMqUtU5H93j+rOWvmh6pY7Zglc4hYvKU7IZs10SKYfh6rUeP5NRXPKrXDzRGvUlbf2xd2G4vUId3euYjlzGHu9P9+1FDmVTNH3fT1yRoYhHNlwk17CEcIy2dR15wahFWcviMxq0axHbfMiOuV6hzkEF6L8aPLjsiZle5BQrOr+UuheO65lToh9zqXdZwjtuBYGI1xrYmcrrjUVjDozLknr2J3dgv9tiNwx6axyyQ4Azvppt1Oa/jPzYDv6rlm8kx5c8Mf+3rRj1eDOL9sMhnW7u72EkOLBekXKxaY57LweaVpiTC/yB+4KHD2WmrKIyLXgrRFVHAluslzeogzPuvkoMiJH6weY2Okj33OCVtTaCDjeYbSfjMf0UscdLhELBokRj3/WWM/HaJeI9QliUFquCEvihhmWaGJhLePGTZip2pyZGzJPUHEpdpR5mvLbGB1lw/Yq00S67T2D7V0LtpfXGAPdo3k59NgoBOLTjYZYtqaVoJLzhF58PqJ2DfUDUvHn4QdJsqWE38YsaN6TM73DljNypg3D6Wn/zUOrWbi2vJShaV2ThMmIrpXJQlxXvOLpXN7y2gwbpAfKnxmiK5bd8cjGr4BpMjVJoV+HTCAcxsEwNMgW0wyunIp4k1P1VP4P3KxJZapBXyOKjPyem1Ulc8EmoZsapwbFydKTvbyVbBb7DG53eYKaZRuZyLhAwcaAGpMuH8XkPcIZ6g7oW9MdavU+MMQ+o8lCC7rNsODAjsruxHWzfyqgr6K/5U1X01oynqC9hElT2+NE+AcmL19Jp0NZZjuHEtKzac20xjJkQ1FNR1Un5XcxbT8oTvYLk10Zu7v7y1VI8dxvLE8rMsDzT1aeVpYXeSrxjZ6HVYDiQeVC9sqQr1678Vpc+C/gIhyJC0N1Oj6amtW5hJPBwldg4YNXwiJQYaFWQy3CwpTzdwSd5g/8loIzd9FB0KoWLeR5zRpV++eMr/NWE6PdhDHr4sunaPPIh2uAjiz0th01KrZ9MY11p33yPWFJag+eFHERf0dJ3S6uPSRD2ko8Tx67IjwfHtbXhg2r7YEO9FPVPozLPCyxyxunPiXC37T6S53IAJ4zjVnGDj0vckM/Ck5EKWo9C8DgdZSirk7QVh3YoxQZw85GKerw/4QrXA8H/0GO+Sk4wVM5IeMDQkA9ISUfGraKJn44XGUoQ8wZyALqxabPreUwfbEKovJJUeTrBl/sZkOTgmzSw1a3TbuuHP5yMnnsklwrxnRfybzmdSeDZQfTWG6+ZtXt8TUf3x3aMdLrDpaW2MIDunu0gJdiUl1ydAJatbC+ZI/b3rT6w3fANIROGMRu+zk0CICn8qEfqaExfp0PfSVBiE8XGfXa1qzIsbhu35E9n8nixVe0wMUtaXJRy1oQSknJDij4jqvte1imxXVqAYSS9bae0l91or3G4DiRM3cutCV92ysP3gRKUbNqFww6F/oSlZw04TRPSNVMkxWip41urq9IYT26gdjXYWjjDStoKsftUwxlpxMM/h76ygYK2ptdNuvuBUJuaSQ3lvkTd9yV6M/1ilL+5uElf2h3nqQVaF23bNfjThO+LmKetpJp3rqU6yuWbxXtxqQgGaHPa8ybeXyaNz/Y1gS40XRdZWcUOa7yKoVERQ8GUtgP6nCeBRSMqMN9OBTAwyggSY6KSYnTHE34OJ8wD819vjp2/rkk74EBMMRArFfmT4aBETW3D4cBdywGHlA94bYK+ArIeXA/uf9ESFbg+9ti07wDENQ5Gl+PCfKiAyAAC0A4YmXNhwGCdxwZuE7MhsM85mB4xLjjhvODIBy+ex2fDwSeqS7y0UHgHAQB3fAZxDngdbh5U7Ce3KOCnjsIKKVRAPS0xJSh25iR8/Ryx8f3++go0ClCnrwKCMxRgheE/Lj/hpsGVxmu34MGvOgwHkIDHkILeBiRyH84PByvDMslrnE6SUhd8TrtHHBxPl9wgljgun6+L/G7wUN9kwwYfqLjZPA4YgHMh4HHYa2Qtdpwkk8IUwr8lQCRNHTt9/yFlncAAgzjIRDcM/LEr1hHOKwXVNHIDdau9JN7POc9gBAPBYTn6jg4URbp/TMrCWuy3hQshWxw/ZAnuJksalSlzZYYVqjKCNOW7xEeFDVp+MEH11BclG1vAsOvmEkeTwpAJQUA3oMUlEXK0EAK0IADaAEHIxZc/ANwoAUHP/gJ5CI0lJnt4IBt7n4rr5uB2v0eIbz5Pw== \ No newline at end of file diff --git a/images/clothing.gif b/images/clothing.gif new file mode 100755 index 0000000000000000000000000000000000000000..cc40b81ecac5a131353a54c8f6976069728e51bf GIT binary patch literal 129389 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

yY{?a)NxztHV4`5eGS*c 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Ð4#!qE0iJNcC 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

ri1ww~ACb3p{8&_Pn)B3ZZ2u;GEa6)z;q>JV*Oo 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 z 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 z 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⪚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 literal 0 HcmV?d00001 diff --git a/images/reminder.gif b/images/reminder.gif new file mode 100755 index 0000000000000000000000000000000000000000..e394185bb0c3e07275af3cc02bbb765f3f46372b GIT binary patch literal 119016 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 + assert 0.04 < P('the') < 0.08 + return 'unit_tests pass' + +def spelltest(tests, verbose=False): + "Run correction(wrong) on all (right, wrong) pairs; report results." + import time + start = time.clock() + good, unknown = 0, 0 + n = len(tests) + for right, wrong in tests: + w = correction(wrong) + good += (w == right) + if w != right: + unknown += (right not in WORDS) + if verbose: + print('correction({}) => {} ({}); expected {} ({})' + .format(wrong, w, WORDS[w], right, WORDS[right])) + dt = time.clock() - start + print('{:.0%} of {} correct ({:.0%} unknown) at {:.0f} words per second ' + .format(good / n, n, unknown / n, n / dt)) + +def Testset(lines): + "Parse 'right: wrong1 wrong2' lines into [('right', 'wrong1'), ('right', 'wrong2')] pairs." + return [(right, wrong) + for (right, wrongs) in (line.split(':') for line in lines) + for wrong in wrongs.split()] + +if __name__ == '__main__': + print(unit_tests()) + spelltest(Testset(open(path.join(path.dirname(path.abspath(__file__)),'spell-testset1.txt')))) + spelltest(Testset(open(path.join(path.dirname(path.abspath(__file__)),'spell-testset2.txt'))))